pax_global_header00006660000000000000000000000064137371511730014522gustar00rootroot0000000000000052 comment=10c99a58f44996ad26344be531ebd699cc0c8d31 CiftiLib-1.6.0/000077500000000000000000000000001373715117300132135ustar00rootroot00000000000000CiftiLib-1.6.0/.gitignore000066400000000000000000000000231373715117300151760ustar00rootroot00000000000000*.kdev4 *.kate-swp CiftiLib-1.6.0/.travis.yml000066400000000000000000000015441373715117300153300ustar00rootroot00000000000000os: linux arch: - amd64 - ppc64le language: cpp sudo: false cache: - apt - ccache addons: apt: packages: - libqt4-dev - libxml++2.6-dev - libboost-dev - libboost-filesystem-dev - zlib1g-dev compiler: - clang - gcc env: matrix: - IGNORE_QT=false SHARED=true - IGNORE_QT=false SHARED=false - IGNORE_QT=true SHARED=true - IGNORE_QT=true SHARED=false before_install: - mkdir ../build - cd ../build script: - cmake -D CMAKE_CXX_FLAGS="-W -Wall -Wno-narrowing" -D BUILD_SHARED_LIBS:BOOL=$SHARED -D IGNORE_QT:BOOL=$IGNORE_QT ../CiftiLib - export LD_LIBRARY_PATH=$(if [[ $CXX == "clang++" ]]; then echo -n '/usr/local/clang/lib'; fi) - make -j 4 - example/xmlinfo ../CiftiLib/example/data/ones.dscalar.nii - ctest CiftiLib-1.6.0/CMakeLists.txt000066400000000000000000000127751373715117300157670ustar00rootroot00000000000000CMAKE_MINIMUM_REQUIRED(VERSION 2.6) #UseDoxygen trips over a policy change in cmake 3, suppress the warning CMAKE_POLICY(VERSION 2.8.7) #the suggested version-type policy command doesn't shut this warning up, so set it manually IF (POLICY CMP0045) CMAKE_POLICY(SET CMP0045 OLD) ENDIF (POLICY CMP0045) PROJECT(CiftiLib) SET(CIFTILIB_VERSION 1.5) #MSVC seems like the only compiler that chokes on -W -Wall IF (NOT MSVC) SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -W -Wall") ENDIF (NOT MSVC) SET(IGNORE_QT FALSE CACHE BOOL "don't try to use QT") SET(CMAKE_MODULE_PATH ${CMAKE_MODULE_PATH} "${CMAKE_SOURCE_DIR}/cmake/Modules/" "${CMAKE_SOURCE_DIR}/cmake/Modules/UseDoxygen/") INCLUDE(UseDoxygen) #TSC: glibmm requires c++11, so it needs to be in the compile flags - in older cmake, this needs to be done manually IF (${CMAKE_VERSION} VERSION_LESS "3.1") IF (CMAKE_COMPILER_IS_GNUCC) include(CheckCXXCompilerFlag) CHECK_CXX_COMPILER_FLAG("-std=c++11" GCC_STD11) IF (${GCC_STD11}) SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++11") ELSE (${GCC_STD11}) SET(CMAKE_CXX_FLAGS "${CMAKE_CXX_FLAGS} -std=c++0x") ENDIF (${GCC_STD11}) ENDIF (CMAKE_COMPILER_IS_GNUCC) ELSE (${CMAKE_VERSION} VERSION_LESS "3.1") SET(CMAKE_CXX_STANDARD 11) SET(CMAKE_CXX_STANDARD_REQUIRED TRUE) ENDIF (${CMAKE_VERSION} VERSION_LESS "3.1") #QT IF (NOT IGNORE_QT) FIND_PACKAGE(Qt4 4.8.0 QUIET) IF (QT_FOUND) SET(QT_DONT_USE_QTGUI TRUE) ADD_DEFINITIONS(-DCIFTILIB_USE_QT) INCLUDE(${QT_USE_FILE}) SET(LIBS ${LIBS} ${QT_LIBRARIES}) #for pkg-config file SET(CIFTILIB_PKGCONFIG_REQUIRES_LINE "Requires: QtCore >= 4.8.0 QtXml") SET(CIFTILIB_PKGCONFIG_DEFINE "-DCIFTILIB_USE_QT") ELSE (QT_FOUND) FIND_PACKAGE(Qt5Core) IF (Qt5Core_FOUND) SET(QT_FOUND TRUE) INCLUDE_DIRECTORIES(${Qt5Core_INCLUDE_DIRS}) SET(LIBS ${LIBS} Qt5::Core) #whatever that means ADD_DEFINITIONS(-DCIFTILIB_USE_QT) SET(CIFTILIB_PKGCONFIG_REQUIRES_LINE "Requires: Qt5Core") SET(CIFTILIB_PKGCONFIG_DEFINE "-DCIFTILIB_USE_QT") ENDIF (Qt5Core_FOUND) ENDIF (QT_FOUND) ENDIF (NOT IGNORE_QT) #alternative to QT xml, string IF (NOT QT_FOUND) FIND_PACKAGE(libxml++ 2.17.0 REQUIRED) INCLUDE_DIRECTORIES(${libxml++_INCLUDE_DIRS}) SET(LIBS ${LIBS} ${libxml++_LIBRARIES}) ADD_DEFINITIONS(-DCIFTILIB_USE_XMLPP) #for pkg-config file SET(CIFTILIB_PKGCONFIG_REQUIRES_LINE "Requires: libxml++-2.6 >= 2.17.0") SET(CIFTILIB_PKGCONFIG_DEFINE "-DCIFTILIB_USE_XMLPP") ENDIF (NOT QT_FOUND) #boost, including filesystem if not using QT IF (NOT QT_FOUND) FIND_PACKAGE(Boost REQUIRED COMPONENTS filesystem system) ELSE (NOT QT_FOUND) FIND_PACKAGE(Boost REQUIRED) ENDIF (NOT QT_FOUND) INCLUDE_DIRECTORIES(${Boost_INCLUDE_DIRS}) SET(LIBS ${LIBS} ${Boost_LIBRARIES}) #boost quirks IF (Boost_VERSION LESS 104400) #absolute() was added in 1.44.0, with filesystem v3 ADD_DEFINITIONS(-DCIFTILIB_BOOST_NO_FSV3) ENDIF (Boost_VERSION LESS 104400) IF (Boost_VERSION LESS 104800) #canonical() was added in 1.48.0 ADD_DEFINITIONS(-DCIFTILIB_BOOST_NO_CANONICAL) ENDIF (Boost_VERSION LESS 104800) IF (Boost_VERSION LESS 105600) #try_lexical_cast was added in 1.56.0 ADD_DEFINITIONS(-DCIFTILIB_BOOST_NO_TRY_LEXICAL) ENDIF (Boost_VERSION LESS 105600) #zlib, useful for volume reading FIND_PACKAGE(ZLIB) IF (ZLIB_FOUND) INCLUDE_DIRECTORIES(${ZLIB_INCLUDE_DIRS}) SET(LIBS ${LIBS} ${ZLIB_LIBRARIES}) ADD_DEFINITIONS("-DCIFTILIB_HAVE_ZLIB") ENDIF (ZLIB_FOUND) #OS X has some weirdness in its zlib, so let the preprocessor know IF (APPLE) ADD_DEFINITIONS(-DCIFTILIB_OS_MACOSX) ENDIF (APPLE) #openmp provides a fast mutex implementation, faster than QT (and probably faster than glibmm) FIND_PACKAGE(OpenMP) IF (OPENMP_FOUND) SET(CMAKE_CXX_FLAGS "${OpenMP_CXX_FLAGS} ${CMAKE_CXX_FLAGS}") ENDIF (OPENMP_FOUND) ENABLE_TESTING() #the library source, doesn't contain build targets ADD_SUBDIRECTORY(src) #example directory, has build targets and tests ADD_SUBDIRECTORY(example) macro(append_subdir_files variable dirname) get_directory_property(holder DIRECTORY ${dirname} DEFINITION ${variable}) foreach(depfile ${holder}) list(APPEND ${variable} "${dirname}/${depfile}") endforeach() endmacro() #get the sources and install info append_subdir_files(SOURCES src) append_subdir_files(HEADERS src) append_subdir_files(PUBLIC_HEADERS src) append_subdir_files(PRIVATE_DIRS src) ADD_LIBRARY(Cifti ${SOURCES} ${HEADERS} ) #one way to get qt5's new compiler flag restrictions into the build - does it have other consequences? TARGET_LINK_LIBRARIES(Cifti ${LIBS}) #NOTE: soversion set to 0 because ABI compatibility was not designed into the interface #soversion defines what symlinks are created, version defines what to put on the end of the actual library file SET_TARGET_PROPERTIES(Cifti PROPERTIES OUTPUT_NAME Cifti SOVERSION 0 VERSION ${CIFTILIB_VERSION} ) INCLUDE_DIRECTORIES( ${CMAKE_SOURCE_DIR}/src ) #install dirs INCLUDE(GNUInstallDirs) #pkg-config CONFIGURE_FILE(CiftiLib.pc.in CiftiLib.pc @ONLY) INSTALL(FILES ${CMAKE_CURRENT_BINARY_DIR}/CiftiLib.pc DESTINATION ${CMAKE_INSTALL_LIBDIR}/pkgconfig) #install INSTALL(TARGETS Cifti DESTINATION ${CMAKE_INSTALL_LIBDIR}) INSTALL(FILES ${PUBLIC_HEADERS} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/CiftiLib) INSTALL(DIRECTORY ${PRIVATE_DIRS} DESTINATION ${CMAKE_INSTALL_INCLUDEDIR}/CiftiLib FILES_MATCHING PATTERN "*.h") CiftiLib-1.6.0/CiftiLib.pc.in000066400000000000000000000006111373715117300156270ustar00rootroot00000000000000includedir=@CMAKE_INSTALL_FULL_INCLUDEDIR@ libdir=@CMAKE_INSTALL_FULL_LIBDIR@ Name: CiftiLib Description: C++ Library for reading and writing CIFTI-2 and CIFTI-1 files Version: @CIFTILIB_VERSION@ URL: https://github.com/Washington-University/CiftiLib Cflags: -I${includedir}/CiftiLib @CIFTILIB_PKGCONFIG_DEFINE@ @OpenMP_CXX_FLAGS@ Libs: -L${libdir} -lCifti @CIFTILIB_PKGCONFIG_REQUIRES_LINE@ CiftiLib-1.6.0/Doxyfile.in000066400000000000000000001750161373715117300153400ustar00rootroot00000000000000# Doxyfile 1.5.8 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project # # All text after a 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. DOXYFILE_ENCODING = UTF-8 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded # by quotes) that should identify the project. PROJECT_NAME = "@PROJECT_NAME@" # 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 = "@PROJECT_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 = "A C++ library for CIFTI-2 and CIFTI-1 files" # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. # 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 = "@DOXYFILE_OUTPUT_DIR@" # 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 cause performance problems for the file system. CREATE_SUBDIRS = 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. # The default language is English, other supported languages are: # Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, # Croatian, Czech, Danish, Dutch, Farsi, Finnish, French, German, Greek, # Hungarian, Italian, Japanese, Japanese-en (Japanese with English messages), # Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, Polish, # Portuguese, Romanian, Russian, Serbian, Serbian-Cyrilic, Slovak, Slovene, # Spanish, Swedish, and Ukrainian. OUTPUT_LANGUAGE = English # If the BRIEF_MEMBER_DESC tag is set to YES (the default) 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. BRIEF_MEMBER_DESC = YES # If the REPEAT_BRIEF tag is set to YES (the default) 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. 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" "the" ABBREVIATE_BRIEF = # 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. 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. INLINE_INHERITED_MEMB = NO # If the FULL_PATH_NAMES tag is set to YES then 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. FULL_PATH_NAMES = NO # If the FULL_PATH_NAMES tag is set to YES then 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. 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 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. 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 # comments will behave just like regular Qt-style comments # (thus requiring an explicit @brief command for a brief description.) 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 comments # will behave just like regular Qt-style comments (thus requiring # an explicit \brief command for a brief description.) 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 behaviour. # 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 behaviour instead. MULTILINE_CPP_IS_BRIEF = NO # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented # member inherits the documentation from any documented member that it # re-implements. 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. 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. TAB_SIZE = 8 # This tag can be used to specify a number of aliases that acts # 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 = # 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. OPTIMIZE_OUTPUT_FOR_C = NO # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java # sources only. Doxygen will then generate output that is more tailored for # Java. For instance, namespaces will be presented as packages, qualified # scopes will look different, etc. OPTIMIZE_OUTPUT_JAVA = NO # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran # sources only. Doxygen will then generate output that is more tailored for # Fortran. 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. 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, VHDL, C, C++. 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 EXTENSION_MAPPING = # 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); v.s. # func(std::string) {}). This also make the inheritance and collaboration # diagrams that involve STL classes more complete and accurate. BUILTIN_STL_SUPPORT = YES # If you use Microsoft's C++/CLI language, you should set this option to YES to # enable parsing support. CPP_CLI_SUPPORT = NO # Set the SIP_SUPPORT tag to YES if your project consists of sip 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. 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 (the default) # 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. 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. DISTRIBUTE_GROUP_DOC = NO # Set the SUBGROUPING tag to YES (the default) 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. SUBGROUPING = YES # When TYPEDEF_HIDES_STRUCT 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. TYPEDEF_HIDES_STRUCT = NO # The SYMBOL_CACHE_SIZE determines the size of the internal cache use to # determine which symbols to keep in memory and which to flush to disk. # When the cache is full, less often used symbols will be written to disk. # For small to medium size projects (<1000 input files) the default value is # probably good enough. For larger projects a too small cache size can cause # doxygen to be busy swapping symbols to and from disk most of the time # causing a significant performance penality. # If the system has enough physical memory increasing the cache will improve the # performance by keeping more symbols in memory. Note that the value works on # a logarithmic scale so increasing the size by one will rougly double the # memory usage. The cache size is given by this formula: # 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, # corresponding to a cache size of 2^16 = 65536 symbols SYMBOL_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 and EXTRACT_STATIC tags are set to YES EXTRACT_ALL = NO # If the EXTRACT_PRIVATE tag is set to YES all private members of a class # will be included in the documentation. EXTRACT_PRIVATE = NO # If the EXTRACT_STATIC tag is set to YES all static members of a file # will be included in the documentation. 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. EXTRACT_LOCAL_CLASSES = YES # This flag is only useful for Objective-C code. When 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 (the default) only methods in the interface are included. 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. EXTRACT_ANON_NSPACES = NO # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all # undocumented members of documented classes, files or namespaces. # If set to NO (the default) 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. 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 (the default) these classes will be included in the various # overviews. This option has no effect if EXTRACT_ALL is enabled. 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 (the default) these declarations will be included in the # documentation. 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 (the default) these blocks will be appended to the # function's detailed documentation block. 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 (the default) then the documentation will be excluded. # Set it to YES to include the internal documentation. 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. CASE_SENSE_NAMES = YES # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen # will show members with their full class and namespace scopes in the # documentation. If set to YES the scope will be hidden. HIDE_SCOPE_NAMES = NO # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen # will put a list of the files that are included by a file in the documentation # of that file. SHOW_INCLUDE_FILES = YES # If the INLINE_INFO tag is set to YES (the default) then a tag [inline] # is inserted in the documentation for inline members. INLINE_INFO = YES # If the SORT_MEMBER_DOCS tag is set to YES (the default) 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. SORT_MEMBER_DOCS = YES # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the # brief documentation of file, namespace and class members alphabetically # by member name. If set to NO (the default) the members will appear in # declaration order. SORT_BRIEF_DOCS = 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 default) # the group names will appear in their defined order. 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 default), 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. SORT_BY_SCOPE_NAME = 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. 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. 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. 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. GENERATE_DEPRECATEDLIST= YES # The ENABLED_SECTIONS tag can be used to enable conditional # documentation sections, marked by \if sectionname ... \endif. ENABLED_SECTIONS = # The MAX_INITIALIZER_LINES tag determines the maximum number of lines # the initial value of a variable or define consists of 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 initializer of individual variables and defines in the # documentation can be controlled using \showinitializer or \hideinitializer # command in the documentation regardless of this setting. 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. SHOW_USED_FILES = YES # If the sources in your project are distributed over multiple directories # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy # in the documentation. The default is NO. SHOW_DIRECTORIES = NO # 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 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 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 , where is the value of # the FILE_VERSION_FILTER tag, and is the name of an input file # provided by doxygen. Whatever the program writes to standard output # is used as the file version. See the manual for examples. 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. The 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. LAYOUT_FILE = #--------------------------------------------------------------------------- # configuration options related to warning and progress messages #--------------------------------------------------------------------------- # The QUIET tag can be used to turn on/off the messages that are generated # by doxygen. Possible values are YES and NO. If left blank NO is used. QUIET = YES # The WARNINGS tag can be used to turn on/off the warning messages that are # generated by doxygen. Possible values are YES and NO. If left blank # NO is used. WARNINGS = YES # If WARN_IF_UNDOCUMENTED 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. WARN_IF_UNDOCUMENTED = YES # If WARN_IF_DOC_ERROR 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. WARN_IF_DOC_ERROR = YES # This WARN_NO_PARAMDOC option can be abled to get warnings for # functions that are documented, but have no documentation for their parameters # or return value. If set to NO (the default) doxygen will only warn about # wrong or incomplete parameter documentation, but not about the absence of # documentation. WARN_NO_PARAMDOC = 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) 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 stderr. WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- # The INPUT tag can be 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. INPUT = @DOXYFILE_SOURCE_DIRS@ # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is # also the default input encoding. 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. 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 pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank the following patterns are tested: # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90 FILE_PATTERNS = # The RECURSIVE tag can be used to turn specify whether or not subdirectories # should be searched for input files as well. Possible values are YES and NO. # If left blank NO is used. RECURSIVE = YES # The EXCLUDE tag can be used to specify files and/or directories that should # 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. EXCLUDE = "_darcs" # The EXCLUDE_SYMLINKS tag can be used select whether or not files or # directories that are symbolic links (a Unix filesystem feature) are excluded # from the input. 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 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 = "@CMAKE_CURRENT_SOURCE_DIR@/example" # 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. # Possible values are YES and NO. If left blank NO is used. EXAMPLE_RECURSIVE = NO # The IMAGE_PATH tag can be used to specify one or more files or # directories that contain image that are included in the documentation (see # the \image command). IMAGE_PATH = "@CMAKE_CURRENT_SOURCE_DIR@" # 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. 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 # info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER # is applied to all files. FILTER_PATTERNS = # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using # INPUT_FILTER) will be used to filter the input files when producing source # files to browse (i.e. when SOURCE_BROWSER is set to YES). FILTER_SOURCE_FILES = NO #--------------------------------------------------------------------------- # 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 also # VERBATIM_HEADERS is set to NO. SOURCE_BROWSER = NO # Setting the INLINE_SOURCES tag to YES will include the body # of functions and classes directly in the documentation. INLINE_SOURCES = NO # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct # doxygen to hide any special comment blocks from generated source code # fragments. Normal C and C++ comments will always remain visible. 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. 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. REFERENCES_RELATION = NO # If the REFERENCES_LINK_SOURCE tag is set to YES (the default) # 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. REFERENCES_LINK_SOURCE = 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. USE_HTAGS = NO # If the VERBATIM_HEADERS tag is set to YES (the default) 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. VERBATIM_HEADERS = YES #--------------------------------------------------------------------------- # 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. ALPHABETICAL_INDEX = NO # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns # in which this list will be split (can be a number in the range [1..20]) 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 one or more prefixes that # should be ignored while generating the index headers. IGNORE_PREFIX = #--------------------------------------------------------------------------- # configuration options related to the HTML output #--------------------------------------------------------------------------- # If the GENERATE_HTML tag is set to YES (the default) Doxygen will # generate HTML output. 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. If left blank `html' will be used as the default path. HTML_OUTPUT = "@DOXYFILE_HTML_DIR@" # The HTML_FILE_EXTENSION tag can be used to specify the file extension for # each generated HTML page (for example: .htm,.php,.asp). If it is left blank # doxygen will generate files with .html extension. HTML_FILE_EXTENSION = .html # The HTML_HEADER tag can be used to specify a personal HTML header for # each generated HTML page. If it is left blank doxygen will generate a # standard header. HTML_HEADER = # The HTML_FOOTER tag can be used to specify a personal HTML footer for # each generated HTML page. If it is left blank doxygen will generate a # standard footer. 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 the tag is left blank doxygen # will generate a default style sheet. Note that doxygen will try to copy # the style sheet file to the HTML output directory, so don't put your own # stylesheet in the HTML output directory as well, or it will be erased! HTML_STYLESHEET = # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, # files or namespaces will be aligned in HTML using tables. If set to # NO a bullet list will be used. HTML_ALIGN_MEMBERS = 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. For this to work a browser that supports # JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox # Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). HTML_DYNAMIC_SECTIONS = NO # 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, 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. GENERATE_DOCSET = NO # When GENERATE_DOCSET tag is set to YES, this tag determines the name of the # 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. DOCSET_FEEDNAME = "Doxygen generated docs" # When GENERATE_DOCSET tag is set to YES, 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. DOCSET_BUNDLE_ID = org.doxygen.Project # If the GENERATE_HTMLHELP tag is set to YES, additional index files # will be generated that can be used as input for tools like the # Microsoft HTML help workshop to generate a compiled HTML help file (.chm) # of the generated HTML documentation. GENERATE_HTMLHELP = NO # If the GENERATE_HTMLHELP tag is set to YES, 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. CHM_FILE = # If the GENERATE_HTMLHELP tag is set to YES, 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. HHC_LOCATION = # If the GENERATE_HTMLHELP tag is set to YES, 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). GENERATE_CHI = NO # If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING # is used to encode HtmlHelp index (hhk), content (hhc) and project file # content. CHM_INDEX_ENCODING = # If the GENERATE_HTMLHELP tag is set to YES, 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. BINARY_TOC = NO # The TOC_EXPAND flag can be set to YES to add extra items for group members # to the contents of the HTML help documentation and to the tree view. 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. 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. QCH_FILE = # The QHP_NAMESPACE tag specifies the namespace to use when generating # Qt Help Project output. For more information please see # http://doc.trolltech.com/qthelpproject.html#namespace QHP_NAMESPACE = # The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating # Qt Help Project output. For more information please see # http://doc.trolltech.com/qthelpproject.html#virtual-folders QHP_VIRTUAL_FOLDER = doc # If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to add. # For more information please see # http://doc.trolltech.com/qthelpproject.html#custom-filters QHP_CUST_FILTER_NAME = # The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the custom filter to add.For more information please see # Qt Help Project / Custom Filters. 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. QHP_SECT_FILTER_ATTRS = # If the GENERATE_QHP tag is set to YES, 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. QHG_LOCATION = # The DISABLE_INDEX tag can be used to turn on/off the condensed index at # top of each HTML page. The value NO (the default) enables the index and # the value YES disables it. DISABLE_INDEX = NO # This tag can be used to set the number of enum values (range [1..20]) # that doxygen will group on one line in the generated HTML documentation. ENUM_VALUES_PER_LINE = 4 # 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 FRAME, 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 (for instance Mozilla 1.0+, # Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are # probably better off using the HTML help feature. Other possible values # for this tag are: HIERARCHIES, which will generate the Groups, Directories, # and Class Hierarchy pages using a tree view instead of an ordered list; # ALL, which combines the behavior of FRAME and HIERARCHIES; and NONE, which # disables this behavior completely. For backwards compatibility with previous # releases of Doxygen, the values YES and NO are equivalent to FRAME and NONE # respectively. GENERATE_TREEVIEW = NONE # 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. TREEVIEW_WIDTH = 250 # Use this tag to change the font size of Latex formulas included # as images in the HTML documentation. The default is 10. Note that # 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. FORMULA_FONTSIZE = 10 #--------------------------------------------------------------------------- # configuration options related to the LaTeX output #--------------------------------------------------------------------------- # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will # generate Latex output. GENERATE_LATEX = @DOXYFILE_GENERATE_LATEX@ # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `latex' will be used as the default path. LATEX_OUTPUT = "@DOXYFILE_LATEX_DIR@" # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be # invoked. If left blank `latex' will be used as the default command name. LATEX_CMD_NAME = "@LATEX_COMPILER@" # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to # generate index for LaTeX. If left blank `makeindex' will be used as the # default command name. MAKEINDEX_CMD_NAME = "@MAKEINDEX_COMPILER@" # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact # LaTeX documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_LATEX = NO # The PAPER_TYPE tag can be used to set the paper type that is used # by the printer. Possible values are: a4, a4wide, letter, legal and # executive. If left blank a4wide will be used. PAPER_TYPE = a4wide # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX # packages that should be included in the LaTeX output. EXTRA_PACKAGES = # The LATEX_HEADER tag can be used to specify a personal LaTeX header for # the generated latex document. The header should contain everything until # the first chapter. If it is left blank doxygen will generate a # standard header. Notice: only use this tag if you know what you are doing! LATEX_HEADER = # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated # is prepared for conversion to pdf (using ps2pdf). The pdf file will # contain links (just like the HTML output) instead of page references # This makes the output suitable for online browsing using a pdf viewer. PDF_HYPERLINKS = YES # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of # plain latex in the generated Makefile. Set this option to YES to get a # higher quality PDF documentation. USE_PDFLATEX = @DOXYFILE_PDFLATEX@ # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. # command to the generated LaTeX files. This will instruct LaTeX to keep # running if errors occur, instead of asking the user for help. # This option is also used when generating formulas in HTML. LATEX_BATCHMODE = YES # If LATEX_HIDE_INDICES is set to YES then doxygen will not # include the index chapters (such as File Index, Compound Index, etc.) # in the output. LATEX_HIDE_INDICES = NO #--------------------------------------------------------------------------- # configuration options related to the RTF output #--------------------------------------------------------------------------- # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output # The RTF output is optimized for Word 97 and may not look very pretty with # other RTF readers or editors. GENERATE_RTF = NO # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `rtf' will be used as the default path. RTF_OUTPUT = rtf # If the COMPACT_RTF tag is set to YES Doxygen generates more compact # RTF documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_RTF = NO # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated # will contain hyperlink fields. The RTF file will # contain links (just like the HTML output) instead of page references. # This makes the output suitable for online browsing using WORD or other # programs which support those fields. # Note: wordpad (write) and others do not support links. RTF_HYPERLINKS = NO # Load stylesheet definitions from file. Syntax is similar to doxygen's # config file, i.e. a series of assignments. You only have to provide # replacements, missing definitions are set to their default value. RTF_STYLESHEET_FILE = # Set optional variables used in the generation of an rtf document. # Syntax is similar to doxygen's config file. RTF_EXTENSIONS_FILE = #--------------------------------------------------------------------------- # configuration options related to the man page output #--------------------------------------------------------------------------- # If the GENERATE_MAN tag is set to YES (the default) Doxygen will # generate man pages GENERATE_MAN = NO # The MAN_OUTPUT tag is used to specify where the man pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `man' will be used as the default path. MAN_OUTPUT = man # The MAN_EXTENSION tag determines the extension that is added to # the generated man pages (default is the subroutine's section .3) MAN_EXTENSION = .3 # If the MAN_LINKS tag is set to YES and Doxygen generates man output, # then it will generate one additional man file for each entity # documented in the real man page(s). These additional files # only source the real man page, but without them the man command # would be unable to find the correct page. The default is NO. MAN_LINKS = NO #--------------------------------------------------------------------------- # configuration options related to the XML output #--------------------------------------------------------------------------- # If the GENERATE_XML tag is set to YES Doxygen will # generate an XML file that captures the structure of # the code including all documentation. GENERATE_XML = NO # The XML_OUTPUT tag is used to specify where the XML pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `xml' will be used as the default path. XML_OUTPUT = xml # The XML_SCHEMA tag can be used to specify an XML schema, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_SCHEMA = # The XML_DTD tag can be used to specify an XML DTD, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_DTD = # If the XML_PROGRAMLISTING tag is set to YES Doxygen will # dump the program listings (including syntax highlighting # and cross-referencing information) to the XML output. Note that # enabling this will significantly increase the size of the XML output. XML_PROGRAMLISTING = YES #--------------------------------------------------------------------------- # configuration options for the AutoGen Definitions output #--------------------------------------------------------------------------- # If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will # generate an AutoGen Definitions (see autogen.sf.net) file # that captures the structure of the code including all # documentation. Note that this feature is still experimental # and incomplete at the moment. GENERATE_AUTOGEN_DEF = NO #--------------------------------------------------------------------------- # configuration options related to the Perl module output #--------------------------------------------------------------------------- # If the GENERATE_PERLMOD tag is set to YES Doxygen will # generate a Perl module file that captures the structure of # the code including all documentation. Note that this # feature is still experimental and incomplete at the # moment. GENERATE_PERLMOD = NO # If the PERLMOD_LATEX tag is set to YES Doxygen will generate # the necessary Makefile rules, Perl scripts and LaTeX code to be able # to generate PDF and DVI output from the Perl module output. PERLMOD_LATEX = NO # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be # nicely formatted so it can be parsed by a human reader. # This is useful # if you want to understand what is going on. # On the other hand, if this # tag is set to NO the size of the Perl module output will be much smaller # and Perl will parse it just the same. PERLMOD_PRETTY = YES # The names of the make variables in the generated doxyrules.make file # are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. # This is useful so different doxyrules.make files included by the same # Makefile don't overwrite each other's variables. PERLMOD_MAKEVAR_PREFIX = #--------------------------------------------------------------------------- # Configuration options related to the preprocessor #--------------------------------------------------------------------------- # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will # evaluate all C-preprocessor directives found in the sources and include # files. ENABLE_PREPROCESSING = YES # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro # names in the source code. If set to NO (the default) only conditional # compilation will be performed. Macro expansion can be done in a controlled # way by setting EXPAND_ONLY_PREDEF to YES. MACRO_EXPANSION = NO # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES # then the macro expansion is limited to the macros specified with the # PREDEFINED and EXPAND_AS_DEFINED tags. EXPAND_ONLY_PREDEF = NO # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files # in the INCLUDE_PATH (see below) will be search if a #include is found. SEARCH_INCLUDES = YES # The INCLUDE_PATH tag can be used to specify one or more directories that # contain include files that are not input files but should be processed by # the preprocessor. INCLUDE_PATH = # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard # patterns (like *.h and *.hpp) to filter out the header-files in the # directories. If left blank, the patterns specified with FILE_PATTERNS will # be used. INCLUDE_FILE_PATTERNS = # The PREDEFINED tag can be used to specify one or more macro names that # are defined before the preprocessor is started (similar to the -D option of # gcc). The argument of the tag is a list of macros of the form: name # or name=definition (no spaces). If the definition and the = are # omitted =1 is assumed. To prevent a macro definition from being # undefined via #undef or recursively expanded use the := operator # instead of the = operator. PREDEFINED = # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then # this tag can be used to specify a list of macro names that should be expanded. # The macro definition that is found in the sources will be used. # Use the PREDEFINED tag if you want to use a different macro definition. EXPAND_AS_DEFINED = # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then # doxygen's preprocessor will remove all function-like macros that are alone # on a line, have an all uppercase name, and do not end with a semicolon. Such # function macros are typically used for boiler-plate code, and will confuse # the parser if not removed. SKIP_FUNCTION_MACROS = YES #--------------------------------------------------------------------------- # Configuration::additions related to external references #--------------------------------------------------------------------------- # The TAGFILES option can be used to specify one or more tagfiles. # Optionally an initial location of the external documentation # can be added for each tagfile. The format of a tag file without # this location is as follows: # # TAGFILES = file1 file2 ... # Adding location for the tag files is done as follows: # # TAGFILES = file1=loc1 "file2 = loc2" ... # where "loc1" and "loc2" can be relative or absolute paths or # URLs. If a location is present for each tag, the installdox tool # does not have to be run to correct the links. # Note that each tag file must have a unique name # (where the name does NOT include the path) # If a tag file is not located in the directory in which doxygen # is run, you must also specify the path to the tagfile here. TAGFILES = # When a file name is specified after GENERATE_TAGFILE, doxygen will create # a tag file that is based on the input files it reads. GENERATE_TAGFILE = # If the ALLEXTERNALS tag is set to YES all external classes will be listed # in the class index. If set to NO only the inherited external classes # will be listed. ALLEXTERNALS = NO # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed # in the modules index. If set to NO, only the current project's groups will # be listed. EXTERNAL_GROUPS = YES # The PERL_PATH should be the absolute path and name of the perl script # interpreter (i.e. the result of `which perl'). PERL_PATH = /usr/bin/perl #--------------------------------------------------------------------------- # Configuration options related to the dot tool #--------------------------------------------------------------------------- # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base # or super classes. Setting the tag to NO turns the diagrams off. Note that # this option is superseded by the HAVE_DOT option below. This is only a # fallback. It is recommended to install and use dot, since it yields more # powerful graphs. CLASS_DIAGRAMS = YES # You can define message sequence charts within doxygen comments using the \msc # command. Doxygen will then run the mscgen tool (see # http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the # documentation. The MSCGEN_PATH tag allows you to specify the directory where # the mscgen tool resides. If left empty the tool is assumed to be found in the # default search path. MSCGEN_PATH = # If set to YES, the inheritance and collaboration graphs will hide # inheritance and usage relations if the target is undocumented # or is not a class. HIDE_UNDOC_RELATIONS = YES # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is # available from the path. This tool is part of Graphviz, a graph visualization # toolkit from AT&T and Lucent Bell Labs. The other options in this section # have no effect if this option is set to NO (the default) HAVE_DOT = @DOXYFILE_DOT@ # By default doxygen will write a font called FreeSans.ttf to the output # directory and reference it in all dot files that doxygen generates. This # font does not include all possible unicode characters however, so when you need # these (or just want a differently looking font) you can specify the font name # using DOT_FONTNAME. You need need to make sure dot is able to find the font, # which can be done by putting it in a standard location or by setting the # DOTFONTPATH environment variable or by setting DOT_FONTPATH to the directory # containing the font. DOT_FONTNAME = FreeSans # The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. # The default size is 10pt. DOT_FONTSIZE = 10 # By default doxygen will tell dot to use the output directory to look for the # FreeSans.ttf font (which doxygen will put there itself). If you specify a # different font using DOT_FONTNAME you can set the path where dot # can find it using this tag. DOT_FONTPATH = # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect inheritance relations. Setting this tag to YES will force the # the CLASS_DIAGRAMS tag to NO. CLASS_GRAPH = YES # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect implementation dependencies (inheritance, containment, and # class references variables) of the class with other documented classes. COLLABORATION_GRAPH = YES # If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen # will generate a graph for groups, showing the direct groups dependencies GROUP_GRAPHS = YES # If the UML_LOOK tag is set to YES doxygen will generate inheritance and # collaboration diagrams in a style similar to the OMG's Unified Modeling # Language. UML_LOOK = NO # If set to YES, the inheritance and collaboration graphs will show the # relations between templates and their instances. TEMPLATE_RELATIONS = NO # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT # tags are set to YES then doxygen will generate a graph for each documented # file showing the direct and indirect include dependencies of the file with # other documented files. INCLUDE_GRAPH = NO # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and # HAVE_DOT tags are set to YES then doxygen will generate a graph for each # documented header file showing the documented files that directly or # indirectly include this file. INCLUDED_BY_GRAPH = YES # If the CALL_GRAPH and HAVE_DOT options are set to YES then # doxygen will generate a call dependency graph for every global function # or class method. Note that enabling this option will significantly increase # the time of a run. So in most cases it will be better to enable call graphs # for selected functions only using the \callgraph command. CALL_GRAPH = NO # If the CALLER_GRAPH and HAVE_DOT tags are set to YES then # doxygen will generate a caller dependency graph for every global function # or class method. Note that enabling this option will significantly increase # the time of a run. So in most cases it will be better to enable caller # graphs for selected functions only using the \callergraph command. CALLER_GRAPH = NO # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen # will graphical hierarchy of all classes instead of a textual one. GRAPHICAL_HIERARCHY = YES # If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES # then doxygen will show the dependencies a directory has on other directories # in a graphical way. The dependency relations are determined by the #include # relations between the files in the directories. DIRECTORY_GRAPH = YES # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images # generated by dot. Possible values are png, jpg, or gif # If left blank png will be used. DOT_IMAGE_FORMAT = png # The tag DOT_PATH can be used to specify the path where the dot tool can be # found. If left blank, it is assumed the dot tool can be found in the path. DOT_PATH = "@DOXYGEN_DOT_PATH@" # The DOTFILE_DIRS tag can be used to specify one or more directories that # contain dot files that are included in the documentation (see the # \dotfile command). DOTFILE_DIRS = # The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of # nodes that will be shown in the graph. If the number of nodes in a graph # becomes larger than this value, doxygen will truncate the graph, which is # visualized by representing a node as a red box. Note that doxygen if the # number of direct children of the root node in a graph is already larger than # DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note # that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. DOT_GRAPH_MAX_NODES = 50 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the # graphs generated by dot. A depth value of 3 means that only nodes reachable # from the root by following a path via at most 3 edges will be shown. Nodes # that lay further from the root node will be omitted. Note that setting this # option to 1 or 2 may greatly reduce the computation time needed for large # code bases. Also note that the size of a graph can be further restricted by # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. MAX_DOT_GRAPH_DEPTH = 0 # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent # background. This is disabled by default, because dot on Windows does not # seem to support this out of the box. Warning: Depending on the platform used, # enabling this option may lead to badly anti-aliased labels on the edges of # a graph (i.e. they become hard to read). DOT_TRANSPARENT = YES # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output # files in one run (i.e. multiple -o and -T options on the command line). This # makes dot run faster, but since only newer versions of dot (>1.8.10) # support this, this feature is disabled by default. DOT_MULTI_TARGETS = NO # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will # generate a legend page explaining the meaning of the various boxes and # arrows in the dot generated graphs. GENERATE_LEGEND = YES # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will # remove the intermediate dot files that are used to generate # the various graphs. DOT_CLEANUP = YES #--------------------------------------------------------------------------- # Options related to the search engine #--------------------------------------------------------------------------- # The SEARCHENGINE tag specifies whether or not a search engine should be # used. If set to NO the values of all tags below this one will be ignored. SEARCHENGINE = NO CiftiLib-1.6.0/LICENSE000066400000000000000000000024471373715117300142270ustar00rootroot00000000000000Copyright (c) 2014, Washington University School of Medicine All rights reserved. Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. CiftiLib-1.6.0/README000066400000000000000000000033711373715117300140770ustar00rootroot00000000000000The CiftiLib library requires boost headers and either QT (4.8.x or 5), or libxml++ 2.17.x or newer (and its dependencies: libxml2, glib, sigc++, gtkmm and glibmm) and the boost filesystem library to compile, and optionally uses zlib if you want to use its NIfTI reading capabilities for other purposes. To build it, and example executables, in the recommended "out-of-source" method using cmake: #start one level up from the source tree #make a build directory beside the source tree, enter it mkdir build; cd build #NOTE: you may want to set the cmake variable CMAKE_BUILD_TYPE to Release or Debug before building #the default build behavior may be non-optimized and without debug symbols. #run cmake to generate makefiles cmake -D CMAKE_BUILD_TYPE=Release ../CiftiLib #OR cmake-gui ../CiftiLib #build make #OPTIONAL: run tests make test #install library to location specified by cmake variable CMAKE_INSTALL_PREFIX make install #OPTIONAL: generate documentation (needs doxygen installed and on PATH) make doc The build results will be in subdirectories of the build directory, not in the source directory. To use the installed library, use pkg-config to get the needed directories and libraries. For instance, in cmake: find_package(PkgConfig) pkg_check_modules(PC_CIFTI REQUIRED CiftiLib) You can then use cmake variables PC_CIFTI_LIBRARIES, PC_CIFTI_INCLUDE_DIRS, and similar, see here for descriptions: https://cmake.org/cmake/help/v3.0/module/FindPkgConfig.html Troubleshooting: If you are using manually-installed libraries rather than distribution-packaged libraries, you may need to use the cmake variables CMAKE_LIBRARY_PATH and CMAKE_INCLUDE_PATH. If you are getting link errors related to boost, try setting a cmake variable Boost_NO_BOOST_CMAKE to true. CiftiLib-1.6.0/USAGE000066400000000000000000000032121373715117300140000ustar00rootroot00000000000000The only header you need to include is CiftiFile.h, it will include the other needed headers. The main object for dealing with Cifti is CiftiFile. To set up a new CiftiFile, make a CiftiXML object with the mappings you want, and call setCiftiXML on the CiftiFile object. The XML tells you things about the mappings, and lets you set new mappings or modify existing ones: int64_t rowLength = myXML.getDimensionLength(CiftiXML::ALONG_ROW); CiftiMappingType::MappingType rowType = myXML.getMappingType(CiftiXML::ALONG_ROW); if (rowType == CiftiMappingType::SCALARS) { CiftiScalarsMap& myScalarMap = myXML.getScalarsMap(CiftiXML::ALONG_ROW); QString firstMapName = myScalarMap.getMapName(0); ... myScalarMap.setLength(1); } See the rewrite example for how to read and write data to CiftiFile. CiftiFile internally uses NiftiIO, which is a NIfTI reader for both NIfTI-1 and NIfTI-2 single-file (.nii), including reading .nii.gz files if zlib is found (NOTE: .nii.gz is not allowed in the CIFTI-2 standard, as seeking is slow, and seeking backwards is problematic). If you want to use our NIfTI implementation to read volume files, include NiftiIO.h. We do not provide a VolumeFile object, NiftiIO only handles the low-level file format details. Our nifti1.h and nifti2.h are slightly modified, replacing the #defines of standard values for header fields with constant integers, and placing almost everything in a namespace so that it shouldn't interfere with an existing nifti implementation in the same codebase. We also declare CIFTI-specific intent codes and the CIFTI extension code in nifti2.h, and have some macros for determining header version. CiftiLib-1.6.0/cmake/000077500000000000000000000000001373715117300142735ustar00rootroot00000000000000CiftiLib-1.6.0/cmake/Modules/000077500000000000000000000000001373715117300157035ustar00rootroot00000000000000CiftiLib-1.6.0/cmake/Modules/Findglib.cmake000066400000000000000000000013371373715117300204270ustar00rootroot00000000000000 #use pkg-config FIND_PACKAGE(PkgConfig) PKG_CHECK_MODULES(PC_GLIB glib-2.0) FIND_PATH(glib_INCLUDE_DIR NAMES glib.h HINTS ${PC_GLIB_INCLUDEDIR} ${PC_GLIB_INCLUDE_DIRS}) FIND_PATH(glib_config_INCLUDE_DIR NAMES glibconfig.h HINTS ${PC_GLIB_INCLUDEDIR} ${PC_GLIB_INCLUDE_DIRS}) FIND_LIBRARY(glib_LIBRARY NAMES glib glib-2.0 HINTS ${PC_GLIB_LIBDIR} ${PC_GLIB_LIBRARY_DIRS}) SET(glib_LIBRARIES ${glib_LIBRARY} ${PC_GLIB_PKGCONF_LIBRARIES}) SET(glib_INCLUDE_DIRS ${glib_INCLUDE_DIR} ${glib_config_INCLUDE_DIR} ${PC_GLIB_PKGCONF_INCLUDE_DIRS}) INCLUDE(FindPackageHandleStandardArgs) FIND_PACKAGE_HANDLE_STANDARD_ARGS(glib DEFAULT_MSG glib_LIBRARY glib_INCLUDE_DIR) MARK_AS_ADVANCED(glib_INCLUDE_DIR glib_config_INCLUDE_DIR glib_LIBRARY) CiftiLib-1.6.0/cmake/Modules/Findglibmm.cmake000066400000000000000000000021641373715117300207600ustar00rootroot00000000000000 IF(glibmm_FIND_REQUIRED) FIND_PACKAGE(glib REQUIRED) FIND_PACKAGE(sigc++ REQUIRED) ELSE(glibmm_FIND_REQUIRED) FIND_PACKAGE(glib) FIND_PACKAGE(sigc++) ENDIF(glibmm_FIND_REQUIRED) IF(GLIB_FOUND) #use pkg-config FIND_PACKAGE(PkgConfig) PKG_CHECK_MODULES(PC_GLIBMM glibmm-2.4) FIND_PATH(glibmm_INCLUDE_DIR NAMES glibmm/main.h HINTS ${PC_GLIBMM_INCLUDEDIR} ${PC_GLIBMM_INCLUDE_DIRS}) FIND_PATH(glibmm_config_INCLUDE_DIR NAMES glibmmconfig.h HINTS ${PC_GLIBMM_INCLUDEDIR} ${PC_GLIBMM_INCLUDE_DIRS}) FIND_LIBRARY(glibmm_LIBRARY NAMES glibmm glibmm-2.4 HINTS ${PC_GLIBMM_LIBDIR} ${PC_GLIBMM_LIBRARY_DIRS}) SET(glibmm_LIBRARIES ${glibmm_LIBRARY} ${PC_GLIBMM_PKGCONF_LIBRARIES} ${glib_LIBRARIES} ${sigc++_LIBRARIES}) SET(glibmm_INCLUDE_DIRS ${glibmm_INCLUDE_DIR} ${glibmm_config_INCLUDE_DIR} ${PC_GLIBMM_PKGCONF_INCLUDE_DIRS} ${glib_INCLUDE_DIRS} ${sigc++_INCLUDE_DIRS}) ENDIF(GLIB_FOUND) INCLUDE(FindPackageHandleStandardArgs) FIND_PACKAGE_HANDLE_STANDARD_ARGS(glibmm DEFAULT_MSG glibmm_LIBRARY glibmm_INCLUDE_DIR) MARK_AS_ADVANCED(glibmm_INCLUDE_DIR glibmm_config_INCLUDE_DIR glibmm_LIBRARY) CiftiLib-1.6.0/cmake/Modules/Findlibxml++.cmake000066400000000000000000000027271373715117300211330ustar00rootroot00000000000000 IF(libxml++_FIND_REQUIRED) FIND_PACKAGE(glibmm REQUIRED) FIND_PACKAGE(LibXml2 REQUIRED) ELSE(libxml++_FIND_REQUIRED) FIND_PACKAGE(glibmm) FIND_PACKAGE(LibXml2) ENDIF(libxml++_FIND_REQUIRED) IF(GLIBMM_FOUND AND LIBXML2_FOUND) #use pkg-config FIND_PACKAGE(PkgConfig) PKG_CHECK_MODULES(PC_LIBXMLPP QUIET libxml++-2.6) FIND_PATH(libxml++_INCLUDE_DIR NAMES libxml++/libxml++.h HINTS ${PC_LIBXMLPP_INCLUDEDIR} ${PC_LIBXMLPP_INCLUDE_DIRS}) FIND_PATH(libxml++_config_INCLUDE_DIR NAMES libxml++config.h HINTS ${PC_LIBXMLPP_INCLUDEDIR} ${PC_LIBXMLPP_INCLUDE_DIRS}) FIND_LIBRARY(libxml++_LIBRARY NAMES xml++ xml++-2.6 HINTS ${PC_LIBXMLPP_LIBDIR} ${PC_LIBXMLPP_LIBRARY_DIRS}) SET(libxml++_LIBRARIES ${libxml++_LIBRARY} ${PC_LIBXMLPP_PKGCONF_LIBRARIES} ${glibmm_LIBRARIES} ${LIBXML2_LIBRARIES}) IF(libxml++_config_INCLUDE_DIR) SET(libxml++_INCLUDE_DIRS ${libxml++_INCLUDE_DIR} ${PC_LIBXMLPP_PKGCONF_INCLUDE_DIRS} ${libxml++_config_INCLUDE_DIR} ${glibmm_INCLUDE_DIRS} ${LIBXML2_INCLUDE_DIR}) ELSE(libxml++_config_INCLUDE_DIR) SET(libxml++_INCLUDE_DIRS ${libxml++_INCLUDE_DIR} ${PC_LIBXMLPP_PKGCONF_INCLUDE_DIRS} ${glibmm_INCLUDE_DIRS} ${LIBXML2_INCLUDE_DIR}) ENDIF(libxml++_config_INCLUDE_DIR) ENDIF(GLIBMM_FOUND AND LIBXML2_FOUND) INCLUDE(FindPackageHandleStandardArgs) FIND_PACKAGE_HANDLE_STANDARD_ARGS(libxml++ DEFAULT_MSG libxml++_LIBRARY libxml++_INCLUDE_DIR) MARK_AS_ADVANCED(libxml++_INCLUDE_DIR libxml++_config_INCLUDE_DIR libxml++_LIBRARY) CiftiLib-1.6.0/cmake/Modules/Findsigc++.cmake000066400000000000000000000014321373715117300205610ustar00rootroot00000000000000 #use pkg-config FIND_PACKAGE(PkgConfig) PKG_CHECK_MODULES(PC_SIGCXX sigc++-2.0) FIND_PATH(sigc++_INCLUDE_DIR NAMES sigc++/sigc++.h HINTS ${PC_SIGCXX_INCLUDEDIR} ${PC_SIGCXX_INCLUDE_DIRS}) FIND_PATH(sigc++_config_INCLUDE_DIR NAMES sigc++config.h HINTS ${PC_SIGCXX_INCLUDEDIR} ${PC_SIGCXX_INCLUDE_DIRS}) FIND_LIBRARY(sigc++_LIBRARY NAMES sigc sigc-2.0 HINTS ${PC_SIGCXX_LIBDIR} ${PC_SIGCXX_LIBRARY_DIRS}) SET(sigc++_LIBRARIES ${sigc++_LIBRARY} ${PC_SIGCXX_PKGCONF_LIBRARIES}) SET(sigc++_INCLUDE_DIRS ${sigc++_INCLUDE_DIR} ${sigc++_config_INCLUDE_DIR} ${PC_SIGCXX_PKGCONF_INCLUDE_DIRS}) INCLUDE(FindPackageHandleStandardArgs) FIND_PACKAGE_HANDLE_STANDARD_ARGS(sigc++ DEFAULT_MSG sigc++_LIBRARY sigc++_INCLUDE_DIR) MARK_AS_ADVANCED(sigc++_INCLUDE_DIR sigc++_config_INCLUDE_DIR sigc++_LIBRARY) CiftiLib-1.6.0/cmake/Modules/UseDoxygen/000077500000000000000000000000001373715117300177755ustar00rootroot00000000000000CiftiLib-1.6.0/cmake/Modules/UseDoxygen/CMakeLists.txt000066400000000000000000000006521373715117300225400ustar00rootroot00000000000000cmake_minimum_required(VERSION 2.6) project(UseDoxygen) set(CMAKE_INSTALL_PREFIX ${CMAKE_ROOT}) install(FILES UseDoxygen.cmake Doxyfile.in DESTINATION "Modules") configure_file( "${CMAKE_CURRENT_SOURCE_DIR}/cmake_uninstall.cmake.in" "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake" IMMEDIATE @ONLY) add_custom_target(uninstall COMMAND "${CMAKE_COMMAND}" -P "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake") CiftiLib-1.6.0/cmake/Modules/UseDoxygen/COPYING-CMAKE-SCRIPTS000066400000000000000000000024571373715117300230030ustar00rootroot00000000000000Redistribution and use in source and binary forms, with or without modification, are permitted provided that the following conditions are met: 1. Redistributions of source code must retain the copyright notice, this list of conditions and the following disclaimer. 2. Redistributions in binary form must reproduce the copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution. 3. The name of the author may not be used to endorse or promote products derived from this software without specific prior written permission. THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. CiftiLib-1.6.0/cmake/Modules/UseDoxygen/Doxyfile.in000066400000000000000000001743341373715117300221240ustar00rootroot00000000000000# Doxyfile 1.5.8 # This file describes the settings to be used by the documentation system # doxygen (www.doxygen.org) for a project # # All text after a 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. DOXYFILE_ENCODING = UTF-8 # The PROJECT_NAME tag is a single word (or a sequence of words surrounded # by quotes) that should identify the project. PROJECT_NAME = "@PROJECT_NAME@" # 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 = "@PROJECT_VERSION@" # The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) # base path where the generated documentation will be put. # 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 = "@DOXYFILE_OUTPUT_DIR@" # 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 cause performance problems for the file system. CREATE_SUBDIRS = 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. # The default language is English, other supported languages are: # Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, # Croatian, Czech, Danish, Dutch, Farsi, Finnish, French, German, Greek, # Hungarian, Italian, Japanese, Japanese-en (Japanese with English messages), # Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, Polish, # Portuguese, Romanian, Russian, Serbian, Serbian-Cyrilic, Slovak, Slovene, # Spanish, Swedish, and Ukrainian. OUTPUT_LANGUAGE = English # If the BRIEF_MEMBER_DESC tag is set to YES (the default) 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. BRIEF_MEMBER_DESC = YES # If the REPEAT_BRIEF tag is set to YES (the default) 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. 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" "the" ABBREVIATE_BRIEF = # 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. 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. INLINE_INHERITED_MEMB = NO # If the FULL_PATH_NAMES tag is set to YES then 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. FULL_PATH_NAMES = NO # If the FULL_PATH_NAMES tag is set to YES then 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. 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 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. 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 # comments will behave just like regular Qt-style comments # (thus requiring an explicit @brief command for a brief description.) 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 comments # will behave just like regular Qt-style comments (thus requiring # an explicit \brief command for a brief description.) 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 behaviour. # 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 behaviour instead. MULTILINE_CPP_IS_BRIEF = NO # If the INHERIT_DOCS tag is set to YES (the default) then an undocumented # member inherits the documentation from any documented member that it # re-implements. 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. 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. TAB_SIZE = 8 # This tag can be used to specify a number of aliases that acts # 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 = # 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. OPTIMIZE_OUTPUT_FOR_C = NO # Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java # sources only. Doxygen will then generate output that is more tailored for # Java. For instance, namespaces will be presented as packages, qualified # scopes will look different, etc. OPTIMIZE_OUTPUT_JAVA = NO # Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran # sources only. Doxygen will then generate output that is more tailored for # Fortran. 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. 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, VHDL, C, C++. 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 EXTENSION_MAPPING = # 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); v.s. # func(std::string) {}). This also make the inheritance and collaboration # diagrams that involve STL classes more complete and accurate. BUILTIN_STL_SUPPORT = NO # If you use Microsoft's C++/CLI language, you should set this option to YES to # enable parsing support. CPP_CLI_SUPPORT = NO # Set the SIP_SUPPORT tag to YES if your project consists of sip 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. 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 (the default) # 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. 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. DISTRIBUTE_GROUP_DOC = NO # Set the SUBGROUPING tag to YES (the default) 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. SUBGROUPING = YES # When TYPEDEF_HIDES_STRUCT 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. TYPEDEF_HIDES_STRUCT = NO # The SYMBOL_CACHE_SIZE determines the size of the internal cache use to # determine which symbols to keep in memory and which to flush to disk. # When the cache is full, less often used symbols will be written to disk. # For small to medium size projects (<1000 input files) the default value is # probably good enough. For larger projects a too small cache size can cause # doxygen to be busy swapping symbols to and from disk most of the time # causing a significant performance penality. # If the system has enough physical memory increasing the cache will improve the # performance by keeping more symbols in memory. Note that the value works on # a logarithmic scale so increasing the size by one will rougly double the # memory usage. The cache size is given by this formula: # 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, # corresponding to a cache size of 2^16 = 65536 symbols SYMBOL_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 and EXTRACT_STATIC tags are set to YES EXTRACT_ALL = NO # If the EXTRACT_PRIVATE tag is set to YES all private members of a class # will be included in the documentation. EXTRACT_PRIVATE = NO # If the EXTRACT_STATIC tag is set to YES all static members of a file # will be included in the documentation. 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. EXTRACT_LOCAL_CLASSES = YES # This flag is only useful for Objective-C code. When 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 (the default) only methods in the interface are included. 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. EXTRACT_ANON_NSPACES = NO # If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all # undocumented members of documented classes, files or namespaces. # If set to NO (the default) 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. 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 (the default) these classes will be included in the various # overviews. This option has no effect if EXTRACT_ALL is enabled. 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 (the default) these declarations will be included in the # documentation. 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 (the default) these blocks will be appended to the # function's detailed documentation block. 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 (the default) then the documentation will be excluded. # Set it to YES to include the internal documentation. 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. CASE_SENSE_NAMES = YES # If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen # will show members with their full class and namespace scopes in the # documentation. If set to YES the scope will be hidden. HIDE_SCOPE_NAMES = NO # If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen # will put a list of the files that are included by a file in the documentation # of that file. SHOW_INCLUDE_FILES = YES # If the INLINE_INFO tag is set to YES (the default) then a tag [inline] # is inserted in the documentation for inline members. INLINE_INFO = YES # If the SORT_MEMBER_DOCS tag is set to YES (the default) 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. SORT_MEMBER_DOCS = YES # If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the # brief documentation of file, namespace and class members alphabetically # by member name. If set to NO (the default) the members will appear in # declaration order. SORT_BRIEF_DOCS = 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 default) # the group names will appear in their defined order. 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 default), 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. SORT_BY_SCOPE_NAME = 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. 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. 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. 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. GENERATE_DEPRECATEDLIST= YES # The ENABLED_SECTIONS tag can be used to enable conditional # documentation sections, marked by \if sectionname ... \endif. ENABLED_SECTIONS = # The MAX_INITIALIZER_LINES tag determines the maximum number of lines # the initial value of a variable or define consists of 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 initializer of individual variables and defines in the # documentation can be controlled using \showinitializer or \hideinitializer # command in the documentation regardless of this setting. 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. SHOW_USED_FILES = YES # If the sources in your project are distributed over multiple directories # then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy # in the documentation. The default is NO. SHOW_DIRECTORIES = NO # 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 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 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 , where is the value of # the FILE_VERSION_FILTER tag, and is the name of an input file # provided by doxygen. Whatever the program writes to standard output # is used as the file version. See the manual for examples. 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. The 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. LAYOUT_FILE = #--------------------------------------------------------------------------- # configuration options related to warning and progress messages #--------------------------------------------------------------------------- # The QUIET tag can be used to turn on/off the messages that are generated # by doxygen. Possible values are YES and NO. If left blank NO is used. QUIET = YES # The WARNINGS tag can be used to turn on/off the warning messages that are # generated by doxygen. Possible values are YES and NO. If left blank # NO is used. WARNINGS = YES # If WARN_IF_UNDOCUMENTED 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. WARN_IF_UNDOCUMENTED = YES # If WARN_IF_DOC_ERROR 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. WARN_IF_DOC_ERROR = YES # This WARN_NO_PARAMDOC option can be abled to get warnings for # functions that are documented, but have no documentation for their parameters # or return value. If set to NO (the default) doxygen will only warn about # wrong or incomplete parameter documentation, but not about the absence of # documentation. WARN_NO_PARAMDOC = 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) 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 stderr. WARN_LOGFILE = #--------------------------------------------------------------------------- # configuration options related to the input files #--------------------------------------------------------------------------- # The INPUT tag can be 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. INPUT = @DOXYFILE_SOURCE_DIRS@ # This tag can be used to specify the character encoding of the source files # that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is # also the default input encoding. 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. 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 pattern (like *.cpp # and *.h) to filter out the source-files in the directories. If left # blank the following patterns are tested: # *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx # *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90 FILE_PATTERNS = # The RECURSIVE tag can be used to turn specify whether or not subdirectories # should be searched for input files as well. Possible values are YES and NO. # If left blank NO is used. RECURSIVE = YES # The EXCLUDE tag can be used to specify files and/or directories that should # 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. EXCLUDE = "_darcs" # The EXCLUDE_SYMLINKS tag can be used select whether or not files or # directories that are symbolic links (a Unix filesystem feature) are excluded # from the input. 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 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 = "@CMAKE_CURRENT_SOURCE_DIR@/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. # Possible values are YES and NO. If left blank NO is used. EXAMPLE_RECURSIVE = NO # The IMAGE_PATH tag can be used to specify one or more files or # directories that contain image that are included in the documentation (see # the \image command). IMAGE_PATH = "@CMAKE_CURRENT_SOURCE_DIR@" # 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. 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 # info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER # is applied to all files. FILTER_PATTERNS = # If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using # INPUT_FILTER) will be used to filter the input files when producing source # files to browse (i.e. when SOURCE_BROWSER is set to YES). FILTER_SOURCE_FILES = NO #--------------------------------------------------------------------------- # 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 also # VERBATIM_HEADERS is set to NO. SOURCE_BROWSER = NO # Setting the INLINE_SOURCES tag to YES will include the body # of functions and classes directly in the documentation. INLINE_SOURCES = NO # Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct # doxygen to hide any special comment blocks from generated source code # fragments. Normal C and C++ comments will always remain visible. 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. 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. REFERENCES_RELATION = NO # If the REFERENCES_LINK_SOURCE tag is set to YES (the default) # 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. REFERENCES_LINK_SOURCE = 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. USE_HTAGS = NO # If the VERBATIM_HEADERS tag is set to YES (the default) 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. VERBATIM_HEADERS = YES #--------------------------------------------------------------------------- # 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. ALPHABETICAL_INDEX = NO # If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then # the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns # in which this list will be split (can be a number in the range [1..20]) 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 one or more prefixes that # should be ignored while generating the index headers. IGNORE_PREFIX = #--------------------------------------------------------------------------- # configuration options related to the HTML output #--------------------------------------------------------------------------- # If the GENERATE_HTML tag is set to YES (the default) Doxygen will # generate HTML output. 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. If left blank `html' will be used as the default path. HTML_OUTPUT = "@DOXYFILE_HTML_DIR@" # The HTML_FILE_EXTENSION tag can be used to specify the file extension for # each generated HTML page (for example: .htm,.php,.asp). If it is left blank # doxygen will generate files with .html extension. HTML_FILE_EXTENSION = .html # The HTML_HEADER tag can be used to specify a personal HTML header for # each generated HTML page. If it is left blank doxygen will generate a # standard header. HTML_HEADER = # The HTML_FOOTER tag can be used to specify a personal HTML footer for # each generated HTML page. If it is left blank doxygen will generate a # standard footer. 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 the tag is left blank doxygen # will generate a default style sheet. Note that doxygen will try to copy # the style sheet file to the HTML output directory, so don't put your own # stylesheet in the HTML output directory as well, or it will be erased! HTML_STYLESHEET = # If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, # files or namespaces will be aligned in HTML using tables. If set to # NO a bullet list will be used. HTML_ALIGN_MEMBERS = 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. For this to work a browser that supports # JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox # Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). HTML_DYNAMIC_SECTIONS = NO # 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, 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. GENERATE_DOCSET = NO # When GENERATE_DOCSET tag is set to YES, this tag determines the name of the # 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. DOCSET_FEEDNAME = "Doxygen generated docs" # When GENERATE_DOCSET tag is set to YES, 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. DOCSET_BUNDLE_ID = org.doxygen.Project # If the GENERATE_HTMLHELP tag is set to YES, additional index files # will be generated that can be used as input for tools like the # Microsoft HTML help workshop to generate a compiled HTML help file (.chm) # of the generated HTML documentation. GENERATE_HTMLHELP = NO # If the GENERATE_HTMLHELP tag is set to YES, 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. CHM_FILE = # If the GENERATE_HTMLHELP tag is set to YES, 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. HHC_LOCATION = # If the GENERATE_HTMLHELP tag is set to YES, 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). GENERATE_CHI = NO # If the GENERATE_HTMLHELP tag is set to YES, the CHM_INDEX_ENCODING # is used to encode HtmlHelp index (hhk), content (hhc) and project file # content. CHM_INDEX_ENCODING = # If the GENERATE_HTMLHELP tag is set to YES, 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. BINARY_TOC = NO # The TOC_EXPAND flag can be set to YES to add extra items for group members # to the contents of the HTML help documentation and to the tree view. 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. 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. QCH_FILE = # The QHP_NAMESPACE tag specifies the namespace to use when generating # Qt Help Project output. For more information please see # http://doc.trolltech.com/qthelpproject.html#namespace QHP_NAMESPACE = # The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating # Qt Help Project output. For more information please see # http://doc.trolltech.com/qthelpproject.html#virtual-folders QHP_VIRTUAL_FOLDER = doc # If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to add. # For more information please see # http://doc.trolltech.com/qthelpproject.html#custom-filters QHP_CUST_FILTER_NAME = # The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the custom filter to add.For more information please see # Qt Help Project / Custom Filters. 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. QHP_SECT_FILTER_ATTRS = # If the GENERATE_QHP tag is set to YES, 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. QHG_LOCATION = # The DISABLE_INDEX tag can be used to turn on/off the condensed index at # top of each HTML page. The value NO (the default) enables the index and # the value YES disables it. DISABLE_INDEX = NO # This tag can be used to set the number of enum values (range [1..20]) # that doxygen will group on one line in the generated HTML documentation. ENUM_VALUES_PER_LINE = 4 # 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 FRAME, 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 (for instance Mozilla 1.0+, # Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are # probably better off using the HTML help feature. Other possible values # for this tag are: HIERARCHIES, which will generate the Groups, Directories, # and Class Hierarchy pages using a tree view instead of an ordered list; # ALL, which combines the behavior of FRAME and HIERARCHIES; and NONE, which # disables this behavior completely. For backwards compatibility with previous # releases of Doxygen, the values YES and NO are equivalent to FRAME and NONE # respectively. GENERATE_TREEVIEW = NONE # 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. TREEVIEW_WIDTH = 250 # Use this tag to change the font size of Latex formulas included # as images in the HTML documentation. The default is 10. Note that # 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. FORMULA_FONTSIZE = 10 #--------------------------------------------------------------------------- # configuration options related to the LaTeX output #--------------------------------------------------------------------------- # If the GENERATE_LATEX tag is set to YES (the default) Doxygen will # generate Latex output. GENERATE_LATEX = @DOXYFILE_GENERATE_LATEX@ # The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `latex' will be used as the default path. LATEX_OUTPUT = "@DOXYFILE_LATEX_DIR@" # The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be # invoked. If left blank `latex' will be used as the default command name. LATEX_CMD_NAME = "@LATEX_COMPILER@" # The MAKEINDEX_CMD_NAME tag can be used to specify the command name to # generate index for LaTeX. If left blank `makeindex' will be used as the # default command name. MAKEINDEX_CMD_NAME = "@MAKEINDEX_COMPILER@" # If the COMPACT_LATEX tag is set to YES Doxygen generates more compact # LaTeX documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_LATEX = NO # The PAPER_TYPE tag can be used to set the paper type that is used # by the printer. Possible values are: a4, a4wide, letter, legal and # executive. If left blank a4wide will be used. PAPER_TYPE = a4wide # The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX # packages that should be included in the LaTeX output. EXTRA_PACKAGES = # The LATEX_HEADER tag can be used to specify a personal LaTeX header for # the generated latex document. The header should contain everything until # the first chapter. If it is left blank doxygen will generate a # standard header. Notice: only use this tag if you know what you are doing! LATEX_HEADER = # If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated # is prepared for conversion to pdf (using ps2pdf). The pdf file will # contain links (just like the HTML output) instead of page references # This makes the output suitable for online browsing using a pdf viewer. PDF_HYPERLINKS = YES # If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of # plain latex in the generated Makefile. Set this option to YES to get a # higher quality PDF documentation. USE_PDFLATEX = @DOXYFILE_PDFLATEX@ # If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \\batchmode. # command to the generated LaTeX files. This will instruct LaTeX to keep # running if errors occur, instead of asking the user for help. # This option is also used when generating formulas in HTML. LATEX_BATCHMODE = YES # If LATEX_HIDE_INDICES is set to YES then doxygen will not # include the index chapters (such as File Index, Compound Index, etc.) # in the output. LATEX_HIDE_INDICES = NO #--------------------------------------------------------------------------- # configuration options related to the RTF output #--------------------------------------------------------------------------- # If the GENERATE_RTF tag is set to YES Doxygen will generate RTF output # The RTF output is optimized for Word 97 and may not look very pretty with # other RTF readers or editors. GENERATE_RTF = NO # The RTF_OUTPUT tag is used to specify where the RTF docs will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `rtf' will be used as the default path. RTF_OUTPUT = rtf # If the COMPACT_RTF tag is set to YES Doxygen generates more compact # RTF documents. This may be useful for small projects and may help to # save some trees in general. COMPACT_RTF = NO # If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated # will contain hyperlink fields. The RTF file will # contain links (just like the HTML output) instead of page references. # This makes the output suitable for online browsing using WORD or other # programs which support those fields. # Note: wordpad (write) and others do not support links. RTF_HYPERLINKS = NO # Load stylesheet definitions from file. Syntax is similar to doxygen's # config file, i.e. a series of assignments. You only have to provide # replacements, missing definitions are set to their default value. RTF_STYLESHEET_FILE = # Set optional variables used in the generation of an rtf document. # Syntax is similar to doxygen's config file. RTF_EXTENSIONS_FILE = #--------------------------------------------------------------------------- # configuration options related to the man page output #--------------------------------------------------------------------------- # If the GENERATE_MAN tag is set to YES (the default) Doxygen will # generate man pages GENERATE_MAN = NO # The MAN_OUTPUT tag is used to specify where the man pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `man' will be used as the default path. MAN_OUTPUT = man # The MAN_EXTENSION tag determines the extension that is added to # the generated man pages (default is the subroutine's section .3) MAN_EXTENSION = .3 # If the MAN_LINKS tag is set to YES and Doxygen generates man output, # then it will generate one additional man file for each entity # documented in the real man page(s). These additional files # only source the real man page, but without them the man command # would be unable to find the correct page. The default is NO. MAN_LINKS = NO #--------------------------------------------------------------------------- # configuration options related to the XML output #--------------------------------------------------------------------------- # If the GENERATE_XML tag is set to YES Doxygen will # generate an XML file that captures the structure of # the code including all documentation. GENERATE_XML = NO # The XML_OUTPUT tag is used to specify where the XML pages will be put. # If a relative path is entered the value of OUTPUT_DIRECTORY will be # put in front of it. If left blank `xml' will be used as the default path. XML_OUTPUT = xml # The XML_SCHEMA tag can be used to specify an XML schema, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_SCHEMA = # The XML_DTD tag can be used to specify an XML DTD, # which can be used by a validating XML parser to check the # syntax of the XML files. XML_DTD = # If the XML_PROGRAMLISTING tag is set to YES Doxygen will # dump the program listings (including syntax highlighting # and cross-referencing information) to the XML output. Note that # enabling this will significantly increase the size of the XML output. XML_PROGRAMLISTING = YES #--------------------------------------------------------------------------- # configuration options for the AutoGen Definitions output #--------------------------------------------------------------------------- # If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will # generate an AutoGen Definitions (see autogen.sf.net) file # that captures the structure of the code including all # documentation. Note that this feature is still experimental # and incomplete at the moment. GENERATE_AUTOGEN_DEF = NO #--------------------------------------------------------------------------- # configuration options related to the Perl module output #--------------------------------------------------------------------------- # If the GENERATE_PERLMOD tag is set to YES Doxygen will # generate a Perl module file that captures the structure of # the code including all documentation. Note that this # feature is still experimental and incomplete at the # moment. GENERATE_PERLMOD = NO # If the PERLMOD_LATEX tag is set to YES Doxygen will generate # the necessary Makefile rules, Perl scripts and LaTeX code to be able # to generate PDF and DVI output from the Perl module output. PERLMOD_LATEX = NO # If the PERLMOD_PRETTY tag is set to YES the Perl module output will be # nicely formatted so it can be parsed by a human reader. # This is useful # if you want to understand what is going on. # On the other hand, if this # tag is set to NO the size of the Perl module output will be much smaller # and Perl will parse it just the same. PERLMOD_PRETTY = YES # The names of the make variables in the generated doxyrules.make file # are prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. # This is useful so different doxyrules.make files included by the same # Makefile don't overwrite each other's variables. PERLMOD_MAKEVAR_PREFIX = #--------------------------------------------------------------------------- # Configuration options related to the preprocessor #--------------------------------------------------------------------------- # If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will # evaluate all C-preprocessor directives found in the sources and include # files. ENABLE_PREPROCESSING = YES # If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro # names in the source code. If set to NO (the default) only conditional # compilation will be performed. Macro expansion can be done in a controlled # way by setting EXPAND_ONLY_PREDEF to YES. MACRO_EXPANSION = NO # If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES # then the macro expansion is limited to the macros specified with the # PREDEFINED and EXPAND_AS_DEFINED tags. EXPAND_ONLY_PREDEF = NO # If the SEARCH_INCLUDES tag is set to YES (the default) the includes files # in the INCLUDE_PATH (see below) will be search if a #include is found. SEARCH_INCLUDES = YES # The INCLUDE_PATH tag can be used to specify one or more directories that # contain include files that are not input files but should be processed by # the preprocessor. INCLUDE_PATH = # You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard # patterns (like *.h and *.hpp) to filter out the header-files in the # directories. If left blank, the patterns specified with FILE_PATTERNS will # be used. INCLUDE_FILE_PATTERNS = # The PREDEFINED tag can be used to specify one or more macro names that # are defined before the preprocessor is started (similar to the -D option of # gcc). The argument of the tag is a list of macros of the form: name # or name=definition (no spaces). If the definition and the = are # omitted =1 is assumed. To prevent a macro definition from being # undefined via #undef or recursively expanded use the := operator # instead of the = operator. PREDEFINED = # If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then # this tag can be used to specify a list of macro names that should be expanded. # The macro definition that is found in the sources will be used. # Use the PREDEFINED tag if you want to use a different macro definition. EXPAND_AS_DEFINED = # If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then # doxygen's preprocessor will remove all function-like macros that are alone # on a line, have an all uppercase name, and do not end with a semicolon. Such # function macros are typically used for boiler-plate code, and will confuse # the parser if not removed. SKIP_FUNCTION_MACROS = YES #--------------------------------------------------------------------------- # Configuration::additions related to external references #--------------------------------------------------------------------------- # The TAGFILES option can be used to specify one or more tagfiles. # Optionally an initial location of the external documentation # can be added for each tagfile. The format of a tag file without # this location is as follows: # # TAGFILES = file1 file2 ... # Adding location for the tag files is done as follows: # # TAGFILES = file1=loc1 "file2 = loc2" ... # where "loc1" and "loc2" can be relative or absolute paths or # URLs. If a location is present for each tag, the installdox tool # does not have to be run to correct the links. # Note that each tag file must have a unique name # (where the name does NOT include the path) # If a tag file is not located in the directory in which doxygen # is run, you must also specify the path to the tagfile here. TAGFILES = # When a file name is specified after GENERATE_TAGFILE, doxygen will create # a tag file that is based on the input files it reads. GENERATE_TAGFILE = # If the ALLEXTERNALS tag is set to YES all external classes will be listed # in the class index. If set to NO only the inherited external classes # will be listed. ALLEXTERNALS = NO # If the EXTERNAL_GROUPS tag is set to YES all external groups will be listed # in the modules index. If set to NO, only the current project's groups will # be listed. EXTERNAL_GROUPS = YES # The PERL_PATH should be the absolute path and name of the perl script # interpreter (i.e. the result of `which perl'). PERL_PATH = /usr/bin/perl #--------------------------------------------------------------------------- # Configuration options related to the dot tool #--------------------------------------------------------------------------- # If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will # generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base # or super classes. Setting the tag to NO turns the diagrams off. Note that # this option is superseded by the HAVE_DOT option below. This is only a # fallback. It is recommended to install and use dot, since it yields more # powerful graphs. CLASS_DIAGRAMS = YES # You can define message sequence charts within doxygen comments using the \msc # command. Doxygen will then run the mscgen tool (see # http://www.mcternan.me.uk/mscgen/) to produce the chart and insert it in the # documentation. The MSCGEN_PATH tag allows you to specify the directory where # the mscgen tool resides. If left empty the tool is assumed to be found in the # default search path. MSCGEN_PATH = # If set to YES, the inheritance and collaboration graphs will hide # inheritance and usage relations if the target is undocumented # or is not a class. HIDE_UNDOC_RELATIONS = YES # If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is # available from the path. This tool is part of Graphviz, a graph visualization # toolkit from AT&T and Lucent Bell Labs. The other options in this section # have no effect if this option is set to NO (the default) HAVE_DOT = @DOXYFILE_DOT@ # By default doxygen will write a font called FreeSans.ttf to the output # directory and reference it in all dot files that doxygen generates. This # font does not include all possible unicode characters however, so when you need # these (or just want a differently looking font) you can specify the font name # using DOT_FONTNAME. You need need to make sure dot is able to find the font, # which can be done by putting it in a standard location or by setting the # DOTFONTPATH environment variable or by setting DOT_FONTPATH to the directory # containing the font. DOT_FONTNAME = FreeSans # The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. # The default size is 10pt. DOT_FONTSIZE = 10 # By default doxygen will tell dot to use the output directory to look for the # FreeSans.ttf font (which doxygen will put there itself). If you specify a # different font using DOT_FONTNAME you can set the path where dot # can find it using this tag. DOT_FONTPATH = # If the CLASS_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect inheritance relations. Setting this tag to YES will force the # the CLASS_DIAGRAMS tag to NO. CLASS_GRAPH = YES # If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen # will generate a graph for each documented class showing the direct and # indirect implementation dependencies (inheritance, containment, and # class references variables) of the class with other documented classes. COLLABORATION_GRAPH = YES # If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen # will generate a graph for groups, showing the direct groups dependencies GROUP_GRAPHS = YES # If the UML_LOOK tag is set to YES doxygen will generate inheritance and # collaboration diagrams in a style similar to the OMG's Unified Modeling # Language. UML_LOOK = NO # If set to YES, the inheritance and collaboration graphs will show the # relations between templates and their instances. TEMPLATE_RELATIONS = NO # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT # tags are set to YES then doxygen will generate a graph for each documented # file showing the direct and indirect include dependencies of the file with # other documented files. INCLUDE_GRAPH = YES # If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and # HAVE_DOT tags are set to YES then doxygen will generate a graph for each # documented header file showing the documented files that directly or # indirectly include this file. INCLUDED_BY_GRAPH = YES # If the CALL_GRAPH and HAVE_DOT options are set to YES then # doxygen will generate a call dependency graph for every global function # or class method. Note that enabling this option will significantly increase # the time of a run. So in most cases it will be better to enable call graphs # for selected functions only using the \callgraph command. CALL_GRAPH = NO # If the CALLER_GRAPH and HAVE_DOT tags are set to YES then # doxygen will generate a caller dependency graph for every global function # or class method. Note that enabling this option will significantly increase # the time of a run. So in most cases it will be better to enable caller # graphs for selected functions only using the \callergraph command. CALLER_GRAPH = NO # If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen # will graphical hierarchy of all classes instead of a textual one. GRAPHICAL_HIERARCHY = YES # If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES # then doxygen will show the dependencies a directory has on other directories # in a graphical way. The dependency relations are determined by the #include # relations between the files in the directories. DIRECTORY_GRAPH = YES # The DOT_IMAGE_FORMAT tag can be used to set the image format of the images # generated by dot. Possible values are png, jpg, or gif # If left blank png will be used. DOT_IMAGE_FORMAT = png # The tag DOT_PATH can be used to specify the path where the dot tool can be # found. If left blank, it is assumed the dot tool can be found in the path. DOT_PATH = "@DOXYGEN_DOT_PATH@" # The DOTFILE_DIRS tag can be used to specify one or more directories that # contain dot files that are included in the documentation (see the # \dotfile command). DOTFILE_DIRS = # The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of # nodes that will be shown in the graph. If the number of nodes in a graph # becomes larger than this value, doxygen will truncate the graph, which is # visualized by representing a node as a red box. Note that doxygen if the # number of direct children of the root node in a graph is already larger than # DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note # that the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH. DOT_GRAPH_MAX_NODES = 50 # The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the # graphs generated by dot. A depth value of 3 means that only nodes reachable # from the root by following a path via at most 3 edges will be shown. Nodes # that lay further from the root node will be omitted. Note that setting this # option to 1 or 2 may greatly reduce the computation time needed for large # code bases. Also note that the size of a graph can be further restricted by # DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction. MAX_DOT_GRAPH_DEPTH = 0 # Set the DOT_TRANSPARENT tag to YES to generate images with a transparent # background. This is disabled by default, because dot on Windows does not # seem to support this out of the box. Warning: Depending on the platform used, # enabling this option may lead to badly anti-aliased labels on the edges of # a graph (i.e. they become hard to read). DOT_TRANSPARENT = YES # Set the DOT_MULTI_TARGETS tag to YES allow dot to generate multiple output # files in one run (i.e. multiple -o and -T options on the command line). This # makes dot run faster, but since only newer versions of dot (>1.8.10) # support this, this feature is disabled by default. DOT_MULTI_TARGETS = NO # If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will # generate a legend page explaining the meaning of the various boxes and # arrows in the dot generated graphs. GENERATE_LEGEND = YES # If the DOT_CLEANUP tag is set to YES (the default) Doxygen will # remove the intermediate dot files that are used to generate # the various graphs. DOT_CLEANUP = YES #--------------------------------------------------------------------------- # Options related to the search engine #--------------------------------------------------------------------------- # The SEARCHENGINE tag specifies whether or not a search engine should be # used. If set to NO the values of all tags below this one will be ignored. SEARCHENGINE = NO CiftiLib-1.6.0/cmake/Modules/UseDoxygen/UseDoxygen.cmake000066400000000000000000000111741373715117300230750ustar00rootroot00000000000000# - Run Doxygen # # Adds a doxygen target that runs doxygen to generate the html # and optionally the LaTeX API documentation. # The doxygen target is added to the doc target as a dependency. # i.e.: the API documentation is built with: # make doc # # USAGE: GLOBAL INSTALL # # Install it with: # cmake ./ && sudo make install # Add the following to the CMakeLists.txt of your project: # include(UseDoxygen OPTIONAL) # Optionally copy Doxyfile.in in the directory of CMakeLists.txt and edit it. # # USAGE: INCLUDE IN PROJECT # # set(CMAKE_MODULE_PATH ${CMAKE_CURRENT_SOURCE_DIR}) # include(UseDoxygen) # Add the Doxyfile.in and UseDoxygen.cmake files to the projects source directory. # # # CONFIGURATION # # To configure Doxygen you can edit Doxyfile.in and set some variables in cmake. # Variables you may define are: # DOXYFILE_SOURCE_DIR - Path where the Doxygen input files are. # Defaults to the current source directory. # DOXYFILE_EXTRA_SOURCES - Additional source diretories/files for Doxygen to scan. # The Paths should be in double quotes and separated by space. e.g.: # "${CMAKE_CURRENT_BINARY_DIR}/foo.c" "${CMAKE_CURRENT_BINARY_DIR}/bar/" # # DOXYFILE_OUTPUT_DIR - Path where the Doxygen output is stored. # Defaults to "${CMAKE_CURRENT_BINARY_DIR}/doc". # # DOXYFILE_LATEX - ON/OFF; Set to "ON" if you want the LaTeX documentation # to be built. # DOXYFILE_LATEX_DIR - Directory relative to DOXYFILE_OUTPUT_DIR where # the Doxygen LaTeX output is stored. Defaults to "latex". # # DOXYFILE_HTML_DIR - Directory relative to DOXYFILE_OUTPUT_DIR where # the Doxygen html output is stored. Defaults to "html". # # # Copyright (c) 2009, 2010, 2011 Tobias Rautenkranz # # Redistribution and use is allowed according to the terms of the New # BSD license. # For details see the accompanying COPYING-CMAKE-SCRIPTS file. # macro(usedoxygen_set_default name value type docstring) if(NOT DEFINED "${name}") set("${name}" "${value}" CACHE "${type}" "${docstring}") endif() endmacro() find_package(Doxygen) if(DOXYGEN_FOUND) find_file(DOXYFILE_IN "Doxyfile.in" PATHS "${CMAKE_CURRENT_SOURCE_DIR}" "${CMAKE_ROOT}/Modules/" NO_DEFAULT_PATH DOC "Path to the doxygen configuration template file") set(DOXYFILE "${CMAKE_CURRENT_BINARY_DIR}/Doxyfile") include(FindPackageHandleStandardArgs) find_package_handle_standard_args(DOXYFILE_IN DEFAULT_MSG "DOXYFILE_IN") endif() if(DOXYGEN_FOUND AND DOXYFILE_IN_FOUND) usedoxygen_set_default(DOXYFILE_OUTPUT_DIR "${CMAKE_CURRENT_BINARY_DIR}/doc" PATH "Doxygen output directory") usedoxygen_set_default(DOXYFILE_HTML_DIR "html" STRING "Doxygen HTML output directory") usedoxygen_set_default(DOXYFILE_SOURCE_DIR "${CMAKE_CURRENT_SOURCE_DIR}" PATH "Input files source directory") usedoxygen_set_default(DOXYFILE_EXTRA_SOURCE_DIRS "" STRING "Additional source files/directories separated by space") set(DOXYFILE_SOURCE_DIRS "\"${DOXYFILE_SOURCE_DIR}\" ${DOXYFILE_EXTRA_SOURCES}") usedoxygen_set_default(DOXYFILE_LATEX YES BOOL "Generate LaTeX API documentation" OFF) usedoxygen_set_default(DOXYFILE_LATEX_DIR "latex" STRING "LaTex output directory") mark_as_advanced(DOXYFILE_OUTPUT_DIR DOXYFILE_HTML_DIR DOXYFILE_LATEX_DIR DOXYFILE_SOURCE_DIR DOXYFILE_EXTRA_SOURCE_DIRS DOXYFILE_IN) set_property(DIRECTORY APPEND PROPERTY ADDITIONAL_MAKE_CLEAN_FILES "${DOXYFILE_OUTPUT_DIR}/${DOXYFILE_HTML_DIR}") add_custom_target(doxygen COMMAND "${DOXYGEN_EXECUTABLE}" "${DOXYFILE}" COMMENT "Writing documentation to ${DOXYFILE_OUTPUT_DIR}..." WORKING_DIRECTORY "${CMAKE_CURRENT_SOURCE_DIR}") set(DOXYFILE_DOT "NO") if(DOXYGEN_DOT_EXECUTABLE) set(DOXYFILE_DOT "YES") endif() ## LaTeX set(DOXYFILE_PDFLATEX "NO") set_property(DIRECTORY APPEND PROPERTY ADDITIONAL_MAKE_CLEAN_FILES "${DOXYFILE_OUTPUT_DIR}/${DOXYFILE_LATEX_DIR}") if(DOXYFILE_LATEX STREQUAL "ON") set(DOXYFILE_GENERATE_LATEX "YES") find_package(LATEX) find_program(DOXYFILE_MAKE make) mark_as_advanced(DOXYFILE_MAKE) if(LATEX_COMPILER AND MAKEINDEX_COMPILER AND DOXYFILE_MAKE) if(PDFLATEX_COMPILER) set(DOXYFILE_PDFLATEX "YES") endif() add_custom_command(TARGET doxygen POST_BUILD COMMAND "${DOXYFILE_MAKE}" COMMENT "Running LaTeX for Doxygen documentation in ${DOXYFILE_OUTPUT_DIR}/${DOXYFILE_LATEX_DIR}..." WORKING_DIRECTORY "${DOXYFILE_OUTPUT_DIR}/${DOXYFILE_LATEX_DIR}") else() set(DOXYGEN_LATEX "NO") endif() else() set(DOXYFILE_GENERATE_LATEX "NO") endif() configure_file("${DOXYFILE_IN}" "${DOXYFILE}" @ONLY) get_target_property(DOC_TARGET doc TYPE) if(NOT DOC_TARGET) add_custom_target(doc) endif() add_dependencies(doc doxygen) endif() CiftiLib-1.6.0/cmake/Modules/UseDoxygen/cmake_uninstall.cmake.in000066400000000000000000000016541373715117300245630ustar00rootroot00000000000000IF(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt") MESSAGE(FATAL_ERROR "Cannot find install manifest: \"@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt\"") ENDIF(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt") FILE(READ "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt" files) STRING(REGEX REPLACE "\n" ";" files "${files}") FOREACH(file ${files}) MESSAGE(STATUS "Uninstalling \"$ENV{DESTDIR}${file}\"") IF(EXISTS "$ENV{DESTDIR}${file}") EXEC_PROGRAM( "@CMAKE_COMMAND@" ARGS "-E remove \"$ENV{DESTDIR}${file}\"" OUTPUT_VARIABLE rm_out RETURN_VALUE rm_retval ) IF(NOT "${rm_retval}" STREQUAL 0) MESSAGE(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"") ENDIF(NOT "${rm_retval}" STREQUAL 0) ELSE(EXISTS "$ENV{DESTDIR}${file}") MESSAGE(STATUS "File \"$ENV{DESTDIR}${file}\" does not exist.") ENDIF(EXISTS "$ENV{DESTDIR}${file}") ENDFOREACH(file) CiftiLib-1.6.0/cmake/scripts/000077500000000000000000000000001373715117300157625ustar00rootroot00000000000000CiftiLib-1.6.0/cmake/scripts/testmd5.cmake000066400000000000000000000002741373715117300203540ustar00rootroot00000000000000FILE(MD5 ${check_file} real_sum) IF(NOT (${real_sum} STREQUAL ${good_sum})) MESSAGE(FATAL_ERROR "expected ${good_sum}, got ${real_sum}") ENDIF(NOT (${real_sum} STREQUAL ${good_sum})) CiftiLib-1.6.0/example/000077500000000000000000000000001373715117300146465ustar00rootroot00000000000000CiftiLib-1.6.0/example/CMakeLists.txt000066400000000000000000000075011373715117300174110ustar00rootroot00000000000000 ADD_EXECUTABLE(rewrite rewrite.cxx) TARGET_LINK_LIBRARIES(rewrite Cifti ${LIBS}) ADD_EXECUTABLE(xmlinfo xmlinfo.cxx) TARGET_LINK_LIBRARIES(xmlinfo Cifti ${LIBS}) ADD_EXECUTABLE(datatype datatype.cxx) TARGET_LINK_LIBRARIES(datatype Cifti ${LIBS}) INCLUDE_DIRECTORIES( ${CMAKE_SOURCE_DIR}/example ${CMAKE_SOURCE_DIR}/src ) SET(cifti_files Conte69.MyelinAndCorrThickness.32k_fs_LR.dscalar.nii Conte69.MyelinAndCorrThickness.32k_fs_LR.dtseries.nii Conte69.MyelinAndCorrThickness.32k_fs_LR.ptseries.nii Conte69.parcellations_VGD11b.32k_fs_LR.dlabel.nii ones.dscalar.nii ) IF(QT_FOUND) #QT4 and QT5 SET(cifti_be_md5s 3ba20f6ef590735c1211991f8e0144e6 e3a1639ef4b354752b0abb0613eedb73 9fd1b6fb7b938155226ca53fdaff5a12 48903d80589d294b5421cad9a7ba9264 93bb7f76c8d273817601ea5be236f83d ) SET(cifti_le_md5s 3e24e7908122905c2a2d357347ecee7c 4ee31da414dcd26fe37855601ae3e9e2 e096a1cf0713f7a36590445e9f6564b1 32345267599b07083092b7dedfd8796c 512e0359c64d69dde93d605f8797f3a2 ) SET(cifti_datatype_md5s cca91b955b1134251d62764cb1ebf44c 6359af74ba6b51357aefab7de7a76097 10ee62309850e55936fa9f702df8b4d1 e4997bdd4b8202ff502a19173693c43f 870dae2d646cadeed1494f6271433499 ) ELSE(QT_FOUND) #xml++ SET(cifti_be_md5s a2581f76a94b7c4371d6970f1262e1bc ca4cfb02fb7f0d8f167f546aab85e91d 892c26e691fe62c4edf358f7f91942a3 e761d405c945e724b37f96e356dc19ad 2e4efa4e36cdb13f514c265e6c9c8c4b ) SET(cifti_le_md5s 39ecfba4c1dade1a2ce3e95b325bd8b1 921a42e4181052ef4f211d389a2e9328 764c816004ebe23d188d98f9f29c7337 6fabac021e377efd35dede7198feefd4 fe0cbb768e26aa12a0e03990f4f50a30 ) SET(cifti_datatype_md5s 6db4a73e4e11a1ac0a5e7cbfb56eff40 f321156573ed8f165b208d84769bfd9a 794d60d9d397fe341e18313efeeac5ea ea43725139bd3e152197fdf22c5e72e7 4dbb23ab2564ba8c9f242a3cb6036600 ) ENDIF(QT_FOUND) #ADD_TEST(timer ${CMAKE_CURRENT_BINARY_DIR}/Tests/test_driver timer) LIST(LENGTH cifti_files num_cifti_files) #FOREACH(... RANGE x) is stupid, it does all of [0, x] inclusive, totaling x + 1 iterations MATH(EXPR loop_end "${num_cifti_files} - 1") FOREACH(index RANGE ${loop_end}) LIST(GET cifti_files ${index} testfile) #ADD_TEST doesn't seem to have a way to capture stdout, so checking the output for consistency seems to be a problem ADD_TEST(info-${testfile} xmlinfo ${CMAKE_SOURCE_DIR}/example/data/${testfile}) ADD_TEST(rewrite-little-${testfile} rewrite ${CMAKE_SOURCE_DIR}/example/data/${testfile} little-${testfile} LITTLE) LIST(GET cifti_le_md5s ${index} goodsum) ADD_TEST(rewrite-little-md5-${testfile} ${CMAKE_COMMAND} -Dgood_sum=${goodsum} -Dcheck_file=little-${testfile} -P ${CMAKE_SOURCE_DIR}/cmake/scripts/testmd5.cmake) SET_TESTS_PROPERTIES(rewrite-little-md5-${testfile} PROPERTIES DEPENDS rewrite-little-${testfile}) ADD_TEST(rewrite-big-${testfile} rewrite ${CMAKE_SOURCE_DIR}/example/data/${testfile} big-${testfile} BIG) LIST(GET cifti_be_md5s ${index} goodsum) ADD_TEST(rewrite-big-md5-${testfile} ${CMAKE_COMMAND} -Dgood_sum=${goodsum} -Dcheck_file=big-${testfile} -P ${CMAKE_SOURCE_DIR}/cmake/scripts/testmd5.cmake) SET_TESTS_PROPERTIES(rewrite-big-md5-${testfile} PROPERTIES DEPENDS rewrite-big-${testfile}) ADD_TEST(datatype-${testfile} datatype ${CMAKE_SOURCE_DIR}/example/data/${testfile} datatype-${testfile}) LIST(GET cifti_datatype_md5s ${index} goodsum) ADD_TEST(datatype-md5-${testfile} ${CMAKE_COMMAND} -Dgood_sum=${goodsum} -Dcheck_file=datatype-${testfile} -P ${CMAKE_SOURCE_DIR}/cmake/scripts/testmd5.cmake) SET_TESTS_PROPERTIES(rewrite-big-md5-${testfile} PROPERTIES DEPENDS datatype-${testfile}) ENDFOREACH(index RANGE ${loop_end}) CiftiLib-1.6.0/example/data/000077500000000000000000000000001373715117300155575ustar00rootroot00000000000000CiftiLib-1.6.0/example/data/Conte69.MyelinAndCorrThickness.32k_fs_LR.dscalar.nii000066400000000000000000031523501373715117300271740ustar00rootroot00000000000000n+2   îð?ð?ð?ð?ð?ð?ð?0dð? ¾ ConnDenseScalarb ParentProvenance Conte69.MyelinAndCorrThickness.32k_fs_LR.dscalar.nii: c7c_dev -cifti-merge Conte69.MyelinAndCorrThickness.32k_fs_LR.dscalar.nii -cifti Conte69.MyelinMap_BC_decurv.32k_fs_LR.dscalar.nii -cifti Conte69.corrThickness.32k_fs_LR.dscalar.nii ProgramProvenance Workbench Version: Beta 0.84 Qt Compiled Version: 4.8.3 Qt Runtime Version: 4.8.3 commit: 8c4ad1f790c1b5e0e912891e37e272118613b9c6 commit date: 2014-02-28 15:32:58 -0600 Compiled Debug: YES Operating System: Linux Provenance c7c_dev -cifti-convert -version-convert Conte69.MyelinAndCorrThickness.32k_fs_LR.dscalar.nii 2 cifti-2_test_data/Conte69.MyelinAndCorrThickness.32k_fs_LR.dscalar.nii WorkingDirectory /mnt/myelin/tim/cifti2reference MyelinMap_BC_decurv PaletteColorMapping <PaletteColorMapping Version="1"> <ScaleMode>MODE_AUTO_SCALE_PERCENTAGE</ScaleMode> <AutoScalePercentageValues>98.000000 2.000000 2.000000 98.000000</AutoScalePercentageValues> <UserScaleValues>-100.000000 0.000000 0.000000 100.000000</UserScaleValues> <PaletteName>ROY-BIG-BL</PaletteName> <InterpolatePalette>true</InterpolatePalette> <DisplayPositiveData>true</DisplayPositiveData> <DisplayZeroData>false</DisplayZeroData> <DisplayNegativeData>true</DisplayNegativeData> <ThresholdTest>THRESHOLD_TEST_SHOW_OUTSIDE</ThresholdTest> <ThresholdType>THRESHOLD_TYPE_OFF</ThresholdType> <ThresholdFailureInGreen>false</ThresholdFailureInGreen> <ThresholdNormalValues>-1.000000 1.000000</ThresholdNormalValues> <ThresholdMappedValues>-1.000000 1.000000</ThresholdMappedValues> <ThresholdMappedAvgAreaValues>-1.000000 1.000000</ThresholdMappedAvgAreaValues> <ThresholdDataName></ThresholdDataName> <ThresholdRangeMode>PALETTE_THRESHOLD_RANGE_MODE_MAP</ThresholdRangeMode> </PaletteColorMapping> corrThickness PaletteColorMapping <PaletteColorMapping Version="1"> <ScaleMode>MODE_AUTO_SCALE_PERCENTAGE</ScaleMode> <AutoScalePercentageValues>98.000000 2.000000 2.000000 98.000000</AutoScalePercentageValues> <UserScaleValues>-100.000000 0.000000 0.000000 100.000000</UserScaleValues> <PaletteName>ROY-BIG-BL</PaletteName> <InterpolatePalette>true</InterpolatePalette> <DisplayPositiveData>true</DisplayPositiveData> <DisplayZeroData>false</DisplayZeroData> <DisplayNegativeData>true</DisplayNegativeData> <ThresholdTest>THRESHOLD_TEST_SHOW_OUTSIDE</ThresholdTest> <ThresholdType>THRESHOLD_TYPE_OFF</ThresholdType> <ThresholdFailureInGreen>false</ThresholdFailureInGreen> <ThresholdNormalValues>-1.000000 1.000000</ThresholdNormalValues> <ThresholdMappedValues>-1.000000 1.000000</ThresholdMappedValues> <ThresholdMappedAvgAreaValues>-1.000000 1.000000</ThresholdMappedAvgAreaValues> <ThresholdDataName></ThresholdDataName> <ThresholdRangeMode>PALETTE_THRESHOLD_RANGE_MODE_MAP</ThresholdRangeMode> </PaletteColorMapping> 0 1 2 3 4 5 6 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 235 236 237 238 239 240 241 242 243 244 245 246 247 248 289 290 291 292 293 294 295 296 297 298 299 300 301 342 343 344 345 346 347 348 349 350 351 352 353 394 395 396 397 398 399 400 401 402 403 404 445 446 447 448 449 450 451 452 453 454 455 495 496 497 498 499 500 501 502 503 504 544 545 546 547 548 549 550 551 552 592 593 594 595 596 597 598 599 600 639 640 641 642 643 644 645 646 685 686 687 688 689 690 691 692 730 731 732 733 734 735 736 737 774 775 776 777 778 779 780 781 817 818 819 820 821 822 823 824 859 860 861 862 863 864 865 866 900 901 902 903 904 905 906 907 908 940 941 942 943 944 945 946 947 948 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3087 3088 3089 3090 3091 3092 3093 3094 3095 3111 3112 3113 3114 3115 3116 3117 3118 3134 3135 3136 3137 3138 3139 3140 3156 3157 3158 3159 3160 3161 3177 3178 3179 3180 3181 3197 3198 3199 3200 3216 3217 3218 3234 3235 3251 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 7940 7941 7942 7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8028 8029 8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 8077 8078 8079 8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109 8110 8111 8112 8113 8114 8115 8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233 8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260 8261 8262 8263 8264 8265 8266 8267 8268 8269 8270 8271 8272 8273 8274 8275 8276 8277 8278 8279 8280 8281 8282 8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 8345 8346 8347 8348 8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 8361 8362 8363 8364 8365 8366 8367 8368 8369 8370 8371 8372 8373 8374 8375 8376 8377 8378 8379 8380 8381 8382 8383 8384 8385 8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398 8399 8400 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 8411 8412 8413 8414 8415 8416 8417 8418 8419 8420 8421 8422 8423 8424 8425 8426 8427 8428 8429 8430 8431 8432 8433 8434 8435 8436 8437 8438 8439 8440 8441 8442 8443 8444 8445 8446 8447 8448 8449 8450 8451 8452 8453 8454 8455 8456 8457 8458 8459 8460 8461 8462 8463 8464 8465 8466 8467 8468 8469 8470 8471 8472 8473 8474 8475 8476 8477 8478 8479 8480 8481 8482 8483 8484 8485 8486 8487 8488 8489 8490 8491 8492 8493 8494 8495 8496 8497 8498 8499 8500 8501 8502 8503 8504 8505 8506 8507 8508 8509 8510 8511 8512 8513 8514 8515 8516 8517 8518 8519 8520 8521 8522 8523 8524 8525 8526 8527 8528 8529 8530 8531 8532 8533 8534 8535 8536 8537 8538 8539 8540 8541 8542 8543 8544 8545 8546 8547 8548 8549 8550 8551 8552 8553 8554 8555 8556 8557 8558 8559 8560 8561 8562 8563 8564 8565 8566 8567 8568 8569 8570 8571 8572 8573 8574 8575 8576 8577 8578 8579 8580 8581 8582 8583 8584 8585 8586 8587 8588 8589 8590 8591 8592 8593 8594 8595 8596 8597 8598 8599 8600 8601 8602 8603 8604 8605 8606 8607 8608 8609 8610 8611 8612 8613 8614 8615 8616 8617 8618 8619 8620 8621 8622 8623 8624 8625 8626 8627 8628 8629 8630 8631 8632 8633 8634 8635 8636 8637 8638 8639 8640 8641 8642 8643 8644 8645 8646 8647 8648 8649 8650 8651 8652 8653 8654 8655 8656 8657 8658 8659 8660 8661 8662 8663 8664 8665 8666 8667 8668 8669 8670 8671 8672 8673 8674 8675 8676 8677 8678 8679 8680 8681 8682 8683 8684 8685 8686 8687 8688 8689 8690 8691 8692 8693 8694 8695 8696 8697 8698 8699 8700 8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 8732 8733 8734 8735 8736 8737 8738 8739 8740 8741 8742 8743 8744 8745 8746 8747 8748 8749 8750 8751 8752 8753 8754 8755 8756 8757 8758 8759 8760 8761 8762 8763 8764 8765 8766 8767 8768 8769 8770 8771 8772 8773 8774 8775 8776 8777 8778 8779 8780 8781 8782 8783 8784 8785 8786 8787 8788 8789 8790 8791 8792 8793 8794 8795 8796 8797 8798 8799 8800 8801 8802 8803 8804 8805 8806 8807 8808 8809 8810 8811 8812 8813 8814 8815 8816 8817 8818 8819 8820 8821 8822 8823 8824 8825 8826 8827 8828 8829 8830 8831 8832 8833 8834 8835 8836 8837 8838 8839 8840 8841 8842 8843 8844 8845 8846 8847 8848 8849 8850 8851 8852 8853 8854 8855 8856 8857 8858 8859 8860 8861 8862 8863 8864 8865 8866 8867 8868 8869 8870 8871 8872 8873 8874 8875 8876 8877 8878 8879 8880 8881 8882 8883 8884 8885 8886 8887 8888 8889 8890 8891 8892 8893 8894 8895 8896 8897 8898 8899 8900 8901 8902 8903 8904 8905 8906 8907 8908 8909 8910 8911 8912 8913 8914 8915 8916 8917 8918 8919 8920 8921 8922 8923 8924 8925 8926 8927 8928 8929 8930 8931 8932 8933 8934 8935 8936 8937 8938 8939 8940 8941 8942 8943 8944 8945 8946 8947 8948 8949 8950 8951 8952 8953 8954 8955 8956 8957 8958 8959 8960 8961 8962 8963 8964 8965 8966 8967 8968 8969 8970 8971 8972 8973 8974 8975 8976 8977 8978 8979 8980 8981 8982 8983 8984 8985 8986 8987 8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 9015 9016 9017 9018 9019 9020 9021 9022 9023 9024 9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 9052 9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 9100 9101 9102 9103 9104 9105 9106 9107 9108 9109 9110 9111 9112 9113 9114 9115 9116 9117 9118 9119 9120 9121 9122 9123 9124 9125 9126 9127 9128 9129 9130 9131 9132 9133 9134 9135 9136 9137 9138 9139 9140 9141 9142 9143 9144 9145 9146 9147 9148 9149 9150 9151 9152 9153 9154 9155 9156 9157 9158 9159 9160 9161 9162 9163 9164 9165 9166 9167 9168 9169 9170 9171 9172 9173 9174 9175 9176 9177 9178 9179 9180 9181 9182 9183 9184 9185 9186 9187 9188 9189 9190 9191 9192 9193 9194 9195 9196 9197 9198 9199 9200 9201 9202 9203 9204 9205 9206 9207 9208 9209 9210 9211 9212 9213 9214 9215 9216 9217 9218 9219 9220 9221 9222 9223 9224 9225 9226 9227 9228 9229 9230 9231 9232 9233 9234 9235 9236 9237 9238 9239 9240 9241 9242 9243 9244 9245 9246 9247 9248 9249 9250 9251 9252 9253 9254 9255 9256 9257 9258 9259 9260 9261 9262 9263 9264 9265 9266 9267 9268 9269 9270 9271 9272 9273 9274 9275 9276 9277 9278 9279 9280 9281 9282 9283 9284 9285 9286 9287 9288 9289 9290 9291 9292 9293 9294 9295 9296 9297 9298 9299 9300 9301 9302 9303 9304 9305 9306 9307 9308 9309 9310 9311 9312 9313 9314 9315 9316 9317 9318 9319 9320 9321 9322 9323 9324 9325 9326 9327 9328 9329 9330 9331 9332 9333 9334 9335 9336 9337 9338 9339 9340 9341 9342 9343 9344 9345 9346 9347 9348 9349 9350 9351 9352 9353 9354 9355 9356 9357 9358 9359 9360 9361 9362 9363 9364 9365 9366 9367 9368 9369 9370 9371 9372 9373 9374 9375 9376 9377 9378 9379 9380 9381 9382 9383 9384 9385 9386 9387 9388 9389 9390 9391 9392 9393 9394 9395 9396 9397 9398 9399 9400 9401 9402 9403 9404 9405 9406 9407 9408 9409 9410 9411 9412 9413 9414 9415 9416 9417 9418 9419 9420 9421 9422 9423 9424 9425 9426 9427 9428 9429 9430 9431 9432 9433 9434 9435 9436 9437 9438 9439 9440 9441 9442 9443 9444 9445 9446 9447 9448 9449 9450 9451 9452 9453 9454 9455 9456 9457 9458 9459 9460 9461 9462 9463 9464 9465 9466 9467 9468 9469 9470 9471 9472 9473 9474 9475 9476 9477 9478 9479 9480 9481 9482 9483 9484 9485 9486 9487 9488 9489 9490 9491 9492 9493 9494 9495 9496 9497 9498 9499 9500 9501 9502 9503 9504 9505 9506 9507 9508 9509 9510 9511 9512 9513 9514 9515 9516 9517 9518 9519 9520 9521 9522 9523 9524 9525 9526 9527 9528 9529 9530 9531 9532 9533 9534 9535 9536 9537 9538 9539 9540 9541 9542 9543 9544 9545 9546 9547 9548 9549 9550 9551 9552 9553 9554 9555 9556 9557 9558 9559 9560 9561 9562 9563 9564 9565 9566 9567 9568 9569 9570 9571 9572 9573 9574 9575 9576 9577 9578 9579 9580 9581 9582 9583 9584 9585 9586 9587 9588 9589 9590 9591 9592 9593 9594 9595 9596 9597 9598 9599 9600 9601 9602 9603 9604 9605 9606 9607 9608 9609 9610 9611 9612 9613 9614 9615 9616 9617 9618 9619 9620 9621 9622 9623 9624 9625 9626 9627 9628 9629 9630 9631 9632 9633 9634 9635 9636 9637 9638 9639 9640 9641 9642 9643 9644 9645 9646 9647 9648 9649 9650 9651 9652 9653 9654 9655 9656 9657 9658 9659 9660 9661 9662 9663 9664 9665 9666 9667 9668 9669 9670 9671 9672 9673 9674 9675 9676 9677 9678 9679 9680 9681 9682 9683 9684 9685 9686 9687 9688 9689 9690 9691 9692 9693 9694 9695 9696 9697 9698 9699 9700 9701 9702 9703 9704 9705 9706 9707 9708 9709 9710 9711 9712 9713 9714 9715 9716 9717 9718 9719 9720 9721 9722 9723 9724 9725 9726 9727 9728 9729 9730 9731 9732 9733 9734 9735 9736 9737 9738 9739 9740 9741 9742 9743 9744 9745 9746 9747 9748 9749 9750 9751 9752 9753 9754 9755 9756 9757 9758 9759 9760 9761 9762 9763 9764 9765 9766 9767 9768 9769 9770 9771 9772 9773 9774 9775 9776 9777 9778 9779 9780 9781 9782 9783 9784 9785 9786 9787 9788 9789 9790 9791 9792 9793 9794 9795 9796 9797 9798 9799 9800 9801 9802 9803 9804 9805 9806 9807 9808 9809 9810 9811 9812 9813 9814 9815 9816 9817 9818 9819 9820 9821 9822 9823 9824 9825 9826 9827 9828 9829 9830 9831 9832 9833 9834 9835 9836 9837 9838 9839 9840 9841 9842 9843 9844 9845 9846 9847 9848 9849 9850 9851 9852 9853 9854 9855 9856 9857 9858 9859 9860 9861 9862 9863 9864 9865 9866 9867 9868 9869 9870 9871 9872 9873 9874 9875 9876 9877 9878 9879 9880 9881 9882 9883 9884 9885 9886 9887 9888 9889 9890 9891 9892 9893 9894 9895 9896 9897 9898 9899 9900 9901 9902 9903 9904 9905 9906 9907 9908 9909 9910 9911 9912 9913 9914 9915 9916 9917 9918 9919 9920 9921 9922 9923 9924 9925 9926 9927 9928 9929 9930 9931 9932 9933 9934 9935 9936 9937 9938 9939 9940 9941 9942 9943 9944 9945 9946 9947 9948 9949 9950 9951 9952 9953 9954 9955 9956 9957 9958 9959 9960 9961 9962 9963 9964 9965 9966 9967 9968 9969 9970 9971 9972 9973 9974 9975 9976 9977 9978 9979 9980 9981 9982 9983 9984 9985 9986 9987 9988 9989 9990 9991 9992 9993 9994 9995 9996 9997 9998 9999 10000 10001 10002 10003 10004 10005 10006 10007 10008 10009 10010 10011 10012 10013 10014 10015 10016 10017 10018 10019 10020 10021 10022 10023 10024 10025 10026 10027 10028 10029 10030 10031 10032 10033 10034 10035 10036 10037 10038 10039 10040 10041 10042 10043 10044 10045 10046 10047 10048 10049 10050 10051 10052 10053 10054 10055 10056 10057 10058 10059 10060 10061 10062 10063 10064 10065 10066 10067 10068 10069 10070 10071 10072 10073 10074 10075 10076 10077 10078 10079 10080 10081 10082 10083 10084 10085 10086 10087 10088 10089 10090 10091 10092 10093 10094 10095 10096 10097 10098 10099 10100 10101 10102 10103 10104 10105 10106 10107 10108 10109 10110 10111 10112 10113 10114 10115 10116 10117 10118 10119 10120 10121 10122 10123 10124 10125 10126 10127 10128 10129 10130 10131 10132 10133 10134 10135 10136 10137 10138 10139 10140 10141 10142 10143 10144 10145 10146 10147 10148 10149 10150 10151 10152 10153 10154 10155 10156 10157 10158 10159 10160 10161 10162 10163 10164 10165 10166 10167 10168 10169 10170 10171 10172 10173 10174 10175 10176 10177 10178 10179 10180 10181 10182 10183 10184 10185 10186 10187 10188 10189 10190 10191 10192 10193 10194 10195 10196 10197 10198 10199 10200 10201 10202 10203 10204 10205 10206 10207 10208 10209 10210 10211 10212 10213 10214 10215 10216 10217 10218 10219 10220 10221 10222 10223 10224 10225 10226 10227 10228 10229 10230 10231 10232 10233 10234 10235 10236 10237 10238 10239 10240 10241 10242 10243 10244 10245 10246 10247 10248 10249 10250 10251 10252 10253 10254 10255 10256 10257 10258 10259 10260 10261 10262 10263 10264 10265 10266 10267 10268 10269 10270 10271 10272 10273 10274 10275 10276 10277 10278 10279 10280 10281 10282 10283 10284 10285 10286 10287 10288 10289 10290 10291 10292 10293 10294 10295 10296 10297 10298 10299 10300 10301 10302 10303 10304 10305 10306 10307 10308 10309 10310 10311 10312 10313 10314 10315 10316 10317 10318 10319 10320 10321 10322 10323 10324 10325 10326 10327 10328 10329 10330 10331 10332 10333 10334 10335 10336 10337 10338 10339 10340 10341 10342 10343 10344 10345 10346 10347 10348 10349 10350 10351 10352 10353 10354 10355 10356 10357 10358 10359 10360 10361 10362 10363 10364 10365 10366 10367 10368 10369 10370 10371 10372 10373 10374 10375 10376 10377 10378 10379 10380 10381 10382 10383 10384 10385 10386 10387 10388 10389 10390 10391 10392 10393 10394 10395 10396 10397 10398 10399 10400 10401 10402 10403 10404 10405 10406 10407 10408 10409 10410 10411 10412 10413 10414 10415 10416 10417 10418 10419 10420 10421 10422 10423 10424 10425 10426 10427 10428 10429 10430 10431 10432 10433 10434 10435 10436 10437 10438 10439 10440 10441 10442 10443 10444 10445 10446 10447 10448 10449 10450 10451 10452 10453 10454 10455 10456 10457 10458 10459 10460 10461 10462 10463 10464 10465 10466 10467 10468 10469 10470 10471 10472 10473 10474 10475 10476 10477 10478 10479 10480 10481 10482 10483 10484 10485 10486 10487 10488 10489 10490 10491 10492 10493 10494 10495 10496 10497 10498 10499 10500 10501 10502 10503 10504 10505 10506 10507 10508 10509 10510 10511 10512 10513 10514 10515 10516 10517 10518 10519 10520 10521 10522 10523 10524 10525 10526 10527 10528 10529 10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 10548 10549 10550 10551 10552 10553 10554 10555 10556 10557 10558 10559 10560 10561 10562 10563 10564 10565 10566 10567 10568 10569 10570 10571 10572 10573 10574 10575 10576 10577 10578 10579 10580 10581 10582 10583 10584 10585 10586 10587 10588 10589 10590 10591 10592 10593 10594 10595 10596 10597 10598 10599 10600 10601 10602 10603 10604 10605 10606 10607 10608 10609 10610 10611 10612 10613 10614 10615 10616 10617 10618 10619 10620 10621 10622 10623 10624 10625 10626 10627 10628 10629 10630 10631 10632 10633 10634 10635 10636 10637 10638 10639 10640 10641 10642 10643 10644 10645 10646 10647 10648 10649 10650 10651 10652 10653 10654 10655 10656 10657 10658 10659 10660 10661 10662 10663 10664 10665 10666 10667 10668 10669 10670 10671 10672 10673 10674 10675 10676 10677 10678 10679 10680 10681 10682 10683 10684 10685 10686 10687 10688 10689 10690 10691 10692 10693 10694 10695 10696 10697 10698 10699 10700 10701 10702 10703 10704 10705 10706 10707 10708 10709 10710 10711 10712 10713 10714 10715 10716 10717 10718 10719 10720 10721 10722 10723 10724 10725 10726 10727 10728 10729 10730 10731 10732 10733 10734 10735 10736 10737 10738 10739 10740 10741 10742 10743 10744 10745 10746 10747 10748 10749 10750 10751 10752 10753 10754 10755 10756 10757 10758 10759 10760 10761 10762 10763 10764 10765 10766 10767 10768 10769 10770 10771 10772 10773 10774 10775 10776 10777 10778 10779 10780 10781 10782 10783 10784 10785 10786 10787 10788 10789 10790 10791 10792 10793 10794 10795 10796 10797 10798 10799 10800 10801 10802 10803 10804 10805 10806 10807 10808 10809 10810 10811 10812 10813 10814 10815 10816 10817 10818 10819 10820 10821 10822 10823 10824 10825 10826 10827 10828 10829 10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 10879 10880 10881 10882 10883 10884 10885 10886 10887 10888 10889 10890 10891 10892 10893 10894 10895 10896 10897 10898 10899 10900 10901 10902 10903 10904 10905 10906 10907 10908 10909 10910 10911 10912 10913 10914 10915 10916 10917 10918 10919 10920 10921 10922 10923 10924 10925 10926 10927 10928 10929 10930 10931 10932 10933 10934 10935 10936 10937 10938 10939 10940 10941 10942 10943 10944 10945 10946 10947 10948 10949 10950 10951 10952 10953 10954 10955 10956 10957 10958 10959 10960 10961 10962 10963 10964 10965 10966 10967 10968 10969 10970 10971 10972 10973 10974 10975 10976 10977 10978 10979 10980 10981 10982 10983 10984 10985 10986 10987 10988 10989 10990 10991 10992 10993 10994 10995 10996 10997 10998 10999 11000 11001 11002 11003 11004 11005 11006 11007 11008 11009 11010 11011 11012 11013 11014 11015 11016 11017 11018 11019 11020 11021 11022 11023 11024 11025 11026 11027 11028 11029 11030 11031 11032 11033 11034 11035 11036 11037 11038 11039 11040 11041 11042 11043 11044 11045 11046 11047 11048 11049 11050 11051 11052 11053 11054 11055 11056 11057 11058 11059 11060 11061 11062 11063 11064 11065 11066 11067 11068 11069 11070 11071 11072 11073 11074 11075 11076 11077 11078 11079 11080 11081 11082 11083 11084 11085 11086 11087 11088 11089 11090 11091 11092 11093 11094 11095 11096 11097 11098 11099 11100 11101 11102 11103 11104 11105 11106 11107 11108 11109 11110 11111 11112 11113 11114 11115 11116 11117 11118 11119 11120 11121 11122 11123 11124 11125 11126 11127 11128 11129 11130 11131 11132 11133 11134 11135 11136 11137 11138 11139 11140 11141 11142 11143 11144 11145 11146 11147 11148 11149 11150 11151 11152 11153 11154 11155 11156 11157 11158 11159 11160 11161 11162 11163 11164 11165 11166 11167 11168 11169 11170 11171 11172 11173 11174 11175 11176 11177 11178 11179 11180 11181 11182 11183 11184 11185 11186 11187 11188 11189 11190 11191 11192 11193 11194 11195 11196 11197 11198 11199 11200 11201 11202 11203 11204 11205 11206 11207 11208 11209 11210 11211 11212 11213 11214 11215 11216 11217 11218 11219 11220 11221 11222 11223 11224 11225 11226 11227 11228 11229 11230 11231 11232 11233 11234 11235 11236 11237 11238 11239 11240 11241 11242 11243 11244 11245 11246 11247 11248 11249 11250 11251 11252 11253 11254 11255 11256 11257 11258 11259 11260 11261 11262 11263 11264 11265 11266 11267 11268 11269 11270 11271 11272 11273 11274 11275 11276 11277 11278 11279 11280 11281 11282 11283 11284 11285 11286 11287 11288 11289 11290 11291 11292 11293 11294 11295 11296 11297 11298 11299 11300 11301 11302 11303 11304 11305 11306 11307 11308 11309 11310 11311 11312 11313 11314 11315 11316 11317 11318 11319 11320 11321 11322 11323 11324 11325 11326 11327 11328 11329 11330 11331 11332 11333 11334 11335 11336 11337 11338 11339 11340 11341 11342 11343 11344 11345 11346 11347 11348 11349 11350 11351 11352 11353 11354 11355 11356 11357 11358 11359 11360 11361 11362 11363 11364 11365 11366 11367 11368 11369 11370 11371 11372 11373 11374 11375 11376 11377 11378 11379 11380 11381 11382 11383 11384 11385 11386 11387 11388 11389 11390 11391 11392 11393 11394 11395 11396 11397 11398 11399 11400 11401 11402 11403 11404 11405 11406 11407 11408 11409 11410 11411 11412 11413 11414 11415 11416 11417 11418 11419 11420 11421 11422 11423 11424 11425 11426 11427 11428 11429 11430 11431 11432 11433 11434 11435 11436 11437 11438 11439 11440 11441 11442 11443 11444 11445 11446 11447 11448 11449 11450 11451 11452 11453 11454 11455 11456 11457 11458 11459 11460 11461 11462 11463 11464 11465 11466 11467 11468 11469 11470 11471 11472 11473 11474 11475 11476 11477 11478 11479 11480 11481 11482 11483 11484 11485 11486 11487 11488 11489 11490 11491 11492 11493 11494 11495 11496 11497 11498 11499 11500 11501 11502 11503 11504 11505 11506 11507 11508 11509 11510 11511 11512 11513 11514 11515 11516 11517 11518 11519 11520 11521 11522 11523 11524 11525 11526 11527 11528 11529 11530 11531 11532 11533 11534 11535 11536 11537 11538 11539 11540 11541 11542 11543 11544 11545 11546 11547 11548 11549 11550 11551 11552 11553 11554 11555 11556 11557 11558 11559 11560 11561 11562 11563 11564 11565 11566 11567 11568 11569 11570 11571 11572 11573 11574 11575 11576 11577 11578 11579 11580 11581 11582 11583 11584 11585 11586 11587 11588 11589 11590 11591 11592 11593 11594 11595 11596 11597 11598 11599 11600 11601 11602 11603 11604 11605 11606 11607 11608 11609 11610 11611 11612 11613 11614 11615 11616 11617 11618 11619 11620 11621 11622 11623 11624 11625 11626 11627 11628 11629 11630 11631 11632 11633 11634 11635 11636 11637 11638 11639 11640 11641 11642 11643 11644 11645 11646 11647 11648 11649 11650 11651 11652 11653 11654 11655 11656 11657 11658 11659 11660 11661 11662 11663 11664 11665 11666 11667 11668 11669 11670 11671 11672 11673 11674 11675 11676 11677 11678 11679 11680 11681 11682 11683 11684 11685 11686 11687 11688 11689 11690 11691 11692 11693 11694 11695 11696 11697 11698 11699 11700 11701 11702 11703 11704 11705 11706 11707 11708 11709 11710 11711 11712 11713 11714 11715 11716 11717 11718 11719 11720 11721 11722 11723 11724 11725 11726 11727 11728 11729 11730 11731 11732 11733 11734 11735 11736 11737 11738 11739 11740 11741 11742 11743 11744 11745 11746 11747 11748 11749 11750 11751 11752 11753 11754 11755 11756 11757 11758 11759 11760 11761 11762 11763 11764 11765 11766 11767 11768 11769 11770 11771 11772 11773 11774 11775 11776 11777 11778 11779 11780 11781 11782 11783 11784 11785 11786 11787 11788 11789 11790 11791 11792 11793 11794 11795 11796 11797 11798 11799 11800 11801 11802 11803 11804 11805 11806 11807 11808 11809 11810 11811 11812 11813 11814 11815 11816 11817 11818 11819 11820 11821 11822 11823 11824 11825 11826 11827 11828 11829 11830 11831 11832 11833 11834 11835 11836 11837 11838 11839 11840 11841 11842 11843 11844 11845 11846 11847 11848 11849 11850 11851 11852 11853 11854 11855 11856 11857 11858 11859 11860 11861 11862 11863 11864 11865 11866 11867 11868 11869 11870 11871 11872 11873 11874 11875 11876 11877 11878 11879 11880 11881 11882 11883 11884 11885 11886 11887 11888 11889 11890 11891 11892 11893 11894 11895 11896 11897 11898 11899 11900 11901 11902 11903 11904 11905 11906 11907 11908 11909 11910 11911 11912 11913 11914 11915 11916 11917 11918 11919 11920 11921 11922 11923 11924 11925 11926 11927 11928 11929 11930 11931 11932 11933 11934 11935 11936 11937 11938 11939 11940 11941 11942 11943 11944 11945 11946 11947 11948 11949 11950 11951 11952 11953 11954 11955 11956 11957 11958 11959 11960 11961 11962 11963 11964 11965 11966 11967 11968 11969 11970 11971 11972 11973 11974 11975 11976 11977 11978 11979 11980 11981 11982 11983 11984 11985 11986 11987 11988 11989 11990 11991 11992 11993 11994 11995 11996 11997 11998 11999 12000 12001 12002 12003 12004 12005 12006 12007 12008 12009 12010 12011 12012 12013 12014 12015 12016 12017 12018 12019 12020 12021 12022 12023 12024 12025 12026 12027 12028 12029 12030 12031 12032 12033 12034 12035 12036 12037 12038 12039 12040 12041 12042 12043 12044 12045 12046 12047 12048 12049 12050 12051 12052 12053 12054 12055 12056 12057 12058 12059 12060 12061 12062 12063 12064 12065 12066 12067 12068 12069 12070 12071 12072 12073 12074 12075 12076 12077 12078 12079 12080 12081 12082 12083 12084 12085 12086 12087 12088 12089 12090 12091 12092 12093 12094 12095 12096 12097 12098 12099 12100 12101 12102 12103 12104 12105 12106 12107 12108 12109 12110 12111 12112 12113 12114 12115 12116 12117 12118 12119 12120 12121 12122 12123 12124 12125 12126 12127 12128 12129 12130 12131 12132 12133 12134 12135 12136 12137 12138 12139 12140 12141 12142 12143 12144 12145 12146 12147 12148 12149 12150 12151 12152 12153 12154 12155 12156 12157 12158 12159 12160 12161 12162 12163 12164 12165 12166 12167 12168 12169 12170 12171 12172 12173 12174 12175 12176 12177 12178 12179 12180 12181 12182 12183 12184 12185 12186 12187 12188 12189 12190 12191 12192 12193 12194 12195 12196 12197 12198 12199 12200 12201 12202 12203 12204 12205 12206 12207 12208 12209 12210 12211 12212 12213 12214 12215 12216 12217 12218 12219 12220 12221 12222 12223 12224 12225 12226 12227 12228 12229 12230 12231 12232 12233 12234 12235 12236 12237 12238 12239 12240 12241 12242 12243 12244 12245 12246 12247 12248 12249 12250 12251 12252 12253 12254 12255 12256 12257 12258 12259 12260 12261 12262 12263 12264 12265 12266 12267 12268 12269 12270 12271 12272 12273 12274 12275 12276 12277 12278 12279 12280 12281 12282 12283 12284 12285 12286 12287 12288 12289 12290 12291 12292 12293 12294 12295 12296 12297 12298 12299 12300 12301 12302 12303 12304 12305 12306 12307 12308 12309 12310 12311 12312 12313 12314 12315 12316 12317 12318 12319 12320 12321 12322 12323 12324 12325 12326 12327 12328 12329 12330 12331 12332 12333 12334 12335 12336 12337 12338 12339 12340 12341 12342 12343 12344 12345 12346 12347 12348 12349 12350 12351 12352 12353 12354 12355 12356 12357 12358 12359 12360 12361 12362 12363 12364 12365 12366 12367 12368 12369 12370 12371 12372 12373 12374 12375 12376 12377 12378 12379 12380 12381 12382 12383 12384 12385 12386 12387 12388 12389 12390 12391 12392 12393 12394 12395 12396 12397 12398 12399 12400 12401 12402 12403 12404 12405 12406 12407 12408 12409 12410 12411 12412 12413 12414 12415 12416 12417 12418 12419 12420 12421 12422 12423 12424 12425 12426 12427 12428 12429 12430 12431 12432 12433 12434 12435 12436 12437 12438 12439 12440 12441 12442 12443 12444 12445 12446 12447 12448 12449 12450 12451 12452 12453 12454 12455 12456 12457 12458 12459 12460 12461 12462 12463 12464 12465 12466 12467 12468 12469 12470 12471 12472 12473 12474 12475 12476 12477 12478 12479 12480 12481 12482 12483 12484 12485 12486 12487 12488 12489 12490 12491 12492 12493 12494 12495 12496 12497 12498 12499 12500 12501 12502 12503 12504 12505 12506 12507 12508 12509 12510 12511 12512 12513 12514 12515 12516 12517 12518 12519 12520 12521 12522 12523 12524 12525 12526 12527 12528 12529 12530 12531 12532 12533 12534 12535 12536 12537 12538 12539 12540 12541 12542 12543 12544 12545 12546 12547 12548 12549 12550 12551 12552 12553 12554 12555 12556 12557 12558 12559 12560 12561 12562 12563 12564 12565 12566 12567 12568 12569 12570 12571 12572 12573 12574 12575 12576 12577 12578 12579 12580 12581 12582 12583 12584 12585 12586 12587 12588 12589 12590 12591 12592 12593 12594 12595 12596 12597 12598 12599 12600 12601 12602 12603 12604 12605 12606 12607 12608 12609 12610 12611 12612 12613 12614 12615 12616 12617 12618 12619 12620 12621 12622 12623 12624 12625 12626 12627 12628 12629 12630 12631 12632 12633 12634 12635 12636 12637 12638 12639 12640 12641 12642 12643 12644 12645 12646 12647 12648 12649 12650 12651 12652 12653 12654 12655 12656 12657 12658 12659 12660 12661 12662 12663 12664 12665 12666 12667 12668 12669 12670 12671 12672 12673 12674 12675 12676 12677 12678 12679 12680 12681 12682 12683 12684 12685 12686 12687 12688 12689 12690 12691 12692 12693 12694 12695 12696 12697 12698 12699 12700 12701 12702 12703 12704 12705 12706 12707 12708 12709 12710 12711 12712 12713 12714 12715 12716 12717 12718 12719 12720 12721 12722 12723 12724 12725 12726 12727 12728 12729 12730 12731 12732 12733 12734 12735 12736 12737 12738 12739 12740 12741 12742 12743 12744 12745 12746 12747 12748 12749 12750 12751 12752 12753 12754 12755 12756 12757 12758 12759 12760 12761 12762 12763 12764 12765 12766 12767 12768 12769 12770 12771 12772 12773 12774 12775 12776 12777 12778 12779 12780 12781 12782 12783 12784 12785 12786 12787 12788 12789 12790 12791 12792 12793 12794 12795 12796 12797 12798 12799 12800 12801 12802 12803 12804 12805 12806 12807 12808 12809 12810 12811 12812 12813 12814 12815 12816 12817 12818 12819 12820 12821 12822 12823 12824 12825 12826 12827 12828 12829 12830 12831 12832 12833 12834 12835 12836 12837 12838 12839 12840 12841 12842 12843 12844 12845 12846 12847 12848 12849 12850 12851 12852 12853 12854 12855 12856 12857 12858 12859 12860 12861 12862 12863 12864 12865 12866 12867 12868 12869 12870 12871 12872 12873 12874 12875 12876 12877 12878 12879 12880 12881 12882 12883 12884 12885 12886 12887 12888 12889 12890 12891 12892 12893 12894 12895 12896 12897 12898 12899 12900 12901 12902 12903 12904 12905 12906 12907 12908 12909 12910 12911 12912 12913 12914 12915 12916 12917 12918 12919 12920 12921 12922 12923 12924 12925 12926 12927 12928 12929 12930 12931 12932 12933 12934 12935 12936 12937 12938 12939 12940 12941 12942 12943 12944 12945 12946 12947 12948 12949 12950 12951 12952 12953 12954 12955 12956 12957 12958 12959 12960 12961 12962 12963 12964 12965 12966 12967 12968 12969 12970 12971 12972 12973 12974 12975 12976 12977 12978 12979 12980 12981 12982 12983 12984 12985 12986 12987 12988 12989 12990 12991 12992 12993 12994 12995 12996 12997 12998 12999 13000 13001 13002 13003 13004 13005 13006 13007 13008 13009 13010 13011 13012 13013 13014 13015 13016 13017 13018 13019 13020 13021 13022 13023 13024 13025 13026 13027 13028 13029 13030 13031 13032 13033 13034 13035 13036 13037 13038 13039 13040 13041 13042 13043 13044 13045 13046 13047 13048 13049 13050 13051 13052 13053 13054 13055 13056 13057 13058 13059 13060 13061 13062 13063 13064 13065 13066 13067 13068 13069 13070 13071 13072 13073 13074 13075 13076 13077 13078 13079 13080 13081 13082 13083 13084 13085 13086 13087 13088 13089 13090 13091 13092 13093 13094 13095 13096 13097 13098 13099 13100 13101 13102 13103 13104 13105 13106 13107 13108 13109 13110 13111 13112 13113 13114 13115 13116 13117 13118 13119 13120 13121 13122 13123 13124 13125 13126 13127 13128 13129 13130 13131 13132 13133 13134 13135 13136 13137 13138 13139 13140 13141 13142 13143 13144 13145 13146 13147 13148 13149 13150 13151 13152 13153 13154 13155 13156 13157 13158 13159 13160 13161 13162 13163 13164 13165 13166 13167 13168 13169 13170 13171 13172 13173 13174 13175 13176 13177 13178 13179 13180 13181 13182 13183 13184 13185 13186 13187 13188 13189 13190 13191 13192 13193 13194 13195 13196 13197 13198 13199 13200 13201 13202 13203 13204 13205 13206 13207 13208 13209 13210 13211 13212 13213 13214 13215 13216 13217 13218 13219 13220 13221 13222 13223 13224 13225 13226 13227 13228 13229 13230 13231 13232 13233 13234 13235 13236 13237 13238 13239 13240 13241 13242 13243 13244 13245 13246 13247 13248 13249 13250 13251 13252 13253 13254 13255 13256 13257 13258 13259 13260 13261 13262 13263 13264 13265 13266 13267 13268 13269 13270 13271 13272 13273 13274 13275 13276 13277 13278 13279 13280 13281 13282 13283 13284 13285 13286 13287 13288 13289 13290 13291 13292 13293 13294 13295 13296 13297 13298 13299 13300 13301 13302 13303 13304 13305 13306 13307 13308 13309 13310 13311 13312 13313 13314 13315 13316 13317 13318 13319 13320 13321 13322 13323 13324 13325 13326 13327 13328 13329 13330 13331 13332 13333 13334 13335 13336 13337 13338 13339 13340 13341 13342 13343 13344 13345 13346 13347 13348 13349 13350 13351 13352 13353 13354 13355 13356 13357 13358 13359 13360 13361 13362 13363 13364 13365 13366 13367 13368 13369 13370 13371 13372 13373 13374 13375 13376 13377 13378 13379 13380 13381 13382 13383 13384 13385 13386 13387 13388 13389 13390 13391 13392 13393 13394 13395 13396 13397 13398 13399 13400 13401 13402 13403 13404 13405 13406 13407 13408 13409 13410 13411 13412 13413 13414 13415 13416 13417 13418 13419 13420 13421 13422 13423 13424 13425 13426 13427 13428 13429 13430 13431 13432 13433 13434 13435 13436 13437 13438 13439 13440 13441 13442 13443 13444 13445 13446 13447 13448 13449 13450 13451 13452 13453 13454 13455 13456 13457 13458 13459 13460 13461 13462 13463 13464 13465 13466 13467 13468 13469 13470 13471 13472 13473 13474 13475 13476 13477 13478 13479 13480 13481 13482 13483 13484 13485 13486 13487 13488 13489 13490 13491 13492 13493 13494 13495 13496 13497 13498 13499 13500 13501 13502 13503 13504 13505 13506 13507 13508 13509 13510 13511 13512 13513 13514 13515 13516 13517 13518 13519 13520 13521 13522 13523 13524 13525 13526 13527 13528 13529 13530 13531 13532 13533 13534 13535 13536 13537 13538 13539 13540 13541 13542 13543 13544 13545 13546 13547 13548 13549 13550 13551 13552 13553 13554 13555 13556 13557 13558 13559 13560 13561 13562 13563 13564 13565 13566 13567 13568 13569 13570 13571 13572 13573 13574 13575 13576 13577 13578 13579 13580 13581 13582 13583 13584 13585 13586 13587 13588 13589 13590 13591 13592 13593 13594 13595 13596 13597 13598 13599 13600 13601 13602 13603 13604 13605 13606 13607 13608 13609 13610 13611 13612 13613 13614 13615 13616 13617 13618 13619 13620 13621 13622 13623 13624 13625 13626 13627 13628 13629 13630 13631 13632 13633 13634 13635 13636 13637 13638 13639 13640 13641 13642 13643 13644 13645 13646 13647 13648 13649 13650 13651 13652 13653 13654 13655 13656 13657 13658 13659 13660 13661 13662 13663 13664 13665 13666 13667 13668 13669 13670 13671 13672 13673 13674 13675 13676 13677 13678 13679 13680 13681 13682 13683 13684 13685 13686 13687 13688 13689 13690 13691 13692 13693 13694 13695 13696 13697 13698 13699 13700 13701 13702 13703 13704 13705 13706 13707 13708 13709 13710 13711 13712 13713 13714 13715 13716 13717 13718 13719 13720 13721 13722 13723 13724 13725 13726 13727 13728 13729 13730 13731 13732 13733 13734 13735 13736 13737 13738 13739 13740 13741 13742 13743 13744 13745 13746 13747 13748 13749 13750 13751 13752 13753 13754 13755 13756 13757 13758 13759 13760 13761 13762 13763 13764 13765 13766 13767 13768 13769 13770 13771 13772 13773 13774 13775 13776 13777 13778 13779 13780 13781 13782 13783 13784 13785 13786 13787 13788 13789 13790 13791 13792 13793 13794 13795 13796 13797 13798 13799 13800 13801 13802 13803 13804 13805 13806 13807 13808 13809 13810 13811 13812 13813 13814 13815 13816 13817 13818 13819 13820 13821 13822 13823 13824 13825 13826 13827 13828 13829 13830 13831 13832 13833 13834 13835 13836 13837 13838 13839 13840 13841 13842 13843 13844 13845 13846 13847 13848 13849 13850 13851 13852 13853 13854 13855 13856 13857 13858 13859 13860 13861 13862 13863 13864 13865 13866 13867 13868 13869 13870 13871 13872 13873 13874 13875 13876 13877 13878 13879 13880 13881 13882 13883 13884 13885 13886 13887 13888 13889 13890 13891 13892 13893 13894 13895 13896 13897 13898 13899 13900 13901 13902 13903 13904 13905 13906 13907 13908 13909 13910 13911 13912 13913 13914 13915 13916 13917 13918 13919 13920 13921 13922 13923 13924 13925 13926 13927 13928 13929 13930 13931 13932 13933 13934 13935 13936 13937 13938 13939 13940 13941 13942 13943 13944 13945 13946 13947 13948 13949 13950 13951 13952 13953 13954 13955 13956 13957 13958 13959 13960 13961 13962 13963 13964 13965 13966 13967 13968 13969 13970 13971 13972 13973 13974 13975 13976 13977 13978 13979 13980 13981 13982 13983 13984 13985 13986 13987 13988 13989 13990 13991 13992 13993 13994 13995 13996 13997 13998 13999 14000 14001 14002 14003 14004 14005 14006 14007 14008 14009 14010 14011 14012 14013 14014 14015 14016 14017 14018 14019 14020 14021 14022 14023 14024 14025 14026 14027 14028 14029 14030 14031 14032 14033 14034 14035 14036 14037 14038 14039 14040 14041 14042 14043 14044 14045 14046 14047 14048 14049 14050 14051 14052 14053 14054 14055 14056 14057 14058 14059 14060 14061 14062 14063 14064 14065 14066 14067 14068 14069 14070 14071 14072 14073 14074 14075 14076 14077 14078 14079 14080 14081 14082 14083 14084 14085 14086 14087 14088 14089 14090 14091 14092 14093 14094 14095 14096 14097 14098 14099 14100 14101 14102 14103 14104 14105 14106 14107 14108 14109 14110 14111 14112 14113 14114 14115 14116 14117 14118 14119 14120 14121 14122 14123 14124 14125 14126 14127 14128 14129 14130 14131 14132 14133 14134 14135 14136 14137 14138 14139 14140 14141 14142 14143 14144 14145 14146 14147 14148 14149 14150 14151 14152 14153 14154 14155 14156 14157 14158 14159 14160 14161 14162 14163 14164 14165 14166 14167 14168 14169 14170 14171 14172 14173 14174 14175 14176 14177 14178 14179 14180 14181 14182 14183 14184 14185 14186 14187 14188 14189 14190 14191 14192 14193 14194 14195 14196 14197 14198 14199 14200 14201 14202 14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 14230 14231 14232 14233 14234 14235 14236 14237 14238 14239 14240 14241 14242 14243 14244 14245 14246 14247 14248 14249 14250 14251 14252 14253 14254 14255 14256 14257 14258 14259 14260 14261 14262 14263 14264 14265 14266 14267 14268 14269 14270 14271 14272 14273 14274 14275 14276 14277 14278 14279 14280 14281 14282 14283 14284 14285 14286 14287 14288 14289 14290 14291 14292 14293 14294 14295 14296 14297 14298 14299 14300 14301 14302 14303 14304 14305 14306 14307 14308 14309 14310 14311 14312 14313 14314 14315 14316 14317 14318 14319 14320 14321 14322 14323 14324 14325 14326 14327 14328 14329 14330 14331 14332 14333 14334 14335 14336 14337 14338 14339 14340 14341 14342 14343 14344 14345 14346 14347 14348 14349 14350 14351 14352 14353 14354 14355 14356 14357 14358 14359 14360 14361 14362 14363 14364 14365 14366 14367 14368 14369 14370 14371 14372 14373 14374 14375 14376 14377 14378 14379 14380 14381 14382 14383 14384 14385 14386 14387 14388 14389 14390 14391 14392 14393 14394 14395 14396 14397 14398 14399 14400 14401 14402 14403 14404 14405 14406 14407 14408 14409 14410 14411 14412 14413 14414 14415 14416 14417 14418 14419 14420 14421 14422 14423 14424 14425 14426 14427 14428 14429 14430 14431 14432 14433 14434 14435 14436 14437 14438 14439 14440 14441 14442 14443 14444 14445 14446 14447 14448 14449 14450 14451 14452 14453 14454 14455 14456 14457 14458 14459 14460 14461 14462 14463 14464 14465 14466 14467 14468 14469 14470 14471 14472 14473 14474 14475 14476 14477 14478 14479 14480 14481 14482 14483 14484 14485 14486 14487 14488 14489 14490 14491 14492 14493 14494 14495 14496 14497 14498 14499 14500 14501 14502 14503 14504 14505 14506 14507 14508 14509 14510 14511 14512 14513 14514 14515 14516 14517 14518 14519 14520 14521 14522 14523 14524 14525 14526 14527 14528 14529 14530 14531 14532 14533 14534 14535 14536 14537 14538 14539 14540 14541 14542 14543 14544 14545 14546 14547 14548 14549 14550 14551 14552 14553 14554 14555 14556 14557 14558 14559 14560 14561 14562 14563 14564 14565 14566 14567 14568 14569 14570 14571 14572 14573 14574 14575 14576 14577 14578 14579 14580 14581 14582 14583 14584 14585 14586 14587 14588 14589 14590 14591 14592 14593 14594 14595 14596 14597 14598 14599 14600 14601 14602 14603 14604 14605 14606 14607 14608 14609 14610 14611 14612 14613 14614 14615 14616 14617 14618 14619 14620 14621 14622 14623 14624 14625 14626 14627 14628 14629 14630 14631 14632 14633 14634 14635 14636 14637 14638 14639 14640 14641 14642 14643 14644 14645 14646 14647 14648 14649 14650 14651 14652 14653 14654 14655 14656 14657 14658 14659 14660 14661 14662 14663 14664 14665 14666 14667 14668 14669 14670 14671 14672 14673 14674 14675 14676 14677 14678 14679 14680 14681 14682 14683 14684 14685 14686 14687 14688 14689 14690 14691 14692 14693 14694 14695 14696 14697 14698 14699 14700 14701 14702 14703 14704 14705 14706 14707 14708 14709 14710 14711 14712 14713 14714 14715 14716 14717 14718 14719 14720 14721 14722 14723 14724 14725 14726 14727 14728 14729 14730 14731 14732 14733 14734 14735 14736 14737 14738 14739 14740 14741 14742 14743 14744 14745 14746 14747 14748 14749 14750 14751 14752 14753 14754 14755 14756 14757 14758 14759 14760 14761 14762 14763 14764 14765 14766 14767 14768 14769 14770 14771 14772 14773 14774 14775 14776 14777 14778 14779 14780 14781 14782 14783 14784 14785 14786 14787 14788 14789 14790 14791 14792 14793 14794 14795 14796 14797 14798 14799 14800 14801 14802 14803 14804 14805 14806 14807 14808 14809 14810 14811 14812 14813 14814 14815 14816 14817 14818 14819 14820 14821 14822 14823 14824 14825 14826 14827 14828 14829 14830 14831 14832 14833 14834 14835 14836 14837 14838 14839 14840 14841 14842 14843 14844 14845 14846 14847 14848 14849 14850 14851 14852 14853 14854 14855 14856 14857 14858 14859 14860 14861 14862 14863 14864 14865 14866 14867 14868 14869 14870 14871 14872 14873 14874 14875 14876 14877 14878 14879 14880 14881 14882 14883 14884 14885 14886 14887 14888 14889 14890 14891 14892 14893 14894 14895 14896 14897 14898 14899 14900 14901 14902 14903 14904 14905 14906 14907 14908 14909 14910 14911 14912 14913 14914 14915 14916 14917 14918 14919 14920 14921 14922 14923 14924 14925 14926 14927 14928 14929 14930 14931 14932 14933 14934 14935 14936 14937 14938 14939 14940 14941 14942 14943 14944 14945 14946 14947 14948 14949 14950 14951 14952 14953 14954 14955 14956 14957 14958 14959 14960 14961 14962 14963 14964 14965 14966 14967 14968 14969 14970 14971 14972 14973 14974 14975 14976 14977 14978 14979 14980 14981 14982 14983 14984 14985 14986 14987 14988 14989 14990 14991 14992 14993 14994 14995 14996 14997 14998 14999 15000 15001 15002 15003 15004 15005 15006 15007 15008 15009 15010 15011 15012 15013 15014 15015 15016 15017 15018 15019 15020 15021 15022 15023 15024 15025 15026 15027 15028 15029 15030 15031 15032 15033 15034 15035 15036 15037 15038 15039 15040 15041 15042 15043 15044 15045 15046 15047 15048 15049 15050 15051 15052 15053 15054 15055 15056 15057 15058 15059 15060 15061 15062 15063 15064 15065 15066 15067 15068 15069 15070 15071 15072 15073 15074 15075 15076 15077 15078 15079 15080 15081 15082 15083 15084 15085 15086 15087 15088 15089 15090 15091 15092 15093 15094 15095 15096 15097 15098 15099 15100 15101 15102 15103 15104 15105 15106 15107 15108 15109 15110 15111 15112 15113 15114 15115 15116 15117 15118 15119 15120 15121 15122 15123 15124 15125 15126 15127 15128 15129 15130 15131 15132 15133 15134 15135 15136 15137 15138 15139 15140 15141 15142 15143 15144 15145 15146 15147 15148 15149 15150 15151 15152 15153 15154 15155 15156 15157 15158 15159 15160 15161 15162 15163 15164 15165 15166 15167 15168 15169 15170 15171 15172 15173 15174 15175 15176 15177 15178 15179 15180 15181 15182 15183 15184 15185 15186 15187 15188 15189 15190 15191 15192 15193 15194 15195 15196 15197 15198 15199 15200 15201 15202 15203 15204 15205 15206 15207 15208 15209 15210 15211 15212 15213 15214 15215 15216 15217 15218 15219 15220 15221 15222 15223 15224 15225 15226 15227 15228 15229 15230 15231 15232 15233 15234 15235 15236 15237 15238 15239 15240 15241 15242 15243 15244 15245 15246 15247 15248 15249 15250 15251 15252 15253 15254 15255 15256 15257 15258 15259 15260 15261 15262 15263 15264 15265 15266 15267 15268 15269 15270 15271 15272 15273 15274 15275 15276 15277 15278 15279 15280 15281 15282 15283 15284 15285 15286 15287 15288 15289 15290 15291 15292 15293 15294 15295 15296 15297 15298 15299 15300 15301 15302 15303 15304 15305 15306 15307 15308 15309 15310 15311 15312 15313 15314 15315 15316 15317 15318 15319 15320 15321 15322 15323 15324 15325 15326 15327 15328 15329 15330 15331 15332 15333 15334 15335 15336 15337 15338 15339 15340 15341 15342 15343 15344 15345 15346 15347 15348 15349 15350 15351 15352 15353 15354 15355 15356 15357 15358 15359 15360 15361 15362 15363 15364 15365 15366 15367 15368 15369 15370 15371 15372 15373 15374 15375 15376 15377 15378 15379 15380 15381 15382 15383 15384 15385 15386 15387 15388 15389 15390 15391 15392 15393 15394 15395 15396 15397 15398 15399 15400 15401 15402 15403 15404 15405 15406 15407 15408 15409 15410 15411 15412 15413 15414 15415 15416 15417 15418 15419 15420 15421 15422 15423 15424 15425 15426 15427 15428 15429 15430 15431 15432 15433 15434 15435 15436 15437 15438 15439 15440 15441 15442 15443 15444 15445 15446 15447 15448 15449 15450 15451 15452 15453 15454 15455 15456 15457 15458 15459 15460 15461 15462 15463 15464 15465 15466 15467 15468 15469 15470 15471 15472 15473 15474 15475 15476 15477 15478 15479 15480 15481 15482 15483 15484 15485 15486 15487 15488 15489 15490 15491 15492 15493 15494 15495 15496 15497 15498 15499 15500 15501 15502 15503 15504 15505 15506 15507 15508 15509 15510 15511 15512 15513 15514 15515 15516 15517 15518 15519 15520 15521 15522 15523 15524 15525 15526 15527 15528 15529 15530 15531 15532 15533 15534 15535 15536 15537 15538 15539 15540 15541 15542 15543 15544 15545 15546 15547 15548 15549 15550 15551 15552 15553 15554 15555 15556 15557 15558 15559 15560 15561 15562 15563 15564 15565 15566 15567 15568 15569 15570 15571 15572 15573 15574 15575 15576 15577 15578 15579 15580 15581 15582 15583 15584 15585 15586 15587 15588 15589 15590 15591 15592 15593 15594 15595 15596 15597 15598 15599 15600 15601 15602 15603 15604 15605 15606 15607 15608 15609 15610 15611 15612 15613 15614 15615 15616 15617 15618 15619 15620 15621 15622 15623 15624 15625 15626 15627 15628 15629 15630 15631 15632 15633 15634 15635 15636 15637 15638 15639 15640 15641 15642 15643 15644 15645 15646 15647 15648 15649 15650 15651 15652 15653 15654 15655 15656 15657 15658 15659 15660 15661 15662 15663 15664 15665 15666 15667 15668 15669 15670 15671 15672 15673 15674 15675 15676 15677 15678 15679 15680 15681 15682 15683 15684 15685 15686 15687 15688 15689 15690 15691 15692 15693 15694 15695 15696 15697 15698 15699 15700 15701 15702 15703 15704 15705 15706 15707 15708 15709 15710 15711 15712 15713 15714 15715 15716 15717 15718 15719 15720 15721 15722 15723 15724 15725 15726 15727 15728 15729 15730 15731 15732 15733 15734 15735 15736 15737 15738 15739 15740 15741 15742 15743 15744 15745 15746 15747 15748 15749 15750 15751 15752 15753 15754 15755 15756 15757 15758 15759 15760 15761 15762 15763 15764 15765 15766 15767 15768 15769 15770 15771 15772 15773 15774 15775 15776 15777 15778 15779 15780 15781 15782 15783 15784 15785 15786 15787 15788 15789 15790 15791 15792 15793 15794 15795 15796 15797 15798 15799 15800 15801 15802 15803 15804 15805 15806 15807 15808 15809 15810 15811 15812 15813 15814 15815 15816 15817 15818 15819 15820 15821 15822 15823 15824 15825 15826 15827 15828 15829 15830 15831 15832 15833 15834 15835 15836 15837 15838 15839 15840 15841 15842 15843 15844 15845 15846 15847 15848 15849 15850 15851 15852 15853 15854 15855 15856 15857 15858 15859 15860 15861 15862 15863 15864 15865 15866 15867 15868 15869 15870 15871 15872 15873 15874 15875 15876 15877 15878 15879 15880 15881 15882 15883 15884 15885 15886 15887 15888 15889 15890 15891 15892 15893 15894 15895 15896 15897 15898 15899 15900 15901 15902 15903 15904 15905 15906 15907 15908 15909 15910 15911 15912 15913 15914 15915 15916 15917 15918 15919 15920 15921 15922 15923 15924 15925 15926 15927 15928 15929 15930 15931 15932 15933 15934 15935 15936 15937 15938 15939 15940 15941 15942 15943 15944 15945 15946 15947 15948 15949 15950 15951 15952 15953 15954 15955 15956 15957 15958 15959 15960 15961 15962 15963 15964 15965 15966 15967 15968 15969 15970 15971 15972 15973 15974 15975 15976 15977 15978 15979 15980 15981 15982 15983 15984 15985 15986 15987 15988 15989 15990 15991 15992 15993 15994 15995 15996 15997 15998 15999 16000 16001 16002 16003 16004 16005 16006 16007 16008 16009 16010 16011 16012 16013 16014 16015 16016 16017 16018 16019 16020 16021 16022 16023 16024 16025 16026 16027 16028 16029 16030 16031 16032 16033 16034 16035 16036 16037 16038 16039 16040 16041 16042 16043 16044 16045 16046 16047 16048 16049 16050 16051 16052 16053 16054 16055 16056 16057 16058 16059 16060 16061 16062 16063 16064 16065 16066 16067 16068 16069 16070 16071 16072 16073 16074 16075 16076 16077 16078 16079 16080 16081 16082 16083 16084 16085 16086 16087 16088 16089 16090 16091 16092 16093 16094 16095 16096 16097 16098 16099 16100 16101 16102 16103 16104 16105 16106 16107 16108 16109 16110 16111 16112 16113 16114 16115 16116 16117 16118 16119 16120 16121 16122 16123 16124 16125 16126 16127 16128 16129 16130 16131 16132 16133 16134 16135 16136 16137 16138 16139 16140 16141 16142 16143 16144 16145 16146 16147 16148 16149 16150 16151 16152 16153 16154 16155 16156 16157 16158 16159 16160 16161 16162 16163 16164 16165 16166 16167 16168 16169 16170 16171 16172 16173 16174 16175 16176 16177 16178 16179 16180 16181 16182 16183 16184 16185 16186 16187 16188 16189 16190 16191 16192 16193 16194 16195 16196 16197 16198 16199 16200 16201 16202 16203 16204 16205 16206 16207 16208 16209 16210 16211 16212 16213 16214 16215 16216 16217 16218 16219 16220 16221 16222 16223 16224 16225 16226 16227 16228 16229 16230 16231 16232 16233 16234 16235 16236 16237 16238 16239 16240 16241 16242 16243 16244 16245 16246 16247 16248 16249 16250 16251 16252 16253 16254 16255 16256 16257 16258 16259 16260 16261 16262 16263 16264 16265 16266 16267 16268 16269 16270 16271 16272 16273 16274 16275 16276 16277 16278 16279 16280 16281 16282 16283 16284 16285 16286 16287 16288 16289 16290 16291 16292 16293 16294 16295 16296 16297 16298 16299 16300 16301 16302 16303 16304 16305 16306 16307 16308 16309 16310 16311 16312 16313 16314 16315 16316 16317 16318 16319 16320 16321 16322 16323 16324 16325 16326 16327 16328 16329 16330 16331 16332 16333 16334 16335 16336 16337 16338 16339 16340 16341 16342 16343 16344 16345 16346 16347 16348 16349 16350 16351 16352 16353 16354 16355 16356 16357 16358 16359 16360 16361 16362 16363 16364 16365 16366 16367 16368 16369 16370 16371 16372 16373 16374 16375 16376 16377 16378 16379 16380 16381 16382 16383 16384 16385 16386 16387 16388 16389 16390 16391 16392 16393 16394 16395 16396 16397 16398 16399 16400 16401 16402 16403 16404 16405 16406 16407 16408 16409 16410 16411 16412 16413 16414 16415 16416 16417 16418 16419 16420 16421 16422 16423 16424 16425 16426 16427 16428 16429 16430 16431 16432 16433 16434 16435 16436 16437 16438 16439 16440 16441 16442 16443 16444 16445 16446 16447 16448 16449 16450 16451 16452 16453 16454 16455 16456 16457 16458 16459 16460 16461 16462 16463 16464 16465 16466 16467 16468 16469 16470 16471 16472 16473 16474 16475 16476 16477 16478 16479 16480 16481 16482 16483 16484 16485 16486 16487 16488 16489 16490 16491 16492 16493 16494 16495 16496 16497 16498 16499 16500 16501 16502 16503 16504 16505 16506 16507 16508 16509 16510 16511 16512 16513 16514 16515 16516 16517 16518 16519 16520 16521 16522 16523 16524 16525 16526 16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 16558 16559 16560 16561 16562 16563 16564 16565 16566 16567 16568 16569 16570 16571 16572 16573 16574 16575 16576 16577 16578 16579 16580 16581 16582 16583 16584 16585 16586 16587 16588 16589 16590 16591 16592 16593 16594 16595 16596 16597 16598 16599 16600 16601 16602 16603 16604 16605 16606 16607 16608 16609 16610 16611 16612 16613 16614 16615 16616 16617 16618 16619 16620 16621 16622 16623 16624 16625 16626 16627 16628 16629 16630 16631 16632 16633 16634 16635 16636 16637 16638 16639 16640 16641 16642 16643 16644 16645 16646 16647 16648 16649 16650 16651 16652 16653 16654 16655 16656 16657 16658 16659 16660 16661 16662 16663 16664 16665 16666 16667 16668 16669 16670 16671 16672 16673 16674 16675 16676 16677 16678 16679 16680 16681 16682 16683 16684 16685 16686 16687 16688 16689 16690 16691 16692 16693 16694 16695 16696 16697 16698 16699 16700 16701 16702 16703 16704 16705 16706 16707 16708 16709 16710 16711 16712 16713 16714 16715 16716 16717 16718 16719 16720 16721 16722 16723 16724 16725 16726 16727 16728 16729 16730 16731 16732 16733 16734 16735 16736 16737 16738 16739 16740 16741 16742 16743 16744 16745 16746 16747 16748 16749 16750 16751 16752 16753 16754 16755 16756 16757 16758 16759 16760 16761 16762 16763 16764 16765 16766 16767 16768 16769 16770 16771 16772 16773 16774 16775 16776 16777 16778 16779 16780 16781 16782 16783 16784 16785 16786 16787 16788 16789 16790 16791 16792 16793 16794 16795 16796 16797 16798 16799 16800 16801 16802 16803 16804 16805 16806 16807 16808 16809 16810 16811 16812 16813 16814 16815 16816 16817 16818 16819 16820 16821 16822 16823 16824 16825 16826 16827 16828 16829 16830 16831 16832 16833 16834 16835 16836 16837 16838 16839 16840 16841 16842 16843 16844 16845 16846 16847 16848 16849 16850 16851 16852 16853 16854 16855 16856 16857 16858 16859 16860 16861 16862 16863 16864 16865 16866 16867 16868 16869 16870 16871 16872 16873 16874 16875 16876 16877 16878 16879 16880 16881 16882 16883 16884 16885 16886 16887 16888 16889 16890 16891 16892 16893 16894 16895 16896 16897 16898 16899 16900 16901 16902 16903 16904 16905 16906 16907 16908 16909 16910 16911 16912 16913 16914 16915 16916 16917 16918 16919 16920 16921 16922 16923 16924 16925 16926 16927 16928 16929 16930 16931 16932 16933 16934 16935 16936 16937 16938 16939 16940 16941 16942 16943 16944 16945 16946 16947 16948 16949 16950 16951 16952 16953 16954 16955 16956 16957 16958 16959 16960 16961 16962 16963 16964 16965 16966 16967 16968 16969 16970 16971 16972 16973 16974 16975 16976 16977 16978 16979 16980 16981 16982 16983 16984 16985 16986 16987 16988 16989 16990 16991 16992 16993 16994 16995 16996 16997 16998 16999 17000 17001 17002 17003 17004 17005 17006 17007 17008 17009 17010 17011 17012 17013 17014 17015 17016 17017 17018 17019 17020 17021 17022 17023 17024 17025 17026 17027 17028 17029 17030 17031 17032 17033 17034 17035 17036 17037 17038 17039 17040 17041 17042 17043 17044 17045 17046 17047 17048 17049 17050 17051 17052 17053 17054 17055 17056 17057 17058 17059 17060 17061 17062 17063 17064 17065 17066 17067 17068 17069 17070 17071 17072 17073 17074 17075 17076 17077 17078 17079 17080 17081 17082 17083 17084 17085 17086 17087 17088 17089 17090 17091 17092 17093 17094 17095 17096 17097 17098 17099 17100 17101 17102 17103 17104 17105 17106 17107 17108 17109 17110 17111 17112 17113 17114 17115 17116 17117 17118 17119 17120 17121 17122 17123 17124 17125 17126 17127 17128 17129 17130 17131 17132 17133 17134 17135 17136 17137 17138 17139 17140 17141 17142 17143 17144 17145 17146 17147 17148 17149 17150 17151 17152 17153 17154 17155 17156 17157 17158 17159 17160 17161 17162 17163 17164 17165 17166 17167 17168 17169 17170 17171 17172 17173 17174 17175 17176 17177 17178 17179 17180 17181 17182 17183 17184 17185 17186 17187 17188 17189 17190 17191 17192 17193 17194 17195 17196 17197 17198 17199 17200 17201 17202 17203 17204 17205 17206 17207 17208 17209 17210 17211 17212 17213 17214 17215 17216 17217 17218 17219 17220 17221 17222 17223 17224 17225 17226 17227 17228 17229 17230 17231 17232 17233 17234 17235 17236 17237 17238 17239 17240 17241 17242 17243 17244 17245 17246 17247 17248 17249 17250 17251 17252 17253 17254 17255 17256 17257 17258 17259 17260 17261 17262 17263 17264 17265 17266 17267 17268 17269 17270 17271 17272 17273 17274 17275 17276 17277 17278 17279 17280 17281 17282 17283 17284 17285 17286 17287 17288 17289 17290 17291 17292 17293 17294 17295 17296 17297 17298 17299 17300 17301 17302 17303 17304 17305 17306 17307 17308 17309 17310 17311 17312 17313 17314 17315 17316 17317 17318 17319 17320 17321 17322 17323 17324 17325 17326 17327 17328 17329 17330 17331 17332 17333 17334 17335 17336 17337 17338 17339 17340 17341 17342 17343 17344 17345 17346 17347 17348 17349 17350 17351 17352 17353 17354 17355 17356 17357 17358 17359 17360 17361 17362 17363 17364 17365 17366 17367 17368 17369 17370 17371 17372 17373 17374 17375 17376 17377 17378 17379 17380 17381 17382 17383 17384 17385 17386 17387 17388 17389 17390 17391 17392 17393 17394 17395 17396 17397 17398 17399 17400 17401 17402 17403 17404 17405 17406 17407 17408 17409 17410 17411 17412 17413 17414 17415 17416 17417 17418 17419 17420 17421 17422 17423 17424 17425 17426 17427 17428 17429 17430 17431 17432 17433 17434 17435 17436 17437 17438 17439 17440 17441 17442 17443 17444 17445 17446 17447 17448 17449 17450 17451 17452 17453 17454 17455 17456 17457 17458 17459 17460 17461 17462 17463 17464 17465 17466 17467 17468 17469 17470 17471 17472 17473 17474 17475 17476 17477 17478 17479 17480 17481 17482 17483 17484 17485 17486 17487 17488 17489 17490 17491 17492 17493 17494 17495 17496 17497 17498 17499 17500 17501 17502 17503 17504 17505 17506 17507 17508 17509 17510 17511 17512 17513 17514 17515 17516 17517 17518 17519 17520 17521 17522 17523 17524 17525 17526 17527 17528 17529 17530 17531 17532 17533 17534 17535 17536 17537 17538 17539 17540 17541 17542 17543 17544 17545 17546 17547 17548 17549 17550 17551 17552 17553 17554 17555 17556 17557 17558 17559 17560 17561 17562 17563 17564 17565 17566 17567 17568 17569 17570 17571 17572 17573 17574 17575 17576 17577 17578 17579 17580 17581 17582 17583 17584 17585 17586 17587 17588 17589 17590 17591 17592 17593 17594 17595 17596 17597 17598 17599 17600 17601 17602 17603 17604 17605 17606 17607 17608 17609 17610 17611 17612 17613 17614 17615 17616 17617 17618 17619 17620 17621 17622 17623 17624 17625 17626 17627 17628 17629 17630 17631 17632 17633 17634 17635 17636 17637 17638 17639 17640 17641 17642 17643 17644 17645 17646 17647 17648 17649 17650 17651 17652 17653 17654 17655 17656 17657 17658 17659 17660 17661 17662 17663 17664 17665 17666 17667 17668 17669 17670 17671 17672 17673 17674 17675 17676 17677 17678 17679 17680 17681 17682 17683 17684 17685 17686 17687 17688 17689 17690 17691 17692 17693 17694 17695 17696 17697 17698 17699 17700 17701 17702 17703 17704 17705 17706 17707 17708 17709 17710 17711 17712 17713 17714 17715 17716 17717 17718 17719 17720 17721 17722 17723 17724 17725 17726 17727 17728 17729 17730 17731 17732 17733 17734 17735 17736 17737 17738 17739 17740 17741 17742 17743 17744 17745 17746 17747 17748 17749 17750 17751 17752 17753 17754 17755 17756 17757 17758 17759 17760 17761 17762 17763 17764 17765 17766 17767 17768 17769 17770 17771 17772 17773 17774 17775 17776 17777 17778 17779 17780 17781 17782 17783 17784 17785 17786 17787 17788 17789 17790 17791 17792 17793 17794 17795 17796 17797 17798 17799 17800 17801 17802 17803 17804 17805 17806 17807 17808 17809 17810 17811 17812 17813 17814 17815 17816 17817 17818 17819 17820 17821 17822 17823 17824 17825 17826 17827 17828 17829 17830 17831 17832 17833 17834 17835 17836 17837 17838 17839 17840 17841 17842 17843 17844 17845 17846 17847 17848 17849 17850 17851 17852 17853 17854 17855 17856 17857 17858 17859 17860 17861 17862 17863 17864 17865 17866 17867 17868 17869 17870 17871 17872 17873 17874 17875 17876 17877 17878 17879 17880 17881 17882 17883 17884 17885 17886 17887 17888 17889 17890 17891 17892 17893 17894 17895 17896 17897 17898 17899 17900 17901 17902 17903 17904 17905 17906 17907 17908 17909 17910 17911 17912 17913 17914 17915 17916 17917 17918 17919 17920 17921 17922 17923 17924 17925 17926 17927 17928 17929 17930 17931 17932 17933 17934 17935 17936 17937 17938 17939 17940 17941 17942 17943 17944 17945 17946 17947 17948 17949 17950 17951 17952 17953 17954 17955 17956 17957 17958 17959 17960 17961 17962 17963 17964 17965 17966 17967 17968 17969 17970 17971 17972 17973 17974 17975 17976 17977 17978 17979 17980 17981 17982 17983 17984 17985 17986 17987 17988 17989 17990 17991 17992 17993 17994 17995 17996 17997 17998 17999 18000 18001 18002 18003 18004 18005 18006 18007 18008 18009 18010 18011 18012 18013 18014 18015 18016 18017 18018 18019 18020 18021 18022 18023 18024 18025 18026 18027 18028 18029 18030 18031 18032 18033 18034 18035 18036 18037 18038 18039 18040 18041 18042 18043 18044 18045 18046 18047 18048 18049 18050 18051 18052 18053 18054 18055 18056 18057 18058 18059 18060 18061 18062 18063 18064 18065 18066 18067 18068 18069 18070 18071 18072 18073 18074 18075 18076 18077 18078 18079 18080 18081 18082 18083 18084 18085 18086 18087 18088 18089 18090 18091 18092 18093 18094 18095 18096 18097 18098 18099 18100 18101 18102 18103 18104 18105 18106 18107 18108 18109 18110 18111 18112 18113 18114 18115 18116 18117 18118 18119 18120 18121 18122 18123 18124 18125 18126 18127 18128 18129 18130 18131 18132 18133 18134 18135 18136 18137 18138 18139 18140 18141 18142 18143 18144 18145 18146 18147 18148 18149 18150 18151 18152 18153 18154 18155 18156 18157 18158 18159 18160 18161 18162 18163 18164 18165 18166 18167 18168 18169 18170 18171 18172 18173 18174 18175 18176 18177 18178 18179 18180 18181 18182 18183 18184 18185 18186 18187 18188 18189 18190 18191 18192 18193 18194 18195 18196 18197 18198 18199 18200 18201 18202 18203 18204 18205 18206 18207 18208 18209 18210 18211 18212 18213 18214 18215 18216 18217 18218 18219 18220 18221 18222 18223 18224 18225 18226 18227 18228 18229 18230 18231 18232 18233 18234 18235 18236 18237 18238 18239 18240 18241 18242 18243 18244 18245 18246 18247 18248 18249 18250 18251 18252 18253 18254 18255 18256 18257 18258 18259 18260 18261 18262 18263 18264 18265 18266 18267 18268 18269 18270 18271 18272 18273 18274 18275 18276 18277 18278 18279 18280 18281 18282 18283 18284 18285 18286 18287 18288 18289 18290 18291 18292 18293 18294 18295 18296 18297 18298 18299 18300 18301 18302 18303 18304 18305 18306 18307 18308 18309 18310 18311 18312 18313 18314 18315 18316 18317 18318 18319 18320 18321 18322 18323 18324 18325 18326 18327 18328 18329 18330 18331 18332 18333 18334 18335 18336 18337 18338 18339 18340 18341 18342 18343 18344 18345 18346 18347 18348 18349 18350 18351 18352 18353 18354 18355 18356 18357 18358 18359 18360 18361 18362 18363 18364 18365 18366 18367 18368 18369 18370 18371 18372 18373 18374 18375 18376 18377 18378 18379 18380 18381 18382 18383 18384 18385 18386 18387 18388 18389 18390 18391 18392 18393 18394 18395 18396 18397 18398 18399 18400 18401 18402 18403 18404 18405 18406 18407 18408 18409 18410 18411 18412 18413 18414 18415 18416 18417 18418 18419 18420 18421 18422 18423 18424 18425 18426 18427 18428 18429 18430 18431 18432 18433 18434 18435 18436 18437 18438 18439 18440 18441 18442 18443 18444 18445 18446 18447 18448 18449 18450 18451 18452 18453 18454 18455 18456 18457 18458 18459 18460 18461 18462 18463 18464 18465 18466 18467 18468 18469 18470 18471 18472 18473 18474 18475 18476 18477 18478 18479 18480 18481 18482 18483 18484 18485 18486 18487 18488 18489 18490 18491 18492 18493 18494 18495 18496 18497 18498 18499 18500 18501 18502 18503 18504 18505 18506 18507 18508 18509 18510 18511 18512 18513 18514 18515 18516 18517 18518 18519 18520 18521 18522 18523 18524 18525 18526 18527 18528 18529 18530 18531 18532 18533 18534 18535 18536 18537 18538 18539 18540 18541 18542 18543 18544 18545 18546 18547 18548 18549 18550 18551 18552 18553 18554 18555 18556 18557 18558 18559 18560 18561 18562 18563 18564 18565 18566 18567 18568 18569 18570 18571 18572 18573 18574 18575 18576 18577 18578 18579 18580 18581 18582 18583 18584 18585 18586 18587 18588 18589 18590 18591 18592 18593 18594 18595 18596 18597 18598 18599 18600 18601 18602 18603 18604 18605 18606 18607 18608 18609 18610 18611 18612 18613 18614 18615 18616 18617 18618 18619 18620 18621 18622 18623 18624 18625 18626 18627 18628 18629 18630 18631 18632 18633 18634 18635 18636 18637 18638 18639 18640 18641 18642 18643 18644 18645 18646 18647 18648 18649 18650 18651 18652 18653 18654 18655 18656 18657 18658 18659 18660 18661 18662 18663 18664 18665 18666 18667 18668 18669 18670 18671 18672 18673 18674 18675 18676 18677 18678 18679 18680 18681 18682 18683 18684 18685 18686 18687 18688 18689 18690 18691 18692 18693 18694 18695 18696 18697 18698 18699 18700 18701 18702 18703 18704 18705 18706 18707 18708 18709 18710 18711 18712 18713 18714 18715 18716 18717 18718 18719 18720 18721 18722 18723 18724 18725 18726 18727 18728 18729 18730 18731 18732 18733 18734 18735 18736 18737 18738 18739 18740 18741 18742 18743 18744 18745 18746 18747 18748 18749 18750 18751 18752 18753 18754 18755 18756 18757 18758 18759 18760 18761 18762 18763 18764 18765 18766 18767 18768 18769 18770 18771 18772 18773 18774 18775 18776 18777 18778 18779 18780 18781 18782 18783 18784 18785 18786 18787 18788 18789 18790 18791 18792 18793 18794 18795 18796 18797 18798 18799 18800 18801 18802 18803 18804 18805 18806 18807 18808 18809 18810 18811 18812 18813 18814 18815 18816 18817 18818 18819 18820 18821 18822 18823 18824 18825 18826 18827 18828 18829 18830 18831 18832 18833 18834 18835 18836 18837 18838 18839 18840 18841 18842 18843 18844 18845 18846 18847 18848 18849 18850 18851 18852 18853 18854 18855 18856 18857 18858 18859 18860 18861 18862 18863 18864 18865 18866 18867 18868 18869 18870 18871 18872 18873 18874 18875 18876 18877 18878 18879 18880 18881 18882 18883 18884 18885 18886 18887 18888 18889 18890 18891 18892 18893 18894 18895 18896 18897 18898 18899 18900 18901 18902 18903 18904 18905 18906 18907 18908 18909 18910 18911 18912 18913 18914 18915 18916 18917 18918 18919 18920 18921 18922 18923 18924 18925 18926 18927 18928 18929 18930 18931 18932 18933 18934 18935 18936 18937 18938 18939 18940 18941 18942 18943 18944 18945 18946 18947 18948 18949 18950 18951 18952 18953 18954 18955 18956 18957 18958 18959 18960 18961 18962 18963 18964 18965 18966 18967 18968 18969 18970 18971 18972 18973 18974 18975 18976 18977 18978 18979 18980 18981 18982 18983 18984 18985 18986 18987 18988 18989 18990 18991 18992 18993 18994 18995 18996 18997 18998 18999 19000 19001 19002 19003 19004 19005 19006 19007 19008 19009 19010 19011 19012 19013 19014 19015 19016 19017 19018 19019 19020 19021 19022 19023 19024 19025 19026 19027 19028 19029 19030 19031 19032 19033 19034 19035 19036 19037 19038 19039 19040 19041 19042 19043 19044 19045 19046 19047 19048 19049 19050 19051 19052 19053 19054 19055 19056 19057 19058 19059 19060 19061 19062 19063 19064 19065 19066 19067 19068 19069 19070 19071 19072 19073 19074 19075 19076 19077 19078 19079 19080 19081 19082 19083 19084 19085 19086 19087 19088 19089 19090 19091 19092 19093 19094 19095 19096 19097 19098 19099 19100 19101 19102 19103 19104 19105 19106 19107 19108 19109 19110 19111 19112 19113 19114 19115 19116 19117 19118 19119 19120 19121 19122 19123 19124 19125 19126 19127 19128 19129 19130 19131 19132 19133 19134 19135 19136 19137 19138 19139 19140 19141 19142 19143 19144 19145 19146 19147 19148 19149 19150 19151 19152 19153 19154 19155 19156 19157 19158 19159 19160 19161 19162 19163 19164 19165 19166 19167 19168 19169 19170 19171 19172 19173 19174 19175 19176 19177 19178 19179 19180 19181 19182 19183 19184 19185 19186 19187 19188 19189 19190 19191 19192 19193 19194 19195 19196 19197 19198 19199 19200 19201 19202 19203 19204 19205 19206 19207 19208 19209 19210 19211 19212 19213 19214 19215 19216 19217 19218 19219 19220 19221 19222 19223 19224 19225 19226 19227 19228 19229 19230 19231 19232 19233 19234 19235 19236 19237 19238 19239 19240 19241 19242 19243 19244 19245 19246 19247 19248 19249 19250 19251 19252 19253 19254 19255 19256 19257 19258 19259 19260 19261 19262 19263 19264 19265 19266 19267 19268 19269 19270 19271 19272 19273 19274 19275 19276 19277 19278 19279 19280 19281 19282 19283 19284 19285 19286 19287 19288 19289 19290 19291 19292 19293 19294 19295 19296 19297 19298 19299 19300 19301 19302 19303 19304 19305 19306 19307 19308 19309 19310 19311 19312 19313 19314 19315 19316 19317 19318 19319 19320 19321 19322 19323 19324 19325 19326 19327 19328 19329 19330 19331 19332 19333 19334 19335 19336 19337 19338 19339 19340 19341 19342 19343 19344 19345 19346 19347 19348 19349 19350 19351 19352 19353 19354 19355 19356 19357 19358 19359 19360 19361 19362 19363 19364 19365 19366 19367 19368 19369 19370 19371 19372 19373 19374 19375 19376 19377 19378 19379 19380 19381 19382 19383 19384 19385 19386 19387 19388 19389 19390 19391 19392 19393 19394 19395 19396 19397 19398 19399 19400 19401 19402 19403 19404 19405 19406 19407 19408 19409 19410 19411 19412 19413 19414 19415 19416 19417 19418 19419 19420 19421 19422 19423 19424 19425 19426 19427 19428 19429 19430 19431 19432 19433 19434 19435 19436 19437 19438 19439 19440 19441 19442 19443 19444 19445 19446 19447 19448 19449 19450 19451 19452 19453 19454 19455 19456 19457 19458 19459 19460 19461 19462 19463 19464 19465 19466 19467 19468 19469 19470 19471 19472 19473 19474 19475 19476 19477 19478 19479 19480 19481 19482 19483 19484 19485 19486 19487 19488 19489 19490 19491 19492 19493 19494 19495 19496 19497 19498 19499 19500 19501 19502 19503 19504 19505 19506 19507 19508 19509 19510 19511 19512 19513 19514 19515 19516 19517 19518 19519 19520 19521 19522 19523 19524 19525 19526 19527 19528 19529 19530 19531 19532 19533 19534 19535 19536 19537 19538 19539 19540 19541 19542 19543 19544 19545 19546 19547 19548 19549 19550 19551 19552 19553 19554 19555 19556 19557 19558 19559 19560 19561 19562 19563 19564 19565 19566 19567 19568 19569 19570 19571 19572 19573 19574 19575 19576 19577 19578 19579 19580 19581 19582 19583 19584 19585 19586 19587 19588 19589 19590 19591 19592 19593 19594 19595 19596 19597 19598 19599 19600 19601 19602 19603 19604 19605 19606 19607 19608 19609 19610 19611 19612 19613 19614 19615 19616 19617 19618 19619 19620 19621 19622 19623 19624 19625 19626 19627 19628 19629 19630 19631 19632 19633 19634 19635 19636 19637 19638 19639 19640 19641 19642 19643 19644 19645 19646 19647 19648 19649 19650 19651 19652 19653 19654 19655 19656 19657 19658 19659 19660 19661 19662 19663 19664 19665 19666 19667 19668 19669 19670 19671 19672 19673 19674 19675 19676 19677 19678 19679 19680 19681 19682 19683 19684 19685 19686 19687 19688 19689 19690 19691 19692 19693 19694 19695 19696 19697 19698 19699 19700 19701 19702 19703 19704 19705 19706 19707 19708 19709 19710 19711 19712 19713 19714 19715 19716 19717 19718 19719 19720 19721 19722 19723 19724 19725 19726 19727 19728 19729 19730 19731 19732 19733 19734 19735 19736 19737 19738 19739 19740 19741 19742 19743 19744 19745 19746 19747 19748 19749 19750 19751 19752 19753 19754 19755 19756 19757 19758 19759 19760 19761 19762 19763 19764 19765 19766 19767 19768 19769 19770 19771 19772 19773 19774 19775 19776 19777 19778 19779 19780 19781 19782 19783 19784 19785 19786 19787 19788 19789 19790 19791 19792 19793 19794 19795 19796 19797 19798 19799 19800 19801 19802 19803 19804 19805 19806 19807 19808 19809 19810 19811 19812 19813 19814 19815 19816 19817 19818 19819 19820 19821 19822 19823 19824 19825 19826 19827 19828 19829 19830 19831 19832 19833 19834 19839 19840 19841 19842 19843 19844 19845 19846 19847 19848 19849 19850 19851 19852 19853 19854 19855 19856 19857 19858 19859 19860 19861 19862 19863 19864 19865 19866 19867 19868 19869 19870 19871 19872 19873 19874 19875 19876 19877 19878 19879 19880 19881 19882 19883 19884 19885 19886 19887 19888 19889 19890 19891 19892 19893 19894 19895 19896 19897 19898 19899 19900 19901 19902 19903 19904 19905 19906 19907 19908 19909 19910 19911 19912 19913 19914 19915 19916 19917 19918 19919 19920 19921 19922 19923 19924 19925 19926 19927 19928 19929 19930 19931 19932 19933 19934 19935 19936 19937 19938 19939 19940 19941 19942 19943 19944 19945 19946 19947 19948 19949 19950 19951 19952 19953 19954 19955 19956 19957 19958 19959 19960 19961 19962 19963 19964 19965 19966 19967 19968 19969 19970 19971 19972 19973 19974 19975 19976 19977 19978 19979 19980 19981 19982 19983 19984 19985 19986 19987 19988 19989 19990 19991 19992 19993 19994 19995 19996 19997 19998 19999 20000 20001 20002 20003 20004 20005 20006 20007 20008 20009 20010 20011 20012 20013 20014 20015 20016 20017 20018 20019 20020 20021 20022 20023 20024 20025 20026 20027 20028 20029 20030 20031 20032 20033 20034 20035 20036 20037 20038 20039 20040 20041 20042 20043 20044 20045 20046 20047 20048 20049 20050 20051 20052 20053 20054 20055 20056 20057 20058 20059 20060 20061 20062 20063 20064 20065 20066 20067 20068 20069 20070 20071 20072 20073 20074 20075 20076 20077 20078 20079 20080 20081 20082 20083 20084 20085 20086 20087 20088 20089 20090 20091 20092 20093 20094 20095 20096 20097 20098 20099 20100 20101 20102 20103 20104 20105 20106 20107 20108 20109 20110 20111 20112 20113 20114 20115 20116 20117 20118 20119 20120 20121 20122 20123 20124 20125 20126 20127 20128 20129 20130 20131 20132 20133 20134 20135 20136 20137 20138 20139 20140 20141 20142 20143 20144 20145 20146 20147 20148 20149 20150 20151 20152 20153 20154 20155 20156 20157 20158 20159 20160 20161 20162 20163 20164 20165 20166 20167 20168 20169 20170 20171 20172 20173 20174 20175 20176 20177 20178 20179 20180 20181 20182 20183 20184 20185 20186 20187 20188 20189 20190 20191 20192 20193 20194 20195 20196 20197 20198 20199 20200 20201 20202 20203 20204 20205 20206 20207 20208 20209 20210 20211 20212 20213 20214 20215 20216 20217 20218 20219 20220 20221 20222 20223 20224 20225 20226 20227 20228 20229 20230 20231 20232 20233 20234 20235 20236 20237 20238 20239 20240 20241 20242 20243 20244 20245 20246 20247 20248 20249 20250 20251 20252 20253 20254 20255 20256 20257 20258 20259 20260 20261 20262 20263 20264 20265 20266 20267 20268 20269 20270 20271 20272 20273 20274 20275 20276 20277 20278 20279 20280 20281 20282 20283 20284 20285 20286 20287 20288 20289 20290 20291 20292 20293 20294 20295 20296 20297 20298 20299 20300 20301 20302 20303 20304 20305 20306 20307 20308 20309 20310 20311 20312 20313 20314 20315 20316 20317 20318 20319 20320 20321 20322 20323 20324 20325 20326 20327 20328 20329 20330 20331 20332 20333 20334 20335 20336 20337 20338 20339 20340 20341 20342 20343 20344 20345 20346 20347 20348 20349 20350 20351 20352 20353 20354 20355 20356 20357 20358 20359 20360 20361 20362 20363 20364 20365 20366 20367 20368 20369 20370 20371 20372 20373 20374 20375 20376 20377 20378 20379 20380 20381 20382 20383 20384 20385 20386 20387 20388 20389 20390 20391 20392 20393 20394 20395 20396 20397 20398 20399 20400 20401 20402 20403 20404 20405 20406 20407 20408 20409 20410 20411 20412 20413 20414 20415 20416 20417 20418 20419 20420 20421 20422 20423 20424 20425 20426 20427 20428 20429 20430 20431 20432 20433 20434 20435 20436 20437 20438 20439 20440 20441 20442 20443 20444 20445 20446 20447 20448 20449 20450 20451 20452 20453 20454 20455 20456 20457 20458 20459 20460 20461 20462 20463 20464 20465 20466 20467 20468 20469 20470 20471 20472 20473 20474 20475 20476 20477 20478 20479 20480 20481 20482 20483 20484 20485 20486 20487 20488 20489 20490 20491 20492 20493 20494 20495 20496 20497 20498 20499 20500 20501 20502 20503 20504 20505 20506 20507 20508 20509 20510 20511 20512 20513 20514 20515 20516 20517 20518 20519 20520 20521 20522 20523 20524 20525 20526 20527 20528 20529 20530 20531 20532 20533 20534 20535 20536 20537 20538 20539 20540 20541 20542 20543 20544 20545 20546 20547 20548 20549 20550 20551 20552 20553 20554 20555 20556 20557 20558 20559 20560 20561 20562 20563 20564 20565 20566 20567 20568 20569 20570 20571 20572 20573 20574 20575 20576 20577 20578 20579 20580 20581 20582 20583 20584 20585 20586 20587 20588 20589 20590 20591 20592 20593 20594 20595 20596 20597 20598 20599 20600 20601 20602 20603 20604 20605 20606 20607 20608 20609 20610 20611 20612 20613 20614 20615 20616 20617 20618 20619 20620 20621 20622 20623 20624 20625 20626 20627 20628 20629 20630 20631 20632 20633 20634 20635 20636 20637 20638 20639 20640 20641 20642 20643 20644 20645 20646 20647 20648 20649 20650 20651 20652 20653 20654 20655 20656 20657 20658 20659 20660 20661 20662 20663 20664 20665 20666 20667 20668 20669 20670 20671 20672 20673 20674 20675 20676 20677 20678 20679 20680 20681 20682 20683 20684 20685 20686 20687 20688 20689 20690 20691 20692 20693 20694 20695 20696 20697 20698 20699 20700 20701 20702 20703 20704 20705 20706 20707 20708 20709 20710 20711 20712 20713 20714 20715 20716 20717 20718 20719 20720 20721 20722 20723 20724 20725 20726 20727 20728 20729 20730 20731 20732 20733 20734 20735 20736 20737 20738 20739 20740 20741 20742 20743 20744 20745 20746 20747 20748 20749 20750 20751 20752 20753 20754 20755 20756 20757 20758 20759 20760 20761 20762 20763 20764 20765 20766 20767 20768 20769 20770 20771 20772 20773 20774 20775 20776 20777 20778 20779 20780 20781 20782 20783 20784 20785 20786 20787 20788 20789 20790 20791 20792 20793 20794 20795 20796 20797 20798 20799 20800 20801 20802 20803 20804 20805 20806 20807 20808 20809 20810 20811 20812 20813 20814 20815 20816 20817 20818 20819 20820 20821 20822 20823 20824 20825 20826 20827 20828 20829 20830 20831 20832 20833 20834 20835 20836 20837 20838 20839 20840 20841 20842 20843 20844 20845 20846 20847 20848 20849 20850 20851 20852 20853 20854 20855 20856 20857 20858 20859 20860 20861 20862 20863 20864 20865 20866 20867 20868 20869 20870 20871 20872 20873 20874 20875 20876 20877 20878 20879 20880 20881 20882 20883 20884 20885 20886 20887 20888 20889 20890 20891 20892 20893 20894 20895 20896 20897 20898 20899 20900 20901 20902 20903 20904 20905 20906 20907 20908 20909 20910 20911 20912 20913 20914 20915 20916 20917 20918 20919 20920 20921 20922 20923 20924 20925 20926 20927 20928 20929 20930 20931 20932 20933 20934 20935 20936 20937 20938 20939 20940 20941 20942 20943 20944 20945 20946 20947 20948 20949 20950 20951 20952 20953 20954 20955 20956 20957 20958 20959 20960 20961 20962 20963 20964 20965 20966 20967 20968 20969 20970 20971 20972 20973 20974 20975 20976 20977 20978 20979 20980 20981 20982 20983 20984 20985 20986 20987 20988 20989 20990 20991 20992 20993 20994 20995 20996 20997 20998 20999 21000 21001 21002 21003 21004 21005 21006 21007 21008 21009 21010 21011 21012 21013 21014 21015 21016 21017 21018 21019 21020 21021 21022 21023 21024 21025 21026 21027 21028 21029 21030 21031 21032 21033 21034 21035 21036 21037 21038 21039 21040 21041 21042 21043 21044 21045 21046 21047 21048 21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 21089 21090 21091 21092 21093 21094 21095 21096 21097 21098 21099 21100 21101 21102 21103 21104 21105 21106 21107 21108 21109 21110 21111 21112 21113 21114 21115 21116 21117 21118 21119 21120 21121 21122 21123 21124 21125 21126 21127 21128 21129 21130 21131 21132 21133 21134 21135 21136 21137 21138 21139 21140 21141 21142 21143 21144 21145 21146 21147 21148 21149 21150 21151 21152 21153 21154 21155 21156 21157 21158 21159 21160 21161 21162 21163 21164 21165 21166 21167 21168 21169 21170 21171 21172 21173 21174 21175 21176 21177 21178 21179 21180 21181 21182 21183 21184 21185 21186 21187 21188 21189 21190 21191 21192 21193 21194 21195 21196 21197 21198 21199 21200 21201 21202 21203 21204 21205 21206 21207 21208 21209 21210 21211 21212 21213 21214 21215 21216 21217 21218 21219 21220 21221 21222 21223 21224 21225 21226 21227 21228 21229 21230 21231 21232 21233 21234 21235 21236 21237 21238 21239 21240 21241 21242 21243 21244 21245 21246 21247 21248 21249 21250 21251 21252 21253 21254 21255 21256 21257 21258 21259 21260 21261 21262 21263 21264 21265 21266 21267 21268 21269 21270 21271 21272 21273 21274 21275 21276 21277 21278 21279 21280 21281 21282 21283 21284 21285 21286 21287 21288 21289 21290 21291 21292 21293 21294 21295 21296 21297 21298 21299 21300 21301 21302 21303 21304 21305 21306 21307 21308 21309 21310 21311 21312 21313 21314 21315 21316 21317 21318 21319 21320 21321 21322 21323 21324 21325 21326 21327 21328 21329 21330 21331 21332 21333 21334 21335 21336 21337 21338 21339 21340 21341 21342 21343 21344 21345 21346 21347 21348 21349 21350 21351 21352 21353 21354 21355 21356 21357 21358 21359 21360 21361 21362 21363 21364 21365 21366 21367 21368 21369 21370 21371 21372 21373 21374 21375 21376 21377 21378 21379 21380 21381 21382 21383 21384 21385 21386 21387 21388 21389 21390 21391 21392 21393 21394 21395 21396 21397 21398 21399 21400 21401 21402 21403 21404 21405 21406 21407 21408 21409 21410 21411 21412 21413 21414 21415 21416 21417 21418 21419 21420 21421 21422 21423 21424 21425 21426 21427 21428 21429 21430 21432 21433 21434 21435 21436 21437 21438 21439 21440 21441 21442 21443 21444 21445 21446 21447 21448 21449 21450 21451 21452 21453 21454 21455 21456 21457 21458 21459 21460 21461 21462 21463 21464 21465 21466 21467 21468 21469 21470 21471 21472 21473 21474 21475 21476 21477 21478 21479 21480 21481 21482 21483 21484 21485 21486 21487 21488 21489 21490 21491 21492 21493 21494 21495 21496 21497 21498 21499 21500 21501 21502 21503 21504 21505 21506 21507 21508 21509 21510 21511 21512 21513 21514 21515 21516 21517 21518 21519 21520 21521 21522 21523 21524 21525 21526 21527 21528 21529 21530 21531 21532 21533 21534 21535 21536 21537 21538 21539 21540 21541 21542 21543 21544 21545 21546 21547 21548 21549 21550 21551 21552 21553 21554 21555 21556 21557 21558 21559 21560 21561 21562 21563 21564 21565 21566 21567 21568 21569 21570 21571 21572 21573 21574 21575 21576 21577 21578 21579 21580 21581 21582 21583 21584 21585 21586 21587 21588 21589 21590 21591 21592 21593 21594 21595 21596 21597 21598 21599 21600 21601 21602 21603 21604 21605 21606 21607 21608 21609 21610 21611 21612 21613 21614 21615 21616 21617 21618 21619 21620 21621 21622 21623 21624 21625 21626 21627 21628 21629 21630 21631 21632 21633 21634 21635 21636 21637 21638 21639 21640 21641 21642 21643 21644 21645 21646 21647 21648 21649 21650 21651 21652 21653 21654 21655 21656 21657 21658 21659 21660 21661 21662 21663 21664 21665 21666 21667 21668 21669 21670 21671 21672 21673 21674 21675 21676 21677 21678 21679 21680 21681 21682 21683 21684 21685 21686 21687 21688 21689 21690 21691 21692 21693 21694 21695 21696 21697 21698 21699 21700 21701 21702 21703 21704 21705 21706 21707 21708 21709 21710 21711 21712 21713 21714 21715 21716 21717 21718 21719 21720 21721 21722 21723 21724 21725 21726 21727 21728 21729 21730 21731 21732 21733 21734 21735 21736 21737 21738 21739 21740 21741 21742 21743 21744 21745 21746 21747 21748 21749 21750 21751 21752 21753 21754 21755 21756 21757 21758 21759 21760 21761 21762 21763 21764 21765 21766 21767 21768 21769 21770 21771 21772 21773 21774 21775 21776 21777 21778 21779 21780 21781 21782 21783 21784 21785 21786 21787 21788 21789 21790 21791 21792 21793 21794 21795 21796 21797 21798 21799 21800 21801 21802 21803 21804 21805 21806 21807 21808 21809 21810 21811 21812 21813 21814 21815 21816 21817 21818 21819 21820 21821 21822 21823 21824 21825 21826 21827 21828 21829 21830 21831 21832 21833 21834 21835 21836 21837 21838 21839 21840 21841 21842 21843 21844 21845 21846 21847 21848 21849 21850 21851 21852 21853 21854 21855 21856 21857 21858 21859 21860 21861 21862 21863 21864 21865 21866 21867 21868 21869 21870 21871 21872 21873 21874 21875 21876 21877 21878 21879 21880 21881 21882 21883 21884 21885 21886 21887 21888 21889 21890 21891 21892 21893 21894 21895 21896 21897 21898 21899 21900 21901 21902 21903 21904 21905 21906 21907 21908 21909 21910 21911 21912 21913 21914 21915 21916 21917 21918 21919 21920 21921 21922 21923 21924 21925 21926 21927 21928 21929 21930 21931 21932 21933 21934 21935 21936 21937 21938 21939 21940 21941 21942 21943 21944 21945 21946 21947 21948 21949 21950 21951 21952 21953 21954 21955 21956 21957 21958 21959 21960 21961 21962 21963 21964 21965 21966 21967 21968 21969 21970 21971 21972 21973 21974 21975 21976 21977 21978 21979 21980 21981 21982 21983 21984 21985 21986 21987 21988 21989 21990 21991 21992 21993 21994 21995 21996 21997 21998 21999 22000 22001 22002 22003 22004 22005 22006 22007 22008 22009 22010 22011 22012 22013 22014 22015 22016 22017 22018 22019 22020 22021 22022 22023 22024 22025 22026 22027 22028 22029 22030 22031 22032 22033 22034 22035 22036 22037 22038 22039 22040 22041 22042 22043 22044 22045 22046 22047 22048 22049 22050 22051 22052 22053 22054 22055 22056 22057 22058 22059 22060 22061 22062 22063 22064 22065 22066 22067 22068 22069 22070 22071 22072 22073 22074 22075 22076 22077 22078 22079 22080 22081 22082 22083 22084 22085 22086 22087 22088 22089 22090 22091 22092 22093 22094 22095 22096 22097 22098 22099 22100 22101 22102 22103 22104 22105 22106 22107 22108 22109 22110 22111 22112 22113 22114 22115 22116 22117 22118 22119 22120 22121 22122 22123 22124 22125 22126 22127 22128 22129 22130 22131 22132 22133 22134 22135 22136 22137 22138 22139 22140 22141 22142 22143 22144 22145 22146 22147 22148 22149 22150 22151 22152 22153 22154 22155 22156 22157 22158 22159 22160 22161 22162 22163 22164 22165 22166 22167 22168 22169 22170 22171 22172 22173 22174 22175 22176 22177 22178 22179 22180 22181 22182 22183 22184 22185 22186 22187 22188 22189 22190 22191 22192 22193 22194 22195 22196 22197 22198 22199 22200 22201 22202 22203 22204 22205 22206 22207 22208 22209 22210 22211 22212 22213 22214 22215 22216 22217 22218 22219 22220 22221 22222 22223 22224 22225 22226 22227 22228 22229 22230 22231 22232 22233 22234 22235 22236 22237 22238 22239 22240 22241 22242 22243 22244 22245 22246 22247 22248 22249 22250 22251 22252 22253 22254 22255 22256 22257 22258 22259 22260 22261 22262 22263 22264 22265 22266 22267 22268 22269 22270 22271 22272 22273 22274 22275 22276 22277 22278 22279 22280 22281 22282 22283 22284 22285 22286 22287 22288 22289 22290 22291 22292 22293 22294 22295 22296 22297 22298 22299 22300 22301 22302 22303 22304 22305 22306 22307 22308 22309 22310 22311 22312 22313 22314 22315 22316 22317 22318 22319 22320 22321 22322 22323 22324 22325 22326 22327 22328 22329 22330 22331 22332 22333 22334 22335 22336 22337 22338 22339 22340 22341 22342 22343 22344 22345 22346 22347 22348 22349 22350 22351 22352 22353 22354 22355 22356 22357 22358 22359 22360 22361 22362 22363 22364 22365 22366 22367 22368 22369 22370 22371 22372 22373 22374 22375 22376 22377 22378 22379 22380 22381 22382 22383 22384 22385 22386 22387 22388 22389 22390 22391 22392 22393 22394 22395 22396 22397 22398 22399 22400 22401 22402 22403 22404 22405 22406 22407 22408 22409 22410 22411 22412 22413 22414 22415 22416 22417 22418 22419 22420 22421 22422 22423 22424 22425 22426 22427 22428 22429 22430 22431 22432 22433 22434 22435 22436 22437 22438 22439 22440 22441 22442 22443 22444 22445 22446 22447 22448 22449 22450 22451 22452 22453 22454 22455 22456 22457 22458 22459 22460 22461 22462 22463 22464 22465 22466 22467 22468 22469 22470 22471 22472 22473 22474 22475 22476 22477 22478 22479 22480 22481 22482 22483 22484 22485 22486 22487 22488 22489 22490 22491 22492 22493 22494 22495 22496 22497 22498 22499 22500 22501 22502 22503 22504 22505 22506 22507 22508 22509 22510 22511 22512 22513 22514 22515 22516 22517 22518 22519 22520 22521 22522 22523 22524 22525 22526 22527 22528 22529 22530 22531 22532 22533 22534 22535 22536 22537 22538 22539 22540 22541 22542 22543 22544 22545 22546 22547 22548 22549 22550 22551 22552 22553 22554 22555 22556 22557 22558 22559 22560 22561 22562 22563 22564 22565 22566 22567 22568 22569 22570 22571 22572 22573 22574 22575 22576 22577 22578 22579 22580 22581 22582 22583 22584 22585 22586 22587 22588 22589 22590 22591 22592 22593 22594 22595 22596 22597 22598 22599 22600 22601 22602 22603 22604 22605 22606 22607 22608 22609 22610 22611 22612 22613 22614 22615 22616 22617 22618 22619 22620 22621 22622 22623 22624 22625 22626 22627 22628 22629 22630 22631 22632 22633 22634 22635 22636 22637 22638 22639 22640 22641 22642 22643 22644 22645 22646 22647 22648 22649 22650 22651 22652 22653 22654 22655 22656 22657 22658 22659 22660 22661 22662 22663 22664 22665 22666 22667 22668 22669 22670 22671 22672 22673 22674 22675 22676 22677 22678 22679 22680 22681 22682 22683 22684 22685 22686 22687 22688 22689 22690 22691 22692 22693 22694 22695 22696 22697 22698 22699 22700 22701 22702 22703 22704 22705 22706 22707 22708 22709 22710 22711 22712 22713 22714 22715 22716 22717 22718 22719 22720 22721 22722 22723 22724 22725 22726 22727 22728 22729 22730 22731 22732 22733 22734 22735 22736 22737 22738 22739 22740 22741 22742 22743 22744 22745 22746 22747 22748 22749 22750 22751 22752 22753 22754 22755 22756 22757 22758 22759 22760 22761 22762 22763 22764 22765 22766 22767 22768 22769 22770 22771 22772 22773 22774 22775 22776 22777 22778 22779 22780 22781 22782 22783 22784 22785 22786 22787 22788 22789 22790 22791 22792 22793 22794 22795 22796 22797 22798 22799 22800 22801 22802 22803 22804 22805 22806 22807 22808 22809 22810 22811 22812 22813 22814 22815 22816 22817 22818 22819 22820 22821 22822 22823 22824 22825 22826 22827 22828 22829 22830 22831 22832 22833 22834 22835 22836 22837 22838 22839 22840 22841 22842 22843 22844 22845 22846 22847 22848 22849 22850 22851 22852 22853 22854 22855 22856 22857 22858 22859 22860 22861 22862 22863 22864 22865 22866 22867 22868 22869 22870 22871 22872 22873 22874 22875 22876 22877 22878 22879 22880 22881 22882 22883 22884 22885 22886 22887 22888 22889 22890 22891 22892 22893 22894 22895 22896 22897 22898 22899 22900 22901 22902 22903 22904 22905 22906 22907 22908 22909 22910 22911 22912 22913 22914 22915 22916 22917 22918 22919 22920 22921 22922 22923 22924 22925 22926 22927 22928 22929 22930 22931 22932 22933 22934 22935 22936 22937 22938 22939 22940 22941 22942 22943 22944 22945 22946 22947 22948 22949 22950 22951 22952 22953 22954 22955 22956 22957 22958 22959 22960 22961 22962 22963 22964 22965 22966 22967 22968 22969 22970 22971 22972 22973 22974 22975 22976 22977 22978 22979 22980 22981 22982 22983 22984 22985 22986 22987 22988 22989 22990 22991 22992 22993 22994 22995 22996 22997 22998 22999 23000 23001 23002 23003 23004 23005 23006 23007 23008 23009 23010 23011 23012 23013 23014 23015 23016 23017 23018 23019 23020 23021 23022 23023 23024 23025 23026 23027 23028 23029 23030 23031 23032 23033 23034 23035 23036 23037 23038 23039 23040 23041 23042 23043 23044 23045 23046 23047 23048 23049 23050 23051 23052 23053 23054 23055 23056 23057 23058 23059 23060 23061 23062 23063 23064 23065 23066 23067 23068 23069 23070 23071 23072 23073 23074 23075 23076 23077 23078 23079 23080 23081 23082 23083 23084 23085 23086 23087 23088 23089 23090 23091 23092 23093 23094 23095 23096 23097 23098 23099 23100 23101 23102 23103 23104 23105 23106 23107 23108 23109 23110 23111 23112 23113 23114 23115 23116 23117 23118 23119 23120 23121 23122 23123 23124 23125 23126 23127 23128 23129 23130 23131 23132 23133 23134 23135 23136 23137 23138 23139 23140 23141 23142 23143 23144 23145 23146 23147 23148 23149 23150 23151 23152 23153 23154 23155 23156 23157 23158 23159 23160 23161 23162 23163 23164 23165 23166 23167 23168 23169 23170 23171 23172 23173 23174 23175 23176 23177 23178 23179 23180 23181 23182 23183 23184 23185 23186 23187 23188 23189 23190 23191 23192 23193 23194 23195 23196 23197 23198 23199 23200 23201 23202 23203 23204 23205 23206 23207 23208 23209 23210 23211 23212 23213 23214 23215 23216 23217 23218 23219 23220 23221 23222 23223 23224 23225 23226 23227 23228 23229 23230 23231 23232 23233 23234 23235 23236 23237 23238 23239 23240 23241 23242 23243 23244 23245 23246 23247 23248 23249 23250 23251 23252 23253 23254 23255 23256 23257 23258 23259 23260 23261 23262 23263 23264 23265 23266 23267 23268 23269 23270 23271 23272 23273 23274 23275 23276 23277 23278 23279 23280 23281 23282 23283 23284 23285 23286 23287 23288 23289 23290 23291 23292 23293 23294 23295 23296 23297 23298 23299 23300 23301 23302 23303 23304 23305 23306 23307 23308 23309 23310 23311 23312 23313 23314 23315 23316 23317 23318 23319 23320 23321 23322 23323 23324 23325 23326 23327 23328 23329 23330 23331 23332 23333 23334 23335 23336 23337 23338 23339 23340 23341 23342 23343 23344 23345 23346 23347 23348 23349 23350 23351 23352 23353 23354 23355 23356 23357 23358 23359 23360 23361 23362 23363 23364 23365 23366 23367 23368 23369 23370 23371 23372 23373 23374 23375 23376 23377 23378 23379 23380 23381 23382 23383 23384 23385 23386 23387 23388 23389 23390 23391 23392 23393 23394 23395 23396 23397 23398 23399 23400 23401 23402 23403 23404 23405 23406 23407 23408 23409 23410 23411 23412 23413 23414 23415 23416 23417 23418 23419 23420 23421 23422 23423 23424 23425 23426 23427 23428 23429 23430 23431 23432 23433 23434 23435 23436 23437 23438 23439 23440 23441 23442 23443 23444 23445 23446 23447 23448 23449 23450 23451 23452 23453 23454 23455 23456 23457 23458 23459 23460 23461 23462 23463 23464 23465 23466 23467 23468 23469 23470 23471 23472 23473 23474 23475 23476 23477 23478 23479 23480 23481 23482 23483 23484 23485 23486 23487 23488 23489 23490 23491 23492 23493 23494 23495 23496 23497 23498 23499 23500 23501 23502 23503 23504 23505 23506 23507 23508 23509 23510 23511 23512 23513 23514 23515 23516 23517 23518 23519 23520 23521 23522 23523 23524 23525 23526 23527 23528 23529 23530 23531 23532 23533 23534 23535 23536 23537 23538 23539 23540 23541 23542 23543 23544 23545 23546 23547 23548 23549 23550 23551 23552 23553 23554 23555 23556 23557 23558 23559 23560 23561 23562 23563 23564 23565 23566 23567 23568 23569 23570 23571 23572 23573 23574 23575 23576 23577 23578 23579 23580 23581 23582 23583 23584 23585 23586 23587 23588 23589 23590 23591 23592 23593 23594 23595 23596 23597 23598 23599 23600 23601 23602 23603 23604 23605 23606 23607 23608 23609 23610 23611 23612 23613 23614 23615 23616 23617 23618 23619 23620 23621 23622 23623 23624 23625 23626 23627 23628 23629 23630 23631 23632 23633 23634 23635 23636 23637 23638 23639 23640 23641 23642 23643 23644 23645 23646 23647 23648 23649 23650 23651 23652 23653 23654 23655 23656 23657 23658 23659 23660 23661 23662 23663 23664 23665 23666 23667 23668 23669 23670 23671 23672 23673 23674 23675 23676 23677 23678 23679 23680 23681 23682 23683 23684 23685 23686 23687 23688 23689 23690 23691 23692 23693 23694 23695 23696 23697 23698 23699 23700 23701 23702 23703 23704 23705 23706 23707 23708 23709 23710 23711 23712 23713 23714 23715 23716 23717 23718 23719 23720 23721 23722 23723 23724 23725 23726 23727 23728 23729 23730 23731 23732 23733 23734 23735 23736 23737 23738 23739 23740 23741 23742 23743 23744 23745 23746 23747 23748 23749 23750 23751 23752 23753 23754 23755 23756 23757 23758 23759 23760 23761 23762 23763 23764 23765 23766 23767 23768 23769 23770 23771 23772 23773 23774 23775 23776 23777 23778 23779 23780 23781 23782 23783 23784 23785 23786 23787 23788 23789 23790 23791 23792 23793 23794 23795 23796 23797 23798 23799 23800 23801 23802 23803 23804 23805 23806 23807 23808 23809 23810 23811 23812 23813 23814 23815 23816 23817 23818 23819 23820 23821 23822 23823 23824 23825 23826 23827 23828 23829 23830 23831 23832 23833 23834 23835 23836 23837 23838 23839 23840 23841 23842 23843 23844 23845 23846 23847 23848 23849 23850 23851 23852 23853 23854 23855 23856 23857 23858 23859 23860 23861 23862 23863 23864 23865 23866 23867 23868 23869 23870 23871 23872 23873 23874 23875 23876 23877 23878 23879 23880 23881 23882 23883 23884 23885 23886 23887 23888 23889 23890 23891 23892 23893 23894 23895 23896 23897 23898 23899 23900 23901 23902 23903 23904 23905 23906 23907 23908 23909 23910 23911 23912 23913 23914 23915 23916 23917 23918 23919 23920 23921 23922 23923 23924 23925 23926 23927 23928 23929 23930 23931 23932 23933 23934 23935 23936 23937 23938 23939 23940 23941 23942 23943 23944 23945 23946 23947 23948 23949 23950 23951 23952 23953 23954 23955 23956 23957 23958 23959 23960 23961 23962 23963 23964 23965 23966 23967 23968 23969 23970 23971 23972 23973 23974 23975 23976 23977 23978 23979 23980 23981 23982 23983 23984 23985 23986 23987 23988 23989 23990 23991 23992 23993 23994 23995 23996 23997 23998 23999 24000 24001 24002 24003 24004 24005 24006 24007 24008 24009 24010 24011 24012 24013 24014 24015 24016 24017 24018 24019 24020 24021 24022 24023 24024 24025 24026 24027 24028 24029 24030 24031 24032 24033 24034 24035 24036 24037 24038 24039 24040 24041 24042 24043 24044 24045 24046 24047 24048 24049 24050 24051 24052 24053 24054 24055 24056 24057 24058 24059 24060 24061 24062 24063 24064 24065 24066 24067 24068 24069 24070 24071 24072 24073 24074 24075 24076 24077 24078 24079 24080 24081 24082 24083 24084 24085 24086 24087 24088 24089 24090 24091 24092 24093 24094 24095 24096 24097 24098 24099 24100 24101 24102 24103 24104 24105 24106 24107 24108 24109 24110 24111 24112 24113 24114 24115 24116 24117 24118 24119 24120 24121 24122 24123 24124 24125 24126 24127 24128 24129 24130 24131 24132 24133 24134 24135 24136 24137 24138 24139 24140 24141 24142 24143 24144 24145 24146 24147 24148 24149 24150 24151 24152 24153 24154 24155 24156 24157 24158 24159 24160 24161 24162 24163 24164 24165 24166 24167 24168 24169 24170 24171 24172 24173 24174 24175 24176 24177 24178 24179 24180 24181 24182 24183 24184 24185 24186 24187 24188 24189 24190 24191 24192 24193 24194 24195 24196 24197 24198 24199 24200 24201 24202 24203 24204 24205 24206 24207 24208 24209 24210 24211 24212 24213 24214 24215 24216 24217 24218 24219 24220 24221 24222 24223 24224 24225 24226 24227 24228 24229 24230 24231 24232 24233 24234 24235 24236 24237 24238 24239 24240 24241 24242 24243 24244 24245 24246 24247 24248 24249 24250 24251 24252 24253 24254 24255 24256 24257 24258 24259 24260 24261 24262 24263 24264 24265 24266 24267 24268 24269 24270 24271 24272 24273 24274 24275 24276 24277 24278 24279 24280 24281 24282 24283 24284 24285 24286 24287 24288 24289 24290 24291 24292 24293 24294 24295 24296 24297 24298 24299 24300 24301 24302 24303 24304 24305 24306 24307 24308 24309 24310 24311 24312 24313 24314 24315 24316 24317 24318 24319 24320 24321 24322 24323 24324 24325 24326 24327 24328 24329 24330 24331 24332 24333 24334 24335 24336 24337 24338 24339 24340 24341 24342 24343 24344 24345 24346 24347 24348 24349 24350 24351 24352 24353 24354 24355 24356 24357 24358 24359 24360 24361 24362 24363 24364 24365 24366 24367 24368 24369 24370 24371 24372 24373 24374 24375 24376 24377 24378 24379 24380 24381 24382 24383 24384 24385 24386 24387 24388 24389 24390 24391 24392 24393 24394 24395 24396 24397 24398 24399 24400 24401 24402 24403 24404 24405 24406 24407 24408 24409 24410 24411 24412 24413 24414 24415 24416 24417 24418 24419 24420 24421 24422 24423 24424 24425 24426 24427 24428 24429 24430 24431 24432 24433 24434 24435 24436 24437 24438 24439 24440 24441 24442 24443 24444 24445 24446 24447 24448 24449 24450 24451 24452 24453 24454 24455 24456 24457 24458 24459 24460 24461 24462 24463 24464 24465 24466 24467 24468 24469 24470 24471 24472 24473 24474 24475 24476 24477 24478 24479 24480 24481 24482 24483 24484 24485 24486 24487 24488 24489 24490 24491 24492 24493 24494 24495 24496 24497 24498 24499 24500 24501 24502 24503 24504 24505 24506 24507 24508 24509 24510 24511 24512 24513 24514 24515 24516 24517 24518 24519 24520 24521 24522 24523 24524 24525 24526 24527 24528 24529 24530 24531 24532 24533 24534 24535 24536 24537 24538 24539 24540 24541 24542 24543 24544 24545 24546 24547 24548 24549 24550 24551 24552 24553 24554 24555 24556 24557 24558 24559 24560 24561 24562 24563 24564 24565 24566 24567 24568 24569 24570 24571 24572 24573 24574 24575 24576 24577 24578 24579 24580 24581 24582 24583 24584 24585 24586 24587 24588 24589 24590 24591 24592 24593 24594 24595 24596 24597 24598 24599 24600 24601 24602 24603 24604 24605 24606 24607 24608 24609 24610 24611 24612 24613 24614 24615 24616 24617 24618 24619 24620 24621 24622 24623 24624 24625 24626 24627 24628 24629 24630 24631 24632 24633 24634 24635 24636 24637 24638 24639 24640 24641 24642 24643 24644 24645 24646 24647 24648 24649 24650 24651 24652 24653 24654 24655 24656 24657 24658 24659 24660 24661 24662 24663 24664 24665 24666 24667 24668 24669 24670 24671 24672 24673 24674 24675 24676 24677 24678 24679 24680 24681 24682 24683 24684 24685 24686 24687 24688 24689 24690 24691 24692 24693 24694 24695 24696 24697 24698 24699 24700 24701 24702 24703 24704 24705 24706 24707 24708 24709 24710 24711 24712 24713 24714 24715 24716 24717 24718 24719 24720 24721 24722 24723 24724 24725 24726 24727 24728 24729 24730 24731 24732 24733 24734 24735 24736 24737 24738 24739 24740 24741 24742 24743 24744 24745 24746 24747 24748 24749 24750 24751 24752 24753 24754 24755 24756 24757 24758 24759 24760 24761 24762 24763 24764 24765 24766 24767 24768 24769 24770 24771 24772 24773 24774 24775 24776 24777 24778 24779 24780 24781 24782 24783 24784 24785 24786 24787 24788 24789 24790 24791 24792 24793 24794 24795 24796 24797 24798 24799 24800 24801 24802 24803 24804 24805 24806 24807 24808 24809 24810 24811 24812 24813 24814 24815 24816 24817 24818 24819 24820 24821 24822 24823 24824 24825 24826 24827 24828 24829 24830 24831 24832 24833 24834 24835 24836 24837 24838 24839 24840 24841 24842 24843 24844 24845 24846 24847 24848 24849 24850 24851 24852 24853 24854 24855 24856 24857 24858 24859 24860 24861 24862 24863 24864 24865 24866 24867 24868 24869 24870 24871 24872 24873 24874 24875 24876 24877 24878 24879 24880 24881 24882 24883 24884 24885 24886 24887 24888 24889 24890 24891 24892 24893 24894 24895 24896 24897 24898 24899 24900 24901 24902 24903 24904 24905 24906 24907 24908 24909 24910 24911 24912 24913 24914 24915 24916 24917 24918 24919 24920 24921 24922 24923 24924 24925 24926 24927 24928 24929 24930 24931 24932 24933 24934 24935 24936 24937 24938 24939 24940 24941 24942 24943 24944 24945 24946 24947 24948 24949 24950 24951 24952 24953 24954 24955 24956 24957 24958 24959 24960 24961 24962 24963 24964 24965 24966 24967 24968 24969 24970 24971 24972 24973 24974 24975 24976 24977 24978 24979 24980 24981 24982 24983 24984 24985 24986 24987 24988 24989 24990 24991 24992 24993 24994 24995 24996 24997 24998 24999 25000 25001 25002 25003 25004 25005 25006 25007 25008 25009 25010 25011 25012 25013 25014 25015 25016 25017 25018 25019 25020 25021 25022 25023 25024 25025 25026 25027 25028 25029 25030 25031 25032 25033 25034 25035 25036 25037 25038 25039 25040 25041 25042 25043 25044 25045 25046 25047 25048 25049 25050 25051 25052 25053 25054 25055 25056 25057 25058 25059 25060 25061 25062 25063 25064 25065 25066 25067 25068 25069 25070 25071 25072 25073 25074 25075 25076 25077 25078 25079 25080 25081 25082 25083 25084 25085 25086 25087 25088 25089 25090 25091 25092 25093 25094 25095 25096 25097 25098 25099 25100 25101 25102 25103 25104 25105 25106 25107 25108 25109 25110 25111 25112 25113 25114 25115 25116 25117 25118 25119 25120 25121 25122 25123 25124 25125 25126 25127 25128 25129 25130 25131 25132 25133 25134 25135 25136 25137 25138 25139 25140 25141 25142 25143 25144 25145 25146 25147 25148 25149 25150 25151 25152 25153 25154 25155 25156 25157 25158 25159 25160 25161 25162 25163 25164 25165 25166 25167 25168 25169 25170 25171 25172 25173 25174 25175 25176 25177 25178 25179 25180 25181 25182 25183 25184 25185 25186 25187 25188 25189 25190 25191 25192 25193 25194 25195 25196 25197 25198 25199 25200 25201 25202 25203 25204 25205 25206 25207 25208 25209 25210 25211 25212 25213 25214 25215 25216 25217 25218 25219 25220 25221 25222 25223 25224 25225 25226 25227 25228 25229 25230 25231 25232 25233 25234 25235 25236 25237 25238 25239 25240 25241 25242 25243 25244 25245 25246 25247 25248 25249 25250 25251 25252 25253 25254 25255 25256 25257 25258 25259 25260 25261 25262 25263 25264 25265 25266 25267 25268 25269 25270 25271 25272 25273 25274 25275 25276 25277 25278 25279 25280 25281 25282 25283 25284 25285 25286 25287 25288 25289 25290 25291 25292 25293 25294 25295 25296 25297 25298 25299 25300 25301 25302 25303 25304 25305 25306 25307 25308 25309 25310 25311 25312 25313 25314 25315 25316 25317 25318 25319 25320 25321 25322 25323 25324 25325 25326 25327 25328 25329 25330 25331 25332 25333 25334 25335 25336 25337 25338 25339 25340 25341 25342 25343 25344 25345 25346 25347 25348 25349 25350 25351 25352 25353 25354 25355 25356 25357 25358 25359 25360 25361 25362 25363 25364 25365 25366 25367 25368 25369 25370 25371 25372 25373 25374 25375 25376 25377 25378 25379 25380 25381 25382 25383 25384 25385 25386 25387 25388 25389 25390 25391 25392 25393 25394 25395 25396 25397 25398 25399 25400 25401 25402 25403 25404 25405 25406 25407 25408 25409 25410 25411 25412 25413 25414 25415 25416 25417 25418 25419 25420 25421 25422 25423 25424 25425 25426 25427 25428 25429 25430 25431 25432 25433 25434 25435 25436 25437 25438 25439 25440 25441 25442 25443 25444 25445 25446 25447 25448 25449 25450 25451 25452 25453 25454 25455 25456 25457 25458 25459 25460 25461 25462 25463 25464 25465 25466 25467 25468 25469 25470 25471 25472 25473 25474 25475 25476 25477 25478 25479 25480 25481 25482 25483 25484 25485 25486 25487 25488 25489 25490 25491 25492 25493 25494 25495 25496 25497 25498 25499 25500 25501 25502 25503 25504 25505 25506 25507 25508 25509 25510 25511 25512 25513 25514 25515 25516 25517 25518 25519 25520 25521 25522 25523 25524 25525 25526 25527 25528 25529 25530 25531 25532 25533 25534 25535 25536 25537 25538 25539 25540 25541 25542 25543 25544 25545 25546 25547 25548 25549 25550 25551 25552 25553 25554 25555 25556 25557 25558 25559 25560 25561 25562 25563 25564 25565 25566 25567 25568 25569 25570 25571 25572 25573 25574 25575 25576 25577 25578 25579 25580 25581 25582 25583 25584 25585 25586 25587 25588 25589 25590 25591 25592 25593 25594 25595 25596 25597 25598 25599 25600 25601 25602 25603 25604 25605 25606 25607 25608 25609 25610 25611 25612 25613 25614 25615 25616 25617 25618 25619 25620 25621 25622 25623 25624 25625 25626 25627 25628 25629 25630 25631 25632 25633 25634 25635 25636 25637 25638 25639 25640 25641 25642 25643 25644 25645 25646 25647 25648 25649 25650 25651 25652 25653 25654 25655 25656 25657 25658 25659 25660 25661 25662 25663 25664 25665 25666 25667 25668 25669 25670 25671 25672 25673 25674 25675 25676 25677 25678 25679 25680 25681 25682 25683 25684 25685 25686 25687 25688 25689 25690 25691 25692 25693 25694 25695 25696 25697 25698 25699 25700 25701 25702 25703 25704 25705 25706 25707 25708 25709 25710 25711 25712 25713 25714 25715 25716 25717 25718 25719 25720 25721 25722 25723 25724 25725 25726 25727 25728 25729 25730 25731 25732 25733 25734 25735 25736 25737 25738 25739 25740 25741 25742 25743 25744 25745 25746 25747 25748 25749 25750 25751 25752 25753 25754 25755 25756 25757 25758 25759 25760 25761 25762 25763 25764 25765 25766 25767 25768 25769 25770 25771 25772 25773 25774 25775 25776 25777 25778 25779 25780 25781 25782 25783 25784 25785 25786 25787 25788 25789 25790 25791 25792 25793 25794 25795 25796 25797 25798 25799 25800 25801 25802 25803 25804 25805 25806 25807 25808 25809 25810 25811 25812 25813 25814 25815 25816 25817 25818 25819 25820 25821 25822 25823 25824 25825 25826 25827 25828 25829 25830 25831 25832 25833 25834 25835 25836 25837 25838 25839 25840 25841 25842 25843 25844 25845 25846 25847 25848 25849 25850 25851 25852 25853 25854 25855 25856 25857 25858 25859 25860 25861 25862 25863 25864 25865 25866 25867 25868 25869 25870 25871 25872 25873 25874 25875 25876 25877 25878 25879 25880 25881 25882 25883 25884 25885 25886 25887 25888 25889 25890 25891 25892 25893 25894 25895 25896 25897 25898 25899 25900 25901 25902 25903 25904 25905 25906 25907 25908 25909 25910 25911 25912 25913 25914 25915 25916 25917 25918 25919 25920 25921 25922 25923 25924 25925 25926 25927 25928 25929 25930 25931 25932 25933 25934 25935 25936 25937 25938 25939 25940 25941 25942 25943 25944 25945 25946 25947 25948 25949 25950 25951 25952 25953 25954 25955 25956 25957 25958 25959 25960 25961 25962 25963 25964 25965 25966 25967 25968 25969 25970 25971 25972 25973 25974 25975 25976 25977 25978 25979 25980 25981 25982 25983 25984 25985 25986 25987 25988 25989 25990 25991 25992 25993 25994 25995 25996 25997 25998 25999 26000 26001 26002 26003 26004 26005 26006 26007 26008 26009 26010 26011 26012 26013 26014 26015 26016 26017 26018 26019 26020 26021 26022 26023 26024 26025 26026 26027 26028 26029 26030 26031 26032 26033 26034 26035 26036 26037 26038 26039 26040 26041 26042 26043 26044 26045 26046 26047 26048 26049 26050 26051 26052 26053 26054 26055 26056 26057 26058 26059 26060 26061 26062 26063 26064 26065 26066 26067 26068 26069 26070 26071 26072 26073 26074 26075 26076 26077 26078 26079 26080 26081 26082 26083 26084 26085 26086 26087 26088 26089 26090 26091 26092 26093 26094 26095 26096 26097 26098 26099 26100 26101 26102 26103 26104 26105 26106 26107 26108 26109 26110 26111 26112 26113 26114 26115 26116 26117 26118 26119 26120 26121 26122 26123 26124 26125 26126 26127 26128 26129 26130 26131 26132 26133 26134 26135 26136 26137 26138 26139 26140 26141 26142 26143 26144 26145 26146 26147 26148 26149 26150 26151 26152 26153 26154 26155 26156 26157 26158 26159 26160 26161 26162 26163 26164 26165 26166 26167 26168 26169 26170 26171 26172 26173 26174 26175 26176 26177 26178 26179 26180 26181 26182 26183 26184 26185 26186 26187 26188 26189 26190 26191 26192 26193 26194 26195 26196 26197 26198 26199 26200 26201 26202 26203 26204 26205 26206 26207 26208 26209 26210 26211 26212 26213 26214 26215 26216 26217 26218 26219 26220 26221 26222 26223 26224 26225 26226 26227 26228 26229 26230 26231 26232 26233 26234 26235 26236 26237 26238 26239 26240 26241 26242 26243 26244 26245 26246 26247 26248 26249 26250 26251 26252 26253 26254 26255 26256 26257 26258 26259 26260 26261 26262 26263 26264 26265 26266 26267 26268 26269 26270 26271 26272 26273 26274 26275 26276 26277 26278 26279 26280 26281 26282 26283 26284 26285 26286 26287 26288 26289 26290 26291 26292 26293 26294 26295 26296 26297 26298 26299 26300 26301 26302 26303 26304 26305 26306 26307 26308 26309 26310 26311 26312 26313 26314 26315 26316 26317 26318 26319 26320 26321 26322 26323 26324 26325 26326 26327 26328 26329 26330 26331 26332 26333 26334 26335 26336 26337 26338 26339 26340 26341 26342 26343 26344 26345 26346 26347 26348 26349 26350 26351 26352 26353 26354 26355 26356 26357 26358 26359 26360 26361 26362 26363 26364 26365 26366 26367 26368 26369 26370 26371 26372 26373 26374 26375 26376 26377 26378 26379 26380 26381 26382 26383 26384 26385 26386 26387 26388 26389 26390 26391 26392 26393 26394 26395 26396 26397 26398 26399 26400 26401 26402 26403 26404 26405 26406 26407 26408 26409 26410 26411 26412 26413 26414 26415 26416 26417 26418 26419 26420 26421 26422 26423 26424 26425 26426 26427 26428 26429 26430 26431 26432 26433 26434 26435 26436 26437 26438 26439 26440 26441 26442 26443 26444 26445 26446 26447 26448 26449 26450 26451 26452 26453 26454 26455 26456 26457 26458 26459 26460 26461 26462 26463 26464 26465 26466 26467 26468 26469 26470 26471 26472 26473 26474 26475 26476 26477 26478 26479 26480 26481 26482 26483 26484 26485 26486 26487 26488 26489 26490 26491 26492 26493 26494 26495 26496 26497 26498 26499 26500 26501 26502 26503 26504 26505 26506 26507 26508 26509 26510 26511 26512 26513 26514 26515 26516 26517 26518 26519 26520 26521 26522 26523 26524 26525 26526 26527 26528 26529 26530 26531 26532 26533 26534 26535 26536 26537 26538 26539 26540 26541 26542 26543 26544 26545 26546 26547 26548 26549 26550 26551 26552 26553 26554 26555 26556 26557 26558 26559 26560 26561 26562 26563 26564 26565 26566 26567 26568 26569 26570 26571 26572 26573 26574 26575 26576 26577 26578 26579 26580 26581 26582 26583 26584 26585 26586 26587 26588 26589 26590 26591 26592 26593 26594 26595 26596 26597 26598 26599 26600 26601 26602 26603 26604 26605 26606 26607 26608 26609 26610 26611 26612 26613 26614 26615 26616 26617 26618 26619 26620 26621 26622 26623 26624 26625 26626 26627 26628 26629 26630 26631 26632 26633 26634 26635 26636 26637 26638 26639 26640 26641 26642 26643 26644 26645 26646 26647 26648 26649 26650 26651 26652 26653 26654 26655 26656 26657 26658 26659 26660 26661 26662 26663 26664 26665 26666 26667 26668 26669 26670 26671 26672 26673 26674 26675 26676 26677 26678 26679 26680 26681 26682 26683 26684 26685 26686 26687 26688 26689 26690 26691 26692 26693 26694 26695 26696 26697 26698 26699 26700 26701 26702 26703 26704 26705 26706 26707 26708 26709 26710 26711 26712 26713 26714 26715 26716 26717 26718 26719 26720 26721 26722 26723 26724 26725 26726 26727 26728 26729 26730 26731 26732 26733 26734 26735 26736 26737 26738 26739 26740 26741 26742 26743 26744 26745 26746 26747 26748 26749 26750 26751 26752 26753 26754 26755 26756 26757 26758 26759 26760 26761 26762 26763 26764 26765 26766 26767 26768 26769 26770 26771 26772 26773 26774 26775 26776 26777 26778 26779 26780 26781 26782 26783 26784 26785 26786 26787 26788 26789 26790 26791 26792 26793 26794 26795 26796 26797 26798 26799 26800 26801 26802 26803 26804 26805 26806 26807 26808 26809 26810 26811 26812 26813 26814 26815 26816 26817 26818 26819 26820 26821 26822 26823 26824 26825 26826 26827 26828 26829 26830 26831 26832 26833 26834 26835 26836 26837 26838 26839 26840 26841 26842 26843 26844 26845 26846 26847 26848 26849 26850 26851 26852 26853 26854 26855 26856 26857 26858 26859 26860 26861 26862 26863 26864 26865 26866 26867 26868 26869 26870 26871 26872 26873 26874 26875 26876 26877 26878 26879 26880 26881 26882 26883 26884 26885 26886 26887 26888 26889 26890 26891 26892 26893 26894 26895 26896 26897 26898 26899 26900 26901 26902 26903 26904 26905 26906 26907 26908 26909 26910 26911 26912 26913 26914 26915 26916 26917 26918 26919 26920 26921 26922 26923 26924 26925 26926 26927 26928 26929 26930 26931 26932 26933 26934 26935 26936 26937 26938 26939 26940 26941 26942 26943 26944 26945 26946 26947 26948 26949 26950 26951 26952 26953 26954 26955 26956 26957 26958 26959 26960 26961 26962 26963 26964 26965 26966 26967 26968 26969 26970 26973 26974 26975 26976 26977 26978 26979 26980 26981 26982 26983 26984 26985 26986 26987 26988 26989 26990 26991 26992 26993 26994 26995 26996 26997 26998 26999 27000 27001 27002 27003 27004 27005 27006 27007 27008 27009 27010 27027 27028 27029 27030 27031 27032 27033 27034 27035 27036 27037 27038 27039 27040 27041 27042 27043 27044 27045 27046 27047 27048 27049 27050 27051 27071 27072 27073 27074 27075 27076 27077 27078 27079 27080 27081 27082 27083 27084 27086 27087 27112 27113 27114 27115 27116 27117 27118 27119 27120 27121 27122 27150 27151 27152 27153 27154 27155 27156 27157 27158 27186 27187 27188 27189 27190 27192 27221 27222 27223 27224 27255 27256 27257 27258 27288 27289 27290 27320 27321 27322 27351 27352 27353 27381 27382 27383 27410 27411 27412 27438 27439 27440 27465 27466 27467 27491 27492 27493 27516 27517 27540 27541 27563 27564 27585 27586 27606 27607 27626 27627 27645 27646 27663 27664 27680 27681 27696 27711 27725 27726 27738 27739 27750 27751 27761 27762 27771 27772 27780 27788 27816 27817 27818 27819 27820 27821 27822 27823 27824 27825 27826 27827 27828 27829 27830 27831 27832 27833 27834 27835 27836 27837 27838 27839 27840 27841 27842 27843 27844 27845 27846 27847 27848 27849 27850 27851 27852 27853 27854 27855 27856 27857 27858 27859 27860 27861 27862 27863 27864 27865 27866 27867 27868 27869 27870 27871 27872 27873 27874 27875 27876 27877 27878 27879 27880 27881 27882 27883 27884 27885 27886 27887 27888 27889 27890 27891 27892 27893 27894 27895 27896 27897 27898 27899 27900 27901 27902 27903 27904 27905 27906 27907 27908 27909 27910 27911 27912 27913 27914 27915 27916 27917 27918 27919 27920 27921 27922 27923 27924 27925 27927 27928 27929 27930 27931 27932 27933 27934 27935 27936 27937 27938 27939 27940 27941 27942 27943 27944 27945 27946 27947 27948 27949 27950 27951 27952 27953 27954 27955 27956 27957 27958 27959 27960 27961 27962 27963 27964 27965 27966 27967 27968 27969 27970 27971 27972 27973 27974 27975 27976 27977 27978 27979 27981 27982 27983 27984 27985 27986 27987 27988 27989 27990 27991 27992 27993 27994 27995 27996 27997 27998 27999 28000 28001 28002 28003 28004 28005 28006 28007 28008 28009 28010 28011 28012 28013 28014 28015 28016 28017 28018 28019 28020 28021 28022 28023 28024 28025 28026 28027 28028 28029 28030 28031 28034 28035 28036 28037 28038 28039 28040 28041 28042 28043 28044 28045 28046 28047 28048 28049 28050 28051 28052 28053 28054 28055 28056 28057 28058 28059 28060 28061 28062 28063 28064 28065 28066 28067 28068 28069 28070 28071 28072 28073 28074 28075 28076 28077 28078 28079 28080 28081 28082 28083 28086 28087 28088 28089 28090 28091 28092 28093 28094 28095 28096 28097 28098 28099 28100 28101 28102 28103 28104 28105 28106 28107 28108 28109 28110 28111 28112 28113 28114 28115 28116 28117 28118 28119 28120 28121 28122 28123 28124 28125 28126 28127 28128 28129 28130 28131 28132 28133 28134 28135 28137 28138 28139 28140 28141 28142 28143 28144 28145 28146 28147 28148 28149 28150 28151 28152 28153 28154 28155 28156 28157 28158 28159 28160 28161 28162 28163 28164 28165 28166 28167 28168 28169 28170 28171 28172 28173 28174 28175 28176 28177 28178 28179 28180 28181 28182 28183 28184 28185 28187 28188 28189 28190 28191 28192 28193 28194 28195 28196 28197 28198 28199 28200 28201 28202 28203 28204 28205 28206 28207 28208 28209 28210 28211 28212 28213 28214 28215 28216 28217 28218 28219 28220 28221 28222 28223 28224 28225 28226 28227 28228 28229 28230 28231 28232 28233 28234 28236 28237 28238 28239 28240 28241 28242 28243 28244 28245 28246 28247 28248 28249 28250 28251 28252 28253 28254 28255 28256 28257 28258 28259 28260 28261 28262 28263 28264 28265 28266 28267 28268 28269 28270 28271 28272 28273 28274 28275 28276 28277 28278 28279 28280 28281 28282 28284 28285 28286 28287 28288 28289 28290 28291 28292 28293 28294 28295 28296 28297 28298 28299 28300 28301 28302 28303 28304 28305 28306 28307 28308 28309 28310 28311 28312 28313 28314 28315 28316 28317 28318 28319 28320 28321 28322 28323 28324 28325 28326 28327 28328 28329 28331 28332 28333 28334 28335 28336 28337 28338 28339 28340 28341 28342 28343 28344 28345 28346 28347 28348 28349 28350 28351 28352 28353 28354 28355 28356 28357 28358 28359 28360 28361 28362 28363 28364 28365 28366 28367 28368 28369 28370 28371 28372 28373 28374 28375 28377 28378 28379 28380 28381 28382 28383 28384 28385 28386 28387 28388 28389 28390 28391 28392 28393 28394 28395 28396 28397 28398 28399 28400 28401 28402 28403 28404 28405 28406 28407 28408 28409 28410 28411 28412 28413 28414 28415 28416 28417 28418 28419 28420 28422 28423 28424 28425 28426 28427 28428 28429 28430 28431 28432 28433 28434 28435 28436 28437 28438 28439 28440 28441 28442 28443 28444 28445 28446 28447 28448 28449 28450 28451 28452 28453 28454 28455 28456 28457 28458 28459 28460 28461 28462 28463 28464 28466 28467 28468 28469 28470 28471 28472 28473 28474 28475 28476 28477 28478 28479 28480 28481 28482 28483 28484 28485 28486 28487 28488 28489 28490 28491 28492 28493 28494 28495 28496 28497 28498 28499 28500 28501 28502 28503 28504 28505 28506 28507 28508 28509 28510 28511 28512 28513 28514 28515 28516 28517 28518 28519 28520 28521 28522 28523 28524 28525 28526 28527 28528 28529 28530 28531 28532 28533 28534 28535 28536 28537 28538 28539 28540 28541 28542 28543 28544 28545 28546 28547 28548 28549 28550 28551 28552 28553 28554 28555 28556 28557 28558 28559 28560 28561 28562 28563 28564 28565 28566 28567 28568 28569 28570 28571 28572 28573 28574 28575 28576 28577 28578 28579 28580 28581 28582 28583 28584 28585 28586 28587 28588 28589 28590 28591 28592 28593 28594 28595 28596 28597 28598 28599 28600 28601 28602 28603 28604 28605 28606 28607 28608 28609 28610 28611 28612 28613 28614 28615 28616 28617 28618 28619 28620 28621 28622 28623 28624 28625 28626 28627 28628 28629 28630 28631 28632 28633 28634 28635 28636 28637 28638 28639 28640 28641 28642 28643 28644 28645 28646 28647 28648 28649 28650 28651 28652 28653 28654 28655 28656 28657 28658 28659 28660 28661 28662 28663 28664 28665 28666 28667 28668 28669 28670 28671 28672 28673 28674 28675 28676 28677 28678 28679 28680 28681 28682 28683 28684 28685 28686 28687 28688 28689 28690 28691 28692 28693 28694 28695 28696 28697 28698 28699 28700 28701 28702 28703 28704 28705 28706 28707 28708 28709 28710 28711 28712 28713 28714 28715 28716 28717 28718 28719 28720 28721 28722 28723 28724 28725 28726 28727 28728 28729 28730 28731 28732 28733 28734 28735 28736 28737 28738 28739 28740 28741 28742 28743 28744 28745 28746 28747 28748 28749 28750 28751 28752 28753 28754 28755 28756 28757 28758 28759 28760 28761 28762 28763 28764 28765 28766 28767 28768 28769 28770 28771 28772 28773 28774 28775 28776 28777 28778 28779 28780 28781 28782 28783 28784 28785 28786 28787 28788 28789 28790 28791 28792 28793 28794 28795 28796 28797 28798 28799 28800 28801 28802 28803 28804 28805 28806 28807 28808 28809 28810 28811 28812 28813 28814 28815 28816 28817 28818 28819 28820 28821 28822 28823 28824 28825 28826 28827 28828 28829 28830 28831 28832 28833 28834 28835 28836 28837 28838 28839 28840 28841 28842 28843 28844 28845 28846 28847 28848 28849 28850 28851 28852 28853 28854 28855 28856 28857 28858 28859 28860 28861 28862 28863 28864 28865 28866 28867 28868 28869 28870 28871 28872 28873 28874 28875 28876 28877 28878 28879 28880 28881 28882 28883 28884 28885 28886 28887 28888 28889 28890 28891 28892 28893 28894 28895 28896 28897 28898 28899 28900 28901 28902 28903 28904 28905 28906 28907 28908 28909 28910 28911 28912 28913 28914 28915 28916 28917 28918 28919 28920 28921 28922 28923 28924 28925 28926 28927 28928 28929 28930 28931 28932 28933 28934 28935 28936 28937 28938 28939 28940 28941 28942 28943 28944 28945 28946 28947 28948 28949 28950 28951 28952 28953 28954 28955 28956 28957 28958 28959 28960 28961 28962 28963 28964 28965 28966 28967 28968 28969 28970 28971 28972 28973 28974 28975 28976 28977 28978 28979 28980 28981 28982 28983 28984 28985 28986 28987 28988 28989 28990 28991 28992 28993 28994 28995 28996 28997 28998 28999 29000 29001 29002 29003 29004 29005 29006 29007 29008 29009 29010 29011 29012 29013 29014 29015 29016 29017 29018 29019 29020 29021 29022 29023 29024 29025 29026 29027 29028 29029 29030 29031 29032 29033 29034 29035 29036 29037 29038 29039 29040 29041 29042 29043 29044 29045 29046 29047 29048 29049 29050 29051 29052 29053 29054 29055 29056 29057 29058 29059 29060 29061 29062 29063 29064 29065 29066 29067 29068 29069 29070 29071 29072 29073 29074 29075 29076 29077 29078 29079 29080 29081 29082 29083 29084 29085 29086 29087 29088 29089 29090 29091 29092 29093 29094 29095 29096 29097 29098 29099 29100 29101 29102 29103 29104 29105 29106 29107 29108 29109 29110 29111 29112 29113 29114 29115 29116 29117 29118 29119 29120 29121 29122 29123 29124 29125 29126 29127 29128 29129 29130 29131 29132 29133 29134 29135 29136 29137 29138 29139 29140 29141 29142 29143 29144 29145 29146 29147 29148 29149 29150 29151 29152 29153 29154 29155 29156 29157 29158 29159 29160 29161 29162 29163 29164 29165 29166 29167 29168 29169 29170 29171 29172 29173 29174 29175 29176 29177 29178 29179 29180 29181 29182 29183 29184 29185 29186 29187 29188 29189 29190 29191 29192 29193 29194 29195 29196 29197 29198 29199 29200 29201 29202 29203 29204 29205 29206 29207 29208 29209 29210 29211 29212 29213 29214 29215 29216 29217 29218 29219 29220 29221 29222 29223 29224 29225 29226 29227 29228 29229 29230 29231 29232 29233 29234 29235 29236 29237 29238 29239 29240 29241 29242 29243 29244 29245 29246 29247 29248 29249 29250 29251 29252 29253 29254 29255 29256 29257 29258 29259 29260 29261 29262 29263 29264 29265 29266 29267 29268 29269 29270 29271 29272 29273 29274 29275 29276 29277 29278 29279 29280 29281 29282 29283 29284 29285 29286 29287 29288 29289 29290 29291 29292 29293 29294 29295 29296 29297 29298 29299 29300 29301 29302 29303 29304 29305 29306 29307 29308 29309 29310 29311 29312 29313 29314 29315 29316 29317 29318 29319 29320 29321 29322 29323 29324 29325 29326 29327 29328 29329 29330 29331 29332 29333 29334 29335 29336 29337 29338 29339 29340 29341 29342 29343 29344 29345 29346 29347 29348 29349 29350 29351 29352 29353 29354 29355 29356 29357 29358 29359 29360 29361 29362 29363 29364 29365 29366 29367 29368 29369 29370 29371 29372 29373 29374 29375 29376 29377 29378 29379 29380 29381 29382 29383 29384 29385 29386 29387 29388 29389 29390 29391 29392 29393 29394 29395 29396 29397 29398 29399 29400 29401 29402 29403 29404 29405 29406 29407 29408 29409 29410 29411 29412 29413 29414 29415 29416 29417 29418 29419 29420 29421 29422 29423 29424 29425 29426 29427 29428 29429 29430 29431 29432 29433 29434 29435 29436 29437 29438 29439 29440 29441 29442 29443 29444 29445 29446 29447 29448 29449 29450 29451 29452 29453 29454 29455 29456 29457 29458 29459 29460 29461 29462 29463 29464 29465 29466 29467 29468 29469 29470 29471 29472 29473 29474 29475 29476 29477 29478 29479 29480 29481 29482 29483 29484 29485 29486 29487 29488 29489 29490 29491 29492 29493 29494 29495 29496 29497 29498 29499 29500 29501 29502 29503 29504 29505 29506 29507 29508 29509 29510 29511 29512 29513 29514 29515 29516 29517 29518 29519 29520 29521 29522 29523 29524 29525 29526 29527 29528 29529 29530 29531 29532 29533 29534 29535 29536 29537 29538 29539 29540 29541 29542 29543 29544 29545 29546 29547 29548 29549 29550 29551 29552 29553 29554 29555 29556 29557 29558 29559 29560 29561 29562 29563 29564 29565 29566 29567 29568 29569 29570 29571 29572 29573 29574 29575 29576 29577 29578 29579 29580 29581 29582 29583 29584 29585 29586 29587 29588 29589 29590 29591 29592 29593 29594 29595 29596 29597 29598 29599 29600 29601 29602 29603 29604 29605 29606 29607 29608 29609 29610 29611 29612 29613 29614 29615 29616 29617 29618 29619 29620 29621 29622 29623 29624 29625 29626 29627 29628 29629 29630 29631 29632 29633 29634 29635 29636 29637 29638 29639 29640 29641 29642 29643 29644 29645 29646 29647 29648 29649 29650 29651 29652 29653 29654 29655 29656 29657 29658 29659 29660 29661 29662 29663 29664 29665 29666 29667 29668 29669 29670 29671 29672 29673 29674 29675 29676 29677 29678 29679 29680 29681 29682 29683 29684 29685 29686 29687 29688 29689 29690 29691 29692 29693 29694 29695 29696 29697 29698 29699 29700 29701 29702 29703 29704 29705 29706 29707 29708 29709 29710 29711 29712 29713 29714 29715 29716 29717 29718 29719 29720 29721 29722 29723 29724 29725 29726 29727 29728 29729 29730 29731 29732 29733 29734 29735 29736 29737 29738 29739 29740 29741 29742 29743 29744 29745 29746 29747 29748 29749 29750 29751 29752 29753 29754 29755 29756 29757 29758 29759 29760 29761 29762 29763 29764 29765 29766 29767 29768 29769 29770 29771 29772 29773 29774 29775 29776 29777 29778 29779 29780 29781 29782 29783 29784 29785 29786 29787 29788 29789 29790 29791 29792 29793 29794 29795 29796 29797 29798 29799 29800 29801 29802 29803 29804 29805 29806 29807 29808 29809 29810 29811 29812 29813 29814 29815 29816 29817 29818 29819 29820 29821 29822 29823 29824 29825 29826 29827 29828 29829 29830 29831 29832 29833 29834 29835 29836 29837 29838 29839 29840 29841 29842 29843 29844 29845 29846 29847 29848 29849 29850 29851 29852 29853 29854 29855 29856 29857 29858 29859 29860 29861 29862 29863 29864 29865 29866 29867 29868 29869 29870 29871 29872 29873 29874 29875 29876 29877 29878 29879 29880 29881 29882 29883 29884 29885 29886 29887 29888 29889 29890 29891 29892 29893 29894 29895 29896 29897 29898 29899 29900 29901 29902 29903 29904 29905 29906 29907 29908 29909 29910 29911 29912 29913 29914 29915 29916 29917 29918 29919 29920 29921 29922 29923 29924 29925 29926 29927 29928 29929 29930 29931 29932 29933 29934 29935 29936 29937 29938 29939 29940 29941 29942 29943 29944 29945 29946 29947 29948 29949 29950 29951 29952 29953 29954 29955 29956 29957 29958 29959 29960 29961 29962 29963 29964 29965 29966 29967 29968 29969 29970 29971 29972 29973 29974 29975 29976 29977 29978 29979 29980 29981 29982 29983 29984 29985 29986 29987 29988 29989 29990 29991 29992 29993 29994 29995 29996 29997 29998 29999 30000 30001 30002 30003 30004 30005 30006 30007 30008 30009 30010 30011 30012 30013 30014 30015 30016 30017 30018 30019 30020 30021 30022 30023 30024 30025 30026 30027 30028 30029 30030 30031 30032 30033 30034 30035 30036 30037 30038 30039 30040 30041 30042 30043 30044 30045 30046 30047 30048 30049 30050 30051 30052 30053 30054 30055 30056 30057 30058 30059 30060 30061 30062 30063 30064 30065 30066 30067 30068 30069 30070 30071 30072 30073 30074 30075 30076 30077 30078 30079 30080 30081 30082 30083 30084 30085 30086 30087 30088 30089 30090 30091 30092 30093 30094 30095 30096 30097 30098 30099 30100 30101 30102 30103 30104 30105 30106 30107 30108 30109 30110 30111 30112 30113 30114 30115 30116 30117 30118 30119 30120 30121 30122 30123 30124 30125 30126 30127 30128 30129 30130 30131 30132 30133 30134 30135 30136 30137 30138 30139 30140 30141 30142 30143 30144 30145 30146 30147 30148 30149 30150 30151 30152 30153 30154 30155 30156 30157 30158 30159 30160 30161 30162 30163 30164 30165 30166 30167 30168 30169 30170 30171 30172 30173 30174 30175 30176 30177 30178 30179 30180 30181 30182 30183 30184 30185 30186 30187 30188 30189 30190 30191 30192 30193 30194 30195 30196 30197 30198 30199 30200 30201 30202 30203 30204 30205 30206 30207 30208 30209 30210 30211 30212 30213 30214 30215 30216 30217 30218 30219 30220 30221 30222 30223 30224 30225 30226 30227 30228 30229 30230 30231 30232 30233 30234 30235 30236 30237 30238 30239 30240 30241 30242 30243 30244 30245 30246 30247 30248 30249 30250 30251 30252 30253 30254 30255 30256 30257 30258 30259 30260 30261 30262 30263 30264 30265 30266 30267 30268 30269 30270 30271 30272 30273 30274 30275 30276 30277 30278 30279 30280 30281 30282 30283 30284 30285 30286 30287 30288 30289 30290 30291 30292 30293 30294 30295 30296 30297 30298 30299 30300 30301 30302 30303 30304 30305 30306 30307 30308 30309 30310 30311 30312 30313 30314 30315 30316 30317 30318 30319 30320 30321 30322 30323 30324 30325 30326 30327 30328 30329 30330 30331 30332 30333 30334 30335 30336 30337 30338 30339 30340 30341 30342 30343 30344 30345 30346 30347 30348 30349 30350 30351 30352 30353 30354 30355 30356 30357 30358 30359 30360 30361 30362 30363 30364 30365 30366 30367 30368 30369 30370 30371 30372 30373 30374 30375 30376 30377 30378 30379 30380 30381 30382 30383 30384 30385 30386 30387 30388 30389 30390 30391 30392 30393 30394 30395 30396 30397 30398 30399 30400 30401 30402 30403 30404 30405 30406 30407 30408 30409 30410 30411 30412 30413 30414 30415 30416 30417 30418 30419 30420 30421 30422 30423 30424 30425 30426 30427 30428 30429 30430 30431 30432 30433 30434 30435 30436 30437 30438 30439 30440 30441 30442 30443 30444 30445 30446 30447 30448 30449 30450 30451 30452 30453 30454 30455 30456 30457 30458 30459 30460 30461 30462 30463 30464 30465 30466 30467 30468 30469 30470 30471 30472 30473 30474 30475 30476 30477 30478 30479 30480 30481 30482 30483 30484 30485 30486 30487 30488 30489 30490 30491 30492 30493 30494 30495 30496 30497 30498 30499 30500 30501 30502 30503 30504 30505 30506 30507 30508 30509 30510 30511 30512 30513 30514 30515 30516 30517 30518 30519 30520 30521 30522 30523 30524 30525 30526 30527 30528 30529 30530 30531 30532 30533 30534 30535 30536 30537 30538 30539 30540 30541 30542 30543 30544 30545 30546 30547 30548 30549 30550 30551 30552 30553 30554 30555 30556 30557 30558 30559 30560 30561 30562 30563 30564 30565 30566 30567 30568 30569 30570 30571 30572 30573 30574 30575 30576 30577 30578 30579 30580 30581 30582 30583 30584 30585 30586 30587 30588 30589 30590 30591 30592 30593 30594 30595 30596 30597 30598 30599 30600 30601 30602 30603 30604 30605 30606 30607 30608 30609 30610 30611 30612 30613 30614 30615 30616 30617 30618 30619 30620 30621 30622 30623 30624 30625 30626 30627 30628 30629 30630 30631 30632 30633 30634 30635 30636 30637 30638 30639 30640 30641 30642 30643 30644 30645 30646 30647 30648 30649 30650 30651 30652 30653 30654 30655 30656 30657 30658 30659 30660 30661 30662 30663 30664 30665 30666 30667 30668 30669 30670 30671 30672 30673 30674 30675 30676 30677 30678 30679 30680 30681 30682 30683 30684 30685 30686 30687 30688 30689 30690 30691 30692 30693 30694 30695 30696 30697 30698 30699 30700 30701 30702 30703 30704 30705 30706 30707 30708 30709 30710 30711 30712 30713 30714 30715 30716 30717 30718 30719 30720 30721 30722 30723 30724 30725 30726 30727 30728 30729 30730 30731 30732 30733 30734 30735 30736 30737 30738 30739 30740 30741 30742 30743 30744 30745 30746 30747 30748 30749 30750 30751 30752 30753 30754 30755 30756 30757 30758 30759 30760 30761 30762 30763 30764 30765 30766 30767 30768 30769 30770 30771 30772 30773 30774 30775 30776 30777 30778 30779 30780 30781 30782 30783 30784 30785 30786 30787 30788 30789 30790 30791 30792 30793 30794 30795 30796 30797 30798 30799 30800 30801 30802 30803 30804 30805 30806 30807 30808 30809 30810 30811 30812 30813 30814 30815 30816 30817 30818 30819 30820 30821 30822 30823 30824 30825 30826 30827 30828 30829 30830 30831 30832 30833 30834 30835 30836 30837 30838 30839 30840 30841 30842 30843 30844 30845 30846 30847 30848 30849 30850 30851 30852 30853 30854 30855 30856 30857 30858 30859 30860 30861 30862 30863 30864 30865 30866 30867 30868 30869 30870 30871 30872 30873 30874 30875 30876 30877 30878 30879 30880 30881 30882 30883 30884 30885 30886 30887 30888 30889 30890 30891 30892 30893 30894 30895 30896 30897 30898 30899 30900 30901 30902 30903 30904 30905 30906 30907 30908 30909 30910 30911 30912 30913 30914 30915 30916 30917 30918 30919 30920 30921 30922 30923 30924 30925 30926 30927 30928 30929 30930 30931 30932 30933 30934 30935 30936 30937 30938 30939 30940 30941 30942 30943 30944 30945 30946 30947 30948 30949 30950 30951 30952 30953 30954 30955 30956 30957 30958 30959 30960 30961 30962 30963 30964 30965 30966 30967 30968 30969 30970 30971 30972 30973 30974 30975 30976 30977 30978 30979 30980 30981 30982 30983 30984 30985 30986 30987 30988 30989 30990 30991 30992 30993 30994 30995 30996 30997 30998 30999 31000 31001 31002 31003 31004 31005 31006 31007 31008 31009 31010 31011 31012 31013 31014 31015 31016 31017 31018 31019 31020 31021 31022 31023 31024 31025 31026 31027 31028 31029 31030 31031 31032 31033 31034 31035 31036 31037 31038 31039 31040 31041 31042 31043 31044 31045 31046 31047 31048 31049 31050 31051 31052 31053 31054 31055 31056 31057 31058 31059 31060 31061 31062 31063 31064 31065 31066 31067 31068 31069 31070 31071 31072 31073 31074 31075 31076 31077 31078 31079 31080 31081 31082 31083 31084 31085 31086 31087 31088 31089 31090 31091 31092 31093 31094 31095 31096 31097 31098 31099 31100 31101 31102 31103 31104 31105 31106 31107 31108 31109 31110 31111 31112 31113 31114 31115 31116 31117 31118 31119 31120 31121 31122 31123 31124 31125 31126 31127 31128 31129 31130 31131 31132 31133 31134 31135 31136 31137 31138 31139 31140 31141 31142 31143 31144 31145 31146 31147 31148 31149 31150 31151 31152 31153 31154 31155 31156 31157 31158 31159 31160 31161 31162 31163 31164 31165 31166 31167 31168 31169 31170 31171 31172 31173 31174 31175 31176 31177 31178 31179 31180 31181 31182 31183 31184 31185 31186 31187 31188 31189 31190 31191 31192 31193 31194 31195 31196 31197 31198 31199 31200 31201 31202 31203 31204 31205 31206 31207 31208 31209 31210 31211 31212 31213 31214 31215 31216 31217 31218 31219 31220 31221 31222 31223 31224 31225 31226 31227 31228 31229 31230 31231 31232 31233 31234 31235 31236 31237 31238 31239 31240 31241 31242 31243 31244 31245 31246 31247 31248 31249 31250 31251 31252 31253 31254 31255 31256 31257 31258 31259 31260 31261 31262 31263 31264 31265 31266 31267 31268 31269 31270 31271 31272 31273 31274 31275 31276 31277 31278 31279 31280 31281 31282 31283 31284 31285 31286 31287 31288 31289 31290 31291 31292 31293 31294 31295 31296 31297 31298 31299 31300 31301 31302 31303 31304 31305 31306 31307 31308 31309 31310 31311 31312 31313 31314 31315 31316 31317 31318 31319 31320 31321 31322 31323 31324 31325 31326 31327 31328 31329 31330 31331 31332 31333 31334 31335 31336 31337 31338 31339 31340 31341 31342 31343 31344 31345 31346 31347 31348 31349 31350 31351 31352 31353 31354 31355 31356 31357 31358 31359 31360 31361 31362 31363 31364 31365 31366 31367 31368 31369 31370 31371 31372 31373 31374 31375 31376 31377 31378 31379 31380 31381 31382 31383 31384 31385 31386 31387 31388 31389 31390 31391 31392 31393 31394 31395 31396 31397 31398 31399 31400 31401 31402 31403 31404 31405 31406 31407 31408 31409 31410 31411 31412 31413 31414 31415 31416 31417 31418 31419 31420 31421 31422 31423 31424 31425 31426 31427 31428 31429 31430 31431 31432 31433 31434 31435 31436 31437 31438 31439 31440 31441 31442 31443 31444 31445 31446 31447 31448 31449 31450 31451 31452 31453 31454 31455 31456 31457 31458 31459 31460 31461 31462 31463 31464 31465 31466 31467 31468 31469 31470 31471 31472 31473 31474 31475 31476 31477 31478 31479 31480 31481 31482 31483 31484 31485 31486 31487 31488 31489 31490 31491 31492 31493 31494 31495 31496 31497 31498 31499 31500 31501 31502 31503 31504 31505 31506 31507 31508 31509 31510 31511 31512 31513 31514 31515 31516 31517 31518 31519 31520 31521 31522 31523 31524 31525 31526 31527 31528 31529 31530 31531 31532 31533 31534 31535 31536 31537 31538 31539 31540 31541 31542 31543 31544 31545 31546 31547 31548 31549 31550 31551 31552 31553 31554 31555 31556 31557 31558 31559 31560 31561 31562 31563 31564 31565 31566 31567 31568 31569 31570 31571 31572 31573 31574 31575 31576 31577 31578 31579 31580 31581 31582 31583 31584 31585 31586 31587 31588 31589 31590 31591 31592 31593 31594 31595 31596 31597 31598 31599 31600 31601 31602 31603 31604 31605 31606 31607 31608 31609 31610 31611 31612 31613 31614 31615 31616 31617 31618 31619 31620 31621 31622 31623 31624 31625 31626 31627 31628 31629 31630 31631 31632 31633 31634 31635 31636 31637 31638 31639 31640 31641 31642 31643 31644 31645 31646 31647 31648 31649 31650 31651 31652 31653 31654 31655 31656 31657 31658 31659 31660 31661 31662 31663 31664 31665 31666 31667 31668 31669 31670 31671 31672 31673 31674 31675 31676 31677 31678 31679 31680 31681 31682 31683 31684 31685 31686 31687 31688 31689 31690 31691 31692 31693 31694 31695 31696 31697 31698 31699 31700 31701 31702 31703 31704 31705 31706 31707 31708 31709 31710 31711 31712 31713 31714 31715 31716 31717 31718 31719 31720 31721 31722 31723 31724 31725 31726 31727 31728 31729 31730 31731 31732 31733 31734 31735 31736 31737 31738 31739 31740 31741 31742 31743 31744 31745 31746 31747 31748 31749 31750 31751 31752 31753 31754 31755 31756 31757 31758 31759 31760 31761 31762 31763 31764 31765 31766 31767 31768 31769 31770 31771 31772 31773 31774 31775 31776 31777 31778 31779 31780 31781 31782 31783 31784 31785 31786 31787 31788 31789 31790 31791 31792 31793 31794 31795 31796 31797 31798 31799 31800 31801 31802 31803 31804 31805 31806 31807 31808 31809 31810 31811 31812 31813 31814 31815 31816 31817 31818 31819 31820 31821 31822 31823 31824 31825 31826 31827 31828 31829 31830 31831 31832 31833 31834 31835 31836 31837 31838 31839 31840 31841 31842 31843 31844 31845 31846 31847 31848 31849 31850 31851 31852 31853 31854 31855 31856 31857 31858 31859 31860 31861 31862 31863 31864 31865 31866 31867 31868 31869 31870 31871 31872 31873 31874 31875 31876 31877 31878 31879 31880 31881 31882 31883 31884 31885 31886 31887 31888 31889 31890 31891 31892 31893 31894 31895 31896 31897 31898 31899 31900 31901 31902 31903 31904 31905 31906 31907 31908 31909 31910 31911 31912 31913 31914 31915 31916 31917 31918 31919 31920 31921 31922 31923 31924 31925 31926 31927 31928 31929 31930 31931 31932 31933 31934 31935 31936 31937 31938 31939 31940 31941 31942 31943 31944 31945 31946 31947 31948 31949 31950 31951 31952 31953 31954 31955 31956 31957 31958 31959 31960 31961 31962 31963 31964 31965 31966 31967 31968 31969 31970 31971 31972 31973 31974 31975 31976 31977 31978 31979 31980 31981 31982 31983 31984 31985 31986 31987 31988 31989 31990 31991 31992 31993 31994 31995 31996 31997 31998 31999 32000 32001 32002 32003 32004 32005 32006 32007 32008 32009 32010 32011 32012 32013 32014 32015 32016 32017 32018 32019 32020 32021 32022 32023 32024 32025 32026 32027 32028 32029 32030 32031 32032 32033 32034 32035 32036 32037 32038 32039 32040 32041 32042 32043 32044 32045 32046 32047 32048 32049 32050 32051 32052 32053 32054 32055 32056 32057 32058 32059 32060 32061 32062 32063 32064 32065 32066 32067 32068 32069 32070 32071 32072 32073 32074 32075 32076 32077 32078 32079 32080 32081 32082 32083 32084 32085 32086 32087 32088 32089 32090 32091 32092 32093 32094 32095 32096 32097 32098 32099 32100 32101 32102 32103 32104 32105 32106 32107 32108 32109 32110 32111 32112 32113 32114 32115 32116 32117 32118 32119 32120 32121 32122 32123 32124 32125 32126 32127 32128 32129 32130 32131 32132 32133 32134 32135 32136 32137 32138 32139 32140 32141 32142 32143 32144 32145 32146 32147 32148 32149 32150 32151 32152 32153 32154 32155 32156 32157 32158 32159 32160 32161 32162 32163 32164 32165 32166 32167 32168 32169 32170 32171 32172 32173 32174 32175 32176 32177 32178 32179 32180 32181 32182 32183 32184 32185 32186 32187 32188 32189 32190 32191 32192 32193 32194 32195 32196 32197 32198 32199 32200 32201 32202 32203 32204 32205 32206 32207 32208 32209 32210 32211 32212 32213 32214 32215 32216 32217 32218 32219 32220 32221 32222 32223 32224 32225 32226 32227 32228 32229 32230 32231 32232 32233 32234 32235 32236 32237 32238 32239 32240 32241 32242 32243 32244 32245 32246 32247 32248 32249 32250 32251 32252 32253 32254 32255 32256 32257 32258 32259 32260 32261 32262 32263 32264 32265 32266 32267 32268 32269 32270 32271 32272 32273 32274 32275 32276 32277 32278 32279 32280 32281 32282 32283 32284 32285 32286 32287 32288 32289 32290 32291 32292 32293 32294 32295 32296 32297 32298 32299 32300 32301 32302 32303 32304 32305 32306 32307 32308 32309 32310 32311 32312 32313 32314 32315 32316 32317 32318 32319 32320 32321 32322 32323 32324 32325 32326 32327 32328 32329 32330 32331 32332 32333 32334 32335 32336 32337 32338 32339 32340 32341 32342 32343 32344 32345 32346 32347 32348 32349 32350 32351 32352 32353 32354 32355 32356 32357 32358 32359 32360 32361 32362 32363 32364 32365 32366 32367 32368 32369 32370 32371 32372 32373 32374 32375 32376 32377 32378 32379 32380 32381 32382 32383 32384 32385 32386 32387 32388 32389 32390 32391 32392 32393 32394 32395 32396 32397 32398 32399 32400 32401 32402 32403 32404 32405 32406 32407 32408 32409 32410 32411 32412 32413 32414 32415 32416 32417 32418 32419 32420 32421 32422 32423 32424 32425 32426 32427 32428 32429 32430 32431 32432 32433 32434 32435 32436 32437 32438 32439 32440 32441 32442 32443 32444 32445 32446 32447 32448 32449 32450 32451 32452 32453 32454 32455 32456 32457 32458 32459 32460 32461 32462 32463 32464 32465 32466 32467 32468 32469 32470 32471 32472 32473 32474 32475 32476 32477 32478 32479 32480 32481 32482 32483 32484 32485 32486 32487 32488 32489 32490 32491 0 1 2 3 4 5 6 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 235 236 237 238 239 240 241 242 243 244 245 246 247 248 289 290 291 292 293 294 295 296 297 298 299 300 301 342 343 344 345 346 347 348 349 350 351 352 353 394 395 396 397 398 399 400 401 402 403 404 445 446 447 448 449 450 451 452 453 454 455 495 496 497 498 499 500 501 502 503 504 544 545 546 547 548 549 550 551 552 592 593 594 595 596 597 598 599 600 639 640 641 642 643 644 645 646 647 685 686 687 688 689 690 691 692 693 730 731 732 733 734 735 736 737 738 774 775 776 777 778 779 780 781 782 817 818 819 820 821 822 823 824 825 859 860 861 862 863 864 865 866 867 900 901 902 903 904 905 906 907 908 909 940 941 942 943 944 945 946 947 948 949 979 980 981 982 983 984 985 986 987 988 989 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2632 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3110 3111 3112 3113 3114 3115 3116 3117 3118 3133 3134 3135 3136 3137 3138 3139 3140 3155 3156 3157 3158 3159 3160 3161 3176 3177 3178 3179 3180 3181 3196 3197 3198 3199 3200 3215 3216 3217 3218 3233 3234 3235 3250 3251 3266 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 7940 7941 7942 7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8028 8029 8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 8077 8078 8079 8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109 8110 8111 8112 8113 8114 8115 8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233 8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260 8261 8262 8263 8264 8265 8266 8267 8268 8269 8270 8271 8272 8273 8274 8275 8276 8277 8278 8279 8280 8281 8282 8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 8345 8346 8347 8348 8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 8361 8362 8363 8364 8365 8366 8367 8368 8369 8370 8371 8372 8373 8374 8375 8376 8377 8378 8379 8380 8381 8382 8383 8384 8385 8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398 8399 8400 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 8411 8412 8413 8414 8415 8416 8417 8418 8419 8420 8421 8422 8423 8424 8425 8426 8427 8428 8429 8430 8431 8432 8433 8434 8435 8436 8437 8438 8439 8440 8441 8442 8443 8444 8445 8446 8447 8448 8449 8450 8451 8452 8453 8454 8455 8456 8457 8458 8459 8460 8461 8462 8463 8464 8465 8466 8467 8468 8469 8470 8471 8472 8473 8474 8475 8476 8477 8478 8479 8480 8481 8482 8483 8484 8485 8486 8487 8488 8489 8490 8491 8492 8493 8494 8495 8496 8497 8498 8499 8500 8501 8502 8503 8504 8505 8506 8507 8508 8509 8510 8511 8512 8513 8514 8515 8516 8517 8518 8519 8520 8521 8522 8523 8524 8525 8526 8527 8528 8529 8530 8531 8532 8533 8534 8535 8536 8537 8538 8539 8540 8541 8542 8543 8544 8545 8546 8547 8548 8549 8550 8551 8552 8553 8554 8555 8556 8557 8558 8559 8560 8561 8562 8563 8564 8565 8566 8567 8568 8569 8570 8571 8572 8573 8574 8575 8576 8577 8578 8579 8580 8581 8582 8583 8584 8585 8586 8587 8588 8589 8590 8591 8592 8593 8594 8595 8596 8597 8598 8599 8600 8601 8602 8603 8604 8605 8606 8607 8608 8609 8610 8611 8612 8613 8614 8615 8616 8617 8618 8619 8620 8621 8622 8623 8624 8625 8626 8627 8628 8629 8630 8631 8632 8633 8634 8635 8636 8637 8638 8639 8640 8641 8642 8643 8644 8645 8646 8647 8648 8649 8650 8651 8652 8653 8654 8655 8656 8657 8658 8659 8660 8661 8662 8663 8664 8665 8666 8667 8668 8669 8670 8671 8672 8673 8674 8675 8676 8677 8678 8679 8680 8681 8682 8683 8684 8685 8686 8687 8688 8689 8690 8691 8692 8693 8694 8695 8696 8697 8698 8699 8700 8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 8732 8733 8734 8735 8736 8737 8738 8739 8740 8741 8742 8743 8744 8745 8746 8747 8748 8749 8750 8751 8752 8753 8754 8755 8756 8757 8758 8759 8760 8761 8762 8763 8764 8765 8766 8767 8768 8769 8770 8771 8772 8773 8774 8775 8776 8777 8778 8779 8780 8781 8782 8783 8784 8785 8786 8787 8788 8789 8790 8791 8792 8793 8794 8795 8796 8797 8798 8799 8800 8801 8802 8803 8804 8805 8806 8807 8808 8809 8810 8811 8812 8813 8814 8815 8816 8817 8818 8819 8820 8821 8822 8823 8824 8825 8826 8827 8828 8829 8830 8831 8832 8833 8834 8835 8836 8837 8838 8839 8840 8841 8842 8843 8844 8845 8846 8847 8848 8849 8850 8851 8852 8853 8854 8855 8856 8857 8858 8859 8860 8861 8862 8863 8864 8865 8866 8867 8868 8869 8870 8871 8872 8873 8874 8875 8876 8877 8878 8879 8880 8881 8882 8883 8884 8885 8886 8887 8888 8889 8890 8891 8892 8893 8894 8895 8896 8897 8898 8899 8900 8901 8902 8903 8904 8905 8906 8907 8908 8909 8910 8911 8912 8913 8914 8915 8916 8917 8918 8919 8920 8921 8922 8923 8924 8925 8926 8927 8928 8929 8930 8931 8932 8933 8934 8935 8936 8937 8938 8939 8940 8941 8942 8943 8944 8945 8946 8947 8948 8949 8950 8951 8952 8953 8954 8955 8956 8957 8958 8959 8960 8961 8962 8963 8964 8965 8966 8967 8968 8969 8970 8971 8972 8973 8974 8975 8976 8977 8978 8979 8980 8981 8982 8983 8984 8985 8986 8987 8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 9015 9016 9017 9018 9019 9020 9021 9022 9023 9024 9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 9052 9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 9100 9101 9102 9103 9104 9105 9106 9107 9108 9109 9110 9111 9112 9113 9114 9115 9116 9117 9118 9119 9120 9121 9122 9123 9124 9125 9126 9127 9128 9129 9130 9131 9132 9133 9134 9135 9136 9137 9138 9139 9140 9141 9142 9143 9144 9145 9146 9147 9148 9149 9150 9151 9152 9153 9154 9155 9156 9157 9158 9159 9160 9161 9162 9163 9164 9165 9166 9167 9168 9169 9170 9171 9172 9173 9174 9175 9176 9177 9178 9179 9180 9181 9182 9183 9184 9185 9186 9187 9188 9189 9190 9191 9192 9193 9194 9195 9196 9197 9198 9199 9200 9201 9202 9203 9204 9205 9206 9207 9208 9209 9210 9211 9212 9213 9214 9215 9216 9217 9218 9219 9220 9221 9222 9223 9224 9225 9226 9227 9228 9229 9230 9231 9232 9233 9234 9235 9236 9237 9238 9239 9240 9241 9242 9243 9244 9245 9246 9247 9248 9249 9250 9251 9252 9253 9254 9255 9256 9257 9258 9259 9260 9261 9262 9263 9264 9265 9266 9267 9268 9269 9270 9271 9272 9273 9274 9275 9276 9277 9278 9279 9280 9281 9282 9283 9284 9285 9286 9287 9288 9289 9290 9291 9292 9293 9294 9295 9296 9297 9298 9299 9300 9301 9302 9303 9304 9305 9306 9307 9308 9309 9310 9311 9312 9313 9314 9315 9316 9317 9318 9319 9320 9321 9322 9323 9324 9325 9326 9327 9328 9329 9330 9331 9332 9333 9334 9335 9336 9337 9338 9339 9340 9341 9342 9343 9344 9345 9346 9347 9348 9349 9350 9351 9352 9353 9354 9355 9356 9357 9358 9359 9360 9361 9362 9363 9364 9365 9366 9367 9368 9369 9370 9371 9372 9373 9374 9375 9376 9377 9378 9379 9380 9381 9382 9383 9384 9385 9386 9387 9388 9389 9390 9391 9392 9393 9394 9395 9396 9397 9398 9399 9400 9401 9402 9403 9404 9405 9406 9407 9408 9409 9410 9411 9412 9413 9414 9415 9416 9417 9418 9419 9420 9421 9422 9423 9424 9425 9426 9427 9428 9429 9430 9431 9432 9433 9434 9435 9436 9437 9438 9439 9440 9441 9442 9443 9444 9445 9446 9447 9448 9449 9450 9451 9452 9453 9454 9455 9456 9457 9458 9459 9460 9461 9462 9463 9464 9465 9466 9467 9468 9469 9470 9471 9472 9473 9474 9475 9476 9477 9478 9479 9480 9481 9482 9483 9484 9485 9486 9487 9488 9489 9490 9491 9492 9493 9494 9495 9496 9497 9498 9499 9500 9501 9502 9503 9504 9505 9506 9507 9508 9509 9510 9511 9512 9513 9514 9515 9516 9517 9518 9519 9520 9521 9522 9523 9524 9525 9526 9527 9528 9529 9530 9531 9532 9533 9534 9535 9536 9537 9538 9539 9540 9541 9542 9543 9544 9545 9546 9547 9548 9549 9550 9551 9552 9553 9554 9555 9556 9557 9558 9559 9560 9561 9562 9563 9564 9565 9566 9567 9568 9569 9570 9571 9572 9573 9574 9575 9576 9577 9578 9579 9580 9581 9582 9583 9584 9585 9586 9587 9588 9589 9590 9591 9592 9593 9594 9595 9596 9597 9598 9599 9600 9601 9602 9603 9604 9605 9606 9607 9608 9609 9610 9611 9612 9613 9614 9615 9616 9617 9618 9619 9620 9621 9622 9623 9624 9625 9626 9627 9628 9629 9630 9631 9632 9633 9634 9635 9636 9637 9638 9639 9640 9641 9642 9643 9644 9645 9646 9647 9648 9649 9650 9651 9652 9653 9654 9655 9656 9657 9658 9659 9660 9661 9662 9663 9664 9665 9666 9667 9668 9669 9670 9671 9672 9673 9674 9675 9676 9677 9678 9679 9680 9681 9682 9683 9684 9685 9686 9687 9688 9689 9690 9691 9692 9693 9694 9695 9696 9697 9698 9699 9700 9701 9702 9703 9704 9705 9706 9707 9708 9709 9710 9711 9712 9713 9714 9715 9716 9717 9718 9719 9720 9721 9722 9723 9724 9725 9726 9727 9728 9729 9730 9731 9732 9733 9734 9735 9736 9737 9738 9739 9740 9741 9742 9743 9744 9745 9746 9747 9748 9749 9750 9751 9752 9753 9754 9755 9756 9757 9758 9759 9760 9761 9762 9763 9764 9765 9766 9767 9768 9769 9770 9771 9772 9773 9774 9775 9776 9777 9778 9779 9780 9781 9782 9783 9784 9785 9786 9787 9788 9789 9790 9791 9792 9793 9794 9795 9796 9797 9798 9799 9800 9801 9802 9803 9804 9805 9806 9807 9808 9809 9810 9811 9812 9813 9814 9815 9816 9817 9818 9819 9820 9821 9822 9823 9824 9825 9826 9827 9828 9829 9830 9831 9832 9833 9834 9835 9836 9837 9838 9839 9840 9841 9842 9843 9844 9845 9846 9847 9848 9849 9850 9851 9852 9853 9854 9855 9856 9857 9858 9859 9860 9861 9862 9863 9864 9865 9866 9867 9868 9869 9870 9871 9872 9873 9874 9875 9876 9877 9878 9879 9880 9881 9882 9883 9884 9885 9886 9887 9888 9889 9890 9891 9892 9893 9894 9895 9896 9897 9898 9899 9900 9901 9902 9903 9904 9905 9906 9907 9908 9909 9910 9911 9912 9913 9914 9915 9916 9917 9918 9919 9920 9921 9922 9923 9924 9925 9926 9927 9928 9929 9930 9931 9932 9933 9934 9935 9936 9937 9938 9939 9940 9941 9942 9943 9944 9945 9946 9947 9948 9949 9950 9951 9952 9953 9954 9955 9956 9957 9958 9959 9960 9961 9962 9963 9964 9965 9966 9967 9968 9969 9970 9971 9972 9973 9974 9975 9976 9977 9978 9979 9980 9981 9982 9983 9984 9985 9986 9987 9988 9989 9990 9991 9992 9993 9994 9995 9996 9997 9998 9999 10000 10001 10002 10003 10004 10005 10006 10007 10008 10009 10010 10011 10012 10013 10014 10015 10016 10017 10018 10019 10020 10021 10022 10023 10024 10025 10026 10027 10028 10029 10030 10031 10032 10033 10034 10035 10036 10037 10038 10039 10040 10041 10042 10043 10044 10045 10046 10047 10048 10049 10050 10051 10052 10053 10054 10055 10056 10057 10058 10059 10060 10061 10062 10063 10064 10065 10066 10067 10068 10069 10070 10071 10072 10073 10074 10075 10076 10077 10078 10079 10080 10081 10082 10083 10084 10085 10086 10087 10088 10089 10090 10091 10092 10093 10094 10095 10096 10097 10098 10099 10100 10101 10102 10103 10104 10105 10106 10107 10108 10109 10110 10111 10112 10113 10114 10115 10116 10117 10118 10119 10120 10121 10122 10123 10124 10125 10126 10127 10128 10129 10130 10131 10132 10133 10134 10135 10136 10137 10138 10139 10140 10141 10142 10143 10144 10145 10146 10147 10148 10149 10150 10151 10152 10153 10154 10155 10156 10157 10158 10159 10160 10161 10162 10163 10164 10165 10166 10167 10168 10169 10170 10171 10172 10173 10174 10175 10176 10177 10178 10179 10180 10181 10182 10183 10184 10185 10186 10187 10188 10189 10190 10191 10192 10193 10194 10195 10196 10197 10198 10199 10200 10201 10202 10203 10204 10205 10206 10207 10208 10209 10210 10211 10212 10213 10214 10215 10216 10217 10218 10219 10220 10221 10222 10223 10224 10225 10226 10227 10228 10229 10230 10231 10232 10233 10234 10235 10236 10237 10238 10239 10240 10241 10242 10243 10244 10245 10246 10247 10248 10249 10250 10251 10252 10253 10254 10255 10256 10257 10258 10259 10260 10261 10262 10263 10264 10265 10266 10267 10268 10269 10270 10271 10272 10273 10274 10275 10276 10277 10278 10279 10280 10281 10282 10283 10284 10285 10286 10287 10288 10289 10290 10291 10292 10293 10294 10295 10296 10297 10298 10299 10300 10301 10302 10303 10304 10305 10306 10307 10308 10309 10310 10311 10312 10313 10314 10315 10316 10317 10318 10319 10320 10321 10322 10323 10324 10325 10326 10327 10328 10329 10330 10331 10332 10333 10334 10335 10336 10337 10338 10339 10340 10341 10342 10343 10344 10345 10346 10347 10348 10349 10350 10351 10352 10353 10354 10355 10356 10357 10358 10359 10360 10361 10362 10363 10364 10365 10366 10367 10368 10369 10370 10371 10372 10373 10374 10375 10376 10377 10378 10379 10380 10381 10382 10383 10384 10385 10386 10387 10388 10389 10390 10391 10392 10393 10394 10395 10396 10397 10398 10399 10400 10401 10402 10403 10404 10405 10406 10407 10408 10409 10410 10411 10412 10413 10414 10415 10416 10417 10418 10419 10420 10421 10422 10423 10424 10425 10426 10427 10428 10429 10430 10431 10432 10433 10434 10435 10436 10437 10438 10439 10440 10441 10442 10443 10444 10445 10446 10447 10448 10449 10450 10451 10452 10453 10454 10455 10456 10457 10458 10459 10460 10461 10462 10463 10464 10465 10466 10467 10468 10469 10470 10471 10472 10473 10474 10475 10476 10477 10478 10479 10480 10481 10482 10483 10484 10485 10486 10487 10488 10489 10490 10491 10492 10493 10494 10495 10496 10497 10498 10499 10500 10501 10502 10503 10504 10505 10506 10507 10508 10509 10510 10511 10512 10513 10514 10515 10516 10517 10518 10519 10520 10521 10522 10523 10524 10525 10526 10527 10528 10529 10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 10548 10549 10550 10551 10552 10553 10554 10555 10556 10557 10558 10559 10560 10561 10562 10563 10564 10565 10566 10567 10568 10569 10570 10571 10572 10573 10574 10575 10576 10577 10578 10579 10580 10581 10582 10583 10584 10585 10586 10587 10588 10589 10590 10591 10592 10593 10594 10595 10596 10597 10598 10599 10600 10601 10602 10603 10604 10605 10606 10607 10608 10609 10610 10611 10612 10613 10614 10615 10616 10617 10618 10619 10620 10621 10622 10623 10624 10625 10626 10627 10628 10629 10630 10631 10632 10633 10634 10635 10636 10637 10638 10639 10640 10641 10642 10643 10644 10645 10646 10647 10648 10649 10650 10651 10652 10653 10654 10655 10656 10657 10658 10659 10660 10661 10662 10663 10664 10665 10666 10667 10668 10669 10670 10671 10672 10673 10674 10675 10676 10677 10678 10679 10680 10681 10682 10683 10684 10685 10686 10687 10688 10689 10690 10691 10692 10693 10694 10695 10696 10697 10698 10699 10700 10701 10702 10703 10704 10705 10706 10707 10708 10709 10710 10711 10712 10713 10714 10715 10716 10717 10718 10719 10720 10721 10722 10723 10724 10725 10726 10727 10728 10729 10730 10731 10732 10733 10734 10735 10736 10737 10738 10739 10740 10741 10742 10743 10744 10745 10746 10747 10748 10749 10750 10751 10752 10753 10754 10755 10756 10757 10758 10759 10760 10761 10762 10763 10764 10765 10766 10767 10768 10769 10770 10771 10772 10773 10774 10775 10776 10777 10778 10779 10780 10781 10782 10783 10784 10785 10786 10787 10788 10789 10790 10791 10792 10793 10794 10795 10796 10797 10798 10799 10800 10801 10802 10803 10804 10805 10806 10807 10808 10809 10810 10811 10812 10813 10814 10815 10816 10817 10818 10819 10820 10821 10822 10823 10824 10825 10826 10827 10828 10829 10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 10879 10880 10881 10882 10883 10884 10885 10886 10887 10888 10889 10890 10891 10892 10893 10894 10895 10896 10897 10898 10899 10900 10901 10902 10903 10904 10905 10906 10907 10908 10909 10910 10911 10912 10913 10914 10915 10916 10917 10918 10919 10920 10921 10922 10923 10924 10925 10926 10927 10928 10929 10930 10931 10932 10933 10934 10935 10936 10937 10938 10939 10940 10941 10942 10943 10944 10945 10946 10947 10948 10949 10950 10951 10952 10953 10954 10955 10956 10957 10958 10959 10960 10961 10962 10963 10964 10965 10966 10967 10968 10969 10970 10971 10972 10973 10974 10975 10976 10977 10978 10979 10980 10981 10982 10983 10984 10985 10986 10987 10988 10989 10990 10991 10992 10993 10994 10995 10996 10997 10998 10999 11000 11001 11002 11003 11004 11005 11006 11007 11008 11009 11010 11011 11012 11013 11014 11015 11016 11017 11018 11019 11020 11021 11022 11023 11024 11025 11026 11027 11028 11029 11030 11031 11032 11033 11034 11035 11036 11037 11038 11039 11040 11041 11042 11043 11044 11045 11046 11047 11048 11049 11050 11051 11052 11053 11054 11055 11056 11057 11058 11059 11060 11061 11062 11063 11064 11065 11066 11067 11068 11069 11070 11071 11072 11073 11074 11075 11076 11077 11078 11079 11080 11081 11082 11083 11084 11085 11086 11087 11088 11089 11090 11091 11092 11093 11094 11095 11096 11097 11098 11099 11100 11101 11102 11103 11104 11105 11106 11107 11108 11109 11110 11111 11112 11113 11114 11115 11116 11117 11118 11119 11120 11121 11122 11123 11124 11125 11126 11127 11128 11129 11130 11131 11132 11133 11134 11135 11136 11137 11138 11139 11140 11141 11142 11143 11144 11145 11146 11147 11148 11149 11150 11151 11152 11153 11154 11155 11156 11157 11158 11159 11160 11161 11162 11163 11164 11165 11166 11167 11168 11169 11170 11171 11172 11173 11174 11175 11176 11177 11178 11179 11180 11181 11182 11183 11184 11185 11186 11187 11188 11189 11190 11191 11192 11193 11194 11195 11196 11197 11198 11199 11200 11201 11202 11203 11204 11205 11206 11207 11208 11209 11210 11211 11212 11213 11214 11215 11216 11217 11218 11219 11220 11221 11222 11223 11224 11225 11226 11227 11228 11229 11230 11231 11232 11233 11234 11235 11236 11237 11238 11239 11240 11241 11242 11243 11244 11245 11246 11247 11248 11249 11250 11251 11252 11253 11254 11255 11256 11257 11258 11259 11260 11261 11262 11263 11264 11265 11266 11267 11268 11269 11270 11271 11272 11273 11274 11275 11276 11277 11278 11279 11280 11281 11282 11283 11284 11285 11286 11287 11288 11289 11290 11291 11292 11293 11294 11295 11296 11297 11298 11299 11300 11301 11302 11303 11304 11305 11306 11307 11308 11309 11310 11311 11312 11313 11314 11315 11316 11317 11318 11319 11320 11321 11322 11323 11324 11325 11326 11327 11328 11329 11330 11331 11332 11333 11334 11335 11336 11337 11338 11339 11340 11341 11342 11343 11344 11345 11346 11347 11348 11349 11350 11351 11352 11353 11354 11355 11356 11357 11358 11359 11360 11361 11362 11363 11364 11365 11366 11367 11368 11369 11370 11371 11372 11373 11374 11375 11376 11377 11378 11379 11380 11381 11382 11383 11384 11385 11386 11387 11388 11389 11390 11391 11392 11393 11394 11395 11396 11397 11398 11399 11400 11401 11402 11403 11404 11405 11406 11407 11408 11409 11410 11411 11412 11413 11414 11415 11416 11417 11418 11419 11420 11421 11422 11423 11424 11425 11426 11427 11428 11429 11430 11431 11432 11433 11434 11435 11436 11437 11438 11439 11440 11441 11442 11443 11444 11445 11446 11447 11448 11449 11450 11451 11452 11453 11454 11455 11456 11457 11458 11459 11460 11461 11462 11463 11464 11465 11466 11467 11468 11469 11470 11471 11472 11473 11474 11475 11476 11477 11478 11479 11480 11481 11482 11483 11484 11485 11486 11487 11488 11489 11490 11491 11492 11493 11494 11495 11496 11497 11498 11499 11500 11501 11502 11503 11504 11505 11506 11507 11508 11509 11510 11511 11512 11513 11514 11515 11516 11517 11518 11519 11520 11521 11522 11523 11524 11525 11526 11527 11528 11529 11530 11531 11532 11533 11534 11535 11536 11537 11538 11539 11540 11541 11542 11543 11544 11545 11546 11547 11548 11549 11550 11551 11552 11553 11554 11555 11556 11557 11558 11559 11560 11561 11562 11563 11564 11565 11566 11567 11568 11569 11570 11571 11572 11573 11574 11575 11576 11577 11578 11579 11580 11581 11582 11583 11584 11585 11586 11587 11588 11589 11590 11591 11592 11593 11594 11595 11596 11597 11598 11599 11600 11601 11602 11603 11604 11605 11606 11607 11608 11609 11610 11611 11612 11613 11614 11615 11616 11617 11618 11619 11620 11621 11622 11623 11624 11625 11626 11627 11628 11629 11630 11631 11632 11633 11634 11635 11636 11637 11638 11639 11640 11641 11642 11643 11644 11645 11646 11647 11648 11649 11650 11651 11652 11653 11654 11655 11656 11657 11658 11659 11660 11661 11662 11663 11664 11665 11666 11667 11668 11669 11670 11671 11672 11673 11674 11675 11676 11677 11678 11679 11680 11681 11682 11683 11684 11685 11686 11687 11688 11689 11690 11691 11692 11693 11694 11695 11696 11697 11698 11699 11700 11701 11702 11703 11704 11705 11706 11707 11708 11709 11710 11711 11712 11713 11714 11715 11716 11717 11718 11719 11720 11721 11722 11723 11724 11725 11726 11727 11728 11729 11730 11731 11732 11733 11734 11735 11736 11737 11738 11739 11740 11741 11742 11743 11744 11745 11746 11747 11748 11749 11750 11751 11752 11753 11754 11755 11756 11757 11758 11759 11760 11761 11762 11763 11764 11765 11766 11767 11768 11769 11770 11771 11772 11773 11774 11775 11776 11777 11778 11779 11780 11781 11782 11783 11784 11785 11786 11787 11788 11789 11790 11791 11792 11793 11794 11795 11796 11797 11798 11799 11800 11801 11802 11803 11804 11805 11806 11807 11808 11809 11810 11811 11812 11813 11814 11815 11816 11817 11818 11819 11820 11821 11822 11823 11824 11825 11826 11827 11828 11829 11830 11831 11832 11833 11834 11835 11836 11837 11838 11839 11840 11841 11842 11843 11844 11845 11846 11847 11848 11849 11850 11851 11852 11853 11854 11855 11856 11857 11858 11859 11860 11861 11862 11863 11864 11865 11866 11867 11868 11869 11870 11871 11872 11873 11874 11875 11876 11877 11878 11879 11880 11881 11882 11883 11884 11885 11886 11887 11888 11889 11890 11891 11892 11893 11894 11895 11896 11897 11898 11899 11900 11901 11902 11903 11904 11905 11906 11907 11908 11909 11910 11911 11912 11913 11914 11915 11916 11917 11918 11919 11920 11921 11922 11923 11924 11925 11926 11927 11928 11929 11930 11931 11932 11933 11934 11935 11936 11937 11938 11939 11940 11941 11942 11943 11944 11945 11946 11947 11948 11949 11950 11951 11952 11953 11954 11955 11956 11957 11958 11959 11960 11961 11962 11963 11964 11965 11966 11967 11968 11969 11970 11971 11972 11973 11974 11975 11976 11977 11978 11979 11980 11981 11982 11983 11984 11985 11986 11987 11988 11989 11990 11991 11992 11993 11994 11995 11996 11997 11998 11999 12000 12001 12002 12003 12004 12005 12006 12007 12008 12009 12010 12011 12012 12013 12014 12015 12016 12017 12018 12019 12020 12021 12022 12023 12024 12025 12026 12027 12028 12029 12030 12031 12032 12033 12034 12035 12036 12037 12038 12039 12040 12041 12042 12043 12044 12045 12046 12047 12048 12049 12050 12051 12052 12053 12054 12055 12056 12057 12058 12059 12060 12061 12062 12063 12064 12065 12066 12067 12068 12069 12070 12071 12072 12073 12074 12075 12076 12077 12078 12079 12080 12081 12082 12083 12084 12085 12086 12087 12088 12089 12090 12091 12092 12093 12094 12095 12096 12097 12098 12099 12100 12101 12102 12103 12104 12105 12106 12107 12108 12109 12110 12111 12112 12113 12114 12115 12116 12117 12118 12119 12120 12121 12122 12123 12124 12125 12126 12127 12128 12129 12130 12131 12132 12133 12134 12135 12136 12137 12138 12139 12140 12141 12142 12143 12144 12145 12146 12147 12148 12149 12150 12151 12152 12153 12154 12155 12156 12157 12158 12159 12160 12161 12162 12163 12164 12165 12166 12167 12168 12169 12170 12171 12172 12173 12174 12175 12176 12177 12178 12179 12180 12181 12182 12183 12184 12185 12186 12187 12188 12189 12190 12191 12192 12193 12194 12195 12196 12197 12198 12199 12200 12201 12202 12203 12204 12205 12206 12207 12208 12209 12210 12211 12212 12213 12214 12215 12216 12217 12218 12219 12220 12221 12222 12223 12224 12225 12226 12227 12228 12229 12230 12231 12232 12233 12234 12235 12236 12237 12238 12239 12240 12241 12242 12243 12244 12245 12246 12247 12248 12249 12250 12251 12252 12253 12254 12255 12256 12257 12258 12259 12260 12261 12262 12263 12264 12265 12266 12267 12268 12269 12270 12271 12272 12273 12274 12275 12276 12277 12278 12279 12280 12281 12282 12283 12284 12285 12286 12287 12288 12289 12290 12291 12292 12293 12294 12295 12296 12297 12298 12299 12300 12301 12302 12303 12304 12305 12306 12307 12308 12309 12310 12311 12312 12313 12314 12315 12316 12317 12318 12319 12320 12321 12322 12323 12324 12325 12326 12327 12328 12329 12330 12331 12332 12333 12334 12335 12336 12337 12338 12339 12340 12341 12342 12343 12344 12345 12346 12347 12348 12349 12350 12351 12352 12353 12354 12355 12356 12357 12358 12359 12360 12361 12362 12363 12364 12365 12366 12367 12368 12369 12370 12371 12372 12373 12374 12375 12376 12377 12378 12379 12380 12381 12382 12383 12384 12385 12386 12387 12388 12389 12390 12391 12392 12393 12394 12395 12396 12397 12398 12399 12400 12401 12402 12403 12404 12405 12406 12407 12408 12409 12410 12411 12412 12413 12414 12415 12416 12417 12418 12419 12420 12421 12422 12423 12424 12425 12426 12427 12428 12429 12430 12431 12432 12433 12434 12435 12436 12437 12438 12439 12440 12441 12442 12443 12444 12445 12446 12447 12448 12449 12450 12451 12452 12453 12454 12455 12456 12457 12458 12459 12460 12461 12462 12463 12464 12465 12466 12467 12468 12469 12470 12471 12472 12473 12474 12475 12476 12477 12478 12479 12480 12481 12482 12483 12484 12485 12486 12487 12488 12489 12490 12491 12492 12493 12494 12495 12496 12497 12498 12499 12500 12501 12502 12503 12504 12505 12506 12507 12508 12509 12510 12511 12512 12513 12514 12515 12516 12517 12518 12519 12520 12521 12522 12523 12524 12525 12526 12527 12528 12529 12530 12531 12532 12533 12534 12535 12536 12537 12538 12539 12540 12541 12542 12543 12544 12545 12546 12547 12548 12549 12550 12551 12552 12553 12554 12555 12556 12557 12558 12559 12560 12561 12562 12563 12564 12565 12566 12567 12568 12569 12570 12571 12572 12573 12574 12575 12576 12577 12578 12579 12580 12581 12582 12583 12584 12585 12586 12587 12588 12589 12590 12591 12592 12593 12594 12595 12596 12597 12598 12599 12600 12601 12602 12603 12604 12605 12606 12607 12608 12609 12610 12611 12612 12613 12614 12615 12616 12617 12618 12619 12620 12621 12622 12623 12624 12625 12626 12627 12628 12629 12630 12631 12632 12633 12634 12635 12636 12637 12638 12639 12640 12641 12642 12643 12644 12645 12646 12647 12648 12649 12650 12651 12652 12653 12654 12655 12656 12657 12658 12659 12660 12661 12662 12663 12664 12665 12666 12667 12668 12669 12670 12671 12672 12673 12674 12675 12676 12677 12678 12679 12680 12681 12682 12683 12684 12685 12686 12687 12688 12689 12690 12691 12692 12693 12694 12695 12696 12697 12698 12699 12700 12701 12702 12703 12704 12705 12706 12707 12708 12709 12710 12711 12712 12713 12714 12715 12716 12717 12718 12719 12720 12721 12722 12723 12724 12725 12726 12727 12728 12729 12730 12731 12732 12733 12734 12735 12736 12737 12738 12739 12740 12741 12742 12743 12744 12745 12746 12747 12748 12749 12750 12751 12752 12753 12754 12755 12756 12757 12758 12759 12760 12761 12762 12763 12764 12765 12766 12767 12768 12769 12770 12771 12772 12773 12774 12775 12776 12777 12778 12779 12780 12781 12782 12783 12784 12785 12786 12787 12788 12789 12790 12791 12792 12793 12794 12795 12796 12797 12798 12799 12800 12801 12802 12803 12804 12805 12806 12807 12808 12809 12810 12811 12812 12813 12814 12815 12816 12817 12818 12819 12820 12821 12822 12823 12824 12825 12826 12827 12828 12829 12830 12831 12832 12833 12834 12835 12836 12837 12838 12839 12840 12841 12842 12843 12844 12845 12846 12847 12848 12849 12850 12851 12852 12853 12854 12855 12856 12857 12858 12859 12860 12861 12862 12863 12864 12865 12866 12867 12868 12869 12870 12871 12872 12873 12874 12875 12876 12877 12878 12879 12880 12881 12882 12883 12884 12885 12886 12887 12888 12889 12890 12891 12892 12893 12894 12895 12896 12897 12898 12899 12900 12901 12902 12903 12904 12905 12906 12907 12908 12909 12910 12911 12912 12913 12914 12915 12916 12917 12918 12919 12920 12921 12922 12923 12924 12925 12926 12927 12928 12929 12930 12931 12932 12933 12934 12935 12936 12937 12938 12939 12940 12941 12942 12943 12944 12945 12946 12947 12948 12949 12950 12951 12952 12953 12954 12955 12956 12957 12958 12959 12960 12961 12962 12963 12964 12965 12966 12967 12968 12969 12970 12971 12972 12973 12974 12975 12976 12977 12978 12979 12980 12981 12982 12983 12984 12985 12986 12987 12988 12989 12990 12991 12992 12993 12994 12995 12996 12997 12998 12999 13000 13001 13002 13003 13004 13005 13006 13007 13008 13009 13010 13011 13012 13013 13014 13015 13016 13017 13018 13019 13020 13021 13022 13023 13024 13025 13026 13027 13028 13029 13030 13031 13032 13033 13034 13035 13036 13037 13038 13039 13040 13041 13042 13043 13044 13045 13046 13047 13048 13049 13050 13051 13052 13053 13054 13055 13056 13057 13058 13059 13060 13061 13062 13063 13064 13065 13066 13067 13068 13069 13070 13071 13072 13073 13074 13075 13076 13077 13078 13079 13080 13081 13082 13083 13084 13085 13086 13087 13088 13089 13090 13091 13092 13093 13094 13095 13096 13097 13098 13099 13100 13101 13102 13103 13104 13105 13106 13107 13108 13109 13110 13111 13112 13113 13114 13115 13116 13117 13118 13119 13120 13121 13122 13123 13124 13125 13126 13127 13128 13129 13130 13131 13132 13133 13134 13135 13136 13137 13138 13139 13140 13141 13142 13143 13144 13145 13146 13147 13148 13149 13150 13151 13152 13153 13154 13155 13156 13157 13158 13159 13160 13161 13162 13163 13164 13165 13166 13167 13168 13169 13170 13171 13172 13173 13174 13175 13176 13177 13178 13179 13180 13181 13182 13183 13184 13185 13186 13187 13188 13189 13190 13191 13192 13193 13194 13195 13196 13197 13198 13199 13200 13201 13202 13203 13204 13205 13206 13207 13208 13209 13210 13211 13212 13213 13214 13215 13216 13217 13218 13219 13220 13221 13222 13223 13224 13225 13226 13227 13228 13229 13230 13231 13232 13233 13234 13235 13236 13237 13238 13239 13240 13241 13242 13243 13244 13245 13246 13247 13248 13249 13250 13251 13252 13253 13254 13255 13256 13257 13258 13259 13260 13261 13262 13263 13264 13265 13266 13267 13268 13269 13270 13271 13272 13273 13274 13275 13276 13277 13278 13279 13280 13281 13282 13283 13284 13285 13286 13287 13288 13289 13290 13291 13292 13293 13294 13295 13296 13297 13298 13299 13300 13301 13302 13303 13304 13305 13306 13307 13308 13309 13310 13311 13312 13313 13314 13315 13316 13317 13318 13319 13320 13321 13322 13323 13324 13325 13326 13327 13328 13329 13330 13331 13332 13333 13334 13335 13336 13337 13338 13339 13340 13341 13342 13343 13344 13345 13346 13347 13348 13349 13350 13351 13352 13353 13354 13355 13356 13357 13358 13359 13360 13361 13362 13363 13364 13365 13366 13367 13368 13369 13370 13371 13372 13373 13374 13375 13376 13377 13378 13379 13380 13381 13382 13383 13384 13385 13386 13387 13388 13389 13390 13391 13392 13393 13394 13395 13396 13397 13398 13399 13400 13401 13402 13403 13404 13405 13406 13407 13408 13409 13410 13411 13412 13413 13414 13415 13416 13417 13418 13419 13420 13421 13422 13423 13424 13425 13426 13427 13428 13429 13430 13431 13432 13433 13434 13435 13436 13437 13438 13439 13440 13441 13442 13443 13444 13445 13446 13447 13448 13449 13450 13451 13452 13453 13454 13455 13456 13457 13458 13459 13460 13461 13462 13463 13464 13465 13466 13467 13468 13469 13470 13471 13472 13473 13474 13475 13476 13477 13478 13479 13480 13481 13482 13483 13484 13485 13486 13487 13488 13489 13490 13491 13492 13493 13494 13495 13496 13497 13498 13499 13500 13501 13502 13503 13504 13505 13506 13507 13508 13509 13510 13511 13512 13513 13514 13515 13516 13517 13518 13519 13520 13521 13522 13523 13524 13525 13526 13527 13528 13529 13530 13531 13532 13533 13534 13535 13536 13537 13538 13539 13540 13541 13542 13543 13544 13545 13546 13547 13548 13549 13550 13551 13552 13553 13554 13555 13556 13557 13558 13559 13560 13561 13562 13563 13564 13565 13566 13567 13568 13569 13570 13571 13572 13573 13574 13575 13576 13577 13578 13579 13580 13581 13582 13583 13584 13585 13586 13587 13588 13589 13590 13591 13592 13593 13594 13595 13596 13597 13598 13599 13600 13601 13602 13603 13604 13605 13606 13607 13608 13609 13610 13611 13612 13613 13614 13615 13616 13617 13618 13619 13620 13621 13622 13623 13624 13625 13626 13627 13628 13629 13630 13631 13632 13633 13634 13635 13636 13637 13638 13639 13640 13641 13642 13643 13644 13645 13646 13647 13648 13649 13650 13651 13652 13653 13654 13655 13656 13657 13658 13659 13660 13661 13662 13663 13664 13665 13666 13667 13668 13669 13670 13671 13672 13673 13674 13675 13676 13677 13678 13679 13680 13681 13682 13683 13684 13685 13686 13687 13688 13689 13690 13691 13692 13693 13694 13695 13696 13697 13698 13699 13700 13701 13702 13703 13704 13705 13706 13707 13708 13709 13710 13711 13712 13713 13714 13715 13716 13717 13718 13719 13720 13721 13722 13723 13724 13725 13726 13727 13728 13729 13730 13731 13732 13733 13734 13735 13736 13737 13738 13739 13740 13741 13742 13743 13744 13745 13746 13747 13748 13749 13750 13751 13752 13753 13754 13755 13756 13757 13758 13759 13760 13761 13762 13763 13764 13765 13766 13767 13768 13769 13770 13771 13772 13773 13774 13775 13776 13777 13778 13779 13780 13781 13782 13783 13784 13785 13786 13787 13788 13789 13790 13791 13792 13793 13794 13795 13796 13797 13798 13799 13800 13801 13802 13803 13804 13805 13806 13807 13808 13809 13810 13811 13812 13813 13814 13815 13816 13817 13818 13819 13820 13821 13822 13823 13824 13825 13826 13827 13828 13829 13830 13831 13832 13833 13834 13835 13836 13837 13838 13839 13840 13841 13842 13843 13844 13845 13846 13847 13848 13849 13850 13851 13852 13853 13854 13855 13856 13857 13858 13859 13860 13861 13862 13863 13864 13865 13866 13867 13868 13869 13870 13871 13872 13873 13874 13875 13876 13877 13878 13879 13880 13881 13882 13883 13884 13885 13886 13887 13888 13889 13890 13891 13892 13893 13894 13895 13896 13897 13898 13899 13900 13901 13902 13903 13904 13905 13906 13907 13908 13909 13910 13911 13912 13913 13914 13915 13916 13917 13918 13919 13920 13921 13922 13923 13924 13925 13926 13927 13928 13929 13930 13931 13932 13933 13934 13935 13936 13937 13938 13939 13940 13941 13942 13943 13944 13945 13946 13947 13948 13949 13950 13951 13952 13953 13954 13955 13956 13957 13958 13959 13960 13961 13962 13963 13964 13965 13966 13967 13968 13969 13970 13971 13972 13973 13974 13975 13976 13977 13978 13979 13980 13981 13982 13983 13984 13985 13986 13987 13988 13989 13990 13991 13992 13993 13994 13995 13996 13997 13998 13999 14000 14001 14002 14003 14004 14005 14006 14007 14008 14009 14010 14011 14012 14013 14014 14015 14016 14017 14018 14019 14020 14021 14022 14023 14024 14025 14026 14027 14028 14029 14030 14031 14032 14033 14034 14035 14036 14037 14038 14039 14040 14041 14042 14043 14044 14045 14046 14047 14048 14049 14050 14051 14052 14053 14054 14055 14056 14057 14058 14059 14060 14061 14062 14063 14064 14065 14066 14067 14068 14069 14070 14071 14072 14073 14074 14075 14076 14077 14078 14079 14080 14081 14082 14083 14084 14085 14086 14087 14088 14089 14090 14091 14092 14093 14094 14095 14096 14097 14098 14099 14100 14101 14102 14103 14104 14105 14106 14107 14108 14109 14110 14111 14112 14113 14114 14115 14116 14117 14118 14119 14120 14121 14122 14123 14124 14125 14126 14127 14128 14129 14130 14131 14132 14133 14134 14135 14136 14137 14138 14139 14140 14141 14142 14143 14144 14145 14146 14147 14148 14149 14150 14151 14152 14153 14154 14155 14156 14157 14158 14159 14160 14161 14162 14163 14164 14165 14166 14167 14168 14169 14170 14171 14172 14173 14174 14175 14176 14177 14178 14179 14180 14181 14182 14183 14184 14185 14186 14187 14188 14189 14190 14191 14192 14193 14194 14195 14196 14197 14198 14199 14200 14201 14202 14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 14230 14231 14232 14233 14234 14235 14236 14237 14238 14239 14240 14241 14242 14243 14244 14245 14246 14247 14248 14249 14250 14251 14252 14253 14254 14255 14256 14257 14258 14259 14260 14261 14262 14263 14264 14265 14266 14267 14268 14269 14270 14271 14272 14273 14274 14275 14276 14277 14278 14279 14280 14281 14282 14283 14284 14285 14286 14287 14288 14289 14290 14291 14292 14293 14294 14295 14296 14297 14298 14299 14300 14301 14302 14303 14304 14305 14306 14307 14308 14309 14310 14311 14312 14313 14314 14315 14316 14317 14318 14319 14320 14321 14322 14323 14324 14325 14326 14327 14328 14329 14330 14331 14332 14333 14334 14335 14336 14337 14338 14339 14340 14341 14342 14343 14344 14345 14346 14347 14348 14349 14350 14351 14352 14353 14354 14355 14356 14357 14358 14359 14360 14361 14362 14363 14364 14365 14366 14367 14368 14369 14370 14371 14372 14373 14374 14375 14376 14377 14378 14379 14380 14381 14382 14383 14384 14385 14386 14387 14388 14389 14390 14391 14392 14393 14394 14395 14396 14397 14398 14399 14400 14401 14402 14403 14404 14405 14406 14407 14408 14409 14410 14411 14412 14413 14414 14415 14416 14417 14418 14419 14420 14421 14422 14423 14424 14425 14426 14427 14428 14429 14430 14431 14432 14433 14434 14435 14436 14437 14438 14439 14440 14441 14442 14443 14444 14445 14446 14447 14448 14449 14450 14451 14452 14453 14454 14455 14456 14457 14458 14459 14460 14461 14462 14463 14464 14465 14466 14467 14468 14469 14470 14471 14472 14473 14474 14475 14476 14477 14478 14479 14480 14481 14482 14483 14484 14485 14486 14487 14488 14489 14490 14491 14492 14493 14494 14495 14496 14497 14498 14499 14500 14501 14502 14503 14504 14505 14506 14507 14508 14509 14510 14511 14512 14513 14514 14515 14516 14517 14518 14519 14520 14521 14522 14523 14524 14525 14526 14527 14528 14529 14530 14531 14532 14533 14534 14535 14536 14537 14538 14539 14540 14541 14542 14543 14544 14545 14546 14547 14548 14549 14550 14551 14552 14553 14554 14555 14556 14557 14558 14559 14560 14561 14562 14563 14564 14565 14566 14567 14568 14569 14570 14571 14572 14573 14574 14575 14576 14577 14578 14579 14580 14581 14582 14583 14584 14585 14586 14587 14588 14589 14590 14591 14592 14593 14594 14595 14596 14597 14598 14599 14600 14601 14602 14603 14604 14605 14606 14607 14608 14609 14610 14611 14612 14613 14614 14615 14616 14617 14618 14619 14620 14621 14622 14623 14624 14625 14626 14627 14628 14629 14630 14631 14632 14633 14634 14635 14636 14637 14638 14639 14640 14641 14642 14643 14644 14645 14646 14647 14648 14649 14650 14651 14652 14653 14654 14655 14656 14657 14658 14659 14660 14661 14662 14663 14664 14665 14666 14667 14668 14669 14670 14671 14672 14673 14674 14675 14676 14677 14678 14679 14680 14681 14682 14683 14684 14685 14686 14687 14688 14689 14690 14691 14692 14693 14694 14695 14696 14697 14698 14699 14700 14701 14702 14703 14704 14705 14706 14707 14708 14709 14710 14711 14712 14713 14714 14715 14716 14717 14718 14719 14720 14721 14722 14723 14724 14725 14726 14727 14728 14729 14730 14731 14732 14733 14734 14735 14736 14737 14738 14739 14740 14741 14742 14743 14744 14745 14746 14747 14748 14749 14750 14751 14752 14753 14754 14755 14756 14757 14758 14759 14760 14761 14762 14763 14764 14765 14766 14767 14768 14769 14770 14771 14772 14773 14774 14775 14776 14777 14778 14779 14780 14781 14782 14783 14784 14785 14786 14787 14788 14789 14790 14791 14792 14793 14794 14795 14796 14797 14798 14799 14800 14801 14802 14803 14804 14805 14806 14807 14808 14809 14810 14811 14812 14813 14814 14815 14816 14817 14818 14819 14820 14821 14822 14823 14824 14825 14826 14827 14828 14829 14830 14831 14832 14833 14834 14835 14836 14837 14838 14839 14840 14841 14842 14843 14844 14845 14846 14847 14848 14849 14850 14851 14852 14853 14854 14855 14856 14857 14858 14859 14860 14861 14862 14863 14864 14865 14866 14867 14868 14869 14870 14871 14872 14873 14874 14875 14876 14877 14878 14879 14880 14881 14882 14883 14884 14885 14886 14887 14888 14889 14890 14891 14892 14893 14894 14895 14896 14897 14898 14899 14900 14901 14902 14903 14904 14905 14906 14907 14908 14909 14910 14911 14912 14913 14914 14915 14916 14917 14918 14919 14920 14921 14922 14923 14924 14925 14926 14927 14928 14929 14930 14931 14932 14933 14934 14935 14936 14937 14938 14939 14940 14941 14942 14943 14944 14945 14946 14947 14948 14949 14950 14951 14952 14953 14954 14955 14956 14957 14958 14959 14960 14961 14962 14963 14964 14965 14966 14967 14968 14969 14970 14971 14972 14973 14974 14975 14976 14977 14978 14979 14980 14981 14982 14983 14984 14985 14986 14987 14988 14989 14990 14991 14992 14993 14994 14995 14996 14997 14998 14999 15000 15001 15002 15003 15004 15005 15006 15007 15008 15009 15010 15011 15012 15013 15014 15015 15016 15017 15018 15019 15020 15021 15022 15023 15024 15025 15026 15027 15028 15029 15030 15031 15032 15033 15034 15035 15036 15037 15038 15039 15040 15041 15042 15043 15044 15045 15046 15047 15048 15049 15050 15051 15052 15053 15054 15055 15056 15057 15058 15059 15060 15061 15062 15063 15064 15065 15066 15067 15068 15069 15070 15071 15072 15073 15074 15075 15076 15077 15078 15079 15080 15081 15082 15083 15084 15085 15086 15087 15088 15089 15090 15091 15092 15093 15094 15095 15096 15097 15098 15099 15100 15101 15102 15103 15104 15105 15106 15107 15108 15109 15110 15111 15112 15113 15114 15115 15116 15117 15118 15119 15120 15121 15122 15123 15124 15125 15126 15127 15128 15129 15130 15131 15132 15133 15134 15135 15136 15137 15138 15139 15140 15141 15142 15143 15144 15145 15146 15147 15148 15149 15150 15151 15152 15153 15154 15155 15156 15157 15158 15159 15160 15161 15162 15163 15164 15165 15166 15167 15168 15169 15170 15171 15172 15173 15174 15175 15176 15177 15178 15179 15180 15181 15182 15183 15184 15185 15186 15187 15188 15189 15190 15191 15192 15193 15194 15195 15196 15197 15198 15199 15200 15201 15202 15203 15204 15205 15206 15207 15208 15209 15210 15211 15212 15213 15214 15215 15216 15217 15218 15219 15220 15221 15222 15223 15224 15225 15226 15227 15228 15229 15230 15231 15232 15233 15234 15235 15236 15237 15238 15239 15240 15241 15242 15243 15244 15245 15246 15247 15248 15249 15250 15251 15252 15253 15254 15255 15256 15257 15258 15259 15260 15261 15262 15263 15264 15265 15266 15267 15268 15269 15270 15271 15272 15273 15274 15275 15276 15277 15278 15279 15280 15281 15282 15283 15284 15285 15286 15287 15288 15289 15290 15291 15292 15293 15294 15295 15296 15297 15298 15299 15300 15301 15302 15303 15304 15305 15306 15307 15308 15309 15310 15311 15312 15313 15314 15315 15316 15317 15318 15319 15320 15321 15322 15323 15324 15325 15326 15327 15328 15329 15330 15331 15332 15333 15334 15335 15336 15337 15338 15339 15340 15341 15342 15343 15344 15345 15346 15347 15348 15349 15350 15351 15352 15353 15354 15355 15356 15357 15358 15359 15360 15361 15362 15363 15364 15365 15366 15367 15368 15369 15370 15371 15372 15373 15374 15375 15376 15377 15378 15379 15380 15381 15382 15383 15384 15385 15386 15387 15388 15389 15390 15391 15392 15393 15394 15395 15396 15397 15398 15399 15400 15401 15402 15403 15404 15405 15406 15407 15408 15409 15410 15411 15412 15413 15414 15415 15416 15417 15418 15419 15420 15421 15422 15423 15424 15425 15426 15427 15428 15429 15430 15431 15432 15433 15434 15435 15436 15437 15438 15439 15440 15441 15442 15443 15444 15445 15446 15447 15448 15449 15450 15451 15452 15453 15454 15455 15456 15457 15458 15459 15460 15461 15462 15463 15464 15465 15466 15467 15468 15469 15470 15471 15472 15473 15474 15475 15476 15477 15478 15479 15480 15481 15482 15483 15484 15485 15486 15487 15488 15489 15490 15491 15492 15493 15494 15495 15496 15497 15498 15499 15500 15501 15502 15503 15504 15505 15506 15507 15508 15509 15510 15511 15512 15513 15514 15515 15516 15517 15518 15519 15520 15521 15522 15523 15524 15525 15526 15527 15528 15529 15530 15531 15532 15533 15534 15535 15536 15537 15538 15539 15540 15541 15542 15543 15544 15545 15546 15547 15548 15549 15550 15551 15552 15553 15554 15555 15556 15557 15558 15559 15560 15561 15562 15563 15564 15565 15566 15567 15568 15569 15570 15571 15572 15573 15574 15575 15576 15577 15578 15579 15580 15581 15582 15583 15584 15585 15586 15587 15588 15589 15590 15591 15592 15593 15594 15595 15596 15597 15598 15599 15600 15601 15602 15603 15604 15605 15606 15607 15608 15609 15610 15611 15612 15613 15614 15615 15616 15617 15618 15619 15620 15621 15622 15623 15624 15625 15626 15627 15628 15629 15630 15631 15632 15633 15634 15635 15636 15637 15638 15639 15640 15641 15642 15643 15644 15645 15646 15647 15648 15649 15650 15651 15652 15653 15654 15655 15656 15657 15658 15659 15660 15661 15662 15663 15664 15665 15666 15667 15668 15669 15670 15671 15672 15673 15674 15675 15676 15677 15678 15679 15680 15681 15682 15683 15684 15685 15686 15687 15688 15689 15690 15691 15692 15693 15694 15695 15696 15697 15698 15699 15700 15701 15702 15703 15704 15705 15706 15707 15708 15709 15710 15711 15712 15713 15714 15715 15716 15717 15718 15719 15720 15721 15722 15723 15724 15725 15726 15727 15728 15729 15730 15731 15732 15733 15734 15735 15736 15737 15738 15739 15740 15741 15742 15743 15744 15745 15746 15747 15748 15749 15750 15751 15752 15753 15754 15755 15756 15757 15758 15759 15760 15761 15762 15763 15764 15765 15766 15767 15768 15769 15770 15771 15772 15773 15774 15775 15776 15777 15778 15779 15780 15781 15782 15783 15784 15785 15786 15787 15788 15789 15790 15791 15792 15793 15794 15795 15796 15797 15798 15799 15800 15801 15802 15803 15804 15805 15806 15807 15808 15809 15810 15811 15812 15813 15814 15815 15816 15817 15818 15819 15820 15821 15822 15823 15824 15825 15826 15827 15828 15829 15830 15831 15832 15833 15834 15835 15836 15837 15838 15839 15840 15841 15842 15843 15844 15845 15846 15847 15848 15849 15850 15851 15852 15853 15854 15855 15856 15857 15858 15859 15860 15861 15862 15863 15864 15865 15866 15867 15868 15869 15870 15871 15872 15873 15874 15875 15876 15877 15878 15879 15880 15881 15882 15883 15884 15885 15886 15887 15888 15889 15890 15891 15892 15893 15894 15895 15896 15897 15898 15899 15900 15901 15902 15903 15904 15905 15906 15907 15908 15909 15910 15911 15912 15913 15914 15915 15916 15917 15918 15919 15920 15921 15922 15923 15924 15925 15926 15927 15928 15929 15930 15931 15932 15933 15934 15935 15936 15937 15938 15939 15940 15941 15942 15943 15944 15945 15946 15947 15948 15949 15950 15951 15952 15953 15954 15955 15956 15957 15958 15959 15960 15961 15962 15963 15964 15965 15966 15967 15968 15969 15970 15971 15972 15973 15974 15975 15976 15977 15978 15979 15980 15981 15982 15983 15984 15985 15986 15987 15988 15989 15990 15991 15992 15993 15994 15995 15996 15997 15998 15999 16000 16001 16002 16003 16004 16005 16006 16007 16008 16009 16010 16011 16012 16013 16014 16015 16016 16017 16018 16019 16020 16021 16022 16023 16024 16025 16026 16027 16028 16029 16030 16031 16032 16033 16034 16035 16036 16037 16038 16039 16040 16041 16042 16043 16044 16045 16046 16047 16048 16049 16050 16051 16052 16053 16054 16055 16056 16057 16058 16059 16060 16061 16062 16063 16064 16065 16066 16067 16068 16069 16070 16071 16072 16073 16074 16075 16076 16077 16078 16079 16080 16081 16082 16083 16084 16085 16086 16087 16088 16089 16090 16091 16092 16093 16094 16095 16096 16097 16098 16099 16100 16101 16102 16103 16104 16105 16106 16107 16108 16109 16110 16111 16112 16113 16114 16115 16116 16117 16118 16119 16120 16121 16122 16123 16124 16125 16126 16127 16128 16129 16130 16131 16132 16133 16134 16135 16136 16137 16138 16139 16140 16141 16142 16143 16144 16145 16146 16147 16148 16149 16150 16151 16152 16153 16154 16155 16156 16157 16158 16159 16160 16161 16162 16163 16164 16165 16166 16167 16168 16169 16170 16171 16172 16173 16174 16175 16176 16177 16178 16179 16180 16181 16182 16183 16184 16185 16186 16187 16188 16189 16190 16191 16192 16193 16194 16195 16196 16197 16198 16199 16200 16201 16202 16203 16204 16205 16206 16207 16208 16209 16210 16211 16212 16213 16214 16215 16216 16217 16218 16219 16220 16221 16222 16223 16224 16225 16226 16227 16228 16229 16230 16231 16232 16233 16234 16235 16236 16237 16238 16239 16240 16241 16242 16243 16244 16245 16246 16247 16248 16249 16250 16251 16252 16253 16254 16255 16256 16257 16258 16259 16260 16261 16262 16263 16264 16265 16266 16267 16268 16269 16270 16271 16272 16273 16274 16275 16276 16277 16278 16279 16280 16281 16282 16283 16284 16285 16286 16287 16288 16289 16290 16291 16292 16293 16294 16295 16296 16297 16298 16299 16300 16301 16302 16303 16304 16305 16306 16307 16308 16309 16310 16311 16312 16313 16314 16315 16316 16317 16318 16319 16320 16321 16322 16323 16324 16325 16326 16327 16328 16329 16330 16331 16332 16333 16334 16335 16336 16337 16338 16339 16340 16341 16342 16343 16344 16345 16346 16347 16348 16349 16350 16351 16352 16353 16354 16355 16356 16357 16358 16359 16360 16361 16362 16363 16364 16365 16366 16367 16368 16369 16370 16371 16372 16373 16374 16375 16376 16377 16378 16379 16380 16381 16382 16383 16384 16385 16386 16387 16388 16389 16390 16391 16392 16393 16394 16395 16396 16397 16398 16399 16400 16401 16402 16403 16404 16405 16406 16407 16408 16409 16410 16411 16412 16413 16414 16415 16416 16417 16418 16419 16420 16421 16422 16423 16424 16425 16426 16427 16428 16429 16430 16431 16432 16433 16434 16435 16436 16437 16438 16439 16440 16441 16442 16443 16444 16445 16446 16447 16448 16449 16450 16451 16452 16453 16454 16455 16456 16457 16458 16459 16460 16461 16462 16463 16464 16465 16466 16467 16468 16469 16470 16471 16472 16473 16474 16475 16476 16477 16478 16479 16480 16481 16482 16483 16484 16485 16486 16487 16488 16489 16490 16491 16492 16493 16494 16495 16496 16497 16498 16499 16500 16501 16502 16503 16504 16505 16506 16507 16508 16509 16510 16511 16512 16513 16514 16515 16516 16517 16518 16519 16520 16521 16522 16523 16524 16525 16526 16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 16558 16559 16560 16561 16562 16563 16564 16565 16566 16567 16568 16569 16570 16571 16572 16573 16574 16575 16576 16577 16578 16579 16580 16581 16582 16583 16584 16585 16586 16587 16588 16589 16590 16591 16592 16593 16594 16595 16596 16597 16598 16599 16600 16601 16602 16603 16604 16605 16606 16607 16608 16609 16610 16611 16612 16613 16614 16615 16616 16617 16618 16619 16620 16621 16622 16623 16624 16625 16626 16627 16628 16629 16630 16631 16632 16633 16634 16635 16636 16637 16638 16639 16640 16641 16642 16643 16644 16645 16646 16647 16648 16649 16650 16651 16652 16653 16654 16655 16656 16657 16658 16659 16660 16661 16662 16663 16664 16665 16666 16667 16668 16669 16670 16671 16672 16673 16674 16675 16676 16677 16678 16679 16680 16681 16682 16683 16684 16685 16686 16687 16688 16689 16690 16691 16692 16693 16694 16695 16696 16697 16698 16699 16700 16701 16702 16703 16704 16705 16706 16707 16708 16709 16710 16711 16712 16713 16714 16715 16716 16717 16718 16719 16720 16721 16722 16723 16724 16725 16726 16727 16728 16729 16730 16731 16732 16733 16734 16735 16736 16737 16738 16739 16740 16741 16742 16743 16744 16745 16746 16747 16748 16749 16750 16751 16752 16753 16754 16755 16756 16757 16758 16759 16760 16761 16762 16763 16764 16765 16766 16767 16768 16769 16770 16771 16772 16773 16774 16775 16776 16777 16778 16779 16780 16781 16782 16783 16784 16785 16786 16787 16788 16789 16790 16791 16792 16793 16794 16795 16796 16797 16798 16799 16800 16801 16802 16803 16804 16805 16806 16807 16808 16809 16810 16811 16812 16813 16814 16815 16816 16817 16818 16819 16820 16821 16822 16823 16824 16825 16826 16827 16828 16829 16830 16831 16832 16833 16834 16835 16836 16837 16838 16839 16840 16841 16842 16843 16844 16845 16846 16847 16848 16849 16850 16851 16852 16853 16854 16855 16856 16857 16858 16859 16860 16861 16862 16863 16864 16865 16866 16867 16868 16869 16870 16871 16872 16873 16874 16875 16876 16877 16878 16879 16880 16881 16882 16883 16884 16885 16886 16887 16888 16889 16890 16891 16892 16893 16894 16895 16896 16897 16898 16899 16900 16901 16902 16903 16904 16905 16906 16907 16908 16909 16910 16911 16912 16913 16914 16915 16916 16917 16918 16919 16920 16921 16922 16923 16924 16925 16926 16927 16928 16929 16930 16931 16932 16933 16934 16935 16936 16937 16938 16939 16940 16941 16942 16943 16944 16945 16946 16947 16948 16949 16950 16951 16952 16953 16954 16955 16956 16957 16958 16959 16960 16961 16962 16963 16964 16965 16966 16967 16968 16969 16970 16971 16972 16973 16974 16975 16976 16977 16978 16979 16980 16981 16982 16983 16984 16985 16986 16987 16988 16989 16990 16991 16992 16993 16994 16995 16996 16997 16998 16999 17000 17001 17002 17003 17004 17005 17006 17007 17008 17009 17010 17011 17012 17013 17014 17015 17016 17017 17018 17019 17020 17021 17022 17023 17024 17025 17026 17027 17028 17029 17030 17031 17032 17033 17034 17035 17036 17037 17038 17039 17040 17041 17042 17043 17044 17045 17046 17047 17048 17049 17050 17051 17052 17053 17054 17055 17056 17057 17058 17059 17060 17061 17062 17063 17064 17065 17066 17067 17068 17069 17070 17071 17072 17073 17074 17075 17076 17077 17078 17079 17080 17081 17082 17083 17084 17085 17086 17087 17088 17089 17090 17091 17092 17093 17094 17095 17096 17097 17098 17099 17100 17101 17102 17103 17104 17105 17106 17107 17108 17109 17110 17111 17112 17113 17114 17115 17116 17117 17118 17119 17120 17121 17122 17123 17124 17125 17126 17127 17128 17129 17130 17131 17132 17133 17134 17135 17136 17137 17138 17139 17140 17141 17142 17143 17144 17145 17146 17147 17148 17149 17150 17151 17152 17153 17154 17155 17156 17157 17158 17159 17160 17161 17162 17163 17164 17165 17166 17167 17168 17169 17170 17171 17172 17173 17174 17175 17176 17177 17178 17179 17180 17181 17182 17183 17184 17185 17186 17187 17188 17189 17190 17191 17192 17193 17194 17195 17196 17197 17198 17199 17200 17201 17202 17203 17204 17205 17206 17207 17208 17209 17210 17211 17212 17213 17214 17215 17216 17217 17218 17219 17220 17221 17222 17223 17224 17225 17226 17227 17228 17229 17230 17231 17232 17233 17234 17235 17236 17237 17238 17239 17240 17241 17242 17243 17244 17245 17246 17247 17248 17249 17250 17251 17252 17253 17254 17255 17256 17257 17258 17259 17260 17261 17262 17263 17264 17265 17266 17267 17268 17269 17270 17271 17272 17273 17274 17275 17276 17277 17278 17279 17280 17281 17282 17283 17284 17285 17286 17287 17288 17289 17290 17291 17292 17293 17294 17295 17296 17297 17298 17299 17300 17301 17302 17303 17304 17305 17306 17307 17308 17309 17310 17311 17312 17313 17314 17315 17316 17317 17318 17319 17320 17321 17322 17323 17324 17325 17326 17327 17328 17329 17330 17331 17332 17333 17334 17335 17336 17337 17338 17339 17340 17341 17342 17343 17344 17345 17346 17347 17348 17349 17350 17351 17352 17353 17354 17355 17356 17357 17358 17359 17360 17361 17362 17363 17364 17365 17366 17367 17368 17369 17370 17371 17372 17373 17374 17375 17376 17377 17378 17379 17380 17381 17382 17383 17384 17385 17386 17387 17388 17389 17390 17391 17392 17393 17394 17395 17396 17397 17398 17399 17400 17401 17402 17403 17404 17405 17406 17407 17408 17409 17410 17411 17412 17413 17414 17415 17416 17417 17418 17419 17420 17421 17422 17423 17424 17425 17426 17427 17428 17429 17430 17431 17432 17433 17434 17435 17436 17437 17438 17439 17440 17441 17442 17443 17444 17445 17446 17447 17448 17449 17450 17451 17452 17453 17454 17455 17456 17457 17458 17459 17460 17461 17462 17463 17464 17465 17466 17467 17468 17469 17470 17471 17472 17473 17474 17475 17476 17477 17478 17479 17480 17481 17482 17483 17484 17485 17486 17487 17488 17489 17490 17491 17492 17493 17494 17495 17496 17497 17498 17499 17500 17501 17502 17503 17504 17505 17506 17507 17508 17509 17510 17511 17512 17513 17514 17515 17516 17517 17518 17519 17520 17521 17522 17523 17524 17525 17526 17527 17528 17529 17530 17531 17532 17533 17534 17535 17536 17537 17538 17539 17540 17541 17542 17543 17544 17545 17546 17547 17548 17549 17550 17551 17552 17553 17554 17555 17556 17557 17558 17559 17560 17561 17562 17563 17564 17565 17566 17567 17568 17569 17570 17571 17572 17573 17574 17575 17576 17577 17578 17579 17580 17581 17582 17583 17584 17585 17586 17587 17588 17589 17590 17591 17592 17593 17594 17595 17596 17597 17598 17599 17600 17601 17602 17603 17604 17605 17606 17607 17608 17609 17610 17611 17612 17613 17614 17615 17616 17617 17618 17619 17620 17621 17622 17623 17624 17625 17626 17627 17628 17629 17630 17631 17632 17633 17634 17635 17636 17637 17638 17639 17640 17641 17642 17643 17644 17645 17646 17647 17648 17649 17650 17651 17652 17653 17654 17655 17656 17657 17658 17659 17660 17661 17662 17663 17664 17665 17666 17667 17668 17669 17670 17671 17672 17673 17674 17675 17676 17677 17678 17679 17680 17681 17682 17683 17684 17685 17686 17687 17688 17689 17690 17691 17692 17693 17694 17695 17696 17697 17698 17699 17700 17701 17702 17703 17704 17705 17706 17707 17708 17709 17710 17711 17712 17713 17714 17715 17716 17717 17718 17719 17720 17721 17722 17723 17724 17725 17726 17727 17728 17729 17730 17731 17732 17733 17734 17735 17736 17737 17738 17739 17740 17741 17742 17743 17744 17745 17746 17747 17748 17749 17750 17751 17752 17753 17754 17755 17756 17757 17758 17759 17760 17761 17762 17763 17764 17765 17766 17767 17768 17769 17770 17771 17772 17773 17774 17775 17776 17777 17778 17779 17780 17781 17782 17783 17784 17785 17786 17787 17788 17789 17790 17791 17792 17793 17794 17795 17796 17797 17798 17799 17800 17801 17802 17803 17804 17805 17806 17807 17808 17809 17810 17811 17812 17813 17814 17815 17816 17817 17818 17819 17820 17821 17822 17823 17824 17825 17826 17827 17828 17829 17830 17831 17832 17833 17834 17835 17836 17837 17838 17839 17840 17841 17842 17843 17844 17845 17846 17847 17848 17849 17850 17851 17852 17853 17854 17855 17856 17857 17858 17859 17860 17861 17862 17863 17864 17865 17866 17867 17868 17869 17870 17871 17872 17873 17874 17875 17876 17877 17878 17879 17880 17881 17882 17883 17884 17885 17886 17887 17888 17889 17890 17891 17892 17893 17894 17895 17896 17897 17898 17899 17900 17901 17902 17903 17904 17905 17906 17907 17908 17909 17910 17911 17912 17913 17914 17915 17916 17917 17918 17919 17920 17921 17922 17923 17924 17925 17926 17927 17928 17929 17930 17931 17932 17933 17934 17935 17936 17937 17938 17939 17940 17941 17942 17943 17944 17945 17946 17947 17948 17949 17950 17951 17952 17953 17954 17955 17956 17957 17958 17959 17960 17961 17962 17963 17964 17965 17966 17967 17968 17969 17970 17971 17972 17973 17974 17975 17976 17977 17978 17979 17980 17981 17982 17983 17984 17985 17986 17987 17988 17989 17990 17991 17992 17993 17994 17995 17996 17997 17998 17999 18000 18001 18002 18003 18004 18005 18006 18007 18008 18009 18010 18011 18012 18013 18014 18015 18016 18017 18018 18019 18020 18021 18022 18023 18024 18025 18026 18027 18028 18029 18030 18031 18032 18033 18034 18035 18036 18037 18038 18039 18040 18041 18042 18043 18044 18045 18046 18047 18048 18049 18050 18051 18052 18053 18054 18055 18056 18057 18058 18059 18060 18061 18062 18063 18064 18065 18066 18067 18068 18069 18070 18071 18072 18073 18074 18075 18076 18077 18078 18079 18080 18081 18082 18083 18084 18085 18086 18087 18088 18089 18090 18091 18092 18093 18094 18095 18096 18097 18098 18099 18100 18101 18102 18103 18104 18105 18106 18107 18108 18109 18110 18111 18112 18113 18114 18115 18116 18117 18118 18119 18120 18121 18122 18123 18124 18125 18126 18127 18128 18129 18130 18131 18132 18133 18134 18135 18136 18137 18138 18139 18140 18141 18142 18143 18144 18145 18146 18147 18148 18149 18150 18151 18152 18153 18154 18155 18156 18157 18158 18159 18160 18161 18162 18163 18164 18165 18166 18167 18168 18169 18170 18171 18172 18173 18174 18175 18176 18177 18178 18179 18180 18181 18182 18183 18184 18185 18186 18187 18188 18189 18190 18191 18192 18193 18194 18195 18196 18197 18198 18199 18200 18201 18202 18203 18204 18205 18206 18207 18208 18209 18210 18211 18212 18213 18214 18215 18216 18217 18218 18219 18220 18221 18222 18223 18224 18225 18226 18227 18228 18229 18230 18231 18232 18233 18234 18235 18236 18237 18238 18239 18240 18241 18242 18243 18244 18245 18246 18247 18248 18249 18250 18251 18252 18253 18254 18255 18256 18257 18258 18259 18260 18261 18262 18263 18264 18265 18266 18267 18268 18269 18270 18271 18272 18273 18274 18275 18276 18277 18278 18279 18280 18281 18282 18283 18284 18285 18286 18287 18288 18289 18290 18291 18292 18293 18294 18295 18296 18297 18298 18299 18300 18301 18302 18303 18304 18305 18306 18307 18308 18309 18310 18311 18312 18313 18314 18315 18316 18317 18318 18319 18320 18321 18322 18323 18324 18325 18326 18327 18328 18329 18330 18331 18332 18333 18334 18335 18336 18337 18338 18339 18340 18341 18342 18343 18344 18345 18346 18347 18348 18349 18350 18351 18352 18353 18354 18355 18356 18357 18358 18359 18360 18361 18362 18363 18364 18365 18366 18367 18368 18369 18370 18371 18372 18373 18374 18375 18376 18377 18378 18379 18380 18381 18382 18383 18384 18385 18386 18387 18388 18389 18390 18391 18392 18393 18394 18395 18396 18397 18398 18399 18400 18401 18402 18403 18404 18405 18406 18407 18408 18409 18410 18411 18412 18413 18414 18415 18416 18417 18418 18419 18420 18421 18422 18423 18424 18425 18426 18427 18428 18429 18430 18431 18432 18433 18434 18435 18436 18437 18438 18439 18440 18441 18442 18443 18444 18445 18446 18447 18448 18449 18450 18451 18452 18453 18454 18455 18456 18457 18458 18459 18460 18461 18462 18463 18464 18465 18466 18467 18468 18469 18470 18471 18472 18473 18474 18475 18476 18477 18478 18479 18480 18481 18482 18483 18484 18485 18486 18487 18488 18489 18490 18491 18492 18493 18494 18495 18496 18497 18498 18499 18500 18501 18502 18503 18504 18505 18506 18507 18508 18509 18510 18511 18512 18513 18514 18515 18516 18517 18518 18519 18520 18521 18522 18523 18524 18525 18526 18527 18528 18529 18530 18531 18532 18533 18534 18535 18536 18537 18538 18539 18540 18541 18542 18543 18544 18545 18546 18547 18548 18549 18550 18551 18552 18553 18554 18555 18556 18557 18558 18559 18560 18561 18562 18563 18564 18565 18566 18567 18568 18569 18570 18571 18572 18573 18574 18575 18576 18577 18578 18579 18580 18581 18582 18583 18584 18585 18586 18587 18588 18589 18590 18591 18592 18593 18594 18595 18596 18597 18598 18599 18600 18601 18602 18603 18604 18605 18606 18607 18608 18609 18610 18611 18612 18613 18614 18615 18616 18617 18618 18619 18620 18621 18622 18623 18624 18625 18626 18627 18628 18629 18630 18631 18632 18633 18634 18635 18636 18637 18638 18639 18640 18641 18642 18643 18644 18645 18646 18647 18648 18649 18650 18651 18652 18653 18654 18655 18656 18657 18658 18659 18660 18661 18662 18663 18664 18665 18666 18667 18668 18669 18670 18671 18672 18673 18674 18675 18676 18677 18678 18679 18680 18681 18682 18683 18684 18685 18686 18687 18688 18689 18690 18691 18692 18693 18694 18695 18696 18697 18698 18699 18700 18701 18702 18703 18704 18705 18706 18707 18708 18709 18710 18711 18712 18713 18714 18715 18716 18717 18718 18719 18720 18721 18722 18723 18724 18725 18726 18727 18728 18729 18730 18731 18732 18733 18734 18735 18736 18737 18738 18739 18740 18741 18742 18743 18744 18745 18746 18747 18748 18749 18750 18751 18752 18753 18754 18755 18756 18757 18758 18759 18760 18761 18762 18763 18764 18765 18766 18767 18768 18769 18770 18771 18772 18773 18774 18775 18776 18777 18778 18779 18780 18781 18782 18783 18784 18785 18786 18787 18788 18789 18790 18791 18792 18793 18794 18795 18796 18797 18798 18799 18800 18801 18802 18803 18804 18805 18806 18807 18808 18809 18810 18811 18812 18813 18814 18815 18816 18817 18818 18819 18820 18821 18822 18823 18824 18825 18826 18827 18828 18829 18830 18831 18832 18833 18834 18835 18836 18837 18838 18839 18840 18841 18842 18843 18844 18845 18846 18847 18848 18849 18850 18851 18852 18853 18854 18855 18856 18857 18858 18859 18860 18861 18862 18863 18864 18865 18866 18867 18868 18869 18870 18871 18872 18873 18874 18875 18876 18877 18878 18879 18880 18881 18882 18883 18884 18885 18886 18887 18888 18889 18890 18891 18892 18893 18894 18895 18896 18897 18898 18899 18900 18901 18902 18903 18904 18905 18906 18907 18908 18909 18910 18911 18912 18913 18914 18915 18916 18917 18918 18919 18920 18921 18922 18923 18924 18925 18926 18927 18928 18929 18930 18931 18932 18933 18934 18935 18936 18937 18938 18939 18940 18941 18942 18943 18944 18945 18946 18947 18948 18949 18950 18951 18952 18953 18954 18955 18956 18957 18958 18959 18960 18961 18962 18963 18964 18965 18966 18967 18968 18969 18970 18971 18972 18973 18974 18975 18976 18977 18978 18979 18980 18981 18982 18983 18984 18985 18986 18987 18988 18989 18990 18991 18992 18993 18994 18995 18996 18997 18998 18999 19000 19001 19002 19003 19004 19005 19006 19007 19008 19009 19010 19011 19012 19013 19014 19015 19016 19017 19018 19019 19020 19021 19022 19023 19024 19025 19026 19027 19028 19029 19030 19031 19032 19033 19034 19035 19036 19037 19038 19039 19040 19041 19042 19043 19044 19045 19046 19047 19048 19049 19050 19051 19052 19053 19054 19055 19056 19057 19058 19059 19060 19061 19062 19063 19064 19065 19066 19067 19068 19069 19070 19071 19072 19073 19074 19075 19076 19077 19078 19079 19080 19081 19082 19083 19084 19085 19086 19087 19088 19089 19090 19091 19092 19093 19094 19095 19096 19097 19098 19099 19100 19101 19102 19103 19104 19105 19106 19107 19108 19109 19110 19111 19112 19113 19114 19115 19116 19117 19118 19119 19120 19121 19122 19123 19124 19125 19126 19127 19128 19129 19130 19131 19132 19133 19134 19135 19136 19137 19138 19139 19140 19141 19142 19143 19144 19145 19146 19147 19148 19149 19150 19151 19152 19153 19154 19155 19156 19157 19158 19159 19160 19161 19162 19163 19164 19165 19166 19167 19168 19169 19170 19171 19172 19173 19174 19175 19176 19177 19178 19179 19180 19181 19182 19183 19184 19185 19186 19187 19188 19189 19190 19191 19192 19193 19194 19195 19196 19197 19198 19199 19200 19201 19202 19203 19204 19205 19206 19207 19208 19209 19210 19211 19212 19213 19214 19215 19216 19217 19218 19219 19220 19221 19222 19223 19224 19225 19226 19227 19228 19229 19230 19231 19232 19233 19234 19235 19236 19237 19238 19239 19240 19241 19242 19243 19244 19245 19246 19247 19248 19249 19250 19251 19252 19253 19254 19255 19256 19257 19258 19259 19260 19261 19262 19263 19264 19265 19266 19267 19268 19269 19270 19271 19272 19273 19274 19275 19276 19277 19278 19279 19280 19281 19282 19283 19284 19285 19286 19287 19288 19289 19290 19291 19292 19293 19294 19295 19296 19297 19298 19299 19300 19301 19302 19303 19304 19305 19306 19307 19308 19309 19310 19311 19312 19313 19314 19315 19316 19317 19318 19319 19320 19321 19322 19323 19324 19325 19326 19327 19328 19329 19330 19331 19332 19333 19334 19335 19336 19337 19338 19339 19340 19341 19342 19343 19344 19345 19346 19347 19348 19349 19350 19351 19352 19353 19354 19355 19356 19357 19358 19359 19360 19361 19362 19363 19364 19365 19366 19367 19368 19369 19370 19371 19372 19373 19374 19375 19376 19377 19378 19379 19380 19381 19382 19383 19384 19385 19386 19387 19388 19389 19390 19391 19392 19393 19394 19395 19396 19397 19398 19399 19400 19401 19402 19403 19404 19405 19406 19407 19408 19409 19410 19411 19412 19413 19414 19415 19416 19417 19418 19419 19420 19421 19422 19423 19424 19425 19426 19427 19428 19429 19430 19431 19432 19433 19434 19435 19436 19437 19438 19439 19440 19441 19442 19443 19444 19445 19446 19447 19448 19449 19450 19451 19452 19453 19454 19455 19456 19457 19458 19459 19460 19461 19462 19463 19464 19465 19466 19467 19468 19469 19470 19471 19472 19473 19474 19475 19476 19477 19478 19479 19480 19481 19482 19483 19484 19485 19486 19487 19488 19489 19490 19491 19492 19493 19494 19495 19496 19497 19498 19499 19500 19501 19502 19503 19504 19505 19506 19507 19508 19509 19510 19511 19512 19513 19514 19515 19516 19517 19518 19519 19520 19521 19522 19523 19524 19525 19526 19527 19528 19529 19530 19531 19532 19533 19534 19535 19536 19537 19538 19539 19540 19541 19542 19543 19544 19545 19546 19547 19548 19549 19550 19551 19552 19553 19554 19555 19556 19557 19558 19559 19560 19561 19562 19563 19564 19565 19566 19567 19568 19569 19570 19571 19572 19573 19574 19575 19576 19577 19578 19579 19580 19581 19582 19583 19584 19585 19586 19587 19588 19589 19590 19591 19592 19593 19594 19595 19596 19597 19598 19599 19600 19601 19602 19603 19604 19605 19606 19607 19608 19609 19610 19611 19612 19613 19614 19615 19616 19617 19618 19619 19620 19621 19622 19623 19624 19625 19626 19627 19628 19629 19630 19631 19632 19633 19634 19635 19636 19637 19638 19639 19640 19641 19642 19643 19644 19645 19646 19647 19648 19649 19650 19651 19652 19653 19654 19655 19656 19657 19658 19659 19660 19661 19662 19663 19664 19665 19666 19667 19668 19669 19670 19671 19672 19673 19674 19675 19676 19677 19678 19679 19680 19681 19682 19683 19684 19685 19686 19687 19688 19689 19690 19691 19692 19693 19694 19695 19696 19697 19698 19699 19700 19701 19702 19703 19704 19705 19706 19707 19708 19709 19710 19711 19712 19713 19714 19715 19716 19717 19718 19719 19720 19721 19722 19723 19724 19725 19726 19727 19728 19729 19730 19731 19732 19733 19734 19735 19736 19737 19738 19739 19740 19741 19742 19743 19744 19745 19746 19747 19748 19749 19750 19751 19752 19753 19754 19755 19756 19757 19758 19759 19760 19761 19762 19763 19764 19765 19766 19767 19768 19769 19770 19771 19772 19773 19774 19775 19776 19777 19778 19779 19780 19781 19782 19783 19784 19785 19786 19787 19788 19789 19790 19791 19792 19793 19794 19795 19796 19797 19798 19799 19800 19801 19802 19803 19804 19805 19806 19807 19808 19809 19810 19811 19812 19813 19814 19815 19816 19817 19818 19819 19820 19821 19822 19823 19824 19825 19826 19827 19828 19829 19830 19831 19840 19841 19842 19843 19844 19845 19846 19847 19848 19849 19850 19851 19852 19853 19854 19855 19856 19857 19858 19859 19860 19861 19862 19863 19864 19865 19866 19867 19868 19869 19870 19871 19872 19873 19874 19875 19876 19877 19878 19879 19880 19881 19882 19883 19884 19885 19886 19887 19888 19889 19890 19891 19892 19893 19894 19895 19896 19897 19898 19899 19900 19901 19902 19903 19904 19905 19906 19907 19908 19909 19910 19911 19912 19913 19914 19915 19916 19917 19918 19919 19920 19921 19922 19923 19924 19925 19926 19927 19928 19929 19930 19931 19932 19933 19934 19935 19936 19937 19938 19939 19940 19941 19942 19943 19944 19945 19946 19947 19948 19949 19950 19951 19952 19953 19954 19955 19956 19957 19958 19959 19960 19961 19962 19963 19964 19965 19966 19967 19968 19969 19970 19971 19972 19973 19974 19975 19976 19977 19978 19979 19980 19981 19982 19983 19984 19985 19986 19987 19988 19989 19990 19991 19992 19993 19994 19995 19996 19997 19998 19999 20000 20001 20002 20003 20004 20005 20006 20007 20008 20009 20010 20011 20012 20013 20014 20015 20016 20017 20018 20019 20020 20021 20022 20023 20024 20025 20026 20027 20028 20029 20030 20031 20032 20033 20034 20035 20036 20037 20038 20039 20040 20041 20042 20043 20044 20045 20046 20047 20048 20049 20050 20051 20052 20053 20054 20055 20056 20057 20058 20059 20060 20061 20062 20063 20064 20065 20066 20067 20068 20069 20070 20071 20072 20073 20074 20075 20076 20077 20078 20079 20080 20081 20082 20083 20084 20085 20086 20087 20088 20089 20090 20091 20092 20093 20094 20095 20096 20097 20098 20099 20100 20101 20102 20103 20104 20105 20106 20107 20108 20109 20110 20111 20112 20113 20114 20115 20116 20117 20118 20119 20120 20121 20122 20123 20124 20125 20126 20127 20128 20129 20130 20131 20132 20133 20134 20135 20136 20137 20138 20139 20140 20141 20142 20143 20144 20145 20146 20147 20148 20149 20150 20151 20152 20153 20154 20155 20156 20157 20158 20159 20160 20161 20162 20163 20164 20165 20166 20167 20168 20169 20170 20171 20172 20173 20174 20175 20176 20177 20178 20179 20180 20181 20182 20183 20184 20185 20186 20187 20188 20189 20190 20191 20192 20193 20194 20195 20196 20197 20198 20199 20200 20201 20202 20203 20204 20205 20206 20207 20208 20209 20210 20211 20212 20213 20214 20215 20216 20217 20218 20219 20220 20221 20222 20223 20224 20225 20226 20227 20228 20229 20230 20231 20232 20233 20234 20235 20236 20237 20238 20239 20240 20241 20242 20243 20244 20245 20246 20247 20248 20249 20250 20251 20252 20253 20254 20255 20256 20257 20258 20259 20260 20261 20262 20263 20264 20265 20266 20267 20268 20269 20270 20271 20272 20273 20274 20275 20276 20277 20278 20279 20280 20281 20282 20283 20284 20285 20286 20287 20288 20289 20290 20291 20292 20293 20294 20295 20296 20297 20298 20299 20300 20301 20302 20303 20304 20305 20306 20307 20308 20309 20310 20311 20312 20313 20314 20315 20316 20317 20318 20319 20320 20321 20322 20323 20324 20325 20326 20327 20328 20329 20330 20331 20332 20333 20334 20335 20336 20337 20338 20339 20340 20341 20342 20343 20344 20345 20346 20347 20348 20349 20350 20351 20352 20353 20354 20355 20356 20357 20358 20359 20360 20361 20362 20363 20364 20365 20366 20367 20368 20369 20370 20371 20372 20373 20374 20375 20376 20377 20378 20379 20380 20381 20382 20383 20384 20385 20386 20387 20388 20389 20390 20391 20392 20393 20394 20395 20396 20397 20398 20399 20400 20401 20402 20403 20404 20405 20406 20407 20408 20409 20410 20411 20412 20413 20414 20415 20416 20417 20418 20419 20420 20421 20422 20423 20424 20425 20426 20427 20428 20429 20430 20431 20432 20433 20434 20435 20436 20437 20438 20439 20440 20441 20442 20443 20444 20445 20446 20447 20448 20449 20450 20451 20452 20453 20454 20455 20456 20457 20458 20459 20460 20461 20462 20463 20464 20465 20466 20467 20468 20469 20470 20471 20472 20473 20474 20475 20476 20477 20478 20479 20480 20481 20482 20483 20484 20485 20486 20487 20488 20489 20490 20491 20492 20493 20494 20495 20496 20497 20498 20499 20500 20501 20502 20503 20504 20505 20506 20507 20508 20509 20510 20511 20512 20513 20514 20515 20516 20517 20518 20519 20520 20521 20522 20523 20524 20525 20526 20527 20528 20529 20530 20531 20532 20533 20534 20535 20536 20537 20538 20539 20540 20541 20542 20543 20544 20545 20546 20547 20548 20549 20550 20551 20552 20553 20554 20555 20556 20557 20558 20559 20560 20561 20562 20563 20564 20565 20566 20567 20568 20569 20570 20571 20572 20573 20574 20575 20576 20577 20578 20579 20580 20581 20582 20583 20584 20585 20586 20587 20588 20589 20590 20591 20592 20593 20594 20595 20596 20597 20598 20599 20600 20601 20602 20603 20604 20605 20606 20607 20608 20609 20610 20611 20612 20613 20614 20615 20616 20617 20618 20619 20620 20621 20622 20623 20624 20625 20626 20627 20628 20629 20630 20631 20632 20633 20634 20635 20636 20637 20638 20639 20640 20641 20642 20643 20644 20645 20646 20647 20648 20649 20650 20651 20652 20653 20654 20655 20656 20657 20658 20659 20660 20661 20662 20663 20664 20665 20666 20667 20668 20669 20670 20671 20672 20673 20674 20675 20676 20677 20678 20679 20680 20681 20682 20683 20684 20685 20686 20687 20688 20689 20690 20691 20692 20693 20694 20695 20696 20697 20698 20699 20700 20701 20702 20703 20704 20705 20706 20707 20708 20709 20710 20711 20712 20713 20714 20715 20716 20717 20718 20719 20720 20721 20722 20723 20724 20725 20726 20727 20728 20729 20730 20731 20732 20733 20734 20735 20736 20737 20738 20739 20740 20741 20742 20743 20744 20745 20746 20747 20748 20749 20750 20751 20752 20753 20754 20755 20756 20757 20758 20759 20760 20761 20762 20763 20764 20765 20766 20767 20768 20769 20770 20771 20772 20773 20774 20775 20776 20777 20778 20779 20780 20781 20782 20783 20784 20785 20786 20787 20788 20789 20790 20791 20792 20793 20794 20795 20796 20797 20798 20799 20800 20801 20802 20803 20804 20805 20806 20807 20808 20809 20810 20811 20812 20813 20814 20815 20816 20817 20818 20819 20820 20821 20822 20823 20824 20825 20826 20827 20828 20829 20830 20831 20832 20833 20834 20835 20836 20837 20838 20839 20840 20841 20842 20843 20844 20845 20846 20847 20848 20849 20850 20851 20852 20853 20854 20855 20856 20857 20858 20859 20860 20861 20862 20863 20864 20865 20866 20867 20868 20869 20870 20871 20872 20873 20874 20875 20876 20877 20878 20879 20880 20881 20882 20883 20884 20885 20886 20887 20888 20889 20890 20891 20892 20893 20894 20895 20896 20897 20898 20899 20900 20901 20902 20903 20904 20905 20906 20907 20908 20909 20910 20911 20912 20913 20914 20915 20916 20917 20918 20919 20920 20921 20922 20923 20924 20925 20926 20927 20928 20929 20930 20931 20932 20933 20934 20935 20936 20937 20938 20939 20940 20941 20942 20943 20944 20945 20946 20947 20948 20949 20950 20951 20952 20953 20954 20955 20956 20957 20958 20959 20960 20961 20962 20963 20964 20965 20966 20967 20968 20969 20970 20971 20972 20973 20974 20975 20976 20977 20978 20979 20980 20981 20982 20983 20984 20985 20986 20987 20988 20989 20990 20991 20992 20993 20994 20995 20996 20997 20998 20999 21000 21001 21002 21003 21004 21005 21006 21007 21008 21009 21010 21011 21012 21013 21014 21015 21016 21017 21018 21019 21020 21021 21022 21023 21024 21025 21026 21027 21028 21029 21030 21031 21032 21033 21034 21035 21036 21037 21038 21039 21040 21041 21042 21043 21044 21045 21046 21047 21048 21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 21089 21090 21091 21092 21093 21094 21095 21096 21097 21098 21099 21100 21101 21102 21103 21104 21105 21106 21107 21108 21109 21110 21111 21112 21113 21114 21115 21116 21117 21118 21119 21120 21121 21122 21123 21124 21125 21126 21127 21128 21129 21130 21131 21132 21133 21134 21135 21136 21137 21138 21139 21140 21141 21142 21143 21144 21145 21146 21147 21148 21149 21150 21151 21152 21153 21154 21155 21156 21157 21158 21159 21160 21161 21162 21163 21164 21165 21166 21167 21168 21169 21170 21171 21172 21173 21174 21175 21176 21177 21178 21179 21180 21181 21182 21183 21184 21185 21186 21187 21188 21189 21190 21191 21192 21193 21194 21195 21196 21197 21198 21199 21200 21201 21202 21203 21204 21205 21206 21207 21208 21209 21210 21211 21212 21213 21214 21215 21216 21217 21218 21219 21220 21221 21222 21223 21224 21225 21226 21227 21228 21229 21230 21231 21232 21233 21234 21235 21236 21237 21238 21239 21240 21241 21242 21243 21244 21245 21246 21247 21248 21249 21250 21251 21252 21253 21254 21255 21256 21257 21258 21259 21260 21261 21262 21263 21264 21265 21266 21267 21268 21269 21270 21271 21272 21273 21274 21275 21276 21277 21278 21279 21280 21281 21282 21283 21284 21285 21286 21287 21288 21289 21290 21291 21292 21293 21294 21295 21296 21297 21298 21299 21300 21301 21302 21303 21304 21305 21306 21307 21308 21309 21310 21311 21312 21313 21314 21315 21316 21317 21318 21319 21320 21321 21322 21323 21324 21325 21326 21327 21328 21329 21330 21331 21332 21333 21334 21335 21336 21337 21338 21339 21340 21341 21342 21343 21344 21345 21346 21347 21348 21349 21350 21351 21352 21353 21354 21355 21356 21357 21358 21359 21360 21361 21362 21363 21364 21365 21366 21367 21368 21369 21370 21371 21372 21373 21374 21375 21376 21377 21378 21379 21380 21381 21382 21383 21384 21385 21386 21387 21388 21389 21390 21391 21392 21393 21394 21395 21396 21397 21398 21399 21400 21401 21402 21403 21404 21405 21406 21407 21408 21409 21410 21411 21412 21413 21414 21415 21416 21417 21418 21419 21420 21421 21422 21423 21424 21425 21426 21427 21432 21433 21434 21435 21436 21437 21438 21439 21440 21441 21442 21443 21444 21445 21446 21447 21448 21449 21450 21451 21452 21453 21454 21455 21456 21457 21458 21459 21460 21461 21462 21463 21464 21465 21466 21467 21468 21469 21470 21471 21472 21473 21474 21475 21476 21477 21478 21479 21480 21481 21482 21483 21484 21485 21486 21487 21488 21489 21490 21491 21492 21493 21494 21495 21496 21497 21498 21499 21500 21501 21502 21503 21504 21505 21506 21507 21508 21509 21510 21511 21512 21513 21514 21515 21516 21517 21518 21519 21520 21521 21522 21523 21524 21525 21526 21527 21528 21529 21530 21531 21532 21533 21534 21535 21536 21537 21538 21539 21540 21541 21542 21543 21544 21545 21546 21547 21548 21549 21550 21551 21552 21553 21554 21555 21556 21557 21558 21559 21560 21561 21562 21563 21564 21565 21566 21567 21568 21569 21570 21571 21572 21573 21574 21575 21576 21577 21578 21579 21580 21581 21582 21583 21584 21585 21586 21587 21588 21589 21590 21591 21592 21593 21594 21595 21596 21597 21598 21599 21600 21601 21602 21603 21604 21605 21606 21607 21608 21609 21610 21611 21612 21613 21614 21615 21616 21617 21618 21619 21620 21621 21622 21623 21624 21625 21626 21627 21628 21629 21630 21631 21632 21633 21634 21635 21636 21637 21638 21639 21640 21641 21642 21643 21644 21645 21646 21647 21648 21649 21650 21651 21652 21653 21654 21655 21656 21657 21658 21659 21660 21661 21662 21663 21664 21665 21666 21667 21668 21669 21670 21671 21672 21673 21674 21675 21676 21677 21678 21679 21680 21681 21682 21683 21684 21685 21686 21687 21688 21689 21690 21691 21692 21693 21694 21695 21696 21697 21698 21699 21700 21701 21702 21703 21704 21705 21706 21707 21708 21709 21710 21711 21712 21713 21714 21715 21716 21717 21718 21719 21720 21721 21722 21723 21724 21725 21726 21727 21728 21729 21730 21731 21732 21733 21734 21735 21736 21737 21738 21739 21740 21741 21742 21743 21744 21745 21746 21747 21748 21749 21750 21751 21752 21753 21754 21755 21756 21757 21758 21759 21760 21761 21762 21763 21764 21765 21766 21767 21768 21769 21770 21771 21772 21773 21774 21775 21776 21777 21778 21779 21780 21781 21782 21783 21784 21785 21786 21787 21788 21789 21790 21791 21792 21793 21794 21795 21796 21797 21798 21799 21800 21801 21802 21803 21804 21805 21806 21807 21808 21809 21810 21811 21812 21813 21814 21815 21816 21817 21818 21819 21820 21821 21822 21823 21824 21825 21826 21827 21828 21829 21830 21831 21832 21833 21834 21835 21836 21837 21838 21839 21840 21841 21842 21843 21844 21845 21846 21847 21848 21849 21850 21851 21852 21853 21854 21855 21856 21857 21858 21859 21860 21861 21862 21863 21864 21865 21866 21867 21868 21869 21870 21871 21872 21873 21874 21875 21876 21877 21878 21879 21880 21881 21882 21883 21884 21885 21886 21887 21888 21889 21890 21891 21892 21893 21894 21895 21896 21897 21898 21899 21900 21901 21902 21903 21904 21905 21906 21907 21908 21909 21910 21911 21912 21913 21914 21915 21916 21917 21918 21919 21920 21921 21922 21923 21924 21925 21926 21927 21928 21929 21930 21931 21932 21933 21934 21935 21936 21937 21938 21939 21940 21941 21942 21943 21944 21945 21946 21947 21948 21949 21950 21951 21952 21953 21954 21955 21956 21957 21958 21959 21960 21961 21962 21963 21964 21965 21966 21967 21968 21969 21970 21971 21972 21973 21974 21975 21976 21977 21978 21979 21980 21981 21982 21983 21984 21985 21986 21987 21988 21989 21990 21991 21992 21993 21994 21995 21996 21997 21998 21999 22000 22001 22002 22003 22004 22005 22006 22007 22008 22009 22010 22011 22012 22013 22014 22015 22016 22017 22018 22019 22020 22021 22022 22023 22024 22025 22026 22027 22028 22029 22030 22031 22032 22033 22034 22035 22036 22037 22038 22039 22040 22041 22042 22043 22044 22045 22046 22047 22048 22049 22050 22051 22052 22053 22054 22055 22056 22057 22058 22059 22060 22061 22062 22063 22064 22065 22066 22067 22068 22069 22070 22071 22072 22073 22074 22075 22076 22077 22078 22079 22080 22081 22082 22083 22084 22085 22086 22087 22088 22089 22090 22091 22092 22093 22094 22095 22096 22097 22098 22099 22100 22101 22102 22103 22104 22105 22106 22107 22108 22109 22110 22111 22112 22113 22114 22115 22116 22117 22118 22119 22120 22121 22122 22123 22124 22125 22126 22127 22128 22129 22130 22131 22132 22133 22134 22135 22136 22137 22138 22139 22140 22141 22142 22143 22144 22145 22146 22147 22148 22149 22150 22151 22152 22153 22154 22155 22156 22157 22158 22159 22160 22161 22162 22163 22164 22165 22166 22167 22168 22169 22170 22171 22172 22173 22174 22175 22176 22177 22178 22179 22180 22181 22182 22183 22184 22185 22186 22187 22188 22189 22190 22191 22192 22193 22194 22195 22196 22197 22198 22199 22200 22201 22202 22203 22204 22205 22206 22207 22208 22209 22210 22211 22212 22213 22214 22215 22216 22217 22218 22219 22220 22221 22222 22223 22224 22225 22226 22227 22228 22229 22230 22231 22232 22233 22234 22235 22236 22237 22238 22239 22240 22241 22242 22243 22244 22245 22246 22247 22248 22249 22250 22251 22252 22253 22254 22255 22256 22257 22258 22259 22260 22261 22262 22263 22264 22265 22266 22267 22268 22269 22270 22271 22272 22273 22274 22275 22276 22277 22278 22279 22280 22281 22282 22283 22284 22285 22286 22287 22288 22289 22290 22291 22292 22293 22294 22295 22296 22297 22298 22299 22300 22301 22302 22303 22304 22305 22306 22307 22308 22309 22310 22311 22312 22313 22314 22315 22316 22317 22318 22319 22320 22321 22322 22323 22324 22325 22326 22327 22328 22329 22330 22331 22332 22333 22334 22335 22336 22337 22338 22339 22340 22341 22342 22343 22344 22345 22346 22347 22348 22349 22350 22351 22352 22353 22354 22355 22356 22357 22358 22359 22360 22361 22362 22363 22364 22365 22366 22367 22368 22369 22370 22371 22372 22373 22374 22375 22376 22377 22378 22379 22380 22381 22382 22383 22384 22385 22386 22387 22388 22389 22390 22391 22392 22393 22394 22395 22396 22397 22398 22399 22400 22401 22402 22403 22404 22405 22406 22407 22408 22409 22410 22411 22412 22413 22414 22415 22416 22417 22418 22419 22420 22421 22422 22423 22424 22425 22426 22427 22428 22429 22430 22431 22432 22433 22434 22435 22436 22437 22438 22439 22440 22441 22442 22443 22444 22445 22446 22447 22448 22449 22450 22451 22452 22453 22454 22455 22456 22457 22458 22459 22460 22461 22462 22463 22464 22465 22466 22467 22468 22469 22470 22471 22472 22473 22474 22475 22476 22477 22478 22479 22480 22481 22482 22483 22484 22485 22486 22487 22488 22489 22490 22491 22492 22493 22494 22495 22496 22497 22498 22499 22500 22501 22502 22503 22504 22505 22506 22507 22508 22509 22510 22511 22512 22513 22514 22515 22516 22517 22518 22519 22520 22521 22522 22523 22524 22525 22526 22527 22528 22529 22530 22531 22532 22533 22534 22535 22536 22537 22538 22539 22540 22541 22542 22543 22544 22545 22546 22547 22548 22549 22550 22551 22552 22553 22554 22555 22556 22557 22558 22559 22560 22561 22562 22563 22564 22565 22566 22567 22568 22569 22570 22571 22572 22573 22574 22575 22576 22577 22578 22579 22580 22581 22582 22583 22584 22585 22586 22587 22588 22589 22590 22591 22592 22593 22594 22595 22596 22597 22598 22599 22600 22601 22602 22603 22604 22605 22606 22607 22608 22609 22610 22611 22612 22613 22614 22615 22616 22617 22618 22619 22620 22621 22622 22623 22624 22625 22626 22627 22628 22629 22630 22631 22632 22633 22634 22635 22636 22637 22638 22639 22640 22641 22642 22643 22644 22645 22646 22647 22648 22649 22650 22651 22652 22653 22654 22655 22656 22657 22658 22659 22660 22661 22662 22663 22664 22665 22666 22667 22668 22669 22670 22671 22672 22673 22674 22675 22676 22677 22678 22679 22680 22681 22682 22683 22684 22685 22686 22687 22688 22689 22690 22691 22692 22693 22694 22695 22696 22697 22698 22699 22700 22701 22702 22703 22704 22705 22706 22707 22708 22709 22710 22711 22712 22713 22714 22715 22716 22717 22718 22719 22720 22721 22722 22723 22724 22725 22726 22727 22728 22729 22730 22731 22732 22733 22734 22735 22736 22737 22738 22739 22740 22741 22742 22743 22744 22745 22746 22747 22748 22749 22750 22751 22752 22753 22754 22755 22756 22757 22758 22759 22760 22761 22762 22763 22764 22765 22766 22767 22768 22769 22770 22771 22772 22773 22774 22775 22776 22777 22778 22779 22780 22781 22782 22783 22784 22785 22786 22787 22788 22789 22790 22791 22792 22793 22794 22795 22796 22797 22798 22799 22800 22801 22802 22803 22804 22805 22806 22807 22808 22809 22810 22811 22812 22813 22814 22815 22816 22817 22818 22819 22820 22821 22822 22823 22824 22825 22826 22827 22828 22829 22830 22831 22832 22833 22834 22835 22836 22837 22838 22839 22840 22841 22842 22843 22844 22845 22846 22847 22848 22849 22850 22851 22852 22853 22854 22855 22856 22857 22858 22859 22860 22861 22862 22863 22864 22865 22866 22867 22868 22869 22870 22871 22872 22873 22874 22875 22876 22877 22878 22879 22880 22881 22882 22883 22884 22885 22886 22887 22888 22889 22890 22891 22892 22893 22894 22895 22896 22897 22898 22899 22900 22901 22902 22903 22904 22905 22906 22907 22908 22909 22910 22911 22912 22913 22914 22915 22916 22917 22918 22919 22920 22921 22922 22923 22924 22925 22926 22927 22928 22929 22930 22931 22932 22933 22934 22935 22936 22937 22938 22939 22940 22941 22942 22943 22944 22945 22946 22947 22948 22949 22950 22951 22952 22953 22954 22955 22956 22957 22958 22959 22960 22961 22962 22963 22964 22965 22966 22967 22968 22969 22970 22971 22972 22973 22974 22975 22976 22977 22978 22979 22980 22981 22982 22983 22984 22985 22986 22987 22988 22989 22990 22991 22992 22993 22994 22995 22996 22997 22998 22999 23000 23001 23002 23003 23004 23005 23006 23007 23008 23009 23010 23011 23012 23013 23014 23015 23016 23017 23018 23019 23020 23021 23022 23023 23024 23025 23026 23027 23028 23029 23030 23031 23032 23033 23034 23035 23036 23037 23038 23039 23040 23041 23042 23043 23044 23045 23046 23047 23048 23049 23050 23051 23052 23053 23054 23055 23056 23057 23058 23059 23060 23061 23062 23063 23064 23065 23066 23067 23068 23069 23070 23071 23072 23073 23074 23075 23076 23077 23078 23079 23080 23081 23082 23083 23084 23085 23086 23087 23088 23089 23090 23091 23092 23093 23094 23095 23096 23097 23098 23099 23100 23101 23102 23103 23104 23105 23106 23107 23108 23109 23110 23111 23112 23113 23114 23115 23116 23117 23118 23119 23120 23121 23122 23123 23124 23125 23126 23127 23128 23129 23130 23131 23132 23133 23134 23135 23136 23137 23138 23139 23140 23141 23142 23143 23144 23145 23146 23147 23148 23149 23150 23151 23152 23153 23154 23155 23156 23157 23158 23159 23160 23161 23162 23163 23164 23165 23166 23167 23168 23169 23170 23171 23172 23173 23174 23175 23176 23177 23178 23179 23180 23181 23182 23183 23184 23185 23186 23187 23188 23189 23190 23191 23192 23193 23194 23195 23196 23197 23198 23199 23200 23201 23202 23203 23204 23205 23206 23207 23208 23209 23210 23211 23212 23213 23214 23215 23216 23217 23218 23219 23220 23221 23222 23223 23224 23225 23226 23227 23228 23229 23230 23231 23232 23233 23234 23235 23236 23237 23238 23239 23240 23241 23242 23243 23244 23245 23246 23247 23248 23249 23250 23251 23252 23253 23254 23255 23256 23257 23258 23259 23260 23261 23262 23263 23264 23265 23266 23267 23268 23269 23270 23271 23272 23273 23274 23275 23276 23277 23278 23279 23280 23281 23282 23283 23284 23285 23286 23287 23288 23289 23290 23291 23292 23293 23294 23295 23296 23297 23298 23299 23300 23301 23302 23303 23304 23305 23306 23307 23308 23309 23310 23311 23312 23313 23314 23315 23316 23317 23318 23319 23320 23321 23322 23323 23324 23325 23326 23327 23328 23329 23330 23331 23332 23333 23334 23335 23336 23337 23338 23339 23340 23341 23342 23343 23344 23345 23346 23347 23348 23349 23350 23351 23352 23353 23354 23355 23356 23357 23358 23359 23360 23361 23362 23363 23364 23365 23366 23367 23368 23369 23370 23371 23372 23373 23374 23375 23376 23377 23378 23379 23380 23381 23382 23383 23384 23385 23386 23387 23388 23389 23390 23391 23392 23393 23394 23395 23396 23397 23398 23399 23400 23401 23402 23403 23404 23405 23406 23407 23408 23409 23410 23411 23412 23413 23414 23415 23416 23417 23418 23419 23420 23421 23422 23423 23424 23425 23426 23427 23428 23429 23430 23431 23432 23433 23434 23435 23436 23437 23438 23439 23440 23441 23442 23443 23444 23445 23446 23447 23448 23449 23450 23451 23452 23453 23454 23455 23456 23457 23458 23459 23460 23461 23462 23463 23464 23465 23466 23467 23468 23469 23470 23471 23472 23473 23474 23475 23476 23477 23478 23479 23480 23481 23482 23483 23484 23485 23486 23487 23488 23489 23490 23491 23492 23493 23494 23495 23496 23497 23498 23499 23500 23501 23502 23503 23504 23505 23506 23507 23508 23509 23510 23511 23512 23513 23514 23515 23516 23517 23518 23519 23520 23521 23522 23523 23524 23525 23526 23527 23528 23529 23530 23531 23532 23533 23534 23535 23536 23537 23538 23539 23540 23541 23542 23543 23544 23545 23546 23547 23548 23549 23550 23551 23552 23553 23554 23555 23556 23557 23558 23559 23560 23561 23562 23563 23564 23565 23566 23567 23568 23569 23570 23571 23572 23573 23574 23575 23576 23577 23578 23579 23580 23581 23582 23583 23584 23585 23586 23587 23588 23589 23590 23591 23592 23593 23594 23595 23596 23597 23598 23599 23600 23601 23602 23603 23604 23605 23606 23607 23608 23609 23610 23611 23612 23613 23614 23615 23616 23617 23618 23619 23620 23621 23622 23623 23624 23625 23626 23627 23628 23629 23630 23631 23632 23633 23634 23635 23636 23637 23638 23639 23640 23641 23642 23643 23644 23645 23646 23647 23648 23649 23650 23651 23652 23653 23654 23655 23656 23657 23658 23659 23660 23661 23662 23663 23664 23665 23666 23667 23668 23669 23670 23671 23672 23673 23674 23675 23676 23677 23678 23679 23680 23681 23682 23683 23684 23685 23686 23687 23688 23689 23690 23691 23692 23693 23694 23695 23696 23697 23698 23699 23700 23701 23702 23703 23704 23705 23706 23707 23708 23709 23710 23711 23712 23713 23714 23715 23716 23717 23718 23719 23720 23721 23722 23723 23724 23725 23726 23727 23728 23729 23730 23731 23732 23733 23734 23735 23736 23737 23738 23739 23740 23741 23742 23743 23744 23745 23746 23747 23748 23749 23750 23751 23752 23753 23754 23755 23756 23757 23758 23759 23760 23761 23762 23763 23764 23765 23766 23767 23768 23769 23770 23771 23772 23773 23774 23775 23776 23777 23778 23779 23780 23781 23782 23783 23784 23785 23786 23787 23788 23789 23790 23791 23792 23793 23794 23795 23796 23797 23798 23799 23800 23801 23802 23803 23804 23805 23806 23807 23808 23809 23810 23811 23812 23813 23814 23815 23816 23817 23818 23819 23820 23821 23822 23823 23824 23825 23826 23827 23828 23829 23830 23831 23832 23833 23834 23835 23836 23837 23838 23839 23840 23841 23842 23843 23844 23845 23846 23847 23848 23849 23850 23851 23852 23853 23854 23855 23856 23857 23858 23859 23860 23861 23862 23863 23864 23865 23866 23867 23868 23869 23870 23871 23872 23873 23874 23875 23876 23877 23878 23879 23880 23881 23882 23883 23884 23885 23886 23887 23888 23889 23890 23891 23892 23893 23894 23895 23896 23897 23898 23899 23900 23901 23902 23903 23904 23905 23906 23907 23908 23909 23910 23911 23912 23913 23914 23915 23916 23917 23918 23919 23920 23921 23922 23923 23924 23925 23926 23927 23928 23929 23930 23931 23932 23933 23934 23935 23936 23937 23938 23939 23940 23941 23942 23943 23944 23945 23946 23947 23948 23949 23950 23951 23952 23953 23954 23955 23956 23957 23958 23959 23960 23961 23962 23963 23964 23965 23966 23967 23968 23969 23970 23971 23972 23973 23974 23975 23976 23977 23978 23979 23980 23981 23982 23983 23984 23985 23986 23987 23988 23989 23990 23991 23992 23993 23994 23995 23996 23997 23998 23999 24000 24001 24002 24003 24004 24005 24006 24007 24008 24009 24010 24011 24012 24013 24014 24015 24016 24017 24018 24019 24020 24021 24022 24023 24024 24025 24026 24027 24028 24029 24030 24031 24032 24033 24034 24035 24036 24037 24038 24039 24040 24041 24042 24043 24044 24045 24046 24047 24048 24049 24050 24051 24052 24053 24054 24055 24056 24057 24058 24059 24060 24061 24062 24063 24064 24065 24066 24067 24068 24069 24070 24071 24072 24073 24074 24075 24076 24077 24078 24079 24080 24081 24082 24083 24084 24085 24086 24087 24088 24089 24090 24091 24092 24093 24094 24095 24096 24097 24098 24099 24100 24101 24102 24103 24104 24105 24106 24107 24108 24109 24110 24111 24112 24113 24114 24115 24116 24117 24118 24119 24120 24121 24122 24123 24124 24125 24126 24127 24128 24129 24130 24131 24132 24133 24134 24135 24136 24137 24138 24139 24140 24141 24142 24143 24144 24145 24146 24147 24148 24149 24150 24151 24152 24153 24154 24155 24156 24157 24158 24159 24160 24161 24162 24163 24164 24165 24166 24167 24168 24169 24170 24171 24172 24173 24174 24175 24176 24177 24178 24179 24180 24181 24182 24183 24184 24185 24186 24187 24188 24189 24190 24191 24192 24193 24194 24195 24196 24197 24198 24199 24200 24201 24202 24203 24204 24205 24206 24207 24208 24209 24210 24211 24212 24213 24214 24215 24216 24217 24218 24219 24220 24221 24222 24223 24224 24225 24226 24227 24228 24229 24230 24231 24232 24233 24234 24235 24236 24237 24238 24239 24240 24241 24242 24243 24244 24245 24246 24247 24248 24249 24250 24251 24252 24253 24254 24255 24256 24257 24258 24259 24260 24261 24262 24263 24264 24265 24266 24267 24268 24269 24270 24271 24272 24273 24274 24275 24276 24277 24278 24279 24280 24281 24282 24283 24284 24285 24286 24287 24288 24289 24290 24291 24292 24293 24294 24295 24296 24297 24298 24299 24300 24301 24302 24303 24304 24305 24306 24307 24308 24309 24310 24311 24312 24313 24314 24315 24316 24317 24318 24319 24320 24321 24322 24323 24324 24325 24326 24327 24328 24329 24330 24331 24332 24333 24334 24335 24336 24337 24338 24339 24340 24341 24342 24343 24344 24345 24346 24347 24348 24349 24350 24351 24352 24353 24354 24355 24356 24357 24358 24359 24360 24361 24362 24363 24364 24365 24366 24367 24368 24369 24370 24371 24372 24373 24374 24375 24376 24377 24378 24379 24380 24381 24382 24383 24384 24385 24386 24387 24388 24389 24390 24391 24392 24393 24394 24395 24396 24397 24398 24399 24400 24401 24402 24403 24404 24405 24406 24407 24408 24409 24410 24411 24412 24413 24414 24415 24416 24417 24418 24419 24420 24421 24422 24423 24424 24425 24426 24427 24428 24429 24430 24431 24432 24433 24434 24435 24436 24437 24438 24439 24440 24441 24442 24443 24444 24445 24446 24447 24448 24449 24450 24451 24452 24453 24454 24455 24456 24457 24458 24459 24460 24461 24462 24463 24464 24465 24466 24467 24468 24469 24470 24471 24472 24473 24474 24475 24476 24477 24478 24479 24480 24481 24482 24483 24484 24485 24486 24487 24488 24489 24490 24491 24492 24493 24494 24495 24496 24497 24498 24499 24500 24501 24502 24503 24504 24505 24506 24507 24508 24509 24510 24511 24512 24513 24514 24515 24516 24517 24518 24519 24520 24521 24522 24523 24524 24525 24526 24527 24528 24529 24530 24531 24532 24533 24534 24535 24536 24537 24538 24539 24540 24541 24542 24543 24544 24545 24546 24547 24548 24549 24550 24551 24552 24553 24554 24555 24556 24557 24558 24559 24560 24561 24562 24563 24564 24565 24566 24567 24568 24569 24570 24571 24572 24573 24574 24575 24576 24577 24578 24579 24580 24581 24582 24583 24584 24585 24586 24587 24588 24589 24590 24591 24592 24593 24594 24595 24596 24597 24598 24599 24600 24601 24602 24603 24604 24605 24606 24607 24608 24609 24610 24611 24612 24613 24614 24615 24616 24617 24618 24619 24620 24621 24622 24623 24624 24625 24626 24627 24628 24629 24630 24631 24632 24633 24634 24635 24636 24637 24638 24639 24640 24641 24642 24643 24644 24645 24646 24647 24648 24649 24650 24651 24652 24653 24654 24655 24656 24657 24658 24659 24660 24661 24662 24663 24664 24665 24666 24667 24668 24669 24670 24671 24672 24673 24674 24675 24676 24677 24678 24679 24680 24681 24682 24683 24684 24685 24686 24687 24688 24689 24690 24691 24692 24693 24694 24695 24696 24697 24698 24699 24700 24701 24702 24703 24704 24705 24706 24707 24708 24709 24710 24711 24712 24713 24714 24715 24716 24717 24718 24719 24720 24721 24722 24723 24724 24725 24726 24727 24728 24729 24730 24731 24732 24733 24734 24735 24736 24737 24738 24739 24740 24741 24742 24743 24744 24745 24746 24747 24748 24749 24750 24751 24752 24753 24754 24755 24756 24757 24758 24759 24760 24761 24762 24763 24764 24765 24766 24767 24768 24769 24770 24771 24772 24773 24774 24775 24776 24777 24778 24779 24780 24781 24782 24783 24784 24785 24786 24787 24788 24789 24790 24791 24792 24793 24794 24795 24796 24797 24798 24799 24800 24801 24802 24803 24804 24805 24806 24807 24808 24809 24810 24811 24812 24813 24814 24815 24816 24817 24818 24819 24820 24821 24822 24823 24824 24825 24826 24827 24828 24829 24830 24831 24832 24833 24834 24835 24836 24837 24838 24839 24840 24841 24842 24843 24844 24845 24846 24847 24848 24849 24850 24851 24852 24853 24854 24855 24856 24857 24858 24859 24860 24861 24862 24863 24864 24865 24866 24867 24868 24869 24870 24871 24872 24873 24874 24875 24876 24877 24878 24879 24880 24881 24882 24883 24884 24885 24886 24887 24888 24889 24890 24891 24892 24893 24894 24895 24896 24897 24898 24899 24900 24901 24902 24903 24904 24905 24906 24907 24908 24909 24910 24911 24912 24913 24914 24915 24916 24917 24918 24919 24920 24921 24922 24923 24924 24925 24926 24927 24928 24929 24930 24931 24932 24933 24934 24935 24936 24937 24938 24939 24940 24941 24942 24943 24944 24945 24946 24947 24948 24949 24950 24951 24952 24953 24954 24955 24956 24957 24958 24959 24960 24961 24962 24963 24964 24965 24966 24967 24968 24969 24970 24971 24972 24973 24974 24975 24976 24977 24978 24979 24980 24981 24982 24983 24984 24985 24986 24987 24988 24989 24990 24991 24992 24993 24994 24995 24996 24997 24998 24999 25000 25001 25002 25003 25004 25005 25006 25007 25008 25009 25010 25011 25012 25013 25014 25015 25016 25017 25018 25019 25020 25021 25022 25023 25024 25025 25026 25027 25028 25029 25030 25031 25032 25033 25034 25035 25036 25037 25038 25039 25040 25041 25042 25043 25044 25045 25046 25047 25048 25049 25050 25051 25052 25053 25054 25055 25056 25057 25058 25059 25060 25061 25062 25063 25064 25065 25066 25067 25068 25069 25070 25071 25072 25073 25074 25075 25076 25077 25078 25079 25080 25081 25082 25083 25084 25085 25086 25087 25088 25089 25090 25091 25092 25093 25094 25095 25096 25097 25098 25099 25100 25101 25102 25103 25104 25105 25106 25107 25108 25109 25110 25111 25112 25113 25114 25115 25116 25117 25118 25119 25120 25121 25122 25123 25124 25125 25126 25127 25128 25129 25130 25131 25132 25133 25134 25135 25136 25137 25138 25139 25140 25141 25142 25143 25144 25145 25146 25147 25148 25149 25150 25151 25152 25153 25154 25155 25156 25157 25158 25159 25160 25161 25162 25163 25164 25165 25166 25167 25168 25169 25170 25171 25172 25173 25174 25175 25176 25177 25178 25179 25180 25181 25182 25183 25184 25185 25186 25187 25188 25189 25190 25191 25192 25193 25194 25195 25196 25197 25198 25199 25200 25201 25202 25203 25204 25205 25206 25207 25208 25209 25210 25211 25212 25213 25214 25215 25216 25217 25218 25219 25220 25221 25222 25223 25224 25225 25226 25227 25228 25229 25230 25231 25232 25233 25234 25235 25236 25237 25238 25239 25240 25241 25242 25243 25244 25245 25246 25247 25248 25249 25250 25251 25252 25253 25254 25255 25256 25257 25258 25259 25260 25261 25262 25263 25264 25265 25266 25267 25268 25269 25270 25271 25272 25273 25274 25275 25276 25277 25278 25279 25280 25281 25282 25283 25284 25285 25286 25287 25288 25289 25290 25291 25292 25293 25294 25295 25296 25297 25298 25299 25300 25301 25302 25303 25304 25305 25306 25307 25308 25309 25310 25311 25312 25313 25314 25315 25316 25317 25318 25319 25320 25321 25322 25323 25324 25325 25326 25327 25328 25329 25330 25331 25332 25333 25334 25335 25336 25337 25338 25339 25340 25341 25342 25343 25344 25345 25346 25347 25348 25349 25350 25351 25352 25353 25354 25355 25356 25357 25358 25359 25360 25361 25362 25363 25364 25365 25366 25367 25368 25369 25370 25371 25372 25373 25374 25375 25376 25377 25378 25379 25380 25381 25382 25383 25384 25385 25386 25387 25388 25389 25390 25391 25392 25393 25394 25395 25396 25397 25398 25399 25400 25401 25402 25403 25404 25405 25406 25407 25408 25409 25410 25411 25412 25413 25414 25415 25416 25417 25418 25419 25420 25421 25422 25423 25424 25425 25426 25427 25428 25429 25430 25431 25432 25433 25434 25435 25436 25437 25438 25439 25440 25441 25442 25443 25444 25445 25446 25447 25448 25449 25450 25451 25452 25453 25454 25455 25456 25457 25458 25459 25460 25461 25462 25463 25464 25465 25466 25467 25468 25469 25470 25471 25472 25473 25474 25475 25476 25477 25478 25479 25480 25481 25482 25483 25484 25485 25486 25487 25488 25489 25490 25491 25492 25493 25494 25495 25496 25497 25498 25499 25500 25501 25502 25503 25504 25505 25506 25507 25508 25509 25510 25511 25512 25513 25514 25515 25516 25517 25518 25519 25520 25521 25522 25523 25524 25525 25526 25527 25528 25529 25530 25531 25532 25533 25534 25535 25536 25537 25538 25539 25540 25541 25542 25543 25544 25545 25546 25547 25548 25549 25550 25551 25552 25553 25554 25555 25556 25557 25558 25559 25560 25561 25562 25563 25564 25565 25566 25567 25568 25569 25570 25571 25572 25573 25574 25575 25576 25577 25578 25579 25580 25581 25582 25583 25584 25585 25586 25587 25588 25589 25590 25591 25592 25593 25594 25595 25596 25597 25598 25599 25600 25601 25602 25603 25604 25605 25606 25607 25608 25609 25610 25611 25612 25613 25614 25615 25616 25617 25618 25619 25620 25621 25622 25623 25624 25625 25626 25627 25628 25629 25630 25631 25632 25633 25634 25635 25636 25637 25638 25639 25640 25641 25642 25643 25644 25645 25646 25647 25648 25649 25650 25651 25652 25653 25654 25655 25656 25657 25658 25659 25660 25661 25662 25663 25664 25665 25666 25667 25668 25669 25670 25671 25672 25673 25674 25675 25676 25677 25678 25679 25680 25681 25682 25683 25684 25685 25686 25687 25688 25689 25690 25691 25692 25693 25694 25695 25696 25697 25698 25699 25700 25701 25702 25703 25704 25705 25706 25707 25708 25709 25710 25711 25712 25713 25714 25715 25716 25717 25718 25719 25720 25721 25722 25723 25724 25725 25726 25727 25728 25729 25730 25731 25732 25733 25734 25735 25736 25737 25738 25739 25740 25741 25742 25743 25744 25745 25746 25747 25748 25749 25750 25751 25752 25753 25754 25755 25756 25757 25758 25759 25760 25761 25762 25763 25764 25765 25766 25767 25768 25769 25770 25771 25772 25773 25774 25775 25776 25777 25778 25779 25780 25781 25782 25783 25784 25785 25786 25787 25788 25789 25790 25791 25792 25793 25794 25795 25796 25797 25798 25799 25800 25801 25802 25803 25804 25805 25806 25807 25808 25809 25810 25811 25812 25813 25814 25815 25816 25817 25818 25819 25820 25821 25822 25823 25824 25825 25826 25827 25828 25829 25830 25831 25832 25833 25834 25835 25836 25837 25838 25839 25840 25841 25842 25843 25844 25845 25846 25847 25848 25849 25850 25851 25852 25853 25854 25855 25856 25857 25858 25859 25860 25861 25862 25863 25864 25865 25866 25867 25868 25869 25870 25871 25872 25873 25874 25875 25876 25877 25878 25879 25880 25881 25882 25883 25884 25885 25886 25887 25888 25889 25890 25891 25892 25893 25894 25895 25896 25897 25898 25899 25900 25901 25902 25903 25904 25905 25906 25907 25908 25909 25910 25911 25912 25913 25914 25915 25916 25917 25918 25919 25920 25921 25922 25923 25924 25925 25926 25927 25928 25929 25930 25931 25932 25933 25934 25935 25936 25937 25938 25939 25940 25941 25942 25943 25944 25945 25946 25947 25948 25949 25950 25951 25952 25953 25954 25955 25956 25957 25958 25959 25960 25961 25962 25963 25964 25965 25966 25967 25968 25969 25970 25971 25972 25973 25974 25975 25976 25977 25978 25979 25980 25981 25982 25983 25984 25985 25986 25987 25988 25989 25990 25991 25992 25993 25994 25995 25996 25997 25998 25999 26000 26001 26002 26003 26004 26005 26006 26007 26008 26009 26010 26011 26012 26013 26014 26015 26016 26017 26018 26019 26020 26021 26022 26023 26024 26025 26026 26027 26028 26029 26030 26031 26032 26033 26034 26035 26036 26037 26038 26039 26040 26041 26042 26043 26044 26045 26046 26047 26048 26049 26050 26051 26052 26053 26054 26055 26056 26057 26058 26059 26060 26061 26062 26063 26064 26065 26066 26067 26068 26069 26070 26071 26072 26073 26074 26075 26076 26077 26078 26079 26080 26081 26082 26083 26084 26085 26086 26087 26088 26089 26090 26091 26092 26093 26094 26095 26096 26097 26098 26099 26100 26101 26102 26103 26104 26105 26106 26107 26108 26109 26110 26111 26112 26113 26114 26115 26116 26117 26118 26119 26120 26121 26122 26123 26124 26125 26126 26127 26128 26129 26130 26131 26132 26133 26134 26135 26136 26137 26138 26139 26140 26141 26142 26143 26144 26145 26146 26147 26148 26149 26150 26151 26152 26153 26154 26155 26156 26157 26158 26159 26160 26161 26162 26163 26164 26165 26166 26167 26168 26169 26170 26171 26172 26173 26174 26175 26176 26177 26178 26179 26180 26181 26182 26183 26184 26185 26186 26187 26188 26189 26190 26191 26192 26193 26194 26195 26196 26197 26198 26199 26200 26201 26202 26203 26204 26205 26206 26207 26208 26209 26210 26211 26212 26213 26214 26215 26216 26217 26218 26219 26220 26221 26222 26223 26224 26225 26226 26227 26228 26229 26230 26231 26232 26233 26234 26235 26236 26237 26238 26239 26240 26241 26242 26243 26244 26245 26246 26247 26248 26249 26250 26251 26252 26253 26254 26255 26256 26257 26258 26259 26260 26261 26262 26263 26264 26265 26266 26267 26268 26269 26270 26271 26272 26273 26274 26275 26276 26277 26278 26279 26280 26281 26282 26283 26284 26285 26286 26287 26288 26289 26290 26291 26292 26293 26294 26295 26296 26297 26298 26299 26300 26301 26302 26303 26304 26305 26306 26307 26308 26309 26310 26311 26312 26313 26314 26315 26316 26317 26318 26319 26320 26321 26322 26323 26324 26325 26326 26327 26328 26329 26330 26331 26332 26333 26334 26335 26336 26337 26338 26339 26340 26341 26342 26343 26344 26345 26346 26347 26348 26349 26350 26351 26352 26353 26354 26355 26356 26357 26358 26359 26360 26361 26362 26363 26364 26365 26366 26367 26368 26369 26370 26371 26372 26373 26374 26375 26376 26377 26378 26379 26380 26381 26382 26383 26384 26385 26386 26387 26388 26389 26390 26391 26392 26393 26394 26395 26396 26397 26398 26399 26400 26401 26402 26403 26404 26405 26406 26407 26408 26409 26410 26411 26412 26413 26414 26415 26416 26417 26418 26419 26420 26421 26422 26423 26424 26425 26426 26427 26428 26429 26430 26431 26432 26433 26434 26435 26436 26437 26438 26439 26440 26441 26442 26443 26444 26445 26446 26447 26448 26449 26450 26451 26452 26453 26454 26455 26456 26457 26458 26459 26460 26461 26462 26463 26464 26465 26466 26467 26468 26469 26470 26471 26472 26473 26474 26475 26476 26477 26478 26479 26480 26481 26482 26483 26484 26485 26486 26487 26488 26489 26490 26491 26492 26493 26494 26495 26496 26497 26498 26499 26500 26501 26502 26503 26504 26505 26506 26507 26508 26509 26510 26511 26512 26513 26514 26515 26516 26517 26518 26519 26520 26521 26522 26523 26524 26525 26526 26527 26528 26529 26530 26531 26532 26533 26534 26535 26536 26537 26538 26539 26540 26541 26542 26543 26544 26545 26546 26547 26548 26549 26550 26551 26552 26553 26554 26555 26556 26557 26558 26559 26560 26561 26562 26563 26564 26565 26566 26567 26568 26569 26570 26571 26572 26573 26574 26575 26576 26577 26578 26579 26580 26581 26582 26583 26584 26585 26586 26587 26588 26589 26590 26591 26592 26593 26594 26595 26596 26597 26598 26599 26600 26601 26602 26603 26604 26605 26606 26607 26608 26609 26610 26611 26612 26613 26614 26615 26616 26617 26618 26619 26620 26621 26622 26623 26624 26625 26626 26627 26628 26629 26630 26631 26632 26633 26634 26635 26636 26637 26638 26639 26640 26641 26642 26643 26644 26645 26646 26647 26648 26649 26650 26651 26652 26653 26654 26655 26656 26657 26658 26659 26660 26661 26662 26663 26664 26665 26666 26667 26668 26669 26670 26671 26672 26673 26674 26675 26676 26677 26678 26679 26680 26681 26682 26683 26684 26685 26686 26687 26688 26689 26690 26691 26692 26693 26694 26695 26696 26697 26698 26699 26700 26701 26702 26703 26704 26705 26706 26707 26708 26709 26710 26711 26712 26713 26714 26715 26716 26717 26718 26719 26720 26721 26722 26723 26724 26725 26726 26727 26728 26729 26730 26731 26732 26733 26734 26735 26736 26737 26738 26739 26740 26741 26742 26743 26744 26745 26746 26747 26748 26749 26750 26751 26752 26753 26754 26755 26756 26757 26758 26759 26760 26761 26762 26763 26764 26765 26766 26767 26768 26769 26770 26771 26772 26773 26774 26775 26776 26777 26778 26779 26780 26781 26782 26783 26784 26785 26786 26787 26788 26789 26790 26791 26792 26793 26794 26795 26796 26797 26798 26799 26800 26801 26802 26803 26804 26805 26806 26807 26808 26809 26810 26811 26812 26813 26814 26815 26816 26817 26818 26819 26820 26821 26822 26823 26824 26825 26826 26827 26828 26829 26830 26831 26832 26833 26834 26835 26836 26837 26838 26839 26840 26841 26842 26843 26844 26845 26846 26847 26848 26849 26850 26851 26852 26853 26854 26855 26856 26857 26858 26859 26860 26861 26862 26863 26864 26865 26866 26867 26868 26869 26870 26871 26872 26873 26874 26875 26876 26877 26878 26879 26880 26881 26882 26883 26884 26885 26886 26887 26888 26889 26890 26891 26892 26893 26894 26895 26896 26897 26898 26899 26900 26901 26902 26903 26904 26905 26906 26907 26908 26909 26910 26911 26912 26913 26914 26915 26916 26917 26918 26919 26920 26921 26922 26923 26924 26925 26926 26927 26928 26929 26930 26931 26932 26933 26934 26935 26936 26937 26938 26939 26940 26941 26942 26943 26944 26945 26946 26947 26948 26949 26950 26951 26952 26953 26954 26955 26956 26957 26958 26959 26960 26961 26962 26963 26964 26965 26966 26967 26968 26969 26970 26971 26972 26973 26974 26975 26976 26977 26978 26979 26980 26981 26982 26983 26984 26985 26986 26987 26988 26989 26990 26991 26992 26993 26994 26995 26996 26997 26998 26999 27000 27001 27002 27003 27004 27005 27006 27007 27008 27009 27010 27011 27012 27013 27014 27015 27016 27017 27018 27019 27020 27021 27022 27023 27024 27025 27026 27027 27028 27029 27030 27031 27032 27033 27034 27035 27036 27037 27038 27039 27040 27041 27042 27043 27044 27045 27046 27047 27048 27049 27050 27051 27052 27053 27054 27056 27061 27065 27066 27067 27068 27069 27070 27071 27072 27073 27074 27075 27076 27077 27078 27079 27080 27081 27082 27083 27084 27085 27086 27087 27088 27089 27090 27091 27092 27093 27104 27105 27106 27107 27108 27109 27110 27111 27112 27113 27114 27115 27116 27117 27118 27119 27120 27121 27122 27123 27124 27125 27126 27127 27128 27129 27130 27131 27132 27145 27146 27147 27148 27149 27150 27151 27152 27153 27154 27155 27156 27157 27158 27159 27160 27161 27162 27163 27164 27165 27166 27167 27168 27169 27170 27171 27184 27185 27186 27187 27188 27189 27190 27191 27192 27193 27194 27195 27204 27205 27221 27222 27223 27224 27225 27255 27256 27257 27258 27259 27288 27289 27290 27291 27320 27321 27322 27323 27351 27352 27353 27354 27381 27382 27383 27384 27410 27411 27412 27438 27439 27440 27465 27466 27467 27491 27492 27493 27516 27517 27518 27540 27541 27542 27563 27564 27565 27585 27586 27587 27606 27607 27608 27626 27627 27628 27645 27646 27647 27663 27664 27665 27680 27681 27682 27696 27697 27698 27711 27712 27713 27725 27726 27727 27738 27739 27740 27750 27751 27752 27761 27762 27771 27772 27780 27788 27816 27817 27818 27819 27820 27821 27822 27823 27824 27825 27826 27827 27828 27829 27830 27831 27832 27833 27834 27835 27836 27837 27838 27839 27840 27841 27842 27843 27844 27845 27846 27847 27848 27849 27850 27851 27852 27853 27854 27855 27856 27857 27858 27859 27860 27861 27862 27863 27864 27865 27866 27867 27868 27869 27870 27871 27872 27873 27874 27875 27876 27877 27878 27879 27880 27881 27882 27883 27884 27885 27886 27887 27888 27889 27890 27891 27892 27893 27894 27895 27896 27897 27898 27899 27900 27901 27902 27903 27904 27905 27906 27907 27908 27909 27910 27911 27912 27913 27914 27915 27916 27917 27918 27919 27920 27921 27922 27927 27928 27929 27930 27931 27932 27933 27934 27935 27936 27937 27938 27939 27940 27941 27942 27943 27944 27945 27946 27947 27948 27949 27950 27951 27952 27953 27954 27955 27956 27957 27958 27959 27960 27961 27962 27963 27964 27965 27966 27967 27968 27969 27970 27971 27972 27973 27974 27975 27976 27981 27982 27983 27984 27985 27986 27987 27988 27989 27990 27991 27992 27993 27994 27995 27996 27997 27998 27999 28000 28001 28002 28003 28004 28005 28006 28007 28008 28009 28010 28011 28012 28013 28014 28015 28016 28017 28018 28019 28020 28021 28022 28023 28024 28025 28026 28027 28028 28029 28034 28035 28036 28037 28038 28039 28040 28041 28042 28043 28044 28045 28046 28047 28048 28049 28050 28051 28052 28053 28054 28055 28056 28057 28058 28059 28060 28061 28062 28063 28064 28065 28066 28067 28068 28069 28070 28071 28072 28073 28074 28075 28076 28077 28078 28079 28080 28081 28086 28087 28088 28089 28090 28091 28092 28093 28094 28095 28096 28097 28098 28099 28100 28101 28102 28103 28104 28105 28106 28107 28108 28109 28110 28111 28112 28113 28114 28115 28116 28117 28118 28119 28120 28121 28122 28123 28124 28125 28126 28127 28128 28129 28130 28131 28132 28137 28138 28139 28140 28141 28142 28143 28144 28145 28146 28147 28148 28149 28150 28151 28152 28153 28154 28155 28156 28157 28158 28159 28160 28161 28162 28163 28164 28165 28166 28167 28168 28169 28170 28171 28172 28173 28174 28175 28176 28177 28178 28179 28180 28181 28182 28187 28188 28189 28190 28191 28192 28193 28194 28195 28196 28197 28198 28199 28200 28201 28202 28203 28204 28205 28206 28207 28208 28209 28210 28211 28212 28213 28214 28215 28216 28217 28218 28219 28220 28221 28222 28223 28224 28225 28226 28227 28228 28229 28230 28231 28236 28237 28238 28239 28240 28241 28242 28243 28244 28245 28246 28247 28248 28249 28250 28251 28252 28253 28254 28255 28256 28257 28258 28259 28260 28261 28262 28263 28264 28265 28266 28267 28268 28269 28270 28271 28272 28273 28274 28275 28276 28277 28278 28279 28280 28284 28285 28286 28287 28288 28289 28290 28291 28292 28293 28294 28295 28296 28297 28298 28299 28300 28301 28302 28303 28304 28305 28306 28307 28308 28309 28310 28311 28312 28313 28314 28315 28316 28317 28318 28319 28320 28321 28322 28323 28324 28325 28326 28327 28331 28332 28333 28334 28335 28336 28337 28338 28339 28340 28341 28342 28343 28344 28345 28346 28347 28348 28349 28350 28351 28352 28353 28354 28355 28356 28357 28358 28359 28360 28361 28362 28363 28364 28365 28366 28367 28368 28369 28370 28371 28372 28373 28374 28377 28378 28379 28380 28381 28382 28383 28384 28385 28386 28387 28388 28389 28390 28391 28392 28393 28394 28395 28396 28397 28398 28399 28400 28401 28402 28403 28404 28405 28406 28407 28408 28409 28410 28411 28412 28413 28414 28415 28416 28417 28418 28419 28420 28422 28423 28424 28425 28426 28427 28428 28429 28430 28431 28432 28433 28434 28435 28436 28437 28438 28439 28440 28441 28442 28443 28444 28445 28446 28447 28448 28449 28450 28451 28452 28453 28454 28455 28456 28457 28458 28459 28460 28461 28462 28463 28464 28465 28466 28467 28468 28469 28470 28471 28472 28473 28474 28475 28476 28477 28478 28479 28480 28481 28482 28483 28484 28485 28486 28487 28488 28489 28490 28491 28492 28493 28494 28495 28496 28497 28498 28499 28500 28501 28502 28503 28504 28505 28506 28507 28508 28509 28510 28511 28512 28513 28514 28515 28516 28517 28518 28519 28520 28521 28522 28523 28524 28525 28526 28527 28528 28529 28530 28531 28532 28533 28534 28535 28536 28537 28538 28539 28540 28541 28542 28543 28544 28545 28546 28547 28548 28549 28550 28551 28552 28553 28554 28555 28556 28557 28558 28559 28560 28561 28562 28563 28564 28565 28566 28567 28568 28569 28570 28571 28572 28573 28574 28575 28576 28577 28578 28579 28580 28581 28582 28583 28584 28585 28586 28587 28588 28589 28590 28591 28592 28593 28594 28595 28596 28597 28598 28599 28600 28601 28602 28603 28604 28605 28606 28607 28608 28609 28610 28611 28612 28613 28614 28615 28616 28617 28618 28619 28620 28621 28622 28623 28624 28625 28626 28627 28628 28629 28630 28631 28632 28633 28634 28635 28636 28637 28638 28639 28640 28641 28642 28643 28644 28645 28646 28647 28648 28649 28650 28651 28652 28653 28654 28655 28656 28657 28658 28659 28660 28661 28662 28663 28664 28665 28666 28667 28668 28669 28670 28671 28672 28673 28674 28675 28676 28677 28678 28679 28680 28681 28682 28683 28684 28685 28686 28687 28688 28689 28690 28691 28692 28693 28694 28695 28696 28697 28698 28699 28700 28701 28702 28703 28704 28705 28706 28707 28708 28709 28710 28711 28712 28713 28714 28715 28716 28717 28718 28719 28720 28721 28722 28723 28724 28725 28726 28727 28728 28729 28730 28731 28732 28733 28734 28735 28736 28737 28738 28739 28740 28741 28742 28743 28744 28745 28746 28747 28748 28749 28750 28751 28752 28753 28754 28755 28756 28757 28758 28759 28760 28761 28762 28763 28764 28765 28766 28767 28768 28769 28770 28771 28772 28773 28774 28775 28776 28777 28778 28779 28780 28781 28782 28783 28784 28785 28786 28787 28788 28789 28790 28791 28792 28793 28794 28795 28796 28797 28798 28799 28800 28801 28802 28803 28804 28805 28806 28807 28808 28809 28810 28811 28812 28813 28814 28815 28816 28817 28818 28819 28820 28821 28822 28823 28824 28825 28826 28827 28828 28829 28830 28831 28832 28833 28834 28835 28836 28837 28838 28839 28840 28841 28842 28843 28844 28845 28846 28847 28848 28849 28850 28851 28852 28853 28854 28855 28856 28857 28858 28859 28860 28861 28862 28863 28864 28865 28866 28867 28868 28869 28870 28871 28872 28873 28874 28875 28876 28877 28878 28879 28880 28881 28882 28883 28884 28885 28886 28887 28888 28889 28890 28891 28892 28893 28894 28895 28896 28897 28898 28899 28900 28901 28902 28903 28904 28905 28906 28907 28908 28909 28910 28911 28912 28913 28914 28915 28916 28917 28918 28919 28920 28921 28922 28923 28924 28925 28926 28927 28928 28929 28930 28931 28932 28933 28934 28935 28936 28937 28938 28939 28940 28941 28942 28943 28944 28945 28946 28947 28948 28949 28950 28951 28952 28953 28954 28955 28956 28957 28958 28959 28960 28961 28962 28963 28964 28965 28966 28967 28968 28969 28970 28971 28972 28973 28974 28975 28976 28977 28978 28979 28980 28981 28982 28983 28984 28985 28986 28987 28988 28989 28990 28991 28992 28993 28994 28995 28996 28997 28998 28999 29000 29001 29002 29003 29004 29005 29006 29007 29008 29009 29010 29011 29012 29013 29014 29015 29016 29017 29018 29019 29020 29021 29022 29023 29024 29025 29026 29027 29028 29029 29030 29031 29032 29033 29034 29035 29036 29037 29038 29039 29040 29041 29042 29043 29044 29045 29046 29047 29048 29049 29050 29051 29052 29053 29054 29055 29056 29057 29058 29059 29060 29061 29062 29063 29064 29065 29066 29067 29068 29069 29070 29071 29072 29073 29074 29075 29076 29077 29078 29079 29080 29081 29082 29083 29084 29085 29086 29087 29088 29089 29090 29091 29092 29093 29094 29095 29096 29097 29098 29099 29100 29101 29102 29103 29104 29105 29106 29107 29108 29109 29110 29111 29112 29113 29114 29115 29116 29117 29118 29119 29120 29121 29122 29123 29124 29125 29126 29127 29128 29129 29130 29131 29132 29133 29134 29135 29136 29137 29138 29139 29140 29141 29142 29143 29144 29145 29146 29147 29148 29149 29150 29151 29152 29153 29154 29155 29156 29157 29158 29159 29160 29161 29162 29163 29164 29165 29166 29167 29168 29169 29170 29171 29172 29173 29174 29175 29176 29177 29178 29179 29180 29181 29182 29183 29184 29185 29186 29187 29188 29189 29190 29191 29192 29193 29194 29195 29196 29197 29198 29199 29200 29201 29202 29203 29204 29205 29206 29207 29208 29209 29210 29211 29212 29213 29214 29215 29216 29217 29218 29219 29220 29221 29222 29223 29224 29225 29226 29227 29228 29229 29230 29231 29232 29233 29234 29235 29236 29237 29238 29239 29240 29241 29242 29243 29244 29245 29246 29247 29248 29249 29250 29251 29252 29253 29254 29255 29256 29257 29258 29259 29260 29261 29262 29263 29264 29265 29266 29267 29268 29269 29270 29271 29272 29273 29274 29275 29276 29277 29278 29279 29280 29281 29282 29283 29284 29285 29286 29287 29288 29289 29290 29291 29292 29293 29294 29295 29296 29297 29298 29299 29300 29301 29302 29303 29304 29305 29306 29307 29308 29309 29310 29311 29312 29313 29314 29315 29316 29317 29318 29319 29320 29321 29322 29323 29324 29325 29326 29327 29328 29329 29330 29331 29332 29333 29334 29335 29336 29337 29338 29339 29340 29341 29342 29343 29344 29345 29346 29347 29348 29349 29350 29351 29352 29353 29354 29355 29356 29357 29358 29359 29360 29361 29362 29363 29364 29365 29366 29367 29368 29369 29370 29371 29372 29373 29374 29375 29376 29377 29378 29379 29380 29381 29382 29383 29384 29385 29386 29387 29388 29389 29390 29391 29392 29393 29394 29395 29396 29397 29398 29399 29400 29401 29402 29403 29404 29405 29406 29407 29408 29409 29410 29411 29412 29413 29414 29415 29416 29417 29418 29419 29420 29421 29422 29423 29424 29425 29426 29427 29428 29429 29430 29431 29432 29433 29434 29435 29436 29437 29438 29439 29440 29441 29442 29443 29444 29445 29446 29447 29448 29449 29450 29451 29452 29453 29454 29455 29456 29457 29458 29459 29460 29461 29462 29463 29464 29465 29466 29467 29468 29469 29470 29471 29472 29473 29474 29475 29476 29477 29478 29479 29480 29481 29482 29483 29484 29485 29486 29487 29488 29489 29490 29491 29492 29493 29494 29495 29496 29497 29498 29499 29500 29501 29502 29503 29504 29505 29506 29507 29508 29509 29510 29511 29512 29513 29514 29515 29516 29517 29518 29519 29520 29521 29522 29523 29524 29525 29526 29527 29528 29529 29530 29531 29532 29533 29534 29535 29536 29537 29538 29539 29540 29541 29542 29543 29544 29545 29546 29547 29548 29549 29550 29551 29552 29553 29554 29555 29556 29557 29558 29559 29560 29561 29562 29563 29564 29565 29566 29567 29568 29569 29570 29571 29572 29573 29574 29575 29576 29577 29578 29579 29580 29581 29582 29583 29584 29585 29586 29587 29588 29589 29590 29591 29592 29593 29594 29595 29596 29597 29598 29599 29600 29601 29602 29603 29604 29605 29606 29607 29608 29609 29610 29611 29612 29613 29614 29615 29616 29617 29618 29619 29620 29621 29622 29623 29624 29625 29626 29627 29628 29629 29630 29631 29632 29633 29634 29635 29636 29637 29638 29639 29640 29641 29642 29643 29644 29645 29646 29647 29648 29649 29650 29651 29652 29653 29654 29655 29656 29657 29658 29659 29660 29661 29662 29663 29664 29665 29666 29667 29668 29669 29670 29671 29672 29673 29674 29675 29676 29677 29678 29679 29680 29681 29682 29683 29684 29685 29686 29687 29688 29689 29690 29691 29692 29693 29694 29695 29696 29697 29698 29699 29700 29701 29702 29703 29704 29705 29706 29707 29708 29709 29710 29711 29712 29713 29714 29715 29716 29717 29718 29719 29720 29721 29722 29723 29724 29725 29726 29727 29728 29729 29730 29731 29732 29733 29734 29735 29736 29737 29738 29739 29740 29741 29742 29743 29744 29745 29746 29747 29748 29749 29750 29751 29752 29753 29754 29755 29756 29757 29758 29759 29760 29761 29762 29763 29764 29765 29766 29767 29768 29769 29770 29771 29772 29773 29774 29775 29776 29777 29778 29779 29780 29781 29782 29783 29784 29785 29786 29787 29788 29789 29790 29791 29792 29793 29794 29795 29796 29797 29798 29799 29800 29801 29802 29803 29804 29805 29806 29807 29808 29809 29810 29811 29812 29813 29814 29815 29816 29817 29818 29819 29820 29821 29822 29823 29824 29825 29826 29827 29828 29829 29830 29831 29832 29833 29834 29835 29836 29837 29838 29839 29840 29841 29842 29843 29844 29845 29846 29847 29848 29849 29850 29851 29852 29853 29854 29855 29856 29857 29858 29859 29860 29861 29862 29863 29864 29865 29866 29867 29868 29869 29870 29871 29872 29873 29874 29875 29876 29877 29878 29879 29880 29881 29882 29883 29884 29885 29886 29887 29888 29889 29890 29891 29892 29893 29894 29895 29896 29897 29898 29899 29900 29901 29902 29903 29904 29905 29906 29907 29908 29909 29910 29911 29912 29913 29914 29915 29916 29917 29918 29919 29920 29921 29922 29923 29924 29925 29926 29927 29928 29929 29930 29931 29932 29933 29934 29935 29936 29937 29938 29939 29940 29941 29942 29943 29944 29945 29946 29947 29948 29949 29950 29951 29952 29953 29954 29955 29956 29957 29958 29959 29960 29961 29962 29963 29964 29965 29966 29967 29968 29969 29970 29971 29972 29973 29974 29975 29976 29977 29978 29979 29980 29981 29982 29983 29984 29985 29986 29987 29988 29989 29990 29991 29992 29993 29994 29995 29996 29997 29998 29999 30000 30001 30002 30003 30004 30005 30006 30007 30008 30009 30010 30011 30012 30013 30014 30015 30016 30017 30018 30019 30020 30021 30022 30023 30024 30025 30026 30027 30028 30029 30030 30031 30032 30033 30034 30035 30036 30037 30038 30039 30040 30041 30042 30043 30044 30045 30046 30047 30048 30049 30050 30051 30052 30053 30054 30055 30056 30057 30058 30059 30060 30061 30062 30063 30064 30065 30066 30067 30068 30069 30070 30071 30072 30073 30074 30075 30076 30077 30078 30079 30080 30081 30082 30083 30084 30085 30086 30087 30088 30089 30090 30091 30092 30093 30094 30095 30096 30097 30098 30099 30100 30101 30102 30103 30104 30105 30106 30107 30108 30109 30110 30111 30112 30113 30114 30115 30116 30117 30118 30119 30120 30121 30122 30123 30124 30125 30126 30127 30128 30129 30130 30131 30132 30133 30134 30135 30136 30137 30138 30139 30140 30141 30142 30143 30144 30145 30146 30147 30148 30149 30150 30151 30152 30153 30154 30155 30156 30157 30158 30159 30160 30161 30162 30163 30164 30165 30166 30167 30168 30169 30170 30171 30172 30173 30174 30175 30176 30177 30178 30179 30180 30181 30182 30183 30184 30185 30186 30187 30188 30189 30190 30191 30192 30193 30194 30195 30196 30197 30198 30199 30200 30201 30202 30203 30204 30205 30206 30207 30208 30209 30210 30211 30212 30213 30214 30215 30216 30217 30218 30219 30220 30221 30222 30223 30224 30225 30226 30227 30228 30229 30230 30231 30232 30233 30234 30235 30236 30237 30238 30239 30240 30241 30242 30243 30244 30245 30246 30247 30248 30249 30250 30251 30252 30253 30254 30255 30256 30257 30258 30259 30260 30261 30262 30263 30264 30265 30266 30267 30268 30269 30270 30271 30272 30273 30274 30275 30276 30277 30278 30279 30280 30281 30282 30283 30284 30285 30286 30287 30288 30289 30290 30291 30292 30293 30294 30295 30296 30297 30298 30299 30300 30301 30302 30303 30304 30305 30306 30307 30308 30309 30310 30311 30312 30313 30314 30315 30316 30317 30318 30319 30320 30321 30322 30323 30324 30325 30326 30327 30328 30329 30330 30331 30332 30333 30334 30335 30336 30337 30338 30339 30340 30341 30342 30343 30344 30345 30346 30347 30348 30349 30350 30351 30352 30353 30354 30355 30356 30357 30358 30359 30360 30361 30362 30363 30364 30365 30366 30367 30368 30369 30370 30371 30372 30373 30374 30375 30376 30377 30378 30379 30380 30381 30382 30383 30384 30385 30386 30387 30388 30389 30390 30391 30392 30393 30394 30395 30396 30397 30398 30399 30400 30401 30402 30403 30404 30405 30406 30407 30408 30409 30410 30411 30412 30413 30414 30415 30416 30417 30418 30419 30420 30421 30422 30423 30424 30425 30426 30427 30428 30429 30430 30431 30432 30433 30434 30435 30436 30437 30438 30439 30440 30441 30442 30443 30444 30445 30446 30447 30448 30449 30450 30451 30452 30453 30454 30455 30456 30457 30458 30459 30460 30461 30462 30463 30464 30465 30466 30467 30468 30469 30470 30471 30472 30473 30474 30475 30476 30477 30478 30479 30480 30481 30482 30483 30484 30485 30486 30487 30488 30489 30490 30491 30492 30493 30494 30495 30496 30497 30498 30499 30500 30501 30502 30503 30504 30505 30506 30507 30508 30509 30510 30511 30512 30513 30514 30515 30516 30517 30518 30519 30520 30521 30522 30523 30524 30525 30526 30527 30528 30529 30530 30531 30532 30533 30534 30535 30536 30537 30538 30539 30540 30541 30542 30543 30544 30545 30546 30547 30548 30549 30550 30551 30552 30553 30554 30555 30556 30557 30558 30559 30560 30561 30562 30563 30564 30565 30566 30567 30568 30569 30570 30571 30572 30573 30574 30575 30576 30577 30578 30579 30580 30581 30582 30583 30584 30585 30586 30587 30588 30589 30590 30591 30592 30593 30594 30595 30596 30597 30598 30599 30600 30601 30602 30603 30604 30605 30606 30607 30608 30609 30610 30611 30612 30613 30614 30615 30616 30617 30618 30619 30620 30621 30622 30623 30624 30625 30626 30627 30628 30629 30630 30631 30632 30633 30634 30635 30636 30637 30638 30639 30640 30641 30642 30643 30644 30645 30646 30647 30648 30649 30650 30651 30652 30653 30654 30655 30656 30657 30658 30659 30660 30661 30662 30663 30664 30665 30666 30667 30668 30669 30670 30671 30672 30673 30674 30675 30676 30677 30678 30679 30680 30681 30682 30683 30684 30685 30686 30687 30688 30689 30690 30691 30692 30693 30694 30695 30696 30697 30698 30699 30700 30701 30702 30703 30704 30705 30706 30707 30708 30709 30710 30711 30712 30713 30714 30715 30716 30717 30718 30719 30720 30721 30722 30723 30724 30725 30726 30727 30728 30729 30730 30731 30732 30733 30734 30735 30736 30737 30738 30739 30740 30741 30742 30743 30744 30745 30746 30747 30748 30749 30750 30751 30752 30753 30754 30755 30756 30757 30758 30759 30760 30761 30762 30763 30764 30765 30766 30767 30768 30769 30770 30771 30772 30773 30774 30775 30776 30777 30778 30779 30780 30781 30782 30783 30784 30785 30786 30787 30788 30789 30790 30791 30792 30793 30794 30795 30796 30797 30798 30799 30800 30801 30802 30803 30804 30805 30806 30807 30808 30809 30810 30811 30812 30813 30814 30815 30816 30817 30818 30819 30820 30821 30822 30823 30824 30825 30826 30827 30828 30829 30830 30831 30832 30833 30834 30835 30836 30837 30838 30839 30840 30841 30842 30843 30844 30845 30846 30847 30848 30849 30850 30851 30852 30853 30854 30855 30856 30857 30858 30859 30860 30861 30862 30863 30864 30865 30866 30867 30868 30869 30870 30871 30872 30873 30874 30875 30876 30877 30878 30879 30880 30881 30882 30883 30884 30885 30886 30887 30888 30889 30890 30891 30892 30893 30894 30895 30896 30897 30898 30899 30900 30901 30902 30903 30904 30905 30906 30907 30908 30909 30910 30911 30912 30913 30914 30915 30916 30917 30918 30919 30920 30921 30922 30923 30924 30925 30926 30927 30928 30929 30930 30931 30932 30933 30934 30935 30936 30937 30938 30939 30940 30941 30942 30943 30944 30945 30946 30947 30948 30949 30950 30951 30952 30953 30954 30955 30956 30957 30958 30959 30960 30961 30962 30963 30964 30965 30966 30967 30968 30969 30970 30971 30972 30973 30974 30975 30976 30977 30978 30979 30980 30981 30982 30983 30984 30985 30986 30987 30988 30989 30990 30991 30992 30993 30994 30995 30996 30997 30998 30999 31000 31001 31002 31003 31004 31005 31006 31007 31008 31009 31010 31011 31012 31013 31014 31015 31016 31017 31018 31019 31020 31021 31022 31023 31024 31025 31026 31027 31028 31029 31030 31031 31032 31033 31034 31035 31036 31037 31038 31039 31040 31041 31042 31043 31044 31045 31046 31047 31048 31049 31050 31051 31052 31053 31054 31055 31056 31057 31058 31059 31060 31061 31062 31063 31064 31065 31066 31067 31068 31069 31070 31071 31072 31073 31074 31075 31076 31077 31078 31079 31080 31081 31082 31083 31084 31085 31086 31087 31088 31089 31090 31091 31092 31093 31094 31095 31096 31097 31098 31099 31100 31101 31102 31103 31104 31105 31106 31107 31108 31109 31110 31111 31112 31113 31114 31115 31116 31117 31118 31119 31120 31121 31122 31123 31124 31125 31126 31127 31128 31129 31130 31131 31132 31133 31134 31135 31136 31137 31138 31139 31140 31141 31142 31143 31144 31145 31146 31147 31148 31149 31150 31151 31152 31153 31154 31155 31156 31157 31158 31159 31160 31161 31162 31163 31164 31165 31166 31167 31168 31169 31170 31171 31172 31173 31174 31175 31176 31177 31178 31179 31180 31181 31182 31183 31184 31185 31186 31187 31188 31189 31190 31191 31192 31193 31194 31195 31196 31197 31198 31199 31200 31201 31202 31203 31204 31205 31206 31207 31208 31209 31210 31211 31212 31213 31214 31215 31216 31217 31218 31219 31220 31221 31222 31223 31224 31225 31226 31227 31228 31229 31230 31231 31232 31233 31234 31235 31236 31237 31238 31239 31240 31241 31242 31243 31244 31245 31246 31247 31248 31249 31250 31251 31252 31253 31254 31255 31256 31257 31258 31259 31260 31261 31262 31263 31264 31265 31266 31267 31268 31269 31270 31271 31272 31273 31274 31275 31276 31277 31278 31279 31280 31281 31282 31283 31284 31285 31286 31287 31288 31289 31290 31291 31292 31293 31294 31295 31296 31297 31298 31299 31300 31301 31302 31303 31304 31305 31306 31307 31308 31309 31310 31311 31312 31313 31314 31315 31316 31317 31318 31319 31320 31321 31322 31323 31324 31325 31326 31327 31328 31329 31330 31331 31332 31333 31334 31335 31336 31337 31338 31339 31340 31341 31342 31343 31344 31345 31346 31347 31348 31349 31350 31351 31352 31353 31354 31355 31356 31357 31358 31359 31360 31361 31362 31363 31364 31365 31366 31367 31368 31369 31370 31371 31372 31373 31374 31375 31376 31377 31378 31379 31380 31381 31382 31383 31384 31385 31386 31387 31388 31389 31390 31391 31392 31393 31394 31395 31396 31397 31398 31399 31400 31401 31402 31403 31404 31405 31406 31407 31408 31409 31410 31411 31412 31413 31414 31415 31416 31417 31418 31419 31420 31421 31422 31423 31424 31425 31426 31427 31428 31429 31430 31431 31432 31433 31434 31435 31436 31437 31438 31439 31440 31441 31442 31443 31444 31445 31446 31447 31448 31449 31450 31451 31452 31453 31454 31455 31456 31457 31458 31459 31460 31461 31462 31463 31464 31465 31466 31467 31468 31469 31470 31471 31472 31473 31474 31475 31476 31477 31478 31479 31480 31481 31482 31483 31484 31485 31486 31487 31488 31489 31490 31491 31492 31493 31494 31495 31496 31497 31498 31499 31500 31501 31502 31503 31504 31505 31506 31507 31508 31509 31510 31511 31512 31513 31514 31515 31516 31517 31518 31519 31520 31521 31522 31523 31524 31525 31526 31527 31528 31529 31530 31531 31532 31533 31534 31535 31536 31537 31538 31539 31540 31541 31542 31543 31544 31545 31546 31547 31548 31549 31550 31551 31552 31553 31554 31555 31556 31557 31558 31559 31560 31561 31562 31563 31564 31565 31566 31567 31568 31569 31570 31571 31572 31573 31574 31575 31576 31577 31578 31579 31580 31581 31582 31583 31584 31585 31586 31587 31588 31589 31590 31591 31592 31593 31594 31595 31596 31597 31598 31599 31600 31601 31602 31603 31604 31605 31606 31607 31608 31609 31610 31611 31612 31613 31614 31615 31616 31617 31618 31619 31620 31621 31622 31623 31624 31625 31626 31627 31628 31629 31630 31631 31632 31633 31634 31635 31636 31637 31638 31639 31640 31641 31642 31643 31644 31645 31646 31647 31648 31649 31650 31651 31652 31653 31654 31655 31656 31657 31658 31659 31660 31661 31662 31663 31664 31665 31666 31667 31668 31669 31670 31671 31672 31673 31674 31675 31676 31677 31678 31679 31680 31681 31682 31683 31684 31685 31686 31687 31688 31689 31690 31691 31692 31693 31694 31695 31696 31697 31698 31699 31700 31701 31702 31703 31704 31705 31706 31707 31708 31709 31710 31711 31712 31713 31714 31715 31716 31717 31718 31719 31720 31721 31722 31723 31724 31725 31726 31727 31728 31729 31730 31731 31732 31733 31734 31735 31736 31737 31738 31739 31740 31741 31742 31743 31744 31745 31746 31747 31748 31749 31750 31751 31752 31753 31754 31755 31756 31757 31758 31759 31760 31761 31762 31763 31764 31765 31766 31767 31768 31769 31770 31771 31772 31773 31774 31775 31776 31777 31778 31779 31780 31781 31782 31783 31784 31785 31786 31787 31788 31789 31790 31791 31792 31793 31794 31795 31796 31797 31798 31799 31800 31801 31802 31803 31804 31805 31806 31807 31808 31809 31810 31811 31812 31813 31814 31815 31816 31817 31818 31819 31820 31821 31822 31823 31824 31825 31826 31827 31828 31829 31830 31831 31832 31833 31834 31835 31836 31837 31838 31839 31840 31841 31842 31843 31844 31845 31846 31847 31848 31849 31850 31851 31852 31853 31854 31855 31856 31857 31858 31859 31860 31861 31862 31863 31864 31865 31866 31867 31868 31869 31870 31871 31872 31873 31874 31875 31876 31877 31878 31879 31880 31881 31882 31883 31884 31885 31886 31887 31888 31889 31890 31891 31892 31893 31894 31895 31896 31897 31898 31899 31900 31901 31902 31903 31904 31905 31906 31907 31908 31909 31910 31911 31912 31913 31914 31915 31916 31917 31918 31919 31920 31921 31922 31923 31924 31925 31926 31927 31928 31929 31930 31931 31932 31933 31934 31935 31936 31937 31938 31939 31940 31941 31942 31943 31944 31945 31946 31947 31948 31949 31950 31951 31952 31953 31954 31955 31956 31957 31958 31959 31960 31961 31962 31963 31964 31965 31966 31967 31968 31969 31970 31971 31972 31973 31974 31975 31976 31977 31978 31979 31980 31981 31982 31983 31984 31985 31986 31987 31988 31989 31990 31991 31992 31993 31994 31995 31996 31997 31998 31999 32000 32001 32002 32003 32004 32005 32006 32007 32008 32009 32010 32011 32012 32013 32014 32015 32016 32017 32018 32019 32020 32021 32022 32023 32024 32025 32026 32027 32028 32029 32030 32031 32032 32033 32034 32035 32036 32037 32038 32039 32040 32041 32042 32043 32044 32045 32046 32047 32048 32049 32050 32051 32052 32053 32054 32055 32056 32057 32058 32059 32060 32061 32062 32063 32064 32065 32066 32067 32068 32069 32070 32071 32072 32073 32074 32075 32076 32077 32078 32079 32080 32081 32082 32083 32084 32085 32086 32087 32088 32089 32090 32091 32092 32093 32094 32095 32096 32097 32098 32099 32100 32101 32102 32103 32104 32105 32106 32107 32108 32109 32110 32111 32112 32113 32114 32115 32116 32117 32118 32119 32120 32121 32122 32123 32124 32125 32126 32127 32128 32129 32130 32131 32132 32133 32134 32135 32136 32137 32138 32139 32140 32141 32142 32143 32144 32145 32146 32147 32148 32149 32150 32151 32152 32153 32154 32155 32156 32157 32158 32159 32160 32161 32162 32163 32164 32165 32166 32167 32168 32169 32170 32171 32172 32173 32174 32175 32176 32177 32178 32179 32180 32181 32182 32183 32184 32185 32186 32187 32188 32189 32190 32191 32192 32193 32194 32195 32196 32197 32198 32199 32200 32201 32202 32203 32204 32205 32206 32207 32208 32209 32210 32211 32212 32213 32214 32215 32216 32217 32218 32219 32220 32221 32222 32223 32224 32225 32226 32227 32228 32229 32230 32231 32232 32233 32234 32235 32236 32237 32238 32239 32240 32241 32242 32243 32244 32245 32246 32247 32248 32249 32250 32251 32252 32253 32254 32255 32256 32257 32258 32259 32260 32261 32262 32263 32264 32265 32266 32267 32268 32269 32270 32271 32272 32273 32274 32275 32276 32277 32278 32279 32280 32281 32282 32283 32284 32285 32286 32287 32288 32289 32290 32291 32292 32293 32294 32295 32296 32297 32298 32299 32300 32301 32302 32303 32304 32305 32306 32307 32308 32309 32310 32311 32312 32313 32314 32315 32316 32317 32318 32319 32320 32321 32322 32323 32324 32325 32326 32327 32328 32329 32330 32331 32332 32333 32334 32335 32336 32337 32338 32339 32340 32341 32342 32343 32344 32345 32346 32347 32348 32349 32350 32351 32352 32353 32354 32355 32356 32357 32358 32359 32360 32361 32362 32363 32364 32365 32366 32367 32368 32369 32370 32371 32372 32373 32374 32375 32376 32377 32378 32379 32380 32381 32382 32383 32384 32385 32386 32387 32388 32389 32390 32391 32392 32393 32394 32395 32396 32397 32398 32399 32400 32401 32402 32403 32404 32405 32406 32407 32408 32409 32410 32411 32412 32413 32414 32415 32416 32417 32418 32419 32420 32421 32422 32423 32424 32425 32426 32427 32428 32429 32430 32431 32432 32433 32434 32435 32436 32437 32438 32439 32440 32441 32442 32443 32444 32445 32446 32447 32448 32449 32450 32451 32452 32453 32454 32455 32456 32457 32458 32459 32460 32461 32462 32463 32464 32465 32466 32467 32468 32469 32470 32471 32472 32473 32474 32475 32476 32477 32478 32479 32480 32481 32482 32483 32484 32485 32486 32487 32488 32489 32490 32491 ‰2©?U‰L@ÅØ¯?? @B´?ÑA@É;Ÿ?†+O@¬e½?&Õ @Ž$¢?Cæ2@«4›? %@l±±?²×%@P¡?chG@m×µ?e¥A@\Ø“?9L‰@ ]ª?'óW@àˆ®?[W@«"¶?à=@õÀÁ?¬3!@ŒÐ?z¶@LTÜ?ëùé?Ü?Jü? Ù?xž@!Ø?2‡@9/Ô?fk @—ìÌ?â§è?€]Â?q»¿?æ4»?_ã?”½?‘–?¿?)“?)‚Â?ѯ¥?ËtÎ?¥½?Lhª?RÇR@5¬?à³Y@¶x®?kI\@r5±?é%\@ ³?—QZ@aQ´?Ñ X@ßð´?LºU@=µ?ã T@ˆû´?üÒS@/P´?>fW@cé²?Ù Z@…²?þ4^@/k±?–í[@ ¯?´DX@.Å®?=‰N@Ø;±?\fA@{í´?<;@µ?íB@b ´?ž ?@¸³?,¿>@î[±?nG@‹B°?·ìJ@é6°?:N@7°?]1O@ù6°?Ç8J@4°?°"D@‘z¯?I@@Áú¯?¥8@pЯ?c#@È?²?ö‰@H´?Ä©@z¶?‘@‘h¹?ø´ @ ·?–‹@ãÍ·?¢@ˆ¸?Aô?#Û¹?A ë?/ ¼?…9ð?ý¾?.€ð?šg¿?Þì?Hn¾?Ðñò?!V½?‚›ù?ä}¼?[ñ?š/Á?ø¤ê?;$Ì?c¹ë?¼ÛÎ?Üö@{Ì?{@9mÅ?™ @fá¿?ë*@Œ›½?ëû1@èL¼?ãq)@pqº?‚²"@ÁÒ·?z£@¿Éµ?‘|@£Œ²?ïJ@~°?mÉ@‚÷¨?—þ@Lµ©?_%@ÿþ­?¿Ö/@m·?m{(@ÖeÉ?2 @ÔÁÜ?à^ü?FÜ?'ÇÜ?Ø,Ê?Ÿ@÷Ô·?Ë¡%@”´­?úmU@¶¬?ñb@8C¬?Ñ;Q@ôh­?åA@Ú£®?Ìè5@aÖ®?x<.@Û£¯?‹š(@¸°?«&@?±?¸¾%@;õ«?k»Y@¸±?P@Úº¹?«c8@WÞÆ?h-@èØ?ú?ôÜ?(õ?¦pÙ? @›Ù?nÖ@n*Ö?0’@‘ÒÏ?î?—mÇ?É»?–Á?Ñx?ߪ¿?Fa—?C9Ä?ËÕ›?^åÁ?9à?fÜ?üòÆ?%f¯?þÒU@Ô³? bK@‰Ã¼?êf9@8ŠÍ?W@S¾Ú??“ø?p Ù?îù@Ûߨ?üQ@ñØ?û@?–Ò?„¼ý?¥òÈ?óZÄ?Ä?î¡?LÆ?6*”?>×Ë?MŸ˜?L×?ýµ?:î±?ÏêW@ïø¶?aÆK@ÞiÁ?úÆ6@3OÒ?Wq@]Ù?… @# Ù?ÍÛ@C”Ù?“k@V®Õ?Ë @ýyÌ?UYÔ?JÅ?Ä?¤?õ&Ä?…?í¿Á?P¯‘?M7Ø?ƒ5«?f«³?ƒØU@¼Õ¹? ZN@{Ç?å0@A4Ô?Ž@Ø%Ù?fQ@öàÚ?¼?ð¦>@ùìÉ? ±!@bìØ? ×@²öÛ?®Z!@1dÞ?I`%@éÊÔ?Ðù?ÜõÊ?×j²?XÓÅ?; ¡?ú[ç?ÅS×?æ]»?ñDC@”™È?D®"@йÚ?Z`@ûÂÝ?ж!@3ëÝ?ß™@t¢Ò?¦ì? ‰Ì?ù±?j È?p®?j©¸?NE@ æÆ?>U#@ËÙ?/Ü @DÁÜ?Ìt!@…pÞ?:^"@íÔ?×î?74Ñ?´?TÐ?ÍÉ?Ó¶?E¥N@*’Â?ú -@–‚×?u‹@ÚžÜ?J°!@õÞ?]©$@ -Ô?˜dñ?™Õ?uÐÀ?¡Þ?•u×?¹9µ?{ìU@Mñ¾?·Œ;@9ªÔ?v¸@“ÚÜ?Á$@/ß?ñ¢&@M‹Ô?9Iù?M†Õ?×ÓÊ?ý$å?ã®î?±³?¿\@»òº?ØæI@M¶Î?8I!@QÛ?T&@$ß?üá+@ÝÖ?ÙØ@›ÄÓ?ÿ^Ö?9ÁÜ?bÆó?N8²?pV]@¾”¸?éT@¨)È? ú.@n2Ù??®*@ÁòÞ?Å1@­ÙØ?„± @pkÕ?Cåá?ßq×?4é?Cµ±?sQ@¢¶?6ÈW@p¥À?WÉ@@Z–Õ?Ù*@‰Ý?ê¶6@’·Ù?kZ@€¦Î?‘}ì?ŸVÐ?ž Ü?Pƒè?Tèô?vˆµ?®>D@¬·?ØL@´l½?38K@ hÎ?ñ£0@ŒÑÛ?:9@ZåÛ?ë¨'@;óÒ?Š@°Ì?|6Û?°²Õ?Œ¦Ö?R;¶?ìPG@ò*¹?{ãD@¼?¦ßD@ú‡Æ?;@èº×?@:0@аÜ?å6@KíÖ? Ÿ@ƒ”Ì?¦üß?cÍ?BË?Ýfç? ÌË? æå?…º? jñ?}³? fê?m“£?ýÙð?pÞ”?)ï?hI‰?næ@B`‡?¹ù´?4WC@ÒØ·?álI@¶s¼?v»@@mìÂ?Ëh8@â¶Ï?lj1@ÖYÚ?ân;@-Ú?k‘*@GÐ?6®@ûðË?rHÑ?TÂ? Îµ?ŸJÈ?ƒ±?HaÓ?ü˜¥?IØ?NC•?áDÓ?Î ˆ?…™Í?S‡‚?8^à?%Ì„?A¹³?ËùC@>Á¶?èÙF@ãó¹?´@‚ßÃ?[P4@lÛÏ?û®'@NÒØ?8“7@WÚ?£Œ>@ÞuÓ?.È@*\É?)}í?5Â?PÉ?À(À?#:¼?”н?NX°?æÎ¿?Õ&¥?.Â?Œg¤?GâÐ?XÀ³?ç_°?›DP@Ð"²?ÍåP@±=´?†wM@`·?aL@䨽?xLB@ËËÈ?µj.@ÏðÓ?}Ç(@þßÙ?:@%ÝÕ?ög3@¡xË?žQ@-Ä?¤è?[r¿?•–Í?A<º?˜-Å?èÕ¹?„öÂ?ýܽ?Þ.Ê?Å?þ_Ù?ÈÍ?Üžì?°¸¯?uU@#A°?D¤U@‘(±?{¤U@p³?–}S@ì.¸?÷HP@|ÃÀ?$Œ>@¾ÇÍ?Å™&@´ŒÖ?ë‰'@J?×?¡36@ØÏ?g%@ªšÆ?¦g @»£¿?B*è?¹ ¼?£Ø?uç¹?05×?9½?ª!è?P Æ?Œÿ?|ºÉ?XJ @®ª¯?1rR@Ñ•¯?«¬N@W¯?¹êO@÷z°?~µ?³«-@YFÁ?ðD@{IÒ?^8 @ФÔ?^¥ @ÎòË?Là@×=Â?Wš%@ à¾?W!@eº?7@@c“¸?n%@p^µ?(!@Ž·?Žå+@NÂ?¡jE@ ¥¬? ñ7@ñ&«?pd=@Õª?QèC@×Öª?2uC@“µ«?kŽA@ ¤­?Ñï:@–n±?™s*@ ƒ½?à‰@B,Ï?‘Ê@ àÕ?‘@ÚÜÌ?Wt@±×Á?TM#@aÍ»?½u(@B\¶?“%@š¶·?n3)@äè¸?^ -@ »?Ê[8@X~È?è“K@Ö­?g,@GŸ«?»J9@U±«?]Û@@2ô«?³A@+Ž«?š=@ÚЬ?ç8@ö¯?£¬*@tq·?ìj@£Ë?«ø?9¥×?Ûýú?ÑëÎ?žá@éCÂ?Š@6¼? ×-@¦º?Šý3@7·?çø4@ɹ?1~:@óÔÀ?ã.D@ñg®?ú!@–)­? ½0@?V¬?ªÆ9@F¬?4Õ;@â«?Ð9@®Ó¬?²Y5@M­?kI)@^‡²?>@pÇ?D\é?.Ø?hsï?`Ò?dº@LÄ?„‹@·ý¾?µÐ-@Ì…µ?+25@›´²? <@Ò¢±?Nÿ:@«åË?|ÅU@¦¯?Ïb@AѰ? ú$@A®?KÁ/@R~­?¸3@Vì¬?k4@öC­?'1@Ö«?à‘&@£†®?Ѫ @_ØÂ?ØÝ?îØ?¦Ý?G*Ô?;Zü?o,Æ?»@’Ó¼?ûÙ#@F·?…9@f,³?usF@Jü°?ÐËE@Ƥ²?•$@ªÀ²?Í@Çà¯?cg%@Ga¯?`,@d®?­@/@$’­?c.@üïª?;¯&@㾫?ˆ @n¿?µ Ó?6ÞØ?(Ê?Ö?LÇô?¸ŽÇ?›¨ @ Í¼?:õ@¹ ¶?‘~=@ï¹°?—…J@·¸?´°X@ O³?âº@ù4µ?"@S)²?6Ê@|~°?Y²)@¬;¯?¿.@^g­?}¡0@_ª?âe'@»Dª?¢ð @–½?ÿTÎ?ú³×? ¿?‡LÙ?žûí?²¼È?]X @š¼?ô!@Ÿ´?Êæ=@çE°?( S@¹b»?$d@-¿´?¡ @2·?µÛ@[#´?‘Û@Ʊ?=*'@Ì@°?¦ú-@´Õ­?—W3@F]«?”@(@Én©?0; @Wå»?#Î?TõÖ?Ç&¶?PÊÛ?L¾æ?pÊ?ð1 @ê½?µË#@$’´?ú‹<@4¼­?ƒL@¸°­? RP@zø¶?«ã@ô"¹?Ï @‘ù´?+‰@Óõ²?D1#@°Ž±?˜E-@U´®?ñ£4@s~«?–,@Uí¨?c# @6y¹?pÑ?mßÖ? $³?—ŒÞ?1¶ß?òµÊ?ÇG @£Ú½?WF#@9ɳ?ý¸:@¨¡­?B±G@‹V²?#`Q@…&º?)gô?Saº?p>@®¢µ?·Ë@¼´? @¿¿±?‹ (@Åa¯?ݼ2@¤#¬?us.@³ˆ¨?Ѭ@;и?çÔ?Ö?ç±?;…Þ?ó0Ú?à†Í?'†@¨¹¾?ë @fÿ³?Jâ8@öÚ¬?È€B@㜱?AEH@s‹º?yàF@‚g¼?'.ñ?°t»?Õ~@w>¸?6C @Í´?mx@Os²?i°@¦G°? &,@¾†­?oé-@Ó˜¨?Èn@¡¨¸?ñüÛ?tÔÑ?I´?Ñß? ¯Ø?[³Ò?Ç¥@†Á?:Þ@à—µ?‘³6@Öå¬?Kk<@Ö±?¹7?@§Í³?s²:@½¬¾?ì<@;Ö¾?×Ðû?†H½?uä@‡tº?mÐ @Óšµ?õn@ç§²?»+@]ý°?â_"@zÕ­?7o,@©?“™@`Á·?ôê?§®Ó?çÚ¼?©Wà?)YÙ?EÖ?\§@F Ä?<¥@ ¹?uT2@!Ì®?ʯ7@«?ßq3@EÀ­?¨-@¯?Ï&@“ÝÁ?=™@Ÿâ¿?ñå@5,¼? ` @€-·?6, @Ǫ³?sB@[&±?¬+@`®?ïX*@EЪ?ž#@®¸?_¦@ÇÛÒ?ôCÍ?z à?bçÞ?©ù×?z^@gÇÈ?@YV»?F,)@S³?î@6@{ü«?!•0@cª?b§%@¬—Ã?¥@¬cÁ?on @˜¾½?²@j¢¸?£µ@¦´?ó @n…°?@u@ =®?Ët)@(u­? Ä0@)÷·?øå @átÓ?KÔá?kaà?ÆÅç?¤µÛ?&¡@IÞÌ?‰†@W¼?y @6’´?{1@ª7¬?:*/@ŠÁ?×@ŠÁ?Ä$@Šà¾?Èo@ù¸?a@ƒÑ´?Šu @æ±?oÛ@bή?ÔF+@ÿ{²?”wA@‰D¹?™x@M­Ð?æŒú?VíÜ?èýí?Fá?þS÷?´¦Ð?¡ß@Ä(Ä?eY@ù=²?9f'@’m¿?d ü?ôx½? û?4ξ?à“õ?Õ¹?D¦ù?Îϸ?Øž@vµ?@˜s´?AJ.@¥Ž·?vyH@f`»?Ø*@†ÒÌ?©‰ @åÚ?Wô?â?ó9ñ?pÔ?QÛ@avÅ?Oä@ù¿?fö?!¬¿?‹Ió?…FÀ?6?ò?„¿?Ìö?À½?Ÿ£@d3¾?k†@¼/½?d˜/@ÖQ¼?ÜB@e$¼?Ï},@¡íÇ?Ö@ `Ö?¾ò?U|â?øè?G2Ù?¦@ÂÅ?Úÿë?¢¹Æ?CÃó?¶žÆ?]Çø?;'Å?‘ú@,Á?¡Y@m/Â?óž @0Á?þ)@õ…»?/4@“º?Â{-@B×Ã?ã@Ó=Ò?|¯ò?äÝ?;ëà?Ç[Ê??Õø?¶ Ê?8l@4ëÇ?Q§ @NrÄ?@ßÂ?ZK!@Œ!¿?…& @¼?ÿ&@ý›¸?Ê8@¦÷·?aÏ5@O­¾?O‡@O¿Î?%Dú?'¦Ë?ú @ÁþÇ?)×@ êÅ?ç{@ÃÂ?¼$@þA½?Ķ!@q¹?ß#@=ô¶?QW5@ã´?/[L@‰Š´?èGB@¬¼?ÆÕ@¬$É?@ËAÂ?o@¬¾?¨¾@ ‹º?Îg&@Úã¸?¼£*@ÕX¸?ú3@\#³?0L@QV±?›^@qÚ°?R4N@ J¿?™‚@K¼?q0(@Ý~º?Ɖ1@­"»?p1@Õ‘¹?¶Ø2@3f´?õÅ<@o)°?-MQ@)˜®?d@“Œ¼? 1@(î»?³u4@†q»? Ú4@Åû¹?Ñù0@×´?ì_0@*´°?Ý'7@n®­?ê™Q@1s¼?^>0@Óº?«õ+@xº?%(@½7´?J¿(@Â¥°?¯|)@! ®?=1;@Ký¹?¢Û%@ŽG¸?ga$@¼Zµ?Ãp"@6Ô°?¨t!@„Þ®?×*@»r·?Z@s>µ?éD@ ²?ì9@c,¯?®Ž$@ó+µ?}ð@Íç±?Í)@ýf°?YØ@ܶ±?Íæ@lа?Dx@ÞD°?‹q@Z0¨?“ñS@K“¨?€Y@ØÔ©?E‚[@—)ª?Oa@TT¨?&£i@9§?!¤i@Ä/¥?-Èg@O§£?ú0f@R¢?x.d@é¡?$Ìi@vP¡?T*c@Õ ?ª‹U@©ÌŸ? 'M@#7Ÿ?ÀºE@“ŽŸ?@;@¼Ç?.ê4@ÈWœ?u2@èx›?rð5@xœ?Ë•;@·¿œ?0 =@Þ?Z =@;k¡?(ä;@?^£?¾i7@Uɤ?cg8@áv¥?3.:@|C¥?`ç7@9¥?œ3@@'¥?±I1@CG¦?Þ4@ Í¦?ª}2@DS¦?ã'3@K¥?.!5@þ”¥?f5@ËG¦?:Ž9@j*¦?‘ä<@\…¦?CzA@¾S¦?àD@[È¥?yG@Öó¥?5×J@ý2¥?6H@ÞÔ¢?õ…G@f£? ]F@+±£?)D@O£?ån@@}£?aA@Gé¡?X'C@’y¡?ÓI@˜Ç ?’3I@gž?1ºJ@Œœ?_ÇI@î’œ?oK@$éœ?µN@˜?DS@ã?¢jQ@"ãž?ùºS@ª¦Ÿ?ÿKR@³Ÿ?GUV@ œž?RmV@†Wœ?žU@€Íš?S@aåš?šÕR@‚´š?õ¶R@ó´›?ÞS@Ë3œ? •T@žœ?ªUT@ÐÊ›?„ÄQ@ž®›?ø²R@Fm›?˜O@ èš?ÁàM@C½š?9èO@š?k@S@ù‘š?ñðU@—‚š?«V@qš?Ø…X@7È™?“±X@»™?ŠòW@™?®V@z*˜?ì/W@²„—?`ŒN@:9–?,F@h:•?®>@ÞÔ”?‘„<@I2”?ø*>@‚d”?A£F@Ú–”?ÖÃO@ü“?–/T@Ÿ’?fsR@÷?;M@Éö?1çJ@ù“?köL@…Ž?¦ŠT@ˆB?€_@úZŒ?jÝW@]Ê‹?a©M@ï>?èM@¾¹?1ŠR@霚?\d@ð¥¤?ñ”m@Ò‚ª?Ë!\@2˜«?Ó¨Z@©œ¬?„i^@uÉ«?/c@#pª?ugh@Æ©?ëo@¶¢¦?Ÿ¹m@Þ¤?gm@/x£?Зm@ø¦¢?øm@Âk¡?Ëcd@—îŸ?bÁY@˜Ÿ?–ÅR@×îŸ?ñ±I@§3Ÿ?@Ý>@lyž?Ѝ6@|‡œ?JÄ4@f¸›?”C9@jv›?V=@ߘœ?²u>@TØž?JÎ?@_Ó ?ó¯9@Ï¢?Hæ5@úl£?¬7@\£?9v6@ïÁ£?]å5@Ì£?Õ—5@ez¤?nÜ8@”M¥?0š7@³ ¥?[Š5@Ť£?L7@‡¤?CX6@Îå¤?dÀ6@¥?[O:@Ýj¥?š‡@@$×¥?¯UC@飥?˺F@¥?˜=H@"§¤?:°H@ণ?4]I@z£?çF@ûC£?áéG@¨î¢?;F@i£?ÏzD@¤g¢?7‡C@ÚS¢?ÕF@Á¡?«ÍF@g5Ÿ?çcI@ùý?íH@^Ü?ÆH@Ö;?yN@…L?¯ÈR@)q?®S@¬ò?÷ T@ãŸ? ¢U@ˆ÷¯?YP@®§°?Ö°O@\Q°? žN@sõ¯?ÞT@`®?Ó]@Ê,¬?Ãÿh@C©? ¼n@^i§?úìn@¦?ë/p@at¤?ó–m@VÍ¡?¡je@:  ?ʾ\@/Ÿ?1›S@aŸ?ïTN@ÚО?×—E@`Œž?¹9@ô?<:@‚œ›?âƒ;@l›?  >@lœ?"b?@“Zž?! =@9‡Ÿ?É—7@Ç¡?"½5@·Y¡?ô‡3@*¢?ï3@Îâ¢?Â66@¬¢?ø‰9@ù•£?>9@äb£?6Ï7@Í ¢?Å9:@¢å¢?ûè7@Dp£?Åß6@DÛ£?šF;@¹¤?">@ç¥?’êA@üÓ¤?ºâD@{›¤?(ÒB@¸f¤?²E@A£?БH@9<£?Ñ‚H@üG£?JËF@Ü¢?Š%G@ߢ?Q*I@°ó¢?ÍE@á—¢?γB@I@¡?úE@²†Ÿ?ÔªE@ùNž?H@†ñ?s„J@ß0?¤õN@×iœ?*OP@…œ?“Q@ðÈœ?ÙS@Ê”? S@¥±¸?9~2@f9¹?s0@ôr¸?©°3@¤·?÷?<@q´?H@©°?˜X@õy­?Êb@báª?¼j@x©¨?ÝŒk@¾¦?/g@¯£?YJf@ Å ?Úh]@¬€Ÿ?:LU@¹ž?^.O@òô?0K@-ž?Á[C@Ô8?é×?@y´›?C‡<@ìT›?« =@Tœ?Ï =@†? 8<@'ªž?ÅÜ6@æÌŸ?:h3@“H ?<3@&¡?^4@ o¡?ÃÑ6@ð¢?ÞO9@¯*¢?v9@â¡?\=@h$¡?D~=@ØZ¡?ûá<@¢y¢?[„=@od£?¡<@Ø£?Dz@@Èý£?HA@i,£?Ô>@Ý£¢?éB@´Î¢?™;G@–¢?›ÈE@v»¢?~çE@Ûc¢?œCF@T•¢?ë­J@·¢?z F@ÃÏ¡?ö%A@/Ó ?ë;E@l… ?J€D@e¯ž?›F@s¡ž?nµK@šÜ?œEN@Üœ?¹Q@õ;œ?¯ÉR@ë—›?NØR@‡›?w½R@s8Æ?„Õ@iöÇ?¤/@%öÆ?͈@ð°Â?ô‹@:2½?Ȧ'@’Û¸?}»:@á®´?jhL@°?òÜZ@tP¬?*oa@”—¨?ìb@»Æ¤?"Èc@6Ž¡?n\@:ñŸ?ÌdP@3€ž?d L@Ã@ÅX›?l<@‚0œ?„:@j.?¡H9@1í?Y5@uªž?15@±òž?×Ú6@xÀŸ?ó·4@ºìŸ?Vl6@SÛ ?÷8@- ?´‡>@yÌŸ?b‘A@¬ÎŸ?‘ü@@°è ?Ù>@Æ¢? “=@|¢?lQ>@ü¢?ØC>@Ä¡?¯^<@<Ä¡?æÿ<@¤¶¢?–VB@Ó¢?‘´C@Dó¡?‡îF@TQ¢?ÿ8G@Ö‡¢?¿WJ@Ô]¢?åG@Ûâ¡?C@8ë ?ùD@'& ?ñF@§ÐŸ?ÎõI@·rž?M@7fž?BUQ@N$?ÖQ@¨å›?zR@-¹›?•P@žòš?•íR@J¯Ô?«gõ?§åÖ?=eï?;eÖ?Ží?÷§Ñ?æ&ü?› Ë?}ó @+óÄ?V@4E¿?]›0@P×·?c³D@•ç±?‘ºM@+`¬?tAT@—C¨?;˜Z@Ϊ£?úU@€¾ ?ôM@¢}ž?(rM@ÿœ?aìU@8Uœ?S%Q@íì›?Š»J@Ѓ›?AD@b›?Qé=@«Tœ?Ù%=@—öœ?9@?B¢6@ü:?`£:@±Þ?6@ˆ·ž?¿4@mBŸ?¤7@‘Ÿ?{9@1„ž?’£@@zŸž?)…B@:KŸ?/Æ?@g ?Ƴ=@_Ï ?t¯;@z¡?ËC<@"K¡?!~;@–H¡?{î9@Ë¡?ô=@—¡?ëC@ÑK¡?‰óH@¦ë¡?¦ÍI@Ás¡?ðMK@¸ò¡?m®K@,í¡?ÉöI@\ ?’+G@Kh ?üJ@;Ÿ?\òK@áž?iO@პ?F—P@–ìœ?ð6P@~Ù›?µðO@À©š?ÜM@mZš?Q©Q@)#Þ?Ùå?ïéÞ?¢ÝÝ?6TÝ?ô¢Ý? þÚ?Yhã?¡(Ø?íÚô?²ÉÑ?vö@Ý,Ê?~o@”žÁ?S9.@¹?].;@¨•±?ÿýC@ªÅ«?—|M@uk§?ésM@ø„¢?ºJ@Žòž?Ú˜L@H?l M@bß›?8“O@š9›?¶¾O@ Cš?ÿüK@%›?‘G@AŒ›?ŸŠB@М?þŽ=@³Žœ?z<@Åjœ?L'9@}?^4@ÒGž?~3@ Ã?’5@ÜK?|º9@Ü-?‰?@̬?bö@@Òdž?¹ >@ªÜž?"µ<@++ ?KÓ<@ç‘ ?[®;@@¡?`<@XÓ ?´U<@XÞ ?†-D@!Ç ?¬I@2¡?´ŠK@O¡?kãJ@eÒ ?¾'K@q» ?°AO@¤¡?„üM@©A ?šM@ðÊŸ?ÖO@ áž?éfP@v ž?=Q@¾“?O@㯛?ç>M@&¶š?ê³L@³¿š?ÄÜP@ÓÚ?`µù?KzÚ?`Bô?KLÚ?fÆó?Õ±Ù?0ô?mUÛ?·ö?ý>Ø?ÿ @±Ò?yâ @}ñÉ?ñ·@BîÀ?öã+@̱¸?³F8@&†±?¸bA@³8«?P.E@°Ü¤?2¢F@H  ?æsD@ô?LF@Ì?›?ã¦K@Xû™?xÌP@™?©½R@P]™?¶PP@±Ë™?*ÛL@ñ\›?·E@ï³›?/>@Å›? þ8@%ûœ?°‰3@Ûmœ?«œ0@¶›?Èb6@Èš?Cê9@'þ›?öe>@% ?±®>@I)?ÄW=@URž?…k;@‹Ÿ?:²;@ð•Ÿ?\>@ ¬Ÿ?´">@, ?‰D@"‘ ?Q J@eùŸ?kAI@àÞŸ?‚øI@zg ?+qJ@ø ?^HN@¨„ ?P Q@I ?8£O@ù¥Ÿ?D7R@(ôž?ðQ@Æ7ž?tÜN@Îe?‘P@þ›?±äK@1½›?äbP@’ œ?§çR@Fr×?ðf@ÕÕ?µ @ìÃÔ?¾> @t©Õ?é @NÖ?‚é @¢V×?¡Ç @eÒÕ?©B @êÑ?J~@ÔçÉ?îÇ@ÃÆÁ?U,+@ò’¸?“j6@»Î¯?,3:@lç§?âz<@ä¡?;@Aß?Ìé>@ŒN›?ÛH@Ýݘ? L@ꤗ?!àN@sè—? ÑP@1x˜?ĺP@éeš?YI@ ùš?¨A@_Å›?kú7@Uj›?\›1@ š?«w2@çÈ™?PJ6@Nš?Ô:@竚?5T=@¥ª›?ÿç>@Ï1œ?X<@¥­?ÞÐ:@_6ž?ð>@@}ž?ØÕ@@Oêž?)/B@³Ÿ?Ñ$H@·ÆŸ?l)G@wõž?Á H@+?Ÿ?:¡F@“Ÿ?µJ@õŸ?ÞN@§¾Ÿ?f€Q@8îž?x•U@p4Ÿ?p/U@,ß?^ÖS@åõœ?¾S@Ä›?yS@ ß›?IšR@;:œ?åU@y¶Õ?$}@…ËÓ?øô@VLÓ?k@'Ó?,þ@ÂoÓ?õ @:Ô?IÅ@nÌÔ?“@4ÅÒ?ø½@¹Î?Áj@"XÈ?Dõ$@ää¿?(,(@‹‘¶?í~-@™©¬?8(1@Úš¤?¸®2@!*Ÿ? 7@ï›?Hæ;@€6˜?gA@™–?ŠjE@[ä–?£bL@¬k˜?ÍÿO@?q™?¨—M@;„š?^“C@š?ñ8@†²™?ð°0@ö–™?ÜE2@cI™?œÕ5@Á™?ú:@+ë™?Z<@àaš?ÜV>@ÿâš?O2=@;©œ? '?@2.?vA@ÓŒ?ñsB@xgž?oD@ž?w¯F@Qyž?x³G@@Íš™?fY@@ÈÚš?Í:?@@õ›?9îA@÷Œœ?4/B@Ùñœ?-^C@j\?*kC@˜h?q¨E@öÁ?SF@;ž?±qH@í—?ŠJ@“º?º`N@Ež?dŠU@{‚ž?ÑW@@@ž?+%U@ô ?ÅT@ð`›?ÖçS@`3›?…»V@‚›?¼X@}WË?+=ó?Ü Ì?"à@ºèË?ÞÅ @ÞÍ?¡÷@øÐ?­%@ÀÏ?n$@ænÏ?šÇ @Ú8Ï?±- @œÜÎ?T @Æ7Ï?CÅ@¨âÊ?ð1@¸ÑÂ?;@Óä¸?ù@k¯­?tÉ@뤣?Š(@íë›?e–&@ ’—?II0@ä„•?¾Ë7@∕?ŒÇ=@3ו?MFA@—?’ªE@d­—?$ÉB@c{˜?ÓÎ:@’±˜?„Ô3@ˆ˜?êÙ8@¨—?çB<@†\—?8=@(˜?óg>@±²˜?ÑÇ@@±Dš?P„C@©—›?«E@É—›?i5B@ˆ”›?º-C@ÔEœ?«tC@ hœ?ņE@ôÝœ?†zH@<?´K@B¸œ?hM@«Ó?e¦U@Ý-ž?Ñ U@O‘?Ž“U@éÈœ?)4U@Ëœ?ŸÇW@}Ä›?…ÁZ@Gy›?ÿÝW@Ñ¡Â?ÁëÆ?˜‘Ã?°¾×?B(Ä?æÀë?ØÛÈ?*@ÿÊ?KV@êÌ?µç@ª«Í?s!@A¸Î?¼ê$@xÎ?ž$@A Î?!@JÊ?G@ÔâÃ?¥Û@¡z¼?ïï@úð²?w} @ë«§?÷@:lž?Éa@¹ð˜?7x)@gЕ?Œ¬0@ŽÙ”?Ö1@©`”?U=@*¿•?ÛÀ@@Í—?õC@»—?¼ã<@Jî—?Õ8;@áD—?$i;@†–?™“;@z—?ì;@1]—?qÓ?@Ó˜?ްB@ö¤™?XfE@ËÙš? nD@Ýdš?x¨B@Ìýš?ÝaA@u>›?YA@€¡›?…ÀG@³œ?דK@øë›?/O@0l?0GS@Uä?ÔÐU@5'?KU@~Èœ?*ßU@·’œ?^¸Y@Å œ?-NZ@Nî›?=¡T@œ€¼?c÷¨? ½?åð´?yʾ?³úÏ?—³Â?%%î?MÄ?Å:@_È?Ñ€@oMÌ?ÇÈ@q­Í?Ä$@³¦Í?n;(@`ÉË?wh&@Ì_Ç?ö#!@€Â?1@Ã_½?a@`©µ?¼e @ç2«?Š@4%¡?ƒ«@Esš?ä¦ @,'–?Gv'@Xý“?g.@í¾“?ŒÄ6@¼|”?c¡=@ à•?ûìE@RÌ–?©E@÷¿–?ú;@â•?Ú<@rL–?a9@2ÿ•?óù=@ Ž–?«@@ô—?fD@yŽ™?ÇAE@§Ê™?aÇB@ج™??@Ä*š?1?@¹Œš?PÀB@í:›?îH@ñ›?ÏO@u:œ?›ÙR@øÅ?‘5U@pÏ?ª?U@²#?ymX@$¼›?‘1Z@Và›?Y@ļ›?CcS@R}¼?4QŸ?â¸?ÛЧ?ɼ?üg¿?5Ç»?ÃÕ?r¾?Gí?TËÃ?L%@]­È?0Ä@:JË?’ß @Ê•Î?>*,@ìêÇ?²Ù(@Ï&È?ºù(@³–¿?"@;Úº?tØ@ZEµ?g@‰d¬?Ï @öà¢?ô¢@ºØ›? g@Y–?¯n @XM“?A¯)@×0“?$„3@C”?-Ÿ<@¢×”?öH@c}•?šµB@q •?»ÿ;@Ê=•?Úv7@©t•?Q¶:@ƒÂ”?û?@@+U–?Ó·A@éw˜?%D@¦ƒ˜?sOD@Gñ˜?·jB@ÂT™?Ú»A@r¡™?ÿ B@6Óš?šF@D´›?íL@$.›?Ì|R@èmœ?ÉùR@Bc?õAU@%sœ?X@l‚›?ûØW@ :œ?&ªT@áv›?t¿S@"«¾?ù3?vϺ?¦½¥?ø¸?€¸?×/¹?‘.Â?±«º?¯ìÖ?¦Ò½?ÈÕñ?ìÁÂ?lJ @Å?L@dÄ?¬Ê!@êIÈ?%Â+@TAÄ?iu+@:¥¼?0%(@›!·?»#@¬²?}¤@Ó¬?H @ø¤?Y @çœ?‚@––?¯@”?ã°#@9,“?HB.@†“?T:@¼E”?qµE@Ãá”?…:C@ •?³M;@N•?C9@Ît”?y¢<@ó§”?àï>@I¿–?g=A@A—?0¡E@®˜?l¶E@;h˜?YøC@N÷˜?²AC@*¼™?@ÅF@FÖš?ÎøH@óU›?kºJ@+›?•O@ Œœ?=S@k}œ?FXU@iÀš?¥U@íP›?âV@Ð7›?”DV@›Í¾?*§?}Õ¿?[ ²?Ë›¹?˜7´?s·?¼¼?9ƒ·?¥ Ç?¹qº?!Õá?‹i½?Qrþ?w#Ã?‡M@ÃÍÄ?¸@oßÂ?ν$@ûR¼?ˆ.&@/p¸?tÓ(@Ft³?N&@\'¯?uL@¬ª?Ù@Ï̤?Y @ìnž?î3 @ç ˜?mõ@”?x=@àt’? ¼+@@É’?}9<@Äç“? TG@¶”?¨¢B@»”??÷<@+\”?uR:@ ”?‡Ž<@Ö ”?ŽÎ?@þ•?VîB@½–?¬~H@¥,—?A!J@æé—?rG@I˜?!|G@")™?âeI@$š?LÏE@Ø$›?D^J@X›?á‚N@gS›?áKS@¯Šš?âT@xKš?*X@¸š?}ˆZ@öÂ?³T¶?bôÀ?j½?;ü¼?jº?P»?%º?Dÿ·?˜®Æ?Cá´?DÙ?¬›½?–/ø?V Á?´ @t£¾?Mz@)B¹?©@Q·?m©"@§!³?N—&@rȱ?öâ*@i­«?b(!@ÁŸ§?5Û@ò£?¨ @ÌT ?l@:›š?§ð@¡W•?la@OZ’?ð}-@† “?N@@âK“?úE@îØ“?ÌúA@yþ“?mN=@““?y,=@÷’?`Ò=@:”?‡ B@?2•?~ÛG@€þ•?û…L@Û–?h¡J@Ú—? H@M©˜?ë¿F@™?U’B@™?F@ÚIš?_ N@iš?©OS@j—š?¸ÌR@⦙? Y@Zš?Ûš\@ ÏË?·UÕ?ž ¼?}Ç?ûÛÈ?¦Õ×?ÛÀ?‰à?tÍ·?6vì?evº?Þòÿ?M¼?Âs@¥Ðµ?;@¹V³?øÈ@ ƒ°?+d!@»4«?û!@eާ?„š@@u’?€]D@͉’?>ºC@ªn’?÷€A@l’?dÿ>@Ô’??@˜}“?/G@ ß”?/J@–?OJ@ƒ)–?éÑF@3L–?À]@@eÌ–?õ@@yë—?hæF@ 6™?öëK@pLš?1R@Åš?™ÝT@)Ô™?$ÝX@›†Å?ª´@5$¶?lŽ@Æô­?5ã@´-£?éÄ@ô ?òä@Û? Ý@®ÓŸ?Ÿ»@DQ ?;\@FÓž?¿³@£Å–?z@­u“?à{.@+!‘?…>@1Þ‘?e/F@±’?~E@Ù’?DÐ?@lj‘?F?@,q’?÷C@ù8“?_ãE@Œ~”?¬I@À•?m{G@ø¿•?\=B@t¢•?ë @@òµ–?‘îA@»R˜?ÛG@QB™?æÕL@ºà™?_R@•gš?|OU@›õª?¹¥ @]ÁŸ?x+ @âž?‘Ä@Ʊ?Â@þÁ?Ýe!@ež?˜ð@œU›?r@ßs—?Ä@%h’?.@§˜‘?èø@@@‘?˜eH@þ¨‘?Ö;E@™_‘?8E@@¤Ú‘?Y@@ü‘?°pC@Û’?÷rE@Ï“?¿óG@6=•?7ÅF@窕?LÇE@º>–?k'@@x”—?­B@~ ˜?èžF@Ë+™?¶O@Ê™? V@PN˜?ðj@Ç?4ˆ@Na˜?ªà@\?»˜#@´A˜?êË@â?›?M&@)-—?¼‰@Z«‘?¯/@‘?Fÿ=@Œ›?Õ G@‘g?ÃðD@Ó‘?«>A@Çy‘?÷?@>b‘?§¨@@•E’?ÒˆC@@”?ïI@¹D•?)J@yA–? MC@{G–?ü±@@÷\–??C@åR—?ŸK@¡ë—?„\S@‚¡¤?e: @¢‡›?ù@µž?‰.@ËŽ›?-#@¹ž?v@?žš?„Ç@ð'–?±f@©À‘?¯º.@Ëy?4ð?@º—?#*J@f?$|F@òÝ?Z`@@º;‘?¤î=@u‘?Ú¿@@)“? I@ûš”?ÒŽJ@ï•?®eH@O•?h‰G@F¦?†wB@«¨¥?h¦A@•¯¥?;A@Ủ?„’@@áܦ?±‰@@mG¥?âO;@8L¤?øœ8@ t£?|Å2@G«£?À1/@ÓÌ£?øÖ,@P£?ÿ/@­í¡?K.@‡¢?õà,@pÉ¢?ÇR,@¤t£?xº-@óc£?Æa/@Vž¤?Ï%0@{|¤?IÄ.@e%¤?A.@¹â£?¸)-@Hï¤?VÎ-@á¥?ß-@Ë¥?c»,@Lÿ¥?Ô&@Ï ¦?Á##@þ"¦?Þi@&«¥?4³@"ë¥?¡d@!`¦?Ð@4ˆ¦? (@¸'§?vâ@b¦?k*@`¥?ý#@M!¥?8 @µÆ¤?¬ä @tÏ£?gÕ@Õ£?Ö@æ¤?RŸ@¹i¥? ^$@Bߥ?!‘*@F?§?Õ,@‡‰§?Õ.@yø§?üN.@ší§? -@¬Ä§?ì›-@z ¨?®Í)@ ¬§?/$'@„§?9â%@›¨?¯à"@è©?!^@úà©?Ü4@Þª?@ @!F«?"^@ûü¬?Å–@Ž®?¸¸@Ü­?ØP@ºZ¬?Ûá@|‘­?fÉ@9´?µ@º?ž’@÷À?'™@ª¾Æ?¾¸ @‰ÇÉ?­î@¹ÓÌ?4‡ü?CÁË?4‘ë?ºÆÈ?Õ˜Ü?Tu½?%èÑ?¦´?‘†Ð?ká³?¢ôè?¾A¼? Jù?´Å?.2@^,Í?6š@êùÏ?ôJ@ÍÑ?pµ&@v;Ô?:/@X"Ö?ÓÏ-@¸4×?–%0@‚AÖ?dí-@3Ô?Ä‹/@|Ñ?B°0@F=Í? J6@V É?ªÐ7@žxÅ?N‹;@­JÁ?ÓH>@l'¿?Sï>@Ãs¼?Fß<@Z¹?œ*>@ µ?$@@=|²? |<@j•¯?Ñ`7@ l¬?Ì09@¦¨? ×8@D¥?v6@¤ £?ÈŒ/@’£?ú¡1@Ïï¤?‡<@þé¤?œTK@qd£?ÛSX@<ß¡?ñP@]  ?¥G@S‡ž?ð}E@ˆñ?Y@A_¤?28@åý¢?%u2@v=¢?Ïæ/@KQ¢?éÈ-@¶ë¡?b(.@o´¡?i;-@¶g¡?Œå/@p@¡?œ±.@n¢?*2@Ø\£?04@ö4¤?m2@Æo¤?o®2@y#¤?RI2@öǤ?“o1@a¥?ªÜ1@³E¥?œý0@~ì¥?k[-@M8¦?LŒ(@©?¦?,ë#@r¦?¤µ@ðÂ¥?ÙZ@嫦?fÿ@¹à¦?œÿ@?)§?8¯@“̦?Æ@G§?I-@Në¦?D@k4§? ã@J÷¥?¿‘ @ö¤?žö @\¤?…û @Øm¤?nÝ@Xª¤?ë³@U¥?À†@ ¦?ê@ãF§?½½#@¨?TI(@¥u¨?CL.@©? Ð/@;‡©?†Ó-@ËM©?FÎ,@vX©?:*@AÇ©?ì´"@ãDª?e@d «?@˜«?ìž@0¹¬?Ñ%@!À®?r¦@׳®? @Yv§?ÍDQ@\'¦?@K@éú¥?YbH@ƒq¦?©åF@Ùt¦?*>@†Ã¥?œé5@©3¤?˜€0@1²¢?u.@ôŽ¡?¥Ã.@Õž¡?bt/@ð ¡?Í1@È¡?âò3@¥í¡?د4@p¢?xõ8@ùÊ£?iC6@Œ£?üö8@Ú­£?Ý(7@ Š£?xÝ2@¾£?P/@T¤?©r-@*ç¤?d-@¦?ÄS,@åí¦?…)@ë¦?ó«$@`Ô¦?¥ô@óí¦?¬(@¹³§?-@@`¨?uÑ@Aw¨?J@ħ?p/@øF§?©Š@ß§?Ÿã@L§?ÿ@F»§?3«@™:§?å @z´¦?ìÇ @ ¦?B¹ @hÃ¥?CÏ @Öä¥?¶T @÷Ó¥?Û@äÝ¥?el@j!¦?2Å@£I§?—5 @Ø‹¨?A$@­ª?^)@¶¡«?Öo)@L³¬?w)@Ü­?š{$@Yî¬?À¥@ø­?¼x@öÀ­?M@Â@¯?ë¶@Á¯?)ê@"”®?d” @ÙM¨?Þ¡Z@Íߦ?òÇX@WP¦?”S@@—¥?ú—E@™_¤?`ë:@1#£?¹w4@{Í¡?3@P¡?f3@Н¡?ÿ%6@¯¡?L=@Œ*¢?të@@ס?Ì1?@ì¢?ÄŠ>@ùu¤?«OA@Ðë¤?0;<@Hˆ£?Ñj4@õ £?o—-@„9¤?°+@Àï¤?Z]*@ø¥?Š ,@·ç¦?¤ô,@?…§?Ÿ+@¨? Ñ(@ãA¨?”a%@%-¨?4Ê @Àç§? ×@–¨? Ä@Wç?+”@t §?3´@Jï¦?Dô@¼ä§?Ô¼@±§?£@"‘§?! @‘ù§?óU @2¨?þý@âm§?ʈ@ìO¦?< @ˆT¦?¤æ@Žp¦?ùA@£±¥?’÷@Ȥ?^v @5\¤?YE@Øu¥?³û@x?§?Pó@VÊ©?×@ÉÁ¬?n{@ÞØ®?X @*ܯ?D£@Ä*°?M@Ox°?’Â@„ñ±?Š÷@Ñh±?•@«Ú°?£ @á¨?š§d@/‹§?Éz^@¯¥?ÀaT@Þ¡£?˜SH@$å¢?ø‰@@ñH¢?Àä=@Îý¡?$<@éî¡?ïO>@V ¢?eSH@4©¢?®.K@‚û¢?¿F@ê£?ÙdC@-á£?ÖU>@Òþ¢?í„3@âš¡?è9.@»d¢?š–,@­y£?¦«,@˜a¤?o0.@ö¦?š,@Tt§?ù‚/@T_¨?g=/@@ã¨?Ä-@Í©?Êû)@`á¨?,æ%@…¨?H4@È”§?iÚ@ ?§?¬õ@’¦§?šD@ßþ¦?­> @wê§?þŒ @1§?Í!@K›¦?Y @iõ¥?bâ@¥à¦?[¼@ʦ?fÛ@ñœ¦?{æ@èå¦?°@bI¦?m5ý?œ›¥?ü?±G¤?âhü?Tü£?"ø@ ©£?Z@¤?·@íJ¦?YÀ@K‹©?jµ @­?Žš@ë0°?i@‘þ±?*«@Ìò?ý@É'´?^@Dèµ?ÒD@~@µ?‹p@ §?6Çf@£X¥?òÐ^@+Å£?9ÌW@ ?£?ÉnQ@ºê¢?Î-N@ÂÏ¢?î=J@u¢? âI@£?QñJ@Âp¢? J@xÍ¢?zB@¬£?’g8@ªí ?£±1@ãË ?#ù+@€¡?n8+@Ž‚¢?œ-@¼¸£?© ,@`­¤?ו+@ œ¥?”F,@;§?/*@†¨?­',@ôÁ¨?L+@[f©?ÂX'@°Ž©?óI"@ͨ?k½@~ǧ?y@}|§?d„ @H[§?^) @-‰¦?­@@Îm¦?R@áÙ¦?ú´@Kɦ?S¿ÿ?Ñ}¥?Áèý?o”¥?Dý?îé¥?ó¾ü?’³?uÖ@8´?¥V@=•¶?ß @,1·?º< @+š·?˜ @·?½@§¹?¤@éL»?„„@?à¼?†@k Á?êÖ@VúÄ?T@{éÆ?1Ÿ@¹õÆ?‘Xþ?ƨÈ?uRý?ó›Ê?ñJþ?’%Ì?1º@‰ß¡? §\@ëi¡?HpP@b¡?¡D@g0¡?/½<@Iì ?Ò©6@h¿ ?bx3@n¡?#0@b5¢?Ô/@ê¢?àÀ-@cð¡?È»,@œ<¢?Ýh.@þ·¢?ê1@?«£?éL3@ö ¤?Û0@nߣ?5I(@ú¤?× @‘ª¥?–Ì@}»¦?UZ@&À§?#ß @LX©?®ø @3ª?¿`@®X«?DŽ@ît­? @—®?Ym@K‹°?ž®@ d±?7:@ ³?×Õ@¦”µ?W@Ix¶?¨É@áp¸?+˜@A¹?å@¾5º?5ð@º±»?Ê!@–¥¼?Ø¥@®½?úz @ØŒ½?°¬ @¤¤¾?T@Iݾ?”@Ð’À?†@¦|Ã?ÆŠú?ýÇ?ø?,^Ê?¶ô?f°Ê?Öð?=¦Í?N,ó?ºçÎ?õó?Ä`Î?£Wõ?·Œ¡?õzT@ëí ?jÙF@-l ?‰D>@ª¾ ?Xò8@!R ?¶i5@!i ?Ãe1@Q'¡?}µ1@wê¡?ù".@x¡?>ò,@¿ù ?à-@ª*¢?‹01@×¢?ýœ4@ú £?ͽ2@«£?Þ*@¯â¢?&!@d×£?Æ9@î¼¥?q/@:M§?vU@ é¨?œ5@HØ©?Ï"@ìãª?Ñx@´¬?5l@ÍÕ­? @õ°?É@Nö²?+ @ºXµ?õ`@ëx·?¬@—m¹?Bó@5õº?%U@Ï+¼?‹æ@[̼?ÿ>@{õ¼?3@­¶¾?"Õ @wÁ?U @pÂ?eÈ@sfÁ?„ñ@AÎÂ?§ƒ@ ÍÂ?©šý?žÕÄ?Ážõ?¾Ç?Lï?¬vÊ?ÐÉî?¥ÆÍ?:ì?™Ì??Æõ?}[Î?Ƈó?tYÊ?éì?LýŸ?цJ@ÊŸ?•…E@§1 ? K<@¡îŸ?Šã4@²BŸ?ð.4@ØAŸ?Æ&1@‡ ?ï5-@ß¡?ŽQ,@Õº ?øÁ.@Ö¡?Ä(2@iÜ¡?5@ù©¢?Z3@:¢?o)@å¡?´!@˜9¢?˜œ@6£?È®@ø¦?f'@V¨?!f@P©?zí@vª?«ï@Q¬?œÒ @·¼­?Ò"@]ü®?ß"@)2±?ØÍ@?´?Ç‚@¹Â·?Ü@`¯¹?(@ë‚»?Ç@5¼?Ì„@Uè¼?i@¹j½?j@ù ¿?9¯ @ß·Á?f‚ @â=Ã?m8 @bæÃ?÷~ @ËÄ?O @-‹Ä?Ü@ºuÅ?kýø?PÛÆ?Ãî?fqÈ?´eð?âlÊ?¾õ?¹ÝË?·H@Õ‘É?%û?äVÄ?4Oè?Ÿ? sE@ï ?6Ë<@nŸŸ?TY5@]•ž?œ6@Ñž?Á×3@<Ÿ?žÌ/@±–Ÿ?|U-@ÑòŸ?Ãü-@÷ ?y2@X6¡?µK5@É0¢?ëò0@R¢?@(@±‰¡?]@…Å¡?Ÿ@ª¯¢?hþ@ïE¤?’@Fº¦?Y@M¨?!@ª©?æÈ"@¶J¬?äN"@vw®?fÿ @ô†¯?ès@‰±?Ü@E5³?_€@¢‘¶?¯@J^¸?ˆÂ@øÇ¹?§í@Ûg»?oç@ªÈ¾?–é@ª2Á?ãÈ@éàÃ?y¯@—ËÃ?ù@çýÃ?œ@íÃ?î@ -Ã?,º@MmÂ?Nœ @ÏMÁ?Ë @^ÕÁ?÷õ?a5Å?h÷?{ÂÉ?É0@eÌ?ˆ@ÜÇÆ?”b@./¼?èéñ?·Ÿ?¥9@uŸ?€¬2@ûwž?ö¼3@0}ž? 4@%°ž?aÿ1@z&Ÿ?¸=-@ÛŸ?Ÿ,@‚òŸ?^þ/@ZÁ ?ié2@dð ?jr-@¡?‘t%@u ¡?ù¢@|·¡?¯÷@£?85@F{¤?‘È@¦?’J @j§§?°%@µ*©?!/(@Y«?‰*(@@æ­?5•$@D°°?8Y!@øÉ²?Ž%@¨Ü´?Œ×@=!·?)@머?³À@ Ñ¹?+)@×3½?è.@ìDÀ?uÅ@ÔÂ?¾&@‚¢Ã?¼@ð%Ã?«Ë@z“Â? S@_aÁ?¼X@DÀ?† @-BÁ?“7 @$¹¿?rF@ UÀ?–ü?%(Á?ù @€Å?nÏ@`!Ë?£[ @ÔûÈ?e7@°½¾?)ü?¶ž?62@_¼?ì'1@G“?åJ2@©Û?!Å1@5#ž?|×/@•§ž?ÅT-@ÏÛž?Xæ/@/íŸ?}‚3@M.¡?Ê™1@|ˆ ?7B(@L« ? ¨@µb¡?ÌÏ@]¢? 2@x¤?Os@#¢¤?nJ"@…‹¦?m£&@G‰¨?ë*@¨Oª?Å)@÷ʬ?A'@R±?²í#@/ܳ?UÜ!@U©¶?Ì×@gþ¸?i@‘qº?w¨@ÿq»?®@Z×¾?EÏ@C¡Á?¯¨"@‚ìÂ?+Ø!@²ÏÁ?o¹@kÝ¿?ÌÂ@*ª¿?Dm@ÍŸÀ?`î@'€¿?8{@¸¿?².@о?˘@«e¿?á @€{Æ?Œ¬@ãœ?§"2@)Ìœ?$q2@¹¡?“3@IË?{¾3@¨4ž?Óa3@Pýž?<þ4@~‘Ÿ?2Ÿ6@ Ÿ?¹ë4@h± ?ŸÊ,@oÌ ?={%@V ¡?c¢@ûR¢?Š™@––£?˜‹@g@¤?Ó"@üý¥?óÀ%@‡œ§?‹(@ð—©?bS*@ɬ?>(@F˜¯?ñ&@m÷²?ß%@6¶?3‡"@&4¸?F@¹º?/m@Ÿ½??µ!@:ÆÀ?>ê$@WžÃ?wâ&@…Â?ʱ%@@è Î?Hô@ ?Ñ?_Ð@)Žœ?«½7@¥P?;l8@Iž?)`7@'Ÿ?'{9@eöŸ?\3<@À¡?ÿb9@7R¡?vL3@®é ?b3+@@à?kN$@šÀ¡?t@»]£?bY@Öª¤?È9#@ßP¥?À©)@P§?*@Á¯©?•.)@+x­?§×'@”±?‘&@U¤³?8[%@ ·?~ƒ'@™º?`Æ?„t-@šÃ?*@IÂ?®j%@Q"Á?'Ê!@}Â?&ð @9¬Â?Rk @[ÃÃ?ûñ@ÖKÄ? P"@»CÄ?"@õÄ?—P@M¹Ã?{w@ûÅ?L‹@æÈ?÷b@.±Ì?Šü%@›Ð?@)@xž?Â;@¹åŸ?à$>@µá ?)‘?@Ÿ¡?.=@ž¡?³™8@Á¡?¿‹0@ßT¢?~)@ó6£?–&@¤?>Í#@s¯¥?1w"@Úì§?>4$@%ª?Ñö&@g˜¬?W*@¾¯?b,@,Ʋ?d1@c¸µ?ãÚ1@‰·?¾Ø1@ƒ”»?C>4@ËëÀ?¸i8@–ðÄ?á–8@%†Æ?23@Æ?±À.@mrÄ?× +@¡5Ã?7:(@–‹Â?E&@{¢Â?е%@DÃ?íT%@ºêÄ?I#@ÐÆ?ë†#@í2Æ?Šo$@…KÆ?â!"@0QÇ?QÑ@ ÕÈ?{@œ»É? á"@…øË?Û *@ýKÑ?â¬-@S# ?9†<@½’¡?ß=@ZM¢?¥b>@VÅ¢?`¿:@Å¢?Õ4@‰5£?‚¨.@X@¤?rÖ(@‰¥?\B%@j§?HÐ#@s1¨?A`%@·šª?ã'@4Ê­?2,+@ S°?y/@C¯²?Ç2@‚µ?–¯4@©A·?Q=5@d¼?¡º5@ gÁ?Ûè5@ÝHÃ?Õ5@OÅ?Z4@ØmÅ?ž~/@ShÄ?Sü,@T1Ã?Üð)@É!Ã?íí%@ÉÃ?• #@öÂÃ?S&@CXÅ?ã&@–ûÆ?O?&@ÕFÈ?ä|'@ýôÈ?Ø&@ÎÉ?³6#@ØÊ?ª$@CÓË?ðn'@ŠxÍ?‹W-@j™Ñ?*ï/@õŒ£? |:@IŤ?4ë:@ ¥?&®7@Òw¤?S¼4@÷ñ¤?ø½/@*ø¥?jK.@}L§?•A-@©ç¨?f+@ËȪ?o(,@æÇ¬?EÒ,@ƒ<®?Oñ0@"•°?£$4@3ê²?f.5@]Ò´?¡6@™%·?{+7@Eº?>N8@ä¿?|G5@¥Á?—-1@:Â?c 0@{Ã?CV2@غÃ?ž¸-@¸Â?‰º(@£Á?!Z%@„Â?Uà"@MçÂ?—¼"@ŸÄ?ë"@.ÓÆ?cC$@ržÈ?&@’@Ê?xî'@œË?ìÎ"@PÌ?{ø"@½NÎ?\·%@;‘Ð?k+@<™Ó?np/@ù£¥?lN9@}‚¦?«8@la¦?V5@h3¦?æÃ0@¾7§?u8.@?Q©?´=.@yDª?¹à/@ï’«?e2@J»­?ÐZ4@ϰ?÷C5@b5²?ø6@%e´?‰Ç6@ÄGµ?çó7@·¶?5Z:@1%º?ÈÜ;@ó/¿?ýu:@$ÃÁ? `6@fÂ?»K4@Â?ž/@ž¢Â?ú0@uYÁ?V,@ì À?H%@#¾¿?D"@/Á?çq @@UÃ?[%#@5ÅÅ? &@…¶Ç?y'@îtÉ?â$@· Ë?I-#@àƒÌ?Jí!@ ãÍ?‘"@ˆ Ñ?âß'@ü•Ô?¯9+@§Ÿ¦?+è9@8`§?9@på§?®¡5@±³¨?æö1@¿¿ª?í;0@cj¬?¼Â1@“‚®?Õ#4@û¯?ë8@„½±?;@â´?0 ;@,œµ?h;@ç¶?°²<@x1·?«Ú=@Þèº?Ão<@G¾?x=@”Á?yf;@·Â?Q:@á¥Á?` 8@‚Á?—J3@æ9À?Õ.@7\¿?ñR*@Eº¿?/¼(@C4À?ýJ$@œ„Â?Ï%@ \Ä?‘z(@;ÕÄ?C¦*@àÅ?ƒt)@¾dÆ?¥ò%@Ê{É?D%@lFÌ?ت'@Å1Ï?vã*@C4Ò?/T-@~§?Œv9@±É§?Âì6@?Ö¨?>b4@Š)ª?ߣ0@¡¬?Î0@B–®?1@ˆí°?Sc5@]̲?%ž;@¯Ç´?QÉ=@}¶?™æ?@N_·?4 A@{L¹?í@@C »?+=?@¬Ü¾?¸w?@Ü`Á?D1>@¦÷Á?¹É=@_ÖÂ?Ð?@EÂ?Ý:@(À?ë4@Ö÷¿?so/@דÀ? +@ôÍÀ?_x)@]xÂ? Z)@„Å?(µ*@M8Å?C!-@[Å?Ýó,@‹®Ä?jå*@cÆ?Öq+@)!Ç?8g,@lUÊ?°1/@[‡Í? C0@ §?ˆ‹6@³Ÿ¨?mù3@8¤©?1@¥ãª?JM0@Fú¬?å4@¤¯?ƒÊ4@³¼±?ÑÊ7@ â³?K™:@)”µ?ÛÙ=@òJ·?åGA@+²¸?ÌjB@g¼?„ B@"ª¾?½nB@}·Á?×jD@²ÓÂ?&mB@2²Ã?k¸?@ÐXÃ?jÔ=@ŸÃÁ?È\8@IÁ?ƪ4@œ¸Á?š /@ÔÁ?Á,@¸×Â?Mï-@äXÄ?5Ù-@!ÊÅ?™F1@£Å?Ÿö1@§mÅ?QW3@zÅ?ã'3@3wÅ?GÛ3@®Ç?òå3@DxÊ?"6@¾B¦?:û1@~i¨?ÜÂ2@¿Û©?É<0@/Æ«?œ2@|Õ­?=6@ Y°?‰ö7@‡x²?Þ5:@ X´?™n>@]Bµ?$?A@¨f¶?êæE@/Eº?œïF@g×½?HDF@ÄU¿?¾H@âQÁ? H@ŒÂ?‘ñE@¹Â?Òê@@70Â?@½<@”«Á?âÝ8@¨Á?Dü5@5÷Â?Çü2@û)Ã?0V.@]ùÃ?¦0@‚¶Ä?ð4@\Å??7@o*Å?ÛC9@SØÄ?$8@§oÄ?,©6@FÅ?-º4@E›Ç?>N5@§?;.@瘩?š¬.@|s«?m0@ ð¬?ã4@~-®?á—8@[å¯?6$=@Xɱ?Í@@‹Â³?3‘D@µ?”J¸?YVP@¹?N¾S@ι?ÆT@¡C¹?9ýN@:¹?¥ÐL@9g¸?ZRI@5§¸?wF@ ù¸?•[A@n¨¹?![:@#,º?Ø9@™ »?ãÔ<@3‘»?Ü9>@£"¼?›«>@K)¼?²<@„T¼?a7@;è¼?QÄ6@`·½?½;@ò¨?#0@í@©?ÝÉ/@Êyª?G1@ãî«?®¾4@½$®?¸º:@€«¯?È»@@b˱?åoD@;Y´?×ÏH@c™¶?cOL@9϶?ðS@î·?!™T@úp¶?3xR@Ô3¶?‹M@M|´?ÑTN@f´?OÞK@R´?icE@·¦´?•”=@勵?¥\:@¥Â¶?²Æ:@¨Ý·?4=@<Ƹ?=@>%¸?N=@žF¸?äâ:@`i¹?ñ°7@êo»?¥6@¦ˆ¦?…2@¶¨?²1@÷Öª?Õð2@^¬?Î7@¯­?Æ=@q˜¯?ìèB@%]²?ÆUF@6C´?OäL@2Æ´?ë!R@.û´?ýVT@LÀ³?«tS@1U³?ŽP@N²?ûN@Àq±?<îI@ô¶°?~C@·k±?aØ>@´²?àM8@M ³?Q¾6@²û³?D8@¾´?JZ:@Š´?Di;@g¸´?“N;@ªêµ?MŸ;@©1·?W;@ô§?'_4@©?Ï£3@¦ª?ÞÊ6@\«?[&<@Ïþ¬?„÷C@“å®?ÓñG@v”°?[õK@N¡±?ЗQ@³?;øV@¦³?/CT@Ïü²?ïMO@Ì®°?ÛJ@Št¯?¥ÊF@´…®?N³@@¡®?¶™;@Çg®?þÏ8@1Z¯?±5@Fǯ?>6@(}°?Âð5@ó;±?Ä‘6@4¨±?oU;@}R²?Ðu>@—â³?½ç=@5ì§?Ñ«;@… ©?Û<@@ª?Û=@n«?ªC@®3­?òEI@Y“®?TÈO@ 5¯?ñ~R@³ì¯?0U@–°?DöW@륱?”ûR@ד°?ºL@5ƒ®?æG@á.¬?„GC@\[«?¼3<@ªª?ø6@¿ä«?ú2@Žú¬?`02@Õ­?b3@‰Y­?Ÿq4@v®?Ðé5@Q¯?+\9@¿°?ÿ.;@ðÙ§?²²?@ÕĨ?ù¬A@jü©?úïB@ª«?ø‹F@=ج?ß²K@`­?6¹O@$ž­?8ÖT@È­?ÖDY@‚¢®?òøX@°?üT@`µ®?²M@F¬?æG@&çª?—B@¡´©? 9@ͨ?Ôí1@”m©?#¶-@X:ª?3o-@·ª?æã0@8«?i˜4@䋬?Ü6@ ®?7@·0§?iAB@nÀ§?WWE@Îb¨?,E@Âþ©?ÞÜD@šèª?§4G@xò«? L@w«?ÏëU@:F¬?HÊX@ü“¬?v;W@ô®?ðêQ@©Ä¬?úèL@H¨«?YýE@>eª?øp?@UL©?Iz7@?¨? N/@ä¨?>Î.@[=¨?¹0@µT¨?H.2@ŠP©?Âq4@ «?w¸7@8ü¥?FÍE@Á¢¦?_•F@zv§?"JD@–©?K0E@Yª?Â@ìs¨?4þ7@•¥¦?á÷2@>×¥?ðl1@²Y¦?mù.@#V¦?X×/@7§?§2@K.¦?7¤I@èS§?RLD@H-§?$zC@O§?Ü D@nE¨?È_D@ºú§?Ä|F@ ¨?wpI@ÿk¨?¼P@wó©?’ÁS@ŒÀª?µòT@ªª?‰KN@ܽª?ìmE@‡/ª?—ÅA@/š¨?S<@Á”¦?96@‚¤¤?~¡3@Ÿj£?d/@ç¤?¦Ê/@,¤¦?&H@º3¦?ëE@Ù¦?±òD@V-¦?,EB@¯Î¥?YªC@ ö¤?ÚJC@{¥?wI@[ئ?B O@§?ckW@¨Ð¨?8ºX@Iª?¬µU@Duª?äN@û©?ðLH@‘1¨?8@@+E¦?pÂ8@áO¤?›2@{ó¢?pì,@Y$¥?y—D@VZ¥?˜C@Ùt¥?“B@mǤ?DB@X¤?µ¾?@O£?”»B@Ì,¤?XªF@ˆ¥?hIO@>ù¥? -X@ÌÓ¦?(÷Z@fê§?ŽðZ@ከ?•rV@¨?f'O@öß§?47@@]À¦?ØÉ:@Óܤ??V3@ç<£?äC@Šñ¤?¼>>@9‘¤?7¦<@¬E£?žø<@Mê¢?’·:@“Ê¢?²ÿ?@7 £?CjG@ëå£?XP@XŸ¤?4ØX@‹—¤?â ^@Ká¤?Œ¶]@¥ã¥?w>[@›¦?mêS@¦?ØÍH@è¥?óÍ@@a6¤?"~B@ ï£?v¬<@›¤£?-<@å¢?ð|9@jS¢?U+:@–¡?ý’B@ìi¢?Q'I@)ª£?(›R@_ø£?s«V@EÀ£?ó]Y@+L¤?3 ]@Ê_¤?puZ@¿¤?sòZ@zA¥?ŒS@Df£?*ý@@Þ~£?œ/>@Òw£?+Y=@˜®¢?û¿<@;Û¡?÷@@Ç7¡?{¦E@¨ô¡?O@ b¢?”–S@èd¢?tTU@K¸¢?L[V@#¤?x’U@L¤?yQX@[¯£?_§Y@¤=£?$™A@w—£?-@@t¿¢?”A@º¢?ÈúD@,{¡?T¤H@?.¡?Ö}O@½A¡?DÂT@(%¡?UU@Ðê¡?\W@ÐB£?4ÉU@Ú¤?yúQ@²¢?‘)O@W£?$C@Pº¢? F@Â@¢?.±I@x¡?N“N@­¡ ?õ\R@h ? 3X@$j ?›íY@ÔB¡?:KZ@=(¢?ãYW@ú_¢?þAT@Žò ?–L@Aí¡?ôI@q–¡?6ºK@1O¡?}ÓR@Kà?ÇèV@W* ?ûgZ@ÒÑŸ?êÒZ@ m ?òb[@"_¡?ß2Y@67¡?U@zן?áqL@ëa ?Æ M@I’Ÿ?ŠmR@˜ƒŸ?Z:S@(ïŸ?&ËS@¯ ?`ŸZ@ag ?^@^¡?Ë\@a¾¡?^>T@âïŸ?lO@*éž?¶¡L@>Bž?-¯N@¶'Ÿ?ÄyR@›ZŸ?×°V@s ?òZ@S¡?Ç ^@r°¡?Ÿ#X@#åŸ?÷çM@Ë{œ?[óJ@ã}?fN@}ž?Ü4S@çCŸ?}4V@œe ?‘žX@~^¡?²U@C ?JºO@w™›?MÇK@_?m~N@³Æž?7&S@”®Ÿ?á¸W@Dˆ ?´zS@-+ ?«N@<Äœ?)%M@v©?rÆT@7Øž?b´W@^ÕŸ?ë’V@WèŸ?íO@ãùœ?cQS@ž?5X@%Ÿ?I7X@ÛžŸ?›êO@©ø?KÝS@ïjž?\šW@JŸ? `T@Þ?­,R@_½ž?äS@6Ÿ?L.P@Ÿ:®?|_@b¬?¶õ?ª¬?߸ë?6;¬?•;Þ?Nÿ¯?ÁIÕ?Ûà²?]¡Ú?¡µ?”¹â?{±»?g2ë?ÂÀ?+èø?ÿ*Ä?¹3ú?5Å?Ÿà?ª0Á?/]Æ?Œ¼?å´?eé½?ÿ®?ºÀ?¹º?IÀ?¶ùÆ?Ü—Â?$Ê?:´Ä?Ä×Ï?ädÄ?¿¦Ö?úwÄ?¹mÞ?®€Ã?'¿è? ýÂ?oõ?ì½Â?Hºý?”GÃ?‘0@»VÄ?Šÿ @éRÆ?Y½@DëÇ?‹ç@ƒ”È?–º&@šÊÉ?—F'@wåË?Üú&@9‘Í?Ñ%@<¬Ï?ž•%@Ó?½¥&@IÖ?>C+@'EÙ?>Ú-@••Ù?ùŠ4@ýnÚ?‘}2@»SØ?7“1@·çÓ?z.@DáÏ? µ,@$XÌ?ÞM'@ÞÈ?¨!@.êÈ?‘'@¶(Ê? !@lŸÊ?øF%@¬ÚÍ?fG(@F¯Ï?àc*@Ð?:P-@BRÎ?ãœ.@|.Ë?ÑF1@.É?†Ÿ3@3Æ?â&2@Z«À?_>1@ª»½?}À1@sº?”7@)I¶?…/?@™ó±?G@£»¯?iK@ ޝ?ðM@“I®?â K@ž­?pD@ôQ¬? o?@Ér¬?Üð6@¯"«?Ø-@Rx¨?µŒ)@ÄѨ?DÂ)@!«?(,@;Z­?Sx-@Ãw®?¦)0@S/¯?t4@Ú°?@6@Ïr±?#ñ6@ Ù±?E8@¬ °?sÁ;@Ñ­?`å?@ÍÓ¬?¯³B@ ²«?oD@]]©?+æC@K¨?2‚A@h§?KB@ê.§?œA@v­§?OQ;@R†§?kw<@#•¦? e;@« §?<@8‹§?áE=@“¦?¬A<@#Ó¤?ä;@ ‹£?‘ë8@—¢¡?1˜4@®â ?é30@0¡?“Î,@úÌ¡?ö,@‡„ ?ëÓ-@} ?†&.@?cŸ?/ê.@xž?2S0@´Dž?K2@~?ž?‘5@Vê?ºö:@ÇYž?kïD@ÏPž?ýH@ D?ÊF@h?×4E@\*œ?X—>@*›?›r@@t)›?.>B@ÜV›? 3D@–œ?ÙsH@}œ?"I@6Ïœ?ÑÔI@çÞ?‚0J@Ÿª«?Ãaý? Ú©?ëÎï?bâª?F÷á?»¬?kÁ×?Ï©²?ØŽÛ?ó˹?¼ôÞ?äBÁ?Ñè?wÇÄ?Nw÷?‰¡Å?G´ë?iDÂ?ÝdË?¾Î¿?Fѵ?¨½?1,­?ÿ6½?Ú^±?ò½?D¹?ÇÀ?ŒLÅ?ò¾Â?‘/È?ʉÃ?þÄË?HËÃ?rÛÓ?¥hÁ?‘ïà?:¿?½Ðî?&5¿? —@âoÀ?&~@\ºÂ?U @ ÙÄ? @ÃVÇ?@iEÉ?*>#@ÛèÊ? 9#@1XÌ?2µ"@µÐ?õž%@$ Ò?ä±'@ˆÔ?E(@YØ?ä+@„Ú? ±2@6¿Ü?,I3@£ïÝ?Yð4@½ÝÝ?2i6@ÄUÛ?‘°6@Õ?é“0@wéÏ?¨V+@.èÊ?m&@7È?Žº @Õ6Å?ÑÆ@Ç?º@HèÈ?¶"@âÜÌ?ùW$@CÎ?‡ý'@öËÎ?f +@t|Ì? ã+@ʨÈ?rÝ-@<Å?ÇŒ/@>óÀ?v‘1@;i¿?¡ý0@,|º?u2@v-·?8G9@Z´?ußB@&ƒ©?Slù?Ü2©?»Eð?ÿ§ª?«$â?à ²?ÂÌÚ?¦f¾?Cãá?ë®Æ?˜Oê?7"Ç?œ-å?/€Å?<ëÊ?×—À?µ—´?`ùº?뵪?U¼?Vì§?ÝÓÁ?èd¯?õÕÂ?ä°º?ê8Â?À?ŽÀ?uÄ?ÛÅÁ?¥#Í?’©¿?RÛ?é̾?]Aî?“E¾?çM@ë¿?9š@ÖpÀ?ÅØ@–Ä?\·@6¢Æ?X@…GÈ?¹Î @uaÊ?Dí#@°‹Ì?4ð"@jÏ?Üå"@üÒ?^*@AXÖ?D®.@¥†Ù?µº-@!&Ü?oZ/@±›Ý?Ûÿ4@€Eß?¸8@Jrß?2œ6@'!ß?—¯8@¦½Û?– 8@¬0Ö?ä±4@ƒÔÏ?i‡*@±É?¿"@¦Æ?ZÆ@4ÛÄ?‘œ@+úÃ?ÀÃ@”˜Ä?‘Ü!@xØÉ?€ü%@þ²Ë?’P*@Ë;Í?g,@,ÊÊ?RŽ-@§’Æ?«Â-@ Â?„¸,@#u½?*j.@Ó`º?XM2@t¸?ýW6@^µ?<@3ú°?WF@úL­?¯?@u"­?¹-õ?~µ?YÎã?ŠÖÀ?…lâ?\&Æ?k©ä?FËÆ?¸Ò?ÂßÂ?O¼?À?ùè«?k¼?‹j¥?3Û¾?,¦?"Á?G)°?A´Ã? ©¹?åÃ?Ö<¿?õÌÂ?!gÇ?V…¾?$$Ö?e|¼?¼!ì?Ǽ?œ±@Ö½?ù @8Á?þD@ÎÐÂ?Ð@–ŸÅ?”ñ@½!É?—!@ƒæË?¼<#@L‡Í?¹#@'ƒÏ?+¬#@ ÆÑ?q6&@ÆèÕ?µÝ*@hžÙ?1@ŸÜ?¹¿2@òñÝ?Xo5@Ü-à?µ26@\á?ø8@ Áß?%8@3Ý?„æ5@5zÚ?óz5@>ˆÖ?õ7@ñSÐ?£2@^çÉ?€¨)@œ#Å?r#@:Ã?û@:÷Á?5™@xÂ?¤• @ÏNÅ?…Ô'@¥rÇ?Â)*@S É?^§+@ôøÇ?XŸ-@@RÄ?8ô,@èM¿?*e+@Mƺ?œ„.@WV¸?½4@ï¶?¶9@è²?ë|>@À!°?d=F@ 'µ?½=@‚ò¸?þÇø?àˆÃ?°é?Ò7Æ? ÇÙ?øzÇ?Rš»?wTÃ?¹¤?ô!Â?¾+Ÿ?¢¿?µ Ÿ?w³Â?ä£?LÃ?Ü·´?% Å?9ô½?½‰Ä?‚iÅ?¸Ã?üÏ?Y¿?ÝÂß?4–½?%…ù?áâ¼?Ä>@Õü¾?¶¢@…‘Â?Y€@}Å?Ûõ@•¹È?©ƒ@†Í?/ú"@ÏÏ?Då$@G¯Ð?UN(@8gÒ?ì‚)@—Õ?ð§+@†‚×?, .@f#Û?ü-1@pÞ?Î4@ ÷ß?mÇ8@à?@Ÿ5@ãÚà?ø7@$VÞ?[n8@¯kÛ?Š5@kØ?·þ1@ÈòÔ?Mo7@ÝiÏ?‚­6@bëÉ?•0@fPÅ?“ó)@ÒÝÁ?%•%@wÙ¿?²·#@v‰¿?A˜$@6Á?ñÔ'@ÙîÂ?Âå*@JÄ?‰©-@VŠÄ?ÜC.@uÁ?¡ž.@÷±¼?¸±0@#ò·?ÿÏ3@„P¶?ç÷9@@/´?ÊÃ@@Øý±?´C@L°?sF@¶ã½?ys@™IÄ?§§÷?EXÈ?â=Ô?ô²Å?Y²?Ê0½?6ãž?¿Ø¾?¦zœ?ÅH¿?Bû ?ð’À?Ã[ª?°Á?‡î¶?bÂ?#YÃ?&ùÂ?´ÅË?ÃÃ?diÚ?aÀ?7(ê?9M¿?÷ ý?âTÀ?ý– @­bÂ?z™@9éÃ?¬°@óùÆ?zi @8¥Ê?8f#@íÎ?­E(@•kÒ?yŸ+@ôáÓ?à .@æÕ?«.@â×?Ó¬/@º‚Ù?0@¤ÃÙ?ø2@y‘Ü?n.4@ùÏÞ?a*7@ Hß?,¦5@N Þ?UÒ7@H‚Û? °7@Z‰Ø?{>7@RÞÕ?"w4@é Ò?Fj6@вÎ?:@f4Ê?›€7@îÅ?mŒ2@”æÁ?¤„/@©¿?£é+@tâ¾?÷œ*@ab¿?Y*@>‰¿?–ò-@0=À?Ý:/@ˆÀ?2`/@ñ?¿?âA3@.Qº?`æ8@‡qµ?¾nB@µ?&¿D@¬²?GpC@ë°?GÍ?ió<@˜É?kó<@0ßÄ?[‹9@ïZÁ?Û6@¿¿?u¯5@¨Î½?Y$4@g½?8¹1@ä\½?5@å.¾?x 7@T4¾?@±9@I´¼?x>@º|¹?ÝÅ@@0Ñ·?sÍD@gÞ³?^LC@r‡°?×B:@ù=¯?¶8@6r­?ëÁ<@uÊ? ü?VÈ?™VÐ?UÂ?ø)³?À¼?qs¥?RUÀ?&|¤?T Á?Yi°? ðÃ?‰µ?[Â?ª–»?\šÀ?fªÊ?ͽ?I6á?¾?äï?¯¿?U‰û?ÙÐÁ?hð@uÂÅ?D¾@0bÉ?e@TQÌ?RL'@$?Ï? ?.@ÛŠÑ?ü‚.@†Ô?€0@¿ÖÕ?GÁ1@x‚Ö?_Ý.@ÑàÖ?àã+@5b×?„q*@fR×?+@oר?‡Y-@Å×Ù?‚ñ2@/­Ù?"ù5@^h×?à5@õLÔ?ëÐ6@í<Ñ?¶88@…Î?²9@s8Ë?Õ):@¸Ç?Jî;@ —Ä?Á<@œµÁ?2=@èϾ?–•9@;a½?08@²Í»?ïÞ8@Ä$»??õ3@%»?à£4@Ýîº?k¯6@ðh»?€$7@’²¹?O:@Yû·?…µ;@•,·?l­:@ø²?çl6@Éa®?Ëì0@ŠJ¬?=ª+@!8«?øw.@êMÊ?0Öë?¤¶Æ?3­Ì?!ù½?oç°?ú—À?Ëx§?‰ËÁ?¤+®?z‰Â?18´?Ê^¿?f0»?©Ê»?GÍ?vŒ»?_œæ?ÚŠ¼?Û)ô?–Û¾? Ôþ?žºÂ?„@´ÉÇ?¤î@õÊ?±&@×Í?n¼'@‹Ð?°/@}«Ò?Q0@XÔ?5/@,¡Õ?NS0@+°Ö?~b/@ù[Ö?ãc+@ÆK×?é+@Ë×?ø)@Ð×?¢ˆ,@¦˜Ö?êO2@¥Ö?“ 5@Í<Õ?lv7@ Ñ?8~7@ºËÌ?ÕR7@RîÈ?P<@‘ûÅ?‚A@ÓöÂ?¡@@ÂFÀ?Ic@@qù½?Ï®B@μ?2=@ß!º?ùV8@œ$¹?2†5@‹T¹?­L2@Õ¼¸?lÙ-@åÀ·?ýæ-@Hâ¸?Ô.@ö¶·?ðô0@ï:¶?+Ý/@.Ù´?×É1@ݸ°?øK,@.›¬?‘Œ%@ª?P @º©?Ñ# @v@É?ûÝ?Ó}Á?CD¿?ˆ.Á?¡”ª?Á?Ãpª?4ž?5¯?˜æ¸?–Ÿ¾?þ¶º?àÑ?f ¹?î¿æ?™ ¼?ø?”ο?~Œ@œåÄ?¡¾@D#È?›@˜¡Ë?®Ì@ÅÏ?œ|(@)ŒÑ?Þø-@â€Ó? p0@—TÔ?2D/@—Ö?’1@ÜÖ?ËÃ/@,AÖ?kÔ,@]OÖ?Æ-@˜þÖ?YÝ,@¹OÖ?b¥.@ðLÕ?J3@"Ô?dm7@ Ò?ò:@Î?¨Ù?@£‹É?’Þ>@”“Ä?[UB@‘LÂ?wF@*•¿?jD@{¾?éŒD@@§¼?gF@Šº?CÄ?@¾9¸?„â6@‘ˆ¶?r–/@©¶?,,@5¶?Y'@Š“µ?±'@¯¯µ?‚*@ĵ?Oç,@ÚJ´?Q]/@ɪ³?)(-@Ȱ?éG&@óú¬?8>@ê=ª?k|@#æª?Øä@:Ä?ˆsÍ? i¿?¨D²?xž¼?#G¦?¦½¹?¬?Ë´?ÚÏ¿?¶?sBØ?#¹?ª+ì?n|¼?¬dö?U¬À?†@¿›Å?¾Š@cÉ?1„@¬ÌÌ?v®@1ñÎ?[¾)@ Ò?9 /@›Ó?þ /@TÔ?Jr1@cÕ?$·/@À¶Ô?S//@&ïÔ?¨ˆ,@WbÔ?p¥*@ý^Ô?»k+@–§Ô?ï§0@#ëÓ?ó—6@ù Ò?UL:@ÍšÍ?Û„@@gðÉ?ú]A@MµÅ?œàC@mºÁ?vF@Åâ¿?ÞG@Ú>¾?ªG@<|¼?¤E@ª2»?ÝE@c¹?`)=@ïù¶?ºå3@²´´?Üs,@3·³?£l(@qγ?y'@ËJ´?«)@b¶´?›h(@ c´?d*@©d³?ó~)@ÝŸ±?=-+@Fþ°?ƒB&@S-®?è¦@°¬?ˆ @ÍŸ©?òw@šÄ¾?—™¼?{‡¼?ËK§?h÷´?ø ­?LÒ°?\ÓÂ?f«³?=„Ü?âE¸?ï[í?™¼?Ýr÷?­šÂ?Ôæ@¤Ç?\K @ß7Ë?ƒº@Y$Î?ÎÔ @B6Ð?|¥*@3GÒ?hó0@¸WÓ?_Ž0@~(Ô?0@æpÔ?f0@œÓ?8á,@43Ò?M*@“Ò?Ó+@ÈiÑ?Q-@"€Ñ?³"1@fÑ?š7@eyÎ?س<@AÜÉ?T®A@§ÜÅ?òE@P7Â?ÚpI@5M¿?“¢G@Ͻ?tD@áÖ»?ûzE@mº?rfB@Q¹?mÔ>@:ݶ?->7@z=µ?Ka0@Ú¡³?N,@^‚²? 6*@.©²?Y~+@r†³?¼û*@Òɳ?&x)@òг?k)@¥ö±?€*@ôư?+@œ]¯?}+@­?°k%@²«?a‰@˜é«?ÅÖ @ ض?‘:´?(°?²Û±?Ÿ…­?z]Ì?é;³?|å? ¸?Ùëò?‘j½?œ¢ý?ÿ²Ã?„ÿ@·^É?ǹ@øHÍ?R@'pÏ?£ä"@‹3Ñ?lé*@eØÒ?‘µ.@Ÿ…Ó?AK/@»Ô?h–,@³jÓ?Ùm.@Ä¿Ñ?¨&*@;ˆÐ?ü&(@WMÐ?õ4*@¸UÏ?3/@ÍÎ?-5@SRÍ?gŽ7@”þÉ?„::@þ"Å?ÀN=@âÁ?ÁiE@ξ?ñF@#*¼?p>D@*¶º?Á>@­T¹?¯”<@í°·?Án;@à¶?ñ6@u´?Pâ0@]ײ?Óë+@¸r²?ÉÄ*@IJ?k¥*@ús±?„8,@¼m²?•L-@ì`³?ͬ+@K§²?ö*@È9±?[+@ö.°?e,@‡®?ñV-@±­?Ãa*@£æ­?í$@g¢®?ñ %@M®?¼ŒÉ?r€®?HÜ?Ø›²?6Àï?q¸?Wù?‘o¾?ÊŸ@rÅ?Ì= @‹Ê?#@hEÎ?0d@9Ð?-Ø$@ àÒ?Ã(@Õ§Ó?-@èJÔ?§‘.@- Ô?®²+@0DÒ?íO)@`Ñ?†˜+@\ÖÏ?ƒ+@n¬Î?~*@Ô^Ì?¬-@ÑØË?©4@îÕÊ?577@02Æ?×N;@ Â?7 @@¥Á¾?LC@GU»?X.B@Pš¹?¥>@ ¸?l7@—ÿµ? Ö3@—Û´?D 2@ýƳ?°Ò1@ÃE²?¿//@f±?˜£*@Œ'±?uG+@DÛ°?*U*@ò¯?“ˆ+@Rª°?µa/@yá±?^õ.@Åû°?#)/@Ý0°?þI,@zä¯?îª-@Pø®?ät2@Îa®?¡¹/@1E®?¨)@¡X¯? u*@}¬³?êsë?7 ¸?×îò?¾–»?ü³ü?"û¿?+^@e`Æ?"þ@¥¶Ë?›Þ@0Ï?E)@Œ¹Ñ?‘Á$@)cÔ?å(@vÕ?^‰)@ÂFÕ?‡L-@káÔ?æ,@…Ò?_Ó(@bmÐ? «+@‘,Î?`ñ-@Ô‹Ì?±`,@YÒÊ?ƒ€1@ÀÇÈ?‡3@gSÆ?B;@uÁÂ?AN=@¦€¿?E±A@‰Ï»?QŒ?@"÷¹?õd;@|<¸?å<7@4·?P…5@kÕ³?¾*.@4{²?©Þ,@Ô°?ÔT,@Ѱ?¥W+@/¶°?âˆ*@:ü¯?N-@ د?˜d-@×Ú®?„,@ö?¯?ÑK,@ù¯?¥l0@L¡¯?®0@Œ¯?J8.@Ю?k¢0@@o¯?æ2@¨º¯?¡š1@׌®? (.@ ›¯?ø/@Ü‚¼?Þ¦÷?²Õ¿?§E@þ÷Ä?Xà @™É?Ûö@I™Ì?fu@âÌÏ?¡@{*Ò?þó$@$Ô?ªé&@æ×Õ?!Á'@ åÔ?j‹+@v›Ô?¯Š+@<±Ò?03+@‹jÏ?¤É,@Þ Ì?š.@«ÜÉ?™ò/@„É?3³5@`Æ?OÏ6@>Ã?Óƒ<@¤¿? à;@+P¼?¥£=@Ügº?)§;@Ÿ]¸?x¼8@,.·?Þ4@¶?g'1@#³?Z/@W±?ã—+@ò’¯?U+@Ëׯ?+¼)@Âѯ?\*@Hð®?Ç,@Z¥®?Ù,@Ã(®?÷6,@«²®?“x,@ï®?Ð.@jŽ®?±Z1@f1®?YB4@h—®?ï±4@à´®?‡œ6@½€¯?uà4@;´¯?ÆL2@½ °?¯83@±,Æ?î@êÈ?K× @ |Ë?{÷@ëÂÍ?Æ¥ @VƒÐ?d!@î®Ò?Ÿ³&@&Ô?[•(@Õ_Õ?âÚ)@ &Õ?ƒY+@b˜Ô?éÜ+@Ó?=J,@¯ÏÏ?KV-@ПË?9.@ªÁÉ?Xb1@€Ç?Ò×2@FãÂ?Š9@¿?÷Æ<@^5¼?‡:@…À¹?án9@`R¸?ª¯6@ðü¶?ì4@›Úµ?ÕÑ1@žñ´?2.@.³?z†/@Ë”±?¢›+@í¯?å§*@SÊ®?×î'@•¸®?Ý6*@ѱ­?¥Ü-@­?¦Ï/@  ­?õ§0@¨Ó­?Ÿ30@üƒ®?+×.@h¾­?ëà1@‰?­?kš8@dï­?UJ:@Hy®?R×9@A¢¯?ÄÙ7@½‘°?Åê4@Ц±?çt5@:gÌ?Õf@lRÎ?Î@lÏ?M]!@øáÐ?Ä!$@#Ó?=J'@{½Ó?¢++@UˆÓ?´Ö*@õÔ?ü‰*@]-Ó?‡-@69Ò?±-@Ï?8ƒ-@©ÒË?\w/@Ë÷Ç?¬0@‰OÄ?O"3@|£¿?ÑØ7@ìç»?Øl6@”º?x3@P[¹?¯£2@$F·?2@åìµ?‹Î.@R´?X4/@)ù²?>d,@]ž²?uA-@œ±?ÃÁ+@£4°?2)@›à®?C+@"d®?Œ}+@j÷­?ÐU/@Œ­¬?4@£Z¬?;‡6@Ê€­?Žu5@8®?ƹ1@bÜ­?çÌ2@ÿN­?!ç7@^g­? 9=@F®?Üi?@ƒø¯?.å;@˱?˪6@””±?MÅ5@K:Ð?f@—¢Ð?|È#@*ÚÑ?&@“îÓ?ÌÛ'@b[Ô?ø+@x^Ó?(+@ü…Ò?×j+@¥ûÐ?kÛ.@©çÐ?¡™/@¶ñÍ?ç´/@ú¯É?!p1@ZTÆ?z–1@`äÁ?cš0@l¾? …4@òéº?é}0@*R¹?©E-@w¸?‰.-@Ï)¶?)’,@¼7µ?Þç,@Ú5³?øš*@Yý±?¾+@]°?é,@¤Ø¯?ON.@Ðé®?",@Öu®?ÿL/@<1®?É.@®'®?óß0@± ¬?{¦7@‡ð¬?lŒ8@m%­?f^:@n­?7@íþ¬?0Ø5@WP¬?ÜŽ9@½Ë­?Åç>@}®?"€A@AÝ®?Ñr@@š˜°?wñ<@Þp°?Y;@K½Ò?¹â(@“€Ó?©‡)@D]Ô?§)@ë^Ô?´S,@,aÓ?4Þ+@@ÝÒ?Ѭ.@†ãÑ?§J2@“AÐ?W3@ÚaÍ?¢4@ë½È?›3@ Å?ϸ1@²À??“,@S}¾?.À-@Bãº?ØÓ(@‰^¹?Ÿ°%@ÀS·?±Ë&@™Çµ?£c(@ß´?*@I³?%+@»Â±?Ó•*@DG°?"·-@í¯?ZÃ.@æy®?+š,@(®?±i2@¼­?Ê·2@‡ý¬?³¬5@Àé¬? 9@¤—¬?¼;@¯1¬?£a<@¿¡«?_<@7M«? 89@r´ª?k;@ï2¬?ë+A@¯”®?$@u«?{qB@¿·¬?ß7H@°T­?;5E@Àî¬?z A@™È­?!×?@B)Ù?üÁ0@dÔØ?¬&3@Ú{×?Eg-@§Ô?¶2@mÒ?$Ë5@©èÎ?ø\:@I[Ì?FS>@)Ç?ðÉ9@¢ÐÂ?/e0@Eó¿?Ÿ(@t¾¼?ü&@:™¹?ž#@n޶?ì(!@ç´?Ëà@ç²?°Ÿ@i°?´T @º?°?QÊ'@èi°?H*@¶Í®?†u-@€²­?»d1@Á®?Â3@‡d­?Z£6@D!¬?DÚ9@2«?µ€<@Tu«?.Ë>@[G«?}?@@¤ª?Áš9@6cª?p9@óª?Ý–<@Õ/ª?¾ö@@¹Ïª?ôxD@Þ†«?\bI@x̬?ù G@àB¬?ž[F@¢Ï«?QšB@½Ø?im2@áØ?Qd/@­ Ô?G·3@¶ÍÐ?¨‘6@ÁÿÌ?¼Ú9@…WÊ?+4?@`?Æ?IA>@r¢Á?UP5@¹¾?C*@»?¦Ý%@3Ƹ?´¤#@«’µ?Q´@Æ”³?»Ñ@²?ÊH@_©¯?÷a@„¯?žË$@Ã.¯?¬d+@ú°®?·'/@‘­?-Y3@B½¬?÷44@÷k¬?á7@~¬?•Û7@ˆ«?:@>«?5´=@Ôª?íº<@·ª?y»9@pþ©? 8@’©?ú =@Ž©?}üA@¿ª?UgI@@(°Å?Ǥ>@t]Á?Ý*8@åm½?Hf,@~»?n;%@—Ç·?áú"@êEµ?Õ<@kg²?$×@0±?àû@ä,¯?À@Ⱥ­?úž"@UF­?3 *@u ­?ø‡.@zR¬?”ê1@u=¬?Ñ=4@¨«?ñ7@¢J«?Ã\6@˜«?Ј8@¹öª?¼Ä=@Eyª?©³;@Y›ª?±:@JÚ©?ѧ6@(&©?`=@1©?ûºC@zWª? J@㾪?O—K@‡Wª?8M@⡪?*qF@jâ¨?¹ÞC@™[Ò?‹u4@I Ñ?,H8@ùÌ?O7@/ŽÉ?ïŒ<@±Å?~½=@ѬÀ?Å•7@Iý?4/@¥íº?š.)@Þ¶·?×"@–´?ñ„@&”±?šX@w°?·@V¦¯?éÒ@û­?)@"@6¬?ân'@25¬?[-@ð¹«?¢d0@q¬?Æ~4@rË«?J8@—ߪ?ð·6@j¸ª?cÐ6@3˪?Mà;@ª?%j;@`ª?)¸:@Ê©?ÄZ7@ʨ?B:@@Ò§?Ï¥@@m©?Õ F@ó©?xI@\ë©?ŸJ@=è?0G@ƒ~§?ÓÄE@ÏUÏ?ÄŠ9@,áÌ?…›9@2É?¸==@ZÅ?0•<@Y÷À?ƈ8@'½?À_1@J$»?`Ó-@½¸?^A%@‰´?¦@÷±?¸Å@•ö¯?æ@#:°?-g!@®?(/#@I ­?%;&@Oæ«?’+@DI«?»¸.@~¡«?Œ¦2@’[«?ë­6@K«?Y6@°`ª?«j5@+‘ª?kµ8@®Pª?צ:@¯Ë©?³™;@}«¨?%8@My¨?Ðû8@$@§?¸ž=@ªý§?¡B@_ò¨?iIF@™ð¨?ëH@`¨?’¶H@ͨ?ÜuC@¦¢Ê?€ð9@gAÈ?=@ÏÅ?øn=@¯EÁ?+9@[½?¬T2@øÇ¹?‘ä.@89·?b'@j}´?ÀY @–n²? Ÿ@+Ò°?Q@)-°?ç.!@ 2®?êq"@ÝN­?–%@ºO¬?*@««?G+@Rl«?N2@§áª?`@4@½ª?Àð4@š¦©?ô3@yÁ©?Èu5@Å ª?Gé8@QP©?4t=@À»¨?7K<@Fì¨?hó8@Õ§?ÑÀ;@µ„§?¹Ð>@W2¨?äUD@ôu¨?СF@g¼¨?©F@Uë§?Q|A@íÅÆ?ª¥:@h­Ä?ÐY<@®Á?E‚;@ÃS½?Ív5@ó¹?Ñœ/@Àjµ?%(@¿³?7#@‡²?üà @Ì#±?)'!@í¯?8"@/¾®?Ù3"@{o­?Ýæ%@^¬?µA(@*¬?›«*@襫?ÂK0@z¶ª?œ3@³Aª?²g4@¿{©?W3@§_©?‹3@LA©?«8@ÈM©?³É9@bœ¨?÷X=@M£¨?:;@Ä#¨?å–8@±Æ§?Ùµ9@ا?8Ë=@¨*¨?1A@O—¨?…XC@<3¨?“­@@v®Â?Þß>@ÛÁ?nÊ=@Œn½?`9@{¹?OJ4@ž¦µ?Qš-@i³?|p(@I²?ù&@c©°?`ÿ$@a°?©%@æß®?ò÷"@ñy­?a'@ÃZ¬?6â&@ß³¬?«˜)@Ö]«?vs-@f¸©?_Ù0@–ª©?á3@&T©?Lj3@*¼¨?É$3@Dè?pÕ7@óã¨?.:@€·¨?U;@ˆ·¨?¦:@çG¨?Ε6@‰$¨?Rh6@½1¨??x6@|(¨?ð$;@ÙÒ§?/A@3ާ?÷e@@•cÀ? T?@m½?u‰>@·º?á}8@)_¶?MÖ4@r³?ä80@¨Ã²?Ås/@Lǰ?~‚+@ï¶°?pí(@e¢¯?+&@Ó®?öú'@¬?\'@¬? _*@Gf«?FÁ,@þs©?A&0@V…©?ÆP3@¨¨? 2@Àj¨?ç4@=+¨?ÄÓ6@u¨?&s:@‘¨?>8@ãæ¨?ˆç7@Y_¨?D*6@§§?ݵ6@öµ¦?15@·¾¦?ØV6@ 6§?Í)@@Óo§?Œ@@À'½?=?@ÑŠº?²>@˜ö¶?–h:@!‘´?J>6@³?+é5@`á°?”€0@ã?°?ý,@d°?)›,@ Æ­?f*@1Ï«?k*@y«?÷ -@þRª?ò-@&L©?•®1@ æ¨?<š4@Ô¨?hk3@½±§?Uô4@7 ¨?6n7@ç~¨? T8@/Õ§?öæ5@žÃ§?„`5@ß§?ë´2@]¼¦?Nµ4@O¥?±s5@¦?L^4@½ª¦?C¢;@ýŧ?+ ?@”º?£h@@Ãh·? CA@eδ?Ö=@…z²?Ǥ9@wì°?Ðã4@Ú1°?$2@ã|¯?ª<1@ᚬ?PÔ.@¾7«?÷i.@pª?Ñ/@a"©?vJ/@‰…¨?§0@þÞ¨?³ç5@è §?5@n¦?,k4@§?AZ4@“§?™44@iD§?ê¢0@¥§?_Ð.@qo¦?KY/@¬¦?²@0@æÙ¤?Þ>2@áߤ?ëy4@èµ¥?Ù18@÷ù¦?ž­<@K­¶?æfE@¨u´?½C@Áá±?øû@@ °?fh:@ié®?8@\]®?ú/8@s¬?ô 3@‡Sª?¥è/@I€©?œF1@µM¨?ƒï3@B5¨?éD4@×ñ§?G¤7@Rõ¦?.Ó6@D“¥?ÎÚ4@¦?žÿ4@&ã¦?\n1@³S¦?˜’+@#Â¥?ü*@’Ø¥?Ý\+@(£¥?=U.@@ð¤?}Ü/@Ѥ?æh1@4Ϥ?ü5@­¥?IÖ6@k?³?eD@><±?hC@]¯?åA@:’­?ÔÃ=@”w¬?Š>@= «?)z9@$æ©?é¹1@‡à¨?¸é2@ñO§? º8@>S§?Ü 8@¾¼¦?¨c9@í¥?1¬;@‚ù¤?Ym8@Pä¤?ÖC3@QK¥?Ø.@pl¤?‹¥)@ ܤ?—¡(@ù®¥?¸%)@}¥?óÂ+@ùþ¤?2.@š£?ßÌ.@²¨¢?¿0@M£?¹3@lW°?¤k?@(Ç®?«ÂD@¬á¬?Æ8E@X;ª?ô:D@±è©?!D@„§¨?­x9@é§?+6@jÙ¦?YŽ;@æO¦?Ã<:@?ST>@@Ì¥?ànB@ ¥?v<@D|¤?G6@ÎÄ£? c,@g£?ÒÈ(@µó£?¹é'@ÄŒ¤?YG)@]R¤?WÂ,@µj£?ã,-@¶Ý¡?A†+@Ç¿¡?R*@m¥¡?Î>/@8Ö­?*ò?@IÏ«?Ù}C@ž©?L°F@yì¨?ÛoI@Zþ§?ÐnB@g¦§?³¤<@Ì­¥?˜>@ í¤?›.A@Æ¥?žÍC@b6¥?0D@‘‚¤?šÓ@@ ¤?}ë7@È£?Ć,@{Ó¡?½ø)@¨Í¢?;ð(@Ó7£?;5+@G£?£r-@”¢?Qû*@Fu¢?è:'@ÿÏ¡?ч&@ ?æÁ,@wª?ŒŠ=@'ݨ?Ù,C@Èú§?Ì D@¾R§?àšE@Óê¦?A@³¥?~ãB@><¤?ÊG@ÏŽ¤?ŠåH@ø€¤?GIJ@Éÿ£?üE@ëµ£?@Í=@Ö©¢?¹»2@× ?ò-@“¡?@N*@¾¢¡? x,@P¢?=¢.@ÌÖ¢?ë2+@¶¢?ê'@tw¢?Óá%@,¡?âB)@ó¦?/ª;@@S¦?ùÈ>@F7¦?B@%œ¥?²^B@‹7¥?BGD@ˆ£? ZG@=y£?ýˆI@®£?®‚L@‡£?«ïK@H£?·C@QŽ¢?]8@Tò ?~H3@ÐD ?â,@Eö ?œí,@À¡?˜.@5¢?Ä9*@À'¢?eô(@”š¢?#–(@T°¡?„·*@5V¤?в7@‹¤?‘`=@„ò£?3@@¤ì£?Û¼C@¨ÿ¢?âˆH@’¢?)ÔH@¾®¢?lNL@ùâ¢?ÝM@œ¢?ügG@¡M¡?Ü@@a ?Ä9@9 Ÿ?†2@2æŸ?>V/@¦‚ ?Ë.@/L¡?½*@…Œ¡?À§*@¸ ¢?_X*@ý¡?ß -@N £?ˆ%6@YÛ£?î<@¯£?š*B@L¢?H1H@r ¢?4-J@&¡?hvI@ž`¡?LÖH@Ž¡?¨òC@Žø ?Ä E@;¢Ÿ?ÁE@ªƒŸ?Q,=@´½Ÿ?ƒ07@¯9 ?9L3@q ?þ .@ÿ< ?Q]+@Oí ?¾G+@Ëy ?£-@c)¤?WX;@ËÁ£?M³D@xë¡?CYI@Ó¡?1"I@Ò^ ?¡E@ⳟ?ÈB@€ÒŸ?ÅÔ=@M— ?Å\?@ªŸ?¶„F@xxŸ?ÐSG@ƒ‚Ÿ?Ó³>@ºÛŸ?J8@RkŸ?Íh2@Êž?ò@.@/ ?è~-@œéŸ?Ùf.@2¤?ZH@åJ¢?.³M@° ?YÝI@àŸ?eD@ŸWž?f>@Ï,ž?¢Ã8@&Þž?‚%9@©RŸ?MB@;Ÿ?ѯG@°VŸ?-»G@MØŸ?û³>@¦†Ÿ?M8@CŠž?‘4@Xúž?ô<2@Ÿ?u÷0@ᚢ?m;S@mù ?ò N@)YŸ?MtE@¸ž?^ð=@ëú?k®7@+C?ü6@xê?ù3=@“Öž?hõD@p ?¿˜I@xáŸ?ÍÖH@UiŸ?—?@ô‹ž?7<@yåž? @7@ô"Ÿ?ø‹3@Jø ?ÌRN@eëž?6£B@A’?Ëü<@´¶?uU=@Åðœ?ô:@øœ?¸<@ä†?>ÃB@†Œž?2¹C@²=Ÿ?üE@ …Ÿ? !G@ƪž?â…B@Þ?W€=@$Ûž?>7@ôFŸ?ìD@Æ?®>@ƒdœ?ñ>@õ-œ?„>@©Õœ?Ìç>@Êvœ?Ûú=@Ó0?+l=@O0?²dB@!ž?s-H@Ωž?óøD@ªë?â@@à?®R>@‚ï?¸˜A@Jpœ?F²?@$šœ?¦Ö@@ú?8N>@|œ?¸C;@²Ì›?5Ý8@´Mœ?o²?@-­œ?ï£D@Ê^?f0E@kÝ?3ìF@óž?â³F@X?¬A@C²œ?c>@_Ëœ?ø=@»åœ?|é;@Åœ?¸<@Ðø›?·f@@NY›?¸C@"Çœ?84D@Aƒ?®IK@¦'ž?óK@ªØœ?tÃ?@ïœ?•¾;@)Cœ?‘’<@í œ?Þ?@bî›?lA@u›? ñB@†¦›?§E@h„?%KK@äñ?E’G@ôVœ?|?@Núš?ºl?@ôf›?x¹?@Œœ?Üi?@Ïë›?¼ÆA@j›?BÅD@Ô£œ?yÆK@.?òH@;ù›?ŠßC@%E›?ޏA@|9›?(•?@çç›?bD@Æ›?¨0E@0›?PJ@u›? H@eî›?UÛE@Œ›?±B@˜‰›?ëE@?›?Ÿ£I@rðš?.VJ@™¢š?¯jE@à›?CG@ày›?‘½F@Õ5›?¿»I@-˜š?I@dš?SÎD@tœ?K@3Þ›?dJ@‚¿š?:qH@RÚ?ˆ]F@%?[ºN@SÅ›?º4K@bÔ›?BžH@Çœ?„uM@IÚœ?p?K@J?^=L@ÝU°?^ @pN±?ð¦@¯b±?ø&@´T±?†@W¼±?c@„þ¯?°ô@Ar¬?öz @ˆe¬?vŒ @N™¬?õõ@7š­?FT@’«®?øb@3l¯?ÙC@†Í°?Ri@4ü°?Gî@/±? O@±±?œÛ @±?Ë @+±?­X @¾µ±?!ý@žm±?ú@^e®?Ê@º–¬?2Z@0¦¬?Ëõ@âɬ?_¸@¸0¬?Eu@É «?z‘@P'«?zD@±«?"~@†N«?²ë@û`«?µk@{¬«?Ï÷@¹¬?þx@9D«?Ò@㮫?Z¢@—C«?Á@èD«?§Ý%@Úˆª?CÑ+@Ás«?¢¨.@ªã«?Zb-@,¬?\*@O«?QU'@‰©?í $@iV©?' %@Ùì¨?{ê&@—x©?]±%@%ü¨?«‚'@g®¨?iÑ%@ð’¨?É÷"@p¿§? ô @Ñ §?Ÿ‡ @l/¦?n½#@¤Ô¤?ƒr%@Zo£?+&@€ ¢?æ<%@¸Ä¢?Ú&*@X £?XÇ/@¶?ó?9@Å–º?àÝ5@gÀ?4@2øÇ? Ì:@ CÎ?æï@@¸Ñ?<B@pNÑ?žÊ;@«Î?'25@<É?Ý;/@}Ä?óÚ"@Ü­À?p5 @X.Â?‚wý?AÏÃ?ÊÄñ?ÈÄ?H”ë?¨ZÂ?ñ-ë?ë²½?pYÚ?­Ý¼?Ë?ù}¹?ååÆ?µ´?›ÜÈ?à?·?>Í×?À‹¹?f—ì?t¼??u@Tú¼?©„@Ó»?°D@Ú·?ÅŠ@F·³?´@¸°?B*@éG¯?'ø@‡X¬?ß@9îª?\|@ÞÀ¨?Ũ@ˆƒ§?D@ž[§?ùú#@³§?þˆ%@ç §?(@ž§?ØÎ.@Ù¢¦?/@Ûï¥?*@Õà¥?§&@w«¥?F…$@¶ÿ¦?þ#%@ó~¦?†%@9¤?¼°#@ߣ?QË&@… ¤?$H%@Dä¢?Û#@Ä”¢?« "@« ¢?îÂ@r¡?þM#@³¡?¹Ö$@ ì ?˜g(@+›¡?D¥)@9â?5è,@Ǿ£?#d.@9‚£?Dš/@Jé¢?=q2@Y®?DÀ@Z“°?&@NÓ°?@Ȱ?9@­±?Ö(@+n°?®•@>|­?Þ @y¬?+m @ Ǭ?Ù @è¬?ê@’®?ñÀ@-Õ®?\†@q¯?b@Äå¯?æ>@ïß°?xÇ @Á²?nb@Ú±?ì@à³?!>@a³?MV@";²?k^@¬¯?ø@Å®?2@Y2­?”Ò@¡­?ê@úo¬?Ę@uñ«?‹Y@JÒ«?…u@參?ùK@ív«?©0@¹«?öb@™™«?+æ@·ëª?O@Ò«?ÅÈ@Uþ«?IÒ@-âª?€Í!@Tèª?ÁË%@ÛѪ?¤ã+@¼ª?+ì/@s<ª?Žœ,@^’ª? #'@©? ×$@:l¨?õ$@¯J¨?g $@òÀ¨?å}!@dœ§?£$#@²]§?ª&@qY§?sm&@wò¦?'%@ýU¦?`Z!@Œ³¥?BÓ@ƒ÷¤?G6#@4«¤?^x%@m¶£?‘#&@„®£?ùã(@Ò£?Ñp-@Ñ#®?šù?›H¯?†ò@óZ°?3Y@n°? R@ž°?«i@6K¯?“%@àÞ®?¸@‹­?©@…ó­?WG @%­?0,@샭?„@%½­?sÒ@)$¯? €@¯Ü¯?åÖ@q—°?¸=@Ëu±?h@„m²?}|@~4³?,@e¬³?8Ó@ôƒ²?*@,Ò¯?„ÿ@cp¯?é@O³­?|@WI­?Ã@R¬?4§@¨«?Oƒ@d «?‰@wS«? ×@2¬?wÆ@³í«?½‰@(D«?×@ø^«? @‘¡ª? S@v2ª?¢Ç @ÿª?z&@8«? .@£“ª?Í/@³ ª? É-@ÇQ©?ÇØ*@mר?åÒ'@Êó§?+©#@˧?DÚ"@.¨?+#@qæ§?À"@5é¦?N;%@&§?e&@;§?0%%@»N¦?þi%@¥Â¥?£ #@0W¥?ã¾"@’ò£?`Ü"@<¼£?>#@4©£?ö%@RÆ£?н)@×’®?hô?ùR®?žû?´¯?@þù®?]@¹}®?W{@@å®?§@‚¯?øò@ó²¯?V@/}®?[ß@}ͬ?‚D @¿w¬?uÔ@¨õ­?Äo@Ñ#¯?@n‚¯?£H@Ö¯?Du@‰#±?s@J ²?û{@Øb²?Äÿ@ÖÒ²?Îà@IJ?À­@'g°?Ñ:@*ˆ¯?¹@ïc®?¬Å@U-­?±O@Œ¬?|X@òr«?ùâ@vƒ«?P{@ª‰«?_@¶ú¬?ìí@xO¬?‰9@»²¬?U€@H¬?Ÿ›@":¬?(¨@I¬?;²#@ )«?Ïþ)@Iˆª?É»-@}‡ª?0"/@ľ©?£ð.@›©?9ï+@Ùò¨?æÝ'@ö¨?»•$@±í§?›"@Î*¨?¨$@á!¨?‘5'@ {§?¬Ã(@M^¦?QÄ(@ R¦?_S(@Ú¥?22&@L¥?ŒB$@ô¢£?=@#@Õô¢?]]"@È)£?Ú$@]Ì£?È}'@À¹­? Çä?ÊÝ­?¥[ð?À®?hü?f °?Coû?pa¯?©·ú?wÝ­?Ql@ðö®?IW@ ¯?N—@„­?„R@¹¬?« @u†¬?x¢@¹ ®? õ@¡Ð¯??Ä@g…°?`ë@±f²?a@¤±²?«S@xO±?¢@Ó%²?’ @Û²?Σ@m÷±?œl@•a±?\5@¯?ª@Kd®?XL@)€­?6a@›¬?":@O¬?ÈS@·x«?¬@r6¬?Mþ@Ýd¬?Ä9@½Ø¬?‘P@Hˬ?ƈ@´¬?}e@«?`!@1R«?!Á$@jX«?”*@V«?0,,@¿Vª?b/@À©?³+.@N¨?â (@¨§?v•&@r#§?žh%@4½§?cÛ"@¡á¨?.h#@Þ¨?­_$@%7¨?–ì&@¡å¦?ø¡'@”Ã¥?†6)@¥?ø '@»[¤?M$@eâ?o!@…©¡?G "@S¢?äí%@߯?öîÜ?²\¯?jLç?‡‘¯?²&ñ?y@±?Cÿï?ʽ°?Yô?¢Ä¯?šÄû?Ø °?š!@J-°?׿@²ù®?‡ä@Ѭ?Q,@L8­?È× @¹‘®?dP @‘°?Œþ@3o²?²+@¡Ç³?q@BC³?f‚@ɱ?É@~Ô±?0g@˜ï±?Aœ@zU±?ïr@ɱ?øH@!M¯?^ì@b¯?D@’1®?‘»@úͬ?¨Õ@ ¬?¶±@í¬?K6@|w¬?o›@«é¬?wf@óR­?aõ@ʳ?øz@.µ?ª%@• µ?/¿@ïèµ?x£@´?8„@£³?¸]@¦Í±?(ƒ@k¼±?‡?@â±? t@]ð¯?â4@<$¯?9y@¶§®?üE@­‰®?w1@_Û­?9Ã@)W­?KN@ñõ­?c0@DÑ­?4˜@ê­?w`@f°­?ˆ@uñ­?`Â@E¯?±š!@sª®?9p%@Ê{­?‡{'@ªA¬?Ÿ(@¬?{*@Á¤ª?m'@Wª?jî'@%n©?÷è(@Ö»¨?­¤'@w4¨?= $@Õ¥?«|!@ϳ¥?ô¦@¾`¤?=ó@m¤?Dm@AÆ£?]ã"@qg¢?&$@‚À·?O“ì?N·?óèñ?Þ‹¶?]Ló?b)·?‹ìö?²i¸?‡û?{z·?kŽþ?¯Ý¶?+T@uôµ?Ës@H¾´?ÂÏ@‚µ?xQ@‰¶? _@Âgµ?µs@(ñµ? L @±¶?{Ù @NÞµ?z @b´´?¹Ù @&øµ?Þê @êµ?‘@íD³?jJ@ý¿±?h/@ÇR±? :@Í'°?ù/@ò•¯?r$@Q†®?§@3ˆ­?Š@ô,­?È®@ÿ¥­?Žò@Û®?+]@Ü®?Ý@Òû¬?x@²Ì¬?×@‰­¬?°m!@3w­?ì$@¾ƒ­?j‹&@~æ¬?’…&@äN¬?¡ð'@kZ­?§‡'@~¬?ÞÊ%@¶o«?A˜%@&ª?ˆF&@'P©?ã¡%@å¨?ÌÊ$@=¦?…¨!@-§¥?– @Õ7¤?!@5&¤?t@øN¤?È@%—¢?µ¼ @è¼?Þò?Ä›»?×›ö?J¿¹?ÊTø?‰ö·?L|ü?p¹?Y=ü?/d¸?UÛ÷?˜·?» þ?(Ø·?5“@f•·?¨¯@ÕE¸?n@]¹?ùÝ@Ź?bZ@k'·?™ž@öa¶?‰@–Ƶ?Q@À³µ?ͨ @®÷µ?¤ë @°6µ?o¥@Ù¶³?i@¥ã²?S†@{¯±?­Ê@:)±?é7@CX°?à•@öL®?r©@*­?xL@zx­?†ð@Ä_®?³•@TM­?´‘@›b­?8W@Ò¬?×Ó@Ü­?äÄ@Hš¬?ä#"@^„¬?0A#@‘ãª?Üö$@}ýª?.ë%@Ìó«?ü'@LN¬?ø„(@ÌÛ«?B'@mgª?%@Ì©?~ö"@ޏ§?Á¡#@ܦ?…Ö"@zº¥?Õâ@U¥¤?Íó@¨¥?ÌÎ@÷¤?x@þ £?èÇ@Â?6 ô?b®¾?f\þ?žv»?e@*\¹?Öú?A“¸?©û?P*¶?˜ëø?§;¸?e@hò¹?Œ@i¡»?‡Ð@2ļ?ö–@¦á¼?xé@Ô¹?Ó]@1R¸?iŒ@SÀ·?ë<@¼å·?h¹@Õ¸? 7 @¸ƒ·?ar@²Àµ?K³@ ´?ú^@Ç ³?ä@Èá±?Ô@Bñ°?ëU @Ò½¯?à @ca®?&P@H¥­?x>@µÀ­?‰'@Ðì­?ø@6,®?&@Ž€®?`«@v®?Ãá@ñG¬?¬Y@˜«?-~@2›ª?Áb@vò©?6n@Ì?©?ù¯#@Âè?¸=%@³ª?vŒ$@hqª?'ô!@½¯ª?É "@N(©?xÇ"@‡ž¨?Ýk$@oä¦?Ç#@V¦?Ä5 @tÔ¥?¸Î@Xª¤?Éê@_ͤ?å!@à²Ã?!”ü?º%Â?4Ô@ãµÁ?@é½?²§ÿ?ዺ?Öã@æÏ¸?äÿ@ í¸?1@'ó¹?JÔ@e¾?Ý– @¸Þ¿?i @f]¾?ò° @åt»?Ýø @Qhº?=… @s\º?Âl @`¹?€ @ <¸?!“ @bˆ·?2ë@ŒX¶?ƒ÷@H´?¸þ@³?›ö@¥þ²?áö@0n°?Ž@<¯?Ÿ@4É®?ÿç@Ú®?I;@kÈ®?«¬@}®?[ö@<®?`@õP®?á—@Q2®?2æ@fÛ¬?œ¿@F^«?ñ1@ $ª?-E@¦¨?ˆ @’N¨?_Ž"@@w©? é!@Õ«?€á!@1$«?dâ @:«?Ç @%ð«?u*!@Îéª?¶p%@̨¨?ú‹"@‘„§?eý@³#¦?0©@KÔ¤?Eý@CÁ?§ã?ÊdÂ?ÕÞû?à'Å? ý@ ‰Ã?‡…@ÊÁ?ˆ@Ú¾? @±ñ½?’´ @'D½?¦Ñ@áû¾?Þµ@¾É¿?†‘@{i¿?øb@¢ê½?7Ã@å¾¼?/Ú@m†¼?r+@z»?7\ @…u¹?ÃX@ð<¸?já@Òb¶?‘ @Úö³?·ç@˲?»@¾’°?âó@¬é¯?˜m@ˆÎ®?ò6@U®?Q.@{Þ­?íL@„Ñ®?¤÷@U+­?Q#@­?â0@Ô­?ĸ@aç¬?eó@ÅÆ¬?EŸ@…{«?Cl@šÜ©?—@/©?+Û#@eb©?$@³Ç©?ë #@À¨ª?(æ!@÷‚«?ûp"@鮫?!&$@u­?hF%@ضª?%@Ç7©?!"@j‚§?ÉO"@ׯ¥?¿Ó$@XñÀ?÷1Å?–‘Ã?õ\ß?Å\Ç?,âñ?ÔÆ?o@HCÅ?›?@\mÃ?­@˸Á?«á @|cÀ?Ø@zÀ?ck@= Á?>s@[cÁ?L@¢š¿?@p@Kö¾?R @kŸ½?®§@Ýœ»?$‰@«Ð¹?ë5@"M¸?B–@|϶?,$@ 5´?¹@ ’²?–¼@êç±?I²@ı°?A(@$û®?zš@ÌR®?ÁÄ@J®?Z0@ý´®?J‚@ôå¬?¾C@}&¬?µ@qà¬? ï@窫?˜o@(òª?é-@ñ©?÷B@’ª?TÐ@LȪ?°x"@sIª?©0$@–©?÷$@‚ ª?~`#@.Vª?¦#@ɇ«?€%@©…«?Fé'@2w©?’_%@› ¨?¨/"@]Ä¥?2é @w“¿?ŠÝµ?P¾?–'Æ?•"Â?˜>Ù?“-Æ?hò?eÅ?'B@A.Å?Ù`@(Ä?S @z–Ã?ö.@-åÃ?^Ì@û Á?t@XeÀ?Íý@¬#¿?_@{ƒ¿?ze@¥j¿?Þ@\A½?í$@Jmº?Oö@|¹?Z£@t¿¶?Y@µ(´?Ô@µò²?š@(á²?W[@áè°?aÞ@B±?Y£@ °?;Ü@M¯?â&@Ö¢¬?Ç¢@)O­?I@?t¬?d|@¯Ï¬?3¼@Í7«?Kú@Ì{ª?mæ@.«?˜¹@;ɪ?Ó¿@ëz©?‘$@*Ž©?G`&@”Ù¨?]>&@iÀ¨?ž”$@ .©?€A$@›£©?$À%@dÅ©?•§%@2¨?¿z$@HÏ¥?µ>"@ž?q¦º?Ô©½?IÀ?_°¿?-Ê?TxÆ?’?Þ?FÂÄ?Сù?~Æ?!_@lÅ?* @&CÅ?+? @Ì*Ä?ÛÊ @HmÂ?¿‰@«¿?,[@6Ö¾?ý„@ ¿?ø@äš¿?2¹@nï½?8†@vÌ»? ´@Ãܹ?z@O¸?‡×@fïµ?*:@‚µ?ö@ú³?ú@ß²?_¿@×±?­@[ò¯?À@˜¼­?¼Ú@ä«?¸@ãï­?¾@@ý¤¬?K3@®¦¬?@‚¬?uS@Þî«?º@B«?µŒ@ƒÍª?äª@¸Sª?L&@Ú€©?Ã4+@L†¨?ÿ+@½¨?Ÿ'@÷ݨ?Ø&%@ö©?>§%@À¡§?[û&@xm§?ê$@êV¾?Q-½?¿&Ã?ßÙÁ?mdÂ?ÓyÉ?”„Ä? ­Ó?Ï Ç?°å?rÅ?´¿@“¶Ç?Ç@åªÇ?4’ @%Å?§Q@~ŸÃ?b9@0QÁ?@¤®¿?c@Ô¿?kñ@…º¿?½@éξ?+q@N½?7@9£º?h@d]¸?ß®@³|¶?8R@Ï´?©Ì@Rû³?ž@z)´?O@IJ?c’@²Ç±?Š@ãi¯?xÒ@E®?’Ÿ@ݸ°?æ¹@Ñë¬?=@ªµ¬?c”@.ï¬?km@7«?N5@¢ª?Nk@iª?Im!@Nrª?ñª(@³W©?þÎ/@|¬§?‡¢/@Õ¢§?¶Z+@ã§?Ã;'@K1¨?_Ç#@–P§?àJ%@ÖsÂ?ø?Å?€ÄÄ?Ä»Æ?²òÆ?›Ë?’}Å?mãÑ?tÎÃ?ŽÖ?––Ã?©xâ?…=Å?|rô?$°Æ? Ï@ìÈ?¸p@=îÇ?ï€@»çÃ?„m@«¡Â?S€@$¹Á?pK@þSÀ?Ķ@² ¿?í²@&ƽ?@ß¼?k|@ãÔ¹?“.@l$¸?ð@Ý·µ?^Œ@7éµ?§¦@€.µ?`@³?xË@[À²?w9@̰?Ç*@ª?®?ø@Ä®?¼¶@ˆŠ¬?—ô@Ö‰¬?ì@#ú¬?N»@i¬¬?Fl@j­ª?Ѭ@s’ª?&!@Wé?¨¬'@¯„¨?ž/@ƒ§?Þ-/@ü4¦?n+@u¦?ª'@ºÏ¦?È%@7ŒÃ?ŸÎ?÷Ä?gDÐ?œJÅ?·,Î?ä–Å?D“Í?J{¿?ï}Ñ?'‰¾?W¯×?ÇéÀ?¥xà?miÃ?ñ=õ?ùÉ?¹> @‹¢É?J‹@Ú²Æ?ad@3‘Ä?”y@jeÁ?DÐ@HºÀ?jr@m À? ø@0V¾?â@`½?MZ@„·»?@p›¹?íÉ@p%¸?½¶@‰Â¶?§ @Âò´?ox@u_´?è%@ºg²?›÷@ë¯?D1@šâ­?ÃÉ@Ç®?0Œ@Ý ¬?v‘@@à­?ó•@“\®?<„@Ín­?‰@ºª?»I@@—©?ž@–O©?Õ¨'@<Û¨?%˜/@äܧ?Y..@Ü]§?tA+@Ûf¦?¨1(@n8È?“þ×?‘ÛÆ?xÚ?:ˆÄ?ÉéÕ?âdÃ?oÊ?²žÁ?ž Ë?ý@À?x¶Ì?>¾?P%Ñ?0‰À?Œžä?£‡Ç?Ãý?ÁeÌ?ŠÓ @É?$g@%æÅ?Sû@¾ Á?ãº@‡À?[í@’Ǿ?Œ@摾?d~ @.Œ½?”š"@ßl¼?Œá!@™9»?ƒÕ@ ¤¹?që@·?kÐ@]ƒµ?^/@aA´?õ3@G©±?[<@G:°?P@¢R®?+ç@óü­?5@ã%­?ø.@di®?ÚF@› ®?ÊG@¦ï«?Øì@¤1©?¸@8\¨?×Ä@U«¨?nF)@M¨?ÞÅ/@p§?• 0@§?¼Ù+@YyÇ?æã?ÊÅ?Öå?¾ Ã?ßÝ?‘Å?ä*Ì?Ê¡Â?<«Å?AÂ?ò0Ã?—Š¿?›¾Æ?îÁ?KÚ?'lÄ?Ùâí?ˆöÉ?ïÿ?¼Í?ïÃ@ËÅÊ?ºÏ@KÃ?ñq@Ö†À?Þ¦@uç¿?ë›@ðì¾?÷Ã@5o½?$\!@†²½?ù$@li½?rv"@Ï•º?Ú @¯}¸?@éï¶?ü‡@ÉŸ´?žY@`ɱ?÷É@Pm¯?o@ùÊ®?ºÚ@ Ö­?ÞÑ@™–­?Þ#@m­?/@=ˆ¬?Ÿ~@`"ª?Þö@pB¨?_f@¯§?„n @¨?þÞ&@ʧ§?K-@5[§?Hâ/@£‘Å?uéê?ÔÄ?Ôtç?c€Ä?ùHÜ?¤BÅ?üEÎ?þ{Å?ªÈ?+—Á?vÃ?3:À?¤»Å?$-À?“ÅÎ?q<Ã?N(à?þ×Ç?èñ?µÕÍ?)ÿ?žÍÌ?£ @¥æÅ?Ïr@ ò¿?c¯@²„À?ø@¢³¾?+@z½?·N@ˆ¨½?h!@}c½? m @žÎ»?œÅ@…X¹?cw@¿¶¶?À@@óí³?-M@Ó`±? å@Ùm°? @2ï?YK@%­?Ó@™¬?ã7@J€¬?lb@Õœ«?´Ð@?yª?{@»¨?Š&@iƒ¨?áŒ!@§§?%@_§?•“*@þ×Ã?ñ?r¦Ä?A£è?ë—Â?)­Ü?Ý>Ä?q9Ò?€:Ä?®@Ñ?<¶Ã?hÔË?ÃpÂ? Ê?Å/Á?ÿCÉ?ºCÄ?’×?öÇ?Öã?*Ë?î?Î?ù@mÏÈ?žu@â‘Â?ű@½9Á?ÐC@ç À?ï«@ÌÁ¾?iX@á¾?I @öQ¼?c @ ɼ?q@æ~º?…@u¶?¬÷@³Î²?£$@„i±?ôë@Ô´¯?t‹@d¯?”@áG®?±@¢­?kó@Îj¬?Q1@¶<«?ö]@#¤ª?µq@Ùù¨?»‡@Kw§?ù@R2§?Ðý!@ƒ«Ã?8€ò?ŒöÃ?=Óê?<^À?ß?XkÂ?!_Ø?Š·Á?ÑÈ×?™Ä?¯'Ñ?ˆÏÃ?P™Ë?iþÃ?-Ê?¬7Å?aÔ?Ÿ‰Ç?bûß?w¥È?^-ê?,‚Ì?€ ü?f÷Ì?09 @ªÈÆ?Nƒ@ÎÂ?œ @ôÀ?Å}@a?¿?>!@ ô¾? Q@ûO¼?b@ûÿ»?È%@¯'¹?'û@ Ùµ?v­@‰ö²?˜@°Ý±?Žô@’˜°?kV@ÿЮ?«@ ¶®?0a@7Œ®?+h@é‹­?ˆ’@ðs«? ô@Šª?Ô:@¼Î¨?‹J@tu§? @é¢Â?`û?HÝÀ?©šî?Ç=¾?±©ã?§¿?žÙ?(Ô¿?uª×?pT¿?¹±Õ?ª™Ã?ò=Î?ƒƒÄ?¿~Ë?¯#Æ?r¼Ò?Æ?¢xÝ?ÜÇÇ? øã?h|Ë?½ï?]NÏ?«ú@RË?œ© @æÄ? º@ÌÁ?Â@ À?õE@=©¾?1,@tɼ?èì@Ë»?Ÿ3@4w¸?; @‘µ?ü<@qš³?Cj@[ô²?>Ã@ò ±?ƒµ@„w¯?,@ƒ¯?£Ò@Îø®?< @‘¶­?ª/@¢¬?w@J¨©?1@XL¨?t²@ëdÂ?8@#¿? Jø?®¤»? …è?6¼?ôØ?rO¼?žQÒ?¼Š¼?ì^×?iÝ¿?-gÑ?hÍÁ?‰Î?äÀ?ºíÃ?Ñ?i¿?™)Î?¨ÎÂ?ñÉÈ?èÐÆ?5AÄ?ˆTÅ?Ó˜È?ÔÉ?$Ä?\­É?@‚Ï?/ºÈ?íTØ?OÇ?hÉß?¼ËÅ?šRõ?èÅ?ç§@7HÅ?Gñ@!kÂ? 2@¡K¾?"ž@•¯½?™@rr¼?ÿD@»?nO@²·?âÎ@ôÁÌ?µ®'@|ŒË?„P,@„éÉ?¾:.@7<Æ?{i$@ç6¿?}ç@:b»?¡Ñþ?Aº?üå?²t¼?WÙ?`ºÀ?‡µÔ?\Ã??ßÐ?gÄ?ç´É?YïÈ?£Ê?OÌÌ?¸ùÊ? ÖÊ?WuÎ?7SÉ?™„×?ìÆ?¼{Þ?B¨Ã?P ê?×Ã?YÝó?Ã?»Âü?Œ{Á?Í.@±š¿?´@ªÀ?DÎ@ß½?ÈÂ@ÈP»?úH@§yÏ?©S&@ÌÍ?9î)@6%Ë?ùÄ/@æÇ?Ìa+@OÕÃ?èM@±ú¿?k @+â¼?©yú?‰½?¢Œá?b)Á?É¢Õ?PÒÃ?bkÐ?% Ä?ÂtÈ?þ»É?Û£Ç?@Ì?ÿªÎ?äûÌ?Í?®ŒÊ?ºÔ? Ç?ŒÝ?ŒÿÃ?Ëoæ?Õ3Á?§äï?M8À? ü?(ýÀ?E@ëÌÀ?·] @²ÄÀ?3@3¾?¶þ@ëÒ?žÅ'@ÍÏ?N<(@‹ôË?¿x*@µGÉ?«¦+@9Æ?iR%@yÅ?â@@”‹Á?`«@AÂ? Oî?'dÄ?kÜ?U™Å?ï²Ø?dßÇ?ðñÎ?:hË?iÍ?J9Ì?Ù~Ë?ÝïË?q«Ê?dùÉ?x¢Ð?ÅÆ?ÁÙ?ÑŸÀ?‘WÝ?ʇ¼?Íã?Ýs»?uñ?ŒÐ¼?äû?qF¿?Áê@)¿?é” @f$Ô?îœ-@©kÎ?Úð'@¾É?±/%@D{É?U%@̱È?Ñ$@8|Ç?s@ÕéÅ?Îß @ý`Å?ñdø?âEÈ?éÐå?±ãÊ? 2ß?*yÈ?EGÚ?þ Ë? ”Ô?qJÈ?@xÌ?”Æ?+ÇÂ?N Æ?OJÍ? Ù¿?fòÔ?}¿?ø”×?q»?2qØ?È•¹?Jüà?s§º?–é?öz¼?äCõ?˜Ô?%±-@1Ð?¸P&@ßâÍ?h¤@0\Ê?Jµ@.FÇ?S›"@¼ Ç?kŸ@êÆÇ?‚d@õÇ?Di@ìÊ?~îô?1êË?®@¹Å?ÂÑ@YþÄ?2x @ÏpÆ?€@!FÅ?ãì?çŒÁ?óÝ?\kÀ?öÐÑ?Oë½?iÊ?÷¾?Ò?±6@û<Ð?S¶4@o[Î?-=2@ܯË?¸¤.@=`È?ïì(@hÀÄ?qJ@ïÂÁ?Cd@¼Á?šø@ƒÏ?ÿˆ-@›OÒ?R‰3@QiÓ?5—8@`©Ò?®µ8@•Ñ?Uw8@œœÏ?)08@1sÍ?ÑÜ5@=åÉ?,/@þÅ?¹#@¤CÃ?ðÚ@÷‘Ñ?Ns1@ÿŸÒ?¡.5@IÓ?¸6@¥ÂÒ?Îò7@ÜÒ?Þ˜;@eÈÏ?L¬;@òÌ?«È8@ª\Ê?™Ï3@i†Æ?Æ,@¾ÛÑ?†|2@ZÔÒ?Ø5@¸&Ó?RÉ6@É?Ó?ÿ\9@œnÒ?ã×;@ ¨Ï? €:@d«Í?_R:@ Ë?¡h3@µÏ?½34@ÁuÒ?Sv6@ZöÓ?&s5@ÃÓ?íø8@JÀÒ?Æ;@Ó/Ñ?ŠÔ;@NþÏ?D9@g¦Î?×w2@OÑ?œ¡3@J>Ñ?¦§8@.ÀÑ?"=@ÐðÑ?>ª=@™†Ñ?Põ=@ØÌ?.d4@h­Ì?®å9@±Í?æ;@‘“Î?Õà>@³}Ð?ò·?@LÇ?Å5@iÈ?e5@¦ÝÈ?‹28@XË?ùZ=@ÐÁ?1@,sÂ?Ål1@—Å?bÚ4@Ä¿?h×1@M¾?Â2@†ƒ»?Qp6@ t ? 37@uÌŸ?¡7@³‘Ÿ?ƪ4@휞?QÚ1@mKž?3ô1@㳞?ßo6@ðž?¨ˆ9@SŸ?»—;@@WÞ¢?›¸8@Pà¡?­¦4@Eò ?ÑV2@›æ ?j¸1@’y¢?ëf/@›B£?Î=-@Á¤?U(0@í:¦?Ø0@Dë§?Þm4@üá¨?4{9@ùª©?¸Ö:@Djª?…?:@÷ª?º<@Ýœ«? —?@ͱ¬?à°?@g­?Ýõ=@ÎK­?m)<@Þú¬?†˜:@{«­?ºu9@&î¬?ˆ™9@Vj¬?3´8@žÐ¬?èŒ6@}í¬?ÊÉ6@ìä«?ÜŽ4@Ðæ©?¬-0@cj¨?ד/@ß§?.@Óu¥?ñÝ-@ÁH¤?bè/@d¢?õ2@B± ?ܾ6@䳟?«:@ò ?W,C@ü¡?`ZJ@žÐ¡?šˆM@¹¢?·TM@Å„¡?fóI@r„ ?RSH@@Ÿ?uL@˜ˆ?x P@¡Éœ?ÄàO@¼m?NT@ÆŠ?pS@©x?°‹L@÷t¡?k6@nR ?¶•8@¾¤ž?sÂ5@¹±?² 1@?ÁÅ.@P?iÏ0@K]?H1@+š?#à3@’ÿœ?wî6@ä÷œ? >@=O?iž@@°î?²D@ð ?Y¬F@î ?uÚE@aõœ?ŒœF@2Y?vTC@⮞?µ9C@ñAŸ? ùA@ñ›Ÿ?г<@ Ÿ?š)4@© Ÿ?¸¯+@]èž?«}#@?ô& @ÈŒ ?à´@œz¡?a@#£?É@à£?üÆ@8˜¤?x›!@4í¥?ÀÁ$@7­§?‘¬$@˦©?–þ"@–¬?ƒ @(­?n@Ù­?¡©@²Ò®?!@˜m¯?öò @¾¶®?}‘&@Rî¯?W’0@¯}±?Q®5@†z³?iI4@ȶ?]4@«–¸?®y5@¼º?И5@ä‘»?sù3@UŽ»?_y0@Éͺ?Ñ-@˜áº?º'@2º?¯"@@±¹?KŽ@Ѝ¹?€K@!(¹?ZÕ@—L¸?tÜ#@ë—¸?ë‡%@‚¤¸?CA(@éè·?«I/@¦Z·?Õu7@…þœ?k{L@;?ÔÕO@ÏÉž?Ø‚P@å«¡?W:J@T¢?2P@(»Ÿ?žAF@ož?ræ;@ÔNŸ?nw;@÷3 ?ú?@¢¡?DŽ=@ÕX¢?>:@CE£?¬ø9@”é£?i9@ò8¤?@95@ïd£?¤D2@ö¤?òú6@îf¥?›Y>@W†¦?CëA@w•¦?æ"@@†V¥? Š8@lù£?û}1@ÍM¤?u˜/@ûe¤?¹m1@Li¥?T„5@Éó¥?©85@ Ú¥?$Ü6@å!¦?X,7@Ìȧ?‰Ä:@³õ©?Ķ=@yí¬?Z½C@&¯?ŒgF@þq°? ;D@:e±?]ú@@•M²?T-9@ëµ?üÈ3@bú·?ì-1@ˆP»?-@ž½?±+@½?Æ{*@?³½?¡s(@|`À? )@¡Â?‘ø0@ßZÄ?:@ ÏÆ?Π:@-^È?Þ×8@¸éÊ?Èý6@Ã-Î?*ì1@É5Ñ?Ù/@ë1Ñ?Þÿ)@tÒ?$U"@¯ÛÐ?)O!@aÊ?Ú$@JÅ?’B)@"À?i>,@|Ó»?¨(@¶÷·?Ln,@LŸ?¸w9@åðž?^i7@V{ž?)U2@{Ì?Ì1@Z£ž?&5@8DŸ?þ 5@.àž?É·5@RÇŸ?îÉ9@‘Ÿ?hö9@À ?LÚ8@šM¡?¸M;@ ì¡?ûî;@ÄÅ¡?u 9@Ö¡?nY5@—¡?vc1@:¡?æ0@n#¢?êx3@v›£?Í¡2@ñ ¥? z4@†U¦?sR7@M§?" 8@ü ¨?$…:@vŒ©?K8@„ª?D9@ê«?xì<@Úœ¬?†è<@ G­?a=@®?‘ß=@p\®?0M<@P•®?Æ™9@ÖÕ­?Ä»8@£í­?³I7@Ï®?x.5@Ì ®?Pd2@z­?©>3@¨ýª? Å1@8Hª?±´,@Xç¨?1í-@Ûݦ?µ4.@Q¥?Ý‚/@N–£?½™2@6•¡?‡0@ì;Ÿ?×.0@ºŒž?¯6@»½Ÿ?éq?@Ù¡? E@ow¡?¾ÔE@5G¡?í(F@v ¡?Í€G@ÎùŸ??¾J@Ÿ?ÿ!N@zJž?ùP@òYž?Ý=U@äj?”ëT@fÌœ?6ôO@Ö Ÿ?CD8@4`ž?×Î5@þ´?z 1@¬?n—0@´[ž?Ï2@mž?ý 1@´iž?Þ1@Räž?Ôü1@ž?9ö5@1ØŸ?¢u8@z ?]Ü:@Ñ¢?©S:@×È¡?­/7@ç¡?Š©3@ õ¡?f’1@¹g¢?ãk3@i²¢?J7@TY¤?PC7@øP¦?î8@S¦?Ý:@¦¦?Mp:@Ï;¨?‰¬7@:ש?oˆ7@¦ƒª?zB;@î2¬?öŽ<@¥â¬?~Ù<@N)®?G <@- ¯?<@“–¯?/¨8@u©¯?f‘7@}Ô¯?`+6@b¯?׋3@ª¯?h40@â"®?á….@êû¬?X:-@ýЫ?ÄE.@èª?@ï.@N}¨? ›/@¢ƒ§?^Q.@ð¥?ßg0@Ä‚£?xà-@Ð<¢?´R-@¸q ?8œ/@Üšž?¾k6@:lŸ?k@:@qƒ ?ñ=@64¡?ÙØ@@ž¡?‡G@Ee ?wTM@z> ?(O@Ë” ?åˆO@q ?Ù/Q@$4Ÿ?R@Àì?èTS@Ÿž?vˆ2@½?ýå-@åJ?•Ø*@{K?LF+@Ü2ž?x2/@ Ìž?Ù0@,Æž?71/@º¢ž?~ª0@X¨ž?Î26@ÅwŸ?aí8@ ¡?k‚:@¿¢?]Æ;@䜡?̾7@›¡?ûY7@ ÿ¡?ÑÓ1@*J¢?ãs2@û\£?œº6@A¤?3ç7@Èæ¥?$ 8@›§¥?ð˜9@[ܦ?j7@t©¨?PR6@Ùµ©?ù58@‡îª?¸Æ:@X~¬?ß«:@$Ü­?ím9@då®?Àó:@c¶¯?`:@›°?«è9@µ±?|±7@K°?ÒF5@úw¯?dÁ0@»®? -@]ô­?¨*-@gÿ¬?ýz.@‚±«?Üø0@䛪?ù/@ø³¨?X.@PU§? Æ/@—¥?‚ù.@!’£?ÚÝ0@ï¡?m|3@½ ?PÁ4@ZPŸ?& 9@:àŸ?:H;@– ?±=@< ?ÇA@@uÒŸ?\F@lëŸ?Ä N@°“ ?`|Q@þ¢?lU@íä¡?„vN@o ?u‘M@†W?·+@í­?qÂ&@îá?\Ü'@%ž?ñÅ*@à…ž?Å.@Ÿ?›c3@? ?o°0@;ðž?Kr0@Ÿ¹ž?ö¾4@HŸ?õG;@¬¡?å=@gè¡?÷#9@7c¢?Û:@ø@¢?«:@/-¢? 1@ÛC¢?/@Éë¢?+(4@ô‘£?x£6@ˆ¤?ÿ5@"¬¥??4@Ó§?˜2@a2©?pÜ3@á̪?rŸ4@nü«?,»5@¡;­?`D7@Õ—®?in7@jø¯?à¡9@U±?ÒÑ9@Vm±?Dê:@±?;@h:°?Šˆ7@…%¯?½g2@ØÒ®?î.@æ®?› ,@¬å­?!¦-@½…¬?+.@çkª?pC/@Á ©?Þù.@@§? Í0@ˆá¥?Bg4@Õ¤?Ÿ¼9@ª6¢?žÏ6@Ø¡?1(9@P1¡? ¤;@¨J ?ÌH;@?Ÿ?l?@âО?a=A@È/Ÿ?šA@]áŸ?E@)l¡?0fI@H¡?÷BM@?¢?€ÊN@è#?%T*@“R?^'@Ä»ž?9Ë*@,Ÿ?Õ".@èbŸ?À0@l ?µ3@Gº ?[3@^uŸ? …3@{CŸ?zü5@åBŸ?K7@ý ?£>@Π¡?|Ì;@úº¢?öò:@/|¢?‘¸9@Í¡?Nâ1@`A¡?çj0@÷Õ¢?Sˆ/@ ¯£?5/@ -¤?ã0@$ ¥?ã/@~̦?¹o2@:B©?b 3@Ù%«?@°4@Û¬?Ô:6@…`­?—_7@¹¤®?K8@Ò…°?\08@b °?úÅ:@G€±?í>@r±?|Ö>@²°?dÛ8@X´¯?'ç2@-w¯?»v/@eX®?.@S­?/@)P«?µs1@†ª?ì®1@ýب?ú¾4@¨?Á?7@Ö]¦?¬]8@¹»£?h4@¥t¢?´Å5@üO¢?h|9@e%¡?žÆ:@¡Ÿ?XŽ>@Ê Ÿ?cX@@lŸ?a°@@ਞ?*a=@=YŸ?x<@1°Ÿ?lQ<@p¥ ?)eF@_Æœ?Ê9,@|^?^†,@•}ž?¥û.@´@Ÿ?i*0@…N ?°Ñ1@ÇI¡?nX5@µ ?b»7@ÊÌ ?gý7@  ?/h7@Ýž?9@Ñy ?³T>@¹¡?}6;@5Ô¢?º9@'¢?Ä›4@ ì¡?o3@꾡?À-@I¢?QG+@c£?ci,@R©£?À@.@VÁ¥?1@×|§?—¼4@À©?æH4@ÄŸª?×5@?è«?Ä<7@Ú|­?Þa8@r¯?ûŒ8@o„¯?†}8@Òð?K²;@FH±?ƒµ>@6´±?}Ï=@O£±?ÕÅ9@ež°?v26@Gï®?dï4@²¯¬?¡è1@ç«?^0@Z«?Íé2@h«?¼)4@Ìj©?„G5@µ\§?í¹4@T’¥?„04@5c¤?—:8@Ë£?I;@_$£?=É9@âê ?à=@¼ÑŸ?Ñð@@‡]Ÿ?È»A@!Ÿ?ú<@™ž?î<7@P? Á7@8ž?„<@Šyœ?Iž/@ƒž?G÷.@‘©ž?f0@$Ÿ?%3@㇠?àM4@@@¡?Ü6@`y¡?À°9@÷©¡?uÕ;@ùïŸ?x“:@ûž?”é;@þØŸ?•r@@1ë ?5<@M“¡?ñÈ7@¢¡?Èh6@šˆ¡?˜4@qT¡?+¥+@Vp¡?+@­Í¢?nÅ-@Ĥ?Ó1@3‰¦?tí2@¯t§?³‘3@ýý¨?Q5@¡ýª?â7@¬¬?8Û9@b×­??7@P®?õH8@õ®?šX9@q®°?‰A:@I~±?Mb:@a`±?Ìr;@ºÙ°?c"<@î¯?ß°:@Uø­?JÑ7@΃¬?+ä5@Ò¬?êQ5@·ƒ«?¥ã4@¤ó©?P\5@AƧ?«ˆ2@o¦?û5@,±¥?b“8@ò3¥?jN:@u¤?2;@+¢¢?0ý;@¡Ú ?î->@] ?.i?@ÍŸ?ß³;@iRŸ?÷¸9@óbŸ?+::@Ÿ?Ö‚;@uƒœ?´Ò2@t ?,Ÿ2@¯}ž?ç.2@äŸ?l$5@8¡?#5@Ké ?æb6@È!¡?Lj:@ã ?ûD;@÷ ?ªò:@öüž?áç;@sOŸ?Vê=@kŒ ?£¿;@z™ ?æÅ9@‰¡?,¨:@ ¡?_D7@ý¡?ÏO/@÷5¡?]Ç/@ë¢?Q·1@ŸŸ¤?e3@¿ç¥?¶3@ïù§?N4@aØ©?õÇ7@ĵ«?OÈ9@0û¬?w9@ä—­?SB8@cþ­?wÀ7@“7¯?ËB8@#ó¯?ÁÃ6@’°?Œi8@}V°?L;@a8°?ü)=@E¯?wß<@#Z®?ÿ9@y­?YÒ6@ï¬?]ô5@æUª?Ä·7@‹5¨?YÞ5@)Ч?%T7@Ý*§?8@€+¦?gŒ7@è…¥?nJ:@‰û£?^…:@<£?×w<@ŽÁ¡?$ ?@j¬ ?8e<@(¡?þ+=@Žó ?Ð<@ÀÙŸ?=!?@†¤œ?d…5@-œ?1 3@Sž?5@º ?Ž5@W ¡?Þƒ4@§¡?žc5@r¬ ?•:@« ?Ç5:@ÃaŸ?Fî7@ ñž?hV;@ÍŸ?çš<@#  ?—µ=@"~ ?®1=@/} ? ;@˜J ?âå8@Ó ?}2@ÿž¡?òd3@ÿn£?‘q4@ŠÝ¤?¯|3@Ðj¦?ÄÛ2@î§?tW5@³ª?U>8@…Ü«?T8@$­?“Ò7@ëõ­?KÃ4@5x®?p(3@å¯?xI2@r®?ôk3@.å®?W 6@Œ7¯?‹:@c °?¥ã<@§¯?þ\:@ ´®?‡Ó:@eЬ? p9@¯8«?Ã:@@]©?*2:@¹Æ¨?=Ý7@숨?•"8@ù§?æ9@Ȧ¦?:)8@ަ?yú9@V¥?ÿY=@‡ä£?·€A@£?Rm=@kb¢?¸$=@‚[¢?àÃ>@ã ?½n@@JÂ?ž$:@ÿL? Û8@®#ž?‚Ñ6@#’Ÿ?2 8@·ïŸ?r8@) ? .9@—dŸ?Ô:@…Ÿ?„“9@àAŸ?)8@5Éž?ž]<@­óž?ó>@÷®Ÿ?ùY>@j\ ?<@ÿ ¡?bî:@Š ?F™;@G× ?iå5@„´¡?]y5@Õ?£?ë3@d¥¥?J=1@Öæ¦?ò„3@›X¨?\7@KDª?˳5@´Ž«?¸°5@߬?ž<7@Ùe­?ùh3@P®?ÓC0@O‰®?î_1@@O®?Ì0@¤Ù­??Y3@ȯ?»;6@À`¯?ž¢9@çx¯?šä;@lC®?,b>@ãñ¬?Lr@@à’«?Q‘>@öª?§¶9@^+©?Ü8@ù\§?Ù9@ÞѦ?/à7@»Ø¦?äû9@æ¦?1‹=@!˜¥?'?@è ¥?4ã;@M—£?/o=@J£?’ ?@ô½¢?7à;@YNž?ö·?@ ´?¸A@„Ú?ñN=@®ž?/£<@ÒÙž?hm>@ƒËž?ÜÔ8@=ü?x;@k•ž?j;@¨¸ž?¯=@Öž?»q>@õkž?Çt>@`3Ÿ?¶~?@ L ?ÕJ=@Ά¡?Zã=@Å‹¡?¶<@¿¡?”r8@ã¡?ä5@¤?Ý61@ä!¦?ô/@z!§?ÛJ3@g©?)Z4@pEª?Û5@ý«?Ûz8@šÏ«?‡8@Ö­?4x1@hð­?‘w/@`­?XÛ.@S ­?Õ„.@Ä­?¥/@ú‘®?|…3@د?8@¨­®?µ >@ö4®?dO@@dà­?ãëB@q¬?—„A@‹©?,ö>@×ê¨???@ßT¨?ÏŸ;@P»§?9@^»§?âk8@©¦?‡ˆ9@5è¥?„m9@6d¥?s0:@†å¤?\9@µ¤?e§7@êÓž?Ä‚D@ž?Ù¡I@už?ÛÍG@ž?iâG@Ež?.øA@Æ9ž?ßo<@Rþ?ü>@^ž?à=@=ž?"ñA@Mž?A@ü8ž?ú%@@!ºž?YA@T¡ ?îqA@½¬¡?ÂB@vY¢?Æò<@ò £?•9@’¤?Of4@“ð¥?¶ö.@TD¦?jb1@P§§?_´4@Zq©?‰f5@îbª?DC4@Þîª?M-6@1¬?=Ÿ2@&Ƭ? È/@bî«? 0@ØŠ¬?Ûz,@íë¬?Ĺ+@ŸU­?®|-@L­?6¤2@¼Ð­?žK7@š†­?‘û:@^®?P"@@ù/­?!E@ <«?$ÄE@Xª?ŒÃC@@˜©?^?@·£¨?Oî:@æ%¨?NÔ8@¥²§?')8@Wý¦?WŠ8@Ö…¦?g 6@ ò¥?îÆ5@ߤ?Ø?7@q-ž?‘éI@zBž?‘žK@@ûi£?â:;@€¥?I3@jU¥?Ãþ0@û˦?º÷2@o¢¨?3=3@•7ª?D¢2@ª?‹Q4@JP«?Å’1@Ý«?›-1@Ó¾«?î2@œ=¬?X¸0@aŒ¬?Ç¢/@¸d¬?=/@ ÷¬?JW0@À¬?‹ª2@Rø¬?X92@z­?’h7@·g¬?ô3?@j¬?œÒC@îø«?ƒÚD@‰)«?8ˆD@jª?ÊÔA@/¨?ðÇ=@$ŧ?R„;@¼§?XÓ6@­Š¦?œ1@²t¥?¬#1@‹6¥?+Õ4@iBž?&¡K@Züž?ÑN@6Ÿ?ìN@­ž?P@¤ž?-•K@º>ž?}èE@ºž?ÃD@ž?-ÚE@óŸ?`L@@Ÿ?MI@m] ?GQF@`± ?.KF@¿n¡?ÃÅF@2A¢?ÕýD@B¨£?Íõ>@cH¤?×µ;@™ø¤?‡’4@t¥?°Ý2@$…§?=ª4@Š©?Œv4@Þã©?x/3@GIª?:Š2@}v«?w>1@PÜ«?ñã4@u4¬?ã6@Iö«?È1@œ«?\*2@ü%¬?ü0@‰Û«?å/@ov¬?,Ï-@³«?0@È4«?¦Ï5@AY«? †;@ï«? Í?@¿˜«?‚\D@Ñêª?°E@ª?+ F@“Õ¨?-úA@OÀ§?@÷:@#t¦?È4@ýȤ?ñ,0@x¤?â30@· ž?€ÂJ@¾)Ÿ?©¦K@:lŸ?¨ªN@r³ž?&÷N@$0ž?VO@•.ž?J@þ®ž?öSF@ Àž?¤=J@zߟ?]TP@· ?£ÜK@„ç ?}tH@tô ?ÉK@:¡?bI@Y¢?½F@bì£?Gõ?@”d¥?{ñ:@ST¦?7@/u¦?>Ì7@F¨?P(9@(J©?í7@¯©?[Ó3@çª?/W1@Ú«?.5@]à«?š¾6@?S¬? ô4@¨ý«?×Û3@Bü«?§3@wP«? ¿1@P>¬?‘B-@Ê«?¦Û0@Sýª?1š1@&(ª?–‡4@yª?¯8@nª?Ì?@¥Zª?¾pC@ôª?q†E@Ýש?¯ÈD@éð¨?$n@@f§?Ä<@‰¥?24@Ѥ?Ð/@M ž?J¸H@ušž?¿†J@hýž?þH@¤ðž?œ…M@äÿž?ròL@mãž?w K@…Ÿ?6ÅF@£ÒŸ?”G@u8¡?ÿLN@ð¡?QžK@sO¡?ãJ@”°¡?<N@Šä¡?«“J@¬Ë¢?G@Ñ¡¤?%#>@ヲ?Hz=@I§?uè:@„è¦?Š?@on¨?#¢:@é©?„5@Ò4ª?Ïé1@È«?ÿ°3@.&¬?­4@°{¬?+”7@>|¬?l7@«?}M5@óö«?‹3@54¬?tñ3@›¬?î¾5@:÷ª?14@2ë©?Øb2@å¨?Í(4@®J¨?tg5@B‚¨?Õ„:@'ø¨?¶'>@7©?ì”A@Vu©?½£A@¯ß¨?éÓA@âa§?àâ<@Ö¦?“7@DΞ?ß:F@d(Ÿ?uÒE@TLŸ?ÚD@ ?•œH@'áŸ? ÓI@È ?ÜFG@oÕŸ?îG@º ?J@òƒ¡?ú•M@•S¡?å‰G@¡û¡?aH@p¢?îBH@ÊT£?Ì|K@µ£?†ÿG@ݨ¥?àPB@ÄY§?D–B@·§?Ÿ…?@|×§?}”?@ʨ?úË:@Ôz¨?3Õ5@ÆU©?„P5@$*«?¤ë7@ì1¬?lš8@Lí¬?‹^9@ä¬?YS4@œ©«?Ó 3@wr¬?½P6@ýù«?7@sy«?_Ô5@û©?4²5@oy¨?5'5@‡#¨?sÿ2@’Χ?Á'2@°Í§?3 6@ ¨?ÃK:@’Ĩ?Åw<@þ©?ü‚@@`Ÿ¨?'|A@t§?bA@¨.Ÿ?ÑòC@æþŸ?‰ˆB@ÍîŸ?q‹@@t£ ?ê1D@¡ ?«ªE@©¡?Š0F@^¬ ?2G@o=¡?¦L@?èDK@Ûf¡?ÎÁF@Lo¢?TTD@·U£?4E@22¤?E1H@¥?©0F@{§?¾`E@¯ ¨?eÌD@z¨?UD@U:¨?'ÏA@PZ¨?^3;@Ø"©?I9@I‚ª?§Ï8@+¬?á6@q_«?£ô8@NÜ«?y[5@¼î«?úU4@aª¬?/6@o£«? J7@îñª?gæ4@ØVª?%7@¿›©?Í»5@l*©?ËË3@C©?²92@‰å§?z/3@d9§?œþ3@\X§?ø3@qä§?Zf7@ ¨?Úù=@(ç§?¬ðB@W ?‰d?@¼Â ?}ã;@• ?W½9@ x ?Ä<<@æÏ ?ßL@@ô ?ÎjC@ÝI¡?S¨F@ X¡?d±K@ÇP¡?Ú£I@xŽ¡?nÜF@± £?@ªCª?Šv<@|‰«? £9@Á±«?§N8@S«?;7@`Ñ«?+5@œ¤¬?Ç/5@߬? ÿ4@Td«?{]4@S#«?Áf5@~ëª?»A8@ÒÔª?‘Ü6@Gn©?) 5@4¨?ÛÂ5@lž§?N*5@v¨?ˆJ0@è0§?Gû.@Š„¦?£F3@^¥¦?_F:@&‰ ? ­2@Çü ?/H0@I– ?õÊ.@ÃüŸ?_Þ3@÷9 ?wb;@I× ? &=@7%¡?ŸÏC@rÖ ?ÑFE@ÄG¡?+½C@I‹¡?ÑUE@¶‚£?'H@ÊÑ¥?aF@Zÿ¥?ùG@Êù§?(àE@P©?Œ1E@_¼ª?¶H@lÅ«??ˆF@ Z«?ÌïD@È«?ÇÓA@Ö¬?¸>@h¯¬?¢Á;@ˆ«?ìí;@l«?‘<9@+\¬?‡Ø7@J«?†,5@7ݪ?æË0@øáª?xl1@¹æ«?¿(6@·«? T7@Ž=ª?Äé8@[ì¨?Øm8@#ü§?ÏÈ9@ÛD¨?Eú4@ §?!2@«Ú¥?YÞ.@¥?@Ü0@17Ÿ?³(@‰!Ÿ?Ķ&@í¿Ÿ?nJ(@4  ?E\,@PÀŸ?œý0@ éŸ?*2@‹0 ?ÐO7@|– ?Ј;@d)¡?¨N=@£¡?tsB@3£?<I@ë¥?ŠK@×§?×ÑI@ g¨?#ÌG@ò©?ÀH@OÄ«?«™H@†Ò¬?ïqE@Ϭ?D{E@*‚¬?çïD@\¼¬?ÞIC@½¬?;kA@þú«?d¦A@q*¬?Dy>@X«?c;@/ª©?%6@¯Õ©?Òú2@ á«?•‰6@›«?Ü9@!ª?ãç:@\©?ã¬8@âѧ?½¾9@ñ>¨?@Ï7@¨§?e&6@sÊ¥?+[0@Ö¼¤?Èa-@óŸ?7z!@‰FŸ?+k@ʲ ?ëÝ @ 7¡?ƒû$@êž ?„)@ÍàŸ?*@ôdŸ?ÊA-@¤¼ ?rG0@¼¡?|ˆ3@С?|:@áò¢?vKC@-,¥?îgF@]¦?×›F@7¨?@ÕI@]qª?„ I@!š«?gF@=ý«?._C@ƒ'¬?¾F@­?ˆ=I@YZ­?—7I@¢¬?…NF@~V¬?ÛWE@ò~¬?a†@@ìd«?˜Û:@9Qª?@ž8@ß«?¤X8@2Ø«?Ž 9@}«?8@ål©?D;@ʨ?DP8@†(¨?­8@碧?Œy:@YĦ?<7@÷g¥?½Â/@]E ?¯@ ^ ?TÉ@`H¢?¢@"¢?è0"@÷¡?ú%@…Æ¡?aä&@¢l¡?ø&@’Ó¡?J/(@L¬¡?}:+@ÿ¢?]”2@½ô¢?‹q:@84¤?D½=@"¹¥?t‘@@°Â§?ØuD@剩?³cH@½ª?`éE@é«?Å×C@`x¬?QrE@ÿþ­?4K@™X®?˜´L@cÚ­?j¡K@b­?üïG@û1­?цA@Ü)¬?äÜ;@§U¬?‰;@an¬?pÒ=@Qq«?Sy9@®4ª?8:@vü¨?7ì8@¨?O9@Ó<§?2È<@z¦?€€:@Ž^¥?2p7@Ô;¡?T@¹À¢?Œ@i£?@x$¤?Œ“!@ÿÏ£?žŽ%@1¤?Ñ?%@÷¿£?(Ñ#@*å£?ÔŽ$@£¤?Ý'@ü}¤?ã®.@þ¤?¨j0@j•£?"55@_V¥?:@¼<§?Wà@@‚©?·HD@€Zª?ZöE@ßw«?_E@¤ñ¬?¹H@KÓ­?רL@÷s®?ĹM@H®?"¾K@¼¡®?¿˜G@Ç®?|žC@Ä•­?¡A@Œ{­?bÀB@žQ­?øæ>@¯Þ«?Ϭ;@¢£©?Í)9@ê©?…é8@§‡§?ñP<@ï•¥?b*<@¹Y¦?v6@!K¢?ïL@fd£?DÃ@¡Ý£?‘¶@Ë)¥?Ïe#@%¥?Þ«%@dÎ¥?ôÏ'@q£¥?²%@Ð}¥?sú&@ªè¥?v[*@í5¦?`,@1¾¥?·,@'&¦?Ÿû0@š¦?ÞI4@)¨?Û~:@ÚŸ©?P?@Y÷ª?ƒÜE@ˆ…¬?3}G@e­?ØDJ@ê]®?òšL@ä’®?&(I@¶R®?9I@D¯?£lG@B£¯?®D@©d®?ZE@Àî­?x–E@r­?ìŒA@óÙ«?2ò<@òwª?­T8@éé¨?bl=@ì¥?ȸ<@Zò¥?˜M9@,£?U@þ¾£?Ô_@gí¤?ð!@,•¦?xÙ$@;4§?'@UǦ?ÞÏ)@,g¦?zà,@%§?¢·0@}b§?Yƒ0@ØÛ§?Z]-@PY¨?(Î,@rL©?gæ,@®O©?…Ô.@Ì©?¹î2@—•ª?OW:@Ô «?¯C@¯Ý¬?ÏÚG@ÆO®?Û9M@¯?–JL@ñÌ®?ΓH@éÉ®?yŠF@ñù®?Ø]F@c¯?0âC@/¯?àqD@.®?i)C@ËI­?D}C@ìþ«?j@@'ª?¹Ž>@ò®¦?úÜ?@µ¥?AÏ:@V×£?Æš@­5¤?ie@Cƒ¦?Ä™"@<ܧ?H%@Ѝ?±"(@‚n§?Š$,@›§?úW0@ ñ¨?S7@ì ª?®z3@”`ª?^9-@Ló«?¸d,@¥à¬?þã+@:¹«?¦ü-@åÖª?ùV0@Øa¬?\o4@^a­?ÙÒ<@;œ®? sC@°?ÐøH@ƒÛ¯?ÃJ@'±¯?nI@ž{¯?žJI@˯?<®D@°5°?îÛ@@çã¯?…îB@Å­®?µRC@¶ï­?R8C@kŸ«?PB@…Ò©?D²>@r §?^ò9@F¥?ç @¢†¦?Ož @妨?p!@Ôx©?Y$@÷"©?óò'@àÖ¨?·t,@P-ª?m2@~ÿ«? ?7@Q¬?à4@¢ ­?ž¼.@x­®?®o,@¯?€»-@5Å®?Q70@à&®?-:/@vU®?³D2@.¯?D³8@Áe°?ò÷=@õ¼±?½gB@($±?8hG@u°?ÒJ@¬ˆ°?^MJ@¤Ë°?«§C@ƒ´±?ûÕ@@öG°?@zf²?ØšD@|)±?:0I@øò°?ž¾E@¤/²?÷¦D@d ³?&-C@qE²?³†?@ø°?Ïâ?@IO®?†þA@£ª«?óB@Aa©?¨Ÿ$@¯Åª?NC$@Óå«?ª,"@ÐL¬?š6"@Û^­?`³'@¡þ®?CJ,@¹Î¯?Ä3@0D°?Ëì2@šn°?c°0@Rõ°?Q÷0@,ó²?ë¥-@Út²?/ÿ,@pT²?A4+@f«±?S!+@EƱ?pù+@„%²?87.@úO²?b93@I³?m¤;@oæ³?™r?@&}²?:ë>@›³?U/>@*Û³??gA@´Ì³?¾~B@½²?#Ù>@銰?A@x:®?žýC@H«?$È$@*©¬?¯§#@êI®?&‡#@À%¯?ˆp%@#h°?NÜ(@7k±?Ú,@˜²?ÑŠ/@–õ²?˜Ä2@›³?*0@æò³?Y0@"´?.@~b´?ø0*@Îk´?ýŽ(@åÜ´?’À)@4e´?!’)@A´?í*@þí³?ñ60@+ä³?f6@t;´?f+7@=³? ó5@Þ²?EÊ8@²Š³?ÿž?@ª>³?:uA@¡û±?ÛË?@”°?ÍB@þ»¬?„O"@Ãy®?0ö$@En°?ÕÌ%@¦¾±?²a)@ï³?,@èÛ³?4ç,@Åô´?Â.@ܶµ?²P/@tÛµ?²,.@o¶?‹Ñ-@mQ¶?o´+@½Ó¶?ŒÉ(@eß¶?Ô:(@5—·? q(@ÏK·?8Õ)@ ¬¶?h%,@¬½µ?nþ/@bäµ?\¥0@'µ?eº1@²´?Ì‘3@VK³?ìá7@<²?ë«=@D…²?õ?@¹«°?@NB@YD®?J#@‹°?+s(@‹²?*@,ï³?Õû)@©´?w+@’‘µ?'ú*@oð¶?a+@"›·?,Ì+@¹¸? +@ñ¸?ÝŒ)@ø? Ò+@¿–¸?BÉ*@o¹?/µ'@°•¹?É:'@yP¹?Ò¶*@`”¸?p™.@~v·?¡1@>U¶?ôx2@ŒKµ?^‰0@ ‡³?xÀ3@Ã*³?+c6@­V²?éë9@©³±?µS;@Üϯ?u#&@vI²?ïG+@7R´?_\+@(¶?¿)@R.¶?Ô#)@ ¢¶?™Ì(@¡¥·?Q¦'@zu¹?'Å&@)Ⱥ?“ '@»?‘N(@ah¼?™ù)@4ç¼?Ú)'@ˆ"¼?žÍ%@Ɖº?V|)@Ò*º?ìþ,@Qй?ÄA.@ÚP¸?îÉ/@f϶?«ü/@L´µ?8«/@JZµ?™y3@Ê´?”5@غ³?A„6@í¢±?zœ(@IK³?<~+@’µ?Þ+@ Ô¶?^¯*@Ñ`¶?_Ù(@ËI·?H&@X„¹?tb%@Žâ»?I$@P\½?«¹$@³¿?z%@ðZ¿?KÓ'@é‹¿?5‹&@×!¾?MÓ'@ {¼?õü,@`¼?Dt-@¬ÿ»?"ý*@2ð¹?tœ,@Õ§¹?Eù,@ ¹?“Û-@Α·?.2@†¶?ÇÜ4@(Ú±?ím'@úa´?Cÿ,@Ί¶?+.@–g·?f+@·s¸?Ó<&@Д¸?T>'@*`»?Xp&@À5½?çŠ%@ðy¿?ï¼$@Å8Á?ã‹%@´Â?¿(@üñÀ?3 )@çK¾?/›,@lÓ½?Ð….@a˜½?„+@½¼?Yå'@8»?ã+@ÿÍ»?Ê+@s¡»?k-@Rr¹?P&3@Îú±?t+-@´jµ?Zó1@IY·?¸Ð/@Ôw¹?oV+@2¹?PÒ'@+ø¹?Þ#'@M¼?d°&@Úˆ¾?x©'@QøÀ?.G(@qÃ?ñ³)@QrÃ?ÏÖ.@ŒÁ?1Ö-@Þ¾?ì².@óë¾?\ .@K°¾?îÜ&@÷½?:H&@(m¼?bô(@d¼?Dñ)@Êœ½?ýì+@Ž ³?RÐ3@9¶?96@µÈ¸?Ó·2@•ú¹?´ô+@›€º?^­)@ÿÖ»?¿O&@/¾?‡š$@_Á?Ù£&@ÕVÃ?5Ð)@¼eÄ?Ÿ>/@sNÃ?­4@~þÁ?ñ0@ðkÀ?£W,@ÔrÀ?6Ô(@‰¿?ÑŸ$@TS¾?@NI»?q×B@/¾?'~?@³`¿?)Ö5@EÒÀ?Ì7,@ŸÃ?*j"@oÆ?ÎK@ÛÇ?0@~yÇ?æj%@Õ Å?9)/@êCÃ?›C3@`­Â?ì\2@Â?Ä/@ë½À?kl-@èUÀ? °*@çäº?È÷<@®¶½?ŒdB@37À?Ë3@@¯QÁ?Z7@g@Ã?Á-@@hÆ?d @h/É?u:@ºBÉ?æ¦@ÂÈ?Ø&@‚Æ?âº1@ŒñÃ?¤°6@7ÃÃ?úG7@=2Ã?lj5@W`Â?iÔ2@|D½?®ú:@Êó¿?“@@YÂ?š\@@¦šÃ?‚8@;>Å?x€+@žyÈ?Ó5@õ´É?,@ÿBÉ?nP!@{È?½-@ÛÇ?$)8@ÉbÆ?*ô=@nïÅ?w>@ŒsÅ?Ff<@à½?Sè9@áÁ?rT?@8BÃ?8V@@jiÅ?=ƒ6@!dÇ?¯B)@(ÚÈ?¸„ @«ÐÉ?æE!@“É?Òá(@¯É?¯À3@÷È?¼Ö;@ªÈ?UU@@ÓIÇ?wê=@O¾?½–6@³ÈÁ?Ûò;@ÿtÄ?ŒÛ<@ŠuÆ?«)7@5õÇ? ^,@“ÊÈ?­)%@7èÊ?ùÁ'@¦ÁÊ?øV/@«/Ê?Ï 6@bÊ?ë;@*åÈ?qî<@wÁ¾?m[2@dAÂ?äa7@5hÅ?î9@ï>Ç?À½5@|8È? .@ëBÉ?–š(@oË?‰*@ãSÌ?»¾/@9SË?mÃ4@%qË?ë7@øµ¾?*f*@›$Â?ú.@ Å?Ra4@&ÁÇ?ŸÐ3@Ž­È?ÑÅ.@ëôÈ?Äy(@ÈË?œ¥)@ïÌ?K¤-@S5Í?ø<2@»\¾?M¥#@±çÁ?6-*@âÅ?_//@œhÇ?…1/@%žÈ?Qš,@æÉ?ºª(@mƒË?nã'@œ1Î?6',@j½?°j @áÀ?Jì'@`‹Ä?K×,@ÍÇ?±/+@…3Ê?¼)@üÌ?‚î%@ûËÍ?`^&@€¼?cè@ 3À?9í$@ͼÃ?bb(@ëhÇ?0(@.±Ë?SD'@ ¨Ï?.¾$@jG¼?Án@âCÀ?'Ú#@ÚvÃ?½Ç%@¼„Ç?K%@$KÌ?ªà$@KÏ»? Ý!@þ¿?ÎÑ'@¢Ã?%)@ÂØÆ?} (@ऻ?'%@ ®¾?€+@aÑÁ?ñö-@,Uº?)@.J½?Ã-@E$¹?áÚ+@ݤµ?”8@Êíµ?.Å.@M¶?bï&@ï¿¶?«×"@r¶?ø%@ÝÁ¶?«(@;Y·?K¨+@?X1@ÇU¶?2ƒ2@´Hµ?Ç/@wŲ?#z-@@Ä®?žÊ+@Âfª?äò+@Ùܦ?]…1@®C¤?%>9@Äâ¡?oÎB@„ËŸ?6¨J@•Å?uOR@‚Hœ?>Y@ÓE›?ðÁ\@Š[š?}6^@ºD™?7+Z@D†˜?ŸÚT@? ˜?ýO@¶‡—?+=L@D{—?¨¸L@Ie—?‹K@†—?ŒêG@;7—?N—D@‰Ž—?C§@@–˜?Õ1>@—˜?v€<@n¾˜?Í:@ Û˜?%å:@_2˜?˜<@¬ä–?‡Ì<@F–?ÈK=@z­•?³º:@âs“?êf8@»‘?…d4@q†?Ú{2@S¤?H—4@0ŽŽ?QE6@Ž?,¨8@îÇ?*:?@×½?!ûH@·?œâR@SŽ?Žð[@x„Ž? f@·Ž?ÌÏk@E??s@Yk? I}@rl?@{‚@å?È©…@Ù1‘?0`‡@å{’?ëˈ@i]›?‰X @º›?'p@›?$@ZÔœ?¶ñ&@@~wš?²á8@+ãš?~\9@¼š?W@@³«š?/F@gD›?õC@xÍ›?ÑuA@¹?<[;@ÂYŸ?¶¥5@a ¡?ã=3@Ee¡?þç.@~ÿ¡?)E/@²Æ¢?Áý.@L1¢?™E2@㈠?+Ÿ5@ ñž?Œò9@@ÍØœ?*D@ý:œ?íÖF@Ð`›?U%I@<Øš?°¹D@¨vš?‘u@@Ù‡š?›7E@%Rš?Q$M@„Ó˜?ã]O@ÿv–?ÒHJ@•¿”?MP@’?ܹb@Ø8Ž?ææ‚@²SŠ?б“@³Ô‡?X$•@·1‰?@ƒõ??Sw@úpœ?‚rW@DÖª?Æ*=@׳?Ôû@«×´?¡¾ @læ°?à@I®?yB@pC«?”xr@k÷Ÿ?ƒ¹†@eÙ²?A=@ˆN²?$Á5@ ²?ç4@®°²?«¿4@Œ ´?ö¹4@\µ?ñî4@˜dµ?µ‹7@6vµ?=Â:@â$µ?ÂF>@‡e²?T‘?@»­?Gä9@©?]„4@:€¥?7@µ§¢?=@Ký ?kJE@5Ÿ?ÈeN@Y!ž?DzY@‡Úœ?Rc@*œ?øh@=V›? Äi@— ›?sqj@~ðš?Q”i@ü ›?+Ch@cd›?h@,Û›?:©f@Nð›?¤[f@k,›?Þe@ª#š?U¼c@Θ?Rb@j—?Dþ_@…–?íZ@º–?þ7Q@‡_—?u$J@ðÒ˜?V7E@q`˜?ËãB@U9˜?ºßB@Xë—?Ž•C@`—?9ÛB@É?–?m1B@. ”?~Ù?@³á’?7>@\’?òà?@Á!’?H¥C@>r’?0OF@y“?SêH@?²•?ZkL@ ô–?ÏR@k'˜?‚ÝZ@*u˜?age@Êü˜?ç j@‡™?dq@Hï™?í y@웚?ô˜€@ƒÜ›?fƒ@¿Š?™ø„@JU®?—o5@Ë"¯?Ú0@µ§¯?™¾1@ûw°?BX9@ÖL±?V}@@2²?X^B@H’²?=@@”±?uA@½ù°?NC@˜ú®?•D@B'«?—4A@uƦ?–ç@@ ¢?Ÿ@@pžž?xNA@åvœ?W¸E@”•›?+CM@è ›?ôyT@êÈš?^Ž]@Ùš?¾¨d@H›?›#i@$ž›?_j@iPœ?;’k@íK?(lk@ô|ž?0Gk@ÌÛŸ?ak@Ë¡?ë…m@Çã ?+Øn@`ÄŸ?=…o@,Š?fr@@…š?¶úq@Q®—?ø`q@3x•?``p@Ðx”?ˆ i@d©”?Mö]@€&•?ijT@âÄ•?ä1J@¥ª–?VˆE@M—?oÂC@Ë-—?ŽOC@0–?mC@¬•?ÄÉE@ã–?|¦I@N—?šùL@8™?WÄN@d“š?¹@»©?©«<@,§?+P<@?b¥?_¹>@ Ò£?ÃÈ?@·c¢?´.=@â{ ?œs9@Á?ÙÚ6@{›?`ý7@ ™?ô¾9@¢H—?«$C@0T—?x6R@­†˜?½Y@ÁÔš?¿¨Z@êu?¸W@Ëߟ?I+V@ÙŽ¢?+SU@|¸¤?R@Dž¦?ûßK@¨N§?"H@è•§?ûÆH@Ö³¦?“¤O@X£?µ\@Ÿ?h!i@ìš?mbx@L¥•?ø&@>ù‘?q£@%S?’}@Ž?U¦r@óMŽ?;;e@Æ?ÔX@Áá?+yN@8·?q›G@Â~‘?ÉC@uë‘?«ì>@ª®’?:@åd”?£3@О–?O….@Ô¬™?—z)@åÚ?|A(@â?¢?tê#@ဦ?¿ï @yª?nì@@Ì­?X@5v¬?ñº.@±‹¬?04@y¬?Ä;@Jê«?…XB@ú„«?/´G@Ý3«?®OK@%âª?ËeN@7ª?ÎL@Q¬©?/J@‡Z¨?eÉD@¼í¥?ü?@‡‡£?$0=@‘8¡?Š=@›TŸ? i=@R‘ž?r&9@·†?eõ5@´¶œ?ø¼4@P›?CÅ7@Q…™?@Ø<@qÖ˜?öG@,6˜?Ö¨S@¤´˜?òW@@ï™?PùV@ß ?“U@ ?œP@U¢?±ÀI@ŸJ¥?ŽC@¶:¦?,‰>@/Ä¥?!&C@¾Ò¥?æ1J@è×£?€ŸO@¬%¡?+[@ï?Ek@(š?²}{@ï–?q«‚@cÝ’?²Á…@MK?'„@ ¯Ž?p,@Å|Ž?dix@Â?|Nm@"?ó`@jÔ‘?ëOU@gâ“?ÎbJ@1¦–?ܦ<@ÖŸ™?Ôr/@ãÖœ?õ"@ðM ?oZ@`x¤?0@¢Þ¨?%}@ûp­?‚– @„G±?ë† @Ç[¬?ÀÑ-@ì?ä25@Ý­?'#@@ñÿ¬?lJ@­?´Q@Zâ¬?R R@Þ¬?ªQ@õG¬?[L@«?xiH@%¨?Õ\E@Ó{¥?wzE@¿£?DÐE@è ?zH@¡tž? I@J”œ?TÞI@S›?AOK@äZ™?*L@¼˜?…=P@©'—?LvU@ö5–?üU]@ñ¾•?‘b@AŽ•?P¨d@»_–?¥¦e@M˜?<”a@ĸ™?ê[@Q{œ?9>Q@¼Ež?E^G@ÎÒŸ?^uC@†Ý ?öýA@$A¡?wÁG@2ÏŸ?5ÎM@R6ž?ˆW@÷%œ?ë–c@ý™?Éo@¤—? è{@ŽY”?ã€@Õ(’?Q}€@M©?#³|@”?=•s@+L?U‡h@ªb‘?¦[@¯s“?Ê)O@®’•?k£B@Øa˜?€8@çáœ?ö’/@ª¢?µ'@ÌF¦?á @‡©?¦@–¬?±Î@ů?Èg@­­?È–/@àM¬?© 4@ãa¬?³o=@<ü¬?+G@FÊ­?ËnL@?®?l¸M@î®?nK@Et®?µH@}Ä­?5H@8]¬?Ö I@¡ª? AM@xí¦?·mR@Æp£?ªu[@gР?¢ÿa@ø?€ f@æU›?¸¤h@b…˜?Äj@ÿ–?N×i@VO”?6rl@ÉÀ’?‹ål@ñV‘?‹l@˜?"5l@f¯?óm@bu‘?®Ul@.~’?óÊf@Àð“?8s_@'–?ý|U@ ˜?‘ÎL@Ä™?gJ@R š?ÐM@¥™?kR@Ž™?’yX@Ao˜?•,^@À—?g[d@²d•?“ki@îR“?–Üj@³0‘?})l@Žp?%l@…°Ž?ÁÍg@qŽ?áóa@2ÉŽ?JR]@¿?G5X@߬‘?ÉñS@Q”?DþO@:—?»£H@Œ8œ?{ B@\— ?O{<@×z¤?Ï9@ Þ§?Þµ:@wÝ«?O2@@«?É’6@ «?‘E=@1v«?‚ÌB@â ¬?8øF@ßð¬?õGH@³‘­?EóF@œ¿®?©9C@Ö¹®?^@@Æ–®?8&D@µÊ¬?×>L@”H©?W@н¥?‚ý`@^¢?»¹f@Á9Ÿ?«k@¯œ?ô{j@gš?~+h@º™?aûd@Ù–?¶™d@ã •?¿6c@Å4“?«É_@ÄÉ‘?=3[@¶u‘?ìÁZ@dÉ?æ5Y@9Ê?8X@˜—?‹U@³~?]BP@‰ë?í¦N@ÊŽ‘?§—O@¥’?Ï=P@‘¥“?¹T@À”?Ëß[@Ø9”?ñ[f@¼r“?æ)p@óõ’?‹ u@Vn‘?”3y@‰%?]Ú~@£NŒ?½5€@t'‹?°p@VŠ?*‚@áʼn?I‚@Ö'Š?Y‚@H‹?7@ÂŒ?‚D}@‘3?»Šv@|:’?qöl@oŽ•?’½e@Zì˜?ûÊ]@ت?šÜ:@Þ…©?_N?@¼(©?ç‰B@ö©?â™D@ï©?ü$F@ ª?ÈiF@‘¬?®tD@áy¬?ú¡B@®+¬?Ž™A@yoª?ë®B@Z¹§?EÕE@¹œ¤?ï¼I@éΡ?æM@–Ÿ?æxP@q?„ÒM@#Ž›?Ñ\K@&š?:ÐJ@˜?ŽL@hB—?Ò•M@‡@–?ÓwO@7`•?3‘Q@p”?УO@—“?ŒN@©î’?†þM@ô=’?2—N@Ó°‘?.äM@<‘?-”J@®i‘?QýJ@ò=’?yhO@Ö»’?÷/Z@–ê‘?iÙd@R¸‘?ŸÒo@þ‘?]`y@FÒ?j¢€@¬¤Ž?Oû‚@E?s‚„@Ós‹?«å†@üø‰?+G‰@ݲˆ?Jg‹@kɇ?É1Ž@B1‡?¸@ã†?½ù@Ð$‡?&ÊŽ@³ˆ?‚®Œ@ØP‰?6SŠ@ ‹?‡¨†@!O?#>‚@ k¦?xN@šR¦?ðO@cs¦?ý,P@ñ¦?-P@»Ä§?ÆuN@謨?µþK@þ ©?ÌH@Uj¨?yÜG@ŸG§?eÀE@ˆ¥?ÄgD@°Ð¢?¦E@c ?ÄçE@mUž?„F@ëeœ?‘\F@›?ÖKI@Sš?E;L@³P˜?"ÐI@òä–?ôËH@¾•?„I@ç””?«F@\“?·E@Åò‘?ñ×C@Û€?£(B@Æ?Ñ8B@Ya?€êE@졎?qýH@ÖÀŽ?üñN@âÖŽ?û¶V@ó_?v‡b@ H?Ô-k@e€?ÁÒp@-’?€Dz@:I?ÌÂ@‰Ž?;€@)Y?½@\=Œ?Ä‚@2-‹?{»„@gó‰?Õhˆ@ýˆ?žfŒ@߈?Þ @`&‡?ê’@ï†?ý“@sk†?ù”@º«†?I;•@¿>‡?þ=“@¦ñ‡?ëêŽ@9y¡?;K@D¡?íúI@¼M¡?$vK@Ü'¢? QM@sN£?”¬O@ •¤?FO@0 ¥?ϯM@ãÞ¤?ãÿK@â¤?\—I@Æý¢?$H@o7¡?qhF@%;Ÿ?gD@‘\?!²E@äW›?9ÃF@­Qš?nB@™f™?« @@@Z˜?!<@XÛ–?Kn;@ÕD•?dO:@ä”?ÀŠ9@ƒ*“?®Þ6@É/’?éœ7@y´‘?±˜=@æ*‘?aÆA@œÕ?¸eH@µ?!‡R@’€?“[@œ»?kŽa@cõ?0g@¬q?éÎh@Òt?‚ol@7?ä™n@âBŽ?óo@i‹?…ñr@Ðh?4¾x@£®Œ?^ý~@fŒ?ñƒ@ím‹?xYŠ@<Š?M‚@.͉?=Á’@êÆˆ?yΕ@ˆ?@l˜@ª‡?øl™@x‡?Îݘ@â…‡?¾Ž—@µçŸ?ýa4@*dŸ?Áµ2@ÄÇž?t8@¶£ž?ÿ¼>@~ ?°hC@)¢?ñ„G@o.£?”ÍJ@Ò ¤?ƒ¦J@Á£?¬7J@¡E¢?åŽH@ͱ ?QÒG@ …Ÿ?²*G@§ž?X&C@í?DÔ=@`œ?'L;@¡Ú™?<4@Ü—?›.@çë–?Ay.@³–?À“1@¾7•?ÏØ6@7 •?ó(=@ë(”?ŒOB@J“?-YH@ ÿ‘?¬!L@Hö‘?Ç7O@Tè‘?¥XP@Cô‘?pJS@ |‘?¼CV@ôÌ?¬-Z@–Ê?qL_@b?q›c@¿¼Ž?Å?g@?# j@Œ¹Ž?)ÿo@=‘Ž?6u@4kŽ?ݦ|@OÄ?Ü‚@‘ìŒ?‘3ˆ@ aŒ?Ž£Œ@9Œ?C?@eý‹?í@Y—‹?Óª’@›)‹?Ü”@ý¸Š?u^”@ð¸Ÿ? ‡'@``ž?’þ)@…?Š/@(¨?T5@dŽž?)Q9@îúŸ?k=@¤!¡?Ÿo@@gÛ¡?õ™A@w>¢?¥+C@ô³¡?K‰C@YU¡?ëðC@9$¡?iA@­³Ÿ?#;@m¿œ?FP4@`Vš?Ŧ/@ûö˜?[È,@Oÿ–?ìÊ-@RÛ•?vT5@§¢•?Óm>@`(•?T^C@//”?ÒdE@n*“?‰ÉG@ãÁ’?íG@G\“?vâH@Þº“?I@#_“?-K@j’?)1O@Æ ’?æøR@®–‘?NÊY@"b‘?B^@Í!‘? cb@ ‘?+e@Ùî?@k@®þ?2Åm@´˜‘? Äq@Òš‘?Ñw@ÏI‘?èív@Îz?|\|@%/?x³€@É»? Y@ðe?K£‚@, ?Ãö‚@ÎŽ? Þ@þ?F(@+'?Ñè(@QZœ?ÂØ)@/=œ?މ,@ò¨œ?´ò/@1-?ª4@ž?/ˆ6@¬RŸ?V:9@ Π?ÌW;@ù}¡?Ä8=@S›¡?,›>@ŸÌ ?›Ž=@óKŸ?s=@›ž?²á;@ï]œ?ž°9@6š?Eš9@-}˜?:@ ¯–?ì½<@­•?óô@@÷‚”?œõD@•?!°G@´”?7€G@WŠ”?0A@ƒÅ”?t£?@«f”?WßC@j²“?kbJ@‰“?›ÃO@:t“?çnU@í„“?}[@$f“?±¶_@Ö“?–ßa@)Ñ“?êe@jÓ“?JÕg@˜”?)Ïc@}Ö”?¢$d@6£”?i e@!Γ?Qµf@îø’?¿f@ͨ’?B¨j@5ˆ’?µ¤g@¿’?[½b@ ª’?Ï`@®P?ÜÂ+@Ä?`¯(@jhœ?0'@ œ?;œ)@ ö›?M1,@-„›?,¨-@¹œ?Jc0@¯Þœ?ý1@ÑÔ?;=5@iüž?Ä«9@+Ÿ?¬,<@½,Ÿ?U÷=@ÉÉž?‚IA@ÝÐ?Ù»B@=Gœ?8C@Wý™?:ó@@Òf—?ÚC>@„÷•?f=@ö••?¼A@¼•?3@@!•?fÁ;@ÄA•?ùˆ<@ö'•?pB@šI•?Q[F@'&•?¨ØL@¢1•?0¬R@vA•?k=W@wŠ•?gZ@Ý>–?ÛÓ[@í¤–?=O`@0—?@Èe@ª¨—?ìTc@ý}˜?ëA^@ß5˜?Z]@£—?¹Y@âg–?€Y@_•?”-[@r•?ÝW@~´”?¢S@&Æ”?DwO@åý”?ž'N@WC?P²/@Xœ?:ì.@ÿë›?IL.@"ëš?­Ô-@0ð™?Àâ,@#™?ei,@§Þ˜?ÜÊ,@*›™?K00@ÌÌš?Qb4@æCœ?ìn7@ßP?„E<@Nj?aí@@ ÷œ?ÚëD@[±›?aðE@ÕYš?"GE@é™?9C@£—?8C@>Ж?~@@Ã"–?]>@Í–?Ó&>@ïí•?ó>@$O–?UC@3 —?ŠK@ç±—?BâR@Û˜?ÒX@þr˜?M Z@ké˜?¾Z@è(™?£uY@ßU™?òx^@è5š? ^@Ê›?®\@{¹š?3:Z@’]š?:Z@c™?c{Y@Œ/˜?ÆdV@¨½—?=ÀT@ÒK—?*Q@¹–?ƒôL@Y¸–?4ZL@Ç\–?ÂmJ@°¾›?’u6@=ýš?yÏ7@2í™?Ž›7@ƒ¡˜?I6@å•—?pƒ2@Ø]–?¥X/@™?–?^0/@v —?Ó¢/@°>˜? &4@ÞN™?hÚ:@Wš?Ò?@m°š?lnC@Þ]š?~G@˜š?áH@¸Ç™?­³I@ÃÒ˜?;dG@Zò—? “C@F}—?gÀA@£—?‡¨@@ —? ·A@ñù—?yF@ â˜?þÆK@P«™?˜¿R@G“š?b½W@Ò›?¯s[@kíš?ùÛ^@Db›?)‚_@¨œ?[@ˆmœ?.\@ Åœ?<|Z@ýìœ?W\Y@ß·›?‰[Y@²Cš?ø[@³‰™?zà[@6™?R¨U@ ™?£P@Ôߘ?æM@$™?¡ßM@,™?±†P@U0š?À€?@}[™?rÄA@zò˜?ä>@Ó—?#J9@0›–?€á4@@ê•?Z·/@4•?Ú.@MØ•?9à0@M{–?tœ5@k—?Ø:@Xó—?Oß?@ô;˜?åøC@¼Ð˜?/ÄH@†™?ãÿL@™?nÊK@ Ř?H@'˜?„EE@LЗ?ôÁD@]¶—?‰ F@>:˜?—I@%˘?OŒL@å²™?”Q@†›?U¾W@ÌJ›?½s]@:œ? ‹_@Z??>0]@¦?8^@‰½?ºÇ_@: ž?@_`@©P?ÿ‚]@N2œ?ѹ]@?>›?*Ê^@.›?g¨_@Å›?ý Y@º+›?DZR@f|›?fM@/›?ãýK@kßš?­øL@¦K™?‡¿@@Áê˜?+:@@Ñ—?øþ:@±–?é7@Ïu–?ÔÁ3@4–?‰ 0@¸¡•?K§0@“–?´/3@ò–?|6@–?Â;@Í»–?wr?@ys—?¸çF@;˜?W&K@½‘˜?"¡I@à~˜?˜·I@DG˜?‘H@<û˜?7TH@«Y™?КL@!š?É O@¿ðš?9TU@ü'œ?*êX@Kçœ?$Á[@Úî?xa[@ šž?ÃÒ\@×ëž?+.]@œž?¬·`@6Á?cI`@¹õœ?y·`@?¾b`@–,?{]@¥üœ?Ÿ“R@X±œ? XK@•œ?aµF@Çœ? ÕB@o†›?ÑE@õ͘?x÷B@ýì—?Ò’A@ªd—?þ>@cæ–?°Ê=@H–?I´;@O –?òw9@c–?É9@ 5–?.;@lF–?!—<@•«–?M A@Ô—?!G@·Œ—?ò+I@ü˜?a†J@墘?ÉŸI@C™?¦:H@UN™?›”F@Á×™?LèE@c¡š?…F@‹Êš?NDJ@ï0›?"óN@0~œ?SíR@:À?MîU@¼Sž?üíW@³ãž?¸¼Z@òž?Î…\@Ë Ÿ?ûw]@:oŸ?¦*_@BŸ?']@rž?¸o]@nž?‡cX@´³?ýÊO@ F?ÏðD@È?PŸ<@’ð›?æV<@U”›?¿ß=@·m›?3?@U5˜?Ä•D@ ˜?››E@ø(˜?öE@4‹—?âxF@”Ж?0´F@Ùq–?„B@4J–?œˆB@yÌ–?KóC@´F—?æF@Þo—?OŠF@÷<˜?—iE@<^˜?À D@ªÆ˜?#A@Q-™?o3>@Mš?’þ=@hb›?Ôl=@vœ? µA@Öbœ?ýF@í?ÕïK@5ž?:qQ@ÏŸ?€ U@Ò‘ ??QT@ð  ?¥GX@ž ?ny[@èz ?ÅãZ@—T ?K‹Z@õŸ?©}W@n/Ÿ?ÎÕR@ Öž?ÀRH@eú?+A@9x?.³9@?é76@Ûá›? Ý8@¥Æ›?ž×<@½M›?âç@@Q¬—?ðÂG@îÚ—?5¸K@±=˜?¬L@œ˜?$1K@ß—?,…J@²D—?<°L@m©—?ÑàO@p˜?¢JN@ý—˜?h“J@ÒÀ˜?ÔsF@d÷˜?YB@k™?´K;@t…š?¨z7@ùðš?Ô4@·ì›?© 6@‰uœ?Þ¥:@PJ?¸É?@¶^ž?‹+F@﨟?†@À ?LD@à`¡?€E@¥v¢?©•E@§ £?Š#I@A£?Y3J@q¢?àTK@÷¡? ¡L@n¡?-ÃH@1& ?¨C@Ÿ? á<@qÛž?XS8@î(ž?lã9@‡Ù?†¤9@ßìœ?ax;@éËœ?­Ï?@“Zœ?RE@uv™?OG@„j™?ÿ|J@Ù?m L@æàš?œnN@¾°œ?–!Q@Z×?[öR@¦’?l’R@r?÷EQ@^±?k€L@ˆ`ž?á D@Љž?÷v<@Tpž? 8@'ž?DH3@DÌ?¾#2@òÛž?¸G3@w•Ÿ?Ö5@Ê ?€h;@Ã:¡?$n>@Ñ¢?^î?@K ¤?@rB@‚µ£?]»E@£?àïF@v¢?ùG@—;¡?¯îD@C( ?HfC@Í¿Ÿ?DŸ@@àëž?øÚ<@×dž?(>@ŠUž?H™;@±–?º1<@@çœ?@Ž>@m´œ?û}B@E›?`èH@Èâ›?üLM@˜#?ÿbN@®„ž?žâN@ø~Ÿ?±zP@¥ÄŸ?ëKQ@J«Ÿ?X S@Ç* ?{¹L@©\ ?Ä—H@  ?>³B@  ?F"=@9BŸ?èT9@;Ÿ?9/6@qýŸ?xº2@h§ ?+k1@RÚ ?û5@ÈŸ¡?d<6@.m£?J«9@袤?Xý;@gȤ?Õ=B@D¤?XF@¢?XG@èn¡?õYF@kÁ ? F@'X ?)ýC@yŸ?ºè?@c<ž?PB@*Î?{@@²?fã<@l¶œ?j <@¯d?I&=@?ñ-I@%‡ž?ÈJ@DHŸ?ïøK@¿Ÿ?ø,P@ | ?Ä?M@Áÿ ?M@ê¢?åH@‚"¢?¹BF@2¢?žKA@П¡?ÏÄ=@É„¡?³ê<@Q1¢?no:@o¢?¥5@²¢?3@WÞ¢?Ð3@£?ŠÓ2@s¯£?ù…4@y¤?^«6@ƒZ¤?&|>@Ü ¤?ÄwC@I¤?gPG@(¥¢?çÚH@…‰¡?qoG@Û× ?Ú=E@“`Ÿ?ì…C@S`ž?X"E@ ?t’C@°–œ? =@$Þ?ÍT:@¨mž?¢Ÿ9@rž?ëºF@ð§Ÿ?9-H@ ÿŸ?øH@;' ?å*J@ÅР?°G@àü¡?HC@×Т?7‚@@ª¢? ¾>@Á¢?™;<@:¢£?ÐÒ<@tǤ?9ƒ=@!÷¤?ëB:@;"¥?Î4@G¯¤?·3@=¤?}²3@W'¤?ø‘0@ñ]¤?Q1@eW¤?¦7@4ߤ?7µ<@Ÿr¤?øÃA@ø¢£?KgF@Ë ¢?PF@© ?*E@Ÿ?+oC@ 'ž?HàC@¦ ?AD@tN?^@>@€Ÿ?r>;@¤] ?¥,8@©Ÿ?oV@@bb ?’B@a ?uE>@V´ ?ôŽ:@ÒY¡?É©<@ ¢?[´>@ßÔ¢?s=@¤ã£?eè8@\¥?²;@Ø ¦?Χ=@O¦? <@åH¦?3ÿ7@윥?945@o²¤?.Y2@z¤?±/@¤?çÇ+@Ð;¤?Dý.@r¤?˜×5@–2¤?D<@s£?1 ?@£Ù¡?PÄ@@/@ ?fWA@s2ž?±<@¡ž?¬ >@ÃI?3Š>@âÄ?æ‹;@Æh ?„Î7@só¡?Üm4@ÁOŸ?6Õ<@ÏŸ?ÿ1;@$;Ÿ?`6@ИŸ?µ5@"Õ ?Œ=@M¢?ßÎ:@%ê£?þ88@¸v¥?:N:@|+§?û?:@7—¦?³À:@-h¦?Ûù8@ «¥?ó­5@,“¥?^ä3@á’¥?²-@ýŠ¥?1ö'@ø¥?yh'@ƒ£?/w.@ŸÚ£?ƒ2@£o£?Ìò3@ÕÓ¡?Ë6@[8 ?ê5@3ž?Κ4@1ž?Æ8@½?$µ<@Ôž?@:@Rù ?±5@¦^¢?ë<2@ªpž?¥î6@Væž?tÀ5@ïpž?25@öˆŸ?#g;@Öª¡?4:@„Á£?Æ:7@fm¤?QR<@…A¦?¨€8@Ü6§?$'7@êc§?¸‡5@rݦ?Y6@ɦ?Ñ3@©U¦?r9.@|ì¥?fQ'@¾$¥?®#@Û=¤?^ð$@º£?ÞY(@Çœ£?ãå+@hÍ¡?Ój.@@- ??¢+@»¿ž?“=.@Ù?p¸1@M3?Œ7@æYž?::@Y¡?ë6@oí¡?Á‰1@Üiž?˜!1@´xŸ?lá1@gÌŸ?¸Y6@Ö™ ?Ï÷6@Ë®¢?4e7@Û™£?.Ó7@-!¥?¡e8@@8¦?8`4@O§?^ª0@ªz¨?Œ›2@îè?Ö¥1@¯e§?.@^¦?Êþ,@m¥?È@"@È¥£?!#@&9¢?¦Þ$@¹;¢?Õ&@ÌÚ ?g˜'@V&Ÿ?Rá&@Õä?„'@6_?Ã.@ž?é2@:6 ?»‰;@À¡?¨O8@ƒ>¡?X{0@GnŸ?iS+@¥íŸ?´z/@} ?pN3@ˆÌ¡?Q2@ø£? Ç4@Ë^£?„6@éä?Øå3@´›§?J1@ ²¨?„62@À ©?¯¬3@^¦?ì¹0@oN¥?—-@}¤?y”'@Qî¡?ܱ%@¡?–!@‰Â ?øê @`hŸ?/ÿ @Ç¿?ëž!@Å.?D~$@O2ž?:þ-@˜·Ÿ?œP5@í¦ ?dÛ:@ >¡?”6@›ó ?Šù2@sS ?ôÚ+@&ä ?,x.@满?¾í+@­í¡?I.2@¸×¢?L4@×Ñ£?Îm3@DT¦?ñÜ0@€g§?P7/@ø§?"ú1@c—¥?%\1@&ô¤?¤€.@|ï£?ÿ8)@!©¡?5b$@ïe¡?H„@)ÌŸ?üÈ@>?‘7@þo›?[§@d+œ?ÄË&@ ùž?Q´1@# ? ×8@Ÿ?Š9@ÞÞž?i73@ÇÔž?Ì‚.@ ¡?ÞÁ)@0â¡?6¥)@Ï'¢?øv/@Î…¢? —3@Ú¢?ÂÞ3@¢K¤? ‡-@zY¥?e+@2¥?âU/@Ý£¤?îw0@õá£?{¡.@½£?f¼(@ØÈ ?Ô@$@½  ?ë_@ 7ž?ã©@ɧœ?Ÿ$@Ý´œ?®Ù#@`q?Ùû-@É&Ÿ?Ë…8@SAž?î6<@Ö#œ?SH:@Ópœ?ûñ0@“sœ?’,0@ i¡?2³)@¯Æ¡?Ak,@YÆ¢?%t2@òŒ¢?wf0@¿å¡?‡ä'@r&£?['@Sv£?%*@yq£?r42@|£?CÒ-@´„¢?tz'@bΟ?Ô"#@}Çž?ïQ@Â?š£@y›?´‹"@^?,B*@€ž?…€6@Å}ž?,Ã<@x·œ?Àë<@¥š?T˜9@Δš?ág4@ŸÉš?fY;@bù¡?+à0@á¢?L3@mE¢?ûÜ1@î§¡?ò}(@X,¡?‰4$@¼l¢?×'@t£?Ì¿/@pÔ¢?Ñ.@9¢?ê*@+¡?ÖK(@¦Ÿ?Y&@Ž?f '@ÙJ?Ãk,@K„ž?ì/@–XŸ?1s6@ñh?’Â;@Í–›?NÍ;@Lš?^>@Œš?×E9@jš?½ê>@Ûî¢?Mó9@T‚¢?b^7@ž‡¢?ØW/@F£?´è)@Õ¶¤?M«(@w¤?R ,@ ¤?S 1@¶Z¢?Xü2@¬G¢?ž{.@¦!¡?à‡.@”ˆ ?Ÿ>0@ƪŸ? Å3@"oŸ?)Ô7@¶áž?í 6@ô1?H8@e¯›?L€>@i\š?²ÝF@Ö™?nç@@©ô™?cñB@ò~£?€Â;@ ñ£?sY7@ãâ¤?3‰1@¢¥?Ñ1@)¥?Ïo.@jn¥?ÉR2@éx£?¡7@>ë¡?8í1@’O¡?‚ñ3@%ÍŸ?|Œ7@NBŸ?Y‘9@×(Ÿ?iÓ6@Ñâ?'5@ºy?nÓ4@ˆ¿›?ÄN<@¤›?¸G@mÏš?î•F@7š?¤ŒA@±y£?>a7@wϤ?b×5@äÕ¤?‡ü5@S¿¥?¯ 1@¶ê¥?L1@I=¤?c£7@Iª¡?%U7@¹! ?¢5@‘¹ž?ñœ6@aì?×S7@(¨ž?'Ã7@£/ž?P0@9?ý2@øu›?ˆ8@;ýš? šC@,‰›?ŽcB@P'š?ÍF?@‚¤?&Õ3@–’£?+‡5@<½¤?H(1@jÒ¤?/ˆ-@ u£?X5@9ê¡?*‰:@Êj ?KÔ6@ÜŸ?‰56@)–?w7@kµ?ï?5@ü?,ä0@HJœ?[å.@ Qš?È6@YÜ™?^Â<@ÿ›?;@Òfš?Éà:@üJ£?Ð3@Ö&£?øÛ4@Aà¢?w!,@Qþ¢?úå1@þê¡?R;@L^¡?;ä8@ˆßŸ?a°7@êž?E®;@¯?t7@¹úœ?£í/@|›?Ð*)@D™?¦~0@•™?¼5@-š?žj2@ ›?”!8@½£?th2@V£?Q-@l¢?:-@¾=¡?ûC9@$ ?^P<@̆Ÿ?ó6@ò8ž?î<9@cÞ?qR5@mžœ?³K.@™9›?²W*@©È™?ð,@[ç™?2;.@ £™?{q+@Üš?L›3@²®¢?„L-@Y×¢?ån+@J ?¨€0@ÊŸ?„ÿ6@ÈUž?r1@·Õ?S2@3¼?‚”2@$?«é+@?œ?¸*@ œ?à*@%B›?-M)@@ú›®?ek@ S­?d@槯?wW@[[±?l×@õ*²?±@{[³?¦A@‰K´?b`@mŵ?†@`²º?.¡@Pغ?wÔ@µÕº?¬%@HÔ»? e@c€»?i0@ö¼?Ë•@ Ľ?øD@¬ð»?@º”º?ôÖ @nº?ì@ñª¼?¢ @úI©?bµH@7˜©?Þ;G@ͪ?Îy?@_©ª?¯Ò:@»œ«?=¹9@7Í«?£=@Ö®¬?^m?@bJ¬?íg4@46«?ê‚-@Oª?ST/@&|«?fr3@ã¬?PF@•S®?[XM@’+®?kH@»9®?4tD@u¾°?N3:@Ž µ?¹.@Uïµ?$î.@óC´?0@ëL´?l%@8­´?¡C#@‰¯³?ª¢#@×É´?Å+(@[¶?üp)@‹<·?-&@4îµ?iÍ&@,§µ?‡ @è4¸?÷Ê@£2»?”¨@—:½?E@¯¿?´Æ@Ä¿?8S @Ž¿?­Í @™2¿?‰Ÿ @÷ì¿?‹µ @–RÁ?Ì @„÷Â?áp @ºzÆ?ÛÓ @î„Ç?@ÑŠÂ?†!@c`¿?,Ž@õª¾?‘ž%@>¿?cS'@*²À?À'@¥ïÁ?ž '@Å™Á?n'@tìÁ?°†$@òÂ?7;#@ Ã?ǰ@{ë¿?‘.@Yñ¼?û@6"¼?_ @<»?­E @üN¼?‘ú @o¾?Ó¡@¤º½?­@ @B½?o@­ º?}# @ë­º?KJ @ŸM¼?Vz@æ½?@e½?ñM@/ý»?‡°@‚¶½?û¡@ô|¼?+@ͱ¼?˜<@¸ø¹?o¡@Ë/¶?qâ@d´?x=@K%´?}Û@ú˲?s;@oDZ?Ü@g®?–Ó@ÒZ®?^Ç@ƒ·¯?Ó@¨°?øÚ@¨¢®?]Ï@lË­?C@Û‡¬?s@Ñ1­?ðÑ@Œ:¯?--@9á®?°Ÿ@¦÷«?éœ@[ª? Ë@©?øâ@Äí¨?{]@„¢©?2÷@Iª?{@ctª?¸W"@Ñ’«?Gÿ(@딫?Õ‰-@/ߪ?Âþ/@¶ª?ø­(@uЩ?º•&@Ú©?Þr%@,Ö©?lú@’§?Þ@½­¥?mÆ@’{¥?|ˆ@ä?ÿ;@7F£?‹ñ @/Í¡?ú@ž9¢? Ì@¡È¡?š@Àè¡?ê% @e¢?ÖF@Uó¤?p" @Þ=¦?Å9@$4¨?Jh@Y|ª?/ˆ@(+­?$@œr½?æÜ @#w»?@3“¹?oK @G€»?V¶ @Ég¼?9µ @GŸ½?,k@|ï½?gÇ@˜¾? é@Ù¾?Ì@Úº¼?—×@áA¹?îÅ@Ï„¶?¶b@´?ûŽ@S€´?ÅÍ@*³?Lê@Ç„±?øA@—’®?œ@ϯ?v?@?3°?Ž5@ãÕ¯?ÿ¬@éµ­?´X@js­?e,@½…¬?Ó3@=­?M~@ý®?=e@b¬?'i@ÓϪ?‰´@IŸ©?EY@Æ5¨?¡1@cE©?ýõ@’ ª?™Ñ@Òd©?«?@“«?ÄY)@ìF¬?Í$-@i¬«?‡ð3@eª?÷/@@â©?Ëœ'@î"©?a±$@ÞŽ©?X8!@ß™¨?¸¯@í¥?Eƒ@½_¤?5¼@w`¥?ùÆ@¸ü¤?Ï@e”¤?¯È @Æ\¢?xT@Nh¢?•´@•‡¡?œÌ @¾Ð¢?ô«@a˜¤?×O @¦¿¥?×à@Çצ?½h@nܨ?žS@í/«?°×@ÑT¼?‚î@Ó†½?–p@.¹º?ý@ʺ?7 @Þé»?ö @X3½?ˆR@ðؾ?üà@æI¿?k@~æ¾?®¨@ܼ?>@“¶¸?·š@ÏRµ?^a@ȳ?]d@1I³?„K@þÿ±?¸ê@ı?À[@¹°?+_@ÿv°?°¹@ Ý°?ùP@Íè¬?í @¹¼¬?x @uZ¬?êQ@íW­?“@Ç®?@Ù§¬?j@îóª?pó@Ðâ©?(@ðh¨?e@Ù¨?Â^@x™©?@íª?ô±@ògª?ô)@Ы?ií.@á«?xÊ1@ «?G2@îN©?Äù-@RS©?^2#@ãô¨?.!@ é§?‚r@Íû¦?ˆx@ó€¤?Ĥ@ðf¤?ü@Ò¦?Kd@F<¥?qÚ@cf¤?s°@ô‚¢?„W@T[¢?^@?£?pÍ@÷q¥?ž\@¦?ÿå@0¦?â'@€ç§?ët@û©?N@!G½?ŸØ@RO½?/]@ɺ?g @_/¹?/I @ñ »?]¾ @‹½?Ù÷@µÕ¿?‘6@ï­¿?`à@xr¿?xï@­¼?ʽ@lù·?;C@7úµ?Â6@X&³?ÄÁ@Ô—´?t@ó]²? ê@‘m±?8‡@–f±?#@Cº±?Xå@ è­?0S@©c«?Ù@¬?.µ@Æ~¬?$@׬?<@Ø?­?¿5@Evª?|°@†›©?*¿@º©?£§@Ц?Q•@^§?‘)@ت? I@Iˆª?Ц%@û'«?C6.@çF«?ü1@Šˆª?Ø£2@*ש?’:1@ʃ¨?Î*@, ¨?54!@_Z¦?"‡@Í¥?×@0Q¤?zg@ð£?˜@¥?!’@ (¦?œj@¾¦?\Á@”²£?qf@'M£?Pð@Í£?Žâ@g²¥?¼@£Ö¥?À@ý,¦?˜B@‡§?N1@¤©?„à@°§¼?m @Zp»?Cõ@Òs¹?DK@Ôº?^w@.ÿº?ô¤ @M2¾?X@Ç¿?ô‚@ß}Á?OÊ@eã¿?¡Ò@ÛÚº?º@Þ…·?WA@âýµ?ù@þ³?v@´³?k¤@Ó²?åÓ@ëu±?NË@72±?t@Íð°?^·@뼬?<@ƒ1«?y‘@¾í¬?ù@Ï™«?ÇØ@g\­?z@Ý«?â‚@¸Ã¨?åò@@’§?k@̃§?¯@§?ÿ|@’Œ¨?7É@ž—©?ô!@¨Xª?”,@¢^ª?Œ4@”ª?~3@=ª?%b3@¨Û§?Ã-/@¸L§?d''@c¦?& @”r¤?o@87£?’×@‘2£?;4@®¤?]R@¦?é´@æÊ¦?Û;@5¥?nX@L¬¤?“¤@^´¤?í×@£˜¥?^Œ@ÿ¼¥? ž @S¦?`"@%R§?žÍ@ÖK¨?5€@ã$½?ÝØ @D!»? p @’8¹?Az@e¬º?ms@ñ^º?8Ù@¾?ô(@JËÀ?2ü@äMÁ?Ìø@±ù¾?¼@Å»¹?ÚZ@Ä”¸?°P@¬µ?.@þÓ³?È´@Qr³?9\@ \±?À’@©ú°?û\@eý°?:@Â-°?Ç@‰í¬?h«@ìû¬?ÃÅ@Z¬?7@´}¬?,‡@oä«?{@(‘©?Ö@sq§?<@oÊ¥?È}@ ¦?.æ@%2§?ƒ@H+©?sv@H©?'¿(@Ýõ©? ‡1@Ìz©?š2@R©?8Ò3@ö•¨??ó1@d¦?$*@*è¥?Äp#@&\¤?=F@ã)£?ÓG@C¬¢?€f@¹]£?ù0@fĤ?+ð@«¦?&­@ }¥?ʼn@gB¥?F…@:£¤?Ïà@Ã¥?®!@i¡¦?V­&@V¼¦?}'@,•§?â,#@ôp¨?j @í¼?uî@>¹?¿@”¿·?ï@ú¹¹?§Ý@¦~º?§c @÷:¾?D@žÝÀ?@V@ÀHÂ?Ñí@ż?C @埸?k@)1¸?Z‡@ε?¥@—³³?¬î@ ”²?¤@1“±?Ï?@ÿ̰?Àr@ؽ°?x“!@{j¯?.V@­?s.@Êݬ?x @—¹«?žq@îʬ?Äû@`ª?,\"@‚¨?8o@¶¯¥?HS@*h¥?Œ@ à¦?–@ã§?A4"@–ƨ?ÎD'@Ø­©?¨0@„Ý©?–H/@ºg©?ê/@{C¨? Á/@º¦?„+@»`¥?4x$@L¤?‚Ê!@bF£?¶¡@芢?é@CÛ¡?]Ÿ@:J£?²g@ÃD¤?.ä@²5¥?ˆj@Ť?±ã@㦤?¸h @°¡¥?}e#@sö¦?=È*@¦Œ§?U•)@™»§?é'@ú§?Œ$@ûE½?Uš@Ƹ?k™@ä·?Q*@ {¹?§@ ¼? ³@“¿?NA@?ìÁ?E÷@€I¿?ïU@^T»?—J@«$¹?hD@^Ķ?D@¦`´?€N@8t³?ºh@ ³?à˜@ÖÒ±?Ö{ @ùš±?><&@_°?`8)@˜Æ­?0&@…÷«?9ÿ@Õ«?ª#!@¹¬?˜æ"@¡ª?°N'@]½©?Vn%@‡3¨?Ö@xP¥?vÜ@cm¦?;@‚ ¨?ã#@Î:¨?Þ)@¶¨?¹Ì-@õÑ©?æß,@]L©?X"-@H‘§?ç[.@‰.¦?ço*@sù¤?±§#@Íx¤?zë"@\Ú£?ÐØ @k\¢?‰È@ÁÓ¡?õ®@á?‰@Üþ¢?PÖ@Ȱ£?xA@ž,¤?þ@ŸÂ¤?‚d$@÷¤?k¥%@8¦?Þ‚+@8¬§?Ç+@ϧ?•È'@ò‹§?š4$@Ð%½?+ü@³·?{³@òŶ?³P@!ç¹?ØR@$¿?g¦@Á?#@ÁdÁ?Õ"@gÙ½?è!@ÎȺ?kß@«ç·?Ø®@½µ¶?¯a@µ¼´?§ß@A–´?pÅ@´´?s!&@àï²?Þo(@Xì±?ø ,@çЯ?¯Ã+@®?EJ*@ܬ?M(@V«?øq*@)ò«?èR(@Î*«?Á,@P/ª?Š*@Ã&§?>'@t¦?·"@ÀU¨?S¹(@‚0¨?jä)@€¼§?©Y0@«‘¨?4Ê0@qê¨?;Å,@¤™§?qG-@x–¥?£ï+@¾×¤?O%@\á£?„Ì%@cö£?ñ%@¿B£?“Æ"@)œ¡?êˆ@3¡?Ý‚@¿ø¡?Ñ@Áã¢?Ð,@Ó¢?»@…¤?¦ž'@Õ¤?û…*@Êt¥?šM*@äë¦?Ü-@™`§?‹¿(@é §?¯I%@èm½?xW@U¶?`Á@iÔ·?$’@¼?¸M@µÀ?MÖ@‹ Á?2d@ÈÄ¿? @©!½?mg@'»?¸@NƸ?Ÿw@²²·?V@(޶?òa @f‹µ?RÐ#@_C´?3e*@äd²?èœ+@Œ…±?Ä.@õ«¯?ã–.@í'®?]•.@A¡¬?062@^(¬?ŠÍ0@jˬ?=e-@}a«?Ï 1@îV©?ùß.@îò¦?¶]'@ ò¦?ÞÃ*@:ý§?%È0@õŧ?ÉÎ1@™“§?3P6@ b§?"«.@`±¦?Ú…*@éK¥?å)@¤µ¤?…ð'@«‚£?~#@‚€£?hr&@莣?3b(@‹ ¢?Ä,#@7x¡?””@¡?ÔÑ@°Ø¡?Ù¦@£S¢?и@´ £?ÀÞ%@,¤?¹-@H¤?+@Ú¤?Þ@-@ɦ?B´*@åð¦?ÙB'@?S¼?z±@H ·?#Ø@j7º?£ê@ŠD¾?@ÀÁ?Ó@&Á? @z÷¿?t:@â×¼?÷@BÙ»? Ó@3¡¹?Vù@*̸?¤ç @ªœ·?‰º#@À€´?Å+@Ÿï²?´-@º²?øÄ,@)+±?œÞ.@說?î–/@ˆ¨®?É0@N:­?+'5@Ný­?`_2@2M¬?½„1@Ê"«?Ù‡2@´ñ¨?Ø1@²§?,@Uw§?ä±/@ì§?¾è6@ì¦?å8@ß¼¦?+N2@®Ü¥?Ó.-@昤?MJ)@ºW¤?k (@ª#£?ëb$@S£?]é!@ÞA£?&n&@‘¢?Ö¢'@# ?”“!@ µ¡?@Ò!¡?È€@5ð ? K@QJ¢?É-&@¯Ö£?a\/@¤?8!/@9d£?jÚ-@Šd¥?·,@ò£¦?­â*@(ôº?Ú'"@;”¹?Ѳ@zò¼?äÿ@Y;À?!@ã<Â?dÊ@”|Â? @Ö!@ÿA ?ÖÓ(@ÌÉŸ?JQ+@ÐÙ ?à,@Â5¢?ê50@$i¢?ͪ,@§ë£?¼0@¦?ID/@¾½?Ú´%@Ò}¿?|§"@š¯Â?óö@˜×Ã?eS@þ©Â?™#!@ýº¿?D%@ú,¼?ûl'@r‘¸?ߣ(@dd´?—È @°?‚4@Â8­?ãE@P.­?Š @m¬?|y"@¸®?!ø'@vø¯?ØZ/@ºê¯?!5@ ¯?R7@Èå­?ª´9@¬?ÀD;@&1ª?!Ò8@¿Ú§?l7@´¦?×0@3¥?ùÎ.@jI¤?]k3@Ë`¤?½ 4@^£?‘¢1@ ñ¢?Õ›.@‡!¢?²L+@ü‡¢?¸ß'@'ƒ¢?e'"@/¶¢?8 @Ù§¢?üÎ"@.Ä¢?”'@W¯¡?—ï$@‘Š ?GŽ%@N- ?YV)@Z¢Ÿ?¡0-@ˆP ?ðu-@æ¡?(-@á¢?ÀK-@›¥£?Þ{0@±¥?CÆ0@¸À?xA"@kOÂ?«Ù@иÃ?Bà@ËšÂ?ú¹@cYÁ?ð&@ÓŸ¼?5V#@W$·?ÿõ!@;Ó¯?•@·k­?=ƒ@å¬?j¬@t«?Á©@ÈWª?•X@OǪ?4¼@¿L®?Æ®'@¯V°?m*-@‹@°?ý4@T®?&à8@+¸­?‚Þ:@€ª?øú:@èK¨?kí6@m–¥?Þp2@= ¥?6¿-@c¤?û,@êè£?` 4@Ž£?º³4@}r£?®.@:j¢?!c)@’/£?Mj&@lÏ¡?Ÿ%@t€¡?›• @†ê¡?£Û@£?ôt$@û4¢?܆#@:¡ ?53%@À¡?u¿'@*äŸ?ƒ/@G¡?:«-@È¡?a/@ƒ®¢?Ú-@m£?.B1@ùþ¤?§3@ÕGÂ?¯@ÍÅ?¸@,¸Ã?ðþ@Pu¿?#r@u1½?‰-"@¨²·?…o@Òþ¯?Ê@Ï}«?Z@圫?Œ@˪?¬ @ Å©?;±@‹³¨?ú.@d¬?{ @"ª¯?µ³$@ðQ±?4s,@ô²¯?t3@îo®?–=7@Ž–«?ì’:@ë©?ÅO8@ÊÊ¥?¹è4@Ôy¥?¾Þ+@Òz¤?O¶*@¨¤?п0@Èë£?Á4@¬]¤?¼]-@š ¤?6*@%Á¢?ÉQ'@;e¡?$@&@¥ ?ÊÍ @ê#¡?å @Þï¢? z%@ŸZ¢?‘ç@þ ¢?ƒ¡$@/[¡?Ô‰'@˜; ??¹/@jØ¡?Ït-@]í¡?^h/@ Ô¢?h[-@£?#¥/@Éò¤?R‹1@ã¹Ä?VŒ@OÃ?Ö@ÀT¾?çÉ@r̺?Ô¥@ÿ¸?5i@²E²?Ó%@Mü¬?ûY@ëô¬?q]ý?¬¬?Íx@ߪ?E @[µ©?M4@õ.«?ïé@Ô;®?úé@Ø<°?k`&@ÁƯ?üÚ-@<7¯?uÍ3@!$¬?ÞÑ8@¹z©?¤“;@ ‡¦?É37@†r¥?-á,@üª¤?,@Ý2¤?"Ð1@½5¤?Á6@ ^¤?Å/@Ù¤?Úý)@3]£?bJ%@­¢?õú%@¡?sX#@ôø ?o #@»â¡?¯i%@câ¡?Òr"@Ù¡?ý#@œ»¡?Q,&@Ó ?;¼-@(~¡?žp/@Ûi¡?éX.@‘¢?S£.@ê!£?¥+@ U¤?‡õ.@–Å?óó@Ë´¿?ŸU @{{¼?€> @÷œ¹?Šï@º¶?›¸@q!°?— @/¯?€»@Ø­?¬j@!9¬?¾@Ü#«?=@i¬?ô@œÎ­?@‘ ¯?ù@à¯?)³%@#™¯?'Þ0@@f¬?Š‹4@!ª?Â5@‚«¦?Ä16@((¦?Q=.@Qd¥?úy,@Ün¤?8’2@[ʤ?Jß4@#Σ?ˆ'/@>õ£?žß*@ü™£?¶q&@[R£?E¤'@b'¢?g+$@[¼ ?GZ!@Þ ?Áæ%@ñÚ¡?2$@÷o¡?Fo$@p(¢?£L%@qž¡?Gç-@hF¡?j1@øÛ ?ŽG.@ÙF¢?¼Í.@ÊI£?¡¹)@¤?Ú[&@1oÃ?ãï @Ÿ¿?öD@çv»?¼‚ @Ä ¹?k° @º´?){ @è ±?®I@\*°?›@[¬?¬@¼¬?¯Ã @ &¬?PP@÷Ï­?\@¯ê®?-D@)a°?›u@k°?½\+@=§®? C.@{oª?20@C§?w¼4@ÁÓ¦?¦y2@J¦?z_.@œ¨¥?nÞ/@¯¤?é[2@¥¤?µu/@“=£?^þ,@FŽ£?«»'@Áœ£?ó'@ÜÕ¢?й$@Š[¡?za"@õ1¡?‡¡"@iþ¡?Òx$@U”¡?tì%@e¢?*e&@¡v¡?èb-@à¡?O­.@=ð ?)o+@Í¡?hî)@þÓ¢?>€%@ á£?C5@ZÕ¿?xq @º½?)@N]º?Ë @7u·?€Ë @X¸²?%@ ´°?8g@&Í­?@ ¬?ÚÊ @,@¬?0· @iâ­?{×@ª¤¯?ÄE@T2°?”¾@Tر?+"@1›°?=*@9€«?]-@Å7¨?2@ü¦?L4@æ%¦?•¬0@ ¦?Ñ/@Àb¤?x¹/@±&¥?OÂ,@Ÿ£?a,@<¼£?Í)@I¤?Ü“&@¢Ã¢?ç]$@öE¡?ýf"@ªq¡?0Õ @ð¨¡?Ñc&@?+é'@PT¢?$h'@3„¡?c.@¾Ù ?B«,@{¡?Ã&@>:¡?¦v&@8,¢?Û@£«£?4@À?lß @wí½?Î @¥X¹?Äy@U¥µ?ÁÅ @¯ø²?¤>@¾o¯?¢Ö @Ï]¬?bÁ @)¬?óä @ì´­?Qã @T.°?¸­@”˯?®o@ª¦±?Ç@U­±?òµ&@ "­?÷$+@tª¨?z*2@$¦?™ 4@q·¦?qŠ1@¢1¦?Ný/@;¥?½-@懤?ç+@¸£?ù~*@¤£? +@3‡¤?>»'@½Ú¢?î$@Bh¡?â¾#@á?bž$@ŒŠ¡?“%@ÉÏ¢?ë“)@:W¢?ªf*@=Ì¢?Ñ—+@ãž¡?ÉÊ+@õä¡?ëŸ'@³r¡?ê¼$@®¡?®@QÙ£?»{@ê8À?$ @fl½?æb @%+¸?èû@Ët´?@—‚±?›@áî­?jð @Fެ?ƒo @Á¯?ò¾@&±?ËÓ@u`°?Éô@üÿ°?@’M²?¦6#@%®?‹­*@Pé?ŸY1@ı§?Ö´3@þŒ§?ª(3@ö¥¦?˜°/@´¦?@Â+@Ñ©¤?Ï+@J•£?Û)@ÜÓ£?,*@³¤? Ÿ*@–™¢?ò²'@­)¢?aÈ$@=9¡?²>%@øX¡?ò.%@Z'£?ìQ)@j΢?ƒÌ*@É£?m+@Îw¢?‡j)@m}¢?Q>*@+Ä¡?Oé"@vp¢?cN@¢‘¤?oó@jÀ?ø @Õ_»?S@/§¶?¯p@Œê³? H@@ݯ?•ü @j>®?pþ @Yg°?aÔ@ÓL²? @?D±?JÆ@[¹°?Ì@—F±?„ß@½¯?î'@]-«?õª1@ §©?ñ0@ê›§?î£5@o§?ûO1@¨ø¥?æh+@ð«¥?•ž+@; ¤?*'@ô<¤?å0(@oפ?î>)@Œm£?ìq(@‚Ï¢?«Æ$@R†¢?Ì»"@êÔ¡?!|%@’_£?É¿*@ÐË£?–:)@ X¤? ù+@1Ô¢?p+@GÚ¢?Rm(@1+£?˜‘"@oc£?!Ù@èX¤?"´@„…¿?S±@—á¹?e¡@Z°¶?@ua²?±@éѯ?—Ï@Û±?´@®®±?H/@#±?ÜŒ@ j°? @%ã°?›æ@N`°?þÍ#@9Ü­?»!3@N«?FÙ/@wϧ?³¿1@3ϧ?S0@±O§?´p-@"¦?R.@@¥?y'@4&¥?|¡$@Ôs¥?í·(@.¦¤?Á!'@£'£?Ñu&@4£?&($@«£?Äa%@+`¤?à_,@v:¥?«'@YI¤?X+@…h£?kg+@Ñ¢? "*@†m£?W–!@Ú’£?>Y@$¥?GÑ@ôh½?\@-¸?™°@K1´?›à@0Ù±?µ"@ä<±?Ž@Êý±?Á7@rÒ±?" @–#±?Û@xC°?žO@¤‘°?9^@а?uñ0@¡0¬?7œ0@pv¨?+C2@ž¯§?Ó‰-@7¨?êt/@§?˜`1@Ó¦?u3+@Y¦?Í$@Ó¦?ÿ%@æ/¥?§™(@5è£?ì%@þN¤?»û&@¤?=î$@p‹¥?3Ð*@ÍŸ¥?Ò£)@ùì¤?‹+@¤Ý£?˜ù+@:£? ¶.@Dg£?÷ì!@ø!¤?–‰@‡‘¥?©S@²èº?ñ@Š;¶?|Ö@•³?’w@’²±?‚É@ŸÝ±?¬(@•²?Ÿ@û²?®@±?Å®@Ñ"±?7@-”²?Ñ·)@P®?±2@^v©?ñ/1@1x§?Ýœ.@B¨?N/@J¨?î½/@xɧ?h.@û§?ÇÀ%@ƒ¦?-$@nY¦?„ç)@ø¬¤?«)@““¤?ce'@%ä?,&@´>¦?š*@¦?Dß,@*)¦?Z*@A„¤?˜8)@bô£?..@w¤?¨…%@b|¤?uk@¿n¥?¾@õ¸?¼@Ôd´?›@x ²?ò@´?%µ@䪳?V@Äf²?3ú@Û²? ·@‹Æ±?ZÑ@]{³?ìs"@3…°?à 1@m«ª?Qí0@)ù§?YR.@§ð§?;/@q¨?”Â0@È…¨?þ.@ ƒ§?f@*@{¼¦?öo%@O¦?°ƒ(@ ¨¥?»—(@€h¥?Ý(@;¥?ŽP'@ߦ?¸å*@Iݦ?°v-@G§?ä,@Y­¥?²Ú'@çú£?!D-@W ¤?âe&@‚Ý£?§"@Õˆ¥?`@¡ú¶?+@R½³?Ñ@÷8µ?w# @”¼²?,:@<«²?C@…‚³?tu@Œ]²?1…@qÛ²?8Ã!@p~²?›/@;§«?HÆ0@Ûd©?Ûû0@>N¨?A 1@S~¨?!'2@¥Ž¨?l‘-@ÿѨ?;›-@ó§?ºP)@ɧ?8'@Zž¦?®'@KÙ¥?›Ò'@1Î¥?ZŒ'@‘Ǧ?Â)@ý˜§?¯-@ûy§?žð,@ò¯¦?D)@¶æ¤?d8*@Ú£?€£&@<¤?IT#@™¥?ÚS@'’µ?Ø@µ?Þ"@Ú‘²?eÑ@ÞH³?Dv@D»´?ʧ@“²?!@mµ²? @Üγ?¤'@wk®?êk2@éÇ©?1@M\©?ú†3@žP¨?°»3@aº¨?º«-@V+©?~ê-@[¨?FÄ)@@R§? (@›ô¦?¤!'@£¦?ø$@Î[¦?ùC$@+¾§?W&@h¨?+£,@˜¬§?ʪ-@/è¦?Ò,@Ç¥?tÓ'@Û#¤?,è'@ßû£?ý„&@ë‹¥?ø=!@+¯µ?ˆN$@37´?ý@ij?ûÈ@/´?ìg@û ³?ùÄ@Ȳ?¾Á!@Ài³?}g&@oŸ°?¸31@¥ª?Ly1@8é©?E5@û›¨?Ö5@žU¨?h¹1@Ï|©?‘…*@Œ3©?f *@熨?pÛ)@Úƒ§?¨Ü'@ê<¦?‡$@WÒ¦?ë®$@âL¨?¼ô#@$ɨ?¸4*@ã\¨?</@ºc§?«‚)@Ú,¦?JÎ(@_´¤?6T&@¸¤?+W$@WS¥?Þù#@µ?T#@É—³?¦ç@[†³?F@ ™³?žž@9A²?ax!@Tó?øÞ#@Õ}²?G³0@†(­?«±1@ª?¨!5@mò©?µü8@Ìà¨?×~5@B‹©?«·)@ß«©?Šo*@Ýu©?­_)@Tܨ?s)@Ħ?Ça%@ÌB¦?#@¥/©?±Ð"@r¤¨?>(@Aš¨?þa+@x‚¨?²)@ü¦?á*@ø¤?¹Y(@z¤?n.#@û¥?ƒw)@a´?M%@–n³?j@ÔÓ³?|“@ñ¼²?ž!@¯³?Xƒ'@F´?ï/@ÁÉ®?ø74@˜-«?ÄÛ4@<«??p9@œBª?ý¯8@Šª? °.@Ęª?%º(@„­©?=ø'@;£©?ë·,@°œ§?Ža%@MU¦?HÛ$@Nɨ?ë†%@V©?ê±'@ ©?˜*@B¾¨?_ç'@‹£¦? c)@`t¥?þ2+@c¤?Š%@S¤?7(@ò‘³? "@ -´?.™@—f³?Èy!@lT³?Ú#,@C€´?«õ0@ °?´5@(Ò«?¸H8@ =«?s¹7@à«?Ãn:@%V«?\I2@Þ[«? >(@‚¡ª?!=*@ø¨?ìJ.@ªÏ¨?ø*@¦?‚&@Û÷§?¡“'@¶Á¨?gÚ&@Z©?Ì )@­=¨?ê0'@»¨?c$@½Ž¥?Õj,@vA¤?S+@•Ò¤?·Ÿ&@ëç³?ލ @Ä´?×ß@\ݲ?f•*@.Ê´?qÈ0@’±?Íd8@5G¬?R':@so¬?„§9@"«?":@;`«?ÄR7@"…«?]£+@ž«?šä,@ïb©?sÁ-@ §¨?.]/@Y ¨?©R*@€§?Š(@rÿ§?ß»)@$g¨?g©(@àO¨?ãa'@Ü©¨?^ &@Ù¦?I›(@¥”£?,X.@Õ£?H°&@<¤´?—Ò!@F—³?Ÿ )@É´?v•0@ç²?ñl8@õC®?Ä¥:@ ߬? U;@Ù®¬?Í:@Åy«?«[9@¥$«?“A.@–«?;á,@›Ê©?õŒ1@Uª¨?§.@’4¨?f+@_ܧ?Bw(@Gާ?)*@ïS¨? 0)@ûĨ?¸Š'@V¨?? &@¢J¦?$@·&¤?x-@œí£?Sñ*@hÇ´?aH)@zH³?Dx/@Sù³?gÜ2@ Ã¯?~Î9@§Æ­?Uö<@ X­?l =@È:¬?°<@Š«?g2@*\«?›*,@PCª?Ű+@ÿó¨?iä*@3e¨?(J+@!—§?0Q'@£‚§?Õ’(@ߨ?ÎØ*@¶H¨?§(@D0§?8%%@ئ?äì%@‘¥?×(@pb¤?/@޳?îÉ0@ný³?`/@Çè°?Žú<@:C®?¾ >@Ws­?£]>@ ï«?ÇH=@(é«?4@jýª?‘@+@g«?Šâ'@{Ä©?èX'@õ¨?ÛÕ)@}3¨?øå&@& ¨?Ú%'@+Ÿ§?žå(@b§?Äl)@$Õ¦?²Ü&@’Ñ¥?<{&@M-¦?E÷&@Z¤?E-.@^Eµ?Òs-@^¯²?»ì9@’˜®?†@@"á­?"èA@cÑ«?y–@@½Ù«?c 4@ô†ª?}ø,@âOª?½0&@”ª?À²$@S‚©?Lß%@†ô§?r–)@1,¨?št(@óL§?¿+*@éP§?žY*@7—¦?-p&@¬U¦?L’)@5*¦?76)@dg¤?Ü*@¥´?æ$3@°Y¯?kÉ@@T´®?yÿ?@Z¬?äžB@B°«?^7@‰Âª?‰--@Yaª?ÐÞ$@–$ª? G#@a©?%´#@ä,¨?«¿'@:D¨?SÕ*@>§?I)@x§?ó?(@{”¦?Ín'@Ëi¦?%ë'@”‚¦?j +@Fù¤?h·*@bg°?`>@y%¯?zÈ@@ÉD­?¬SC@‚Ô«?^T=@Ãû©?«§-@+ ª?µI(@)Sª?õ§#@×8©?eÕ#@(n¨? ü(@É5¨?rÅ*@Ýx§?xÕ)@ºW§?®¿&@$‘¦?uD'@ðP¦?±(@ÒØ¥?(m-@wn¥?A¸*@¤@®?ÙEB@¸.®?5¦D@$׫?)sA@Ur©?¢ñ.@…Ì©?©5*@&Vª?K&@V)©? $@Z¹¨?t8)@|i¨?ò+@Zå§?ÞÄ+@ Ÿ§?x6)@ŠÞ¦?ÅG(@j¾¦?3Â)@yN¦?Ó-@£¤?D,@&j®?¦J@è¬?h8C@úª?˜<5@=v©?•°)@¿.ª?ò$)@!U©?w`#@?ظ)@o'¨?‡Ù,@”f¨?Ê\,@Ô"¨?‘´)@– §?õ6+@v†¦?^ï+@¸&¦?´Ð+@€¤?îŠ.@㘭?¦»I@•c«?/7=@â©?ÃÕ-@È‘©?{c*@\©?–'@¿¨?GQ)@¨?ÔØ/@¿ ¨?¿É/@ßg§?­+@T§?Þ¿,@ܤ¥?ÉM.@lš¥?$ë-@q¤?'q.@ç+¬?Þ¬>@êª?È/@àש?k*@—`©?¯W*@`z¨?‡-,@â/©?«=0@Q§?2²2@!F§?ß4.@9Ö¦?°X/@¨˜¥?“~.@'ð¤?(¸-@Ÿ¥?­8-@¨©ª?n2@û„ª?-j,@¡©?8¦,@†/©?ÖD-@4¾©?¦i/@ ߨ?µ87@mi¨?‹P3@šÎ§?«0@bƦ?¬ù.@€Ò¤?¾.@Íå¤?¬Z.@ÛÓª? ‰-@ ”©?ˆö-@O|ª?{~/@bvª?Š2@Ƥª?ò{<@üº©?è:@ýý¨?NM5@—7¨?4Ö1@œM¦?™ƒ.@=S¤?«²/@*oª?Z.@Nu«?u—2@z«?67@|Ù«?uâ9@‹oª?·>@ â©?êª;@¹¿¨?ìM8@¶§?®¨4@¥2¥?õd2@H¬?@…3@ÿʬ?c¯;@c¬?…A:@¾éª?«Ì>@ø,ª?¸×?@û·¨?jþ=@‘ ¨?Å:=@¦?^»7@á¬?Wâ>@d´¬?C’:@©«?lf=@Ú ª?€.?@ƨ?°?@Ö¨?u@@$á¦?™—=@°2¬?"µ<@ÈÛ«?Œ:@Æ©?QÄ=@¤Í§?Êß;@ :§? =?@9§?Î@@@Û0«?#›:@™ª?`C=@Gk§?Æ ;@Wئ?§í:@Âæ¦?eS>@– ª?Ž®8@A¨?‰];@oª¦?¢ò8@%Ô¦?`È;@ñ`©?¶¹;@ƒ§?Ñ7;@§]¦?7"=@„"¨?W…?@§8¦?ßô=@×l§?Ôû@@]ô»?L @¸ª¼?¶@¨½?ˆ›@¼?„J@Ä?º?ó™@i|·?´­@S¡´? ÿ@Ya²?¾é@œ±?£@Cû°?íª!@\#®?ðÔ%@AË«?î&@1¸ª?ÿ¸#@A+©?ߌ&@ªò§?£¿&@vp¨?@ë(@Ú¤¨?¤Ž0@º¹©?QØ8@:gª?L?@K[«?ì”B@¦ëª?©îD@×Aª?S@@ ¨?ínA@Š¥?:û>@ú £?r\A@J”¡?#vB@fz ?vB@ç4¡?s8A@YÉ¡?x[?@b· ?Q@@iW¡?ļ>@è¡?É»=@´"¢?¾?@,b¡?m<>@Ü#¡?ïU=@~*¡?Ëå?@]‚¡?’eA@3Š¡?øà>@à:¡?xL<@/œ ?ìp;@†} ?\>@ÇJ ?ôï?@ßè ?b)=@m.¢?ƒ¿?@¢?F>A@±£?øŸA@­r¢?0C@2Q¢?Å*C@î» ?Þ =@#ü ?†7@Xœ¡?¬3@ )¡?ç*5@4Æ¡?¸|6@ýõ¡?F†7@ß·¡?|6@Þ¢?C5@Éÿ»?øV @ H¼?Q@ ?¼?Œ±@µUº?äŒ@â¹?£¼@Ói¶?j¢@G´?I @[³?™ç"@m6²?·$@\…¯?<#'@ÐÙ¯?Mg%@—­?o³%@§²«?­W%@ÏY©?fõ#@|4¨?8 "@ªs§?ô>#@g¨?l¨*@%©?Qr3@•è©?€¥8@w÷ª?„>@0%«?¹J>@”·ª?T¶?@¥š©?`Y=@Bm§?†=@x¥?"ó=@-ë¢?1=@ ¢?¥Ë>@aõ¡?ég>@›¢?Æž@@Ü;¢?ÀYA@À£?Ã@Ïe¢?¹¼;@mÕ¡?Rª>@“¡?8B@§E¢?8×?@Ä1£?æÅ=@æ+¤?¸[>@· ¤?›=@ú¤??@ªÓ£?ö‘>@…£?¿«;@NW¢?K7@÷¢?i,1@8}¢?„¼,@¢?R´-@£?700@SZ£?ˆw1@Œ£?&o1@pø¢?Ñy0@»»?«¿@l»?Rü @æ9º?EÝ@sº?ê–@óä·?Å@Ͷ? @·k´?û$@?³?4ö(@ê§±?¦,@—°?¤¸*@`Я?¾4)@>¼­?x'@Ñɬ?‘&@_ƒª?t!@W ¨?J."@<ô¦?:…%@p§?L|)@ s¦?xÝ-@d©?%î2@Ǫ?ü6@G«?N9@5Ÿª??P<@Wî©?ŠY;@¤Á¨?Ì@<@ û¦?x³<@¦?©t>@ „¤?šÂ?@ ߣ?n×?@W|£?³xA@ˆD£?-?@‹¹¢?¡ð>@º$¢?(?@/Q¡?£k=@d¡?®›;@&½¡?“Æ=@• ¢?ä;@øæ¢?†ç9@GΣ?;ò<@‚£?XÃ@@Õ £?J¾A@ïL¤?×0>@=ͤ?|<@‰¥?«Â=@Ì¥¤?å¸7@Ì•¤? 8@ÕÁ£?sÞ9@„8¢?$ó0@h£¡?«¨(@Œð¡?0‘&@ +¢?o+&@Ž|¢?fô'@倣?½+@ûô£?žD)@ÓH£?²Ú*@@¼?îÐ @¼Š»?VZ@p>º?Þä@_«¹?¬@e«·?5 @ µ?i«!@f¾³?Rg(@h³?Ò6-@Á"²?•1@¾°?Ñì,@´m¯?+ä(@°®?É%&@_ ­?ü±"@µ®ª?¡U!@^¯¨? .#@Ñž§?Ά @é¦?ÒÞ!@†Ä¦?¥«'@S·§?ns-@ŠŒ©?‘D1@¢mª?Dß0@ü]ª?Xê0@2©?Þ[9@‹è¨??@‚/¨?0ë>@ %§?GFA@7Ó¥?º³@@#­¤?ó_>@T(¤?–>@Y±¤?¸­<@Ÿ¤?L9@«i£?È6@” £?¬Ý6@¦þ¢?=•7@Ф?L>8@uÿ¤?j:@¿e¥? ¹<@qé¤?r?@ïÆ¤?Mœ?@Aؤ?x;@ßV¥?Q9@D¥?´5@ L¤?¨æ0@”®¤?$»0@Š£?ò1@¥‰¢?Z³+@–·¡?˜…#@o¢?C: @6ä¡?ޝ!@"£?]S%@M¤?¥þ%@ùÉ£?ªø$@ª_£?'@ÕI¼? @\»?¶k@›ûº?G@ð±·?"@ƒQ¶?æ•@SRµ?Íá!@îh´?ѽ)@Ðʳ?™90@K€²?Ý41@È0°?²5-@™Å¯?ó+)@èõ®?&@P½¬?…¬#@ð`«?})!@Xn©?H…@.½¨?B~@€l¨?|5 @Ô@§?œé%@>ú¦?DX&@qn§?!s(@&\¨?wa)@B¨?Œ10@ÕQ¨?í´2@–¨?­È7@ ¨?ZC;@Œ·§?›==@ p¦?$(<@R<¥?ûµ@@"k¥?y=@ך¥?4z7@j…¥?ž¸5@6¥?»‘8@‡’¤?äš8@ÝÞ¥?M‡7@غ¦?ž9@Í¢¦?j:@±±¥?æM9@*k¥?¿Ã4@{ˆ¤?5_1@`º¤?š/@»¡¤?É?+@à:¤?½E(@'Æ£?Fr'@HÁ£?0Æ&@Øñ¢?%@ ¢?A "@¢¢?Õ- @ £¢?'ï @Ad¤?¶"@¨¤?Ë%@©°£?^Z#@1ò£?ì6$@$~½?‡à@È»?ÄG@ë8¹?£V@¦¥¶?ÊÚ@÷ µ?r¬@?]´?{"@SØ´?¾f*@Âk´?ý2@Õ²?2@¦Ž°?Wi.@ôò®?³q(@˜ ®?mV&@ »­?ìå#@¡‘¬?è"@é~ª?uä @²©?ö‰ @¿}©?ïö#@ù7¨?à#@:4§?¸!%@Û §?[$@O§?Áð&@¬A§?Æ&+@s½§?"³-@*/¨?O/1@·Ú¨?c5@Õv§?1ë6@¦?+s7@Îo¦?ËÁ7@5w¦?%9@ÿ6¦?« 7@MD¦?’6@Š]¦?‘M5@1–§?D3@ƾ¦?SU0@‰ä¥?<0/@¹ì¥?ª,@XФ?T@)@ÑÈ£?á®&@Ù£?§>%@Ç ¤?”%#@à ¤?ô"@î¤?—é#@s·¤?¿Ë"@~ü¢?G#@8Т?¯c!@Œ£?c"@ O¤?¾÷#@ÕÕ¥?H"@ÆV¥?}­$@£€¤?jû"@½¥?9u%@R©»?W@2Šº?ò9@ ô¸?rç@n¶?™r@ʵ?˜ë@/jµ?(Ì'@ªË´?zš.@úþ³?f3@§š²?±2@.b¯?³Â-@h­?(ò(@å­?“Å'@‰}¬?ùþ&@q%¬?‘i$@ªhª?ÎË"@.º©?ÝL#@$¨?E‚"@ØO§?ø©$@ï•§?.ì#@U*§?Ì$@„x§?`7&@¿ª¦?n)@"¦?-¿-@*]§?N0@=i§?\›4@{À¦?¯Ø3@C§?6Ë3@§<§?g-6@mئ?J…5@Œ§?H3@ŸJ§?#"2@Vg¦?*-@ñŒ¥?¶ê)@Ž&¥?rí*@xz¥?ûs$@‚ã¤?F´!@É£?œÛ @Ÿ³¤?Qƒ!@Á¥?@Í @؈¥? ƒ!@|̤?yô!@\Ф?Gy!@0Í£?í"#@` ¤?M#@Y¥¤?™Z$@Ѥ?ÇU'@Ü—¥?ªg$@¹¦?´%@¤§?Z&@J{§?>È%@®V»?d0@,Z¹?[€@1E¸?so@ÇR¶?~^ @ßIµ?Ãì%@~?´?¥N(@IV³?…A.@x³?¾÷3@æ ±?ù85@ŒJ®?T1@ð'­?6¦)@ß®¬?1Õ&@ø³¬?±©$@” ¬? ×!@ÔQª?2÷@¯©?Œ!@S¨?ä"@Áÿ§?dw#@«¨?°#@—§?äº#@1 ¦?t @b'¦?T&@šŽ¦?WÄ,@Dç§?ƒ1@”e§?bÕ0@õ¿¦?è–0@³>§?%U2@Rl§?V1@<‹§?FÛ.@óè¦?”,@RÀ¥?Jy(@m¤?l×#@c›£?«B%@ 3¤?ôù@ý«¤?eÝ@S6¤?äX@„ ¥?Yà@e¦?‘9!@Ê¥?ëË!@¹î¥?|ê"@L›¤?— @ƒ6¥?Á!@õ,¥?ˆ #@Ïd¥?<&@?¦?Ä·'@¨¦?ÿ#@{f§?Û½#@ÐȨ?Ïî#@ا?[ñ#@š¹?´Ç@›ï·?ˆö@0÷¶?ìý@+¶?$1 @ÿ³?Ã"@<²?_¨%@ÿ±?Öb-@´±?®¶4@r°?±¯5@9!®?Á0@°|­?”ð'@ä­?,7#@n$­?«€#@cùª?!@§©?cò @G$©?õ7"@à©?.Ë$@d°©?XX$@¨Õ§?)!#@Mò¦?Á< @§i¦?b"@R¦?ß6(@öë§?þq+@‘z§?ê -@…§?Â.@ɧ?Q'/@.°§?_/.@ȇ¦?Jï(@òŒ¥?#"@Óƒ¥?t@ K¤?*@9£?OÞ@¶“£?Ч@¤?f@ät¤?ï@º®¥?Uj@&î§?à@ð¨?Ïw @òR§?½ä"@ü³¦?Þ)!@ÎP¦?%Ì"@ ̦?<ý#@j§?kÈ$@+K¨?¥$@/¨? å @ä4¨?L) @“¡¨?;#@—¨?Ü{$@·¸? Ì@›¹?´ä@‡Å¶?M@Æ,´?ÚH@r‰±?xÐ@e‡¯?xÐ @EW¯?KE)@ذ?X2@R°?b5@N×®?[µ.@ê®?ë#(@C:­?ý$@ëà«?ÿÝ!@Eª?Þ]!@Þvª?M#@ļ©?ª¥&@µä¨?ŒR$@{_¨?©˜"@MU§?Í@›k§?’@*/¨?kj"@¨?(@Áѧ?†«*@Yѧ?V&-@¯ñ§?t¢,@bý¦? 2(@zÙ¥?¨˜#@_Ì¥?¨@¥?V­@x$¥?D @^ü¤?Kº@Æý£?\›@™¤¤?¬ @1¥?7¹@Åî¥?¡V!@ا?`‰"@êN¨?,3#@^S©?" #@ ©?Ú""@Ñn¨?ì]$@à¨?bÒ"@ f¨?u#@Jæ§?™ù"@ŠJ¨?×Î @®b©?B@Σ¨?sì@Û\©?6L"@—lº? @ð·?o@°Ó´?[‰@Aì°?.@¢_®?æˆ@òp­?½ñ@×Þ­?3È(@w¯?E43@¯&°?´4@xÀ®?÷­0@ꨭ?¡ )@tó¬?)ÿ#@D6¬?ÒL$@|«?ô,%@8ª?.°%@ç‚©?Å"@m?©?ò"@ L©?\%@Ú¦§?Jü@©?ÔÈ @ í¨?”4$@›C¨?)'@e¨?{+@bn§? b)@ó ¦?Ù#@Ö+¥?r0 @¹ë¥?Ëï@”Ì¥?_@„¦?’7@O¦?,@Ñá¤?¢@Êœ¥?€E@S¦?c @\»¦?zÔ!@©?¤#@™¿©?å‚$@î9«?ªü%@ Öª?„r#@ ¸©? Ö%@7ê©?«¥#@¸ ©?ì#@^"¨?~Í$@l¡¨?² #@ab©?Éú!@Щ?n¿!@b{©?T¸#@ B·?¦þ@øŠ´?—d@ %±?å¯@6¯?f @¥­?€ë@e/¬?­Ö"@îÉ­?Îå+@KS¯?ê4@^¯?Ì£6@ªN®?óí2@Ók­?‘›.@Z6­?ɱ*@³è¬?ÒÀ)@]™«?ì0(@¾ ª?äN&@ï`ª?Bõ$@0¢©?ÿò!@×a¨?ñŠ@Eª?l[ @*³©?ÑM%@Ô˜©?Ħ%@¸©?¤…%@¶¦?—þ%@«í¦?/ @Ÿ—¥?²@ËÐ¥?Ì@kï¥?ýF@†ó¥?@Žˆ¦?´v@˜L¦?(Á@æ¥?Þ@ L§?ä@ùü§?Yf @Âo©?ÿ“"@¸|ª?T%@(+¬?æA'@îr¬?ªn&@V[«?'@ÇŠ«?Ã'@ù.ª?UÌ#@àt©?Þ-%@q©?Þ™%@Bö©?Ñ&@­õ©?3™&@ýª?«Ö%@Ó®´?|Ã@Ò`±?úë@9#°?^Õ@9¯­?-@+¤¬?½.@¶¬?½¹#@6Y­? —,@¸Ò®??¢4@{á®?1Õ6@ο®?†»4@?Ý0@^½­?Â×-@3­?ª<+@•§«?^í&@3'«?VA$@Ö•ª?ø #@Ë&©?G¬ @—ª?ÏÚ"@ºª?1F%@›æª?^$@ˆë©?Ž$@Ó‰¨?À#@¢¨?Æ@‘¦?ÿ°@¢Æ¦?I_@Ç¥?1@=´¦?Ü@¢¾§?¿@NF¨?@Ó§?3@Â?¨?H°@J2¨?Z­ @ ‰ª? ü!@m’«?.‰#@»­?ð]&@³m­?û*@U“­?Ò*@Û­?’“*@¨û«?¬Z'@,Õª?|ü'@¥qª?¶þ&@_çª?¿¼'@Õ%«?¯+'@§Êª?×(@(²?ù*@šÇ°?@‹@S ¯?üÎ@î?k™@E'­?ÌÇ@ÈA¬?xÊ$@w™­?·)@Ãê®?ÞR2@ÈY¯?D€5@½¯?Qõ6@C®?–T4@Ì€­?…±0@ºY­?Ž})@úÛ¬?š;&@ ”«?~$@5Hª?Ð!#@Ílª?ù>#@/«? Ì%@z «?;g&@)ɪ?¤Ð$@Þ^ª?l¢"@ª©?€7@}¨?“Ç@Çö§?5@ʦ?@}†§?”[@Œ©?@ n©? \@Q$ª?Io@òª?¿C@|ª?Á" @ép«?àb"@s[¬?z³&@Ì®?Jõ)@ ß®?ù,@ ‹®?Iœ-@œ´­?N¶,@'­?T*@8s¬?Ÿ*@ø¬?Š(@|¬?=r'@>Þ«?Vy'@×ø«?æÁ'@8¤±?UÒ@åG°?ø”@™Á®?ú@"­?yV@,ݬ?ÞÄ@by¬?#?"@U­?—'@¯?ÎÛ0@—²¯?(o6@p0¯?4ü8@Œ}®?=6@Vô­? 1@€â¬?‰x-@iG­?ås)@h¬?&@h«?Ï<$@¶º«?Dj'@¡t¬?ß&@z?¬?ÕÑ&@¬?̃#@«?h@Óª?f@{©?5³@Æ2¨?:ì@7©?©@V5«?¨Ã@;ìª?S@©«?!@’«?æó@³;¬?&!@„ž¬?£ƒ!@q­?ð'@:/®?O+@@G¯?ÔÞ.@H ¯?Ô²/@ù¼®? v/@>Э?ž.@Q²­?~é+@WU­?8Î(@¢>­?¿÷%@âè¬?&%@$Ú«?`<%@Gr±?/@ݯ?ùÂ@0 ®?Ö„@šÇ¬?mX@¥o¬?Þl@ô1­?ˆ— @„­?í%@AA®?}H.@5„¯?ùˆ7@\¯¯?¯¥9@J ¯?ô7@::®?¼\3@»!®?´±/@=­?/.@©¼¬?¸‡)@a ­?¡f)@gb­?Nt'@†¦¬?¹â&@ŠN­?Ñä%@ü¡¬?Š%"@÷ ¬? Ý@[³ª?œº@êð¨?áð@êê?b @w¬?Ü!@Ǫ¬?x¼@"®¬?þ\ @]¶¬?}Ï @¡'­?Ì€!@48­?DZ#@çÝ­?XÉ'@ ©®?È™+@¶æ¯?} .@¼0¯?§.@ì¯?[Ý/@R1¯?tB/@}®?§Ã.@i–­?®*,@ú®­?&@¿d­?å5'@ñ°¬?v6&@óÒ¯?è«@ã.®?j@¬¯¬?å@¦¬?Œ@@àø¬?h«@Ø ­?ç@;°­?4€$@¡¯? */@ëå¯?,÷4@T °?Mr6@x¯?Có5@0¯®?™2@¨Ç­?3ª1@´7®?û0@ø¶­?+@ˆÝ­?(F(@b­?WÛ&@!Ò­?DÔ'@´T­?(1%@ 0¬?nS$@‘«?wi"@™ª?é¹!@ƒíª?‹Ÿ"@^Ÿ¬?½Ù#@CÒ¬?Ö†"@H6­? ¼#@2­­?Ù"@µ³­?0?%@ú®?—­(@rî­?æ)@ä3¯?¥+@Iϯ?n-*@A ¯?ÝZ,@<°?1ø.@CÕ¯?±2@u¯?|%2@$'®?–8/@U[­?ž=+@~#­?L¸'@=¬?ô '@’Ü­?þ@à­?á†@ç¬?ž¢@·¬?)Ü@ÜÈ«?ˆ@‚¬? u@ŸB®?U¥%@c®?A†.@PÆ®?VV2@O£®??ó3@DN®?1‰3@žI®?+G1@ k®?¬#/@Üø­?kÓ+@…ÿ­?áÓ)@v·®?¢Í*@þ^®?Ñò(@0®?¶B(@šÌ¬?lÌ&@¡¬?i$@3Þ«?~F#@‡¬?ší"@•3­?Ë„#@W¦¬? $@©w­?J]&@Û®?‰&@±á®?¸â(@û®?ÿú,@Çý®?—–*@£ö®?`Á)@e:¯?ºø'@9i¯?¦è,@xè¯?Ô0@î¯?z1@.Ÿ¯?£œ1@kå®?H,0@Э? @W°?¡@{å°? £@Ó±?£&@¼§²?J=@r±?v%@lû¯?ƒ„@d»±?Üø@ÑF²?I@éɱ?£Š@‚<±?]Ç@Ô¹±?Æ2@«Õ²? á@’½±?H¯@‘°?ãó@WM°?#°@èÖ¯?â @sP¯?ä@j«¯?­è@–e¯?n @Ÿ_®?Ô¸@7­?pý@c‹«?ÝŒ@=ì?a{@³}¬?è3@³®?0@|®?ÿ"@¯®?hÿ@ëÛ®?д@¬ƒ¯?D¥@TN¯?€Ä@7;°?ªD@¿¡±?n&@À,²?°!@v±?Ç @Jl¯?8Û @F´°?£“ @O%²?O¾ @—ý²?®@ëû²?Ûf@o±?–@pG²?¿±@Dz?*Í@­~±?ˆè@—›°?y@lh°?£€@½Ð®?ã÷@¯É¯?¢d@³F°?ž@SZ®?4@œ¸­?6ô@9¬?Îì@Å’«?¦@@».¬?®È@.¨¬?®ÿ@ga­?%@®~­?²[@:‘­? ‰@©<®?ñ@L½®?ËŠ@Jî?DÍ@µ‚¯?úþ@J)±?ÛQ@àð°?Æ¢@´’¯?ý¸ @ÍÀ¯?;ê @,±?V @º¿²?b.@ÎQ´?D<@A|³?Ë!@Å„²?8Û@ë±? @:$±?rù@2j°?Û@Ÿ¯?×û @=®?oÌ@«Ä®?‡¾@n¯?U@8 ­?¦@%@¬?|Å@6½«?i¤@q«?H@Q<¬?¦Q@ ¬?x§@=Ÿ«?!@@=¬?@Ô÷¬?ñm@-ª­?6ã@Ù­?oQ@¢"®?¤‰@8¦¯?X…@´¯?æ° @®?ŽY @m®?ºï@ÿI¯?© @¼T²?Þ@§6³?b9@P÷²?e›@o²?AÖ@ °?Å@š¯?’ @=6¯?ë¨@©Í­?s» @7®?o@ùN¯?Ô@)®? @¶¯¬?^@÷«?ì;@þ^«?ݨ@œ¬?Ñ—@†Ø«?Qu@U2«? —@“:ª?¼‰@ú|«?!@Îþ¬?mÞ@n­?^W@)­?Ô8@«±­? @,M­?Ü@|­?ø @É­?!Q@Ïà®?åú@›Æ±?ê- @J²?e:@¾¥°?Šz@ï~±?ê7 @çW°?J@Ii®?(< @ƒ[­? V @Q­?vW @‰›­?à@»¸®?Ð@̬?L-@në?°á@c³ª?x+@FN«?xã@Ñ««?”Š@t(«?µÊ@üÛ©?ë@€Î«?ˆÙ@72¬?ž½@¬?#P@­ˆ­?¤÷@|¿­?»÷@¶ ­?ïT@~¬?x @C¢¬?‹* @Mg¯?£Ö @5ð°?é+ @ýî°?=@È ¯?új@ÕN¯?é @Ó¡®?m+@ý­?ËF @z¬?Õ@còª?èô@×3¬?®÷ @‰­?ï/ @œ ¬?y•@ë?6é@n£«?èÍ@=¬?ÞŠ@+Ôª?H@pnª?Kê@-Kª?úF@g¶ª?¥9@Ì®«?ùÐ@v¤­?¿ã@Zñ­?q±@ìë­?éÌ@ˇ¬?X>@+>­?(Æ@öµ®?«à@òɯ?h@Y,¯?Öa@;M®?Så@õ­?ãc@i®­?ë„@?/­?^@QĬ?e” @[m«?8 @®­«?mÊ @_¬?Wà @‰S¬?Vø@éq«?¾}@~¯«?/¦@G¢«?N_@ã«?x@D«?é@Äyª?@e@Yy«?p‡@C.­?‡@Fs­?ó@¡»¬?Üe@•o­?Ùù@;1®?5@Dƒ®?å!@Ú¯?öÉ@ûØ®?–q@IÌ­?X~@­?Ƙ@ ÿ­?ë@‘À­?a@:Ú­?h{@Y­?cn @Þ׬?#Þ @ߥ¬?A™@{æ«?@@V6«?mÚ@Ò“«?‡@¨5¬?0.@V§«?J8@Ò«?e>@¥ª?˜o@W«?œå@mO¬?U+@ù«?í@ï¬?rã@ š­?š%@²ç®?ª¯@(¤®?[¸@Â’­?ÿÈ@ ì­?÷…@Í¥¬?>@gÙ¬?'@Çñ­?õÃ@|,®?÷y@yŸ®?’”@úÀ­?5˜@¹*­?¹q@k4¬?Ð @sƒ«? @©«?Pn@w‰¬?@/µ¬?9@´ß«?@vC«?5•@DØ«?|<#@÷œ«?¶0@Y±¬??…@ß­?&Ù@_Ý®?e!@Ðë¬?, @Ö%«?|9 @B«?¸- @”ç«?!@¹!«?MY"@é$«?ÙQ"@d?¬?‚ @±¾¬?y@ùÖ¬?r@w§¬?·N@’·¬?\Ö@žn¬?ðW@¯o¬?þh@a.¬?žæ@³¬?Ê)@û¼«?ûœ@¸¬?È@«v«?Ž;#@fÒ«?Ÿ®!@ô}¬?¡v!@=_¬?Gû"@1ë«?!š!@Ziª?ÿ."@&š©?«ª"@^å©?$@”&ª?‰‚%@ɪ?„k&@H}ª?xÞ#@£âª?÷'!@(V«?—)"@Î;«?Q !@Õ«?!@±Ü«?mÖ@~­?ó<@®Ç¬?Ù@„I­?A@ÜJ­?L/@vc­?=@D«?¸Ã%@¬?<&@*«?ס"@kçª?^#@§´ª?é"$@q¥©?‚#@Ñj©?1Æ"@óª?Ÿ&@¨ª?F)@¬Gª?1R&@íñ©?;-#@»Ý©?‡p"@b#ª?"@ž½«?…“ @¡0¬?M`@‡ ®?t@Í®?Èæ@&z®?:Ë@vz®?Æ@´®?n@‚‰«?Ͼ'@2«?Õâ%@Ñäª?û›&@ÿ©?/g'@äs©?.Æ"@™Ï¨?9#@Kï¨?cK%@ë ©?“‰'@“ª?]ø(@¤©? ›&@É™©?k#@oª?ƒß @n¡«?Ïû@ÊF¬?“R@Ož¬?òw@¾À­? é@áþ­?ë@Õ6¯?eÅ@€°?¢Â@ŒÆª?À)@%ª?H)@b©?‰í(@ò¨?bd&@W¨?·'@†¨?^B(@è¨?¬t)@{©?kÐ(@#ö©??~(@ð‚ª?³'@ï «??Ã$@lU«?rb"@@’«?W¾@EA¬?°8@ç!¬?Úq@¬Ë¬?¬<@½+®?ͺ@m#°?SB@†Ì©?æŒ&@S€©?fÊ'@Õ×§?fŠ'@ú8¨?E8)@â¡§?#b)@Ô§?º©(@`©?%Ë(@”î©?&*@;ª?ðQ(@©¶ª?ºŠ%@Ê÷«?Ì`!@2ë«?u_@§ò«?"÷@Ü…¬?ƒ @#Ÿ­?3 @{÷®?ã©@¸°?,= @2ª?—$@ƒÄ¨?Qa#@}¡§?γ'@Y1§?èk&@Ч?Çm&@·Ü¨?p%@b…©?ùx#@¨?tü"@[©?Œ @j4«?B@ã«? ‘@{x¬?qí@…¬?ÿp@Ûƒ®?¾Y @¿"¯?ì¦ @®°?vS@ÿǨ?.À@\×§?Jl$@‹§?B˜%@þ:§?b«$@ô™§?Ö-!@g¨?R@Èݧ?+@¶ú§?ûC@öʨ?]ˆ@¹´ª?˜d@Óë«?Û@ŠÅ­?—i@2›¯?¸'@t°?iµ@^N°?Gœ @#™§?#´@›i§?°%#@-V¦?iË%@ü•¦?Þ¿!@å̧?Éæ@%¨?žf@C½§?ÝÂ@ð¦§?F:@EÁ©?"o@“6«?'.@ØÅ­?²Ë@Iÿ®?5@1°?ýA@_1±?á(@Ь¦? œ @óá¤?É:%@6K¥?¸¬"@.¥?‘J@a3¦?8É@‹k¦?±Ô@ W¦?b˜@¥I¨?d @{ª?Ÿ{ @·˜¬?Sî @Ö ¯?@¹é¯?3É@îÙ¯? ß@üà£?{.#@”Ѥ?ƒ“@qS¤?sP@@Σ? ú@Z¥?Q´@‡1¦?@H¨?ìŠ @_#©?ú´ @¤ «?ãK @h7¯?• @öE¯?•@¿ô¯?Ì @ñP¤?§ì@\m¤?!­@ó;£?ú @5ê¤?rm@uÜ¥?ª¯@5¨?D˜ @j@©?ÏO @Aª?ªš @ é­?1ö @¢>®? é @&¯?¬Ð@›ñ¢?g¿@ìa¢?ù@锣?@êΤ?Ò+ @˜ ¦?ŸŸ @xe¨?!ù @X©?Z@ á«?C @·Ã­?i¶ @}®?U+@{E¡?q²@øF¢?#±@ÑÖ£?ûG@CÎ¥?Ù @ðÔ¦?cÜ @Hʨ?[6@ÞϪ?ÿ¡@{¬? H@oü¬?²¼@›¡?  @Ùs¢?Ô:@–”¥?‘@J‹§?ƒŽ@Q$¨?çÔ@ß°©?ˆ @#z«?ô @Hq«?o¹@Í¢?9@ïR¥?ÁŠ@ÄÛ¦?Çt@­m§?£Å@o,©?dj@gé©?‰~@Æh«?lÉ@*{¤?¤@o=§?˜ö@"@¨?;Ú @ì©?o @Û™ª?Œ @.¬?1œ @ðt¥?GQ @™¨?Íø @7©?€D @7N«?0% @q®?µb @{¨? K @E1ª?!l @4¶«?ãÌ @³¹¯?dÂ@Ø¿ª?X| @*j«?­ @ÈP¯?à @|a¬?³þ @éD¯?¡ @\¯?ƒa @«€½?¨ù @—N¿?‰8@9 À?£¡@™èÁ?Ÿ@ ”Å?•@"%É?GA@Í«È?Ir@Å?A @¦À?óÑ @L½?$€ @¹>»?øÈ @@…¸?¿@Y·?ÑF@"ô·?‹ƒ@6[·?ûe@3p·?% @‹æ·?¶@%϶?ð1@Ïú·?܉@Rø¶?R›"@xĵ?8¶!@÷µ?Ϋ"@ µ?öw'@Æ[·?¶„,@ÀѸ?Ñ1@8º?Û¢6@G“»?€0@ʸ?HÝ/@°@¶?rÔ.@pT´?¦-@XÛ²?éé%@ôµ?ÎÊ$@8í¶?Ìu$@X¸?µÑ#@—e·?Ð*$@%-¶?aÂ&@Ì%²?™0*@Ш¯?30@Ú­?8.@›³«?~¾-@Òr©?S/@Bܦ?Ú4@˜q¤?M6@”Ø¢?°B9@ˆ£? UC@¢?‘úF@] ?EC@Í”ž?`xA@a{?óD@¯•?u[C@á:ž?¶ñD@Bžž?HÜE@÷?KJL@ª'?9K@·œ?£ãI@)ô?9‰G@;½? × @H\¾?‰ô@k¾?¸å@CÁ?w@”¸Ã?ëÍ@Ù^Æ?¸&@PaÉ?\@:gÇ?Ù@­ëÁ?‘@&Y¾?Ä@%¦¼?Ò@OA¹?{@ *¸?:@C«¶?‹í@c8¶?ò@Þí¶?›ñ@7;·?ã¿@¡y¶?ì@X'¶?q@ýµ?no @÷#µ?@ @¿g´?¿©!@üé³? (@r>¶?ÐÔ/@ò-¸?óü3@˜²»?;¨-@DVº?µ®.@g^¸?jä3@á6µ?.Û1@ÇU³?Í*@ ¶?‰'@‡‘·?¯­$@î1¸?Ä6&@¨2º?çJ$@¥¹?E¸#@*·?sÝ%@(´?íZ*@¸\±?Ж.@ëý­?èü.@yœ«?fÊ/@£×§?Â@3@Æ ¥?8p5@ê.£?Aœ6@HÍ¢?î >@«Þ¢?iÅC@€U¡? ]?@ÛoŸ?+ò@@ˆ`ž?MÐA@.#ž?RE@wž?…D@ž/ž?½1A@¹Å?wA@¤ ?%‚F@=†œ?HbJ@Zz?ÞM@¾ ¼?÷x@%L½?Ñ@‚§½?Í-@T¿¿?Õ%@%À?§†@ôÀÂ?åƒ@"Ç?Áå@wuÆ?ºž@I?Á?D«@„·½?S@÷œº?+w@ãF¹?/@žÌ¸?ó7@J·?ÞÈ@Š·?¾†@ü ·?_,"@j_¶?£$@€Xµ?Ì6#@M´? H#@€P³?À{"@ýв?:? @P²?Æ?"@´?]*@>H¶?x5@͸?R6@Ï×¹?àR,@Æ©¸?°3@óU¶?¯¸0@Bµ?6.@Шµ?€ï(@Pœ¸?‹»$@¿š¹?xH%@äáº?É %@ú½»?‘&$@¿ ¹?‡¸#@b‡¶?€)@JL´?ý©.@Xа? %/@Ó­?’é0@9gª?Ÿt4@)^¦?ùÝ6@·£?F5@f£¢?»:@í¥¢?S¡>@ð–¢?l–>@2*¡?áÏ@@“eŸ?Á²B@Nô?ŸA@`­?wò@@x?Úu>@óE?kü<@)Çœ?z9B@Sœ?‡eK@(o?åŽQ@~°¼?…@¼?çº@ø)½?,ë@t¾?ü‡@kê¾?Sð@]¹À?‰½@_SÂ?¬@ð¤Â?³n@©8¾?ðî@ æº?)y@®¹?PÛ@“×¹?PN@„¸?´b@ì¶?SÑ"@K»¶?ÿ%@Ih¶?–%@úá´?ˆ¯%@š­³?´#@¤Ï°?ëd!@Ͷ°?`þ@C6±?˜/%@Xw±?Ù)@j³?[¸1@ø”´?4®6@Vk·?+ /@äÔ¸?´9.@^ɶ?è@0@‚ µ?•B,@Ž+¶?óG'@xÇ·?ØÝ#@³§¹??’"@»?èÅ"@±÷»?O;!@Nº»?»w"@á—¸? O'@ƒÔ¶?ˆ,@HL³?¿•0@ÐÍ®?Ì1@x¬?Ìñ1@›¹¨?‰ò4@f¥?¸g3@¦a£?µT7@Ÿ‘¢?PP<@ÖÛ¢?íÝ@@\£?VME@Ì¡?WlC@k\ž?+G>@—œ?f½>@]Žœ?Y¨A@.fœ?ø=B@6Ìœ?a¤C@€¯œ?xI@ô=œ?= P@0à»?(@Ja»?\Þ@ï½?;ê@ë>¼?($@ž¼?D6@wK¿?ª@>À?ßñ@Ò¿?˜’@S"¼?ki@cº?ñ[@5â¸?'ï@’h¸?øV@.Ÿ¶?J!@œ¶?cÓ%@—-´?«*@©Þ²?/5)@·Ú±?PQ(@æ°?‰5$@’X¯?êG$@TŸ¯?Dµ"@g¯?lk(@SÛ°?Hõ-@$a²?Î93@:h´?Ð3@áý¶?øë+@·?Î/@Dƶ?•ƒ,@϶?2›'@±t·? c @U¹?¸ª@iöº?ºW @˜¼?÷^ @ao¼?CØ!@fEº?¿U%@oÈ·?„&+@ÜÆ´?òÎ-@§ò°?‘01@j›­?øk0@ùª?¬¢0@À¨?ž/@u¥?‘}2@æO£?Ÿî4@¸o¢?ÛŸ:@ȃ¢?ñÚC@oé¡?~›E@%Ÿ?ÉöA@€óœ?¢jB@Hœ?›E@gMœ?PI@Ò^œ?ç‚J@¾{œ?¨?L@àZœ?îÐO@Oº?Ñh@$¹¹?@–-¹?®¡@›ò¸?1Õ@º¨»?=V @t¼?u³!@f¼?||$@¦à»? @œÃ¸?Å‘@¯‡·?Cb@£¶?å8@sàµ?ÀÒ@מ´?nð!@˜x³?=6)@Öá±?þ:+@ 7±?:*,@Œ °? -)@ Ó®?"C(@a—®?Ê¢#@¢Ð®?-Í&@ä`¯?d:(@™±?#-@ÄX²?>‡1@Ãæ³?èZ/@Ì·?v¨,@§z·?±-@>N¶?4R&@®·?R@ò“¸?)@C0º?en@_³»?-l @ì ¼?R¿!@¬Aº?‘v$@ü¸?Rd(@M¶?ó+@ ³?)+.@Я?Ü0@Ö¬?Û0@áb©?×ó1@s·¦?Ím3@½¶¤?§/@žG£?v=2@Æ‘¢?à¬>@¯E¡?>H@0 ?dŒD@f-ž?vF@Ëœ?+ÓG@X‰œ?(àM@•@œ?ñÏP@ ˆœ?¨N@›K?‘âN@^¶?ûì@5Qµ?"£@ήµ?¾í@»ÿµ?j‚@ä¸?Ÿ"@M¹?5×$@'vº?‰‹)@Mº?#È#@¶?Ñ­@)ø´?Ök@P³?àâ@ýª±?Y= @ ‡±?ݯ%@ѱ?ö,+@:İ?Ár+@u¦¯?ÞÊ(@ï­?€¨%@Éã¬?;³"@@i¬?µ "@~c­?lÉ$@þ­?‡L'@ê2±?.-@&q²?8¥,@Ð>µ?4Š-@/^¶?xs+@¤%¶?d½%@nô?ni @ÝǶ?V@ú=¹?¾@óÙº?›@áì¹?Æ,!@Jó¹?!©#@O¹?̲'@é“¶?³Ë*@¤²´?Ö-@¦²?Ì+.@‹®?­e/@(²¬?}ñ0@/ï¨?Ís2@Ñi¥?N0@ÛT¤?vâ0@Îë¡?«Y:@‚¡?Q/F@a[ ?¾HI@çqŸ?[F@ÝGž?«5J@+¯? ×N@3?•mR@ïi?h+P@ëž?¶DL@Qº³?îð@±ê²?Š5@á²?r-@ž÷²?@.#@5±´?}š(@å¹¶?à*@ôÜ·?µ<*@“B·?åë'@2è³?û™ @ëX²?ÿv@Yu°?<:@§¯?Åœ @¯?¯?%@ÇÛ®?ìA'@4d¯?«=%@¯E­? m$@Wé«?ý>#@1«?Ì @ÍR«?&$@ìf«?¨ú&@¹®?—‰)@Þî±?^1-@qR´?%q-@Ê»´?IÔ(@D´?ÕÍ&@á%µ?øð"@xeµ?ü‘#@ò#·?M* @ ¹?Qù @Ùƒ¹?LÌ@Gœ¹?4¶"@“ƹ?H&@h"¸?J°*@¸²µ?#÷,@‚æ³?9G0@)±?–«-@g—®?¦Ÿ/@ –ª?‘ˆ0@ç?|å-@§¥?½Ù/@¸þ¢?Y26@£ ¡?u`?@h ?ˆD@Ð3 ?÷hK@þªŸ?†_J@UŸ?~O@쌞?oØQ@é=ž?…ËR@òÒŸ?Ÿ)N@Ú ²?U,@bš±?˜R@'°?Äš!@ìK±?‹Ú,@³?ö2@Ìà´?Ñr-@Þ¶?O*@{µ?›Ñ+@ƒ ²?ðÛ!@ŽŒ°?-@Qp®?ü¤ @E)­?ç—%@.¬?ˆo#@Ïð¬?ám!@[k¬?)†!@Œ6¬?Í2"@ôž«?¿é@æª?[ö!@‘vª?x#@sK«?òÀ,@±B¯?ÿ3@.ï±?µA-@0³?·k*@Jž²?®'@QͲ?¿¸"@ë-³? $@²>´?Q1#@ ·?v]!@ ¸?øã@kº?"@£Êº?]%@OE¹?¿ƒ+@l¦¶?è/@ïÄ´?Aê1@ '±?þ0@@ô®?Üœ.@oø«?=v.@F¢ª?žË-@•§?¾.@øl¤?x/@žÕ¢?ž³8@öG ?¼A@-O ?™ÑH@Ä ?ŵM@q ?ÞL@ a ?RøM@* ?C P@ý’ ?Ó|N@°{°?Ñ@ëq¯?Y@âz®?¤O%@Nã®?Å-/@‚n±?½×5@ôè³?Ý¡/@IŽ´?¤Â-@†²? ,@vد?m^&@¹­?¡#@*÷«?C~#@e¼ª?£$@Ò€«?2 @£>«? ?"@4ïª?úA#@ÖѪ?1!@àAª?,T @ß ©?î–$@%ˆª?nC'@J­?Å0@½˜¯?Tï/@’v°?Q·-@0Z±?!W&@]€°?+9$@b¨±?õ"@¨å²?9¹$@>_´?’"@"·?øÈ@4é·?ŸÏ@þ‰¹?î#@kó¸?ˆÄ+@^¸?ƒ÷,@Ŷµ?Ê.@h[²?)/@·@¯?‡a.@1W­?kŽ*@×é«?¼Ï)@`‰©?Ss+@HÚ¥?~ñ-@£?v¯4@½¡?'=@EJ¡?§´D@Hx¢?ï£M@,¢?*™I@¯Ú¡?0™K@Ò‡¡?VËL@.à¡?}’O@€¯?7Â"@I`­?'‘#@ƒS¬?hµ(@Û­?¨ 8@åʯ?Ÿé:@6i±?ã3@Åo±?¡|1@¯?‹1@ÌÔ­?¥×-@‹’«?CZ$@±r©?Ñ*$@TÅ©?ën$@D!ª?"®"@Þª?Þr&@sª? „#@Î3ª?ˆÊ"@°Ð¨?#'%@Jz©?¾'@‡«?¼'(@ôC­? §*@;¯?õ„+@ÆÒ¯?À«%@«¯?M1#@Ôó®?Êj%@…z°?6ÿ%@:ß±?$ò$@³´?å!@òͶ?®1 @,ô·?u!@ñÇ·?¿Ì'@±ó·?¶ò.@!W·?ü"-@A³?xÝ,@š¾°?„À+@ù­?ch)@Ì(¬?…Ó(@‚¸©?é,@ªv§?–e.@C¥?é2@,£?Ã9@@»¢?ÏB@Ë£?çK@ʰ£?‘ÞI@p¼¢?É¢I@Êx¢?þ¥K@5¢?,uQ@kZ¬?;=&@êUª?Qu(@Û¬?¤â3@t®?3.?@3¬¯?ÿ@@ ¸¯?\ 8@·§®?9p3@jœ­?ø7@¬?Y0@r'ª?k-@dQ©?ùf/@W©?ƒi+@k1©? )@Èv©?ï &@ü¨?B1%@¤è©?Á#@£L©?÷¿&@`ª?¯å%@£¬?v*@gÊ­?++@$<®?U")@®?»«!@ñŸ­?¥¹ @K†®?ëX"@æ1°?êF(@5€²?M·%@ϳ?µH#@œÄ´?„ "@Ú½µ?ù¸&@š·?öˆ,@·¶?Bã.@ø%¶?7”-@5ú²?éE+@ÇÖ¯?Rl*@\I¬?¥„+@Ohª?xD)@ ©?´Ö,@ºò¥?#y2@ø£?ôƒ9@Äã?.E@èE¥?Ã?I@ÊY¥?¨J@ö]£?ÎäG@ä ¢?hJ@]R¡?xšN@±(ª?êá$@3©?´g,@)(¬?òj8@þ¾®?óD@V¯?»ÑD@Ƹ­?ÐU>@¶¸¬?ÿË<@ø!¬?¿:>@J«?Ñ’9@kMª?kT6@já¨?ßñ2@?¸'-@f©?‹I+@U»¨?,*@©œ¨?;n*@t1©?ž)@‰ï©?ôi'@ûM«?& )@«¬?þo,@qU«?^;.@]æª?´±'@k±¬?ð"@&7­?¤c!@Æ®?l%@pð?-ë&@öè±?Cj#@%>²?>¹#@?†³?¡Ë%@P÷³?Æî+@Ö´?ï6/@lù´?X8/@ ´?‡µ,@à±?×{(@ò+¯?×ù)@%Ò«?u»(@¾á©?†ö*@^§?óµ1@ì¥?ãÊ9@GK¥?qA@ï/¦?…jB@¦?³K@…Ø£?'’L@Zö¡?Ý¢H@½"¡?ƃG@S(©?RÕ%@…Xª?E6@­?ÇyC@¹ ¯?æÁC@A®?…–B@>V¬?a´A@„ «?‚fB@£ª?8uD@¿Å©?ßã?@U+©?d-;@úȨ?5ñ1@ˆ+©?_´-@ú©?Ýl0@Ш?0?0@|̨?·þ,@Ì ©?'d+@Tª?N%'@ c©?â*@=©?y-@'o¨?ÂÐ)@¬ ©?µÖ%@5«?ë"@…Ǭ?°_#@@®­?§Z'@µK°?0~(@ä±?ÛÍ%@M_±?)(@yã±?J -@›¦²?x-@I(²?†$1@áʱ?Þ0@ú¤°?NF.@;z¯?‘,@æ­?>°*@Ë•ª?²È+@‰¨?Œ"1@Ãѧ?±Ð7@ ¿¦?²³=@8â§?G‹=@òÛ¦?ÂB@#q¤?lJ@Bÿ¡?·C@fµ ?ª_A@¿š¨?ÃM.@—«?ÛÆ=@À­?;E@!¯?•ID@ͬ? OC@5Fª?ó,E@½V©?ù,J@+ä©?»G@ã<©?Ö‹@@™á¨?¬,9@§â¨?®‡6@Ž©?¬4@:I©?„74@/ ¨?¿F/@nq§?½K,@ï§?×!*@ަ?»J,@Þ§?´Á,@î“§?ÜÏ(@¶Á§?W‡%@Ш?Ÿá"@cÕª?ßF!@©`¬?“þ#@Ìv®?ñ„&@…7¯?ƒ$'@'ñ¯?XÈ&@;M°?@,@¸°?mT1@`°?‚Ø0@ȯ?#‡3@$±®?h0@¾&®?·K0@H®¬?ç°0@B¤ª?õv0@ש?yÑ3@²…¨?žÐ8@7-¨?Ne;@˨? >@*g§?eÅ@@Û¤?Ž#@@Y¢?â:@Ôµ ?e™8@?Ѩ?³ã3@Õ¯«?“µD@0Ê­?^‰J@'”­?¸™F@Äàª?þ5D@#„¨?²H@º‰§?L@lª§?ÖG@?¦§? +@@¹Û¦?ˆ<@]¦?a¸6@1à¥?H\3@S¥?¢“/@¿×¤?Œ‘)@Å’¤?S#)@F"¥?xö*@°ƒ¥?®®+@Â?§?^'@B§?€3(@W¤§?±$@‹º©?Ôç @Z+ª?ß @ùV¬?$I"@ ´®?ûó"@É€®?7Ò%@xQ¯?9;)@_¯?q-@3¯?G®2@±w¯?‰i4@bs®?y02@‡1­?Cf2@qØ«?Í4@›kª?´ú3@ì©?'¥7@N©?Œm8@¡“¨?L™8@Úˆ§?ï<@÷¦?;.:@ÿ¤¤?ªô8@üÚ¢?É 4@”‘¢?×M4@DVª?Œw:@V¬?ª?MÝ"@žr¬?]p!@6M­?lj$@5«­?KÒ'@ÅŽ­?óÂ+@§­?ëk0@—ý­?Q4@ ­?`X2@9 ¬?ºN3@ò›«? 4@뫪? Z4@Î5©?`•6@ ר?»6@“©?ëG8@ð¨? –7@?N¦?fí5@Ïà¤?Ó5@Ζ¤?Š.5@’Ÿ¤?+Ç1@t¬ª?ʸ>@yq¬?‰A@a¬?ÈaD@ldª?´rF@v¤¦? oG@íZ¤?—“F@kÍ£?ðâC@‹U£?Y@@ØÍ¡?ÑÎ8@€¼ ?¸0@{N¡?•ò.@~È¡?ð+@îV¢?U(@†£?6?'@åݤ?©X(@‹¥? Â&@Sܦ?%Ð$@Xð§?}$@9[¨?`#@‡ ©?’¶#@-f©?é¯$@Wª?‘Ì%@ZP«?Ö0&@¬ö«?ƒA*@aT¬?·-@†o¬?W 0@1.¬?¾á2@ÝѬ?~3@©p«?ÖÎ3@6ª?Ÿƒ6@¢ ©?¿5@Z/©?Qk5@[©?Ž·6@[u¨?B”6@›Ñ§?™z5@}¦?ž$3@º¹¥?ÌG1@€œ¥?Ê4@ªÈ¥?y²1@åÿª?Š?@ªÑ«?'TB@#«?±C@ë¦?¾G@½£?æF@zA¢?Êœ@@úÑ¡?èS>@Ø¡?ÞŠ:@7Ø ? œ5@·ñ ?Ë1@ö"¡?À¥-@šï¡?õS(@þn£?¦$$@$¤?„ '@†c¤?4[&@ük¥?Þ5$@ýp¦?…Û#@´Z¨?Q”$@ïf¨? $@y[¨?ß³%@k¥¨?¼þ%@\ ª?&s'@…8«?‰f*@C;«?].@K¬?%d/@·Ì«?i2@¹È«?»Ä1@­«?„P4@1©?µÁ5@ñ<¨?׈6@ô©?04@¼o©?2@•[¨?±õ4@æ0§?Ýž3@·(§?¬m/@³?§?’¡.@Õs§?Ãx4@¼¦?üV2@ ¯«?}E@Hc«?ÊÅD@Cì§?=E@qí£?™™H@°ì¡?‚RE@üô ?åƒ@@É¢ ?‘Q;@N5 ?å8@ž” ? Ã6@::¡?âÐ0@ˆ¢?ÂÀ+@ÿQ¢?,†%@G£?o%@<é¢?Ÿ%@kK£?÷0$@ÖϤ?ƒî%@橦?Ç0'@Ú§?ÿg(@µG§?]T'@Ë3§?=]'@¿4¨?¢t'@Œé©?tÞ)@oª?€y.@Ôª?íK0@‘Kª?åÕ1@8Oª?H›0@´hª?ø2@mM©?=ú2@…M¨?îê2@ó§?ÊG3@—¹§?žä3@œ™¨?°2@’¨?èk4@ü§?1@râ¨?–»/@ƨ?¢s3@^¨?^å3@„ «?ëëF@Èï¨?»9G@¡ï¤?ùI@¦¡?p·I@N¡?çûF@ÌΠ?I¯?@$ ?A9<@ [ ?«!:@a ?pˆ4@áÒ ?~-@,o¡?})@|D¡?6&@oÍ¡?%@C¦¢?|%@Gî¢?ê¯&@耤?.Þ&@F¦?â[&@óé¦?ôð(@ï2¨?ÿh'@h„¨?Þº'@ ©?B +@sª?oÁ-@k‘©?X€2@öð©?M3@Äj©?—1@y€©?‰©2@1v©?8«1@i’¨?94@”ø§?ø3@ô‚¨?„³3@ó™¨?sm5@D±§?F‡4@m=¨?aõ2@Úr©?¬û/@ª?Ö\3@ 3ª?ìÐ4@‘e©?ޱD@!Ú¤?°ÖH@v@¢?OM@rp¡?K@Jµ¡?;ËC@}á ?ä<@÷Y ?Ø“=@BM ?ѱ5@B'¡?7ƒ0@êÒ ? W,@°ñ ?ð“(@Œå ?¥4&@^¡?Z%@ý¡?ú%@v£?Uê&@*У?)‹&@z?¥?š^'@£¦?d6(@ߦ?ƒ¸'@…§?ù)@$ú¨?ô*-@P0©?)—0@dÝ©?b"2@£©?yó0@̦¨?Pä1@©?»ÿ2@ä¨?úÕ2@–½§?z2@þ§?4@ÍF©?܉4@{¨?Z3@–/¨?ÿŸ2@Ö©?í1@¬»ª?™©1@p½«?GÅ7@¦?˜C@,¢?é_F@ÄÖ¡?QÌH@M‰¢?âD@qÌ¡?—?@Ì^¡?ª€A@ß]¡?^t>@á§ ?Í :@‚Ç ?[|2@©4¡?€÷,@,¢ ? /+@S^¡?Ðt)@¤$¡?PÈ'@y¡?Ìœ'@,É¢?”Í(@ж£?Ⱦ+@›¤?‰ï*@¼ ¦?Þœ)@¨S¦?"~*@V §?«l.@:ߨ?†0@”!©?_h0@‰$¨?÷ø2@Ѥ¨?wJ/@§h¨?j/@ƨ?„á0@œ ©?€Ð1@9œ§?z73@s7¨?º4@¢¨?ÙÃ2@A#©?ký2@Àkª?13@«? 4@D!¬?m¾7@L¤?…@@€¼¡?ÀC@±¢?æ@·Û¡?WI;@t™¢?èc:@Ø£?lî5@wd¢?sŒ/@üæ¡?Î,@ÉW¡?Q)@K¨¡?‚)@*¡?çÃ+@ñý¢?yŸ.@òµ£?z/@¤?´R2@“ܤ?¸@3@.¦?ÙÚ2@ì̦?`§2@Xͦ?Â0@€]§?Æ2@Á¦?¨13@¹ú§?T[5@O±¨?¦S8@ƒ0©?׫6@ðG©?š"8@ÉNª?œ4@çÙ«??ÿ3@¹²«?´5@Y¬?†A8@è¡?iCE@¸y¡?á{E@“p¡?‚C@[¡?A@š¡? B@…G¡?Æs@@¹Û¡?¿º:@êÏ¡?yß8@€Z¢?äÿ;@™d¡?c9@‘ ?®³1@^u ?»8,@–® ?9B+@ ¡?äv-@ñ¢?Ž™-@\Ë£?œ.@¶¤?r 0@‹¤?MZ5@RÓ¥?9:4@È¿¦?üL1@w¨?†z2@Pw§?[ 6@bЧ?# 7@H¨?+ 6@öé¨?Vä7@4©?8@MÌ©?K×6@´0ª?ðY7@?s«?½Ã5@­Ô«?ív6@Un¬?8ð8@ T ?þbH@)¡?Ž'H@ï#¡?œ”A@í¡?;)?@M¡?Ë=@˜ö ?oW:@×… ?M:@W=¡?å¹;@Pj¡?Í‹:@[‰ ?{K4@Ùמ?­,@"+Ÿ?¢*@mùŸ?êÁ+@7ó ?+@[–¢?a©,@Èœ£?Ô.@ëÙ£?Fè1@×(¥?@×2@n‰¦?úÿ2@Ó¥§?aO3@òͨ?§ë4@MÓ§?„48@n7¨?œ;8@B(¨?D9@¿¨?I9@Ñn©?\?7@ãЩ?è5@Mëª?­¿5@¼’«?X7@c(¬?^9@bF ?ŽçD@Í%¡?zE@at¡?¨ø>@’c¡?øZ;@¯Û¡?=°9@:¡??Ž9@}¡?‰9@ê™ ?b8@ÈΟ?íX2@›…Ÿ?ká.@9~ ?ã+@¡» ?{Ó)@*«¡?+@¾F¢?]u+@\×£?.Þ,@’&¤?£X1@É•¥?:b2@Ú¦¦?Ä 4@i”§?¥¬4@¿§?€ä3@jÿ§?c?7@ûŸ§?ûÜ8@o]§?\~9@P©?5:@Â:©?¿/8@gQ©?é3@ÐBª?øÉ2@ü«?56@åä«?D:@¡?3H?@,¡?ø•B@zŠ¡?áx>@ÿS¡?t­8@Òâ¡?k¥5@‡@¡?÷h3@±¡?Ya5@z• ?~G/@Ç ? .@£¸ ?Ü¥-@Þx¡?Ja+@­|¢?tC)@¢\¢?¬d+@Fÿ¢?½Õ,@À*¤?f….@-¥?Ó³0@§? ¢1@Bg¦?Zc4@ƒ¦?t´4@¦?lF5@)m¦?ÊH6@ðB§?,y4@éI¨?Ùü8@qþ¨?Uý7@¾©?ÙO5@Ù«?èš5@ ¬?}œ5@ýǬ?J;@&=¡?ôÄ=@sœ¡?PÝ?@r¡?˜S>@q¿¡?Õô6@¤¢?=ø.@Hü ?ñ/@yã ?y.@½. ?¹3-@ïV ?ðx.@¡ò ?/.@èç¡?I,@à)¢?œ˜-@ŽÆ¢?ŽE-@³—£?(….@œ©¤?Õ!1@!\¥?s0@C%¦?0@†¦?¸<1@©q¦?9‡1@4©¦?X¯2@Ï4§?¤Ó2@N¨?Ÿ6@î9¨?,ß5@Çœ©?ב6@HT«?·,:@Z_¬?s(:@!Ò¬?¯£<@Ñ ?Q:@ÅÅ¡?W:@È ¢?°¼7@•Û¡?1@Øí¡?/+@2¡?ÈO,@½ ?pƒ+@0¡?9/@½¡?ù£0@lë¡?w0@ˆâ¢?!1@IØ¢?Áí1@NУ?û:3@ch¤?2@»¼¤?4L.@ŠÉ¥?§?Ès/@{õ§? ’2@Þ¨?L5@Úy©?œ%5@íEª?L9@µ>«?U;@%Ù«?¿r=@hõ ?|=@,T¡?(ú:@†Â¡?QÏ6@Q%¢?AÄ0@'¡?›s.@œ¡?bT,@«)¢?íi-@`ƒ¢?„‹.@߯¢?}]-@9\£?ç 0@çÈ£?4Ò.@½£?c¤-@a¤?Ÿ»*@G¥?†~*@²¥?¹Q,@KÕ¥?ÑB+@”3¦?»,@`V§?§-@ÈG§?*,@ÚZ§?^'0@“‘§?LS3@ÓK¨?ôý7@ýš©?úÛ8@fõª?ô:@)F¡?…?;@˜n¡?XZ7@ÌK¡?^4/@¿‰¡?],@Z0¡?T\+@A{¡?ˆt)@a¥¡?y².@èi¢?ÂÇ+@¢?hX+@?‘¦*@ù>£?çp+@®¹£?ÛÚ(@rŒ¤?4 (@4¤?÷\,@Ô¤?öp+@×¥?x+@EQ¦?—-@ã¦?ÙX+@ϧ?(û/@è§?Û¼2@˧?:9@üF©?Œm:@Ç©ª?î;@fС?ñI8@q ¢? 4@/Р?C±,@!A ?K&@¦4 ?vä%@‡ ¡?kC(@@¡?‡D,@ÃØ¡?¾ã'@.û¡?…&@&¢?K'@òÒ¢?U×'@ì£?|{'@÷ ¤?õ¿)@ót£?UÅ+@,Ÿ¤?/ý*@ I¦?«-@s¦?Ìw+@^8¦?²X0@P³¥?Ÿ04@îJ¦?(@7@!¨?Qï:@gª?~¨:@±¡?é_8@¡?æ‰2@¦M ?tÆ+@`ÒŸ?CÇ%@E ?ïÉ$@¹¡?}H)@ã¢?Gn&@–°¡?$@…¡?›|#@12¡?ßË$@ëH¢?7­%@Q¢?ó,)@ž(£?¥¿+@É€¤?Õ§*@ÄA¥?‘},@ ]¥?Z“.@c|¥?Q|/@õD¥? Â3@5E¥?“T5@BÓ¦?ìT5@½Á¨?BV6@&¡?Ä9@žf¡?”Ì1@¡?0@›µ ?†Á'@¡?U–$@S¢?™é$@ˆ_¢?ú1#@С?ñ"@Õò ?ø"@ G¡?F#@ýq¢?w'@Âý¢?íÆ)@T±£?"û+@œ(¤??*@pd¤?s+@¤?Ø,@åW¤?À=/@rѤ?º&5@®»¥?܃5@r_§?Ú[2@RС?ÉÇ;@-Z¢?Èß4@¯¡?;N0@{õ ?Ü)@M¡?—z%@⎡?¯#@^¢? ä"@k¢?±"@Ô¤¡?áW#@¡?ÒN&@§¢?ÏÏ#@E¢?y6$@Bò¡?®%@‚d¢?а&@V¢?­V(@FŽ£?‡Þ+@uR¢?üº*@#Ó¢?Ÿö+@7ƒ£?·ì)@,£?(,@Õ¤?Ñv*@¹Š¤?%¢+@)¢¤?«-@šÍ ?»:@yF ?G8@Ò‡ ?ï•.@€¾ ?¢#)@®¡?fä'@ŒV¢?ž %@•°¢?>['@ å¡?Æä)@«¡?+@r ¡?uÉ,@dû¡?Up+@Åš¡?<í*@`¢?•ú*@%B¢?s¨,@A¢?s*@‰Ë¢?ä}+@ºP£?e_+@/a ? ½9@裠?äJ7@ºê ?$q2@ ?0j+@¤ ?ÑS(@J ¡?à{&@ûÇ¡?ZÅ)@FA¡?Sp)@$í ?r+@SK ?µ»,@ò, ?KB-@& ?\Ž-@,¡?k8,@-é ?âï)@X¡?“+@ËΡ?k-@ÿD ?qÒ:@ˆÕ ?¡£7@³U¡?E‹3@¨¡?Ùè/@ ?ë,@Ο?à+@ÓŸ?‹ï*@[òŸ?Ù)@Sn ?7h,@^ ?êT1@+Ÿ?¢Í,@Ÿ?ŽÐ,@ã ?¾+@_M ?íD,@¢_ ?ëf-@ØÎŸ?ž>@a ?4o=@òî ?x‘:@x] ?¤x8@¤¢Ÿ?Íh4@ WŸ?h2@Ÿ=Ÿ?÷0@s Ÿ?/»0@¼Äž?S.5@ÆÍ?ªä1@ŸŽž?¦ê-@°wŸ?p),@§¸Ÿ?-ÿ.@#¨ ?ÞO0@êŸ?kP?@c‡ ?°œB@e® ? B@y ?Zñ?@ƒa ?¯—?@hÿŸ?Q’?@üן?³ƒ@@8AŸ?Ïü<@ˆVŸ?ˆG;@š]Ÿ?4ý6@g ?Íp2@«8 ?Åç1@L¡?ü2@çå ?±ð?@öt ?CB@g ?ÉWH@6Ä ?k~D@%ö ?àHD@kÞ ?[¿F@#Y ?Ü=H@`´ ?¼/C@µ?¡?Ñ@?@œÇ ?,m>@mg¡?(ß9@ø¢?§8@Ba¡?C•A@¡?ÆÌA@¼¯ ?š@ÈŸ?"›;@û ?¶4E@T  ?3–F@†Ÿ?Þ|F@YuŸ?‘A@D›Ÿ?]"@@Ÿ?Ì«@@ Ÿ?T?@}DŸ?}¿=@œVŸ?@Ò>@«Òž?Â@@¬Ýž?’Ì=@wJŸ?š??@ÀŸ?Hâ<@ññž?õ‡:@€cŸ?¾9@N¬ž?‚Ä8@GCž?Dt9@:˜ž?Uö:@s…ž?kß:@:Ξ?Ëþ6@\*Ÿ?W]8@úØž?°x5@2à?H²3@ÿ Ÿ?êˆ4@”‘Ÿ?´¨4@xoŸ?Mv3@,Ÿ?U•4@΀ž?Ó›/@7&Ÿ?,ã1@ ÑŸ?ï 2@˜ÚŸ?¤4@$Ÿ?ëQ3@ gŸ?ù²1@þ` ?uQ5@­éŸ?ÇÕ6@èÙŸ?ƒô5@ÿ±?Nð@@¢G°?Ñ=@Þ¯?™9@@ê¯?$C7@‡Y°?6Á4@–¨°?Bì3@œF±?w4@æÝ°?ž£7@‘ö°?K <@âT±?ñ A@ e±?¥!F@ø<±?”ˆF@?s±?;E@ï³?väB@vÞ³?3µA@û´?ÍA@@Ú´?ªFA@P³µ?ˆÏ@@5+¶?s ?@å¶?<$=@å‹¶?pg<@Z¥µ?1š:@i[´?Y_9@ ?³?p5@|±?=«.@·I°?£î(@}u®?é&(@Ю?‘º'@Œ0­?2å(@»_¬?±‰*@Ù@«??Ñ+@ßò©?+@¼o¨?¢Z'@»h§?ü"@T¦? @,–¦?=#@yߥ?ƒ*@,¡¥?Ó.@¦?Æ1@;ò¦?òŽ3@²Ù¦?•5@:ݦ?ö39@hü§?W9@€C¨?Ç:@eà§?f—=@·8¨?8 ?@åk©?ë!>@жª?âD@–±ª?dK@V.«? öH@4{­?ë±C@aÀ­?½nD@5¸­??K@Ü®?A8T@D±?ÍÙR@s'´?{P@g¢?žò5@:¡?dd5@øEž?æþ6@Ñ?‡V4@1•?ÖF5@~ƒ?©m4@êïœ?q^6@îœ?.Ò<@SŒœ?o}?@"?#äA@ø?0A@»’œ?QKC@E œ?” C@J<œ?ÍÐA@$ïœ?ì÷@@rFž?íÓA@G  ?>ë=@\ ?H<@Q0 ?eë7@›Ÿ?2ˆ.@R.ž?„/%@¯>ž?9@@~¯Ÿ?9;@eû ?|@C¢?³J@c€£?Î@~¤?êÎ @û¦?,¡$@I§?5}%@´*©?‰($@äÕª?“ @>†«?aˆ@%ɬ?i@Óï­?ò4!@®o®?æb!@ð®?çá%@Øã®?ë(-@}İ?½0@Œ³?Êß/@D³µ?+ä/@­·?03@‡ò·?ø46@¢´¸?N3@ϸ?ä2@÷Þ·?+©2@=+·?_Õ/@\è¶?¡-@u·?Ðó,@ue·?Z…-@ ·?eã.@m·?ò/@†·?.D1@¾¹·?Ðî3@Cš·?`…;@SR¶?ÞH@¡¢?æ5@¾£ ?ш9@½Ÿ?Ö69@¨Ú?é9@×?œp7@jÞœ?q8@?%”<@>`?6.>@Ïôœ?öÉ?@“¥œ?ç:C@|¥œ?TPB@÷ƒœ?ë™A@eÍ›?8 A@œ?–á>@Ÿ†?#®=@[WŸ?Éþ>@0þŸ?ù×;@ÏZ ?¦9@€AŸ?(2@×È?²T*@Ð?ø6%@†Ež?¼@=VŸ?[@¼¡?}@Ê/£?@gX¥?§A"@Q"¦?{¿&@Ƨ?¦_(@u1©?aX%@ü[ª?·š"@J±ª?^#@4Ы?Ö¤$@Ws­?ïm'@7®?kî(@ZŠ®?@ï+@ps¯?(0@„±?ø1@€³?+92@àÞ´?ž¥4@ ƒµ?ŸS8@mK¶?ÌR5@ݨ¶?&V3@>³¶?Î*6@B¶?N;@§‡µ?7ç>@3¶?¶÷=@!T¶?½C=@Ƴ¶?H¸<@Î~¶?&W=@YÞ¶?BV=@!S·?Úê>@td·?dB@™a·?h H@✴?¸hR@UÀ¢?¡Á4@&¡?@ÿ8@Ÿ?‘9@óš?äá8@â³?';@¡œ?žÅ8@:I?ñt=@è·œ?û*@@¥Û›?ÃZB@r8œ?Ü7D@m¤œ?G E@Bל?ëC@ïD?Ú‘@@äw?nR>@:ž?ü<@[LŸ?p×9@„Ÿ? Ô8@Ÿ[Ÿ? "8@ʦž?›­1@ñèœ?f(*@$^?lr"@¬æž?.µ@'Ž ?b5@´¢?Æ@Jþ£?ÕJ%@á¥?dz'@Û§?Œø'@6ê¨?ÖO%@zBª?Y½$@‘3«?Ýt'@XO«?a2+@2M¬?÷Ä,@ã3­?P\1@žñ­?J44@Nf¯?E3@Mô°?"†3@䯲?-5@ý»´?ªÿ6@_´?€A;@åÁ´?÷78@ƒ#µ?:66@<´?ª—:@ŠR³?âî@@‚Ú²?²pE@dz?iE@W´?jD@ø³?(E@j9´?ðD@g?µ?‘ìC@ÇÖµ?•§D@º¶?÷¹G@šµ?>ÊM@Qu±?xUU@œR¢?¼)5@¤r¡?Æ;@ø, ?Ì<@ýºž?ì¤;@oQž?“:@•ž?¹Z:@ ?ø$=@mœ?¶v@@ô.œ?sA@P›œ?‚Š=@aÜ?#×=@éÀ?Îc@@6ž?ÊeB@+“ž?ç>@XО?Xa;@d9Ÿ?Án7@wŸ?®;6@€Äž?“F4@£Í?íN.@Ò~?4('@ZPŸ?Oµ!@¥- ? H!@#¡?¢m$@ £?kÔ&@¥?¶Î(@ˆè¥?Ci'@‹Š§?¥Ø&@i©?f'@¡Á©?‘à,@q2ª?%¦1@Bbª?HÁ3@ñ³«?h7@ób­?f8@> °?Ò3@ä°?ÖŸ2@ÿá±?"^2@ ‰²?µD7@ E³?”37@aµ³?h^7@9è²?ð\;@êA±?V4A@6]°?wJD@$±?U”H@§E±?2]J@»”±?8˜I@Õ¬²?øÿH@ w³?ÔH@U®´?ÿVE@ïµ?³C@Lª´?vÍD@Sʱ?pyO@<:¯?+—Q@õà¡?]21@±€¡?¯<5@Ãè ?§z:@2ÕŸ?%(9@µ½Ÿ?ûÉ9@‹™ž?ä´9@E4?=E=@2¡œ?g˜=@±qœ?9@ ”œ?«_6@Dœ?ñ:@vU?¨ýA@“ ž?žÔC@gÕ?­ª?@<?šÒ;@Z/?0<6@:ä?îÞ1@¡±?K0@â?E*@IŸ?e#@~üŸ?ûF"@Æw¡?j@#@|Ü¢?„™%@Œ£?Rb(@«¤?.+@î¦?N7*@Ÿó§?*<+@/ ¨?‘y0@Qh¨?<4@m³©?O<5@Óï«?.e6@£9­?p8@Ç®?Ó˜5@!3°?“i2@Ž“°?D‹2@Âä°?d'5@ðæ±?Õ6@U ±?s·;@lد?‘EA@^û®?ë±D@ú¥¯?ï)F@;°?ÚýG@iá°?ÇÓI@:°±?z`M@oȱ?ÛÿK@*ö±?jI@IC³?çC@Ñ.´?e‘=@Ç=²?N3C@xÿ¯?õH@?’®?6ÄH@3¡?_,@’Š ?…;/@Ñ ?n1@í; ?î`3@eÿ ?˜ù4@à  ?M9@]×?ª¾<@Áœ?•æ:@I¤œ?b 8@úŽœ?ª¡5@Ø›?ñð6@1Žœ?îê:@ù??Ð;@ô-?×+<@í ?ž>:@‚?$[6@ˆ#ž?LÄ3@´ó?÷æ/@Iêž?q|*@‡ ?ˆ+(@ B¡?¿%@è¢?c;&@Tâ?­õ&@T£?l;(@œ­¤?«+@Æ÷¥?ã<,@7¤¦?+É.@Mû¦?NÓ0@i(¨?Z/@¼#ª?àÚ1@ƒ€¬?Ù%5@yÈ­?Àü2@½¬®?c\6@>)¯?cP7@1ޝ?Ë:@ï °?Gh?@z¯?>@¿®?pôA@3ή?ÂD@·˜¯?¼]F@ƒ|¯?d|H@Lk¯?8©K@ ±¯?i…M@T‹¯?&ìK@_§¯?« G@H ±?QŽ=@—²?4I<@0̯?8ŠA@u¯?ÒLB@Ý®?„yC@º ?‚'@´ ?ž(@e ?.9*@·¡?´-@¤~ ?Ý1@ÚÞ?’9@1g?:;@ù{?µZ8@vÔ?‘£4@‚œ?]¿2@œ›?]÷2@ª÷›?7Ë3@ïèœ?H£8@J‡?z”<@ÿj?Zò;@t^ž?qê:@•2Ÿ?@¦8@èž?‘¿6@RC ?â/@†= ?ìæ)@ëc¡?P'@f2¢?¸þ%@Gñ¡?g&@Kƒ£?˜+'@òW¤?Ä|+@ð£?àã.@t¥?vâ-@Áö¦?bP*@²ô¨?×-@ïê?Éž3@Í«?™Û4@…Ÿ¬?Ù8@·­? ;@6h®?û?@•ø­?`?>@À„­?¦Ø=@Û­?õË;@/€®?Tï>@¯?ÃB@eƒ¯?åxF@1G¯?+I@µ-¯? XJ@ö¯?ùÔD@I¯? O;@º÷°?¿•8@*J¯?Ó;@#·®?¾Q=@)û®?G?@È­?f¶E@§g¡?€!@¼ÿ ?ÿ…#@¢¿Ÿ?Ä]%@m€ ?•,@¤ ? ˆ/@Ûž? 5@‡†ž? 6@ÜSž?”6@¼ž?)«1@éöœ?&™1@m:œ?‰2@ ‘œ?t3@1æœ?–Ú7@fG?óŠ:@öÉ?e°;@ ÿž?Ó<@V©ž?½°9@ïKŸ?R6@É)Ÿ??”/@œs ?‘N-@°Î ?‡î+@Éf¡?Ÿ*@¢?” (@®œ¢?È¢*@@£?_®+@ç/¥?‘š'@aÝ¥?JÊ$@x½¦?\Z+@%»¨?Œ1@ ¢ª?ã4@•ä«?‰8@“2­?»Ë;@°­?‹ð?@´ÿ¬?_Ô;@¿ì¬?Œã8@­ã­?-09@òÒ®?É4=@bˆ¯?’@@J®?G_A@á~­?ÌA@–‡­?ÞR>@1r®?\D8@dn°?,3@& °?¢°4@Q¯?|y9@æ ®?>@Tb­?¨\B@¾»«?=&I@T'¢?f¾!@‹Ô ?©L#@C˜ ?³ð%@ìR ?@Á*Ÿ?.?<@ÌŸ?T8@:Ÿ?Wý7@ž  ?öÂ7@ÒÙ ?Öi4@‚ ¡?¼#3@S(¢?^ª/@M0£?±Ö,@b$¤?*ù)@S@¥?°z'@UÀ¦?Š%+@.¨?t/@àmª?Õ€1@.N«?zØ5@ì:¬?ô@:@ýD¬?œ|9@Ë¡«? 8@…f­?¥y8@¶ð®?Â÷:@tT¯?M.=@y—®?Q =@KQ­? t?@;E­?+ë;@$­?[¨8@Wl¯?Þ»5@C0°?:5@‡u¯?Wý8@½Û®?O><@f×­?ªb?@®S¬?ûF@üâª?æìH@27¢?·#@(W£?X²"@_¬¡?bG$@¬C ?œ>'@½äŸ?ï°(@uR ?j¥+@6* ?Bw-@  ?¬-@›øŸ?AC-@°³Ÿ?#²,@i Ÿ?8F1@´]ž?é3@'ž?žÓ7@¯?D\;@»ež?°P?@,‡ž?,ºA@¸Ÿ?1w?@äŸ?Ï[@@,‰Ÿ?Ç"C@­»Ÿ?9A@ü ?è ;@¡?Cÿ5@6c¢?s$/@¤€£?Ø|*@ý­¤?Ä×'@Bð¥? '@µŽ§?Ÿ)@—û¨?ö*,@9?ª?ô»3@Ïœ«?Ò~6@TU¬?žð5@‰¼¬?5z6@®?N¨8@óí®?™;@¬÷®?*˜9@æ­?Öº;@瓬?VÛ<@ðo¬?6Ò9@±X­?²‘9@“³¯?ÑT7@ƈ¯?¢’5@@S¯?¨¢:@¤k®?‚j>@EZ¬?·4D@áøª?äH@+ª?ìD@¢?¬7"@e¢?Ò;"@Mä ?ÞÌ'@Ô[ ?î\(@[ ?àŠ&@ú ?³Ð#@ 8 ?kÈ#@×S ?ù–'@L ?@å$ž?¿7@@ &ž?u¿>@Ssž?¤#=@”Ÿ?™ø?@ÕYŸ?kþC@ÏÅŸ?N-F@h] ?4C@^ˆ¡?”<@‹<¢?Ä4@2¢?1@ߌ£?„',@á¤?£Ð*@a„§? +@d.©?³º,@O{ª?ƒÁ/@Ϭ?Dí1@@ªÔž?xæA@Wž?‰éC@m¸Ÿ?xF@²¡?4F@•S¢?b C@fþ¡?IË?@×–¢?¬L:@}£?ÂÀ5@\?¥?1@FU§?Ë40@kI¨?S¹.@¹ä©?x@-@ɸª?òÖ+@×)«?z0@¼r«?92@ Ϭ?Ë5@m¬?ߥ6@Äðª?6@|«?¿I:@cʪ?†™<@2O«?œ:@Í{¬?Ó9@­?ô5@.9­?8@©Õ¬?Ÿ?@ ,«?˜´F@‰©?9NJ@Ë.¨?¢8G@¨?ãP@@’ø¢?ãœ'@ñ£?¾%@qÆ¡?„$@ü©¡?àÀ"@Ʊ¢?¼Â"@S¢?U#@Õð ? %@„Ø ?þ*@ÔÕ ?±-@bÛ ?Î@2@\Ë ?/7@’µ¡?û‘;@1<¡?.Ú<@j+ ?+ü=@9 Ÿ?k:A@L¯ž?P˜D@ ; ?4éA@nk¡?Ë…@@M{¢?^B@þP£?ŸþB@¬R£?DW>@gˆ¤?9‘8@ôߥ?Y×6@Sߦ?zL4@KR§?ä,2@`ލ?¬â-@d«©?ë-@vª?_™/@h(ª?/Ë3@0ͪ?(Ä6@HŒ©?+6@Z©?½5@…¢©??ï7@œŒ©?+T:@Ckª?Äö7@M/«?Ý'9@?«?f@9@È—ª?äz>@Xvª?õD@”F©?Ç”I@[s¨?_tI@ ¨?A«B@³+¨? ¢<@RJ¤?£p&@´.£?é|&@;´¢? Š#@¨Â¢?n!@mË¢?Ô{!@¼¢?†‡#@›;¢?Ÿ'@@„¢?ø)@¢¢?-@v`¡?eÂ2@Ñu¡?„ž8@ù ?x/;@@ ?^ü;@ n ?i!>@a‰Ÿ?¤>@½{ ?4‹:@7I¡?#:@q±¡?ƒ=@rè¢?° =@̯£?º¨8@¶‡¤?cQ8@ïŤ?ì6@í¥?á²5@ªZ¦?.t4@ÊÕ¦?æÐ2@`î¨?Kñ/@¿©?]*0@Îã©?Ýž4@o}©?íY4@ž}¨?ÞU2@}¦§?Ÿ1@à­§?Ý¡5@Ëë§?”C8@†¡¨?ÇÉ6@/t¨?Î39@BȨ?C >@Š1©? D@þ`¨?ÔsI@Fš§?¾H@ýZ§?,E@Ѧ?¼Ô>@ï§?Þ';@G'¦?E“&@ß8¤?©&@ÛJ£?L™!@êË¢?"!@Fl¢?b²$@A£?g)@‰*£?µþ)@•¢?¯+@Ír¡? .@üß ?oÿ2@ÿÜ ?Tß4@¡Ô ?º÷8@¸Ò ?Ï9@$ï ?%6@¥Š ?—÷3@±(¡?*43@®|¡?9u5@áW¡?„b6@°ÿ ?8È7@¢?»?6@C¨¢?Û 4@a«£?4@¶Í¤?@]3@¼á¥?˜25@cT§?Ûa3@3R¨?´á1@TN¨?º0@苨?¬2@Æñ§?Ö -@;§?ò.@ݦ?”Á3@'¦?‡8@度?Э8@ð§?ný:@¨ó§?æ@@n¤§?ëœH@“¦?†!K@4ö¥?+êF@°±¥?i?@ÿ†¥?E:@|¦?.S8@K¥?%ç'@ƒm¤?Ѳ"@6d¤?Âh$@Ý£?íD)@{ɤ?°K)@TA¤?rT,@xB£?ø6*@0µ¡?D#+@½ä ?†¾-@Qý ?ëq0@"¡?¢¨2@¦Ä ?b\3@Úê¡?U 3@6…¡?v0@ _¢?ûv0@™å ?jÍ3@ì¡?‘é3@Ù ?ôn6@gË¡?ö³3@il¢?Ó2@¯¿¢?(¡1@£Ž£?ïp2@)á¤?N3@ãg¦?V5@J§?’6@¯F§?(2@—±§?’h1@it¦?²¯+@‡ ¦?½-@¯¡¥?w2@¥?*#9@nå¥?Q´;@:{¦?•`>@'¥¦?èDH@Òj¦?cK@#¥?" H@?Ѥ?Q„>@¨T¤?¸7@oF¤?¤f3@1©¥?Û 2@îk¥?‘½$@°G¥?ê&@c¥?ý`*@Ј¤?xT-@ç¤?N(,@Žê¢?„+@GN¡?Õ‘*@¡?Rƒ+@Hˆ¡?†«-@f¡?Þø/@°¢?Ím1@H˜¡?ß2@zС?õ‹/@Q¢?øe1@òË¡?há2@ïß¡?Ã?1@4¢?¨q2@ A¢?Y5@IÕ¢?ª>7@^£?ô˜5@…©£? 24@à4¤?¹44@1W¥?ˆþ4@dÒ¥?è*5@é¥?îï3@@¥?*2@a"¥?Ô}-@ص¤?:b/@ÿº¤?45@˜~¤?è9<@>´¤?Z)?@ÛU¥?á?C@–ë¥?DvI@s¥?ŸeG@Ä™¤?ÖÌ=@-¤?à­6@ãÍ£?a—1@÷¡¤?Å¢/@¥ ¦?ö0@¯à¥?fx(@¼G¥?æ<*@†¥?ƒÑ)@Eÿ¤?¸å*@FU£?±¬)@¥¨¢?Ôe*@NZ¢?ÎË*@Ÿ¯¢?U.-@†¢?ß÷1@“†¢?¾C2@]É¢?Zû/@܇¢?Ô“/@¸9¢?à“0@A£?"2@,£?Š2@éè¢?ßµ2@ú²¢?=ê6@Ò@£?×z8@[™£?„7@Ó&£?Ñ 5@ªÎ£?Õ3@Nl£?®4@CÀ£?:Ð5@ôþ£?±¾5@·0£?«2@m£?È0@ߤ?MJ3@Ž#¤?Ã~6@çì£?Ug;@Á£?WaA@R¤£?8XE@I›¤?ÿZD@¼Ž¤?Uâ=@Nè£?H6@ʘ£?ð™1@‰Î£?ºÉ.@ܤ?K/@Þö¥?ø†0@†£¥?¶G,@P%¥?]¶+@ý¥?_ÿ,@Q÷£?•+@ué£?ÄG-@ð¬£?ð/@³ £?Ö².@ø,£?n/@`£?òO1@…£?;j.@?÷¢?ds,@õV£?5--@Zt£?Ÿ§/@ô£?#º3@Lޤ?Ë 7@øŒ¤?Xp<@ñ$¤? :@"Ì¢?^´5@^ˆ¢?Þ3@M¢?Xð4@éñ¡?í 6@Ø¢?Þ6@«]¢?‚F8@í¢?k¥7@*¢?3@LÏ¢?34@3£?ŠË7@:ߢ?¢=@n΢?„HC@Ý¢?î§E@±z£?Ãy?@!>¤?«8@Fä£?œò1@W/¤?ßÖ-@Õ¤?4t,@'"¦?÷„,@~¦?çü-@ôz¥?¯,@VÕ¥?lþ,@Á4¥?¸,@7 ¤?ªŽ,@_g¤? v/@Q»£?{m0@T8¤?ê˜/@‚'¥?Ÿq.@à~¥?¿a*@޳¤?„È-@øB¥?×9.@¶¬¤?©Õ.@ŒÙ£?¾G1@SË£?¦K7@„¤?øP;@£?¡§7@Ïø¢?–5@÷£?‡d3@ᣢ?*t5@裡?‹7@Qˆ¡?~Ö8@ñ•¡?Fš:@µÄ¡?J{9@²¡?&—5@Í9¢?.Æ6@£?·:@K°¢?Ùu@@2‰¢?'F@¦ £?Ã&G@§¤?…=@†¤?1Ó5@§Ã¤?ì0@ÂB¥?¥þ)@€“¥?Ü,'@‘!¦?Ó¼(@ïG¦?¸)@ãy¦?¬î)@(¦?n³*@¥ƒ¥?.@.¥?Z31@ÄÁ¤?e1@œ¤?xo/@ƒo¦?,i0@jÙ¦?çN.@ì-¦?ÙŒ/@-¦?Ý(/@Xó¤?”.@]]¤?-0@­¤?šv7@þÙ¤?¿•6@»¤?_ 4@"¤?Ê+3@³È£? 3@èÜ£?ÑÓ4@Åâ?D6@똡?8O7@íq¡?åP5@¼¡?s%4@úà¡?úA5@˜¢?=á7@Т?¡¿;@c£?S`B@ã“£?2ÝH@ú£?¥G@Øh¤?\ >@¢¥?RU6@la¦?%.@þ²¦?GH%@aá¥?®x"@E ¦?lÍ!@Ц?P!@Fצ?.R'@‹¦?ûÌ*@ܰ¦?m«/@£¦¦?‘É0@Ã¥?Šd/@]*¦?n/@\Ǧ?÷Ú0@‘Ǧ?Û1@Åù¦?°42@›´¥?SF2@;¤?ü63@Ÿ¤?0y6@Ò”¤?D†6@¡à£?q2@‡-£?e®1@D©£?·Ô.@“u£?Ox0@oú¢?‰3@¢?¦E5@Yé¡?ÑÂ3@ŒÛ¡?¾|0@­Ã¡? ƒ4@Ò»¢?+\9@ÈD£?ý>@’Ú£?‚¯B@꟤?·ÒE@E¥?«ðF@-7¥?¾Ö?@l?¦?sI6@OÖ§?¾-@ÖD¨?„I#@‰V§?zü@,{¦?¶â@¢r¦?½¢@Ý¡¦?¾¼&@ë;¦?Þƒ'@Ŧ?ï1)@E¦?nè(@÷~§?&|*@ ÿ¦?/×.@OE§?Þ>/@Á5§?ªž/@Q¦?;‘0@õI¥?…ä0@¸¤?ž»2@°¤?ĉ3@î—£?!/@7£?pî,@ë?¢?ú–*@›¤¢?uV-@Ó­£?(0@hH£?4H4@Dü¢?«'3@ˆÿ¢?´›4@ÓÉ£?œ7@¥c¤?õL<@Òp¤?SC@ËΤ?4NA@µb¦?b @@ ²¥?A@ô¥?‘M>@ÆQ¦?Â6@,!¨?vX-@Ô©?µ#@Í8©?¿ö@—ŧ?Î@K§?jt@ng¦?}â"@% ¦?<$@í,¦?jù#@ù³§?=Ž!@øÏ¨?M+%@gô§?ëk(@I!¨?Q,@z'¨?Ðx-@’õ¦?¾‰/@.‡¦?m©0@t7¥?u].@Ñ>¤?±7(@££?Õü'@w£?¿´'@ØÓ£? B*@ìü¤?…-@,¥?™0@„{¥?·"3@ì±¥?‡Ò6@´Ó¥?ÒJ9@]ö¦?J@<@&§?~ß?@D~¦?ZÚ:@'@õX°?ñ @T"°?e@jh®?Ìè$@Y¾«?8-@«?¼@_1ª?ö@r ª?:@ ª?_f@õ ©?/q@ûz©?ü@^©?vX@}©?@ª?º@†¸ª?ùù @4)­?· @ò ­?st@O—¯?d$@,÷°?ˆ‹@9²?æF@©³?Ùˆ@ž9µ?Üñ@ä¶?ç@üú·?hf@Ù¸?>Ý@`;»?{ @®E¸?â&@¤qµ?é‹!@,|³?É›$@Н?ï(@f°?[ @{À®?«u!@ù¬?D1@fq«?È„@Àâª?â@`V«?„@Ú¸ª?¿$@v+ª?h/@Ýi«?\~@bÒ¬?ˆ€@⾬?)ã@è!­?†¾@Úݯ?¢@tA°?VÍ@¦i±?±@ƒÎ³?Y\@âk¶?N@Ǻ?³@‚¡¹?ç8@1õ»?ã@(Õº?;@§Ãº? @¿?»?£Ü @ú§¸?º—@šO²?˜h@®n¯?Cj@QN­?çî@š®?ï>@%G®?šÛ@õ€®?°@Õ<®?cé@ùÄ­?)@sH­?]C@ªý­?bÇ@.Í®?œv@€·°?Nu@Ú°?™Ç@Hͯ?Ù#@ƒ¬°? }@à*³?.Ž@ú’µ?TÝ@ã´·?¾2@"î¹?\n @ÐÑ»?¦g @ ãº?´g@¸—»?¤N@Iº?:@ѹ?iœ@> ·?š¯@ %´?Su@ ó¬?Ñ’ @t0«?Ñ@cÀ¬?ߤ@ê®?K@1Ú®?L«@5²?èö@ŽU³?@t@+1³?´*@¡²?Ä@ž´?µï@ŸH´?M@ž³?¸@R?³?ÃÊ@vs´?5÷@ž·?*˜@$¿¸?Ñ@À7º?·@[Ùº?¸üü?)U»?ÞZú?‡è·?®òô?°Æº?D+÷?e©º?bæþ?R—¹?²´þ?ñ‚´?|Üù?Ô¡°?£@;®?7£@vu¬?m @ÿ¿­? @&î¯?u@€*°?¯j@Ôy¸?ÎK@9¸? `@w ¸?wÍ@(Ú·? ‡@A¸?!n@EÞ¶?¿@_Ó·?‘˜@,¾¹?ÐN@Vu»?í^@쮹?Uv÷?øB·?^#ì?yóµ?8õé?— ¹?ê?_r»?˜¬ë??,»?œÎî?¬‚º?!ö?¨6¹?j‹ý? ï´?âÅú?>²?ë3û?2a±?)´ú?б?}{@v°?­ÿ @Þ±?ħ@Ù!²?· "@E)º?Èx@Šº?¯Ñ@§Ý»?{:@ò1¼?‘w@° »?‹x @sI¼?ŽÑ@[é¼?úa@²º?ÝÝô?#¸?)4â?,´?a½Ù?}u´?z$Ö?瀺?¶«Ý?.½?]æ?t´¼?’ßì?Çö»?à»ò?¨¢¹?4!û?èÛ¸?UHü?¿¶?ó?õ?ÿµ?ŸÒõ?<]µ?9 @lÛ³?ÏÀ@€Å³?„@]ѳ?¿'@W{»?WÁ @Žž»?‘Ë@2½?ý»@?m¼?Ðùü?•»?«Bñ?u¨º?99ð?F!¸?Y+å?š„µ?Y’Ó??F(Ò?η?ìÙÎ?gÀº?z×?`_½?µåå?Œõ¿?xqì?@Á¾?Ôï?J(½?‘ù?Öƒ»?!Àü?`¹?Û‹÷?¹t¸?Døû?^ù·?@ @^0·?’·@· ¶?5#@^U¶? @,@¨t¹?Ê7þ?ø>¹?.Ï÷?uZº?„Ïê?}A·?¢Þ?/]¶?¯Ú?N±¶?T×?M¶?cÿÐ?¾ã¶?NÐ?ø:¸?ÌÐ?%м?|ªÜ?:¿?¥*æ?*Á?¯ò?–„Á?÷ó?å4¾?C_ù?˜\»?Cü?4º? qþ?|c¹?'Ÿ@µ·¹?–@¾ç¹?' @e(¸?âà(@Õï·?´P1@rз?Ää?]A·?qÛ?ÆH¹?UòÐ?é\º?uÐ?KË·?™Ñ?Å·?œ˜Ñ?®'¹? ÝÑ?ê@¾?ôÀÖ?ª¿?ã?š0¿?: é?|VÃ?–òõ?½ÆÂ?d‘ö??ï¾?˜þ?^1¼?„}þ?íR¹?¡B@bâ¸?Þ@§©º?ø}@ŸŽ»?py"@ÆÌº?“z,@‡f¹?þÔ4@´]µ?×»Ð? ±¸?ÃyÍ?£h»?õîË?Fw»?UÎ?ýè¸?~Ï?&½»?}•Ó?0Â?” Þ?cºÂ?¯±æ?ù«Á?¬ï?ÒnÄ?qÜø?VØÃ?`ú?‘.À?ñpý?硼?o‘@ ¿º?çè@Øtº?µ¾@ úº?ÁA@c »?Uf%@Ô»»?Æ´-@Ä)º?0ü4@¹É¸?”JÌ?NÞ¼?RÿÏ?ÏR¼?€Ó?|,¼?­ÙÖ?a~¼?ëøÚ?ˆÂ?x è?ïÃ?…·ð?ùÅ?‘ßø?%ÒÅ?ü˜ø?–Ä?JÃù?@Á?µý?^œ½?MÔ@.ù»?p @*~¼?éU@M…¼? ‘!@_Ƽ?‘‡(@kÖ»?D£/@DĹ?]ý5@O$½?ñùÏ?—œ»?ÅNÛ?‰½?2lÝ?óÙ¾?xÏÝ?!Å?¯‹ê?'5Æ?åõ?à Ç?×$û?Å?8ù?:ãÄ?82÷?ôßÀ?øÿ?T.¿?÷‚ @Ås¾?M@§í¿?q`@“¤¿?ÑL'@¿?zà,@`r½?r;/@Âã¹?¸27@祽?IÖ×?/Ú¾?òÊà?×ÐÀ?¿Ãæ?™YÇ?µÃì?š­Ç? ^ú?} Å?ÃTþ?KSÄ?‹µù?DwÃ?AŸö?ÍòÁ?ðM@ÃvÁ?1 @FµÁ?[—@Ã?~ï$@º„Â?%ô+@F¹À?û0@'J¾?Xº2@Uº?ÑÕ8@÷BÁ?*å?æIÃ?^pí?ú È?~nô?+ Ç?£|ù?ÐUÅ?%ú?ßfÃ?ÎÄ÷?ËÂ? Åý?Ø)Ä?Ó¾@OŠÃ?h@uÄ?h @vzÅ?ªã)@ƒ„Ä?.¢1@V7Â?‡³5@p¿? µ7@ˆ º?01;@¦PÄ?ž•ë?m1Ç?,nö?j¸Å?Ìö?¦òÂ?;Üö?¦ßÂ?§þ?Ã?DY@yeÅ?q§ @÷ÖÆ?k¨@8Ç?Hð"@YpÇ?×+@Ý Ç?x¤6@¤tÄ?à;@=À?†9@Žhº?tî<@d]Ä?§ùó?u‘Ã??•ô?ŸŒÁ?U©ú? (Â?Œº@ø¦Ã?;• @†Æ?1@ ÞÈ?F§@ÅÊ?5^'@·äÉ?,œ,@gPÉ?´8@óÅ?‰æ<@YÀ?Ô¥<@U¹?Úð>@Ü Ã?‹Œ÷?lÁ?'@ðXÁ?ÙQ @6‡Ä?ÒŠ@8Ç? @’ÞÊ?ð5%@À>Ì?|+@‰ÍÌ?’/@°VË?9P7@-ÒÆ?åf>@Ï#À?<Å>@H‹¸?,E@@ssÁ?Éß@LGÂ?`)@U¿Å?= @Ú.É?I“)@Ì?ü+@ÔÙÍ? 0@(ÃÎ?É*3@S Í?’6@á4Ç?áÛ<@í¿?ØÈ?@Âü·?Ì•@@ø¬Ã?Ö@Ç??*@‹áÊ?›2@â·Ì?S§4@ÁÏ?&4@ëéÎ?wz7@—[Í?ºÌ8@G¸Æ?/<@w¿?) ?@Iö·?áÑ@@ÞNÈ?2§,@À×Ë?ØF5@€Î?-ë7@šxÏ?U8:@“ãÎ?ìÀ9@žÛÌ?„Y;@ï‘Æ?ø™=@;U¿?±o>@a ¸?C=@£ùË?g>4@G™Ï?Ž"9@òQÐ?¯=@ØÙÎ?à)=@&ìË?YÇ;@U=Æ?Õr;@ÁÛ¾?˜à:@ î·?¤:@UÑ? !9@ÖœÑ?sb>@§€Ï?Õª?@‘‘Ë?&>@°3Å?´ä;@¥¿?9(8@dÈ·?.8@`Ò?Ô@@$‘Ï?aAA@PËÊ?¾ö@@@RÅ?øç:@ŽP¿?l"6@‹/·?áJ5@ÖÜÎ?©ÀA@&ÕÉ?’ƒ=@Q–Ä?è˜:@æÞ½?ZF8@2b·?Dú5@cNÈ?x=@çNÂ?FM8@s’¼?½_9@œê¶?E÷7@–ÉÁ?·"4@`ð»?ù6@.¶?b7@I»?«w4@*¶?¨Ú7@àܵ?ÂÅ8@oï­?šðI@ʱª?Æ¢M@/§ª?uƒP@ `©?@1I@ÉL¨?‹=@f¨?ûµ0@»G©?!J*@‡b©?Ú*@#’©?±,@fª?ŽÕ-@+Zª?BÚ.@Wa©?ø*3@Ъ?õÄ5@=xª? 9@Ú8©?¾¿;@š©?h:@©?Œ9@ ƒ¨?LÇ9@i©?¢ò;@¬»§?.;@æ9§?ÅQ:@y6¨?¨?6@j]§?h5@ÌÀ¦?î4@€‘¥?×2@Ñz¥?'3@Â3¥?ëï3@Xh¥?B÷0@žŸ¤?’Ï,@Må¤?¥«&@Ìò£?öh&@Ûý¢?Ø'@*¡?lû'@¨y¡?Z.!@‘Ÿ ?\¸"@Ó ?Á(#@vР?xk(@D› ?]}*@ó¡ž?uû,@”?>ù.@ £ž?äà,@ (?å#)@ö?k¥&@°£œ?X=)@„Èœ? Ï)@%œ?Ñè)@뾜?â²&@Àvœ?bU#@gÀ?IX%@7ž?îÐ'@‚¥?så$@àÑœ?ýé"@(^›?êa$@Ÿš?Î$@L#š?Zõ#@ÿNš?%@Žž¯?G„L@#¬?¬_A@Ë«?ƒã1@F;¬?£¢+@Àè¬?#¼'@ª)­?¯*@¯ó¬?¸m0@[ù«?#[5@÷À¨?ÌB@Gž£?WO@“ ¡?æI@­z ?¨I6@;2Ÿ?|Ó/@š€ž?JZ0@:Áž?c§1@ùSž?î°0@…]œ?ƒ7@ìF›?"j<@XÛ™?”p>@ëå˜?4ŽA@éJ—?¶xB@¥‡–?”(B@Ç'—?~ÇA@¦ã˜?ÞâB@´ˆ›?èXB@’†œ?20@@! ?{Á8@E?xÃ3@ž?A·2@Ndž?­¤/@“S?ýJ+@vcž?«!*@Z  ?þ+@òG¡?!”/@­Ë¢?a<5@T}£?š7@”n¢?Xo:@ÀÇ¢?Í 8@呤?+ø3@Æ´¤?Ê·4@Ÿ£?GT5@>ž¡?õ™.@àY¡?*Ý'@}ä¡?âR$@X¹¢?ùÇ @œ6¢?x#@Y ?)1"@} ?ÄT%@Šž?¦é#@/Àž?€ï(@7 ?§&@&5?3n&@7Éš?ˆc&@š?Èó @ÂÛ™?lõ@È#­?³-L@kÕ«?&…8@„J¬?í1@Ñ%­?XB*@Jô¬?ÞU,@­?yV0@绬?7@8@³Êª?©š:@ÞM¥?V)L@uQ¢?+P@D§ ?“E@%G ?Z8@M&Ÿ?¦ì4@½‹Ÿ?85@–$Ÿ?¬1@w"ž?5Ï3@jZœ?°ž7@bÑš?ŸI;@i™?Z\@@ò]—?ÒÜ>@-O–?Ƹ<@Ýe–? y=@ ˜?š.@@|š?ÄàA@;&›?¢$>@aä›?i9@½{œ?µ'3@¾œ?—â3@•?Ai2@O?¯î,@峜?—@*@¦£Ÿ?w<,@Úý ? 3@4<¢?&ü6@„ ¢?›9;@£?Ò:@ß £?Ç7@¬¤?F 7@¤?‡Ì3@r×£?6u3@ý¡?ÁA3@ ³¡?c½&@Š¡?þÌ"@ÌÉ¡?9!@º¡?J£#@vì ?]Å"@ìpž?P$@¾†ž?8&@qŸ?‡)@4üŸ?¬©'@‹¿Ÿ?ˆ'@ôl?5ÿ(@þš?‡›%@öå˜?åž@±›¬?—eC@ïЬ?x¹6@¥¬?úy1@d”¬?)0@wg¬?ßò2@œ¬?ým7@ò´¬?|¦:@Õѧ?–ÃC@Ø»£?œØP@Ú“¡?<´O@ ¢ ?ºLC@úÊŸ?#:@i:Ÿ?99@hgŸ?¾U5@"_ž?Ô5@& ?:|5@zœ?ºÓ6@eÑ™?E™=@Û,—?y9=@Ù–?£Y9@Ù4–?¹9@:ý—?| <@ùo™?7}?@W`š?.‹:@/{›?î:9@êœ?’ù0@Ö”œ?"º1@Réœ?³®3@¶¯œ?|.@3l›?»Õ-@NÌž?160@Ž¡?ŽÊ5@È>¢?B<@ðk¡?¬—<@fJ¢?UG:@Ò£?óU7@U¤?%5@ÝX¤?­Ñ4@J©¢?õ71@O®¢?6 '@^¡?ßq'@Ìß¡?7¶#@н¡?Ñ!@Ñ¢?Ã]!@âé¡?š!@è¢?]Ø#@€· ?bY'@ɤŸ?h§(@]³Ÿ?Oä,@­Ÿ?§Ø,@ Ÿ?**@‹¨œ?Jœ$@Á8›?w##@|­?E4>@Ь?2þ:@4(«?%x:@Öô«?yw8@gž¬?i9@²7­?o;;@`1«?Éh<@žÂ¥?CL@ºv¢?$ãQ@¦ ?ÀM@Ä ?¯¢C@~¶ž?Sq;@Ô}Ÿ?Q9@Nž?:Ê8@ißœ?¢¥5@·^œ?¦x7@%¯š?ÄH9@¶À—?Ä{<@èÜ•?wÀ:@öp–?ûJ6@¨˜?B7@SÀ˜?ƒ½=@ùÝ™?d9@Áéš?àš7@Û«œ?ð«4@eª?"¿0@)Í?¥3@ƒn?­±3@ä[œ?+e3@d£?¼3@Л ?h7@Ô‚¡?'‹;@¼¤¡?Ø_?@]‹¢?F[<@=8£?½¾8@c¤?‡@8@€|¤?Nø6@žÝ£?“Å-@Ò£?à&@5—£?X•"@ÆÓ¢?§$@`ÿ¢?÷÷"@i0£?ÊÎ!@Ý•¢?"x@ýÌ¡?Á$@¢?®‰(@sÿ¡?w”)@¯ù ?˜(@dÌŸ?,@h ?³®,@§£?ö³&@ Ë›?E%"@³›¬?&BA@‹ãª?„ÿA@Ú]«?«[>@¤W¬?„<@‹º¬?†Y<@% ­? <@¨?‡E@ C¤?S¬N@5¡?õO@•A ?ýÏK@LŸ?_|B@gÔž?²<@–pž?§8:@3T?÷:8@œ?cD:@F ›?Æ;@~˜? )9@Ã^–?Á‡;@rG–?wc5@¦ç—?H6@9™?â¨;@ÛÑ™?¦Â<@,Íš?üõ6@Ÿ»›?Ek5@¯‰›?w5@Ž?n 5@É€?6@@ž?Gî8@Vž?|Ô:@ÖŸ?Ř6@€¡?÷Ç8@¡?–f:@Å¢?;@£?Ò©;@Qp¥?J <@”ݤ?^Î6@:Æ£??7.@C×£?x‚%@D¯¤?Z@Íl¤?ñï @Ç £?V!@¬a£?Ö#@¥^£?bå!@_R¢?‰c$@g+¢?ê^'@oŸ¡?)@l¡?1h+@Þ$¡? æ*@˜ž ?Võ,@õ}Ÿ?µÜ*@ß?}#@Ÿ«? +G@þ «?8E@ t«? ‚=@7»¬?È8<@¤Ë¬?Òn>@ï6«?¥"@@ˆ¦?ŠyG@\£?l Q@-º ?ØÑL@º²Ÿ?kjI@‡qž?$A@]\ž?«N=@œÍ?V¤;@ñœ?â<@t¡š?“Œ?@ç™?ÑÚ;@d˜—?‘~9@n–?G7@l“—?2û5@Á1š?¤_7@ýš?º³<@"Í›?é 9@%¡›?í¢4@:œ?Ê5@˜zœ?£6@à?”;9@‘!ž?sj<@þ¨ž?$eB@ X ?ö<@a¡?¼6@Î"¢?877@¹#£?ÃÕ9@>×£?»e9@9‘¤? È:@'0¥?k08@Šò¤?ä¤.@@Ì£?xŽ%@9ð¤?O›@÷ߤ?ÉÏ@ï£?x@ïe¢?“Î @´€¢?ÒO#@_<¢?ö#@ZH¢?¼z(@Èç¡?Í•,@ÔI¡?ˆ/@Åž¡?O|0@²Å ?_3@†ýž?†?0@Úž?Þc)@uîª?ûH@ʪ?¥ƒ>@Oˆ«?F:@Mß«?K@@÷ì«?jß@@„©?ëRD@&¥?GMK@Éi¢?sÊP@窠?V³K@²ˆŸ?‘µD@XRž? B@Kž?×ë@@ÒÙ?@›&£?ùÈ9@PN¤?ë?6@Hƒ£?Š4@Íü¤?/@ó¥?ç®2@E¦?ã@-@$¥??E#@ À¥?xa@hÞ£?9á@n¢?‰.@¨c¢?öt$@Û=¢?ÆÊ+@xR¢?v»/@c¤¡?2}/@?¡?Úì.@¶|Ÿ?]-@”†ž?kú+@¦Ÿ?*@%«ž?Áø'@ª?<:@Å­©?!ï9@dª?RA@ƒ«?·ûB@Úª?“‘C@T‹¦?@wF@‘1¤?-K@‚a¢?øÕH@•È ?oÓF@RN ?8ÇD@OçŸ?º¦E@ ðŸ?a¦B@jÚ?e0?@$9œ?r>@6›?œ5@m ™?–,@¤™?‚H+@È›?Ÿ3@Ä›?žQ;@ðmœ?¶]>@¡3œ?}7@°œ?Í93@"þœ?Qž5@Ô~?,è5@îß?§¿8@í,Ÿ?âZ;@£` ?9@[2¢?ă>@Ú£?ö>@L¿£?k”6@Œr£?‰²0@“^¤?ÂH,@x1¦?k*@»ß¦?S*@t²¦?'ê)@‚÷¤?+ö&@ä³£?Y!@•$£?’c@§¢?,%@‘ˆ¢?VS+@Û¡?[/@Dµ ?R¯,@¬¡?ù_'@ÝŸ?Ǻ$@^Çœ?³&@«Îœ?M)@©’?Ô÷&@d’¨?Æ&<@pž©? >@{ü©?*A@…ª?­9B@ôN¨?¹8E@¥?üzF@ò³£?ù™E@!M¢?½ŽD@_¡?ÙIC@aN¡?_B@4¡?Æ(@@óèŸ?˜ä<@œ(ž?™£8@Äœ?âø2@îBš?†^*@…ë™?h&@?Š«,@òŽ›?3c7@%Ú›?Nˆ=@§\›?0œ9@C›?¢¢3@ö´›?Äø3@û$?Î1@ƒež?Îõ3@¼Ÿ?U%4@A‰ ?3Ö2@o-¢?„;@bL£?²-=@¦£?Õ>7@ë£?QŸ/@ Ò£?'ç,@Ö~¥?H@(@=d¦?ß*#@–3¦?îS#@™¥?ò‰%@oœ¤?Ý—&@] ¥? ß%@£¤?."@Ðh£?­½)@”¢?ïx,@܉¡?qþ)@ëz ?Þ®$@ ?+ @ÀÉœ?ùŠ@ªáš?”–%@.Hœ?‰ '@Ôç¨?sR=@‡¤©?š½>@X©?zK@@Q©?vNB@ǧ¦?ˆB@ûF¤?¹D@•£?TB@ é¡?^B@¢?xø@@pÅ¡?Dá=@S¡?˜8@1ÉŸ?Ú65@ßóœ?á.@½„š?Lj)@Êã™?'E#@³š?g¯'@)›?ju5@+›?ïŸ8@2nš?=6@³?™?Fß/@ùm›?é¼/@Áþœ?mj0@ÍTž?q0@þ‰Ÿ?ù¿0@ág ?kã.@د¡?ký5@)D¢?žê9@<‹£?í 7@-ã?÷Ü1@! ¤?E-@LD¤?ûÍ(@K¥?%$@Õä¥?k²@ͤ¦?½Ñ#@íA¥?U˜%@Àm¤?¿W)@®”¥?(]&@nÛ¤?D[(@)£?”U'@ÚÅ¢?($@Åà ?´!@tQŸ?ó@Ì’ž?eX@‚Л?!"@Féš??9%@ˆâ¨?Ò3<@¸S©?Ñì<@Ь¨?ø’?@Y¡§?#9D@®¥?8 D@•²£? A@G¢?>@žÈ¡?6–<@)«¡?¤:@%¢?ÞN4@Yé ?óã1@О?Î+@M0›?hè&@àšš?û¿#@6§š?çU&@ êš?Lð0@Ïóš?è;6@º•˜?‰Ì0@v^˜?sn-@Ó°š?Õ,@oz?ü.@´Ÿ?Š×.@¤ ?˘0@ˆñ ?q>.@œ~¡?Ω0@1£?yë3@L!¤?¨94@>[¥?/È4@$¥?00@ýÖ¤?O+@5ì¤?8Ð'@¹Õ¥?î{ @È ¦?k8@t„¦?.©#@nȤ?Ðð%@4e£?Ò‘'@˜‰¤? (@,)¦?vù(@G£?‡â#@³;¡?^H"@‹­ ?ÖÕ@ÆÕž?âB@Êež?”Ë@.Ø›?²n%@“¦¨?­ :@4±¨?Ù<@Ãð§?«¦B@Ç%¦?ÃA@G¦¤?œ.A@È£?Úu=@r…¡?o09@¿Ì¡?Wý7@×ü¡?¡H3@EF¢?{ß0@”Ÿ ?—.@ßS?ñŸ'@ô›?þ„"@«{›?×1'@T7œ?´{0@@{›?²¦5@3€—?0@$Y–?*@j¡™?y+@#Äœ?÷¥-@TŸ?žÃ0@ë ?Fp2@ƒ…¡?:0@±P¢?ð‚0@·[¢?3•0@’ ¤?ú .@Èi¦?µG2@u¦?c0@äF¥?,@dÛ¥?~+@ŧ¥?¤#&@•Z¦?QQ @µ!¦?Ý#@±ù¦?¼G'@ð¬¤?9*@E £?‹Ö+@Íߤ?â4+@짤?€å(@¤§£?i#@kº¡?#û#@@+ ?ñ@7»ž?Nù@xq?ÂÖ"@R ¨?c9@k ¨?µÁ<@wí¦?ÜX@@¥?'È=@¯‘£?da=@X¢?ÜI<@ó¢?@¬9@l¢?€2@ýø¡?’z0@b¢?šö0@vŒŸ?{,@ ? Ž(@¸Nœ?O^*@†ºœ?çÇ1@Ý}œ?¨74@—÷˜?434@–Þ•?/S*@ÇC˜?y(@Çì›?Uˆ,@9ó?ê22@/ ?Ò|4@& ¡?NX3@XZ¢?o<3@• £?©1@/£?ˆK/@€¥?í&,@ùŒ¦?mu/@”¦?II-@㶦?ç,@¬¦?00,@‹2§?PÞ&@N„§?oé%@¸³¦?4'@EA¦?C.*@¹À¤?‘,@S¥?ø†0@GM¤?,@‡!£?¡±%@þÈ¢?dö(@Þ$¡?qm(@oŸ? …"@cÔ?H¬"@Nu§?é8@Ê,§?Ò”=@[¥?=Š<@üž¤?åJ9@?¢?[:@€ª¡?¿7;@¬U¡?#9@œè¡?3Õ1@ç¢?x 1@á'¡?Ãÿ1@[9Ÿ?«-@B§?¬.@º ?×Ñ3@.ùœ?½6@%:›?I4@™þ–?D‹.@÷<—?àæ'@Ä]š?^Y*@±B?¶}.@üŸ?‚–4@˜_¡?‚È3@Éç¢?eu4@*£?Qd6@|У?ER2@Ÿ£¥?f/@?·¦?¤§,@˦?7ñ1@œ@§?m-@—ä§?õ'*@•£¨?¾¿,@%÷§?ë +@2ÿ¦?ÎÜ(@“µ¦?.Ä'@{—¥?pw.@Ö‚¥?å3@³œ¤?ê.@¯Ë£?oä(@šä¡?+Œ)@BÑ ?-¤/@£d¡?pÞ0@*ŽŸ?<)@ÞO§?u%8@鸥?çÃ:@“H¤?G«5@fä¢?n¯5@^Œ¡?K9@ ¡?„P:@vw¡?{6@p”¢?7n1@ÂY¢?áN4@ïÍ ?mó1@÷Ÿ?nö2@"Dž?o4@ Ø?®7@2|œ?¡5@2Ï™?Šï.@hQ˜?zÑ+@¼™?­“(@ëLœ?l9+@ß~ž?þ1@-G ?Ka5@2›¢?134@¶£?:9@[]¤?›á7@Úƒ¥?{ 5@§?0w0@@•§?§0@.à¦?4Ö3@*=¨?É-@ð¥¨?§É-@(á¨?—%-@Y§?i&+@~H§?—¿)@M§?Ç)@å¦?+œ2@;'¥?Ø@.@¼ ¤?èj*@¿÷¢?ío'@]ð¡?)u*@’-¡?d/@<ßž?nJ0@íÔ¥?§ü5@ B¤?ë$4@þ¢?¬Ù.@hB¢?†2@3ç ?°·6@íµ¡?ö”9@Rô¢?^N4@ãZ£?8w4@DY¢?µ4@ÓÓ ?ŒZ5@–âŸ?767@þŸ?I:@±‡?°5@¶Ìš?k¦0@oÆ™?ìQ+@8qš?_Š*@ÃM›?Ñ!+@¹÷œ?3Ü+@e&Ÿ?xð2@±Ì ?² 7@°£?ý¨6@ÉÖ¤?uã7@ËÌ¥?ýz9@žì¦?ŠÉ3@ä¨?‘4@[ü§?Ê|6@Q$¨?D5@ÛX¨?D.@‹¨?F.@‚À¨?ë +@\ù¦?ë,@îÚ¦?Ù‘-@Í9§?}‹0@bò¥?¤z,@q‚¤?„!@Cò¢?ÏÛ%@^š¢?_ª&@ñº¡? µ)@‡Ÿ? Ø)@ù›¤?V/2@]Œ£?9Þ+@\Ï¢?«¤+@!À¢?$Â/@Bm¢?¤º5@T5£?¿†8@†×£?Q|5@~ë£?d•6@¿“¢?[q5@tû ?¼48@dÖŸ? j:@ ›ž?͇8@Ðlœ?kà1@S`›?¼‡-@fZ›?9-+@Ÿ)œ?´ç*@³§œ?²C+@tj?ø .@›§Ÿ?8~5@¦¡?N7@"ø£?…-5@ÌŠ¥?=6@ç?Å5@\Z§?i5@E~©?…6@?Ψ?Y8@åȨ?‰¼1@˶©?à‡-@z©?Ø×,@Gj¨?~+@öß§?}m,@³Ú¦?í42@o¥?~<1@ޤ?P‡#@Ú4¤?¶†@h¢?´e"@]B¢?|â&@°¢?a¶)@XQ¤?͉+@¹?£?yx'@ÿt£?#´)@b £?=a0@U*¤?%h7@^B¥?¤p8@Ö¤?75@i¤?0-7@ÌH¢?P¸8@Â@ ?ãc<@ÐwŸ?+=@åÕ?Ó¬6@y°œ?[–/@¹ùœ?Y¥,@µ?ó^,@N?ßâ*@Ûz?g±+@ý­ž?Ì51@«Y ?áç4@â´¢?žØ3@Üà¤?8ê3@£§?OŽ4@R¨?vÌ5@Vó¨?ÌC7@ñ©?÷W:@„F©?LV8@É=©?× 3@‰\©?'e/@ö ©?„Ý.@#í¨?ý½/@¦:¨?Àd2@lƦ?ÖA2@þs¤?ýô)@l¤?áþ @,w£?Þ @V¿¡?¢h"@º/¡?q&@è|¤?Õ)&@⺣?ñ%@U¤?±ô*@g¤?£}1@ôÛ¥?P8@¡¦?Já6@!¥?#8@®›£?)b:@¢?Oý<@: ? €A@îž?‹l;@nz?Dx2@öè?¿-@®¿ž?h,@7Þž?—+@Rüž?¾*,@¥4Ÿ?_á.@G  ?¸¯1@ˆÍ¡?)Ó4@K ¤?|}4@ ¬¦?™E4@]°¨?Ny3@¥3©?<å6@ Õ©?eÄ8@j.©? 2<@B±©?–í6@–©?+è3@%e©?y®0@ʇ©?’2@rH©? %7@{À¨?V6@5µ¦?O¹/@~p¤?Q&@¢¥?äÕ @2·¢?é}$@¹¢?[4$@O–¥?‹M$@O|¤?}ú&@ío¥?œ¼-@j¥?W 7@íp¦?@¾7@¦¦?®‚8@Üã¤?Õ¼;@`ý¢?!C?@ÊÞ ?fD@îÜŸ?FúA@"ož?º^9@¹=ž?ž”0@¿GŸ?»—+@îóŸ?Â",@Ç ?‘ú,@Á¢ ?ŠË-@¨ì ?Nä1@Ö¤¡?.ƒ3@b‰£?}4@û¥?¬ÿ4@{ê§?o75@ôÛ¨?”À5@Bª?4w7@Mfª?m+7@F©?öÜ:@ˆ©?US4@a€©?ä´3@^¨©?$Ø5@8å©?D":@ôÇ©?ð];@1×§?_k3@K ¥?» ,@t¥?F&@€+¤?xB$@E¼¡?æ«$@o¦?í%@ý¦?ÝŒ+@2b¦?ðÍ3@y¦?@9@’³¦?ð!7@¬(¦?³<@,¤?!¯?@«|¢?Í:C@GQ¡?-XE@; ?–I>@nPŸ?Ÿ3@‚:Ÿ? Z.@h ?|+@Æ2¡?Øð+@~¬¡?*.@f¡?NÎ0@+õ¡?½3@ð<£?J`5@¸¤?<€5@®§?ÜL8@,¡¨?o26@o·©?uÍ4@¡­ª?`§4@⯪?½4@1Ú©?`6@‰J©?OJ4@¯"ª?>ò7@“ª?ë;@’±ª?^Ž?@ …©?Eû8@£C¦?yk/@Û¥?ûà)@È¡¤?bX&@†£?9˜#@”§?½*@íð§?й1@çy§?Àš6@õ9§?½­7@€¤¦?Ru;@/}¥?Wn@@/$¤?þ{A@þ,¢?ZfF@‘—¡?(ÕA@q» ?:&8@LÏŸ?ü°0@fïŸ?0/-@b¡? s,@ËÊ¡?!Ç/@{¿¡?]Ú0@þ¢?µ6@ªó£?=I6@J¤¤?t75@ž¦?…7@ö ¨?ÚQ8@!Œ©?è4@J"ª?É2@@^«?c:2@–#«?!Q4@µ ª?R 5@ ª?¾=9@õ«?^Ç>@hѪ?Ú¶?@NH©?0x;@k¬§?žÓ3@ž!¥?žg,@wµ£?=(@Χ¢?Ýé$@Cå¨?ÿÌ/@˜Ó¨?E­4@a¨?S9@R ¨?h:@£E§?*—?@b~¥?âÇA@Lˆ£?—ÝD@…ä¡?àçI@õª¡?@@¸#¡?^Ê5@ú}Ÿ?Æè0@\­ ?ìp-@hà¡?ø~.@bt¢?îû1@€b£?Û5@—’¤?ÈÖ9@~¥?Ój6@ZH¦?ÕØ5@Ç›§?Ø©4@³¨?™4@4­ª?lC2@\ë?#P2@^ ¬?´ã2@äv«?-6@Ñ«?ñ™9@£«?Cç?@HÆ«?ŒA@âÙ©?.Ó;@µ§?`°5@‰§?zÛ1@eV¥?™ð(@y#£?õÆ$@˜ ª??.0@«ç¨?Ž7@Õò¨?Ò9@Ž ©?Àï=@[}§?Ñ@@Î=¥?Ã:B@n5£?£˜H@(Å¡?ô I@K†¡?Õé>@) ? 5@jÛŸ?qI.@ëס?‘B-@â>£?ˆV0@:¬£?º-5@jó¤?*@<@«¥?1h<@”õ¦?j67@®§?8@Ðq¨?Â4@9©? 2@ðE«?‚T1@†»«?¯Ð1@«†«?‘È3@S¬?!:@§µ¬?Ê@@eϬ? ÇA@;«?žå>@òÕ¨?L4@P¨?Óu0@<ü¦?wÓ.@¡Þ¤?ß'@癪?CW2@í©?S…8@…©?C*=@Û¨©?œA@‘±§?2A@ºÔ¤?š7D@Ý©¢?ŒžK@"F¢?×3H@ V¡?K<=@Ç ?Çô0@!¡?#L-@—¢?ê0@Ú®£?]¢5@‹¢¤?Ï:@Ýg¥?)Í>@ó®¦?äa=@{ϧ?ë#<@0¾¨?ØÛ6@•Q©?ëÞ4@]Kª?a×/@盪?&/@¡3¬?%k/@ÇÄ«?Q•7@ê§­??@G­?ײA@ïe¬?sý?@º…ª?øÇ7@R¨?Þ¶2@öX¦?.x0@*Í¥?§é*@«Ç«?ú¥1@ª?˜–7@úÖª?+ö@@Ï–©?SC@†§?8EC@œ¤?:éG@ŽK¢?yýL@ð.¢?ôLF@pÞ ?”~8@$D ?'`.@à¡?i00@²S£?6¸4@†¤?8@i:¥?hä=@@¦?êý?@ý‰§? ñ?@Pî¨?;:@Ϊ?¸¯7@柩?™­4@lü©?ö)/@ìG«?™-@z}«?Æ4@.Ò¬?’{=@¶!®?‘}A@?­?à?@1´«?wl9@^z©?_6@ò§?@®4@¢¦?‡½.@6ý«?/`/@D«?¾9@,«?x@Ê/§?½?@h¨?{<@+@ª?ŒA9@OȪ?58@€8ª?˜24@¢¼ª?—!0@c«ª?ì^5@„.¬?:@ÿ­?ͪ?@ný¬?ë>@F«?:ž:@Õ˜©?5‚9@;¨?ið8@¦¿¦?-™3@u¬?Ý"0@}â¬?ª³=@¿à«?PG@x¡©?vÓI@[¡¦?¯3I@!D£?Î×M@Gï¢?ONK@9?¢?=@:¸¡?³¤3@ ס?Úp3@*Ï¢?ñÇ3@öÆ£?Þ9@ú ¥?ò½>@H¨¦?Ûó>@ƒ–§?j<@§Ÿ©? y:@”“«?( 8@¼«?Ž´6@û—ª?v½3@aŠª?ñY2@&`«?—Í;@+¬?ü±>@1¬?(ä<@R«?+à:@[±©?mØ:@H¨?q9@ÿæ¦??98@.O®?sÍ4@ó ®?¿äB@Œ¿«?·éH@¹æ©?hïJ@«´¥?íI@-^£?˜vM@‰ë£?Q­F@¯/£?zo9@™Á¡?{:4@:¿¡?ð 3@´£?õ«7@¤ò£?Ã@<@ÇÔ¥?ƒŠ=@L§?„`>@›^©?"ð;@E«?:@8Þ«?&9@V"«?§7@ÏM«?xN3@ïa«? °9@9v«?UÔ>@Š«?å<@ «?¬h7@ cª?ì·7@fæ¨?}Ò6@i §? ï4@.°?Ó¬9@¥¯?6G@Q<¬?:|K@=©?U:I@f¤¤?‚‰J@¾¤?­M@Ëü£?vC@b©¢?i38@޵¡?û3@•“¡?DY5@Hg¢?f:@ Τ?GÐ=@Eæ¥?¬ü@@?>©?Áû=@óª?XR<@‘¬?è=@¹‡¬?Èñ9@ûè«?˜<7@B¼«?~9@Ѻ«?õ>@µàª?>î;@xª?™]7@ì5ª?H˜5@÷ª?0×6@jا?X»3@üw±?a@>@t¶¯?°PJ@=ª¬?.L@F·§?«ÅH@̤?{3K@Ƥ?gL@‹õ£?U˜A@”`£?G6@H^¡?S4@–ö¡?¸ö7@YУ?µ÷9@‹§¥?Œ>@9§?£>@,ý©?UÑ<@v«?8?@Æ%­?«Ú=@È­?Š:@¼«?'í;@ÃÊ«?‘};@Ϭ?å,;@\tª?¤7@= ª?á­3@¾ï¨?5@Ö§?Œp6@ŒP²?WB@ö °?ŽìL@¿ÿ«?3ýH@ÿ.¦?²þH@Ñ^¤?M@[¥?ü¼J@¤?Cµ>@Ëk¢?+ÿ6@D¶¡?Ú”7@™Ô¢?x8@Ô¤?”6;@Q»¦?˜'=@è¶©?(6:@ת?JQ<@˜‡¬?_±:@ÐÙ­?K'9@7P¬? ¯=@û¬?õ„>@ÜÆ«?…Ù9@¢×ª?°û9@zö©?™Á4@Ä©? 4@s]¨?Ò.5@ñ³?NDD@L,¯?ŽL@þª?Ÿ;I@òû¥?|I@Xï¤?÷HO@Ѥ?'@H@3¤?ƒÈ<@!ì¢?MÇ6@ä¢?r~6@…ú£?ò8@±¥?L^<@?ž§?—d:@³.ª?™»:@¡’«?}º9@Ò­?$Á7@Øù¬?¦¬9@dÚ«?Ý£@@~o«?xÕ@@úy«?×E=@ª?éÀ=@ ©?O€8@òþ¨?µ5@4û²?– F@H&®?Z,J@á©?TJ@ë¤?¹K@þ¤¤?ÊBN@êߤ?„cF@…ª¤?`G;@çç¢?j6@ë£?R5@ k¤?;p9@?'¦?·þ9@E?©?Ú¡9@q «?–Î7@ ­?ÌÂ7@ò­?>„9@¥ñ¬?¤=@¢)¬?aà@@"~«?Ñ;A@È̪?…$=@ÉÊ©?56<@¨? b7@| ²?UÊE@ÞT­?7ßJ@“}§?LhI@Iܤ?Ì”L@䦤?˜ÝN@ŸŒ¥?–SD@ï¤?ê];@¹å¢?kr4@ ¤?K 5@j¥??†7@m§?³¯8@ Ë©?ö‡;@¥Û«?ë :@×­? :@s›­?}<@jÛ¬?®h@@æo«?kŽ?@‚ïª?†À>@©Ã©?,ñ;@Hœ¨?€½:@§¬±?9ëF@t^¬?E·I@9x¦?‹5I@\Ô£?ãL@ƒ²¤?„íM@Uñ¤?a.B@Ї£?|G7@¶¥£? i4@‚y¤?ˆ‡2@_¦?¡¯2@ì+©?¶ 7@ÿɪ?9@'!¬?™M9@¼ ­?N:@…¬?_U;@'c«?Ýê<@«?J=@*´©?&«:@öm©?=@µ'±?”YG@?¿ª?!óG@‰a¥?›¾I@8¤?HÓO@F¥?æ‚I@×1¥?CN=@` ¤?·¥5@1[¤?Åš2@€¥?^³1@bè§?*é3@qª?k{5@•ß«?`7@V¬?1i:@ZC¬?%Å9@µ’«?„c8@Ižª?ÁG;@X…ª?$Ù8@Œ©?ÄÈ8@o¯?¶òH@Tü©?ÅþG@Ã¥?t}K@øS¥?öŠN@@A¦?kzH@‡&¥?^ <@‘„¤?’À1@¹C¤?".0@Ц?·/@ág©?Îæ1@ˆÌª?éŸ5@`¬«?ÀA7@‹«?rf:@hÞª?Ÿþ6@ØÉª?° 8@áã©?:X9@©? 8@¹ô®? ·G@:g©?†‡I@_Õ¥?=K@§9¦?;zO@Ò+§?áëD@j{¥?N±6@6T¤?Ùf.@{n¥?ˆè,@Ûø§?ö¸-@e©?Fú3@ÿÞª?lŽ4@W«?Ó6@ߪ?jÁ7@år«?@„7@–™ª?Î8@_Í©?±:@‰Î®?IÎJ@*'©?œ J@Ù6¦?7ÌL@”§?ÇEL@Êý§?¤y?@x¥?¨3@7ˆ¤?Ô-@ÓA¦?À,@œ¨?ßJ/@½Ð©?Ç3@Ž«?n¸4@`m«?lÒ5@½Ñ«?„y6@¿¬?ýÂ7@Š'ª?a€:@ õ­?@K@#©?D9K@‹Ã§?#N@K¯¨?uºF@û¦?ñ8@Ȥ?Õ•-@¥¥?O+@Éw§?F/-@½©?§Æ/@àã©? )2@‘ «?é3@°r«?ð‡3@ɬ?+›3@ Óª?M 9@OÚ¬?J J@r©?בJ@¨?1AM@Îò¨?°@@Žß¥?m1@X̤?½u(@ÆÉ¦?áF*@E.¨?0ð+@–a©?œÑ.@ré©?©©1@šÚª?.0@»Ú«?m³0@_›«?¥&3@‚¬?õöI@_(©?÷ÃJ@™Ó¨?öÞG@¬4¨?7A9@¸ª¤?r\.@ ¦?%Ð'@}O§?µâ(@†k¨?¦i+@Ja©?”v/@<î©?àP/@#»ª?n’.@‹Ÿª?s2@uL¬?„K@uÅ©?§ÎI@ò™©?ñ¹A@tã¦?4@ZK¥?œ—-@»ƒ¦?Rö&@º‹§?·h)@#©?n~*@Þƒ©?£/@q=©?7/@f2ª?èÄ.@&¬?ˆŸD@K©?êSG@Q3©?fþ=@Ý5¦?Ëf3@w¦?bD*@@§?œÕ(@Ѝ?„Æ*@¦3©?+@‰©?fý,@³2©?ÓF.@—ð«?[¯?@1†©?—1C@‘ ¨?#¼:@¦¦?ÑI2@I¸¦?Ññ+@²1§?ø%)@ÿ®¨?*@…ب?k²+@¿©?k -@4Ы?€Ò=@Kë©?Ð@@®¨?V69@Kà¥?\®1@¥¦?f®+@sí§?tˆ(@Éž¨?+î'@S$©?œ¤*@t ¬?RE9@ó"ª?Ü0B@eЩ?V=@Ÿ¦?Gá7@Îë¥?ß-@ E¨?ëd)@‚Ũ?1t)@»í«?Ôb:@¹dª?RŠF@Æ!ª?QÁA@F§?û7@çý¦?ªê.@ ¨?z®*@²€«?äc<@Ãîª?‹I@®Pª?¤TD@3¨?¶­;@ïq§?hÒ3@%Ÿ«?èÅ>@A¼ª?R°M@æUª?S”F@ÓÛ¨?-\C@r¶«?¢u@@ž#ª?dÏL@9.ª?í§L@U¬?@@Ó~˜?ïxB@ôE–?ùQ@@5™”?ŒÐ7@+±‘?' 3@‘?•¸0@ƒ’?ˆ -@”?|Ê2@’$•?'6@¥#–?sc4@Ž—?Áà0@è—?œ•,@äh˜?wn$@'p—?Ø@º0•?yV@çÊ“?c3 @vw”?;ë#@¤Ê“?ëx(@“=“?a_.@Âf“?3@Ð!”?û39@eê“?£7=@’?éÒC@^S’??‹F@Ú¥‘?h¬I@÷ÿ?­O@Ê‘?¾O@ëÛ–?®/@Ó5µ?èò:@„€¡?Ì9@—Š”?êz0@lû“?‡·<@Ê„–?ïºK@C““?.àV@x—?-*d@ÕÌ•?åSf@².”?.h@‡:•?Pºg@ü¥–?k{a@0˜?¼hX@BØš?œ–M@KŸ?’A@ c¤?aŠ5@ÿ ¨??À*@År§?˜æ-@+X ?lÐ@@bô›?°œS@«Ð™?Y@7Ÿ™?Á®\@F”™?ëÕX@p‘š?¾…T@è&?‘ÐG@Ç|¢?%‡=@ÙE¤?8â6@´¤?,ß;@=D¤? :@‘¤?ÜÆ3@Yž¤?Zæ2@«Î¥?í5@ g¦?Ûb:@ð¼¨??@@Å««?èD@ ö«?†­A@,*¹?îH@°“·?Ó@@]®¸?é7@YX¶?zi5@sp²?#e<@åK²?)R@·7°?ænj@G‹¯?Äv}@‚|°?L„@‚ã²?£)ƒ@Hæ¶?ŸÓ€@¶Åº?=Æx@~I¼?žr@xd»?Êf@ƨ¹?Yé^@@§s™?ÀB@fœ™?¸PM@µx˜?Š€L@ò•?yvJ@"Ì“?öªU@ŸÛ?Ÿ.n@7 ? UŠ@õZ‰?#Õ’@mш?•@=XŒ?+ ‚@ –?v+c@ø¤?Þ‹O@ƒ$°?D©9@†N·?̆@¬¿¶?:,@å±?çL(@~Š®?gU@´ô¨?÷0|@§Ùš?´¸#@&Êš?/%@-œ?~u$@ؾ›?ªö$@Áš?]#@G™?bæ @€5™?qx@s˜?h!@ãë˜?Ÿ7$@Òû™?ÊV.@αš?Ð8@{+›?;@<’š?˜Î;@埚?Q¯9@º–™?&Y6@%G™?Df6@š? ü6@yš?«ž7@#+›?éP3@yÅ›?Pq,@À ?÷U,@24?N1@˜°ž?ïQ5@?DŸ?|8@b ?z:@™¯ ?ŸO<@§h¡?á<@Ö—¢?þ9@nf¢?K-6@ɯ ?EÌ6@æQŸ?k´:@Ïž?>C@9¯œ? _K@±àš?ýñK@ï"š?EI@Q«™?’ÖC@·£˜?õà;@Š˜?½=?@m˜?ìFI@›Í—?vL@ëô”?‚oN@਒?À4]@œi?þC{@P™‹?õo@E]‰?Ü[@±ÔŠ?V³…@AQ‘?)òl@ã@V¾¢?œÞ<@ðÜ¢?О6@ñ¡¡?z6@Õ¾ ?Ñ8@܈Ÿ?\‰B@ãÝ?D L@ád›?ð K@¸ô™?õÙF@¼™?‹˜B@ 6˜?äQ<@¿å—?n‹>@€ä—?•#H@ÿ —?ŸêM@)!”?K,T@‹"‘?bBi@Ø"Ž?×±„@ÂÊ?G¾@\­Š?þo‰@EŽ?UÆt@C¼—?ÂZ@×m¤?ª¯V@ð¨¯?ƒ@e¤?Ü·<@ù‚¢?¶<@%q ?fu?@t7Ÿ?6®E@2Ò?ÝM@&Áœ?FK@´0š?Ç@Q—?ItH@wø•? "Q@Ý×’?Î]@Ð?Á^v@[èŒ?ªR‡@Û*‹?æ#‰@ ׌?¶Á{@€‹“?Å^@W²ž?9PU@…ª?<{]@!€²?°éW@–Ê·?töL@Þ9¹?¡þF@5Ƹ?irJ@oëž?Ʀ@ªŸ?nF#@«µŸ?/.&@7ž?Tø(@@†Ç–?§7@ÓÔ—?±0@늙?¬4+@Íœ?4Œ$@Ÿ?eÊ!@u¡?ß5"@ª^£?Ò$@ا¥?T\'@J¨?Ÿe,@´y©?í2@xª?o:@ˆÑ¨?r]<@j!§?W>@0 ¦?>@Fí¡?×Ì?@²"Ÿ?#C@:Ï?D¸G@*¬œ?d9I@ß?z9M@5@›?‰FI@ø˜?º‰=@£\—?…:@ãÏ•?äƒ>@l­–?gøJ@Ìr”?§X@ßk‘?Üìd@ÉÑŽ?¬ì@-ÓŒ?㇆@¡ŸŒ?Fä€@š»?BIc@Ü(š?Z6R@q ¦?c]@BÚ­?1Àe@tÚ³?^úc@øS¸?å[@½Û¹?_uY@MX?™ß@¹<ž? æ!@ÏNŸ?ám'@¹ž?f¤,@((ž?&1@ž?BŽ4@¸“œ? :@l*›?h]8@èߘ?bÑ9@'l—?–Â<@6O•?ë¬<@ù{”?é?@[•?`VC@䢔?‘ÝF@.•?[‘B@l—?“<@ò™?Ö™6@#›?84-@I?¦È%@.þŸ?nÁ!@¢î¡?ˆþ$@\‚¤?–*@ËH§?^½-@Ø6ª?õ2@S<¬?±t7@m¤­?RÛ9@rø¬?Ôì<@bb©?ËA@鈦?f?@:¢?Œ{?@SÐ?’£C@þJœ?QF@_Šœ?‘fG@Œ ?÷I@í8œ? H@µ,™?µ=?@Ã{—?ð7@|Ε?Ë4=@›ä•?(DO@Ê“?Ìa@ÂE‘?óo@_ÛŽ?KÔ€@ÃÔ?øà€@lw?Ãk@ëa–? –Q@ó¡?ëéS@SŒª?\[i@/Ú¯?¡©q@^µ?sm@øHº?´Lh@2(›?}X@d››?[È@["œ? ñ$@eÇ?ý{*@jI?ön3@:Zœ?M×:@T¸›?ô£>@¥iš? F?@³w˜?Á?@Ž—?kãB@9N–?‘ E@"Õ•?ç™I@)“•?mK@K–?îM@ès—?`&I@ט? ÇB@–7š?wÐ=@"í›?\W2@ Ež?~ô*@Iw¡?Zd&@×4£?kÅ'@*¥?VZ*@¨?ÿ¶.@@§?Ú¸=@"|¢?=?@n?ZH@›?owD@IÆœ?.B@ëJ?IF@Y`?KÑE@Q™?å=@¼}–?T8@X]•?ì‡A@öI•?L?W@I¸“?‰$g@y‘?Dòr@ÏR?@uê?¬sr@˜”?OWW@†+ž?ë,J@vǦ?°ðb@Hý¬?”=@ÍÄž?+A@VZŸ?±ô@@a›?û=@?—? ô=@MR•? ˜F@Ý_•?þ^@ਔ?Ò°i@[ò‘?.q@\ú?Q–r@›¨“?=õ_@j›?EI@bn¥?b]R@34«?Nts@#®?ª•@ c³?’€€@ôè˜?’o(@q™?Em$@b¤™?2F&@f™?H6.@q@™?ÏU7@Ò™?¡C8@þWš?Ñ&7@Qn™?O¬:@Úí—?«?@êÍ—?ŸnA@KE˜?þßC@6©˜?:™F@H™?ª¶D@˜? @@Hœ—?E?@;˜?e>@™?¡a=@&Ç™?×+;@h¤œ?ÇB6@é?¥2@•¡Ÿ?ú3@Ñ¢? Á5@y…¤? í5@ý¥?íK6@ÓV¥?Âü8@Œ­¥?P8@Ì¥?‰ê7@š?¢?ÊA7@yU ?dG>@°¬ž?æ=C@1X?ûD@fÀ›?ÝP=@@àž?††3@]üŸ?„°9@g|Ÿ?9þ=@þä?€.>@”™?½bA@7I–?ÛºO@õJ–?•^c@ïc•?Ül@Å “?„o@ê”?æd@Ù™?“R@ ­¤?BI@Ç&«?bœj@#$­?É"‚@#ý¯?O„@¬eš?žÖ'@Qi™? ¶%@@˜?Ai*@"?™?é&2@T-™?Ÿê1@e1š?hþ2@=Nš? ¯8@pý—?K;=@7u–?cÏ>@a£•?˜ÎA@ Q•?&C@•?QoC@U¯•?Üð?@h¾•?ªu:@hM–?Ä”3@Žø–?…»3@q¨—?Ù27@~I˜?Qí6@3§™?”¨8@p#œ? j7@…ž?Ö=@û ?Ë @@†½¡?1¿@@B€£?ŠC@@À­£?œ1:@­F¢?‹„4@ ?·2@Þ?3 2@ô?C™>@e®œ?øzD@Îzœ? D@µkœ?p½9@Õ ž?ä.@`-Ÿ?ÞL7@¡?Ø>@K—Ÿ?åÝ<@⣛?ìYF@ß<˜?U«W@w˜?[i@…R–?%Ãk@°–?“Uf@Íû™?¢A]@f £?µL@ìÖ«?&.`@]´­?q?~@ĸ®?Ty„@™?‘ç$@@d˜?ï“(@4˜?Ï .@ã™?z¶.@Dš?4ú2@¹žœ?!à8@ÅÙš?¤¡=@²—?‡>=@“•?ó@@±”?’B@ï“?k B@Ï2“?øõD@ä@“? g=@àY”?d8@²Ü”? 1@}Е?T0@ –?x&3@ž—?I6@€Ü˜?ðA;@*-š?¿—>@nÓ›?ò@E@dó?kE@9 ?³C@“¡?ÝC@g—¡?ýæ?@·Ÿ?°6@?Û¦-@Þ0›?Þ7-@ðð™?Ï8@D›?+(?@r¬›?œ@@Aøœ?3Û5@¶¦ž?±|-@úæ ?Û4@[N¡? ï7@ ª ?›z;@hõœ?ïIJ@5š?oA`@ûF™?½k@zR˜?JÈf@š?ô@c@‡¡?NW@ku«?©:W@`ì®?L9p@Ýù®?&€@ßí˜?jZ%@üŸ˜?ëÅ$@Ü\™?DZ(@-š?‘ù+@dœ?[ë7@…m?H?@Ñš?Â&;@N`–?\ù=@-”?„7B@/’? >C@¯N‘?J*B@}’?Áæ<@•’?xØ8@K “?ŽÏ9@l“?c£5@T"”?w—5@æ>–?„8@è\—?j·;@¯Œ˜?ò¨=@#[™?ë´A@\ñš?ÉUC@?@ýœ?ìî1@m¥?³@,@üŸ?\‹1@iÍ¡?Ñ’3@燡?ß@=@ÊÆ?ëÛT@Õœ?JŸg@1;›?©)i@êRœ?Dc@ŸÎ¡?mÎa@ºÊ©?€áX@o °?-Nc@K°?´cw@Rr—?¾v@˜K˜?Ê @ [™?(d%@º–›?<¤/@ž?®ã9@sbœ?Œ;@ k˜?sÒ7@æ”?K¼8@“?‚>@!Ò‘?ìL?@r˜‘?D¸>@Èþ‘?Û:@¢*’?†à:@µT“?ü¾?@®·“? C@P9”?¾C@9–?ÃÕ?@5V—?/A@ÊÖ—?±ç=@}ã˜?üÉ>@Ó™?cÎ?@èk›? X>@¦?$T@@UÖž?¾B@•€ž?4B@?.B@®žš?ž?@‘;™?\<@Ò¦˜?8@í˜?›ê9@ŸÏ˜?ûŸ9@¢{š?ÐR2@i¬œ?¸‚/@ÿž?™T0@ZÏ¡?ÙÅ5@Ù%¡? 6J@æž?·_b@ÖÃ?k@þž?|§d@th¢?!ûh@“o©?W`@5°?o^@$»°?âWc@žÀ–?Â'"@ê#˜?4d"@Ñaš?ê#@&?%l.@¯ž?¶6@jR›?“ú3@v˜?æ£2@OÈ”?p6@}“?£<;@ ã’?·;@di“?ƒ™>@1‹“?´‚>@帓?—A@Ïü”?©I@öŸ•?™M@7Ä•?øJ@p€—?ê»E@ õ˜?_çC@ïë˜?>B@ØP™?ÖeA@/Žš?óÕ>@0I›?U >@$œ?„d<@,„œ?üú<@ü œ??@h›? D@tkš?F@.î™?+}C@ò˜?¬Í?@À?˜?}y:@Ì—?Ò¸1@˜o˜?¢ .@üš?ʦ2@Ñ|ž?œ£>@°¢?ÃËJ@NÚ ?½&Z@{  ?“Äj@ù\ ?ži@v £?’|l@Ò©?Xûj@[a¯?˜©[@š´±?`©T@̈—? t&@͘?Œ@1š?ù€"@še?[.@9â?m³5@ÛSš?0@#e—?b¬.@º…•?p77@¿s”?éž:@Z8”?^m;@µ¥”?A@@žW•?d^E@ÁD•?§ãG@H–?]L@}b–?=ÞK@ì”–?¹^M@È™?nXG@Álš?¢àH@Zäš?Ä×G@3›?”ÉD@ªE›?mÇA@9"œ?˜>@n:œ?³ô<@.œ›?ÌÐ>@¿Öš?ëc@@¯š?g•D@O–™?ñC@‹C™?“jE@Þ‘˜?G™C@Ÿ]˜?¥¸<@Š˜?Gð;@Å“˜?ÔÄ9@^›?Ê*E@íX ?›sU@å:¡?\@5Π?0+f@Ó¢?TŽl@”¿£?´on@7k¨?q?q@Vg®?­f_@¦N±?„éK@!÷—?]ÿ%@MŠ—?¸@YŽ™?^Ÿ@®ù?U·-@˜ž?è6@=š?!-@-×?‡¸/@X^–?Ä_9@;p•?Dö<@;©•?á'=@“Y–?3ˆB@ع•?éöE@‹–?8ŽH@6%—?óJ@˜Ü—?ãG@,™?²F@€Eš?QaH@›?ÊúK@;3œ?Ô9I@Þ£œ?žJ@äN?1~G@ý_?¼=C@¾G?q+C@õã›?êJE@’›?ZyE@† š?pÑB@=™?ú¿=@5¶˜?#?B@™?­ÆE@Ös™?^M@´ð˜?5ËL@ʤš?ø]O@5ž?Ò\@êp ?L|a@ ¡?¬™f@fý¢?:k@ø…¤?…”o@˜§?êªr@ʬ?ž²f@?±?9SM@=j–?ÒV%@Å•?Dj@Ú|š?TÆ@upž?Œ,@£Þ?q4@µ³š?ߢ.@GÞ—?Ǭ1@… —?Õy8@”Ì–?y B@ít–? ß@@P—?ë!C@â–?¨ìF@.a–?*¡I@â+—?FF@–×—?½ZG@ú˜?I@>+š?J@ਛ?UWF@óðœ?»ùC@ל?±F@šl?¼–E@{í?éI@V…?R]K@!ó›?!äL@ˆÏš?6MJ@–t™?ÉØ@@íË™?†¢=@ð™?µ D@s š?IäJ@·Oš?lÏH@ëîš?œ&K@}Á?I_V@YŸ?Õôe@¤» ?|Ld@ “¢?0õe@µ%¥?¶m@ñÖ¦?°Pv@ Û©?Po@¨¯?{ T@õL–?ÑÎ#@!—?ëj@¶¯™?]!@ž?c +@–@ž?hG/@ ¹›?Xb-@ó—?ˈ3@t|˜?O;@Lù—?Ñ´@@(‰—?YA@rñ–?QB@½W—?¨E@™~—?rG@«×—?±×D@3]˜?)œF@sW™?°»I@%“š?rD@œ?ÔôD@æó›?‹E@C²œ?OA@s»?')C@ùÜ?v‡F@o?r;F@È4œ?ÎiD@ÐÙš?ôQB@ôuš?ØÖ>@éM›?x->@6£›?T"<@:œ?@¢5@Õž?`ö5@Í?z„F@sàž?rç]@0Ÿ?\"c@|ý¡?1oe@l¥?âÞi@¦?»t@q2¨?õvs@5}¬?á¥Z@,—??¡)@ô}–?f!@Kõ˜?gØ#@#™?¢h,@?ž?_-@É^›?t@+@‡6˜?õe0@@`™?ײ8@™?€Ì;@æ:˜?½~?@ä ˜?—@@mt˜?SÌC@>7˜?L#D@˜?ÃîC@7Q™?BD@ß#›?pQC@Ù,›?žaB@^Cœ?yA@܆ž?Ç=@VŸ?»¾8@!Ÿ?ß—7@Ð5Ÿ?œš4@ߟ?ö+@ú| ?ëÔ)@RŸ?AX*@¨Ÿ? !*@e ?Þ–"@†X¡?Y#@YÑ¢?f–&@Àþ¡?Io4@ÍŸ?ÓO@Ÿ?Ë]@ ÉŸ?zc@ù^¤?#f@"¦?â8q@Sɦ?j‚r@–Ω?.û]@çÝ–?•¡+@j •?…$@Äü˜?Ùâ%@Öœ?-A-@ Î?þJ-@x>š?je)@{=˜?kr,@Å­˜?±±4@’ï˜?x:@ÐŽ˜?só<@5Z˜?&e>@üQ™?¡Õ?@í®˜?Û@@ÀÚ˜?C ?@:š?Âú?@Ñ€š?f>:@Go?«<4@-þ ?f/@¶ß¢?Žn#@ü£¤?î@¦?y‹@‘u§? V @™T¦?'@ô§?;„@dú¥?ˆ @Y`¥?†¿@¢§?8á@ùŸ¥?ó› @3ß¡?Ô4@PŸ?yºG@[8ž?‘¾T@ÀÔž?W\@Õ¢?;Rc@mŽ¥?ql@Z1¥?«üo@%§?“Ÿ^@§™•?ná+@_¸”?hÆ*@Gš?lF)@9?•%2@üåœ?¯,@JÕ™?QË$@”˜?é(-@Žä˜?%7@˜˜?Y:@jü˜?ØÇ:@ºš?u×;@‡4™?6P;@h/š?cÍ;@ ›?%f3@GS?i·)@:W¢?±! @@§?QÛ@œÊ«?æ€@Pã¬?ó\ô?û°®?™Pá?ªU¯?¬Ø?ç‹®?¤o×?¯ì­?ÐÚ?²ª?²™ó?Ÿ8«?v@èK«?7@Ž_§?Ud@EÞ ?Ïô2@à(?0C@…õ›?É{S@ûèœ?6lZ@eûŸ?·^@„Õ£?îûf@pì£?1k@$Ƥ?Öæ\@q™•?„.@¤œ•?V<,@Éš?ŽX1@B°œ?ð3@Àš?T\(@cå–?+ý&@Çb—?é§.@çט?þ6@Cš?a;@8¼›?rt8@Qkœ?úV1@èmœ?ç.@1^Ÿ?†J&@ÙУ?i¨@ÎC¨?b@k®?£æ?l¬°?Œ#Å?Íéµ?>F´?6„²?&²´?¢†²?ÔÕ¿?Ê`°?£„Ð?_ ¬?º¦Ý?x«¬?zÝã?´C¨?\è@ţ?Æ"@IA¥?h @‰Ý ?†É.@5þœ?(=@íš?º@N@Й? 7Y@×k?gx^@B›¡?½ a@o>£?YÚh@7£?Ñ©Y@²²”?0i,@]C•?Ê´2@·r™?´“6@¸‰š?Hû1@Ê5˜?)@µ–?ž'@µ—?• .@™Îš?xÿ4@ /?„2@— ?”P&@ðÆ¢?=;@þ¤?p³@m2­?Θ@ú3±?QÙ?eê´?¸t½?#´?û«?<Ƶ?[ø«?àá¯?~¼?é ¬?¡²Î?:Þ§?¼+à?§ð¨?FSï?O¤?Ó§ï?ÉJ¤?Át@8E¢?„@³ˆŸ?¸9 @)S?QÄ2@\Ñš?ñN?@Lô˜?{J@°˜?¨ŸV@š[š?B‰^@E†ž?#`@x¢?ÕKc@ ³¡?[xW@ÝŽ“?Á{/@ˆÖ–?ø.9@ à˜?LY6@)˜?yï/@’è—?T¢*@ûÉ—?˜±-@Ð8›?àX/@  ?ú°*@Å)¥?×a@Êå¦?+9@uÖª?°úð?68°?Ì Ô?tKµ?‘iÓ?Pɳ?¦pÓ?œY¬? ìÏ?F£¥?ÓBÞ?÷à ?y„é?âI?˜$ñ?.^›?ʹ÷?lgœ?k²ÿ?ÒÒœ?Ÿ@xÏ›?MŒ@f›?z)@Q©˜?Q©$@n,˜?.?-@A—??@eã–?$K@²1—?tXU@o]˜?ÒR_@ž9›?#Þ_@›> ?È_@“’¡?W¨V@_•?žê2@áߘ?øË9@Bñ˜?¤¦7@xä˜?ëÕ3@F˜?žP0@Stš?ß 3@-Ÿ?SQ.@o¥?¼P@m¨?ø @Ûª?~Yü?Ù}«?”æî?¨§?Á*û?@§¡?óý?oÿ?Sû?» ™?…iû?g–?âê@C’”?ëð@Œï’?]ò@“g”?Ç@Ì•?eÈ @⹕?x0@õ–?„@N‡•?ù&@O•?%Œ+@Ôh•?‘É8@Ãp•?Ÿ!G@Ì•?hóT@3—?áÔ]@8¶˜?³1]@Ÿ'?%a@ª]¡?àX@ªå™?+G;@‚ù™?ëÖA@˜¢š?½=@3Yš?õ9@ú ™?MÃ9@p]™?Ù8@e?pW1@?õ ?TY&@<Ê£?T¯@éžž?!Œ@â9š?¸‚@h­•?òX@Õ|“?À' @X“?㟠@¸“?¨»@ìÆ’?«Ó@¢ä’?„,@ºÊ“?~À@)ù“?¨ã@<±“?‹@Ù/”?+o @»·”?ã°%@a`”?ײ,@¹±”?w<2@,•?aÍ@@1`•?ê¦N@Uì•?ËãZ@iø–?žù\@ì±™?F]@0 ?2Y@Nš?+uF@‚™?’DE@±N™?KC@;Ƙ? ÿ?@ƽ˜?s>@–‡—?Ã;@|è—??<@ìü—?¨•8@m”?å¶4@Æb’?&‘2@GÈ‘?Ü/@ª “? '@¥”?Pæ @’a–?Ñ]@°ä—?À:!@›˜?ff#@“ð—?ß$@e%—?nÐ%@ΰ–??ç%@‚–?áÃ&@ ;–?r)@uŸ•?µù.@•ì”?yT3@»2•?¡Ê<@„•?¿íH@Ì#•?ñ U@íÈ•?ÃXY@?½—?ö\@cÿ?Z«V@¯Ô—?ÁF@=•—?¬A@EÔ–?„c>@5—?s@@t ˜?ä>@ž—?+‡A@U•?½Æ>@³Ü“?ëz7@’?ñu4@ÑŠ‘?>‚3@’(“?T©*@Ñ•?)@䆖?:@ö˜?1@Á™?gï@5ј?}ö@zÙ˜?^!@±B˜?%%@\˜?óP(@µg—?·ê)@k—?xò,@ëü•? Æ2@60•?FÐ9@Ì•?Ù¯B@2 •? M@@á”?Š-W@-ò•?è‰_@h0›?¢—X@V•?ÙÛ<@¶é”?º}7@;”?ã†:@Uò–?2>@Й?Ñå>@=™?Ë~>@ÁJ–?ž\>@1«’?I¢+@–?:@·?@ž@ò|‘?S= @Vf”?Q@&g•?…| @Ó–?Þ"@ôõ–?V5@ÿ`—?Ss@”Õ–?/Ä@ÖQ—?ú­@vû–?gi"@gâ–?_Þ%@ÈN–?žÉ.@—ò”?ÒW2@‘Ž•?ñ;@bf•?Y+B@d%”?ÔáL@ÝÇ”? \@@#™?-s[@Í“?¡Å0@W¿’?™û4@tþ’?ãy4@Þƒ—?Èã5@-“˜?}:@M ›?¿¤:@ 'œ?‘˜8@™?(#@_¨”?fL @Yö‘?š þ?¨]”?‚Ãô?ØŽ•?–4ø?ej•?'Ëú?(–?„k@åâ–?ã„ @ ’—?Ë1 @lf—?¼£@ç—?î¾@€—?©@Zo–?mZ$@GL•?H*@$•?.²0@¦B•?êÐ6@H7”?¦?@Ûª“?·ºR@§ž–?-c@bN’?µ,@ô”‘?F1@,þ’?”›2@©–?Êñ1@Íà—?Àa3@$¡š?35@O?ñ2@¤R¢?Û7"@Å#?§É @>k—?q‚ù?”¼–?`ñ?œì“??Šò?•Q“?’z@„B•?Y@%˜?Íà @šY˜?Æc @iw˜?jk@ü—˜?ï‚@î—?h@Ö?fª#@ Æ”??Ì'@Ú`•?!.@èx”?¬“4@v¤“?›ƒJ@;þ”?SNe@$a‘?ˬ*@Â@‘?5¡/@ôÓ’?ö3@El“?v^3@z{•?‘?*@Gߘ?ÖY,@— ?áw0@ã£?¢@ä9¥?c@•Á£?š @:JŸ?¹ø?茗?Fó?´Ã’?2éü?K²“?BN@·—•?ÔŸ @*·˜?Ò@¯á™?;@r„™?ú3@î˜?•Ð@uÌ•?c#@K2•?´î'@û$•?"˜,@Òx”?’š=@Ù”?4Ûb@Q¡‘?v1@-ø‘?^8@œà’?þ‡<@Í]’?˜µ4@™©“?•ä&@yž–?8ä%@Ö=š?¸-@[ ?9>'@{¥?ê@ n¥?;j@ü1¦? “@ö¦?Fý?ª ?)íü?þ’–?ä®@­–?:°@ P˜?Y @R6™?%b@{†™?°[@°˜?@§@Æb–?Ð'$@2ú•?þÛ'@ÁG•?)7@>{•?ŽÐY@àm“?xã9@4¥“?S‰?@¬’?|M@@¯¾‘?$v3@•›’?~#$@ñ’”?© @ ™?Z¨$@µ ?I$@Üs¡?Ñ]@ÕèŸ?×G@T¥?àù @ø©?:Ó@lΪ?4ø?Àd£?P.ù?¹?e¡@%¹›?µ@ìš?ù‰@kwš?Ún@z˜?Ä#@cx—?˜é&@´—?8µ2@äÇ–?eðL@Vü”?6—9@¨Ü”?5 A@Óê’?ÐC@ï«‘?ãÃ2@»‘?®Ú$@k1“?ÿÊ@e—?›Ó@3œ?_W@IÑœ?|‹@?Gž?Ïz@x]¤?{é@öç«?….@µ>¬?½!í?J¦ª?Ìwè?¬a¨?ò? Ò¤? ‹ @é¢? @UQŸ?É‹@áåœ?žA&@¸þ™?‚,4@/M˜?CxE@œ–?LB;@#Ú•?ÀE@œ³“?Ÿ­>@MS‘?ôr3@iÔ?P&@šæ‘?@6†•?¸ò@¯x—?›I@Ü+š?«-@^?ºL@¹ó¢?Ö@ϧ? #@š™¬?P¥î?"Öª?©Jâ?å>­?Ujç?ÈR­?DJ@¶L¬?E @·~§?žÛ@ð£?ñ)@Q¹?YZ@@i»–?æ8@L’–?ÙÙ<@ Ò”?äï<@û}’?L‘3@) ‘?c'@p(‘?ÞU@©ˆ’?y@"A•?R³@ñë—?¤w@:¬›?r{@¹OŸ?I¯ @UA¦?þ®@¨?uRø?DO¬? è?į?;æ?Å:µ?OLå?m´?æå?†,¯?G@g§?å)@ö˜?Ñ+@c¼—?ìv6@¦†•?N´:@Ì“?¿4@Ñ’? É+@8·?ÜN$@“?‹½@Ø—’?Ê@N%•?ä<@p¸˜?sÆ@¥?Ö@¸¡?Êî@݃¥?¡@V‘­?%g÷?t ³?JDë?Ûù´?Å5Ý?uµ?uí?œc°?¤¤@i™?ÑN'@5Œ˜?Q§/@Óê•?Ì7@ò§”?tÔ9@¾’?IV2@S?+Ú)@(é?µ"@`‘?ô@ñó’?õÀ@ÈU•?©/@KL™?D@Ç…ž?8@QË£?« @ƒKª?X%@¢ª?¡…ü?ºY­?B°@úE®?‰¬@ãÀ˜?þv"@¾Ž˜?öÖ'@v›–?[.@,”?7@9ü’?[7@ý±?~B0@h½?íæ)@×—?fµ$@Ž¿‘?Ö™"@YÊ“?lÅ @Æ´—?§Ì@3î›?š™@P÷ ?ž§@Bë¢?¡Ô@‡ß¤?+¸@#D¦?:â@ :–? @°Í•?£$@ÀO•?iï*@«´“?€2@c’?Òù8@^K‘?óz:@€8‘? 04@ ¾?Yã/@÷S‘?m-@{P“?Ç(@&¢•?É)@¥g™?%Z(@¤œ? (@k`ž?¼‚)@Ï{Ÿ?e0@õÁ“?ó!@I®“?ŽÅ%@7ß“?(")@¬õ’?Ö-@#’?88@’?Þ=@ŽÌ‘?Ù}=@ðÈ‘?Nú;@’? m8@Å\“?÷5@•?KÐ8@ѹ—?ª„8@–Ù™?ýš<@‚­™?/fB@r°“?|G%@õn’?¼Û(@@’?®Ö)@ä‘?,^+@»ì‘?j6@é:’?9á<@¥C’?ãÌB@í’?•§D@z‚“?w I@“„”?ùpJ@i‹–? …K@aV—?ý]O@iú–?üÎS@ß“?â,@>+“?æ—,@é<’?nê+@ªÌ‘?£/@#š‘?ç7@'N’?Ê>@o “?mÇF@ÅE“?@¾ “?mB@Ф“?ßE@ôê“?Œ·L@؆“?_eU@*þ“?ÇYa@@”?;Êh@vÑ“?|f@3’?3¯H@ò‘’?+öM@qÙ’?p N@èú’?ëÄZ@‹Ð“?»b@ø.“?fd@JÃ’?i`@ÉÈ’?9£J@´=’?^ Q@ªè‘?‰³X@ÖÆ’?ä*Z@p ’?ïS\@üP‘?IT@Œ ‘?ÄO@›Y‘?¤ER@ï¶‘?»åS@]ÿ? ‰N@ìc’?¶|H@æÔ?Ó-P@ý€‘?®O@Üà“?Û]D@îô“?ñÈ?@A¥?ï¾?@œ™”?¨‚5@Uç–?šµ7@mW¢?§ˆ2@‘&Ÿ?ñ5@Ñ”?¨—C@]œ?#ð@@>¨œ?@@H?c&F@£çž?²_K@Wèž?aèM@‡Ÿ?¤îS@.ž?]ÀS@gQž?ÿM@Nž?ÐvL@‡ž?ˆIN@Q?þƒH@Ä@œ?âE@Òk›?x(F@’wš?YÝG@;™?ö¾H@/™?«ÇI@,ý—?#ƒH@ݘ?x‘J@Ýv—?²-N@ëÙ—?ÛP@Dª˜?†O@ œ–?>LT@犔?^ÒK@p–“?¤ÙE@wü’?wrC@6’?CG@p’?uûG@¨Û‘?.E@±‘?f9C@<‘?%wA@ ‘?]õ>@,t‘?Éò=@÷Ö? >@l‘?*|A@M¿?¶RB@ N?|ŠF@Ì¿?áøH@Mk?o;F@ý?‹|H@ áŽ?¥ªI@íÒ?“aI@ÝõŒ?8ýK@z3Œ?h4O@Bߊ?sAT@a8Š?šäY@OáŠ?f—`@GMŒ?•°h@¡º?]Âl@Y ?Éei@ñDŠ?*Xd@ÅÁ†?D \@‡?EU@áyˆ?CÆ\@xz‰?zni@£ŒŒ?èË~@uo±?ÚU-@ί?Xæ1@ Ϭ?‰€6@µ*ª?ý“7@÷™§?‚R4@†˜¤?".@ó‘¢?H++@Bd¡? ,@wfŸ?9s,@)¡?H©*@!Tœ?–)@½‚›? o)@ãcš?“Ì)@)+™?Áe)@Þ>—?àÝ$@vK–?”É&@´–?Û-@R7–?¸þ4@õm–?,A@§–?à·I@^F˜?‘ÅM@Ómš?Í„Y@&C?'_@fNŸ?H›W@¿'¡?»&I@0À¢?þ©?@"j¥?YÐ3@@9¥?ø-@YU¥?H,@ÊÞ¢?^÷.@…ïŸ?|é3@ê ?*.;@¸zš?B@aZ˜?¾J@Ç•?¯½S@Çê’?MåT@.f‘?¤1Z@~c?uY@Ç?Þƒ\@gR?º«b@ØR?_Él@«ÆŽ?'…t@XŽ?”­y@…_?D|@ËNŒ?û:€@P‹?ûv€@d|‰?â~@#ш?ê |@Æ–ˆ?dx@Wˆ?Ù^q@¤¸ˆ?xLm@C‰?®n@–Ö‰?ä s@øf‹?Ì·v@5f?Ö€@Já?þ”…@6½²?\œ+@«¿²?@.@^³?ÿ+@;³?ŸÝ&@ÔN³?ÒY&@®Ñ³?øj(@푳?÷)@`Y²?D*@t‰²?íÒ/@#¸²?“`0@`%²?o©0@ƒS³?Å.@½¾´?úR+@]T¶?q¹)@%y·?ؼ)@º?&.@÷´º?~Í/@Lg¹?Î+3@+=·?ÂZ:@Å’´?œ–I@t̲?ëøT@Ì»±?Á3R@Kΰ?³J@ذ?ËC@à°?Ò‹=@ð|¯?"<@Q¯?ý–:@=Ü«?8õ3@2ž©?‡(/@r=¨?ëç-@†&¨?»ÿ-@.¨?ø~1@bR¨?õN6@œ¨?—M;@o¦§?õ«@@J·¦?ÇA@+˜¥?‹»@@œæ¤?ßt?@ Œ¤?Ï==@_]£?ÈÆ>@è¡?*F?@j+¡?.X@@ÕøŸ?äA@ ¬ ?¹¹G@âx¡?Œ³Q@Æo¡?S@, ¡?JS@ן?Ï1R@zþ?ŸVO@+©?ÜpI@?Þ5C@ó9œ?fs>@‡ˆœ?Ò8>@…V?dA@ÜE?ïÌA@÷‹?wÈA@‹?Ñßp@[Ĉ?пe@«‡?QZ@®É†?G[@£kˆ?D­`@Y€Œ?9f@KS?m h@œgŒ?&Eg@|°‹?þÙe@è&Š?‘à^@ö ‹?+V@G|‹?‚³O@-Œ?ëÙH@TŒ?kxE@¤ÉŒ?D@ñ©?š=E@¿{Ž?yDB@=¾?e¡D@º\?M'E@Ÿa?¤A@iÒ?67<@Ó¾?(€=@ß[‘?CŠ9@ór‘?3¦9@ÜÜ‘?³=@ÔG’?—â@@R’?øÀB@õu’?ýC@lô‘?K#?@ï_“?ˆÞ:@·“?›>@•}”?à½D@•D–?ÜP@7•˜?ZÌN@Þ˜?ä7I@ÛN™?¯ÓG@')™?P C@ý˜?=@™„™?HT>@?Lš?\@@Äuš? NB@,¹š?ËÝ>@ƒŒœ?:M>@ñž?D/?@Útž?ž B@/ž?ÎÈE@kk?x%K@–Û?¶O@–¬ž?LR@Œœž?R.M@…gž?/ÜJ@-]?WyC@‰œ?ï‰@@À¯›?v‘=@•T?xe>@@œ‰?‚Bk@=ÿ‡?F%b@ïL‡?¡i]@a4‡?ìP^@8¬‰?­Û\@cKŒ?÷]@Ì?°¨]@E¬Œ?7Ÿ\@I ‹?+Z@¤_‹?X³S@ž#Š?WN@k¶‰?²øF@³Š?Â…B@Œ?`A@`?aÕ>@v´Ž?09C@CÌ?ÁíE@Ò>?T¤A@1þ?àbA@bÔ?W @@ÛÅ‘?¡ÉA@z’?O£?@Æ’?u-=@¤Ë’?LsC@Ì’?lÚC@,É“?ýXE@»¼“?€A@]ž“?!yB@ÑE”? Â>@•û“?{X>@øæ”?ZD@h–?8˜H@^š˜?[kF@Å™?ŸD@.\™?NÅC@œ™?–?@âD™?0;@Ú‚™?êp:@ƒû™?Ÿü9@EFš?åü<@óÊš?“D<@¢Bœ?_.<@‘ó?_>9@z"ž?Þ_<@G#ž?Øò@@™?]\D@Mç?bJ@$zž?vN@Õb?."L@mÌ?R H@ •??aD@cB?LB@ ??@À{œ?ñD?@ßiˆ?‘Ýh@Ì(‡?Ìb@f®†?—.\@½µ‡?6\@LžŠ?ŽÈW@AèŒ?­W@ºìŒ?#'X@Û¼‹?É‘Y@Yn‹?#4R@”’Š?sXI@f‰?—B@9‹?²œ@@sŒ?¢êB@JN?Þ‡=@b\Ž?GD@ó¨?:éK@/?Ã+H@Öv?­FD@€L‘?ÄF@ü‘?‰G@ø¾’?¶E@–h“?3ªB@é“?6ËD@þ”?:—E@üД?@E@hw”?vD@1÷”?²}D@d€•?ôF@Mœ•?˜ F@‘²•?ÎH@D¤–?T2K@ô—?žñC@ ™?uB@ÝÆ™?˜B@±š?þ†?@H3š?û¦=@²ä™?t:9@ÇOš?|Ü7@äY›?}m:@HÇ›?* >@ˆ4œ?Æ->@¢†?yÛ:@j£ž?;@1ž?@^=@îß?? >@¬Â?@b®‡?ˆ/g@E±†?Ìe`@” †?šÙ\@™ˆ?HX@w"Š?ÝaX@‘®‹?ÀøW@‹?«¤T@§&‹?¡ÿN@láŠ?-²D@ä‹?Sî>@#O‹?$þ?@T?zBC@5?Y"C@;ïŽ?ÁE@Ö.?ØL@µ;‘?[ÎN@—¬?>TG@]‘?¦ E@¸Q‘?‘vG@ɧ’?Å>B@,“?øB@ʲ“?¤»A@«”?ÙA>@Òù“?øÑ@@ët”?±?@9T”?Y"@@§<•?Ö/B@^ñ”?ÿÆ?@Ä”?¨C@„Q–?¡D@Kˆ—?¬1E@íÚ˜?C@b š?ågG@ù™?ÒB@H¬™?Q’>@7™?2Õ:@Cæ™? Ì9@%›?!<@ÕIœ?ì>@äœ?…U>@NM?á{;@6ž?(e8@ Dž?Ch6@È¡?Øe=@`¥?G5B@ Ø?ÙñA@3Í?ÜëB@e\œ?+ @@X§œ?gú?@Ù?é“@@ÈX?+¬?@Ge?âß<@b.‡?Õ‡h@Ñ^…?{d@õ…?y^@/ˆ?³S@³¼Š?P…V@‹?çRT@ß,Š?XYJ@HÉ?GC@MðŠ?-{>@¸‹?¾X=@T­?ˆô>@Š–Ž?ÞE@º‰Ž?^öE@ÚE?ÂÈH@îv?“æN@½‘?±I@ø×?Ÿ¤C@÷;‘?YøD@ì‘?A@@¬\’?X¢<@:ž’? 9@£™’?Ñš:@Ç “?¯>@ó^“? †@@C”? =@äû“?k|=@w ”?(¿=@JK”?t>@÷Y•?Xb?@„Á–?&gB@_ ˜?ÿÆ;@ì\™?ëÉA@*¡™?x³A@t™?ÔÌ=@µú˜?Ë:@ €™?†ò7@©š?@“8@N*œ?Þ7@xœ?µ;@©õœ?åˆ:@b?)78@eß?Z½7@·?àß<@n‹œ?¿tA@ãœ?+A?@?›u>@êvœ?`÷?@"œ?÷=@¯§œ?{ô:@Éß›?Ø<@ÂÅœ?û<@Î=†?Lzl@na…?”Nj@‡?jŒ^@qê‰?«NR@‹?A°P@ `‰?ÔBM@:Ú‡?äB@ÂÕˆ?¤¯?@ˆ‹?ø`=@0D?6"=@#3?vëB@ãE?½.I@ìŽ?kŽM@?ˆGM@’·?ôM@É$‘?E@ñ’?@ÅC@¡Œ‘?æ¾B@~u‘? O>@¯`’?69@7ë‘?>:@4ž‘?ê¶;@wá‘?KB@4·‘?GoA@Ô½’?CA@ql“?­1>@ò”?NI>@Eê•?‰d?@uÞ–?û@@Ù˜?‚#?@a–™?÷JB@­™?Ÿ¼=@Ÿ±˜?‹ç7@f˜?é*7@D™?Xf6@¯šš?0u4@§H›?÷È4@Ä›?ë¯7@œ?…ö6@ûRœ?!ö9@É?s%8@´L?çÂ=@@ ž??·?@»U?Íl>@oGœ?‘"<@œ?@Ó¯‹?Ê´;@ÃMŽ?·!A@Ð?ÉÌK@+¡?º­R@ðüŽ?ìKS@µ•?õ\M@ >‘?ãI@ê@’?"ŒF@Gâ’?^lF@㌒?l¦F@`’?`wE@¶ý‘?:@@Ü’?„@?@Fg’?'G@þW‘?7I@u4’?ÀF@û“?eC@Tˆ”?~ÃC@D—?“ƒ>@8˜?!A@÷†™?ƒmA@âHš?­žC@¹™?\?@p¿˜?K ;@Ä­™?èº7@w€™?©X7@6¨™?a5@š®™?ùG4@óƒš?:4@y›?‹E3@$›?–6@=›?xA8@fΜ?=a@@’Ø?w*B@‡>œ?øÂE@D³œ?Á2G@¾çž?ãˆ?…§D@@‘Š?¸Ù?@ªÔ?d@@¼!?pH@ºR?¤ÚN@Ä6?ÆU@Yh?B+S@½C‘?ÝM@c–’?KFL@#î’?™*R@Ï“?8½R@!h“?ÉQ@@Ä“?Ä,K@ŒÅ“?ðRK@X%“?GwP@Žs’?\ëP@Þ’?yÁK@‰í“?‘0J@V½•?¸H@J7™?©Ù?@þœ?w<@áï›?–Ø>@²¾›?šF@7”š?÷¦A@*Eš?í™=@¥¶š?¦Þ<@@8š?¾Â6@§´˜?KÓ2@‡"˜?=Ž5@Ôª—?²`3@<à˜?¶E1@š?Ù‘1@¢eš?h8@"¯›?§?@=´œ?65D@ þ›?üKK@;œœ?7M@Û¿ž?h¼H@M£Ÿ?÷óF@ˆ¸ž?=I@ lž?.ÜL@¦¶?ðM@|à†?Ùm}@Ö:ˆ?âXv@¯7Š?jêm@v,Š?ÙPg@ ¬‰?’&V@Z‰?¥N@+Š?02C@¼‹?FG@À?´ÁM@ìý?†„R@÷#?{V@³q?|ÍQ@xì?Ù/Q@B ’?$0W@MÖ“?]ÓZ@dè“?Qû_@D3”?Y@ÂД?„ŒU@#›”?ÏXU@ÏÓ?ZGX@£w“?~sM@O“?¼5E@Èé“?`ïD@]–?bD@\š?Q²=@·?íô2@–‹Ÿ?8£5@„Ñž?Þ4:@OÑœ?P°B@µÛœ?ü)@@(Cœ?=û@@åYœ?íì9@A%›?Ù•7@ë™?5#;@:s˜?;@ÔÞ—?— 4@N@™?§µ1@=[™?‚¿:@s9š?ȇ@@¿°š?ïlB@Λ?™•M@Joœ?«¥S@í´ž?RÍN@×§ ?(ŠH@É…Ÿ?D#N@½üŸ?ÂO@èÜŸ?þÞN@ Z‡?Fç~@) ‰?£µx@gŒ‰?²Õt@äŠ?E f@þŽŠ?³W@ 1Š?ö$L@­jŠ?ùßJ@NÈ‹?Q@eß?´bZ@ôk?°X@ÑŽ?nžR@‘?:S@’?9ÆX@¯4”?ä ]@º”?.`@q“”?PX@ëC•?‘ S@ãc•?,R@2M•?U@·n”?Ø>M@„r”?=S>@kG”?Î79@a •?ó£9@Ûò™?_5@ž?¯Ç)@òÞ¡?îü(@œ(¢?  ,@ ?-×5@^ ?©O<@+‚Ÿ?>=@Q_Ÿ?Ù64@¸<Ÿ?Ý4@8)?VÓ<@‘›?A@£™?YA@an˜?J@;@ψ˜?Ù‘:@¤™?ÎA@ÀOš?ØmD@§Y›?h L@7?õ3W@ÅAŸ?VQ@Š ?2 O@Æ¡?ÎO@©£ ?¡÷N@]æ ?­°P@vžˆ?ê~@Ñd‰?xô}@Ⱦˆ?Ãèr@·’Š?Œf@¼K‹?YïX@ë‹?ÿ”T@gë‹?×–W@y“?I¯]@üm?ß[@VL‘?Ì[R@…ð’?2P@‰/”?".T@fº”?Í¡U@›A•?DËV@_u•?„S@¾†–?ІN@:D–?ŽƒO@ï•?¸=N@ˆ•?QM@d€”?ÁC@¥f”?{=8@Ûd—?:3@™?Õ0@îÒ?¹°*@x¡?Ò$@± £?Ä"$@öñ¢?‚+@ß¡?i 2@= ¢?Î3@"2¢?,ú&@|:¢?/ 0@ïí ?ÔË3@ü?BÔ8@Þ×›?,…=@[Ä™?¸û?@²ú™?eLB@%›?¥CB@˼š?‹˜D@J œ?C‡J@X¯?°ØS@{GŸ?÷R@Î7 ?rˆQ@[†¡?*ÁO@M¡?5ÎO@41¡?öT@‰?˜‘@M–ˆ?®}@Lú‡?°¬n@|†‰?nÎ^@8û‹?Ñ[@ô7Œ?\X@„n??Ù\@}?`°\@*Š‘?;ùT@=ò“?Ì^U@½0–?kwS@ÖU—?CñQ@_y—?%ðT@Äœ—?8WX@²—?aÒT@ßß—?¹qT@ôô–?X@=‘–? Q@J –?XìF@=G—?SW<@CT™?v ;@Ûwš?ê&:@w)œ?$3@jΞ?ôÓ)@{ ¢?ˆ:#@£?fÍ)@my¡?vÛ,@Cý¡?ÓŽ.@t¡?ÆC @Ì{£?n @¢¬¡?(@<¡?jí*@¯±ž?AÎ4@£aœ?RÏ;@:ç›?rC@u—›? ÂD@jlœ?h]G@_?l/J@}ò? LO@ù‹Ÿ?ïUR@/õŸ?Ø÷T@{¡?bfT@Í¡?”+Q@ŸÞ ?[”T@­!‰?”Ÿ}@ø(‡?¡Jy@*‡?~n@$®ˆ?‹gZ@#¾Š?}U@¦™Œ?­Y@E¨Ž?»`@ù?”Ÿ]@áî’?¼º]@ù­•?ûûX@ÁL˜?í±]@á˜?_c@ä˜?zb@6™?ÀÕ^@dɘ?œEa@#a—?V_a@˜?È\@ƒ’˜?yTP@¬ù˜?hkE@È4›?‡iC@=œ?hJB@¡B›?¤3:@6º?Ö2@Ù£?„é*@uD¥?Kº#@²‡¥?¨•,@0½¢?,0@ ?¶(@·‚¡?Na$@Ó¡?o&@”E ?ÚG-@Nûž?]B5@¾;?öÿ=@4_œ?RnB@iþš?‘wK@TLœ?^eL@`?˜áJ@;Ÿ?oP@PÀŸ?ÈT@ËÌž?3nX@_<Ÿ?¬rS@ÛŠŸ?êO@3> ?˜aJ@%M‰?;tx@؇?uªt@Ö?‡?{Ÿb@ëˆ?¡W@‚F‹?cY@(nŽ?[…_@¹æ?È_@ ’?ŒI]@Øÿ”?c@~¥—?hKc@ê6˜?«Hb@Ê—?¼kb@•½˜?Æ]@{O˜?•¦[@B—?WŸ[@ù-˜?/B^@F3š?»NW@<>š?bO@ë®›?Y×I@—ª?+ýB@uåž?­ç<@† ?ñý6@Ì®¢?’J-@3–¤?Ø"@Q™¥?¹d-@ ý¡?ø¬8@.z ?¢1@B¤¡?t•2@W ?™—2@öËŸ?{5@¨ž?ìÆ>@×Kœ?ÆÙD@̱›?.ÑJ@µäš?ÏP@U›?ç^U@z´œ?( U@žž?ÏsV@¿Ÿž?ÁnW@Ó,ž?MT@Ä2ž?®õK@ù÷ž?Î×C@††Ÿ?!jA@dŠ?”qr@扇?Å´j@_ó‡?ôZX@gE‰?Ù+W@м‹?7ô[@Ð?Qb@±’?³e@æY”?,e@+–?[©d@‰Ã•?drd@½Ù”?=vZ@,”?UKQ@#s–?ÝœJ@{²–?wSJ@{ê–?9¾P@:µ˜?3S@]ö™?P@ù›?EP@uµ›?oPG@poŸ?Ò£=@†þ ?•ï8@´¡?_/@'õ£?³ì#@ü#¤?s{)@Ÿ¡?~W9@3‘ ?šp9@ÂuŸ?ä“=@“?lB<@µ?á6@µè›?¢|B@–œ?¦¡I@(‘š?q"T@À™?3¨V@ÆJš?;ÇV@šÐ›?ÁV@]|?gÊV@8½?Õ*R@y¸ž?xJ@ËLž?lcE@ü¸Ÿ?è…?@3 ?¼t>@ƒíŠ?†Çh@ñ‰?i¿Y@?óòL@¡qŠ??gR@£Œ?/_@,‘?€ûg@½g”?mb@ëf•?th@rë“?-a@n’?îtS@W ’?Ž>D@"U”?Zà>@4ð”?SÏ@@ ¼•?À«D@…3—?‘?K@˜?²L@š™?ÐZN@fPš?m­R@"Tœ?Ø„G@ú³ž?ì<@- ?”K3@8¢?[Ÿ2@ ž¢?ë>0@iš ?w 5@E£ ?Ðú=@þ#ž?Ü¿;@,™œ?"È8@?К?•9@¹I›?åD@ñ­™?rN@¸™? Q@²5™?8ãT@D…š?‚¸S@"ð›?Ë/N@P}? LN@IŸ?|qI@@ãŸ?‘E@^$ ?g®B@¥)¡? @@@(¡?ž?@õ\Œ?ô[@E$‹?çQ@–)‹?BÄJ@òNŒ?+R@ÛïŽ?EH`@ b’?—Ê”?,\@—¼’?R`@ä?¸‰S@TW’?¬OD@¡£“?4à;@nÚ”?‡P8@ˆ•?îS9@/–?@@-Ä—?8LA@$Ü—?‹ÛD@/‚—?ÏIL@)ð™?’L@aé›?¾ A@½š?/_7@(²?O¤7@0ïž?<#=@K‡Ÿ?•f7@œ¢ž?®<@vÉœ?‚;7@ œ?lV1@F›?2ü8@lš?™™B@ w™?íM@)û™?ø©P@¥xš?òîK@ÐÙš?x¿I@í.œ?Ä=F@Ÿõ?ÛÁG@gn ? H@i?¡?×C@^#¢??¼@@О¢?Hß>@/É¢?ê«@@ù?bÞT@ßÕŒ?¹ÜN@ô?†ßJ@®Ž?—ÔR@²ð?d`^@eú”?3ó\@v¹”?ˆd\@z‘?żR@z§?¶'L@‹1“?j:?@YÀ”?Å«9@–•?¬–6@Ü–?:—:@,^—?ö­>@í1˜?M9@H—?k=@²˜?:îE@¤+™?dÖE@Ó÷™?aÉ>@ìœ?â†8@žH?jã:@Ø?´8=@Ö¦?L7@~0œ?ÿ63@_Qœ?g 3@uðš?Õé:@âw™?[;E@I1š?%¯L@2Þš?}PK@=¥›?W D@Ýœ?«‡A@éH? ¨A@Šsž?ÄHG@(¡?jÍF@¯á¢?GpA@›.£?ßÊ=@1¤?˜d=@úÈ£?úF<@Ö¨?HˆP@QAŽ?hèO@šÞŽ?™cL@$F?Ç)V@ýF“?…Z\@c`—?@ÎZ@ÇÅ”?45V@ê?R@Ž”‘?òÂE@¥”?æA?@xË”?»!<@8È•?(=@ºª–?·=@)²–?$L8@>¿—?g9@DÖ—?Ⱥ;@rb˜?_”B@Í[˜?+D@/™?tÈ9@Iœ?09@¾Mž?38@4 Ÿ?ô–2@“ûœ?7¬4@â³›?Õ7@üá›?k=@ ~š?„¬C@V›?ÈE@,›?/õ@@2—›?»=@?MÙ8@a:ž?].<@ôÛŸ?qYD@0%¢?L\C@x¸£?{¹>@8j¥?Ð*<@°@¥?å<<@h5¥?k½:@O ?ùoN@ûŽ?ŠÌN@ÑM?GT@{“?ZåZ@H•?\\@e˜?_=X@”?UoS@«‘?àJL@Dv’?Q+F@?Γ?¶IE@7|”?Õð@@§§•?À_:@Ø$–?GÌ6@ò«–?!6@n—?„:@€˜?my<@mS—?¡°C@寗?´ê:@X-™?ý>;@æœ?„þ5@ÉÊœ?6*5@Uœ?‡ë8@*Ÿœ?Œv<@¼›?óÐA@Ú›?¥C@θ›?°]?@9?¬©?@Fh?È›<@ÜÆ? ±:@œgŸ?ñÜ=@ƒF¡?Ö1@@‹"£?™L?@ÑÕ£?­Ö9@h¦?ªí<@<4¦?N,@@ä¦?:P>@?ËŽ?f÷J@Ò¾?P@sŽ‘?úuX@Ø©“?=—^@&–?Pób@â?—?Þ™]@ÎÚ“?ÏQ@dï‘?I@8<’?\~F@Vד?T_C@}•?p<@¹Ï•?ª6@Ív–?‰Õ5@…p–?ÄÑ9@ç_—?ÐØ8@×—?Ä;@¥Ì—?€Ð7@O"˜?wŠ:@Íš? t:@†\›?¢7@«å›?T¾8@ж?«Š?@ýˆ?“#@@0Óœ?…ÙD@©?‚@@Ò?^ëA@ÕSŸ?W€@@Nåž?œG?@êÑ ?…›<@±¢?™9@„Ï£?˜7@·Ÿ¤?;@?¦?ô4@@Jµ¦?“–B@qÁ¦?MhC@òÒ?Ñ’M@w?tcT@þ‘?{]Z@*ƒ”?ìŠa@‘–?‡èf@c–?—Ê_@Ñÿ“?Á]P@ŽÐ’?‘F@Qg“?Þ‡A@ú'•?ŠKB@ôŒ•?ÿæ:@Tj–?ñ+4@»ð”?ë;@y4–?}r7@ã–?»L5@(—?8X4@G‰—?NÝ9@f™?³=@G;›?«6=@„œ?½_>@ïüœ? “@@¹C?^x>@Å?ÅOC@`ž?›±A@)¦ž?™æA@ëÍ ?jE@ºçŸ?LÒD@ŸB¡?>?@z¢£?X :@ÞH¤?u7@ñz¥?›ø@@Àn¦?P¾B@›§?ÑD@h§?h2C@8Ã’?•ŠL@ÞN‘?æNR@>Õ’?L[@7Õ?1½c@("—?tÅd@SQ–?ÿ‹^@ïi”?QPN@Wˆ“?zÓI@¿“?kD@@º”?&HB@Óï•?Ü0<@-•?7ñ;@ú”?1þ;@#Q–?‰Ú8@ð–?µ5@p¼–?Û6@¨÷—?×5;@?í»>@_›?È@@ŒXœ?ú(B@­œ?æA@nÙ?m?@¿¶ž?È—>@Ÿ?üÇ@@"f¡?îG@Œ ¡?U¸H@΢?äøB@@Þ£?„•B@”Z¥? Ë=@¦?–B@´¦?'ÚB@ɧ?ŸgA@_ÿ§?ÖÝ?@ã1•?¸3G@솒?úÆS@¹r”?õE_@ôЖ?ð+e@Ú…—?Þ3_@zn–?ÏæZ@Ås“?E„M@%“?=¹D@…“?Í»D@J”?PLC@³I•?’ÅA@‚Å•?ÇñA@ʹ•?˜>@Ÿ—?^Œ9@{R˜?‰|9@˜?pç:@i•™?h˜?@óÚš? `@@Û›?õpA@°aœ?FfB@dSž?Ç~=@xó?Ä6@@mìž?E@õR¡?dE@Ð{¡?ÖQI@Ò³¢?^*C@¿¤?œxC@µ¥?Ü*B@kÙ¦?=¶A@³J§?iD?@êê§?Äi;@š–¨?u9@Ñ—?¶ŒB@冔?^¥P@Ë\•?Ù_^@—Ü–?Bza@£6–?²jY@j–•? R@Vº’?Æ#J@Þ&’?ÞUF@ñÆ’?uéE@þ@”?¹ D@•?ƒ"D@Ç4–?D[C@à¶–?è_A@·°˜?š-A@Ÿ&™?Ψ@@7 š?åí>@R_›?ó_@@mAœ?œ,=@rœ?+.B@õ?jQ?@”–?u?@؇ž?öàB@A ?éFB@-¢??hC@Z`¢?à­C@F”£?=ž>@{E¥?53?@"8§?Óþ=@îñ¦?† =@]¨?øð9@…j¨?£²7@Û­˜?6B@1ã”?QER@޲•?+E`@ëB–?]@ø•?EÎZ@¶ ”?dQ@ÈG“?+®G@©ù‘?©FG@É’?LAI@þ—“?®OH@””?+F@4ü•?àBH@*¢—?ø`F@®{™?›YD@üÚ?7@@½œ?ª¤:@ª?ò68@ò"?¹=@é;?DÞ@@Õ{œ?F˜B@>ÿ?¸ D@dŸ?Mù@@ ¦¡?wØ?@Ò¢?xòA@NÀ£?‡=@ 7¥?Çy:@õz¦?Ø.=@®y¦?Žb;@x€¨?ì¥9@•x¨?q7@„¦š?“B@wÚ•?õÝV@gè•?|_@Ø^•?˜O[@%ý“?¦ÐV@t”?d_J@ }“?×E@“?\ÉF@Œ%”?¸6M@Y7”?AQJ@Ý«•?œýK@Ï£–?©ÀH@à˜?üE@Rš?%.<@¼Ž›?Û7@6?ø/7@û9?Ù=?@÷¹œ?¥D@¼µœ?áI@¸r?,SF@á2Ÿ?OC@Žï ?ñÌ@@‘¢?¯¥C@<¤?‘g>@sä¥?ŸŒ8@Ï}¦?)Š;@ý §?™ ;@ã§?Éð;@®w©?}D5@ä“›?k:H@tˆ—?öÜ^@%ÿ•?_B_@x3”?ø*W@沓?û¸L@ŽÓ“?þH@Xr”?};D@’`”?ĘF@z•?VN@z–?aùL@<Ç–?ЯH@Ä$—? µC@ÿ€™?ô<@¸K›?Û];@Àœ?h·:@2&œ?2ÎC@ê(œ?kI@Žx?iQ@.™ž?/yN@讟?mJ@Ó±¡?x¼E@ž»£?¦³D@Ц?› ;@†³§?Ú<@X¨?¤b@@•¨?4A@¨š©?ÕB@8Í©?D&;@ó›?БL@-=—?4`@/•?Î&[@7“?QÚS@‚A“?QÇK@ûª”?•C@hI–?Ò½A@G—?¶&J@-´—?ÿiJ@áy—?ùE@™y—?ý*E@\™? uB@·Áš??@¸Ã›?Ù¸?@hlœ?XØD@Æ%ž?IWM@.yŸ?ÓDX@h¡?Ý7X@«¢?èQ@’ó£?ÙÂN@Xå¥?¯åH@8‚¨?2LB@Õùª?Œ6B@Ô–«?LG@ •«?SÿJ@œ¬?½ I@Ç«? y?@E\›?EôP@-—?]@/¡”?)T@EÒ’?ëùO@wC“?cOE@ëG–?r‰?@Ô(˜?‡_I@× ™?srJ@šØ™?ÕE@¡ˆš?ý„F@üš?CG@×’›?÷`E@Ú¾?£?F@4Ë?ø•J@–îŸ?Ñ(N@ ;¢?^@Ò¢?ˆa^@£j¤?ÛìS@¡Ì¥?“U@²a¨?CWH@µ›©?ëÊ@@9òª?СB@¶N¬?+äE@*­?ŠI@dº­?´'K@Œ®?|aB@ŠZš?^›W@=«–?k&Y@ü”? ÌS@Tc’?ŽM@×]“?X—F@?×–?øM@í°™?QÔL@‹œ?V C@…e?EeD@À¢ž?ÛÀB@–Ÿ?«F@B ?n\N@@x ?œšK@¢?6ÈP@(¤?mÐ]@9v¥?Iõa@¡Z¦?vø\@à¦?…àV@zg¨?–RR@nê©?'ìH@íW«?]EH@ÀF­?„2J@ê7¯?RèB@@Ðâ§?RãF@7 ¨?;ZU@ù¬¨?Ï]\@!˜©?ùÏ_@Å­ª?#b@ùy«?Ysd@ ñ¬?&c@¯?“œY@¯?±JQ@¹“¯?8K@†~—?¸S@“?©ôK@–’?|Ò=@g.”?š‘@@h¢˜?ºP@Jœ?þ‰P@ç?ì0N@·- ?„5K@^££?»E@E3§?ãþC@ºÁ©?ö¾<@¸8«?pÐ0@¯ë«?›¢,@3|ª?°ê?@Àq©?xP@Š=ª?ØøV@ @«?S¹\@Ôö«?¼*e@øÅ­?d§b@Ô¯?ƒ]@ìk¯?%W@#ç¯?!–R@}Y•?†sJ@96’?…?@ÕC’?ä•4@Š»–?PvC@¥ã›?'èR@¥;?„P@ÏÅž?þJ@ˆ«¡?svC@”¥¦?Ìz=@#óª?Õ7@‡L­?:Ñ4@J•¯?ºH.@x“®?(0@Xl­?§Ð;@ ¬?¾íH@.´¬?s/V@æí¬?)§\@¤¯­?2t^@Õ¯?OY@Fý¯?ëbX@ýr±?•£U@Eæ“?/¹C@Ê’?Zœ0@?SK2@˜E™?úH@aÈœ?raN@¿?áH@G¢Ÿ?ÂB@÷/£?ü™;@Àب?AÞ2@§1­?D‚3@¾½¯?Nw6@³±?[8@§u°?O3@ÿ‹¯?ö7:@¢ °?GqI@Ù¬¯?+ŸQ@"M¯? S@»'°?ÐñP@ÐT±?XT@ƒ³?Æ,U@yv“?ˆ?8@Úm“?S’*@ –?Q¶5@Í›?§A@ÿž?ÝÚC@w¾ž?^}<@b ?â-8@€M¤?¿v3@¨ ©?¦].@Ý®?€-@¬©±?HD5@ O±?Áù7@Ò/²?c*8@m³?2=@00³?ãö?@;y²?ÐáB@IJ?2ßB@åæ²?¾G@#è´?ŽnG@›f”?U.@5p”?«¬(@Ÿ(˜?€f1@Úœ?õ™;@ð5Ÿ?='@@ÕàŸ?Ÿ7@}Æ ?§ 2@¬y¤?kÖ2@ѽ©?j™-@ßì®?æÕ-@&9±?MG/@8³?Fð8@©ü´??@Ðŵ?‘.8@jf´?ˆ²7@›_´?D`7@Ã4µ?O?7@‰Ú¶?L‘6@ÏÄ”?y9(@·ª•?°L"@ÙTš?Ð,0@ °?ƒ2<@¬»Ÿ?}s<@µ ?ü¾4@í£?œP1@ɇ¥?mÆ3@üä¨?'µ.@/2­? ),@ü»±?r.@o’´? ‰6@já¶?Òê2@Z!·?ò1@÷?¼i6@T>¸?™j5@¡ô¸?Û4@Eÿ”?Ò.@–ð—?oÿ&@Ìåš?Ù—1@晞?^z=@ü[¡?3¸9@ès¡?ðŒ3@êk£?¾Û6@¹-¦?ðK5@ÆI©? q3@µ{­?ñF0@W2²?â{-@!Z¶?}$,@åθ?Êú*@ãº?“ /@b~»?B®.@“æº?L3@X–?Ú®"@ÑИ?É"*@±Yœ?-h6@k)¡?ë¯=@ã¡?̶:@vE¢?˲7@‚¤?W@:@!K§?7<;@'ª?¶í8@àL®?«E0@}é³?Wä)@•·?ÙÜ'@½ º?+ó)@t`»?NÖ*@»Dº?oÀ-@ó ˜?ÇB'@‰ š?wz*@o»ž?§Ó8@·.¢?‘ >@U£?áœ;@ÇL¤?&’:@õf¥?J.?@/…¨?ˆ3A@Úo¬?â86@ Я?¥Œ-@1|´?Å£)@2Q·?%&@Y¸?ÔÌ'@‘µ·?iÇ*@ݬ™?k³&@’·›?ˆK/@¦U ?h:@/¤?^=@í¤?‘r>@ö&¥?ÚAA@b §?°A@Ϫ?U<@Ë®?185@í7±?øà-@}K´?>h'@Ò µ?”2)@…¼´?ïM+@²³š?–[)@‹¥?QP2@ľ¢?pu:@šÚ¥?‡þ>@ v¦?;ÕA@žE§?êoC@ƹ©?ÿð>@ž­?‘o8@>¯?>U2@©ß±?À²,@¢Œ²?*-@#³?õ/@\lœ?èˆ,@oŒ ?Ä4@”å¤?«X:@Gʧ?jû<@ñ©?¼B@-Ï©?¯E@3¬?HY>@·ò®?/€4@]–±?Z§/@­±?›[.@_²?•2@îž?$*.@Áž¢?S84@Éç¦?…‘7@¾]©?ï>@/µª?î~F@ ¤¬?óSB@¨x®?Añ9@Bñ°?'?3@™ò±?Ä&1@.t±?¾P2@‘Ò ?¹=.@ØÓ¥?Lp1@¢˜¨?x 8@Ùܪ?Tà?@™Ñ¬?©ÙA@^¯?K³=@7U°?c|7@-²?{º2@³ž±?®õ1@“‚£?QE-@úý¦?ž!2@yª?ëð9@ó«?²=@s®?‘=@ö°?û¾9@ãø±?2@’²?)ò.@¦a¤?æ,@‰Ç§?ë4@;ª?›”7@5Û­?+\:@?/°?:@…ޱ?4@Mв?ê-@ñø¥?d/@në¨?ó3@w¬?o-8@ÔS¯?øt:@RZ±?®‡6@³”²?u/@Šß§?ÖK4@³ª?°9@®?6ë8@1³°?·ì8@,†²?ê4.@Œß©?È9@-“¬?R:@Ç@°?)7@qŒ±?ý/@}¬?À¬;@¸–¯?E^9@MN±?Tª1@zÁ¯?´ß5@&]±?3@1s±?Èž0@¼þ¾?¦@k ¿?Un@›~À?¿b@ŽÃ?Ìå@GÆ?o3@@É?>«@«Ì?SŠ @ùmÎ?Ò @KåÍ?fÝ@>Í?¦¤@vbË?(ã@×þÌ? G@½êÒ?®l@Ø?þó?ŸÒ?¹}ý?KÑ?V—ì?ë2É?$Ù? Œ¾?8ÏÌ?¶­»?uÂ?»Í¾?¹Ã?–Û»?1Î?c¡¸?ã?1H¸?Pàö?Xoµ?)—ù?ε?{.ç?ÝÌ·?¿hØ?M¦»?E²Ñ?.¿? +Ñ?…mÀ?à¼Ü?Û|Å?WÙà?sËË?“•ê?'æÇ?g?é?)„Â?Š¢ã?”žÃ?#Gç?{¦Å?9JÙ?ò Ä?íÓÛ?ôº?TÉë?ß{¶?? ö?{z·? ©ö?×ù·?ñÿ?Ïȸ?Lò@Ⱥ?G«@z¼¾?Ÿ‘@ÃÈÃ?Aà @m—Æ?†™@‚èÇ?@ºÈ?〠@¶«È?˜@ZRÈ?«q@òÍÄ?Ð@Ë…À?ˆ®@ ¼?¤Æ@½Ã·?já@† µ?¾@tѳ?I¨@â´±?ò‘ @°wž?„D@%ž?_…J@C·?;&M@ôž?FM@ž?áåD@Á?DA@FŸœ?äSD@èc?ÈÅD@ߟ?ÜsE@¡?D1G@öä¡?`ˆK@¢?V,C@wÕ£? 4@Eí¥?éh3@ïõ§?@Ã2@^J©?$š2@Öª?0@P$¬?ÜŒ0@b¯?ÿŽ,@Y ²?)z+@ Ï³?¹!+@Eݵ?Š3%@æËµ?Q"@ î³?v!@8³?—$@’È´?å)@ ùµ?„..@Ì…¸?Ã1@}t¹?Ô÷4@Û\¹?6@º?p3@ Ð·?:.@ì9µ?¹&@—2¶?ñP$@¨@·?‚• @²¸?7@hO¹?ôÑ@ ¸?S’@UŠ·?xq@¹J¹?Ñ‚@ô¸?äº@ˆF¶?f¶@@ж?‹@@¸?w‰ @²•¹?R€ @HŒ¹?ïÕ @ò¼?Ç@hvÁ?ï @×Ç?@áªÉ?€‚@î^É?ã‰@‚ÝÄ?Ñ@á±Ä?Ð@g Á?&y@éÍ¿?*I@+²ž?eÇE@"‚ž?ÞxJ@©î?ÑÓK@aÓ?­5F@©U?ɺ?@y?éFA@.çœ?¸´C@ñqž?¶G@íðŸ?ÞG@ ¡?ÄMI@¼¡?~mJ@Ï#£?¬˜@@€¤?Ô·5@On¦?qç6@çר?2â4@ZY©?¥ /@)fª?kñ0@¶x«?Γ.@à ¯?+–-@Øa°? Ë,@o*²?º¯*@€¶³?n^$@E™²?J®"@ 4²? z%@….´? m(@ø3¶?À†.@¾·?AÎ3@H¹?´Ò7@$½¸?›¼7@Þ'¹?EÈ1@âP¸?>.@Ÿ³µ?ó'@‚&µ?& $@ø1¶?ш#@¯¯¶?˜E@Iâ·?ží@%þ·?f@‰¹¸?Á!@5¹?é±@\ع?\j@0¸?„È@µ¶?ðc @“ĸ?(¢ @ D¸?ÆO @8²·?þÁ@Æ-º?%e@sO¾?è @ÊWÂ?Íá @È?„G@äÏÊ?îG@ØgÈ?ë†@&þÆ?o„@c@Ä?D·@ŠÁ?“ @.ž?~5E@.yž?®fE@ÎÉ?‘F@? ßA@Ò ?ë¾?@Ùœ?8C@Åž?wSC@Gðž?ØE@¾™ ?žfE@°Ó ?ƒzI@â?ƃL@]£?µ·D@g¥?‘D@@¸ý§?ƒ;@ ï©?á¸3@#ºª?êc1@}Ȫ?¾S-@”f¬?£*@°¯?¸,@Çt°? -,@—z±?ãj(@d€±?Ø‚#@Wœ±?Õò$@…~²?Œ9*@uµ?k=,@ØÛ¶?„æ/@ÅO·?Sh3@Þ>¸?B4@¢°¸?ï/@O!º?8á+@·¸?8œ(@öŸµ?#¨"@*W¶?µ¿@•)·?âf@m:¸?bý@£¬¸?Œx@›*º?û@*»?r@ˆ]»?ïe@Yƒº? ’ @c º?xª @Ì9¹??# @Œ(¹?¶C@©·?@š±¶?DÔ@iº?^n@•7¿?ò @ÕÎÃ?Bˆ @/¨È?ö?@€†È?¸@K¬È?«ð@œäÆ?¸@Ä?B@u²œ?¥×C@fþ?þ¶B@Ö‡?ÇØA@wè?KÀB@«â?K´C@Bè?ªÉC@Ünž?®}C@ÉF ?ôkB@òJ ?ºC@‘ ?¸?H@&ó¡?DžG@Àì£?ÒbD@½?¦?û<@E¨?=O3@ý©?‹Ú1@P5ª?Û*2@¾«?Èg-@ö£­?(@z®?Hù)@¹Ã¯?<Ü,@åý¯?^ )@`'°?ô'@§ô±?Ð)@<²?‡-@cŒµ?­,0@"¶?4@S¨·?Æ-4@óó¸?$0@Qcº?4,+@`G»?ñh'@Q¸?ÒD"@êg¶?Ù¿@Áw¶?vÃ@R-¹?W@伺?;é@ »?;²@S¼?à @ˆš»?k @ Ç»?R @·C»?Å) @Ž»?ðþ@m±º?8L@$¹?Îf@ö²¸?@Lù·?u@ò¢¼?ÄB@ZDÂ?…ˆ @KYÄ?,ô@ŠAÅ?(˜ @ÃâÇ?–:@ĨÈ?—U@Û_Ç?;Ã@¦œ?0C@Œ–?˜å?@‘ô?v,?@š†Ÿ?»D@/¥Ÿ?µ H@:yŸ?/øE@…“ ?=ƒA@Ò]¡?IC@¸O¡?$oA@åÚ ?˜A@€A¢?!úA@‚\¤?¿=@q´¥?.5@j ¨? F1@J™©?µ 3@ª?‰ì2@#‰«?i+@올?«Œ*@Å­?Û,*@Ô®?T4/@"•®?-@P'°?ˆ+@™†°?b,@Wè²?êÓ,@þ´?¿3@˜¶?Ä8@s×·?2=5@Àp¹?¡(@#Ò»?go%@΄º?K,#@]ã¸?ìû@öZ·?Ô5@ ý¹?¤Å@ˆC¼?ì¿@%½?@Ľ?ŽG@g¾? Œ @{¼?w @_a»?À³@.½?àÅ@Å^¼?Dçû?Üåº?.æü?Aò¼?¦ @_¼?L5@½»?ë@ª¿?’@É®À?µ•@kÅ?öÍ @-ÿÇ?6%@ŒqÌ??2@òÀË?)4@l9?°WG@ë¯?XC@4¾Ÿ?o?E@oè ?ä¸K@-Z¡?F­H@H¢?:7F@ò¸¢?_þC@EŠ¢?áA@ç«¢?l?@ﮢ?‚;@·x£?yD;@1¥?ó´6@‘“¦?NŽ1@‡–¨?à2@Ω?¿À2@ª?Ú£/@áX«?ÄÚ0@ËU¬?S0@lk­?¬­.@À«­?z/@|“­?©ô,@¢é®?Þ)@´`±?Ún+@_)´?¡$0@5šµ?i`1@»^·?ôˆ1@" ¹?iê)@ßG»?[µ#@ ­¼?A$@-:»? 3@--¹?)m@ÏÖº?4t@>ν?á+@Þɾ?ì4@ng¾?›á@S(Â?É‹ @2'À?Ýì@ï½?LD@Ä]¾?Þüû?Û¿?Ð ý?|à¿?²÷?ÓŽÀ?fWû?'ËÂ?û‡@¨1½?sá@j¿?¤÷ @H!½?¦˜ @SÞÂ?Nø@X Ç?´@¨Í?ýP@sVÎ?Ø @TÖ?l‰J@ù²Ÿ?«vF@ø¡?MkM@TÖ¡?‚ÚM@Ü΢?³I@è~£?CõG@-ߢ?XþA@ýN¢?½Ž@@×Ü¢?>@åì£?ëÔ;@Úô¤?78@¬[¥?0¾4@i¹§?Õu5@™è¨?<£4@þ:ª?Òí2@*«?«B3@ «?"1@´¬? Ò+@øa¬?ÞË-@e¬?Æ`*@J®?Ìð(@¤×°?8ß(@P@³?*@j.µ?Œe-@¸ß¶? Ê.@ˆ¸?æ+@̧¹?Ã(@ZG¼?=%@j/¼?tü@õº?>…@ÔÞ¿?«ð@Æ­Á?c @,´Á?p@nÂ?O¥@ŒÄ?~ @yëÇ?a¸@ÕYÅ?ª9@Š„Á?Ⱥü?Ú¹Á?sD@jÆ?C¯û?m‹É?‰Sÿ?¨Ê?!@jMÇ?¶–@ăÁ?³â@öp¿?LÞ @¡â¿?ž;@[ÒÄ?æ¹ @ð˜Ë?¦I @dÐÏ?ží @°vŸ?ÐM@«¡?€%M@ Ρ?¦£L@®~¢?E6J@Z„¢?,HM@ ס?ˉC@á?üp>@Ym¢?,k=@ÖY£?3Â:@sí¤?õ38@&¦?H$6@Ÿ§?Â7@J¨?+Ï5@u¨?Ûî1@–zª?ör2@t|ª?‘†2@üe«?§F/@ÿ¬?ds.@y­?.,@?±(@öò°?s¿)@Ô0³?On'@×6µ?™(@ŠE·?,ö+@ƒ¹?¶E+@pù¹?‹8-@®³º?­.'@c‰º?æ+@×¢º?»@¿?¹G@2¼Ã?=@ŽˆÅ?¥?@ÖÞÈ?S@I…É?ŠÑ @ªTË?iç@ù¦Ï?;çÿ?×ÛÍ?.áû?bÊ?+@-ìË?Z[@ð/Ð? ö?!?Ð?£÷?&)Ò?Á0ü?ç¯Ì? ÿ?¶Ã?¾O@œú¾?kn @ƒÆÂ? î@sMÉ?Ʋ @Ï?jD@À÷ ?ÛP@™>¡?õL@Ô›¡?ëK@Ê„¡?ò¥K@fæ ?t'H@ ò ?`'@@ãñ¡?­Z<@È¢?äö;@}¤?fp9@`¥?Tb4@ž§?Y96@%ž§?†q4@5¨?†è1@£eª?'T.@Zî©?Ï,0@0yª?ž,@,¬?_.@;ò­?9ä/@Z¹®?î-@ÿ°?C-@³?5±)@ç·?˜)@>l¸?J+@Jyº?s_&@Ͻº?Ù¶,@©»?G(@³u¹?–Ø!@_º?^€@2œ¿?ùö@I¤Ã?^O@ Ç?ƒ!@m¼É?+Ü @8|Ì?8 @b¹Î?ƒú@›íÐ?àÐÿ?¿Ð?Ñ€ÿ?ªÐ?sÜ@O\Ð?P@}çÓ?4û?ŠÔ?’ïö?)Ó?иó?³ÝÓ?Ô@5ÑÌ?¸<û?cëÄ?‘} @-ÀÃ?³Î@º‡Å?Ρ @pÌ?ãå@zc¡?'nR@|w¡? ùM@¤¡?ë•H@Óä ?^»D@Ô&¡?Ù“B@aÊ¡?†¸>@{ü¢?ùÃ<@‘'¤?žˆ8@zƒ¥?¤86@ʦ?•n5@ ý§?‘¨5@$®§?=b0@Ô¨?È=,@ ø©?Gÿ.@¦@«?y¶)@IÙª?Lg+@g£¬?gÝ-@3-¯?Çb.@Ű?ܧ.@P´?òq0@j ·? C/@r¹?>W-@ûSº?+»*@!»?‘w+@¥ö¹? ,@.8¹?»Ü%@E¹?±¡ @¨`¾?4ð@wÃ?ìU@ЀÈ?Êð@ Ë?çp@züÌ?ë @1kÎ?&Ì @ FÏ?.+@EOÐ?×:@µÑ?E±@eÒ?¯q@CŽÕ?FÝ@Å%Õ?N%@X®Ò?xþ?9Ñ?éX@äŒÒ?»ÿ?ØÓÌ?>ï@êøÇ?î @oYÇ?Q@V É?ÈR @VÔ¡?ÂöQ@U¡?ÒÍL@#q ?\àD@ O¡?}?C@ò¢?[g@@N£?GH<@ßf¤? ³9@z¶¥?€_5@éH¦?Iî5@o¨?8@À§?¥Ø/@te¨?X0/@ÒG©?gí/@{«?±ó,@Ýú«?Â,@Í+¬?¥Í(@ï´®?žd,@.±?Ò.@@´?¥h3@¤-¸?ÖÅ0@“º?¢)+@5¼?…Õ)@ÜG»?¸z'@™¹º?])%@ú?ÂÚ#@¶Âº?c @×P¿?ží@Ç*Â?¡ª@ƒ®Ç?:ï@ Î?þp@Š!Î? @•pË?áÆ @3vË?¸ @ðsÍ?è@D¬Í?>a@ Ï?ù@®ÕÏ?úŠ@ÉÒ?\„@øSÐ?¾@=¦Ì?–)@ Ð?FÛ@¸ÀÑ?‡Oÿ?[dÍ?ï2@µzÌ?V @=ÑÊ?øJ @B*¡?ü¹M@ ¡?ÔF@Wa¡?ò¬@@/O¢?Ö A@xº£?Ú<@Jê¤?/8@Ë¥?Ò5@u §?®4@-¨?Ú54@FL¨?›2@zn¨?s-@­a¨?, 0@ʪ?Ë‹/@æ«?a-@ô¬¬?¹/+@£®?ÛÒ+@ðè°?h8.@~\³?—c.@Òi·?¹à2@žº?²C+@*¾¼?·’*@VL¼?¾1$@[½?8 @s,¼?P"@AF½?ñ@#-¿?8ä@F0Â?jâ@íqÅ?yð@1Ì?›1@×Ð?• @°‡Ì?¨?ij-@M©?,2@[«?H˜1@Q?­?€Í/@Á±­?£%-@ô¯?nÕ-@¬²?â(.@ú¶?åÝ0@wM¸?94,@»y¼?z!,@1Ÿ¼?¨ý!@'è½?® @‡"¾?¸@Ë¿? Ô@ÜrÁ?ü@úaÃ?ä @™RÆ?g@rÈ?U @p)Î?µÞ@ù Ð?]¼@v´Ì?ù@éÊ?:]@2ÿË?N @ó?ó,£?Ó±@@¤”¤?h;@ôX¤?8@Kœ¤?I5@¢£¦?XA8@Ø€¨?èï:@,¯¨?¨T3@=¨?8ù*@»¨?KÞ(@¢ª¨?Ü÷*@˜&«?«©0@gr¬?Q¸/@§ø¬?13@€z®?g3@Ýò°?©À.@c³?<3@´?ÄÄ3@®¾µ?§T0@É%º?–d,@ð½?N'@OY¾?H&@û0À?D*"@̤Á?z@eÁ?µI@è2Á?*@*ÿÁ?IT@̆Æ?eì@ÌCÌ?ó‰ù?؆Ð?˜´ó?4Õ?m´ó?©eÒ?2ž@³ñÍ?!%@v¶É?XQ@G2Ä?‘2 @^…Ã?u @lhÍ?¿Ð @²RÕ?_ô@¶5Ù?»Cû?¬¬Ö?u¿ø?ÜØ?4“ò?ôÒ?7ì?9”¤?ÑÔ>@¢¦¤?t4@ˆz¥?s­4@þP¦?ÎÂ;@–ƒ¨?#?@þ+©?Ý7@Ó%¨?,/@8d¨?â½(@ަ§?‘ú(@²—ª?h,.@¯0«?0.@f¨¬?¿Î-@ù!®?§T3@)¥°?ï`2@Ô³?^3@›´?Áê5@h´?çw5@ ·?O"-@p{»?^ö%@;ȼ?½P$@ãcÀ?øp!@-Á?9@TJ½? ï@R¾?øÛ@¤ê¾?±ù@6SÂ?ŽA@ù*Ç?Qÿ?gÎ?1ð?^âÔ?äAì?Y»Ö?wPî?>jÔ?P@˳Î?w @ÌÇ?‡\@ïgÃ? ±@óÉ?\@‘»Ñ?.« @¿Ô?þ@Q±Ô?NCø?xÔÔ?‡ç?®ìÐ?³ä?Å®¤?";@bá¥?iµ3@§?1ð<@_|§?âþC@|¤¨?ÀP<@ߨ?N1@öA¨?Æ‘-@’‡§?—¶*@Õ‚©?ž*@·«?Hb.@ª~«?ƒå*@òë­?’Â/@&±? …5@Ö¥²?a?4@~˳?+S6@æ‘´?F¢6@i“µ?DÍ/@v'º?¯å'@¼?u#@É¿?Ê¿@|À?aŠ@Ôu½?\¾@sÙ¼?Öÿ@²­¼?†@ Z¾?<Ã@ðŽÁ?óã@6óÈ?ú€ð?ðÍ?8Éâ?‹²Ö?rà?¹'×?÷iò? šÔ?bœþ?màË?H @ôâÆ?y"@ÿÈ?•@ϾÎ?-?@‡ÍÎ?ÊM@´¢Î?øÁõ?ûíÍ?–­Ö?w É?GNÕ?T¦¥?:@N§?y€;@üõ§?’m@@2“§?à@@Ò¨?m6@˨?»À-@Ië§?¨C.@è¨?ö<+@>#ª?÷l,@Z§«?˜;-@R7®?Z¡-@Nü¯?•‡2@Y²?û13@õ´?ÅÏ2@M²µ?¨z6@µ? 0@û¸?fö#@6º?&B$@K ½?„q@H¿?¥æ@%õ½?l2@Êм?‡·@;;¼?xþ@—¾?°2@•~¾? ¼@EÝÂ?;…õ?µ<È?ìà?$Ï?“Ü?/ Ô?òÞ?×?5&í?¯ Ñ?ýw@MÍ?q¾@UZÉ?Ä­@•ûÊ?×ô@”UÉ?Ðó@¦éÄ?úð?¿ªÂ?.p×?kÁ?¦vÊ?êS¦?ÙJ=@¬m§?@?@h¨?ÃS?@îk§?DÙ7@uϧ?)ÿ1@ôó¨?y@0@tb¨?çS/@z˜©?œÛ+@Õä«?W¸-@/®?Ǿ+@Çå¯?nÙ.@«Ã±?»/@ra´?È´0@6§¶?±83@`P·?è0@=¶?PB!@°æ¸?‘§!@±c»?Ÿe@47½?‰ö@ ¡¾?@Ð@¿Ñ¼?V9@ï~¼?h³@é]½? ¨@&¿?cz @V¾?ñÚù?úÀ?xÊß?ÊŠÇ?+,Ú?ˆ°Ð?²Oà?šX×?ÌêÛ?G-Õ?«¥ñ?¬Ð?…ß@ŸÌ?ÁM@Ÿ\É?·ñ@@=Â?|@ ¾?²î?´*¼?n¢ß?_v¼?¥ÑÇ?}‚¦?ìÐ?@…ƒ§?}»=@¾×§?ÃM:@Wä§?C£4@xù¨?ù2@`©?tÇ1@¸š©?b/@¬ª?Y°.@ð¬?ãÃ*@Hå¯?+ë-@`E²?QÎ-@èÍ´?Õ·/@eζ?A/@©Ž·? ü,@Úw¶?–ð&@±b·?<9!@(׺?sæ @›Æ»?µU@s¿?D|@™¾?@Ö½?øæ@°G½?8z @¥æ½?C @{X½?½'ü?ËÖ½?Óªé?…£À?SÃá?mcÇ?"ß?>:Ñ?Ô»×?SåÕ?°ÄÜ?hýÔ?2¯ó?MYÎ?À@^ÞÇ?Y˜@Ì\½?¹}ú?¡2¹?°"ó?Õ¹?·Œã?Ô=º?Ò?½h§?{«=@Öê¦?øŠ9@sµ¦?‘ 7@ØÕ§?*ç3@Z…¨?²—4@K˨?c0@V/ª?¸y-@«‘¬?-@-P¯?ä*@²?É-@Äæ´?[u0@§¸¶?®*0@o|·?&_+@Á·?N *@)W¸?†v"@oš¹?žß!@•aº?€ˆ@øl½?´N@T=À?ÐÛ@ 'À?IX@ø¿?o @ø·½?…@z½?‡Ä@@¾?´ò?8Ï»?9é?l<½?œá?¨rÊ?ëVØ?é«Ð?ëkÓ?äìÔ?9ƒÛ?ñPÒ?¿/õ?YõÉ?ë@䔾?x\ô?ª¾·?ýÃê?ƒ÷µ?ÆPé?±Ò¶?žÞ?ꊧ?ݶ8@sq§?Ëk3@§?ÔB5@¥§?³ü5@q:¨?DÛ/@°\©?L¶,@p«?T#-@Üw®?]_)@¼s²?®½*@«ô³?žm4@¨,¶?‰R/@ ¸?:À-@´_¸?Q0(@,¸?Ù(@…¬¸?õf"@l¹?œö@˜Áº?Ñb@ÑG¿?á·@DƒÁ?@:Í¿?ü @–Œ¾?Õ@‹˜½?Ió@Fº½?Á&ø?‡º?¯]è?@»?å?;%Â?þÎÜ?Å{Ê?º½Ñ?âõÒ?O%È?Ð?ÚÛ?º¹Î?´ó?îóÆ?’>ø?š»?Q¬ã?ú°´?Æ´ã?¹¶?‰î?x̧?¼R/@êE§?I0@E§?ý¾4@ã§?&Z1@ש? Ò.@êI«?Û*@}¯?)@tf²?KÏ+@œ¤²?oŸ3@xê´?H5@¶»¶?û-@ðí·?|Š)@¸?aŠ)@l´·?R&@µ¼¸?ýö@eô¸?@û½½?¦÷@ñ£¿?Y@W¶¿?f&@X¯¿?¸@Åã¼?Ö@Ý~»?=¤þ? ü·?Þ1ë?þë¸?¯µâ?cº?ÁˆÞ?ñ®Â?ÙZÔ??Ò?TeÌ?ÓÇÒ?Ó?j×Ð?ûõÛ?pÌ?Fí?Ä«Ä?ÁZë?и?/ˆá?OÙ´?ï?§?Þ+@…r§?Õê,@7W§?“/@:Ш?Ë€-@‘Ûª?d.@a·­?lÏ*@#²?©0@`U³?N¿1@t³?¸@x¿?Ĺ@¾¯¿?S: @fʽ?Î@;›º?½óÿ?A¹?¿Íó?޳¸?ˆ²æ?»õ¸?tCÛ?gœ½?ãèÑ?@çÈ?­ÜÔ?}©Ð?q Ù?öÒ?·£Ø?ŒˆÐ?fÛ?.ôÇ?ÏOæ?…º?QdÚ?’ì´?òfß?Aƒ§?)@ݧ§? Ý&@@˨?H -@—ª?»¨-@Œ}®?ì.@U±?‡Ü1@°U²?(3@^³?D=@¬ µ?8¾;@A¿¶?QP4@ii·?Yâ/@Þ¹?E_,@e5¹?='@*ß¹?¥œ@üÛ»?w@!¾?Ñ$@¦ê½?k@d¾?ÏÊ@à–¼?M @8¹?W@›¸?Û¸@ô‹·?·ò?Ý®¶?î¹â?Bz¸?§"Ö?p*¾?Ï‘Ô?viÌ?Ÿ^Ñ?¸Ñ?W¤Õ?UéÎ?—­Õ?àÉ?ȲÖ?†^Â?^Ú?ô¥¸?ßuÒ?#‰§?Ë…(@¹É¨?É++@Ç «?60@èz­?°–4@C¯?Ø^4@ Ô±?ÄÌ6@Ëë±?Ç?@T:´?—$B@¼–¶?@;9@ζ?5@+ë¸?Û&*@ÒQ¹?H(@fº?_P!@¿¼?CË@ú¿?‚¶@•û¿?4©@-a¾?Ž@ý±¼?“=@~p¹? @Vl¸?aT@ߨ¸? Ä@¡·?Пô?’´?k é?Žœ¸?G±Ù?!Á?çÕ?lÎË?ˆQÏ?Õ²Ï?DÔË?ú]Í?±×?šMÅ?<ªÛ?¿?!ð×?šž¨?é¦*@b«?û.@Ïá­?Q37@XJ¯?Í4@¯?­·7@¤í°?â{E@¨‘²?¶†I@ ¶?i?@=æµ?E7@„›¸?ÓÈ*@óð¹?¦((@Cܹ?Qx#@»?å@•3½?º0@H*À?8ä@Á?š¨@Äw½?¡#@x»?= @v º?[ @ع?¨Ù@U ·?¬¦@Àµ?qþ?ð\³?ë™ñ?„ºº?ý]ã?0'Ä?¶Ö?…¡Í?Ú×?$ÁÑ?+ÓØ?æ'Ê?©û×?wîÅ?ÓÉÓ?f`«?£Ú-@¯š®?`H3@»¾¯??o2@¯?|y5@ž,°?Š£C@æ²?—ÌK@"µ?ÁëK@™·?fž<@û·?”b/@…º?Ô¸+@ȹ¹?©—(@ Ôº?©!@À»?Â@F¼¾? ×@׬Â?nv@”#¿?}°@~м?ƒÙ@­¬»?w @‰%º?°¼@þv¹?^@`œ·?¥”ü?cÕµ?JÙõ?Äö´?óõ?‡Ž½?ÙÏè?‰–Í?Þ?«Ñ?¡Mß?ÕgÍ?]'Ò?F$È?¾äÚ?ng®?Œ5@ A¯?ÙŸ1@Àû®?tF5@V²¯?õ„@@âZ²?„ÔQ@4µ?rüN@ºŠ¸?^qE@Gǹ?“´3@Ù‹º?ÄŸ/@/º?œA*@ýõ¹?(@儺?!@W1½?c~@ŽgÀ?¨!@0PÂ?N@r+À?_\@hÞ¼?ÿž@u4»?3¯@(Q»?é4@Û?¹?Ìúú?ÿ·?ØŽé?Cʵ?¬pë?߀¸?®Cì?æèÂ?¤9ê?CÑ?ÝGè?›JÐ?ƒÞÕ?ÙþÈ?SÚ?µA¯?Öò6@̰?ø¬5@ì²°? @@óß±?ã[L@Ç$µ?þÈ<@ݳº?ª,3@PF¼?9·-@0]»?i„'@ÝÚ¹?í$@Üļ??,"@7{¿?ø@2À?8—@ÍÀ?Bl@¿¯¾?*r@ôCÀ?,ð @öâ¾?Ÿ@ðS½?4Fù?·.»?k:í?dz·?<˜æ?1¸?Aùè?#î¾?JÅð?Î?©é?áâÑ?V]ê?aêÍ?Íå?{,±?{Ç8@ÆŒ±?éA@S‡²?ÐJ@Ö´?ùM@¦Ÿ¶?Ä€N@Ê{¹?Š‘A@Û ¼?ªã4@F¼?ù]2@ž…¼?¿ü*@l¬º?öÞ"@¬¼?‘ª @¨¾?Ò)!@H>¾?w”@®%¿? @ø`À?c™@µLÀ?Ä0@¤yÂ?ªŠ @uNÀ?/3@œÀ?[…ø?Óº?<"ê?äf¸?¡…à?ªí½?b|é?±Ê??_ë?’Ï?k(ê?¬DË?Oå?È8²?EL?@²?µ)K@ E´?þŠL@D ¶?téN@@¹?¹ÉH@jv»?¹õ;@ìà¼?êÀ0@ä[¼?Za2@Ís¼?f(@UÊ»?—›@sÙ½?^ü@]½?«I @)½?^Ÿ@w•¼?*¡@ቾ?[ï@¿5Á?‰ÿ@/4Â?]0 @[gÃ?Á@A‚¿?kù?]»?‰ªè?‚À?s¼ã?b$Ã?¬^å?zË?üÅã?]NÈ?‘?í?ø´±?¡çF@Ù"³?µ~P@¤K´?XØO@ÅN¸?Ä]N@ë¹?HA@/s½?5@Ó`½?:Š1@½½»?¬~.@,f¼?ð"@yä¼?!@Xs¼?å"@¼»?pŸ@´>¼?ýß@¿Â»?¶C@'g¿?½ @ó¿?Ìt @ ÕÀ?JT @¶Á?y@*sÀ?Ì:ó?„óÁ?‡¼æ?!@Ä?„öÝ?%3Æ?“þé?2Æ?jäí?²?¿3P@s³?ºƒQ@ì¶?<üK@ª/¹?#{D@…¼?ùÓ;@ «¼?”n4@„Ò»?L8.@b¼?œ(@ºØ¼?>µ@^L¼?T–"@$ »?“Ü@»?>@*M¼?È@‰6½?Ò!@"t¾?O§@ý}À?j- @4¿?µ@V†Á?ÿ‰@‚Ä?–Ûò?Ã?ä’ì?ÃèÂ?÷Kò?wÇ?˜Gî?Ôä²?·²R@Ç´?ºVM@nw·?ýËD@%ñº?HÞ;@iB¼?’U8@g"¼?30@;/¼?])(@oY¼?áâ"@Kp»?ÿ1#@3³º?`|@ÿ¦º?:™@¢»?+A@W4¼?d@¬½?»*@Ü Á?Þà @εÁ?Éî @IâÃ?"Í@ðÅ?B@~6Ã?½ú?wÝÁ?s±÷?gøÃ?m7û?q©´?03M@Ŷ?A”D@Äõ¹?@]?@m|»?ø7@iʺ?Ûj3@|Œ»?Yç*@ÐŒ»?¦ÿ$@Y‡º?Å"@Ï º?ä[ @\Lº?»3@¦²¼?Õq@^á¼?÷³@ǽ? â@m8¿?³9@)òÂ?œ@( Ä?ñ@&wÄ?Z@,{Ã?À@¼À?ø/ñ?;P¿?¸q@"‘¶?—“B@] ¹?§;@öܺ?t=@¯ëº?hÀ3@®3º?„Y/@èãº?B{*@`к?S•&@F7¹?¥‘!@”Zº?V @**¼?ñŽ@öH¿?ä @V×¼?®á@ż?W@„À?Û @mÂ?b @*­Æ?ϲ@&þÅ?h*@÷¾?æ¸þ?.<º?ðø?<#¹?Pî:@–?º?øÈ8@dǹ?'€2@ÞŹ?‚*/@º?í*@Žå¹?±E+@ý¹?Ár%@¾7¹?m!@ZLº?3 @‰=½?«Â@6H½?û@‰J½?>Í@ùƒ¾?D^@2ƒÃ?ê@'sÅ?â@>Å?Ö6@¥YÂ?äaþ?¤•¹?._õ?y—º?kû3@œ1¹?©Ÿ2@šr¸?p-@Ê º?&m+@þ‡¹?‰)@í·?(™'@ò¸?<¤"@j`¹?¡¦"@ò ¼?þà @cŒ¼?¹Ö@ŽL¼?æ@] ¿?$@ çÁ?V@>yÅ?2 @„#Ä?·&@AÁ?ÆÛû?¨ý¹?dý?M­¹?<1@ÏÒ·?í­/@ʸ?7)@ý¸?¬j*@Ó,·?s˜+@5þµ?u'@*O·?Y!@¸§º?Î@눼?I¤@…'¼?5á@¡œ½?‹ @,À?+Ÿ@;ƒÄ?„^@¸ªÃ?*Ý@êÀ?Î'@dº?Ñú?çÄ·?6^-@á\·?ä1,@Nu¸?F`*@/·?½û)@sµ?*@ܵ?+R$@b·?i3@"º?l×@e»?ë»@”ö¼?-C@ud¿?ã­@ÂÀ?8@þbÁ?§/@Ê¿?Dg @A*»?ñ&ÿ?&·?H?*@ãÖµ?kë.@,Œ¶?eä,@:×´?x²(@…¯³?Ñú%@•žµ?e"@ôQ¸?…£@Ÿš¹?C @ôB»?_Ö@ûŠ¿?5¿@œÐÀ?ªM@ øÀ?þÛ@¹¿?p¡@ ç¼?žH@€¶?e‰+@É´?A‰1@u¦´?Ïw*@¿ß³?Bî(@Wô´?ÐÉ$@‚¢¶?/#@i±¹?>ò@8¼?@ƒ@åó½?¿9@Þ¡Á?¤’@WÌ¿?ñ” @D¼Á?4[@˜ÔÀ?ËD @é´?9r-@¥³?rÊ/@F³?L;)@a´?@Ÿ'@†ñµ?ku$@°ß¸?&{ @ýM»?‡È@k¶¾?+Å@öV¿?”!@¾ü¿?+%"@HÁ?ì@ÍÉÁ?„@þ-³? à-@v²?«ÿ*@¡f³?àö(@J{µ?/#@ ø·?p%@$'»?Þ0@wè½?®I @óÙ¾?‹·%@:½¿?VÜ!@ŽHÀ?¤"@ÌàÂ?þÐ@o«²?…|.@>ޱ?.+)@/Í´?9.'@Vò¶?ÃT"@),º?Zö!@ýš¾?„“@¾?2¼#@Óq¿?ì$@ãë¿?dÞ"@t*Ã?O÷@už²?,@—в?®×%@c¶?mq!@Õ?búô?WÓ?ñOó?ñÉ?\@ð\¿?@@Ög½?­ @Mc¿?:) @Nó¿?øí @ ¿?Ñ, @]ð¾?µò@ÀëÀ?>ª@‰€Á?®È@×cÀ?š@À?Gê@Bf¾?†T@:·?t@$¢·? L@ÝT¸?Gm@Ûº?Ü\@Áƺ?®á@œ°¼?sw@×'¾?Aœ@\«À?Á8@Ó8Å?Íl@‹Æ?R,@«íÄ?b¯ÿ?®ôÀ?5y@‡G½?Ø1 @õMº?†ý?‘·?d“â?8×¾?wðÒ?Ç?ý@Â?R§Ê?ÁâÊ?üœÇ?Ä?››À?qÃ?ujÂ?rÚ?j2Ê?è?ùPÇ?!ØÜ?Or¿?Ó?Ó—¿?9üÕ?î¾?æÅÞ?AˆÂ?J…è?º‚¿?Fö?îõ¿?®cþ?»{½?xl@ÑB½?N ù?¾Ø¼?ž¯è?Âò¼?%lØ?|©»?xÌ?3ȶ?lÍ?{žµ?˜%Ì?[/¹?§”Ñ?—µÂ?”aä?—^Ï? ô?GÊÔ?zèò?/ZÓ?+ î?¾tÈ?6~ÿ?31¼?9!@Á£·?D¨@‡Î¶?Äj@Ø‹·?s@à¸?]‚ @d‹¹?´Þ@b¾?I–@zÝÁ?·¹@ÇÙÁ? @žÇÁ?oÏ@¯9¾?©€@C¹?Z–@y@º?¢@?¸‘@YÒ¹?š)@0»?δ@ 5¼?Ï@u]½?T @ž¿Á?¥Ñ@|°Â?Š @«ÕÁ?¯»@“ǽ?% @.¹?âË @F·?ß @’¸?‹>ó?øs»?1_Ü? É?~Ô?pâË?ÚÔ? GÊ?^ È?EÂ?CâÆ?z¹Ä?<ùÛ?üÿÈ?Ãä?ôÃ?µ6â?Þöº?N@Ï?k¸?¸tÑ?òÙ»?ÎDà?Üõ¼?ëàê?ÒŒ¿?…îñ?âÚ¾?%þ? ÝÀ?íóý?ë¿?Hù?¹×¾?Óÿí??>º?TBâ?N†·?Â\Ü?‰~¶?·“ß?Ï´?Áà?< µ?Ç_á?µÁ?.Çé?ÓHÍ?¿xö?Í)Ô?Sï?&½Ñ?f ð?•¼Ç?+Aû?YŒ¾?÷î@{¶?9Ñ @‚ƒ±?„±@*«²?;¬@ µ? @-}¶?Ä•@…º?E @݆À?_@ȃÂ?+@êhÂ?O¤@ À?¢)@%¼?E@¾b¼?Ÿc@™P»?ÙÛ@•¼?w@Ò=¼?,’@Mz»?Ç@£¼?‘ƒ@+$Á?2a@%tÀ?¨D@c/¼?¦Œ@²¸?sË@61µ?(r@*G·?âeð?ð Á?ìqÙ?·AÉ?sÐÍ?H%Í?Ãjß?MÈ?ûeÕ?óÂ?$Î?ªÅ?¿Œà?·àÈ?G½ì?bšÄ?=[ç?׺?H7Õ?õ?]ÕÎ?Eg¸?ÙÌà?ädº?ëaì?ø¼?,ô?óv¾?»øø?^¾?¹Îø?„J¾?Èø?ªL¼?¸‰ó?8à¹?6‘î?€«¶?+<î?óµ?¶^è?§ä¸?ÅÁÜ?ʘ»?´´Ï?©~¾?I'×?6È?Ã4ð?äÐ?ÑÁð?Ö;Í?®Ìö?ÎYÉ?z¶ï?î¢À?àð?ûµ¶?ËJ@÷®?¸ @ß¶²?„º@Ýô±?9| @ø ³?YÊ @ßÇ·?޾@p’½?óÙ@GŽÂ?Zë@œÅÂ?7@àÀ?>^@k‡¾?ó$@+!¿?·@GD¾?ÛÞ@Ý}¾?Z@Éì»?rR @‘¹?¦’ @Mvº?ÞÒ @ôÁ¼?„/@.ʼ?à™@é[¹?d@LÅ·?nû?Wr·?Ë[á?ÇkÂ?†Ï?•¹Ë?-Ç?ˆQÏ?™Ï?oäË?YLÉ?MÇ?ÆrÍ?¬¢Ç?ÑÌÖ?È?OÄè?¼ÚÃ?”Íã?Q¡º?‹ÉÑ?¹¶?KÔ?Ÿ|¶?‘RÞ?ò\»?‡Hï?¸3½?®÷?Ó´½?^Žû?³±¿?%ø?DH¿?ë÷?;~½?w!ð?¤(»? æ?_ð¸?²eÜ?ÌȺ?S®Ó?{½¾? †Ä?Ðe¿?ÝÁ?å`Ã?•ÖÀ?`È?¡¨Ð?£CÈ?è?8¼È?šìí?-¿É?lIè?I*Ã?kãë?@‡¹?‰Ùø?›U³?«’@µÌ²?ä² @¶.´?Þj@XÚ³?â5 @ãM¸? @’÷¼?Ó)@šòÀ?¤@”¦Â?…@MöÁ?ùŸ@uóÀ?Zî(@EÍÀ?î7@t8¾?¯;@UX½?!9 @¢¥»?ó¿@ÀM¹?p_ @x´»?_– @¾¾?`@GϾ?÷‡@6î¼?Áyÿ?tR¿?^èã?[{Ä?#ÍÃ?ІÆ?ë.¸?GÌ?Ô^¿?ŸÉ?žùÆ?9É?3GÌ?@ É?Ù¸Í?‰~Ç?÷Û?ǼÄ?µà? '»?·EÛ?6º?Q'Ú?¢ƒ¸?t"é?7ž¾?m÷?I:Á?„µ@’'Â?ž·ü?ÌbÂ?è‘ò?9–Ã?¹í?‘¾Á?Ëê?¶½?Xß?½?—¨Ò?ð½¼?¶¾Ç?°Á??Cº?‰Â?D¹´?•²Ç?Ž—¼?äÜÉ?«Ð?{Æ?lØâ?gÆ?ÎÒí?ó@Æ?0ì?½ƒÂ?Tí?YD¹?Ê\õ?Mϵ?žBý?Ÿc´?d&@~ªµ?a@Ü”¶?‘¿@Lk¸?Ã, @ç¿?Ô @ôÂ?æ@yÃ?•U@GqÄ?3Ç@ÓjÂ?Ùk$@€÷Á?VÃ@Eƒ¿? Ö@Èc¾?h @q½?T¢@šž¾?Ò@ƒ¾?^i @†À?\Í@[Â?áÿ?ЈÅ?O;ç?¸É??ÜÏ?«‰É?Í Â?ùÈ?%½?ÙŽÄ?æ3»?Æ?zhÇ?¸0Æ?e|Ë?Ü©Ã?™ÞÔ?ìyÀ?ÄrÔ?ãû½? Ú×?—ܼ?«ñà? ÿ»?øaî?p«¿?þ?EVÃ?›@GÄ?Ýì@HÅ?í‰û?€ÏÅ?‹õð?Å?Ÿé?d‰Â?þŠÜ?(êÃ?ÑóÍ?£,Â?*Ã?®÷Ã?ÎjÄ?-§Ì?V´Á?G’Ï?¹Â?… Ê?²Ø?FÂ?p‰ë?9%Ä?mCð?;ÞÂ?ûJç?âÈÄ?j¬í?Ï"¼?mÉò?)·?J€ÿ?Tð²?ã  @¢_µ?Ó¶@qÀ¶?É@lθ?Ðj @¨½?÷@ypÁ?Öt@¢Â?ær@LÄ?jÆ @x9Ç?…%@YGÇ?ƒž@—#Æ?(x @à§Ã?JÙ@:¨Á?fTú?ƃÂ?æMú?N*Ç?`‡ö?ñ+É?™Çê?‡öË?•Bß?ß_Ê?Ý{Ï?KÉ?™jÂ?8È?x>¾?eïÇ?²v¼?›­Ä?:õ·?ÇÇ?ñ%Æ?÷Ä?g4Ö?Ÿ+Ã?nŽÜ?ÿ½?AøÞ?yQ½?Þæ?‚¾?jð?X}À?f»ÿ?ÐkÄ?—@#YÆ?§@ÁÆ?1B@°Ç?úéù?RÃ?=ï?ݘ¿?ý Ü?ìý¾?,*Ö?¹nÁ?:È?£tÊ?_Ó¿?h´Í?TbÉ?Í?änÀ?=ÊÈ?oÍ? JÁ?´sé?O$Ã?Æaõ?K0Â?£ï?UÑ¿?qãï?Ÿ§¿?íRö?·?šÒ@V´?HH @Ñ6·?ø´@’j·?Šª@[eº?`Ì @¤¾?‹l@-íÀ?Ö@Ê|Á?Ã>@ËÃ?ü'$@=¶Ï?sò@hœÍ?gÈ@ Ð?ñÊü?.9Î?¶´þ?äÉ?ZEç?êÙÇ?¿Iß?‹Ë?NÀÒ?ÎÌÑ?ÞFÓ?ú(Ñ?†Î?²bÒ?ñxÇ?ÑÑÌ?ú[»?ÞZÇ?Dù?ñÆ?¥—¹?kÄÄ?–É»?#áÅ?‚°Ë?-æÆ?$Ø?>4Æ?Äñé?Öå¿?€ñê?¼ÜÂ?Æ_ö?5ÌÂ?'@F™Æ?Øn@´È?µ@ÍfÈ?Ç@¥-Æ?¹Bù?Ù€Â?úoá?áIÂ?–Ù?óµ¾?0IÖ?µJÀ?»!Ì?dMÈ?{×À?½~Í?´ô¿?PË?b¾Ä?‰Å?4ÑÞ?&®À? pò?¥¼Á?LÄ÷?<¼Å? mö?\ØÄ?Ê´õ?„¿?N÷?Þy¶?0×ü?kõ³?ËË@A¶? ]@Ë8·?'¶@qº?õ¶@¿?ø_@¤“¿?]‡@E¿?H~@À1Â?P¼'@…Ñ?Có?0oÓ?9Oî?ÑÒ?j8î?FÒ?þñ?«øÎ?kÓÚ?“Ë?ë"É?÷’Î?‡ ½?ðÏ?Yª¸?ûWÍ?ÔŠ½?u Í?*m»?½\Ì?Å׸?P>Ç?kQ±?g¦Å?¦š¾?t¤Ä?"Ñ?÷Ä?.CÙ?ݲÅ?¤ïë?0nÅ?`ò?RŠÃ?YŸ÷?“™Å?¹@*È?V…@}£Ë?áÀ @aÉ?âT@çûÆ?htù?vÄ?œvê?ÊÂ?y‡à?„¿?àØ?Oï¿?üÈÎ?¶VÅ?&¼?ƒ”Î?cÙ®?‘µÊ?Õœ¿?h`Ã?Ü£Ú?ìX¿?Ãù?Bɾ?~<@#Â?©ˆú?,BÄ?Wñ?&mÂ?ï@ø?ÂÕ¸?;þ?9ˆ³?1˜@¸µ?²u@µ ¸?A¢@%Pº?l³@Ó;?ˆa@Yª¿?é` @@ò¿?‡È!@ghÀ?öi)@„Ì?•æ?gÊ?YñÙ?«7Ì?oÑ?`VÑ?«VÕ?ÖÌ?úÈ?¿CÉ?E»?FrÉ?¶¦?ª›É?ÝŸ?¨fÅ?Œp¯?ªÄ?êZ¯?ñÆ?¿¸?7ÙÃ?_â¿?ÿŸÂ?tIÛ?1Æ?y³é?«ÊÅ?9?î?vðÃ?…¹@§ÖÃ?¥–ÿ?~ Æ?»@º‰È?<©@óùÌ?xI@/$Ë?¾Š@ÍKÈ?×ï@¤ÝÅ?˜ó?õ­Â?•!ç?)€Â?†²Û?•¦Æ?7Î?Ü È?ÌÖÀ?|Ê?¸ç³?[ˆÌ?ÑD³?M¤Ä?zÒ?–»?‚pý?•y¼?Å@F¯¼?Húú?­0Ã?ÙJð?0­Á?×{ù?¬¼?æq@dõ?Ö@üà³?_I@k¶?.@·”¹?(ƒ@Ù¼?ïá@8¾?¬&@¾¾?ƒ%@ fÀ?ü£%@ÄÈÀ?Ý?OÂ?òÊ?hUÄ?Y,Ç?]§Ê?””Æ?ÍOÅ?§‚¹?ÕÄ?ï?£¼?«§?9*¼?[¨?ô¾?Œ±?ÀÓ¿?ãÁ?1ZÄ?ÖÍÖ?ö¿Æ? Bé?‘ÄÆ?Uâø?¦Ê?Ùöÿ?BÃ?/7@R Æ?Œ¤@+ÀÇ?ÙÛ@}nÈ?8@¨®Ì?JU @ÏÌ?q@M\Ç? ÿÿ?ŸhÄ?Èø?·Â?'ï?êvÃ? áã?VÅ?2 Ñ?€øÆ?bgÁ?ð˜Ê?>¹?3±Ð?êJ»?lVÄ?®µÖ?á|¹?’ ü?ïO¹?ÔF @ù»?ç<@ aÁ?’ô?YÁ?ïõ?ð¿?„¢ý?z;¹?TH@!@µ?m @˜ ¶?³½@ôL¹?WÏ@ÉÜ»?à© @Ú¬½?…«,@ÇÕ½?©7'@/N¿?kÇ%@ñ‘¸?™±á?é}º?YÔ×?䑽?ÆyÍ?½é¿?SÒ?¬ÜÂ?ò3É?{ȼ? À?x£º?|Í»?û¸»?Úκ?‚9¼?µÅÆ?UÒ¿?­‘ã?JRÆ?Æ—ü?{÷Ê?‚R@ûVÎ?@î Î?@€CÉ?÷á@s–Ç?„E @õÈ?Ðw @ ŒË?•± @ Í?ÑN @¤KÉ?c³@Æ? '@ÝÁÄ?2zö?§]Æ?Bíç?vÈ?ùQÛ?tÃÊ?xÑÅ?ÍŸÊ?z…±?qÌ?Ö@¿?à¹Ç?FMÊ?®3¼? „ï?þI¹?;Þ@îx¼?@¸>À?qÐú?!+Ã?’+õ?÷GÂ?uûö?Ž~½?h'@vÁ·?äæ@¡¶?¤Å@Ô·?@ô˜¹?öè#@}¼?Dv)@ª?¼?–&@¨?½?ó´#@Œ-º? •ç?\̸?òá?3†¼?È9á?ïÓ¾?ã;ã?ý¿?e²Ý?Ÿæ½?”ìÙ?iº?;Ð?6}¹?Ï«Ï?-¦½?¶ á?„>Ã?«õ?ÕpÊ?åÏ@9Í?@¼<Ñ?^Þ@UÑÎ?o @ÀË?p@ÊøÊ?ÖH@f®Ì?¦@lÓË?×g @mÊ?¤l@ÉÍÆ?»×@çÄ?xúö?SŒÄ?bòè?x¥Å?½´Ö?kÈ?ÄÇ?=ýÈ?´g½?Ü?Ï?ªkÆ?IzË?JgÅ?‚¦Â?£Ù?Œ±¹?uªù?êgº?Çh@L¾?^Âý?oÞÁ?ßý?ÇŒÂ?qý?Ví¼?ÑÅ@â »?úÅ@É’¸?ªà @*¹?)¢@ŸLº?ÿ@Îgº?ž¥%@I"º?¦á$@°—¼?Ññ@=†¸?ˆë?v€¹?žÿö?(ؽ?qô?ÅòÀ?Îçì?´§À?Oá? z½?g=×?žº?¡iÕ?ñë»?Àß?=Â?|¾ó?ÄèÇ?aÅ@ˆ¸Ê?iZ@•\Ì?‘ª@ÌJÎ?H@ÍRÎ?s,@Ú¬Í?M@ÌÿÍ?‚@jsË?¸ @>ÀÇ?r@©ýÆ?n @PƒÆ?h¤ú?ªÂÆ?€+õ?Ú¾Ç?·Ãè?ó˜È?4îØ? Í?#Ð?ÔÌÏ?+ðÍ?oãÑ?. Í?°"Ç?2æ×?dóº?*ìé?»?Îþ?ª¾?Ñ×ÿ?ËÁ?¢@Óž¿?ƒþ@ÙÑ»?L  @Ážº?à @½?|• @ʇ¾?ç<@™½?Äí@}¸»?’d@´ýº?Ñä!@E½?G @»?Òðä?$ ¼?’pö?E…½?…/ù?èîÁ?Kó?ÊôÀ?*áè?Y½?6Nß?÷˜½?Ëà?=Á?‡;ì?aƒÆ?Ù û?Ê?KF@ãË?~9@ðoÊ?Qj @0»Í?ÂÞ@}ÑÎ?ë@ŠÏ?ˆG@ÓJÍ?U« @2ÉÊ?R4@ˆÊ?Q4@èÒÉ?B¤@U Ç?oû?â÷Ä?„áí?Ž=Å?!&Þ?„‘Ê?4KÐ?KßÐ?ŸÉ?¨$Ó?™íÆ?‡"Ê?¼¥Ñ?E4Ã?´pè?*XÀ?6¶ù?¬7Ä?U.ÿ?ýÃ?X@hó¾?Ý@Xm»?Ѳ @åo¼?„Ï@–œ¿?ä„ @B³¾?gy@P9½?ç@gâ½?@wó½?À@ãÛÀ?~x@lƽ?Ðç?  ¿?Të?¿ª¿?ÕÝí?è&À?8î?¿?}ê?úr¿?çiæ?Z"Ä?å¢ä?Ë­È?\óì?xË?’fù?lƒÌ?Ãl@ÁHÌ?>ê @¢¿Í?s@uŠÏ? ó@ÐÙÏ?²@ÞGÏ?žI@d•Í?¯™@™tÎ?ý@ºoË?|Vý?v¡È?Ù,ó?­øÄ?Y á?‰VÄ?vÙ?ݽÆ?]ÊË?GÌ?d¶Â?rÉ?”fÂ?åZÅ?—§É?Ÿ›Ã?â™ß?]éÄ?…qý?k=Ç?´"ù?§ÑÆ?©Cý?úTÂ?¤;@H¬À?–± @¡¿?›L @pÀ?¯@ÙÑ¿?~Ê@ÿÄÀ?W*@À?`Þ@ŸªÁ?ä@8hÄ?…p@ï“»?D!ê?o½¼?×"ç?%a¿?2ïá?)Â?³3ã?&ÕÃ?,ã?®Ä?&ªá?¸ŽÉ?kžç?Å5Ë?ñ?¿ˆÎ?¦=@êÎÏ?‚Œ@| Ñ?ê@'‚Ñ?5ì@iÍÓ?›S@1Ò?$U@¥ Ï?¸^ @¾xÌ?î¥@} Ê?s¾ú?à_Å?Éûé?IÃ?7×Ú?+XÃ?xÛË?Ý?oòÁ?²°ó?Ú|Ã?Á%õ?î:Ä?Û[ð?¶PÄ?HQ÷?¸WÁ?’¸@)Á?Ù @å ¿?}†@Ø¿?¿3 @5Û¿?ÁN @¦À?‰@¯YÃ?Ù¤@"²Å?{û@[0º?„µæ?8½?M_â?0$¾?ãhØ?õmÂ?—€Ý?P–Ç?ȼÞ?æ‡É?îõæ?°ÓÌ?S¼ò?Ó+Î?¦*@KÐ?&i@„ƒÒ?Ï@œÔ?&!@>Õ?l@ʪÓ?+Î@DÅÐ?™¥ @XÍ?É?×P¿?rÈ?­”°?¬çÉ?ÙJ¾? âÂ?«ÀÒ?©Ï¾?8çÜ?mÁ?…øë?fƒÁ?úœø?JgÁ?mÀ@$ÏÀ?)@oäÁ?@!ÓÁ?‘³ @nøÀ?:| @¤½?ðf @¢¾?+A @óOÁ?Ä® @ZÁ?YN @R4Á?œ„@¬¨¼?6éÿ?ˆ¼?¸ÿý?-VÁ?œMø?¾ìÃ?„Äû?ÈàÈ?V@ Ì?¹ @¤±Ð?% @ö¸Ò?xk@sÅÔ?±]@!@Ó?%£@Z¹Ï?£@ÉË?Ÿ@ÕµÈ?‡ý?BË?¥]õ?ErÒ? Oí?RÊÔ?<8á?a†Ò?×?cÎ?aéÎ?ºÞÉ?£Í??ÕÄ?YjÜ?1ÅÄ?Ìcé?Dî¾?Ó ò?û\¿?‡Ÿý?sbÁ? B@Œ$Ä?ÿ @% Ä?š @tXÅ?ÚQ @WêÂ?} @;-Á?ž{@(\À?îI @ÅMÁ?™0 @ÜÂ?H¬ @"ÎÁ?Sø@+Â?#ç@[¼?x2 @£¼?.k@ÒØÁ?ý@ƒÌÂ?m@Q.È?’.@[oË?êð @UaÍ?š²@ª#Ð?×J@‡rÐ?³Y@ïôÎ?‚@¢JË?üu @”„Ì?œå@‡Ï?mö÷?Ä6Ó?|ç?ÝÓÕ?ÂÙ?ãÍÐ?%æ?MáÉ?6 ò?ƒ—Â?Dcý? ²Â?ï@QtÆ?ÕÁ@whÅ?kðþ?DÂ?«ã@ÜóÂ?`ž @ÃÞÅ?jý @$KÈ?©™@/YÅ?ø¡@ÐÂÂ?Ë5@”Â?㨠@£óÁ?`Æ @—°Á?DU@]@Á?:ð@·Â?1 @þÂ?D© @»¸?äƒ@Lü¹?i¦ @®à½?’€@Y,Á?@|uÄ?7P@%WÇ?•@UÉ?Zœ@¯„Ê?þ&@ßÊ?ö†@3jÊ?-Û@q™Í?ÑÕ@ã›Ð?Yû?§Î?nTë?tÌ?—ò?wŒÆ?mE@ QÀ?w±@,žÀ?x¢ @¸Ã?9Q @dŽÅ?…@+Ã?¾ç@WÃ? Ø @‘§Ä?eú@{Ç?•ë@‰<Ç?^¶@QÄ?DÂ@ƒÎÂ?øÜ@—øÁ?}Y@˜ŸÃ?Õ @=BÃ?xð@NÂ?À<@»FÁ?q;@oÀ?ކ@TC·?Õ}@a¡¹?¤ª@´°º?²ø@Õ¨¿?ªE@&€Á?¦²@Æ‹Ä?G—@é*Ç?ʹ@¶¢Ç?mX@YýÉ?‚@ÜÌ?k³@$Î?@ÓÝÈ?Øó@M»Ã?° @‚¿?j¿ @Iv½?ÐØ@¥¿??v@k†Ã?t@²Ä?Ëz@5Ã?Œ @{Ã?Dá@Í„Â?Ý]@?éÂ?Æl@ˆnÂ? @YÈ¿?\ö@OÁ?YÇ@cLÁ?È™@žýÂ?Ä¿@OìÁ?u›@ÝÁ?}D@)Ï¿?v5@Ñ€¾?Ÿ©@„—¶?,Õ@Šg¹?òÁ@cÜ»?¥þ@èé¿?þ,@éÂ?Zý@ÉŸÃ?ì‰@ó#Å?„â@'È?ø‰ @;MÉ?¯î@w Æ?¹Y@"ÉÁ?3ó @1c¿?y @[œ¼?Ö8@«¼?="@bz¾?'™&@ÉÀ?m™"@ž”Â?\€@ÁeÂ?¡@G'Â?uÑ@Ñ8¿?\@о?Y¸@4Ƚ? @Ëc½?Vì@dŒ¾?Õ5@!m¿?9@hâ¿?ºæ@L%À?ÿ@Òc¿? @ûî½?€@^ ¾?f´@ñ·?³ @Ekº?H]@£3¾?W±@bÀ?©í@Ä2Â?¶l@8xÃ?-@…Ä?`›@¸ïÃ? @–Â?­ @j±¼?ü@}¿¹?Šã@ ¹?Ù™@tf»?°&@–¼? -@àn½?–™0@4á½?̯-@Ô…¾?4*@½`¾?Vø#@Üá¼?À¾ @<¼?“í!@nï»?W@ks»?Ör@šÁ¼?D8@ø½?¨@%¿?wÇ@8]¿?Œð@£É½?ç©@…½?½@Õ±½?j@÷ôµ?I$@Ð)º?+X#@{V½?ai @<ŠÀ?\b!@šüÁ?©³@ÈÐÀ?â@¤0¿?rd@7e»?ø@#s·?Ar@Xí´?@‘ @Bžµ?c¢@;i¸?~"@åd¹?nÌ'@Oº?²„,@%º?›0.@Ú»?O+@©;»?<¨(@2h»?k#$@9©»?Dõ @ßÏ»?@½@Mù»?_@Ë ¼?QF@wǼ?T@äY¾?Ë@Y÷½?*Ž@¨¥¼?t/@žÜ¼?œ@+½¼?«Ð@a´?1z2@Îϸ?0c/@ð ¼?»º.@ û¼?ðS,@榼?Kw*@¡Bº?ùm%@ü¸?½)@ö&µ?ŸM.@<³?ë‘+@¿ ³?‡þ%@—´?||$@Ø-¶?¨%@™·?}‰&@#E·?­Î(@$µ·?-$@¶ª·?é„ @u¹?z@º:º?Üë@¡»?C'@÷ð»?<ñ@éã»?t…@z¼?›Š@Ÿ¤¼?p7@} ¼?Æ@šòº?¤`@ǹ?Í:@éä¸?óõ@–²?fr?@4+¶?ˆ¼9@æà·?1@Hf¸?õ¦/@N‡¸?\ç.@¤(¶? Ì6@ç:´?+ç8@³?+®5@ª*³?¿V0@6‹³?´¤+@ S´?)@Iú´?<)@Ìæµ?\¨&@Y¶?8.$@øôµ?+^"@Þœ¶?)Ã@Ĺ?áô@¡?º?2@dȺ?žö@iº?êy@ŠLº?S…@;º?Ja@뺹?M@M¹?¼@-×·?Qö @¡:¶?½ @âð±?N?@…³?>Ë7@ •µ?×1@¬¶?x›4@6<µ?:Ò?@o|´?lC@l´?A÷A@Á´?wî:@Ûí´?,'4@Ò¹µ?š.@ïWµ?ð,@'{µ?žÌ(@4‘µ?©«%@ú¼µ?ž5)@ˆ?¶?õ)@~q·?"á&@s¸?C“#@ì·?Ó$ @P·?Ûê@S·?T@z‹·?Zd@ ü·?X @ÎÙ·?Žö @¥A¶?›%@%¶?k'&@¡²?kö?@sU³?¹ù7@´?üV8@~R´?O²B@ØÝ´?…oG@Ú%µ?]ÌE@ùµ?NB@X’µ?ï=@‚­µ?õ:@öoµ?!“6@Rèµ?<3@ö?ø.@¢û¶?‘²,@…>·?6b1@V·?fe5@~8·?vß4@ƒÛ¶?»Ö/@«À¶?ƒ±)@N%·?šu%@zƒ¶?ƒ@&@€¶?˃&@Ã:·?ÓK%@>„·?ñL&@¤n·?ƒ (@=Ʊ?C#D@¤Ú²?k=@ì_³?!A@´e´?)eE@‡´?Ô¶E@倴?ioD@*µ?ùC@‘»µ?Ã¥B@Ó¶?»=@{w¶?¶¼;@Ó&·?žO:@È/¸?`W8@t¹?hQ4@œV¹?/16@q°¸?Æá=@›µ¸?Ks>@ûð¸?Ãã8@Jå¸?EK4@¯^¸?í”0@î ¸?Ì/@À ¹?xÁ,@š¸?ì3*@˜Ï·?ž+@µ¶±?£]H@¬[²?teF@Uij?ìE@ Ã³?D7H@gdz?G@žy´?äA@ë³´?±©D@¾‰µ?k6D@4áµ?ûæ@@*‘¶?A?@û[·?|?@ꀹ?a§:@>þ¹?ì¢6@1aº?ýÇ5@ĺ?Ê‚<@Vº?Fg:@+Fº?‹u8@ȹ?5@f]¹?Ëý1@me¸?pï.@Mp·?«´(@Kʵ?$œ(@¤ ±?»wF@¦²?PbE@ÐÁ²?I@7®²?€I@ó²?¯oG@a‡³?uE@gu³?‹ŒE@ò-´?[BA@>kµ?KL>@²òµ?N=@r§·?¸79@e)¹?á5@t1º?Ξ1@Ź?CÌ4@±Ÿ¹?@7@ŠÜ¹?.Ð3@L ¹?¢’2@B¤¸?W0@{8·?×,@ª>µ?S'@s´?ÚÙ#@qN±?®`F@F9²?U'F@ϱ?ÑÐH@Dî°?M*H@/Ò°?¢~F@õ²?«€?@¢A²?ãÉ;@òг?¶Ô:@< ´??¥9@„Þµ?ˆÙ8@|c·?ó#6@¤Ü¸?Œ*/@½¸?È1@]¸?˜…3@t ¸? ±1@ìÞ·?xb/@C·?T‚/@ F¶?¼5-@xµ?™&@¸µ?¨G$@}š²?­Ÿ<@ ¾±?6ï@@”¹°?ëƒA@4˜¯?†´@@¢¯?Ñ ?@¢ƒ°?Ã9@º7±?53@1š²?Ó/1@tâ³?>‹4@ú‹µ?››2@l¶?Ä3@.­¶?u¾/@IA·?õ 1@q2·?(/@dF·?%ï-@«¢·?Ö-@k¶?7S,@ ¤µ?'Å)@óµ?ªº%@ÛC³?aH:@I›²?¨:@! ±?ý¾:@û>°? 9@£µ¯?I§6@ʨ¯?Zé1@°?A•,@˜é°?Ÿ÷+@®±?+L,@×Ù²?«@0@³?t5@¿m´?äÔ2@…%¶?3Ä/@ x¶?T0@Çöµ?Þ0@Øâµ?¼¨-@4µ?±,@ Ó´?Íó.@… ´?»n;@îų?±X7@6q³?§!5@bÛ²?õ&5@ã–±?SÕ3@J°?,2@ !°?)—1@çã¯?åÊ1@²@°?¸T/@)g°?úE4@Q±?9@”§²?(L:@7δ?ßX6@|µ?g4@ļµ?¥1@®µ?‰õ/@­±µ?ïò/@‡³?w8@;³?øÕ9@Tf³?.3@~ê³?SR0@ÿ´?›Ÿ2@»²?ë¯2@Ÿ•±?ˆ4@]Á±?ïË3@/^°?hÝ6@G´°?Pâ9@y(²?In>@èi³?8b;@ÑÏ´?¿u8@†¾µ?o:5@Hɵ?®2@¢•µ?450@ Ð°?Qz9@À°?å0;@Ͱ?¸C:@í±?2Û9@]ϲ?ét6@Ùɲ?Éd6@zÙ²?Ö=6@R•²?ã™7@e0²?Îî9@°u²?á–;@Xã²?be;@³h³?*Ò9@kw³?>L9@‰G³?‡19@È,²?–,8@z®?3¶D@T}®?Ê™>@1¦®?ó<@Hn®?4ö@@ØË¯?¡1C@¹¸°?J}C@ß@±?mËA@Ó±?‚œA@&ê°?ë…B@ I±?„¨B@ƒ’°?RrD@q̯?qÅB@b5®?¸PD@Á ®?#C@©±­?JNR@FÇ­?uL@Àæ­?¥×F@ ™­?xI@;t®?~®I@Éo®?ØåJ@·Ñ®?Â-K@Ë®?I@zP¯?¥dE@Ä¡¯?‹*E@ü®?/ÀC@bî­?>D@H ®?æG@Ø®?ÞXY@ëR­?‰§U@ ­?Q@_¬­?C•R@¾"®?ÆÐV@0®?/KW@o®?0´U@m ®?;?U@ÄÞ­?¬tS@`Ù­?õ|P@‡­?HyO@¯¬­?D@N@±Ñ¯?“ª`@*®?À&X@r]¬?9R@-¬?"hN@€¬?eaN@Áþ¬?Õ;O@b–¬?µ7P@ý¬?íuP@Ãë¬?þN@%­?xM@v“¬? 'I@s²¯?_ö_@‰®?q7`@= ­?“W@ެ?!J@Ÿ[«?Î6E@¢Kª?þ“B@`Dª?F"A@¶òª?êù=@ˆ*«?”ÿ:@0ݪ?Ãò6@©¦°?ΟZ@ŽÒ­?Ô9]@›‹¬?)ÌX@X¬?JR@N¬?Ø G@™«?¸">@ó«?ìe8@ìmª?†Õ4@ ·ª?^µ2@ºó°?,©Z@VU®?ý[X@ª¬?âvS@èh¬?îWN@“™­?GJ@ÓĬ?ÇMB@aö«?°û7@y«?Œ`0@£2±?ÌÔ[@ÏÔ¯? kU@%†­?ÖŸL@"³¬?.H@;â¬?>‡G@葬?ÒB@³¬?ˆ;@ù °?‚Ø^@k9¯?îW@¤o®?—N@vj­?3íF@Mˬ? &C@'ñ«?ÎB@Ây°?Æp_@¯? Z@^M®?5þM@V­?®D@÷š«?ëA@"ï¯?uÄ]@ù¤®?VS@棭?ƒµE@w¬?|W;@«"®? ¶Z@Ž ­? ôM@<Û«?Û­A@}¬?ôT@½Q«?0DJ@@«?eòM@Ø‚—?0ñˆ@´“?)‡@О?‹‚@QŽ?ÁË|@‹®Œ?,Nx@,Œ?¥Út@b›‹?PÏu@¿‹?~|@㻌?ö@îé?1ç„@°;?8X…@_Ý?«ƒ@$’?GB@"X“?¶™|@#z“?`Äw@OÓ’?œ§t@ÕE’?;t@§s’?s@d§?µgI@kÕ£?4CT@˜Ÿ?ÁtS@°Ï›?>BP@´„™?OòK@n÷˜?* E@B™?×Ð;@îw˜?ø~8@ʘ?âG1@™?®Ã*@ }›?¿ú*@w–œ?i~*@Gã?ER(@¬Û?¸j(@äòž?Ö)@ÏK ?`W-@š¨¡?öÕ,@&ú£?dc-@äì¥?§‡0@æú¨?ñ/3@ò׫?V€3@Á®?Ÿ0@‚Ȱ?ƒ|+@G¡?Nφ@&…œ?‡@t™™?q…@Òö–?w’‚@ ´”?‘1~@†7“?Û6z@‡¤’?„îx@©€’?¡ò~@ÓÌ’?½ë‚@rò’? ô…@Òm“?Ýy‡@ì“?¬<ˆ@È/”?[‡@øS”?ug…@«â“?š¯„@“?†Ž‚@µ¹’?b}@I¢’?x^t@ÒX“?~~k@&’”?¼^@}–?ø5R@¤¶—?Ž…C@X^š?“Å9@¹ž?¸\4@öY£?g=1@ù@©?¢‹.@©¡®?ݱ*@Yϳ?R@$@ xµ?J^@|‹´?ñ@ƒÓ´?ô$@ã³?ÍG.@¨ò°?”\:@Æ«?@[J@z–¥?$íO@ßö ?b¶N@^?¤ÜO@OÛš?EßK@ƒŸš?êaB@ó™?S‹A@;ˆ™?Ù<;@}±š?K$5@ªŠœ?Ÿ0@ctž?R3*@ôM ?_H(@xðŸ?cG*@Ý¡?‹)@T:£?ZQ.@à†¤?¢™,@@°÷ª?×àC@îõ¤?ö G@Jò ?ÂÅJ@Õ¥?5JJ@§mœ?¯H@Ç­›?üfG@—~›?´âE@pœ?„(@@ž? è9@, ? '0@8é¡?dÏ-@°ê¡?øÃ-@ £?¥/@ ¥?åA0@yê¦?[ý-@~©?ïú.@7¬?«Y1@rä­?û2@µÚ®?ï'1@i’²?¼m@8G±?¥åw@,°?’È{@í¯?T0€@öl­?"€@QCª?‡B€@º©?œ@d„©?ÁŠ„@¥s©?&p†@Ôj¨?UL‡@´5¦?Ç%‡@³V¢?Ú;„@±vž?+I}@’›?0Šu@œÂ™?D¡n@ž6™?¼åd@¤Ó™?2@¥¹¢?½x7@¤G£?¸i4@™ó£?ÚR6@ð­¥?e±3@?P¨?Œq2@<«?Ïô2@æµ­?¸{4@¯?³ñ5@5>¹?!&n@Ñ·¸?Mu@D;¸?mÃz@Ì··?zx@o—¶?ñ&}@^¿´?ÃÌ~@uS³?Öœƒ@ò‹±?î)†@ß®? ʆ@˜«?ô®‡@ü¥?;Ú‡@¡?ÄH„@#µš?æÛz@^V•?²]o@œ‘“?¢çb@GÄ•?"¤Y@#—?8Q@| ™?!aK@´/ž?íL@’¦¢?bO@9?¨?Ï–L@o¬?ïDG@ìk¯?ä‘>@Ö£±?l69@a÷´?T¸5@Éõ´?Èm2@7¹?ÉÛ+@t¼?d)@cx½?K‡'@g ¿?a(@Lo¿?pè'@ÙO½?¥¦&@í„»?Š)@ÙO¸?áG*@ÿ²?Tï,@®?%2@R©?‹3@-ͤ?CÝ6@'©¢?ï;@ôÞ¡?íÛD@µÛ¡?“O@hé¡?#àR@Ó¢?rÿS@Ëu¢?qL@Ý££?|eD@üN¤?E¸A@Y¥? m?@¾§?¦Â9@Åä¨?y…;@öæª?µþ;@¨­?:@Öp¼?ïƒp@-½?ÈMv@âE½?q z@|)¼? su@|Þ¹?4üs@ "¸?©9z@Ï(¶?©!}@3·²?b¡€@@®?9¾‚@'Ǩ?ã\…@ÒÝ¢?²…@sØœ?Qb@L¾–?CDt@ãN’?(ri@/$?6a@£«“?_Î`@ í–?›«e@¡ ›?¶q@FdŸ?½€|@ÄQ£?9=@E`¦?ïCx@ºL¨?âdm@Œª?a_@Ÿ¬?mP@ )­?C›C@Z±¯?+9@û´?"*@;÷¹?—@ºå¿?ÿ:@Y$Æ?â™@ÔÉ?‹@«ŽÇ?Ç@PvÆ?È}@®|Ã?tS@i½?@–¦¶?‡Í@„#±?i@L ¬?½š'@2q¨?ÕI0@9R¦?È9@Ǥ?þvH@Ú~¤?CSP@ä^¤?Ê¥W@TȤ?¬eV@e¥?ÉXR@’Z¥?èßR@Ðì¦?™8P@gT¨?~M@Ù'©?žJ@Ò «?Z4G@õ>¾?U u@ò‚¿? Ôw@®¿?0Æu@ÿ¾?jÚr@‰©»?Žq@¶¹?~8t@¿Ûµ?¥t@”±?êrw@ý.«?Šx@½ò¤?Fq@¿?v\l@s(–?MMb@D ’?£V@ÊZ?©MM@\OŽ?ˆIK@|Î?„‘R@ —?8Ýa@‰Y›?àÑt@rýž?cG€@ Þ¡?U¶ƒ@Éù£?c‚@<'¥?9ê{@Ÿ¥?6>u@Ц?úo@£Ã§?ÔWg@ª?>ÝY@W®­?áæH@'²?É<@¨7·?W¸2@WV½?ë$@6Æ?ùƒ@\0Î?RD @µÒÑ?Ž@þ{Õ?=Aö?=˜Ô?%ð?3‘Î?éö?þ7È? ±û?•§¾? @é:¶?W@â¯?˜2@•š¬?© -@¡M©?à¼:@ÞF¨?гI@Á¨?¢sQ@áN§?8îU@K§?=6X@4á§?JaZ@9|©?Ø [@0âª?<Y@ªê¾?]òz@#Á?'ky@Â?ÓAv@ö¾À?èk@¬·½?1fj@ÄÞ¹?^k@‰$µ?·µj@=3¯?ëßi@î7¨? Ë^@ Ÿ?‡[N@@û˜?à[=@p ‘?Á-@cýŽ?Sƒ@Yw‰?d¨@/šŽ?&@šÚ?vW:@nÿ•?pcS@Hãš?ÑÅl@µ÷œ?;-|@ð?Ÿ?ó‚@àÌ ?Î\€@wN¢?õ_}@j£?ÁÁ{@¤Ð£?à z@¤?ë‰v@€¦?j r@æe©?+i@W%­?Q0]@zT±?•tO@3µ?ÎA@L¸?óå6@Bż?0*@5¦Â?dt@,­É? @O³Ò?W¨þ?^ñÙ?ðŠè?*–Û?ÁÜ?]ûÙ?¨¾Ü?¸pÒ?Õâ?IRÆ?Ñð?._¾? @¼E¶?Uö@Õk°?s'@YÄ­?x•2@*µ«?|H9@Z~ª?C@KŽª?-YQ@ÿo«?ß”_@Ö"¼?Qr|@ërÀ?¡Ky@ý‘Á?úfu@Ô>Á?kjl@dï¾?ù8i@¥ô¹?UPf@·~´?Ü_\@®?<ÀO@4tª?¹=@Ó£?)Ý)@‹œ?T±@ו“?©£@'?Ìrï?é‘?1Kì?~“? – @õ“?¸¬&@‚`•?ÄâJ@÷™?`e@²™?Ax@Œf›?»N€@ Ìœ?X¡€@€Í?P¹}@ç8Ÿ?u|y@Š… ?;¯w@Þƒ¢?œòr@~‰¤?UÍm@Š$§?0¤?ö$C@"Ϧ?çT@@Üè©?²J8@Šq­?¥R.@ö±±?d#@S¶?¥Ì@vé»?u_@¢’Á?‘V @J¬Ç?‰Ø @ÛÅÏ?^2@lEØ?H*ö?úÂß?¡Þ? ÆÛ?)1Õ?ZvÔ?ýŠá?·±?‡cz@©¶?bÐo@`¹?×_m@>;»?êVp@é\º?n@¦¶?-äZ@4š°?;@‘b²?­@ˆÊ¶?%@–\³? ´Ü? ߬?ËÈ? °?ÈÓ?M6 ?§)Ã?Æ ?„ØÆ?7š?©Ì?Íz˜?çô?õ$‘?"¨@¢*“?¼J@š?„@/@cq?ç9@j´?âB@ŸO‘?y-D@Ú‘?7E@¢9’?êšE@JM“?œ)E@Ê6”?9D@c•?åŠ@@Õî•?ß“9@¿ô–?‘~1@+™?£/@ã0œ?*É.@3ž? ¸/@Ú=¡?—¤-@­£?E¡*@²q¦?^í*@+1¨?Ñ'@4ª«?G$@,Ó­?_6@ôµ?—ð@=ƒ»?K@­©Â?8‘@ÃÑÌ?·Ñ@~'Ø?…Aý?§]à?q(å?CÛ±?ûêh@3µ?Rh@õß·?Ëg@ú¹?ÿÂk@ÜÀ¸?*h@Ä®³?û¹Z@–Á­?øs6@Y^®?¤@y¯·?E…ì?OŸ»?v&Ò?¿X½?õÏ?·'Æ?ÊÙ?²½¨?§iÌ?'n§?´>Ü?Éš ?(·Û?ÈГ?ã?¤k?Tï?H‘?â@Þç’?€U@8VŽ?i>@¸ä?²ô"@úŽ?Ç')@kÍŽ?”B,@Ñ»’?,Ò1@­ “?KÅ.@Ó-’?¶‰*@­ö’?¨U$@ç^”?`p@y–?9w@Fü˜?]w@ö¶™? @;+›?—@hlœ?w¼@ Ù?’¨@{üŸ?À¹@Ùí¢?ž#@ìÀ¥?oÔ(@òª?ñ¼.@2…­?sx)@µ±? €"@YF¸?©5@6uÂ?Xè @ NÐ?+Ï@’`³?m»L@»µ?eU@ŠÍ¸?RÒX@À°¹?T¶]@¿m¸?ùf@Hƒ³?ü[@ ¬¬?ª~:@ )¨?X@E‘·?»Rå?Ž8¼?tcÌ?š@½?TÊ?2¾?p-â?«Êº?i¦ö?°?ªôý?WÓŸ?¨—ó?Œ/§?^F @à“™?ݼ@;‘?™Ö@«p‘??» @cM™?¹>@C0—?#&@íÈ’?ïÞ@ Ž?f”@Ì…“?)@Ó¤?Q’@~Ÿ’?é0@!ˆ”?Õ @r¿•?Œ @Ñ•?·Î @?»–? 7 @ -˜?D·@3ò™?»`@¹š?ˆ³@Oêœ?į@ßò?Ÿ@Jÿž?„©@T ?^"@¯#¤?)û'@V?§?É0@§¸ª?‹¢/@£±?‘$%@„O»?B2@ì¸?ìš5@jš¹?ÑN@@„`½?H|G@8̸?QsS@0¸?šèd@þ¦µ?Ó a@œ°?ÁD@L±?*·@§¶?!÷?žüÀ? à?Ô¿?à¥Ý?ʺ? 9â? Ôº?õãó?àÈ?Qõ@-޵?Â\@{\µ?âä@Óš?˜@çz¡?&@|7”?OJ@i¢‘?P@d‘?ÆÅ@ü&™?ž@GÓ—?ÿÆ@]Œ¬??@颟?_x@Þ̤?Ó:@ãL«? ;@%¿¤?t¯@‡š?×ø@„Ÿ?Ø4@d’Ÿ?Óqÿ?íâ?5@ûÛ›?¡¿@˜øœ?Ç @| ?:Û@Œ{£?€)@üë¥?AË'@ј©?80@m`¯?Ü–0@Ò϶?ì @¨¿?TK(@v­»?à3@1À¹?ÛV@”<¹?hk@Ü­µ?>0m@D”³?ÊZ@o¶?Ê9@¸?d@šŸÀ?ˆ‚@˜s¶?àð?bÓº?Òÿ@'âÀ?“D@¹é¬?áS@VO¾?b(@:©²? }@F›¢?“äú?=¨?µ¨@Ÿ«?[ @ħ?9 @|wž?ù’@åìž?¿h @úN¥?:@!”¨?*@G®·?0“@,Ø¿?¸q@--»?Úâ#@Š·?áI@Üà¶?;Ðn@Ní´?¤t@ Ü·?2w@fL¹?´åZ@ ¾?§>@›¼?„c@À¢¼?¡a@"éÇ?2Ã,@%‚¼?Y-8@η?,º;@%@Æ?8¿G@òöÃ?è³G@ºz¯?ÀJ @…3¦?P@ØÂ¢?ÐZ @Cݧ?¾ƒ@í Ä?®€(@Á%Í?su@/c¿?†˜@¬–½?;D@Fî³?šQf@¦µ´?ñ0|@*H¶?Lh@º\¸?9Çt@ ¯º?µkY@ÐYÆ?ò¯G@õ§·?ç5@6*¼?`UU@÷è¹?þ¿(@Ã?:‚/@ÁrÏ?Ò–@Ÿ,Á?/)@xÄ??ß2@;9·?¹ U@ë³? Ÿq@dì¸?Á¼ƒ@Ni½?w*…@ƒ¼?¢p@šJÏ? A`@ò2Â?ìÄ0@::Ï?@„àË?B+@‡È?€%@6Ä? S@–Í¿?wÁq@Ë¿?K¡‚@òÃ?T#‡@øŽÀ?–Ôz@=ë»?é,@¶DÆ?@o6Û?ÍË@o6Í?¿@úÌ?ŽýG@¶Ô?Ì…@Ï3µ?ôC&@âBË? @Ÿ Ü?¡˜@³WÛ? +@¹³?]@0"Æ?zÚ@ªÚÒ?’Ëå?:³õ?#@RE³?72@ŸÀ?˜(ú? ŠÓ?8~á?BJ±?Q±@„³¾?ž4õ?—Ô?{Üä?Hp®?F@ÌÙ¼?4žó?¼xØ?rî?öO­?`@µ7¼?£´î?—ÍÝ?zö?ˆž¬?Ïû @¸?ÌÄë?a,Ù?ØAö?®ª«?§; @“‚·?"éï?ëúÎ?ôù?!ª?œ3 @ ­¹?+íí?èÒ?bw@v7¦?‰Ÿ@A»¸?BŠó?,Ò?bû@'2¤?W|@Ь²?χï?gÊ ?e@‹X¹?·šù?³ž?·&@ƒN·?7›ø?y€?F',@]Kµ?ˆÚü?x±ž?ãÆ.@ƒØ¯?!Lþ?ûQ ?g6.@Uº³?*s @à £?Õ15@Øÿ½?[ø!@Jp¡?á;@A5»?Šô!@ˆ«Ÿ?¨˜G@@\Õ?ä25@áמ?½˜N@÷œ?_ýU@ަ›?}æ]@uÊ?½yK@²Úš?³ºb@MÉ?îH@°”˜?’_@kJÂ?6æN@¦$™?†µ]@ Â?W@Ù±?éb@£tµ?`èT@âʦ?Ñøe@íUž? ‚Q@‡ž?¶ìO@@r?šÙL@sl›?I@Jmš?‘F@u™?‹zC@ÝИ?H&>@4>™? "<@Â1™?<~=@Œò˜?yg?@ߣ˜?“uD@Ú™?©wE@OÛ˜?3žE@ò£˜?‡uE@Æã—?‚’D@˜?„ìD@_˜?”gC@+ ˜?¾:A@Ž—?Ñþ<@¥‰—?¡=9@YÔ—?áE5@¼3˜?°.@t™˜?Ê,@°g˜?¹ +@Ê—?S-@oÍ–?‡c0@ξ•?+›0@H½•?çÍ.@@8—?-0@÷j˜?NM/@A1™?q\.@ó˜?M^&@¹W—?0y@R£—?WÝ@+æ˜?ùa@ö¢™?K»$@¾™?)®$@]™?Ø/"@ùÁ˜?â±$@ˆ+™?ÜÚ*@Ç=™? â)@Nø™?qæ'@Ýš?*@ôøš?cš$@K›? >"@’ò™?V?!@Ä@š?ôs@ö”™?Ü@€3›?+ÿ$@}2?Ñù%@8Ôž?lµ(@¶ž?iH(@7R?ÔB+@}Éœ?ž”)@eGœ?±*@ZÇ›?bŠ,@æ§š?Ô(@8+›?Â…%@;Úœ?ѧ$@ÖoŸ?)@ÿß?j;%@Æ ?%Æ@]Hœ?MÉ@5’š?À@Ö*œ?O(@[œ?1¢-@Äuš?ÿs(@û›š?)$@ ›?‰%@ Pš?YD)@!™?”`/@¼ê—?‘Ä/@#˜?XÑ'@ªÐ–?„)$@;{–?g> @üÄ”??@Üg•?ÄH@‘–?ã8@Ïÿ•?]²@€”?æL!@Ó“?2!@ I•?Ùw*@Œ«™?(1@%š?ó€:@›„—?5?@»,•?kn<@nk“?;@m‚’?A:@‰Ç’?&3@¸j“?—2@ód”?+Þ3@ö…•? 2@—?…ˆ+@Ÿ‘—?H'@´?—?@^#@—?W @g•?/\@ÐÛ“?­#@Rå“?+#&@!“?>V+@ž‹“?b/3@Û*“?Âé7@0J“?w/<@Jä’?õ½?@K‚’?D²@@ Õ‘?VWB@š˜?ÀMG@˜?‘yK@ ?dL@Ž^’?@E1@ÞI¼?“µ6@>dœ?'ˆ+@äõž?4X)@#Ÿž?k—$@:?ž?Äÿ@Šœ?Z@ì1?ƒ@ç¶›?šÀ@Hœ?×A'@æœ?Hž+@”5›?YM*@úš?A+@E›?kŒ.@ù”š?±Õ-@–?™?£h,@˘?°%@€¨˜?²Õ@ ˜?]@,‘—?_@ïý–?E@½v–?„°@lÛ–?A€@®–?œs$@´Í–?“v(@î–?†o*@ZÏ—?á01@¹ª™?óÄ5@o˜?D:@Ì%–?ñ^:@Δ?¢<@DÑ’?Á:@¤8“?ê>6@èá“?Z(3@·p”?~1@tà”?2B/@ø1–?¥-@]”–?¡8*@èÅ–?óè'@lQ–?8¼!@“¢”?³ü!@¶”“?Ò9%@ÒÇ“?)@+¥“?áÂ-@…“?ë°5@~n“?õ8@“?(†:@ù’?Iå>@©þ’?Aì?@i’?ž‚@@1‘?åE@•U?,OL@¾+?BM@Ïb“?ØÖ5@s¸?n2@ÞÁž?’+@® Ÿ? ))@²ž?âö@ö@œ?7u@×?¦ê@[?.Û@Uè?Þ°@AÒ›?6'*@ï?wì-@m›?‘.@ç›?¹ñ/@Zeš?”+@š?Á¤%@gšš??8$@Î.š?XÞ@X›š?Û´@‰q™?˜±@4™?-t@C˜?®M@m³˜?o”@6ü˜?Ó®'@-™?£0@]Ø?<3@—“˜?Ù3@þ;™?8N4@z¨˜?=j;@PI—?‹ß@@Y•? Ý>@‚d”?ßp;@,½”?ö6@`-•?Ý2@9¡•?›3@û–?K81@ß7–?Ý,@òô•?U;)@il–?¿D)@–?L^(@5”?ÓÌ%@†U“?¸,&@_ç’?õm+@G“?,0@ŒÀ“?5@]‰“?ØÄ9@:“?>c7@Ö’?9@Ûí‘?Ž=@mô‘?¹F=@‘?õH@x?ßjJ@¾[?¢sL@›’?„ñ:@ÒXŸ?­®,@­i?g·'@x¶œ?ˆü@½Ä›?@;_›?‰ô#@‘W?‘Ü @×?O!%@+œ?ÿÔ,@ñˆ?hx1@Q‡œ?=.@õvš?ÔE+@Ò_š?¿½#@Dÿ˜?xÿ@Àë™?@p0œ?”@¦©œ? Â@=f›?@´ô›?÷B@ÍÛ?°1 @2–›?Ê(@/e›?¢&2@²S›?p4@Ÿš?ih3@ïIš?Ýp3@À›?`7@z™?ëA@ û–?ÓF@Ç”?ß;@ š”?I\6@@ñ•?IÉ/@e>–?V$1@D~•?yª3@ŸÄ”?d4@ÂW•?aé-@g?•?FX(@'7”?­$@¿”?gâ"@÷.“?„s'@Á’?(ë+@ýC”?Eo1@ N”?;<@I€“?uÐ=@¬˜“?Q19@s¾’?Ç„8@”‡‘?ñÎ:@¢s‘?}Œ>@>Ö?UD@VH?ÚýK@_æŽ?ɦQ@V?“Ò?@XÒž?Pz,@¼?œ?Š$@móš? ;!@þN›?š"@”„š?¨M%@Gð›?ëQ%@é­?=Õ+@¬?åV0@›^?“ý.@N¨›?D&@`š?+("@7¸™?¤þ@ 0™?Wp@ø˜?“¶@wÔš?z@Ćœ?_ó@Kž?-2@€,Ÿ?c:"@˜Kž?»^)@Ó‘?Š/@éíœ?…2@¬fœ?x1@¥œ?Þ3@ˆnœ?D£5@+›?ü=@V™?©¥?@ÿ!•?š^7@.©”?…/@J.–?z5@z–?Ì7@Çù”?[5@^I”?Ç.@$r”?ª»*@k£”?¨K'@¼V”?"$@v•?©Y$@Rä”?JZ(@*1”?NZ1@க?G7@$•?&B@@D”?Âf@@fŸ“?Ä–<@¢²’?Ö‡8@19‘?£ª6@P ‘?Y=@@#'?ÒÑF@ôkŽ?¿ÌN@x?2ËV@¥¶?'’L@ɨ?ÁÁB@”ž?æ6$@댚?žÔ@Yš?2Ä@òš?&ƒ!@2dœ?fj#@DS?ïò)@Ä„ž?F0@œÎœ?Iw-@oK›?@ì*@•q›?{ !@=Yš?Ö=@ š?Hå@\Zš?z»@ɶš?ª@¦+œ?Ñ¢@ Ξ?}Ó @vÚŸ?—'@xŸ?;|,@+æ?Ïó-@&u?o:0@aN?Ëý0@ä?W0@l?‚³5@,3œ?Ù;@±Æ™?×+;@ƒ­•?·K6@Ô{•?Qƒ1@°–?+™6@Êו?b´9@î•?F…6@¹”?Ô„1@€”?ïÁ-@ÄÀ”?Ñ0)@°“?c9-@E ”?¹?*@­«”?›Q-@¿›”?‘q6@µ“•?åK=@iŠ•?è~A@¸”?n<@3Í“?þ8@T×’?¡7@QC‘?cý9@aj?Àú>@,o?F~H@Ä?ʹO@=ëŒ?l[@ún?ÉeV@@Z®?5nY@yœœ?ïØ@0ј?g@bæš?þÏ@FP›?ï"@Oÿœ?I²(@Mkž?‚%0@ú?ö.@ü£›?Æõ)@¸š?Þà#@.œ?Kã"@ê0›?Ú¯@"þš?tO@û­›?Z/@¾? ¬@Låž?I &@‡«Ÿ?ÍL,@^BŸ?µ /@(?p.@5‹›?Ïc-@ôØ›?G'2@BÔ›?â¾2@f~œ?ʾ1@)„œ?Ðd7@ëš?ßå5@Çn–?ö0@œô”?ì-@4 •?«s2@p–?©d8@&•?ÕQ5@ø”?äº5@˜ù“?¨7@ºû“?ÎR1@x3”?&.@¨Ï“?SB/@ w”?Fä4@¿”?;@ä •?¸¿?@Ì”?ìWB@ ““?8—<@FŠ’?85:@e’?39@´ç?‰;?@ï;?}>J@ÞøŽ?ãgO@mm?ÔÚP@׌?·]@ {‘?úËb@÷Ù ?¯”U@2›?ƒX@Í™? ¹@‘ š?’@Ê›?’%@yÀœ?ôÂ/@þ ?O3@²(œ? 6*@Óó›?*“&@X?š?!%@ÆM›?ê×@2 ›?Ý@¸îœ?Ùx@BàŸ?üµ@¯+¡?X"@û,Ÿ?-,@g™ž?¿)-@“›?s+@‡½™?ƒ°)@\m™?¢-@S9™?Û.@û¸š?›1@to›?iØ1@ ^š?bX0@¦—?¿t0@þÒ•?-+@><•?þV,@–?À¤5@å•?¿5@Q€”?é;9@‡¡“?Lû8@ “?K„7@`@“?Ñ1@(,”?¦¢-@ƒ÷”?+Ø6@e±•?Äi;@é•?`¬@@1{”?ÖýA@!R“?Ú?<@¾D’?¿´:@4ý?;‰?@ûÕ?¥[G@BèŽ?âGS@á ?§R@ IŒ?5eR@ (Œ?þA^@¹s?7Ça@™f ?¨b@;Vš?›@û5™?—R @ì™?ÑG"@¦æ›?ä*@‹œ?#1@Éš?¿+@JÀ™?Íf$@%œ™?Lk"@ÊÙ˜?9Q @ à™?+$@ëÚ?8L@e©?A—@Z¡?Ø"@Ò¡?S2$@¤ºŸ?x1(@n(œ?6\'@»r™?4j'@ž™™?8D&@–»™?˜G*@ÈTš?†Ö-@kš?Ž%4@%;š?8½4@ñ–?›51@ç •?Êñ,@Úù“?Ä,@µt”?C°2@G•?ÿ 6@Ÿã“?*Ž9@r’?a¨9@#<‘?…¹6@ ’? A4@Ò“?݈2@-Ö”?ÌØ9@‰•?¨@@•–?T@@¼½”?Çä?@…þ’?v•<@Tã‘?v <@œ‘?YPA@x›?ªJ@÷+?‘R@-Õ?µËT@÷û‹?XVW@ÜŒ?ð‹`@Á‹‘?ŸCe@Z¦?Çs@’ì™?ÿ@QŸ™?ðñ @šC›?»&@å]œ?¯1@)öš?áç0@©ä™?H%@;«˜?a@ @hÒ™?Wh@“ã˜? @èoš?—¥@OEš?¯ž@ºMœ?ÿŸ!@$;Ÿ?fÎ&@ ‰Ÿ?oH!@fÍ›? !@;Ö™?7#@ÁV˜?s"@Lš?c%@V¼š?ò*@ÍR›?Ó 1@ììš?A­5@?+˜?+k5@so•?iÞ1@x)”?m0@Rz“?¤³2@Š“?¿R4@œ “?wê3@?Ø‘?6Y9@@Ë?O+8@ûª?f4@(9’?8=7@Ã-”?´ù8@Ø•?p B@;#•?X1F@ŠT”?TãA@žÓ’?ì…=@ ’? Ð<@§!‘?0.>@!?cFI@í”?‘NO@ÇyŽ?—§T@°Œ?C÷T@†C?“›b@AÔ‘?y e@o7ª?ž-~@/°˜?ö!@º;™?˜<%@HXš?bÒ-@‚z›?ªE0@ š?ÈV+@3M™?}ü @š?I<@¢Cš?Xõ@j™?щ@[À˜?[‘@ؤš?ä@Fà›?7"@v¸›?K#@š²›?mg@oš?˜!@X š?ŸR!@|—š?޳#@™½›?Îa)@=?T%.@nR›?„c5@Fó˜?Å5@LJ—?Ji4@u–?óª3@éñ“?˜•4@/‹“?k94@}/’?Í3@<’?¥†4@ˆÝ‘?W9@°°‘?SÝ7@Šg’?%5@$%“?\:@㸓?+8A@àד? ñD@¶@”?dn@@,“?§=@㥒?¤Þ;@:\‘?¢ÜA@p}?ädG@4à?³L@?+0S@ÕI?ù$Y@ZF?Ù0c@z˜?ø„f@:U¤?A"}@´ ™?™\#@_Zš?é,@¡š?4 0@¥›š?†R-@tЙ?âX$@Šš?0Z@7¦˜?’W@Ôà™?m>@ß¿™?ô@: š?˜6@3Ù›?•T@µœ?¸¶"@š‰š?}©"@ðö™?GS#@Âá›?xÎ$@v³›?ˆ$@ÀD?Až&@0Þž?Äo-@èÝ?‘’3@‚­š?ÏR7@•—?„#4@aN•?Xš2@‰¬“? ±4@Ÿ²’?\5@æB’?Üé4@Vc’?¡Ø6@"l’?:_;@Y‚‘?h 9@ ’?õ”6@b’?†:@Vc“?ØLD@ÞN”?ýZA@p:”?¼ü@@ “?kl=@ä_’?xª>@w‘?2‡A@8Î?BPE@sÖ?¼L@Ô3?JS@ª$Ž?¡f[@"?Þ¼a@+§?Û—f@!ܘ?Åïl@ªš?l<)@¡š?bö+@‡¯˜?#*@Yh™?{(@w³š? .!@z¬™?¬7@]ï˜?0<@Ù™?„@±à›?ö¤@@Ê”?>@ê “?~ˆC@Gù‘?™ÒC@Œæ?29D@üF?œTJ@­?4P@J@?¨§Z@É=?L’d@?\9c@¡?Fd@߬«?œÕ‚@á›?Ô¯,@‚q™?äâ)@̉˜?Æ-!@mߘ?jÅ@ÿš?ô† @?kš?=@]š?$³@ j›?3„@(až?¤¦@=ž?# @.á?@W @1sœ?QK&@òñ›?Ñ´,@°œ?Àù0@±<œ?3í.@!?Œ,.@¯œ?ï*2@U›?æ·6@‡¿˜?f07@|–?½3@]!“?bk-@ö†‘?–Ð-@Ìï‘?Q1@œ’?Õ 5@ÚË’?Ù5:@ý’?*ä9@Kò‘?ó >@ ’?©»?@ÂÕ’?¡ A@õ ”?Ô,@@/!”?ê:@'ù“??@1®“?¦ªE@:Q’?”J@T@‘?6J@Ð?bL@Q?¸ÍP@ÐÄ?HQX@µì?ß§d@¬AŒ?Wb@”ÿ?ÁN_@›¾–?ðg@&W›?„þ,@Íù™?XQ)@­™?z @Õ»™?„O@£Òš?¿Ì@8Nš?^!@±›?Eœ @êBœ?â#@ž¶œ?x¦"@é`œ?À#@wTš?˜@#@£™?©!&@ý£š?sD*@S!›?Az'@pY›?,@§œ?ß-@ñ›?MH3@fW˜?½X8@ÀË•?Ž25@fk“?pè2@l’?’1@)P’?Ìñ5@i’?ÄÁ8@ú‘?29@Vz’?¥‚>@¦’?§A@º•’?^Å?@Þm’?'ô@@Ò’?ëb@@ÒÃ’?=@û’?ÔÉ>@ï“?·nG@|Ä’?Ó÷J@‰a‘?MYL@·Ã?5éI@³A?ÄL@¥Û?ÄgR@㢎?DÎ`@ ËŒ?ðec@¶ºŒ?ÀU[@§ð‘?®ua@€ù˜?µŠ*@ ™?Ño$@WŒ˜?ø@ƒaš?žä@i°™?r0@f™?}@s#›?:#@h ›?f‘#@߬š?Ü$&@ º—?È¡!@3K–?ÃÚ!@™J—?HÀ"@ó)™?lu#@¶™?4z(@ºœ?G.@MBœ?‹ö1@#K™?¡k2@1ç•?„ÿ0@@†”?„/3@e»“?*6@È’?Dz;@³ ’?Æn=@¼R’?‘w=@r“?§q=@L“?#w<@•k’?îÏ<@ŸÅ’?–=@Í“?¼>@“?mê=@‹’?^d@@'ˆ’?A2E@Ü©’?Ò²M@¬ò‘?þVN@yú?SJ@~a?5yI@ M?ø­L@Gð?Y¢V@ˆ¤?Ü}c@oô‹?×9\@åí?!ÛY@°—?’'@N­—?P^#@—˜?ÞÂ@[v˜?¤ž@§¥˜?m5@ª˜?«â@f^š?vÁ!@Pöš?À$@¨™?›o!@ ¨–?³µ!@Z3–?±,"@ ž—?Æ©"@ý™?æ•&@˜à™?øo.@W¬›?“2@Èá›?z´6@@y˜?Âm9@>´•?s7@ Á“?kq7@ái“?+ 5@ H’?\#;@Ú‘?w,?@Í’?7¾A@‰>’?ÎSA@b1’?Ø@@@. ’?+#=@%Í’?`Ž=@Tù’?i';@¬Ì’?<@¹ú’? &=@Úé’?dE@ýé’?3O@Áß‘?k"M@°-‘?F L@<´?WG@pò?ˆ8N@ìX?8wY@û·Œ?PÐ]@„"Ž?$U@ç—?ø²#@Í’—?£@(S˜?NX@Q˜?šI@FW˜?þ³@›ð˜?±#@¥•š?!@:ýš?lŽ&@´Q™?¤(@ u—?^(@DX—?Ë,)@uƒ—? 9(@'Ì—?ØÕ)@¸9™?áÛ0@GNš?D²5@R]™?›Ü?@¾—?KÜ<@Nî“?V”7@L×’?`­9@˜=’?O‘:@’ï?ë>@¥‘?‚fB@û‹‘?ˆE@/÷‘?€êC@Ýý‘?þpB@A’?Û,?@¾"’?M1=@@“?ƒm<@ùY“?4¥9@;o“?#t@@fº“?)vK@Ÿ“?§øO@%æ’?¢'O@il‘?5×H@®Á?2 I@Ç?=‡M@שŽ?bL`@»IŒ?}EW@‡À™?@à’˜?ôä@Q)˜?o›@èÝ—?¼„@u˜?Rˆ@ä²™?û3#@ƒ½š?.)@=ôš?‡s(@¤È˜?6å(@äû—?A)@_6—?Vl'@Øå•?BË%@Ü—?Ç/(@¢™?’î-@”«™?0ý3@·G˜?$>@°z•?š2:@ñ2’?ÿo8@Ÿw? ´@@×G‘?„pA@S‘?c;D@5õ?ƒÎA@‘?¹B@­ß‘?S§A@;é’?$€@@®A“?Ž>@²“?³ê>@¹8“?õH=@A ”?6h<@”p”?÷D@]d”?¤«P@ÈU”?ST@’?pyM@ë?ëpG@ÊI?=ÞF@©?ŒT@x[?¥ó^@rlš?Ðk@û+›?*@ û˜?|y@ý˜?œT@”'™?Ãm&@X‹š?“*@ÃÄš?©X&@¦™?¯$@቗?@V&@W—? ¤&@C–?k'#@ÛÝ•?‹å#@L8—?U'(@ÀÑ™?¯x.@š?îà6@h×?ÛÝ;@"w”?ï9@.‘?8{9@k?ÓÜ>@©?q`B@G‘?l¨B@P’?|/?@N’?^x?@0’?NpC@¢“?Ö–A@8S“?¸O>@ãw“?Ú>@ïÛ“?ò<@…<”??q@@ƒ”?è’M@Ú"•?϶T@ô“?ƒCO@ªy‘?_QG@õ¡?ºi?@à?-0I@ÛŽ?WÄ[@Kø™?’÷@Zš?žä@¡˜?‹>@«½˜?8J @‚6š?¹þ)@o¿™?A©,@wY™?°¾%@ÐÀ–?(T$@ŒY–?iw'@<–?‰¿$@¸I–?·Þ"@ —? $@2™?>€.@ƒš?ô²7@l6™?Ó÷<@Ü[–?„õ=@U÷’?žP:@Ü!?&d9@<Ì?;Å<@^‘?ú ?@oŠ‘?v©=@Xü‘?æ5@@Y<’?\@@‘ð‘?ÉË?@­’?°¼>@¾p“?ú£<@¶Ã“?ÃÎ;@—f“?•‰=@³?”?u_I@æ4•?öýQ@›Y•?®R@ Ê’?ߪN@1ç‘?á¸D@ݶ?ë–D@“?Ä*R@üa˜?­¿$@ƒ€˜?Sß!@*<˜?ë@Uì˜?/$@¯“™?¨=*@¢Õ—?°B*@$m–?¶å'@m—–?¦;*@žÇ–?c"*@”Q–?ÍQ$@l–?ž¾#@L—?'Ñ+@n™?¬O6@VŠ™?¤š@@ãE˜?EjE@BÕ?ZB@c“?©Ü:@ך‘?Ë;@Á’?Ì5A@>e’?ÉC@îF’?„ÒD@)“?$çB@êÙ’?Î@@;¿’?\ì=@*+“?žb;@£b“?TE<@3“?ʨ;@–”?TÐB@ I•?¶cJ@9Õ?~@R@›”?+†U@]õ’?‹K@-)?¯D@üË?«ïM@`f—? @Š—?+*$@´W˜?Y{(@–ë˜?„2+@ïJ˜?VR-@||–?0¤,@Ž¢–?ãù/@C!—?c1@ÚÀ—?³)@’–?ÍÅ*@SÔ•?À ,@6~—?¤Á1@/ç™?ð´=@–™?;]G@S ˜?5™D@å_•?J@@Ü•’?Ñ¿>@ Ü’?²C@1%“?‰ºH@ Ù“?{J@㥓?‰ÊF@l=“?œC@Ùä’?]„=@àx’?}õ<@„ç’?s =@ƒ’?‹Å>@©›“?„k@@¿•?‰bE@¤•?nÈM@¯c”?>fW@ë“?¥)V@Ãב?$&K@ÂL?­*J@µ—?Úu!@Pà—?¸]$@Kö˜?&Ë+@¼÷—?"I-@’œ–?½¨-@KH”?®--@ô>•?Á)@ߥ•?Ï€&@Çs–?Ô&@-–?t‘-@yÄ–?Ÿž0@¶$™?Šˆ4@î]š?y@@_™?¶¾I@=–?ÚcH@¬×“?ÖE@ƒ=’?}iH@Çœ’? ¿L@þ’?ç‰O@.ø“?´L@½)“?sìG@ “?÷ÑB@UÛ’?n¼?@@E“?ÎC=@äz“?—>@ƒ'”?žE>@3•?«B@מ”?-%G@cª”?oQ@ÂÈ”?[—W@±+“?ROU@*û?j@O@M2™?Ö=#@`È™?ç¶(@ž³˜?©S/@Gª–?4ð.@¦Ô•?¸“+@š†”?.+@¿s•?Ç&@#Ÿ•?–²$@€9–?×â%@Ï–?0E-@ç˜? B3@p™?…7@³Zš?B@Pì˜?r‘G@„œ•?@²G@5Û“?+9H@½Ö’?èL@0$“?,»P@î“?abN@+”?+ÀL@T^”?Þ!G@äÜ“?I|E@”e”? B@S´”?NA@à|”?8B@ê•?Q·C@¡&”?0E@D”?&K@q°”?¸Y@!H”?¥qZ@C²’?NT@Äp™?àÃ-@åX™?u¡5@J4˜?mª/@&!•?ʇ.@î-•?Eä.@@A•? <)@–?ìò)@]G–?G“'@ ü–?ë *@+K—?8€/@ä.™?¶6@¡Âš?B?@V7š?9!I@³ˆ—?ü›I@¤Y•?®F@@á’?d•J@L´’??“P@Dñ“?ÄoP@†•?WíK@•?OL@žä”?E%K@¸•?GDH@ •?N{H@ùÓ”?ÒùB@=•?A~@@’0”?L\C@õæ“?DG@p@”?TR@fÓ”?,ŽW@7ø“?ÎÏU@¥ ™?‰U2@Ù˜? d5@6’—?¢ž4@^§•?WÜ/@2²•?O0@¹u–?kÃ-@1z–?ÊÇ,@ùÅ–?ÈG-@.—?ý¡0@l7˜?_8@ÎÕ™?yË@@U=š?7•J@vI™?mpM@žb–?i”?”>K@«Û”?'Q@&Ô?[ŸQ@—g˜?´Û3@Qt—?Þ3@Q—?øF5@™–?"õ1@þq•?w*1@D –?éË1@ë•?ò€1@â^–?öø1@DÁ–?[î6@r˜?ì=@ý¼™?|E@'¾™?QbO@žø˜?÷ÀJ@D…–?H@AÏ’?¢¾I@D#’?³ÚK@²¼’?&L@–“?ž0O@1I”?k M@Eº”?šrL@+‰•?ÖÒL@æù•?ð,I@Äñ•?ðšC@$m•?"8B@=ò”?˜§E@üŸ”?ì–H@•?­ZH@"ï”?›mI@Ôþ–?´.2@_š—?æI0@aµ–?Sé/@8«–?c3@]$–?$5@¸–?ÐÁ3@ò•?wš3@.9–?tâ6@õ.—?I;@T¨˜?µƒB@v™?KÊJ@^‰™?N@n ˜?ĹH@ã”?ÅH@á “?HžI@P’?jáJ@N[“?¾2K@‘î“?ÆèN@vŒ”?ýGP@C•?|{M@§î•?î:K@‚©•?ïYI@pÏ•?VCD@†²•?“ìE@•?ŒÐG@ó •?{áD@ðh”?óC@Û–?I-@æ—?Ó,@Á–?8³-@%—?¥)3@#¾–?nÚ5@¡½–?&´6@—T–?»F8@:c–?ix:@ÅB—?Ùæ=@Óô˜?£E@ˆw™?­0M@)è˜?Å'K@Á>–?‡íG@ás”?ð;F@ÿf”?‘ˆF@Éú“?WîG@¹”?»fO@—‡”?òõQ@Y•?JN@"ã•?¶ŽM@ø‚•?>ÁK@/•?%IK@Œ,•?xßH@L;•?â®G@9P•?ŠB@'ä”?Tµ>@¹]–?­-@[f–?ÿç)@ò–?Øq+@èÆ–?>4@Â{—?<8@9æ–?F³:@ð–?¬:@%—? r;@X˜?G@@.Ÿ™?¢âI@7 ™?žXR@–Ÿ—?øJ@ »”?zF@ûö”?ë¬A@áT•?ÓÂH@_É•?cM@”ß•?GGR@nJ•?›°S@r•?å.P@Ù3–?£æM@Àð•?yyO@g¬•?<‹L@i’•?1ÙG@0«•?^`A@·Ê•??@n2–?î.@›–?øÉ,@d–?«À-@Ý(–?Qe2@ÜŠ–?r;9@Ú–?™¡:@Ò—?ÈM<@ÇØ—?Ï@@{˜™?âI@™™?OÂP@ç ˜?µmN@·•?£êF@T•?W/D@tl•?­¢D@!€•?8øJ@r#–?í¥R@vƒ–?û‹V@ x–?9žU@&/–?ðžR@‹‹–?Ì®P@ÜU–?¥iS@7–?-OM@ª–?ÀI@Û2–?!D@%—?·ç.@ðe–?ÍE0@?z–?¿*0@ù¦•?Ë4@+)•?;@=5–?šË>@¼W—?PKB@tø˜?PF@„Þ™?ÅûL@ ¯˜?°^P@»r–?ô‹H@n]•?æçE@!a•?ÖA@-“•?MˆD@Õ•?'…J@Y—?¨PS@ò—??,X@y–?ßÎV@§–?‹ÓS@ÞN–?IØT@@„–?4×T@í¾–?õ–R@ —?T¤L@q—?gÃ.@š–?øO2@{³•?/÷1@p•?¨Ø8@ßù•?xž<@ö—? Ç>@ñu˜?I‹A@~´™?ÑÚH@vÙ™?ù¯N@¯f˜?7ºL@‚™•?þõF@•?{›E@…m•?üC@rŸ•?ÆD@T–?*÷K@^˜?ƒ´U@üâ—?[ÄY@­Ú–?·W@šG–?òwY@`Ë–?#IY@Ä—?^ÉX@œ—?G_U@š7—?——0@Œœ•?xy3@£Ã•?Ÿ6@œm–?‡ ;@‘¹–?ó¥?@U‰—?E¤A@Ö)™?ÿ¸E@Ðoš?tI@6Öš?bVN@ÂÑ—?TK@0I•?qÀJ@×”?ÃG@ôE–?ãD@—? DG@};˜?ïÇO@ư˜?×Z@Ôñ—?—\@MW—?¸[@éH—?»^@-A˜?qg\@”…—?¯½Y@™'—?Ô#5@`–?ߎ5@”W–?¡9@ [–?øè;@Î"—?§Á>@˜x˜?žPC@4Qš?Í!G@¨íš?:M@àX™?QåO@Ýt–?0DL@^ÿ”?‹KH@æx–?H[E@À«–?&×G@žƒ—?+ýM@Š˜?ŒS@®‰˜?Y\@â}˜??²]@¿ø—?ò¨Z@Aû˜?}ÿ\@¹º˜?ÉZ@Ë—?ßÖ8@Ï–?ú;@É–? ,@@ŸF—?jÆB@…h˜?Ã(C@ ä™?˜GE@‡ïš?MËJ@Eš?’óQ@Ô#˜?ØKP@Û\–?ÇËI@g—?RE@9Ž—?ÚŠG@<—?Ê~J@S˜?mL@Ђ˜?z¿R@KÖ˜?úY\@ßŘ?<\@Ãv˜?²Z@™?,ÇV@%8—?$.>@»%—?Ï8C@vÀ—?ôiF@°˜?D_E@ ”˜?£4G@&š?$MI@kšš?Ç÷O@ ™?tóR@%P—?˰N@1F–?ȃH@—˜?b^F@Õc˜?£áE@åø—?wI@\¯˜?/N@|ñ˜?~VV@ÿ;™?~Y@Éÿ˜?ÍZ@´˜?I6U@ëæ—?ÛgC@Zo—?ñ²D@ÉÝ—?š€E@_ô˜?q@H@h±™?u5K@¿š?޳N@gHš?ñV@ƒz˜?â‚P@–?sGM@}–?ÕMJ@!/˜?€oG@æn˜?ñJ@‰h˜?D®M@bý˜?¸tR@bD™?©mU@93™?KV@ìÄ™?3 U@±N˜?éhD@ï{˜?Ö D@L´˜?\iE@b™?DF@ sš?u€I@×Áš?Á%Q@ã*š?} U@òr˜?á÷R@>—?YÉN@è—?$N@¯î˜?•íL@ #™?°AN@z™?VôN@ëš?MiR@#³™?pT@Ì?š?¾OT@ºé—?û-G@]˜?E}G@:™?O»G@MEš?¢ÀK@·]›?÷2O@Ã~›?púU@iš?¤ŽV@wy˜?Z²O@aC—?UÑP@‰˜?µAO@'q™?þN@‰uš?ÎP@»7š?''P@Ž8š?Y‘R@JFš?ÄæQ@ç˜?šŠE@9 ˜?}'H@¢Ì™?äØJ@Žâš?ÀzN@Ëø›?2S@­Î›?°ÀT@Ô·š?SïR@ÏN˜?émP@¢ÿ—?-O@T§™?O@Pš?xwO@«üš?äÎQ@Ïš?w+R@©Ìš?‘ÁO@ca˜?†E@a ™?ÝàL@d®™?`ÙK@J(š?¢tM@Qèš?ŠåM@”И?o B@U!™?ÉsB@YNš?&F@UAœ?Ä^O@ó²›?ËdY@kŸ™?°£T@lD˜?¡$O@õc™?óK@{š?]ˆM@YD›?ã¾M@G­˜?×ÊA@R˜™?Ô|B@9t›?øùK@ Nœ?|[T@«:›?:IX@…p˜?ÞèR@À™?@O@ cš?(,N@‹`›?¯ZP@ k™?9ä?@²‡š?ÆñE@l{œ?|IO@¼œ?ÍV@/›?&S@{™?XæO@Ãmš?EN@¦›?Õ·P@ š?ÏD@EÏ›?ÁI@Jñœ?40P@ œ?Ö¼T@pŸš?”fQ@v¼š?[ÒN@sG›?Ò‡Q@Ô9š?9D@æœ?ÓI@ðœ?É6P@)ˆ›?’±S@¯š?œÊP@ŸŽš?¿pQ@Œ8š?KE@R"œ?”dL@ $œ?…S@íåš?ÖIS@éš?Q@ÃY›?üI@U¸œ?j„P@âÆœ?¼§W@÷Zœ?¹TS@KRœ?µ²N@ÅQ?œŸT@¬œ?U@]?xêO@F3ž?×üS@„Ïž?Q@çš? ¡(@Ò(›?kg)@¥¶œ?ÀE*@sœ?]Ý)@›œ?'Ž'@âU?¸~%@æ?Þ’(@§?Ù+@pœ?®–,@¥œ?7·%@‰›?ƒá!@Ò¼™?»ë@°{™?…:"@ºŒ˜?ƒÜ @lW™?ïj&@˜é™?M–+@*'š?²-@Ï/š?’æ)@æÚš?ËR&@´œš?[y"@Ú¦™?Hz$@ š?5"@^r˜?ë7@^˜?·_@l¥—?§ø#@š™?ô{.@ÝÆ˜?0@Ž—?„.@ÿ—–?¹ë,@9–?Jÿ)@h—?cü.@妘?£o/@Ÿï˜?²e,@ìT˜?¤z-@4ð—?Ÿ+@›˜˜?D,@„N˜?¸Û2@ÃÚ˜? M7@Ñ-™?ad;@¬C™?¨|=@?"™?QC@Þà˜?Õ{D@¯v™?ˆËE@›¾™?$G@W ™?õ™F@à˜?eD@G˜?Þr?@à ™?Qt<@f]™?ÄC>@‡õ˜?Í;@ƒZ™?à A@«î™?–A@³Áš?œ•D@°Aœ?‘ L@þ?TÔJ@Q›?ž0)@1 ›?w%@i&›?#T%@Ù÷š?§W&@õ›?;{$@du?«¡&@S«?œ0@”3ž?(e4@®Œ?©,@g«›?‚&@++š?Þ!@Y‰˜?KŸ!@\Q˜? !@ ˜?¦î$@ד™?ü2)@µç™?ÿ¡,@Ïš?ÞJ-@ƒôš?‰+@ŠE›?2V&@`›?q;%@S<š?¡$@ã6˜?=í!@Ü—?ïÔ @d—?µš#@£=™?Â%*@ß™?Bö1@¯ì—?\_-@•d–?P¢(@nd–?M%@l÷–?ÔF)@íß—?ŸÇ.@>3˜?+Ù,@CÖ—?ž+@˜Ð—?«7)@Ûr—?<,)@˜?lô-@Øx˜?Z×1@Íq™?+L2@K“™?”ë6@š? y<@ÿ1š?ËÏA@iš?êÆF@ˆš?LˆD@Êoš?±vE@I™?7rE@ù˜?Û°A@ÁΘ?x€@@Õc™?ëS?@]Wš?c,=@-š?Wf@@tÌ™?y ?@0ÿ™?Û‰B@Wçš?ùáJ@ b›?ˆ&I@ ›?Zx%@7š?Ï##@]š?"@¯t™?^ñ&@0›š?$B)@ଜ?5C0@ Á?GK7@¿›?k½2@Ö›?Þ®+@µ®š?gJ(@×®˜?˜»!@Ù ˜?·¸!@ãC™?4!@Äš?û$@Vó™?-Ÿ*@³™š?0Ù1@;1›?¨£4@” ›?DD/@ÐR›?+@§/›? ë%@sÓ™?U$@¢˜?£,$@Ê8˜?r,"@Ù?` '@¼*™?  .@±—?}%1@­U–?Ð+@Ö?¬A&@’Í•?©(@…È—?T×,@š˜?,œ,@æš—?ö(@D—?(m(@‘¶—?õ8)@,î—?Aõ(@ +˜?Dê+@Y ™?I;.@Ž™?ì[4@® š?(¾9@“gš?¦Ï>@MH›?×4C@l.›?|AE@çÙš?yÇC@ï ™?YöC@@ؘ?îVC@ª¯˜?%A@r™?œ[@@òèš?-îA@¢¬š?=¦A@£!š?_¡B@˜™?RLB@¢š?æåG@`µš?Ê F@y›??#@>Mš?H…"@Ùš?]%@S]™?¥¸)@ô9™?À¿+@Aó›?‡|2@ä^œ?ÐÖ4@(Gœ? {1@$›?ìÖ(@»Ò˜?´†%@üõ˜?‚Ò @$¼™?]? @—(š?†¨#@âš?ó-&@û›?²…,@K›?Sû4@|Ïš?o¿8@> ›?¸©3@õ3›?§C.@›?x£*@cÍš?.…*@O:™?'@¤Õ˜?¤l"@“™?'@!q™?C1@àÀ–?Ol0@y–?;)@Nr–?ÎÙ*@›y—?õ-@[Ù—?©)@Âs˜?L¹)@{¼—?‚*@æ—?ÉÓ'@?å—?{(*@u™?n.@ûÆ™?ˆ 3@<š?~)5@|_š?)s6@š—š? =@$Ûš?šRB@~]›?@ðC@Šéš?QöB@ØRš?K×C@%é˜?D3C@ײ˜?ßA?@Pp˜?*t?@÷š?ø@@˜­š?3FB@š š?ö-E@ɨ™? aD@!6š?¼G@ßD›?y´D@˜œ?F}$@B›?–f$@¸}š?ES'@6˜? *@½{˜?U-@ï›?¿m1@8 œ?å2@Ï›?æë/@Æ™?Ï+@ñy˜?Ïó&@З?rÇ$@1ߘ?*”"@$Ý™?HI&@㦙?|Ì+@î?š?¼¿/@SÍš?'24@¥°›?{•9@1œ?´ª9@Æ›?k“2@ý š?º-@áÑ™?ŒŽ,@7E™?*¡(@œ/™?ÉP&@:8š?ÊÂ-@*I˜?¡,4@A—?%1@‡—?Ê9.@Õ³–? ¢/@µ—?lƒ+@ò/™?Bý,@!·™?Ëš,@&š?Zì-@*k™?<[/@1Tš?Õ….@²›?2ô0@T š?ö»1@Íš?žO2@¼qš? §5@z0›?¢.9@WC›?>á9@øš?\ÎA@›?^‡F@A š? ÂA@¿I™?£?@èà˜?°‡>@îs™?¨B?@tâš?!±A@90š?¦UE@Òš?VJ@䤚?¶vI@9<›?ÇC@]¿œ?³(@!Í›?t)@Gך?pk)@° ™?*n&@>ñ™?åå(@§÷›?¥ô0@T¹œ?ä4@òÛ?3†3@ò+™?Ž¿.@WÖ—?:‚)@ƒ"˜?¸&@”T™?—''@ø$™?Ó#)@ØB™?¸³*@ð{š?O¥*@ò¯›?7²1@£ œ?C9@¬¿›?b9@O'›?û>2@;Kš?Ä÷-@Ü`™?Ï&-@\Ž˜?Ñè)@õ[š?Ž*@zi™?Ë/@*q˜?y*2@dv—?žª2@*“—?U‚2@þÉ—?Ó/@@b™?áv0@ª›š?ˆš1@Á.›?"÷2@Úš?/3@™~š?Î 2@î®›?øT/@ g›?kØ/@BE›?†v-@¡{›?+Y-@X1›?3/@­ßš?óþ0@-™›?Ê7@®›?RB@9›?àC@ž¸š?ýXA@ê7š?²>@¿š?“c?@mQ™?©ÿ@@mš?óÞC@œš?[BK@ hš?`FI@•øš?¸ÂB@gÙœ?pí(@»š?ïF'@±8™?r÷%@ëš?NW%@IÉš?Õ}+@ œ?yÜ4@Œœ?…ë8@³¦œ?02@O™?)Ñ*@p˜?6ñ%@s˜?È9&@N ™?Qã&@¼™?}Á%@Q š?ïÚ%@§øš?• .@s.›?ëË4@•´›?sž8@™‰›?¨`7@ºû™?~6@Hy˜?³q/@DN˜?0ï+@Nfš?¢•'@CŒš?à,-@8\™?+}/@ \˜?¼´2@jš˜?íñ5@bx˜?à4@[°™?A2@¸iš?·e3@Sq›?rÇ3@—š?Úb3@ë™?O1@ô¥š?g1@Õø›?îa/@Òvœ?Æ/@o?¸î+@Wê›?¬+@2~š?hÂ-@f3š?¶w/@ö5›?dT6@g½›?ñ3?@P¼›?Ì•G@ýƒ›?ÑC@'Fœ?·ªC@Šœ?íeB@’›?¿E@Ú›?ö‚G@?š?€D@‰W›?ñpA@jB›?‘ù"@‰Ëš?11&@ ™?Y%@Îíš?%ª(@;ñ™?£Ý/@š?6@¯›?6@ø¶›?³˜/@Ÿoš?Êd(@î™?r&@Sk˜?wí'@Y´™?£Þ#@æš?G‹%@àš?&{'@2º™?% -@—Ú?&o0@Ëu›? 6@ü”š?+7@#Q™?>3@삘?xã+@Ò™?Dƒ'@xš?ù+@/µš?©@-@•n™? Ã0@걘? 43@êé—?ô„5@Ãà˜?9!5@©Å™?Ât4@†@›?ßb5@öh›?j4@ø«š?6B2@üz›?íÙ1@w†œ?ϼ4@%?æ2@Ë~?¤/@iªœ?x5+@n‚œ?!-+@·Ç›?³,@œ›?ð0@XMœ?Y!7@ôˆ?¡>@€?‹D@`’œ?D»E@Tnœ?ž%D@›5œ?«]H@l^œ?JÒG@ù…›?>øD@Dœ?8ž=@Ÿ¿š?øÊ$@±Kš?E¤&@’qš?+@|Öš?±0@lú™?€†3@vxš?!5@a›?¦¡3@c›?ë{0@cË™?-)@ÜÚ˜?_½'@Æ™?S]'@8¥š?ÝÃ'@3G›?±&(@Ó›?·Ž*@Ág›?M`,@_›?Ä0@ð•š?«02@ù™?üŒ.@#^™?Dw.@e™?Øy-@o›? ò*@µÍš?+õ+@Yš?žÉ,@Ê™?¡ß2@˜?Ÿð5@<Ι?(7@¾š?5â8@1r›?–Þ:@ÊMœ?g¶9@XÚ›?–33@¡1œ?x=2@9?¸†2@p?‹»0@î¬?½+@ÐÃ?*@¤¦?]ö(@½ûœ?ÕL,@—“œ?Yx0@Ÿœ?.Œ5@}î?ø8@¨Ô?Òñ=@k°?G>C@*?îB@Ó ?NJ@wÞœ?k|K@(‰œ?`#H@¯tœ?FWC@TÙ›?}%@‡ïš?‚U*@á›?§ý/@¤Šš?ü!3@.#š?yô5@€¤š?%k8@}½›?¥c8@Þ}›?k1@¨Î™?à¨+@š™?Ã*@¾¨™?¥)@’y™?äÔ*@ey™?é£,@s3›?Øc.@{úš?ÐK,@®¿š?¢‚-@Ònš?Sœ+@Ï€š?Nã+@«š?ùë,@>Rš? +@à;š?ü+@ø„™?)³/@î´™?øÒ2@±š?Ž53@Áš?Å8@†š?^Ý:@~›?kï=@‚Ë›?Ûý9@HTœ?G26@­Ÿœ?^1@^:œ?}=0@Ü¥œ?F.@Q?Îm+@îÕ?U×*@C!ž?Þ+@gž?ð_-@‹ž?ëÑ0@+ú?@4@®˜?Dƒ5@\ä?Ý„6@çÕ?,;@ž?ž‚?@”¬ž?§¿E@(ô?“åI@[Óœ?ƒ½F@Üóœ?š]H@p7œ?æ_(@÷kœ?˜B*@Æ^›?Ñ0@øš?Äp5@uô™?54@d\š?Þe7@n›?“4@ºÉ›?N,@¶-›?+,@dš?‘‰+@ô—˜?¯)+@¥ ™?ÌŽ(@°'š?Å‹*@Êoš?,@ˆƒš?âI-@ˆJš?‰?.@9š?ž,@øIš?¸‘.@9¢™?Ùe1@&®˜?Ëù/@Ò^™?’¤/@$Ñ™?ÄÛ2@ ƒš?~w4@‚Öš?nÃ2@i™›?É8@‰Tœ?–p<@ÿ3?—æ>@šE?÷"=@ à›?" 9@"ƒ›?Þö1@&?Q±-@P? .@-q?òç,@ÞÌ?.@:ž?9Û1@³éž?¶4@pnŸ?(3@ø–ž? Ë3@‹¢ž?>83@ >ž?7@Öž?ö‚:@îâž?+¹=@ኞ? gA@¸ž?µtB@ª?kG@ 7œ?ó|(@ªœ?Ÿ-@• ›?^E3@oÄ™?xà4@ܘ?\*8@™?´3@ÝÇš?”,/@ˆÈš?Rù/@R£š?že-@ÙÛ™?þ*.@;3™?9+@3°™?ñ*@TMš?•›-@³¸š?Ä-@­$š?`t1@Q š?å:-@\š?§o-@L³š?q›/@Ï9™?‘À0@Rµ˜?¹ÿ/@ü=š?š¬1@ î™?k7@çš?&ø0@묛?³­2@€œ?AS7@/!?–ö<@l?7@@üœ?Oq?@*ú›?Ê—7@7!?‚2@óÒœ?„Ê2@Tîœ?˜2@Ô÷?þ2@«Ÿž?)25@büž?‘O4@WŸ?81@²›ž?à/@Wµž?©ˆ4@>Äž?»,6@ož?16@J+Ÿ?mÉ5@¦Wž?·Ó7@?è?Ãå;@š1ž?8@@!åœ?è5+@©œ?Åä,@Šä™?ö5@×M˜?;4@Ȉ˜?Z¯1@I‘™?(3@m÷™?XÉ2@h­š?šÓ4@+Õ™?k•/@ ð˜?§U,@tP™?gæ,@K˜™?2/@ô™?‹{0@Ç*š?Œ„0@DΚ?Ç?-@š?gŸ,@Å­™?Й.@Þš˜?‘F4@ ï˜?ô'1@&œš?r?3@(u›?ƒV7@Ѱš?d˜2@†õš?•U2@JЛ?åŽ6@ôÕœ?eq8@®"?9’?@>áœ?É8A@Nn? )?@ie?>~;@9?wC:@] ?¦5@SÐ?{¿3@2<Ÿ?˜K4@z™Ÿ?6•3@–žŸ?T0@5©Ÿ?Y´/@Kèž?EÕ2@ùóž?U_3@×RŸ?:Q4@lïž?Ú3@F[ž?DU5@¶?·‚:@ež?çA;@H;?÷ *@Á*›?ê!/@¢¡™?ª5-@lϘ?÷P-@†y˜?HÑ1@ƒtš?,ã5@)š? ê5@Ùm™?@€3@Í´™?«s.@Ù"›?Hñ,@¬šš?ƒw-@BFš?Ù2@Úš?¯¹0@ôÄš?”º-@¿Gš?Çò,@ŽÓ™?¿«0@÷˜?Xg.@J®™?ݼ.@”™š?I_0@&›?¶16@A>›?ÿ6@ØŽ›?û6@Gœ?5Õ5@‘íœ?ž 9@Ø?˜X9@©nž?žæ;@¡HŸ?ýW@@vyŸ?^¾A@Í–Ÿ?KÇ>@9HŸ?Öê<@H  ?º´8@:úŸ?€6@)¡ ?*•3@õ ?£’1@vU ?«¿/@Ò¡Ÿ?ÆÛ0@6D ?Zý2@~ ?´e6@’çŸ?£46@/Üž?›6@h¢ž?÷S4@’?¥4/@–å›?O‚0@‹á›?ñ3.@$Êš?ß-@‰š?K_0@·È›?Ö!3@ iœ?¸30@£Dœ?d6.@v›?åš.@š›?!-@ÿyš?û-@Òš?,%2@Báš?ß//@ì;›?3@õ™?Ô~1@3›?¤0@ ò™?rq*@š?Ø‘)@IÝš?#®/@U‰›?x¿2@«zœ?c7@Vªœ?À59@$3?ô8@ul?/N6@ž?t_8@Äž?kŠ;@ÙûŸ?•HA@ªÆ ?jD@5-¡?¥ÞC@!¡?~²?@"à?‘Ò;@µz¡?6¥6@zB¢?Q0@r`¡?C},@“ ?¼•.@(@ ?94@J¡?Ï48@· ?#µ7@ÌñŸ?í7@¯—Ÿ?«â1@Éìœ?-2@Åžœ?$v3@ œ?·ù/@—†›? ~/@Rœ?[Ñ1@éМ?¯T3@@àð¡?”RB@Ê"¢?…_F@8¢?zC@¢?Ô,<@àØ¡?—4@ïé¡?ˆ3@ju ?¸4@a’ ?Ka5@¨b¡?°Þ6@0Z ?â±7@ w ?°ø7@t+Ÿ?:•1@#Ÿ?Í/@ÊÞž?Ì(1@Š?<2@7´œ?âÄ6@ö?™7@=^œ? û1@œX›?}^,@™%›?‰d*@Ľ™?ä‹/@Ó š?«\1@!;›?p3@bš›?B4@]ãš?β1@ºWš?ý÷.@‹Äš?0€-@ÙŸš?u/@øj›?¶H3@ž;š?n?0@ƒõ™?cú4@È›?tè8@S3?ˆ=@ì»?<Ü:@È^ž?o·6@Ôpž?)Œ4@Šèž?ç³5@¸ÆŸ?188@ c ?qö;@ °¡?yeA@Á¢?ƒ”A@Ž9£?;æ@@[£?˜;@ˆ"¢?× 9@¡?Öb7@£¡? M7@=*¡?I¶5@éË ?©¤7@•L ?np:@ øŸ?Ã2@ËÙŸ?±'@2¼ž?õ*@áuž?E+@Í4ž?uf1@ „œ?'½1@_ç›?»g1@Ì€›?.@a’š?W›0@ÍX›?–Ç/@¥|›?žÄ.@Hœ?Øî4@˜Œœ?³6@Œéš? 3@Kò™?ù0@NÓ™?‡»1@ŠÂš?Â3@éZš?j6@ûFš?¥/3@‹T›?kí5@V?lC6@¯ß?k$7@|ôž?x 8@ Ÿ?Ž5@ÆÜŸ?¼4@§T ?ôú5@ž8 ?($9@{¡?¨6@!#¢?+V8@ £?3°:@’£?…<@‰ £?ë=@š¢?~<@«%¢?2å<@•? ?&£9@V  ?ï}8@ަ ?†Œ6@t¢ ?‚1@-7 ?6Ô$@ËŸ?œ[%@ ˆŸ?=½)@€ð?˜D/@¾J?õ‚3@= ?{“3@[Cœ?&¡3@kYœ?Ô2@ Êœ?!®1@1fœ?Ÿ2@c@ªô¢?v?@&Ò¢?xàC@0T¡?„@@¦ã ?HÂ9@Ê^¡?065@ou¡?ý˜1@Á¡?†#@Oq ?[7%@ÈŸ?B)(@³vž?ZS1@fž?»?6@¸?ò4@œI?×}0@Rûœ?¢$0@Â?³4@b?ש4@±F?ud7@wΜ?@Ô5@y[œ?<5@=4œ?ñÁ6@Peœ?‚8@hœ?K£6@Ó›?Ç0@Ý*œ?»,@?Þl4@Ô>ž?ðð6@·LŸ?s5@:žŸ?©³7@ÚàŸ?Wd6@ù—Ÿ?©X5@Õ) ?¹2@”ý ?yz0@‘o¢?Ó0@¾¶¢?S1@ö˜¢?Á\8@]å¢?ÎÌ?@²\£?ô"D@ î¢?ŸÔA@íH¢?[½=@—È¡?èñ7@W¢?'j3@wV¡?yf#@Ù¡? @&@O• ?DZ,@ù¡Ÿ?÷¯/@ÆŸ?ª3@ È?(/@…"?4/@¾?Œå0@¿U?}Z5@J?äè6@±Cœ?·“8@¢`œ?EP5@­ œ?u4@™á›?¥ö6@®2?ŠB8@d®?}&9@( ?æI7@‹‡?Îi6@é+ž?n©9@'Ÿ?¬8@¥¸Ÿ?×6@gÉŸ?¶»6@ê ?Ï“4@A„ ?cÜ0@U?¡?ñß1@¼h¢? /@Ùš¡?‡-@ùŽ¡?7ï2@5¡?h#6@šQ¢?þÆ;@û„£?2=@|£?«!@@° ¢?HÃ=@‹¡?]P7@Ÿ“¡?€„#@))¡?‘ª%@'à?4h*@Ò ?8ª+@Ž$Ÿ?Qe/@`@çØž?ù;;@)Ÿ?U;@ú0 ?^A9@KïŸ?öŠ5@È ?ŒÐ1@Ÿ® ?zh0@Z¡?Uc0@l”¡?D¾.@7¯¡?-@öö ?ï0@h¥ ?i³1@Û ¡?£¼5@b#¢?Ná5@ü™¢?&;@ F¢?k9>@­¢?ÿ=@·ÿ¡?͹%@b%¢?5%@®B¢?+ &@¯³¡?jù+@§  ?[×2@†Öž?ο5@ÉÝž?Z6@%«?A24@’;?„Ë4@_À?mÇ4@ø ?¢"8@³Xž?+¹8@Õž?›9@Ξ? :@²qž?C<@ FŸ?Èä@@oÑŸ?köA@_ÒŸ?/=?@ñŸ?Ç:@ þŸ?g4@ù ?p 0@QK¡?µ 2@zð ?nŽ1@ø¨¢?v§+@¢?ô-@“ ¡?î0@&¡?kj1@šØ¡?¾1@9ž¢?Ôe0@b¢¢?‹v3@ôó¢?Eí8@8Ë£?Ã’<@}j£?Uw$@’×¢?3¦%@l/£?g*@}I¢?†0@t=¡?M¢0@›}Ÿ?ø³5@mBŸ?j„5@â+ž? 3/@o?w/@é2ž?/È2@Mž?/7@[=ž?Ð28@«ž?6@Žo?n€8@wí?$<@ªŸ?Ô`D@,П?‘ÄE@x9 ?ïåA@ah ?í>@*\¡?÷Œ4@sœ¡?Ä04@#¢?Šg2@)‰¢?H.@U«¢?8‹0@çy¡?!4@®¢?¾`4@>£¢?’¼2@BY£?ðo.@”n£?ç€/@68£?Òµ4@b¤?Ù9@d¢?õ#@Þ«¢?ž#@è¡?Z'@L ?ϵ)@¯G ?q".@;êŸ?…F.@9¬ž?',@êIž?Kd)@ÉÕž?ë,@©* ?SÖ.@ârŸ?õ2@ãž?ÒÖ6@k`?° 5@Í ?¿¯9@fCž?@@áqŸ?ÿÜB@F ?oNF@ㆠ?'ÍC@}¹¡?J?>@Æ'¢?õ”7@Òk¢?úÔ5@ê=£?Ù¨7@Ž»¢?€7@Å\¢?kÛ7@È¿¢?àÁ8@ÖP£?z85@°”£?MC4@ z£?Kè2@ú«£?f2@Ú¤¤?Èk6@¯˜£?‚!@„ߢ?¬%@ú³ ?$t'@'pŸ?Þ°(@…¢Ÿ?v-)@/áž?â+@¸Hž?@›*@Þðž?ˆ/,@ЗŸ?þO0@ò©Ÿ?n#2@Á«ž?YÑ7@pž?&8@œ‰œ?È8@Y?|¬>@ÇDŸ?õA@ïŸ?±qC@ =Ÿ?¬¾B@Q| ?I#>@Û¡?Á<@o°¢?¡ý<@Ëõ£?ÂB>@”E£? ò9@!£?¾Þ8@B=£?¸:@Be¤?";@±4¤?!â8@„v¤?ÑW6@¾¥?' 4@ä¦?pB5@w1¤?.§)@¨¢?ʘ.@Π?F&+@ß» ?8a'@1É ?ad&@õþž?zh(@XRŸ?Ͻ-@Â,Ÿ?Ä/@ )Ÿ?Àñ1@þcŸ?-é4@."Ÿ?[Ï7@$²ž?ªÃ6@®ž?­Þ9@Î÷ž?IÅ>@|*Ÿ?¯ÂA@ybŸ?ò›D@Ð( ?9@@ßC¡??"=@Pw¢?%©=@5h£?üC@n¤?ÛŒA@mø£?‡Ç>@ªØ£?c;@¼¥?Ya<@ü÷¤?Æx7@u¥?0“7@O¦?=·4@‰¥?r”4@Íë£?Qï1@¨¢?“Ð0@ùà¡?,}+@¡?$‚(@ ½ ?)Õ&@ß: ?Ó*@6+ ?LÉ.@rýŸ?âÈ0@¯‚Ÿ?Ž0@©?Ÿ?h33@?¾ž?.6@™7ž?»l9@GÍž?IS;@ŒÉŸ?l?@é2 ?!4C@è¼ ?G8D@º¤¡?t{C@%ð¡?ÆA@ê¢?SôE@6î£?²¯G@’ £?ALA@c$¤?¡^<@Ø7¥?]›8@Ž¥?&¤6@†U¦?I5@õŒ¦?V[6@÷¦?°ÿ7@¬_¤?Äá1@M£?¦ž-@¼ª¢?¶R*@ O¢?E&@c¢??è(@Ó†¡?;w,@I®¡?yp1@Ó¡?fM4@æ3 ?Z‚3@a‡Ÿ?u«6@¬ˆŸ?öQ9@¸>Ÿ?]Þ9@«. ?î+<@ÁÄ ?õE@@~À¡?v³F@‹^¡?¨JH@gÌ ?ŒûD@§Ì¡?•ªG@LÈ¢?sH@P©£?‚!E@Š ¤?„;>@@¡¤?1]7@’¥?w6@í¦?Ó 8@é¦?>Ÿ9@>ˆ¦?û‘9@œ;¤?_Ç/@4H£?Þ.@ûÊ¢?v+@ËË¡?Á8'@G¢?“ñ)@kþ¡?´|-@~ž¡?¢52@ 0¡?݉4@s*¡?»4@/? ?6~5@‘P ?\ê9@®ô ?p'<@#Ú ?#º@@êö¡?»H@Ów¡?RÈJ@™M¡?wH@é¡?:+I@¸ˆ£?¶K@fP¤?ècH@†˜¤?¼‰D@Å>¥?…J:@%¥?!<@ÃQ¥?Ì&<@ˆe¦?ñ;@Ж¦?¢;@U6¤?,G.@eä£?¨1/@¯á¢?U­+@{¢?åš-@Á¸¡?¯0@6¹¡?$0@™¢?.S0@ü¡?61@9‹¡?UB2@1'¡?æÚ5@_¡?¸=@ÚY¡?ÿk@@Áµ¡?¢àF@J:¢?SÞL@õ ¡?ZVI@@/Œ¦?Öª>@ Ϧ?»*C@Nà¥?°4@/ÿ£?Ô3@H£?‘X1@ú¢?iÅ.@g3¢?Mñ+@ZÚ¢?¬í.@Ù¢?=·1@°:£?9…2@ÿ¹£?ü½6@cФ?¤<<@÷ˆ¤?Lr?@Š÷£?ŒõA@ýå£?ØÄC@n¹¢?WÕD@û¤?˜ G@ë¤?·èF@‹·¤?J+A@¿ý¥?×›=@ú'¨?(<@ߨ?¡M<@ÐI¨?C%=@»‰§?¯A@qÀ¥?êy7@Âh¤?Ïë3@<¤?»2@œ ¤?Óÿ/@;À¤?D«.@{…£?€Ë1@Js£?Ï1@ˆ‹¤?hœ2@Aº¥?j…5@–Ä¥?a9@+¥?xá7@—¶¥?p#<@X¤?¿D<@b¤?Œ@@,A¥?úðB@A¬¤??>@Ôª¦?9¾<@Ÿ¹¨?÷2;@î{©?Ñ/:@ ‹©?ݸ:@çÖ©?kÏ>@¿ü¥?7@ˆ©¥?:¾4@„¡¥?3@0þ¥?0G1@’ú¤?>1@"¤?m-3@Õ¤?@2@O¥?¨Ù/@±¦?Ó¼1@?¥¥?c*/@]l¦?ü 3@’÷¤?]4@A‚¤?³7@”w¥?$<@A ¥?ž·?@§?•k=@iH¨?Uv9@lÛ©? u8@«?z˜;@rq«?®P?@Y*§?þÙ7@‰¦?s^8@ðÁ¦?º“5@ª¦? 5@0Ã¥?¼3@Ľ¥?b2@d`¥?¦P,@•¾¥?Ðó)@D+¦?Þ*@ƒX¦?ƒÄ+@ÐÕ¥?Q-@Û¥?o‚,@›¤?·2@7N¤?Ÿ:@yO¦?ø;@  ¨?dÆ7@×vª?ÒÚ6@Ù$¬?Qª8@×)­?5y;@g†§?õ4<@á§?Š;@x¦?sõ;@x¤¥?ÔÂ7@9¦?š4@·¦?)-@ây¦?`Y)@Oú¥?oÕ&@6È¥?`&@1˜¥?†'@åâ¤?O]'@õ£?²‘)@ܪ£??2@˜_¥?JÁ8@Ñ)¨?ƒ4@ñª?…5@ê¡­?Ð}6@§S®?â‰9@%R¨?`Œ:@:¿§?t<@k@§?¨{:@¯È¦?²ô6@C§?e1@¸&§?ÈK+@4M¦?&)@s8¥?g$@ƒP¥?N%@mT¤?µS&@¿ ¤?’Ú$@ÍË£?5C)@ø¥?‘7@õp§?6@Òpª?^73@iü­?}r6@3ñ¯?®o9@Sܧ?pÕ9@í§?^¬:@¥+¨?ôû8@¨æ§?.4@ñ§?R°/@Î?¦?ú*,@s&¥?…N'@Hè¤?ÁŒ#@"°¤?úù%@î¤?$ &@*E¤?W)@M¶¦?øº6@á<¨?{Á<@éQª?–¯7@À¶­?-'7@dR°?<39@q¨?H3;@ ±¨?8@â{¨?‹5@i4¨?Dœ3@ñò¦?WK.@»¥?¹&*@¯g¥?ÇÒ(@ž¥¤?Ô÷'@3¥?‘ +@aÞ¤?¦.@朦?Õ:@6­¨?óC@Ūª?øË=@pT­?t:@|_¯?¡ž8@¬©?Ño8@cz©?Šž6@.,©?sV4@Q¨?Î-2@Õ¦?AN/@DÓ¦?AÎ+@ ¦?g>,@ª6¥?QÊ/@’š¥?S6@vѦ?öÛ:@©Ó§?ëõB@°Hª?;X>@ª¬?y9@«p®?ƒ’7@×Cª?×ê4@ wª?2;6@Ù‡©?ßJ5@=r¨?ït5@{¸§?{j2@–ñ¦?C.@¾¦?61@5j¦?eJ7@$ä¦?“<<@^&¨?¹QC@ö©?v×@@e ¬?ÇI:@|­?´ù6@ñ&ª?Üþ5@шª? ¬4@NŠ©?’6@š¨?½²3@“R§?160@ئ?»þ/@8¦?«Š2@EO§?48@9™§?íA@Õã¨?ã"E@•Zª?)=@ܬ?57@š¡©?›Ù2@èi©?%w2@Ën©?ÐÃ/@î¨?ï¼.@Øq§?©§.@ãæ?ï©/@†W§?'3@bô§?ˆt>@)¥©? ÉE@lª?‚^A@Jª?rR9@òÇ©?&1@&ò¨?»„,@Œ=©?…-@üþ¨?ªU-@ŠÛ§?DK.@Üe¨?oƒ/@Û¨? Š9@ìú©?0Ñ@@z«?/@@ª?8@µ/©?†à+@,Ô¨?z¡+@`¶¨?ûÏ,@rG©?ç¾.@k’¨?6.@ ª¨?qì7@“½ª?̵>@^>¬?WöA@T ª?Ñî7@›Ž¨?ï—*@Sn¨?‹3*@2ô¨?ó*@î¨?Ë-@‡Š¨?H:6@£”©?É_<@–ëª?Q„C@çw©?8À9@ûϨ?ˆ*@?©?2+@ºò¨?+7/@ ܨ?|5@ª?ÕT<@vŒª?ÑÒA@—e©?¾}@@}̨?0@«¨?)^2@a–©?Ôó:@½'«?Ú>@S¿ª?d›B@æÄ¨?nC@hD¨?‡E:@•[©?¡A@Tª?ä‹F@Ѫ?ÉÛC@œI¨?›õC@Ëg©?8·G@ð[ª?ÝL@àª?3UH@3©?e'F@4Qª?eP@ ¬?íóM@¾Nª?í‹K@¬«?t$P@á8«?«ÃM@W­?{K@´Ï‹?PÈz@?‹?sËu@빊?Êo@ iŠ?0‡n@ž«Š?kul@m2‹?Qqj@ôÿŠ?Êe@ hŠ?lV^@¯yŠ?d(T@¼ŽŠ?ê[J@‹?¦ÂD@_£‹?xR=@À\Œ?gÁ6@?Q3@ÄQŽ?8³1@X”?ª_/@wX?Y.@‘?-@)“?;½/@©/”?ñz4@f«”?²Þ5@/ä•?ë£6@gª—?Êv5@7W˜?7)6@c¦˜?ü4@Ù ™?hX3@'®˜?I3@ør˜?&Ï3@dU˜?³o5@í˜?·†4@YA™?…ó4@›…™?«R6@Çš?9–9@@Tš?*>@]š?ouA@”C›?À"B@ÄÔœ?4ä>@pÚ?@;@" ?‚f7@™æ¢?(æ2@9¥?Åú+@êܦ?ñn%@fÑ©?ÔC!@ l­?š&@¬¥°?Ÿ;@‘í³?Î@¡¶?q@·?YN"@Ê·? $@[e·?ü#@%G¸?†°"@‡Ü¹?©ˆ@%º?ë5@Dã¹?Jé@í¢¸?» #@œ•‰?åVf@Ÿ‰?Á¦d@6‰?¡`@¬Ó‰?öV\@<"Š?[@ÄŠ?1Z@cÕ‰?ž X@É‚‰?Ñ­W@6S‰?¯P@WŠ?/wG@#"‹?“ÀB@hD‹?Û >@q?Œ?²þ9@`n?Ô5@éçŽ?™Ü2@g^?kÇ0@t‘?9-@V¹‘?´†)@Ëf’?ÃÐ)@jß’?„b,@Da“?v….@ ”?$Æ/@´ •?Iq-@z‹–?ð.@å•—?F0@)ɘ?¶`/@¹™?¬ä/@N£™?þ_1@){š?ÊË/@Aþ›?8.@bÜœ? .@B?¼Y.@ë¾?^‹/@¨Ì?Û«0@Ä;ž?‹80@ŽŸ?ÛØ+@Uî ?„Ó(@´£?§ã%@ÀÛ¥?=l%@»_§?ÔÖ$@w¥©?/u#@d«?¨×@$¬?Y@Vu¯?Çê@j²?n@oô´?Ò;@è·??ó@Åd¸?Î@ð¸?vx"@¤º?3ç&@¬»?Áž%@Œ¼?µ@@þ¼?Ž @_ä¼?~` @ËDˆ?ž¶[@«ˆ?P[@x—ˆ?¹×W@vd‰?{}S@¯b‰?råS@t[‰?²cS@ð‰?0§T@zõˆ?ÐT@áˆ?‘NO@^‰?jG@<Š?fÍ>@ùøŠ?˜•=@ 1Œ?s;@sš?þð7@Î@÷ô‰? \;@¦‚‹?-/<@ W?j9@ÍŒ?Äo7@5Ç?é4@å‘?Uî3@I,“?wª1@À”?…³*@Š™–?aÍ(@¾Í—?u$@:+˜?^Š#@M-™?áQ&@ý½™?Y9)@’v™?Úõ)@^š?ªt*@Q›?Eò,@¢œ?¯É.@؃ž?o³+@h¤ ?ò-(@“\¡?B×%@p_¢?nâ"@+p£?- @c@¥?*á@”G§?¶Y@.¤©?¬@*Ñ«?”¤ @E’­?‹˜&@—ž¯?Ô—-@{+²?öç6@¡l´? y<@P5·?`Ê>@¨¹?MA@>‡¼?F<@@ôì¾?ÓW?@ziÀ?øŸ>@ŸÂ?_c>@BÍÂ?‹¬9@3>Å?ŠÏ3@ƶÆ?‘k,@˜[Ç?°œ%@úÆÆ?^Ø&@؇?¸ˆY@—Kˆ?…#\@øÚ‡?®è[@.ˆ?äZ@,¡ˆ?ØÏX@åˆ?Âl[@PŠˆ?§Z@²'ˆ?âXY@9Ô‡? ÐT@nˆ?Ä÷O@rˆ?7HI@jl‰?E‡?@ª6‹?Å<@!¦Œ?i58@5îŽ?UH9@±-‘?^7@§@’?m™6@ܺ“?Ûc5@p2–?C7/@–€˜?')@Öè™?ï¡'@Jôš?§À$@Šhœ?”¹%@ŠM?P}&@Ùž?{¶%@u™ž?xî)@•TŸ?ÁA.@µk ?ãš.@&¢?cÅ*@z¢¤?^'@ˆ™¥?ªÝ#@¦?ÓE"@5^§?0Ä!@·Æ©?ï @Â;¬? @¤m®?óÑ#@Þ°?h(@“ä²?2.@*²´?ż1@z¶?ö 7@ŠŽ¸?|68@`I»?Ю;@ ¾?ßK>@ÐùÀ?¢ >@x’Ã?ñX;@šAÅ?tJ:@á¸Ç?ƒW7@wÊÊ?!‘.@ì»Ì?‡Ç'@”ÓÍ?Ç#@›Í?±á @‚&‹?—˜f@©Û‹?a°f@º…‹?JÝi@ÅûŠ?“d@wŠ?f_@ÑŠ?sa@¡Š?ú™_@b&Š?ÛÈ]@«Á‰?=.[@1÷‰?ÏX@×0Š?JÚQ@Ê‚Š?ž)I@Ý\‹?‡HA@gŠŒ?ƒÜ>@5?I=@íL‘?©>@}ÿ’?CbB@åC•?{@@8û—?Al<@á™?n'5@œœ?Ëž/@ s?z‡.@|<Ÿ??i)@Ù ?úc%@Íó¡?\4&@Ü¢?Z/'@çÀ£?û*@%ƒ¤?^$-@š¦?ÉÙ*@½ð¨?Cd'@,¼ª?¼'@Õ¬?|:(@y®?F<)@Gö¯?ü¨)@rH²?¡Ë*@ë,´?))-@쀶?$–/@^Q¸?vh1@¥º?1Ã0@ÏL½?G-/@üÀ?‚/@Ù,Ã?’½0@¡<Æ?èQ0@íùÈ?Kq-@bqË?¢Z,@Ê©Í?\-@"ÊÐ?¼À(@\ºÒ?ºŽ"@!àÓ?i@Ú½Ó?Šø@ðò?pîj@/Ž?£tk@÷]Ž?¿¸m@îú?E)l@§¢Œ?(¥j@[!?+hh@UòŒ?ø÷e@茌?ãd@á‹? ^c@@%Œ?Wc@x¥Œ?&Í[@ÞŒ?^U@—?ž˜P@­BŽ?æÉI@ Ñ?9D@gG‘?3jE@©“?‘H@x–?N:E@¨s˜?âHD@¡š?±?@?éï9@ïHŸ?¯Ï6@®|¡? ¬2@¸A¤?1.@ú¦?ô‰)@(@§?" )@}Û¨?{Œ)@¨©?H0@Êêª?Vé0@9Š­?­/@-°?p1@ȱ?Îø0@ÏÁ³?J 0@¶?ûh0@à_¸?”è0@>ݺ?D0@33¾?Žn/@\¼À?„0,@‹”Ã?7¥*@£Æ?«˜)@ÒyÈ?¥­*@8¦Ê?ø'@¿²Ì?„ý%@ Ï?8€$@ëŒÑ?´G%@¯Ô?M"@—˜Ö?šz"@†×?+K!@ÊÕ?§(@9HŽ?ìýj@2¡?˜ü9@}e£?cû5@Ǧ?â:0@üòª?£0@¡®?ø,2@/±?22@ᆴ?KÎ4@ì·?²6@A+¹?œÕ2@€ƒ»?D0@¡Ý¾?‚"-@6Â?‡ë)@ìZÆ?Ѫ&@«ÄÈ?M%@¿…Ë?§;"@ÐÅÌ?)·!@$uÍ?§@‡Î?iÚ@°1Ï?šL!@LÒ?S‹ @VåÓ? !@[¸Õ?³%@ ×?€ &@oÔ?)*@‚–Ò?‚È,@Óÿ‹?™d\@\6?u‘Z@%?œ`Z@ÒD?õ½X@Û\?ÈIW@Ž?NO]@š³Ž?Yzc@ö{?‘h@«²?Ðf@×À?ä¿d@ìÍ?Ÿ:h@V‘?×g@»’’? e@}È“?ùb@¤½”?–_]@ ã•?W@æ—?ÙÈI@öª—?@=@[—?’46@ O—?Ò3@>d™?ü5@Í0œ?Ç3@ž?X”.@°¡?æÚ,@Vë¥?ÂU-@ê?Ç+@*–­?¡Á-@y¥±?To0@Hȵ?ãõ4@޹?j4@V¡¼?:¥0@üEÀ?^~+@ÄdÃ?h}'@¢Æ?Äþ"@uèÈ?X@FõË?1›@¬XÍ?t @KyÎ?VO @‰„Ï?Þ× @ÇöÐ?=m!@+ÁÒ?Æ%@'ÊÓ? É%@ÓÔ?^-%@âAÔ?Q'@åÓ?¡ô*@ PÐ?¸„0@‹?±X@.w‹?lŒW@¸|‹?3FR@¡î‹?NO@-"Œ?ÊÜM@ª€?ÁT@ÔMŽ?fZ@–kÊ?à#@ÌHÉ?Ñ&@êuÉ?ý'*@Ê?‰2@g¦‹?ÓP@ê·‹?ë•Q@þ{‹?YˆP@iC‹?ÝH@W`Œ?‘íF@¾h?ÎJM@[?P@„Ž?VN@Ê?yoN@ß/?1O@y‘?‹ÁP@ýG“?t¥W@l¦“?H³\@¸Ù“?üw\@O”?{GX@Ïà”?ÊóP@HÜ•?eÉN@¯â—?˜ÝO@4Fš?å¦P@<Ü›?øÒM@b ž?%ŒK@¯Ÿ?¿ÂE@e¢?Ñ;@‹É£?Q6@¦W¦?)2@ð©?–Ð-@™“¬?4.@r°?“P-@=×´?®,@e¸?ýú-@gà»?O¡,@‡À?ÐY+@DîÂ?J¶)@NáÅ?6'@Á.È?·•)@³qÈ?Ѹ,@[cÈ?àb,@’Ç?Æ{*@àÅÅ?ëj(@JõÄ?v%)@\ôÃ?N+@Ÿ&Ä?{;.@TRÅ?æ5@¥àŒ?z¯K@=†?AìR@éÊŒ?‰ãP@ßI?==N@îÐ?2O@BêŽ?zIN@¤ËŽ?!AK@å@?¥?I@½?¡LF@®Õ?¹ãF@š‘?QfI@oÖ’?S¶N@ ”?ëýP@åï”?i‡R@˜‡”?úùM@Uf”?K¬H@–?Š=G@›Š—?âcL@D/™?A´P@ó›?4O@Ë?!˜M@^j ?jâH@Éö¢?eC@Ké¥?L…>@à!¨?u:@Vª?ëü4@«ó¬?©61@*°? /@ãt³?è.@¶?áQ/@º?Ze1@ãó¼?%11@IK¿?Të1@VÈÀ?Ýñ/@²EÂ?#º/@JÔÂ?~&0@Q°Ã?2Ç/@#èÂ?„¯*@ÃÉÀ?;-@(‚À?i¾0@—uÁ?b3@¼-Ã?¥:6@#?GàN@ÓýŽ?‘xU@À‡Ž?aW@ôA?ˆHU@¹Ð?¸ßT@P9?{M@€è?½ I@\â?]C@i‘?2J=@¬‘?Ñú:@*—‘?„§=@*’?ËB@s&”?|[C@7š”?á'C@`ú“?Â@@d-”?x@@—•?G°C@CÔ—?"YK@<Õ™?º£L@OË›?ÍÆJ@8ž?|ùH@?ª ?›±E@¶Æ£?ÁH@¬Ÿ¦?¨¶E@½á¨?A@ áª?˜2;@A—¬?–¥6@†ª¯?j2@‹ü±?Ý^3@Ú/³?Qü6@±¶?¢e6@OÖ·?^‡7@º©º?C4@ùj½?«Ÿ3@@ ¿?W/@Ún¿?Yu-@.Ü¿?Ð).@UhÀ?s-@›Å¿?ª¸/@»Š¿?Ÿ71@^Á?âñ/@AG?2}Q@¢û?;ðV@›Æ? ÑY@Œs?×X@V)‘?ŠQ@’?ÕfN@0’?^bK@@µ‘?DbB@|‘?Q,<@õ°‘?äd6@MT‘?ÂË7@ºL’?S7@©¶”? <7@Ò0•?Ñ[6@*”?d@6@ #”?ô‡<@Xñ”?ÐB@e}–?¿SG@—Ô˜?…ªF@˰›?kÇC@9·ž?™ïB@(M¡?<B@P ¤?ßïE@¦?þH@„Ĩ?6@SR’?±w9@½]‘?ˆ6@*&“?¤Ø2@î“?Ø$4@&ó”?¸º.@È´•?F3@m©•?¬¶7@öp–?®¦:@ï©—?ø÷<@kw˜?Ú:=@†ëš?o=@ž|?E?@ü† ?.A@§ä£?MÇE@<·¥?LG@E¨?Â\H@äͪ?üG@/­?FD@‹Ê®?%º>@ÌQ°?qÝ:@kº°?Bp8@Ó±?Æ6@|Ù²?íë5@ëó´?ï5@=Þ·?Šú1@ç º?jâ+@¸ƒ¼?g.(@Z·¼?݃(@r½?°ÿ&@I ½?$Þ)@P?¬lN@=Ý‘?ÞˆU@ð’?£V@亓?ŠU@*“?#ºQ@&Q“?¥mG@Ø’?.A@zÍ“?j3?@×”?IB@q§“?õA@ÿ.’?k;@)]“?žO2@.@”?K70@&£”?˜p1@}k•?VÇ5@Í&–?¡6@ýn—?Z}7@\|˜?«~8@ú ™?­Ù7@ÿ}š?BO9@øWœ? <@P½ž??@¡?†C@PΤ?ZB@ò)¨?‰B@Ī?iE@¯¬?\G@®¼¯?ºùA@Bø°?@@ž±?â|;@Úç²?|½9@1´?б8@C5µ?¥»4@¶?»X0@ô§¹?¨É+@_u¼?íz+@à§½?m×)@xÛ½?Tý(@ýÑ?{FK@}d’?ÓR@È“?óÓV@F³”?ØU@ød”?äUP@2”?Ÿ§H@pä“?T5>@ ç”?™<@⸕?7 C@œ•?ËÓI@ó ”?H„B@{”?ó5@¸E”? $2@›P”?*o3@7 •?ç5@­¼•?y¤4@óF—?W¥7@Œ·˜?Wj8@µ‹™?@6@Msš?U\8@å·œ?à7@?3?^:@þ‘Ÿ?´¬@@q£?cB@‰c§?ðC@ù;«?b0D@×¹­?Œ‡C@Àë¯?ôgE@ ½°?†ûC@Ḻ?rë=@T¢²?…é;@èÿ³?».7@ãä³?€4@w=µ?˜Ë0@‘£¹?é`-@ü?Ž:,@~(½?÷G*@Sv‘?<)J@»Ê’?gP@R¡“?gU@)•?DÍV@µq•?IØV@«Â”?è„K@Êb”?K)>@––?/É:@iÍ–?8~<@®–?¢ÅC@^–? ÎA@ 3•?v„;@#6”?Ì4@¨‹”?³$4@ 5•?,(5@¶ –?F·5@Oÿ—?´ß7@F™?ÆÝ7@‘Dš?¡Ê7@PŸ›?t7@Uçœ?ôî4@ê>?ôŸ7@IUŸ?=>@Òz£?Ò¨@@¹'¨?.ŽE@¤wª?$ªC@Œ×¬?D;C@² ¯?p‰C@[°?8UB@)¤±?@A@`³?½(>@Us´?™9@ô¡´?¥)7@×èµ?«ù1@ú˜¸?×È.@y“¹?ós,@¹€‘?˜H@Ö¡’?äTR@^&“?>X@¿ä”?ûªZ@ÁA–?#jZ@Dn•?>5M@6•?Ò <@Ìb–?Œ¦3@“Ñ–?ó…4@òh—?ÿè<@}—?ÕX?@ªV–?èZ>@àƒ•?š8@¡$•?øƒ6@½–?fŸ7@ò¹–?B­8@ÀƘ?’18@ùb™?Õ;@.”š?Œß9@/m›?½ë7@hcœ?>E7@j®?ZÍ:@¯½Ÿ?¹ø?@YI¢?0C@þÕ¥?¸sA@Ë‘¨?´†@@A«?èðB@ö™­?Í B@•ú¯?߸A@#±?‘0D@R»²?¾B@É-³?X?>@ù¹´?à«7@Z}µ?Û–3@À¾¶?ød1@I ’?LhK@|’?{ÎV@D7“?ÒY@KŠ”?èÄZ@/à–?æû\@–?˜ÝO@`ö”?«$;@Cz•?8/1@•¯–?Ž2@zv–?rp9@Ì4—?mø?@˜?ë ?@â1—?Ý;@hž–?md<@èÜ–?A9@|h—?%:@OP™?nÓ;@\×™?ÐâA@®š?!!?@rè›?L‡9@ú¾œ?7<@­é?®>@@Ÿ?„i>@¹¸¡?ÑÓA@âå¤?D|>@À §?Df>@N$©?š„>@ùƒ«?s‰A@« ®?íÇA@á;°?ïÖD@ù±?¡XB@ö³?b>@»M´?G:9@£³?ª5@×Ë‘?ò½J@öª’?§VU@]©’?—?íuZ@ðŒ–?íáG@ú”?Ï®8@{"•?X3@\|•?y5@ÈT—?–9@>˜?íz=@ ™?C^?@ž‰˜?þdC@˜?ž§@@` —?µó;@«¼—?d:@µÖ™?+_?@—š?\å?@:ö›?êŠ>@® ?ø$<@ü¨?W<@þEž?zÝ9@踟?Á>@øÇ¡?LC=@£?–”8@i·¥?.è8@0_§?£$>@öˆ©?'ÚB@ùJ­?„ÞE@²Õ¯?ë«G@£±?&±D@?'C@ø[²?ÑÐ<@4:’?‘§G@½Ü’?58R@Û’?ÅV@×”?1W@§ç–?%3S@…–?ºÚB@—â”?Ë:@Ú¶•?Í];@©î–?]Û:@89˜?@£7@¥Ð˜?µs;@Æ#™?Æ(?@„%™?ÕyC@hP˜?øpC@!˜? AA@Ç€™?2 <@rzš?)Ÿ:@·u›?Iq:@bœ?‘ç;@…?D˜8@”?¥9@5Ÿ?X;@™¶Ÿ?Ö8@† ?‚È6@7‰¢?GW2@VŤ? ×5@©¿¦?iû>@²´¨?ìûF@«D«?šÙH@"î®?iÇH@VW°?)ðG@Ž#±?êýE@eÓ‘?Q&F@“e’?¦ƒO@ÔÌ’?oÚQ@mÜ”?ëòT@õN–?•ÌT@#–?j0H@—Y•?‹"D@Å•?8$?@Žó–?#L8@ž€˜?Í7@Á„˜?bE9@´{˜?t>@°V˜?¢ C@Ϙ? uD@­Î™?@@Hû™?¾Ì;@?:@8u›?$8@»Ìœ?é–6@mÆ?ýø5@ÿ‰ž?|$;@_¿Ÿ?js9@NØŸ?ê›6@¡?µè3@µÊ£?·%2@†°¤?W 8@X^¦?ÿx?@éÀ¨?´ÛF@[4«?×ÅE@a¯®?Ù†H@¶a°? ·H@,~‘?ç5I@Ýh’?îR@ÝÆ’?ƒ•R@¥•?ŦZ@úœ–?iV@f–?ÿPN@ª•?ñ B@!ô•?õ­<@—?¸ê6@k—?š5@ak—?™ú6@Îã—?ˆr8@°Ÿ˜?Ò­?@<š?9A@Äš?¾ZB@n ›?{I<@âä›?Šu5@h÷œ?‹2@?¥?ö2@Oiž?"™5@Þ,Ÿ?–Ë9@6œ ?Ô8@Àh¢?h4@yd¢?wœ4@(:£?²•4@ª¿¤?Ûý9@c¦? <@ª±§?xÍ@@{ª?¯ïA@Õç­?šáD@ ì‘?)5N@Åœ’?kV@?—%X@¢Ì•?4¡Y@­–?À÷S@Õ•?^K@®I”?ÅdB@Pt•?üÍ7@†©–?5@!¹—?øœ3@Ú—?2‚1@ƒ˜?ÖÞ5@µ¨š?";@#Ÿ›?C@ç0’?ûÄQ@ܦ“?Ä>X@B¼•?ßR@t(—?ÒW@J4—?ÂV@« –?XºG@àL•?<@Sˆ–?Eg8@ï×—?5@—!˜?„3@ãe˜?Xv3@3™?'ª1@xQš?áø,@$íš?¥C3@&#œ?Ëj:@'“?™;?@=É?q+;@ÂÎ?fÒ1@Òž?5š1@ÿiŸ? 0@ué¡?xE1@!/£?ü6@#æ¢?¦Ú7@Û´£?“o7@P¤?߯6@Úa¤?X(7@À#¦?ÄÒ8@\]’?)‰N@gŽ”?Æ`T@臖?pòP@>˜?ÏzW@–˜?¦ET@ž1–?WÀE@¦w•?,Z8@‘j–?„Å1@GR—?ɱ.@.«˜?ó¦.@ˆn™?3n-@¨Õ™?Ì.*@ š?u9+@,›?Ñò2@{ƒœ?ž/;@Äj?J´?@L(ž? ¶;@EHž?38@ Óž?üÕ3@9‹ ?È™/@•L¢?Û3@/¢?+È6@3i£?8@—£?pË8@à¥?›»8@{H¥?uû8@ ”?3ÚK@l#–?C‰R@L&˜?…žT@_w˜?±pY@Kš˜?T†Q@«-–?âFD@¬•?þë8@ƒa—?nY0@ ˜?1/@,ñ˜?Eæ/@¯n™?"L.@š@š?•¹+@Z#›?€„/@°›?mÉ1@*¨œ?üd8@uÁž?Ve>@ ÂŸ?#?@”ÓŸ?^.:@ØûŸ?,W2@G9 ?ø†0@쀡?µá2@¤¢?þõ6@.M¤?Ôk9@æ¤?1§8@«¥?r¼6@´@•?rîO@O—?ÃaS@þ6˜?$bV@;™?ÊÐ]@ј? 5R@™|–?´jA@ –?¾7@¡–?¸2@3˜?XZ2@9©™?”K2@ôGš?ÁÔ.@!'œ?á/@…œ?ß^1@Àdœ?~þ1@Mž?«¹6@ÌÇŸ?ï’;@¼Ý ?í¬<@“Р?ª:@Ĭ ?øÞ4@´¡?q2@±å¡?ˆ÷1@n1£?lÄ8@‹¥?7Ú7@ÿŒ¥?7€5@a –?füS@¼i—?–Y@ ú—? ¸W@$™?êÕY@Ș?íðN@s—?ùC@“Ä–?μ<@]È—?Wn9@Ä™?üÓ5@›?~Ê2@&¯›?©94@Kíœ?Èx5@R%œ?§g2@†?‘N3@n«ž?ª4@Ó' ?38@Ôæ¡?$À<@Úá¢?ú;@(X£?S98@Êu¢?{3@'›¢?z4@3Ý£?V@5@³¥?:3@gÕ–?ò U@Dù–?áÇX@ªn˜?êU@÷÷˜? u[@¹W™?I)N@b¹˜?¬D@å—?PhA@d ™?ÑË<@Ý2š?X¥;@›?²8@«{œ?Ú:@ÆÌœ?Û7@¼Âœ?Ð"7@М?X4@iŸ?„„3@ù ?³{9@1£?J =@oÿ£?•5>@úÁ£?lÊ:@ކ¢? !4@ß<£?‘N4@¹Ú£?3@%z—?)×W@¼—?#h\@n8˜?FX@™?2[@«Ê™? hS@­d™?ÄéH@u<˜?6?@mH™?õqB@?¥š?Óú>@ÕÏ›?¡ø;@=Hœ?V“;@í|œ?Iƒ8@÷?ù“3@¦ž?ÈÁ1@¢ÚŸ?ÍÒ2@:¶¡?Ü 8@‰!¤?_'<@ÙW¥?ÖÄ?@hm¤?A;@Ïö£?PÓ6@ߣ?@3@¾H—?ÌæX@ŽØ–?v+^@W›˜?½@/™?ä•>@ùš?m A@p—œ?Å;@¨Ìœ?h•4@?ž?^ä/@Fž?]{1@Áêž?¨Õ0@}n ?ƒ™1@—d¢?Ö·7@V‘¤?J@@ÂÚ¥?:$A@…¥?±Á=@÷¸¤?•J8@¶ñ–?¾3W@}—?£ÞY@®y™?;‡X@s¶š?K_U@¡0›?ž4N@جš?ü4F@k¯™?:‘>@{™?×<@„\›?¸;@dœ?Ñý6@îS?ïù1@C¥ž?^Ê2@–Ÿ?ó2@[ ?‰÷-@üb¡?E2@³¢?Ä7:@•ؤ?ëõA@€å¥?çCC@=Þ¥?>9?@Íb—?:¢P@§•—?Ó™S@Ö™?‹T@'²›?ðT@0…›?<»O@6§š?D@F™?U=@Kš?Wµ:@m2›?"89@‚;œ?^8@à£?¿@8@÷EŸ?â6@j‡ ?KÃ1@+Ä ?ÐL4@ÿ(¡?©7@¡ £?\:@œž¤?7A?@#Ó¥?VdA@í—?èëP@0™?%€T@‚E›?«ÿS@Š0œ?ÓET@§-›?©.L@I‡š?ž^B@>æ™?‘²=@gÿš?\º9@{õ›?¸I9@þQ?è<@ιž?8=@Ã4¡?U©9@U¡?d8@ÝÝ ?l 4@òË¡?zÂ4@™£?uí4@#Œ¤?È…;@0͘?³?S@›š?Ä‘X@&œ?W÷R@Kmœ?á†P@hË›?‚ˆM@€çš?B E@ÀWš?†¸;@#Z›?@ M ?ŠJ<@XÉ¡?Þ‹:@„¡?2&6@yR¢?ÁŠ2@’Œ¢?LÞ/@9p£?°4@Ι?' Q@§S›?UT@qœ?|ÅS@/?×Q@Lø›?8kJ@Êqš?=oB@JÁš?8J<@ê ›?‘K<@§ò?¿>@+ŸŸ?ê?@!¶ ?½®=@xà¡?óë7@½£?õ/6@ó£?â:2@Ïv¢?4@3)›?éËL@þœ?ŸQ@™ãœ?©R@Úd?hQ@I“›?F’I@ûëš?1A@Æ«›?à=@už?Í1=@ëþž?è@@µ ?mü=@ã#¡?ßs;@Ú¢?hî9@Œâ¢?Ý88@Ü£?S%7@÷›?^P@j2?dËS@rž?HñQ@K?ÙmO@gÅ›?£G@2Úš?A@n«œ?4h?@Ê-ž?…2B@¹ªž?æu>@Ò¡Ÿ?äO=@=+¡?Ê>@™u¢?‡>@“£?÷P;@0ïœ?§„P@íâ?Â&U@u@ž?G«S@Î? P@³eœ?bûE@‰aœ?‘A@°?‡·E@¼ž?*iA@ Ÿ?|B@Ç›Ÿ?"-@@4¡?Zü>@ýè¢?‘n;@Η?˜R@SBž?ZV@Ç%ž?«S@¶„?à¨Q@[ž?› G@—ž?å6F@ åž?éÆA@†Ÿ?UvC@¹rŸ?¨?@4} ?ãm<@D;¢?Áj8@€Ù?Ò9T@âò?äAS@ARž?,«P@·xŸ? ˜R@ÖŸ?¿§K@°Ÿ?ì²A@®wž?2ÕB@ÐÍž?©AB@Ö ?˜>@0÷ ?k];@é?³ËQ@ÆÜ?òÔQ@àøŸ?˜TS@ߌ ?owS@[„ ?@"K@@"Ÿ?°UD@ž?·8B@çÀž?ªß@@ù ?ÈÒ>@à,ž?T@v‘Ÿ?6;V@{• ?P@™õ ?¾¼L@+¡?M½M@˜ÙŸ?s`E@rà?Öû=@… Ÿ?O:=@TAŸ? V@¢ ?øqW@Ž˜ ?EP@lÀ¡?‘bM@î¡?Ý‘Q@šôž?âkF@=8?DÃ;@´Úž?tU@7øŸ?÷kS@ÈG ?:7O@uˆ¡?ÒO@Ün ?Ñ P@—¬Ÿ?41D@g7Ÿ?`N@£[Ÿ?ÌÿN@¤† ?bnK@p™¡?ð¼L@$Y¡?†‰P@(Ùž?€I@ÁËž?Ç K@¾ ?Ó K@Ι¡?ÿ1@aè¾?é +@8Lº?'±&@´˜µ?C¤$@O”´?^¬ @SÙ¶?Á8@ âž?|[@’¬?ñ©@-Ó³?1c@§vÁ?: @XüÍ?Î&@ɸä?„#ï?"¶Ý?çÛæ?QýÄ?Ñ´ @å³?¸M4@M,°?ÔE@–}°?iP@O™°?½O@¦°?ì‡B@ÞC¯?E›6@\k¯?Pb0@ê¯?¸%/@ï´¯?û?0@O±?[Ð*@”²?’q'@‡ô«?kÌX@ꓯ?*EW@-–¶?üB@Z+Á?h],@¶Ò?O‰@€ß?¥7è?Þ? xõ?~mÜ?µÒ @ô0Ü?Jé@­NØ?N9@¢Í?ÃöÓ?€Ä?ó¤?YþÁ?jK’?°2¼?'¹•?¢Ùº?¤®?|­?QàZ@³?‡>P@„7»?½;@¨È?‚A$@mOÙ?ÑŠ@:7Ý?%hþ?¿ìÛ?é(@}ÙÜ?„@£íÙ?kh @ó³Ð?Õ?i‚Å?«)¢?qÃ?9?åõÄ?²Ÿ–?MHÄ?ǰ¡?D¯??¢Z@£lµ?‚L@ž¸À?D‘7@;Ð?´ª @¨Ú?˜H @ÒxÛ?›~@1òÛ?å @9GÚ?å~@8ÚÒ?Ú®ì?-;Ç?-u¯?ÛéÆ?òQ’?8Ä?½‘?3dº?€¢•? ²?¢Y@2ˆ¹?,”J@C^Æ?Qo5@k¼Ò?zê@Ú?@›§Ü?“²&@CûÛ?hè#@õXÕ?Ò#@I…É?iáÁ?\Ä?·pš?´qÆ?“?À`Ò?iö ? \µ?ÝêU@7Ö¾?ž/A@ aË?Ž:1@7hÕ?c1@…‚Û?LÝ!@“Ý?²È,@Ù?xÄ@̽Í?ÝäÞ?aÅ?^ب?«óÃ?œ›?ÔÀ?«o™?_%¸?=8O@8˜Ã?¸ë;@œŒÐ?ù(@;/Ø?Df#@š¢Ý?‡+@åöÝ?Dµ'@I©Õ?¤Ð@ërÇ?‰åÃ?;RÁ?eÑ?gÃ?4<¡?\›Ø?Õ‚Â?ød¼?^¹B@ØØÊ?´¨-@ŒÕ?æ#@(ãÚ?«R*@E¦ß?®<0@µ¶Ü?Ê•@ÿÄÑ?Ñàò?Ç?5®¹?ÃÀ?©[¥?ð«Å?ßv´?i[À?…î7@?Ñ?õ&!@r$Ø?ø›!@¹NÝ?˜ 0@?¾à?ñá-@_Û?oò@ÆÐ?u7ß?×ÃÅ?÷º´?fľ?G`°?PþÃ?n/-@„<Õ?6™@ï$Û?.@óƒß?"0.@#~á?ƒÇ*@¦Ú?/  @õ Ð?HÕ?òÄ?/Ò²?ŠÂ?!l»?©ÄÅ?EØ&@þØ?¢‘@M3Þ?„[@PHá?®‰+@Ö“â?§Þ&@íPÚ?[C@ÎÐ?{¸Ð?û Ä?ÑS´?Ìå?@Q×?4`Å?q)@³2Ù?*œ @m|ß?f@ ká?ƒ´*@“©â?»/%@ØÚ?ëU@æÑ?ܬÌ?æßÈ?TYµ?ž%Ý?7MÑ?0<Â?®U6@‡¢Õ?äo@O¼Þ?‘Ø@+á?“Ö#@yâ?…†&@3xÛ?UÙ@RÂÓ?H>Ñ?ê.Ë?¸.µ?\Ó?]JË?$н?ù~J@­vÎ?á–!@¾›Û?) @ ß?.@ôõá?S¢'@€ÛÝ?S@bIÕ?§%Ø?ÕùË?èQº?‹}Ð?Œ\È?Ôc¹?öbV@IçÄ?”s;@S)Ô?íÌ@ yÛ?‰%@Úìà?Þu$@’à? ~@0Ò×?„„ì?kyÏ?"AÅ?Ð?ÇsÍ?cæ¶?ÂõT@„ý¾?HdI@¤Ì?k[/@ùkÕ?¨%@úÝ?.["@`çá?8%$@#åÚ?4P@dÓ?ÙºÒ?éÈ?öõÅ?1y·?ÃÀH@8Æ»?uLI@œKÅ?<@é Ñ?kw,@}ŠØ?‘'@và?Ož'@`ÐÞ?…æ@C¸Õ?D2å?Û¼Ó?q Î?Z÷Ì?D‚Á?Kd¸?²ùC@ »?Ò F@flÀ?TÌ>@ÊÊ?:u4@!Õ?t,@õyÜ?aF'@™*á?7É"@¸Ù?û$@@éÒ?ÌPÒ?‡SÒ?ÈÆÉ?'D¸?&1G@ްº?©ëE@[R¾?(Å@@ôfÄ?“L7@XÎ?I?-@Ã.×?J%@îßÞ?݃#@Øsß?7i@„Õ?–¡î?ý÷Î?ñ½Å?µYØ?ДÇ? ÷¶?ÁH@¸?SI@=÷»?®¼F@ìcÁ?0Â;@Æ?Õå.@†ÞÏ?Îl!@¹)Ù?HÊ@ð'ß?€"@HÖÛ? ¼ @.TÐ?<öØ?ºÉÇ?F>»?:°Ñ?ÛÚ¯?Ú‹Ì?) œ?¯oã? Ž˜?ïüÝ?Ь„?ìCì?r ‚?ssµ?QõN@]d¶?;»J@ ”¸?÷òH@ℼ?gGF@%Â?Þ7@ÄÏÈ?`Ô&@ªÀÑ?Ä¢@ÚÚ?xr@G^Ý?Òº"@ïTÕ?„ï@? Ë?ž<Ê?d߯?6Ô´?P(Æ?w†¢?:“Å?þâ?Æ?ƒÿ‚?ª!Ü?Ã}‡?®@´?¼ÏR@Îý´? P@™“¶?ÉÊK@ɹ?ÙñI@QǼ?#(D@ˆ˜Ã?þ 0@³Ê?³@ü¼Ô?3s@ÂçÛ?•_@ÏØ?å@xµÏ?J¸ò?Ò’Æ?N&Â?2}¼?Õ˜­?c¼?>ú¡?ß§¼?•L“?“bÝ?ÐK§?äv³?O@‡ ´?WP@ù¶?4_L@;¸?•›F@L¬¹?[1D@þ½?PÄ;@-Æ?«'@¨mÎ?'p@äÛØ? á@ kÚ?‰°!@ËÒ?›@ß@É?'…ã?){À?ëwÄ?SÀ?Rè¸?a¿?•}±?{ß×?ÊÌ?¬\´?Ý{L@‡T´?ÓþJ@ã6µ?J@–Q¶?à^E@:¬¸?B€>@W»?Å®:@Î{Á?IÓ1@EfÉ?™@ ýÓ?¤G@DƒÚ?=ä@@üÓ?̰@Ó‚È?xŸ@­2À?¸„å?²º?mÖÓ?„„Ã?ÀØ?–Ï?²üê?*v²?}uI@á±?6FK@D²?èL@ŽE³?ZkH@iäµ?•Ž?@Ù3¹?ž#8@ ¾?Ù2@!Æ?ÂX$@ðœÎ?jô@DÛ×?Bå@µÿÔ?à @‘{É?H@|Ѿ?W@•U·?kÿñ? <À?jó?mºÌ?b@DB°?˜ùI@#=¯?d†R@è'¯?kkS@Î̯?$N@T²?YíC@ƒ|¶?I*;@žK»?2‹2@§Â?½²%@zéÊ?¢þ@) Ô?ñI@hÔ?d…@ÕˆË?á"@O«À?×ç@x»?&B @#wÄ?1- @ÇšÑ?Àð@·Ã?‹Ž@ 1®?‚¸F@f­?Ý\P@­ë¬?R@aD­?ÕL@#¯?NžF@˜ª²?;Ë;@ 7·?ò3@ŠÊ½?O•%@^Ç?V†@6Ï?À@‰ÉÓ?Ìy@–Ì?…s@ÑÁ?V@››»?È@§{Ã?Ÿö@nÝÇ?—¯@gs¾?SB@p–­?`H@Š4¬?¢M@ÅZ«?FM@'Ž«?ÄiG@ïý¬?e @@&€¯?,7@ö³?’,@0¹?=á!@±»Á?v@`Ë?È@¯ŠÑ?/v@†YË?Y@Ä?.½!@ôÿ¾?±L @9½?MÌ@I*Ã?xH#@!Ö´?Jû @:¬?¯«E@·óª?vmH@;]ª?«âG@< @ωÐ?ï® @µÄÊ?ãª@ÅðÅ?Gà$@9XÂ?iv*@ý¨¼?Ç%@í"»?>'@»…À?;é3@/«?k˜;@Ðó©?@91ª?É&?@æ«?œù:@—n«?áÐ1@̨­?$¨!@"ͱ??@Õc¹?KT@ëëÆ? G@kpÐ?[n@ŽêÉ?‘ô@`oÂ?# @äÄ?¨2@>Â?+Z6@ æ¸?äî/@¬}Â?ˆ+C@_–Í?˜™V@´¶«?R!3@ô«?Êk4@‡)«?µâ5@zͪ?Ú16@DŒ«?x41@ü«?8(@l'«?k@#¡¯?žÞ@.¶¸?Lcï?­È?T\è?+ˆÒ?NWý?ºÊ?_ @#ô¿?@ÊÏÁ?Ýj0@»A¾?¼¨:@«Â?=@‘?·?/<@G€¹?Þ@2ä¶?¢@0cµ?ãs@d³?z»&@I³¯?ÑË(@@«?{„@­©?+ü@i.®?¸$ê?BK¹?8Á?•sÐ?w.°?Æ=ä?r|à?ëß?Ñp@ϲÐ?@í6Æ?95%@ÇÖÈ?j¥8@n¡¸?/£2@Á³­?ƒ,@‚¡±?)Z*@ãi½?êÚ @¹?œ¡@Tïµ?Æî@æñ²?qD@¸¯?ë/#@ÃX¬?¾Ä @)«?l@™°?×…û?þ0¹? „Ò?ŒË?}:º?™tá?¨Þ?iä?? @ÉÕÐ?ÅI @nZË?&2@õ¿Ç?­.@jƒ±?¶%@ì®?;à#@è?ª?Ño@^‚®?!@ @;_½?”f@OFº?‘~@¼A¸?àg @”A³?%x@>¤¯?ÄS@Oª®?9°'@Pf®?b›@øŸ±?« @‡•¸?%×ì?)qÌ?øªË?8?ß? GÜ?¼Bä?ó³ö?'cÒ?éä@¸yÒ?ÒÑ@È@Á?~Ì @Lˆ·?Ü"@³®?Ì?@ŒËª?¨@º½?úõ@p»?< @ ò·?øa@Zu³?„O@°?÷P@ÃѰ?Û)@Šù²?М1@¦U³? !@Ç÷?SŒ@ÕÍÆ?GrÞ?¦Òß?lÞ?ÄãÛ?Çšê?¨Ú?Œû?jþÒ?ûÓ @ ÃÃ?‹U@¢£½?'=@f–±?Óê@­}¼?O˜@§¼?7@Eá·?Sø@”S³?E@WN±?¥Y@س?úØ%@ùµ?]Ì7@2œµ?5@ ñ·?$@¹TÃ?4Rö?RÙ?¯ß?˜†Ý?œ~å?aïÜ?nÚõ?õ„Ü?ÌÏ@΄Ë?µÄ @‹?¾?6Œ@œI»?.þ@~dº?%z@f¸?¿ý?Ê“·?°Qú?×:¶?´—@&Ô¸? ú@–D¹? u8@ôc·?¥@@m£¸?Ì·+@2¿? q @¢Ò?§?ë?4â?céá?­¬è?Åiô?ã×?u-ú?Ð?°M@Ѿ?½˜ò?(\½?-gí?®´¼?üEò?Uþ?Ûƒú?ĵ½?¬Ë@#ë½?J@»—½?=¯/@Ys¹?r:?@,l¸?û¿:@ ²¼?—@:‘Ê?÷Ëþ?Ã8Ý?ø0å? â?õlâ?Þ?uêô?­µÃ?»÷ê?Î;Â?„è?q†Ã?šQð?a›Å?Ôê@¢óÀ?Ñ@èœÁ?… @XÁ?™$@tÈ»?x45@ßÖ¸?¡=@-͹?Ç=*@Ì.Å?ø @PXÙ?GÕï?äjá?•þâ?x9Ê?Õõ?’È?Qÿ÷?ó;Æ?(á@8[É?¼ @è¸Å?  @7—Ã?Èt@!»Â?Òµ@±Ô¼?4­(@Ù(¹?ë37@Å·?¹\3@e‘¿?Bs@©Ð?íG@ãË?ç @·~È?r @7Ç?Î@ ÁÈ?Ć@&ÜÇ?õí@œÃ?Æõ@9Á?U…@?"$@Ž.¸?X0@§Bµ?ƒo:@eS·?ÅŽ)@·ôÇ?BA@~Ç?U‘@DËÅ?Zñ@/&Æ?@H@œRÂ?:þ@zÔ¿?øž@w*½?‚@$gº?˜ê%@Þ µ?ñÞ0@ä­²?ć;@/BÅ?V¬@ÉÂ?Î@7¿?” @`­¿?0ñ@9½?Ó€@럹?x"@u¹?Ñî&@û´?FÏ1@é²?¨f@@8ɾ?+r"@[/½?¦q#@ø¹?~#@›é¹?ë(@Ç[¹?îj(@‘?·?=|.@—´?àw8@Ù±?cE@ôˆ¼?3 2@ͤ»?§’2@{ø¹?"ˆ1@Lº?ªˆ1@ìÛ¹?І5@k=¶?ÄŒ8@)l²?$?@"€¼?À±<@*¼?»m9@œc»?êÛ3@N€º?‘Ñ4@Øá¶?<¶7@—IJ?¬—7@a„½?!˜:@諼?ªÄ4@·Ÿ¹?©4@þÖ¶?¨N4@Xu²?D>4@·U½?`ó0@:­º?æ3@Æò·?7Ä.@Rf²?™¬.@–†º?7*@(u¸?˜y+@ðâ³?y¢,@…¶?)ô(@t‰´?î(@Í~´?Lƒ%@W̨?ûN@( §?xýO@¥ž¦?6}S@êl¦?ÞDZ@žé¦?ªa@#À¦?ÜÂd@¦?Žªf@–i¤?& g@?¢?ÏMf@ÅZ¡?UºY@ÒZ ?/ÊT@7¡?QóT@.¡?-iS@ß¡?AJ@$ ?i,D@¶…ž?ûx@@Ù¢œ?°=@'Øœ?~Y;@>rœ?xY:@ãþœ?,Ó5@ëÁ?y*5@‹÷ž?ºl5@µÙ ?¤Ž9@ò¢?Á8<@ôu£?ÉË>@Œ$¥?=@ñâ¦?Œ :@Y}¦?„"<@l §?Q#:@µQ¨?ÿG<@«¨?óü9@@=¨?K—;@G©?;!>@†©?‹B@§€¨?>kE@¯ô¨?cæC@§†¨?óE@ߎ§?“¾F@:ó¦?ëÃC@•”¥?ÿÍD@c4¤?!G@ßå£?ÚF@Ñ1£?òJ@/¢? KG@ S¡?©ŠF@§8¡?VB@ëŸ?v‘=@¯JŸ?8É<@+Nž?Jê>@Ùú?åµB@®gœ?×¢H@ÿÿš?Ò M@r›?gR@Ø›?LÃV@ª,œ?ýWX@ÕG?BX@rÄœ? V@O<›?†¾X@|6š?‰®W@†š?שY@äQš?zIY@”š?€þY@üš?§S@€™š?ÃMM@›?2©I@÷×›?è¼K@%'›?$N@Ã`›?ðßO@‘L›?vP@jçš?ƒQ@é!›?\T@a‡›?US@§š?ë¬W@ÓÑ™?GzX@™Ú˜?S@o¸—?|L@9V—?ÎoE@Y)–?‘$D@ ò”?&˜B@?±[B@¥F”?TËF@tÞ“? M@qN“?7S@­2’?dOR@fÍ?üBM@~?éKK@“ÈŽ?C;G@ˆ?#G@^?N@¶Ã?ÕaW@„p?Áå]@?)?á”V@ƒö?Ñ%J@oŽ?_ó@@®?:s?@ˆu“?qðB@Y\’?«Í+@Šø?Jë @ëÈœ?zÞ@_ª?JiW@öí¨?é&Y@Ú"¨?\b`@št¨?|Ðf@á§?oëj@§?q2p@/é¦?þ¾p@0’¥?´n@lM£?UMg@)¡¡?£_@”© ?§U[@Å ¡?§šX@²­ ?kÁZ@#© ?nYR@<·Ÿ?SH@§Xž?BA@rÉœ?9@Gœ?Nª5@y5œ?m[5@:.?&Ó4@òÞ?Û5@'@Ÿ?N 6@ûp ?Yƒ7@ý¡?‰_:@Eú£?ËF8@"ï¥?Ûª7@’v¥?{²;@Aƒ¦?¶Ø;@Îñ¦?žp<@'˦?ÛQ<@— §?H¢=@70¨?`¸?@^é§?„9A@K§?+ŽC@Sˆ§?ÓŠC@J]§?+ÏC@é ¦?Ê7E@î¥?›ÁD@í¥?¸¹F@/±£?ªUI@}£?-!I@Nù¢?ŸÚG@`I¢?UoE@™¡?õ!C@°>¡?ÿ%>@ت ?FÉ;@ ¡Ÿ?[r8@©Öž?î6@ùS?† ;@7gœ?zæ@@—È›?ÄJ@ž¢›?ñÛQ@Èj›? KQ@t ›?ôS@k1œ?|DY@ßý«?Õ[@Â#«?u?`@òóª?Fyc@R®ª?pîd@àÍ©?qBi@®¨?Ó5q@Ïq¨?Hþs@C´¦?œ r@¤?ij@Û¢?âÿe@§?¡?Þ¼^@^· ?÷]@9- ?­"\@£Ÿ?ºŠU@\Ÿ?)wK@oož?©³A@ 4?[R9@ÒÊ›?éu5@½œ?ð7@à?4@œú?`3@æ2Ÿ?þk7@  ?’é6@¸¢?˜i4@²%¤?H˜2@vU¤?÷H8@þY¥?—:@]ò¥? ÿ;@¸«¥?2¡=@ôM¦?þ„=@&¿¦?Ÿ¤>@Ÿ¦?I?@’¦?d­A@¬)¦?~kD@™F¦?*¶B@#Ê¥?Ö@D@æ?¤?ÀE@|Ì£?ÞG@Í”£?Ì¡J@†£?ƒMJ@!ö¢? ðE@D¸¢?jÇB@Y,¡?,û@@“ ?yE>@éÇ ?ß·9@ZùŸ?ºù7@U¹ž?bE9@¶Î?’=@v–?y#@@ùÒœ?n¾G@›ø›? zP@5›?‘S@ôMš?ë6S@2Úš? ŸU@AÔ°?C¤P@"é¯?%ŠR@ËM¯?Š›S@¹¼®?çªV@έ?£j^@E«?xëj@ùæª?š²q@y™¨?÷øn@÷¦?Å)j@Áº£?ôœe@˜¢?ºž[@Ρ?ÄtZ@Go ?Ñ\Z@8Ÿ?[œ[@zž?Ñ]S@Ξ?ÔFH@¢ ?gö=@­Ù›?âW9@³‰œ?|8@çÆœ?Tè4@Ÿ¤?ëã7@jDŸ?/c8@¡?ÿ64@†¢?ƒ92@«¢?Gè2@1#¤?y#7@#è¤?‡;@Ë ¥?ëG=@W¥?Lã<@ÈL¥?%<@Ò¥?¦h>@ ¥?ö1B@u­¤? E@ñʤ?t”D@¢O¤?ƒíD@P|£?@%E@I1£? JH@€£?jÛI@ª £?‹¶H@x¢?ã³D@P˜¢?³@@«]¡?`•>@iÄ ?uH=@B ?¼0:@4¼Ÿ?K|:@döž?¦{;@ÙО?ŸL@@Ýdž?Õ“D@’d?OG@ÈXœ?)ÍL@;@œ?ê·P@•f›?[N@wkš?¥5T@7º?ѯ2@й?ʯ1@¾E¹?Š2@ßC·?Î;@4™³?N–L@:º°?äZ@A\®?ó½d@e\«?‘„i@ø©?™•h@C3¦?Ì]d@D¤?›Ã]@¿¡?ΣY@~V¡?‘áW@M‰Ÿ?K[@ê?pwY@P³?‘¥O@Ôíœ?9DD@¢­œ?–^=@4œ?J“7@—¶œ?‡I8@kò?Щ8@¥…Ÿ?P6@͵ ?ªç2@0}¡?cÀ1@â¢?§Ù4@$9¤?Äô6@Íö£?¦0<@‚¤?n£=@Nh¤?1P>@¤?|ì>@¦—£?áçA@Vê£?;ÈF@‹™£?üD@Ü•£? ÚC@¼Í¢?¡$B@eû¡?%¡E@xС?óG@0õ¡?Â~J@켡?¯D@‰µ¡?à D@Qß ?Ÿ;D@¾áŸ?D@@1ÁŸ?Þñ>@†äŸ?€’@@´Ÿ?!@@ ®Ÿ?Ü­A@ÕiŸ?qJD@M“ž?…¬F@´?7 L@̉œ?o N@Uœ?Ã÷N@Ž>›?›T@ïþÈ?ßò@ É?+@GÆ?0î@zÃ?†å@”«½?âà-@×˸?²8A@Š ´?j‡P@l7°?ú·\@l‡­?ÞC^@-ª?è"^@Öo¦?¶Ÿ[@9q£?ðY@Z¡? W@¨ÁŸ?½•U@´¯?NðX@4œ?ÂüT@I*œ?L;I@¸5œ?é@@‘œ?Õp<@–dœ?©=@v‹?„Ã:@ZŸ?õ¾6@; ?Ó?5@Qú ?Þ3@ºý¢?kv2@çø¡?+§7@ ó¢?X?@Îy¢?™ž?@ÈÇ¢?bg@@ye¢?ð¢E@m}¢?µîG@ÒÚ¢?̓E@¢?uõB@ߨ¡?[ŠB@Iv¡?€ËB@:h¡? G@ðZ¡?þH@Ÿ ¡?F@o¡?§gE@¥ ?Œ E@ ?)D@© ?m¾B@–¨Ÿ?]JC@åF ?ÆíC@4¡?ëâB@Ô¡?ûRE@ÕO ?ºþG@t†ž?VœL@˜¥?MâQ@z=?6ÒS@u‚›?.µZ@ÐÛ?=ã?URÙ?^Öß?ú.×?MGé? òÓ?^Ñù?§Ë?»Á @¶«Ã?:l$@C¯¼?Âg9@Ç8·?lGH@í³?áN@Ê…®? pQ@»^ª?¯ãR@1K¦?ê8R@'«¢?ìŽP@£Ì ?‰qQ@¤dž?¹S@‰œ?qƒQ@žÈš?J@óêž?^UI@Óœ?¾óK@‘9š?»ÓN@yiš?ЃQ@¬ ›?IµL@¨Ûš?r H@ .œ?ߢ@@Rd? }7@àž?yº5@›ßž?a?8@Êòž?ÿ”:@òÛž?~î9@ûÒž?f+=@øØž?‘oA@`3Ÿ?Ñ`D@¥•Ÿ?†AE@¿gŸ?ÐA@«ž?ʇ>@a¾ž?§Ó@@`QŸ?fÖB@xŸ?z:A@£0Ÿ? XA@`—ž?8ö@@Í•Ÿ?°ù@@AÝŸ?”D@Ñ ?®ãF@޹Ÿ?ÈI@7) ?4L@Ú‚Ÿ?‘{M@zSŸ?ÀN@Ûž? 6P@t–ž?ÒW@õ?M–[@ô œ?ëW[@sýš?ÆßX@×ÝÞ?Nñ?|Hß?Iç?¿à?¢ä?W¼à?›á?Odà?&†é?©ÍÚ?ïÇñ?À³Ó?6Î@£ Î?9f@A¸Å?Çç$@âX¾?÷8/@h·?)6@½°?ë6@nHª?=<@¢‡¤?v÷=@áKŸ?«ä?@Q…›?×RH@Ëó™?qL@7]™?ñÂP@"±˜?¤iR@ š?^L@¿%›?Ùr@@Øþ6@é7?î5@köœ?%p:@M?8=@Oe?òB@1ž?5¼C@'¸?J´>@uA?üá>@=’?ï®@@!Ç?cmA@›Ù?bâ?@Ýÿ?ùÔ=@ð?Ýi;@àž?¡5=@Ÿäž?«hA@º½Ÿ?žF@…Áž?™L@ÍuŸ?…½M@ªŸ?QéO@צž?YˆR@Dgž?¦OT@§Ä?,¨Ú?dñ?9{Û?‘ ô?‰»Ø?Ct@żÑ?ú³@©øÉ?ä@éëÁ?Ì @¼Á¸?»Q(@êz¯?¸¢*@v§?µH/@£ ?­ˆ7@‘Ù›?¬ A@]²™?Q£F@áÆ—?DN@µ—?P¿S@&ã˜?1¢K@§Šš?”€A@Vœ?±¯<@+§›?Ô7@‚Š›?xÝ7@ÈV›?VÍ:@4›?¬+:@®¼›?m`?@\kœ?õA@„5œ?¾=@^$œ?S?@µqœ?Æ A@Ò¥œ?ïa@@«µœ?ö;@¡A?™Y7@µ?k6@15ž?ÇH8@гž?•Y?@Õûž?§ÒE@ydž?î§K@ôÉž?ÖN@Öñž?âR@®§ž?ëT@¶?~U@Šéœ?nW@¢vœ?¯èV@9Nœ?¹R@¡—›?œcN@ ¹Ù?ìX@‡Ø?"Ä@`J×?àÚ@Î~Ö?•ø@Ø¡Õ?5g @šÕ?‚@ÓÿØ?fõ@ÛÚ?µ­@ØÖÙ?à^@<øÓ?((@I0Í?÷± @Â?¯O@®Œ¶?Ö|@<Ó«?+{$@5"£?^Q/@Þôœ?|7@u„™?iø>@Å.—?SìI@ε–?‘K@ü`—?‰éH@B™?¶6C@å™?×=@ywš? Á=@\ ›?3€>@.‘š?_ˆ:@KJš?ë;@´)š?ºU>@hš?'>@m€›?zÏA@­ã›?GÏB@º œ?Gõ?@·í›?£Â;@[÷›?ŽS7@’ûœ?¼6@áD?¬)7@âG?P=@\ç?)hC@꟞?`^J@$<ž?·eO@_ž?ƒP@æ®?‘R@î\?ÑòS@jšœ?\~U@<œ?DÔU@Ö›?]SW@øž›?À.S@ Õ? ´ @ ñÓ?ͤ@ó‰Ô?(@‚˜Ô?ëë@›óÓ?’u@QÓ?­¬@ÍYÕ?¦‘@¹'×?­_ @À5×?Â@‘ØÕ?6@/Ð?ÞÇ@UÇ?¯p@x½?ß @!–°?àï@c¦¤?YØ#@Ì?Ñ0@\˜?^x7@Ö?`ë<@íª•?+A@>–?è•D@ÌŒ—?‚:E@Ä3™?>CB@0š?‹A@0Y™?ƒÃ=@„˜?·X9@(©˜?ú9@Ω˜?Р;@y«™?ë•@@Ô«š?‚GB@&K›?NVB@¹›?kü?@vs›?%Þ<@œ5œ?t”:@7)œ?‚Ë7@ Rœ?ÅR:@ªvœ?]G@@ &?ëC@\ý?”¢F@÷ ?®õI@·¢œ?ræI@§)?ÅŠN@Íîœ?Y¥U@Qœ?æX@f œ?ßÅY@¶Ñ›?îR@.Ì?`àã?×9Ì?^þ?íÎ?. @DpÐ?õc@‘…Ñ?j3@:Ó?^Z@×ÀÓ?>b@ÝaÓ?Äã@*ŽÒ?(‚@áäÐ?µ,@PÌÎ?^ @tÓÉ?ð»@™Ã?uuý?Oµ?µM@ç§?Í‹@1Yž?hï#@‚^˜?(Y.@>o•?l6@¾”?kè<@36•?ãüA@Ì¥–?%HF@_·—?èF@ðï˜?3A@„˜?Ñ;@x±—?†8@ο—?&ô7@@=†œ?$B@vhœ?¤ D@/œ?nƒF@tû›?šòI@})œ?’S@o€œ?È“[@'М?9íY@‘œ?šR@ŽÙÂ? O·?ƒÒÂ?†Ç?/xÆ?QCÞ?XvÈ?.Q÷?Ë?µC@ Ï?̰@î%Ð?J£@öÏ?=@F¸Ï?Ô !@ žÍ?ÕŠ@NûÊ?‡(@'Ç?¤° @ª Á?øJ@ s¶?è!ý?µ¯«?ÒÐ@| ? ª@™?x‘)@ó$–?aM2@*5”?õá9@Oi•?Jó@@„ð•?ŒùE@oè–?7H@ç¼—?µ1D@Ë–?¨5;@æo–?Ö4@—?`7@Rb—?ô%=@9˜?0_B@KJ™?´¼B@ÕIš?d¹F@>›?2›E@/Þš?Mâ=@ÙMš?jQ:@3˜š?#8@nC›?L[:@Xø›?kÒ=@Á›?Þ$A@„›?[¥E@TÔš?¢ZH@œ?ö»P@Ôé›?xCY@¸"œ?ÉNW@â›?ž‘S@§‡À? †œ?¾?E1£?¶¿?š²?Gм?ºÈÁ?ìÂ?áçÓ?²ôÅ?ÖAê?`È?Y™@ËûÉ?V@ÏÊ?Dë@B=Ê?˜t @‚Ç?.!@í^Á? Œ@K¼?fR @ÑÅ·?²p@¥¯?Ç@]b¤?v£ @*=š?yª@pä•?$/@‘´“?£8@*•?T<@(–•?ýåD@–? dJ@š%—?æ D@›r–?äB:@ƒ–?“W7@f–?:<@ÕU—?Ô¹?@+—?kÜ>@¾(˜?—E@™?k5G@4­™?ÁÐB@‘™?u>@9y™?Z9@cš?3.8@á›?„:@?e›?þ >@Ëûš?€ÖC@X£š?šXI@Œöš?BgM@ž‹›?î£R@Gƒ›?&èS@nãš?³S@èö½?Ê•™?Dæ¼?çÍ—?ß±·?ëÀœ?8°¶?¬â ?ÞT»?¸Ê®?D½?ʽ?…l¿?CóÓ?(ÎÁ?„ò?-þÃ?jr@l Ä?Ä‘@MáÀ?¯@·M¼?0¹@ï·?ß @² ´?…"@c^¯?Ï@I¶¦?‚@Î¥›?*@ –?Jr*@å“?7¦2@#I”?MF6@Iû”?A@te•?qI@¾–?Ä´C@ئ–?ì,<@ö–?‚¿9@fM—?ˆd<@kÀ–?Î=@1g–?²Ü?@Í—?jqD@Ä8˜??ÑE@õq˜?D`B@uC˜?)>@ט?AÌ9@C™?«X7@ô»™?Ãu;@"cš? °A@Ù š? ÍF@YÑš?\}I@B›?+YJ@†“›?b´M@êô›?jhP@i·?O)?z´?£)œ?”î³?™:—?Àlº?3m›?$Z³?R±™?1ì´?Ω£?]·?ªe¶?蔹?QmÊ?zU¼?/7ì?k.½?+Ý@,Ĺ?Éè @c·?Vy@Y›²?Ê@ê®?Ä£@d¬?ê¨@y§?äY@ž?½Ü@…Ö—?ªZ"@|d”?f+@’g“?}U2@ˆ”?×>@Ëî”?@ƒH@|+–?56G@L –?ƒ‰?@ÞÛ–?B¹=@· –?}“=@$–?¦~<@¸î•?fi@@Ö#–?ûôD@`q–?ñ E@ô–?æáB@a˜?ŒÃ=@ǘ?d’:@ð$™?.ñ;@ š?r.?@ÿpš?ÇC@?M¶F@xH›?öKF@¦›?wqK@^Í›?WgO@kœº?9°?Q„³?tª¦?Ú"·?LO ?RÒº?ãÙ¦?¸?Ý8œ?›°±?,ûœ?d¸?¨œ©?âº?7÷»?å¸?þÅÏ?Ýëµ?‡·æ?g³?‚ÿ?Ãi°?d`@·×¬?•k@á…«?Ù@¾<©?º @Ë8§?]@DÒŸ?Ìè @CÅ™?è@x¸•?6'@Ó?ðÑ2@Ó‡“?äá<@õ“”?±$H@G½”?µYK@3–?Y+G@ϸ–?JqD@®S–?ª?@Ô8•? b?@ñu”?ºQ@@v<”?QöA@QI•?ÅTC@:×–?‘~B@jþ—?„­?@Õ˜?Ùþ>@© ™?u¸>@1ò™?ž—>@÷š?²àC@ó~š?°²G@û¹š?9òH@ ±š?Q@R8µ?ˆ{µ?ªò´?‘…ª? ­?@›?ç±?)U¢?à‡²?®¤?”¹?‹Yµ?ÿi´?(KÀ?0±?—®È?ºÃ«?>ÇÝ?ħ?…_ÿ?I4©?2'@ÉN¦?ð<@|>¤?R@sº¤?’_@†{¡?«÷@îèš?c@Åô•?ä$@_@“?z½1@ÆÒ“?Cû:@Qe”?»ËH@ü”?¯£R@Fו?XsN@@Ç–?>ÈE@GV•?j=A@§(”?Œ<@ ~“?$Þ;@ø8”??@¾u•?¨D@µ¨–?ìÓE@Œœ—?NõB@lò—?Ø<@%È—?Üý<@pÛ˜?F>@ š?³.D@Æš?|UG@è™™?j.O@³úÁ?Ôɼ?wé´?£¨?ñ¤¼?ßš²?ûà¹?,ã´?Ϊ³?Û.°?±Ð¨?ko°?<î©?Á¯Æ?Ü ¤? à?5¢?€ó@§ ?á@_jž?b\@A¸¡?›B @¶ø¡?Q@œ›?ëp@¹ÿ–?€œ"@Ò[”?Õ0@P“?¼#<@!¤“?QkL@yq”?]YV@D[•?vçP@zi•?Ð÷D@¦A”?<@á4“?]ª5@Ó“?¹a9@« ”?÷jC@üs•? I@ù§–?‘gF@n —?A@ã^–?×[>@ŸÇ–?,E=@ö…˜?U?@¡œ™?² D@Íø˜?/µJ@·A­?«¬?Ë4¤?-8¨?¯`§?p®¹?~]Ÿ?eÊ?º(›?÷æ?C<™? @v›?Àõ@rež?4Î@þ¡?!ü@YQ?˜M@Ä—?Å@ä6”?ÀM0@“?_>@€“?œËM@5y”?å1Y@ÛM•?VQ@c¬”?QŒ?@E"”?vø5@³’?^9@U’?—y@@P‹“?”­G@g‡•?AÚI@\º–?i.F@æî–?‡NE@ãM–?Ç\@@¶–?¼@@jL—?+ãC@œ”—?žPF@Õ¨±?çù´?Wý§?:¶?ú×¢?^H¼?”?s;Ñ?è•?è@<Œ˜?ª#@·èš?‘u@© Ÿ?Ñà @=E?6©@Û˜?ÈA@}¥”?É,@ì’?æ=@Xs“?éP@=”?`W@-”?änM@r'”?èÕ>@]ò’?8 :@È‘?È=@b1’?¼ùB@ÙÉ“?û×G@vb•?^¬J@{Ž–?˜åJ@ŸÙ–?@sE@³à•?x@@#“•?ëC@íÏ•?Ò{C@çü¥?Àn¹?ú›?7X²?G‘?/¾?èI‘? ÷ç?˜I•?ñ@B˜?ð‰@=%›?Ž @ãa?Ht @¨“˜?bi@u•?ô¶(@j“?ê?@Ì’?)”L@Ð “?eS@ÍJ“?ñM@¸=“?°A@é&’?*>@>’?3Å@@ô‘?ð–D@mM“? üJ@.•?ïO@òŽ–?…¸M@Ü•?@ÞC@Ž>•?“ú@@‡ö”?DÚB@nˆ¤?ç´?û¢‘?0·?‘?öêÍ?6ñ‘?vŽ@!š•?{‡@–ú—?R&@¶Pœ?‰p@ÍŸ˜?è@d¯”?H/*@ˆ÷‘?Äv@@5­‘?óüI@q\’?ÉáR@“¹’?kÐP@ø’?â~F@ñ’?ÚjA@†‘?¶9A@ìÿ?+áE@Ýè’?ÞëJ@)T•?(°O@™Â•?Ú™H@í'•?Ô%B@Ór”?;õB@¸›”?2l¨?B¸?Ö¿?¨VŽ?Æõê?ö®’?XM@ï–?pÂ@s]›?àØ@à$™?]@Õ”?òô,@· ‘?ŒÏ=@1`‘?_-H@A’?ç¿S@µ®’?EfV@/*“?-˜I@ a’?m˜?@{†?”A@¡E?œÛC@,’?bI@]\”?5!N@›•?ÒiJ@ÑÜ”?˜”F@xKœ?‘d³?I—Ž?†ˆ¾?©¶Œ?‰H×?õž?øŸ @ÅÜ•?ý|@i›?@q˜?xá@¯v“?aÌ-@Š|‘?ÜÍ8@" ?aD@ ‘?M»R@ˆ’?] W@y®’?š L@Øf‘?žŽB@¾?ë@@á?Ÿ`C@ב?“ÔK@Š ”?`P@°”?µL@k??Å#¶?}êŒ?×¹Ñ?ó@?Ò @5–?ë±@m™?:)@oá—?4b@$¶“?K@+@…–?MÓ1@#? A@eÅ?[ÒP@8r‘?TW@ù?’?šˆL@‹“?ç½@@Ï—?:@ç¦?W P@ш?ÎsX@ëY‘?Q`L@Í2?ÿ˜E@R?=ZG@VW?“éK@æç•?Õ’Í?´òŽ?6Ë?|'Œ?Dÿ?‘?0@ek”?J¢)@vÈ•?¢+@ “?‚I-@D1?q2@Z?žï<@2M?úpQ@CH?DtZ@XG‘?ë–N@ÑÝ?LF@ÉÊŽ?R¸H@t+‘?:‘½?‹øŠ?º‰Ê?¡±‹?»êý?}p?ga@Äe“?k—+@g”?öÎ0@×±’?\x.@ÅT?Y¶/@¾?{Ÿ>@I??ßS@Yî?©$[@Å\?u^P@!‘Ž?´þH@½›‡?t‘Ï?ûèŠ?%"õ?ÊŽ?û@h¸’?(*@6”?Ò÷/@§“?tw0@SÌ?Iy3@q¥?xC@H?”ðX@âê?3 \@øH?ñÑM@~ •?¹—í?J—‹?4\ì?·´Œ?H@r“?øH)@—”?ˆ‘3@€T’?øé1@Ä@?ºë9@© ?ó¼H@nG?j[@²§?ìæT@á>‹?/=Ù?‡¸?Nïò?ÓÙ?ïÏ@·L“?%–.@2j“?,û5@ü‚‘?46@$ËŽ? H;@â“?àM@sW?F\@’‹?t›Ý?ೊ? `ô?;&Ž?f“@-“?|Í3@ìÞ’?–„9@uÿ?ì8@$ÅŽ?Ò‡=@£(?«T@Ö‡?íä?™ºˆ?¹¬ï?±?ì@ ³“?àÄ8@J«’?6¨:@3§?’8@#?(œF@mc‹?ô¶å?Š%‹?!‹ö?û€?Å#@ÔÊ“?¶[9@6y‘?·;@{ÁŽ?Ù=@Ok¢?] @ôÞ?·O@¢]’?§-@Þ£’?èŸ>@eô?,7;@J ™?"r@4a?z: @þ“?Ï¿8@ú‘?L">@'A˜?~Ð@Ë>?¿‘@º•“?Ž=@¬@Ž?sø?5‘?Œß@;ý‘?—Y@¶¼§?‘n@@A-§?G;=@ü§?y<@犨?Ýø;@©?í>=@˜¨?!:@Þq§?þù7@ )¦?>ù5@`á¥?Iª2@sÛ¥?³/@%u¥?]q,@˜î¤?÷)+@æ­¤?uô+@gͤ?E<.@7Ϥ?7¿.@K¤¤?ã¼,@yn£?ǧ,@á¢?×5*@šp£?Ág)@Z{£?¼‹,@ˤ?åœ1@]¤?VÐ6@Ôk¥?%‰8@³Ñ¥?Q€8@7”¥?[d2@5ã¦?ð?+@É™§?æ"@©©¦?*@8U¥?¬T@(¹¤?åø@ç[¤?ú…@묤?ïÕ@äE¥?‚ß@Ò¶£?%z@| £?wÜ@Œf¢?óZ@WŠ¢?;É@ý¢? ú"@_c£?kð'@8é£?Ѭ.@眤?jÜ1@»ð¤?w'6@¸¯¥?tñ6@zX¦?øE5@è©§?—0@0x¨?º–*@úE©?Cš%@õZ©?C%@…R©?G‡$@šœ©?H!@ï÷ª? ‘@R¹ª?3@ŒXª?ªü@FYª?#H@Жª?ÎÉ@½Nª?Ë @¨u¬?_@Ÿ©­?Ú@w»°?³n @vÇ´?b@~¹?¥Ã @µ²¾?lº@2}Ä?e @‹PÉ?eK@ÕºÉ?+Öö?ý-Ç?¤•ê?üÔ¾?¡åÔ?@Ѥ?fb<@ô›£?"•9@Ðê¢?äo<@u©¢?Øc?@l¡?•yC@‘èŸ?pE@{ Ÿ?ã?F@ö®ž?U´H@P&ž?G@}(ž?¯ÜG@kž?ªÛG@r>ž?QèG@ €ž?„¯I@až? LM@%–?-dP@%Î?ƒ!Q@ùܧ?{`F@z›§?)©A@Ûħ?¬>@€¨?9@@•¶¨?z1>@®ù§?E[:@ÝÀ¦?C7@¢­¥??™4@Xá¤?öÏ3@‰¤?ʆ1@Ū¤?4/@[&¤?0@«w£?Ó[/@ùw£?Ú-@У?8ë,@ÿ÷¡?“-@š¾¢?§…/@„‹£?ë/@ a¤?2z1@f—¤?hƒ5@Wì¤?ô•7@Ù¥?L¡6@½k¥?l1@z·¦?#G*@;Ŧ?Œ~%@ o§?Í"@;š¦?^C@Gþ¥?@>@ü¥?ÀË@Ö9¦?QG@K`¥?·X@bž¥?@C,¥?p@æR¤?¸Þ @ æ£?ˆÇ@hï¢?ô@AŒ£?—J@ÐS¤?k¨@P¥?.è@ª¥?†~$@Q}¥?‰e'@“˜¦?+@®§?8í)@û§?m +@td¨?Fa*@²'©?}+@Cª?!+@š—ª?³Ž&@]S«?œ&!@xj¬?w@4à¬?ÿ¡@äÖ¬?%î@ u¬?üT@NL¬?®c@h²¬?^»@¹¦?ÂH@rZ¦?” D@³€¦?³—B@˦?# B@ä¥?·ö>@;ÿ¤?Ÿÿ9@k®£?“=6@ç£?'b8@ò¢?@<@Óº¢?àˆ:@·Ê£?ø-6@H£?Æ3@離?ÏÀ2@N£?±þ0@3¬¢?ب3@z΢?xÏ5@Ï$£?Ûe6@«'¤?1:@õ§¤?U55@á¹¥?û0@¶»¥?%f.@ïc¥?^@*@»©¦?Ô"(@T¨? &@?¸§?¶Ð"@Æï§?v¦ @µ§?ã¶@c<¨?Qù@i¨?&»@¼Ì§?Ð@z¯§?ËE@o¦?½Ï@áó¥?÷ç@Ød¥?Ó @jÓ¥?Ð @bê¥?° @ž3¦?×§ @õª¥?©¢ @êù¥?¦Ê @¾˜¥?ß»@iI¥?~J@BS¥?U»@‰I¦?ü @LI¨?¢%@¸©?aã)@Ÿª?Úy+@ü…«?>4+@ö¬?–Ï%@’­?Ù|@S·­?“ù@R¯?CÀ@ï?œ@9¯?rñ@½ø­?Bi@Và¥?5@®£?Ò|=@5‘£?43<@®Ç£?^9@iÅ£?(58@«¬£?:Ñ:@ýP¤?eˆ7@hÛ¤?þ96@!¥?ÒÃ2@”¥? ‚.@%¥?¸*@C¿¥?{(@K{§?D&@H¨?k/%@í̧?·p$@[ͧ?=·!@';¨?Lõ@¦z¨?øº@r6¨?J@¬¨?1…@u•©?§¾@T…©?`±@@å¨?¡Ó@AW¨?:Ä @̨?›, @‹v¨?$š @8ܧ?(ã@T§?3˜@,T¦?œb@±Ù¥?v@ÝÁ¤?@¨@Ê`¤?Ô @à6¥?Æ¿@e§?€¾@•E©?"@$]«?ul&@Á¤­?Î)@¹g¯?Îy'@åþ°?·¯"@µë±?n@¢P²?›@œ¨²?Ö:@º¦²?–w@n²? é@ë¦?giT@„©¥?ñM@ut¤?FE@ëÇ¢?…@@ó¡?2U@@‘ì¡?)C@½ƒ¢?ˆïF@*Ý¢?—¡H@¹T£?1PE@D¤?kÔC@ˆ6¥?JÎB@Ñ¥?~‡?@.‹¥?q ;@£î¤?ç$8@çʤ?$G5@ؤ¤?$Y2@J¤?ãC-@vL¥?æ*@¬’¥?^«'@Ц?í)@Js§?= +@9¨?)@Eç§?“&@°“¨?d##@š©?‡ @Ä*©?Š@ ÷¨?@б©?:h@뿪?íú@1k«?Þx@窫?¼•@Åõª?Þ¦ @î,ª?̈@ Æ©?³†@Nª?#Œ@Dª?ó´ý?>~¨?‘pø?ô£¦?uæñ?Ñ%¥?%Vð?áe¤?–eö?öV¤?ÿ²@‘¦?÷‚ @ò+¨?øu@ ½ª?à9@}®?õµ@¢´°?AJ#@ȱ?KŸ @Hƒ³?@d9´?q‚@åy´?`@ˆŒ´?Ñ@·Tµ?{$@ͧ¥?Z@5î£?Ü€P@ñÛ¢?IJ@Ý¢?k F@ë ¢?|F@íR¢?óI@oÞ¢?5¬H@žÂ£?wB@G}¤?!§?@ ¢¤?‚†;@šæ£?âÆ9@Òã?µ5@(Ó£?‹Y5@õ8¤?5&4@¸À¤?y¢1@rפ?ï.@⨤?!.@ò¥??½,@¨í¥?„+,@›6§?¬8+@#1¨?K)@[Ù¨?°L(@Z.©?µ¹%@÷'ª? à @·©?&˜@u8ª?ĉ@dª?¡ñ@ŽOª?ÎŽ@¢I«?ö* @‰e«?q<@ä¬?ï@ ë«?Þó@r‘¬?l†@„7®?h3ü?z“¬?Gö?ÐÆ©?œ¸ó?N(§?Ñfî?òá¥?¬ê?B ¥?§ƒé?—¢¤?d¢ñ?‹Æ¤?uøü?F%¥? Ð@”˜¨?_Ò@`Ƭ?êŽ@¦'°? µ@òx²?ñê!@€½´?V€!@Ãx·?@q‚¸?ð@nå¸?²@|Z¹?1l@âC¥?[@”’£?ñ R@‰m£?]ÕK@³£?&9K@8¢?·J@rÕ¢?ÛƒD@`¤?þ‚=@Å…¤?F:@2ç£?ç§6@3£?`´1@s¢£?¥ 0@í£?Ć.@Q¤?ÖL0@¦¤?Îl0@Zö¤?[Ò.@°¥?7/@ý&¦?xò-@:#§?L$-@ÉŽ¨?¦(-@Üí¨?¯*@Ô©?w‘&@ï©?ÌÔ"@]{ª?T4@o|ª?LŠ@?Ø‘@䆪?zá @åª?@š’«?…è@(à«?žì@š¬?#âÿ?è©­?¥ûü?u߬?²?ÿ?«?«n@o«©?9!þ?N¨?L"ú?{"¨?Æq÷?7Ч?¡õ?Ær§?]«ò?@¨?¹úò?õ§?6ö?Y[§?÷7ÿ?ÿš©?8Ó@“÷®?n8@Ð-³?›ý@ò%¶?ш@0&¸?~@:»?@Ö@'¼?wß@½?|í @ìÚ½?Ç @Õ¤?Ë®_@#£?ßXZ@´[¢?²sQ@ÀÞ¡?^€K@°a¢?L%C@&S£?µ¼<@²£?QÉ6@éÔ¡?*0@q(¡?Ü-@ý¢?Ï,@”¢?€ /@‰ £?ÿ.@l¨£?§S-@zؤ?f,@nD¥?‰e,@ø³¦??(-@A §?¼Û,@[e¨?­Ô*@ƒ ©?zš&@Q©?¼p @$Ý©?ìD@å«?@@ö!¬?&à @NŒ¬? # @)t«?'C@øÊ«? @`)¬?¿8ÿ?ˆ«?¹ @²«?û¶@r|«?µµ@°X¬?Õ@tP¬?2N@ø"«?nó@é«?U]@s¬?8é@Rß­?§@¼®?S@N^¯?d ÿ?x3¯?‘ÿ?(\¯?×k@O±?k@5ã´?g© @œ4¹?ÒÝ@a¸»?t@…½?HÙ@z:¾?îW@6PÀ?Cf @?Â?Y@¥;Ã?æb@œ¼¢?QŽ`@é¡?”UV@¡r¡?ÐyN@Ò¡?¨ØF@Z£?ž>@i=¢?Ò 6@’¡?‡k/@,µ¡?ø¢-@Ö9¢?ß+@ü3¢?I.@¢?{+,@ÅB£?l+@8W¤?%+@Ff¥?Âæ+@œ¦?.@Üo§?»,@6ä§?|½%@E?¨?O#@e›¨?äO@¼©?c @X0ª?·B @«?»-@ù‚«?‡D@˜¬?è"@6û«?Þ¼@‰ü«?uý@“«?Ä—@Dƒ«?·H @Dú«?^O @5®?šæ@ì¯?+@„˯?Þ• @ ް?ˆe @ç²?›ë@¤º²?@"î´?/@T§¶?ZÞ@ŠK·?µ½@'7¸?Û@-U¹?×á@g»?oV @j½?J£@„Z¾?³X@L¿?Þú @#Á?òö@j¸Â?z*@’Æ?©º@nÈ?“i@Û¢¡?O[]@!¨¡?vT@{—¡?u€I@<à¡?þf<@§B¡?uM4@á¡?úA1@t¡?è»/@øú¡? -@wT¢?ó,@‘ ¢?˜-@™Ž¢?ñª,@"q£?6A-@¨s¤?9Œ.@Â¥?d-/@?¦?µ.@!‰¦?!ü%@W§?Ê@vë§?û@Eæ¨?æ>@B©?.2 @Šª?Ü @ ܪ?^¾ @‚'¬?i< @Ŭ?ëª @Cܬ?W| @Ìú¬?xº@0H­?Q@+ª®?’Ý@K+°?C@†±?‹g@ —²?¯€@uK´?f @LEµ?^I @éS·?ñ @Á˜¹?Šl @nº?Î@šÍ»?)2 @ûœ¼?&Ó@¡Z¿?¨ @L„À?•é @lªÀ?Š­ @ áÀ?®æ@]•Â?+u@ÔÂ?í×@R”Ã?½¬@}ÏÆ?i°@ÀÉ?åÈ@¶>¡?øäR@¹J¡?#ìK@8Ö ?Àû<@þ6 ? ²2@uûŸ?b±.@° ?‘Ä/@I¡?cS-@¢?0Ã*@œ¢?’*@‡“¢?’è,@†£?Ì0@_’¤?”„3@A‘¥?¿>3@¦?aÑ0@K¹¦?úœ'@ž”¦?É @5r¦?‡G@Só§?˜Q@½¼¨?ÀM@ð»¨? @žæ©?T@`žª?@¦È«?ræ@ûˬ?f$@ÉR¯?†¿@q±?-@TQ²?:@q¿³?¶Ø@fµ?~§@w¶?i´@xw¸?t}@Ð º?HB@bk»?sJ@©¼?Ç @T;¾?öý @ס¾?ÙQ @mÁ?é_ @®µÂ?¦Ú @a¦Â?ú»@LêÁ?½á@>Ã?9É@¢qÄ?ýc@@PÃ?Û@gÃ? À@0ÎÆ?Ç™@,GÉ?!û?úü ?¼ÉO@ݬ ? ¾D@O= ?4§5@罞?3·1@§VŸ?Š™1@=M ?^Ê.@ö¡?h+@Ÿ ¡?Ù/)@º”¡?«-@¥¨¢?Cl1@ÑD£?zä5@yr¤?²Ã5@%…¥?Æß0@àH¦?C(@S4§?½„@Šç¦?[Ù@ªE§?y @Çȧ?+ÿ@#ö§?êt@Øð¨?<á@ódª?@@ë«?åR @óÙ­? >@ëK°?Û‹!@þ³?O"@Ëêµ?J| @_"¸?„Ä@¢M¹?!8@§éº?Á˜@¾Ô»?5@@Á¼?Üã@´½?€Ð@;?±¼@VËÀ?el @–šÁ?ún @”iÂ?H[ @¢Â?þ @*Ã?žŒ @ÄCÃ? @èÄÃ?ëµ@8ùÄ?ô@!ÏÄ?ö¼@í}Å?ÅP@ÐâÆ?sXÿ?RjÅ?ÆÃë?Ùã ?y‚M@V ?²>@ Šž?a6@›ž?ö}5@0mŸ?[É2@ê• ?µä.@Cé ?Ì®+@Þ&¡?Èô,@Æ¡?å¬0@)‚¢? ›4@.µ£?!6@¹ ¤?–…1@Êd¥?…*)@È»¦?™@~7§?¡†@•³§?ªÈ@þÙ¦?Å«@ÂA§?…ß@€©?CË"@R ª?¬¶%@à}«?s5&@”i­?:Z#@¤°?ß"@Îÿ²?`Ž!@p’µ?Åz@àç·?‡®@õ¡º?ÑW@:¼?b@ÐŒ½? J@¢D¾?®@¨sÀ?i"@¸OÁ?£á@ãÂ?²Ø@-¯Ã?Ç›@ÌíÂ?”À@ƒÐÁ?­`@ýoÁ?ø?@”À?_Ë@PÀ?R•@ÖÁ?r¾@¢ŸÄ?0 @Ï)Ç?Œn @‚aÅ?Pöþ?Í8»?_èâ?‘³¡?UêF@0tŸ?ø†;@E)ž?[=8@¶Éž??ú6@37Ÿ?×<3@ÉïŸ?Ýë,@Ê9 ?«}+@Û¡?UN/@'¢?Þ¶3@eþ¢?J5@éñ£?ã1@£×¤?U´+@b¦?®E"@v-¦?—|@F¦?Œ™@ŒJ¦?w@¹å¦?)Á@¨?ëŒ!@2)©?qƒ#@ºyª?Ò\$@Á4¬?™ %@(k®?M/#@Ýİ?í?#@6y³?Iz@ö6¶?©a@šÕ¸?òê@ E»?Ô—@=¾?©ò@¾¿?@ÁkÁ?[Ž@ ’Â?ø@BöÁ?X@S¾Á?¯[@±zÀ?Ž@®Œ¿?x•@‡¿?΢@nÿ¿?ši @ô¿?{£@†qÂ?ÁR @1Ç? 7@€Ê?îg @g Æ?Ö@éoº?ó ê?g, ?›Ê@@Ë=ž?U:@´.ž?p½7@7›ž?#4@§Éž?2…/@x‹Ÿ?ò‡+@ÃþŸ? \,@‘œ ?Fy1@Ž ¡?j5@Š¢?p1@V4£?@ø*@v5¤?6Ö$@ÎZ¥?–W @ ʤ?†'@B`¥?°°@%¦?„±@õï¦?и"@Àe§?ä‰#@ê©?x>%@<›«?ö3$@a-®?8F#@;†°?Aß"@o³?ª{@¤;µ?©ø@ˆ¸?\¢@¼¦»?@u ¿?x@SËÀ?Ý8@á9¿?Ú @Eá¾?·Æ@Øð¾?†Y@£©¾?¤Æ@±¿?²]@O€¿?Î&@)¿¿?x²@w€¿?þö @cºÀ?=Ó @BÄ?5ï @©_È?Xs@ÔáÌ?w( @þ¶Ë?Q?@¸Â?¿‘õ?UAž?¦=@x?®¾;@áï?Fu7@ìž?ɾ/@Ýí?â+@olŸ?Ï[-@Û ?U¢2@ ‚¡?A‹3@ ¡?É;1@Ù1¢?`+@½£?ð‘&@ˆ8¤?Qï"@9L¤?• "@ø†¤?ò!@ï–¤?½#@¦?7%@~g§?å,%@Åã¨?ƒc%@N¹ª?Ü&@M ­?Fý"@ð¯?O˜ @kB³?ª×@swµ?ì[@Ѐ¸?à¾@Žˆ»?ÑÝ@x}¿?|É@vÁ?|…!@¼?Á?èF!@¼”À?Y@½?3€@- ¾?’@Ò®À?È>@…iÀ?eø@ßȾ?Q¶ @Š€½?f@ ®¿?r @vÿÂ?%q @äÈ?4ä@Ù›Í?¢@«Ï?ãð @¿É?ŠÛ@ç?û8>@9¾?b¯;@‹Š?Yä4@ã®?-/@îž?Q~.@· ?ÿ4@lp¡?€r7@_¢?«ä2@¢?ƒ,@˜ˆ¢?ŒÅ&@Àâ£?Tf#@Ø…¤?yý!@¤F¤?.h#@±K¥? è#@ê³¥?²«&@š §?Ü'@M;©?K‹&@Ž1«?mÑ#@Ǽ¬?x!@õܯ?ÞÛ@‚³?¾@|ô¶?ú³@¸¹?–@¸ ¾?Jò @wÀ?NŠ$@<ÕÁ?(í!@µ!À?¡ @V÷¾??6@ê¾?üµ@*x¿?«@^Á?`)@(@ 7£?w$@‰¢?B¤!@Ò|£?ïë!@à¤?bÄ#@qz¦?‚M(@j_¨?ç·)@Ué©?k (@ÏŸ«?ó%%@þ!®?Y1#@ÖS°?Å'@|w³?ž8@ V·?7<@NÚº?xF @ ¿?ð”#@hÀ?œ#@|ÓÀ?›@mÀ?bî@V¿?•à@²¶¾?·;@ð³¿?Yß@ÓÂ?yQ@:ÐÃ?wt@¼Â?òñ@œ”À?I@ΖÀ?†@tÃ?–¸@ºôÅ?c6@iÊ?ýJ@ýÍ? @ÿÔÏ?¬Ä@¨!?EË:@Ê?È#8@È®ž?z¦5@ù ?ö):@¤5¡?ݽ>@ b¢?yh<@••¢?¨5@èx¢?¨¨-@…£¢?r'@kP£?çY$@L£?§½#@ •¤?ÓX$@柦?û='@H¨?ùÊ(@¿kª? ‰'@­?³ê&@«G¯?;Ï#@ß¼°?9™ @.ܱ?e†@Iyµ?U @ã~»?Î&$@úç½?.!&@ì.À?"%@sÀ?Þ"@Ñ¿?x@¬ò¾?£¨ @…¿?T@©Á?ç@8áÂ?¯@iÅ?6@VÄ?®$ @N¡Â?îf!@C£Â?hÆ @ÆñÃ?&Ú@èõÄ?U~@÷øÆ?íû%@YèÌ?¨(@ŒNÏ?6$@û®?E’7@©Ëž?Ä5@ñ¥Ÿ?8@Åt¡?Ài<@Qû¡?ÄÕ<@5n¢?Hú7@<¢?I{1@hÜ¢?«6,@nW£?É>(@àã£?N”&@Ø¥?Mó$@Χ?Ü&@Ç;©?gÌ'@Na«?ã>)@é­?ºÓ(@ª§¯?@¬'@f¼±?ñ3%@ÔO²?wF"@Qµ?/V"@žp»?£'@»Œ¾?D)@ç¦À?ö=(@ŽÀ?åX$@¶‰¿?ðà"@¯¾?ªN"@éK¿?Ø\@ÛŽÁ?g@­Ã?“H@þYÅ?±Ê@oøÅ?NE!@úÄ?О#@çÎÄ?Xu&@eÆ?&@»ÜÇ?i,&@}©È?0”,@fÚË?”0@!Ï?Zý*@¹Â?šÉ6@fvŸ?{7@Ý© ?Â:@ê¡?Ac:@p‘¢?C)7@+ì¢?e0@„¤?DD*@#‚£?HÃ'@Põ£?.'@öý¤?X9)@}Ô¦?kq)@Úv¨?t1)@f·ª?~ƒ*@Âf­?j-@ô¯?.-@a"²?å—,@_ͳ?Ùá*@¾+·? Y)@i¼?Óy*@{<À?÷+,@ȘÀ?ß¹*@ìÌÀ?#T(@™Ñ¿?,h&@:†¿? &@—ú¾?®!@ W¿?Ã@®Á?± @EèÄ?.#@mºÆ?VÞ$@ú>Æ?uŠ'@Ì©Æ?-V*@O9Ç?Ù¡)@ý¾È?r%*@Á{Ê?â×/@ÏbÌ?„\2@€åÏ?Z%/@X\Ÿ?\ƒ5@¯— ?LÎ8@iË¡?(þ<@;¦¢?ñ^9@g­¢?ù2@b÷¢?¡Õ,@ú+¤?#å(@ ¤?8ï'@Cߤ?›a)@h’¦?â,@áä§?We-@ìAª?Þî-@F­?ø,@Õx¯?¬Û-@{ܱ?ÒŽ/@ µ?ù/@.g¸?uM/@ª¼?<`/@À?·½/@‹&Á?J,@lÙÁ?¼(@ƒþÁ?| )@àmÂ?}¿(@ˆÁ?kL&@|0Á?+]#@x4Â?ú "@–Å? †$@‰ÚÆ?w'@29Ç?`+@ÞÆ?šm.@lÇ?ä”-@Â×È?EÃ-@9qË?V/@LuÍ?™©1@ô„Ð?ެ1@/ï ?f~8@ú#¢?Åú<@í<£?^²<@|}£?]ß8@ÈD£?›=0@ ¯£?€0*@6–¤?} )@»r¥?˜ *@fܧ?ØF,@š=©?8°-@i^«?#.@U­?Å/.@E!¯?çp-@çu±?N/@ÉÊ´?Õ2@FÓ¸?g­1@ô¼?5f2@™~¿?ƒY3@Á?<0@¶ÁÂ? +@´“Ã?*ð)@áÃÂ?Ôl*@f˜Ã?-›)@bÛÂ?÷ä&@§Ã?(&@è¯Å?§ä&@3¶Æ?Zq)@¿³Æ?œÕ*@ÀÇ?+R-@ àÈ?U`.@†.Ê?å6.@I5Í?™1@É<Ï?Í2@ÚFÒ?œ2@— ¢?H<@ƒ·£?M<@t;¤?U“8@¿ ¤?o€4@ö¸¤?],@ZK¥?@(@i'¦?a9)@Ũ?¸,@ª?Ûô-@"³«?;0@h]­?)1@¯û¯?2<1@×€²?ÎH/@ŠV´?P*3@Ô=·?sd4@Uxº?U—2@iÔ¾?_Æ5@³Á?f5@ÔwÂ?~W0@ÏÊÁ?¹ß-@EÂ?€Å,@eçÂ?­+@ÞËÂ?a5(@òÍÃ?cþ%@&iÄ?dr'@ÿXÆ?øÃ(@,£Æ?°ÿ+@D Ç?4&.@OàÉ?x`/@ߤË?pú/@ò™Í?‘ý2@ÇùÏ?’o5@°ùÑ?ï×4@Þ£?Ð=@õe¤?”0<@ü#¥?$+8@lŽ¥?Rì1@BN¦?UH-@:ŧ?׬,@1Щ?+[.@:/«?b0@D’¬?e’2@ÙŒ®?×+4@¡Ú°?Q–3@øD³?‰ÿ/@Z¼µ?Ô1@)W¸?³ 5@\õº?Ø4@rv½?Lš7@÷À?È8@œÂ?‡ö4@[×À?ÃÜ.@IàÀ?•å*@Û.Â?()@ªsÂ?Io%@ PÂ? j&@ªBÃ?Í](@´zÄ?XÍ'@5 Å?ë9+@¡˜Æ?ž{0@]-È?\2@ÙÉÉ?6¹2@"9Ì?%j3@Y¥Î?i7@§´Ð?@9@7¥?Ÿ†?@ö,¦?+m;@d´¦?„5@uf§?N2@Ü8¨?Ö/@!8ª?î˜0@rͬ?¦d1@ :®?˜33@Gį?û(6@:·±?`X6@Ó&´?íÏ3@RD¶?_©3@ñh¸?“ê4@Ó´»?ÃÔ5@OÞ½?èQ8@ÕQ¿?öð:@BÂ?. 8@Õ¥Â?»S4@lûÀ?kF/@ü×À?ev,@SŒÀ?á«)@ŠÀ?¥()@ã¦Á?Pf-@`”Â?HT-@³JÄ?‘Y,@B+Å?M‰/@}=Æ??R3@óxÇ?šÌ3@ã¥É?6@êË?ž:@ãpÎ?S;@ ^¦?`Ú;@Û|§?ß17@‹q¨?5@Çs©?¯4@é9«?‘ú1@Œ$­?’Æ1@9G¯?ëæ5@°?ø8@'²?T—9@xɳ?øÄ7@Mˆ¶?a6@ð¸?ÈR6@'.¼?Ÿ¢6@µx¿?²`;@ìÑ¿?‘5>@$ Á?ˆP:@ƒŒÃ? v8@ynÂ?­27@JcÁ?Ä:4@I«À?º,3@;AÁ?¶V0@-Â?ôÆ0@Œ`Â?N 2@|YÂ?èÖ1@¬àÃ?ö3@y'Å?þ3@÷éÅ?p4@CßÇ?E¾7@¶IÉ?*”:@?õÊ?+®9@"¦§?4 <@Íå¨? –;@ö˜©? ¤7@¤-«?nÅ4@Ѭ?4@Ó«®?(’6@%»°?ø‡9@a¹²?«}9@(b´?ì‹7@µ?kœ7@wÚ¸?´ð7@œ@¼?kW8@û¾?Yd=@êÀ?1@@‚ Á?Ý>@KÂ?@™<@ÕÂ?`×<@#ÏÁ?-f>@Ú‚Á?S';@kzÂ?Ñõ9@ õÂ?eJ8@˜øÂ?Á7@UÃ?”L8@ÕÄ?ý 7@Ü<Ä? ó8@¤Ä?9@ΉÆ?»–8@nuÇ?ô 9@XbÈ?8A8@Þ¬§?Îï9@O©?eò7@¡ª?P4@.ô¬?éY3@ºq®?‚¼5@êÁ¯?nF9@nï±?šŽ;@<ø³?¯];@tµ?{~<@dj¸?¸?;@ͺ?¾;@ñV½?RÅ=@ܽ?¹C@÷AÀ?fnE@ÂwÁ?‘ðB@N²Á?ë?A@KþÁ?1±@@›oÁ?_Ÿ@@ÉÛÁ?WÃ>@\>Â? %>@ñ'Ã?!?@Ã?°è=@9Â?z>@V`Â?6Æ@@xÃ?¶ˆ?@ʧÄ?!>@CWÅ?Dð<@‰ Æ?xå<@ ¨?<»7@ƒÊ©?û5@Ò¯«?.ÿ3@EJ­?¶ 4@e¯?¡œ7@7±?œ:@zß²?JX<@’­´?)Æ=@”,·?>’>@›W¹?6–=@;»?̰A@‚¸»?F@QA½?)”G@ÿµ¾?}¡G@0|¾?‘DG@ÿξ?'ÿH@ÒŽ¾?ÈõF@r¿¾?DqB@_ô¾?9Ð?@]¤¿?Iå@@¥ð¿?‘C@Iú¿?5ÇC@…¿?*~D@§hÀ?%lB@ºIÁ?ºí?@¤$Â?ØÞ?@ …Ã?‰È=@šà©?k¶9@öþª?1÷7@Ʋ«?T7@H]­?>09@È}¯?„X;@ˆv±?×<@ë;³?¨§:@N¤´?nb=@¹·¶?*î?@ꢸ?Ý-D@œ¨¹?êH@Nº?;úI@æp»?âËJ@œ‡»?@9J@N@»?ž¾H@)¼?óE@.¼?ØÛ?@rÛ»? >@Òz¼?PŸ?@@w¼?@B@w×¼?,ïF@7!½?÷ÕF@ R½?0E@íV¾?v—A@­y¿?ÔC@@(ð¿?D>@4_©?jg7@0ñª?¹y7@Œ¬?ó7@®Ÿ®?’“:@â>°?j<@ö±?…F?@°Ä²?¥5A@ǯ´?çßD@çö? >H@§·?+ŸK@ï·?~K@ð·?1öJ@]t¸?ŸJ@‹«¸?yH@£ë¸?›—E@p¨¹?=ü?@ôu¹?»ý<@´’¸?Ç >@ݘ¹?Ö¤>@ ü¹?¢A@,º?@"C@,_º?®{D@óv»?C@« ¼?à?@@>n¼?Ú+>@u½©?Uc;@×h«?Þ*:@Añ¬?åq;@áή?lˆ<@m\°?Š«>@ƒ±?’)B@䆲?á F@Eß´?T`J@L¶?ÄþL@ óµ?<|L@åµ?,gK@ªß´?îyH@:µ? zF@çµ?&1E@üÛ¶?Þõ?@±úµ?Íý;@õ´µ?ßç9@6O¶?¶<@Â$·?w=@ 0·?á@@r·?xÀA@ßN¸?olB@Ï&¸?ªB@Џ?æ–>@°{ª?£p=@§g«?0ƒ<@2¬?z4<@ë™­?qù;@Æ?¯?Ñ|?@ƒÒ°?Õ¸D@‹Î²?K@Ú­³?¨oL@Ô®´?—·K@¡i´?%½I@Ju³?Ý_F@¥E²?~ÁC@I­²?¥žB@À¬³?È?@Áȳ?öô>@ -³?™¾<@®r³? <@_“³?¦*:@X´?Žš=@ç#´?ëŽ@@“,µ?›®@@#ö´?™¨C@ê ¶?A@ñtª?çõ@@S«?FA@N¬?ÊÜA@(¬?‡€A@µù­?²D@æ¯?J@Üò¯?G¤M@v°?âÑN@:²?‘sK@æõ±?ÆèH@¿-±?ÕME@næ°?d@@²±?H“>@s ±?Ñþ=@u]°?•Ø=@@°?øù:@ÜK°?÷Ý:@Ò¯?M’;@õ¯?‘Ð;@n‡°?°>@èDZ?§½A@Ž ³?z›D@›¡©?¯™E@KC«?êÊE@™†«?9>F@\Þ«?<(G@ ƒ¬?J|I@N^­?qJ@É­?µ~J@&®?bL@îñ¯?vK@«¯?‘I@‘ð®?6OC@£µ¯?È“>@6¯?Ý7=@—=­?Èî;@… ¬?À6<@Øõ¬?kë:@æ­?ø—8@µ­?½Ò7@ ï­? €9@î³®?6z?@kL°?é¸F@W…©?0XD@¤¯ª?ÍE@éÛª?¸¡E@Öª?nÝE@E«?H@©¬? hI@½¬?»/J@©Ñ¬?Y&K@v¼­?‹)H@…4­?¡µE@Éî¬?ØLA@'­?¿ >@ ‘«?5‹<@rߪ?Uá;@ ª?û:@$cª?ë78@yîª?®8@¬H«?ai:@iþ«?Ñ>@"u­?ÇZD@Ò¾¨?4G@±‘©?ä›F@Û8ª?k›E@$pª?ž–E@¬cª?—™H@ÓBª?žJ@´iª?7EJ@+‘ª?ž7H@ ت?CFD@Xª?Ù«A@ø2ª?ö›?@#ý©?«T@@üÙ¨?#ú=@þø§?R:@»§?ã;7@Gd§?’È6@¥¨?œ7@zר?Ë*:@ «?ž<@?'¨?á±F@ó¨?¾qF@÷Ũ?¶F@•©?|#I@=e©?86L@ëÛ¨?_L@Þ¨?¶I@—©?ùÏD@Ë©?cA@E¨?xÜ<@0¨?ˆØ<@½ù¦?b¥>@Çà¦?Ü=@€‹¦?]”6@æ¥?'ç4@˜‰¥?Ÿ„5@%'¦?<9@ÏI¨?›ë;@üǦ?®ÝE@Û§?ë‚G@³p§?ëªG@lß§?¼8J@-¨?,¨J@‡£§?{K@5$§?óðG@°$§?÷B@¯â§?±Ž:@O§?ë&;@§¦?Ž<@¿¦?¸=@[m¦?£¯9@¹Â¥?ÐÕ5@÷?¥?¢98@>x¥?¦š<@Ãí¦?wN<@J¥?3|G@†´¥?c^H@¶R¦?Q™G@á̦?rŒH@bè¦?ò L@û§?8´K@¶-§?8_H@œÛ¦?›¯D@°ü¦?2Â>@Â|¦?/=@gp¥?$ˆ?@ÈÛ¥?Þ6@@‘ ¥?øë=@ ‡¥?Å>@Ñ©¥?Ü{>@µ¹¥?>Ú>@{¨¤?q¿G@lï¤?U£H@'ž¥?%mH@Žv¥?‘J@,™¥?qXK@…½¥?êµM@p¦?vL@G†¦?¢tJ@õ§?ÔE@ÇO¦?#D@j¥?µUC@8¥?÷åA@&n¥?]u@@ó½¥?‘EB@fˤ?Ü?@ɤ?º­G@(`¤?ÞÆH@Ȥ¤?Ñ÷G@l¤?.¯H@°F¤?`M@Σ¤?.O@ˆ¦?ZL@î¥?À³L@1¦?È`J@ð¥?ÑJ@-ؤ?¿¿H@?I¥?ÞF@u“¥?lòD@ù$¤?vœA@{ì¢?ÌH@ÇP£?º?J@f£?3ŸK@ø¦¢?QÃL@Ô!£?â N@3ä£?£AQ@–å¤?¹³Q@:i¥?¥P@Û=¥?)–N@£³¤?€„N@á¥?žL@Ž,¥?’ÃH@ùù£?@LD@o¢?¨G@¤±¢? ÂF@ù·¢?gØH@ú¢?âáJ@ ¼¢?¦pP@ˆ‘£?#¤U@8£?1ÖV@¤?2£V@å¤?~‡R@^×£?ΕN@_£?æbL@쮢?Y+G@x€¡?ÿ„F@xÕ¡?9öD@:q¢?Ù©H@ñ¢?bTN@»¡?ÅŽS@Þ¢??,X@´Ð¢?l¥Y@tB£?ßU@‰ð¢?õåN@Uj¢?%&M@á?D1I@ÏV ?|ÏD@bD ?«XE@å ?ïG@´S ?BL@vŸ?xÊT@?Ç ?‚ÂY@C?¢?õÈY@‰¢?†ïW@ðê¡?+’R@‹Î ?öJ@ºXŸ?ÉgA@’†ž?\rH@Ü…ž?8L@Œhž?½O@e·ž?PÎV@¢{ ?PKZ@’,¢?xÀZ@;¢?ØW@‚Ä ?"°M@¹Gž?¨ B@Ç?ÜÈK@Cš?¨EO@'0ž?[>T@©9Ÿ?+Y@Væ ?ÙJX@y¦¡?CKS@£| ?,M@ôþ?ÞG@T€?|­O@J5ž?†æP@]<Ÿ?Å“V@Ç) ?ÔÙZ@¡?sYU@¢b ?Å]O@|€?ÑÞK@g8?„çQ@²‚ž? U@­xŸ?¹Z@û« ?rWV@è; ?ÕPO@zל?¨^R@0?ã3W@#Ÿ?ÜW@äK ? W@õŸ?T%N@àNœ?„ÈU@“ƒ?Ð×Z@h£Ÿ?³W@s+ ?p—Q@—6œ?óZ@—‰ž?©—[@CˆŸ?„zR@[$?É>]@à´ž?ÆY@7 ž?ßY@ß±¬?VJ@ý©«?àÄ@.«?æþ?nª?4òñ? Oª?^Aâ?Nа?Fþß?+"·?hRè?58¾?sÐò?z„Å?¬`ö?+Ç?Uá?_gÀ?X>Ì?â4¾?>Uº?`Ÿ¹?²?I8¼?ü׳?ÅO»?^€½?ùÛ½?òÒÇ?‘„Á?Z8Ó?ëœÂ?!ïØ? Ã?ŽÞ?{ Â?é¿è?SìÁ? àø?5éÀ?ø@CÂ?X @ žÄ?Ôÿ@õœÄ?¤r@‹÷Å?e;@¼È? ¨@jéÊ?å!@b¨Ì?wÏ'@¦HÏ?Þ«,@‚´Ð?]®3@½Ñ?áv3@[QÓ?H‚0@_ÈÕ?‚)@éØ?q7#@~"Û?ËG)@CôÙ?ës3@àØ?µ0@’ãÕ?éþ/@ÂÔ?S‘/@7€Ò?G…0@æãÏ?õ@.@£Î?© +@›îÌ?'á'@ïÄË?&@GWÊ?o/)@Z&Ê?0(@ü%Ê?Nö%@ÉHÊ?Ý&@pØÉ?ŽŠ(@±RÇ?I*@Ä™Å?ìÅ,@fÂ?<0@í¿?G¹5@fn»?y8@º?öù:@(ܵ?“‘C@¦Ï²?baF@ea°?Ê'F@ñÙ®?— I@tH®?ø“F@bâ¬?A@¹ø©?»n;@Wר?u˜7@½½¨?Þ¡5@¨?@A0@ç7©?¶ê.@Yª?k0@±Tª?@0@ê^«?4è-@;s¬?•ì,@Þ%¬?/Ö/@X/¬?ú]3@ ¯­?âû7@››­?xÅ:@gŸ­?p»<@1€¬? n>@tv«?5ºD@4ª?ÄçE@D©?u‰G@û¸¨?ÀeD@73¨? B@Êò§?÷p@@í…§?‹·;@¸b¦?Þ :@º^¥?‚d<@©i¥?nU;@… ¤?W_<@‹c¤?Å#B@}¸¢?»&E@½D¡?\B@$ ?ò¹<@wÏŸ?ï‹4@Ž- ?šÅ,@8ÛŸ?™,@KŸ?./@¼üž?89/@ÔÞž?DÈ0@¼Šž?6¸4@5#ž?Ÿ;@èÆž?^/D@ÓGž?=ÅE@?fF@‡Ì›?× @@ Ùš?Qh@@ºcš?_rB@qš?,©F@^nš?SåJ@?š?» G@kSš?ÿ=E@¼›?ÿ§E@õÑœ?QNI@Üܬ?Cé@¬?°š@ëx«?)ø?੪?‘®è?˜¯?@Rã?`e¶?—ç?·ø¿?¿zî?µîÇ?Ùöô?oLÇ? Ú?Üû¾?¸Á?¼‹º?RÛ±?‹í¼?6“¬?Áž½?© ³? ¿?±Ô½?>À?‹Ì?8pÁ?QÒ?ÓÄÁ?,}×?X×Á?£ßÞ?hÓ¿?æxì?tŒÀ?«@†1Á?§o@¯ûÂ?cé @€–Ä?-@dÅ?ô›@¥Ç?ŸÓ@léÉ?Ó¶@­Í?O+ @;HÏ?}R'@d$Ñ?gÂ,@ •Ó?þ‹2@Ö Õ?þÖ4@\„×?JC7@xmÙ? 2@×IÚ?gØ)@{€Ü?R‚)@1dÛ? 3@‚\Ø?$Ú3@šàÖ?æ)5@ºÇÓ?Öã2@¹BÑ?‚x/@ÏÍ?Ò¯+@§SË?¸„*@[É?j=*@nÞÈ?¯l'@£ÁÇ?D(@‚xÆ?¼)@ÓuÅ?™(@ÊÅ?ø5'@ Æ?(¶&@ÙjÄ?Õø(@YPÂ?ÑU,@Gˆ¿?nÖ2@0 ¼?…T4@rĸ?*"8@¶?ùã<@]Í­?<@Eã¬?z@Š ®?×ö?Õû²?¤(é?v§º?•(å?›FÂ?Ï5ë?­È?y¡ê?¿ÀÃ?.Ë?~m¿?›·?kð»?ØW±?¶½?Ÿ*­?<>Á?ªµ?/ØÁ?m À?ÖÁ?H.Ê?î8Â?‡Ò?áÃ? Ö?µzÂ?p{à?¸û¿?Nýñ?OºÀ? ð@JÑÁ?Ø @Ø«Ã?ø—@/@xûÙ?‘“3@µÔÜ?¤‡9@µ–Þ?À{9@´³ß? Z6@Á“Þ?¥i3@¶¥Þ?vÃ/@½]Ü?)3@¦<Ú?SÌ6@4éÖ?Ó8@¦\Ó?le7@ÿ}Ï? Á1@+“Ë?0ê.@…Ç?ðÿ+@=_Å?ã(@;JÃ?+‹'@'Â?ä*@U´Á? ê+@R¢Á?œ,@‡ÊÁ?m-@/ßÁ?m¾1@±\À?$ž.@×Z½?e÷0@ƺ?½2@¤Ð·?5@2µ?Íi=@àñ²?ȤB@2¸?z} @xë¼?S ý?½\Ã?èî?™´Ê?jä?0Ç?¯ºÒ?*†Á?%ô»?¾¯¾?+¶¬?yÛÀ?«B°?¤6Ã?|+±?› Ä?"<¹?2 Æ?ÄOÂ?[Æ?ºÎ?Þ-Æ?½ì×?ü*Ã?<÷â?}÷Â?¶î?DÂ?‹0ú?‚¼Â?ëw@”×Ã?´ @[`Æ?ú@q{È?^ó@PxÊ?¶¼!@EøÍ?Þ(@±Ð?‚=)@ÆßÒ?¸W+@§Õ?8+@³pØ?ô«-@Î]Ú?þ0@ÔÝ?Ú=6@‹ß?|i;@¢wà? 9@\kß?œ”5@àÜ?´3@y`Û?uŸ2@ˆÙ?]©6@ÿ&×?Ò 9@_=Ó?4J8@PsÏ?Uì2@H+Ë?°p1@«ëÆ?0@'ýÃ?*å/@åÌÁ?ôv,@ž¿?aå,@°Ç¾?9-@#%¿?&}/@Š´¿?ß1@©Ú¾?ý2@e½?æM6@YÀ»?¹8@@¹?›S8@”a¶?i<@É›³?Û B@N2±?o×E@_Q¾?S£@^)Å?Óö?YRÊ?;Që?Ù½Ç?ºË?=ßÁ?³µ?wÁ¾?Õ¬?>ºÀ?»Â±?FRÀ?È*¶?CùÄ?à»?ìÛÅ?п?AÒÄ? ðË?ÿÃ?§aÖ?ÿHÁ?ð ç?‡Á?Èíï?/ÀÁ?Þ0ù?çMÂ?¾ì@‘“Ä?‰ @÷Ç?“3@uÒÉ?,U@{`Ì?1U&@•$Ð?U8-@HƒÒ?K€.@•Ô?ø“,@Â]Ö?s-@ôØ?”<-@â-Ú?®'.@kŠÜ?5@ÙCÞ?¤=9@`ãÞ?º98@÷Þ?ÞÜ6@.¥Ú?n„4@§ÑÙ?zî2@&~×?Δ6@ÜZÕ?Â:@jÑ?“•7@rÎ?õž4@kSÊ?Ë4@TPÆ?™§4@ÏéÂ?ÖÙ4@­ä¿?¬…2@Ïã½?Mã/@U+½??k/@ѽ?{2@7°½?¨ 6@²¼?Æ‹8@ ¬»?‚48@ž¹?N>@—·?œýC@ô?é§E@dJ²?[XD@ g¯?ÌC@¥&Æ?P2þ?ù³Ê?]gð?ŸÈ?œ_×?͆¿?%E¼?‚J½?õê³?œ¿?Œ¦´?K;À?°Žº?ÕcÃ?3Á?ößÁ?¤†Á?§;À?b+É?êÖÀ?×Ö?eÀ?œ>ä?þ?âVì?¢õÀ?÷Äô?Î Â?Fç@y‘Ä?§k @ãÔÈ?º@RË? ±"@¿zÎ?ºª+@ Ò?²_1@¾¬Ó?)42@PZÔ?ñ 0@ŒÖÖ?ú.@°uØ?y.@&kÙ?E.@8Ü?è1@ú…Ý?L£4@ÍîÜ?Ø86@X»Û?r«6@Öã×?³ã2@éÖ?Z2@¨´Ô?Íù3@ŠáÒ?§Ž6@0DÏ?QÑ6@1Ì?_7@ZNÈ?žè4@Ä?Z 5@MÁ?‰à8@Ñ»¾?ã7@}…¼?ªõ4@óv¼?Æì5@–‘¼?wÁ8@І»?sÄ;@¯º?t'?@c¹¹?>)B@²·?éC@îèµ?ÔG@ÔQ³? ÌH@3±?Ç.C@ˆÉ®?9žB@³Ì?¬ý?`ÐÉ?¢â?WÁ?C®È?÷(½?Ï ¹?ào¿?j%¶?pTÀ?wjº?ô¿?z…Â?%«¿?2^Å?¡¡½?OÊ?„æ½?ÀUÔ?ø?¿?¤‰à?8I¾?Nè?c"À? Óò?J©Â?¨¢@üÆ?0@Y±É?+æ@‹¶Ì?áä)@v>Ï?1@• Ò?ø53@ÊwÔ?×l3@ Õ?ªù/@ˆ7×?¡-@wÏ×?Þ 0@%TØ?»x0@pÚ?~V3@#Û?–°4@áZÛ?‘4@CÜØ?C°5@~±Ô?°t3@Ÿ€Ò?\3@¾`Ð?44@¶Î?Ýš3@-ÞË?Ç`5@ÒÉÈ?æ7@ÜÃÅ?EJ8@ËÁ?¢+9@¨L¿?B9@N2½?Xí:@§û»?ÊÆ7@Y#»?àÊ9@/º?‘½=@/¹?oh?@€æ·?#‰>@„à¶?Ç}>@pǵ?ñ<@Êܳ?¬HA@訰?tì@@Ï­?nŸ;@;¬?);@ÎÊ?;iï?XªÃ?+µÖ?M»?ÿ¿?êP¼?N´?Ç"¾?7º? ²¿?&À?'_¼?üIÅ?èA¼?>Ì?»]¼?—Ô?dà¼?+1ß?÷þ?¦ç?öç¿?)Šô?âµÂ?¼,@©^Ç?¬W@ÉÙË?&Ê@àŠÍ?ÑT-@JßÏ?ø3@t´Ò?…Ù5@b«Ô?r³3@@n×?µ0@áF×? ”-@p€×?“ƒ0@¸M×?|2@µ2Ø?xw3@Ô%Ø?Ë5@n ×?Š3@fÕ?¯±1@KþÐ? E4@39Ï?ž¸6@tíÌ?½×4@WË?B1@LpÈ?I 2@÷Ä?¤h6@cÃ?ª;@Ɇ¿?Ä:@dq½?¹;@@»?)0=@æÎ¹?[g<@¶¸?÷>;@,’·?eZ9@Ú¶?n¡9@ü¦µ?‡7@l[´? 7@;ó²?‚6@¸°?KŸ9@pœ­?ðˆ7@ªU«?Ô¼4@Zª?j­4@í§Ã? Þ?•!¼? =Å?´Ú¸?Ÿµ?3¯º?(¼?꘺?”v¿?Éý¹?Ö…Å?lí¹?½ÜÐ?eK»?ZØ?W"½?`—ß?_"À?6?é?Y÷À?HOû?š—Ä?Ô,@0IÈ?þ×@›åË?ãF @™AÎ? Q/@m©Ï?—¸5@™ÌÒ?ö74@WÖÔ?˜â2@{ÞÖ?1².@µ ×?¾-@xÖ?-0@žÖ?HI2@ZóÕ?.&3@Õ?E5@˜ÅÓ?Óà5@Š*Ñ?}‘1@L±Î?%Ü3@zöÊ?,¤7@ÕÝÉ?‘Þ6@QÇ?ò 7@ >Å?=é7@ñQÂ? ;@©À?QA>@èý¼?ÒW=@|V»?Ÿ<@g¹?ko<@µP·?‡:@éÇ´?¸8@d]´?yð3@v³?Í‘4@9ù²?¸æ4@´Ž°?d22@ L°?ªo1@…Ø®?{Þ0@À«?÷ô/@ñÓ©? W.@¨«¨?Ë21@Z§½?d²É?¢¸?A·?ô»µ?±A¸?+Ì·?„ À?U¸?ÏÈ?ÌÒ¸?I(Ó?ࣺ?½yÛ?“¾?wà?ªÀ?íšë?¿ÞÃ?D0ü?œ‹Ç?°¦ @PöÊ?9A@CÌ?Sí @gÚÎ?÷ˆ-@0'Ð?./3@¥Ò?Êó2@L|Ô?2@^ðÔ?tï.@¿bÕ?Ǭ-@ç+Õ?úX/@›Õ?¨’2@„ÁÔ?|ê2@7‚Ò?\ˆ3@ÊŠÐ?ÞQ6@°£Í?^”3@â#Ì?kF6@{‚È?Ë÷:@ÖÅ?~M=@V‰Ä?B5>@: Â?Í>@ GÀ?²ž>@€1¾?‘~>@ç »?É_>@:Z¹?fÆ9@ö?¢`8@É?<µ?AÑÔ?±ó¶?;ÍÛ?¦b»?«üÛ?çÿ¿?3÷è?5ÄÄ?8^ý?iDÈ?K' @¾·Ë?x@ÑüÍ?5Ó@KXÎ?kÝ!@nsÏ?Ä2&@ÀàÐ?ŒB,@GÒ?‹r,@áÒ?«Å,@q7Ó?có,@àðÒ?Xà1@$Ò?†‰0@»fÑ?+‹0@‡6Ñ?·5@rÏ?'ˆ7@ùÌ?±A6@äÉ?¨á8@Ÿ"Å?ÕA@ïÃ?ÑüE@è©À?äüC@ë¾?D®A@¿\¼?J˜=@ÇÙ¹?¸É9@S‘·?úæ5@"¶?>³5@øè²?4@ó±?ýØ3@d1°?k1@ö¯?7!/@öȰ?^+@"ã¯?¡Â*@Þ®?4+@—ï®?‹t,@º¬?¯=,@¾Œ«?«0.@µœª?DŒ-@Ñ©?f/@©?¨/@Oíµ?æÝÔ?mc·?"ïÚ?„s»?Ü<ã?Ýé¾?€3ä?ÇÀ?~ñ?ÉžÅ?:@¶’É?y[@xêÌ?¸5@ÖeÏ?¬@àCÏ?w+"@²Ï?é#@þ´Ð?§¼(@½Ò?³)@|lÑ?y +@e–Ñ?t|,@#Ñ?o51@64Ð?tu2@¥XÏ?[C2@·(Ï?Ü7@‹hÍ?"û9@€ÈÉ?$¼8@MwÅ?®²;@džÁ?¤æ@@›¤¿?Ô%C@Ê ½? ó>@˜h»?lj<@¾A¹?ð«8@˜ä¶?ó“2@ℵ?¿Ö.@&ê³?Ä&0@ç²?iÌ/@_|°?£/@n–¯?nõ/@A¯?1w/@â¯?×'.@࿯?Q,@[ž¯?‡i+@ÿ0¯?t*@‚é¬?k-@Žýª?o}/@Ýoª?Ó@ëSÁ?&2>@ÖŽ¾?½½@@•X¼?Øp=@ÍOº?nÙ7@)ñ·?yI6@Ùv¶?æ¾3@ô´?$!-@Tw´?ë‹)@Aº²?¥ù*@Ö±?š-@ǰ?ý‹-@’¯?è-@Vô®?±Ô/@²·®?_þ.@ä¯?½-@Œù¯?I.@m^®?ˆ+@Á¬?Êê,@„Š«?jF1@5 «?Íý/@i ª?ã.@Àëª?ì*@Â?|õ? ³Æ?j|@ÓÄÈ?’+ @‚¬É?*Û@g™Ë?…@ÎÆÏ?¸*@‘¯Ò?™Î@¥+Ð? @B¨Ï?ï¥@,GÐ?Z !@òÐ?C{'@› Ñ?$@)@o Î?{’*@;3Í?ïÌ,@†ñÌ?°ˆ.@ÍÚÊ?@F3@©ÔÉ?&9@6ŽÆ?56>@IµÂ?–BA@ò×¾?Ñ×?@Æ|¼?ž <@ eº?ìë6@-y¸?–33@f˜µ?ï,0@ˆî³?;.@½"³?Ö&@ð¹²?¤`%@僱?Eê&@ ±?;+@Ú¯?B*@šÒ®?¢¯+@F³®? u0@wP®?û1@kæ®?×C0@„1¯?^1@Pº­?J-@‡v¬?‡é/@ݳ«?×+3@-¹«?¡º0@‘!«?Œ´*@•ª?~o)@ª;Ê?n @ÇÏË?ú@öË?õ›@~Î? @Ä@Ñ?o5@eÓ?M{@î´Ñ?)v@YÐ?%, @dÑ?Ÿä"@áiÐ?›„%@·Ð?¿)@ Î?É<*@˜“Í?•¥,@C¶Ì?^æ.@ÙÅÉ?¢#5@ò¸Ç?8Ö:@“@Ä?‹ª=@æ6À?ÅbA@ܼ?4ñ?@Ǹº?‚;@éW¸?O 4@3w¶?¯;0@{´?†$+@ª±?PK'@kƒ±?…)"@È4±?†é @Öö¯?Ö¾%@0¯?*@DÅ®? ,@¨a®?V-@,Ñ®?ÏÓ0@þÚ®?É÷2@.º®?!13@‰¯?—ý2@Þ‹­?ÊT1@µU¬?é2@h´«?òd5@šÝ«?³–4@ÄØ«?gÒ*@ôh«?öË,@›yÎ?R¿@ÁÎ?°B@‹úÏ?Æ­@$Ò?r@ÎûÒ?OÃ@@Ó?@…˜Ò?|"@!jÑ?Ql%@©Ñ?(Ï&@¸Ï?ƒ5(@†Ï?:Š*@ó'Ï?Ð,@,Ì?& 2@ éÈ?ѹ5@ª Æ?±Š:@PÂ?äg<@´b¾?4->@Ò_»?°R;@òå¹?a8@E·?ô§1@ië´?0Ã,@{‰³?¢Œ'@bõ±?Ý{#@Ìö°?Km @a߯?ÔM@Ó®?‡_#@Zo­?>(@ m­? Ú,@2 ­?@.@¶®?„ø0@:±®?S4@B{®?D¹5@V$®?ªd6@€ ­?Ž45@ÍŽ¬?ü:6@KÕ«?4 7@­R¬?u4@(¬?Gþ.@å«?¯è0@³„Ï?Ío@›¬Ð?ó@U¢Ó?‚Â!@»·Ô?[? @œjÕ?'÷@\ªÔ?ôí#@ÚzÒ?‚è%@øÒ?k(@ •Ñ?«‰+@výÏ?rd0@´Î?‹$1@n\Ê?| 5@3Æ?ºá8@†ñÂ?ì9@_ÿ¾?,ï8@)p¼?}u7@0ß¹?µ7@ãÍ·?C84@~rµ?ƒì.@ î³?})@´¹²?<|%@±?*œ!@Ï¢¯?€Ñ@šæ®?^–@_­?ûÆ@‰I¬? 5$@¤:¬?0m)@cb­?eç-@®?1@!M®?òö1@Õ­? R4@I­?‚–8@EW­?Å9@¨Ã¬?`Å;@¦£¬?‘÷9@/£¬?.o5@—Þ¬?à3@ËV­?™s3@ÌMÑ?ÃG%@`¯Ó?n¡%@¨Ö?µØ%@Ó×?Å6%@;Ø?J(@©ìÔ?1*@×ÏÓ?¢+@5ÁÑ?¦Ì1@@[Ï?18@Ï=Ë?eŸ8@ëÅ?Â5@³lÂ?>7@oÀ?X8@ ý¼?AÞ5@×iº?†j7@`¸?¢4@-†µ?%2@ä´?õ,@…ý²?®ð'@"l²?á%@‚q°?x"@ô­?I?@ÎK­?6@²i¬?kå@Òè«? û"@ýë?|„&@Ø­¬?¨.@›$­?2@D®?Ï;1@ƾ­?¹š1@&­?–ž7@ݬ?LG<@*­?«²A@µU­? ¤=@¿`­?,q7@ø­?.L6@4%®?ž¶7@ç#Ô?».*@gÀÖ?0¤*@,ÈÙ?ˆ‘*@œÙ?Þª+@¤Ö?:²1@OBÓ?m©4@ãøÎ?®ò4@ñÊ?Òp6@@Æ?ød5@VËÂ?²/@‰‚À?`/@Åk¾?µ¿4@lÌ»?Žû5@(D¸?=s4@Üû¶?22@V,´?7.@³?î¾*@ì±? (@ó°?Ä%@G£¯?#@™÷¬?!@ߨª?"@M«?Þd#@Ëê©?#m#@!ìª?žh&@%q«?ú\-@v ¬?YÐ1@M¾¬?eD3@Žg­?ç%1@#k¬?Np8@”‹¬?}ù>@Τ­? ûB@O°­?Fá@@T­­?:@žX­?Âh<@ÆÎ­?p>;@“ÕÕ?¸l/@ûôØ?HÏ0@è,×?)0@ûBÔ?v6@†QÐ?ïÐ5@VØÊ?×1@´ŠÆ?Ò0@Ã?-Ï-@ëQÀ?Çó(@e÷¾?«Á(@B¸»?ÝK.@ä¹?­ð/@½=¶?2ô1@²¨µ?Ng.@Ѳ?Òo-@ÐW±?óÈ(@/›°?òg%@+u¯?Vx%@Õ‘®?T$$@¶Ù¬?Óñ#@,”ª?’š&@ÿqª?‡…&@5â©?Éç&@Ýï©?^b)@*Òª?ÙÓ.@Ä%«?‹—3@C˜«?î4@‡ë«?B{4@"ì«?"0;@!ø«?Õ\B@ð!­?]F@äM­?j?G@6­?b·@@Ñ\­?œ˜@@F‹­?æ>@@³×?d3@ºÈÕ?ô5@ïÑ?xÝ6@d8Î?Y±/@¹È?ô'-@eçÃ?_â)@ æÀ?Š`&@®¹¾?äý"@š»?zA"@Àƹ?ñ%'@ŧ¶?SØ*@½Ü´?>b-@)L´?ð*+@d²?1?+@ùï¯?ðv(@L̯?»%@ðN®?ä|&@Þ™­?Ý•&@px¬?8-&@ …ª?ÞÀ)@Ê6ª?8Õ)@ü©?¸‚,@´©?8¸.@3Ϊ?‹81@Ålª?"A4@§—ª?’L5@x±ª?5¿7@Ýâª?œl>@éw«?íôE@û«?j¡J@!!¬?ßH@¸P¬?4êE@Ši¬?¹ E@)^¬?Ñ÷A@_Ô?‡€7@¶3Ò?w©5@vzÎ?‘/@¸ÜÈ?ŸW)@3ŠÂ?"@F¾?W!@“õ»?Â7 @‚¹?Öê@h…¸?ö @cúµ?Ql&@ø ³?íÌ(@ÂE²?ø5*@W±?Õs)@!6¯?u®)@e+­?+Ö'@t½­?kh(@´¢­?îŒ(@C˜«?’É)@nk«? Þ,@5«?k¹-@¬ª?µ/@Äjª?{ÿ1@,ª?Ÿ4@#Þ©?Šæ2@©Å©?h3@•‘©?öÀ6@^ª?†xA@ï«?ibI@7i«?‰N@:«?¼âI@(’«?&ÅI@¹!«?@I@ã«?4]H@´Ñ?Ò.8@k Î?«Ù3@kÃÉ?ðG+@ãQÂ?kF @Î(½?øÐ@>¹?s@q~·?ûí@íÚ´? @$ɳ?mh"@ÿ„±? ¡&@Œr°?²&'@Í'¯?šÄ)@3 ®?sœ*@†n­?m¥*@ ß«?çj-@­?Cÿ+@Íø«?åÇ-@ /«?6/@¾Ëª?Ñê0@Øâª?t?2@ò“ª?ðë3@Yª?‘Ì4@Ç#©?§L4@šÈ¨?¤×0@™Ì¨?eÜ3@ál©?Ï_?@{•ª?9¥I@Š$«?S6N@s1«?3ªJ@ŒI«?Ç1I@Ò:«?âI@ÄV«?'G@¬nÎ?þ®5@R©É?be1@8Ä?¸%@ž½?=P@,Õ·? «@öCµ?mŒ@$²?¾—@aš°?äQ!@XН?â(@8½®?S=)@ÿA®?K*@9Q­?Ë.@ùM¬?.\.@„>«?ì¥0@§F¬? ?3@ݤ¬?n,2@8h«?Ë3@—Úª?ÿ4@B«?õ4@FЪ?V+7@cª?·‘8@6 ©?Ëx5@C‘§?M\0@ÔY§?…&0@m¨?×9@Ò©?‰’E@e«?`ÚM@Ñ–ª?~L@êVª?ÞŽI@4³ª?#J@î\ª?û‹G@˜ñÇ?ëy3@:Ä?Ûá(@S~½?›(!@5-·?Í@Y¡´?Z@Ôõ°?„ @Ý‚®?ê:"@JÌ­?@å'@dô­?P+@C”­?¼Ö*@¨Ó¬?…0@i>¬?ê3@Úd«?É04@Ú&«?r3@•¬?oœ5@Ï‚¬?bÜ5@Å…«?`07@Q«?Gˆ7@'ª?P8@¯Õ©?å|8@YÙ¨?¤+5@]¸§?9ð2@¸ò¦?¶1@¡È§?ª'5@ ©?Þ÷B@ݪ?;3K@:ª?…ÞK@¬O©?<ÁJ@¾©? ÷E@&ͨ?ZE@Á{Ä?ì‡0@¯ ¿?Ï&@|¸?³@д?¯@t±?‡²@‰ÿ®?+Ó!@†S¬?”$@’¬?x¹(@Tó¬?Ê®+@š’¬?"j.@\¬? 4@˜N«?$H6@‚7«?¤4@ÈÑ«?Á¦6@L¬?ñW9@&S«?ÌJ8@/ðª?ëç8@2<ª?Ä7@«p©? 8@;¨?Ö6@¥–¦?„’6@çA¦?5@¥¦?cº5@J=§?Ø@?@¿Þ¨?pI@‹U©?îmI@é3©?øIG@¶5¨?˜…D@Œ ¨?8BB@ÖIÁ?–].@Émº?,|$@‡»µ?êî @i‚±?†ü@…ü®?ÞÈ"@@ô¬?äŽ"@7Ý«?c$@½.¬?³“)@=ð«?2Ž+@$ ¬?Ó`0@Å«?jô2@—ɪ?b4@ ª?`¸2@ !ª?,25@¤©?vœ6@(s©?/³6@LU©?Ûû5@j³¨?,8@Sͧ?•’7@XǦ?ŸX6@³4¥?H[7@9 ¥?¢œ5@ v¦?žõ:@í¦?ªÃC@ò¨?F2I@²ó§?©£F@øU§? ;B@W§?Ám@@äм?ÜÎ,@ˆ3·?!„$@ý˜²?‚:$@П¯?k…'@HD®?À''@¡›¬?Kj&@µâ«? (@†ûª?°Ü*@T׫?0/@“ª?¥1@|ý©?Þø3@•©?/5@›m©?V2@>O©?øÚ2@?ʨ?Sy3@gX¨?»…6@Ÿˆ¨?HŒ6@*Þ§?„u7@gõ¦?kU5@R)¦?xn4@D«¥?Üþ2@»¡¥?0¨6@)¦?, >@‘æ¦?̈D@T¢§?ôÕE@B§?Æ©B@˧?µA@˜.º?Ñâ+@xu´?Ö(@Ÿ³°?fh)@|u¯?‘ã*@ËÇ­?܉'@ìÕ«?ê$)@ß«?G%*@Dª?”°-@êuª?®/@mª?â1@Hª?9æ6@Àܨ?4@¯¬¨?½T2@.´¨?WÊ3@af¨?6É6@à6¨?g/7@O¨? 6@ §?¦85@zͦ?4"3@ ¦?î2@š@¥?ß5@ºž¥?VÇ:@o˜¦?z>@ôr§?žC@1§?NüB@˜l¦?FNA@ «¶?>/@ ó²?Ê5-@º°?Þû,@Ëk¯?e+@ |¬?Eó,@5£ª?V*@ O©?óN-@‘wª?C5/@¯Mª?í(/@ŸÎ©?ÞÍ3@ææ¨?Ú4@Ø]¨?ï¾3@%V¨?Ýi4@‹Æ¨?ZÊ7@éR¨?;8@u¤¨?XÛ7@`K§?m7@1¢¦?ÿ‡3@À¦?^É4@ÇR¥?(Í6@¥?e:@Á¥?Ýù;@š‚¦?þ€=@ `¦?¼ÈA@ÑN¦?VXC@¶1µ?x4@»u²?çd0@uq°?àX/@-º­?{Z.@:µª?éè,@8ú¨?I,-@ ©?h\0@1fª?©r/@gþ©?ç?3@%M©?Æ×2@Ì/¨?§5@PA§?tÁ5@Îŧ?5:@‰q¨?à8@3N¨?86@¿Ý¦?bµ5@/ ¦?Bš3@%A¥?Âô2@z¤?ßè4@¦ê£?CB7@˜ ¤?²6@t(¤? •7@1ˤ?sM>@ö[¥?"ÂA@v`´?Žr7@X˰?¿ß5@«N®?Øø3@¥~«?%ò/@7è¨?™,@í¨?‰¨0@=š©?/·2@³ã©?6Ò4@¥½©?ø£6@mШ?‡Ð6@Ý:§?³9@bb¦?”8@z§?tc;@"Z§?k¡7@‰ñ¦?{ä4@†¦?ÇÞ2@Gç¤?F1@¾Š£?˜Ê0@Ó£?Þ 2@4<£?eE1@_M¢?«´2@=;@\ש?ØÜ5@ŒI§?rþ2@U§?×f;@Æw¨?â>@¸¨?Ū?@™‘¨?l:A@?Ó?@¿Ÿ¦?‰{<@î¤? ?<@h6¥?zñ7@ì–¤?1/2@ÏŒ£?!7,@ö?¢?WF,@ø?¡?{.@7ø ?Á,@’€¡?Ñ©+@™ ?,@Ð{ ?‘0@û ?o–:@÷ƒ¬?™¬?@ì©?õ7@¿«§?·6@©¦?Œw=@ä+§?zµB@Q§?¢¦D@f®¦?ýE@H!¦?ïF@爥?üB@Ť?š3B@ÛϤ?I_<@ñ7¤?r24@²Á¢?y×.@_¡?'+@ÿo ?•:+@H¡?y9+@ÙŽ ?Ž7,@j¬Ÿ?Ir+@u ?ÀR,@ÀÌŸ?ÜÊ1@fØ©?Â(:@r¨?_,7@l ¦?¹E>@¦?÷?@õô¥?˜cD@Í¥?â–G@oO¥?I@o¤?ÂôG@êÙ¤?¾áG@'¢¤?øøF@j¤?ŽE=@¼5¢?Ñš0@êo ?R²,@ꂟ?¯A)@ ¨ ?ï*@Š ?u+@¨Ÿ?—,@| ?/z(@  ?²e+@Ù˜¨?Ÿ;8@™»¦?µu<@ÚU¥?:?@Õ¥?`BA@æE¤?€ÍD@%Š£?ÈG@üÓ£?|dG@Ò¶£?CUH@êØ£?›K@O³£?©˜C@É¢?ô7@P® ?Ó0/@<™Ÿ?Ãù*@R; ?8F(@G# ?iß+@äŸ?=–,@§ÞŸ?.)@y ?†+@Aî¦?Æ;@ÿJ¥?;@L)¤?F^9@’¯¢?rh@@3×¢?fÖC@¤Ô¡??—A@ ¢?c›C@ÀU¢?È¿G@W`¢? îG@ÃË¡?…‘?@bˆ ?âb6@_Ÿ?ù+.@©—Ÿ?p*@O¶Ÿ?rì,@WŸ?7¨,@-xŸ?Üó)@kÏŸ?Oá(@ì¤?O5:@…¤?s9@û\¡?;}9@®8¡?õ=@¡â ?kh@@d; ?¡šA@8¤ ?ôÁB@Øò ?Æ‘D@h¡?È-D@ÿ­ ?ÉQ@@ŽŸ?°?6@gž?ªŸ/@C¹ž?ý+.@PÍž?òè.@÷( ?ãÝ+@Ž0 ?•Æ)@5º£?ò7@i²¡? f5@Ðw ?á,9@õP ?¶ž@@ Ÿ?ÌŠA@'Ÿ?~i?@«›Ÿ?1 A@#  ?ϯC@äY ?äµE@þ[ ?x»?@)äž?|6@ÖØ?Òì1@Ž&ž? –.@ƒ3Ÿ?òž+@Û!Ÿ?¢*@ü5£?©Ê7@ ¡?†è7@ÊãŸ?ž=@› ?xZA@š'Ÿ?-@?@n‘ž?N~>@óž?¨B@뢟?TnC@T¥Ÿ?-D@xãž?<@@âÎ?·X9@}:ž?Ú1@c(Ÿ?Ã-@óŽž?r.@œ¢?aŒ:@óy ?·ß;@69Ÿ?÷@@óŸ?íî@@[<ž?\ç?@Sî?} B@ærž?–š>@ïž?ºçB@îÒž?SéD@Êö?yÒA@ç!ž?N§;@rŸž?ž}4@'ž?gD4@2ì ?ªì>@•ÆŸ?€oA@BÖž?lßA@|?ûzA@÷>?b…B@!Òœ?M<@X?ú ?@.ž?3WD@^ž?v+C@Qž?„¿B@Ëgž?Æ,A@»ž?pÌ<@ƒÜŸ?œúB@±Vž?ýC@);?M @@Yäœ?ìA@¾uœ?øC<@~Ü›?Áñ;@þל?D¹>@ˆ?D”C@j?€]A@˜?çC@¡Rž?1·E@–;ž?¢ E@œ=??¤?@Ϲœ?#ð=@Ü¥œ?ð²=@QK›?øù<@çך?)´>@ÚÊ›? ¤?@öœ?ÃA@([?î•B@†ž?¿=F@až?”äC@ÕÑœ?_”=@V?<@[É›?»&>@cNš?˜ÿ?@‚§š?D§?@ømœ?qšA@ÌÍœ?Gù?@Pèœ?žÙC@º?–¨@@ôªœ?øÚ;@´Ñ›?Ø <@Šš?…Ø>@}š?RR?@ØŠ›?²7B@Õœ?¸Ù?@ݬ›?Þ¡@@›xœ?Kc@@±›?É<@¹š?-6=@8xš?nÛ?@ƒ|›?Y¦C@"$›?̦@@æçš?ä@@Úzœ?‡ý@@›?Sl>@š?ô=@õõš?_—C@Á ›?œXE@Kðš?ÅQB@orœ?#fB@òÉš?Ú#@@™‰š?Ýn?@3çš?…E@Ýš?mmD@˜Oœ?¹0C@Æ›?Ã÷?@,Žš? 1A@DÒ™?ï B@tG?ÞÜD@ªj›?}(C@$‰š?îÁC@ß”œ?/ûG@,›?•_D@˜aœ?@7I@â´«? @»µ«?®º @° ¬?vµ @­?«?+¤ @í´«?›È@’ª«?e¸@ÇÞ«?"–@è*«?^ò @G*«?¯Ÿ @“K¬?ù@‚¬?k @:Ú­?†@]±?²9@`@±?#¯@"…°?í@{Õ¯?s@Û°?`Š@hê°?Žh@‘`°?Iè@ô°?į@ú†¯?{ß@²®?tq@#[¯?˜ú@ °?Nþ@‡©°?Mš@Õ°?z×@ŒÊ¯?çä@¸Ä®?é,@Ò}®? Î@¨ˆ­?T›@T®?=Å@–­?ÿˆ@s5­?;À @%­?/œ @^}¬?sA$@¡««?Šè'@‘«?º^)@Ö½«?,ê+@ ¬?[Ô-@<õª?1@/@‘ª?zE1@`ëª?àl2@¡ì©?ô¼1@ z©?žY3@òÀ©?Ç&4@¶ú©?—3@T)©?Ä0@Æ£¨?Žª0@0;¨?·‡0@e½§?é×2@9Î¥?ìÏ3@~…¤?d˜2@Ê:¤?õ/@¯b¤?Õ,@`G£?F -@L¢?ë–5@ž¼?wN7@‘êÀ?²7@…&Ç?åü<@TžÌ?šSA@FÕÏ?]£@@!ÊÏ?´A@LÍ?Ó¾>@ªÓÊ?,Y9@0Æ? /@ê‚Á?x~@$œ¾?Óí @c¿?¿'þ?#ÌÀ?þó?5?À?΋ë?àD½?‘Øá?©¹º?HÖÐ?Ž„¼?¸'¿?®¹?`Å?Û{º?NèÌ?¹?0žê?#»?H ÿ?Gô¾? @¾?œÑ@`q»? t@çÒ·?¼S@2î³?Û­@/«±?L@µC¯?¦@¿,¬?9 @öª?Pç@z©?E@@ð¦?v8%@Ù¶¦?­1@êj¦?ƒÇ4@¯[¥?B22@±ª¥?Tþ*@Iø¥?Gê&@I®¦?v±"@--¦?øÙ @+"¥?ç° @f¥?·¿@¤B¥?)¤"@‰Ï¤?šv%@ ¤?,_+@¤?0@W£?ëª/@Š=¢?…i,@W¡?×ÿ(@!H¡?C¾*@Mt¡?"R.@áס?Ѱ-@Ìp¡?¢Æ0@Ü[ ?ô 3@¸¡?xª3@>¡?ì19@R)¡?†Ã9@Uc­?ü”@ó±¬?³S@)¬?J@7%­?Ec@hr­?ÀÎ@ð•­?¿@KƬ?i @è ¬?šE@f«?„" @aF¬?S@_3­?y¨@Êy®?„Ð@Ú¯?Ì8@ëi°?ð@~ï¯?9÷@F©¯?`\@«Û°?:@r•²?·ÿ@Áh²?ƒ@W;²?h0@x°?YÇ@”’°?g‰@»Þ°?®ú@ű?£ê@‚±?š0@J¸±?²@Q°?‘í@wÁ¯?Jæ@xq¯?é@ ¯?úÜ@ÛN¯?âP@vd®?kÖ@f®?ªŽ @G­?¢ª$@“X¬?Uÿ'@V–«?`„)@È«? }-@šb«?e/@í¿«?ì@2@¦O«?9Í1@ØA«?F53@ÿ&ª?¡64@¯j©?Óæ2@(©?^3@_±©?Ðí3@cª©?»“2@7í¨?Õ(2@ #¨?%Ð1@Ä7§?x³2@Ow¥? 2@‘Ƥ?«0@Kp¤?”³,@u£?‰()@B×¢?ã×*@e«¡?;4@f;«? @ú_¬?ŒÁ@XP®?mœ@˜¥¬?[m@¬?8S@›6¬?×;@¾E¬?›¤@Ö…­? @Ë­?Æ@4&­?^“ @¤­? @ä9®?3@Õ.®?ê/@:¤­?ÑÍ@k ¯?£@¢Ô¯?@‹‡°?g@—ı?Ð@K³?ý;@8±?Jt@¾A°?‚q@Nß°?Òw@—À±?µÏ@P¼²?G0@û²?Xb@B±?ŒO@i!°?3d@é°?4“@ÒÚ±?Çe@.N²?ƒ@úA±?dZ@u±?ÿ2@h±?ëŸ@°¿¯?åb@à_¯?e@VR¯?^ù@Õq¯?~a"@Û¯?¬¨&@°:®?ƒd)@õl¬?+@k’«?ÙÚ.@:‚«?Ñ31@É«?Ÿ1@xЫ?ñ­3@V±«?b(3@åЪ?j¼2@ƪ?2@cpª?!0@g¡©?æÆ.@².©?.•,@”©?Ÿ-@ð©?Ãó-@ì§?/(.@¾ü¦?ßZ-@]\¥?Ð=,@Œk£?îþ*@Í@¢??(@â¡?A@)@~ ¡?¡õ-@áz«?‘>ò?Ù«?üEô?;4¬?Éû?”Ûª?8f@ºe«?,@ûô¬?؃@¤¿­?†± @û'®?òP @D#¯?&õ @³·¯?•3@]6®?Ä|@³­?‹ª@Û-®?“„@Ä®?´Y@sþ­?Wâ@´å®?»@A—¯? j@3Q°?Ô,@$Ÿ°?ø±@!ï°?Ìñ@†Ø°?¤@»·°?Ÿ@Ô?²?î@ϲ?t²@ÙY²?ت@D2²?Ó@å±?Þ@ˆ°?y@铯?Ë@ål¯?_@–y¯?‚V"@Uή?¸i&@®?_Ä,@Ä­? Æ1@$­?-À4@5m­?šµ4@/X¬?,2@›Y«?C®0@›ª?õ0@›hª?â51@x{ª?D’/@[Áª?Š-@T6ª?v›*@ ߨ?«k,@°©?*y+@(†¨?úT-@ K§?÷z-@Rú¥?sÕ*@Eê£?Fc)@\¢?+)@ïÁ¡?þÅ)@õ ¡?î,@L²«?ŽÂä?ÜÚ«?âÈê?p£«? Pï?Vž¬?ÄCó?ZN­?s¼ø?:X¯?k@i\°?¼X@Q%°?Ië @ذ?x£ @@±?ŸÄ @w®?Þå@:¢¬?¶Ï@¿ˆ­?@1@!¬­?°Ñ@‹ ­?·N@V­?áç@&®?/£@‡E¯?¯/@‚¯?ž@a°?@0ˆ°?×Ü@)ϱ?àÃ@Éë²?ÿ@)ز?O@æG²?ò@ïα?®@Ê ±?¨¥@~–¯?«f@­Ù®?§ö@:Ï®?«¬ @ ®?“ø$@®?Ý(@ú×­?&.@Æ­?«Ú1@›)­?S2@“§¬?P2@t¬?ÅÃ3@¶'«?ai0@ìî©?¸Ô/@u¥©?“â/@ºª?}|.@fqª?c.,@‰(ª?¢ +@vGª?J-*@Í©?N,@ø5¨?L+@òͦ?f+@o¥?ž³(@Ä£?„í(@}£?e&@{¢?Ãé(@xŒ®?0Èã?ŠO¯?Ôë?–‹¯?W­í?ž²?‰ð?§²?^ÿò?çÿ±?Y@€¿²? %@>Ų?Ë@¾Ý±?„Ø@‡3±?׸@ic¯?×) @M¨­?.v @X]¯? Ì @Ðî®?$š @µé­?R? @§<®?4@¾®?}¶@7Ù¯?¦@zf°?É’@[@°?YÑ@ñG°?® @ÖD±?ë¥@-‘²?§\@4ʳ?©@g‰²?²Ç@Ô²?4E@Pr°?øÔ@É×®?ëÇ@[ƒ®? c @Åx®?Ø:!@|¡­?Å%%@?¦¬?×B(@z$¬?Ž((@ ¯¬?žÁ+@Ç'¬?a¹/@R«?¿`/@Z÷ª?¦/@«?WÔ1@§.ª?è2@Xë©?*.@¸Vª?‘ê,@ eª?÷_-@¶©?/ +@bD©?ïÃ+@‰¨?«$*@fµ¦?ê3&@ G¥?(!%@üΣ?“Q&@¶4£?,w'@¢?@:*@ìR´?_ì?7º´?R8ë?e±?w!ï?þQ³?¹3ï?|³?9Pù?‚ó´?½÷@"Rµ?E@5èµ?º¯@´µ?ó@­ö³?8Ý@0Dz?¹-@à™±?öŽ@Áj±? j@‚±?ð @a¯?è @ë¼®?”; @÷¦¯?ä$ @å:¯?¢E @!°?Î@Âû¯?o @º_°?WI@•ɰ?ôx@H˜²?þ2@\„²?Uø@&÷±?CÊ@˜±?sZ@0°?y @l1¯?;Ñ@†Ï®?Ž!@Ë’­?Û¾"@¼6­?ø:$@ ­?Å#@| ¬?8Þ$@†µ«?ªœ*@ûW«?ØÊ-@›«?$.@«?Ì,.@6šª?UE/@cëª?DÇ/@Ónª?.@Éî©?1-@½ ©?Ï-@¥t¨?¦à/@Ô¨?€,@h:§?ct%@ó¥?ûC%@_K¤?îæ&@cú¢?±’'@ ¢?†¾(@gµ¼?ô?<¸?²Lò?öµ?DBó?Ibµ?%1ô?]Ôµ?¹ùý?–¶?Á¦@s›·?Î_@ô'·?ñÚ@C§¶?²Œ@•e·?X@Bbµ?:0@›É³?ýø@£‡³?¸³@ E³?É¥@kƲ?‰I @}ß³?W\ @E³?J @Wî±? ê@žž±?Ö@æ²?9(@î²? 5@}³?Žt@R²?SV@“±?; @šf±?å @«Ä°?‚°@Êd°?Š@F¸®?¾ @µ7­?£Ï"@܃¬?m "@¹Ë¬?k"@ú¬?÷!#@f#¬?\'@Þð«?R@*@ºá«?ôÈ*@t·¬?ÄÚ+@-%¬?‡ -@/Ъ?p±.@2Lª?„š.@{ª?7/@U¼©?GŸ.@9á¨?™-@çF¨?ô.@⎧?Z +@æ?kð&@,ƒ¤? õ'@»·£?vë(@b ¢?F'@‰‘Â?¥Úþ?Tƽ?³ý?|͸?øùù?¹‡¹?'²ý?£¸?6@çb·?í·@#ø¸?ßÜ@å\·?,ç@éë·?¹ž@ßS¸?5Æ@œ¶?^@ºÅ¶?¢ù@:9¶?Ó @¶z¶?¾O@Møµ?W@u´¶?­ß@ªa¶?a @Ñȶ?om@T“µ?‚@ö¯µ??@wªµ?îs@©¢µ?Þ6@¡ˆ³?J@ˆ±?ý5 @n±?ˆ» @âm±?÷ @oQ°?-‰!@]®?„É!@Á»­?=Ø @ƒ®«?e  @óÅ«?è  @g6¬?âX#@#l¬?9&@ÍH¬?: (@/V¬?^Ç)@Lެ?þü+@)¸«?zD,@Ó‰ª?2…-@¯Ôª?º ,@¸*ª?iý+@Üð¨?€ˆ,@=¢¨?Af+@‡§?)“+@õQ¦? –(@óP¥?;:)@(¤?J%*@]“¢? )@j½Æ?Uþ?¼Ã?l|@ÓŒÀ?FÀý?JȽ?N0@%ü»?ŠS@z¹?1@XS¹?×@FP¸?»@ó¦¹? Ó@¡¹?Æ–@©8¸?„L@{™¸?™“@|ͺ?™é@D¦º?mœ@mƒº?6@Ñ>º?´}@iš¹?å  @4 ¹?j«@Å…¸?y³@Vý¶?ÕÏ@ùy¶?,e@Ä@µ?!ñ@,’²?.ò@LC±?A:@u—±?ÚF@žö°?K! @z\°?då"@~‡®? "@7ɬ?7"@.¬?òó @xë?Q>!@‡¬?­ü"@7¬?y%@°««?Tû(@i–«?ò +@ÇŽ«?ò+@î̪?,@§’ª?ª)@®©?xg(@R©?+»'@Ôï¨?Z?)@§¹¨?«3)@î§?òÀ)@#ߥ?™n)@^¤?‹Ÿ+@û/£?ø«+@BŒÄ?lGã?4˜Å?´ù?ë·Ä?ÌÂü?HÁ?»°@*¥¼?+–@Ãu¼?›@˜`º?cÎ@ëV¹?¶0ÿ?y¹?síû? W¸?,4@‘"¹?ÜŠ@cÖ¹?Ý(@f »?Å@Ѻ?ã<@—é»?5T@ü`»?ÞÎ @kº?p@³º?bM@Ûš¸?êN@ÿ¶?»ü@Pµ?²œ@Ô«µ?º)@[޲?‘¡@ذ°?î§@Û°?“z@]Á¯?e@>¯?4¿@Èå­?ä @kˆ¬?ù @Z«?ž!@ Ϫ?T@!@Ÿ#«?ZÌ"@-0«?˜%@$ «? ®(@iT«?•–*@&«?!$+@ö «?C,@°ª?´†)@³©?Ú'@6=©?i(@6¥©?cX&@Žc¨?Æ '@q>¦?]‚)@âŤ?ì@*@AØ£?Òs-@)øÁ? sÈ?tAÃ?²Ëæ?QÆ?)°ü?ÞìÄ?+i@’×Â?ú¾@êlÁ?1ƒ@W½?Ë‘@Št¹?Ö€@$$¸? ]@¹Ÿ¹?‡@K³º?q2@³ »?E@Q…»?> @žs¼?sç @ix¼?(÷ @G½»?xƒ@îrº?Ã*@3ĸ?†K@cZ¸?æp@tÔ¶?J²@Yö³?4@úp³?Q@+±?\/@ö¥¯?E@瑩?ÀÝ@èF®?Ї@ßç­?‡@˜t­?ÏÁ@cѬ?.[ @º«?K !@ˆ«?ëM!@|îª?r¿!@»—ª?*¦"@]«?ë°&@c«?Ã*@H§ª? j+@Ùª?ºP)@[ ª?k(@8ó¨?öµ)@'1©?ò)@¥ù¨?ÍK(@( ¨?^1(@Ÿ¦?Áé)@ ª¤?›Ó-@o¼?hñ½?WŸÃ?6‰Ö?jŸÅ?Sóé?bÃ?6Á@THÄ?k¿@ïÂ?è@G:À?X@¨p½?Om@š=¼?¯æ @¢T½?ÚŠ @?ð½?£å @X½?þ­ @TW½?o®@½¸½?ëž@ {½?ÆC@-¼?O@ýf»?/f@&?¹?¶@`·?§@°2µ?]²@…³?¢l@W³?IÙ@„m°?!@né­?‡z@Ýü¬?£³@¤]¬?*V@,ä¬?üé@Ô|¬?ò*@u‚¬?q@:d¬?‰k#@—¤«?áÐ#@õª?¨#@¤«?8¹#@ÿÖª?Â%@@nª?´å)@M½ª?=õ)@•Tª?±n'@Ò¨?Ï(@A¨? *@éܨ?A[*@—ϧ?rŸ(@†·¦?¿*@õ•¥?òZ,@ˆ»?š½»?ÐEÂ?lÅ?j‚Á?ˆ‘×?ºLÅ?å§è?RÄ?šÂÿ?XÄ?b“ @GÄÁ?ŒÝ @æÀ?cg@šôÀ?> @Ѹ¿?Êâ @¿?G¨ @*"¿?©Æ@x=¾?8Ü@™"¾?Â@Í˾?ïI@a-½?¸\@¬T»?³Ò@ó÷¹?Ã+@‚̶?È@­Ÿµ?Ž· @:´?Ci @Yþ±?Ø @jú®?K@­?—«@Åo¬?Å@Žù«?åº@PO¬?Ë&@éѬ?Ùõ@µ(¬?x¦@¿F¬?‰\#@¨¬?ãò$@ˆA¬?ã®$@׫?e&@ø"ª?³'@q ª?Õ *@}ª?)@¢©?ØL(@¥ã¨?k)@¯Æ¨?Þ¦(@ I¨?¢&'@p•¦?ôn'@ƒƒ¥?vi(@ƒÿ¼?9¸?‘E½?CU»?SíÁ?`!Ä?´ØÁ?ËÕ?XFÃ?¡Mí?uäÅ?æš@mÄ?, @xŒÃ?q3@Å?°Í@_@Â?Ô@ÁÜÀ?å@þ¿??-@ŠV¿?:¾@ ¬¾?Öj@K‰¾?¸1@‘Ǽ?Y,@Ïáº?áî@É]¸?Ä@9™¶?ËB@~´?‘Ä @­³?+ê @»˜±?Õ» @!Y¯?Ù@'Q®?Cx@­?e@*׬?Ä"@È_­?†Ý@H.¬?Û@…L¬?f@»Å«?¯E$@ïö«?Ó„&@[¬?NŸ(@oU«?Z+@îÜ©?^W+@Þà©?] ,@~©?æ8*@ލ?Þ!)@g‡§?_”'@ܘ§?[%@"ª§?™@%@ß“¦?ô6$@|ÅÀ?óá¼?ÌÄ?ù¸?BƒÄ?e¼?(¿?d:Ç?æ¿?x»Ý?çÜÃ?QØø?•NÅ?¡Á @„õÆ?P'@Ô Ç?ðf@@†Å?ë£@ÂÝÂ?­z@l®À?ow@{¿?S‘@§<Á?&¡@ ¾?&@XY¼?O@ɺ?ú'@8h¹?ÄT@± ¸?Òr@G½¶?‘ @ñø³?Je@‹õ²?8ô@°á²?†N@{ ±?Ëô@‡ °?`p@c®?8Ú@Üu¬?Mø@’s«?‘+@iA«?Ï/@Ë «?NM"@y‰«? (@.¼«?_Y+@!R«?o¥.@fy©?èá,@5J©?%,@û©?­`(@s¨?°¢%@¥L§?3W%@J¦?tR#@ý¦?ºu!@ ‡Á?§òÌ?MnÃ?¸JÆ?dÃ?jÝÁ?nvÀ?½;Æ?v4¿?¨ Õ?jsÀ?Dè?GJÃ?xj@-YÇ?Ïà@’É?º@úˆÈ?µ@÷Å?bã@OÄ?@Ê@}BÁ?EP@oY¿?«/@¨¿?• @‰b¾?LÙ@h´»?ÑË@Ê¿»?P‚@éÓ¹?d?@˜)¸?ø©@þ(¶?¤@Å&µ?hÝ@«ž³?ªv@=º²?™w@F°?OŒ@Q>­?Mú@â9«?û–@«"ª?¥½@ª’¨?3&@ꂨ?Àé @I›©?z;%@#xª?¬È)@Ùç©?¸´-@Í+©? V-@¡2¨? ±*@Jç?+)@°’§?Ÿ$@šs¦?pr!@;ð¥?ãÛ@›·Ã?p‡Õ? [Â?£Ñ?7Â?˜©Ì?´âÄ? ÁÉ?ÌkÁ?*ØÒ?wÁ?™ÂÛ?¹¦Ã?L€ò?ÇxÇ?Ú@ÅUÊ?·@.×È?»7@ózÈ?râ@Á9Æ?`@ÞÄ?²þ@“Ã?#Ÿ@0„Â?ó@K°À?¢@}Q½?C@á•»?­x@¬¹¹? Ú@¹ò¸?‹>@8ž·?.@M¶?BJ@i2µ?Ó@8ù²?©ž@%õ®?x@zj«?ÿÁ@~©?ž@1ô¨?šL@ y¨?~@ñ§?FN@£ê¨?Hù!@"]©? º'@¶ ©?{T,@{¨?>-@å¨?±Ü)@²§?h %@õÿ§?¶g!@Ô¦?σ @¼›Ä?è¹Ù?(ÄÆ?KãÖ?/¼Ä?ë*Ö?ÓÅ??Ó?‡ùÄ?.ãÍ?¬ÉÃ?3Ï?CÅ?úöà?F@Ã?÷?€øÆ?sû@~éÈ?=_ @Û Ê?€À@R{È?§Ô@*!Æ?Ûª@²&Æ? »@¼zÃ?‚¦@çÀ?ÀŠ@«¿¾?’%@öo½?È@C*¼?¿f@™bº?@œ÷¸?2@¸f·?þ@Æ<µ?΄@’ñ?¡õ@Ý$®??Ø@ß«?‚8@Z ª?¬@¶Ô¨?'G@#@§?¯2@¡ó§?nø@ú}©?¨J@Ê ©?iŒ&@¹©?‹P-@ù¶¨?+.@Hg§?ÝÔ'@¶ä¦?I­$@€o§?Œ#@äÂ?Ûùà?Ì.Ä?sùá?ÕÚÆ?ÃBà?÷Ç?NÝ?ŽÄ?ˆ‹Î?ÇAÁ?ò É?h¯À?%›Ô?QêÀ?â?÷žÅ?F!ð?\Å?ö«@LœÆ?Ð@"SÈ?a»@%>Ç?A@<ÉÆ?ý@güÄ?g@J‚Â?¡á@‹À?\@øÃ¿?œM@±/½?tÒ@ϼ?ÒB@·<º?C@qj¸?K@¹<µ?ÄÂ@õm²?3@Ö¯?5à@u¬?^5@Å–ª?,@i8©?ê@ú¨?!ž@Ýy¨?t‰@dy¨?ð@m¨?wî%@~©?‘-@E²¨?z.@Ãs§?:Ý*@y¦? g(@£ZÂ?L í?ŠÊÄ?Å%ê?ÍïÆ?ƒ-è? Æ?#»Ü?Ò~Å?¼Ñ?äøÁ? [Í?ÚàÁ?VÌ?¡§¿?¸YÐ?ØÁ?)·Û?’À?8<é?B«Á?è–@HÅÆ?mK@K3É?;ã@vËÇ?£:@þÛÅ?ã@ÑÀÃ?Ë*@BÌÂ?2´@$Ù¿?#Ÿ@xÕ½?E‚@|,¼?GŠ@.àº?r5@ƒ¸?„Â@ºc´?‘¤@‚;±?(æ@m’®?ª‚@‡’¬?Ha@æô©?_9@g©?2}@Ϩ?@ìB¨?‚t@ì4¨?Ê@Â;¨?«%@É©?£-@Ϩ?A“0@–‘¦?g/@ÿ]Â?Öý?‹Ä?8eó?ÔqÇ?Sï?V‰È?ŽÍè?ÜÈ?ÐØÙ?}Ã?a=Õ?…¹Â?´ÓÍ?”+¾?mêÆ?6î¾?ÿoÊ? »¿?×sÞ?¦ZÂ??¬ö?™×Ç?J @ÛÝÊ?+R@¾™É?MI@¹ºÈ?Õ@åÆ?Ñô@w›Ã?Yü@ö~¿?ú¥@d“¾?”½ @“L½?H@õ^»?K¥@ç¸?´Ž@º«µ?ö@Ã?C@HŒÅ?êõþ?ö,Ç?®#ô?{8Æ?¶ží?©³Ä?Ðjå?2Á?Ø?ס¿?Î?\»?öâÇ?1†½?QZÅ?A›¿?WðÏ?lpÁ?j"ë?™‡Ä?šàÿ?0ÂÈ?¬ @ÑûÌ?Ã@ÊË?Ó@æÎÇ?/s@EðÄ?ƒþ@HæÁ?9µ@88Á?‘4@å¾?•›@ª¼?7E@Ç*»?*@Œ¸?„à@‘³?‡@í#±?á@®?–M@?¬?3/@”œª?0·@[Ô©?ý<@cþ©?Ý@Mi¨?Ë@QÀ§?Äæ)@.©§?fŒ2@EKÄ?üÄ @(/Å?¾@€žÄ?fãù?˜ Â?®nò?júÁ?Ì é?'2¿?D"Ú?Ç?¾?‘ÞÔ?ú„¼?AµÍ?Óè¾?LJÉ?OFÄ?žÍ?CÂ?}]Ü?\Ä?´õ?Ê;È?I@ªÊ?2 @ü Ì?£ã@‚‘Ê?üX@µ•Ç?¹µ@»AÅ?sÚ@HÃ?qf@̳À?±g@Zµ¾?9w@W+½?V@þ·?þû@ܱ´?YU@d ±?¸A@혭?*Ì@B¬?Ýc@vÃ?þÏ @ ìÁ?î@Lο? õ?•ÈÀ?NÂí?‡C¼?»­Þ?ë~¼?òÙ?EûÀ?¼¼Ó?œ¿?°æÒ?TtÂ?ÿ.Ô?íÃ?WÕÚ?£øÄ?A§å?X‹Ç?‹Eö?ÔÌÈ?—Æ@n½Ê?<†@þË?„›@÷(É?8’@îqÆ?.ª@WSÃ?³#@ÜD¿?&2@£Ò¾?É@J(½?Q–@¹º?§ª@ªüµ?Ž)@<ñ°?ø·@‡×¬?í0@I¬?|@暬?Oì@µ¬?}@‡ª?zk@E¨?i @¿ñÄ? p@£cÃ?Àä@ì-À?K$ @†$¾?–Jû?´Ä¿?Ó1ï?4º?àÅâ?¡¹?%qÚ?‰k¾?úïÕ?`¾½?}Þ×?)¢¾?~¾Ò?Ø]Ã?ÚwÓ?ðUÄ?b*Û?ÛáÅ?Èå?ôÅ?®ò?éÑÈ?Ov@-ÅË?Ð@pgË?+@=NÈ?³£ @.àÄ?5s@ Â?ò‰@ý²À?C”@½?»D@§¹?Äã@… ¶?´L@ÌZ²?J°@#[°?ëY@BÊ­?Sž@»®?íV@º1¬?ç{@¨×ª?¨Ä@ qÅ?%ƒ@Ë1Ä?+?@)IÁ?”X@^Q½?Î[@ë»?¬÷?ð¶?uCè?^´?ÉÅÝ?2ð·?ÚÎÕ?jç»?I`Õ? ʾ?/*Ñ?Â0Ã?Î Î?QÄ?ÊÔ?`#Ä?øäÚ?…õÃ?è”â?ÙeÆ?£†ð?GxË?ø3@”Ë?ÅÅ@gâÊ?ä’ @\tÇ?îL@å¢Ä?@×@MÁ?P@¡¾? ^"@d¼?;v#@ Ã·?RÌ@ô‰µ?sº@¡²?@7õ®?ž§@y’­?¸;@ôb¬?>£@†9È?Ü#@‹ñÅ?k6#@лÂ?²Õ@)^¾?+Ø @ݾº?eg@¶ž´?~ïí?°.²?Ypâ? ¢´?®ûÛ?½¹?Ø´Ô?žNº?qÓ?>ö¿?3Í?ÉBÄ?}•Í?&FÂ?i;Ð?+›Ã?ØØ?ÖvÇ?´$ê?ÖÊ?¡ù?©ˆÊ?ø@ñ—Ë?Ž@ûmË?ˆé@ üÇ?ÎY@y-Ã?A[@ÛÂÀ?g›@½?—²@ߥ¸?öë@Lµµ?2š@W)³?¹@(V°?k¸@¬ ®?k­@­ûÊ?¿*@€0È?9*@™÷Ä?è+ @¦5À?¸@ ýº?- @¼3µ?÷óô?UÕ²?€/å?Uoµ?’ß?Aè¶?|„Ø?n¸?Y3Ô?€#»?`ÛÎ?r‹Â?¼ÁÆ?ŠÁ?LÆ?òÃ?ˆê×?YÇÆ?Èç?B×É?úï?Æ¡È?§÷?sêÉ?4@BÊ?‹ì@›LÈ?(„@ñ Å?‹@òFÀ?Òq@Se¾?Š@Gǹ?2@™¶?µÝ@"}³?­³@Pް?”’@÷yÌ?qE/@'NÊ?Ð /@ ÀÇ?î2(@»“Ã?ÅÏ@…4½?»¸@½½¸?÷¹þ?•t¶?LÝæ?WÏ´?ù~ß?Ý´?wÜ?Uæ¶?ÜÓ?Õ}¸?×/Ì?a'¿?^“Â?Â? uÃ?î’Ä?~Ô?sÇ?"Cá?šaÇ?1æ?ëŒÇ?¤ð?IýÊ?ȸý?MKÊ?îÄ@ÍË?½D @TÇ?;Ñ@eÍÂ?°@|é¿?<Û@Ó~º?#)@‘î¶?Z@ ‡µ?MN@rÇÍ?ˆà0@ÅÂË?þ§0@¸+É?šû-@W_Å?îÁ#@î¿?qP@¨šº?àç@?8·?”nî?çÓ³?Õß?”³?6>Ù?’·?ºÑ?kM¸?ÏëÈ?Xú½?9oÂ?R\Á?n´Å?*«Ç?ËrÐ?¶‹Æ?ø¤Ø?±ÕÈ?kß?ÜtÈ?bqê?vùÆ?úlø?¯XÈ?ê@ÉÈ?‡@^ÀÇ?1i@ÉÄ?×¥@à¿?˜@’f»?yò@]¸·?@7vÍ?NG/@úðË?«ù.@PÊ?¼n.@ûüÇ?©Î)@•ìÂ?åp@¦4¼?YE @A ·?‡êø?1m³?e½ß?ŽÁ²?ºÓ?j·?ݱÊ?«º?=sÉ?×z½?¯ˆÌ?ŠÅ? Ó?1RÆ?ÎÕ?:ÕÆ?èiÙ?î È?¡=ß?ËŸÇ?õÄè?óÆ?ÈÕõ?eÈ?®Oý?UÇ?¸õ@*šÆ?H­ @SlÂ?‹6@!ʾ?ø»@ ëº?eq@§SÏ?sµ*@cÌ?í *@h¦Ê?Tß,@nÉ?”Ò-@mùÅ?ð]#@Ëù¾?u@Qq·?ˆÊ@rª´?¡1ä?m\µ?djÕ?¡+º?Ý/Ñ?š·¼?¥.Ô?Ž8Â?§Ö?¤‡È?~Þ?(É?„…ß?cõÆ?ÌâÜ?0EÇ?¹WÛ?èŒÆ?§"á?l¯Ç?^î?KÆ?óZù?=Ä?¹@?Å?OÒ @%Á?t@”•½?ºZ@›~Ñ?x´&@ŠÍ?©ì$@ ÍË?<÷(@êQÊ?Di,@Q#Ç?Xµ'@ùÁ?¸!@W+»?•Z@Ù#·?Ûcê?§¹?µò×?°Ï¼?8×?óMÀ?¡­Ø?fåÅ?“Ù?:Ê?“äÝ?ôÉ?â)Þ?"áÈ?2Ù?ª’Â?Œ×?MÜÅ?IkÚ?¨çÆ?ªæ?ÛkÃ?NÇó?Xñ¿? ,ÿ?ÑÚÀ?J @ Á?¤/@!ÅÔ?kó!@TÕÏ?•ø @GÌ?&©#@Ž—Ê?Å}*@9½È?…A-@(UÄ?#@ë«¿?L@”º?w ý?P¼?R«ä?íó¿? bÝ?¬}Ä?â?Ø­É?xä?âxË?½lß?û›È?‚ Ú?¨TÄ?ååØ?=Ã?V`Õ?R Å?ŽõÚ?FÎÁ?Ÿá?Aݽ?„ð?¦Ð¼?ï.ù?Ť½?‚ð@a×?……'@ìÒ?$?%@ü¸Í?^5$@"ÀÉ?LÇ&@½È?ñ{*@eÖÆ?e?&@pÚÂ?ñŽ@#*Á?;[@äÃ?]î?.£Æ?qÉè?gjÊ? Þë?mÉÊ?÷pç?\4È?{vá?…)Á?íBÝ? ¡¿?’Ä×?PÆ¿?*ŽÐ?“À?Ñ›×?,¾¼?xýÛ?ø¾?Q*æ?ì—»?‚õ?K9Ö?¬r/@íßÑ?•Ø*@‡¿Ì?-D&@Í÷È?dû"@µÇ?›#@±½Æ?t#@XJÅ?s•@÷qÄ?Ë–@—dÅ?Yÿ?ŠÔÉ?Crô?TÜÊ?oï?ˆËÆ?këê?ÍÊÃ?²¦ã?ÅÏ¿?†iÞ?–>½?"Ú?:¾?‡ûÓ?í¢½?$Õ?¿y¼?Ï‘Õ?`°¼?2ÎÚ?w­Õ?æ.@›RÑ?Úñ)@lÌ?ÿÖ"@ïÁÈ?>ï@‹Æ?N°@ð(Æ?sa@ÂÆ?;ñ@=šÆ?¾E@YHÆ?Þý@ÁÈ?²Þ@è‡Æ?.‰ñ?úzÅ?ujè?æªÀ?¯7à?%½?[/Þ??×»?Ú?®J¾?îÑ?é¹?×8É?~¼?|þÈ?OÔ?B­.@®sÐ?¨‹(@nÿË?5S@êTÈ?Œ@‘CÅ?Qy@µºÄ?¾Q@jÅ? "@ÃÅ?«†@úÅ?‘Ï @ENÆ?#G@¹LÅ?Uë?}éÃ?_â?$]Â?ÕÝÝ?¾Î¾?BüÙ?,p¾?ÃÏÔ?胻?WÊ?è\»?ÝlÀ?àRÓ?.@Ž<Ð?ÕÕ&@q^Í?cP@x+É?±Å@›6Æ?@ÒÅ?Û@*Å?ÿÂ@DÝÄ?· @0IÅ?µÛ @ËRÅ?¼²@Ï5Ä?Øì?¦=Å?^ã?ÌŒÃ?YhÞ?ú™À?”¶Û?Dm¾?OæÖ?ªº?€RË?ÅQÒ?ø‹-@ªÁÐ?ô&@¶Ï?qø@ϳÊ?3®@œÜÇ?è@! Æ?&e@6wÄ?}i@kJÄ?n¶@fÄ?E„@5ÀÃ?vØ@4^Ã?S0õ?ŽÃ?zöè?‘Á?yhè?ºx¿?‰¯ã?ãB¼?áÞ?¥öÐ?O*@LÎÐ?ôè#@¦ŒÎ?+ì@<Ì?½@¢­É?è@aÆ?˜ã@O”Ä?àÁ@ýÁÃ?>ž@€Ã?xw @GmÃ?…¨@ˆúÂ?‘ûø?ÞãÁ?ŒKí?áÍ¿?¡½ì?X¿?èšè?¶²Ï?‚É%@­%Ï?:#@6'Ï?N@ÚwÎ?@Œ>Ë?Ùø@­«Ç?zÞ@¬ÂÄ?Ü@‚Ã?Lt@)Ã?«\@âfÂ?ò@S·À?%‰ü?„¿?‹ññ?òÀ?Jâð? Ï?Ÿ &@‰ÆÏ?cÁ$@ÞtÐ?'ø!@R`Ð?Ê'@„ÏÎ?6P@íGÊ?™3@\ÝÆ?z@ÃÄ?Û@WÈÂ?"o@ôÀ?Þ @£J¾?@@ª¾¾?¡²ù?lÄÍ?4£)@ÇgÐ?Ó4'@œúÐ?B&@Ï\Ò?£v#@ñ˜Ð?Ò @DQÍ?:@¥VÊ?¶Û@TÇ?¯¯@ÑÃ?gï@'£¿?ÓÐ@L¾?5×@ÀúÌ?v!)@±+Ð?n#+@›$Ò?0~-@—ÅÓ?ÀÅ-@ª-Ò?+Ý-@)¿Ï?¹£*@Y‹Ì?ë )@0õÇ?k'@A Ä?Q€!@»À?W@ÚýÍ?ä'@?ÄÐ?‘{,@°Ó?!^2@'ßÓ?bß5@¦Ó?€Ü5@®¨Ð?*´4@Y0Í?ÂÝ4@¸0É?u^2@ØÅ?™)@çÞÍ?Äž)@øÐ? q.@OúÑ?ÄÀ2@"Ó?ï;@ߘÒ?¦ý;@”þÏ?rŸ?@ØÌ?ý~>@Ö~É?í]8@³Î?'p+@ËaÏ?÷×/@-§Ð?Ç-5@úYÑ?V¸>@sÑ?Ò A@Y/Ï?8ÌB@1ÔÌ?˜«A@šŒË?ó .@0nÍ?D2@¿¦Ï?!l7@×ïÐ?ïÇ<@¦Ð?ðA@zÎ?XD@¡½É?&S1@&VÍ?Ķ5@ã„Î?×\8@ÛóÎ?Ö=@àBÏ?ÀÔB@ÚƒÈ?'2@„ÅÊ?e7@ÉRÍ?0ø:@™õÎ?x¸>@ÑÅ?æ3@¥:È?mš<@ùEË?!i>@@;Â?,7@6Å?¦1:@0‰¾?D–6@ÒW¢?þæ7@YF¢?éD8@þ¾¡?Åï;@Ñc¡?=>>@€ ?v9;@ÙŸ?ãu8@Ö¬Ÿ?j¨:@œÓŸ?0[B@Æ0Ÿ?ÕàD@îlŸ?»@@ÇVŸ?Á?@ð^ ?%{=@‰ç ?æÐ8@íH¡?`4@õŸ¡?À82@G¢?A2@Z×¢?êñ2@ýA¤?\Q4@çG¥?¼¡3@h:¦?Ÿ~2@`¡§?ÃÖ3@æØ¨?r©6@6ª?9@鯪?¿š:@þª«?×ð8@h[«?–¹8@–«?s÷7@n²«?^7:@Ù“¬?±s<@·­?ÐL=@Ïæ¬?+á<@–|­?]p:@ƒˆ¬?¥:@8¬?y>@‰ú«?•@@s «?Ù@=@²l©?„±=@¨!§?Á?@@Ђ¥?—†9@Ÿ£?Q9@¢?.ã<@(¡?Ý<@£ÿ ?Ëô<@ d ?(T>@´°Ÿ?Ì{@@(Ÿ?‘§D@€tž?VÒM@XÁž?n Q@ØBž?ìT@—ß?²þT@‰Yž?žER@Ù¤ž?ÕþQ@¿à?ÎT@?Ü?hÍU@íSœ?/2T@§Ìœ?ŰN@ÎË ?]c:@¯°Ÿ?L;@9¼Ÿ?|Ã<@†…Ÿ?Â…>@[)Ÿ?•£>@_»ž?j>@“,Ÿ?+Y@@鉟? &A@p>Ÿ?eB@Ý_ž?ÑaC@–?¢TF@øs?ÛÌG@Òm?ʰL@Ï´?èõH@¬¢?)ÓF@Lž?ɉF@C‘ž?+ÜH@;dŸ?ÁƒE@ÀiŸ?A"9@;mž?A¾-@hµž?¡'%@à× ?ª+ @‡\¡?]w@ Ý¡?¹G!@ ;£?Àþ @ÔÛ£?j"@Ѥ?ïƒ"@&¥?µ#@¿V¦?¢_$@,§?r=&@@ñ§?uD(@=˜¨?Ýd+@)©©?ð‹,@»*«?¦á*@‰f¬?þ«*@å4­?„Ù,@‡Å®?LÒ.@j8°?71@ _²?t¨2@m:´?ËT6@’±¶?/¶9@¾¸?ûz>@ñ"º?AßC@Ìõ¹?ÑzE@¬Ñ¹? –C@5â¹?ÀK@@.û¹?ÙÇ;@?sº?µ,7@T;º?«Ì1@L}º?¦1/@º?680@çÀ¹?Rô5@¢æ¸?Ú<@“–·?li=@Nɶ?ÿö:@Wε?h5@c4œ?ñ(Q@²Vœ?±B\@äœ?ï6^@È›?”>W@þÐ?§¤T@ Ò? NN@ÆGž?ëÏJ@°KŸ?¹J@f ?\I@˜½¡?‘ÏK@£?lM@ü”£?ÉN@ÿT¥?L¸P@{Â¥?ÁJ@¦?þ C@ñ<¦?0oB@4§?µtF@¼§?>&I@!‡§?@C@:ù¥?+R8@'—¤?€Â5@…–¤?‘R9@¾o¥?˜?@ªv¦?ýäB@gž¦?ðéA@Ÿç¦?˜ôB@Êô§?-¥A@¬ ©?ÛB@Ù©?ø¸E@E0¬?îM@^á¯?ÕQ@›²?€K@à´?D!F@$¾µ? *I@Ó5¸?‰?@Yòº?7¼9@ïϾ?ü4@&äÀ?V4@èÄ?n6@‰QÄ?8D7@E›Å?l0:@‰€È?5×?@?Ë?ÏÕ<@ƒÍ?9Þ6@VÑ?qg/@n0Ô?@Õ-@!þÖ?qp'@|6Ø?ë!@ó[Õ?´­$@v¼Ï?ë,@sÉÉ?Á0@ZÃ?aÊ/@¶¾?É÷/@Y ¼?â`-@ܹ? *@B ·?þó(@‡®¡?°’8@$b¡?D7@„\¡?þÖ:@(P¡?>@ýýŸ?…;@VqŸ?õT9@Ÿ?;Ç8@ò˜Ÿ?µn>@dÙž?†?@‡rŸ?ªI>@8¹Ÿ?5<@vä ?©=@åæ ?ó47@E°¡?ß\3@ûÀ¡?5o2@+â?ÈÍ/@@è£?3R2@¥?¬4@»¥?ð3@¹e§?51@a©?«¨0@ߪ?U¦4@O`«?[8@ýa¬?(:@:š¬?¾Æ;@Á“¬?5Ä9@ç¬?Éb7@ßx­?‹û7@ϵ­?2”<@Þ­?‰1=@ªÀ­?—=@ì­?Ü]<@Ç!­?¾¦=@Né¬? 7@@Hä«?Å=C@ú–ª?[ûC@÷^©?ô"?@ª"§?Ë<@v5¥?6;<@Œô£?× >@ªá¢?>@l ¢?s3;@s• ?0—=@ZŸ?¯ˆ<@%1Ÿ?A@ÌŸ?12C@“<Ÿ?¯nJ@}ž?¡þN@Ó?oáS@U¼ž?tüQ@š'Ÿ?ÀÞP@/Äž?UT@n·ž?ò¨T@’'?73X@œ?à U@ûº ?JN8@­ï ?07@ ?ã…9@RT¡?"©9@)çŸ?ìâ:@Mž?r¤;@/9Ÿ?Î<@Í*¡?ú->@TÜ ?Ò:@gO¡?1@½—¡?_*3@`]£?¥]1@2¤?ùž4@Ü÷¤?Ø£7@Ax¦?ß»7@¨?q:3@ª?ÛB3@N‹«?ù/4@––¬?tÅ6@nž¬?˜Î<@ÂŬ?§?@9­?«o<@vÏ­?F:@jè­?<;@w®?/<@Å‚®?,ú;@?5®?å8;@ભ?í<@$ß­?]¶=@|ê¬?©“?@—À«?Ý{B@Izª?g×B@UO©?¬?@%.¨?ˆ!<@ga§?ŒÓ;@\ë¥?¶<@¤?a£=@ƒ·¢? =@‚ ?š—>@tìŸ?ά@@€¯Ÿ?GaC@ÒŸ?˜VH@ã)Ÿ?$ÒJ@·£ž?*P@}¬ž? ±T@jMŸ?VV@K+Ÿ?ÜdR@§ˆž?6R@ÖØœ?¤ÒU@»iœ?[@¢. ?‡I5@¬½Ÿ?éÛ3@ýMŸ?ó06@nïŸ?’’8@MpŸ?ð´8@ayŸ?æí:@yž?hg6@1&?Jí8@RDž?üp7@HŸ?ÏŽ8@ÑoŸ?ðt=@=G¡?^[A@èþ ?4=@ê¿ ?8Q4@~Ρ?1@ ä¢?•"3@'%¤?(d4@ðq¥?„ 8@áA§?Ù8@Ú¨?Šó4@È¡ª?mL4@ñ¬«?*Ú2@ø—¬?¶B7@ p­?Q/=@kj®?æå@@_á®?Ò¿A@º`¯?øVB@Ïį?ª-@@2°?ÌÑ=@°?¦ñ<@<%¯? :@ª½®?qÞ:@ÏŠ®?7?@V­?ìEA@øÍ«?7qB@_.«?c@@ˆ©??@wå¨?˜÷>@§Í§?¿;@@7¦?ƵB@Fò¤?IZ@\ž?î-Y@jÞ?BùU@PM? X@„ÕŸ?ð28@@Ÿ?35@³MŸ?sì5@öŸ?°È6@ùŸ?#8@PŸ?0=@ôž?MM:@ ž?ì7@!Êž?¾7@‘¤Ÿ?î‡8@ÇSŸ?e#@@Ü ¡?Ô=B@­‹¡?Î#?@Ì$¡?­5@ʳ¡?Í´1@!Т?’®3@ e¤?º¼4@,¦?q7@!´§?Á•9@d÷©?™D8@ä«?ž%6@IX¬?ö95@ ø¬?ƒ¼:@O ®?ß¡>@ä;¯?pA@Ú°?Œ‚C@Cé°?(íC@U±?3éB@.^±?Ù?@¬s±?wa<@²˜°?Ùh:@ÅH¯?q1=@|ê®?È>@­?žI@@¹¬?ôã?@'Ñ«?k^?@EÚª?k@@iª?È»B@´Ÿ¨?”üF@Œ§?¢H@ã>¥?BfK@½õ£?I1K@ߢ?¹“L@€&¢?gùL@åÖ¡? ¨K@  ?L@^lž?™„L@ψž?‘‹O@­Ÿ?{R@@Ÿ?ÐdW@Üé?«ðX@Ð{?Ï@W@k:Ÿ?€á9@4cŸ?'È8@E8Ÿ?Õ#:@Ó¿Ÿ?Ð’:@”“Ÿ?Ì:@EFŸ?m>@³Cž?DR>@¦³ž?*;@äRŸ?d;@ƒ> ?ë(=@?ÒŸ?ÑŒA@©¡?û}C@߬¡?iŸ<@!È¡?LA5@z·¡?‘4@‡…¢?1Š5@V¤?rŽ5@F‹¦?‚7@× ¨?¤æ5@ã‘©?ô!5@j«?§3@2 ¬?-E3@­A­?öe5@§Ô­?HA9@ ¯?2ª>@AK±?7Â@@¸n²?²ÜD@2æ²?&¸C@­„³?ÀA@ð¿²?oÖ@@§Ñ±?rA@@+¤°?yw<@¸¯?¢±;@Hë­?CÎ<@«­?ÝÅ;@ *­?’X?@;g¬?PD@"¸ª?Ú¦I@õШ?ßÁL@~s§?¦ŸO@º&¦? ðO@Lʤ?˜zQ@Ób£?Ï6O@ç¢?+N@Õ7¡? ¿N@­ ?9L@¦šž?:I@®Õ?#G@n4ž?¡\H@Þ‹ž?žVN@©ž?´ÑO@ºZŸ?â:@’‰Ÿ?¯Ý;@Å@Ÿ?X‹=@ZVŸ?‹^@@€íŸ?½?@Öøž?ó=@@x:ž?A ?@ƒµž?\Å9@YlŸ?£Š?@ ?Š?@ˆ  ?Œ7D@£Û ?Ò-E@æ÷¡?àH@@º¢?+5@_¥¡?55@Ô†¢?>k5@º¤?¡ð6@n»¦? Ë8@z¨?r¤5@Ù®ª?ya4@½{«?ƒ×2@:­?6â1@˜­?É2@ge®?I>4@ò®?f:@‡×±?.?@8ù²?/C@Lâ³?ïD@Þ>´?Í*G@Ée³?jG@À‰²?¢ÇB@§ï°?c8?@o¿¯?f4<@®?3M9@ }®?(¦<@âÁ¬?³ÖB@²‡«?ÑßI@Ū?PîL@gÁ©?'°Q@Y:¨?š@S@ã §?oîR@±õ¥?ø²P@`i¤?,N@çÊ¢?­(N@»¢?SL@yž ?ú¢H@ÃhŸ?XG@/ò?¦F@«Û?”]E@*y?þH@xŸ?ãk=@°SŸ?¤ß=@K©Ÿ?Î">@ª< ? C@§ ? nA@üŸ?°Ù@@´Žž?ìt>@âûž?%ú;@‡RŸ?tß>@¼Ÿ?-@@§  ?-×C@Éõ ?ž¿F@ÿ¢?ÖB@Ÿ¢?ƒ<@»Í¢?€€9@ô£?x¯6@µ°¤?û³5@4X¦?9@Ѿ§?/Þ7@1tª?Ä¥5@0׫?ó5@qÞ­?«|3@þ®?û/@[W®?M52@å=¯?/À3@‰0±?"49@ñDz?ÃÙ<@v´?ûmC@ÂA´?UI@{b´?ç`I@W³?…ÃG@þ²±?ñþD@¹Ö¯?B@@¯×®?ê?@¿½­?T>A@M—¬?Ã1G@o\¬? L@ «?SR@-bª?ÇQ@>©¨?¾S@Ûä§?•S@Ÿò¥?ZÃP@(q¤?±N@¯¤?ÝH@Ï!£?"žI@ K¡?ƒËJ@ªÜŸ?EáD@›ž?$ôB@ÅŒž?œrG@KŸ?+ A@õRŸ?Ñ÷@@! ?%rA@Ž ?©žC@&·Ÿ?öÛB@¹Éž?ì>C@*Ÿž?×iA@'iž?E{=@'ïž?Ë”<@¾”ž?óÛ?@`Ÿ?-/A@ G ?Y4E@Òg¢?›–F@”΢? >@­?»2@ǘ­?,Á0@g&®?1@OO¯?öJ3@Ù±?äŽ5@¥²?ºš9@¹=³?Ö,@@³´?2æG@ëg´?0+M@¾³?cBO@²?‹K@vî¯?UxI@„®?v I@©°­?©7J@º­?¥ØJ@L­?³³L@Ô¬?|±J@ILª?ž;M@Ì ©?ÑN@ ˆ§?7\M@gi¦?X’I@¢ÿ¤?Ä E@š¤?C`F@€g£?޲G@о¡?Š9E@¾å ?¯~C@[ ?£^G@Ûãž?éHA@Ρž?Œ@@õ[Ÿ?¶³A@ȸŸ?ÎËD@VEŸ?\ÍG@ŸÃž?"“D@-Œ?™&E@z?mó?@P{ž?ë*@@àÛž? :C@“ûž?S}E@x:Ÿ?¯½C@«Æ ?àºE@^z¢?û$@@£h¢?[_9@¢B£?¼$6@ ¥?$a3@º^§?ãO7@+¨?f7@(wª?r°4@Æ®«?à\4@Ð ­?N3@±:­?S 2@iÌ­?ë‰5@µw¯?$Ú4@-¬±?;¶4@4б?ç7@ZS²?Šô<@»3³?k§B@¨³?nàI@³³?¸ P@™h±?ªøQ@°ô¯?ÎÍQ@Íš¯?dP@Ó®?œN@`­?¥°L@}’¬?UG@¯«?ä§D@Pª?öGD@§Š¨?²G@±:§?TlF@h°¥?èD@.˜¥?~E@Í¥?H@ÚÙ£?½½G@ºå¡?ìºE@·¡?8ÞF@ÊPž?urB@[ež?ŽA@XŸ?”OC@ï`Ÿ?AE@bŸ?3OK@âž?ÐRH@}ª?þ)G@NZ?éŽD@ò¿?(©C@ÜÖž?PH@Rêž?'GF@jäž?E@,Q ?÷C@‘Ö¡?@Q@@ä¾¢?¤³;@Fó£?pf5@ô¥?âÆ2@üÁ¦?|g6@ æ¨? Û8@ˆ»ª? N2@ˆº«?s4@GH­?Òõ5@x^®?Û7@ºV®?@]9@\Ÿ°?“a8@d±?¤ô7@ɱ?z¯6@¾#±?3i7@c…±?Æü<@m±?EŸE@±Ã±?ŸO@U±?lmU@HÞ°?ðÔU@h¯?U@èC®?ÒQ@Ñ2­?îJ@…¬?ïA@o®ª?"O?@Ë£©?}>@•÷§?3C@!Φ?>ND@Q¦?ƒDE@[Ì¥?4@Ã$£?zF>@‚Ƥ?|3>@‰·¥?€ß<@=ï¦?î>9@xñ¨?Í9@î«?è‡;@‘¬?mÀ<@X…­?«‘?@­®?¶A@ž¯?Î,@@2õ¯?gs:@ZP®?Ãþ<@þ®?Ã>@2®?«‹>@³Ÿ®?ôØ;@(b®?š=@¤®?£_A@‡Ž®?à%I@Ù5®?ñ¶Q@Ý®?eV@X ®? !V@^­?YQ@‘t«?éCJ@…Sª?ëÍE@Éã¨?ë{H@j»§?„ˆG@H̦?ü3E@zb¦?Ã3F@ ;¦?çPL@ÐÜ?ÀÎG@Só?1(J@kÆ?ÑK@õñ?ĸM@\v?ê^N@¾o?ÐöN@8Á?èQ@Îfž?š|S@¥Úž?^ÊU@=Ÿ?^îQ@KŸ?r€M@h:Ÿ?–²M@¢' ?ÒPF@±c¡?DëA@ ,£?„@A@Ƥ?ôR@@«¦?™@@yާ?œ:<@,´©?Ä€:@Ä"«?Ä;@´À¬?!>@Þ¬?æ_A@˜V®?4•C@-,¯?+(@@SÕ®?V =@Ä:­?\ˆ=@9·­?/r@@„à­?1 B@kV­?#PB@j½­?*·?@Òµ­? xB@ì4­?XšJ@KK­?39P@Þ­?GèT@Y­?°T@Ƭ?0ÈO@+÷ª?žÙL@,©?¿†N@W¨?ïBL@›§?vXD@9ì¦?‡B@õG¦?jG@?É?h°E@¾ž?Ý|F@uæ?¾TG@­ž?ÙßJ@H¼?XK@}‹?R K@Ï4ž?dùN@¢ž?çiN@uŸ?õ®N@zŸ?O@f ?°>K@[H ?±’J@—ñ ?=K@É¡?ÑåI@ 7¤?¡ªH@ù¥?å F@ò¥?IE@§?„ @@:©?Ã=@ 5«?03>@¿ ¬?u»A@Â'¬?0˜C@iP­?ÙpA@³?®?ïæ>@¹­?K\:@Én­?‰<@‹ì¬?ÈD@l­?÷'H@T­?5ÆF@l­?ôÌG@´#¬?=—F@†Z¬?ÿ~H@+¬?xK@炬?hŠO@Ë=¬?ä«N@(g«?!QO@ÎÀ©?É:Q@n´¨?ÖBP@Þȧ?>–J@Ò2§?ýC@}<§?7FC@ß)ž?ËE@?ž?fF@-ž?š¡H@Ïë?ÄvL@Ìý?„bL@v[ž?jÁI@!œž?«ÿM@ºÑž?¶‹K@MŸ?»›L@tˆ ?J@"¡?„H@ [¡?¨LG@/¢?ƒ;J@Ãf£? @0­?wn<@Ï2­?TY:@ÖĬ?zåA@‡y¬?åÏH@¶×¬?Å#L@b¬?1N@µ«?x°L@…¾«?GIF@üO«?XYF@}æª?H”E@™Éª?(MC@xÁª?ÍìF@›'ª?ÖM@uO©?’lP@}ý¨?ÜÀN@¼Ú¨?6J@¾Ï§?ÍYE@›-Ÿ?z.G@({Ÿ?™F@ænŸ?‡*H@*MŸ?ÏŠM@]òž?º,N@èŸ?)êM@쮟?ûP@ÜŸ?V)M@¹" ?'ÞL@Ü¡?CËI@ë¢?–D@¹£?h[G@GT¤?ÁÑF@“ؤ?‘ J@¿I¥?©ùM@Ú¥?u’M@ïG¦?ÓL@Oå§?~H@³¦©?™7G@—«?4—A@Ô‡«?ú§>@Å«?O°?@x;¬?2ù:@ b¬?˜;@¨¶¬?‘a<@Ò¬?è!F@Ñÿ«?‰˜I@U¬?YÔL@Ĭ?îMM@SS«? TK@÷šª?QnG@Ydª?9MA@ÈJª?§»9@K©?Ý™:@'¬©?7aA@ÇM©?+„H@–F©?åáL@.½©?• L@y¨?Þ“I@ÀŸ?_C@0 ?µB@…¡?QJC@þ ¡?XI@Áv ?˜¯E@Π?Z>J@ðR ?ØÜH@>(¡?ã„G@‰¡?XD@â¢?ŒúF@`Ý£?bH@9¿¤?—RE@õ¥?M~F@f¦?±]G@d¦?8óF@|Ϧ?ž‘K@Ù§?õ”N@UH¨?UÓL@1ò©?¹ÌG@ôª?^.A@N›«?Ã=@l«?bw;@ |¬?‰B:@)#¬?|;@¦¥¬?y•A@¥Ó«?6G@J«?Œ7K@w;¬?þEL@ßÝ«?åÅI@R-ª?ѳJ@0ª?Þ©E@]d©?Æw<@˜á¨?.k6@jz¨?7@à¨?Ï‚<@Äȧ?eB@K©?”E@.©?â™H@ ÷Ÿ?’ª6@Þ ?žï8@§2¡?È;@s-¡?Ô*<@J,¡?õo;@äÉ ?½@?@/Ë ?Æ@@A©¡?tM?@/£?nA=@À¼¤?ª»=@W‰¤?vÊB@w3¦?-UD@®§?/ßD@¹H§?4gE@7§?̃H@E2§?0°J@r0¨?m~K@Þ©?RÞM@ZA©?ü5K@U]ª?ö’@@xª?™¤>@|²ª?"¥>@éX«?¿ ;@6­?Ç:@d¬?¢¦C@8\«?B—I@¯Í«?gO@°K¬?M@[Öª?,M@“|©?J@¶v©?6‚G@‹©?ó?@ÝZ¨? ”7@å§?Âc7@Ç §?Øg5@I§?¤ :@ޏ§?*û=@"±Ÿ?­,@'” ?÷s1@ëì ?/•3@•¥ ?ÂU0@ž¡?{0@¬¶ ?^22@OU ?Ì2@Sö ?$m5@Ó¢?K6@D‹¤?…³8@˜v¥?Èl?@¶§?@@ó¨?ž¥C@ÿ–§? ÍD@‚ƒ§?5ÀF@{¨?ÈJ@âÙ¨?.ÑK@É`©?qL@Ã"©?ORL@OÒ©?þ›F@0ò©?w@@ò•ª?Ø<@´c«?8ø;@íô¬?©;@iB¬?SUD@P¬?þvI@ç;¬?eiM@e¬?âL@]þ©?dóO@Ä©?òQ@šQ©?•¡J@ðݨ?X?@M¨?˜8@Af§?Š4@åW§?í¯3@îW¦?ž4@ì< ?¥á&@Ñc ?ã—)@Ò¡?9o-@®¡?¯,@èá?Du+@Ä¢?Âù,@–¡?V?+@_ñ ?.@‚p¢?Ñ1@âe¤?­Â4@çz¥?ç9@í)¨?Q5;@¬©?›B@&t¨?+MF@óH¨?ϧH@æb¨?+sI@¿"©?PIK@îá©?{¡K@ ª?õL@‡ª?_ÎD@Î9ª?©Y@@\<ª?½>@¥p«?‡3:@#L­?¥M;@ÿà¬?/A@é$¬?Z;I@ì¬?TËG@ ¾ª?wåM@Úé?™ÀQ@g{©?… P@?U©?ÿF@ x¨?(?@¢E§?ód:@öS¦?¸7@©¥?ê"5@îç¡?­ž#@©»¡?Á$@ù¢¢?L{(@ÛÝ£?Øï'@.Ê£? (@iŠ£?‚'@˜Z£?:‡'@㇣?Y+@U¤?¤'-@­¾¤? ˜1@ì¥?pÕ3@t¯§?šª:@}ª?¾A@Õ©?E@é?ÅÏJ@¸q©?ÄVJ@ø%ª?ð_G@©³ª?ÎF@µÚª?òùE@o²ª?œD@?Õª?ù@GÍ«?A8@+Ó¬?%¯:@¼q¬?ÕœA@Íð«?â E@£M«?©IF@¥ ª?E„L@ä¨?dWO@¶ê¨?#µI@ú¯¨?”ÄB@a‚§?›¿>@±.¦?.v=@×¥?,W<@þ÷¢?Ón"@Û £?Ù¿#@öפ?RÜ$@Í¥?z™%@ì$¥?‰'@c‡¤?Ú'@Ÿç¤?ÑÇ%@­Ö¥?|*(@9P¦?9*@ðA¦?TJ.@Å’¦?Cd3@~0¨?wÔ7@òsª?·´A@ð«?4CF@ËZª?qÚH@àfª?~mI@"p«?}èD@!¹«?NÉC@èJ«?+B@#O«?ouD@¸«?8¡E@%¬?Œ@@Gõ«?Ÿ®;@—¬?ÌÒ=@Ò«?îA@(&«?”A@n¾©?z"H@t©?À6M@%³¨?fÆJ@FШ?žF@kï§?4ïB@ò±¦?èA@·¦?äd?@UÖ£?¤!@{$¥?½Ý!@x¿¦?k¸!@ö§?6H#@#ݦ?¨­%@²,¦?D÷&@[`¦?=û$@JW§?[H(@Ÿß§?=)@.¨?S‡.@ýã§?‹é0@­ ©?kÔ7@} «?4Ú;@‘«?†JE@¬«?H@™Z«?xTH@WÛ¬?–E@Ïݬ?µ#F@çó¬?¬AB@6­?AýC@ßÁ¬?ÙF@4¼¬?ðjD@°­?ÁBA@ (­?ÈSA@à-¬?ë9=@0¹ª?W”=@궨?ë‹E@óè?m'G@M¨?ƒÓG@N»§?¦E@¡r¦?UÁE@ ¦?k×C@6œ¤?“!@ˆÐ¥?Ïx @å/§?6¥!@’ ¨?0$@é¨?¡a%@G¨?Bá'@L¨? &@œ"©?þ8)@»ƒ©?S÷)@¸Y©?)`.@øë¨?«2@nŽª?Ú<5@J¬?I‚:@fH¬?¢6@@‘l¬?R-E@B0­?»H@´e®?‚„G@W®?[zG@íé®??ûA@2=®?îÆC@ô­? ÿD@¶ç­?áRF@Ì^­?®bG@t‹­?¥ÄD@cá¬?q)?@‘ª?Í’>@ô•¨?_D@W¨?D±E@©d§? E@œ¦?øD@ôn¦?µ÷C@¥?ÆÇ"@0¦?àª!@°¨?š·!@»R©?Fõ"@ëa©?ø6%@„ª?ú(@%—ª?¥'@«Üª?®)@7ƪ?¥p+@øª?(.@ª?‰}0@—Ù«?–f2@­?[8@…w­?ÌJ<@Ó­?x*C@ZÑ®?/ûE@J„¯?ÑF@b’¯?u½G@ˆ&°?}}D@jé¯?8±D@^·¯?~B@d¯?Ò¹E@͹®?8I@6¯?À(E@†á¬?WzD@fžª?¹ŒA@û¡©?ÞE@©?`•C@°Ó§?¸C@ §?ăC@xÖ¥?À#@d`§?Ù#@|©?‘¯"@‡û©?¹¯#@³ª?ÍŒ&@wð«?«A)@¤Ã¬?<(@C¬?7_(@¬?)*@ø¬?;•,@ÐŒ¬?„"1@B¸­?Ñ»1@hË®?þ84@1œ¯?h98@üœ¯?56>@è"°?rû>@ ±?—OD@•5±?[kG@ýx±?3ÿG@ ¯°?!E@K‚±?¢ì@@а?k¯D@×Ô¯?«:I@‹°?a€G@­?¹E@Yú«?æED@I¬©?ÝWG@¬ù¨? E@$d¨?ÉŠD@Ø£¦?~i$@ü{¨? (%@Œ€ª?Ñz#@¸«?Õ#@¨¦¬?ûÏ&@Öl­?x(@e®?€î'@ÿ®?~P)@çì­?ê(@È·®?Õ+@#¯?Ýt.@kø¯?~0@I²? ì.@Ô²²?ûÅ2@§÷±?6@+à°?5¯;@–æ°?qVB@ð¾±?äyH@ «±?ë¯I@ޱ?¸ÊH@Þ°?‘›C@<à°?˜D@[{°?ö!I@è6¯?bI@©È­?$J@¿a¬?J@á«?kH@Šª?x¶E@N/¨?„«&@{ª?&D%@l¾«?'#@­=­?;+$@—®?Îæ&@¯?'@¦¯?%<%@¤¯?ÚÞ(@é’¯?¡´(@!°?9w)@9·°?ó‹*@jF²?OJ*@öÛ´?R)@ãF´?²…,@Ùˆ²?1@«-±?ãY7@ø]°?žø>@ @±?ÃdF@´(±?«kK@s>°? tM@‘°?ø£G@³$°?›†D@ ±°?9H@š×¯?jžK@‹’®?fM@O­?iÈN@¿ «?Å™K@@U©?ž '@"ö«?wü&@¯ü­?gÍ$@ø.¯?Žv$@'g°?mø&@;V°? |%@.x±?â$@,t±?j´%@÷ç±?ž&%@K²?&E&@m³?Q )@yì³?®Ù)@)™µ?'@¾‘´?¬Ö,@(}³?;/@Ð ²?«4@Ú‘°?u<@Cа?–×D@Ú,°?¢`K@9ޝ?ÒQ@$é¯? M@Éf°?}F@ï_±?3 I@–°?LP@}ð¯?£BP@dˆ®?†×S@åaª?¾ô(@Ë\­?#@(@½¨®?­û&@½±?¢.%@»Ž±?}<)@Dı?€ó$@‹J³?ÈÀ#@_’³?ì2$@¢%´?ž–#@gÀ³?Ê&@}å³?mp(@0ä´?‹)@Íuµ?HG(@Šl´?vÍ,@ã ´?d./@¯£²? 4@Ü6±?t¤;@ÞŠ°?Ý}C@؈¯?­.L@¯?cbQ@ˆc¯?@¯M@›ð°?JG@é²?l J@@²?§âJ@F²?S£O@:8«?Ùt*@7ñ­?•)@ i°?«Ò(@±'²?5Š(@Tɲ?Ðq(@‹*³?Z†%@®Ê´?¬ý"@g,µ?©%@9ºµ?E%@Ûmµ?¤y(@}µ?zÆ)@2¶?ë&+@ƒöµ?Ñ-@Ñ ¶?òÞ.@¢k´?X0@¤³?rÃ4@ ç²?‘•;@ ±?UC@™B¯?†I@ŠÀ¯?•OL@‡½¯?Ó×L@ó±?ŸK@®²?Ä?I@:³?ˆI@^¬? Z*@ί®?ý*@ ±?©+@Aý²?Ê¢*@`£´?ß&'@-}µ?TN%@vL¶?¢ù"@Fc¶?*¡%@|·?èN&@‚­¶?[d(@H·?w*@¡G¶?ûò,@tâ¶?kà3@ \·?À5@%)¶? {5@¥ ´?‘6@2[´?4Ë9@Nܲ?^a@@ ²?«fD@á²?­H@º ²?`ZJ@ ñ²?[L@…J³?ïªJ@²g­?x*@Ky¯? +@e°±?gÆ-@/ܳ?B)@¼µ?£%@­Ã¶?]"@5¸?Gƒ"@¹Ç·?$@‚¨¸?^ã%@¬­¸?3H(@ÓU¸?*@Ú%¸?„¢0@í¸?&8@íC¹?_:@<å·?¡ï7@Êèµ?:@áµ?¥]:@ǵ?"J<@a ¶?˜ =@ÚŽ´?F²>@ê´?ûîA@Oãµ?vD@8„®?ZŒ*@˜ì¯?[D,@ F²?iô.@©†´?‹'@Xùµ?< #@ ¸?ƒ–!@—Ö¸?‘9"@SN¹?Y$#@O’º?¾Í"@Å»? ˜(@©Ó»?| -@Îìº?‰ 3@òÈ»?½9@)»?ÙÃ:@"_¸?å§;@9Ü·?æá;@M ¸?Þ+=@8D¸?™:@x·?ßÎ9@@Ô¶?ï˜9@H°·?øé<@m¯?k}-@Þ±?„0-@Žq³?„á,@¬%¶?Qû$@MQ·?ïÒ @õ¸?•© @ö¹?.J!@ÿ(»?°â @ÐZ¼?Ü^"@†3½?¤…(@õÔ¾?Âz0@?Þ½?Y¥5@H·¾?j€6@‹ð¼?kV7@ljº?Ì9@?1º?EA9@[^º?Î<@ƒéº?-:@f9»?Lå7@¦îº?ξ7@ñy°?C0@:ð²?x/@ç@µ?ÄH+@M·?32#@ÿ,¹?ÒÆ@(|º?ìm @ ¼?Ó@5W½?Æ\@N¾?š #@´#À?ê2*@#TÁ?lÁ1@OÁ?à4@ê™À?º46@À?ÞÕ5@ò¾?ð±8@"¼? f9@ý%¾?Pß7@•LÀ?ã¿6@¿?Qj7@§ˆ²?&é1@]™´?Äx/@½Þ¶?¤)@µ>¹?ŠÖ"@MÙº?ïA @ž¼?0°@²^¾?Þã@Ö¿?ï‘ @×RÁ?÷G%@æçÁ?à -@;Ã?³^1@ÈãÁ?5@ÝšÁ?Ť5@…Â?ËÃ5@Þ•Á?©Ç5@3À?86@eBÂ?t…6@üZÃ?ˆ7@„E´?Ǽ3@û¶?j0@ER¸?ìW*@Ž»º?Üo%@©¼?ê:!@¥"¾?ö@Í2¿?ÍÖ@®Á?µ#$@ðÇÃ?|Ž&@íïÃ?NZ-@P Ã?£Ù/@H—Â?‘F5@rÞÂ?Ýs7@©*Ä?ˆ¨4@#íÃ?y%6@>Â?öñ;@W¹Ä?‚ 8@n¶?L]7@M“·?dß4@l—¹?é€/@9»?ñˆ)@ðž½?m"@w®¿?4¹@žýÀ?ˆÖ"@êÃ?ÄG&@«KÅ?î@)@|@Ä?=Þ-@”Â?Eå1@´¨Ã?r18@ãÄ?Úm:@:ÞÄ?Ï9@“Ä?:9@g•Ã?‘(9@d¸?Ê=@TI¹? >;@{ÿº?ò3@м?3c*@⃾?Þú @S"Á?³@«&Ä?“X$@Ÿ’Å?v£(@@÷v¼?"e6@§¾?Á)@ë®À?™c@åÄ?~E@îèÅ?)Ã%@\ÇÆ?Ò7.@kÆ?8A@²pÈ? ¸E@fþÈ?uB@,æÈ?`Y?@'üº?•tE@’5¼?Ë@@êÁ½?­j6@Yš¿?Lï&@tÂ?F @'ÙÅ?DÆ@*¥Ç?BÈ*@|È?ÊŒ3@ý)É? ±8@›sÊ?Ûh@@–Ê?Ü•D@ºË?%·C@÷Ë?‚Ë@@lv»?³bF@C+½?ò‹A@À(¿?¦‚3@ò)Á?î‡$@ZÄ?Dœ@- Ç?ð€ @¨É?õØ/@#Ê?ÌV9@ŒUË?« =@¾Ì?Y_>@†sÌ?>@d³Ì?]8@ º»?mÕC@ì½?k?@¼Ü¿?ï3@WšÁ?À!%@¼Ä?@cNÈ?Ú¬#@¼:Ê?u2@Á—Ë?”Ä8@ß’Í?“‚9@MOÏ?§k4@«Ð?á4@Š“¼?5B@Îm¾?}Ç>@ëè¿?tœ4@D8Â?6o'@5 Æ?+ü@Ó„È?ÛQ%@²êÊ?¢f.@GçÌ?C1@ãÏ?] 1@^¢Ò?Þ.@‚Ÿ¼?z>@[S¾?›A<@ð4À?•$3@˜;Ã?¯d(@„3Æ?W$@7ÑÈ?_ð%@±îÊ?Y¹*@BiÏ?/à*@N0Ó?<])@$‰¼?¥ð7@~¾?Ê,5@„5À?vu-@9Ä?;”'@;Ç?1&@Ç"Ê?„³&@Z}Î?k'@:@Ô?Óa%@Ï0¼?[Ù3@&¹½?|.@Úü¿?J(@”Ã?å¨'@€çÇ?œë(@‡.Ë?t!*@²3Ñ?@H)@g¼?»±0@"õ¼?åk-@ü ¿?Gâ)@¾Â?„)@¼Æ?‘p*@ñGË?±7,@Ø»?x4@c’¼?g·2@À¾?Ö°.@`Á?¿C,@ ‘Ä?w‹,@½»?Ô;@¥÷»?ê#9@5]½?ì2@ º¿?ø/@6†º?ÕŠ?@c§»?ÈÞ8@û¼?ÑP3@†è¹?;@…Q»?½Ç2@ ¹?X/2@Â÷´?LÕ+@› µ?õÃ)@²¦´?Qn-@v0´?Úß3@Ù:´?Â4:@G´?@lô³?‘4B@–˳?D=D@´?Ñ~C@õˆ³?ÚŽB@}þ±?"b@@ܯ?Ö?=@_,¬?ÞØ<@Tä©?8«?@´à§?}F@¤ ¦?çzN@»¤?P±Y@'é¢?k a@Ue¡?ª6b@ýºŸ?_@Èaž?Z@éœ?‘S@L^›?nƒK@‰ƒš?^RH@i!š?|F@ˆý™?Í™F@St™?zÁI@º¼˜?e”L@fÄ—?"ÐP@â–?‡»S@$,–?]3W@¶¹•?/ÔV@£•?ûvT@ÓB•?)šP@±•?ýÏK@•–?ÒH@Øœ–?éhF@ãì–?E@ ž–?cóC@Oy–?ø!D@;F–?ŒýD@OÖ•?^«D@ÝW”?@D@Z±’?r¤@@ì?=ó:@ÄF?kÏ7@Ò“Ž? ¢<@ð9Ž?ªdA@8?“C@€’? H@AŽ?¨¾O@Â$?…áZ@´ç?!^g@Ä?%p@ª ?æ»r@É«?®s@šª™?q$@-A›?à¬'@Ö¯›?„)@§œ?r)@i0ž?1Ø-@m^ž?Ê>2@jL?×1@i¬?–0@ž?b¤*@ýsŸ?l§'@1áŸ?¬(@Ç" ?ÇÝ&@w° ?*@ŸÜ¡?u3@§.¤?(J8@ ±¤?=¥9@qt¤?üK8@º÷£?¡0:@à³¢?÷Œ>@e;¤?*óA@;У?Ö :@©¢?š|3@RŽ¡?ž-2@ÉŸ?+=1@àŸ?zë1@­bŸ?_l:@é…Ÿ?@@ÞKŸ?¬¨C@‹Ož? ´D@˜œ?§uC@;ßš?=4C@‰„˜?bI@Cs—?®3K@¿P–?RŒJ@F—?´‚E@¥4˜?HIG@(î˜?½G@uT›?õ<@fl??¯6@a?c¶1@cœ?r 1@Eœ?z3@üáœ?@8@yáž?®yD@Hû¢?ã¯N@69§?̦A@èª?ía7@««?˜¦1@身?U0@•¬?D;9@.ñ«?’>?@üZ¬?€=@GЬ?Œ94@û­?=p6@‘°?ª?@T³?0Ž>@dÝš?Q #@2d›?oU"@¶!›?ñÔ$@Üš?«ž#@-µ˜?WZ'@ D™?$@¤Šš?/ù*@FÈ›?ÓÎ-@éO›?M+@Õ$›?`,@ãH™? ,@;™?Ý/@$™?q=8@3‚š?0Û>@Üîš? ˜A@6š?8§>@ëž™?ø<@Øš?uµ?@¡7›?Fš@@Ǹœ?ä¹=@pè?RN:@ˆž?‚›B@CŸ?ŠÍG@œý ?õK@žƒ¢?ôE@ÎÏ£?Hæ@@•5¤?Žð@@‹Ë£?ËC@`ò¢?ÙG@d¡?lP@sŸ?Ö…X@¢®?õ&Y@yœ?§ÚU@6ó›?ÔL@Ý›?ô«F@ú­š?CÔC@ÏÙ™?=F@2Dš?¿³L@+…™?JðM@‘‚—?­dI@퇕?¸DG@Ðà“?i‘O@Ž ’?u®d@ÐŽ?{+…@퇋?5V’@o¥‰? @ºŠ?u„@à‘?>…_@pž?¢ø5@ت¦?F{@¨9¥?§:@}}Ÿ?ë¡$@%£?ÞÈ?@¶¤?Qhe@„qœ?Ìv@7~•?Á&y@¥â²?§z7@¾²?qß5@šç±?‰y:@>h²?7&>@ú£²?Ø#C@ã¾²?¸ZF@Ó ³?Ø«H@%¸³?uJ@œ.³?!L@½?±?I@§¬®?|ÁE@3—«?åD@7\¨?Ä»D@±4¦?¼ƒH@Ï¥?`ÜM@A®£?•ÔT@¢?Šk]@£» ?«”c@x­Ÿ?Wg@BPž?eªf@‚?Ud@šðœ?B`@Käœ?ðÝ]@x}?Ý”]@F®ž?80\@ÉŸ?Òµ_@@ ?2n`@Ë ?2hb@Ç;Ÿ?Àd@±ž?Bh@aaœ?%‹k@„š?¬Ði@ g˜?‚´i@†–?>g@I”?ia@‡”?ÄZ[@Á7”?˜U@‹”?ž5R@øý”?%MN@ýš•?2PK@åS–?DTH@)J—?S$H@K8—?ý˜K@8"–?\#K@6m”?Ñ¢G@Ç<“?øºD@ºj’?¡·E@5Ä‘?½êJ@Ó?ÑN@"¾“?øQ@Qn”?‚eV@‰]•?í¢\@Í…–?±e@•†–?‘#o@È•?ŸNx@ª°? <@`°?±Ð=@J±?Å A@­R±?6_F@6–±?¯£H@%’±?h#L@§Ž±?¼ŽM@7é°?öAO@‘a¯?³N@¾ß­?ÇàL@–ã«?s€M@²î©?âÒN@ÄG§?†P@‹á¤?ñØR@Ù!£?Õ¬V@ôí¡?ªZ@6u ?™`@þÊž?ì•c@.ž?zºg@¬Ã?e|i@jõ?1sh@ò4ž?ÎÖc@ KŸ?–âb@Z¡?Òn`@ ¤?a“`@Ét¦?Ì»`@Îê§?ñAd@r$©?þd@õå©? Ye@>p©?öd@=Û§?#e@œv¤?øŠh@h ?õNk@†L›?Uúm@-—?Lo@á5”?"n@\u’?Ãei@|–‘?¼6c@ôH‘?çR]@¹­‘?‹ÞU@ð’?ˆM@< •?y°F@¥ó–?¡UG@}>—?ÒöK@÷Æ–?âÓM@_¡–?³ÃM@K,–?^qO@b)–?åO@~Œ–?çR@yƘ?ØkT@þš?Ð!W@}wœ?\@p?5Åg@A?L"o@¦®?»H6@“&¯?çõ:@ ü¯?hA@ÎŽ°?èÍF@bp°?zîH@˜þ¯?EÚK@Н?µêJ@åú­??¦L@£|¬?CTK@Øk«?ßµH@¨Ñ©?†ØE@ˆ§?^ŠE@螤?‚HE@“¢?±H@{È ?!@J@–Ÿ?) O@Õ3?ƒJS@6œ?b¨\@/]›?BÐe@¾a›?¿j@ývœ?à¤l@'Fž?ðÄi@a‡ ?K@ª÷­?bÂB@Îo­?¤DF@³¬?ãG@ «?ðxI@_‚ª?üvM@v¶©?5£K@ó™¨?gPJ@{G§?3jG@×¥?E@Z¤?ÿ+E@Ÿï¢?Õ>B@C¯¡?ŸšA@݆Ÿ?Óï@@XÆ?´B@ÏXœ?¿ÖH@Èòš?0uQ@j½™?Ö»Y@$Ç™?‚Äa@íE›?Þ[c@%­?¡—a@%« ?ñz\@…€¢?ÓS@ý„¥?шK@甩?+VD@ 4¬?ì>@fé¬?®?@Æ(«?^£C@ª?ù&I@7V¨?QbN@w4¦?ItV@W£?#e@¿;Ÿ?jÜs@YÖš?‚|~@a—?Y6…@1P“?·s†@yt?Û9†@µ|Ž?­C‚@ax?äÉv@á¥?' e@uÛŽ?0OT@i?ÕØG@-õ?B'?@’?8;@ÁT“?ÌÅ:@¡N•?x#9@6B—?Oc9@^Ù?t19@;Åœ?þ¡8@˜@ ?–À:@e ¬?X?@¤:¬?ãíA@0¬?é]F@~Ù«?3YK@ÛF«?.M@˜ª??O@×Þ©?o Q@z$©?NO@¼¨?·]J@Vͦ?Ã2H@O3¥?eüI@(Ñ£?ÿøH@ä£?r¨F@Oµ¡?ilE@¶Ÿ?p‹D@ýÆ?ÈîD@¿cœ?b§G@o›?ëÏN@[<š?x‰P@›i™?ÅÅP@f˜?ÀÒR@!Ù˜?³‘Y@Zš?DX@Ür›? o[@Ð?3_X@ñ€ž?qÈO@fÜ ?‚ I@s£?–GI@D†£?höK@á¤?fêR@´Ñ£?â2V@f£?AB\@·‡¡?kbd@:Ÿ?ÙÅm@EÑœ?‹]y@š?Q΃@=*—?A‰@Än”?y5Œ@ÆJ‘?TÜ@m?]ÏŒ@ˆRŽ?®‡@ ó?,€@oŽ?om@í‰?ví[@v‘?ýsK@‡¦’?— ?@n…”??›5@1 —?Aþ-@tš?r['@THœ?°$@&Å?Ãd"@£œ«?m\E@Ó©«?ÜH@4¦«?ã£L@UÔ«?ÛÜN@q£«?ÀQ@V0«?á¯R@Ѫ?ÜÐS@Ix¨?ªøP@¡¦?éO@ÿZ¥?±7N@…3¤?÷1M@½¢?¿áO@uA¡?8°P@=VŸ?µR@d?? úS@“›?1V@N%š?>µZ@ú˜?nb_@j˜?¿Æb@ö —?$We@Zu–?¿Ìh@Ý–?çél@b²–?s¶k@[i—?k@"k—?\h@ûy˜?Ëÿd@K4™?çû^@¿Zš?²R]@hš?þbZ@ßÇš?^OZ@ί›?"]@ã›?Õ_`@º½›?ÇFf@Ò~š?06o@c•˜? Iz@¦)–?q­@7v“?‡J…@ng‘?[@‡@<3?(bˆ@V4?¥…ˆ@Ò¬Ž?–|†@Ù¼Ž?±¬@Û??’os@÷k?D¬`@%d’?£ùM@9D•?v%=@„­˜?,@GXœ?Eï@À± ?É3@c£?½®@ÂV¬?”±@@úš¬?ÇoH@ÉŽ¬?è P@e¬?lJS@ «?¥±T@5aª?×T@D‰©?ìŠS@/¨?§Q@yR§?³9P@|«¦?üQ@C¦?ѱT@Þæ¤?([@År£?®b@«Ï¡?á2g@–‘Ÿ?Ó¡i@(?Wo@Þš? –u@ѳ˜? |u@œg–?à›r@Š®”?¾p@ù‡“?«us@Ó“?׈r@„W’?»(p@{{’?•8k@~Y’?%Gj@2$’?«ri@Ž…’?+ h@ß@“?• f@ø“?>+c@‹“?Ü`@Ü”?^\@ÆË”?x&]@õp”?qRc@š1”? k@¿W“?Æq@‡»‘?]ïv@.?Á™}@ìéŽ?>'‚@%Ž?‘…ƒ@Í?*A‚@Pß?€G~@ÂgŽ?„ut@¨?—ái@<‹?*K\@‹¯’?ÇóK@8ç•?w‹;@”ú™?W·-@Öù?êû#@®”¢?Öª@>¨«?»Í:@I¬?ŒD@{\¬?HL@Àq«?(O@Áøª?þ®P@lÒª?P•R@úª?§Q@ù¨ª?Y™Q@C­ª?}?S@;Nª?½îT@<©?NŒW@ŸÃ§? Ê[@FÜ¥?ØŠa@Ë4£?í½h@¡G ?Þ5k@l“?zün@iê›?§µq@îš?+œs@:˜?F’r@4–?´ép@Œ”?7o@¦“?¢tl@%[’?dNk@i¶‘?¹Fe@œH‘?hþa@ìþ?Nf]@Õ?°’W@­”?ÄÊT@â?bNT@* ?õV@3º?4¥[@G’?.&a@þ?Fûc@WÃŽ?=Un@LŽ?´ex@–ß?æ@‡r?Kyƒ@?…‡@ÖŒ?6â‰@ô§‹?#‰@4ª‹?°¶‡@ Ì‹?t†…@bŒ?´‚@±¥?äy@`±?Óãl@¼µ’?B­^@d(–?3›P@ìâ™?·ÂB@É©ª?e~9@¶Qª?˜B@Ÿª?‘$K@{áª?[P@vE«?ý—Q@ÐS«?²»P@u¹«?z9^@9û“?§ÛZ@+ô’?iœY@U’?úX@5¢‘?%†U@í?‘?AÕQ@ï‘?›S@BR‘?¬»W@2‘?‰q\@>½?Éa@h3?=”g@_?S(o@àÃŽ?U"v@=Ž?Æl}@öˆ?Ì_„@ÈùŒ?)ÿ‰@%ÿ‹?еŽ@1‹?T?’@ÏŠ?|”“@¾Z‰?A9“@ò‰?⤑@L‰?%àŽ@ò‰?|å‹@΋?úú†@4ÓŒ?÷Ž€@PÚŽ?säq@dߨ?úÁ<@ëï§?WC@Bõ§?´H@ÿœ¨?QM@ ô¨?â¦O@;©?#QP@ר?N¾N@â‹§?Á L@$†¥?¹ïJ@6%£?)L@¡?8(K@TY ?¶ÓJ@× ž?%K@ˆ¤œ?ÙµK@<êš?LÖO@´›™?”QS@¥˜?gÞU@ç—?°ÀT@‚—?£¿S@¸ˆ•?ÉO@””?QòL@"´’?"ïK@Úl‘?À.I@!€?S¨H@Á?L7I@S?rÔI@8ÏŽ?´vK@ígŽ?Ž N@Üö?'òS@ñ7Ž?Žl]@aŽ?J&e@*-Ž?/n@("Ž?ž]w@qÜ?¶A}@4r?=ƒƒ@OæŒ? Nˆ@”YŒ?—"Œ@àD‹?LVŽ@ÙnŠ?¢’Ž@J]‰?ƒt@쪈?¢‚’@zPˆ?Yù’@†(ˆ?Mê‘@†Fˆ?‡G@"³ˆ?›Ž@ät‰?Y`Š@¡¦?/éF@™¥??J@v¥?á(M@EÅ¥?wpN@¢¦?ºUN@‹`¥?´M@!¤?Û;M@>¯¢?L@%¢?EÄK@%N¡? K@e‘ ?ƒtI@Ÿ?ÝJ@³,?tH@^Λ?8H@—š?&óE@[™?«#G@pƒ˜?+H@ߘ?1³F@wÁ–?=dF@Ù”?ø$G@k¡“?G5F@ù’?ŠD@¸ˆ’?_¤C@¾ô‘?úèE@Þ‘?íÅG@íþ?‘ŒH@¾ýŽ?¤üP@~Ž?óA\@÷Ž?îÎe@~Ž?T$j@–Ž?Wn@3™Ž? Mt@_ãŽ?w@îŽ?6{@ì?™ê€@Ž?„@¡õŒ?x ‡@‰-Œ?§1‰@Å‹?¥‘Ž@ÿ­Š?’@²0Š?¿•@U•‰?V]—@«9‰?„á–@]&‰?;å•@ÇF‰?±<“@tX¢? 5P@JI¡?(éM@{5¡?QSK@SÜ ?ø´I@æä ?æ¼H@ÖÅ ?âNH@‹B¡?~=I@vƒ¡?J@»¡?àK@‰ý ?¨ÑM@e»Ÿ?ŠÐK@4‹ž?éÏH@Ê?†eF@¦ª›?ù«C@cáš?ëB@*F™?³/>@6%˜?-Ä<@xú–?o=@I»•?+.=@¬•?ƒ—>@,Ú”?5?@O€”?^{A@ a”?‰ÍC@~“?+II@Ô=’?t’Q@' ’?eS[@ŸS’?¡Œ`@ä‘?œzd@ü&‘?—›g@2?7j@á³?ÀŠi@Á¾?‡hj@˜ò?#›p@×ð?'«v@<û?m9@ç˜?±¡„@3ýŽ?§Iˆ@ÓrŽ?C‹@ Ž?H@ޤ? å@Ô@?¹í’@{§Œ?™x”@šï‹?;Ê“@ÞŸ‹?:“@ Wž?]'<@§&ž?/Þ:@”³?ô;@´ù?µä>@Jž?" B@ú0Ÿ? ¯E@éøŸ?IÊH@] ?¡%J@¥# ?[wI@}Ÿ?øeF@óž?ÂÑD@ ž?E@ìÚœ?^ëC@#²›?næ?@ÄÁ™?(ò:@ãÒ—?Õã7@Y–?êm5@͸•?4¡7@rœ•?²=@·†”?k B@ƒ°“?PxE@'Ë“?§ˆK@^š“?É„S@ìÑ“?l]@¿>”?„@_@µ-”?ð`@GÊ“?Z<]@ÕŸ’?kL\@E‘?¼¶]@õ«?â]@ç–‘?)á_@‰’?5]e@e’?ðÙi@{’?hln@>m’?Nˆu@ 8’?2†|@É‘?ƒ@øv‘?΄@½m‘?Þ`…@ƒj‘?І@¡Ÿ?r_„@‡´?†!„@4?Cq…@:öœ?ÒÚ1@®œ?¨Ø0@dHœ?ƒÎ3@l=œ?³7@,ˆœ?:@?â£:@f$ž?Çö:@,Ì?Mx;@‡ˆ?w1<@%b?5¯=@.:?NÛ@@’œ?¹ÛA@Áœ?âA@ØBœ?«ŠB@Bkš?Ôß?@åo˜?÷=@×–?kZ<@DM•?µý?@Á”?êëF@®y”?(ÍL@Õ“?xîP@s5”?y6V@Œ&•?LvV@V •?],Y@ø•?°ÌY@ŒÈ”?á4Y@1Ï“?ÚPY@™û‘?([@|Ì’?ŽÆ[@»“?˜{]@(”?êÁ_@Ÿ«”?ýf@¸ò”?Ðf@ïç”?*f@–z”?5‡h@y¸“?¶Pg@¡Ý“?˜xg@b#”?=ýk@»“?ÐLl@Q“?–"l@²å’?sÃk@¢Q’?Î3j@4œ?¸_,@¶›?“Ï*@ :›?’?+@åJ›?kf-@Ì›?Ãò/@%Õ›?>1@3›?!r3@¹Œš?¦”4@>*š?DÉ7@Ÿäš?êò<@ã›?*I@@&Äœ?zÙC@?< F@ý´œ?Ý÷F@)X›?…E@fV™?ѲE@´­—?ÞÏF@ƒÇ–?½G@䔕?QÅH@žÿ”?O^K@Šÿ”?`L@š¾•?ÕèR@ð –?µWV@+–?é¶T@Ôœ•?ž¿W@×ì”?DY@=Õ”?;/X@ZÒ”?–jY@Œd•?ÈæZ@H–?¨³]@¸ª–?æH]@Ì—?ù¥\@Kä–?–K_@¦–?‘Ö[@X •?†iX@ë°•?öZ@ÕÀ•?Ï^@¦~•?ÇW]@åp•?&êX@ •?µU@k”?â­R@n²›?Ã-@{Ú›?(f+@e²›?„p+@&›?ù-@9š?ó^.@Õ`™?Á˜1@*˜?Óø3@Lg˜?Ê8@.¹˜?Œ;@«\™? '<@¡ š?Yo>@0›?V C@Qš›?n¦G@·›?x˜J@4š? áK@‰ç˜??HK@”­—?!J@vµ–?‰I@Gy–?eK@‚%–?ç°K@O–?wM@4¾–?faO@g!—?´¶R@0—?ÊV@ O–?Öá[@°‹–?^žZ@µp—?n„Z@PÇ—?aW@vD˜?Ó^Y@i¶˜?D&Z@[4™?z\W@LÖ˜?ˆ+[@y˜?¨aY@[—?OlU@c7—?^}Q@[ý–?}ÆQ@¥–?±R@2¸–?AsM@(–?f³J@¡•?­J@Õœ?&4@á›?LJ4@ú š?š4@:í˜?‡]5@µÃ—?v­7@=—?8@@®–?ŠT7@>*–?æH9@t–?<):@¼2—?Æ<@ÐJ˜?åú@@nm™?ÅVF@\Ö™?¼J@™?WßL@m͘?'ÑL@ðE˜?6vL@2‰—?éK@nú–?óK@†é–?O\J@Åp—?rÐI@–8˜?ÏjL@pM˜?S@ò˜?ä&\@p˜?V9\@®˜?‹[@¯®™?j”X@¸5š?[¢Y@š?DQY@Qƒ›?„JX@3›?îÓY@bAš?̘[@F™™?FW@S(™?¶S@QI™?ˆ‹O@°ã˜?/N@nc˜?„íI@)î—?„ÕJ@ñJ—?+!K@B8—?ʧJ@t)œ?{ :@ž©š?µÐ=@Ú˜?1þ?@Ç—?܉™?R.P@ýÁ™?Ó§@@`à˜?ú^C@SA˜?Í$C@Æg—?«B@Ñ—?É>@Ð –?ÃÓ9@9Ç•?® 7@.®•?ut9@õ•?÷´<@b#–?ÎB@xx–?äG@Y›—?gXM@â˜?z¶P@Äc˜?®!Q@9C˜?£,O@{\˜?}ËL@=£˜?´IK@™?,L@™?=O@nИ?å˜S@ë˜?nZ@?)š?Ù^@c›?t'_@ œ? a@íðœ?À©b@å,?Röe@ºË?¯f@sGž?R\e@hšž?xŽb@RŸ?DAa@«—ž?jÜa@¬ž?­_@hÞ?@^@—áœ?oí[@D3œ?!tW@0k›?é}V@Ýêš?’2R@A˜?¥aD@­3˜?0ÓF@ž4˜?;jF@ ˜?88D@KÉ—?È@@´ó–?\m?@,|–?á<@†¡–?•ÿ=@*–?i8A@¬>–?®rE@KO—?©XH@Šé—?NîJ@C1˜? …L@Ï|˜?0ÆL@Ö¿˜?aKL@)™?iM@IE™?¶FN@åC™?’YP@ ™?ý=V@_í™?¢Ç[@.\›?íˆ_@qWœ?Bj`@ ?½d@HÔ?i@Ž8ž?,Rn@† Ÿ?vl@‹ÛŸ?zg@{} ?†re@÷  ?ÔÇa@H¡Ÿ?á1_@Ñ(Ÿ?IcX@@Tž?¶¹S@çx?6T@ù?lçU@:%œ?éØT@t8›?UJO@#Ò˜?ÉG@²˜?Š6H@%˜? [I@̘?'J@w»—?•"G@òø—?ºxF@Ð9—?å¤G@ ò–?H@Cu—?³F@Îù—?[F@ó&˜?AâI@V~˜?ð»H@£é˜?ØúH@®Á™?Ó’F@D,š?‘"F@²eš?íMJ@˜š?ÜHP@üš?¯U@&Aœ?CY@?Ó¾[@ÁÒ?ûG^@¢•ž?“²c@E^Ÿ?¦çf@ÌÛŸ?\k@ì% ?ßf@Â¥ ?p½a@(È ?ƒUX@-õŸ?xˆS@'}Ÿ?¥·K@ Ÿ? I@9ž?ü›E@ ¬?3‰F@Þ$?Œ{J@mœ?FJ@û‚›?ÓëG@dM—?¸$G@,3—?b[L@bŸ—?UNP@Þ˜?öúN@«!™?’ P@ä˜?ëÜP@ã™?=ÊN@B>™?h;L@Ø0™?»ÅK@Ñ>™?ÔŠJ@³™?¸;D@J³š?,l@@ˆ5›?¡Ê=@ô"›?$Þ=@rµ›?. @@J|œ?9E@#‡?˜K@ùÐ?! Q@M˜ž? üU@¶ÁŸ?¿¤Y@«ñ ?²½]@(¡?Tø_@ ¡?¼l`@…>¡?iÞ[@ýÙ ?¬¡T@Ãq ?oJ@¶`Ÿ?´wF@Ÿ?´ª>@bMž?Ã]:@Å/ž?ø,;@eÜ?^ŒA@Å+?š–F@Íœ? F@ãì›?E@‰Í–?«´K@™%˜?ÇïM@©’˜?ΗR@R™?HÂT@Ýš?ÊgP@¬J›?‘#O@ib›?[ûN@UB›?5P@WÚ?ÏM@OO›?=HF@#œ? ?@á›?~3;@{Ø›?{È9@Sœ?je9@$u?^D:@f¹ž?²C?@#RŸ?€ G@BúŸ?\çL@àó ?eQ@ÙG¢?êT@ߪ¢?ÊT@é¢?ÆS@=Ä¡?ëŒQ@¾‡ ?æÕK@,4 ?)C@ãž?è”B@ež?|é;@zÅ?£µ:@³? Q:@{J?Ë(A@Í?òeK@lhœ?íÞN@í›?ÚO@ªn˜?ä…K@wb™?©M@9&š?‘ÁN@6`›?«2L@‘º›?rÊM@¸*œ?h—P@øœ?UHP@ íœ?ÊN@Þ'?QK@Jf?ÇêC@™àœ?øß>@}n?¼9@!Ú?5@Xž?u«4@p7Ÿ?Ø8@[­ ?rs=@S¡?Ù\C@Ëî¡?‰©I@Gc£? K@R§£?¨µI@Qœ£?»7H@èW¢?¸wI@Å— ?†-F@íÜŸ?ßtA@¨®ž?< B@Vä?ó=@‹~?3Ž:@@Ê?ri=@³ž? GC@íÏœ?¼P@#0œ?¿W@:œ?ŸV@…d™?HÀG@l¤š?ÔH@Ì›?9“F@H]œ?ÐL@l?ã7P@ùž?ìR@Žž?Q@qÒž?«úO@RÓž?0mF@·Öž?›Ú>@“ZŸ?• 8@°ÿž?ø"5@ó<Ÿ?Ýy6@ðHŸ?3I7@Lñ ?9@d&¢?°…>@˜?£?ž²B@Òò£?hÆC@0|¤?‹}E@Kò£?V`F@?î¢?žâG@&7¡?rF@_z ?ãFB@©Ÿ?Ù>D@ª?âC@mÈœ?øˆ?@€A?”Q@@¦?8E@UX?ªvP@Ћ?kÝT@ ‰?œáW@ùÄ›? ^C@9¯œ?„.D@Í?ZI@Ö^ž?ÁÙM@™[Ÿ?jQ@ÁáŸ?!JP@æÖŸ?•¬N@ž ?:gE@7 ? ?@I< ?=F;@] ?¾Ý7@K ?†T6@°µ ?#5@§¦¡?D$7@±•¢?ÑU;@·ß£?äÂ<@²¬¤?Ù?@9ð¤?ì²D@†ã£?~J@¸ò¢?=:H@ñª¡?AŽG@M… ?•ßD@qNŸ?DÃG@£?€G@¤çœ?†€B@Ò0?{Š@@àŸ?å~E@™!ž?âžM@@Ÿ?^HQ@ß…Ÿ?×fU@¬e?EAE@”>ž?‚E@NÝž?7@I@cZŸ?7§¡?;ÈB@ìÞ¡?@S ?´]<@4ðž?› =@6k?Ôˆ=@5„œ?-{?@ñÀ?8¢B@Ã7Ÿ?Ý H@@ð ?÷ÇH@ó¢?ëîC@¤£?LA@ßÈŸ?7*@@Ÿ?A¤>@®OŸ?¢:@¥• ?G^5@™È¡?)È4@óê¡?ðP6@ñx¢?îK9@&¨¢?g0;@ƒ®¢?‡*7@·Ï£?äa1@M¤?á.@O¤?à‘.@Ö<¤?j(,@ûV£?y 4@Ðl£?e%9@Tã¢?209@­È¡?îŠ8@ÃN ?£ƒ5@Çüž?«8@+ž?ì}6@¸?®ü8@¿?çt>@è$Ÿ?Õ[H@.y¡?QôG@»˜£?DìA@öK¤?Þƒ<@_Öž?V®8@¨Kž?óŽ7@×zŸ?1@HР?¶¡0@¨¡?Eð2@G;¢?¬|9@’Š¢?Rô9@ ¢?—7@ª­£?p 0@$¤? E,@:¤?ס-@*[¤?ÿ+@ £?†0@—£? 4@¿¢?¢û3@Š“¡?Ü3@ƒQ ?÷O0@ Ÿ?kó1@Ež?Æ2@~?š7@pž?Ä?@ñS ?ëK@5U¡?Ö‚J@@ £?ü®?@û“£?V#>@Äöž?$[0@èõž?˜ý-@m ?7Í)@BO¡?#7+@ØÅ¡?? 2@¡?('@ÐK ?^,(@A ?ˆ(@lºŸ?ûo*@Ÿkž?¶L1@ÔÓž?Äi;@H, ?Oê@@ÞïŸ?IF@‰1 ?²jH@öDŸ?#*H@å`ž?‚òE@º Ÿ?„ÔD@Ó”¢?¼0@¢?Ǭ1@?l¢?Ù›4@…|¢?¶ç3@2¡?ð3@°å ?¸à/@Áo¡?np-@ìÍ ?mY*@©Û ?«o)@÷Ä ?«*@މŸ?nÃ(@>Ÿ?]*@êUŸ?Tº*@Q¯Ÿ?'«6@ß'¡?õ‡?@u¡?·ÚC@¤zŸ?úåF@ˆ{ž?²F@%@÷š£?Â;@Š£?ï/=@ßâ¡?¬¨=@jS¡?YH>@1A ?†±C@̱ž?–D@J¤œ?rˆA@“›?øD@ð]š?ùEE@[ý™?D,G@íš?9 C@úÑ£?Ñ€@@Ô¤?—A@È”¤?·C@ah¤?Ü×?@¯¥?«=>@“¥?sB@;X¥?ÆÉ@@‚0¤?8_?@¿Ä£?­>@ÍU¢?6A@Ù¡?¸¤?@” ?²<@Å£?Ý7@@øNœ? A@Ÿ9›?æ A@·¶™?oHD@‡‰™?¾»E@ÍZ™?‹zB@º¥?lå=@îQ¤?P @@O£?Q­>@­l£?Ÿ¤>@z£?†×>@´¢¤?ìç@@7z¤?i=@þW£?¾,8@18¢?:B:@_Ñ ?^@@ïߟ?R=@ôºž?³':@ø¥?&À>@q?œ?¯B@f›?ûIA@:š?|DC@ˆ(™?~Ý@@§›¤?Ï;@3m£?‘ò>@Š¢?ÿA@@ãÁ¢?–P>@Yü¢?ùÝ>@ºY¤?äÕ>@x¸£?”Þ9@E~¡?¦H8@mª ?ð{;@ý  ?µ‘>@Ñ ž?Pt=@Êœ?žÀ=@œÁ›?Ä@@|ÿš?ôaA@ä™›?ÜA@Jš?É ?@Ëa¤?•ò<@) £?ø·;@’«£?§´>@¥‘£?A=@wz£?¬R>@ÀN£?ÆŠ:@²M¡?Ó°:@5y ?@<9@²Ðž?0‚;@³ž?Ì?@fÞ›?G<@-¨™?¼ç9@é"š?Æí9@ù›?€Ü=@_Z›?m C@(¢?9ö6@-Ï¡?…±8@ J¢?àñ;@Ý:¢?·q9@fE¡?¥D;@2x¡?ý±;@) ?6+:@ÿŸ?Þ³7@›-?¹69@f´™?¨!6@r˜?åê2@>™?¤71@”™?»Ë5@!›?•Ù=@ꛡ?k;0@ØC¡?¸2@Ï- ?^·1@'ÿŸ?Ë7@ì?Ÿ?[~5@ˆ…ž?¦Ù4@î;Ÿ?­z2@Û‹?Ru1@øô™?:—,@郘?ù -@Yµ™?”,@²˜?ã/@`=™?óA6@!¡?`ô,@ õ ?µŒ/@pè? .,@µË›?`.@Æ?=y*@Òú?+@õ®?`_,@ôŸ›?à¿*@Öø™?¶o+@¿aš?|å+@…Ô™?ŒÛ+@Rì˜?ï-/@$¡?YÁ,@”âž? +@ò…œ?ü)@Íœ?ù£&@„?ì÷'@jAž?»(@½œ?ùé&@š?R+@Õí™?Ü-@šš?ù,@”£™?††)@¥Ÿ?R(@‡ ?0;,@Úi?)’+@\4?•~(@÷?©¿&@¼?U %@æ2›?²õ&@fý™?ž (@­<™?#(@Y”™?Có)@ÁR?h"(@þÚœ?·µ,@œ?qv)@Ú?!©#@ œ?„r%@øœ?UŸ$@øÑš?&@Ž®š?¦(@åMš?N)@ˆ?Ÿ2+@§¸œ?[z$@Ègž?ýü%@{4?â$@U4œ?’È+@†ú›?xÚ)@Ø´›?¦+*@•tš?t*@˜Îœ?ZÐ'@T?&@ãr?‚¥%@ðœ?¹)@o?ü,/@æœ?:Ä*@o1›?;%,@ =œ?¼w,@ÌÒ?ë\(@4ìœ?H•,@9¢?·~4@Üž?"k2@…¨š?-@ƒi?Ø-@Xyœ?¦Z-@Joœ?;p0@Zÿœ?}2@Î4œ?æ².@C1?Ú«+@¼kœ?#+.@rМ?½ð,@J5œ?ˆt)@¡ºœ?êi+@¹aœ?óû+@Rœ?2Q(@Óœ?ÊŽ*@ÜÚ›? š&@Êwš?g(@á¿©?¥? @ˆ§?2x @ާ?Æ @?v§?o‰@›p¨?=¨@a¦?ž—@cÚ¤?QD@je¥?aÈ@#p¤?c¨@*¦¤?…@}„¤?Ø„@4w¥?%Ý@m'¥?¬Á@Õ¦?K@Ú©?ál'@”†ª?ã«.@ØÉ«?®>+@í«?±˜'@… «?.’!@D•«?TY@¾«?nÍ@Fë?p @Í«?]o@#©?SU@k©?AÙ@S ©?^ñ@REª?8ø@ÎR«?ó#@¢â¬?Q¾@= ­?‘ @0Y¬? @á «?@K@$ž©?¸]@aªª?Tr@⯩?£©@ *©?·Ñ@R˪?kª@q ¬?M@†p¬?&@;®?Э@÷ê°?ÉW@êÆ°?Ïh@Õ¬±?F@Îá±?â@&§²?×@ç[µ?2§@ªÅ¸?à©@Ã÷¹?C$@ÍÀ¼?ëì@µ*¾?gK@Ŷ¾?!Ý@C¤¼?p„@窻?PÊ@ [º?m?@Q7¼?KG@…ؼ?K\ @Àl©?˜;B@wê©?(¿B@Aت?¦A@Û­«?"’B@?³¬?2†@@p¦­?àyB@ej®?…9>@ªl­?óà4@3Ы?,/@:ù«?œ 1@>ûª?îÉ8@±«?°>F@4~¬?ÄãO@z¬?Ž6I@m¬?®¸C@¬×¯?‹qC@ȳ?qŠ7@[’µ?üŽ.@Ádµ?è3@@R³?-@<̳?©Í'@cqµ?Z³$@>·?ĺ"@Uo¸?I€$@­í·?)#@¤¦¶?¸6!@ݶ?ÙG@CI¸?¦@r¬¼?h@Pð¾?Ýô@ÝõÀ?j¦@CAÁ?*†@–öÀ?ߣ@‰ŽÀ?#@ã¾?ÿN @|<¾?—™ @„½?•q @v½?ê0 @Xݾ?”R@À?7ˆ@Ö¥À?L@©F¿?rÉ @M½?Þ×%@k½?¡$%@Ѿ?,%@4¼?³í!@?<¹?û@Ñ·?Å@Þ¸?|@k¹?S¸@úp¼?ë@ò,½?I@@XZ½?~@”±»?«» @½?«B @y½½?W @ü<»?¯w @†cº?C@fœ¹?á® @X»?xÑ@]¼?¾@>Ž?%@’ݾ?@ l¾?¿M@3Û¹?ÑQ@Ö¹·?ùÎ@…¦¶?k@ÝJ´?‚k@åų?sÇ@~²?†S@¸±?8Ì@¹+°?®þ@³®?˜ñ@Û¬?îu@©¬?‚ê@t«?{è@ó©?Äå@] «?ø@N“ª?ê@ˆŒª?F@$'ª?ëù@3Œ¬?Æ@Ì ¬?Mç@vÞª?/"@Þz©?ÑC@=©?Hæ@GÔ§?^S@…æ§?ĺ@ _©?ƒE@Þƒª?ÏŠ@)]ª?¬ @ –ª?4+@Zߪ?*p%@¤2«?ï¤)@Šw«?Å£*@'Lª?jÈ/@²©?Ú€(@hf§?ºn @r@¥?c:@ÿ¥?Й@œ†¤?Ál@ÅO¤?ºŒ@T¤?žØ@r!¥?D¥@œ¥?‰e@CÑ¥?–ú@¨?Ôx@êB¨?†·@¥§?e2@1E§?Ï @F|©?á*@Ø3º? ä @›ø·?ãª@^¢·?nå @_»?D*@Ûi½?‘\@ÆI¿?_e@Y¾? æ@Ä¿? 8@Ÿ»?g§@ͤ·?ôà@?g¶?¦Ø@è´?Ç @…´?Æ7@Âu²?”/@£±?5@)ð¯?4Y@½J¯?úÜ@É·­?RX@°«?°c@™«?¬@±Í«?žõ@A«?T*@s«?ê§@1¹ª?}Ô@(éª?„H@Ë ¬?5C@ݪ?OÖ@±u¨?]¸@¦Ø§?³Ž@Z§?ŸÙ@c·¦?“O@Jî§?¬£@š©?kd@Ô©?"@¾ª?œî"@@«?ÄÝ'@Ø@«?û)@‘«?K”*@1Úª?ó’,@½©?^[*@€¯§?Óû"@êÝ¥?T@°~¥?Ž@²£?Ur@7½£?@xߣ?(@œk¥?à @j¥?k¹@#ø¥?÷ý@¿ð¦?Ų@{«§?“½@Ëh§?Il@h\¦?à @ˆÈ¨?1ä@’îº?ëò @Iï¶?øÒ @Ž[¸?L¢ @Ôg»?~@Z¿?[æ@(!Á?@‹„¿?Ty@gó¿?@ Ͻ?ä@ü‰·?¶@õK´?‚¹@»|µ?Íî @®,´?+\@F²?”q@j²?€ @!±?¸,@KÒ¯?C•@WV®?™@G¯«?öæ@¶ì¬?™ÿ@®¶«?3í@Vö¬?0œ@˜ «?§“@:È©?Ž@%Y«?\µ@@gª?Õw@ q©?ÏÝ@®K¨?ê@,€§?sò@µ}¦?´`@·ã¦?Í@\«¨?§<@3%ª?n#!@©Ðª?©%@প?H¢,@íàª?d›-@ë9«?i)@ƒª?È*@:l¨?cQ+@5ߦ?.T$@Ë¥?¯|@&ܤ?Á:@Þ£?`¡@U)£?gÒ@gÚ£?Yj@—â¤?+_@Ï}¥?&>@b×¥?ˆA@û}¦?õù@Äë¦?‚@º'§?K÷@Áý¥?œº@t/¨?8Š@©¹?7‚@˜Ô·?þï@Ôº?ª‰@¿ò»?¡e@9¿?D4@¦²À?iÑ@¿eÁ?Äþ@¹´Â?!<@R˾?ü@úµ¸?¢›@ò[³?ñ@k ¶?-º @Ìö³?L@²±?2à@K²²?@ q±?C-@ç °?Ví@pé­?]V@«?à1@¼'¬?Ü÷@έ?9“@è«?˜)@¨’ª?¿·@ušª?jå@ÆÜ«?×@‘…ª?æ?@¸m¨?};@“§?Â5@ãí¦?É™@1§?¯“@…§?û÷@¾©?C, @¦8ª?»¨%@üñª?¬,@Ò-«?Þž.@ýJ«?ËÂ*@ï‚©?Õô*@Xô§? ¾*@¦?‰&@Ó„¥?*h@F¤?@ã°£?šÆ@@æ¢?Cg@2I£?:f@0Á£?´À@ ]¥?´@8<¦?}@˱¦?v@ÉЧ?I¶@`¦?|È@¼¦?GÀ@ï¨?]ü@c»?ê%@å%º?LN@xÖ¼?¤@³½?Œž@£Ç¿?@‚bÀ?++@2€Ã?z@ËÃ?£Ã@ýL¿?NZ@'¸?NË@D*µ?t¦@ Qµ?øM@c)³?°@cʲ?Üî@ÆD²?‹@ ±?³-@^&®?I¶@·ï«?Å@ë««?5L@¹q¬?ñM@¨û«?Äž@«?_Ö@ŸS«?ž„@‰«?¾Þ@´]«?¦;@üO©?\@¦B¨?{]@Ú±§?Ô‚@fm§? Ä@*M§?·Ë@ ,©?-Ô@M*ª?/'@ª?k¦+@|«?ZX-@îïª?tx)@‹É©?5+@”À§?Š+@ØX¦?[(@™å¥?û±@Ÿè£?HS@Kø¢?®@()¢?`I@`e£?s6@ Š£?„•@vF¥?Ÿ@ñ¥?V@E§?ìö!@¤Î§?iT$@¸à¦?€Í @ §?ô@4]©?p/@gß¹?Ù@ñðº?iæ@5\½?Šj@ ò½?øÉ@"†¿?õý@{LÀ?ÿ@™Ä?‹@Â?ªˆ@îš¾?-æ$@ñ¹?ý’@aóµ?»†@v™µ?Ý@ÆÉ²?hÛ@¥µ²?Wë@†w²?¦Õ@M›¯?4…@JÒ¬?>û@¬?üÙ@‡¬?Xv@ –«?ß…@£­ª?_@FS«?… @D}«?D5@ý&«? ¿@BŽª?ÞÇ @û½¨?Ô"@ Þ§?ƒà!@Òµ§?'Ó!@Ȧ?2~@Ùç§?0 $@'2©?nn'@N4©?¯i+@ª~©?œ/@Mª?™ª,@lv©?žP,@A'¨?;+@È*§?:ì(@C,¦?ý"@çÁ¤?‘(@ 0£?ªK@ ¢?mõ@Ï]£?b<@¿!¤?^ß@ý¥? @2¥?%@ÖÙ¦? î$@×®§?æÀ'@m‚§?Å#@xÙ¦?T @æ¨?ËÛ @2X¸?±@‰·º? Ú@fu¼?ú’@5x½?¼Ì@™¿?˜@»žÀ?K“ @¥ÛÂ?$÷@Õп?Ÿi @g¾?4ç"@'B¹?W–@1@¶?Ú•@>ûµ?ñ’@’³?è”@’³?uù@0 ±?Tn@[­? d@úé¬?¨m@‚¬?%ð@¥3«?¹@¦ª?¶ð@¸d«?ûâ@ʬ?Úi@téª?Yn@ü]ª?Þî!@¤Y©?¸E$@®»§?‘Œ#@ð¨?y )@)µ§?j(@s,§?¶'@cǧ?«(@«¥¨?:·,@%š¨?S0@ø×¨?Ρ/@7©? 0@°ë¨?8g.@¸M¨?¸ú)@{¢¦?añ%@ç¥?8 @¶j£?Ñ @Õ©¢?þ¤@í¢?ó@¢R¤?¥î@äv¤?«*@î’¤?òV @稦?ô{'@ÖF§?Zÿ'@LT¨?·Ó'@Ù§?HE#@Çd¨?È!@/B·?“™@ƺ?¬¬@'î»?Ü"@€û½?'x@‹Ï¿?º"@}”À? 7!@¨É¿?"@I7¾?ý$@ Ⱦ?r_"@U½¸?è @Ž­·?åú@¹¶?x@å\´?DÆ@Æ¢²?þP@@ë®?/Ó@æë­?°ù@,%­?íÍ@p¸¬?Ñ @ñ«?ˆ^@?«°@jS¬?®Ä@°øª?Tx@Ì;ª?=€#@kÙ¨?†ß$@¯É§?ë7$@ß©§?¥,+@ö§?úÆ/@#ü¦?é-@Ñã¦?¿+@¢Æ§?çû-@²o¨?¤g0@_†¨?¼ð/@xó§?±ï1@^Ѩ?ZS.@¤¨?ι+@ÈT¦?O&@‹á¤?ýá!@0 £?H‚@p›¢?è¤@_¢?_@&›£? 7@f¤?áu@Â&¥?°Ÿ#@;¦?{Ò(@ó¦?C (@VB¨?þ0(@ŽZ¨?YÁ&@ÙV¨?8·#@“ܸ?V<@ÙIº?8a@[ˆ½?úÊ@ýs¿?ó @b©¾?«"@G¿?–3"@„½?sF#@4õ¾?kÈ&@°þ½?É•!@ ‡¹?‘X@˜ýµ?M{@&²´?7 @UÞ´?mK!@Çü°?”Ì@Ô,¯?àÿ@lÇ®? |@Ž[­?ÄÂ@B®?}G@©,­?J@\¬?‡@¤Ð«?:h@™«?ƒ>#@ÿv©?„­&@Œl¨?š(@ÇŽ§?í -@¬Ö¦?=‹1@b„¦?Dˆ2@å¦?î.@%ç?0@a¿§?ë|0@¥¨? ®0@hý§?©P/@—§?3F.@N­¦?ñ*@uƒ¥? ¥%@(å£?v @ˆ–¢?Úo @$S¡?0@¢Ñ¡?. @Ûâ?|‰@R¤?éÁ@9H¥?€#@á¥?®¹)@t¯¦?Âa*@èr§?é*@©?¡'@Ê^©?§T&@­4º?Ê@¡-¼? …@ü¿?Pž!@ ¿?“#@˜¾?R %@ƒÝ½?n©"@9 ½?ýe$@>‘¾?s!@½?Ö: @Í6¹?÷3@íp¶?C×@S›µ?ø@hú²?sP%@—™°?n@s]°?Ò´@ů?a}@G®? @“å®?‡)@ò¬?jÒ!@£«?“>"@¾ß«?m*$@;/ª?ÆO&@©?°+@µ§?N/@ì§?Sÿ3@¢¦?@4@Ù?¦?ñ¼1@G[§?+3@[L§?>h2@ñŸ¦?n/0@J¹¦?w&.@bñ¥?±¾-@É\¥?®µ)@¤¤?“Ÿ$@Ö*£?TÅ@®¡?µ¨@ ?ÍÛ@”„¡?›»@_¢?‰@¤?šY!@v'¤?zY#@â¤?8 (@g¦?ûJ*@@Ú¦?#P*@¬ƒ¨?ò„*@ Æ¨?^Ì'@ »?ß÷"@kŽ?¾#@ucÀ?‡,@5¾?%@¼}À?Ž>@´ë¾?jf@ñµ¿?s7@IP¿?ðu@ ø½?t@‹:¼?'&@P¸?*È@ßìµ?'#@[v±?gI"@0“°?¹ !@F°?«¤ @èâ®?~À$@G­?ÝÎ@ }­?1\!@<•«?Åé$@9/¬?æ(@m—«?,+@'jª?ŸÖ,@½5¨?þ 1@aѦ?†·4@²–¦?§ 4@žo¦?„ 0@¦?3@Ñ7¦?6O4@ÓR¥?¨P3@ÏD¥?o.@û¥?]K,@%§£?ÂV)@á&£?0õ"@,¢?QÆ@*¡?S@æõŸ?[@Ë3¡?P?@•‡¢?-@ £?ž@À£?Þ/'@x‡£?ëú'@ž\¥?¯Æ*@B¦?½u'@¶ã§?åH+@© ¨?ÇÃ)@®¢»?Ìc&@ P¿?Îì@n'Â?W@ÊÁ?¶@³-Ã?ê¡@òRÁ?ô@› Á? m@QÁ?öÒ@º^À?IÈ @Û´¼?Ä7@¨º¸?ñÄ!@@DÄ?¢à@ªfÅ?p2!@8Å?ñü!@…ÑÂ?<Š$@˜“Â?™ì#@ÛâÀ?hm&@¾Û½?Ö•$@Ϻ?ÃÒ#@ ú¶?l/#@ž?@:<Ÿ?=¿@6 ¡?@eø¡?Øú@‹Ì¡?x´%@¶,¢?r“,@›´¢?.+.@Ç)¥?¿¥0@´n¥?oB1@ûü¥?Ž5@Kj¾?e¤"@IXÂ?u@]’Å?/“@õëÄ?n+!@>ÈÃ?+â@…ðÀ?q-#@cÀ?´"@l¸½?ù€"@YÖ¹?á³'@#¸?C€#@˜ˆµ?bß @â]°?·„!@‡“­?°@åÞ­?²Æ@­?©Ú@b=¬?€ó @X´«?ê#@¯Ù¬?éW*@„m®?ë#4@íë?±ñ2@ik©?ø1@-ë¦?‘)1@P¥?†è1@—I¤?™92@ÛÕ¢?ÿÐ0@]V£?P(2@W¤?,.1@¨’¤?º„0@}”¤?ø×+@éP£?ÒŸ&@9Û¡?+. @"Ä ?½«@|TŸ?)@ô„Ÿ?Ô @¤m ?£ô@>¡?S@wM¡?‰…"@A…¡?‹÷)@†¢?O,@{È£?ùœ0@þû¤?„P5@¨¥?)ü5@¹&Â?Ë@å Ã?\y@+ÓÃ?êg@šòÀ?@î¾?ž.@¡¼?Ü@†»?–S@I[·?…Ã@¶åµ?… @0®´?¹@3Z±?¼ @ÆV®?@˜Ç­?~z@Rb­?ˆO@Ö$­?6å@ ¡¬?i¦ @ÃT­?¸ò'@¹!¯?,s0@eJ­?êD1@9S©?ïM3@LA§?8b4@^˜¥?Ê£3@F¤?rà1@?¢?f9-@#ª¢?É0@fq£?«1@’c¤?rd3@s¤?bc.@У?ݱ*@—:¢?Ì#@~ô ? 8@ ³ ?”@¦„ž?¸@¹¶Ÿ?ã @À5¡?‚¸@_ ?@¡!@1 ¡?~B(@æë¡?D_,@ýæ¢?ë1,@3Û£?â 3@Z÷¤?v+5@_îÁ?7m@4FÀ?íÙ@Ï¿?ë@hê½?fT@Z©º?²ò@á¸?®#@'á´?R¥ @°!²??@v¬±?gæ@_G±?#@mÆ­?3P@ñ3®?3@Æ¡­?7d@Àv¬?.@5É­?‚«@‹|®?ªø"@ .¯?§1,@¶ó­?©Ð1@»ª?Ãr.@Iž§?”Œ4@ý`¦?Þ3@Ð2¤?ß"0@Ÿ¢?R=,@25¢?ÿ6*@ £?q/@Þï¢?,0@b¦£?¯¡1@4£?Ÿ­.@Ûé¢?NÇ*@¢ó ?îö @o¡?èÓ@Ì"Ÿ?Zf@;·ž?äÀ @nÊŸ?À!@¾¼Ÿ?, @| ?ªù&@Ρ?¿ä+@§¢?^\,@Š¢?‹“0@3¤?ÿ6@û§¿?’v@ŠX¿?Îå@ÇY¼?ùZ @bñ¼?Ö6 @˜Õ¸?Dj @©¤²?nê@q²?g@ ¯?àÝ @°¯?¸ç@ž¡­?®Ô@Ýí¬?þ9@¤’­?ìˆ@o­?Ù¡@:­?û@/ú®?æÿ@Cè¯?§­%@¥­®?Í-0@ßíª?-@ -¨?éæ1@Lä¦?*¤1@€›¥? L0@랢?hj)@›Ì¢?ž)@ïË£?)ñ,@¥K£?Jˆ/@ŽÍ£? è.@#g£?C60@.£?fÒ,@!ô¡?m÷&@–¡?Çú@ÂaŸ?/4@âž?‚d%@`«ž?ÊÐ @XÅŸ?ü@£i ?ÑÚ%@„S¢? ó-@.„¡?Ñ.@iY¡?Mt.@ûË¢?s21@‹Â¾?Ï @¤ð¼?€ @èt½?ìH @ÅP¼?Š«@]¶?hY@àF±?‚:@ú2°?ü.@{Ù®?Í8 @p¤®?å‘ @x¬?A³@þ¬?ŠÀ@–»­?jØ@•¬?SI@LU®?øU@) ¯?Öü@G­­?ŽÎ+@Ö«?\*-@}O¨?\1@2ɦ?°ó3@%m¦?«i/@Bt¤?%¥*@— £?D*@žy£?R¦+@è£?á®-@2ë£?ÞÔ,@«ü£?_à.@Œ)£?>Þ+@¸n£?8Ž(@îm¢?=H"@»è ?º@†™Ÿ?ãs#@âŸ?Œ$@1OŸ?š8 @Û„ ?åy#@c‰¢?šú-@™€¡?äÉ1@˜± ?¦ 1@PÝ¡?mk-@Y½?œg@pÞ¼?OÄ@ÿ½?ìŠ@5Šº?Ü“@µþ³?DO@í²?l2@™°?Ç@^¯?Ñ @0ʬ?•ò@±Õª?¸%@®?ÐU@X]­?6ð@¬®?ïú@9ÿ®?ÄP@x—­?Uá%@ùû«?ø-@ ©?rÿ.@6¢§?ÒC3@×y¦?©º/@ô¦?^&+@J ¥?›©*@ž…£?y2*@¿£?ÖŸ+@y¤?Á¢,@³9¤?Ðê*@Ÿó£?þ©-@FÝ£?‘Ó)@O:£?LE%@ù¡?† @vŸ?jÝ@;…Ÿ?Ãr$@&±ž?–!@VmŸ?2@þ¢?¾a.@]#¢?^01@¾8¡?hŸ3@kú¡?ˆä*@­š¼?OG@5¿?r1 @¹¼?§?@ f¸?µ@â,µ?W…@¼´?8g@~ƒ±?_N @–2®?Á/@z¬?»Q@<­?£â@ó’®?½Ü@#_®?mŠ@Û®?7é@;í?IÉ @ð«?L‡*@7©?f,@ö§?É20@†¦?($0@ C¦?é)@¦L¥?›Ù*@w¤?n*@P'£?¹ª(@N=£?r{(@A ¤?µ)@sà¤?kñ*@Ť?j))@8£? &@A!¢?Ör#@å ? 1@ÏÜŸ?y#@óŸ?S…%@ëtŸ?' !@•¡?J­*@[¢?Ÿ1@è§¡?ÖH0@û¢?½…*@CJ¿?É @þ¿? @Ni»?+v @%·?Eè@u¶?¢n@´?(ë@Ý ¯?¥È @Èz¬? B@q«?Êü@§å®?K@µŠ®?{«@{7¯?Ó@Ê­?kñ@ÕW­?“&@Šæ©?7E+@Ч?ææ,@Ôw¦?¦Ë2@ž¦¥?Ññ+@WÕ¥?cŽ*@ ¥? +@`¾£?È*@—Þ¡?e¸&@ÿ—¢?;T)@—¤?tŠ+@–¤?:S-@£–£?Dú(@ =£?Â.$@Œ“¡?vA"@Õa ?±ã#@Ó ?ɺ'@0T ?·"@ÕA¡?ò %@¨¢?îI0@>8¢?Í{.@þó¢?ao(@¢ À?ÂÉ @]¿?^@âj¹?ÌŽ@¤N¶?ëa @Ê‹µ?6w @(„±?U» @T¿­?­ @•«¬?bn@nu®?%S@訯?Û@Éà®?ªÙ@\(­?bÞ@®?8™ @ mª?íµ(@·Ö§?¯-@ƒ §?-2@ÜJ¤?‡ 0@ºI¥?ø™-@Åɤ?T,@‘¤?ê,@@7¢?b‡*@ty¢?š(@‡Û£?Æ-,@%À¤?“Û.@s–¤?–,,@b¤?C%#@á+£?¾!@fË¡?öæ#@± ?£(@L3¡?f$@“¡?Q#@xI¢?_.@ߢ?o.@ù¤?}P%@WXÁ?Üò@.¾?™@­Á¶?|³@ž¶?Ä«@ J´?øã@e@¯?¼ @¾´­?žQ@˵®?tg@/ö¯?n5@Û(°? ¯@È­?^j@®?’s@›‡«?8ó%@FZ¨?–s-@C†¨?¥7.@Ú­¥?¶ª1@\ ¥?yµ0@£m¥?øä-@cõ£?zN,@V­¢?KÃ*@ã¢?k5*@¯K£?NÃ,@;T¤?ûI0@Õô¥?Jí,@Ž¥?l&@<ÿ¤?Gy#@)€£?­¹%@+ù¡?c[)@fó ?e&%@3µ¢?Ä#@+c¢?ÇŸ,@BÈ£?ž,/@÷ã¤?j @ýôÀ?ƒÔ@wôº?C @û¸?añ@ ¶?„W@]0±?x@)¯?Öo@ø®®? ,@CQ±?Œ@“b±?ÂY@N$¯?ìE@ô{®?êå@÷’¬?–Å"@Æë©?n)+@Rý¨?¡˜,@F?¦?ÙÉ0@Ä”¦?º3@†1¦?tq/@1›¤? ž,@î}£?„C)@^½£?/¬)@Ej¤?«--@óü£?â÷0@>%¥?p.@¦?”J)@bè¥?P%@ª¤?¸™'@D¢?bl,@Ú2¡?Äj&@©h¢?w%@Oó¢?qt+@îú£?ýû-@òâ¤?— @&ç¾?@U÷º?\ @çr¶?i³@²?ý@í!°?sÂ@ˆª¯?P@`²?\@I²?—@Oä°?K@L×®?©@úú®?«Y!@Yã«?oþ(@íĨ?„,@^P§?,í/@}t§?¤0@K0¦?6‹.@MY¥?k,@㥤?;{&@­ü£?Ë(@¢„¤?b§*@gU¥?65/@9&¥?,0/@>‰¥?Ìå,@žw¥?Zý&@…1¥?*ñ'@å¤?œ.@>¼¡?{(@5 ¡?%'@%±¢?‡6*@£y¤?>,@²™¤?þÅ @˜¡¼?Ñ@ú«·?z‡@"A´?eø@Cɰ?Ò@°\¯?¹Ò@ðI²?ù´@d«³?y7@í?±?Ä@Ü„¯?î@ìY¯?Ø@¿x­?¦®+@ô©©?% ,@´¨?}.@©¨?ßu/@šv¦?®./@%Ú¥?}:+@d¥?íB*@y¤?Ê‘%@ ¨£? )@ªS¥?üA+@ïͦ?‚<,@‰¦? ,@BÍ¥?Ê*@ܦ?èh)@¥M¥?«Õ+@1<£?ï¢)@ÏL¢?³ %@¿¸¢?Í6)@5|¤?i/-@5D¤?93"@´Â¹?J@\4µ?©é@¥L²?@µ+±?¡@o¾²?@˜’³?)"@ZQ²?½4@ Q¯?q”!@?Ö¯?ºÒ@f¯?Óu*@à ¬?Œß-@"ª?•>3@€ø¨?~91@.â¦?I—0@ží¥?7+@åe¥?"­,@o¤?&„'@÷é£?&@Zc¤?_'@oÖ¥?FU)@’„¦?p™,@Ù@¦?Ln+@Ô’¦?€)@Hy¥?€í+@M¤?EÃ)@™o£?##@´m£?e¢&@Y±£? /@¿½¤?Û"@­s¶?'*@ç9³?Hf@ù²?¿Ë@ý6´?ís @%A³?„@³?Mo@N<¯?Mü"@—°?äò @ü±?iŸ$@„®?Jm0@Ï@«?˜ 8@¸Ï©?ñi7@+¨?x2@¨¦?@Y.@„Æ¥?ì-@z1¥?Úl*@#¥?S¨%@ÓÛ¤? 1%@§D¥?ž'@†V¦?#½*@vÔ¦?„c+@×÷¥?pÊ)@P’¥?0+@¥´¤?7û)@ÃU¤?[s%@Yˆ¤?'&@¤££?˜+@»§¥?ø¦'@uˆ´?¦‘@_§´?ð&@ 6¶?W‚"@_É´?„ª@ é³?ÇC @l±?´#@*Y±?(Ú$@ÔM±?ž@!@„ð®?¼ .@•u¬?çl8@€ºª?qÆ7@<„©? 7@ºu§?aA3@9h¥?Vp0@ˆç¤?…,@Ê¥?“b'@RÂ¥?– %@–ÿ¥?«Ú&@§?5*@øÂ§?*@’4¨?üX*@Ò§?.’)@Ô@§?WÝ+@ƒê¥?XM3@¿O¦?#[5@dµ?ù~%@ßí²?¡ #@Ë4±? +)@T³?/',@ÓG±?À 1@wö¬?÷Ù?@Ήª?.V>@Ü «?b =@Fè?JF:@¬‘§?3@u£¨?(ô-@l©? N.@Ø ©?‚*@õƒ©?åt$@» ¨?Yc&@€F¨?Qæ*@þ§?Ò"+@ ¨?Bê*@{¨?ò‹*@ g¨?§V(@ø—¦?{ü.@œ¥?dÆ1@!³? &@ʲ?)*@#P´?øY/@,e³?5Ì.@%—®?[ A@?ª?h»@@ÁÖª?/A@­ò©?É@;@¥¶¨?âÓ4@¿©?²S.@æ*©?)b+@ ÷¨?Í(@¹p©?Ú?$@«þ¨?/Ï!@óõ§?R(@Æ­¨?µÂ)@é³§?¦%,@ƶ§?b(@8–¨?1–)@æË¦?%J+@"¤?ë~/@¼L²?¦,@óˆ´?²1@/µ?ò/@$ã®?ðîA@·%¬?`GC@Éüª?‰D@]í©?:[=@Žÿ©?ùb2@¾ú©?›×,@òæ©?H)@Õ·©?©ö%@䱩?‘ü#@€(©?k}!@ʧ?` %@r§?¯(@æí¦?â›'@.§?0‡'@¼y§?¡'@Æ.¦?³š)@ØZ¤?Ÿk,@¦^´?+´4@`¥µ?`3@-+°?uœ?@Í(­?–¶C@ÚZ«?$3G@‚Ϊ?ÈR?@bÓª?dE3@·Ø©?p°-@ºª©?‘½'@sª?.J$@”=ª?O"@ì©?°"@3B§?Jf#@¬>§? X)@M_§?`(@³²¦?5'@DŦ?Šv(@¹q¥?¬è)@Ac¤?¸=+@^Å´?[m3@‰²?NB9@f­?é¡C@â1«?H@¸«?a?@:Óª?¼o5@ß©?²Û.@“¾©?2é'@:ª?\#@EDª?%#@%W©?Ó.#@Ë §?Iu$@2§?™p)@ÿ §?uÆ'@¤G¦?D\&@%ª¦?d2*@’ü¥?ð±*@¹Ž¤?^A,@Xi³?5@"y®?º(C@3‰«?¸bH@®,«?RéD@«>«?#f6@Ǫ?‹82@lð©?Ï%+@¼©?í¬%@ümª?a<%@JQ©?ø»'@"]¨?Ù'@>®§?d¬(@`é¦?¢l*@ µ¦?ÚQ'@4¦?v(@—Î¥?=w*@„¤?Á<-@Û°¯?¨D@äk«?,I@ «?otH@×^¬? ;;@Zÿ©?Íç1@Hó©?J»,@gà¨?)@`„©?g>(@D•©?|™)@]ƒ¨?cÈ(@ï‘§? ä*@^ä¦?õG-@i]¦?§*@îô¥?ùÂ(@ß<¥?3i*@ý\¥?[-@Ö’«?$õE@ñ&«?öJ@ï«?õf@@Ú ª?²î3@ˆ„ª?0@©è¨?a0-@©? +@ºy©?!€+@Ï%©?Šá)@¶¨?³+@.§?æ/@©¦?ÆŒ,@ßQ¦?Ùo)@ §¥?k*@X¹¥?·1,@ã^«?ÌŸJ@&[«?ð÷C@òª?ã;5@£’ª?G|1@l˜ª?±‰-@TR©?T‹-@4X©?( -@0[©?çb,@î§?®n-@O§?}s/@ú–¦?+ó-@G¦?¾h+@Ë¥?Ʋ*@ßÏ¥?ü©*@¤I«?þ?J@5«?. ;@`ª?A'0@þàª?›/@žêª?û-@˜@©?Wd.@ß©?åè.@Èë§?ÓŽ0@®z§?þT/@d½¦?Jô-@/X¦?ÝÏ,@Dë¦?D4*@$Z¦?Eø(@I«?ý=@Qª?–.@b«?£j0@]«?â90@qª??.@¬o©?:0@A¨?¯Ù2@î8§?R“3@E§?{p1@í¦?‘O/@DQ§?¬"*@q©¦?Ñá*@°Ñª?(¯4@Ì««?Ú.@–ˆ«?Öÿ1@§ª?ä/@W?ª?ß3@Ì#©?è²5@œ/¨?¤E9@©~§?²5@^ɦ?ô1@Þ|¦?ax,@Ǧ?Ï„+@Ú`«?˜A/@T ¬?É0@„Ȫ?è 3@wqª?ýõ6@1yª?h$:@«©?Ž=@ ³¨?+:@SЧ?5n5@[2¦?‰Ø1@ܦ?´-@ŽÑ«?fp/@Ȳ«?|–5@ý$«?éŸ9@Ø«?Љ>@ª? Æ?@4ª?þˆ>@š¹¨?X:@$“¦?Ñð6@›+¦?úÐ0@5‘¬?ìÞ5@ &¬?¾M>@Qò«?‚A@ ñª?ŒB@’œª?B@éi©?þ>@èÀ§?ì†<@§?¸ 5@›­?2Ù>@$­?AÏB@ÎF«?ÊØD@²\ª?r\B@/©?Ä´?@L¢¨?÷È>@h;¨?ð:@­?ÕC@›Ç«?öC@‰ñ©?ÐA@Ì©?È?@7À¨?òÝ>@-°¨?HÎ;@ÎV¬?oqB@ü,ª?WÒ@@; ©?Þj>@Â`¨?Za=@Ç$©?¦Û<@¶ª?Î @@ãD©?¤‘<@«U¨?)D;@c=¨?Gj;@:Ü©?@@‘¨?É9@Žf§?¶9@©?à‘=@©u§?Éí9@#@¨?¥û;@ÜÆ¼?*!@>©»?ˆø@)ë¸?¥@nm¸?“@4K¸?ú @4óµ?|$@µ?“Ï+@޵?ü2@£Ñ³?¬f3@°?Òt+@®?V %@<}­?ß? @n¯¬?z=$@—å©?‘8%@\p¨?ÌÞ%@Ñ/§?ë—(@€j¨?b.@…(©?“1@BH©?y6@Ž;ª?Ð<@öì©?$P@@£†©?D@‘e§?éB@±…¥?'UB@½ä¤?‰E@PÉ£?v–H@Í££? ÿC@÷›¢?t_?@Å•¡?×…@@ùó ?®Ù?@Á"¡? !=@¨Á¡?A@@ ¡?ûxF@Æ™¡?@jB@Dq¡?lGC@’`¢?,F@¯¡?+>I@fÿ¡?t!G@ôƒ¢?´âG@k¡?’ÜG@¿j ?ŒÏC@w ?£B@!£ ?ÿÔB@V6¡?;?@ô.¢?ÁÌ?@nÏ¡?Dˆ=@›©¡?÷G9@Þí ?ª73@¯Q ?`ö.@ÍŸ?â¸*@JVŸ?Ë )@ü¶Ÿ?R™0@| ¡?aV4@^Ì¢?œ)6@Á§¢? 3@^¢?† 5@> »?¸‰@‡¹?o‹@ ·?åË@ĸ?{R@`u·?]½#@lC¶?ü&&@›J¶?£-0@zÿµ?—º7@+p²?;1@¯?Ík&@¢®?XÄ!@×U­?ŸÇ#@2¬? %@O «?ïí#@´©?w’#@Èï¨?#%@Ë3¨?c(@¨?Éc-@储?¡A4@œk¨?e<8@˜^©?”ó=@òñ¨?Í;@@ì¨?~×@@/ú§?}‘@@ã}¦?‘VA@5œ¤?t«@@ü¥?„v=@ú=£?8A>@@V¢?+Ã<@™¡?¶o:@²ê¡?«Õ9@æL¢?c9F@OÜ¡?D@¶‘¡?QKD@V¿¡?“cE@V¢?¿iG@¯¢?µLI@TA¢?lQI@ª*¢?mÛG@<¡?kB@³ª¡?x>@}P¡?ÆV?@Ji¡?=M;@Eõ¡?Xe=@nù¡?¶D@@«2¢?‰8@„¨¡?UQ0@BÝ ? Ó*@wˆŸ?%Ð'@œÏ ?CL&@Ž9¡?lÀ(@Óÿ¡?ƒ0@Qü¢?`þ3@œ0£?N3@Å*¢?Ô0@╹?¥ò@¤Ê¸?LÓ@cÞ·?™]@X·?kT"@A>·?´Æ$@.Š·?ø€)@ ç·?s×1@õC¶?µ2@àx²?Îç,@²¢°?h÷'@1ì®?Š%@Þ°®?øa$@®Á¬?·"@ó«?Ý "@” «?SQ!@_÷¨?Ä(@ߨ?)@ö§?vO*@§? ì*@t¨?iœ1@ )©?Šz6@£d©?Ï[@@ »©?ÏÊ@@MŨ?ô9@@•Ô¦?¢ä>@Ø ¦?ar=@e,¥?8™>@3r¤?~c;@$Ô¢?Dñ6@ Ï¢?‘?<@î£?4WA@»¥£?C´@@n–¢?Åä>@–Ý¡?Þ¼A@¡@¢?ÝyE@™$¢?†E@ô)¢?À}F@ €¢?»&E@Øh¢?HzB@”{¢?t>@æ%¢?zf:@7ç¡?„µ=@0¢?@:9@‡m¢?’Ÿ7@p™¢?"¿0@Ýã¡?Ïg*@²9¢?î|&@"ý ?o&@]›¡?mØ$@8þ¢?‹o'@Œû¢?%Œ,@µI£?83@Vô£?ë=4@ܤ?sn0@õº?†@îR¹?KM@ᢷ?3B@²à·?|ù!@ÔÆ·?„Z&@Œk·?¢û+@€ó·?? 2@ âµ?3Ä4@}_³?¨÷-@R7±?32'@h¼¯?Ò±$@çü®?y°"@S&®?:À#@º<¬?â%@;ª?gÚ)@Fc©?(@Ý&§?šs$@‘À¦?Üß"@- §?„)@·¨?¨§0@œY©?ä8@x¸©?¸ž?@ïf©?B@LI¨?X=@SW§?у<@gî¦?'s>@ç­¥?7ñ;@ìi¤?‚‹8@,¤?¥Œ:@;˜¤?¡Ï;@cu£?¿=@=â?ÚÙ<@û‡¢?´Â>@1ë¢?u£B@Ê¥¢?AB@jž¢?šŽD@l†£?_²?@Ú'£?£8@΢? <:@Õë¢?õÐ6@xr¢?W—5@_S¢?Ôb2@åb£?‡0@Jw¢?Å-@/¢?q×(@™c¢?ð$@ ¢?êŸ&@.ƒ¢?^û%@æË£?Îd'@ùÙ¤?™Q*@0é¤?ÞÙ/@vê¤?‡À5@ø ¤?C:1@’Ϲ?]ç@^¹?Rì@\ʸ?Á/@u¸¸?­›"@$H·?µn#@$O¶?ˆÉ+@Â7¶?â2@§æµ?á©1@S³?Ï-@%x±?')@ùа?¬Ä&@“L¯?·à&@Œ‡¬? ˆ(@CA«?»A*@ „ª?ùØ%@·¾¨?ÒÑ"@‹l¨?+Ï"@Ó6¨?¿Y#@0N¨?O,@í©?¼0@ X©?gM6@¨ª?”K;@ª`©?‰9@Oŧ?~z:@5¸§? ¨8@ê¦?Þ$9@˦¥?_6@Ó3¥?3½8@#ò¥?èÛ6@#Ú¤?(^;@ÒÕ£?r8=@•»£?=´;@sê£?!_?@¤?n²@@ ã£?h>@“.£?¨á7@Í£?ìJ5@c£?à‹5@Ãü¢?"5@ŽË¢?J0@î#¢?Vä,@D4£?×â*@d˜¢?ó‹)@…ñ¡?ç#@É¢?«i"@„ù¢?/¡$@)í£?‘ã#@v8¤?Nc'@¢{¥?°l*@3G¦?>Ë+@@õ¥?qÖ0@ð¥?ˆK2@Ž!»?´›@ܺ? <@âAº?þœ@&·?s!@¹Çµ? '#@õþ´?é)@È‚µ?J÷0@æÛµ?ÚÎ3@_г??1@±?Ð#,@k…®?Å,@;N®?›*@V­?š«(@Öý«?µ '@WѪ?j×#@wÕª?oæ"@Ý.ª? é"@W©?+/&@Í€¨?À*@ܶ¨?O>1@bª¨?˜a5@]è¨?Y6@œ¦§?*R8@ê–§?õw8@æa§?"7@×à¥?¢3@Nã¥?¥3@¨Ö¥?N 4@‡œ¥?Ф9@ëq¥?×d8@N¥?tq9@øè¤?—ˆ:@Îÿ¤?g;@Ú[¤?–f9@—t£?ÍÒ4@…†£?ô–4@ç×£?™Ì0@_Ï£?Ún1@øS£?g.,@f¢?J0)@V¢?›&@Á£?5í&@‡*¢?ÝŠ#@Ô·£?ì]#@€Q£?l$@çn¤?)—$@ãϤ?ÿò'@“«¥?†ü)@Ѧ?&")@NI¦?±B.@O¶¥?•2@qf¼?Í@Š»?ј!@ž¹?}‹@s¶?ô @Ñ´?Ds @R1´?˜(@Àµ? X0@D°´?^È5@g<±?$—1@OK¯?c.@iÆ®?Ã+@&–¬? Þ*@¶´¬?<(@Ç­?a&@D¬?Ÿ{#@ºî«?"@V«ª?¤Õ"@Ò©?Oã#@÷]¨?ýu,@—ا?Áí*@ 6¨?ÐÙ,@xB¨?‰33@}̨?k4@ˆ)§?èÿ1@À5¦?A/@q_¦?«Á1@›¥?\2@žj¥?Xü2@m0¦?ÿ.@»¦?Óé/@£+¦?Mö3@üŸ¥?©á5@FÏ¥??Ê0@y÷¤?7/2@®£?r¹/@íî£?‘.@”²£?C-@šC¤?Ñ*@à£?\¨'@·)£?•%@§ £?J'@-í¢?±ž%@¡±£?Ä $@Cc¤?š’%@$¤?;R&@A¤?)@Àd¥?üì*@Ή¥?ê)@n†¥?BÆ-@«q¦?˸1@·¬»?„½@.ޏ?@:ª¶?Ÿ@Ñò´?Þ“@"ó?41 @P§´?Å<*@l´?Ë5@hj²?:5@Æç°?!u1@$©®?•í-@¯Ã¬?%ó*@t<¬?ø(@=E®?þ'@Úw­?_%@9¬?ö‡%@›«?œB%@´[©?(4&@»Ý¨?BF'@5ï§?—'@ÞE§?ð&@Yñ§?ë0,@À©?O0@ ¨?ˆÈ*@ a¦?;Y+@‰¨¦?Õ¯-@„Ÿ¦?Ê”-@{K¦?.@A²¥?D.@–s¦?Óÿ)@èÏ¥?De*@팥?+s,@qߥ?|+@(x¥?Àî,@K,¥?Q,@aä£?¡‹)@õ¼¤?á¾(@xˆ¥?Åê%@íü¤?? &@Òè£?%#@vú£?×;&@()¤?7'@ÓØ£?wà@Ê"¥?Wà#@`w¥?Ñ$'@ô§¥?ô¤(@&é¥?VJ,@ ×¥?%M+@®¡¥?›/@.ç¦?p»1@Œ…¹?K@™·?’­@"µ?º@½á³?[+@B7³?lP"@Ò³?Áí+@6#³?»B4@Œn²?žM5@0’°?œŽ1@È\­?‘m-@?å«?–Õ*@)V­?~ý'@tЭ?g(@’ͬ?~!(@b­«?ñ‚'@»Ž©?^'@²W©?–†(@¬Ø¨?)A&@:,§?%'@tŧ?û€*@¡©?¯÷*@ú„¨?%‚(@Oã§?ß9*@É~¦?ý?*@Þ§?T.)@µv¦?* '@Ù5¦?AB)@ܹ¥?ï…&@? ¦?O#@à]¦?º'@öU¦?Yº%@íJ¦?3u'@œÛ¦?›¤&@Úƒ¥?¸%@{õ¥?Ðø"@E¦? „"@ºZ§?±%@{B¥?Iþ%@àÖ¤?á“$@5q¥?Z(@c@¥?L…%@³¥?®Ñ#@ö¦?i”%@™<§??ñ'@Þú¦?yS)@»¦?ƒ:.@ ´¦?nt0@”®§?¢l0@[g¸?Ô@Vµ?½Æ@Ã8³?ª@¾‚±?‡Ó@Ú¾°?·I#@̲?!C-@@³?æ97@dB²?…Ü7@÷$¯?Bô3@õ¬?ä.@F&­?MÌ(@>D®?ñª&@(­?f]*@î¬?•+@qbª?Éÿ)@_ª?~/*@„¨?¤ƒ&@èi¨?ëª%@ ¨?ë )@ú`¨?†ë'@_¨?š(&@톩?{`'@v§?8•(@ˆ¯¦?Øi'@¢§?+Ç%@å¥?êë%@¢î¥?%@ÅÒ¥?Ý#!@ë¦?4##@6½§?‡™"@x§?Qœ%@9ë§?1Ü#@ÁÀ§?øS$@zl§?9, @„â§?…µ@Žb¨?"@é\§?v°%@e4¦?<\"@°;¦?Z%'@'¦?ù'@®€¦?ø’$@üº§?ì9$@!Ѝ?Z‘&@ãh§? (@Ý™§?á½-@G=§?ÓÒ0@þЧ?ñ—1@’2µ?h@'+³?¶½@ϰ?Âè@ï¯?À~@¶Ã¯?½…%@û ±?CÒ1@ýR²?&3:@¹j±?*´9@窮?E3@®?œW*@îý¯?(…'@Ï;¯?¢,*@ÖR­?­ .@W¨«?GÁ,@H¯ª?Ë*@H´©?ÒT(@ø(ª?‚˜&@j¨?’{(@Á§?þ &@,\¨?Y&@Òª?ïï%@÷¥¨?[ (@„§?/æ&@¶¦?å;"@‡ø¥?&""@…¦?& %@û¨¦?ˆ¾!@¾Í¦?B"@/§¨?;!@ðL¨? º#@F°§?‘€%@/¨?Ä3%@ì+§?Œú#@7«§?nM!@t©?!@‹ã¨?ë$@¸‰§?Ÿ±&@·§?-À'@[§?„L)@ºŒ¦?´=%@̨?™—#@Dº©?-G'@Uq¨?‚’'@6°¨?Ÿ,@—¨?#M.@›œ¨?¬V0@Üu³?žƒ@Ýê°?ÀN@B°??W@Bµ®?íŠ @z¯?÷F*@kâ°?ae4@-Ó±?jZ:@þ6±?¹ž8@ó°?L0@T<°?~k*@õ²¯?>o+@óQ®?‹f.@U)­?“k.@„¬?¼-@ZK«?ÒC*@b«?‘)@/ª?qà'@ÿV¨?(&@à–¨?7%@õ@ª?FË%@9é?ľ'@ÃĨ?"h$@î̦?-÷"@Mj§?»"@Wܧ?Aa$@Mî§?Û7#@’A§?q"@}L©?°A!@vÚ©?^f"@»¨?+'@Óý¨?jº%@Ð@¨?#è$@ŧ?†Þ%@¬ƒ¨?CÂ!@ ¨?£&@þ}§?CÈ)@±"©?Rå(@®ú¨?¼(@1ç?6U&@—o¨?ÆÆ%@Ÿq©?©J)@Ü»©?&)@ ©?•÷*@³`©? ±,@–½©?• 2@Á±?q7@•6°? Á@I®¯? @TÚ®?´þ#@¯?–‡,@6ó°?S4@”-²?x9@%¿±?0…4@ ó°?p-@ôǰ?.*.@óX¯?'/@P´®?í0@>ÿ¬?Á;1@I¬?,Ú+@¬?Q[(@ «?­(@[­©?—?%@‰ê©?K(&@.Vª?Ó%@2dª?’¶$@,„©?&] @o-¨?~!@³Q¨?o"@7©?Ni!@Yͨ?#$@sV¨?"@^Fª? 8"@E«?žd"@í§©?ÒR%@{Ó©?…&@ÂEª?çl%@õ€©?áŒ&@}ÿ¨?tî!@©¨?b#@À©?ÒŽ(@ ‘©?£Ü)@‹ó©?Þ+@—£©?_¸(@ü ©?d2*@à ©?,@—ö©?¤„*@Úª?Î/+@ìu©?Äv-@Úª?ó2@ò3±?׋@u?¯?3±@â¯?#o!@äå®?–&%@Š’¯?y,@û²?‘m5@¡²?µ–6@ãT±? E2@”`°?É/@¼•¯?+1@h¯?–»/@Al®?ƺ0@~û¬?™ +@{ü¬?B(@…«?›x)@[.ª?­%@›™ª?Ĺ%@Úd«? &(@"{«? &@…4«?‘f@⫨?ÿ^@Wþ¨?s@ÿª?Ä~#@’„ª?aH!@°rª?” "@7 «?¡}$@•«?›%@œ[«?÷y$@R?«?;®%@H«??ˆ%@”¾«?fw'@Y(ª?Íc%@‰‹©?«|%@î¨?mB&@g©?]4(@•~ª? ¨+@Z`ª?„*@ZŽª?u¦*@ré©?›*@‹‰ª?Ò*@ô«? N,@¢ª?Ù0@þ™©?Ž2@¢ê¯?ª @8°?m@ÜL®?RŽ@X&®?Ê»&@¨7°?D/@z²?V¡6@€²?g7@üº°?³N5@A…¯?{“3@aL¯?·Ý2@×®? §0@úL®?¬Î*@+­?E*@ø«?'¾)@‚™©?È((@n«?ò–(@Ⱥ«?¾*@ û¬?í…'@í%¬?Xƒ!@ô©?Gs@¾o©?Y2@óIª?}"@w(¬?Ñ´ @ ¬?õ^"@2 ¬?­$@ƒ0¬?-&@TÁ«?åÆ'@¬?OÝ%@Bf¬?8u&@áh­?¾'@•ú¬?GÅ(@¼¨ª?Ù%)@ù©?«()@ ¨?T£*@k ©?‰*@ÿʪ?[+@eVª?O*@^0ª?Ló)@åª?¥™*@.ʪ?á,@¾:ª?±W/@ª?5å0@ư?Ã@%Ú®?ƒr@x®?IÛ"@e1¯?—ì)@Ȱ?ú0@wŸ±?­Ð7@S±±?ŽÆ8@íé¯?"T5@ª°?y1@Þ®?ø9.@]¯?>+@cû­?Ð+@E‡¬?Žr)@×Ë©?Ø­(@1ª?Òj+@D¬?*+@ͱ­?ø'@Ð`¬?ÃÆ#@åu«?4"@‚%«?ï !@M(«?Ÿ"@WŸ¬?Ìþ"@ÈT­?7½!@ÃD­?$£#@2 ­?^%@‰Q¬?”&@‹+¬?9Ó'@dé«?È'@(Ô­?ÄX&@¹}­?e!)@™«?³+@åú©?/x*@ꈨ?°Ó(@ª©?q'(@n¬?¥½(@Ø„ª?Ý)@HĪ?#[)@欪?À+@«?Gœ)@Óaª?@o,@y«?‹â/@-K®?ôŒ@3¼­?áf@aÞ­?ÌF$@þZ®?'¨*@‰ø®?ªä1@S°?"E6@q°?+A5@ìs¯?±0@Ë&¯?þÈ,@o¯?^,@V¦®?Zú+@7í?N8*@ì¬?&@'@^«?Ô.-@a~­?¸Ù+@Šþ­?³a'@Žî«?„|#@& ¬?7&@Ž ­?$@Ų­?¹"@z­?Ôj#@#I­?Nˆ$@TŠ­?µ%@|û­?¼$@l!­?©«$@}4­?<à&@Y’¬?—Ó'@í)­?ò~'@žp­?)@Jð«?Ä%)@oEª?Ï+@˜Û©?B&@E6ª?õ%@ÞÚ¬?÷¥(@’/¬?áH)@;¬?‘9,@YĪ?ú{,@Š}ª?P¤+@$B«?õ¦+@i4ª?-@7­?„ý@/­?C@/ö¬?ºW#@÷c­?¦Ó(@d®?+÷/@䈯?§À/@ßܯ?ß/@ßU®?|@/@»æ®?—G-@êì¯?Þa-@m¯?yR)@t­®?ú‚*@“ì­?*‡-@#ó®?./-@8‹¯?–&@—®?l«#@×F®?á3'@¶‹®?Q!'@pñ®?5è#@x®?¼ö"@Yt®?Yt%@Kô­?Ц'@’¹­??Ï$@X‰­?J¤%@÷n­?ý6%@¶×¬?ž'@uð¬?Ê'@í<¬?—ó'@h·«?iN'@wª? A*@Ú«?/0'@9Õª?Ý}&@áë¬?q*@Ðo¬?3©*@|í«? ˜,@Ý4«?>p-@˜Ëª?ø-@$ª«?yó,@Cµª?ŒH-@o·«?nr@a­«?DP!@¦J¬?ù3$@;­?ûÅ&@ú&®?~L)@¼^®?°4*@ 1®?§ë-@Ò®?@Ð+@ }°?’-@°R°?¶E)@þ™¯?Lü(@+°?ði*@"“°?e*@/J°?ÜD%@Ðï?×'@eO°?Ð'@ÚÀ°?,j'@LF°?fð%@Ư?êu#@sß®?3{$@Z´­?S&@þ!­?8¿&@O&­?‘»$@=d­?ä¦#@ž­?%H$@àƒ¬?Ù %@ f¬?nÃ%@l¬?Mˆ%@ßj«?¹(@;†«?¥*@3Š«?=b(@Aެ?Ý+@ B¬? ï*@Ãv«? Í+@!f«?ô"-@™ñª?~ ,@œ¬?õ]+@]À«?óo+@A!«?‘@Í«?^À!@¤k«?%@ꎬ?/'@Ó¯­?^p'@0Э?ðk)@â\­?4ò(@™¯?&»)@Aí¯?Æ™%@2:°?·¹%@;±?Ѱ(@Ðh±?¹)@XÔ°?||&@zH°?™L'@ ×°?,ñ$@Þ°?¥Ñ$@,º°?žQ$@çÆ°?D~#@eh¯?.®!@-Э?u#@0ã­?QÖ"@ή? …%@Õ ®?’&!@x­¬?ÿÔ@_™¬?µŸ"@è!¬?«÷#@Cج?¤I"@ñá«?Ìb$@¼y«?H '@¢®ª?lº&@ž(«?Ë (@HE«?ÓL(@‡%«?õj&@`L«?ï;)@«?ï¼+@x&¬?«×(@§6¬?EÔ(@{‚©? í@Pª?®e"@U/«?¸x%@ð¬?u%&@R|­?T$$@Há¬?×#@©¹®?ÇH$@¶À¯?ø~#@ะ?Ñ%!@óé±?€Ÿ%@Í#±?Z~&@R±?;è&@¿±?èL%@ÄA±?ž#@¶°?}f!@³^°?ë!@̰?t®#@¯ø®?üW @î®?¢@"@æÁ­?¹!@¹À­?Ôý @D·­?á@M}­?ÞC@–î¬?¢¡@û}¬?$Ô@Ù©¬?Ò¤@½¬?o0 @¨A«?„!@Žª?ýõ%@¤ª?+<%@÷°«?Q¡$@åJ«?kù"@B«?¢!#@¤»ª?E%@*\«?=&@6.¬?¸Ü'@lª?Bk@;jª?Â*!@눫?ÞQ!@Ü0¬?Ö@¡…¬?ð@í­?ùÙ @s¯?i”#@©y°?Õ"@¨T±?÷k#@q±?í"@…DZ?ù%@?±?°”#@F·°?tã"@zë¯?}"@þ¿°?ÖK@K±?ê¦@ÆW®?Ù @ßÈ­?‘… @'—­?Ä@lÕ­?®I @¶P­?­?áw@eë¬?ì×@×á¬?@½¬?~Ý@§4«?#‚@m=«?P¯@l«ª?]@STª?I›@A#«?Ý@ˆ«?GÙ@e§ª?ÿ0@dª?xT@íþ«?8Ë@¼Ð¬?ªÖ@Í;®?îà@ÖÊ®?zö@~®?¦2@¨«®?·@AÑ®?–¥@ܤ¯?Šš@[°?VU@ÂÁ°?š@ö_±?/]@Ý1°?À’@ëG°?À#@œ2°?<Ü@2¡®?žs@°®?Ú@ö´­?ùC @qí¬?÷“@[H¬?J{@R˜®?;,@îv­?í°@®ô«?[ @^ª?UÈ@—¿ª?û=@ä«?FŒ@øÞ«?¶@«?°1@äúª?&Ê@{±ª?5@«?Àþ@繬?ë<@*<­?Jç@‹`­?ÀD@ª…­?aÁ@y‰­?ƒ @ë÷­?eo@‡Ž¯? @a°?A4@]­°?Ò@ƒ°?J‡ @’¯?=i @ñݯ?üü @$Œ¯?âÄ @7ç®?q— @í®?tŒ @Z4®?-Ö @3¬?²@Äݬ?ؤ@á ®?NÞ@•«?çÓ@Òÿ¨?ˆ@Ù›ª?:Í@Ѽª?0+@î7¬?Êf@¹è«?ó~@¶ «?¸¢@Ähª?0O@ ­ª?Œ@s)­?dA@¹g¬?=ï@Úά?¶E@˜|¬?1@ãŬ?þÀ@Ï@®? @ê)¯? ï@ä°?Gè @^°? @¬â®? + @éä¯?@"@v»°?Y@ @Ͱ? Ä @–€®?¼½@pú®?ƒ+@JZ­?Ý @cø«?„ø@ù‹¬?@æÞ«?¿Ü@{ò©?d@¿C«?žF@Š8«?<Ž@ÎY¬?+é@z¬?§I@ fª?Qz@ª?ýZ@A…«?a<@¡­?ÇÛ@ª«?¶@¼t«?U @³ª?.¼@*ú¬?¸Ã @ÆÈ®?ÏÙ @r†¯?:ˆ @N/¯?Ë@¸J°?Pƒ@nϰ?à]@œË±?<¦ @Ú±?Z @û„°?‘×@¿s¯?š@$¼­?|Y @º(¬?ý @Œïª?Xt@½¬?Ç7@CÙª?NÑ@› ¬?¥@d«?=ê@¬?0[@_¬? e@çPª?ìo@iª?Û;@„÷«?õ @ ®?…+@±®©?ôï@g~©?Á© @``«?¸Ú @ß@­?ñ @Y ¯?wŠ @Ï8¯?`~ @ó°?Óå @sé¯?c @ÍŒ±?G¥ @¿±?Õj @±?«¶@99°?:@Q®?8Q @è<¬?z™@Š]«?Æ{@Óö«?ƒo@ÖÙ«?T@qø«?R!@J¬?hk@—)¬?—g@ÑÀ«?ó@Äöª?ߟ@i«?L|@ÑY¬?Äò@îI®? Þ@í—©?”@¦zª?h¸ @xA¬?l @ø™­?‘t @‹U®?PÞ @¢°?p @q°?¸ @…O°?з @e°?äs @ͯ?8÷@Ì„¯?2 @'®?.@þ'­?A@9q«?<*@¤¦¬?ÄÅ@½„¬?(¥!@œ¬?Ao"@S’¬?q"@{æ«?z–"@‹ã¬?Úc@œH¬?·Ô@Þ«?øþ@¢‹­?·@z”¯?´½@<̪?ò[@ʤ¬?Ñ» @Ìm­?uÐ @À¯?:‰@#z°?4_ @nh¯?Ûæ @M#°?ÑŠ @Dz¯?öu @ÌV¯?ø @ø&¯?2@¥®?i@â½­?ô@@w˜¬?]B@ÃÀ«?¨Ž!@‡¬?˜h!@­¾¬?Q$@`R­?µÒ!@Z|¬?£X#@xl¬?' @J ¬?‡%@_Í«?–ò@2t­?‡J@­Þ®?Îz@V¬?%@³®?8) @{¯?ÆP@wc¯?=‹ @•…®?Ä÷ @V˜¯?»—@þͯ?}ù@Qƒ®?lB@‚Ì®?;Œ@¹G®?¸‘@$®? @s9®?\s#@)þ«?s%@,Ô«?‰Þ!@¿s­?à#@õ(­?r®#@@ ­?£ß"@Ƭ?•Ã@t¬«?­Ü@x¨«?/@šÝ­?7:@+¯?j¦@~­?Ι@À®?Ú’@@¯?}À@ã×­?ªâ @8'®?.3@ŸP¯?ÐH@ë®?cÕ@o®?Ç—@Zº®?ô@£;®?„Z!@%Ò­?ú$'@»”¬?ÁX'@ÝE«?á#@¼¤¬?­$@è¬?±%@Ë_¬?'"%@¿¼«?€¥@ ««?pí@”ë«?;.@^™­?} @"g¯?¯ @ˆ¬?Òn@ç¬? @í±­?Gå@«.­?5Í@5®?lÍ@<Þ®?ƒ}@ñÚ®?a^@©¯?år#@Óÿ®?:Å$@ÍÔ­?fÓ'@Ðý¬?*!&@Ùñ«?«¡$@D«?%A$@ùm¬?Ít$@X¬?ÑÐ#@®?«?Š @MO«?ô^@ó3«?z@;µ¬?@V ®?5õ@âä«?¸q@l`¬?<@Ík­?-@E¯?†—@šQ¯?f÷ @±¯?É_"@¾4®?I)@8 ®?ýÕ)@Åá¬?¯+@™Î¬?€'@ÔÀ¬?v%@Ë`«?*´'@uI¬?oA&@e~¬?Ë!@B÷«?}Q@ ¬?^@‚«?U|@Är¬?‘‹ @_Ò­?E@ó«?ÑÏ@„x­?œl@*|¯?|ê@„°?ÝD$@lK¯?‹+@Ó¡­?›-@E’¬?íu1@kýª?Z0@øë«?œ)@Ñ'¬?óû$@¬?Ë +@å¬?\&@ ò¬?D""@Y­?(@«Þ­?¯W@éb¬?é@Í]­?þ6 @1î?‰+ @Õ„¬?ù'@Åü­?Dà(@îæ®?ºb+@PW®?¨{0@ó­?Ì÷3@Üñ«?Þ›3@¸ª?~r1@Úvª?ž7*@/ïª?Ïâ'@Lë«?2n*@ý•«?×!&@)o¬?| !@´à¬?¼@+F­??H@Qò¬?ÄÐ@±P®?>–@é`¯?ÞÓ @Ñj¬?‰-@š<¬?ÃZ/@cô«?Ý2@˜«?•À1@ô$«?ÃÃ0@Rª?áI1@94©?õ!*@2+©?™'@ …ª?KC)@è©?Êz&@íª?–¸#@¨«?V@/5¬?@Á@ؾ¬?¶b@5i®?¦Õ@À¯?ùë@‰ª?³|-@Kª?‰-@Ü’©?›*@ z©?™*@ÿY©?Œ*@kç§?Ƹ'@†t§?ô8@’©?åß!@t¨?¦!@9ܨ?ߢ!@þá©?´C@n.ª?x¾@Îb«?õ9@4ñ­?éZ@¯?žj@ä ¨?xÂ"@Œz¨?“¡ @¯D¨?Ç!@¡.¨?¿#@‡7§?Z« @Kë¦?{E@3§?¸\@àq§?Ã-@œ²¨?JÓ@…å©?^¤@ÝY«?Sa@3ɪ?€u@Å«?òë@s3®?-@’§?5@X*§?²U@ å§?a$@!y¦?Ú–@¥ð¥?b@eO¦?²Ï@ e¦?>ß@êØ§?“G@Ýv©?ï@‹2ª??@'gª?E@Õ²¬?1 @… ¯?Ó0@ˆµ¥?øí@½%§?*Ô@ÔL§?¸•@4£¥?@(@ºG¥?º@º±¥?ñ @Éñ¦?dÞ@d·¨?]@ ª?D©@Ѫ?q®@‰â­?8³@Æœ°?E{@F ¦?<Ã@¦?D†@£,¥?%Ý@ì¥?|@¨¥?Ä3@¯y¦? Ë@=¨?+¹@•Ó©?å‚@]d«?‘°@®?¨@R °?lÏ@ç¤?Ìx@’¥?D@B)¥?M¶@ [¤?E–@¼¥?«ë@Ĩ?+J@ ª?`/@,I¬?2@`û­?ôà@Û­?§!@hœ¥?^<@¹Ì¦?ÊÆ@Œ¥?—¤@&‰¥?Éö@{K¨?Kç@ÒEª?ˆ)@ת?Á_@%»¬?¨_@C¬?³¦@´·¥?×í@X¤?#ž@îS¤?Â@P[¦?e2@ßt§?<@=µ§? ×@Iï©?ý@ˆ.«?A@£¤?» @$=¥?M@tO¥?'é@Æ ¦?jÝ@`°§?ª@2ì¨?Þé@X´©?—œ@ç¥?7ý@¤Y¥?Ék@@¦?øŸ@3§?÷@MШ?`ô@Ȫ?'œ @½ ¦?`S@%Æ¥?c™@?õ¦?n@Ĩ?;« @£Î©?g÷@ãK¦?v @@‚§?îß @!R§?¯ @^í©?ýý@e¸§?±9 @yø¦?¶M@1ª?öö@ƒ§??w @•É©?Å6 @ÂÉ©?ÓV @Ð0À?ø¤@¼À?×@ÞÓÂ?…@[²Â?¨§@[ŸÂ?h @‹Â?V@…&Á?X‰@ýMÀ?|Î@é ¿?0U@lp¼?9î@¨¢¹?í¾@>¹?C%@“X¸?}T@)Ÿ? Å@4{¸?ŒÜ@„†¸?Ý™@5+¸?Q#@rñ·?&•@õ¨µ?%:@ÙÀ³?¼¿@ùã³?W@щ´?ÙÙ@Ì µ?Ö5"@F<µ?Ài+@ö¶?x)6@@å¹?9@%é¹?ù‹7@ ¹?§w2@¢7¸?ò8@³Þ´?Q¾<@²9´?I1@ ´?p-@l)µ?ÑÐ,@{¶?:/.@ñ´?ÈS+@Kk²?æ‹+@»¯?¯’-@½\®?•Ø0@‘ê¬?¯E1@”ª?Î=1@hw¨?9:7@ZЦ?løA@cù£?*tF@ÉF¢?@•K@Ês ?uO@´óŸ?r¸K@Ÿ?bfP@Ž­ž?ïÑL@]Ÿž?3ñF@ƒ—Ÿ?ÝÛE@0 ?m¹E@ç? ?ÑÂ>@ÝjŸ?Äã=@ûŸ?éB@ä]?¨E@Žóœ?œãI@Ôô½?Ad@¨ß¼?õ8@—̼?Å@ÉÄ»?)‹@q³½?½1@wHÁ?ä@`…¿?] @YM¾?$>@œ¼?¨©@^²»?£c@òfº?P@ 8¸?ñ·@!´·?!@’¶?ëÑ@7±¶?N€@Vÿ¶?Ð#@Ì1·?c$@ä¶?È$!@†¦³?*""@1±²?Àž"@à²?´É!@Í_³?~’!@0Û´?ëŠ'@TÅ´?Ðë1@ãɶ?eŒ9@᣸?¢=:@Y°?¿'@ư?Î3)@6в?D\-@¸´?à6@ñ¿µ?ß9@þ¸?ÖÌ0@#•¸?jF3@1·?+ 9@ݵ?‘:@Ù#´?„ƒ/@y¬¶?ß'@,Œ¹?¾Š&@ú»? \)@zY¹?®/@ĸ?o0@ߥµ?¸2@Ëï±?hº5@°P¯?:ò9@ɽ«?Aa:@ð¨?V§:@/¦?Ld<@1|¤?·>@45£?ŒB@¬¢?EG@瑱?ôÌH@W7¡?]çL@ç¡? M@’ýŸ?’­H@sè ?·vG@š ?A@§ÑŸ?qxC@µ¿ž?TãG@—ã?@K@Èù?»¾M@¢·?Ñ„@º ¶?Å¡@aìµ?Îç@’p¶?^@—2·?ú7"@ùäº?ö¾$@Ut¾?ó¾@J?½?¾I@Äøº?e@°þ¹?½@ ÷¸? Ë@.¸?áb$@Ø’¶? M(@·øµ?Gè'@~´?åÓ'@“Ú³?ÄÉ*@\á²?wÏ(@ d°?é¼%@ѯ?Œ&#@)¤¯?˜H%@ìS°?¾©(@}Þ±?Æ3@1=´?î‡8@°E·?^ð1@mæ¸?ÈŸ-@ÜZ·?MT9@ÿI¶?’9@wÑ´? 1@‰ã´?ˆt)@*Z¹?b(@žG¼?ø*'@?»?"°,@;º?û¼2@Ÿ|¸?~®3@uµ?y¼7@Áî°?ƒ:@+—­?+A:@·ª?Ÿç8@”§?]W7@8¦?zÑ9@Ú†¥?Ä¢@@:I£?¤BA@µ¡?˜E@× ?¢SD@‚P ?ºÝF@tŸ?äƒD@çFŸ?‘ÙC@Æòž?«ú=@›µž?ÛáB@Zë?ÐH@ö‡?¯´K@„?¢ÌN@º}¶?°Ú"@€´?i @—¹³?xå@2È´?ˆR!@±Öµ?†'@¹ëº?XÑ(@F¯½?%@Ž’»?=!@V3¹?Ha!@Tº·?Ó˜ @lN¶?˜ #@•}¶?^n%@½º´?üõ$@y³?ú%'@µH³?DU*@þ³?Ij)@éÙ°?ãè'@Þ·®?Àz%@¢ú®?$Õ$@O—®?†£'@§T¯?’‚,@…N±?žä7@û½µ?3A4@Öà¶?C+@œí¶?Þ4@ß ¶?&c6@Ïé¶?«ö.@Ñ?·?Þù+@e%¹?w,@‚yº?Ú,@2û»?Š+@®»?^’/@Uº?= 3@òE·? c7@¬5³? )9@›Í®?:@/‚«?8;@qþ¨?¹R9@{à§?Ô):@X¦?¥½?@¦4¤?´s>@3¢?|ùA@¨> ?'ŠA@-™Ÿ?¸ A@²Ÿ? 2A@®²ž?QED@eµž?ÈáB@F`ž?«þD@¾?"J@ײ?´ØP@•w?÷|R@œ¾µ?C3#@Ÿî³?àþ#@¢ï²?=š%@*²?eô'@Ttµ?AP+@ìGº?H×*@ýtº?Xt&@hb¸?«±$@D›·?_U$@]³µ?³[%@Ol´?Dæ%@»;³?e“%@Û±?®Â&@’[±? +@$ú±?C«*@^”±?ù)@ô¯?+’)@I¡­?²R%@vЭ?Ñ&@Y(­?r“+@Q­?~ª4@ë²?[”6@oUµ?û/@U§µ?nC2@hjµ?­13@báµ?¬.@«…·?Cf+@ÿ¨¸?ô*@®zº?×ð-@Еº?¸Æ,@øØ»?ë.@ã ¼?Ù¢0@°)¸?öJ5@ÊGµ?àÜ:@ôm±?(1:@³­?A<@+Tª?9’;@¤Ý¨?2Œ8@‘¦?>ó<@d¥?‚>@¨ê£?DÌ?@¾¢ ?¹oA@–õž?î[>@‘ø?Õé?@Gô?¸·E@Fþ?ÉF@$b?òG@A‹?†¡M@Ú5?flS@gâœ?k…V@Ó¾´?ÒG+@³?<+@…”°?Ì+@ùÛ¯? ã-@˼´? /@Fȸ?¾û*@:¹?–&@ÿ¶?èR%@Z;³?ûi&@€²?¸Ñ'@&\²?ùY'@”«±?xµ(@î°?”Â*@D;°?´\+@ׯ?ð-@7¿®?-­-@,œ­?Ø—)@e™¬?‘:)@º«?$¼*@j ¬?Ëx0@·¨®?!ø4@ ¸²?;½1@Íå³?³‡/@lij?å/@F?µ?f¢.@¦¶?™˜/@ܸ?k(@í®¹?/‹&@Ü‚º?›Ö.@*Šº?G/@‚/º?Kœ/@Iç·?ñ3@ ϶?V7@Ú”³?³;@3¯?½;@Ѭ?Í”:@Zª?„8@•í§?¦?:@ B¥?¥5@@*§¤?p˜?@;ä¡?…ì?@Nóž?‹`B@íO?lÎ>@ ?¬çE@h\?§I@Ûîœ?äÆN@Fƒœ?(S@¨ ?¹mT@´?S(W@0®³?–†/@Gű? ’.@P›¯?~./@íÌ®?+3@$׳?SA6@/¸?d\.@x·?VA-@hR´?“–,@ý–±?s+*@>À¯?Z,@Ë­®?Þ?,@*ò®?Žå*@éÇ®?ûx,@ꬭ?iû,@>¨¬?f$.@n¡«?Ôã-@l‰ª?Âð-@>&«?îl,@쪪?•%0@mY¬?&Ê2@ϰ?k1@x±?Gœ+@nL±?„³)@ëš³?¨°-@Qsµ?W±*@íd·?ì·(@©r¸?„L*@fs¹? ò+@cº?)M/@̺¹?,…-@m'¹? 1@x·?ì„6@->´?åW9@’Ÿ±?%»9@†­?kï9@²jª?‚(<@ªá¨?F­7@Ìí¥?©A?@¥+¤?ä@@gE£?lA@)O¡?GB@éž?C@Þàœ?ÛÀE@cöœ?ò™K@!œœ? –U@¨­œ?¢OU@ª«?ïQ@Žž?…R@B²?6ë,@鋯?–m*@²G®?`T.@ ª®?öO6@ ʲ?m¡:@¶?üþ2@äµ?Ë"0@œi²?¸~0@W°¯?¶æ2@覭?¡0@94¬?µ.@lF«?ŽB/@§2«?°Á.@ÐPª?š{,@Ì…ª?v8*@å•©?û¸,@+»©?"r.@©¹©?“Ø4@Þêª?ȇ5@ÜF®?ó6/@Ø®®?H×(@ä®?Ü=&@¦?±? b(@n²?”Î)@ˆµ?Ê'@Y³¶?É&(@](¸?ž™)@-¿¸?vê+@íb¸?;u-@E‹¸?/v2@ç¸?Ä~5@(¶?a9@Ô³?@<@Cܯ?}X>@e\­?EÔ=@ì^ª?;@Q–§?¸Þ>@Gb¤?}ðD@òa£?]š@@™Ã¡?õ¢A@ßPŸ?Ï­C@Euž?DG@( ?лL@£?V^S@Ô¿?‡aX@½?R@LHž?óS@sÖ¯?ð(@¢ž®?IÆ(@${¯?sr/@F¬¯?ÅU9@à³?èô>@ù0µ?-98@H°³?{Ò6@ì¯?p0:@ÂZ®?'D;@Ó¬?´L:@˪?y<7@ch©?ŠZ5@F©?ÚÐ0@Ì{©?ÓS-@r‚ª?k9,@©Š©?Í01@¢¯©?,e7@ðª?';9@þi¬?Y 4@À­?ÝÔ*@ N¬?%@ù¿®?°%@†°?ÙŸ*@޳? (@B¶?ú2(@§~¶?[¾*@PU¸?ÄÈ,@,·?Õ´,@¨a·?o}2@§¸?bK8@›·?S>@iµ?³$;@Íy²?zS<@œ6°?¶4=@µ­? 7?@f6ª?.â@@hK¦?,ŒC@å¤?b,F@Þ¢?uF@7B ?1G@€¥Ÿ?ZÓL@Õž?®¸O@Ñž?} T@“Ëž?%VV@*ž?ßP@ÅÞ?þ—R@Îh®?Q&@º®?“m&@ðÏ®?Ýâ2@ ~°?Ù<@ND²?b%@@°Ð²?ß=@gʰ?+Õ@@ª½®?­èA@sn­? s?@µè«?8³B@'ý¨?¬õC@Òã§?w’?@’ħ?c^4@|¨?P0@6j¨?µ~0@"ª?Î 4@Ó¶«?C5@ æ«?2@â°«?;V+@;«?ÕÒ%@ÿx¬?µ|'@0®?Ä8-@Vh°?ac,@~¯³?©ù)@4‰µ?7)@Ë·?ˆ+@+$·?Ì].@”Þ¶?Æ€6@@ª·?^ý7@ÜŠ¶?ܱ:@4µ?y`:@'õ²?6ä9@‚þ°?¡Ì7@`O®?Ü)<@S“«?¿Y?@¨?ë C@ée§?aÙI@g¤?ØQ@ãe¡?« P@bŸ?f#O@X†Ÿ?R@›HŸ?aT@¹ëŸ?ÁÍP@˜3Ÿ?W6T@uÀž?É•M@ è¬?¿X%@Œ­?+@‹Â­?Ž6@L¯?sÚ>@¢±?Ô?@sã°?I?@Ùq®?¸’A@±^¬?›ÆE@ðª?Ó5G@7ª?ÂrH@Ó7¨?µAI@*‡§? ´@@«¦??Ð8@m‡¦?vû3@0ö§?8i4@ö©?ªé5@C:«?þT0@,ñ©?Éí*@¹¢©?)(@aQ«?‘Ê%@Ç­?Û;'@ò¯?k«*@EL²?Œö-@‡´?4§/@Y¨µ?¿‰0@M·? /@·?7ô4@éb·?ñ«8@÷‰¶?wí:@®>´?ѽ8@YÖ²?Æ™:@ õ°?‘(:@¿K®?¯‚<@&¡¬?‡?@öÛª?kÒ?@›ÿ¨?+DG@©§?è{S@!x£?~óN@Àe¡?ÌŽN@rZ ?cßL@˜t ?+yN@PT ?ç·P@¾, ?Ø U@F ?ôéJ@} ¬?zÐ$@®¬?¡*@u†®?%Û8@ß‹°?ÃhA@Á±?£•>@Ôî? êA@¼ùª?ëïE@×›©?ÈÎH@I ¨?œAH@q°¨?éF@ñX¨?8¤B@ÿ§?gæ<@©S§?2=:@·…§?¬k6@—ÿ§?a2@大?0í1@`·§?ÏP-@ˆõ¨?Ð+@üÚ©?ë'@¤Ô«?pR%@õ­?g %@Œÿ¯?S*@ J±?ýn.@£³?où1@½µ?eÎ0@ÈP¶?¸ÿ4@û¶?,.:@k¨µ?Rã:@z7´?Qµ8@½½±?Û:@”–°?’`:@øŽ­?Ñ;@«?§W?@-rª?ôy?@Ðo¨?ÛuG@¦Ù§?ΩQ@·~¤?¢O@bÈ¡? Q@ln¡?šeM@ÝM¡?ðK@¸¡?¯„K@Ø&¡?%¼N@ˆ† ?~F@EÉ©?ñ)@ŒT«?ž¯2@—¾­?[Õ;@ͯ?ÇA@×ð¯?œ¡A@XV«?£¢A@^ï§?²E@8§?‘iI@vø¦?‘GI@‰‚§?Þ‡E@ÇG§?²M?@$ó¦?`x=@*0§?¼Ý:@ ¦?« 4@ý¤?oÄ,@–¥?X])@1Å¥?<£)@‹a§?ä*@âª?2)@zƒ¬?-+@”&®?/ô*@̯?‰-@V ¯?N¡3@ ß²?wo4@ ´?’7@Š.µ?õU<@ô²´?aÇ<@×.³?ݬ8@Û²?Þ:@`r°?»9@œ@­?eÊ5@Ês«?¿F8@Qoª?° <@s:¨?ï¿A@ ˆ§?ÁAG@W2¥?¸/P@*á¢?œ¯S@i3¢?aºT@˜G¢?«˜Q@ìO¢?!K@ É¡?\ŠG@;¡?2ÛA@pO¨?û.@Y¤ª?‡B:@ë›­?!a@@ à®?KšA@j«?H=@~S¥?‡ÝA@ý¤? ‰E@|y¥?)¿L@ËÆ¥?=ýM@Ô ¦?üL@=ò¦?LôE@ö¼¦?\à?@9º¥? Ž9@¡å£?áÎ*@zÛ£?éd'@¤?·'@ÌÕ¥?­,@,¨?ÑÆ-@& ª?Çï,@\«?Ï,@ìí?Žë+@ºö®?bZ0@’C°?t©0@c²?‰’8@Åù²?¶>@*\³?^P;@ry²?=9@'1±?˜¤;@İ?5¥;@?®?Qü2@¬­«?~•0@’Dª?¤–5@Md¨?ô8@ø‡§?çA@êþ¥?‚ØJ@f¤?SœS@eÙ¢?”R@hb£?ËM@€m¢?’QJ@¿£¢?Œ|B@S3¢?kæ=@2f¨?As0@7à«?ç?@’b­?;ÌC@TÀ«?þ9?@ð¥? ªC@»A£?ÙG@j»£?PN@¤?ãZU@¨r¤?œoS@Ϥ?´êK@ÞR¤?!Æ?@Jx£?{6@†…£?­b.@S£?'õ%@ØÁ£?¬U&@脤?wà)@Yê¦?þÍ,@¶4¨?ò*@ #ª?Ùñ+@í«?Çi+@¾è­?x´-@z¯?´ƒ/@j °?ý3@б?º:@ š²?nZ;@´²?Ðw8@ýÒ°?É=@ “°?ñý=@¹¯?õæ6@·R­?=4@¯«?²¤3@«©? ‹5@Û=¨?ÀÕ9@*¦?rU@@3Ú¤?¬_B@7!¤?bòL@MÚ¤?LùN@À’£?-¢H@æj£?6ËA@òd£?"b=@°ª?.Þ8@X.¬?Â?@è…¬?.G@hf¨?WðB@!F¤?föE@Ñc£?LÉM@À£?8?R@Ðp£?aQ@›Ó¢?4öH@Œý¡?ZM>@G#¢?J!6@úÊ¡?À“0@-Y¢?Ÿï.@[@£?Ù[)@Y£?­³(@›R¥?((@íǦ? ·(@Œ§?ØY*@bV©?8Ž)@|¬?0+@â­?’p-@÷@¯?Ÿú1@9U°?-8@ðA±?+§;@s±?‘Ž8@Bt°?Sv9@~¹°?)>;@å›°?i6@Ï)®?*5@tí«?²”0@X©?Ó3@,¨¨?pë3@rx¦?t4@Þ¤?„–<@OP¥?C@›¥?ÎËK@l*¥?àB@ÈÞ¤?…Z<@Ñû£?[+8@¸4«?RT@@¬?ÿI@Ÿ«ª?Ó¶L@á¼¥?ÍM@ËÆ£?4ÝQ@w|¢?‘!R@Çÿ¡?gùI@Áס?#6F@ [¡?.º;@\¡?´ 4@’F ?òa/@ :¡?²/-@›Œ¢?ê/@?JŠ)@ø¢£?7(@Kå¥?žD*@/á¦?W++@&¨?‰¹-@!ø©?©y0@“¬?N-0@…®?lw0@!›¯?kÉ4@„°?&Æ<@«°?d¬<@?Ó°?Š:@ð¡°?ýB<@µ °?Z¥5@ð—®?ôÌ1@Nk¬?«~1@°gª?n:1@Áµ¨?–Û/@ÏĦ?Ô(2@ö^¥?$e<@è,¦?fA@R¥?|rD@ƒª¥?Vå=@t@¦?p?@|¦?Í<@kkª?ˆãD@Vت?U\G@À§?°äJ@Ï£?}Q@fð¡?‘W@þ© ?‡„L@b, ?‘C@= ?¸¯?@% ?Ú>8@u¯Ÿ?01@ ”Ÿ?²H+@x¡?Ð:,@@£?Q®,@™<£?–r+@fÒ¤?š?*@†+¦?D[-@£)§?ßµ0@.©?uÁ3@ã}ª?B¸4@â:¬?!d4@^T®?Kb1@êW®?×8@VЮ?†6>@Ö¨¯?š ?@^°?Uö>@G¶¯?FD8@±j®?ªW5@J0­?ÿ2@¹«?Ñö3@v¨?3@3S§?RÔ7@L§? S?@\£§?ò³C@5¦?£{C@N«¦?½Œ;@¾U§?¶É<@ƒk§?@@3ýª? D@VV¨?=3C@+;£?H@!ý§?‘$F@F½¨?ÿ³F@ö¦§?ˆÈC@³Õ¦?8„=@ØË§?Ù>@ç[©?->@â+©?é+F@ªO¥?!¸H@ÓG¡?6I@™Ÿ?Ç“F@<Õž?±@@hÌŸ?„æ9@7•Ÿ?œ57@)úž?Uü3@Sž?˜š0@[äŸ?&Ð+@?xê.@Ψ¡?è¬0@,þ¢?Ò»/@ýg£?QG/@)¦?@Ð]¨?'¦>@Ö™ª?»Ù;@ç-§?¸+G@%£?·,H@•C¡?C@RA ?Õà@@³ÉŸ?z¤=@#;Ÿ?98@‚_ž?[k5@¶ž?!.4@Ÿ?^ž1@€ÿ ?V,@)¡?ô-@uy¡?-@w°¢?×–,@Ýï£?ƒÊ-@rþ¤?ã‚.@ýÐ¥?s$3@צ?ë?6@œ¨?´`4@Ÿƒ¨?Ä¢5@ʨ?°«5@³_©? q5@8?ª?kº1@V$ª?ƾ1@ÿ©?m·7@)ר?,9@'·§?d<@&§?XìA@v´§?Ù¡F@H>¨?Ý"F@1©?’H@Ÿ4§?ÅÑC@üñ§?)¼>@W©?bÐ?@7ýª?1ª=@¥¤?üI@Äy£?æõG@U°£?KF@ÿû¢?‘‚B@6|¡?þ`?@'Ÿ?Øî6@kè?)7@ïŸ?£J5@ÄŸ?[Ú3@=@¡?øÑ1@佡?½[-@ ¡? Í/@Qæ¡?´4/@®£?¡f,@+ï£?Ð$.@ïw¤?d 2@Ù¦?a 4@Ak¦?Ï 2@4§?]Â0@‚˜§?+O/@b3¨?Þ2@zE¨?Œ­/@%§?D;4@@–§?&e8@£§?Bý?@€Œ§?#E@X]¨?¹¡G@«ä§?RŽA@}}§?éXD@˜Ó§?†Á@@ó4¨?ò>@zì¨?™Ö>@®«?“D>@ÿà¢?B¿I@Be¢?@M@3ñ¢?„žF@>Ò¢?ayC@V>¡?Ç2<@ óŸ?©O9@b. ? à:@Ês¡?´;@¬x¢?9½:@ô–¢?Šù4@ ¡?“@1@Gƒ¡?S1@‘Þ¡?€x.@o ¢?ñŠ.@¨¯¢??ø0@⪣?Õ2@Ob¤?Z0@¤Ü¤?À1@m6¥?6ž1@eº¥?:Y5@¨£¥?rs4@Mð¥?¶+4@ëY§?¸Î9@)Û§?VR@@©a¨?©C@ÈH¨?3VD@„§?DB@E²¦?«.C@µ–§?­t<@P…¨?§È;@r*©?ð“9@[ͪ?E”:@¥ß¢?(˜J@Q¥¡?á G@ÄÌ¡?ÁqE@Ρ?‹|A@>¡?ÿ!?@6ç ?C@:@ùì ?],9@ÁS¡?‹S>@Í ¢?/>@¡…¡?›27@ÓO¡?Â5@ܨ ?‚1@i« ?F;1@uÞ ?yÕ3@ħ¢?Už3@l"£?¢Ë1@oT£?[X3@\Ö£?=~3@Æ#¤?¸7@y¤?ìË9@{í¤?!;@Œt¦?-<@ú§?15>@í¦?9î<@2¦?…^<@h¶¥?¶Ö<@!È¥?˜ =@$§?Ì}9@Ï›¨?¡:@š@©?΢9@Â5«?ö-9@”¢?]H@¤¡?ðÔD@DÈ¡?‘šD@~/¢?”¹B@ý"¢?ß>@&F¢?þ;@Õ]¡?Zî;@ÐO¡?&¦=@½¡?Û_<@Ij ?Ÿ<@ñ ?3î8@nŒ ?WÐ6@ÖÑ ?ø¦8@‘¢??>@qž¢?¡;@Ÿ£?p<<@<,¤?„"<@¡¤?m:@U¤?ºÄ;@ìs¤?6#?@º,¥?a@@˜Q¥?Ät>@ÄJ¥?À•=@ož¥?³¼<@ËÖ¥?-X;@/¦?äx7@]¹¦?×9@øz¨?¶€9@K©?«Ø;@ò{«?9@b|¤?SíD@ù=£?$`D@ ¢?ÈTB@¿Ý¡?!ïA@1¡?`~;@/ö ?‡“8@œ© ?Ú¼9@Y¡?2¤;@Û|¡?°ì>@§8¡?ëP>@ß*¡?B>@dt¡?<Œ<@Væ¡?ÏdB@š¢?\7E@1÷¢?4A@–t£?°?@Œó£?â0A@Z¨£?g¡>@Ï!¤?LF=@ï½£?H`<@£?ˆ @@üZ¤?&A@/`¤?g5=@ûä¤?w/9@ll¥?äÊ7@º¦?bí8@„b¨?+Š7@¦ä©?<¦;@+®«?ƒ’:@˜I£?¡ì?@~ð¡?œB@h•¡?æû?@ꤡ?¸T:@&»¡?x]7@¥¨ ? ”7@ƒ¢ ?æP:@·n¡?f;:@5u¡?Óñ>@+ ¡?5—@@ñE¡?èB@Øã¡?0wE@üá¢?¹H@æÏ¢?M.L@`ï¢?süE@d¿¢?p:A@ 8¢?ãª=@݆¢?í;@ªà¢?øR<@W#£?eS;@º„¤?=@®‡¤?N9@@Ÿ¥?+~;@Ë^¥?6E8@çö¥?f8@~£§?s7@ ‡©?*9@Û‹ª?@;;@n¡?ý×<@|¡?bW:@c¡?«:@íÁ ?«õ9@ÎW ? ¯7@Of ?IT9@Í ?áY8@éf¡?Õd7@Ý`¡?p˜=@ ¢?EøB@çF¢?àÇD@’Þ¢?F^G@#[¢?„ H@:³¡?SK@,w¡?ñ¼>@ü¡?¯+8@yb¢?Àì7@ö¢?FO9@Ãñ£?’A8@.º¤?Èk<@À;¥?Í>@ˆ™¥?®†;@o‘¥?è;@7(¦?æž7@?¡§?,7@°©?|7@û¸ª?; 8@¥0¡?4)<@û"¡?õ8@ON¡?Q³7@¶m¡?¯b:@zN¡?¬d=@Re¡?mü9@oH¡? :@ío¢?Ã9?@b“¢?%B@ZO¢?ÙƒE@Ó¡?ÇE@j¥ ?öKD@š ?ËA@´¯ ?à=@–P¡?Yú;@ˆ¾¡?w9@³Ã¢?ù„8@B¤?Û7@©è¤?DN;@¹ß¤?£;8@ꇥ?+W;@&z¥?Ñþ:@àW¦?jÓ7@æ?ae8@2¨?>¢6@¦ª? Š6@ñq¡?L=C@f1¢?(B@öX£?q2?@"Å¢?¶q>@¾¡?Ñ|?@$¡?ºv=@|H¢?,?@Žt¢?ò6=@k¢?*BA@±÷¡?”-?@ܸŸ?~?@?ôŸ?ŒX:@ÂÇ ?¹Ï6@ë5 ?™Õ7@Š–¡?ÿP6@¯¢?žX8@úH£?“:@çæ£?Í;@q»¤?Ð8@ù¥?ÆÛ8@Øÿ¥?l7@òG¦?6@SV§?º27@ä8¨?º8@Ī?N7@3µ¡?­G@Ë/¢?•–C@~¿¢?>@­'£?°þ?@õ¢?©t@@ÄJ¢?Q=@?óÊ9@A·¢?¯>=@]ä¡?Â%=@1¡?æË7@^H ?_¦4@?;¡?õ¨/@aK¡?Oµ/@Ý*¢?-à/@®ˆ£?b5@3‘¢?¶†:@w|£?]9@×F¤?êõ6@yŸ¤?™z8@Î-¥?©ˆ6@>O¦?®5@Ÿ§? ¶8@S$¨?ð9@ ó©?Ë9@ûm¡?‘ÇC@Ñî¡?ãl?@Zr¢?t¸<@8Æ¢?ôÅ=@ä|¢?Dþ<@©¢?ŸrA@¾4¢?c›?@D¶¡?–Â:@þÿ ?P\6@º ?è 1@»H¡?f,@{Ñ¡?×Þ-@;°¡?2@›O£?IÂ4@­F£?gØ9@ã£?®e;@Oˆ¤?Æ8@=w¤?v’8@ F¥?zÑ5@g1¦?²5@°O§?¡;9@ô§?+u<@ô-©?Zz<@zi¡?+¥>@´4¢?q«<@Zk¡?ÉW<@pä ?p=@5Q¡?íR@@š¡?Õ@@ä¡? <@ü¡?&ý:@Ñ¡?5@Rq¡?È,0@¯Ú¡?‡þ.@&¢?Gê1@z2£?Só2@ú"£?k¯5@6È¢?‘8@wí£?2 ;@7—¤?¯%;@%í¥?ks9@ü§?°ú8@­v§?gµ8@¥K§?ÎØ:@;}¨?œp;@—Ô¢?e¶A@ûU¢?Ò@@ò,¡?ºWC@ج ?$„@@S ?8Ç<@Zs ?æc<@¹Ÿ?[<;@ ˆ ?†$7@ŒÇ¡?:í3@›7¡?CŠ1@¡ý¡?¯Û1@;„¢?´¢4@‘ £?il5@OÕ¢? ^5@Áv£?Z(8@Óq¤?¤/7@e’¥?ÀZ7@„Þ¦?ˆJ8@¬ž§?¦ò6@¡§?6@=ë¦?ý°7@,¢?×âF@e¢?ÿC@uÛ¡?^D@p¡?»^B@E«Ÿ?ד=@žŸ?°P9@K»Ÿ?28@µý ?Ö 4@ÝÊ ?Ìë0@žH¡?þA1@`®¢?ë3@Qs£?Nr4@öi£?%4@ná£?Ø<7@wp¤?—+2@D¥?¯4@«h¦?èL3@A¿¦?kø4@ƒ3§?™P3@«y§?ÙX3@›®¡?]ìF@KÙ¡?3ÏG@AU¢?ÿD@ G¡?ØŸA@VFŸ?³ ;@÷sŸ?úy7@ÌL¡?"5@D¡?öý2@ƒ&¡?&#/@T‹¡?Æ¡1@¶u¢?h2@wª¢?ÂÂ1@ £?a²4@ç£?‘Ñ3@ìͤ?I]4@<¥?ï4@Ô‚¦?`h3@y½¦?-Ô3@~œ¦?Ð1@Ä¡?ÊE@Bž¡? ‰B@­H¡?Ü?@(ûŸ?8À;@¾ž?»4@× Ÿ?Ð*1@i ?aË1@! ?°&/@“ñ ?KR.@œñ ?nû.@N¡?Ùv0@¸²¡?·ž1@º?¢?HS4@ù¥£?–³5@—¦¤? I1@âr¤?wz3@­¥?›ž4@½¥?M-6@ÃÏ¡?#5H@ºR¡?¥9B@Ï' ?Ü=@6¾Ÿ?ÇÒ8@(Ÿ?}5@êgŸ?Íu1@¬ÓŸ?¢¼/@‚h ?ñï-@¡ÿŸ?Ñ».@,  ?½1@`Û ?! 1@1T¡?+x3@@E¢?QA4@ê£?x0@¦™£?€à2@çѤ?€+5@zê¤?#5@cR ?ò4B@ÁŸ?~Ž@@èŸ?;p;@nŒž?Y7@ä´ž?ü³2@ϾŸ?Qq0@™¤ ?“Ñ-@gß?¥q2@û4 ?ó24@£µ ?}m2@È ?ê&0@™°¡?xí/@¹ ¢?´Î.@a¦¢?‘‰/@ ¤??w1@×j£?'x2@ÿ«Ÿ?UiA@&Ÿ?8n>@ôUŸ?=g<@z²ž?%@<@ƒ.Ÿ?øê:@«• ?âç9@ÁŸ?™57@YuŸ?þ8@? ?î5@ر ?ÿ1@dµ ?_Þ1@ð–¡? \.@g~¡?F¤-@ ‰¢?è/@U¢? 1@`ÚŸ?ûÉB@T™Ÿ?„C@ߟ?uÝF@îfŸ?˜E@ Ÿ?BA@ôéŸ?Â>@1§ ?³ë>@¨Ø ?øÔ;@'G ?Wb9@  ?—EL@ÕhŸ?žI@ÂGŸ?H8E@ÂcŸ?ÑlA@ÉGŸ?©C@¤Ÿ?~&@@E~Ÿ?<=@Ÿ?s :@‰Ÿ?é7@ôŸ?Òc8@<¡?ˆ6@îú ?‘ÁC@­¨ ?æKF@Œq ?•VG@B. ?˜ÎE@9²Ÿ?ŸšG@,#Ÿ?0-G@à(Ÿ?RþF@d+Ÿ?ÓOE@jŸ?0}C@<ÆŸ?@@䃟?µ=@è± ?`Ó8@?Û¡?½=@¸¡?ݬ>@'"¡?u_A@zú ?^¼C@:/ ?äD@º ?6ŒE@ýr ?˳F@x¡ ?Ò·H@6c ?ø¬E@ck ?TH@@IsŸ?¡Ž@@îh¡?/=@;¡?ïÒ@@’¡?"<@@4`¡?6A@¹ ?]3@@^ã ?XÖA@­ ?u‹E@ˆÄ ?H@4 ?ŽF@廟?‚+B@Öã ?ª=@"Ú ?µMA@ÃU¡?ŸÀ@@©† ?r¼>@ÉŠ ?agA@„Ñ ?©öA@B> ?ÖE@d  ?I@›˜Ÿ?ë‚E@^‰ ?A<:@%<¡?ôe=@}¡?-“=@5à ?x;@* ?_–?@j§Ÿ?ÊcC@oÕŸ?é^G@MS ?àÉI@}ôŸ?0@íÙŸ?nï1@WÿŸ?+ô8@ •Ÿ?&F6@4Ïž?kV<@ý¶ž?t ?@ÿWŸ?çZB@_ž?ot*@·ÕŸ?ºW2@ 6 ?•Ð3@_9Ÿ?¸æ7@ªâž?Ð:@Áþž?i±9@Ô=Ÿ?8Â.@{ ?CÙ4@âŸ?Vi3@¹ZŸ?ÙÌ9@‹<Ÿ? ¼;@Ÿ?š5@ÇüŸ?X@4@ï# ?ó¬7@*ùŸ?=@“Í ?JZ7@/å ?À)7@á?„ï:@Éw¢?›P7@,{¡?%¶:@ z¢?Ñ5@.´¸?è>@>¼·? ˆ=@ô¶?®=@Mw¶?9ð;@ë¶?fÙ<@+»µ?Þ!<@õXµ?—:@‘uµ?"Š8@BNµ?²:;@Ÿp¶?àn=@Ð[·?94>@Å©¸? @@ÿ"º?¿q@@ô%»?{¬>@›f»?‚±>@1»?Xð@@è»?«(>@à»?«…>@Ü»?}ü<@.ü¹?29@.Û¸?&ø3@qæ·?#/@Uäµ?¸Þ&@…´?{i!@{t²?Dï@ýe¯?½É@›J­?¹%@^#­?ë @ü=±?'W!@Ð\²?d+"@ ί?Ú×"@Ö2­?Ô0!@âüª?E\!@ïä§?+Ñ+@ަ?ÑX4@îÈ¥?Ó{7@±Ø¥?Â^=@=a¥?íU?@5$¦?!?@Ã¥?lø>@Ʀ?áü<@Yï¦?¾!?@ù;¨?Î]?@²¨?$ C@CO©?ô¸D@‰¶ª?»UH@8Ç«?›íH@ÎÆ¬?ÒUM@¾í¬?péN@ý)­?‘ÊL@<®?JSN@|Ö­?ã–U@ÖÛ®?÷>\@Õ“°?x”[@6¸²?¶SU@³ô³?qF@—? ?°ô:@™8 ?RÎ>@!ÜŸ?¬f?@(iŸ?ç>@@ž?î—?@Zž?µÿ>@ö,ž?À@@@Õšž?sD@G"ž?åäF@§»?¦üI@IZ??ìL@±´œ?TôL@×3œ?·œI@¦œ?àG@½•?ô>G@¼Šž?—WH@ŒOŸ?øÓC@.Ÿ?c9@NB?ˆQ/@3(?îo#@bªž?Ç@²DŸ?ðú@”ß?DL@!Ñ ?0g@N¢?Ó›@£?*D!@´¤?wf"@$3¥?p>"@Cñ¥?•Š#@AA¦?©<&@̦?o±'@Nѧ?Q¡)@©?3*+@…âª?¨,+@Á ¬?ëZ,@ŒR­?ž}.@oÆ®?Ý0@’±?^"4@&â²?mb6@+ú´?Î8@’¢·?•<@r%¹?bõ?@V¹?øbB@Áô¸?¯ÿ@@Ez¸?„”@@A¸?8R=@™¸?êð8@ÝD¸?G33@}£¸?Þ†0@W|¸?Ìþ0@ÏÄ·?? 4@·?5G9@¶?•í=@Hµ?ÎC@Xº´?&G@ ?ÿÇ<@£ ?‰ ;@ûuŸ?õ™9@ÝÓž?¦ô;@v}ž?ë¶;@xJž?Œ·=@€Nž?º¢B@ûÌ?´€F@3?+«L@§?Þ4O@w—œ?kµM@p£›?ÐmL@èž›?ÇH@€•œ?ªŠE@„÷?Ô]G@ÏDŸ?wûG@$Ÿ?È?@lIœ?x3@>H›?¸—(@Ähœ?îð!@è}?¼Î@מ?&@Ô.Ÿ?^š@ ¡?˜@E¢?ó@¢p£?(æ@…R¥?Ìw"@ i¦?¢$@I-§?ß%@¶5§?NË&@Pù§?ã'@ 4©?ó)@’«?¿,@~R¬?N|.@5v­?g·/@±®?kF2@Û=°?ÕÊ5@§'²?&a9@z´?Úª9@e}¶?'(;@åR¸?7 >@Òä¸?.A@qÖ¸?€sA@çÒ·?¼iB@pt¶?¤nB@§K¶?E¨@@0¶?|š>@B&¶?™ÿ<@â¿¶?Ú„:@‡Á¶?Z9@ñ•¶?1Ö;@Ž8µ?ZæD@È:´?uËP@Ú¯³?ùY@øˆ ?¦9@š7 ?{:@HªŸ?kR:@?ª_>@d·Ÿ?‘û=@@xŸ?ZåA@šŽž?DE@‚?<ÖI@ï…œ?‰vK@Ïœ?)µJ@œ?ÄÏJ@’7›?­L@Þs›?eøH@ÊÀœ?T†F@XÏ?…XE@'¦ž?®µB@#?I8@cZ›?,ý/@õÏš?`%@ Jœ?Ì‘@w?¸a@h­ž?.È@{˜ ? ¸@¢?‡ô@:`£?$”@íK¥?Ð "@,¹¦?Âã$@Þà§?C0(@¯i¨?Ð÷(@®©?‰m)@] ª?kÅ+@g¼«?’\.@ãä¬?,1@œÁ­?áY2@QÇ®?&õ2@fò¯?q 7@ó¡±?;<@v_³?? =@µ½µ?ó<@÷£·?OX?@%ĸ?äæ?@ ¸?ÝÞ?@È·?í¾B@<õµ?Û¶E@…ú´?G@@´?P]H@e4´?HoG@žµ?öE@¿¶?ƒ‘B@vîµ?BÈB@’T´?ÄÄM@課? ˆ^@w²?ȸc@ˆ¡?w'8@Jî ?s÷;@L. ?*<@ß' ?Ñõ<@úŸ?ùê?@¦Ÿ?…D@Ǽž?n"E@÷?—ÕE@?è3G@·Tœ?3J@&S›?è©L@à>›?ÄJK@xu›?œH@çÌœ?±`E@Ið?#NF@¯ž?ÖA@m)?~ 4@MЛ?ÄÁ(@€þ›?Ѥ@’“?°é@¢”Ÿ?R:@só ?‰Â@*ž¢?8Œ@ÖX¤?T°@=]¥?’!@ªÒ¦?i:%@{–§?éJ*@ö[¨?n+@¸%©?’°/@>‡ª?&0@5Ü«?Ù2@9µ¬?žµ5@ŸZ­?\Å7@ý+®?q«6@®¦¯?’H9@ ‘±?¢Ô9@1ò?­z=@È´?¬Ä>@¸a¶?Ê_A@þË·?ïB@ç ¸?AÊ@@¸¶?TTB@7á´?Ñ1E@±©³?È J@Á³?‹M@+³?B@M@4E´?«ýK@¥¶?ÝîG@ž{¶?ŒEH@Ú«³? YS@Rz±?¬$c@³[°?­@f@?OÌ9@zR¡?<@½ ?ñV;@È ?­R=@\Ο?Ôü@@„Ýž?¤qB@Œž?¾¶A@Æøœ?š€@@É]œ?3ùB@~P›?á E@Ê‹š?³¸H@ãÚ?ùÕH@nœ?å>F@‰1?}E@fNž?/KB@]ž?Q:@¸Ôœ?».@YCœ?¿4"@Ýóœ?@hŸ?ÑÕ@’¡?Cc@q‘¢?¨r@Õ:¤?%u!@’„¥?³$@F?—'@ à§?´,@»¨?]¸0@‚`¨?#Û3@#ª?òü3@ßA«?Pb5@—¬?ò8@Ý¥¬?Xû:@Õh­?\<@ài®?çs=@'º°?À->@ ²?&š?@=N´?±?@uô´?н@@Mrµ?¡ÐA@s\µ?ÀD@—¥´?^üE@òI³?Ä!G@kñ²?s`H@_²?ÑYK@x²?=yM@u³?ÐôI@·¥µ?ŠÏD@ÿ0¶?aåD@;+²?§T@æ°?ËÅ_@ãú®?ÑÀ^@Ú;¡?|}6@"x¡?ì7@¦£¡?ù¦;@r ?Îö<@N¤Ÿ?Xš@@yÉž?úBA@ÁÕ?ê?@—Ëœ?¡Ž=@šYœ?)4?@Kf›?Rï?@êûš?F#E@²›?{sD@92œ?h½D@Ñèœ?øD@\'ž?w¿=@Í?È5@ߪœ?…j-@&?w!"@5¡ž?90!@èÕŸ?Kx"@L¢?1À!@cK¤?²¶#@í¥?øÈ%@ÑP¦?>)@`ö¦?/@à•§?Ö™3@*&¨?”T7@Ío©? P7@Ž?ª?e9@ݳª?ª":@¸k«?±;@Ì@¬?Ö:=@‘{­?+ç>@þ5¯?'é=@‡‹±?ë±?@©³?–_?@¯ú³?[y?@|Ô³?QþA@¸²?"üH@CC²?’@rMž?k?@ªÄ?CÌ@@£¾œ?øR?@ˆœ?¶å>@£kœ?_B@#5œ?a¦A@X]œ?ðZA@gZ?€1A@>&ž?Šè<@^ž?m8@×Çœ?ð/@fê?¬'@‡Óž?ÑÝ&@|± ?&Ç%@…«¢?e%&@d¤?t[&@¥?Ã×(@yߥ?T)-@r¦? -2@ é¦?îL8@g¨?DÛ;@ø×¨?Ñ>@V©?e=@C'ª?K¼=@ø«?£=@dC¬?Îa>@íÍ­?u­;@*ö¯?dÑ=@ä±?ë <@ó²?)A@b²?‚‰D@‚DZ?DšJ@T¤±?¢H@W/±?·]G@ä°?5éH@‹°?R&J@n°? ªH@D¶±?„›E@¾è³?pžB@_³?Ž,B@Nʰ?-ïK@#4°?ÀP@\®?‘XN@^M ?á‡1@CÏ ?+z6@'f¡?Jy9@s³¡?1Õ9@N*¡?]<@å’ ?õ=@ñП?z @@˜¥ž?8ò@@ù?Iƒ?@Üè?©Y?@ô`?ï’?@V:?C>@P+?-æ=@qä?â­?@¢xž?x=@Úmž?Ôú7@4ä?¸k4@³°ž?ж/@LAŸ?-@–† ?@(@šÝ¡?Ƚ&@S£?+V(@0¤?dJ*@jE¥? p.@¯U¦?]½4@‚¦?pw:@H`§?e%>@Ÿ;¨?a>@èA©?¯@@oª?ò@@ÂR«?ü0?@ãM¬?nÏ?@Ã~­?îZ>@Y¯?+â=@¸~¯? A@+İ?Î$E@Šñ°?¸¿H@ ƒ°?l¸G@N °?'©H@˰?èÁH@+I°?Â`I@­o°?|êD@¡±?âñB@߃²?¦VB@ñ±?hD@b°?c!H@V¯?{£L@S®­?¿_L@N*¡?üG0@ØQ¡?f7@=”¡?hä7@Ð}¡?ÊA8@PN¡?]$;@ÖW¡?n›;@œN ?åï=@³‘Ÿ?7)@@^Ÿ?m*@@¿˜ž?ø“?@'ž?3X?@ÐW?w>@:h?¾ø>@*‹?!o;@– ž?lj=@”ž?]F;@Ú¾Ÿ?9@M\ ?‘/6@+Ì ?ül/@âö ?_+@GС?…*@ÖB¢?ë:,@«h£?Ïé,@õ´¤?ir0@”~¥?-S5@N?¦?bŽ;@ªP§?7ú=@:’¨?ML>@£]©?†,=@›ª?²/<@“«?(r>@òЬ?þ”>@µ­?÷=@` ­?^<@©î®?’‚?@|¯?ñ=C@÷U¯?³”C@0û®? 5F@“¯?v]E@‚.°?ŠD@ª­°?oa@@ܰ? !<@‚»±?²T=@‚à°?‘,A@z‹¯?ÓµE@·z®?ænJ@vó­?ëÉI@à9¢?*à0@@ ¢?s|6@l¡?¸‘6@#^¡?·ã3@'D¡?FÙ4@È3¡?^d6@fÒ ?é9@M2 ?'s9@À¿Ÿ? U>@Ë_Ÿ?þN<@\ž??•=@ø¥?s±=@Fw? ú:@çÊ?ŽØ8@|Ð?hé;@Úž?æ;@Ò. ?×J<@q%¡?ؽ9@ ¡?»l4@W0¡?©ý0@¾Ä ?äù/@Ž¡?dž.@ 9£?&0@¿Å¤?û2@L¦?T6@Aá¦?-s9@gj§?ªc:@'ö§?Ä2:@mƨ?× ;@0æ©?Ü;@ˆ[«?Ô¦=@߬?t;@·‡¬?ÙK;@Z¥¬?$Æ:@0=­?ž?þ„>@‹¸ž?©>@Ã2 ?¾#>@=T¡?`e<@σ¡?î6@r2¡?_q4@äd¡?à3@u©¢?a[1@ù:¤?Tx0@µ]¥?ÿd3@Ϧ?òÂ5@s_¦?%9@°§?ÿ9@¬¾§?I;@Ux¨?nQ<@¯Í©? >@}¼ª?:É>@7ýª?ü<@ÓϪ?!;=@XÚª?”û>@Ì=¬?ƪB@œT­?¿gF@Šf­?Ÿ C@@öÖ¨?§h?@dÙ©?]Ò?@eKª?öw>@qý©?Ô<@Q£©?:>@×Ī?;lA@·³«?åÎC@ØQ¬?ÕB@¨¬?›ë>@ŽU¬?©ß?@'f«?XÕ>@Qïª?Z¦@@\«?ÍèE@«?ôðJ@LWª?ÃþJ@ש?êD@€Á£?‡¿&@³ó¢?»B(@é£?^¾)@G-£?Âx(@}’¢?”q&@=m¡?>'(@&û ?Ö,@~ ?“¿/@ù» ?͇/@“, ?à§/@zz ?Ìe3@ZB ?7l6@$ ?Ò99@ž# ?ûö:@¾‡ ?Ï=@f5 ?‰8<@O‡ ?s:@2„¡?’9@M¯¡?1œ:@ƽ¢?d8@×ê£?A¿9@àΣ?D¸7@ï£?y‡2@h¬¤?÷Í6@6¤?Pº8@œÿ¤?n$>@ùH¦?ÿ•B@³~§?ÚB@ãJ¨?{ŽA@1õ¨?((?@˜˜¨?Db<@-¨?¤u=@Ç:©?“>@ "ª?Ä ?@ÓŪ? Ã@@¦ª?'@@:˜ª?Ê@?@=q©?\‘C@ÜĨ?VF@(ލ?»žJ@$©?/YI@Íw©?+H@F†¨?l D@2Ù£?<Ð"@¬ £?kû%@‘{¢?,£%@Bë¡?Ž&@r ¡?“N$@Hú ?ƒ&@È ?š¼)@Nø ?ºª,@™ ?ù-@e= ?"³/@u ?Ë 1@0Ê ?Š 5@;÷ ?x44@Žö ?Ÿî7@›³ ?·8@¥¬¡?–9@š„¢?ÇÀ:@9£?¯¶<@ºR£?*Ù;@}Ë£?«(;@dc¤?n™:@ú£?Ê 8@kŠ£?‡^6@`Å£?ü'<@Ùu¤?½?@›º¥?CèC@iC¦?ˆúC@lS§? sA@…k§?³²?@¥—§?D=@â©§?« <@‹³§?µ,<@’I¨?+‚<@d*©?ÞN>@™©?Ì×>@Oe©?nA@¥¨?ÏÂD@<§?ÑfH@@V§?—åH@¸ù§?wJ@cX¨?¾sI@C<¨?ªÍE@O¤?e#@ð”£?Ãê#@ôë¡?è³"@î¡?NZ#@Ù;¡?-&@‰R¢?Õ$@¨ñ¡?®%@Ýh¡?M†(@9‡ ?Š©.@qÇ ?Þu.@¹I¡?òÞ-@ð¡?jÍ.@‡¢?¯@0@Ò•¡?ÿ¯3@Ø?¡?Ñè1@GÊ¢?eË4@œ£?¸¤8@c4£?(;@, £?CÌ:@Pv£?ÐØ:@?£?üÖ9@ØD£?$£9@kG£?­>@=£?ãßA@!¤?^D@@а¦?A<@R[§?r,;@¨(§?ŠS<@c§? \?@˜M§?SÆ>@!ѧ?Û?@8‚§?ÚÈA@w±¦?«¹D@îê¥?#–H@­‡¥?~(I@ε¦?ÇL@£§?MJ@”§?CE@M ¤?.O"@û<¤?²"@‚!£?™‡"@LC£?¶Õ"@Ú £?ŸÖ"@ÖT£?ôÜ#@HÑ¢?ˆÇ%@%(¢?ò'@%¤¡?œ--@á?+þ/@»X¢?ÖÙ+@O€¢?¼¤+@ºs¢?ˆ/@V¢?x»1@I £?ù1@p£?»=7@+£? 9@ž£?Øn8@»“¢?´º7@vU¢?Ý=8@À¦¢?F‹:@O¢?.‹?@qc¢?£{A@æý¢?M B@lУ?<C@Ǥ?$B@'!¥?ÖÈ@@”R¥?ü§B@௥?€l@@¼˜¥?G¶=@Ó¥?Dl>@ ¦?lƒA@Ò2¦?¡7B@7ï¥?ÙÄA@†d¥?ˆ¤E@ꉤ?”vH@Ô-¤?fæK@ž7¥?c„K@þ†¥?ë}J@ëÝ¥?ÕcB@ˆ¥?'¦"@¼V¤?/F#@hÚ£?ÕG%@)¤?ei$@È›£?‰¿$@úô£?Â6%@º£?|'@Ë„¢?ýt)@œs¢?Ñb-@?Ô¢? ¹-@¥¢?3U)@I¢?ÄY-@‚?£?®Ó/@öû£?ÿ=3@t¤?¾”4@m¿£?$6@½ë¢?ZK6@U§¢?n@7@'d¢?Ûb6@’¢?‰I9@°O¢?Ô„;@6Ø¡?IX?@/Ü¡?Ä;@@Ô¼¢?‹B@*£?XÁA@[&¤?=‚A@lH¤?q™B@èJ¤?@X?@@$¤?hÜ=@ëĤ?ù¼>@ç¥?¼v@@Éd¥?Y×@@Ñ1¥?'C@†À¤? ŒE@^Ñ£?QýI@B„£?6ÕL@A_¤?ÆàI@¤?BgF@`¤?ëš@@ž|¥?¿<"@þ¤?À#%@´’¤?!'@­#¤?°Õ%@ºª£?«…'@W(¤?I¬&@y«£?ø5(@Ø £?Jb)@3£?½&-@M£?X_+@‹Þ¢?=Ÿ,@๢?•/@;›£?•ì4@‚\¤?H6@Ø—¤?kp4@ss£?¡À3@¼`¢?E"6@<…¡?ÕÒ8@¸à¡?Â]8@Óï¡?å8@_>¡?Šó;@ì„¡? o=@o¡?ʺ@@Ðo¢?j“@@!ˆ¢?hA@­Õ¢?õi?@Y¢?óW>@äA£?ÖM>@¢£?ék@@ކ¤?ñãC@N‰¥?^ÃB@Íò¤?ÙØC@2¤?ÎF@AË¢?²¬H@Ϭ¢?®®H@î¢?PF@a5£?ŽD@á:¤?ÖÕ>@×å¥?‹Ã$@Å¥?ôÃ(@Ó¶¤?æ„&@£Ü£?ÔT'@Ó¿£?ÉF)@°›¤?®¢(@‹J¤?bÏ*@½8¤?÷Î-@$Ô£?Ñt0@€>£?ùô/@½£?G 2@†£?¨W2@p¢£?Çæ6@ÒÛ£?ì 7@NË£?ò©6@öQ£?•p6@â"¢?Ä9@JK¡?›¸:@2ô ?Q¾9@P¡?Æâ7@:¡?s¡8@!m¡?·=@4¡?Ž@@(¡?®…=@pñ¡?yá=@j¢?Ž>@2¢? ¡@@ý¥¢?~E@á£?¥E@æ ¤?V^D@üý£?u¾B@Äî¢?Á^H@#$¢?ÏJ@b¡?ôžE@Óp¡? í@@Ê¢?”=@Ém¤?KÜ=@©À¥?¯å(@Òÿ¤?„ )@Ã"¤?Ù2'@sØ£?|)@d–¤?°M*@>¥?3.@_6¥?Ã-@¶y¤?”µ1@i1¤?D‚2@ý¤?Ñÿ2@°—£? †2@Äå£?mY5@Ú£?'7@¬C¤?‘¹7@Ò£?2 8@’à¢?S:@­r¢?‡ä;@€ˆ¡?)9@+l¡?P46@Êœ¡?8†3@p£¡?;w5@B· ? ý6@°I ?Èt;@SÀ ?2=@ðŒ¡?Žk=@m|¡?QC@.¢?_ÑH@/£?H K@»i£?û@äf¡?AC@û¡?]„G@‰¢?ê%K@§¼¢?wrN@NÍ£?¿ŒN@ÿŽ¥? N@æ¥?Œ[N@Dg¤?†—H@hÚ¤?ÝŸA@_/¦?¸I<@¢¦?õ¯:@+3¥?‰Ä1@·¥?¿b2@Ï¥?“2@pÕ¥?ÉØ3@ìj¦?i3@)š¦? —4@ãü¥?á2@hˆ¥?…2@GÕ¥?P2@³’¥?Å 2@)¥?x71@Bu¤?g”3@wº£? é2@}£?xÐ3@Æ„£?44@´d£?õ£2@øë¢?W0@•£?%5,@‘¢?½,@s¡¢?Λ,@¬¡?µ/@ø¨¡?`7@”ƒ¡?< <@¡?U|F@=¢?˜íH@þÈ¢?ØÖI@­£?íÿM@ê£?ò\R@Š¥?›šQ@[{¦?šO@Ds¦?q,H@§?¿µA@’¨?n;@b—§?j»4@úB¦?Þ4@Ür¦?ÉO4@o­¦?ÿ—1@$º¦?^€0@ú\§?,I1@s°¦??.@Mù¥?#Â-@uõ¥?nI,@n:¦?EÌ)@ek¥?y)@VĤ?W*-@©·¤?ì©,@ÙB¤?xb-@Û|£?!Þ,@k£?ŸÂ,@»£?OÐ+@¦£?þš*@Ô£?.(*@_R£?¨*-@Õ¢?Ój1@+È¢?©8@¡È¢?ó>>@¿æ¢?‡hF@3£?kYH@XG£?·€H@;£?øØK@L£?çFP@ÎŽ¤?…‘Q@ÓL¥?)M@Þw¦?þ]I@ŸÞ§?B@ħ?{¡8@e8¨?ó20@õ¦?WÂ.@=¦?¹)@ à¦?¦'@ʦ?Hê&@¯·¦?ìÝ&@÷¨¥?žû&@º¦?œ&@î~¥?Ȥ$@øh¥?’v#@.O¥?…æ&@¤$¥?Üc)@Ù‰¤?Hn'@k0¤?‡U&@ßù£?fa&@6Å£?nƒ'@1ޤ?¾ë&@=Í£?ÀO)@^¤?¾÷,@¸ð£?Å~4@ÇW¤?ÌÑ9@äó¤?à@@Ф?tF@P¤?0yH@Ô¤?´ëH@ %¤?c¥J@æ£?ÿuK@fà£?ËI@¯õ¤?ªB@H¦?§?@O¨?‘;:@Á’©?ð1@qÕª?·5)@ø‡¦?! @<ó¦?L#@QW§?%P@CS¦?#§"@ŒZ¥?ˆ@yù¥?U³!@?¦?Å@!@?t¦?¥ !@TÔ¦?fJ"@<—¥?Qy#@>,¥?œ†!@Õs¥?j™!@3Ĥ?ah"@Io¤?'ö"@aM¦?^%@ùà¥?¡O)@}¥?a-@gH¦?5ç3@:“¦?ëx9@w§?ÝÌ>@‰§?PC@}¦?æBF@RЦ?âÏB@1z¦?÷A@€“¥?WÛ?@‘¥?¶;@ 0¦?ßò6@º§?~1@ ¨?Ã-@m·ª?Y[)@¥;¬?‹$@2©?¹@Ω?¸C@,‰¨?¼g @ö7¦?@Ǧ?•@¥²¦?ëÏ@sT¨?Ñ!@ÚY¨?q(#@o§?ãi#@&¥?[@*Ç¥?è@Á¥?~•@tئ?s @:‘·?‘—@)m»?³Å@¾»?M™@!»?bÅ@ƒ¸?¦Ã@ ¸?Ž©@»¹?q@)´¹?Ô9@‘3¼?§x@è…¾?2@â»?c¢@?B¸?ÄÜ@†´? .@ný¯?¸]@ƒ÷®?kóÿ? ü­?£|ü?²­?0”þ?æ÷®?Ö^@Äô·?ƒ@ï,¸?`Ž@ßå·?È@lŠ·?<Ï@*á·?ëd@3¹?íT@ïÉ·?ê›@ÇO¸?s@û?19¹?”ô?ér·?=iñ?µÚ¶?u<ó?j³?~¢ð?ìµ?˜aî?šÀ¶?Ãzõ?ሺ?ÐEû?„ö¾?^ @YL»? @Ľµ?¯ø?¹ö³??Ñõ?°>´?#eñ?~²?¶oï?`²?mó?ܲ?Ñmü?½Ý±?-± @òX¼?U@h'»?—™@˜$º?L@íȹ?]Ä@ˆm¸?"@tÿ·?Ý0ù?9Ó·?ˬë?.“¸?ã*è?SJ¸?m ß?[¶?]å×?„žµ?w\Û?)´?Æòà?.Ÿ·?òËé?»?;†ù?`k¾?PÐ@:½?0@å@¸? Òø?“L¶?ÁÃð?(‹¶?°£å?ßz¶?"Dé? ¶?%®ó?ó–µ?ÄÐ@ês´?îí@ÁN¾?Ð@½?Óï@[¹º?e;@pt³?#þ?š³?úè?½Z´?^àß?D’¶? rà?þW¶?ÿ¡Ú?œ,´?õÂÓ?ä‹´?®ÇÓ?tù¶?ºÀÚ?ƒÂº?[†è?Ô!¾?uÃù?Ó¢¿?a@ºË¼?ûþ?=»¸?«Õô?ý¹?¼ë?ÿй?^æ?Ÿ*º?+ì?äx¸?dwú?R¸?Íë @._¶?‘¼@È¥¼?Á0@› ·?¥«ù?Ü:²?“äç?ee°?;Þ?œµ?dÖ? œ·?¾)Ñ?pª¶?<;Ø?ʶ?B×?Æ ¸?~âØ?䔺? mÜ?z+¼?÷·å?|Á¾?óÞø?!7¿?Ñû?{¾?økö? ½»?D‚ñ?vʹ?­tì?g¾¹?—%ì?xº?¥Œó?笠?(_@é·?ª@<¸?Qí @|•¸?)fï?‚M³?hÛ? à±?æÑ?y”¸?CÍ?àl¹?/¡Ë?¹k¶?{mÕ?læ·?jÝ?óúµ?¬bä?\ê»?Õõè?Ñ¿?ߟì?†_¿?‚o÷?-¨À?[ú?s„¿?Ÿ\õ?С¼?SÒð? ý¹?÷öö?±¹?iý?B¤¹?-Ù@³D¹?7+@tª¹?g@à¹?Ñ])@ª¸?Q9×?µ?ˆ¬Ì?a¬¶?¬yÅ?ôŒº?Å?|6»?„ Ð?é»?{"á?aÁ»?â¨ð?”í¿?Cñ?_Â?H1ò?úÓÁ?!aö?g½Á?øßø?U¿?èÕ÷?}/¼?È"ù?`š»?§ý@,¼?RÜ @઻?ý*@Ù¼?Z†@‡–¼?÷û%@o¶»?þ0@¸d¸?6¦È?鉶?VÛ¿?Òn¸?ž$Â?RMº?©7Ò?÷ø¼?júè?ç^¿?7û?ûÜÃ?üãû?gsÃ?Lü? ²Â?)Yû?ÿ‹Á?‰ù?‚¿?sèû?м?¨ô@Â0¼?¸K @Ÿ¸½?ŸÜ@ÿ¾?«X@¼´¿?è…#@»-¿?+*@Öe½?KP5@´¸?Þ½?w&¸?_Ç?ë-º?\Ú?w%¿?«3ì?£rÂ?w±ÿ?Õ–Ã?N`@§¬Ä?„ˆÿ?ÆÛÂ?»¶ü?aÆÁ? ðú?i<¿?çÿ?ž?Ïë@B¾?Q«@¸¤¿?Ïc@ÄìÁ?–p&@Ã?ÿ.,@ÿZÁ?sº/@PÞ¾?Éo8@‹u¶?­4Î?ùŒ·?Qà?þí½?’íí? ÕÂ?‚\ü?fyÄ?åí@Ì“Å?'¼þ?uÂ?ñ5ú?ÚÕÀ?”Þþ?Ôþ¾?ˆV@•¿?¯— @–÷¿?ô>@&,Â?hA#@sšÄ?ß-@]ÚÅ? m1@RpÃ?+*3@hpÀ?åé7@”²º?þLÞ? º¾?íøé?;Á?¦ù?žÃ?±@%oÄ?!þ?zRÁ?,Åù?*À?Ì!@ÄÍ¿?/@ªŠÀ?Z@ÕóÂ?±Ú@%Å?¾m'@TìÆ?Ĭ/@ñµÆ?b7@«âÄ?÷^5@ë Á?Š[:@Á?Òè?éyÁ?SÊó?¬Â?êü@‹ãÂ?!Ãý?ÂWÁ?Äý?S¿?³‚@«6À? Ü @Â?ÍÏ@º¹Ä?» @D‡Ç?Šo+@=È?` 2@ŽgÇ?°:@/ÛÅ?T9@bñÁ?öO;@ë´Á?x­ð?A/Â?í˜ù?ÅEÁ?2cû?³îÀ?–&ÿ?Çè¿?«‡@=1À?íØ@¾ Ã?³@ÖËÆ?˜%@µíÈ?…ñ-@þ#Ê? M4@2È?þ;@-Æ?Pâ<@EÂ?Ä}=@ˆÁ?´1ø?ó²¿?Eý?ãÀ?;î@DC¿?ßÝ @¸€À?&û@êÄ?)›!@ºÁÈ?› *@÷ªÊ?&0@µDË?¾17@ÎÉ?ýƒ;@V©Å?f<@švÀ?Ìa>@8†¾?µŽ@_¹¾?Ýô@y¢¿?1}@VÂ?¿@£KÆ?,&@±£Ê?Ì-@ÅJÌ?Ý-4@ÔË?-8@CÉ?x9@Õ#Å?Þº8@¦¿?­³;@íN¿?^©@<ïÀ?Q’@Ã?ÞÂ"@>ìÆ?^×)@ÌË?ç2@qÍ?ºZ7@åË?øÖ8@xÉ?88@TsÄ?ƒ7@—,¾?K0:@kwÃ?fŽ%@#Æ?á?+@zóÈ?È'/@û–Ì?Äp5@&æÍ?¬'=@r9Í? :@V/É?¸r7@ªGÃ?:i6@Z½?p¬7@?êÈ?ê‰3@$§Ê?&W5@¤Í?¤È8@ÀÎ?TvA@¯ÆÌ?M»>@‚oÈ?Zà6@PÂ?5@颻?´l6@Ï6Ì?Õ9@‰›Î?Ñu;@â*Ï?ùeB@L„Ì?,¹B@ôàÇ?- :@ÄÙÁ?ÓF7@^»?‰I7@><Ï?Qi?@ãÏ?~CD@gÌ?‰@êk¬?T@4@}¬?ï;@=R¬?”Ô;@˜Ñ«?‹95@K¬«?Có(@(¬?î(@ލ«?„1@Üzª?ú08@Y£¤?¼˜J@5 ?ÑtM@&Ø?C@}Dœ?6›>@ý¾œ?(ê4@ 4ž?7¯0@b}ž?m…3@?kõ8@”mš?Õ¦@@cø—?äéD@/+—?ë@D@™N–?'VH@-F–?`ÄK@©5—?‡rI@Ñ/™?_àF@E›?$½B@Rôœ?àÊ?@¢Xž?îG@@ Ìž?æ3@@%bŸ?±8>@–Úž?ÀÌ5@óñž?>.@; ?Ç·2@ С?ó4@´©£?<%:@Ëð£?ID>@ ×£?•l:@û1¤?<@fõ¤?²°9@_¦¤?÷8@¼ž¤?Ÿ•2@”[¢?ñ‘0@ŽŸ?†l+@t ?rŠ"@K› ?îÎ#@qþŸ?í(@œ‹ž? ë*@pž?s#.@ž?g°3@ú|Ÿ?Õ‹2@Ÿ?@;/@jž?°;,@ª#ž?õ~*@9œ?ŠÚ)@÷õš?P$@ÜD¯?ì=M@ž°¬?¦<@¹¬?/¦;@ú?¬?¦Ð9@ݧ«?‘23@}èª?QN&@’þ«?Û§#@„J¬?à‚-@ÄŽ¬?¡4@£¾¦?WC@å¢?’P@á}Ÿ?«L@??Ñ[G@&pœ?å¸=@ß? 5@g`Ÿ?AG2@.mž?6r6@IÕ›?.;@¨¼˜?–ŒD@ÇK—?ùVB@ª•?TYB@¼–?åBE@Ns–?ºH@»˜?¹G@ÿÏ™?E@a²›?O·>@ŽÄœ?9º;@¥£ž?:@Ÿ?Ïr>@”ž?LÖ7@³~ž?Á4@WR ?4î4@À¡?¾Š5@‡y£?¯:@ÉÓ£?îù=@ɤ?aM=@t1¥?Eù<@‘:¥?;Ú<@Kð¤?Ùi7@x„£?zœ0@( ¤?Á +@™.¢?¤U+@ì ?œu$@‰v¡?&œ!@IE ?¼…"@ÏýŸ?¶$@BNž?!+@,¶ž?¸/@뻟?d2@je ?¢Á3@pœŸ?Ù‚1@ }ž?4Ø,@Œ¸?F,@ꇛ?5J(@ƒ­? ¹K@3±¬?“»?@-T¬?<:@†#¬?.õ2@©i«?ß(@öô«?2$@P¬?Û-@¡Ä¬?€&4@MÞ©?Îù;@+W£?„æM@„Ÿ ?W8Q@²Ñž?gM@î:?7G@ùÄ?+Ã;@Hž?Q6@ù ž?ÅÀ4@+œ?{)9@×+š?0j?@ៗ?{bA@–?oÐ=@en•?Ú³>@eç•?5“?@•S—?PÜA@¨:™?²VB@àù™?êºA@b2›?;@%#?¬ 9@˜2ž?¡>;@Dgž?c­<@ÎÓ?ø[:@:¨Ÿ?«+9@4É¡?™ý<@š£?ÕÛ?@ÍÕ£?ó4?@õK£?ë“>@"w¥?Vü<@í¥?°Ë<@šß¤?„|:@%Z£?;5@¢i£?7Œ+@mu¢?6&'@Ûߢ?æO'@!“¡?K%@¾¡?Àˆ"@/ÛŸ?kW!@SÔž?sâ$@(yž?Uÿ*@¡óŸ?!Ì.@' ¡?c¤6@j(¡?¨¦7@÷ž?{3@ÎW?&]-@è6›?VX(@ i­?8ÆI@V}¬?9Œ?@È(­?x6@"¬¬?£.@Ï«?Ã[*@E‹¬? 1@G¬?OX6@G…«?·Ì9@z£¦?©ÒC@nì¡?9¡P@`  ?÷°R@ú ž?—L@X?ÀNE@¨j?7œ=@%Ó?Ð6@õóœ? 8@ò•š?°6>@¶}˜?ÝA@7q–?>È:@¨•?ØC8@@’•?NO7@;—?6>@C’˜?ÞÞ@@ï ™?ý²C@5š?ÜÎ>@¥W›?å9@æ[?Q‡6@|1ž?ð;@+ú?ç›?@Ñž??œA@JÜ ?;Q@@´€¢?æþC@=à£?ÎÓA@]ì£?@@Œ¥?ªA@M!¥?7Ò<@öq¤?+Ï7@¬¤?ðß3@ÉM¤? ®,@¶¬¢?+'@©*£?k&@z¡?½@)@‘¡?¤%@Ü¡?D-$@· ?¥"@KìŸ?]}'@qÈŸ?ñÔ,@sÊ ?©g1@Øý¡?’ë3@µöŸ?gô0@š›?%N/@{œ?,Ð)@É­?Y/H@K­?H>@W#­?¨«8@ƒ¬?›Â3@)­?d'8@Ì«?&à;@e¢«?„ª9@Ȫ?‹'=@פ?()H@mT¡?¬hN@®&Ÿ?>7M@Äc?‡K@‰'?<"D@¡ƒ??=@äbœ?†R8@µYš?q3>@ØÔ˜?8C@p!—?ù?@丕?Ñy9@Л•?Ê 6@Oö–?¶Ì6@½¦˜?M;@&R™?ê˜?@—Ûš?ðÁ@@®Ôš?¿`9@\“›?{¼8@w\œ?¯ =@·ž?uÆ?@ž?…vC@çŸ?3ÍB@&Þ¡?ÉÅC@û{£?a×B@¤?”ÐB@š¤?âC@ëq¤?5š@@Â;¤?ãŸ9@ú!£?/1@_Ô¤?o¢.@X¤?c²+@KÆ£?;)@½c¢?â&@ÔÕ ?µw%@À¢?.$@4¡?^Ÿ$@Š@ ?³‡%@hX ?‰m)@¨¾ ?ë»1@yE¢?¯0@Ã%¢?âe+@œOž?®&@”åœ?Œ|'@ô ­?F@ã?­?NC@n¯¬?wZ?@´¥¬?ê?@¶§«?81B@è$«?ïÒ;@ëJ«?ïQ:@6ð§?DäC@™¤?ƒâD@Ýæ ?(H@²Ôž?ÞšG@Mé?±!G@ h?)xD@?vœ?-ª>@’›?ÉÇ@@Ó8™?²ÓE@§Ë˜?œ@@ ˜?r:@•ž–?F†1@J—?Ò¼3@¼™?7@cˆ™?&·9@‰š?‡B@,!›?²M?@d«›?‡Œ:@=£œ?7è<@ex?+Î>@tvŸ?[UD@ïÇ ?\%D@ߢ?i4A@Í¢?DEB@Hí¤?"`B@Þ¨¥?´F@5¤?,[>@Ô¤?Qû:@×ð£?b3@•ã£?ù-+@r]¤?”+@ÿ~¤?öå'@g•£?¾'@k¢?ë+@ŽY¢?Š (@¢Q¢?ë/$@åÿ ?Jh"@V ?Ĭ*@|?¢?om2@\K¢? r2@E9¡?%º+@ÝfŸ?a%&@èž?yÐ&@à­?YDK@­¬?ÅJ@>¬?ú¸F@¬w«?âEG@ëKª?û@@½Mª?ÿ=@Ī?ļ>@Ô}¦?;IC@Nl£?-WB@¸¤ ?‘@C@)CŸ?´E@©3ž?HõF@¤`?MÍE@Šºœ?…]D@jŸ›?ùG@ûŠš?3XA@7“™?„q:@tÚ˜?"±/@v˜?Ú.@cf™?”4@ü#š?ÿ8@ÄKš? @@@æš?ѳE@¶œ?AH@@ü¶œ?8à?@Ͳž?+î>@ ?Ó8C@'!¡?¦ C@£??åA@››£?A(@@‘²¤?³fB@—©¥?=5@@ðT¥?bÌ>@4¿¤?–Õ7@ï{£?ý 4@-Þ¢?Ñt+@9Ÿ£?Ã[(@]Ò¤?°*@4~£?«ª(@r¢?íN+@:_¡?h›,@µ=¡?¡})@"Á¡?£›'@¿.¢?JR,@›¿¡?æÈ5@žÀ¡?8d5@Óß ?W,@™mž?|º'@BÀ?­ë(@óX¬?’ÑN@ú «?²µL@¥àª?ñ·I@s‰ª?n¡E@\Q©?åæ@@3©?™­@@&O¨?lßD@VQ¥?pEB@ܧ¢?3AB@"z ?-C@œžŸ?kîD@¯ãž?lH@š‰ž?ÄòD@Ù‚?7@¥L¥?l:@Ф?–0@Lè¢?,@¤?e0*@V/¤?_~'@ªå£?UÂ(@)û¡?¿+@ÃQ¡?–ï*@zU¡?ד(@¢?uI.@Û‹¢?1@àÓ¢?ˆi5@¡?éÓ2@ñ ?T-@ÍŸ?ÇV%@þJž?8ø%@¹&«?YçN@øªª?ªO@ª?Þ3H@è+©?³‡A@†¨?…§?@슨?3¸B@Ħ?òÞB@õd¤?„ÆB@¾Ä¢?†B@6Ž¡?œÓB@ùÅ ?^XF@(Ç ?ñÆF@ùWŸ?¤³D@Ó™?o#>@c¿œ?&5@¢®š?¸,@„Ž™?)H,@ð™?í?6@Ù™?üŸ@@CG™?ÖËA@Oʘ?‡¸@@®æš?¾6A@Vœœ?ê’?@“$?ÂA@—´?ˆC@Ÿ?ÞzF@×ë ?QTI@ðS£?þ$H@úÚ¤?ò-B@Öc¥?ÙÙC@ÁI¥?BhA@è%¥?÷ã:@/ ¥?θ3@ß‘¤?-+@éI¤?6Ë'@¨£?•½$@3ó¢?+E)@ú¡?6 (@ë³ ?',@y ?â'-@—¢?³À4@Åo¤?×ô5@\V£?%K6@¡¡?€o0@û ¡?Qr(@ïÛŸ?‘å&@hÌž?)'@*‰ª?) N@!y©?4ÆJ@~©?TµC@Ëè¨?“D>@{§?–:>@ ¸§?ÑÓB@yM¦?"Ø?@J¹¤?ò>@u)£?ÑÕ?@Š¢?ºZE@ô)¢?ŠG@c™¡?—D@•ŽŸ?¯c>@KÞœ?˜4@p6›?­k*@Ëš?Ëi.@(z™?&:@ u™?%>A@Y;˜?hxD@òC—?‘X;@½™?Š2;@}G›?yý>@ö¨œ?<@v…ž?í“>@š' ?â{@@0¢¡?³D@,¤?™ôA@p¥?D›A@Ú¥?ëE?@rr¥?!•;@»¤¥?3¾8@‡–¥?0˜3@÷œ¥?s†1@Á¥?Â*@M¤?>h#@¼Ü¤?2•"@3a£?G+'@\¢?&[&@ìv¢?á,@tv£?Ù¶1@ÿ¢?L63@-¢?Vù0@Ós ?{ì(@ïØŸ?¹(#@}nŸ?3û @€®ž?_"@8V©?>4I@†¨?÷¹F@ø§?ä6@@÷ §?ÛY=@º€¦?wã?@aª¦?4A@lI¥?µ=@âa¤?ªf9@°´£?gè<@œ£?ˆºB@…£?­‹A@nA¡?“'>@“ž?'á5@ 2›?P.@PÀš?Äý,@|š?ïº:@Kš?æA@›é—?è?@”–?À5@lX˜?Œ¬4@£›?¹Ì8@«?¶Ý9@Ó´?­Ì:@ôK ?]‹8@Ô]£?wÀ;@`ï£?#<@“s£?á;@Ué¤?µ°9@2 ¦?¶ñ3@—v¥?R3@*¦?ß4@o¦?tŽ3@±ð¥?3ñ,@{§¤?xc%@LΣ?YÎ#@ïä? Ÿ"@¿£?Á&@ˆ£?,@˜´£?¯m,@tœ¢?«)@Iu¡?…ï'@~ ?jë$@ÅŸ?™î @ÞŸ?5¢!@Vï?åü@Dê¨?E@$;¨?@@>a§?êà=@+§?f<@ÿã¦?]OB@¾·¥?pµ;@å-¤?Ü8@±ƒ£?…\9@Šþ£?ÉS<@Çb¤?ðÖ<@¥_£?|*:@ÈD ?‘•7@f9?]‰/@Ø œ? a.@c›?ãj8@_þš?êß?@’ê˜?3n=@Ù–?E…1@–õ—?:71@Õš?8)7@? q9@¼ž?Û7@Ø ?€ç8@iè¢?(é7@sߣ?l˜8@/[£?s§8@‘Å£?"Þ4@8µ¤?¨3@jì¤?Ys0@Of¥?-ê/@‰Í¦?CV5@A§¦?q½/@Zn¤?Y{*@ö¤?ܶ"@£b¤?ÊT$@È ¥? è'@E¤?zŸ,@š^£?Á)@~o¢?&@\¢?2"@]d¡?™½!@â, ?$@D1Ÿ?#$@ôBž?#@«b¨?»)A@QÁ§?¦Ü;@M†¦?Ã>@Dã¦?U?@üå¦?á£?@ø¤?ë<;@­ã¢?7:@˜T£?šD:@àn¤?£å8@ð¤?b8:@£Œ¢?y·5@MàŸ?!3@Ôûœ?Ž0@p–œ?•8@Ç,œ?|„=@Nš?B™>@ò•?’Æ1@ñQ—?u.@ü š?*4@/œ?"6@bBŸ?+W5@P ¡?kk8@Wç¡?ÇÌ9@³¤?»µ9@FФ?›:@&ã?^"5@è¤?‚k0@c¹¤?.@|£¤?û+@Î$¥?Ó½1@ê«¥?›#1@åN¥?ãr.@¨·¤?äO+@Ï®£?Þó&@Hg¤?Ýn*@ò¥?¡h.@ꈣ?^š'@ÔÁ¢?‹!@a¡?¯³@Ãn¡?І @­S ?ü\"@ÝåŸ?Ê„&@)cž?–&@cº¦?ˆd?@tB¦?fè=@µ^¦?•B@&ñ¦?ÄH?@<]¥?ÜÞ<@+¨£?xÕ9@JP¢?li9@.³¢?fî8@µÄ¤?G7@Vé£?éÙ6@:d¡?gÞ4@ÈŸ?¸a3@Ñ£?†:@¹äœ?¥ù>@Èš?›(8@©Ù–?Áx1@Io—?5¬,@â™?/2@ï­›?\7@¯Nž?"7@àž ?íö4@Ö¡?l!9@[ï£?ö=@eפ??<@LŸ¤?0*:@tߤ?Á|4@æ¥?š¸0@´P¥?ð.@K¥?jm/@¥?¥//@k¤?ÊÍ/@M×¥?‚ñ+@=E¥?íB.@øÃ¤?®@0@Tð£?m1@D·¡?z¶(@Ü?¡?»&"@á—¢?Êd @9£?ÇÉ@V$ ?­Î@<£Ÿ?j^"@€Óž?k])@Ű¥?Ñ.?@Êá¤??mD@R­¦?g‚B@ôØ¥?=?@@ùФ?¨N;@ ¨¢?VÇ:@>ä¡?µ8@¥å¢?*‚4@p‡¤?y‘4@í £?5-5@V× ?ª„5@žŸ?Do<@ +?§gC@GEœ?88@Aí—?øú2@$ö—?“,@çØ˜?zh-@×á›?®4@¦?ro8@¶/Ÿ?W¯8@ ¡?ž8@©%£?xÖ?@‹•¤?ߨ=@–¥?¶¦=@€¥?y:@•æ¥?Êë5@E¦?0ù2@8Å¥? ¤2@$ÿ¥? 3@Mæ¥?xø,@®i¦?<~.@½)§?Œò0@­þ¦?[¸4@Çz¦?k3@òa£?ŠE)@+©¢?‘A#@Ÿ.£?û°#@æ£?ë!@ʘ¢?¨— @¿Y¡?4"@?+ ?§a+@µ¥?B@éõ¥?LE@™Ö¥?Û˜A@s«¤?•Ù<@.£?¹í;@x ¢?ø£9@¿¨¡?Ø$5@£?qã2@[P¤?üÁ5@‰á¢?ð`7@{© ?lÉ:@çZž?–A@h¨œ??@}™?à 6@šÚ—?D>/@ص˜?MO-@[­™?¨0@Ê­œ?Q6@Àž?L;@¹- ?²;@-8¢? Á<@žÝ£?ñ•>@ÆÏ¤?.™<@ËÀ¥?;>@v\¦?sT<@î¦?³*7@¾h¦?—µ7@å7¦?(5@há¦?¹G1@ÊȦ?rú-@X5§?jÙ/@]×§?Æ1@xܧ?Ê 3@9¾¥?z9)@ÀǤ?Õî#@]Á£?’>#@F{£?ë¬!@>:£?-#@ƒ£?ê$@ h¡?kh*@[¦?w}C@«¥?ÑæC@y‹¥?¦>@M)¤?‰–9@£Š¢? <@¬b¢?æ9@I¸¡?·2@¶£?Á€1@¡/¤?hµ5@ÿr¢?N8@çûŸ?„Y@@z½?pA@7”š?â^8@òj˜?èŠ4@.™?¨Â/@ ~™?´Ã,@”òš?ˆ1@vû?Ñ8@éh ?¸k9@€¿¡?¥á;@«;¤?8z>@&¥?Z;@Åã¥?ó•<@!Œ¦?‹V?@J ¨?h:<@ú¢§??Ü9@¡Ä¦?7c5@£B§?ß|4@寧?Å+1@Â6¨?8Å0@ s¨?8œ2@Ox§?M2@¢é¥?¥*@K¤?+'@>§¤?Í©$@I£?I¾%@7£?D7%@PO£?$q&@·È¢?ƒF,@U*¦?É,D@ P¥?[Â?@ÿ¤?t 8@_°£?~Ý5@E¢?U!8@§¢?wï6@ˆ*¢?Ýf1@&¤?úõ0@<£?&Š:@7¡?Œ±>@-Ñž?žtB@­èœ?¾8@yO™?\Þ8@î§™?pt5@@š?.s/@úªš?Öà+@ïŽ?72@mëŸ?s6@Zm¢?Š:@1¤??@§Â¤?x¼<@¯ƒ¥?&Ü9@­¦?«ß<@̨?*¥<@qŨ?=è:@™¿¦?ñ$9@šâ¦?Eý4@nŒ§?Kô4@£u¨?VÁ3@Wû¨?ô2@H¼§?¤O/@½y¦?¦°*@>ߤ?õb'@«£¤?­¢&@ÏS¤?Âw&@Üæ£?§û*@¤ˆ£?my*@p!¤??+@Ìâ¥?„Ž@@r™¥?£¾6@éÛ¤?Aú2@ìá¢?¶b3@pO¢?^ 6@XZ¢? y5@øÁ¢?Ÿ1@£?7s4@x„¢?¼ =@™- ?èù@@”rž?¢ ?@©â›?ƒ8@µÐš?l°8@PÔ›?ñg6@³È›?ØÃ/@§†œ?LŽ.@Ÿ?é²3@{ö¡?…6@9F¤?lô9@WÂ¥?ŽÜ>@¦?g=@Ú §?Eÿ:@h¼§?^¢>@p©?±Ç;@¡~¨?êõ9@t§?:ý7@ã$§?6@ÉK¨?Ä6@¬©?ÿ5@ ã¨?†â0@¸¦?Ù,@Ü·¥?³='@D¦¥? '@g^¥?'U'@UK¥?„)@\ܤ?_§*@f¤?Ùò-@>l¥?ì:@úI¥?72@¤?ŒÔ/@æ¢?Û/@”i¢?µ7@Ä?£?P3@»ò¢?t4@{¬¢?b_:@âM¡?Ü‘>@*KŸ?öU>@E³?‘9@Þ?¤â5@Ú œ?I|8@Xf?c5@Ó ?d0@Iž? 2@¥Œ ?Ó6@ £?n´8@d¥?+Q:@ަ?ã×=@å§?#>@}F¨?îÁ>@âô©?™?@¢ª?¡;@³'¨?~ˆ9@¾|§?É@6@Ïϧ?Y]8@¾m¨?(;@³©?˜6@Ob§?.90@©ó¥?Ž×*@õ8¦?”|'@tˆ¤?;g+@/2¤?kí-@•t¤?ú,@T¤?V,/@y¥?ZÞ3@ãâ¥?Æ£-@&¥?Q°.@…ƒ£?=2@Éc£?–7@鯣?.÷6@È*¤?:@\•¢?x£=@Üq ?²y?@ûÖž?Wø4@–ž? Ä1@o®?fÔ5@_?ô|6@Vb?;·3@< ž?ã‹3@÷5Ÿ?w 5@ŠÅ¡? 6@‹Þ£?ý-9@hf¦?T_:@¶Œ¦?\$>@6*¨?)É>@}3©?Ú@@pªª?!B>@ólª?%8@v¨?õ›8@Cͨ?·09@ש?%=@]R©?fÛ:@M‡¨?=Ó3@)§¥?×/@nl¥?Úg*@× ¤?±'@4„¤?š,@ûÈ£? ½,@´…£?= /@ ·¦?‘]+@‰§? *@–"¦?Åÿ,@BϤ?«6@)…¥?(h;@¿Ú¤?´ƒ;@Ëc¤?™Š>@ă¡?œÅ?@wˆ ?g6@:ž?``/@_mž?.+0@uŸ?+2@Ýž?å¬3@kž?=ú3@Ùñž?Ç-5@S× ?M*5@úñ¢?oÀ7@ý¥?¼Î8@§?$5;@rž§?c <@4F¨?B«?@;©?Ð@@¥©?«!<@¦p©?Ät9@mœ©?Á<@¢©?± =@& ª?‹ý<@HR©?"µ5@}C¦?%l3@W¥?Ía/@÷¤¤?$H'@÷û¤?D(@ͤ?-@é+£?v#0@{ú¨?Ð3%@’&ª?r^(@•º§?Ý~0@§?æ`<@ç?As?@ÁÊ¥?7€>@¿ß£?YY@@úh¡?¼ûB@•Ÿ?RÙ2@]ž?¹œ,@´‘ž?IC.@k“Ÿ?Rü0@Þ3Ÿ?O²5@ðgŸ?‡7@·Q ?6@³¢?¸7@öÚ£?¸·6@˜ù¥?"Â7@&§? :@ûŸ§?hz<@ZC¨?½5>@¨?¤?@>ù¨?ÃC;@,ª?¢U=@*ª?1Î@@‚ª?Ò`>@+ª?øù6@?B¨?Áø1@N`¦?<­/@[ã¤?ƒ+@÷¤?+(@¥?s´*@T¤?5,0@s¬?ˆ¾!@° ­?Ô)@ºª?ôó4@{`ª?€ó?@ê§?‘åB@¢l¥?^2B@:£?§öD@»k¡?¯n=@½Ÿ?  1@ïsž?4-@·kŸ?¦ -@_÷Ÿ?†H2@4ëŸ?És8@–8 ?Ý[7@¯$¢?ŸÓ5@ ²£?Èù5@§c¥?Ñ6@&æ?/€7@l˜§?«Ñ9@¯q¨?ëÍ<@jð¨?ùX=@>ލ?hX<@ÅÈ©?.g=@}pª?÷Ÿ>@ ¯ª?xz@@q÷©?ð¦:@þ©?þÆ5@ §?vx3@5¤¦?Û /@ɤ?B7+@µ:¤?^Y+@ ñ£?¹/@*T¯?Î #@lÝ®?Ÿ -@m”­?kD9@ÊΫ?ÐaE@%è?ÁIE@ç8¥?°ÞD@^„¢?H@Ök¡?Ê9@N¯ž?{-@Œ¼ž?ŸN.@k ?Œl.@½=¡?|ô4@6Þ ?^Á7@¢?÷Ý5@\§£?ÖE4@l•¤?»z4@gŠ¥?5y5@Oä¦?P5@}Õ¨?\*:@í%ª?+ 9@·©?+t<@Õ&ª?Dð;@9bª?e;@#«?eV=@´”ª?¶=@ ?¨?v¼6@¼¦?ÞË2@q¦?5ú0@å“¥?ãá,@O£? ‰-@Ë^£?¤N/@ª:±?ü&@‰É¯?Ù%0@ƒV®?zÝ<@ÙÊ«?ÊðH@ˆZ¨?'²F@/ ¤?DaC@Ù£?¸¬B@ƒè ?€s5@#'Ÿ?ãÑ-@¹VŸ?“f.@lÁ ?Ü 1@!†¡?¿¸3@Â$¢?Èr4@oÊ£?öy5@Tz¤?Ø;6@l:¥?L!6@AK¦?Ô–3@˜‚§?p-6@¯¨?Ò8@4Š©?]5@?z©?†l9@±oª?:Ü:@’ùª?؉9@Óͪ?DÚ<@7h¨?]ñ8@,e¦?p¸2@3S¦?ö‡2@Ŧ?fŸ.@$ã£?›-@_,£?SN-@Ÿ‡±?ò›$@ä¯?bµ1@‡Œ­?~C@mw«?WJ@§?ü©H@‘¤?ÊDI@[ç¢?HI>@ÖÛ ?@d4@p]Ÿ?R.@̇Ÿ?oŸ.@Øø ?Eã0@ ¢?}¹1@34£?²+5@²ã¤?Ûó5@û)¥?â77@ÍÑ¥?Bþ5@¯>§? Ã3@¶U¨?k*6@`¨¨?X>5@öѨ?³f5@Ãé¨?h9@Ú@ª?v;@æïª?ˆë9@Ð^©?.;@¥‰§?¨Ý4@¦?§?È2@.r¦?p&2@ês¥?¸/@b8¤?0¶.@25±?ËÛ%@8Ÿ°?â 7@Ó’®?,G@\ˆª?{‹K@Ôc¦?D¿H@3j£?ÚàH@H^£?S7>@é ?§þ4@½ž?”'.@hÓŸ?üt/@»¡?*d0@—½¢?bò4@>]¤?áj6@t3¥?Ó«6@y¦?Â}7@ös§?xÏ4@[ ©?+V4@Ѓ¨?©à3@)x¨?.@4@1‡¨?dÊ6@)§©?§<@Üü©?ð…=@s`ª?Š<@’¨?q;@…˜§?šú5@øÕ§?Ð3@c¹¦?Q/2@Ÿ¿¤?­˜1@Dó°?`Â)@q²?Fâ>@:n¯?Î0I@ãDª?x_N@1¥?srH@šg£?KàG@-C£?8;@Ø' ?´(4@—¥Ÿ?_¯0@žë ?m/@%°¢?}ï/@ˆp£?bû5@e£¥?‰9@=²¦?¸b8@ݧ?âž7@™c¨?Å6@Ô†¨?6‘6@L©¨?%3@ç ©?3“3@™A©?Z£:@Ù©?Q>@„À©?´±@@5©?ø—=@@o¨?HŒ9@Ñ ¨?Þ>6@Ù §?í6@Øh¥?yI5@b±?ƒ¢0@ÓØ²?}­C@ÛL¯?e÷K@ð%©?ë§L@ƒ³¤?WjG@'ì£?uKC@ÉB¢?‰p:@%m ?à·3@þM ?¯Ü0@÷?¡?¤2@‚¢?2@|P¤?ä8@æË¦? ²9@ž¨?QV:@²³¨?Ô‘9@ <¨?0d9@푨?òg7@{¨?_Ú6@,î©?`Æ8@Îbª?oA=@Ê ª??¿A@Üj©?¶É?@3Þ¨? ;@ð±¨?ž8@Ré§?Þ)8@V¡¦?˜'6@ ²?ë_6@mŸ³? #E@ÿ®?ogL@ ‹§?6H@¤=¤?gjF@¤?m«A@}-¢?À48@à.¡?G†4@7¡?:¹6@Þf¡?¾3@}`£?ˆ¢5@îæ¥?Çž8@Þ¹¨?DR9@á¿©?°Ý;@' ©?ë2<@^©?A ;@*k¨? ø8@ù÷¨?c‰;@Ô˪?"†>@'«?± C@;$ª?ÌüA@ûâ¨?Ñy?@|5¨?¸ñ<@¨í¨?ŽÇ9@-í§?´=9@Ê…´?IÇ7@öP³?V|G@–S¬?GJ@œt¦?DÛC@"·£?üÄH@2£?é§@@§¢?‘Ý7@¢?Ñæ4@3ÿ¡?O•5@¯£?B5@ÍQ¤?ˆÐ:@¢§?Ÿ9@Ý©?t78@Â3ª?{=@ø¨?Kw>@ùQ©? i9@©?“+9@ûè©?`*?@mB«?bCD@óŪ?k–D@ˈ©?Á–?@I®¨?á¦=@½³¨?mq>@N¨?ç>9@-?¶?;@ݲ?ÝJ@\è«?HñG@÷Ÿ¥?I=D@L¤?lH@”Ó£?]Â?@ô£¢?Ÿ:@¿B¢?©_6@Ó4£?žõ5@-¤?¬6@¢¥?¿°:@ +¨?›Ò5@f@ª?t½6@%ª?]©;@÷ÿ©?ÛC9@O©?g°6@®t©?¹:@žTª?_-A@{ª?#£B@ÖΩ?Óþ?@³U©?Öï;@ª©¨?%?@e2¨?ê^>@Þàµ?9{>@Rã±?ŬH@2¯ª?°@G@|Õ¥?c¼F@KÛ¤?iôG@$$¤?Ø\?@‰û¢?J9@¶£?Ðí6@ËÚ£?ߎ6@Mܤ?×§5@Ç<¦? ƒ9@ Þ¨?øp5@g5ª?|µ7@ª?;(9@Áeª?Gi7@BÈ©?ÙÉ7@6Kª? ?@Gyª?rºA@ᶪ?Fö?@iI©?Õ³;@ø¨?}Z?@MY¨?¾|=@d®µ?’ü@@I±?¸sJ@cΪ?qãH@ ÷¥?ÉF@‚¥?phF@W`¤?×;@°i£?Á7@ õ£?4R4@£¤?Šp2@;Â¥?w8@Và¦?Í9@ñ¹©?€å5@Wv«?¾D6@­ «?Rk6@Ûàª? ·5@Iª?¦:@kª?>öA@› ª?w4C@QÛ©?[¾=@©¨?¨ž:@ʆ¨?Äe9@Š1¶?7E@Dz°?wÝH@à!©?ùPL@&t¦?O%G@jú¤?÷õC@ʤ?@;Xµ?·LG@Á7¬?9M@a«¨?BéH@â¦?3D@ŠÞ¤?8:@Ë¢¡?Àã1@»ï¢?/È/@b~¥?%50@ŧ?cQ3@›&©?Y1@ÿ˜©?¾1@÷0ª?æe5@”§«?1t7@†z«?OJ8@ ¬?Ñá8@6(«?´¸<@fâ³?'àF@hA¬?-M@uï¨?±ÄH@ú¦?._C@Z¤?œ6@¢6£?ž±0@©¤?N1@rr¥?k_/@”¦?I12@‚­§?>%/@?ä¨?@0@ª?ß5@_z«?rù5@‹E«?‡5@][«?,»:@ ³?ž@F@éà¬?‘™H@[V©?ÙJH@¨?G3A@66¤?…m7@¹x£?¯/@Äc¤?×k-@Á¥?Ù6,@ªŠ¥?ó/@¹ð¦?”:0@Ö9©?-[1@Š…©?@Ù3@¬Qª?ÑÛ3@ï2ª?‚5@þl²?¼D@5ª¬?iºE@ y©?C_H@d¨?ØA@T¥?Ó5@yµ£?IÄ-@Óú£?˜+@£^¤?~*@TÅ¥?Eù0@Óš§?‚û/@¯©?á°0@1e¨?éi4@¨Á¨?£"3@5£±?/ÒB@&,¬?ú`D@Ÿ©?VËG@;ð§?O@@J%¥?Cá4@¶˜£?„_-@­¤?ž*@¥?”,@r¦?.1/@Iö§?Ú//@,ö§?&½.@w÷§?óŒ.@;-±?&SC@̪?ë D@ÆY¨?¦"J@¯û§?'>@ù¤?{˜5@—¥£?.@¤?½2)@ˆÇ¥?½=,@Ux¦?r0,@ºþ¦?{‰.@¤D§?‘Ô+@™¢¯?ç?@l´©?k©D@ÅB¨?H@Ѩ?^>@5j¥?·þ3@¸z¤?@0@ìö¤?5Æ,@Ú¥?¾Š+@`¶¥?ðt,@ô¥?¸Ö,@Ëö®?³Š<@,Mª?ú}B@¦³¨?QE@Ѝ?1\;@%¦?‰Ã5@h¥?Û]2@³¦?É-@Y$¦?DB+@D¥? +@q$¯?Ê ?@íž«?—HB@È/©?8ÒA@¾9©?б>@g¹¦?MA;@ߦ?NJ:@‚ƒ¦?ç2@ê&¥?õ,@3v°?1?@Üv¬?ÛA@Hæ©?àŒA@(B©?8ÚD@6À§?#F@›>¨?8o?@ ¦?…™5@4Õ±?á®>@‡ý¬?ȱ@@ºª?AE@¶­©?s'I@zȨ?í˜H@^÷§?Gv@@#3±?¼Ü@@ãn­?.ÜC@±)«?VH@úª?”ÇK@˜¼¨?s I@ÂÙ°?…SA@+•­?ãzF@ë!¬?I@_ª? ùK@å²±?!B@®?–oG@ ý¬?aH@ã²²?w©D@H@¯?z×G@¾â³?ˆ=E@ÚVš?ôl%@XH?˜(@¼€Ÿ?@-@ƒ¨ ?U>.@7 Ÿ?¨á*@Û½›?\#@žäš?_å@_›?\ @ylš?ø"@/‡š?¿ù%@-<›?ÅX(@ÿS›?–».@™?ªW4@ëÒ˜?™N2@^Ö˜?Yš1@î_™?ªÑ.@¿˜?Å+@EË—?®™$@(,—?øV&@Û—?`·(@p>—?&@òò–?Âg @çö”?v¨@U ”?ö–@ú•?UG&@ôœ?É“0@™¶œ?3å6@¡;™?éy6@¹R—?© 4@‘6–?=Œ7@± •?\®9@ül”?€A9@ ª“?[°5@©”?ø*0@ù’”?b«)@¥•?‘Þ(@Ý0•?Xi.@Ø`–?šî1@ìg–?K‚.@_Š•? ä#@[•?ª0@À “?õ6@ ‹?8 @âõ?’d&@&2Ž?À,@\ý?¦ÿ@@þ?ÝU@îÆ‘? äW@5’?„·M@œ‘?8eN@jŽ‘?¨‹U@H{™?3åV@%G­?ãíL@3£?ß%D@vù?ñäH@@x–?›K@» ˜?Ð V@é%•?4·R@Ž•?MOV@óe•?_MQ@(¸–?øýI@Ó=™?Ñ&A@;?¿Y=@™Ÿ?X?@¸®¡?¤c>@R¢?{x?@•3¢?ÃE@“ߟ?x˜M@¤(œ?’[S@hT™?ò4W@|—?$xZ@Œó–?Ϲ_@C+–?±‘e@ÛV–?@¦U™?Ð<@3¼™?‹_>@?¿š?ôs>@³·š?K;9@}?š?ÞÆ-@zš?T*@B›?%¿1@v.œ?–Ù:@!Ÿ?óºE@—%¢?Õ‘L@pI¤?Ä4G@ò)¤?ˆE@¯¤?¸šH@m~¢?½òI@H#¡?jDU@cÈž?LY@h±œ?p¤Z@¡›?êV@,Ùš? P@Úå™?DgI@å™?qnD@,ñ˜?¡C@×i™? “G@t™?«K@ɘ?ãH@ë •?9^F@­O“?=—O@WÛ?_äj@]³?@Uˆ@æ)‹?ç@‰Š?çu‰@‡Ž?xPk@‚+™?³A@µR¥?ÈL"@ÍU©?Öü@Öj¤?L@;8¡?RV1@â¥?í¾T@¡?Ó~t@ŽÄ™?`{{@!>œ?bÿ$@- š?âA'@%…˜?1r'@}+˜?§v$@ä˜?s "@¼š?…w!@I˜™?®%@øØ˜?x,@=P™?Á/,@ûø—?t/@fš?Éø8@W ›?.q@@ý¶™?Ø D@„d™?â$?@؈™?;S?@zš?KGA@;÷™?F49@Î`˜?‡h-@ÿ[™?+È"@Ó›?ø[@›?b@GÊ?P"@šž?r–(@íOŸ?ÿf9@‡A¢?â´H@n(¥? [G@œd¦?ÀD@€ê¤?­H@•Í¢?SN@#â ?QI[@¯+Ÿ?õ¯^@³µ?¥A[@ã œ?øÓV@’š?–ØQ@A™?óK@®´˜?XoC@^˜?â@@ZÙ˜?]ÿD@ö˜?¬êJ@^r—?bÆJ@ø”?ÀÚJ@¤•’?²LT@Hz?‹ïy@¼?“Œ@ž‹?Ø=Œ@ ÀŒ?rx@4¯“?‘ÕI@Í ?Û(,@b“©?tÁ!@î¨?ƒÐ!@_£?‡9(@÷R¢?ÿwB@I ¤?¸h@z¿ž? ­z@† ?“·*@ñ›?v*@¢›?ƒ)@Ê×™?+Ž'@H š?hÞ%@Ά™?Z›$@܆˜?{u#@0±˜?õ¥(@¡˜?Ö+@¨™?ÉŠ4@^hš?ÏŽ8@J±š?›ø:@Øœ™? ¤<@|O™?XK=@I™?­Ð>@`²˜?äJ7@…õ—?Ü&@e}™?aò@^Äš?Ð@ëž?©@fJ ?Ñë@Tà¡?öv@<Ä¢?;y&@…£?£|2@Ÿ¬¤?”L<@,¨?áG<@s°¨?#Z<@ß>¥?­C@–í¢?®áL@K¢¡?ë³X@I ?Ø€Z@Ÿ?‚â]@gm?;NY@V›?H}S@?|™?¢9J@‘g˜?¼AC@—?ô5C@l—?„OF@µˆ—?àšJ@A¬–?ö}N@ɤ”?¬Q@QH‘?òga@ö°Ž?úù@Ó?uæŠ@ù?A@W ‘?ôgV@© œ?Ò‹,@Ô/¨?b'@œZ¬?Úw/@õ9§?Y¬4@Ä£?ûD8@ß,¤?ß@ì%™?àK>@”–?A;@Òœ•?kù,@˜?I¥!@Ú·™?Ž@Ç%œ?Ä‚@Ùòž?ݯ@øò¡?¡Ø@câ¤?HW@Ô¡¦?ì¬*@ S¨?¾è2@&©?e¼6@¼Qª?'B:@ïð©?Q+<@ÊM¥?ÔC@_`£?wM@ªE¡?ÆP@  ?‘çR@íŸ?ìO^@ÒÌž?$\@ßœ?`ZW@ñ™?€÷L@ž˜?˜}E@%™–?»°A@Nn–?6B@I™–?ÌI@«§–?R@—”?l]@&Þ?6!o@|çŽ?<…@Ž…Ž?„@©‘?_å`@“˜?£Ÿ3@Э¦?PÂ$@œ¼¬?Ã<6@"C«?sFJ@­O§?FÎC@ìѤ?IL@¨.¥?S¹g@L/Ÿ?SŸ(@Ô?¡?ŽÍ'@a@¡?‚Y+@ôIŸ?Ž˜.@hQœ?+\.@“š?¼&,@OŒ˜?¸-@Ëx˜?Dì4@=y™?jé8@Y™?,h8@Îø˜?ü“9@ù¦˜?4t=@âQ—?ÞV<@ÞU•?é†8@Î2”?E5@³•?mw0@Hi—?áV.@WP™?eH-@õÞ›?„‹'@ú°ž?ë˜"@ª¡?Ñ­@~À¦?‰0$@Á©?‚Â0@2ë«?w}4@nÖ«?c7@í¼«?ïæ9@ ©?þáA@(þ¥?˜‹E@ê¢?â8F@ö¹¡?EXF@ÿ.¡?;Q@q® ?ôXZ@3 ?ûY@•ž?8ŠV@ˆ!œ?¾èR@¹‡™?@™f˜?bL=@‹p—?HŸ:@Œ—–?T :@{Y•?<Ú;@|•?ã<@馔?^UA@Å!•?{c@@@ –?ë;=@Ó¥—?_:@™?Íå5@ °›?j~2@ Ÿ?œq*@Dœ£?PU&@Jé¦?:)@XЍ?ͨ1@Eâª?ÌÀ5@iêª?!™4@Vÿª?„¥;@ˆ\§? ðB@—·£?ª‰H@Ää¡?ûÈE@w¬¡?ѸE@£?;ðJ@Ë ¢?ÒP@™‰¡?IN@"¡ ?ªcQ@ì ?N¡Q@]?¾7Q@tš?0>M@ù×—?>áL@§ú–?pìS@3å–?·Žb@O£”?Ur@'’?ï y@ÞÐ’?'ßn@s¸—?_BH@ø£?Q…#@”k®?UB/@rl®?@]@t­? k@µ&®?'P_@Í-¯?C+`@+Éœ?#Ã!@?Ñí#@‘_?ÞZ'@葜?/ª(@J¸š?l"3@z·™?ó(;@aÚ˜?”˜?@9v™?É)@@ó¿˜? ?>@²2—?Á!=@½æ”?ïá9@ n”?€(C@4•?ràF@Ôr•?ú+G@¿ø•?qêI@Ô–?¶D@-~—?dE@@²™?ó=@( œ?ç7:@Åœ ?Éï3@¯£?{/@6š¦?ØZ/@æß¨?™ì0@ }©?Í¿1@7x©?Å'4@¤³§?4:@‘¤?¹C@PK¢?µÙJ@Ï¡ ?Ó¹H@†¥¡?é´G@ãÀ¡?:øI@5†¡?jQE@̼¢?–'B@0£?“E@KÄ¢?ôJ@my ? "M@K’œ?·ÆL@å§™?ϼS@qÛ˜?HÛ^@ ˜?¿óm@ƒ~•?Ês@cí”?ä]m@š™?‡ñQ@Øf¢?[7-@ÅR®?”(@X°?ýôY@Rp®?¸ƒt@ŽÎ°?NJk@Gœ´?dWh@ŒMš?i‘ @Œe›?¼á"@>,›?ã¥*@=<š?Ó9*@î>™?v5@¢½™?‰O:@(iš?Ñ >@b™?ký>@ÛÙ˜?ñ <@ú€–?†p>@Îm”?úA@³•?Ü@YPž?#;@®Â¡?¯„9@2¯£?~Ú3@䫦?&º0@{§?71@d§?î.@z2§?¾¬1@+;¤?®Æ:@Em¡?íB@æB¡?#ÎI@ˆ.Ÿ?¥`M@n  ?EL@ò+ ?EG@¬r¡??=@ }¢?^=@¿þ£?ÅÆ?@ûø£?FF@RO¢?o»N@>מ?IU@ˆÛ›?yó`@0˜›?ÑÉk@L¬™?‚q@|-˜?k@퀛?GÛW@“¢?¸ë7@ ñ®?ëL(@›J´?¯åP@sE°?œÁz@ ™±? ww@ŒÚ¶?­fj@+¾™?„!@ú™?!Ú#@„¢˜?Ñ’'@¿˜?æN.@¿Í˜?–ý5@CÛ?2Î9@\²›?™9;@Ukš?‚>@w˜?Ì=@w:•?Ðz=@Ž2•?Æ/D@Pû–?Ø@ ì¢?F@Ÿ2¡?Ç£Q@Sž?/•a@t‹?®o@ln?€q@ï œ?ÇŽi@ç6ž? §_@ø‰£?(Ü>@ „¯?›ð/@L¶?~]J@Án³?‹²z@¬P²?§à€@L&º?S‹r@Ι?†{%@Κ˜?oÄ)@Tq—?ëf+@Ä™?S´-@š?eë3@)/?N5@õÞœ?ëQ;@4fš?Õ:;@5A˜?ã>@r|˜?ÁÂ=@TÓ–?x’=@Å:˜?Äü>@¦*™?IÕB@59˜?‘"D@,ó—?Uv@@€æ—?ôÐA@½”™?qC@§œ?ª€?@yëž?oÓ=@5µ¡?­9@,B£?¦6@„“£?YÎ5@‹ª¢?ܸ7@_š¢?8b2@?¡?¸72@ˆd ?Þõ1@y)ž?BØ;@+‰œ?ažE@MÙ›?iÅJ@Ù›?K¡I@;íœ?®cC@ ±ž?øh=@Êg ?v_>@«Ë ?¼»>@“ô ?¸J@V7 ?.º]@Çëž?¶=n@ŒÊŸ?„u@îcŸ?¹œk@½( ?µ d@y¤?4]L@¤[¯?4R7@:°¸?mK@býµ?©Ør@ú ²?f«‚@ˆ'º?m_u@öš?Tš*@S„˜?«U.@`9—?î.@ ˜?1º+@¯iš?xò1@ßÉœ?NÙ8@§Àœ?‡¿:@Bš?jË7@ {˜?Ô6<@Õ&˜?›D=@5‹—?åô?@£c–?¸šF@i|–?èB@5–?€=@NW—?7@=@V\˜?$B@p™?ôD@Ûv›?îB@ð?ž?g#=@Ù} ?o¤:@|¢?Ð~<@rä¡?óâ;@;p¡?”:@á$ ?æl2@çrŸ?z6-@#\ž?¹90@4Ì›? ;@WŽš? :@@^ š?âˆF@ š?ï£F@0š?ÎïB@­‹›?ì¼C@[w?ÇTD@—wž?üP@ ?Y^@øh ?T1m@ßá ? iw@xŽ¢?ºr@H:¢?x"f@€u¥?&YW@Á”®?0D@î{º?ë Q@D¹?Æ1i@0}³?B@ è¶?d.{@>Ô™?ãV1@n{˜?*-@W8—?¶F+@ Û–?'.'@÷™?´^,@猜?K;@!? G>@kïš?²:@'š˜?|û=@±–?œC@šn•?úlE@Få”?òáC@ á•?Ž9@?<•?Â;@––?€@@§—?M!D@y™?ö¾B@ù·™?žC@Ïœ?Ð~<@]Gž?J\<@ÿ ?D·?@3p ?ë•@@2ÜŸ?‹<@dçž?3@ãñ?j/@ ¡›?‚r8@±#š?ùÖ=@Ô ™?¤sE@wH˜?óG@ºÎ—?ÐJ@õ—?.@ûˆ?«®=@&š?ø:;@|‡•?qû<@yy”?äDC@WÏ“?ô’D@žê“?³þ;@øh•?iÚ:@…•?žº<@ŒK–?>9D@Hü–?kUG@>d˜?¤0D@b™?NÃB@µ¼š?ë%?@hXœ?kW>@;ž?ª?@”ž?·@=@É÷?’07@>2?G*4@Âë›?fá7@G™š?ĸA@‰Æ™?ãB@R%˜? YH@ýΗ?Œ«K@!Þ–?ägO@ÝY–?^ÅR@n1˜?–V@rô›?—€\@ÛXŸ?c@Ø¡?‚8l@ôŒ¢?ótr@kÁ¥?Ðnn@ó¦¦?‹ðo@w‡©?Þa@S´?BªV@ê=»?eDX@ú¹?Za@–s´?=¡o@½¹˜?‘ú,@å;—?âÙ%@(,–?¢÷#@m—?¼@$@šê›? -@`?|œ8@{¸š?´Ì3@@m•?«‹5@Ë’?m8@õó“?"÷?@ÝÇ’?º@@Çy“? ?@ï'•?C£>@þG–?¯»=@0–?bñD@‚K–?XéH@f/˜?øÏD@9z™?ºE@ÀIš?¹ì=@SZ›?²0=@7]œ?Â;@íœ?æ£6@mœ?ž¹0@“òš?§i3@V³š?` ?@C*š?–*E@…É—?ÁÄG@>—?3 G@ ã–?g•L@š†–?8‚R@6Û•?yV@ܘ?§@S@y±›?±V@ÈPŸ?¦@^@Fò ?±Xl@V ¤?…Žo@F§?‹ãq@y¨?4¤p@ W¯?d¹\@z¸?‘PV@‹D¹? pP@lh¶?©0X@l0˜?Âü*@‘ª–?ö€#@ —?ÍR @—¡—?ʹ)@ÉMœ?q22@~l›?Y_3@€œ˜?ýD.@”É“?œz2@´“?|/9@ü“?A@d“?(·=@˜”?þU@@ƒ•?‘Å<@’•?üB@Ƕ•?³F@r{—?ÝnE@ …˜?ÌG@ÿ„™?.F@(¶™?cXE@¢š? ÒA@¢Éš?Þ©=@ ›?²ì1@Zbš?u¿.@Q¯™?x5@]¦˜?*Q@@-!—?itD@¡•?q F@•¬•?RC@ꦕ?ñ§J@âÇ•?>L@IΕ?ŒÖF@¶=™?ËÊC@ìaœ?rM@+.Ÿ?žZ@tÁ¡?¢l@§ç¥?uvp@¶¨?Jöy@T™ª?n¡j@<¦²?šiX@`ö·? LN@Aع?í.B@ø˜?ö%@Ä–?p½@pê–?©<@¹ô˜?ò)@{~œ?Ã?1@ìIš?X,@…õ—?•k*@¢”?¯1@bÓ?™F=@Ï9•?é}B@ˆŠ”?Èz=@(ƒ•?x´>@X•?è>@M†”?ȈF@0ð•?ûYH@æ8—?ŒF@*å˜?ŽEK@B³™?¡´K@JÙ? L@,š?¹íG@>Œš?q6=@±;™?¬F5@½&™?8|4@%N—?D¾8@ ñ•?øž=@O”?DB@•¢“?÷ÖD@Ω“?õ¶C@$ý”?gúC@§á•?ã=@䥘?‘ê2@†³š?¥4@Qœ?f#E@ ?Ÿ?]|]@¸æ¢?œ¦j@‡§?©y@uè?'x@ÚF®?ûd[@†Ê´?vtJ@l*º?éÅ9@—€–?¹!@=V—?9>@]–?t!!@t›?W'@(œ?f®.@=’š?ƒ½)@n—?~«*@šL”? ×2@•#”?6´?@Aà”?¨«=@ËÀ•?š—?@›D•?•Ù@@WX”?7ÌB@ïo•?ÖGJ@eÌ•?ÄH@*l–? K@ Ò—?*=L@Õ˜?F‘L@Ëq˜?Ú O@Œ'™?î&M@¾©˜?ÎÄE@À—?;C@"¼–?hb@@‰á”?Ù@@J“?VÄ@@5’?;™C@Kž’?04?@Ñp“?â9@?Ô?-m2@¬¤™?þ&@&œ?ëÊ#@T›?0/@e›?ÞL@“áž?P`@r¤?”·o@8¨?@È ª?f g@ŸL±?‰µI@@Ù¹?%÷9@éB—?É%@Øæ–?{ƒ@qï—?K#@«î›?Y +@‚i?).@ò ›?áÀ'@l"•?žÜ*@Õe“? f5@+•?Sò<@…Ø•?Þ@@=à–?¨öE@¿}”?ÒH@~Ç”? £E@¥ˆ”?3“E@£ñ“?”F@ÝO•?¢C@$Û–?û§E@=á—?íAK@ê(˜?GO@åÊ—?§xP@¸f—?‘_S@Þ–?#]O@iq•?4ŸK@²!”?àAG@Š`“?)£@@Öù“?pŠ7@UB•?QÎ-@/ ˜?_$@Ý£›?E@‘ž?Šž@MŽ›?4"@–ï™?àØ9@|Êš?VW@ƒËŸ?2Qg@hM¦?¥0z@ë$¨? {@Èú¬?šPO@.ùµ?k8@;}—?‘N)@—–?Õ$@éÞ˜?5š&@Dœ?C-@Šò›?’¤*@r–?jÑ+@“??x.@?3”?E9@¥ÿ•?¼:8@þæ—?<@Þ•?êØ@@´q•?ŠeB@`A•?‰4@@ã–“?d±@@(>”?Ï8@_á•?@0–?+È2@7™?4M'@ Hœ?Í@ϳŸ?9Å @²© ?Œ? @Eí ?z¦ @\ßœ?15@û ™?÷Y/@ó—?ÑH@®&›?7'^@Z¢?½Fo@|I¦?ÇŸ€@ü¨?òË\@Š¥²?^_7@E˜?¹L-@©–?w$@s —?wø)@0œ?ÆI0@šœ?<ß*@¡—?<Â+@w”?ïº4@Åa•?~À<@q–?YÞ6@ ¨–?‡À<@ Ö–?li=@ðÝ•?:@åÅ”?þÉ:@xß“?žÎ3@8ו?yu)@>ê–?Iø"@æ=˜?{F!@v™š?(Ñ@¥ ?_v@–´?ÜY@®œ?£;@„$ž?Ô$@Ùÿž?¸@Y¢?(ê@“j¦?hƒý?ŸL«?9Ëð?̬?šÛð?u–¥?}@@¦Ÿ?Ä@SÈ™?a?/@…ô•? •A@‚:—?}BW@c¶?÷úh@ñc¤?‹ã{@m§?`¾l@˜`®?€R<@y_—?fà0@ØÑ”?>.*@·–?%Ü)@‹M›?oÖ1@þš?Y+@lÖ?Ó0@wÜ”?²±;@N+–?Õ;@ÎÑ—?A´5@2¨™?•ó5@¸ï˜?m0@j{—?Q*@º™?7à @®š?é‰@Š)?£Ê @œŸ?€@Á« ?+õ@)&£?_@p¥?˜Mû?"¨?ú]ò?;ª?%fí?kì§?¥öæ?ÚÜ­?sÏå?…¯±?>Éä?Èî°?h â?[]°?™oí?Ùí©?`¹@jI ?"ç@“U™?fƒ/@V’”?Æ=@­p”?`R@̉™?€(g@SŸ ?ÃQs@Ûx¦?Õq@}^¬?Qå9@xs•?¸³-@9¨“?ó.@™û—?Eê*@È›?.¯3@bo™?p"*@Å––?ñ€0@6ñ–?¢¦6@†™?[ÿ3@Ñš?:(,@‰œ?G­%@’?›Á@8¡?®@÷¥?Zû?9¨?:é?u¬?ØÛ?š¯?¦½Ð?k¯?¶ Ê?Uɱ?ž½É?ðÛ´?=oÇ?ñ|µ?ŠÇ?K¹?leÏ?t¶?-Ø?ä4¹?8³ã?“‰·?Åë?6²?§÷?bΧ?× @¯ØŸ?t@—?7½*@s“’?o£5@OM’?ïzM@ÙÏ•?‘a@àâ›?`0j@OÏ£? x@¨ª?–¸@@ÁG”?ôß+@©ž”?K€0@!—š?Å0@mœ?'¼4@?x™?x.@»…˜?š5@o¦š?¬:@ž?=ê0@@t¢?pF@°2¥?Ÿ«@Ȩ?_›@UÊ®?(Áá?[ó³?½îÏ?Eº?êAÍ?´»?#‡È?³2¾?H°É?õÂ?=ZÂ?4ò½?—lÁ?ý»?8ñÈ?Eö¼?2Ô?Õ¼?0LÞ?I¸?ÎËò?‚±?Å@™r­?–S@U4¤?H]@›?Íü@ž’?ÆÀ!@?§A.@Y²‘?wRE@l“?¨ÓY@‡˜?Ùùe@_!Ÿ?£¤r@<Ÿ§? ^T@ •?r5*@ˆå•?»ø4@…ûš?(’3@tá›? 4@VÇš?+±6@}›?> :@îž?„>5@µc¥?—#@©¬?‡Å@j²?³q @]µ?9T@=¼? ëñ?#z¿?ÎÂí?Q@½?»[ç?»V¾?èÛá?kH½?¶å?OA¼?ÖÞ?™Ø¶?‘:Ý?Ã׳?æ¤ä?û3²?Uåô?B7«?Š}@£`¦?a @„µ¡?œ‘@ç™?¨â@(×’?Ê@¾Ž?ƒ‰@s??V@+@®‘?íu?@˜‡’?ÜT@[d•??º[@(š?` g@Ði¤?íÌ`@{g•?’”-@ b˜?I¯9@š*›?xþ8@\›?í§7@x›? :@õuž?Ñú9@¢À£?Ó0@¼Oª?ì"@5Ͱ?Ôä@,jµ?Ó¶@~«µ?É@}ª³?„N@{¿±?äû @¶Z®?“@K×®?¬@ž­?f@Ê4§?z^ú?è­¢?þ&ý?äž?fæ@È6›?©*@º——?®¾@’-”?x @·&?б@Ë?‚æ@ ¾Ž?Ý@ŸÀ?¦*@„‘?œa<@•Y’?z}L@u$”?„LT@€¯–?åµ`@Ï!Ÿ?ô”f@ T›?]7@µVš?+D>@ó¶š?±M8@[üš?Ë­:@ Â?}<@”¢?@à ?´¬N@ÃÌ¢?÷óV@ Àž?;ÚO@Ó˜?·J@Õ¥“?y‘>@˜i’?Þ /@½’’?±w#@ó)“?ð@Æ’?øÜ@šÅ’?@Ò@Ù«“?|Ì@Ç”?í@¤¯’?_ß @ªõ’?bŠ&@x&’?ež)@Jv‘?_æ-@¤î‘?š"/@—ˆ’?ñ³1@22’?ɯ:@B“?ó§D@v“?ü¯H@»š“?Ú(M@aÁ•?º”`@é˜?xÁ:@ã0š?6}A@ ›?¸‹G@ž? @@9Q¡?Ñ]B@=³ ?ôwI@Jz ?…W@?£X@Mg—?ÌRP@àD“?wE@‰¶‘?15@‹J’?Š&@‡ˆ“?n’@Šs•?k¶@¾r–?ãý@wÕ•?-/@…?•?z@÷Ó”?‹@ ”?‚$@•G“?-'@j¯’?R *@Òt’?,?.@Lå’?…¹2@B’?N8@FE“?IÁ?@#l“?ë·B@(i“?ò%F@(ò“?£ja@é—?Hè6@h˜?žÒ@@š?îD@¯-œ?þA@n>Ÿ?­”F@µS¡?âºK@1¡?ÊTO@„=™?Û F@Ú“??í9@úª?å5#@Œ‡?»@À:?¤í @,M‘?Ø€ @,ë‘?è @˜“?d½ @•*“?<@Ò|“?mÁ@t°“?rÖ@’?R@Jj’?;Ø@€Û‘?/Ñ"@ûk’?‹V*@_’?þ1@6ë’?Úô7@=‹“?€Œ;@q`“?‰@@à’?9‹Z@O•?k­6@Ñ*•?¢?@ø–?<@@Œ'š?G.?@¡sž? ‹B@•á¡?KbD@Ë;¢?dÌ>@§ ?@4@>²–?OÎ"@ýí?«À @³ä‘?…N@õr“?š…@½Ä“?p&@bB”?bB@"$”?y: @êk”?Ô$@^”?Q @HÏ“?ц@s¿“?@÷’?Yj@n“?_#@ý~’?b&+@Íš’?Í…0@ÍÍ’?w_5@Zç’?»Â:@³:“?ÞóT@áV“?¡;@ A’?ÊA@ “?Kh<@@¨–?ž47@VQœ?<9@X9¡?å<@]‚¢?.Ì6@é+¢?oe/@yEž?œ•@_—?Ô @•?&»@·Ñ•?m<@°|–?R @(¯–?f{ @Ã=–?%Ô @li–?Qž @ê•?kÖ@׿•?²@Òn”?à©@½”?Žé!@2n“?i°%@Tá‘? ,@)—‘?:â0@ S’?Ót4@ï’“?`N@t\“?Ý09@jâ‘?¹–?@˜c‘?þA9@bâ“?kJ2@}˜?Ø3@ÿâœ?•ê1@šÝ ?‘§4@ ú¡?ŒÝ.@t¤£?V @=ý£?‹¶@¢Úž?ñ’ @m™?º @‹˜?O…@Ov—?Γ@Ï—?æ@–O–?û—@y–?)Ž@Z…•?ëg@¸•?¥N@o„“?šP!@+Ç‘?ã%)@ë×?–u+@Ùã‘?(L-@ì “?%(E@““?u23@äB’?Ò#<@D‘? U8@l‘?¤|0@®O’?_-@ˆŽ—?„¨+@\³›?™‡*@½ú ?Kw)@q1§?ºo@¶h©?Þ@H¦?Τ@M¢?l‡@ÌŒ?·Ì@0†™?ê½@b –?X° @?••?¢ @xÍ”?(¦"@ˆ”?ñ›!@„{’?¾#@¸ç?òO(@D\?~',@‹©?V+@q’?îf?@±±“?v#.@šI“? <@w)’?3@@š+‘?M 4@bº?…œ(@ØÂ’?Í @˜˜?¬N @SŸ?; $@©)¥?O@4¥?£@aë¥?4Ý@@ ¦? @ÁI¥?2@õ™?‘•"@{ž•?r.(@è,’?–Ž-@Z‘?žß-@†­?è€0@ ù?8U/@ú!’?ðz<@›@•?“ø)@æÉ“?>5@ u“?À->@ü{“?µ|8@P¦‘?‘7,@}é?Àá@>“”?÷€@Ìœ?J#@ûÑŸ?ËÒ@ñ0¢?øˆ @¥¿¤?ìo@Ÿ¨?^[@Ϊ?@qŠ«?D @Ž©?‘w@—ü¢?‹"@ò ž?Ñ@%@Ô˜?_)@^”?¥1@`<’?E4@ÅW”?">@´¶•?'@½u•?N”.@®Ó“?Ä6@_î“?ž%9@Ðu’?£r1@¢n’?uò@a“?±@|"—?Îi@}ð›?«'@†² ?tÀ@ÀÞ§?$v@û;©?_@F¬?þª@ìi¯?2sø? R°?i @g¹¬?IÇ@FI¨?ìá @¡?²¦ @N¿™?›+@ã5™?^Ð:@l€–?A;+@)–?‡å)@¬¹”?u˜-@„s“?ºÝ.@Ê»’?n†,@äÑ’?ÊJ"@ªb’?7å@Ê”? 2@Œ™?+K@?*œ@þ‘£?Q4@‡§?p@Ö)®?è¬ú?|±?Êô?l³?XHë?¤*±?N•ö?2$¬?M· @¦Ž¤?ù7@9lŸ?0@™–?«Ý0@±å•?‚ó*@â“?‘²+@Vü’?‘½,@Y’?z +@þE’?&@g’?¼$@]“?QÞ@©•?µ@/š? ú@|§ž??ß@¿f¥?»6 @û¶¨?ÿ¾@J®¯?…§ô?¶c³?Îeð?Œé°?;@î)¨?A@ù%¥?u&@éÀ–?¨’0@e‰•?“ª/@í-”?Mý2@¸“?äÛ.@x’‘?q¶/@Ëÿ‘?jp,@ν‘?&$@ŠT’?ò(@i’?T @…?•?Á@QF™?7%@AŸ?+V@a¥?ã& @•Ϭ?v_@æ!®?ï@ “©?Žþ@0Ï¥?/¢"@¸Ú”?±[*@1×”?G[3@‹Ù”?+Å7@Ε?ÑA9@Øa“?ÿÇ:@›E’?+¥8@ðÚ‘?&m2@Íó‘?ä‡-@­­‘?ú%@ ª’?ë%@R—?”6&@ÿyœ?^!@ô¢?èø@K¥?HM@ æ?õž@éE£?˜(@Ãö”?VG"@Yž”?ú+@1º”?~f3@\ •?Ùs<@œƒ”?HŒE@H”?míF@½A”? qE@"“?ÍÔA@ü’?~Ñ;@Ÿ “?¡<3@‡ñ•?ŸÎ0@Ø3š?‘¥4@»Bž?f%0@ÆBŸ?ÆÉ-@HåŸ?äd/@¹®’? a"@H+“?3Z&@+”?¯Ä+@°†•?¬U6@Ò™•?ùë>@@–? wF@$p•?w@K@}”?ÚþO@Ý@“?9çK@i¬“?IUC@Àê•?dÜB@£—?Ê)A@wz™?zQ;@›?½3@€Ø?ð˜'@­R?À…'@›3’?ê*@äÍ“?¦‰/@ûd”?®æ2@ïJ”?^É9@cº”?ÈB@ê!”?VJ@œð“? EO@e”?tT@|û”?* P@Ë[•?‘ÑG@Cš—?ëð:@LDŽ?ÞÏ*@˜?]È*@|?ûÌ0@ ‹‘?ÝJ5@˜’?úG7@´è’?˸=@~”?AÀE@ˆì“?ÃR@«”?r_\@Ö”?Õ_@¿·”?‡„V@3¢•?kVH@43Ž?äò4@ 8?­¤=@)o?}-G@ã_‘?õüN@è‘?ÙGS@Ç„’?ÀNX@ÚF“?`@‘t“?Šnh@ ì“?ÁÈh@:«”?aÆ_@•?o“R@wÚ?>^K@Ý‘?SáW@0æ‘?•^@om’?ûe@²“?‘§k@;º“?gðk@ŽË“?4Ñq@*”?’Ÿr@§ô”?&ñg@¥»”?}=Z@Õ§?œÊ]@êÝ‘?´/c@W2“?fQi@)t“?‡ o@ÍÖ“?íq@ú”?‹u@Fw”? Ìr@‹”?ëeg@ ¶”?Y@‡7’?Æ®]@ä/“?I_@ØE“?ÿþ`@#H“? lf@†“?m@Rç“?´j@·”?jý\@¨¶•?åR@GL’?¦¾O@Hƒ’?^R@ c’?GÜ[@Ýû’?&Â^@H5“?îm\@Õ>“?ˆŽO@ÜÁ—?yÊJ@:q‘?ÛØP@¶&’?AªV@©’?HïT@}Í’?;zN@ß(”?nF@E—?Üß@@ªŒ”?V@lW’?+qN@£’?–ÊD@¶“?ø8<@¶Rš?€>@ŠK“?M£D@÷Ÿ?ê‡K@Iö˜?v§;@Vœ?•;@è\¥?¸ÜJ@`²?_ÀU@1©œ?ô«J@ë6?®AJ@…h?Q^K@·Ÿ?¹F@|ž?êÃC@L¸ž?ÀìD@{º?x/P@)‰?ÇqM@ø„? ˆI@››?žÊF@Þø™?ïI@å™?WqS@2™?Q¨R@_ö—?ô|S@á–?'²T@ò–?þLS@hÓ–?*ÌO@ˆ—?*W@<–?Å\@2'–?¸/^@i\•?¥ñY@僔?¡êR@¹V”?¾K@v~”?ÖëG@„v“?ŸE@{’?µÆC@¶’?šü<@Ô?W8@=?g#8@¬?ÖŸ8@Ȉ?Ê®8@JïŽ?«â=@¥q?Ã^B@]1?}4E@p?¤ìC@«ÑŽ?CxG@Cñ?§GL@Ë3Ž?kN@±:Ž?uRP@3Ù?üL@TüŒ?XJM@ïŒ?ËžO@×pŒ?JT@ÓëŒ?;^@¬É?ff@)ýŽ?¿ïg@í®?“c@ïÂ?œÁ`@Êù?V`@ÜI?A,^@9«?©"a@M Š?dQa@¼‰?˜7_@r-‰?[@ADŠ?aA[@*/Œ?Bö^@`(°?s-@Íu®?D®4@æe¬?—6@±Ä©?U*2@è&¦?ßÍ.@Ì¥?ô“&@Ñö¢?ãî#@Xò ?”F!@aŸ?¸/@$?|¢@¦¯›?M™@Ùš?mq@§R™?]Û@+®–?«“@Y}”?ÔY@¯!”?Î' @æ”?/@–?ÇÁ<@Ãæ—?«,H@ë=š?M1T@?¯Ñ^@„Ïž?žÓ]@>ë ?ÝeX@WV£?^‡P@•~¥?SÙF@EO¨?d|=@걩?þ28@ý“©?þÛ3@ã^©?z(2@O?¨?|Ó3@ã-¥?T[3@¹m¢?ão6@ÐÖž?'›>@3‘›?ïÐC@Ðÿ˜?„èJ@¤Ö–?/»S@Д?¸Z@ÅZ“?VÈc@ \’?=2k@:Ô‘? q@æ‘?ø1q@Ä‘?F•p@8Š?^ßp@;¯?,Îr@¯Û?€z@-}Ž?äQ~@¼dŒ?{ü€@׊‹?Ÿ@× Š?^6@ ©‰?‚à@Úp‰?8é~@Ø,‰?ë‘v@f¹ˆ?'o@Ó)‰?­¾b@hd‹?-é^@€‡?NXa@“3²?¬—%@bT±?Ÿ'@<°?.+@∯?¢Õ-@÷®?§ .@ä®?R.@²þ®?ñ¡,@(°?bõ-@»±?©0@Hú²?kô1@š¢³?¥½1@Ò´?€D/@Ñpµ?ãû,@ ¶?Qü+@›t¹? c+@¶*¾?,+@mr¾?n=3@â½?³.@ZS¹?ü‘1@¥ì´?€SC@LQ²?I!U@kD±?ÅN^@h°?«/`@®¯?ùhV@…¯?ŒG@¥¾®?X[=@Wá¯?Ý9=@*®?s»@@F)¬?€?@Ë©?Çj<@舨?ȶ=@Ÿ4§?ëÏ=@Ì/§?ã?@cç¦?sô>@Ù¤?¯š=@r<£?ÄÝ;@ëû¡?ï0:@üR¡?¸Ð:@š¾ ?µÐ;@µ ?ªJ?@!KŸ? ºC@œóž?âH@è$¡?ž¸N@±Y¤?Ä•T@‚/§?ÀR@ ’§?^KL@‹£¥? ðJ@§£?M@ È ?À£H@n#Ÿ?û—E@¦Ÿž?=ëB@¯.ž?]C@V®ž?è4C@—ž?üPB@¬K?}ŠA@l7œ?|ÒE@1C‹?QÙ[@~Š?pÐ[@q+‰?¬Ö\@dù‰?Ùz_@ÖùŒ?ç]@µ?³ÖZ@Š ’?•ø]@ë’?°¹`@Ç‘?i˜`@[x?‚‚^@o?Ä,^@‹?ŒT@€Š?ÛßK@+‰?ÈF@šŠ?"¹B@f…‹?×ÌB@#)Œ?ÇÀD@jX?ïkD@¶¾Ž?xTC@:;Ž?½öA@"ÝŽ?4ÔC@w¬?SEC@æ?°@±!?„U>@Ÿ~?BV=@w‘?AZ:@‘þ’?˜ =@€$“?É<@£­’?'x@@k®“?WA@û2•?ãîA@†”?˜G@™¼•?³ÙL@âQ–?FR@^¾–?&éR@Ëz—?2P@OÑ—?3G@‚M—?DÆC@±—?E%F@*œ˜?=µF@§®™?:HG@Œš? I@š?ÆE@nŒ›?vCB@rA?ùA@ÊMž?.^@@!Ì?)qI@ Ì?¦›A@ô ž?] <@®Ež?c#>@qâ?ߢA@[ª?ÒSC@¤?3C@"°‰?§\@f ‰?b—[@…Š?ì`@6íŒ?õ@`@$®?ïÍ]@oR’?ÏßX@#á“?†âZ@ ª“?Ì+\@§Â‘?¯V@ ™?,Q@c—Š?©÷G@²ˆ?“iA@¨6ˆ?}Î=@õ³‰?;„;@‹ÊŠ?øU:@¾®‹?°§:@%{Œ?û(;@ÛŽ?+s<@¡‹?MR?@”ñ?ÌB@d?ÜïG@|«‘?0ÇF@o‘?p-F@+²‘?ªfE@†Ü‘?WâD@G‘’?ÐåD@Ø4“?*ÓB@RV•?Á†C@"Þ”?«CE@%a”?®4B@”?öoB@ô5•?jD@ýÜ•?´åC@>–?_nE@{×–?QRF@´/—?HãG@b¦—?·¹G@¤|˜?µ¶B@ÚU˜?Ü>@A˜?â:@Õ‡˜?RË>@ƒ™?‹ A@ š?tC@ŸÄš?€N?@”kœ?!;@U?>@gÖž?É™=@{ž?³_A@0 ž?Ã?@&µž?¦T:@Pqž?d8@A[?ͽ>@h§?{²@@Œ˜ž?á>@ÝÕˆ?ã´a@nƒŠ? »c@®¾Œ? b@Ã?Ûm\@Ê‘?ŒØS@žs“?ÁR@L”?@£S@ö’?Õ~S@·9Ž?ÀÇN@é°‰? C@#2ˆ?«6;@ň?¿ú9@Š?: 9@!L‹?ŸÞ:@­‹?%=@ÒÕ‹?Æ=@PU?JN?@‡|?~ŒA@ŽW?¬ØE@¸j‘?xjI@™ã‘?m K@˜s’?{„H@"ô’?\¢I@š “?çÁE@²§“?êNA@7M”?n?@†–?ƒyA@“2–?CDH@TŠ–?pPG@ð_–?—J@Q:–?< M@‡²—?úJ@â‘—?’uJ@ÃL˜?m:G@tt˜?-;E@mò˜?ÎC@Œ™?¥—E@¡™?8@@$i˜?Ö@@9™?O‚:@"´™?/ =@¢›?'É@@Tò›?+a?@c$?’]:@{Ñœ? •9@Ç,ž?ƒÅ:@¢Ÿ?–;@n³ž?'<@nО?ØF;@âŸ?É/8@ˆ¸ž?¬G<@ïž?¥@@o²ž?– B@ÎT‰?šl@ìM‹? ˜j@&èŒ?Ø€`@ÙØ?9ªS@‰S’?µOM@BV“?ùtH@Žm“?yK@ªùŽ?ÉNK@ªŠ?Ž/D@ŒÙ‰?±@@寉?ñ`<@´Š?¶F;@$Œ?â:>@§»Œ?_4A@³ºŒ?ì–B@-K?„E@*½Ž?«àG@R?VuK@Ïx‘?ŽèJ@Ž‘? ÌJ@¥=’?8MI@”A“?ýÌG@O’“?«BF@z”?•2>@ð”?à›9@á[•?w¡8@|Ì•?ð¨=@—B–?‚øD@ÙÇ–?ÂßC@¢»–?¤ÈJ@qŽ—?«L@Õt˜?½ŒM@:„™?ßK@(…š?‡–L@¨}š?%‰L@lÞš?þ:K@cÿš?¸ÆF@}Ëš?ÅH@ÃÅš?èA@q®›?ç¹@@†oŠ?z³t@pïŒ?RÄi@KÉ?(™_@gt’?«BY@.“?Á5U@iª’?8£R@÷=?ð}N@šÝ‹?¥œK@ÜŠ? H@{Ÿ‹?¸¡E@¨Œ?»õF@ï¢?ž}G@˜Ž?8±G@ç:Ž?"H@ ÉŽ?RI@"?9³H@°c?rK@þ‘?v\Q@<°“?x^U@„O”?›Z@”?AöR@n»”?h N@!ç•?ëÙI@h(•?ˆD@ÐÊ”?ê6F@Ü-•?«ïD@VX”?0B@éy•?µŽ>@€D–?âë@@“\–?ôC@s –?ZöD@Þ/˜?ýøA@µ’˜?‘UA@ñϘ?·‰D@Ivš?8ÕF@Ee›?úD@œ×›?·@@b“œ?%gA@š¸?GÈE@Öî?`ÍE@Ïžž?ÚRE@!„ž?{?@ú´ž??@¸ž?Èò>@ŒŸ?$o=@ÎÝŸ?(Ç7@ÐÀž?2b7@çŸ?F6@æÏŸ? Í=@ÓÓŸ? õ>@Õ—Š?%zw@å\Œ?Ûwm@·?±Áf@! ‘?“8b@åy’? ^@Å’?@ý[@³?6X@|ìŒ?ò³P@U³Œ?EI@£T?dL@¸Ó?$bQ@V¹Ž? /O@r?öN@l•?8BM@1‰?¾SO@½Æ‘?@ñT@„’?»uY@‡·“?ø]@›½”?5šb@f•?˜b@¶–?i^@9Þ–?µQ@¬–?ÕR@u€•?ÈN@9j•?:›L@²ñ”?17K@ÝÖ”?ø"F@®7•?àC@LŠ–?a^@@н–? tE@‡–?Q¬@@¢Ë–?@@õΖ?™B@@³˜?è*D@ß½™?”¯B@§ûš?=Å=@»E›?Í=@p]œ?¼î>@Ïœ?C@CÄœ?öC@¿U?„RA@a§?̤A@@ƒž?϶?@÷Õž?\Ÿ@@=Ÿ?)Í:@èŸ?Âb5@ò?©Ø8@Ü%Ÿ??@‚ÁŸ?ó„?@ªÌŠ?!{}@qN?‰šu@ f?§´p@.H‘?¾l@º²‘?Ñáb@žd‘?[è\@9??Ç•T@k?l7R@»ÜŽ?¾®R@§?ѹU@¼;?‘†X@›¾?<~W@@n‘?©áU@9:’?IÝZ@<½“?M¸\@þF”?gŠ_@Òè•?ö`@Å–?<Úa@¢Q—?U@e@yñ—?£Òd@„˜?ç\@×I˜?KsU@å«—?ÞÇW@á–?vNS@Ç—?Â)T@)—?^GS@‡‰–?-M@µP–?d>G@àò–?F@‚—?uE@¨ç–?‚£D@ÍÈ–?ã÷A@Äý–?9OD@É£˜?è¾D@‘‚™?@@^‹™?QÕ>@˜wš?RK<@„š?Ä?@øµ›?>û?@Rý›?°u@@Ü?Þ¸A@ëö?¬A@ Æž?%±A@îÊŸ?OB@5ÍŸ?8Ž=@#ž?Í ?@÷О?”žH@Ô0¡?™xG@xÉ‹?Eã€@áŒ?WÙ|@^«Ž?ñw@Ø5?Ý5p@‘?- h@®ý?6¶_@JŸ?—Ô[@ü?Ã,Z@?‹?=ÖZ@ ’?ý~\@hc“?Qd]@“è“? ¥\@ÍY”?â[@+ð”?ÞÌ[@óG–?·[@?—?«¡\@þù—?Ê6Z@º"˜?¤°_@*‘˜?ÇïZ@ ™?jwX@4X™?ÂõU@Cn˜??•T@–=—?ýT@r­—?rÉP@e˜?ÆBT@N˜?ˆÍQ@a›—? áM@Jþ—?:{H@\±—?0wG@6,˜?­I@ E˜? “H@€7˜?‘–F@#Û—?œöD@Óµ—?›pA@zï—?U"?@ÿì˜?ñ7@iš?}ê<@Þ-›?+>@Ò œ?×Ö;@”˜?BÄ@@Ћž?"I>@ì.Ÿ?µ°A@m" ?Ï>I@PÔ ?}XF@›Ü ?ª•F@ê ?Y M@ æ¢?vöM@ ¸‹?Þ9‚@^ß‹?«@$Ž?¿Àz@µŠ?š)w@Ôþ?‘Do@…Î?Äg@MÓ?WÞa@vû?´9\@°Ð‘?¿ÊY@Ä“?m\@±ì”?¹[@A•?+›X@ƒB•?šéT@©^–?zÓV@¦ž—?…rV@àE˜?,’T@{ö˜?î¦W@ó™?zúW@ ,š?z*T@ÏU™?šãO@îÛ˜?Ý1P@õû–?­îO@^–?ïQL@X^˜?‘mJ@Ÿç˜?¤„H@î˜?î2H@Œ1˜?tåE@þÙ?A@¬o™?WkJ@ƒNš?faI@i\š?$:B@ïô—?4øE@ ã—?ÂÞG@]—?$çC@PU˜?Ñ;@º™?9@¨ˆ›?-/<@«œ?(>;@=fž?y_A@ ?\•D@ôÁ ?PD@Vå¡?¬bH@1”¢?õ1J@-¿¤?qwH@㧤?þAM@Éõ¤?X½L@ì?>$€@1oŒ?—2€@U?÷L}@¦Ž?Ìqx@p0?Ì0q@W?Ùh@Îä?<Öa@Ðv‘?Ùr^@I“?1ä]@,ÿ”?)ÛX@5Û•?þP@¥–?xkJ@Õý•?)P@Üü–?¤—W@Xw—?ÉŽ[@§/˜?s ^@«Ò™?4Ê\@[5™?aª\@m ˜?x•X@%"˜?ËU@’:–?Ú¬X@¸Š–?T@…™?§ÙM@ÞCš?bJ@¾˜?pU@@~F™?íà:@Q~š?ïÆ>@U ›?«f<@‚?›?‡I?@Yê›?¿{A@Îáš?è¼>@Õ ™?ZµC@…P™?™F@Û™?9¥=@9¶š?‘®8@ðµ?a:@©Àž?aÚ@@¢p ?Qá@@äâ¡?ÅE@¶M£?BD@y¤?ŒA@Öi¥?·ßE@ $¦?òUI@úצ?›5L@-Ó§?M¬K@Å_Ž?‹^w@ÅìŒ?,”w@ž¹‹?„bu@é?Œ?!Ôq@tùŒ?Ên@j¦?EÇi@’?=Èg@Ðù?Îsa@ å’?ðî]@¥ë“?4ÀY@áu•?ÏðU@j)–?ï“V@L–?Š\b@eà•?@/H£?VO@ª‚¡?pLS@[à¡?ÐbL@G¢?|qL@‡¢?ÎS@ d¡?R}M@àèŽ?ïNf@E ?˧d@‰ÉŒ?_@rŒ?ËX@ñ"Œ?ÜS@а?£U@øÐ?ÒõS@Ùò‘?TV@È!‘? êS@wG?ßýN@\ï?/L@“<Ž?~#F@É?Øç?@¡¼‘?lf;@1“?Þv;@Íì“?Ú<@è¾”?Šf?@Æ•?•>@@ñm˜?¿¾B@ï™?;ÅB@î;›?¤A@Ÿj›?;5?@!›?¾A@v1›?TŸ<@ûkœ?Õj;@°Ÿ?£*-@L¢?úå"@ú#¤?ƒY#@X¦?$@0º¨?Ý$@lµ¬?yÆ@ËTª?™â#@Hn¨?‚+@!¨?Hª5@|Ý¥?åÃF@QÏ¢?¡ÍO@é ?˜PN@¸ ?­I@´=¡?ÓßI@¡ ?‰M@_õŸ?ZG@g\?~¸g@*?$c@\àŒ?¨Z@'¯Œ?ñ:T@(?°ËR@xÌŽ? 7U@•?¹ÆQ@»¹‘?hÒS@Sž?šŽQ@F¶?ôàL@Ó.?–þF@]NŽ?fpB@‹Y?uY<@ó,’?F6@ñ{“?Çÿ7@Š,•?ˆ6@H+–?â‹9@9—?#Ž8@Bš˜?˜¡C@Ä›?½É>@®ðœ?]Ç>@ð?O©?@vž?b„?@VRŸ?‰Î;@ëóŸ?=@ã?ž#1@Ȇ¦?~J'@7¢¦? -&@ß«§?ïè,@¡Õ¨?Þ‘-@F©?õ£-@ßä¦?vÿ6@Dm¦?¾Ð@@ë8¤?¥¾J@ºß¢?·QM@àI¡?ô§G@üî ?“D@>¡?^pE@¥b ?ÑH@^ ?†·E@T?r?c@ïÛ?”._@Çq?—‚Y@3M?„ÐT@7Ž?!U@ÿ¿?]&X@0‘? DY@àk?É»X@Ö“Ž?ÛêO@÷Y?:H@„—?7D@õ÷Ž?Nª?@Û,‘?›—:@ “?œC4@F~”?‘ 4@1Õ•?jÑ5@ó—?Žó2@Ùù—?Ôl;@Ëj™?¹>@–›?•Ï@@ÉÖž?•YB@ª†ž?N¼A@iŸ? ¿@@‹¼¢?z>@ìÄ¢?»e?@ñª¥?2·:@er¦?üâ2@ÚØ¦?2/@h¨¥?2@Eñ¦?Gä6@5¤?Šu=@+:¤?ô‡D@æ¾¢?ÐÃH@饡?¦KL@m¢¡?¡æF@¹¿¡?¹åA@}“¡?ÑWD@Ks¡?3yF@$¡?ÿ*B@Ä‘?|`@²tŽ?Ê%Z@ÆÇ?xxV@¦]Ž?`V@²ÂŽ?íY@Ü?&c]@õ‘?Ñ¡\@@H?‡mX@rIŽ?4O@R?ˆ G@#Û?ÖB@¶%?y ?@-_’?èl:@–Ó“?:@?•?xñ4@ä–? ¹1@Æ—?ÞK2@˜?ï“9@´š?˜¥;@”qœ?¢Š>@Ä'ž?Ó=@ù+Ÿ?)QB@i_¡?>õB@3*£?ìZF@ãT¥?ü´C@Á¦?5ŠA@z=¤?×’7@Þ¤?nQ9@‚û¥?ÀI<@fX¤??Q@@Å|£?÷žE@僢?d•G@~`¡?ódH@’¡?C?D@üi¡?‚>@Ü ?P?@Ê ?‰ÑC@ð§ ?ºt@@Æ3’?š[@îŽ?e‰S@¡Ž?†AU@дŽ?Þ~X@u˜?$^@ØI‘?Úå`@À'‘?ëñ_@8?‘SW@ÉÕ?ÛiN@ÿaŽ?Õ«F@y?)k@@XÓ‘?É:@Ž8“?žf9@ c”?œ;@¤`•?ñù5@!F–?d02@ý…—?nO3@¢ý—?!þ6@oOš?³;@⣜?žU>@ç}Ÿ?X$=@)n¡?A >@R£?¬SC@Žò£?*G@÷º¥?ÚyE@{Û¥?[`:@(¥?Vó>@¢*¦?Á‚@@8Ë¥?ä«E@ £?;I@:¡?© G@Tü ?ž›A@–¡?µ%C@O™¡?#¥;@ËÙ ?¼Ü;@Úè ?w=@ˆ˜ ?Â!=@:Œ“?8ST@‘Ì?”¤J@Á®?Õ}N@_ ?ÏW@ˆq?(q_@’?£_@À$‘?ÝD\@&Þ?rHV@ÓiŽ?òN@Q`?‰E@× ‘?,?>@Šò‘?K„<@ZC“?É%;@‡È”?aù;@Ý •?L:@ É–?\”3@Kn—? ¸2@ÎZ˜?ÂÏ6@H0š?ò¨>@Ï?Às<@ÆŸ?î:@¢?ï>@«¤?ºÕB@Ò¤?T9D@Bº¥?¡9@³V§?•p8@ö¨?÷ì=@Á¥??F@Ϥ?µF@wË¡?¾=F@pû ?ÃSB@™~¡?QX@@«œ¡?ŽD<@W¡?Ĭ:@£x ?F8<@á*¡?ßë9@4æ•?âK@”O‘?á|D@¹ÍŽ?{wI@}‡?h¾V@QP?n[^@í“’?MÊ`@Ì‘?Sm]@?ÝŽU@Âf?*L@º ?(ŒE@›‘?t ?@˜ï’?øB=@O’“?73?@!Å”?‘×>@»T•?©9<@Å•?Ý«3@s²–?ñÉ4@åK˜?X·9@¤Íš?0@:@Cœ?8$8@‚ ?1é9@¸ä¢?I;@„Í£?7\?@(¥?ä:@ƒï¦?ð8@§½§?…Ì8@Ó§?pü=@ve¥?ãSA@ÓC£?e-C@ì ¢?u E@;\¡?_ÙB@Zº¡?ü?@sl¡?w@?@1¡?ÐIA@U¢?+<@e˜?©C@‘“?’Þ@@ú?Ó2E@t?êþV@Ü ‘?YJb@“?J4b@{e’?øÖX@i‘?y_V@ÜC?!±L@û<‘?lKD@`0’?¾=@ÃÝ’?Ã9@@c”?û$C@ð“”?eA@0•?€ú:@Ï•?hÈ7@îÿ–?6@J™?n67@T›?9¢9@Ü]?Ã:@Kp ?;@瘢?ÎJ;@“¤?!P8@g¥?`G8@G§?l ;@Üʧ?÷¾<@G™¥?­§A@Ôà£?8.E@&¢?³MG@[t¢?EF@¢?#ÖC@"|¢?{¹C@… £?¶¢C@ë£?ºÚ=@\fš?»;@œ•?¾=@ð‘?Ñ@C@yï?,X@›´‘?ãgc@gf“?aÅ\@©Ð“?8¼U@¸ ‘?üU@?æ‘?J@“-“?6É@@!x“?‰gC@ ¢“?E’E@dÒ“?$øB@Q”?H³?@½Ã”?¼<@Ö?º»;@Ѳ—? Å9@ud™?!¼:@ñ>›?š:=@Ü?ø¥>@5& ?âá<@=\¢?µí8@hؤ?ÆU6@Ÿ¸¦?x??@¨Y§?^?@“~¦?\×A@gô¤?”Ö?@ãÖ£?ÍfD@O†£?òF@L£?]áF@;¦£?†wD@ s¤?°NA@ç§¥?R=@¸Tž?÷J6@¿˜?<–7@6·’?[D@5º’?×Ú[@Ì-“?á?c@‚•?.\@L3•?^iU@f±“?H4N@8d”?RÞF@ê”?GhB@íî”?†pG@:Ö”?\°C@vâ”?XB@·•?ÃåB@~?•?Ñ#B@$µ–?j¯@@輦?J¾?@š?¡rA@!l›?«rD@bBž?Ü+@@J¡?VŠ>@ëù£?ÊV<@©»¥?­êB@ðަ?xÇB@§ƒ§?~B@^w§?Ïn<@6d¥?±Ü<@8j¥?cÑA@zÚ¤?õqE@MÕ¤?´½A@Šê¤?V²@@ez¦?7;@a ?Jª4@@÷š?á6;@ÈI”?¡èL@ôó“?ÏR`@B§•?\®a@Kæ•?¯Z@é•?ÃÚP@ÛŠ•?&fK@㎖?G‚B@ZV–?B_@@-–?âC@¯c–?WŸC@jÝ•?¡ÝE@Ëb•?9qB@»b–?6,C@öå—?¡B@*Ê™?ã•C@€·š?Þ²B@¾2?rCB@‡ÝŸ?ËsA@Þ`¢?gøB@§½¤?‹¹E@¨"¦?¦?@b[¦?{å@@”¦?/Þ>@‡­¥?Xï;@¾@§?í=9@ËI¦?Î@D@Rs¥?gA@£:¦?0P>@AƦ?¨;@Ä¡?Pì6@n›š?D½C@IZ–?€ÝY@–?Õb@ÎÒ–?óTb@U –?^~W@$É•?’éJ@W¸—?¦vG@™ª˜?©½?@o˜?ïÂA@Óƒ—?˜A@ãê—?’sB@ñý—?O@@ ì—?JpB@L2˜?D¨A@È™?â??@Êt›?c?@(Μ? Û@@¶Ÿ?8ÁC@í·¡?¶†C@H[£? H@ìD¥?ÖêA@­ó¥?+RB@[M¦?éõ@@,‡¦?7Ï?@Ï„§?¤Ô=@^´§?úåA@üÀ¦?_B@rÿ¦?ÇÝ<@0¨?42=@ΰ¢?Ö:@{›?8þK@ëÖ—?¥«d@ÅZ—?¸¡f@$A–?$\@@¬–??Q@êç—?ÊO@µí™?­HH@Èš?æC@ U™?Ä@@9$™?ÒD=@U0š?Æp?@Yš?n^?@Qµ™?n(?@Ÿ›š?¸Y;@…—œ?¾2<@Ó ž?ø">@Ë‘Ÿ?4QE@»¢?ÉD@¬¤?kG@W:¦?DšF@Nã¦?„H@MW§?ñàC@:§?áG@ªe¨?†wD@Ã2©?{FC@;©?iC@,ú¨?½›@@W¸©?’í<@ކ¢?8šB@ì›?ñV@šô—?« m@ô—?Dif@Ýæ•?Yf[@wd—?Á'V@™?:ôQ@N‘›?K@Àœ?ËÊ@@)h›?€h=@¾Ô›?¿:@Œ?¼R=@ÅΜ?G>@'Ö›?>F>@øèœ?2÷:@ 2ž?§=@`¡Ÿ?-C@q £?4kK@ŸÕ£?²–N@"³¥?oˆM@ðÛ§?+RQ@QD¨?¸EN@—>¨?‰®O@­¨?ÅSH@QÄ©?îZD@«?úE@ÀÓ«?«MB@¿u¬?%z>@:î¡?íýG@"l›?Ð e@`—?dxn@§ì•?bÌa@d•?þ5W@E+—?@íW@\‹™?µÀT@¡â›?Á?L@–×?AÇB@Ä?äS=@²ž?ø\8@I=Ÿ?Õã=@=už?Vµ?@Už?‚p<@mœž?ik?@yÍŸ?ÑD@nZ¢?ëlL@ø›¤?@#R@ô²¦?H[U@„é§?Y@|¡¨?¶CY@Ⴈ?2S@Ć©?ËO@‹®©?¼G@O¬? âG@qÖ¬?I'I@\®?™ŒA@lü ?;:O@Ú?ÅT@æ^š?r}X@'ø?SJR@¾_¢?”lD@­Œ¦?s>@Íg¦?Ñ€?@éc¨?™ÆA@?Ĩ?Æö>@g§?DcH@GÀ§?.áO@½©?¿§U@P̪?„[@ð[«?‚a@ë«?Àp^@’ë¬?¸ÍY@‰ ®?;Æ[@ø­®?j·W@›?˜^@µ—?ñW@åK“?UL@q$’?xHG@ÿ6“?ÁXG@U•?úTO@^˜?¶8V@§ô›?(¡S@;ëŸ?›ñN@5£? JM@脦?H@ ª? B@¼¬?K=@aÔ«?i°9@ åª?W6@ ¬©?pØ>@p ª?Õ¶I@?«?ó¢T@¿+­?Y)[@ïô­?o—Z@ ô®?ßN^@‹Ž¯?zE_@@³™?|†Y@Š•?LyK@‘?ãA@CG‘?›§=@_l“?’G@ 7—?P@ó š?_ST@`(ž? !P@nY¡?ËéK@¥T¥?Ö%H@èy¨?‘ E@ŸŒ«?\@@Zm®?ü9@=£¯?†º/@ž®?·!)@áR¬?n 1@9Œ¬?óÙ?@'®?ïLJ@lç¯?8ëS@ á¯?YY@àÀ°?ïZ@f—?_µM@‰û’?ø¡@@!?,³6@,‘?·¦:@¾%•?HöI@:™?øuQ@I,œ?„R@ÎéŸ?JkI@L›¤?ìÊA@Lµ¨?àE;@»ª?´%7@A+¯?bw3@š|²?DÅ1@ˆ²?Ø.@ ²?ý!@[´¯?d(@‘‚±?§5@Î ²?1D@ù±?ž7L@#ô±?•=N@æ–?ÿŒC@ §‘?S4@Ü7?݆.@ŸN’?ž9@@‰—?·÷K@í"›?ÿQ@®ž?xRJ@{ú¡? <@@Ôý¥?ÃM7@"ö©?z2,@³L¯?ã#(@0W³?¸À)@£lµ?Ä*@9°µ?4G+@5úµ?,$%@1¬µ?çs'@}(¶?Ò”0@m½µ?òç7@aö´?°Ô=@P””?êÚ5@F$‘?à¦&@ÜJ‘?+È(@  •?S<>@À¦š?éM@¦ç?SJK@MP ?F-@@IŠ£?Æ3@”¸¦?SL(@ZÛ«?Á»$@ñİ?šÙ$@J¨´?nÁ"@õ”µ?³(@f®¸?4ø+@©×¸?Ô®-@zMº?‚<*@!º?ÒÔ(@¹?iä.@|e“?(Ê(@º~‘?=€@ÄÒ“?ªº+@”™?'òD@y?ñ;J@q–Ÿ?åŠ@@‡Ë¡?Yù2@ÇV¤?÷î)@#)¨?´×%@5‰¬?x¹"@0į?^ï#@Õ ³?°º!@ÓÓ·?ç¾"@Sº?ë+@D‘¼?^y,@޼?W¨+@Ír½?E,@ó’?-õ@@>’?ÞŒ@ :—?8G2@påœ?iÝE@'+Ÿ?hK?@ûø ?+4@®G£?yn*@)¦?“„'@‰c©?Ä5%@¡Z¬?Û‚&@Œ¯?í$@Ws²?æD!@ÃÔ·?Ž%@̼?­¸&@½?Ž&@â=¿?ç‡.@“?„»@Åz•?Ç@[›?!87@{4Ÿ?|§<@ ¡?›Á3@³E¢?DY,@:ž¤? ×(@Ù^¨?y(@^ºª?'&(@¶ø«?WB+@Œ=¯?\,@æÁ³?F}+@wé·?ê%@Ècº?)²%@¸@¾?ÏE*@0•?ë@"|™?’¹%@‡Ÿ?Çê5@в¡?LJ5@J¢?Ñ.@5R£?µm*@‘8¦?má*@»û¨?Úô+@}ª?5º1@A†­?!u2@Ù§°?F3@>–³? ‡+@Ÿ¶?a*@®¸?Èâ+@4™?ž?@4é?ù¥&@TÉ¡?;<1@©Â¢? m0@ £?k)+@Л¤?èÑ,@u`§?õ0@+•©?2@£â¬?^5@€[¯?z67@å±?92@‘‚³?ªi-@Jµ?¶D-@Mì›?¬@– ?â(@±ó¢?Sn.@Ïô£?‡Õ-@IW¤?4?0@¦?Á4@û]¨?04@ Ъ?ê7@ ®?9@~(±?þß7@¦²?y!4@èÔ³?lA0@;?”@•e¡?ZÛ'@¤?§0@Ré¤?º5@:ƒ¦?!°7@‡õ§?Væ8@”Þ©?¯Œ;@䵬?O)<@ï°? <@)±?ÐÜ7@:R²?$Ÿ1@ Sž?ê@ê4¢?r<*@"¥?°›5@+^§?/&;@³Ñ¨?‰g=@/Eª?µé=@§Õ¬?·">@ÿ¯?œ‹?@Žw°?67:@ño²?Áä4@›ºŸ?8G$@šz£?e.@ǧ?E<6@Ù¨?ë)<@ A«??î>@3¬?ç¾A@2)¯?,C@¥†°?5=@7,²?76@5Ë¡?® $@ z¤?F-@‡‚§?˜3@*§ª?ñY9@é…¬?’Õ>@.¯?vÉA@‹›°?v=@6¯±?²˜4@娢?Öâ&@Ý¥?°#*@̨? Ù-@üª?ôá3@⤭?AŽ8@e•¯?P68@ú°°?ë—3@wà£? a%@$Z¥?¥b'@¨?l4*@ù¬«?¹*0@bÑ­?“H2@¨'¯?ß2@a§¤?…&@;§?y¿(@«²ª?€,@v¬? O/@£g®?4W3@·§?À±/@S~©?Äñ1@1-¬?!G2@ å­?øZ3@Ïtª?²6@™­?Ÿ6@ºÇ®?¸4@®?«7@j¯?dä1@ë?°?^Y.@œÀ?7¡@Â?´H@ÂKÃ?Ä)@!oÄ? ˆ@™È?¯q@J½Ã?w5@"NÄ?̨ @®ÒÅ?Ǩ @“ñÃ?Vy @ºëÁ?s‘@°xÅ?aÌ@,Ì?òÄ@jCÑ?à¥ÿ?)zÖ?Uò÷?;ÄØ?  ü?ÐÒ?Cpý?1Ë?‰ûã?ŽèÀ?žÏ?ñá·?+Ó?L§¸?xËÐ?7l¸?‚ØÍ?Ö­·? ÌÔ?寵?ÄCé?[ó·?üäö?ß*¶? rò?¶`¸?6²ã?t»?´ÒÜ?Øf¾?®áÔ?}5Ç?õì?(Ê?Öù?RÉ?N‚ù?‡Ê?È\é?ï±Ê?úñã?¼È?©)ê?;¾Å?‹Ýó?ν?¨Ó@®Yµ?çž@=ó³?-@²æµ?âÙ@ÚQ¹?€ @kľ?h}@sÁ?Þqÿ?O°Ä?¸R@ßÅ?€ã@7Ä?n]@ÙÄ? Ô@ 0Á?Å®@"Á? Q@OÂ?@o@AÀ?µÖ@:4¿?ð @M¨¼?À‚%@§•¹?h#$@¨¸?§| @AŒ¶?ïÑ!@\µ?þƒ"@Zêœ?J}B@ƒó?a.B@pŸ?:ý=@%Þž?Ë—<@Œ\Ÿ? Ç?@É@Ÿ?2G@|œž?÷H@æ?‘8I@]ž?GÓQ@éŸ?å2N@“o ?Ä¥P@‚ƒ¢?åL@ðÉ¢?”WI@d¥?8¡@@m §?ó‚>@Â3¨?|ð2@׫?ÙN/@‚Ø­?ÕÚ/@Ê­?ÕZ.@B¯?¿ï+@}“²?»C+@ý¹´?äè+@nrµ?*µ.@e‰µ?¢|/@Àç´?›ä3@ü¬´?´­9@ÚT·?ˆ„<@À׸?Õv6@Û¹?¨7@â»?Ń;@Ìá¹?§Q9@ ¼·?I˜0@imµ?2(@h¢µ? @?̵?@o¶?Çß@4¸?½g@|`¸?t:@ÜØ·?v@5P¸? @<¸?Á@¨-¹?ÄÔ@ ƒ¸?Ÿ_@º?ÔT@Šì¹?"@H½?í@“­¿?K@z˜Â?)õ@JaÁ?&5@GÏÂ?Ã@kÇ?Ê\@òVÆ?[@´Æ?Ù@žÆÄ?“@Æ?Ã?·¿@2Ä?żA@¼©ž?uJ@@V-Ÿ?Ój;@¶Ÿ?}Ö<@²qž?À,>@Dô?©‹H@.±?¶M@Ìjž?±:P@ŸtŸ?ÔT@uŸ ?Ò S@³u¢?!HT@äz£?ÙãN@Öå£?×Ñ@@º ¥?`1<@7ÿ¦?ÎÛ5@OH©?í0@ÇÕ«?+­0@}¬?sÂ/@Cà­?<ê-@¬ °?2,@ýp²?Æ+@4´?,@Õʳ?…1@¸K´?+.@¡´?78@t™¶?®a<@X¸?Y±8@Íe¸?¬>;@Dý¹?Yp<@«Oº?K68@, ¹?<€3@iE¶?’é)@ò_µ?#@4·?ˆ@Ò͸?‰°@基?D›@ãú¹?Ó/@di¹?ÈË@ºý·?ÈÂ@i¢¸?~Ñ@?x×@´¦º?¿Í@J»?‘r@˜y»?¥@j%¿?=·@O7Â?Ý­@’çÂ?Ê@«õÂ?‡à@…ÍÂ?ê÷@\¬Å?h@±vÉ?@o™È?QÅ@^OÇ?³Û@ZÅ?•Y@Úß?þC@Yë?Êy@@Npž?hB@ÖÖž?c?@©à?G@Ñ-ž?^ÜQ@©;Ÿ?0ùS@êB ?oŒT@Ó9¡?TT@ëc£?_ÐV@H‡¤?ZV@Ì#¤?¿þH@]ˤ?n<@ûR¥?“8@Tw¨?)4@ʪ?—*3@•«?ü³2@>ج?i½0@ªœ®?œé,@Zž¯?«.-@A±?ÒC/@а?ßÂ/@•ª±?´õ1@%!³?R3@ýµ?9@ F¸?w»7@¦·?,¶:@¹?-;@}º? ÿ4@€`º?1î/@æ¸?—î'@`Ž·??#@µI¸? Ö@v¹?c@ež¹?ñ¬@ v»?'²@é@¼?8@þÕ¹?S@­¤»?õv@Iº?Wú@3»?=ž@åÖº?Fá@zÒ¼?]à @#‹¿?q™ @ÿ Ä?]Ç @`_Å?–@CÆ?ƒ@52Ä?ÎZ@†·Ã?dÆ@¹Å?&‚@×zÉ?íÒ@ÓÔÈ?“<@~Æ?„@þž?ßeC@?mBK@ož?¨ÈG@åž?ûªK@V(Ÿ?ÁV@øºŸ?Î;Z@·j ?KrX@ã¡?àƒV@N,£?EV@ŸW¤?Ýl?K“H@|ƒž?µ-M@ú‹ž?›KO@aYž?xiX@ Ã ?Ìúa@2ú ?E\@z¢?[\@šó£?ƒpT@£°¤?l}W@Öþ£?@ÒP@cL¤?NÃD@7Ý£?á3=@Üà¥?Ãs8@G~§?ò8@ÐG©?¹6@7 «?ÿ»1@)‹«?€“2@Øv«?¯E1@^\­?FÀ.@œÿ®?i\-@ €¯?½/@ga°?ô²/@?WÀ6@*¶?ëX3@륷?„Ù8@b·?;<9@£b·?¨Ð;@#²¸?¸±2@³=»?9P+@s½¼?æŒ%@@š½?Þ $@ž¥½?8K@Gq¼?•È@ Á»?x#@о??@yؽ?ø"@“r¾? ™@S¼?7+@¡Wº?e×@…»?³ @ m½?¼ @¾Ì¿?•$@=¸Á?£Ý@_ØÅ?8Õ@àË? @wôÌ?ä @yJÈ?™†@â#Æ?Þ@¨Å?Éà@•èÇ?zF@3ÊÇ?ÿÇ@·¢ž?dýL@¬ Ÿ?niQ@hCŸ?%gU@00 ?xZ@‡h¢?}”_@Ô¢?¸á[@ ¥?‘¯\@]u¥?»eS@tÞ¤?×DR@ö£?ÅG@mF£?cu?@`±¤?Ãã:@|¦?™ =@]=¨?Ò;@²©?«"9@ ¹ª?·A3@;>«?ŠK1@þ±«?kå2@@J­?Ø2@3Q®?Ñ´1@ó;¯?Ññ1@»È°?Òº3@Ø™³?‚õ7@˜z¶?«H7@™@·?3˜5@ e·?49@º¨·?¸6@ª¹?+È,@'¼?]«&@ß˾?Œ$@&¹¾?Ї%@†È¾?±ÿ@P¾?æ@&ã¾?Î@ÀÁÀ? s@‘ÃÀ?T@CÁ?¥ @Mâ½?½k @'-»?I• @ãÛ»?í'@I¿?¯È@¨ûÀ?1i@`¥Ä?æ@Ê?¬å@ܨÌ?"‚@$UÍ?eL@šÊ?%_@=ÊÆ?]¢@\gÈ?Z#@1È?]¨@]ÖŸ?mM@+˜ ?³’S@¬*¢?ä Z@Ùø¢?²uY@Ò¤?1ÀX@B¤?Js[@¤S¦?àW@R*¥?ñÂO@®t£?!I@蛢?bF@o¸£? ´<@åH¦?Yž<@=¨?yD?@o¨?ˆÍ:@+©?|Š7@ÿkª? 5@4`«?¶Û2@UÛ«?z\5@êü¬?h3@[å®?à•4@ñW°?W|4@3h²?¥(:@°ø´?§C=@R·?¿’7@°·?«A6@ú“·?(Ä4@DÓ·?X/@1·º?Ö<'@R½?#@2]¾?Àd"@åÁ¾?«)@“¾?Þê@$¬½?çî@ÚÍ¿?Üú@”áÂ?ñ @—ÏÃ?÷ @NsÂ?©a@c›¾?X@öº¼?d{@•U½?Þé@ÚÆÀ?¯¿@+Ä?©Ã@°tÅ?±)@ÍkÊ?µd@rÒÎ?@ @ÅZÎ?5@@%qÍ?+@8üË?I2 @v'É?a @,£?ÄåJ@ØÚ£?ÏÚR@t0¤?¬VV@1¤?=KU@Ï~¥?°!W@å¤?\[@y¥?¾áT@pª£?S8I@|ä£?TÉA@æ£?`A@n¥?À<@Ú˜¦?^Š<@d¨?D¹;@h©?0'8@ º©?Q-6@GŽª?Vö2@U¬?îk1@Ç÷¬?Ât4@×®?Óö1@O&¯?ÃÍ6@~V±?ëƒ;@a…´?–@@‘0·?z <@äb·?cË3@}¡·?.6@ªü·?â¤3@Y¹?t‡)@Ú~º?2“%@”¼?„$"@’ѽ?âz@¾H½?”6@~¯½?§t@U]¿?ÿv@,sÂ?qè@%8Å?ú¾@ê-Å?¡ô @rÓÂ?*@c°Á?t¥@¿?9c@RjÁ?ê¶@¨ßÃ?¾@ ôÂ?u @¥ Å?yv @ŠéÉ?Г@„ÛÍ?¨Õ @G­Ð?ºE @ô¼Ð?«X@=oÌ?²<@•P¥?qÍI@'Û¥?ñ‚O@ÌJ¦?²ÇT@ª¥?œˆW@ö«£?úYW@x±£?ÀV@L£?pMK@>”£?Õ]A@."¤?ù ?@FF¥?xÙ>@À:¦?5=@¾Â§?2ò:@€S©?ê7@1©?‹8@È©?qö6@ùWª?Ö1@oL­?86@v­?Θ4@,¯?Nª4@º­°?aœ6@§³?êÆ>@Ñ~µ?â7>@–¶?&Î8@’·?.%4@¸?”¯5@/¸?'Ç-@³`¹?8×*@‰éº?¼s#@ p¼?œ@FÓ¼?O@Å-¾?‡î@׿?Ÿ @åÅ? @˜xÉ?ê¼@ŒíÉ?šw @µÿÉ? @·âÉ? 0 @¬È?í @æ*È?Ûe@[nÈ?YB@¸ðÆ?]L@™9Æ?¸• @ŠfÇ?©S@ÙÌ?$ó@¾¿Ï?‘Û@ÃTÎ?sŸ @©µÊ?Ôa@œ-¦?‰ŒG@2¦?´CS@åV¥?œ W@AM¤?²MU@l£?ÖëW@#ä¢?æ‡J@ȶ¢?^ÅC@o ¤?ÖÍ>@›¥?ÝY=@˧?6É>@Ï¡§?çœ;@Q¨?yH7@Yø©?xC7@Øg©?go;@ Ùª?˜¨8@˜%«?9¹5@3¹­?ôè5@±‚¯?^ 5@Ű?ïT5@¾\²?}¡:@>]´?V5?@Ä>·?ø‚<@Œ&¸?xT3@â ¸?… 5@šÅ¹?[Â/@ªz¸?†-+@`Ϻ?¸¥%@2ż?¸ @ù•½?Ž @T¬½?ž}@]¾¿?8K@G Ä?x @U0Ê?^Ç@µ(Ï?ï @û{Ò?w& @o)Ï?Ÿ÷ @ä²Î?Dø@œ¶Í?2Ò@ÂÍ?ø9@ßFÍ?DP@#‰Ê?/U@ ƒÊ?éˆ@„ÓË?® @DBÑ??Ê@E Ï?=Ì@ÕZÊ?¾1 @̧?µ_R@ ¥?í´\@5£?‚W@ ^£?*OX@ "£?øDP@{ £?•™G@S[¤? =@iŠ¥?Ád9@§?::<@&8¨?>@‰q©?ÞÎ8@+Z¨?jç4@ªª?j8@¹ùª?öÂ<@Çûª?®é:@™þ¬?«.8@¡(¯?‡¿9@†$±?ìn8@ù`²?=Z9@DÑ´?k¡=@J·?j=@rP¹?}93@¹?8Š1@u¡º?kf1@º?‡x,@Kü»?jÚ$@ü/¾?„#@¶¾?îÄ@ó ¿?2Ô@lÈÁ?•d@WÆ?ð`@Ó*Ë?8¸@î°Ð?C: @»XÖ?ÑÊ@(Ô?‡ @_ÛÑ?€@N&Ð?Â*@ðæÎ?e–@ÂÍÎ?]!@\;Î? @´Í?ò @ÜÊ?$˜ @•¨Ð?‰@-÷Ñ?D@È>Í? m @W¤?¸èV@¨2¢?Ã~W@·å¡? S@o‚¢?mO@h*£?­hG@AN¤?f?@€z¦?ÍW6@K¦?=ì5@ ©§?4ö7@˨?ÆÍ:@$,©?°7@Ç©?ŸO7@þZª? ¨;@îÏ«?r}:@òg¬? …<@ù|¯?Dý:@@ű?ñm:@2s²?.<@±¢³? ³:@Ÿ/¶?ÿè:@šZ¹?Ã4@Pº?*+@v¼?ï ,@ƒ]»?L -@—@¼?qµ$@¤¿?Ú±$@ÈŽ¿?u$@‹ÜÁ?1£@ƒëÃ?ž“@ð[Å?O=@†jÊ?ót@0Ð?] @íÏÓ?K¿@mqÓ?Æ@ÙÙÐ?e'@ºÉ?«C @û|Ê?2y@¿ðË?ö @8áÐ?”£@!sÐ?ì¨ @j§Ï?’| @­µÏ?D @óûÔ?) @¢xÐ?Y @½?¡?ÚŒO@™š ?))N@->¡? ®N@”¢?ðÕE@H¤?a·?@%y¥?©9@D¦?é3@fí¦?Ô¸2@Y¨?ã´4@.m¨?â]4@#a©?“5@‡©?Ð 9@-«?¡1;@×j­?^^=@mR¯?Äb:@˜Ñ±?™=@ª\³?g8@᪲?=@Zºµ?Ÿ8@cD·?–Ø6@-D¹?ׇ0@Ý´»?D+@^½?$[+@-¶½?`¿%@ÚÀ?Ù!@tÚÂ?d³%@ÿØÂ?+@½„Å?Û@ BÆ?°J@ßÊ?Ë—@’Î?v! @ÐÑ?z* @`ÞÐ?‘«@ÝÌ?ÙA @¯çÃ?=æ @€Á?¬ @êÊÅ?cz @‰Í?!ë @5DÒ?ûœ@­Ò?Q @R8Ó?è†@³Ö?ñpý?ÞSÖ?„Aþ?ñ  ?ñC@¸’ ?ÔÎH@¾î ?W´H@cS£?dA@Â¥? ):@‚Ÿ¥?ó7@ƒ¦¦?vÍ3@¦¨?“4@ñ¨¨?[F3@1÷©?˜2@O¾ª?D\4@¥r«?¼Õ5@ßˬ?öI9@§á®?©9@P±?ëÞ9@=³?AÒ<@д?Êí:@[´?—9@vµ?$9@ó[·?òÀ4@JH¹?®N0@U̼?YL+@“ݾ?a}$@ÂëÀ?¯¡!@>PÄ?x3 @œzÆ?ó¸@RÆÈ?bØ@¡äÊ?4÷@2,Ï?$ÿ@XmÐ?õ@ÄÌÑ?Ã:@Ú¥Ð? @õ(Ë?6@xxÅ?†8 @ñ¿?“ï@e˜Ä?óÕ@2Í?Z @}Ô?©@ãÖ?rþ? ï×?bøü?ŠŒÚ?êö?4c×?ñ?äŸ??u@@òâ ? >F@tÒ¡? ÇB@´¤£?Š¢;@∥?Œ@6@#ù¥?Þ 4@[§?î46@ç&¨?˜Ý4@š¨?d4@¯Ü©?‚5@hô«? c5@]­? C5@³½®?kµ8@Ý"°?Qð;@6‘²?š<@†t³?üD?@ïj´?&Y=@›Û´?ñ7;@ L¶?^7@¾¶·?Êœ0@?€º?Ü^/@¾? )@±|À?—¤#@ÆÂ?"!@•{È?Ý7@¢?Ë?¤>@—ÄÎ?âç@O­Ò? @¸ðÔ? x @Á(Õ?6 @\©Ò?S7@¾6Í?{P@'„Ç?M @êÅ?"@hÈ?ò@|­Ð?ŸÎ@5PÕ?Ðï@„.Ù? @TíÙ?0Áý?„àÙ?… õ?ÇVØ?2¸ñ?w ?gÜ@@ª"¢?„VD@z©£?¾B:@Ù¿¤?`6@b¦?M1@±§?êW5@Ø(¨?o5@d7§?áÊ8@æ@¨?J¨5@Ø*ª?&Ì5@bš¬?þ5@¥®?D¼5@[°?z¯6@U ²?ìå<@Ó5³?«Ï=@ßµ?6é>@&µ?²¥<@¼â´? Ö8@®õ¶?¾0@dº??ÿ,@­»?Y´-@ܼ?)@ï)À?^&$@“Ä?G@ÓˆÉ?ÝÊ@ Í?æN@ÛËÒ?¼ø@›Ô?„@&×?8þ? @Ö?öp@x‹Ò?š“@ÐhË?$ @-èÉ?š@¡FÎ?Mó@’Ó? ‚@åÖ?ÏÑ@6ÅÖ?y[@^rÔ?oo@…ÔÔ?2ÿ?ù{Ó?‰×ì?0¡?C?@£?°+=@!Ò¤?o£5@áË¥?¢K5@2‹¦? K6@Ô­§?2Ü7@a§?ü5@ /¨?M7@r©?‹º6@3x«?Q"6@hf­?ÊA8@Èõ°?Vh5@T²?øE=@N³²?xð=@×µ?W">@µ?&Ä>@[t´?§½6@Lfµ?ã×2@i¸?5-@óº?¹]/@Ž8»?ŽÓ*@åO½?ô-%@…WÀ?9×@‘¥Ã?Á@£[È?Õ@hmÌ?v @aÐ?)_@A Ó?dú?óÖ?Æ®ð?v`Ô?S•þ?–~Ï?H€@¶ÃÎ?E@Õ­Ó? ì@Ÿ2Ô?l @„”Ð?®@ÄïÎ?óáù?Í?ÈÊú?æÍ?Ó¢ó?…NË?~nç?œ€¡?¶Å<@tÓ£?T˜6@h ¥? 5@þߥ?-›7@Pœ¦?§Ò:@û¨?g’7@І¨?o³5@ßf©?As8@ˆõ©?,œ9@”§¬?3˜7@Éò­?å9@xi±?{8?@y³?pm=@§Š³?¨âA@Ä…µ?@˜>@özµ?IÝ8@ņµ?~¢2@‹}¶?iu/@°l¸?ã³,@M!»?‡'@…u½??!@5r¿?"H@^À?ÌÚ@ÈWÂ? Ó@Ö!Å?ê\ @Þ)È?~v @{ŸÎ?8æû?GðÐ?ä«î?Ì ×?Æ‚ï?7*Ó? F@^VÐ?ûT @*QÓ?, @IÓ?"¥ @TÍ?Ûª@höÂ?ßð?3´Á?ù¶á?NõÁ?¬mä?CÏÃ?¯çß?$Ó¢?ÓÜ:@˜Å£?·8@VÆ¥?Q}:@(¥¦?|·<@X§?¤)9@Y%©? g5@®©?Á3@­ ª?å-:@ž¬?z¥;@I‚­?„Ø<@g°?À<@ék²?ýL?@ÓK³?`Ñ?@Êõ´?ã&@@·ÿµ?¼?éP$@ô/¾?ad#@ø•¿?9Ü@|â¾?¹9@¤¿?ÂH @¾”¿?à @©ÆÁ?wn@¸ Ä??0õ?ÝjÌ?öç?›—Ò?ª7ì?ç`Ô?ë¼ö?Ð%Ñ?@ŠdÒ?+À@_Ñ?+è @õË?Qˆ@ÎV»?k†é?}¤¸?UªÞ?NV»? ˜Ø?\ô¾?%wÖ?,[£?£{;@—?¥?=@ È¥?Œˆ>@ß[§?´U=@øT¨?¨ì7@-ß©?Rñ.@³Vª?åc3@?ÿª?~ƒ6@ó®?×6@øm°?Ú>@[”±?ä…=@8è³?>Ù>@·.¶?Öî=@§¸?PD<@½k·?r06@¸?+2@ø"º?Ñ3'@ðc¼?&Ä"@º\¾?œº"@æÈ¿?z¾@}=¾?bØ@ó½?Þê @Pr»?ΰ@Éü?Ø¥@(Ç»?Dˆù?®¿?ƒ5æ?ƒÆ? ²ä?Ñ?"³ä?Ô?zë?(hÐ?]N@I#Ì?ýå @ñyÃ?WE@—¹?jæñ?Ö|·?êwâ?Fƒµ?1)Ø?eþ¶?.SÍ?:_¥?6U=@R,¥?—øA@w¦?×z?@ùŸ§?Në;@£½¨?á5@.ú©?$’-@‚+«?©,@î'¬?aÆ.@'|°?Îô6@س?7>@γ?Ž*A@œµ?tK?@BJ¸?h ?@D{¸?æ=6@x¦¸?c’0@æ%¹?¼I(@Ž<¼?LÌ @'h¾?Û@´À?ìö@öÞÀ?T#@~¾?Ê– @+Ôº?â·@Tº?©Ò@¶¹?ÎOö?¬l¸?Ø(ì?òĺ?îß?ˆÃÅ?õ:Ù?3›Î?Qß?MÊÏ?.óé?·ÊÉ?åé@eÏ¿?ra@¶»?QÏñ?ý´?Ëõê?NÞ¶?íÉâ?±:µ?Ë’Ö?ÞW¦?´]A@%œ¥?ߣB@új¦?%Í>@Oü§?8û:@©l©?ñ,3@玪?[;*@¤Ã¬?Es+@%Ÿ¯?òÜ-@dü²?TL:@¼´?‹>@êzµ?º$H@¨·?­ÔF@Ò¤¸?=â@@Û¸?Ã7@²¹?Ùš.@"º?gÏ!@)£½?¡@V’¿?ŠB@RgÀ? k@÷¾?‚ @7ýº?rw@zb¹?”*@Oî¹?dáú?DRµ?Êõð?=-µ?øÁÜ?퇾?‘ŠÔ?‹ŠÇ?ÊÚ?ÙBÍ?¬Yà?#Í?‰ìö?2¿?Uû?Hº?!£ë?‚ö¶?X%ã?êG·?#öè?åa·?ïß?€¡¦? c>@ Õ¦?|Ô@@¨?ê`9@š[©?ôY7@?øª?½M.@o’¬?J‘-@ôW°?߉1@¿|²?u(:@w$´?ñ=@…ð´?D@:9¶?#×M@“ ·?KàD@$©·?™¢9@Õ€¸?°2@Q¹?Ö(@§»?R«@K¿?t@°«Á?˜¥@©ÔÀ?Uú @œ‹½?^ƒ @U·¹?±ƒ @ÌŸ?K @É¢¶?~iø?†´?.Hç?FĶ?Ðèà?7Í¿?–Ï?±¸È?YòÕ?ÀÄÏ?9ðä?ŸKÈ?kVç?k¿?ÑRå?!!·?p¢à?CA¶?Þìß?dµ?¯¬ê?eݧ?|<@Ra©?s^<@p"ª?“Ï8@‹²«?¨6@ÁZ­?’3@ã°?3@çX²?$9@O7´?üy=@ Ü´?Ï©C@ñµ?ûKL@Þ¶?“ËD@ßc·?û‡<@uG¹??æ8@…¸?@d0@æž¹?¡=%@ã»?¹"@çÁ?‚0@mÀ?»^@Œ,¾?¾@Ø×»?•ê@,=¹? § @Ê·?f@P:¶?qý?Ss·?urò?(@»?)Šà?& Ä?Šv×?ò¾É?ý}Ò?© Ï?©Ö?ëHÄ?%Ù?Jh¾?ÏÆÜ? 4¶?åY×?CO²?p¡â? ©?¥×<@«'«?Ò:@™‹¬?†ù8@c|¯?H<7@H°?.K;@7²?Ø8@øú²?³ª>@´?˜-C@èQµ?+ÒL@®¯¶?—ãH@˜–·?Œ¹C@÷º?Æf?@xº?374@ª¹?‡Ü)@|º?Üc"@‹+½?Úì@_àÁ?Y@SÀ?#¢@1^½?í\@0ò¹?†~@ž0¹?ÞÞ @¸F·?2è@ÕÓ·?wm@äù´?‘Hõ?k_º?Óë?õÂ?z‹Þ?|©Ê?#Ú?¤ÄË?q_Ø?¡BÃ?[ÀÛ?œ(º?XÞØ?¡-µ?$Ø??4«?xC:@$’¬?ÆØ:@—Z®?4Ú=@¿±?.;>@—Õ°?û\:@Hþ²?P5=@ü³??D@ý+´? ìL@±0·?ØH@§;·?¤”A@Šð¹?<Ë@@§Ç»?¼;@S»?±¹/@}®¹?@§$@Y>¼?ËÇ@$ÉÀ?aÐ@Ç%Â?¡@¸ÁÀ?:e@%A¼?+¿@Öwº?—c@BE¹?U@ˆ±¶?^î@س?çø?E…²?¨ó?¹?–Ìð?;ýÅ?ïlæ?¬ŠÏ?̘×?ÓvÌ?9^Õ?ÙÃ?îïÚ?&£»?ÄðÖ?­?H <@.¯?§=@yÿ°?4w>@$8²? -=@Ýà±?w>@ûDz?ˆ®F@Ô¹³?ÓÓK@¶? …M@‰P¸?¤êD@?çV;@­î»?\†=@|)¼?á9@„nº?J*@‚º?íG#@Ä"¾?R1@é¥Â?‰@êÊÀ?÷@Âò½?ø:@cÓ¼?Äi @‘º?Iì@ù¹?ú_@ž“µ?Æõ?w´?4?ï?pµ?’Òø??O¾?Ìñ?ëwÌ?¹â?˜Ò?K¬Î?žÎ?lÜ?ún¾?@ÓË?8`®?‰‹A@+à¯?A?@œz±?»<@@TI²?®C@¸²?éH@—³?*ïP@ Ìµ?‘¬O@+a¸?†bF@kƺ?®µ:@¼?‡`<@©¢¼?ë?@¢T»?71@•Iº?xÈ$@XŽ»?´ @÷zÀ?÷è@ÏmÁ?é@@ Â?AY@ì¾?|™@sK½?tì @½?F@çOº?]Xø?ec´?h‡ì?ÓVµ?–ìð?X¹?AYö?ÃÇ?8‘ä?!œÑ?åÙ?zêÓ?+Ù×?ãÈ?µß?§å¯?.BB@i°?DË?@ º°?ýI@#³±?Ÿ‚L@^²?i±Q@[µ?ÞU@¥-¸?øsK@>‰»?h\@@hv½?5Þ:@o¾?ÅÙ=@|ç»?`:@mº?HÉ,@ ~º?ôy @š…¼?å€@í¿?ýf@W¼À?dÜ@c¿?ÖÊ@É¿?–@tݽ?ïb@l¾?‰@{8¹?~Nî?Ñ\´?$wç?¿?¸? Îö?°MÃ?»Ñö??øË?çµÜ?O™Ó?<Î×?ÞoÎ?3'í?ö°?=?@'8°?ŠªJ@s¾±?ðqM@Ÿ¾²?_TP@Üð´?=:Q@Qó·?×ìM@Z ¼?}A@Vk½?ƒn=@L›¾?‘ø:@\%¾? Ñ;@…—»?P5@?êº?Æó)@ ð¼?\à@¢¾?íY @ ¾?´û@€Ç¾?r@©¯¿?!–@ À?°” @é,Á?½ @ƒÝÀ?ž.@õ`»?o±ï?¹¼?Ä6ï?-ÖÂ?™ô?qLÌ??Ýå?ÄÒ?è9Ý?×8Ë?Ø3æ?šÖ¯?1ºI@ún±?‡‰Q@E³?õÔQ@&ª´?2V@¥·? ÊN@i$º?Ï–F@Ät¾?ª?@½¾?Šx;@"#¾?xo8@<ª¼?åŽ6@·ºº?§@3@ -»?u“%@±¼?H3#@¾½?£ #@¿¦¼?oÈ@äÁ?@êÂ?D× @òÀ?.J@§ËÀ?µZ@˜6Â?ÄÏ@&ÆÂ?æµý?ZœÃ?c‘@väË?Èö?iÑÍ?ÛÞ?…Ò?êžé?bs°?ÿòT@&ì±?n@Ö=¿?vØ;@Íy¾?PÀ4@û½?D4@—»?™‘6@¿òº?ú.@ ¼?¶ê#@p­»?)(@´Óº?A5 @>á¼?ÑÌ@~$Â?¾©@ÜÊÂ?±Ë @ gÁ?Ã. @ÄÂ?œa@‘*Å?«]@1üÆ?•@©$Ê?kÙú?£äÊ?õôï?-CÏ?Ê‚â?‚°?Iq]@ŒÆ²?+c\@h?µ?ÿ(V@&t¹?äHD@3½?µw<@|¿?lî7@T¸¿?#4@‡î¼? ™0@¨–¼?u74@׺? P4@Äź?÷­,@…º?õø%@¡ º?`¡"@^ »?×7@&«¾? @w"Ã?c@¸–Ã?‘@HªÅ?ØF @Î÷Æ?Qa@…ñÅ?ì¨@üÚÆ?'@ È?Uþ?±Ê?jtû?äc±?5a@f2´?…>V@ÝÏ·?BjD@ê¼?\Î5@¤›½?¥Â3@Ë0À?Q+2@ #½?l~0@Ã[½?÷Î-@¿t»?G…2@ `¹?„ç,@g5º? !*@üǸ?iB"@$Eº?ëÎ@K¾?²ø@*}À?/@nQÄ?ŠL@¨âÄ?ݧ@ôñÅ?æÝ@Ÿ?È?;l@kÅ?ãÖ@{?Ä?ëÞ@lÅ?½ü?xJ³?¸U@x—¶?«ÄG@© »?—Ý3@PI½?B4@˜¾?~Û1@;½?Û/@Ù¼?Té.@‹>¼?P/@Øè¹?-0@,G¹?;á(@QY¹?£Ä%@[Yº?$Õ@׸½? 2@žñÀ?„„@IuÂ? ±@whÃ?Þ:@AìÆ?` @obÈ?N“@º”Ä?žtÿ?IEÁ?Ž@@©À?GY@þǵ?1%F@¢W»?ny5@Ç7½?¤ð5@Ô¾½?hÃ3@É7¼?;/@Û|»?Ðt/@ô»?‘ /@ÁѺ?BÚ0@²÷¸?ȵ,@µ¹?û‘'@%÷º?ê*#@a’¼?2Ò@ÆÁ?…Î@KòÃ?ìØ@ îÂ?žZ@ ¤Ä?ê¿ @é'Æ?Ì„@UÍÅ?³„@û¿?¡.ÿ?J»?b@Tþº?¸ñ5@z³½?B£2@'°¾?ë0@ï+¼?~0@[¤º?²R/@{Oº?™/@*º?Øí.@©²¹?j´,@[9¹?}>+@Š¡»?‹Ë"@?¼?A@Û¯À?Ø@§Ä?è_@Ö8Ä?Êî@aOÄ?r@û'Å?8å @MlÅ?ó@÷$Â?]óú?x¤¹? Å@½?ж2@¡ù½?2G1@å¼?œ½,@dº?ð.@ Ø¹?Þž-@E3¹?1Ø.@ ¹?a—)@á=º?œB,@Iã¹?W+@“½?1š@ˆo¿?´@_1Ä?„Ž@pNÃ?2@HåÄ?zu@Ù‹È?0± @xüÄ?Ч@ŠêÂ?4@á»?€o@½@¾? 2@>à¼? <*@µÀ¹?„*@³â¸?‘+@¤h¹?^D+@rG¹?Ä0*@•g¹?[O*@ƒuº?'.@ܼ?%@%@-y¿?-l@1ÈÁ?õ@øÃ?Žž@ô®Ã?îû@»Ä?´Î@8þÂ?Ò @{pÄ?š@³±¾? !@^}½?£½)@mº?iV(@R‚¹?u‹*@iø?«X+@θ?„=*@Í·?¯-)@h<º? -@_»?š¶(@µ±½?w4@mëÀ?]ó@¼¸À?¦ˆ@,Á?Π@ÂÃ?È<@•ûÁ? ÿ@@$Ä?†[@ÜÁ?ß@ÌØ¹?*@Sµ¸?g+@sf¸?yq,@¸?µU,@Fí·?ö+@jÕ·?0Ô)@‘º?µæ+@Ű¼?‡$@2Ù¾?Ì@@ŸÒ¾?³@‹9¿?Ȭ@åÀ?`Ö@ÃnÁ?8 @µ Ä?¼@z(Ã?ø´@¾¸?èé+@‚·?ÏŽ.@ Ô·?>r-@Td·?:5,@)-·?½)@·h·?–+@1´º?y)@ â¼?zÌ"@¸5¿?@ @ ¾?X2@÷¿?Ê@™-Ã?ÈK@ýÛÄ?QS@—'Ä?b@‚º·?d-@ê·?ýÑ.@9¶?Ny,@*-µ?Ëí,@Ý«µ?‰)@—Œ·?*@þþ¹?LÜ&@Cç»? X@¹Õ½?YÇ@b ¿?%n@KcÁ?>l@XhÅ?ùö@¤aÅ?ÞÚ@Àéµ?˜'/@å´?v3@›[´?2+@= ´?ÿL+@ï´?šY&@΢·?ï6$@óm¹?mQ@ýé»?x'@wʾ?¥\@ÓÙÀ?Ö‘@¿:Ã?jF@í7Æ?´}@¯^´?Ä1@¦¼²?å‹1@ w²?jL(@v7³?”%@hǵ?áè@Tï¸?©©@ŠNº?ëÔ@ÿؽ?H@J*Á?«ç@ê±Á?æî@;ÞÄ?Ôo@à²?l_2@fú°?ðd.@£ ²?‘Î"@ËØ³?Õß@¹t·?‘@rº?£ˆ@júº?ç†@`]½?Y@2ô¿?ô­@¥Â?è@à ±?v0@íž°?n*@ a²?Íû@y¶?K€@×=º?vŒ@7<»?pS@[X¼?¡@8(¾?jx@D"Á?Íû@‹8¯?ÑÖ,@1Y±?„²%@aò³?’|@uÅ·?ºÂ@Å_»?í@üª¼?[ˆ@,´¾?”t@ÞÂ?C@ɼ®?mý)@~ ±?ë{%@)µ?¼@~l¸?Ä@ú?Df@|Þ»?âÁ@+w¿?d@­®?cM*@²á²?«u#@àµ?Ì}@LƸ?'@òfº?Êr@‹`½?î@52°?@_)@¢“³?kF"@6ض?þè@kx¸?Õ@ÊK»?ÃÜ"@ÿޱ?¬/(@­´?sî"@Í1¸?ù@Hs¹?i_@~Ó²?§Ä&@­Êµ?t!@ù¸?žë@°g³?|ú$@WO¶?bQ @]´?“#@Hf¶? K @Tô¶?»#@ø7¹? ¾ @vg¼?Jë%@’¿?ܨ&@jÀ?êß#@œÁ?az@®ÃÃ?6Ÿ@1ÇÄ?í€@íMÃ?Þ@™±Ã?iß@ lÃ?§ @ÚoÂ?­v@ÈãÂ?V@Œç¾?ïi@'|·?°Ç@ä9³?'Ú@ú%¯?šö@L¶´?ï ú??K»?9 ÷?™!Ç?Åß?$¨Ê?þnÑ?×jË?Ø.á?îîÅ?¸øã?)ÆÄ?Û÷?UÙÈ?îÈ@¸›È?õÜð? vÀ?¸9á?7¹?!ÒØ?q˜·?¾Jé?òk·?sø?çü¸?f^@ºÁ¸?‹ý?"d·?9æ?e{¹?ïà?¼y´?‰iØ?—ñ¯?Ô?çì¹?|øÞ?Û=Ç?LÑò?Ò?lž@¦]Ô?ÎAú?—$Ô? ûï?LæÑ?¶mü?SòË?fê@+ÙÁ?ë… @¨Ô½?UJ @+T¾?°5@,V¿?QŽ @çϽ?± @O7½?¯¿ @'zÂ? @ÔÃ?)å@& Ã?^ì@‘{À?ŒI@Šr¾?/§@¾¸?M¢ @Eк? $!@íõ¼?ž{%@†¿?¾o+@æhÀ?õ(@à Á?=â%@AÊÄ?š@é{Æ?+é@îÄÆ?ã½@[”Â? 3@lœÁ?¥Œ@a°Á?&í@u¤¾?RÄ@Ú¼?Ä@`¹?¢1@P”µ?<‹@R’°?Qmí?|¦²?¯Ü?ãrÀ?6 Ý?w‚Ç?Í?çíÉ?nÇ?DÌÅ?aeÓ?⨾?£Né?2eÅ?kü÷?/É?Þ´ô?N†Ç?èöé?š×Ã?G*ê?øÔ¿?óã?´º?W5ë?K|¸?¹ ö?¦Fº?§Ã@Ôl¹?ø¦@­7¹?60ô?¡¸?`Þî?ë ´?Äð?}J²?‘Nã?ú·?–²ï?ŠÂ?%Uö?ÄÌ?[@îÓ?Ðd÷?xÄÒ?ïì?>Ï?b—ò?Ì Ç?‰­ö?ƒ`À?7 @´¡»?µ@båº?”›@„¹?|Ž@Ƨ¸?Ë× @ÞDº? ¢@ñ¹½?fÐ @K˜¿?ÁÍ@‰âÀ?7B@o{À?D!@'+¾?ë,@«Q¼?é`&@òe½?jß(@Ò,¿?³Â+@Æð¿?×x(@Á?ƒZ(@.‰Ã?6ë$@!Å?2¡@’RÆ?ûÄ@Õ"Ç?øç @:À?IÆ@z_¿?`{@miÀ?ö @j”¼?ÒI@$â·?´ìú?ß­µ?×}ï?J´?DãÝ?qH¸?‚Ï?ÛòÃ?™¾?°íÉ?iÐÅ?ÙÈÌ?‘·Î?{<Â? 1Ô?ÆfÀ?w‡ç?nÄ?í.ø?·Å?+‰ô?ÙäÀ?ì?Ô~Á?œ]ç?fæÂ?ð›á?~ùÀ?Ùxæ?°¼?Ïñ?ð0¼?Jný?'}½?¡óû?ÚÁ»?2—ï?µÍ¸?)ì?¼Åµ?û‡ë?(‰µ?(ä?]x¹?Zèã?ºd¿?Šé?ûÉ?S”í?:†Ñ?C9ó?·qÏ?~ãí?ŠÔÉ?Õî?©©Ä?QÑì?'¿?Lñ?°»?²ö?â»?È ú?â¸?0º@èS¸?I @\¸?’H @“H»?,·@%¾?“¨@ôǼ?4ô@gx¿?µÑ@Z/¾?£@„L¾?gÔ+@ 9¾?*·-@ÚŒ¾?2)@Í%¿?÷Õ(@+Â?’(@åÑÃ?V®@õÔÆ?¬ö@^Æ?\@ÌèÅ?+ @ÖÀ?$n@9¡½?K[ @Fl¼?¿¿ @žþ¶?ëò@#µµ?Êñ?.¨µ?Éhâ?®2º?©#Ã?p‹È?|U³?NÌ?pÉ?’ºÉ?DÆÉ?‘f¾?Ì÷Ò?ó Á?lòç?\Å?m˜ñ?!н?Žê?jº?ÄÞå?Ô«¸?Æ„æ?%ä»?®<è?Â?'öì?i=Ç?W|õ?Å`Ã?t@’w¾?S¦ø?:éÀ?´ ï?Q©¼?ç#æ?Ùö¼?O–Ö?S“»?×?ỿ?öÐÙ?Q`Ê?b¸Û?z¶Ì?¨ä?^Ï?¿äê?#ÓÎ?¶êï??9Å?ërñ?ײ¿?fí?¬C¼?¬mó?V»?x¡ô?ŒÝ»?âvü?×¼?×!@V»?ÐÐ @w¹?h’@×¹?«@õ½?M; @®ï½?3 @Ió¼?a@ ¾?è±@q ¾?X 2@V,¾? !3@d‚¿?+/@t¿?:%)@6ËÂ?›£#@Ù>Ã?ݹ@0Å?r@ÇJÆ?°s@{»Á?Cj@…r½?¸S@ô©º?¬T@Xå·?ø¾@gÞµ?õ_ý?ãô·?Ñðî?¶K¾?à°Ë?Ç?!·?ùÊ?#ñÃ?hÑÅ?·ËÎ?7¼?î¼Î?¹ºÃ?cà? ÞÆ?ØQá?UÀ»?ó_á?¹?^ˆã?<¤·?µ…ê?œC½?8,ñ?›¡Á?Ûªù?5>Ã?œ@È/Ä?p@®`Ä?í @(„¿? î?õ ¼?Úìß?šQ¿?›ÄÐ?ZãÂ?šVÄ?Œ”Ã?–Ë?sÐÉ?iÞ?ÓtÍ?·Öç?ý Ï?äDê?&@Ê?flð?ñbÅ?Y\ö?B£¾?þ#ø?n¶?§Ñó?œ\´?%&ø?u;¶?h©@pS¸?&„@¬¹?¸a @¦õ¹?ˆ‡ @ͼ?Á@žŒ½?%ë@°¿?D„@ò¢¾?Ú`@ÅR½?µ™@i3¾?L6@Éο?&23@½ŽÀ?ŽH+@;rÁ?j'@n’Â?õ"@á$Ä?†- @¤$Ä?ïÒ@ÂlÅ?8„@€}À?:›@I<½?β@å»·? £@¾†µ?V–@ý÷¶?½î?{½?—“Û?„¤Æ?õË?çÇ?pÁÉ?ÒÅ?Ù?¿ò¾?[ÞÏ?ìÐÂ?ëgÚ?“–Å?Åæ?‡¹¿?öÅá?@x¸?phê? ½»?}ø?¡ÚÃ?„y@&Æ?ø.@mãÇ?Zœ @I|Ç?Yy @ÛtÀ?_Â@ŒÛ¾?Æù?AÕÁ?kä?ámÄ?•Î?µ È?òÉ?¦uÍ?.Ã?*Ï?’­Ó?âŒÌ?M±â?6ùÌ?ú£î?ÒîÇ? ›í?GÃ?ÓBþ?ª3¿?)"ÿ?rŒ¶?Hëý?+ ²?â û?¡£³?`{ý?˜›µ?x@Ze·?H† @d^¹?³ @U»?=Q @ĺ¿?Å@]G¾?ÿ´@$¿?ê@ºp¼?Ï@á"½?6h3@>xÀ?êþ+@g:Á?óe%@Ä›À?åˆ@îZ¿?‡b@:Á?¶ @Â?7°@•àÀ?Û—@.”À?Ø0 @âE¼?–á@.½¹?ë‚@–%À?…Ìú?\ÝÄ? Ø?òHÆ?s Î?èûÇ?‰jÍ?`Â?wDÐ?†­Â?EüÓ?KÄ?¢LÚ?Í4À?Kß?S¸¾?"ðã?'«»?f‡ñ?¸W¾?X:@-RÃ?àñ@ \Ç?ä!@7’È?­ @þÇ?:‘@}fÂ?2ÿ?uZ¼?‡´ì?ÍØ½?j³å?Y˜Â?TlØ?„<Æ?ÔŸÌ?„~Ð?¸7Ë?9ÄÍ?:ÞË?ZÇ?<Þ?\È?Mrè?2½È?éó?“ßÂ?#w@rο?D}@È‹º?4ª@Îd·?‘Áþ?ýÓµ?˜E@¿Vµ?=Ï@ª¸?‰ @@¹?„¡@r5»?Vf @ê­¾?º@)À?fÛ@Gf¿?þµ@¢b½?é@GÀ¿?X{,@±Á?Ý(@¢Â?ÿ% @;à¿?‚@»À?€•@ï_À?õ"@îy¿?ð˜@-¬¿?¨@§$Â?* @a[À?9´@¸¸Ã?’Iö?í¾Ç?0áá?qUË?fÒ?ÇCË?c;Û?ŠcÅ?«^Õ?…äÃ?çìÊ?åX¿?]IÌ?W½?ÈrÍ?%P½?9HÔ?¤À?Ù5æ?û Ã?ÆYû?§^Æ?…Ì@ÙðÉ?í5 @üxÊ?Üq@”›É?‡} @ãÂ?¤¼@ö§¾?2ˆð? ¾?Éç?§c½?»"Ö?bkÄ?hoÃ?¯êË?1¼?¯Ê? âÊ?5SÅ?+ö×?V;Æ?´è?6ÏÄ?D‹ù?›HÃ?ïPú?½‘Á?è×@&{¿?‚jû?‡ý»?+¿÷?R9¹?vF@BǸ?£@jj·?f@M0¸?¬ñ@›º?sR @ƒm»?î_ @³Ÿ½?ëå@æÀ?ò©@}¼?¹„@yÀÄ?¸@à Å?_È@¨…Ã?3v@5ÑÂ?%²@÷0Ã?¾3@,xÁ?¹F@FIÀ?al @©oÁ?üH@¤iÃ?˜…ù?D‘Å?Ç'è?µ9Ç?çÞ?ñ Æ?¥Ð?ܰÆ?“Î?Å?dÞÉ?ô!Å?2€É?€x¾?¨ïÀ?¡u¿?£åÌ?Kܽ?Â`Ñ?s¿?ØFè?d^Ã?2þ?À0Æ?[æ@µÈ?8ò @!'Ê?È$ @³ÊÈ?Z„ @^ÃÅ?“@ZÃ?JZó?Æ"Á?Ú·é?,à½?)äÜ?v#¿?Ä'Ñ?•Ç?ŽÔÈ?–Ï?H]Ð?&gË?Þ—â?áóÃ?þðñ?z2Ã?gc@[Ä?Öê@{tÁ?f^@l¿?ŸVú?‘7¿?úö?ÿT¾?N¯ú?¿½?„Œö?\ñ¹? @9’·?å@ ‰·?nE @.º?AÄ@ûr½?äG@š¾?šü@—Dº?Q@ç¤Ë?eH@_;Ê?„ @ jÈ?wa@½ýÆ?4ª@Ä?Ö6 @k Å?åü @Ñ`Ç?†@"âÄ?N¼ù?âDÆ?ÕðÞ?È?^MÈ?ÏÅ?”UÃ?ÿhÇ?\Â?± Ç?±Â?Ä?°9¿?¼Å?èÈ?„S¾?f’Ô?¦Á?ßÊÖ?èyÃ?zší? zÆ?bÊ@möÆ?`,@U•È?} @+;Ì?)„@cýÊ?†Ö @(Ç?p @‘[Â?ÐÅ@´mÀ?Ãüø?¼¨Â?Qæã?ÉÂ?íÌ?ójÃ?T«¾?ê'Ë?QRÇ?ÒÇ?ÖW×?Á?k'ë?)Ö¾?6@o Á?n@¥ªÀ?DT@€I¿?|)ý?Ý9Â?Põ?­ÔÄ?©Žø?#í¾?’Lü?I¹?Ìuý?aß¶?ª@|M¶?ü @*)·?3 @'µ»?´®@[W½?þÛ@ɹº?]+@vÌ?–k @=PÍ?Äw@qúÌ?¶H@µË??¸@É?…Øþ?îãÌ?)áø?i‰Ì?¾Êë?ßáË?Z~ã?ùÉ?k5Ï?«fÆ?Æ/¼?ÿ Ä?:^±?ƒéÂ?{¯±?‘8Å?x£À?ÚÄ?¦sÊ?,!Å?®,Õ?_4Å?Cé?,È?L¡ô?KÞÆ?¬@®Ç?4 @}·È?ld@£™Ë?%@‰Ï?æ@ÐÌ?d&@"È?¨N @ñ‘Å?J“ÿ?j©Æ?P í?!jÄ?‚°×?àÓÃ?·À?>…Ê?'À? mÉ??¾Ú? OÁ?†ì?2ð½? ý?Ð~¿?”{ @usÁ?Ú²@XŸÁ?k!@y!Ä?ă÷?ÐpÁ?¡'ü? 7¾?4Öý?Cƒº?«@›œ·?‰\@(V´?Ìá @»“´?žD @(º?Íó @#½?èÂ@¾Ê»?Fó@ýMÏ?V6@+ÆÍ?‘´þ?ÕÁË?«‹ó?ŒÎ?,ò?š¶Ì?‚Ôå?¦tÊ?›®Ö?"èÉ?öÓ?«ŸÈ?ÒÈ?à2Å?Î<Â?hvÃ?m²?e“¼?«4±?°£¾?ñù·?(ÜÂ?²Õ?½ÛÈ?úAö?n]Ë?xš@¯Ì?B9 @×1Ì?QÑ@[wÊ?¿c@ãÞË?¿†@ ßÌ?Vƒ@äãÍ?@»@54Í?X.@þÆÈ?àò @j[È?Š@W¨Å?¶)ø?¦êÄ?»ôã?êÀ?–€É?Ë Æ?îÅ?¶uË?÷|Í?û4Ã?-Òì?¦:¹?zÿ?hó¹?Þ™ @m½?Ép @åi¾?ŸP@釽?Þ‰ü?Ú¿?k<ÿ?fo¿?ÅW@U£¼?ýQ@»a·?ö @rU´?‰A @ØØµ?°@q…¹?ˆ!@ų»?Ñ%@ýš»?Á"@uµÍ?§:ñ?J0Ë?äç?÷äÆ?ëPÛ?Ê? âÙ?ÎkÅ?G^Î?ØüÃ?D Á?¾eÁ?„ÅÃ?àÁ?ÂxÇ?–1À?¤À?“{¿?Ђ¿?âæÂ?·Î?v Ç?»ç?xüÉ?Ϥ@þÂÍ?m(@ï Ñ?i@µ[Ñ?¶²@÷AÏ?W@«hÍ?oƒ@šïÍ?a¸@ÆßÍ?«Ô@`Ë?ÞÒ@ÄÉ?ª1 @çòÉ?†ˆ@ÒÊ?wÿ?Ž,Å?cì?Ä?h=Ï?€_Æ?ÏÃ?¼¦Î?°êÏ?æÅ?xüØ?‘7¸?Êãù?ض?‘Ÿ@‚%º?| @¸¼?CH @UǼ?ôv@¥d½?´M@„j½?¥"@¸]»?w @LŸ?5@5…·?4@Q¹?éY@?l¹?¹…@¤¹?®C@»µ¼?ùE"@õHÄ?º¾è?c]Á?†Šá?JÔÂ?ðt×?"§Á?Q•Ô?7?¿?òÙÌ?-ç¾?BZÍ?LÅÀ?¢Ô? ¿?+CÐ?Sy¾?=k×?Á?)Ûß?˜$Å?â|ñ?‹¨Ê?¢’@®ÓÌ?Ù‰ @T›Í?K;@Þ™Ï?’²@ÑôÐ? [@èáÏ?pQ@y!Ï?ÇÛ@;GÎ?@¹'Ì?“ö@øoÇ?W @¦°È?Ájþ?7­É?n@Ò¾È?x9õ?yÇ?„já?|ÙÉ?¯#Ó?sXÎ?”Ö?3ƒÈ?ÅH×?,g»?½!à?#‡´? »þ?Ÿ´·?íµ@»›º?ÿÜ@åê½?×ó@˜ÞÀ?ˆ@¨¿?u¿@A#¼?Úš@©¼?d@6{º?è@…vº?r@Ž3¼?Û>@©p¼?¸Ò@8н?9ß!@TC½?Êó?Ú¿?Ð^ò?òÐÀ?"í?±¾?é?ê¾?çä?’Â?4zì?ÐJÄ?íàà?¿?7úÝ? ˜¾?b_à?3Â?ë?!Ç?qEû?Æ?Ê?DØ@Ë[Ë?ÂÝ@ÉÍ?í1@y>Ï?› @#uÑ?0@muÏ?2Û@…ìÍ?¤7@?Ì?–C@ƒ¶É?b@Û`Ê?4´ÿ? úÊ?sû?è¤É?j…ð?(gÊ?iå?BÄÌ?‡Œá?j¦Î?ÌÝ?E†Í?k]á?$Ã?1ÈÞ?Ìh¸?=Èø?}¥·?Sl@Á'»?¿ª@èa½?Cõþ?ìYÁ?TZ@XðÃ?¢Ò@JÀ?`‘@Ôi½?‡x@]óº?zº@÷€º?}¿@7í½?Ö¾@{ð¾?K @4À?Ðj@°À?À)@ÈÚÂ?Û%þ?ܪÁ?‰ ý?~.Â?Ù½ø? ËÄ?^¢ý?ŒÞÃ?dÿ?™PÂ?U5ñ?~žÀ?h¢ä?VqÄ?uíã?ÔÕÄ?ùë?QÈ?‡dò?­ÎÉ?Dõý?áXË?¼@ŽÔÍ?>ö@dûÏ?wñ@ƒPÏ?íK@‘°Ì?3@¶rÊ??@NþÇ?Žs@ÎïÈ?‘Hþ?€É?mó?\¸È?xŒá?«É?Üžã?÷ŠÍ?Èeé?õ¶Ï?§Læ?ëÐ?·8Ù?X=É?^àâ?Tþ½?â²÷?bâ¸?'§ @9e»?¸Ç@‹r¾?´ì@£ºÂ?1ñ@rÔÃ?(°@‹†Á?Qã @¡Ñ¿?_.@çI½?A¿@Õþ¼?³Ñ@æ—¿?ÔC@ ÞÁ?ª®@}5Á?DØ@•EÂ?+Ä@AdÄ?PŸ@·zÂ?Ub@¥Æ?ž.þ?ØŠÆ?A@RÅ?!bù?7ó¿?·ùì?çzÀ?ç~ß?GOÄ?~JÚ?ª#Æ?¡™ä?X¡È?÷ºõ?Á¼Ê?°@àÌ?…K @ sÏ?zí@ fÏ?vj@GÈË?zŸ@ËÉ? @{Ç?¨,@ö"Æ?ÖÜ@ØeÇ? fí?ÛÆ?ïÛ?Õ„À?B›Ñ? Å?´NÖ?µÍ?ÎÙ?:•Ñ?QøÚ?ôË?›à?ÉbÅ?ÝÊò?Ýݽ?¤@µO»?>@io¾?§l @n}Á?àA@Á/Ã??Z@9Ã?w @“­Á?*s@ËÙÀ?É‚@fïÀ?çi@ÈXÀ?T;@iŠÁ?žÐ@ÉžÁ?b%@K+Ã?ìÿ@m¦Ä?ÎÙ@Å?É@ù¼Å?ëå@GGÆ?´\ü?¡žÅ?ÐŽé?/ÖÄ?jêà?§ŽÄ?HgÚ?åÃ?çÙÝ?q¡Æ?Óì?ÐË?¿“@jãÎ?Ä @ѯÑ?Mk@·›Ð?F@LƒÍ? y@¸RË?8W @ÚÈ?@eÇ?ê ö? éÃ?x ê?×­Á?A¦Ú?Û{»?GÄ?ûuº?„’²?M>Æ?šú«?îzÉ?ëA·?,ŒÉ? Ó?‘NÂ?xÊæ?ªÂ?Fé@Ø\¿?i@à‡À?c# @Ç]À?†@Lò¾?O¸@„CÂ?T@B)Ä?äÏ @þÅÁ?Æ@ Á?JM @à‡¿?Žg @™¾?É" @§½?…n@|ÕÁ?I@÷À?†;@=À?i @9%Â?e@x·Ã?Õó?oÀ?^–æ?­:Â?,Ý?ð¡À?8Ý?À<Ã?êqì?æÇ?Ùå@ÃyÎ?Q;@Ó?9I@eòÑ?É«@“LÎ?‘©@AøÊ?òH @²É?KL@õNÉ?’òþ?Œ½Æ?Îë?£ºÂ?ŸÕ?Iº?¾ŒÅ?d1Á?¬Ã²?=Ç? ל?VÉ?g„¦?ÁÂÉ?Çàº?­À?À/á?Gí½?‹Íô?| À?Êòû?wbÁ?„@ÛÀ?nÞ@°yÀ?®5@Ý9Ã?¯@ Â?¤Y @÷½À?ló @©„¿?ÛÉ@æI½?®ä@¨Ÿ»?h @þ©»?Çb@B¾?éÏ @{¶½?Mš@N%¾?’Ý@B’¿?öù?u¿?Ìñò?ž|¿?%9ê?rü¿?|Êæ?Í’Á?ÞKð?ÂÅ?š%@¦´Ç?œ´ @*ºÏ?=Ó@§BÓ?Dö@PÐ?du@Ì›Ë?YW @5äÇ?b†@©¹Ç?%øö?…AÈ?—'æ?!Ä?‹Ò?î,Á?Ï{Â?&®Ì?[¼?ÆßÊ?I&´?+—Ã?Øà¬?ê{¼?­.Á?±1»?(ªÛ?ÏRº?ð¨ë?Ô|¾?¬Mö?·óÁ?“@$ªÁ?J©@!Â?‚Ÿ@%Ã?€" @†¡Á?æº @wÍ¿?E, @{á½?B @Qu¼?õ @sÖ¼?8½ @&>¼?¼Ë @¸Sº?¿V @ç»?Ê@L‰¼?f@G„½?Dã@• ¾?@s@Æß¾?í2ÿ?mÀ?|¤ý?ŒÇÂ?ü×þ?â´Æ?–%@1rÇ?ü•@¼öÍ?sJ@ÌèÏ?ø~@&Í?²@GãÈ?¯Ž@ÝhÇ?U|õ?‰TÇ?­Zé?[ÇÂ?NYÙ?2­Æ?\˜Æ?WcÎ?„CÄ?âXÆ?‰G½? ßÀ?0áÆ?%q½?_×?£À?ºÍä?h¿?= ñ?Ùo¿?çc@ȈÀ?š¾@pîÄ?m®@«ªÅ?.c@Å?í¸ @RÁ?÷@ d¾??@ÎX¼?m%@í:¼?$›@®»?’@@.©½?©" @=·?ÿž @Q2»?pñ@ŸÍ½?‰7@6ï¾?Ë @Â*À?„Y @ý Á?ÛO @vcÀ?ˆ;@O•Â?+i@Á’Ä?êâ @žÆ?TC@ÜÉ?ı@6¬Ë?wø @ôºÉ?ú5@ Æ?mOö?zÂÆ?VDç?íÊ?¬,Ø?¬ïÐ?}{Ê?ñyÔ?.äÍ?¨Ê?)LÓ?4Â?¬Fã?ÑoÁ?óåî?óÕ¿?Ý*û?Ñ|¿?šü? @]-À?Iœ @ÈË·?Z†@t ¼?‘³@2º?wP@G§¾?9í@î„À?n@¾„Ã?ª¥@rÈÂ?šÖ@j9Å?¾U@¨Ç?®@o?Æ?Dx@ùÇ?ã® @ñ1Ë?^·û?í Ñ?ß×?Þ£Ñ? Ó?ÂÐ?ìØ?|:É?âýñ?4Å?¹@¡ÙÄ?‘@ÇçÃ?{ÿ@’$Â?p @n^Ã?4! @RSÅ?Ì"@©nÆ?„-@VºÅ?Ü@ÛáÅ?Æ @ŸWÃ?ÃA@×Â?Lò@êAÂ?UÔ@Ñ“À?š"@6®¾?W@ç¼À?yÐ@õ˜À?ÂØ@Z¶¶?Ï\@Km¸?ºt@å¼?à@š¾?Kó @n‰Á?æ%@£¸Ã?7c#@n’Å?û> @Õ«Æ? ð @)XÈ?¿@"Ê?†Ê@Î?ë@ ÉÑ?í?Þ'Ó?=è?¢„È?0Nõ?iŠÃ?Õk@“Â?¡Ÿ@ÀÄ?1L@ÇÂÃ?hC@ØNÅ?-@îÄ?ø@ÌÄ?¼@}€Ã?W„@ÿ*Â?lV@tvÂ?½¯@Û¹Á?*º@`;Â?„l@]œÀ?Þ¹@ÅÁ?+†@7 À?…À@yåÂ?v…@õÇÁ?®K@‚r³?Tb!@ ƒ·?OÀ@­’¼?“”@ØÁ?lÍ#@—ÝÁ?J6(@hÄ?ª>&@J‘Æ?ÿ @ßãÈ?Ë]@µiÍ?Ø<@¥ºÑ?iâ@јÒ?¶@DZÌ?+b@*Ä?'™ @‹q¿??x@tÀ?šH!@¤Á?D®&@1‰Â?Å$@•Ã?+³ @¤æÁ?Þ@LÀÁ?|#@a–À?qE@aŠÀ?1P@çå¿?+'@ DÀ?·Ð@ójÀ?z%@óÅÀ??2@ÒçÀ??_@<ûÀ?Õ¥@é0Á?²c@¡À?d@&C°?J'@5¥´?žE!@Ä·¹?t«#@‹*¾?S›%@ï@Ã?fE'@W'Æ?`Ñ#@ÑÄÊ?Åü@rÒÍ?l»@âàÏ?Z @BiÍ?KB @Ø?É?­ž@±)Å?. @öTÀ? %#@\¾?An-@•À? {4@ÛÀ?à$7@¢¿?&@0@í¾?5)@çȽ?Ç$@J4¿?‘\"@aY¿?«;!@á·¿?ë:@œ•À?÷—@€îÀ?Ķ@ž©Á?69@[£Á?¼@àÂ?T@ŒŸÀ?Ÿ‹@ƒ¿?ë†@ ±?W@6Wº?žm@ ÿ¸?¨Í@o¢°?E©7@Ú*²?§1@ï)µ?›€+@0×¶? Ô*@°¦¸? -@öº?ƒ.@÷Aº?+Z1@&ܹ?ÏF0@Ã4¹?ÊÌ0@fK¸?>J/@Ìž·?~Ç,@ˆÆ¸?Fƒ,@¢¾¹?Õ~,@ÐϹ?þˆ+@´Nº? Ù*@Û†¹?k+@ä¹?4û)@p4º?é$@g»?’m#@AÆ»?ø*$@»?Þ“$@™º?w“@¡º? p@ é¸?ò—!@¹j¸?¸™"@8k·?s!@-×°? ‘:@ÍJ²?Õ5@ç³?-~5@²0¶?ò9@šv·?ë”>@š»·?§­>@Û·?}{=@÷?Ôw8@ˆõ·?’D6@M&¸?Þý1@ⱸ?Ow3@{à·?ÉR5@r¬·?s’3@Í8·?°0@‰÷¶?Þ{2@Šö¶?õÀ2@UB¶?&0@U·?æw.@§&¸?®.@áJ¸?½b+@°T·?½b'@¸ù·?+¼(@ÀÄ·?…ê(@Ÿ]·?—n&@³ü¶?ø¢"@»p³?àš?@4´?ðn?@@–µ?'YB@¾·?t8H@žÊ·?MÛH@¥7·?[F@ó{·?ôÕA@Î=¸?RD>@nD¸?‰õ=@j¸?V!<@X·?Mu=@¥¶?:k>@•B·?¦K<@‹©·?ÊM;@5Æ·?í‚:@Í·?­Þ;@8Û·?d8@hº·?„Ü4@ô»·?d‡3@M¡·?4@| ¸?X05@^Þ·?Áž1@f&¸?†,,@dð·?ï/'@1ã´?ZžB@ ðµ?]@Ô¸?üà;@¥¸?žo9@€·?˜9@¬·?D)3@Äà·?bÊ/@¸?'@É)µ?•‘K@Gµ?_VN@d7¶?ûƒO@Ÿ¶?A%N@J¶?ÞbP@Ý·¶?þK@˜L·?I©I@ u·?cfG@Ûg·?wÚG@ñ(·?³I@å9·?ìL@A¥·?ë_H@a°¸?EßD@³†¸?~VB@àœ¸?Y+A@œo¹?>>@ØÍ¸?íŒ:@[‹·?£`7@À<·?Æ/5@_j·?ª 0@ô·?<*@z·?œ%@ª´?gÑQ@ýÆ´?ÎýU@'ªµ?˜œU@ãµ?V@$4¶?GsS@ L¶?ØQ@ÈÓµ?2M@d¶?ôXM@1ܵ?BFN@½S¶?Ö=M@:ÿµ?QIK@Ù#¶?šMI@ðÕ¶?¦D@YT·?@@¢Ô¸??I:@¸›¹?/µ6@‘R¸?6@®å·?fì1@Ÿ%·?ù¤-@Ðȶ?½)@«µ?cë&@ f³?‚Y@{´?<ÄY@¢¸´?ê>W@dŸ´?bHV@NÖ´?p¸S@Ñj´?XãP@âà³? ßK@Á¯³?möJ@•ö³?¥½L@é@´?ݦL@sæ´?¸|I@Oµ?0lE@õµ?Ÿ¿?@tݶ? 8@ÁÓ¸?Òd5@ë(¸?„l1@!`¸?C¼.@ÇP·?H¯-@n\¶?8-@üš´?ú…*@&"³?ÃlV@Ög²?WîS@µ²±?$ñR@2F±?v®Q@*Û°?ÈN@‹…±?FDG@4é±?¸aC@…±?vÆC@©±?@ÞE@„±?DéE@ ²?c A@’¿³?–»=@H)µ?Ó;@‹Þµ?Žÿ7@KW·?¡O0@BÝ·?‰@,@»¶?w0-@*Fµ?Ôæ.@¬Œ´?%W/@c|´?Ó‰I@¢w²?0YK@òœ±?¦ƒJ@*¯°?;›H@?û¯?ÊD@Rž¯?WØ=@új¯?F˜;@ÿ®?¤{=@¨Ì®?ëü=@°Q¯?I)<@v±?,¿9@ËN²?ýÇ9@쟳?x­9@ûs´?îw6@"pµ?n1@.õµ?HQ0@oqµ?—R0@ ³µ? H3@fµ?»ø=@H´?Í@@b´?Ò@@³?25;@Þm±?,n6@ñÀ¯?É 4@Kf®?è4@Åg­?=Õ4@xó­?·ö3@òv¯?1t0@|¯?(3@²±°?¾å4@àc²?:96@Ô9³?@·4@6ų?_t4@ñ¿³?õ3@|Œµ?f1.@è µ?¸:@POµ?ÞI7@´?éG6@ ´?dg2@Ï­³?</@àŠ²?q,@í…±?,y-@†~±?=û,@‚±?^/-@ì`±?^W.@\š°?öN.@yó°?ÃB1@¿:²?W¹1@…²?Úð3@¥0²?w6@œ°²?#â4@/ž³?=@ò#²?x[=@äB±?%)=@Õ•°?ø >@»±?Rå8@Û±?²N3@T‰±?’å7@é{°?øñ;@߯?É):@Ôø±?À24@€3²?–r2@³Ø±?U¿2@‡m±?û6@^v°?*½;@Gë¯?½@@à´°?ÔÙF@$e¯?¢‰E@ì®?˜­H@mî®?›“H@ûE¯?H`E@{ ¯?9F@Í ®?SE@“+®?ˆõF@&­?WF@n±­?¾”A@ ©­?‡ÈB@[®­? A@žý¬?0ÍB@ü&­?ÀBB@a6°?®Y@I®?SÌY@(K­?¢:W@Tb¬?ÏžV@}<¬?•ØU@ÒJ­?ÃqU@#ï­?×WU@ù­?"ÕU@†®­?TGV@&Š­?€S@©­? YO@­?ygL@Û*¬?³×K@^å±?Ã/d@7s¯?¨âd@v­?ms`@ì—¬?àÍY@Q"¬?–”V@92¬?•^S@wv¬?ñQ@­?½R@9P­?=¥W@W¶­?-Y@â*­?ÍX@¾°¬?EýS@5Ų?»d@t_°?ñàj@DV®?=¾b@tÖ«?›×V@žŸª?AçM@"«?£ÞH@“4¬?AG@“™¬?‘{I@®º¬?SXM@›i¬?ÑMM@Uš«?èCK@®=³?Öb@IÕ¯?kKi@ñð­?Ø“b@õ1¬?¡ZU@ݬ?(°L@Jp¬?¥*D@5¢¬?¥'>@†Z¬?'m<@b@¬?ï‘<@냫?B²:@«ë²?ÐÉ^@ú!¯?Füe@j®­?¡`@ ì?ŸáW@=>­?·fL@‰­?sÔA@ãô¬?¼¹:@We¬?m5@=í«?ü1@޲?ód^@üh¯?c¿_@CÊ­?õ&Y@nù¬?4ªS@•»­?òÉL@=õ­?›}B@>Û­?”C7@¿R­?ø$1@€±?Ü™\@ÏЮ?ÐÖZ@`¡­?ÇR@ôɬ?ž%M@ô©­?PÈH@«¦®?ŽCA@¬<®?Ÿ¸8@[¶¯?zWZ@dË®?k(W@Û®?wXN@l!­?(™E@=S®?åRA@Ì®?5®@@Ò§®?«íY@s|®?ǰR@.m®?–‚H@®`®?bKB@ç¹­? dA@7¤®?+`Z@œ~®?^òN@†\®?,E@ôe­?%C@Ô`­?dS@ÇÔ¬?âËF@nº«?ûD@€E¬?‰[N@È–«?Ä D@R®ª?›5J@ 0?ui@ÒTŒ?¡Îh@¯@Š?|k@£8‰?šÝt@I‰?‡€@Ô‰?Ö†„@`Š?½„@¹¦‹?ç„@YÏŒ?p½ƒ@½Ž?µ?ƒ@¸?㈀@}©‘?«Í{@I¤‘?WP@Ý‘?ˆ€@¬Ÿ‘?]¯€@ËŽ‘?¸”{@G3’?Q/q@þ’?~Wi@¥ê“? §^@G4•?S$U@è>—?­‰J@ Eš?·†F@už?pó=@á1£?>c6@»§?,¬1@”«?¼ª-@µß®?¿œ,@3N±? +@K5²?ÿÃ(@Lf±?Z)@N‰¯?»ì,@Kp­?3@¬ª?ò<@õ¦?8xH@bŒ£? äP@YJ ?½Y@&Wœ?ÖiU@<™?wN@W˜?xA@L´—?ˆæ2@ªÄ–?ò¶%@Yo—?YÌ@d0š?ä@¶›?ªÈ@µÜ›?ÏH@®N?@tÜž?ÄS@c¡?²@&<¢?#y!@z—£?“2&@äæ?K|+@}=©?Z2@赬?¼b4@  ­?|è4@Ì•¯?Ê-@e’?+«t@Á·Ž?©tq@`uŒ?õ u@LA‹?ez@€‹?ð @’‹?y †@¹Œ?c‡@qÓ?… ˆ@?%?zʆ@w¾?A…@J‘?+P…@ÝБ? m†@hÿ‘?Ò ‡@j¢‘?Úø…@ûz‘?q@¾‘?Üv@d ’?M“k@, “?¬ƒa@–²”?… V@»ë–?­ºN@Ai™?!rI@ÿœ?ÑZ?@ ¡?üE5@I©¦?&x1@†W«? ¬,@=;®?¥-(@ /±??ã&@¨ä³?ì»%@¢Ð¶?¬Ó#@u(·?LÈ"@×¶?ÃG$@êµ?JÃ'@¿¬°?˜Þ-@ìn¬?¤y7@®;¨?ºá@@'Ï£?ûãJ@ ?ƒêN@”Eœ?à|R@{cš?veH@]5š?7;@ôÀ™?þŸ/@:qš?,ý$@’úœ?iC@å7?Ñ·@×ãž?`@¤ ?Ð…@¼å¡?H=@U £?rQ @äø¤?À#@™§?uÀ(@#ª?ºr0@é­? ð4@s®?¸m4@0®?@2@)=—?ʺ|@0±’?²·z@]Â?àƒ~@¦Ž? õ€@‘ËŽ? „@!?RÛˆ@½¦?.tŠ@ˆ²?‘¿‰@˜î‘?¥£‰@^(“?¦šŠ@íF”?uzŒ@QN”?ˆYŠ@O”?(†@d<“?J@a“?§yv@ “?8h@Џ”?lI^@[›–?öS@OT™?È>I@&½›?ÆÁA@ö Ÿ?°J:@›R£?ÐÝ3@ž/¨?-2@ìÌ­?ù^1@ÿ0¯?v\/@#H²?oå-@º]´?¡¢+@´àµ?· )@ô²·?Z'@j¹?º%@zï¸?læ'@t=¸?œx,@д?2@a¬°?Æû7@Å ¬? á<@{™§?+ÔF@„g£?ž4O@‡3 ?ØdR@Μ?S¨Q@”`œ?”ÁI@T7?xN?@??›–2@+-ž?Í¥%@™žŸ?V @Òá¡? Ú@pâ£?ZR @¿?¤?×}@–C¥?²‡$@¨?^f&@_²«?¯¶+@£­?™u4@r&®?¾Õ9@™‡®?5è4@´´œ?4~@¸“—?26@ M”?ja@WH“?³e…@˜•“?f‰@袓?ÑÖ@+”??@ŠÖ”?Š;Ž@«–?xUŽ@· ™?ñƒ@ ™?×ß‹@Bé—?fò…@i~—?â5}@ˆ…•?–pn@œE–?`_@*‰—?H³T@ÄDš?[°I@ð¼ž?ÔB@b!¢?éª=@³¤?ˆX<@¸ò©?ËÕ5@$ʬ?ô 8@&*¯?£9@Œ±?¯š8@ÝX³?ÑS8@¥µ?®)9@xã¶?3º8@îÖ¸?45@«lº?u±0@!»?Ïb-@· »?[+@ ó¹?%H-@î“·?E2@+.³?ër5@º“®?¬<8@wÙ©?“©>@¢3¥?kTF@ŠØ¡?ŠÇM@D, ?+)O@+Ξ?õ©Q@}kŸ?‘.N@ŽðŸ?ý.E@ªÿŸ? ‡;@Ø« ?Ï/@¤ ¢?RÔ(@cÁ¤?LC&@ Ŧ?g¥%@‡ô§?fÞ*@ Ѫ?'»/@¬?âü6@­?T­<@Zå­?9¬5@÷i¢?%}@eæœ?Õâ~@sƒ™?¶¾@`«˜?…"†@§@™?÷½Š@£7š?ëÍŒ@Í]›? ®@çŒ?Ù6Ž@sAŸ?Ü/Ž@ûS?IÁ‹@{Ë™?!_†@t–?A˜}@®“?¡xk@’À’?]ŒX@8Š’?cQP@Œˆ—?žUK@†aœ?ŸšL@™|¡?éÿP@俦?ýÜK@Lʬ?yñG@dð­?æB@£_®?™°?@Šý®?Y¢8@¬°?º(7@L ³?©7@Ù_µ?áØ7@W`¸?<4@Ø$º?ž.@ D¼?#Å(@¥¿?N "@…æÂ?E2@*=Ä?Àñ@>ãÁ?p8@!±¼?¬@À¶?a}$@2®?p"+@ñ¨?,‹3@(ñ£? T;@&¢?ž3C@u¯¡?CN@y¡?׉T@:¢?qáT@V-¢?1ÒQ@©„¢?iÝH@Ž>£?±¹@@B:¥?Fþ9@Vì¦?)±8@{Z©?o;@Àòª?üDC@89¬?/B@•ñ¬?r0:@Nâ¨?H‡v@ê.¥?4à@\)¤?.,ƒ@\¤?UQ„@âi¥?¬B…@Xa¦?"ï†@$1¦?’m‰@ ¥?\wŠ@m½¡?­!‰@}?cHƒ@7 ™?©v@Øå”?Åde@á{’? íZ@Ê@’?Ò—T@q0•?QS@iâ™?ø]@bF¡?k÷n@ü™£?,w@‰%¦?»u@¦Ð¨?f@d_¨?ÍNW@©?Q¥Q@³hª?I7K@㈪?çJ@8<«?àHJ@®­?ú'H@7\°?SúA@†u²?éh<@ù ¶?¸š3@,º?¤*@Pí¾?.‚@.JÆ?‚O@õ3Ì?àÔ @É=Í?¯Ä@êÈ??§ @Ô;¿? ô@×Ò¹?— @P2±?ÑŒ@)(©?‘n-@Q8¥?€´>@ ë£?\,O@@“£?„ÓW@jÞ£?f}\@ÇÚ£?¾Ù]@(ù¤?‘ó[@–4¦?½—V@@øß“?uF@(õ˜?^,W@›A›?·Xl@Sþ?™º@|¡?t±ˆ@Ðï£?Ãe†@½X¤? oƒ@‹ ¤?‚K~@.2¤?,s@²È£?üGo@­%¤?3ºj@;«¥?O±e@'ç§?9Ü_@Áªª?1¯Z@ ®?}WT@ ϱ?‰I@ÌMµ?ª=@…<¹?t§1@ú;?|3$@áŠÆ?@›[Ì?±ç @gŠÒ?¸Õù?ô<×?REè?Èe×?‘"ä?НÌ?Õò?æÀ?u@ûW¶?u/@.­?T¡)@Æ©?Gf8@“þ¦?°H@â¦?G_T@1§?»ÿ^@­w¨?S7c@KÁª? d@d¬?ÐÈb@°o­?ŸT@´9»?k v@ºÔ»? x@ÎV»?øÔx@Ý^¹?w@žz¶?ê5u@¼ñ±?2±r@ï¬?ó˜o@ŽŸ¤?Ñe@‰Ÿ?Þ|P@r¸œ?¿z9@·~”?íq)@¥bŽ?Å@! ‘?z(@t’?s¼+@Â;’?¸ùA@y—?Ñd[@„œ? Úu@ˆË?j ƒ@gŸ?~„@†0 ?ÞXƒ@üK¡?Ñà€@gÒ¡?¿ò~@ñí¡?¶Ž|@×£?üFt@Œ†¤?¤œl@ªw¦?,¹f@1ƨ?þa@˰«?ë[@SÔ®?ßKQ@/ë±?ZjF@;_´?K>@Pi·?2Õ4@ »?ÿ'+@Ó#À?O¬@`Æ??@]{Ë?Þ^ @TÔ?xú?ƒ±Ù?B¶ë?¢$Ù?Š9æ??Ñ?prë?eÅ?|sý?L¹?ÿ@€p¯?7å'@õoª? Ã;@[B©?уM@ï©? ùY@ƒ¬?zeb@ý®?#ß\@5—¿?þ t@ ¿?×9u@Vƾ?êát@`/½?bQr@Ų¹?Sµm@L@³?™Êf@úu«?QÌW@»¦?Þq@@Ûk¥? ¿&@ æœ?ôæ@²Æ˜?˜@°˜?h5û? º•?ëÆ@ؘ? ¥@ ”?)"@’A—?ûC@õÕ˜?u._@Hš?mÚp@îM›?;q|@v&œ? ¾@ø²œ?XQ‚@§”?7c€@hÅž?®áw@„s ?=…m@@Œ¢?ø)f@õ£? Uc@뙥?D?a@ݧ?¡Æ\@$Ä©?µW@µ˜«?Ú;O@J®?ûqH@9\°?=×A@ù&³?Ð 9@A ·?js0@=¼?s&@ÚøÀ?œä@3È?W)@±YÐ? Ü @ ÆÖ?8%ý?ÕÛ?Tþç?ê.Û?·FÛ?w«Î?î¥ó?° ¼?èâ@¾ñ¯?¢'@ªÛ«?Íë>@J¬?4ËM@§Â­?ËU@æNÀ?×úo@¨R¿?…Bo@–¾?ÄÒn@Ç…½?èn@Иº?¼”b@“ò¶?½[S@\ÿ¯?g£@@ª?‘˜'@ýfª?Î5@þT¢?Lµù?´ï?C:ä?0  ?t£Ó?f¸Ÿ?`ZÛ?„F—?ÎÖù?šÚ’?g(@¡è”?'â0@9Z—?ÌrK@‡—?G˜_@ã˜?{j@\˜?®¤o@6Ò˜?Óïr@k¡™?Çt@倚?8bp@ê«›?ªi@ùñœ?c@aVž?ý'a@ ?@r\@÷h¡?~X@è0£?ÇT@jQ¥?q\Q@3r§?âôM@Ƕ©?(H@¡ ­?À@@®°?‰7@Ìy´?øá*@Yè¹?y @€À?„ @¼ˆÆ?„Ð @|&Î?ÐM@àÖ?„0@ã›Ý?ñê?Ú¶Û?¹Pá?}YÍ?¹õ?‡s¹?{¶@‰œ±?iè/@7–¯?s5A@ÎüÁ?Dli@ö¾?Íl@—м?Ý l@…Ö¼?]i@Îþ»?—=X@§¹?›{@@S²?„U(@ã¯?k@ˆæ¨?©Æý?2wª? jè?$K ?+9Æ?÷^¦?{¥¿? ¦?ÇmÇ?3Ÿ?¯ß?¦–š?x•@zŸ•?¦Ð@ò{”?'0.@¡\“?S˜:@òÝ“?¼oE@!ú“?`{O@ñ§”?†XV@þ½•?hvY@%œ–?¨ZW@ÌC—?+êP@˜?HóK@ò¿˜?oŸH@ï­™?&åC@è›?«NC@ ?MÁC@f‘Ÿ?Ü>C@à¡?¬µB@ ñ£?aó?@òɦ?pó<@ת?ÜÓ6@6j®?À…*@ è²?Ñ*@3{¹?#9 @¶²À?÷õ@¨¶È?‹ãý?êLÑ?fOÿ?ë3Ú?;`ñ?æÀÝ?¥4Ü?”×?¶ á?¼È?ã¸@8ø¹?æs@­BÀ?¾f@k¿?¸°g@U³¼?âšh@¼º?‚šc@-¹?„ÃR@N2º?å4@½š»?lŸ@,¡¶?1@¹Ð¼?-vñ?àÚ°?¡RÝ?¯?1cÌ?æ+±?4±Ì?¢3­?¦Ì?rN©?—™Ü?Ùƒ ?*‘@Gg?ë_ @Äö™?³T@pÏ? õ@ýz’?''@Éû”?&‚8@D›“?Fƒ:@»=’?¸Ã;@ S“?™:@PÈ”?ÎE8@ôí“?±B6@fq”?J&4@üa•?î¹1@*À–?•¤1@Ôt˜?Ÿû0@Ízš?.1@™.œ?ÖØ.@û˜ž?a.@¶® ?ÃÅ0@[0¤?/@©?üP%@—p®?jt@€/³?Yt@º?6@JèÁ?‘Ýõ?;ZÌ?d6ó?ÙÕ?jÔõ?Ä©Ý?ätß?uËÜ?þHØ?·-Ò?ð?ðu¹?ÿi@xr¼?O`@Ít»?Œ\@µe¸?;\@Û@¶?ü0E@ëã·?êU&@b¦½?H¬@}¢¾?<í?i™¾?ÔÔ?)¸?+ÚÓ?™’¶?vNÖ?ãB°?ÂPÝ?oš©?­*Û?¾¬?§ë?.µ£?d‘÷?Èm¤??3@Ç›?Å@ @ªÆ•?67 @Òÿ•?§{@".’?¢@官?í.@w:œ? 7@fø—?ïÕ2@ç·’?©t)@X’?8.&@ȧ’?q¶$@i5“?tù"@]•?.©!@,–?óO@c,—? ¦@Øþ˜?·@|š?h- @O¤œ?Î$@Q³ ?Z !@F±¤?ç‹@õ;¨?Qý@#~¬?â°@vײ?D¦ @†K¼?rý?º È?š.ó?¬AÕ?£ªü?Ì=ä?ºò?Šèæ?«9ç?Óc¶?°mg@·î·?â4c@ÔǸ?+q]@[Áµ?³8X@uX°?ÅêA@ 2²?w«@“·?0îõ?5(»?<$Æ?Ù#Ë?h¸?¥Í?áx»?pË?´vÄ? ¸Ç?‰w×?5žÀ?9Äè?Èë±? Íù?Ó¬?YÝ @•J?b @žÏ?5Ò@/¢?"ø@ž¡?²¯@Õô–?Ъ@Y™?*@&<™?ñÝ'@ôð—?«¨%@É?Т@T?4Ã@zU‘?I@J”?ls@m•?Ë@á•?r\@o•?Õá@†¿•?Ë(@ªÙ˜?ü>@÷9›?*Ÿ@@Ÿ?m–@Ì“¡?„k@Ý­¤?Ôé@ðͨ?Ö@˜·¯?"b@Ùb·?Þr@¢ÁÆ?4@ŠÏ?Äî@Ï`Ö?ñôò?ßøµ?ºÆ]@:œ¶?$€a@B×·?<Å`@ fµ?ø9a@Ã{¯?½§J@ûÛ®?ÐÏ@O³?E&ó?îû?¬oË?ŸeÄ?{¢µ?B[Î?„á»?º/Ë?®ýÈ?âï¿?°`È?&ß½?J{è?¯Ò´?Wö? S¤?.^ @+!£?¥@^ŠŸ?óÙ@?qa@-Ø›?­„'@BK¥?•:9@Øœ?W«.@Ÿ?àV/@¡“”?s’!@3š?­ @wýž?:¥@Ó}Ž?V @}‘?W8@9h“?[Ñ @ €•?“ @ý®—?çÄ @uL•?· @;_—?¨ @ ¶™?Äb@_œ?D¾@ iŸ?®€@fR£?ù‚@Qe¦?Õg@ «?c @†¸¯?N˜ @-ܼ?y] @\ŽÄ?@ùT»?X L@ËU·?ÅQK@6‰¶?ËyW@g3¶?Ÿ¼l@<³?ÞLc@Ÿx°?î4@Fµ?À¨@£ ¿?bÙ?;½?G Ç?Â?KÖ?QѾ?RÚ? rº?ï8î?HÒ¬?¨¶ñ?¨ü­?lŸ@¶V¯?@¦©¬?’V#@A¨?Г)@Î3 ?U¦,@mº¨?ëÀ@@”ѧ?æ+G@™S§?›D@âݨ?G­D@á|«?å;E@yt¤?† 7@Xõ¡?–W'@4¿¦?š•$@£”?œÍ @§ü—?@Y “?xã@¤Å˜?åè@×û˜?¼A@ª™?l÷@dð–?ƒ@!?‰^@0Ÿ?sÙ@ûéŸ?+-@ÂV£?fP@œå¦?Ò³@úß®?‹S@c[·?[œ@òï¸?Õg-@‘@»?Ýç;@ª¹?u1F@në´?Ah@;o´?ÊRv@¨Ö´?g\^@ÅCº?|y4@FiÀ?g@SzÁ?“@wtÉ?àC@%²¹?äö@µ?‡l @^²?5ñ@â|®?±&@G.¬?£-@ñ´?âV8@õ®µ?z£>@Ê®?€A=@{%³?s|Q@/e²?}}U@—* ?]+@¼ ?‘@)û?v.@„ê—?¦µý?…X?ÜÑ@?ù@¾?¶ÿ@òÇž?‹N@b¡?Ñ@F3§?ï~@Ÿ®?f0@ðë¿?ã`$@ó»»?E@©£¹?)o+@!I´?k~T@¿³?®¶s@Ȳ?«¥~@¯ ·?”™b@-IÀ?qJ>@IlÉ?Ž\-@ARÀ?oh @ G¶?Þ.@›‡±?QÈ&@µàª?/-@{k®?;i?@ˆ±?!¡O@Y¸?Us[@9á­?VxM@Nfª?ÒP@X µ?]ü\@^Q¤?Ûì@Kè®?¸z@ê6«?Œ @j[¤?–ë@’Ê ?sä@›2 ?®1@ – ?Ü@܆ ?b%@,W§?ît@&ñÇ?¼@êÅÈ?†v @í-¿?¤7 @¾A¶?ær@@,Þ²?uxb@¥;±?Ÿyx@4@¶?»&@R½?¬h@hD¿?–?@M†Â?·Ž.@K1½?r"&@oP¹?•œ7@Ÿ3®?>:?@m‚±?~&]@*¯?ÖÊg@2ú«?ol@ÛÁ«?9Zj@££°?@ñp@ÿϹ?²@ñU¿?‚Ú@…½?|,@G¤?ï@Ä¥?áÑ @{ž?ù @8l¡?ß @‹Í?e @RÑ?½½@'Ë?x@|9½?(91@fŠ»?sM\@¼³?³Êg@“K¹?Vî|@öº? N|@ ÝÂ?Îye@7^Ê?k@@íÃ?Éæ#@6c¿?1z-@óP©?*=@Ù]­?Âè`@|’¸?Ã…@žý°?z|@Jº¬?2y@ÓŶ?IN„@í™´? "ƒ@>ý¹?ÎU†@©À?‘Õ‡@’Â?Ɇ@ÿ?eF$@ãĤ?Ð@ßÉ?$Ç @ åÖ?š)@WsØ?Ã2@ÌàÍ?´°,@À=Î?ì=U@œ À?ÖgX@X?µ?Þ`\@öçÈ?©€@|ÉÃ?vWq@b»Õ?ö-Y@ûÇ?¸e“@d‚Á?efŽ@F{Â?Z,@[¯Ô?ÚAú?ÁèÚ?- @›×?r0$@ß?!lI@œº?«B@ñ©Ð?¤ü?hˆÚ?>@×?ì?#Ï*@%ïî?rSA@_5´?m@²ªÅ??[î?²ñÛ?ÎV @R_ú?¢'@ P°?OX@òúÀ?Q£ç?lÑÑ?Õk@2õ?:ä @¿®?•@0ߺ?fcå?²œÒ?nó? G@†-&@Þ­?¶s@NË·?Råæ?ŽÊ?Né?¾Lú?G*@.X®?á@@·?=bí?#ìÆ?äã?ŸÀ­?°¥(@/¶?ºó?ô"¾?ûÄ×?Ï«?ç˜2@iŽ·?ù?Ê\»?6Ö?Bž¦?C@^b¸?o7þ?y¼¼?Ø?,w£?€M@õÊ´?w+@Ïâ¹?,ÓÚ?÷Ï¡?-'W@ÆG²?]M @l‹½?ˆÞ?±ž¡?`;\@êN°?x¦ @¼¿?ßóå?’ £?OV@œG°?¬· @ØÇ?*ní?DѤ?ÿM@Þƒ¯?ø… @CÀ¼?…ÿæ?ŸY¥?•²N@ º®?Ј@&À?/Sð?G ¥?B2M@­²°?U@¿ÉÏ?ùt@†œ¤?ZÔP@¹o®?Â1+@QZÒ?‚@8£?–UV@ýŸª?^í9@júÈ?d¤@í ?7,^@ ¬?uŸM@›çÇ?å|)@Ë¿?–º^@Ï™§?ÏtR@¾Í?‘rA@Ú°›?X+_@便?ÌPX@!ÐÈ?Æ·H@ìš?ò_@m£?ñt]@ó7Ë?’†R@’œ?">c@û¨?Käg@|÷Ñ?žJQ@K?-c@'c­?5b@@@›?¢É\@zÂ?§2t@¦`ª?pÞh@xnµ?œdj@”øœ?/>J@’|?ÑhJ@l?žøL@Ÿ?zM@€ç›?BžK@hš?½ö@@Àš?’C@G ™?éIH@ ™?ëkL@Ù?­I@ÁZ˜? G@‹|˜?Ð$M@yÝ™?êæI@E™™?à D@ñE˜?~E;@\Q˜?GQ5@Î-˜?¨a6@R:˜?ï[6@ %™?ëe7@Æ™?’l5@Ú˜?x1@´'—?¸1@hñ–?a/@}—?)N-@«—?ä,@ÝÝ–?ÞE,@bv–?Ûâ+@ØÝ–?Û/@’;™?- 7@Ãò™?+A7@g{š?,Á.@Àn™?¾,@{&˜?kÙ%@—î—?a$@ìs˜?—Î&@ðù˜?Ò/&@×Õ˜?¦™&@29˜? ‘(@³™?³É,@Y´™?ä>0@9Û™?ó³/@”Òš?p52@„ך?1 /@°Iš?‰ß)@uê™?S(@½ß™?åý&@«æ™?¿--@Vš?=Z-@ýÇš?øÃ,@fœ?‡.@Òòž?ø0@úŸ?]¤2@¨¶ž?Å)0@Žž?šû+@?$ú)@Çúš?Õé*@‰”?ä)@Ÿ?•$,@ÄG ?ÀÅ/@½ì ?¿/@kûœ?ªê$@²Ò™?K<@Ž‹™?Äf!@Ñ®š?×ú @3sš?ës"@Èkš??Õ%@t›?Ó³)@¿é›?†˜0@€Ûš?ׇ8@>ý˜?ç˜4@þ!˜?Ï<1@¤Ò˜?6-@S€—?B½&@x—?ò$@Ì4—?ž¯@Ë—?Áá@M‡—?U‰@žã–?@K@ >—?ã’@N™?1“(@@Òœ?ÕÏ1@´_?¦ 6@¹š?F16@²Q—?±G4@jЕ?³#5@vl”?ã6@l‹”?ýÞ5@þš“?Y2@•Û“?öÈ0@a/•?^°0@œü•?wW/@µE•?|Ž/@ Å”?Ä/@ˆc•?P)@ft•? ý@=£”?D,@¢˜‘?2í$@ØñŽ?ÙL#@Åž?*\(@ënŽ?Q.@£'?t>@$$?¼ÁN@K‘?R@`Ç‘?ôL@Zß?!†L@s,–?ýè`@s™?ê,\@šûž?3’+@MZ ?!À-@‡: ?÷ .@è>?7'@#˜š?Dä@Cš?¤@"š?añ@ìš?{@$@\Ù›?–“$@c»›?`š+@£>œ?À@2@pœ?k`8@Êbš? ‰6@1ÿ˜?"†1@¤˜?Š*@w˜?ËA$@‚D–?¤h"@7—?©ñ!@cÄ—?¡Ä@€ ™?õk@×\š?‚·@°Ò›?- $@-?ž¤+@]ž?B4@:ež?‰š7@«}›?ð6=@P­—?&×<@ž³•?ìe9@mz“?q6@¨§”?{ÿ1@‰““?N’2@ôB”?°)5@ýg•? 74@Ñ\–?»¸0@¡D–?ð*@¥•?Ð6%@n¦”?3 $@ 1•?õ1#@6€“?ÛÒ(@å³?þº(@‰Õ?  )@í?¾*@u¨Ž?Ç%3@`?ëD@ ?žûJ@ ‘?&ÅN@ª?‘?K@GB‘?œ·H@¶’?Én\@\•§?Hãy@)Ÿ?Ê!0@³ýž?Vq-@ᵚ?èÊ$@Ò›™?öR @Ñà™?^Ì@&‡›?b&@Ú–š?%m!@'›?¢¹$@œ?ø-@Íœ?DÑ3@|Ä?8Û8@Ë#œ?ÿ­;@í=š?Š*2@¶Õ˜?³,@àH˜?åø"@^Œ™?ÃÞ@Ñ—?Çô@o™?Í_@}{›?Q_@”œ?Ã!#@wH?9G'@¿?¹.@vüž?ëÇ1@Ñ Ÿ?Hs8@‘äœ?Q=@Ä&š?AA@_Ï–?—Y?@:”?¯^8@W•?5@ °”?È(6@Sd•?”¯6@+•?ø§7@&­”?wd1@¤U•?¸¼*@ø–?ëc+@”?yù(@y0“?ë+@Ù<‘?Øô*@Í?š+@íÅ?—î-@÷¨?§.@  ?êG9@âÞ?ÞýG@ûN?,L@ë2‘?˜H@V¤?tI@à‘? ñG@U=•? µ]@VЗ?­]a@³xž?aæ1@•êš?õ'@ë™? 4 @iÁš?,Á@g†š?šv"@W›?$#@4Æš?8Ô'@ÿÙ›?\%,@’?3@ÌN? 4@àÚœ?ª76@úÊ›?:ª1@™æš?+s)@p-š?!µ#@(š?cì@¸=œ?µ´@1›?6 @ˆäš?¸;@ZÞœ?+ú!@“:?®'@ >œ?x‡.@Öòœ?§š0@Яœ?@Q2@9.?¹þ8@Ó‹š?bc@@x„˜?BÇ=@%•?¯Ý5@u:•?Ír3@u³•?™³7@’Ô•?N¤5@kÚ”?â³2@Ÿ4•? /@•?q7/@¾ê“?±=2@ç²’?e0@‡~’?…+@Œ’‘?? +@Ðü?+±.@„¥Ž?s!0@;Ž?¡W0@w¦?©é<@‚ ?tJ@7?c®J@6Å?F@ðU?e±B@+?ÄF@Ì”?KZ[@ —¡?]i@5Ÿœ?‘Ô.@!ö˜??*$@™?: @®™?õ¬@×Uš?z%@…K›?ÏP)@ôœ?Ä*0@tËœ?64@ªLœ?éa0@è›?£+@ðñš?Öö,@ÂŒš?ÄÇ(@“žš?æ\#@®­š?9Í@ 7›?Ël@!Lœ?Îß@7¡›?ð @œ?@Z(@Z4œ?³º)@8›?e—'@(Pš?è!.@¿›?ă1@ Ÿœ?Ÿµ2@¹›?âÝ;@¶˜?ÛÑ:@Ó®•?1=4@©è•?7ß/@\Ž•? >/@þz–?Í4@¦j•?Œ|2@1•? r.@ØÝ“?°/@r’?$ð0@b€‘?À.@»‘‘?dK.@¦í?¦/@F$‘?8 1@*Ó?v72@X?‰É4@7)?‰b@@|¶?I@ãŽ?}I@3ó?U6H@A?þíE@ ?K B@‰‰”?5ˆW@ãš?ø¸R@ ‘›? ø(@éü˜?À‘ @´Å—?Ð@›ò—?ã!@é?š?d@&@jmœ?¹Î.@0¤?1U3@A?­¬0@<›?â4(@Ü›? #@?Öš?F$@z ›?u}!@Ijš?ë²@dG™?ÄÃ@_Åš?a€@I‚?»˜!@ Hœ?}ü'@L ›?Þü-@uÒ›?U­*@ò™?g‚)@×ì™?' ,@L_œ?^ 3@öœ?ËJ:@üš?eX:@€••?¡W5@h—•?’2@$Ò”?bÎ/@i”?!’0@ÿñ”?Á˜.@ç”?ª©1@Z “?^Ó1@è’’?ïˆ1@0¼‘?ý‰/@}º‘?¸%2@˜t‘?ÈV1@Së?š.@ S?Ü2@1S?16@ Æ?ÞÏ@@b_?:H@¯“Ž?R.F@žw?™¼G@)}? #N@8¿?~iD@ç1’?æN@®Ç–? D@uê™?9È%@m™?kª@r˜?Ò&@Dù˜?nU"@åmœ?7)@q+œ?äÐ2@›œ?ü1@î1œ?])@Z›?è&!@ë›?›@¢E›?>g @“›?E™@h›?¬@m:›?}¬!@_]?¿}&@Q~ž?Ÿ€,@[?ÙÉ+@Áñš?ZE/@zcš?v]0@Öì™?G.@¨.›?Ml0@ñò›?åÍ5@E›?÷§7@Ÿô˜?o^6@SÏ•?„¾/@S›”?QU*@h3”?Þ0@¬Å“?ºð/@}“?Dñ1@ïz’?„1@ôà’?å{4@ ù’?‡5@Ö“?k 5@­’?™g5@úO‘?ç0@‘?§ƒ3@ã?™]9@?‘?žA@æ¦?7‡F@üaŽ?& G@Í©?5—E@§@?Ë%T@¤~?ñM@‚8‘?VJ@[Ζ?ýE@'´™?¡q'@¶·š?¨2@’ç™?¶@t“š?×n$@Õç›?d!/@mTœ?ï3@i›?0)*@—àš?8$"@’sš?ë@P£š?A@›?ÿ!@‡W›?ë©#@±ýš?áÕ'@|ò›?ØÌ,@¥ú?æÊ.@Þ+?ˆô*@‹A›?%$,@]Õ™?Z0@½Lš?%S3@&…š?…=1@äs›?ÝQ2@UL›?¾48@ˆU™? œ3@»"—?yô*@U ”?µ–&@›”?Ç),@ó^“?AÉ4@Âä’?vù4@Rì’?×8@±p“?¿7@“?¶á7@‚~“?q78@y_“?âw8@cp’?ÛÐ6@Ñø‘?—x6@VÑ?`,;@‘?`G@„?4”K@dŽ?¹€I@°+?ç6J@@¦?^äR@@?@5[@ ?CK@¦i“?8ëJ@Ѓ¤?ÎX9@v”š?Ä-'@S=›?'¥"@=›?šØ @ /œ?„%@š{œ?"¿,@N°›?.¨*@FE›?ð2%@ø$š?ÞZ@Di›?žÑ@€›?ôŒ@\º›?uî@±›?#Ó!@"~š?”Œ)@¤Üš?ð.@Eœ?æç/@À3›?‡Æ1@Sš?ר0@æ°™?Ï 1@êpš?Ê5@lš?æ 5@C*›?>Â8@ì™?¢¿<@*g˜?§è0@²”?Ò )@ÅI”?{+@-”?ŠÊ2@˜V“?× 9@Df“?°%>@ ”?òñ9@Ú“?}×9@ ›“?çH;@_“?Qf:@·ô’?ø:@ “?Þ¯7@lY’?Ã?@øŒ‘?¶*N@–ª?ïÞO@!òŽ?øÇK@Š‚Ž?™J@L.?ÓT@úŽ?—Ü]@Q?ÙöS@(Œ?rïL@ëj˜?ßA@ôDš?†‘+@î[›?4c)@!¬›?ú%@?&?=*@=Jœ?–Ø'@»†œ?Â"@X"›?ˆ'#@â,›?Z¦@>š?”½@³¬š?¬@, ›?S@o¢›?¦Ý"@îÓœ?*‘%@ªX›?€&@0Ó™?H;/@xš?—4@j™?cq2@<™?¿Ü.@\(š?™Ð1@¿¡›?lß5@ªwœ?ë3=@Û%š?‘”:@¾c•?…í0@;“?Qd-@"Á”?2G.@[ê“?h?6@¢’?tG<@Ì”?Ãà9@#î“?[<8@”?Q–<@¤Ž’?²{>@®“?â:@•x“?äÛ9@ ï’?«u>@Í’?±‡J@†?U@:úŽ?]gQ@kŽ?_M@ÎÀŽ?bP@Ù•?«Y@¡ ?—y\@—¬Ž?âÔL@ýû‘?$M@è<•?n»,@ÿš?£Î(@˜Óš?´Æ)@Š œ?º«-@íœ?ná/@ú0?‹š'@Möš?Í¿#@Zš?æ€%@›?˜c @«š?Í @ÿš?çü$@^w›?Ég%@(œ?Î(@ìpœ? :'@!@š?“%@q°˜?RÛ(@5w˜? 1@Ï™—?J¡0@Ž™?§þ*@í«š?3?,@ œ?Ê41@ùXœ?,å9@¼´˜?¿6@t¬’?l .@ÚP”?ØY1@ñ•?Ò(4@Z?“?žF8@bs“?68@y¾”?i:@nk“?=å=@’?pE?@g‰“?D*;@àë“?äe;@°“?cÔA@8ú’?aG@Ï‘?­ƒR@F±?œ™?f*@Msš?´[/@zš?°k/@KÀ˜?ëw(@tZš?|)@SÓš?ÿZ*@n™?Ã[#@ßÙ—?>+ @¢Ä™?ÇS"@é¿™?n%@ðÜ™?{(@["š?\˜&@% š?F%@“š?%|)@[›?Äw*@‚(š?ǃ,@Gç™?­i.@š)™?Ë,@ ›?/@Úåš?=6@ c˜?í(4@5„•?ƒ/@l}”?ÍÉ-@E“?]œ.@?<“?É@3@ã’?'?9@!²“?ìA@̘“?•ÚC@÷‘“?˜A@¡‰“?Ûë=@nL“?¦~A@T¤“?ú)D@HV“?D±I@Ÿµ’?ÂXU@?2‘?)ªQ@]ˆŽ?öÀL@òã???J@^¼?"\S@k’?ø°.@µI“?˜ó2@¹)“?$)5@h#“?ƒ?@ý_“?tTD@6”?©E@À¿”?o@@ïF”?!'A@Gá“?øÿB@¶D“?I»F@™‹“?x4Q@«Ö’?ûsV@«È?æN@B?^ÃH@ŠùŽ?ê'K@Ò?vÙZ@̤Ž?D½T@µ)?#2@@¿Q’?ÑýL@ð'’?ôx$@XËš?-/2@ßš?nR+@@Û™?-Ô#@K™?MÂ!@SÀ—?ÿ@¥˜??a@ ™?$@Åà˜?N\$@@Kš?\*@aç™?°Á*@!Ò™?ø»(@ßqš?õ9(@ÏÜš?™'+@ÿi™?rÁ-@þš?-0@ü†™?° .@Ö˜?K-@]Sš?öB6@„dš?ÚÞ9@Æ„—?Â5@E’”?*ý4@×Ç‘?r™3@7Ø‘?žû4@#’?nŠ6@î’?7Ú<@7\’?-D@F’?–äD@†3“?DIE@í“?asA@£ë“?=7@@«T“?±B@/;”?^M@”?¿U@×]’?J‹R@Âg?ÍfJ@¦ÚŽ?žZG@ý€?nøQ@™p?ë![@#?É[G@}?üðH@.¿“?˜ëA@ _™?¼î.@Bú˜?L'@2hš?‚!@;¢™?!Ü @¬™?¶Â @‚Ë—?Hw"@…;™?† '@ù¯˜?±['@=dš?Zþ(@dÜš?¿©+@”Mš?ÙÏ-@³kš?’,@Œ®š?µW.@è)š?¹è0@£™?¤~0@]Ž™?ï+@Ÿà™?uF/@ vš?Ý7@n˜?ƒÓ6@™O•?j“1@C5‘?F3@ÅŽ‘?¹†3@ôo‘? :@†’?ñc;@µì‘?í@@‘?X¯G@fÍ‘?’E@ Í’?hE@Xí’?ÊÐB@’Ÿ“?H²@@o”?†nH@E¥”?R@ôy“?{ÄR@”:‘?“ŸL@l(?³!H@?$4H@®C?3ÊX@àï?¿P@šÞŒ?€ƒB@µ’?K¦I@=ü˜?“*@ú™?'•(@ÖE™?q{"@˜?ëÛ @ߤ—?›Š@øé—?n"@PΘ?œm(@xΙ?ž×(@û|š?3¢,@r;›?p.@†wš?|"0@¹š?š.@˜u™?0@¾4™?ì0@¢%™?°”/@ôˆ™?åÌ.@ïýš?ag3@h™?ç§7@$–?^a5@B–’?Àß0@=.‘?ÔÛ0@r ’?_­6@æ’?b°;@ÃÜ’?ä;@S¼‘?¥jC@f‘?- J@ºK’?ÕÑE@9O“?sD@C$”?ÂYA@|”?ÃðB@ué”?J@!6”?8âM@¼’?ºN@bÐ?ÆH@Ø^?íE@i? 'K@¡¯Ž?>qW@X?‘ÁF@cÈŽ?””C@Ò™?6ñ)@Y.™?²'@ã˜?-"@-˜?1h @Ș?˜@®Ó˜?È#@Ìš?p«(@ØÑš?û,@>i™?Bz/@eú˜?cR4@7y™?Âê0@u¬—?„Ù+@@¥î‘?ÍjF@7Ú‘?ÛoJ@ë“?Á;D@WG”?fC@Þ•?Î@@/o•?ÄúD@s•?D7L@û”?\ÏO@VË?ެK@@úŽ?¸LG@Â/?ÚðB@êYŽ?еO@᲎?ØU@qƒ?Å…G@q­™?ª(@á˜? '@ x˜?êÊ"@h ˜?ò) @ݶ˜?Ê @ü›š?,)@9–š?ŽÅ+@€š?Tî-@}Ę?…ä-@sU˜?M“/@˜\—?*--@ãw—?Ñ*@„Ù—?ÿ2-@.Ë—?ü.@ø™? d0@Vš?ø6@z·˜?"M?@ï‹–?ùÛ;@‰n“?¹2:@˜×‘?{;@Êý‘?Ñ©8@Šp’?ò9@`’?à€?@";’?)æB@;–’?«nG@šÒ“?KE@ñX”?·E@r4•?Ôæ?@G•?V%?@ú•?òÛH@Ü •?ÇŸN@Ûs’?âP@ƒT?„»H@ùoŽ?ò5C@MèŽ?JrF@ 6?Ž\@·‰?q¤T@ÝO˜?iÞ'@(ï—?<'@y7™?î?!@ÚG™?ø @‰Å˜?h(@†Îš?3“,@?™?-@Ûn˜?C|.@¢Î—?K¡.@Ϙ?Ûµ+@4+—?ËØ'@¹—?ã&@ªŽ–?”‘*@"˜?Ö©0@„?š?å4@‘™?Ý‘?@_Ê–?ÎIB@0º“?Á˜A@é2’?¥6C@a°’?ǦA@¸©“?%>@"‹‘?þ=@·R’?ž@@;ð’?IC@ÌÉ“?:\D@©ƒ“?U9F@øl”?•@@©”?Üi@@€0•?ºD@a0•?^ãK@^1“?,ÍR@­'?hL@€=Ž?‚ZC@ú$Ž? ¦E@«?'/V@ ?Fq_@~——??&@•˜?Õ%%@§p™?¬Ý"@’,š?|%@cfš?ñv-@˜?så.@r——?W@-@ÜÓ–?£Z-@€–?PR+@=~•?k~'@«•? W#@¨–?…ã'@s™?º/@0š?S>@aô˜?4‰D@κ•?„B@N…’?Ýy@@?Ü‘?’©E@B“?ó-G@X”“?!G@%»“?ügF@Ž=”?L]H@ŧ”?ruE@gŠ“?k/D@®§“?ÀE@¶“?ʇB@ïM“?,B@¬ë“?ãH@µ”?ÖœQ@â^“?¦ýT@ý“?1 L@µŽ?uEF@?eÅF@" ?Ö“P@e×—?SX$@yõ—?i#&@A9˜?-)@0˜?Ê /@¸Ê–?Ý:1@+–?x -@Pð—?.@oÍ–?Wì,@Ê•?v)@}Ï”?/A&@áÄ”?^(@äð–?N2@Ч™?ñì7@¤A˜?Kæ?@†–?N?@+“?ch>@3ž‘?éHA@O»’? ¶G@Ðj“?¦I@I+“?ëÛI@cø“?¥I@V”?7ÁJ@J”?ôAE@™ “?”ÕD@ã”?ÖD@Îä“?þ‚C@Û!”?ÀE@²”?ÑÊK@Ì”?GÿR@@s’?oQ@(?½H@‚ ?B«B@ß3?`ÌG@l—?:Á&@A‡˜?„Ì*@P™?„o-@ ˜?µ.@ÔÖ?’z-@ –?Óx,@Á–?©´.@åM–?>¬,@Ch–?Y;*@p{•?g›)@¨–?8Å.@=£˜?HÀ5@ˆu™?C–?@¿„—?ƒ„C@ú•?QŸ>@Oç‘?ƒB@Â’?DF@ËÇ’?ÐI@Zý’?Ü(F@{´“?'E@žv”?+ƒI@b”?{fI@Þ“?GH@çH”?CH@4Š”?ôB@ˆ”?ÿA@fz”?S©C@›r”?‡ÂK@“²“?ÙbS@|¨‘? ÃJ@Ž…?šD@%Z?‹öC@Θ?ù+@Â^š? )0@«˜?îó0@Ts—?m1@ß–?œ+@¢>–?³å,@à¿–?È+@xº–?Óì)@ÅŸ–?‘q.@¼—?.@Z˜?uO0@5š?ÚY:@#H™?Rû@@QŸ–?,ÿ?@rØ’?êóA@ã’?„ŒD@®à‘?æ=I@Ž’?JÝF@ï’?|½I@úŽ“?¶©E@V5•?¿ L@÷O”?GfN@¿“?¡ÿG@†3”?Q´E@ðY”?ºš>@R”?Á¥>@œ/”?ëíE@8'”?•|P@®W“?Ÿ»N@¤µ?åÏH@/ùŽ?eàF@ážš?†3@=•™?°¤3@ëV—?.Œ0@峕?æO+@U²”?n)@üÙ•?B·,@hL–?ä>)@p°•?‘*@u–?X/@®Ò—?b¯0@í™?Mg6@Þ!š?WÍ=@!¦—?Í?@Á”?«í?@å;’?–«@@ìâ‘?±'C@iØ‘?HE@/%“?DJ@^î“?õ J@µ^•?»“K@'s”?®Q@.ö“? K@R”?¾|I@¯U”?I,C@—”?¶„=@Ž”?^@@ ”?KdH@iã“?»þM@$U’?õºO@’?wL@F;š?ÊX5@²¾˜?’3@Þr—?íÏ0@=d–?uE-@z;–?¾0@¬c–?“Å2@æž•?Œ¦*@ V–?÷g'@ät–?#*@²…—? ý2@ ”™?q“8@Ùî˜?‘pB@•e–?—†A@‚;“?1C@þ“?ò?@“?\]C@Uª“?’!K@‰ï”?tWM@>´•?*Q@®•?º±Q@Å“?$]O@¦v”?¶êH@–æ”?ŒáE@2Û”?‰²?@ø”?á>@\‘“?1C@rî“?,tK@Úú“?ѬQ@¸ã‘?áÎN@ ™?¼…7@’±˜?íì7@:Y—?+G4@^5–?B§2@ó –?G˜4@·‰•?M6@„$–?­f/@ °•?‚b(@)¢•?~”,@P¦—?6!7@™?xR?@D—?óD@?Z•?À E@LÖ“?KDD@UÜ“?ýÌE@{”?ªtK@1•?â]O@§r•?ÁR@O$–?}ÍQ@rñ”?É.Q@ãü”?-~K@oþ”?G@6=•? ¸D@1”?Jj@@®U“?C@uñ“?g×I@ü•?©2O@Þe“?ŒðQ@ò—?îÐ2@ç}—?u8@¡—?Iw3@Îâ–?x8@I|–?o’7@~Ù”?’7@”8•?óh2@â,”?O.@ –?òo2@J'™?#>@7Ø?žOG@¾i–?‘´I@ú¨”?—yF@ÓZ”?Q©I@jî”?^ÂL@Q•?­ON@‹É•?Z1O@ƒ–?]žQ@–?@¯;”? 9C@tI—?Ø–0@ƒ,–?ê_2@„s•?kC6@=·”?P>-@á”?l,@¹•?V-@1Ý•?í.@C˜?Ç8@òoš?rB@øg™?2K@ùÀ–?°ëJ@Áù”?gvI@k•?àÜM@¿0•?ñêI@ÌÊ”?í¨N@ñª•?‹ÙQ@¦:–?ŠS@W7—?¸S@ÉG—?H(Q@ø—? 0M@¹s—?Î+I@ B–?\öD@ar•?†ÞA@Úç”?æA?@W —?-@7|–?¼í7@Yê•?ž87@-g•?•ã4@°”?ë•2@€Ä”?­.@\–?Ï‹5@» ™?­þ<@Zf™?®½E@!—?§ØH@;¾•?ùG@DO•?ŒIK@m•?K@&•??K@Åé•?RóN@§€–?AãR@ò—?8\U@A†—?׿V@Ód—?œáR@6€—?!gP@j—?+„H@Ë–?Ú“B@²•?2™@@­E—?vž0@ y—?ð 7@C~–? Ø7@C—•?£:@ÞR•?O:@²"–?åº7@˜¥—?.e;@JЙ?âpE@(›˜?¤zP@Üö•?êM@Ò$•?ßI@FÊ•?íJ@°•?òµH@AE–?¡óI@`—?ÿNQ@ôq—?7ºU@AÆ—?^“Y@°˜? )W@ßM˜?íT@Óì—?zEM@Û/—?ótF@Ü?–?ÚãB@ï©—?`H/@Dc—?‚1@‰©–?ÿØ;@ޱ–?Ä›=@×6–?õµ=@WŒ–?Ê=@´R™?¶ÛD@*š?ôQ@Õ˜?è\U@Q–?‚æN@ÈR–?21L@j–? ;L@vþ•?X†I@¾«—?ócP@ªè—?ÆR@Ãû—?KÞY@.ï—?ƒ}Z@Äæ—?ÉôU@Ç—?AFQ@íY—?—ÈN@ÐG—?7,I@ ™?4@)p˜?Î,:@¹‚–?¦>@ê –?QÇ?@7F–?QS?@ܸ–?ô¸?@N™?î>G@FÍ™?=´R@$f—?òìW@>—?ë—P@a"—?¸ëM@²ë–?ÀáL@…Ж?¼±M@Õ—?Ì…R@õ˜?ýS@ô ˜?þrV@k|˜?ÓU@¬ù—?ÜOT@6X—?W&S@d—?¬P@îö˜?Fj7@¤q˜?ã8@Ç–?Ç<@ÿO–?§ @@‘7—?wC@C:˜?Q›B@õ8š?1ÚI@?¼™?öV@A‡—?8[S@’ —?p™M@`“—?çûN@õΗ?òÿP@ç˜?ŒN@Z˜?!ÂP@ÐÖ˜?S@Àz˜?†ßS@»x˜?ìYV@ %˜?¸öW@ሗ?Ù0T@ ï—?Ý6@æ—?0™9@ïÊ–?ƒ/7@Êý–?µ):@j˜?ˆúA@ç™?ûG@u›?WNO@jþ™? V@Ÿ…—?LõP@÷‘—?×O@ÇF˜?{¨P@vá˜?¢vN@s–˜?]P@V™?•cQ@F°˜?¨T@ió˜?æZ@õ„™?S¯^@ÜϘ?ˆí]@(2–?–º4@JQ–?VÒ6@«=—?,û2@0m˜?D:9@w*™?߀B@ô§š?#I@¦r›?ðQ@é˜?gyU@ŒØ–?àðR@üž—?{]Q@vU™?FN@ó¶™?j¥Q@ë®™? T@@™?üúS@Ôü™?ÌÊV@Çsš?{Ì_@|š?Nb@—?¥}6@šú—?±9@xD˜?Ù:@©œ™?æv<@cgš?[¼D@Oß›?ÚO@¹›?w©V@¡2˜?èU@¦W—?aQ@QU˜?QãM@®–™?ÄíN@¡¨™?ßS@Š™?³ðV@k™? a\@Ùç™?+f`@ÒYš?„ˆ[@Ý‹˜?‰<@*¾˜?–êA@‘¨˜?8{C@ªß™?¾$H@.d›?¹ÓL@ø7œ?±ßT@R5š?SíT@Ôµ˜?ŠâP@ÃP˜?”Q@ür™?KS@Bj™?ôV@¨Z™?6Y@F™?ér^@ˆÅ™?f«^@¼bš?Þ•Z@ÊÆ˜?¢LB@z4˜?“µG@ª˜?Æ×K@€Vš?–uM@ùœ?pŒQ@!\›?øiT@eÜ™?пP@<Þ˜?O@F}™?ÙØO@t5š?ĺT@“:š?ëbW@Ã!š?¶åW@h²š? U@踚?ߊU@ýt™? âG@±˜?uæH@ºP™?½(J@X ›?íªL@lw›?âS@X¡š?‘S@ÞQ™?´SR@Ö<š??ÕM@’š?:—P@÷¸š?äÙR@1›?¶ÃQ@'Л?§SN@c™›?@ÇN@ã™?¡_M@»U˜?B#K@ /™?8L@'š?þP@›Cš?ñ­S@¦’™?MPR@¥Ó™?«ÓQ@‡0š?ó4R@:¶š?DÈS@d›?T~R@àŒœ?ž£P@†Î›? åM@Ÿó—?»ïH@(¨˜?ñ*K@™?Ñ”N@>†š?K±S@]Uš?”´X@€Ö™?bxY@À™?cRU@ó%š?H4T@‹Þš?LR@€/›? #P@¡r›? $Q@:x˜?"½I@)™?6µM@÷ך?×Q@Šé›?u‘[@{›?a“]@Eò™?ÐëW@%¬™?w3S@Õ.š?èP@½,›?E(L@›?.€J@¯õ˜?·¡I@: š?¾qN@ëbœ?¾¾S@œ?‚ýZ@‹;š?hÄX@þ˜™?×YR@ý,š?¸N@Ôš?€K@3þš?k¨H@Ò6™?;çI@žÿš?6K@„œ?0ÉR@ÖW›?I·T@*î™?DQ@Üò™?ÿ™I@n¥™?òýE@÷š?ò3E@më™?&SE@Û›?j@H@Û?&Q@\kš?i•P@(ô˜?ÇjK@ð«™?°G@YÒ™?ª J@ÂÖš?=äA@››?ãMI@Ÿ±š?²ŸQ@'ö™?tO@Ã{™?5¤P@°Ÿš?ë R@®¼›?™qH@³H@¸ ™?8|E@†–™?²A@‚…š?í[G@ç›?‘F@½¬›?žG@'ù›?ù?@´Wœ?‡2D@¤·˜?+È"@€˜?&@T1š?ðP,@P)œ? ì,@^gž?ŸÈ2@¢ž?¿¢5@àü?V&8@Ãëš?¶68@¬Š˜?Bë-@ò4—?ë_*@>‡—?mð*@ò{˜?E+@J±™?Ú³)@4ìš?˜Y*@ý<š?ÈG/@Á—›?å.@T ›?ÿ,1@Kš?ög1@ﺙ?’.@[ö™?0'@ z™?¥%@Õñ˜?€(&@µš˜?Ç"@ËŠ™?+„(@¡˜?„(-@QJ˜?²á,@¡‰—?»y1@Àm–? .@7„–?úü*@}–?Ô,@¿ð–?BK-@‡´—?Ú:+@¥º—?¥º*@wÅ—?¸\.@Ž™?1‚3@á&š?)C8@vÜ™?G—8@Q€™?â6@(™?˜ 2@Î`™?m´3@Zjš?TH6@oH›??0=@…›?ø×C@Jv™?¢ G@6²™?8wF@öÕ™?¶kH@6â™?LG@®‡™?Q D@;w™?²íE@¯š?„F@À[š?‘'F@y+š?Œâ@@Ÿ‚š?zv=@û\›?#A@>µ˜?›Å%@ŒÜ˜?Ô%@5ƒš?Û4)@ ›?¯²-@ ?©ƒ4@±’ž?ûn6@vÝœ?Bó6@1ùš?†w7@¥©™?J½1@س–?„Ô+@>Å–?Œ*@ã™?D*@ú™?Ÿe*@©5š?e/+@¶cš?ºÜ+@àК?uâ0@&Àš?{4@È™?ýÎ2@8“™?>'.@‚Q™?')@ƒ š?ÊÞ&@@I™? Z'@ñ‚™?›Í+@¦{˜?Ú˜/@Ö‡—?)2@ì˜?¡s3@<—?}82@´<—?J†1@‘…—?!Ô1@aŒ—?D—.@“^˜?®ç+@ïÀ—?$¦,@š˜?~ó/@[|™?ç5@Àh™?ÿ36@'L™?Û›5@S«š?vf1@5Ëš?b¾/@°ã™?^u/@ Ü™?rÿ3@ j›?lj9@Ñù›?9'>@lL›?g&B@T›? úC@ˆÛš?×ÝF@Ÿkš?ðyD@¦ š?ñ€C@•>š?ß­F@o™š?ѲH@å&š?¿,D@·Ì™?’}?@âÍ™?Æ>@R<š?+YC@pU›?o#@x›?Õ @‚¸™?‘é#@xŽ™?],(@Tœ?ª¹/@l÷›?Ú6@{œ?_4@Èò›?”Ø4@í–š?Ða-@H´˜?´T(@×?ÑD,@¬s˜?uÿ,@{ý˜?#,@™?Á,@íË™?ëG/@˜?›?YJ2@r›?kK5@ôø™?е3@â™?'^-@g™?Ó*@Å|™?F+@\„™?·C,@&¹—?á.@¢­–?8§/@‡a˜?Ö3@'Ì—?ôê3@¼'—?þ2@±ˆ–?o>1@y~—?Mä0@Œ—?·Õ/@*‡—?¿2.@jô—?n-@A‹˜?ÿ_5@ðЙ?³,7@¡î™?F“4@tš?9_0@áš?5+@¿Hš?ZY+@of™?&¸/@—›?Hð6@ Uœ?õ9@`œ?{^;@µœ?A@V³›?*´A@#›?i!A@,*›?xA@ÚX›?„E@¡òš?‘ŒH@õqš?ÁD@&š?[C@ôš?#B@â\š?#¥D@>,œ?‚%@L—š?pK"@Ë™?=W#@Ba™?à*-@`Ìš?þÎ5@ѽš?,q6@››œ?%¦6@À¾›?3@€„›?Ë<1@j5™?›¿.@>š˜?«0@ª¥™?®Ž/@Gµ˜?bÒ/@ʵ˜?*@jš?b,@ôãš?^ 5@Å”š?k‚6@c~™?Þy0@1™?Ù,@Æ•™?@·*@ØCš?pO*@– ˜?ŸË/@ý—?„ò.@r=˜?Ú»1@XŽ˜?•54@§f˜?Ž>2@s"˜?=Ñ0@oÉ—?ëg2@ìΗ?pL5@¯u˜?:13@óW˜?t*-@w˜?Œå1@ñ ™?;ä4@Î)š?D3@+›?)<-@$æš?×*@4Jš?ÞÇ+@ɱ™?>.@.Šš?C2@:›?›ú4@œ?Û6@n¾œ?"H<@Ë‘œ?üù<@´ì›?ÚÑ=@Èdœ?±/A@+£œ?G@EC›?>›G@àþš?_èC@„í™?'°F@qš?YgI@«š?0’G@¯›?®¦(@ß>š?ù“'@ø›?pò#@hš?i.@hË›?æØ4@ªáœ?£Õ9@œœ?ê=:@À!›?tŽ5@Éé™?ß1@¾˜?6@D!™?€ä1@0™?|3@ÍŒ™?5/@{‹™?)»0@¼&š?,S2@ jš?ÝÞ5@Q½š?}1@“¢™?ÌØ.@Ýg™?.@¢úš?³'*@Ÿk˜?ÿš.@KƘ?© 0@蜘?µ÷0@N™?++/@Êw™?‹ø1@¤ä™?´h1@×¼˜?*b4@DϘ?Í4@ìÿ˜?¨7@°˜?­B1@.™?k²0@t¯™?¸f3@hÍ™?H+1@S*›?-”+@â—›?R`*@•ëš?cN*@ß›?¨Ì-@=$›?L`0@^›?Ù+4@”#›?5s3@@1œ?õ4@œ?n7@]œ?[R:@íøœ?õû@@X#?°F@‹Þ›?jáH@L›?8ÓC@3”š?€H@‹¨š?«GG@¡ š?7¾G@Mè›?²(@w¯š?Æ¥&@y\™?Ùw(@š?ŽL,@`?*l2@˜u?>9@Þš?<1;@xu™?5@ÞÁ™?^82@J„™?Þ".@c™?e¯*@²™?q,@Òš?*/@x›?KA1@Ó›?=‰3@+Vš?–ä2@š?^„/@œ™?Äì,@)]š? ‡/@ê™??µ-@"™?ñš/@Ô™?ô@/@>™?Y0@%·™?-m2@’™?À›1@Çü˜?+ë2@€<™?è¨2@#¡™?Ó7@ š?YF6@ š?þy4@úô™?^ù3@R9š?Æñ.@G¤›?vv-@— œ?‹«,@k­›?€x+@ªÑ›??ø,@Ùè›?Ù²0@GH›?« 7@8ù›?‘d5@Hè›?.'1@õ=œ?1’1@?)3@–¾?vÖ:@ÇO?x F@ÝÍœ?ÕAG@燛?W*E@>R›?*mE@É•›?G@Èš?¸SF@†œ?q(@$š?è±&@+ã™?\Ä(@ ›?wš,@Yל?À$8@厛?ø1:@…'š?b¦7@Ìm™?Ý4@h½˜?¡F.@Q™?ëp+@jþ™?íd+@ý.š?íô-@"B›?•Ø1@ °›?¤L4@}«š?‹6@¾™?æ 2@Õ¨™?i©-@Ùùš?ÒÔ.@]Í™?tS0@À³˜?`m2@ߘ?£Ë.@Þª˜?ɘ1@j~˜?.5@N™?65@1ý™?G®4@kš?È 3@<<š?÷8@óš?Q:@„ƒš?»6@.š?6n4@rŽš?àü-@éÅš?^Í,@sq›?ÖØ.@ÑÀ›?yÚ-@«›?…+@œ?£ð1@㛜?x‘5@ຜ?FÈ3@"?hÏ/@`‰œ?êò-@i–œ?k"0@Gž?LÀ6@¯Ÿ?×ÊA@lž?fõE@£Œ? D@žxœ?|†F@Š]œ?™I@3d›?ÞD@a¿›?ëÝ(@‹™?æw'@fkš?Ì*@¬8?™u1@?ó?tG:@¶:›?ùë8@¼Ã›?Qº8@Äš?‚ò0@'Í™?ï¹0@hš?¿á,@ûÌ›?ð$,@Ÿûš?¢ï,@V³š?}*@[[š?³$/@æ™?qå0@{¬™?<9.@k#š?äÄ.@M™?4ê/@ã˜?5w1@<-˜?ù0@da˜?@Þ1@Q—˜?ãè7@œm™?ëŸ6@Њ™? \6@9Sš?+7@Qæ™?;Ã8@ùfš?d·>@'›?¼Ë;@ͺš?ÛÃ3@›š?´Œ0@™Šš?øù/@#›?/1@uüš?ù*.@ï=›?P~,@Ñ»›?[Q3@v ?d1@6C?KÙ.@cC?ë¯-@¦Ùœ?ÖU-@ÚGœ?åj-@ú·?à0@h°ž?¬I7@âž?ø D@wFž?žG@Úk?ÛH@Aל?gL@'œ? 8I@Ù@œ?%@ š?üâ%@þ7›?}K.@B ž?¤6@Ñœ?}ö:@ÉO›?ã{9@Dô›?D–5@—µš?I>1@Ž™?£½/@°Êš? 0@öŠš?éG,@~·š?—¯)@©™?œJ+@ªå™?ø·-@¶™?QÞ.@]š?+=-@D—™?h.@ma™? ´1@&T™?Õ».@Í(™?s·4@ˆú˜?ð’8@¨[™?Ù5@;™?Q§5@9¿™?sŒ6@Õdš?|:@V›?Ñ >@þ›?+=>@æ›?Vc8@¼Òš?˜=4@ŒÅš? 1@ ˆ›?8J3@xÞ›?å/@ç?›?Í-@ÀÛ›?WÎ0@ˆ?<ý/@pÉ?‚‰-@?ž?ò?,@|>ž?Ù.@4?è.@pž?àH/@ûÓž?"0@Ê4Ÿ?ÕZ9@‰ž?3G@éž?÷H@;â?_]M@›?G‚M@îvœ?•è&@¿­œ?žf,@#yž?‹€2@œÎ?;‘=@µ)œ?Û=@`À›?í´:@¥ß›?”š6@7"š?Èd2@›=š?pa/@º›?Hý,@GFš?¿˜)@#š?Œ)*@Fš?£;*@€™?×],@?š?g.@Æjš?ÜW0@p™?3@u ™?¹~3@šz™?N¾3@Ö™?¦†2@ÙÏ™?en4@rš?²ª3@=Úš?{F3@ ›?V5@8*›?x:@‹*œ?CW<@Í›?w <@:½›?±L;@Ày›?'@5@Pwœ?aé3@œ?éµ1@ý™›?ž/1@R<œ?q0@ÔÑœ?‰?0@Ìì?Ù`/@0éž?ʾ,@~Ÿ?ÏŒ.@p¢ž?Xî0@#_Ÿ?^x1@’Sž?]ô1@g$ž?œm3@¾ž?ÓÆ9@až?ZÁA@h›ž?™E@tž?yÐH@Ruœ?z*(@K¡?kÎ2@úž?^3<@š™?‘IA@pœ?°?@»-›?±í<@¢š?µ÷2@)0š?Ï_-@nÙš?c+@A9š?í)@^'š?Ÿð*@=Uš?,>,@ô¥š?¸*@»÷™?„´,@1 ›?”Ð/@÷3š?Ë3@5†™?—°4@'¨™?4W6@ Ÿ™?@Â5@ÊÇ™?•J4@wcš?×V4@5›?c6@€—š?»v5@Óš? 9@ë œ?ºj9@î›?DN9@€wœ?uŒ;@œ?,8@蘜?#…7@Cƒœ?#à8@SHœ?h 6@36œ?Í5@MÚœ?î2@X ž?ò«0@´wž?÷Ð.@sôž?Ž´1@x}Ÿ?ÛÅ4@]“Ÿ?Á+4@ù?‡é1@©+ž?æ„0@FRž?Û36@;µž?ê)<@àž?VÀ?@¼Üž?B@5üœ?@$1@˜ˆž?Z:@6!Ÿ?øY>@p?³¸=@x>›?{‡9@Ôžš?‡•5@šš?Ïg/@¾Ëš?>ï-@?Šš?Ò,@•nš? +/@Léš?;ž/@š?[À,@7{š?×°.@kÛš?Ú‘/@–~š?‚1@X™?Ñ1@Dj™?W.2@Åý˜?øÃ0@àš?Äm5@Ĉ™?õœ5@‰7š?‰-7@N§š?§f6@›pš?G9@S{›?,+9@{~œ?^Á5@Ù*?Œ26@S!?“8@&ºœ?Ñè<@WÝœ?yâ=@ÚJ?ã;@Ò¤œ?9@Ëc?²¡3@÷¥ž?Ñ1@dRŸ?3@ñ´ž?ko4@áGŸ?“[4@YŸ?p‘3@ ?ž?mc3@¬Iž?¦M1@/kž?O6@Z'ž?ð•<@–ó?k:@þAž?Çß;@´Zž?>Ü4@’ž?x©>@)“?%(:@÷Éš?Ëê7@ÇÙ?_c4@åÛ™?í.0@Yš?î1@¿…›?2Ü/@ùZ›?x¤/@¨0œ?8…0@\,œ?x40@¼0›?Žÿ/@@ýš?Ë–3@>*š?ãh2@ñü™?T62@ñ¢š?Aö2@›?sz*@̲™?‡².@™?«:4@Æ™?o#8@¬3š?­V7@N‹š?{7@ ¶›?™[4@ñœ?Áç4@Á|?›®3@?z8@ÍS?þ>@¬?¾D@æû?ßÙ?@¬®?2™<@°÷? 9@§wž?`Õ4@€Ož?Q×6@êrž?"o7@¶ãž?v5@Фž?ú˜3@A.Ÿ?d?1@[æž? q3@»ž?kÔ7@‰Ož?X²:@<÷?;@¡Ìž?-À5@¿æŸ?YY5@TÚž?ÊŽ;@ú¿œ?D×7@oæš?'8@2§š?õ6@uÀš?áï5@裛?|÷0@mŒ›?H”0@‰›?0@5œ?P /@ôœ?Â2@ ›?¿,2@U ›?Â3@;eš?«u1@s¸š?+5@ “›?«0@±™?Q/@Ne™?Z2@¸^š?#Û2@sMš?±‹3@oš?ùÖ4@°£›?¬ì5@Ìíœ?ƒ7@Sh?¥™3@ }?KQ4@†&?¥]<@plž?r¬A@ǯž?HÇB@u…ž?-7A@ÞEž?›í?@ûŸ?µ<@xÖž?U<@´šž?ãÃ<@M-Ÿ?ù>9@f½ž?}÷3@CŸ?6@B›Ÿ?ëÓ6@ãž?á7@höž?ݤ7@ Sž?)Ë6@Ó°ž?»6@\ ?xˆ9@Ù8ž?ûÄ5@6Žœ?7R6@¼\œ?•69@Çó›?™;@À;œ? €8@Paœ?1Ú0@§Ðœ?‘0@ßDœ?0@ëÕ›?a2@E›? 7/@ß+›?ËX0@Ç…š?G†2@’„š?ƒ1@"b›?‰?1@Íš?«1@šš?,2@ôš?p2@—c›?–É0@•ˆ›?©2@È_›?²‘6@Ùœ?|h8@¦¯œ?¹‹4@±Úœ?ðÁ2@\Êœ?Ö‰9@üÍ?4l=@ÔEž?Ž@@Ϊž?½Ü@@kYž?[3D@šÑŸ?!âD@ÎíŸ?jtC@¯ËŸ?ÜíB@tçŸ?šh=@°£Ÿ?å¸8@YŸ?‰8@oNŸ?=Ê9@rŸ?åÄ:@‘õž?CÊ7@aŸ?šN6@†Ÿ?ð…5@ç ?ÅÞ6@ËÍž?fˆ3@uÝ?6@Up?D8@ÿ‘?}:@Ä‹? I4@Œ?u2@ÒËœ?qo3@h›? ‚3@»¬š?®q0@ÂG›?ûr2@`ñš?­0@Í™š?‘-@?œ:.@’–›?…1@Í!›?^ã4@Ÿš?S«4@| ›?¡£0@xã›?‹Û3@"É›?3@ˆ±›?%´3@Ÿhœ?Õœ5@¶‚œ?ôÌ4@-h?øq7@wž?¥t7@°ž?f7@MŸ?C†<@g>Ÿ?ÞƒB@†\ ?ƒíE@ô6¡?ÌCE@¡?ƒÂD@=‹ ?àBC@(I ?VA@-|Ÿ?Øì>@Cøž?Â>@µrŸ?`”>@à“Ÿ?í9@4ÑŸ?ì—5@œŸ?Tø2@kã¡?›7@0£Ÿ?f9@‹š?Ü‹9@¸À?j«6@ ¹?Ó4@F$?˱3@y?‚4@ò­œ?ïÑ4@>gœ?dz4@bå›?Ãæ4@ži›? W3@E›?«#1@åN›?¥k.@r±š?¶8.@àœ?où2@Jœ?Wç4@ž›?63@\N›?µ×0@‘õ›?ØÖ0@P›?¶g/@u½œ?z3@ò‰œ?Þ46@ǹ?¨O5@£ž?JÑ2@ö§Ÿ?(4@4ûŸ?hó5@;ÿŸ?ûÏ:@6 ?IÍ?@R¡?iÆA@„¡? C@L‡¡?3¹D@k¡?œD@$Ë ?ðB@bV ?†­A@(\ ?)¡B@åÙŸ??[=@ —Ÿ?§u7@¤ñŸ?õ»1@lÕ¢?—Š8@se¡?&è:@µ Ÿ?†|=@Úž?Á;@k?«™1@÷ž? -@˜?÷-@8íœ?U[2@Ÿ*?‹±1@§S?1@»Wœ?×21@®¡›?0@µkš?+Z.@+èš?ï.@ZŠ›?º1@Ùzš?þæ2@°¹š?Eâ.@0ôš?ˆ{/@ÉË›?i,0@ \œ?­s0@.K?5§6@pmž?<6@ã}ž?I4@¨¨Ÿ?4@*ÄŸ?}À6@±4 ?ŒK8@–šŸ?!8@ØD ?^@<@5¡?_Ò=@Rš¡? ´A@c­¡?òÚE@hª¡?E@ ·¡?¥rG@‘“¡?,YI@e‰ ?ü0B@s¨Ÿ?·6:@)ŸŸ?(53@õ¤£?e8@Ñ£?µ =@†Ï ?ÛT?@,ž?×a7@Ûñ?Ûh.@`~ž?Ö\,@VY?ü40@©n?0Ô/@žŸ?Ž×/@ ?sÓ2@€Í›?ÈÜ/@Ž|›?[ù/@HO›?pP.@6Ôœ?xé2@žœ?®¤0@€¥š?²-@acš?PQ0@4:›?ˆ¬4@z0œ?e­3@òØœ?è‡9@FÇ?Ê7@’nž? À4@à.Ÿ?žy5@®Ÿ?ñ5@T7 ?KY7@ ¥Ÿ?F¬7@¯¡ ?Ù5@C¡?šá7@]@¡?vz:@‰6¡?ôc=@‚¡?<”A@‡Ö¡?QÑE@Êã¡?oMI@¤ž¡?„vE@Gð ?WÌ@@ñ ?Î;@FG¤?.é9@C¨£?Ñ>@’¡?[C=@}Ÿ?w7@~hž?8Š/@(b? ä/@‚Íœ?=0@6œ?j1@锜?ÙS3@âAœ?gç0@wí›?iª0@)Úœ?%2@ˆÏ?N·3@yž?0”2@äQœ?Õà1@3›?º3@úÍ›?‰:@„B?C<=@ªL?Q¢;@Ô„ž?A§;@"6ž?Ž7@xמ?2¹8@é|Ÿ?ëà6@÷àŸ?µî4@` ?êS4@: ¡?ME2@Ö‹¡?2#7@ìe¡?;`6@DÅ ?M67@Q¡?¯:@4¡?î @@ØŒ¡?zzC@ ¢?PÅD@š¢?MF@ ¡?™ÒC@¢‰£?‘Â8@ŸJ£?Ø~;@"¢?@ª9@M ?üf7@ >ž?`¯4@øüœ?¹ù2@‡¿›?í¶2@}›? $2@¾wœ?7Ù3@oœ?ÓÓ6@抛?…í1@ôœ?J2@Lž?+U7@¥C?ðë6@ƒœ?8ù8@µËœ?¹"?@îOž?lÖ<@Æž?1ï<@xž?Nó<@%„ž?À‰9@yMž?ðg<@ÝlŸ?´?9@{  ?“&5@A¡ ?'X4@†¡?=A3@þ$¢?*»5@ŒY¡?ÓÀ3@R˜ ?D¸1@ÝE ?‘3@ì ?Á39@~3 ?¿ =@Jס?Qg?@Ó•¢?”?F@lR¢?+ÅF@ú)£?ÐÌ4@H£?üí2@¼¡?2ƒ7@ ¶ ?8O8@O‚ž?»z7@h¹?‚™5@êýœ?'4@¦¶?ÒS5@™‚?Ê)9@î’œ?¤9@gÜ?ʾ6@¯˜?¬¢9@²r?º(7@~3ž?Öú:@4Ã?R >@^^ž?òú<@ÂÏž?`À>@™Hž?ø¿=@¤iž?<-?@´.ž?ƒn>@‘ߟ?¸À<@(³ ?4Ê5@áÍ¡?ø¯2@Ò¢?p82@^€¢?ǹ4@Xt¡?^í3@¡?r‹/@‚ ?-1@."Ÿ?.!5@ØSŸ?§v7@öò¡?Ç×8@t[¢?6T?@­ª¢?P¢B@žH¢?ÃÀ0@ù¹¡?‚/@ž“¡?ߥ3@+t ?ÄÓ5@uŸ?G.5@ÞDŸ?’ï6@ƒµ?tÊ8@V¦?l¾:@€1?Iª<@Žêœ?²ê:@³˜?¸8:@ˆÖ?õ”:@“Mž?+ê;@7Ÿ?¨Ò=@MÀž?u>=@]Ìž?±™@@füž?‰É@@3ž?æ“C@OBŸ?Û4?@d7 ?÷Š<@ø¡? S7@Íf¡?i4@ï¢?*ª2@!å¡?€*4@³œ¡?£C4@Ô£ ?~·2@óÚŸ?¦3@û2 ?:Œ1@Cä ?ü#2@Èt¢?¹n2@zx¢?·©7@E£?=@¢?ª&/@\¢¡? 1@@ ?ºs0@ü ?ýÊ-@ž ?Þ»/@“Ýž?ã 7@uZž?,ø6@æÎ?!ç6@:™?i¦7@9Í?á…6@¬Ñ?%68@¹ž?‡9@Ò®ž?ŒÓ;@CÓž?K…<@ùŸ?8@@zñž?ýÓD@8—ž?(CC@¿®Ÿ?³WD@†´Ÿ?Nš>@æa ?8ý8@G¡?b8@x¡?Æó3@wþ ?§3@åi¡?­Á4@P(¡?íþ4@¢_¡?y¤1@Y.¡?«J/@8˜¡?Þ©1@ŸN¢?;ò1@> £?¡5@§ ¤?Žõ6@ß¡?Ù™.@Ú0¡?G.@¿6¡?^M-@²¡?|1@Ww ?+¤3@œž?íã1@ªÍ?–ä2@UV?g¸0@“Ÿ?4“1@ÚÉ?²'2@üâ?1:2@Iž?uØ8@\6ž?ÝD:@­ž?Q­<@6BŸ?>B@A/Ÿ?™»G@kÝŸ?„öF@«òŸ?¤ù@@Ä"¡?ÇN<@?¨¡?+G7@­#¡?uP6@‡¼ ?r‚4@ÚE¡?v¦5@^¤¡?þ4@Ö›¢?X¼.@€§¡?S¥/@ë¢?íz0@H£?|4@z†¤?­¶3@J{¤?t>4@Ìg¢?{Ï.@8¢?E£-@ä«¡?H'2@øï ?'W3@ŽÓ ?ÕÓ/@];Ÿ?œ3@ÿmž?Bä2@Wž?\1@ds?`/@õ?Ð=/@Wíœ?%5@íO?ŸC:@¤ñ?ˆ¿;@èZŸ?¬Î?@¼œŸ?ÊE@UÒŸ?¾H@.áŸ?a÷D@â‹¡?×+?@P¢?ðo8@ }¡?ž26@'8¡?\í5@í¡?…“6@"p¢?Q(5@¾N£?H˜/@uç¢?+e0@GÇ£?Æþ2@£C¤?Aê5@r&¥?õ3@Yf¥?07@+£?Mç1@;²¡?/!3@Ãl¡? ÿ1@ ?£1@|¢ ?àÈ.@ÛŸ?–b1@ÿìž?Ç0@êÑ?›Â.@Æl?Å/@¨‡?4q0@ÅB?eé4@`Jž?#N;@™ðž?® =@ §Ÿ?J;@@>' ?óMD@©¡?¨I@mî¡?;JD@wÉ¢?±•>@Ú£?ÏI=@ïg¢?DQ<@”s¢?þ–9@£?¥–5@ù+¤?úÔ4@„£?Ò6@ü‹¤?Q~5@F½¤?ß 6@TS¦?u94@K¦?ß"7@¿÷£?’›3@’¢?Åä2@t ¢?õ{0@Vá¡?zG-@ç}¡?úô+@?ÈŸ?+Ð+@¼Ÿ?UÎ+@ó\Ÿ?ðe.@Ÿ?".1@]˜ž?>)4@– ž?Ÿô6@äŸ?&8;@ºÖŸ?8@4_¤?¡¤7@î?¥?o­4@º¸¦?r6@O§?­Ÿ8@?o¤?”«5@,å£? v6@¢£?€ý/@4¢?c.@q¢¡?D/@9½¡?øh+@ÎÜ¡?†;,@·…¡?ª.@Û¡?^±3@·I ?šù7@g“ ?Ê>@i¡?,QB@à<¡?”ŸH@Áˆ¡?,L@ŒØ¡?ž†J@÷†£?ÿáH@aפ?-YD@g¿¤?¬1@@5q¤?”›<@"ë¤?*“=@­¥?äú=@¥?S:;@h|¤?÷y6@CH¥?k4@ò ¦?³9@õ˜§?%î<@=1¥?—V8@‰¥?·a5@g¤?Ä¥1@ ¢?Åù/@\ƒ¡?/7,@… ¡?õ’-@R~¡?Í.@¥¿¡?½È1@ÔU¡? ’5@#¢?b9@߆¢?!?@`*¢?kG@ ¢?8&L@™[¢?ŸK@D¯£?âÎJ@!¥?nãF@'"¥?&KC@Xh¥?‘â?@ÐN¥?µ C@½{¥?ɹC@HX¥?D§>@.¥?T8@›t¥?°¢6@Z±¦?f'<@¢§?ÑŒ>@˜¦?ˆ‹8@…t¥?¯7@¤?“‚3@‹¢?t‹/@—›¢?½±/@Wk¡?O9.@£o¡?ã¼-@¬š¡?kW5@ o¢?«7@âh£?½s<@‘¯£?Ó&E@§â£?¦ñJ@Fª£?"M@L¾¤?_pI@Öp¥?(ùG@0U¥?[ŠH@õ€¥?î!D@Š¥?MÊD@n°¥?E@\Å¥?ÇF?@æ«¥?¤Ã=@To¦?eì=@Ù¦?LU=@€‰§?j?@×m¦?µ:@5Ä¥?¨ó8@2¦£?8l4@=Æ£? ?3@ò£? Â/@"q¡?Ú%/@ ¢?ÉÕ/@³M¢?Aå2@±P£?ü“7@Ô[¤?¬A@OÖ¤?aZK@ꉥ?ïBK@È,¥?F@|ò¤?0F@»Â¤?ýsI@2¥?±ØF@Û7¥?›6F@€8¦?ŽÀD@q¦?©¿D@Û™¦?ag?@ï§?‡O@@Òe§?°-@@»W¨?V%A@åC¦?…B9@ìk¥?uw6@0'¤?ëô4@³Ç£?ë72@&:£?ƒ.0@`"£?Ë?1@Q ¤?Õ¦1@Ž™£?Re5@–k¤?ô}9@Íh¥?)>@æñ¥?CšA@£X¦?ÉmA@gS¦?-eB@ý¥?H@Õʤ?bãK@õX¥?I@;^¦?ÊÀG@³§?ñŸD@ÿ¨?k]A@nШ?Á@@™¨?UË@@õl©?sBD@Ê&§?°;9@Z‰¥?®6@n,@ÇÊ¥?d!*@ö§?eI)@­¦?Ñ+@ß%¦?Ð=/@T ¥?‘l3@‹¥?º°9@ཤ?’øA@D¥?­F@—U§?¥>H@V½¨?uÁH@Ÿc©?¤¢D@‘‡©?)œB@u2ª?ÔC>@«?=A@š§?û.9@/¹¦?Ãn8@ù)¦?Ó(8@‰¦?Ô¿2@ŽB¥?5˜-@ªc¥?NB*@}¥?•¡'@:®¥?'@óy¦?jý%@ÃÞ£?¦'@¹;£?Ðs-@w£?)À5@¬%¤?ã¸>@-k¦?¥D@¤¢¨?DéH@c1ª?oãF@·oª?²C@,„«?Qç<@æÉ¬?ËŽ>@t¨?"›>@]ö§?‰,9@KF§?üã7@„*¦?Ÿ3@ÙH¥?R).@'¤?Ć*@¦å¤?í '@Äþ¤?V%@©l£?ª«"@]>¢?ô,&@‘!£?è‘.@ï‚£?òx8@×¥?¢±@@àˆ¨?ƒ¶F@±¸ª?áÏD@Mëª?Ìâ@@›–«?x;@Ýû¬?à;@/Ê©?„;@¼¨¨?Cˆ;@Dn§?KÉ7@ƒÎ¥?Œ2@¥?4 /@÷ɤ?6í,@UU¤?çs&@ªô£? Õ!@»‡¢?­Ö%@O5¢?;Ù*@7H£?‚V6@æÝ¤?L]A@Nõ§?‘G@Ý.ª?IB@º±©?Áb=@<1«?;@K­?n9@ [©?&¡=@[©?ÊD9@Íë§?4F6@¦?Ù>5@—Ø¥?Ûy5@=f¥?ê.@>s¤?‡W'@~$£?o°&@º_¢?WÁ)@Ûm£?ÙZ4@ú¬¤?üæ?@!6§?’ùC@Umª?Tå?@tš©?æ<@¨Ôª?¨Â8@\z¬?ßò7@[ª?À%:@aY©?+77@×›¨?Æã7@^~§?^¾6@dC¦?g33@—b¥?;à,@ʧ£?¢*@W<£?R)@ïò£?‘‚2@É=¦?tü:@„¦?ËØA@â–©?4ý=@`ª?–Š=@‚ª?g08@Ø ¬?t 5@õ‹©? ¦7@Àï¨?œœ9@}f¨?Éz7@äå¦?à6@ºö¥?DŸ2@õȤ?à¬.@lÈ£? K,@ai¤?Q2@ͧ¦?Y£8@ìÖ¦?YÚ?@sO¨?©ø=@û+ª?†=@xª?Q*7@ö¬?h¨2@4ê¨?à7@®¨?ò8@i§?Va7@á¥?Þ¡3@éÑ¥?&£0@éò¤?%¡.@  ¤?„/@~>¦?QÌ5@v §?•Ý;@èx§?ò|@@ŠÖ©?^@@|Úª?Ó<@©«?5ä5@¸Ö§?Û@6@K^§?*Ñ4@^r¦??ü2@ùM¦?^A0@á5¦?,-@&¥?¯±.@¸¦?D4@:§?»l:@C4§?ëœ?@Ù[©?Ó±@@8åª?Õ>@´ëª?/”8@Û¦?IÞ1@©å¥?s0@…¦?*‹/@–þ¦?…¼-@_s¦?.I0@mѦ? Ž5@4ù¦?^1:@ô§?ä…=@‹©?ŸA@Iª?¼vA@{!ª?ãm8@Ip¦?ì’-@ [¦?§/.@¾ï¦?_/@9Ʀ? r0@…'§?@5@Œ«§?«}8@Îv¨?á%@@ºC©?ÜA@«8ª?þwB@ÂD©?T;@Üg¦?7L-@8§?õ-@H¦?di/@5ê¦?6@ÐC¨?Qð;@Ô¨?ÏA@Jò¨?°5E@ÆÞ©?®UB@Ë©?Cê:@`1¦?*ç,@uY¦?Ùk0@Œš¦?Õ?6@¸ê§?á :@W1¨?%?@Jب?ì C@Å©?¨@@Yí¨?ø‰8@A ¦?‡O1@®¦?§¥3@7Ó§?¤¸:@™Ö§?~ó;@`©¨?È?@º®¨?ÔÑ<@&ͨ?á´9@fݦ?b:@Uß§?B =@%¨?ò=@£"©?«ëA@ó0©?8DB@OD©?j=@]s¨?sF@³ ©?ÀÿC@œ•©?ßfB@"©?+ÖF@깪?¥4C@[÷©?‚G@|ª?µE@@I«?=J@²@¬?µ#I@è«?J@I@<­?øL@‘®?%‡M@¤A®?•ºH@E|¯?õ©J@W¬±?8tK@ÞÏ‹?ed@9Œ?Jug@cŒ?ÒÕf@~?¤‹a@èJ?‰ëY@$§Œ?ÈõN@"AŒ?ïB@K?TÌ:@:&?Å©7@Çp?¡õ6@Á?!Ò1@•Ž?Jà0@Zº?Iþ4@¹6‘?5Ö6@`:’?‘‡7@Γ?ƒ7@9g”?\\7@‰”?¡D8@MG•?ÆA8@/ú•?Äå9@À–?è;@Pð–?^<@~–?cá?@ÕÇ–?;·>@$ —?®ö=@9—?QS=@å—? ÿ<@µ˜?H=@òI™?i;@æÉ™?>J:@©Žš?ù¿7@j›?ºÐ6@B·›?„í6@Ítœ?¾B9@’·?LÕ;@Þß?¼KB@猢?#íK@¤?ËR@÷B¥?.©P@Ìk¦?BK@.ª¨?Z‹E@·àª? ¤<@R­?üƒ6@oƒ°?ÖÙ2@š2²?Áô0@uϳ?d3@´?. 6@o¼³?¢6@´?dÛ7@Å´?_*8@ô µ?Ðÿ7@›@¶?W 6@&‡·?Û­.@¯¯·?Q˜'@ܸ·?ý%@nð‰?òZ@/Š?„ÈZ@…)Š?E[@rU‹?!{W@T“‹?;œS@ï§‹?/“K@YµŠ?¢?D@ökŠ?t;@¾U‹?þ4@ù¤Œ?’Q/@†ˆ?‰Ç-@»FŽ?/+@­!?ÝÎ*@tŒ?›J-@ƒ‹‘?ÔN-@éÙ‘?}Ò-@L’?ë«,@&Ñ’?D&,@/'“?é-@ý¨“?÷l-@¦>•?|•-@ŠH–?÷/@Á–?Åð1@0ô–?m|1@Ñ¡—?áÃ0@üX˜?Õ 1@(™?w1@ƒÂš?S©1@£›? 71@•—œ?{0@£??¡.@ÝË?'l-@ ¡ž?;Ï,@‰mŸ?óD-@S‚ ?¿.@¢?†0@_\£?•‡3@1¥?|š8@ò¦?£ý9@â7©?á:@ëª? #6@K­?¼i0@ʯ?«(@5 ²?z¡#@U0³?-"@ò‡³?kŒ$@³»³?¢a'@ å³?ò™'@µ?Ö'-@²§¶?3@(¸?H€6@D¹?þ4@€Ä¹?È-@À>º?gþ'@Ÿ‰?„`Z@õùˆ?7@X@ŽÔˆ?ž»W@Y]‰?Ï@Y@^ô‰?Q›R@!Ò‰?ž¢M@Í™‰?¢C@°‰?¸£?@kˆ‰?Ö‰;@X‹?Q÷1@š?«n*@U†Ž?~)@Œ±?å“&@$Å?ì3$@˜í‘?ž–#@僒?%.&@âÎ’?ªG$@“?ÞÀ$@4u“?ú '@ç+“?¸e'@¼Ì“?õ'@ùZ•?,ó&@&E–?©U&@´¸–? q%@ÉN—?`+&@½+˜?¢'@Yd™?Û'@\J›?€'@2»œ?•-(@äø?Є'@ð9Ÿ?5ô%@¶- ?^&@>õ ?„k%@Ý¡?}Ï%@Èm£?ð~&@æm¤?*±&@¨Š¥?|4(@Ð/§?ˆ£(@ Ç©?¯z(@3Þ«?™(@Õy­?Sº'@«Ò®?èy%@¦ü°?œ>"@‰³?ÞC@Ô´?÷¦@ ´?á”@ ‘´?P³!@·¶?©?)@3Ÿ·?€ï1@©×¹?þç8@ÚP»?Z/9@uV¼? ¸4@öZ¼?^_.@R›ˆ?îZ@&ˆ?ÝÏW@æ‡?³ÌW@N™ˆ?+IY@ýúˆ?–X@³¼ˆ?~áY@+ˆ?àíR@œ©‡?ú)L@ôZˆ?ŠòG@¶¹‰?ZW=@„G‹?Þb2@g?œó,@4Ž?ëï*@çÌ?;À$@'‘?­ @_ ’?¤¿@e.“?},@‰`”?¥@…Ý•?} @)Ò–?ôa!@Mé–?!M$@Û—?+##@€˜?,ÿ @²3™?/@ôu™?Y÷@5š?žö @<›š?D­!@‡@œ?_·#@¼Û?¦#@X˜Ÿ?æ @Ü%¡?øŠ @?®¢?Œ@ߤ?ªk@f¥?<Ò@‘å¦?Gm@ƒ¼§?ÆY@…»¨?Ì @a%ª?¶\ @Š­?`§@ûk¯?0«#@œà°?©Ñ%@ë÷²?5‡(@º:µ?U™*@Va·?Ö*@à€¸?÷©)@Ë‹¹?“A.@±¥º?­L4@|л?Ù<@Îv½?ÞXA@Ûð¾?¢÷A@Ê€¿?ûÊ;@;¤¿?Ä•3@_%‰?sF`@`£ˆ?þlZ@ˆZˆ?Ù°‘?ȃ&@2â“?Öø"@±$•?%=!@ G–?Œ @T¿—?ö@„œ™??º@“¸š?ª€@`›?s‘@]¤œ?Ä@³£œ?µ@&4?ß@au?ê´@uÑž?E@2ª ?f@Ü¢?‘@–m£?ø @œT¥?JI@=i§?Žˆ@šê©?~4@‘‹¬?k¬@Œ­?ë€@Z@®?c«@7¯?“Ö@ æ±?ïL@´?E"@< ·?Äã*@¡Ž¹?LÀ2@Ùÿ»?ôb7@¦š¾?ÄŸ:@ÿö¿?žÀ>@/ÝÀ?'|C@¤qÁ?°WG@ÍzÂ?:I@½ Ã?„G@¨•Ä?®´@@úÕÄ?ô·6@lXŒ?ÿfc@‹?z&a@释?Á‘^@‚›Š?­ú_@8‡Š?½a@éÇŠ?ëBc@(‹?ymd@“½‹?pÊi@‚‹?À]d@nÚŠ?¤9]@þŠ?ëúV@•lj?`êM@òÔŠ?ž@@NåŒ?):@{ ?Ít8@¤Û‘?^53@Ü•“?Ñ-@ë–?£¿)@ó—?»æ&@ ¿˜?«"@ëÄš? ü@r‰œ?*˜@€¦?Nq@¤ž?¼Í@<> ?P@þ­ ?§@¥y¡?f@Š3£?µ@´¤?ÌÒ@óF¦?¼.@×§?Mã@¥©?Í*@æí«?sÝ@Y®?ôà@ýܱ?~Œ@î³?°g@ô?÷ @^ĵ?ƒ@-¡·?ŽÀ@q¯¹?'@´Ó»?Y 1@³Q¾?#”8@àÁ?{í:@´lÃ?GÜ?@RkÄ?ð9D@@¤Å?¾H@tŒÆ?i/G@ìÇ?éD@‹ Ê?nÿ=@<Ë?è6@4Ž?(ea@:t?¥Lb@EZŒ?'¤`@ÊÝŒ?¯5c@z?bîd@äÿŒ?Ùd@Á¾?žúe@Ç­?p6l@ɧ?ƒh@ŸÉ?Ó£f@ñ’?øia@ u?Ö»]@B?oS@€?JjH@ÖÏŽ?¤è@@˜™‘?´ø>@ T”?øß:@1f–?„ê6@ï˜?r¡2@Ájš?Ñ50@Æ4œ?G+@¢åž?‰{%@D¼ ?%@ù¡?Ï%@ùæ¢?ç:$@¤?o£@ðª¤?ª@÷e¥?ã@패?&Y@oª?»S@2|«?’¿@\­?—Ã@ù¯?k(@¼¿²?@.µ?O@@P·?“i@ð’¹?ë¢@pk»?ÏÓ!@6Ò¼?->(@¸Õ½?yq-@®‚¿?«1@k‘Â?ïk2@¼Æ?µ¸4@=¤È?’«4@NÉ?’5@)ÐÊ?ò4@·ÙÌ?ž™2@WŠÎ?Þ™0@¢•Ð?Ì-@Éd?Fyc@]»Ž?óPc@j„?h:`@ðQŽ?[öe@áZŽ?¯Vg@ªQŽ?[g@eL?DŸf@ëŽ?Óçi@-?1 g@m»?ÿ-i@íµ?Mœf@¬Ô?­c@_‚?;ÿ^@JÐ?aCX@&ô?ÍÒK@åf’?RwG@¾”?¢ A@éÏ–?3X?@&í—?k?@õÊ™?ìJ>@”[œ? Ô:@ûŒž?–6@ò¡?]1@ZŠ£?¼Á-@£¢¤?>á+@×¾¥?Ëœ*@™¦?æ&@ï§?Æ)#@ÎȨ?`A%@ó²«?Œ#@þ ®?à#@t†°?’@'@–B³?ê'@謶?I))@º?«º+@ÂÖ¼?yr*@mÀ¿?Á–)@¬sÀ?ŠÈ+@šîÁ?Qm,@€ðÃ?+¾,@F‚Æ?fß*@AçÉ?÷a*@ƒtÌ?¸£)@(IÎ?V…+@Ò‰Ð?ÝK.@¥uÒ?)Ž*@ƒÔ?8'@Ä‘Õ?­ç"@¤Ÿ?…¼f@F?Í`@B?jZ`@G ?~–c@Ž?­Êd@W‹Ž?€Mc@“Q?uÞb@—:?²¯e@i”?k&c@³Ž?†Sh@õ?€g@N‘?Wëf@’?¸¢d@µ “? ùa@ˆù“?8¨W@”?é§Q@›8”?ãK@ÿu•?–zC@ÃT—? k>@,[™?Wõ>@Ô"›?/=@ú?ûÂ<@øŸ?t8@Ùü¢?‹4@\ô¥?1@u5§?eB.@óp¨?–0@üñ©?$'/@¯«?BU.@u®?í/@ª³±?÷ú0@b4´?hš2@Ã%¸?·¡6@IÖ»?…—6@¢¦¾?2Š3@BDÁ?á-@ÜÄ?ˆ"(@ÊõÆ??$@žWÉ?œ´"@ÒÍË?×!@‘ûÎ?­î@nºÐ?* !@Ÿ¯Ò?Ï×"@0Õ? F#@Âb×??þ!@5?Ø?_ƒ @ÒÙØ?¢Ü @û]?¸Ÿk@C?b@¸ôŽ?|¡_@ÃhŽ?¨^@xª?Í4]@à°?etZ@Ø…Ž?ýY@xN?¾u_@‚?œß_@ŠQ?ä²c@yû?í-d@tˆ‘?Ðg@WÅ’?^ g@Ì ”?^Ðd@Fæ”?Vb@6•?ì\@Ï™•?q²U@y•?Ê O@ܱ•?p D@ t–?æe<@J™?¿t9@‘V›?Õc9@ ž?5r6@Ùµ¢?Ã5@Gs¦?‚4@`Õ©?å1@ ­¬?¨}/@5£­?Fd4@L¯?³{4@Wª±?'_6@Nb´?àá9@&;¸?^9@,°¼?BÔ5@×ÿÀ?eï.@ŸrÄ?÷ˆ*@Q#É?88$@Ö_Ë?qâ@¤$Í?bß@š˜Î?¯@ØñÏ?@läÑ?ƒ]@èNÕ?*@ÝÄ×?Î@þ¥Ø?­°@ìÙ?œ$!@QkØ?Ä$@CÍŽ? ¤l@1ƒ?Ò’e@ÝnŽ?-T_@hG?„hW@c!Œ?sT@Ïp‹?"ŠN@‹?kP@pŽ?ŠÒX@Î*?¹ \@8?µ…_@а?6b@£˜‘? ·d@©“?šØc@ø®”?ÔEb@ÆŠ•? g@bJ–?©ûb@S3—?›_@–—?ÈiW@â—?©ðL@u­—?BóA@Ô­˜?;@›š?Ñ9@Ÿ²›?Àû6@½Åž?>Z8@Jì£?`¢3@k¨?‚3@Ú@¬? ’3@e¯?Gï5@U3²?õž5@YRµ?U‹6@Øw¸?o 7@/„¼?Þ1@å%Á?ŠL+@³Å?$@ÞÈ?%!!@^]Ê?/3@$}Ì?+£@*úÍ?@©¸Ï? @í(Ñ?ðü@R|Ó?g£ @¡hÕ?Þ?#@c×?Ú'@Ù?îú$@£W×?8ö&@Ô>Ž?Çj@1±?Og@hâŒ?Ǽ_@"ôŠ?ý4S@aU‰?D¦L@pB‰?±E@]‹?O¹G@?¯sQ@ÇÓŽ?crV@0*?ÈX@`¼?[@Õ’?sq^@‹²“?']@1"•?ü\]@ ¬•?ÕÓa@^¥–?žJb@- ˜?·`@°™??\@1ò™?SU@¬?š?‰sK@a›?”?@K‹?ÕòE@€ÁŒ?–àK@ÊŽ?ÿãP@º“?¸ÊJ@%Z?9æK@°‘?ÉQ@ò#“?Q@R@² •?«W@Ói•?XK[@;–?5½X@dt—?íHW@÷z˜? W@Íš?DDV@Z¥›?ÐìU@Ñ/?ê¾T@±“ž?9P@ ¹ ?¶÷N@,Ø¢?žI@á.¤?AŽA@aq§?oé9@³/©?„½5@粬?Hþ4@ÓL°?Wª6@2-³?§Œ7@8¸?p•9@‚ã¼?õN5@ÆÁ?šú2@ÍÅ? a1@ŽÉ?¶®/@nTÌ?¸s,@c!Í?j%,@¾;Ì? k1@SÌ?‚ì3@0§Ì?®¬8@±©Ì?ÞÉ:@|µË?¡ä;@X½?¤PX@èÐŽ?N[@FEŽ?¹[@nõ‹?ž^V@Iß‹?E×L@…ZŒ?kPJ@”øŒ?=ûN@1„Œ?¨WJ@ Ž?sßC@-?8=@&"‘?B¢C@ É?_G@šú’?J@iß”?8ÚP@dC–?ùóV@kÛ–?-åU@£z—?¢:U@g}˜?ž’R@Åo™?.pQ@E!›?ûQO@?lûN@dQŸ?ðL@Ò!¢?S¼M@,¤?LœN@!¹¦?Q4I@º‘©?B@õV«?¢¶>@¸*­?šM:@$ů?àö;@χ²?‡:@ñŶ?H<@¶»?—=@ƒñ¾?Kh;@ÃüÁ?0ˆ;@®¿Ä?-:@ÓÆ?ž 7@O>Æ?±3@ÊÆ?§5@[mÈ?Xô9@¨É?E½:@ÚÈ?Æ?@ʾŽ?ÅÀS@³=?·ÃX@n?`âY@ÝŽ?K Y@Ó•?ˆ S@ìÀŽ?YSQ@”ÄŽ?ôT@܉?²FH@‚®Ž?T%;@¨Ë‘?%ž5@J’?.=@Bð‘?ž>@Ûb“?¥€=@’V•?|C@c)–?ÕpM@2&–?í2R@·¾–?¶ÎR@7í—?ÄvO@J™?6rN@­ ›?u~K@~?P-J@EåŸ?"çI@.ì¢?ÞšK@0a¥?o"N@®C¨?ƒL@I%«?b)H@MÒ¬?-E@‘­?²$?@D²¯?0a<@Þ²?W}:@Kµ?÷ö:@x©¸?Ky9@»?• 9@ p¾?ì18@âëÀ?†5@«ÒÀ?sD1@êoÁ?I.@ð¶Â?í/@MÐÄ?Žl3@[aÅ?Õ‹6@ò´?¶TT@ ‘?í¬X@cò?w‰Y@S2?WFX@È?WQ@m?ÅŠU@Qä?þR@Ií?k‹G@ôE?> 9@`˜’?69@âÜ’?cg9@׌“?K7@”?ò¸5@;•?¦:@£i•?þ#B@ •?á}H@h –?ÁºL@vÀ–?çÜK@Ø?QM@¹ÿš?´K@Tpž?àM@ò ?Å(M@þj£?-TK@èd¦?Ù˜K@5,©?h‡L@ô}«?Š,K@Š­?›–J@÷Ô®?m¡C@›¯?­p?@g‡²?%Q<@ *´?—º8@¸©¶?Mq5@þG¹?Ú÷/@´;»?S›1@7˼?·o.@ã¾?£ &@ãaÀ?O6'@ðÁ?2G+@mÅÃ? â0@PG?X W@‘‘?{–U@Çà‘?ÆšZ@1’?!]@&‘?´ÃS@¢Ù?¼òS@>ö? ‡N@—‘?RŽG@Ž’?Í6@@(“?o›<@Ô_“?©4@ô“?±A-@Ì”?˜0@zý”?Ñ—2@ƒq•?ãW8@‰É•?Ü=@©,–?;WD@ꜗ?å4H@}]™?30I@¨›?´ R@°fž?(‘S@D¡?xeO@ç£?5¨N@–Ÿ¦?ÆoK@AÙ©?1kH@`Z¬?˜=I@™d®?T³G@àŸ¯?ïkF@6/±?ŸOE@ñ´?P>@ÿµ?«û8@s,·?Ó{3@g¹?š-.@º?„Í.@ ¼?»4*@§ÙÀ?P%@’[Á?šÄ*@dðÁ?¬]2@X ?­ŽS@ò%‘?LU@П’?S][@Ø~“?€Â\@ñ’?zÂW@ø ’?„^R@¦‘?¢=N@ 1’?ë"H@#¦“?ü·B@p§”?´=;@©½“?K=1@êe”? -*@hÊ”?'™,@?A•?@3@oŒ–?PJ7@4—?÷Ð9@ ›—?©q?@ ™?W°?@*Kš?»†D@¦<›?ÂsK@Qd?ˆO@õß?6€P@Ùr£?R¶N@x§?–ŸM@z©?x©H@ y«?aˆG@™%®?c¡D@m°?<5E@ýe²? oF@ä‚´?¬À@@)¥µ?Ù<@ÌI¸?ó43@hLº?Ýâ.@¢Ù¹?u1@N@¼?¤é,@¤•¿?•]+@£ÚÀ?ñ.@‰?ÑÕN@.J‘?7¼T@F“?Ô[@¿”?Ôš^@¸ç“?ž!^@æ“?ÍV@pE’?ýiN@(ç’?mG@œ@•?ÌFA@bî•?Žs:@j¾”?¼·4@åQ”?Ô—/@éÏ”?á/@}C•?C+3@æ–?W*6@2f˜? J4@ôÚ˜? Â8@,u™?°„7@âTš?}L=@Qj›?‚¸D@ªœ?¸öJ@íŸ?ÀP@ú¢?QÅK@…¿¥?|M@ ¨?Ë\K@­°«?G@Â]®? ÂA@X°?"µB@“ò±?F@¡º³?1¢C@ ý´?û°>@$•·?/w7@MUº?’J4@ Wº?$3@^³»?øé1@§g½?Ád3@`A?É€M@|’?³òR@xÄ“?„­\@ÇË”?L5a@,S•?ïe@û[”?ªœ\@{Y“?~¨R@}y”?^E@ÐW–?/<@ñ@–?sÙ7@Åë”?y 9@º”?ÂV4@íÓ”?ÃÜ/@À•?Ü6/@>3—?k3@tV™?ç1@9s™?Ä36@™?X6@^š?†9@”›?èˆ@@=Dœ?…/E@f@ž?8ãI@w’ ? J@§s£?ø2M@i€§?CK@F«? J@Ü=®?öB@•°?”A@Os±?ãC@ÃH³?‚—B@“´?N_@@C8¶?ëK<@n¸??9;@¿ƒ¹?y×8@¶º?CÑ9@9³?zðK@ñ‘?+U@‡“?“‹[@¥ù“?ôc@^•?‘[e@ÅG•?;Db@Ät•?wU@Gø”?î•B@ÈU–?‘28@£…–?°¹8@ÿ–?|`;@3ã•?ƒ:@æv•?å…1@}¶•?£¦.@\u—?¦ý0@~o˜?u~1@Ö˜?%2@fñ˜?Ñê4@qš?²ê9@m›?fT?@­¨œ?,=C@‡xž?¨F@kŸ?ï„F@Œ¡?QðG@Ç>¦?;@˜+—?S’7@>ê•?¬3@€â–?0 0@ž —?øÏ2@µ˜?ܰ2@º}š?¸W4@ÑŸ›?ˆâ:@Àœ?¢ŽA@r¯œ?pýA@8ž?ýlD@ Ÿ?£ºG@±3¡?ZH@ZǤ?ÄsG@Mب?ò$H@Œ‹«?ÎJ@U¢®?5þK@£Æ°?3êI@òr±?‡ûF@ŒÊ±?¦«D@‡¦³?ÁÝB@fµ?V¿E@8²?†“G@Bì?rjS@rÏ‘?²C^@(z“?C_@!£”?X:_@§Ú•?ÅÄd@r—?ÐÂT@Õ’”?©?@ÍF–?°¤2@÷$˜?óŸ0@¾o™?3ª6@ìÜ™?~Œ<@Ò˜?l›>@‹ª–?…9@ [–?o%2@xy–?ø2@AX˜?O5@ïKš?õ<7@C#œ?©<;@ –œ?·s@@Ø?t@@@¾ ž?ŒG@ŽÖŸ? ‘H@¡?QGF@³Å£?žÜC@½„¦?6PE@79©?+âH@hµ«?Ý|M@hû­?4L@Sͯ?¿žI@v6±?ÑI@s³?yùF@Ö?„ˆB@±š?QDN@HÓ‘? ½\@“.“?_R\@Δ?$Ä[@O–?ÏÏb@âï–?-ÎS@Ëì•?ïL=@¿€–?yØ1@H ™?ùW,@”z™?V1@‡™?øT<@™õ˜?ÃæC@f×?'î<@A –?NÊ7@Èì–?n3@Éj˜?Ee5@'š?*É8@_+œ?I…:@ªªœ?ê>@Ùè?Â"B@cšž?ËÖD@  ?(D@6¡?^C@c£?bC@þ™¥?›ù@@âx§?ÔC@;Ý©?*G@G¬?zUH@†a®?ž K@s%°?¨O@D ?Yb?@è?ûQP@9Ï‘?z˜[@ì“?‹ÛX@a˜”?DõY@O^–?¾D`@¨—?¡ïQ@¼‡–?Å?@‚–?8 1@žN˜?üÁ)@g8™?-@‚™?ž¿;@‹™?±A@™#˜?¼6B@3<—?À<@ëK—?§$7@¦p˜?'T5@Úš?ˆ7@Öt›?Áà:@7??ö‰?@§ž?ûqC@bŸ??A@^¼ ?´žA@†¯¡?¯tF@8¤?kE@¥?ƒù@@³#§?6ž@@s©©?UC@Þ©ª?yUG@µ­?„.M@–Ï?Ô>@Þ~?-iM@ÉÅ‘?¸*Z@~Ç’??\V@¿”?á¡Z@oý–?·î^@a˜—?8ËN@n–?Â<@c—?Gt1@£®˜? +@ /™?q .@‰ž˜?³è5@,K™?•¥?@ý™?€&D@¬š˜?Ây@@”¦˜? L9@¢™?ëz5@Cš?p[7@±ˆœ? É8@>ž?d@@a›ž?£ËB@φŸ?FC@ ¡?BFD@©’¢?ö8J@r¤?¾yH@/J¦?îŸB@‡Ä¨?×Ý=@Äa©?hëB@I+ª?F I@Í>?ë=@Ñ?Õ9O@âà‘?‘­X@ÍŽ’?‚kX@›•?/^]@GЗ?µZ@!—?g"K@Mµ–?Y¡:@G‘˜?Ó¼3@v@˜?—ò-@%˜?øW/@Þ;™?‰5@ÃRš?Ò$=@™š?mYB@ËŠ™?á«@@OÌ™?H<@¬™?£ 7@d ›?Ìr5@*?bž7@ŠN?+Ì?@ëž?GuA@3ˆ ?ĶB@¶ƒ¡?·D@dê¢?ñsG@[Z¤?}ÖE@Ê\§?îæ>@ÓÆ¨?sÓ@@ý~¨?ò$A@ë+‘?ÙB@ÀË‘?éïQ@â=’?¥]@´Ô“?>¾V@­—?g^@=˜?¢$Y@ï…—?¸ŽH@¡Ý—?$M=@¨\™?6@Ûf˜?&ï1@sª˜?€01@½Î™?Ͷ2@÷›?f£:@G@›?XEA@›?ÐŽB@%К?"C?@@]š?¥a9@ ¾›?Äý4@íIœ?§ã6@Gž?Iî<@’ÅŸ?üÙ>@Nc¡?²A@Ë®¢?OôA@ó¤?åÆD@“Ä¥?™@@µn§?<Ä@@€R¨?· A@üã’?I4I@Àz’?~ÿW@Jæ“?ܧ\@W,•?‹TV@}Ò—?\%[@Gɘ?VöV@^`˜?j+H@O`˜? »<@!ö˜?ÖÊ5@e°™?t‹1@Ù™?^ 1@Fºš?æ3@tÆ›?ë*:@Íœ?T›@@·œ?±¶B@œ?>iA@÷ë›?À¿=@»0œ?­a7@ ?,Ý5@ófŸ?²:@ñÑ ?¦{=@¶D¢?,7>@Å ¤?¹º?@óP¥?A@r|¦?A¥@@­æ¦?ÁC@¥S“?ÛiP@º}“?KÖ^@YÞ”?øç]@ío•?O»R@߀˜?¨[@ò¾™?ùôS@`U˜?â“H@å¹—?x’;@Ù1™?ë<3@‰Dš?fy1@é[š?< 4@¼š?dD4@fñ›?›µ7@_±œ?$Ò;@H^?¤á?@Úî?×ED@ûé?ÄJA@ß«?ð¢:@þŠž? F7@hK ?Ï<@pN¢?ØÔ<@ ç£?õû:@šþ¤?=@û¦?¶@@µ˜¦?iÑA@ÁΓ?`CV@ด?ÈNb@ë¶”?0[@>`–?ƆT@¥B™?o^@%“š?ôTT@a6˜?ÓªA@Š%™?(‹6@Eš?ßA2@fš?+Ï4@¾ š?ý›3@)R›?6_3@dLœ?´¢1@R?Ö4@¯¡ž?f>=@ø+Ÿ?^·D@Î/Ÿ?׊D@Ÿ?¶ç=@»ëŸ?HY8@ å ?D:@m¸¢?>Ô9@é¤?Ò;@Q}¥?_œ?@à3¦?¦B@?e”?òÞU@0É”?83a@‰I”?žZ@sK–?ލX@6'™?îv]@´‹™?'jP@šr—?&>@ ˜?¢Ý3@f©™?M+2@dš?½ù3@™›?fÏ5@|œ?Ûâ1@êìœ?.@¨?ÑÉ1@ß‹ž?ãá8@ØŸ?“•C@®y ?ÒÑE@%‰ ?Ê„?@N° ?;@锡?¯ 8@¶Û¢?1i7@פ?¸ ;@Àd¥?WA@…Å”?»Z@tl”?¤a@ÏД?ž¢W@îX–?ü‚V@$‹˜?hÈ[@¿)™?ŠsL@æØ–?mi<@µä—?ñ2@Ê‚™?Á®2@Þˆš?»(8@mæ›?ür9@H?”Å4@0?ä .@Êù?ÿ.@.ž?>9@´ ?qUA@‚6¡?PÍC@'_¡?kñA@Ö¡?É4=@»á¡?49@¾Ô¢?§5@¸’¤?1š8@2•?ÿF`@}+•?§@b@Uq•?øiW@+™–?ü©W@2’˜?гZ@¯l™?uèK@¤n˜?ñÿ>@ÒŘ?®:@U²š?Á:@Õ¡›?Ï=@·‹œ?»‹;@Cê?\Û3@¿õ?ëK/@+v?µ2@o´ž?–7@~‰ ?Ù<@½ ¡?ýB@Cj¢?D D@¿™¢?pB@@||¢? ]:@ Ù£?ÿ4@?ú•?´‡c@'½•?|_@†Y–? %V@Q—?sU@Hð˜?Z@6š?wêR@dd™?RD@#°˜?8O@@Ér›?ÄÐ=@Wœ?Lå>@Q ?C=@ª;ž?bË6@{9ž?H5@V)ž?™µ3@õfŸ?ø95@¯o¡?–¡;@¹ä¢?ÀC@ï³£?ÕHF@…ë£?æâB@¯Õ£?@g8@×É•?=}d@9Ç•?Jß`@µ8–?ûÃY@F˜?šV@)å™?«}\@š?X†S@µÅ™?ßÉC@»˜??µ?@ò›? ÃB@ó'?RƒB@¥ö?( >@ž?×û:@Y°ž?çë6@›Ÿ?õB6@6(¡?¸~7@w¨¢?ßâ<@ؤ?xÄE@¸¥?¾I@§¦?DÏA@¨™•?{]_@ãÁ•?’_@’E–?¬†W@s¨˜?NV@š?yX@šàš?¥êN@¿™?´»B@û™?\B@”œ?4rE@—o?×F@"Ÿ?ë’A@-ÙŸ?ì=@a ?&‡>@>š¡?T<@£L£?Ë@=@Õ£?—ˆA@y£¥?ÆG@÷Ħ?ɇH@GÆ•?òW@×þ•?Ü\@ò–?zBY@h‰˜?¿S@/ð™?Í…T@]_š?ÄsM@%É™?°G@ä™?ßtF@œ›?LE@Qw?/ŸG@J¹ž?æ“G@Ü4 ?#ºD@d¡? XF@æï¢?ºGE@Õ2£?øcB@Gü¤?ÙyE@N@5¤?±õM@-£š?œGW@‡Ðš?È!\@L¹›?_Y@¤›œ?*‹V@‰tœ?ÖÞ[@lE?!IU@SÉœ?#öH@Õ ?®G@ì&Ÿ?¯zJ@ ¶ ?ML@?¢?­%L@X›?³”T@aœ?Ì\@™4œ?¤‡X@_²œ?=²V@wœ?Ã@Z@ÅE?Á¬M@V¦?D±D@ˆ?ËâG@š<Ÿ?&³K@µ¶ ?ÇßL@žuœ?rQ@ׯœ?PRZ@}¤œ?þãU@ uœ?pMS@´œ?76T@¾@ž?CJ@Tž?% G@ïô?DMI@Õ½Ÿ?ÖsK@Ìð›?†MU@ Šœ?8ù[@Z™œ?AlS@Ἔ?¹V@Fž?IæS@ïzŸ?×§J@£œž?·ãJ@mŸ?KL@ pœ?x¼Y@ñŠœ?n/\@ç ?¤VT@û?ÛŸY@úgŸ?ä”U@ÍŸ?ÑP@O¸ž?±PQ@?6?ÑUS@1q?›³X@ªž?¥GX@Ôž? ã[@SŸ?~ØZ@BUž?*ÿR@Qž?BFO@Èá?ß‹Y@Åž?Z@lž?Z/\@ž?†dY@Í.ž?àïK@µì?CðX@͸?ñ…X@t?Ô²V@kž?3ôS@ó2?+iY@9Úœ?áY@?T?\T@ Ýœ?˜É]@ñ˜œ?'W@CiftiLib-1.6.0/example/data/Conte69.MyelinAndCorrThickness.32k_fs_LR.dtseries.nii000066400000000000000000031443501373715117300274060ustar00rootroot00000000000000n+2   îð?ð?ð?ð?ð?ð?ð?0Xð? º ConnDenseSeriesV ParentProvenance Conte69.MyelinAndCorrThickness.32k_fs_LR.dtseries.nii: c7c_dev -cifti-convert -from-gifti-ext temp.gii Conte69.MyelinAndCorrThickness.32k_fs_LR.dtseries.nii -reset-timepoints 1 0 ProgramProvenance Workbench Version: Beta 0.84 Qt Compiled Version: 4.8.3 Qt Runtime Version: 4.8.3 commit: 8c4ad1f790c1b5e0e912891e37e272118613b9c6 commit date: 2014-02-28 15:32:58 -0600 Compiled Debug: YES Operating System: Linux Provenance c7c_dev -cifti-convert -version-convert Conte69.MyelinAndCorrThickness.32k_fs_LR.dtseries.nii 2 cifti-2_test_data/Conte69.MyelinAndCorrThickness.32k_fs_LR.dtseries.nii WorkingDirectory /mnt/myelin/tim/cifti2reference 0 1 2 3 4 5 6 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 235 236 237 238 239 240 241 242 243 244 245 246 247 248 289 290 291 292 293 294 295 296 297 298 299 300 301 342 343 344 345 346 347 348 349 350 351 352 353 394 395 396 397 398 399 400 401 402 403 404 445 446 447 448 449 450 451 452 453 454 455 495 496 497 498 499 500 501 502 503 504 544 545 546 547 548 549 550 551 552 592 593 594 595 596 597 598 599 600 639 640 641 642 643 644 645 646 685 686 687 688 689 690 691 692 730 731 732 733 734 735 736 737 774 775 776 777 778 779 780 781 817 818 819 820 821 822 823 824 859 860 861 862 863 864 865 866 900 901 902 903 904 905 906 907 908 940 941 942 943 944 945 946 947 948 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3087 3088 3089 3090 3091 3092 3093 3094 3095 3111 3112 3113 3114 3115 3116 3117 3118 3134 3135 3136 3137 3138 3139 3140 3156 3157 3158 3159 3160 3161 3177 3178 3179 3180 3181 3197 3198 3199 3200 3216 3217 3218 3234 3235 3251 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 7940 7941 7942 7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8028 8029 8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 8077 8078 8079 8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109 8110 8111 8112 8113 8114 8115 8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233 8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260 8261 8262 8263 8264 8265 8266 8267 8268 8269 8270 8271 8272 8273 8274 8275 8276 8277 8278 8279 8280 8281 8282 8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 8345 8346 8347 8348 8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 8361 8362 8363 8364 8365 8366 8367 8368 8369 8370 8371 8372 8373 8374 8375 8376 8377 8378 8379 8380 8381 8382 8383 8384 8385 8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398 8399 8400 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 8411 8412 8413 8414 8415 8416 8417 8418 8419 8420 8421 8422 8423 8424 8425 8426 8427 8428 8429 8430 8431 8432 8433 8434 8435 8436 8437 8438 8439 8440 8441 8442 8443 8444 8445 8446 8447 8448 8449 8450 8451 8452 8453 8454 8455 8456 8457 8458 8459 8460 8461 8462 8463 8464 8465 8466 8467 8468 8469 8470 8471 8472 8473 8474 8475 8476 8477 8478 8479 8480 8481 8482 8483 8484 8485 8486 8487 8488 8489 8490 8491 8492 8493 8494 8495 8496 8497 8498 8499 8500 8501 8502 8503 8504 8505 8506 8507 8508 8509 8510 8511 8512 8513 8514 8515 8516 8517 8518 8519 8520 8521 8522 8523 8524 8525 8526 8527 8528 8529 8530 8531 8532 8533 8534 8535 8536 8537 8538 8539 8540 8541 8542 8543 8544 8545 8546 8547 8548 8549 8550 8551 8552 8553 8554 8555 8556 8557 8558 8559 8560 8561 8562 8563 8564 8565 8566 8567 8568 8569 8570 8571 8572 8573 8574 8575 8576 8577 8578 8579 8580 8581 8582 8583 8584 8585 8586 8587 8588 8589 8590 8591 8592 8593 8594 8595 8596 8597 8598 8599 8600 8601 8602 8603 8604 8605 8606 8607 8608 8609 8610 8611 8612 8613 8614 8615 8616 8617 8618 8619 8620 8621 8622 8623 8624 8625 8626 8627 8628 8629 8630 8631 8632 8633 8634 8635 8636 8637 8638 8639 8640 8641 8642 8643 8644 8645 8646 8647 8648 8649 8650 8651 8652 8653 8654 8655 8656 8657 8658 8659 8660 8661 8662 8663 8664 8665 8666 8667 8668 8669 8670 8671 8672 8673 8674 8675 8676 8677 8678 8679 8680 8681 8682 8683 8684 8685 8686 8687 8688 8689 8690 8691 8692 8693 8694 8695 8696 8697 8698 8699 8700 8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 8732 8733 8734 8735 8736 8737 8738 8739 8740 8741 8742 8743 8744 8745 8746 8747 8748 8749 8750 8751 8752 8753 8754 8755 8756 8757 8758 8759 8760 8761 8762 8763 8764 8765 8766 8767 8768 8769 8770 8771 8772 8773 8774 8775 8776 8777 8778 8779 8780 8781 8782 8783 8784 8785 8786 8787 8788 8789 8790 8791 8792 8793 8794 8795 8796 8797 8798 8799 8800 8801 8802 8803 8804 8805 8806 8807 8808 8809 8810 8811 8812 8813 8814 8815 8816 8817 8818 8819 8820 8821 8822 8823 8824 8825 8826 8827 8828 8829 8830 8831 8832 8833 8834 8835 8836 8837 8838 8839 8840 8841 8842 8843 8844 8845 8846 8847 8848 8849 8850 8851 8852 8853 8854 8855 8856 8857 8858 8859 8860 8861 8862 8863 8864 8865 8866 8867 8868 8869 8870 8871 8872 8873 8874 8875 8876 8877 8878 8879 8880 8881 8882 8883 8884 8885 8886 8887 8888 8889 8890 8891 8892 8893 8894 8895 8896 8897 8898 8899 8900 8901 8902 8903 8904 8905 8906 8907 8908 8909 8910 8911 8912 8913 8914 8915 8916 8917 8918 8919 8920 8921 8922 8923 8924 8925 8926 8927 8928 8929 8930 8931 8932 8933 8934 8935 8936 8937 8938 8939 8940 8941 8942 8943 8944 8945 8946 8947 8948 8949 8950 8951 8952 8953 8954 8955 8956 8957 8958 8959 8960 8961 8962 8963 8964 8965 8966 8967 8968 8969 8970 8971 8972 8973 8974 8975 8976 8977 8978 8979 8980 8981 8982 8983 8984 8985 8986 8987 8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 9015 9016 9017 9018 9019 9020 9021 9022 9023 9024 9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 9052 9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 9100 9101 9102 9103 9104 9105 9106 9107 9108 9109 9110 9111 9112 9113 9114 9115 9116 9117 9118 9119 9120 9121 9122 9123 9124 9125 9126 9127 9128 9129 9130 9131 9132 9133 9134 9135 9136 9137 9138 9139 9140 9141 9142 9143 9144 9145 9146 9147 9148 9149 9150 9151 9152 9153 9154 9155 9156 9157 9158 9159 9160 9161 9162 9163 9164 9165 9166 9167 9168 9169 9170 9171 9172 9173 9174 9175 9176 9177 9178 9179 9180 9181 9182 9183 9184 9185 9186 9187 9188 9189 9190 9191 9192 9193 9194 9195 9196 9197 9198 9199 9200 9201 9202 9203 9204 9205 9206 9207 9208 9209 9210 9211 9212 9213 9214 9215 9216 9217 9218 9219 9220 9221 9222 9223 9224 9225 9226 9227 9228 9229 9230 9231 9232 9233 9234 9235 9236 9237 9238 9239 9240 9241 9242 9243 9244 9245 9246 9247 9248 9249 9250 9251 9252 9253 9254 9255 9256 9257 9258 9259 9260 9261 9262 9263 9264 9265 9266 9267 9268 9269 9270 9271 9272 9273 9274 9275 9276 9277 9278 9279 9280 9281 9282 9283 9284 9285 9286 9287 9288 9289 9290 9291 9292 9293 9294 9295 9296 9297 9298 9299 9300 9301 9302 9303 9304 9305 9306 9307 9308 9309 9310 9311 9312 9313 9314 9315 9316 9317 9318 9319 9320 9321 9322 9323 9324 9325 9326 9327 9328 9329 9330 9331 9332 9333 9334 9335 9336 9337 9338 9339 9340 9341 9342 9343 9344 9345 9346 9347 9348 9349 9350 9351 9352 9353 9354 9355 9356 9357 9358 9359 9360 9361 9362 9363 9364 9365 9366 9367 9368 9369 9370 9371 9372 9373 9374 9375 9376 9377 9378 9379 9380 9381 9382 9383 9384 9385 9386 9387 9388 9389 9390 9391 9392 9393 9394 9395 9396 9397 9398 9399 9400 9401 9402 9403 9404 9405 9406 9407 9408 9409 9410 9411 9412 9413 9414 9415 9416 9417 9418 9419 9420 9421 9422 9423 9424 9425 9426 9427 9428 9429 9430 9431 9432 9433 9434 9435 9436 9437 9438 9439 9440 9441 9442 9443 9444 9445 9446 9447 9448 9449 9450 9451 9452 9453 9454 9455 9456 9457 9458 9459 9460 9461 9462 9463 9464 9465 9466 9467 9468 9469 9470 9471 9472 9473 9474 9475 9476 9477 9478 9479 9480 9481 9482 9483 9484 9485 9486 9487 9488 9489 9490 9491 9492 9493 9494 9495 9496 9497 9498 9499 9500 9501 9502 9503 9504 9505 9506 9507 9508 9509 9510 9511 9512 9513 9514 9515 9516 9517 9518 9519 9520 9521 9522 9523 9524 9525 9526 9527 9528 9529 9530 9531 9532 9533 9534 9535 9536 9537 9538 9539 9540 9541 9542 9543 9544 9545 9546 9547 9548 9549 9550 9551 9552 9553 9554 9555 9556 9557 9558 9559 9560 9561 9562 9563 9564 9565 9566 9567 9568 9569 9570 9571 9572 9573 9574 9575 9576 9577 9578 9579 9580 9581 9582 9583 9584 9585 9586 9587 9588 9589 9590 9591 9592 9593 9594 9595 9596 9597 9598 9599 9600 9601 9602 9603 9604 9605 9606 9607 9608 9609 9610 9611 9612 9613 9614 9615 9616 9617 9618 9619 9620 9621 9622 9623 9624 9625 9626 9627 9628 9629 9630 9631 9632 9633 9634 9635 9636 9637 9638 9639 9640 9641 9642 9643 9644 9645 9646 9647 9648 9649 9650 9651 9652 9653 9654 9655 9656 9657 9658 9659 9660 9661 9662 9663 9664 9665 9666 9667 9668 9669 9670 9671 9672 9673 9674 9675 9676 9677 9678 9679 9680 9681 9682 9683 9684 9685 9686 9687 9688 9689 9690 9691 9692 9693 9694 9695 9696 9697 9698 9699 9700 9701 9702 9703 9704 9705 9706 9707 9708 9709 9710 9711 9712 9713 9714 9715 9716 9717 9718 9719 9720 9721 9722 9723 9724 9725 9726 9727 9728 9729 9730 9731 9732 9733 9734 9735 9736 9737 9738 9739 9740 9741 9742 9743 9744 9745 9746 9747 9748 9749 9750 9751 9752 9753 9754 9755 9756 9757 9758 9759 9760 9761 9762 9763 9764 9765 9766 9767 9768 9769 9770 9771 9772 9773 9774 9775 9776 9777 9778 9779 9780 9781 9782 9783 9784 9785 9786 9787 9788 9789 9790 9791 9792 9793 9794 9795 9796 9797 9798 9799 9800 9801 9802 9803 9804 9805 9806 9807 9808 9809 9810 9811 9812 9813 9814 9815 9816 9817 9818 9819 9820 9821 9822 9823 9824 9825 9826 9827 9828 9829 9830 9831 9832 9833 9834 9835 9836 9837 9838 9839 9840 9841 9842 9843 9844 9845 9846 9847 9848 9849 9850 9851 9852 9853 9854 9855 9856 9857 9858 9859 9860 9861 9862 9863 9864 9865 9866 9867 9868 9869 9870 9871 9872 9873 9874 9875 9876 9877 9878 9879 9880 9881 9882 9883 9884 9885 9886 9887 9888 9889 9890 9891 9892 9893 9894 9895 9896 9897 9898 9899 9900 9901 9902 9903 9904 9905 9906 9907 9908 9909 9910 9911 9912 9913 9914 9915 9916 9917 9918 9919 9920 9921 9922 9923 9924 9925 9926 9927 9928 9929 9930 9931 9932 9933 9934 9935 9936 9937 9938 9939 9940 9941 9942 9943 9944 9945 9946 9947 9948 9949 9950 9951 9952 9953 9954 9955 9956 9957 9958 9959 9960 9961 9962 9963 9964 9965 9966 9967 9968 9969 9970 9971 9972 9973 9974 9975 9976 9977 9978 9979 9980 9981 9982 9983 9984 9985 9986 9987 9988 9989 9990 9991 9992 9993 9994 9995 9996 9997 9998 9999 10000 10001 10002 10003 10004 10005 10006 10007 10008 10009 10010 10011 10012 10013 10014 10015 10016 10017 10018 10019 10020 10021 10022 10023 10024 10025 10026 10027 10028 10029 10030 10031 10032 10033 10034 10035 10036 10037 10038 10039 10040 10041 10042 10043 10044 10045 10046 10047 10048 10049 10050 10051 10052 10053 10054 10055 10056 10057 10058 10059 10060 10061 10062 10063 10064 10065 10066 10067 10068 10069 10070 10071 10072 10073 10074 10075 10076 10077 10078 10079 10080 10081 10082 10083 10084 10085 10086 10087 10088 10089 10090 10091 10092 10093 10094 10095 10096 10097 10098 10099 10100 10101 10102 10103 10104 10105 10106 10107 10108 10109 10110 10111 10112 10113 10114 10115 10116 10117 10118 10119 10120 10121 10122 10123 10124 10125 10126 10127 10128 10129 10130 10131 10132 10133 10134 10135 10136 10137 10138 10139 10140 10141 10142 10143 10144 10145 10146 10147 10148 10149 10150 10151 10152 10153 10154 10155 10156 10157 10158 10159 10160 10161 10162 10163 10164 10165 10166 10167 10168 10169 10170 10171 10172 10173 10174 10175 10176 10177 10178 10179 10180 10181 10182 10183 10184 10185 10186 10187 10188 10189 10190 10191 10192 10193 10194 10195 10196 10197 10198 10199 10200 10201 10202 10203 10204 10205 10206 10207 10208 10209 10210 10211 10212 10213 10214 10215 10216 10217 10218 10219 10220 10221 10222 10223 10224 10225 10226 10227 10228 10229 10230 10231 10232 10233 10234 10235 10236 10237 10238 10239 10240 10241 10242 10243 10244 10245 10246 10247 10248 10249 10250 10251 10252 10253 10254 10255 10256 10257 10258 10259 10260 10261 10262 10263 10264 10265 10266 10267 10268 10269 10270 10271 10272 10273 10274 10275 10276 10277 10278 10279 10280 10281 10282 10283 10284 10285 10286 10287 10288 10289 10290 10291 10292 10293 10294 10295 10296 10297 10298 10299 10300 10301 10302 10303 10304 10305 10306 10307 10308 10309 10310 10311 10312 10313 10314 10315 10316 10317 10318 10319 10320 10321 10322 10323 10324 10325 10326 10327 10328 10329 10330 10331 10332 10333 10334 10335 10336 10337 10338 10339 10340 10341 10342 10343 10344 10345 10346 10347 10348 10349 10350 10351 10352 10353 10354 10355 10356 10357 10358 10359 10360 10361 10362 10363 10364 10365 10366 10367 10368 10369 10370 10371 10372 10373 10374 10375 10376 10377 10378 10379 10380 10381 10382 10383 10384 10385 10386 10387 10388 10389 10390 10391 10392 10393 10394 10395 10396 10397 10398 10399 10400 10401 10402 10403 10404 10405 10406 10407 10408 10409 10410 10411 10412 10413 10414 10415 10416 10417 10418 10419 10420 10421 10422 10423 10424 10425 10426 10427 10428 10429 10430 10431 10432 10433 10434 10435 10436 10437 10438 10439 10440 10441 10442 10443 10444 10445 10446 10447 10448 10449 10450 10451 10452 10453 10454 10455 10456 10457 10458 10459 10460 10461 10462 10463 10464 10465 10466 10467 10468 10469 10470 10471 10472 10473 10474 10475 10476 10477 10478 10479 10480 10481 10482 10483 10484 10485 10486 10487 10488 10489 10490 10491 10492 10493 10494 10495 10496 10497 10498 10499 10500 10501 10502 10503 10504 10505 10506 10507 10508 10509 10510 10511 10512 10513 10514 10515 10516 10517 10518 10519 10520 10521 10522 10523 10524 10525 10526 10527 10528 10529 10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 10548 10549 10550 10551 10552 10553 10554 10555 10556 10557 10558 10559 10560 10561 10562 10563 10564 10565 10566 10567 10568 10569 10570 10571 10572 10573 10574 10575 10576 10577 10578 10579 10580 10581 10582 10583 10584 10585 10586 10587 10588 10589 10590 10591 10592 10593 10594 10595 10596 10597 10598 10599 10600 10601 10602 10603 10604 10605 10606 10607 10608 10609 10610 10611 10612 10613 10614 10615 10616 10617 10618 10619 10620 10621 10622 10623 10624 10625 10626 10627 10628 10629 10630 10631 10632 10633 10634 10635 10636 10637 10638 10639 10640 10641 10642 10643 10644 10645 10646 10647 10648 10649 10650 10651 10652 10653 10654 10655 10656 10657 10658 10659 10660 10661 10662 10663 10664 10665 10666 10667 10668 10669 10670 10671 10672 10673 10674 10675 10676 10677 10678 10679 10680 10681 10682 10683 10684 10685 10686 10687 10688 10689 10690 10691 10692 10693 10694 10695 10696 10697 10698 10699 10700 10701 10702 10703 10704 10705 10706 10707 10708 10709 10710 10711 10712 10713 10714 10715 10716 10717 10718 10719 10720 10721 10722 10723 10724 10725 10726 10727 10728 10729 10730 10731 10732 10733 10734 10735 10736 10737 10738 10739 10740 10741 10742 10743 10744 10745 10746 10747 10748 10749 10750 10751 10752 10753 10754 10755 10756 10757 10758 10759 10760 10761 10762 10763 10764 10765 10766 10767 10768 10769 10770 10771 10772 10773 10774 10775 10776 10777 10778 10779 10780 10781 10782 10783 10784 10785 10786 10787 10788 10789 10790 10791 10792 10793 10794 10795 10796 10797 10798 10799 10800 10801 10802 10803 10804 10805 10806 10807 10808 10809 10810 10811 10812 10813 10814 10815 10816 10817 10818 10819 10820 10821 10822 10823 10824 10825 10826 10827 10828 10829 10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 10879 10880 10881 10882 10883 10884 10885 10886 10887 10888 10889 10890 10891 10892 10893 10894 10895 10896 10897 10898 10899 10900 10901 10902 10903 10904 10905 10906 10907 10908 10909 10910 10911 10912 10913 10914 10915 10916 10917 10918 10919 10920 10921 10922 10923 10924 10925 10926 10927 10928 10929 10930 10931 10932 10933 10934 10935 10936 10937 10938 10939 10940 10941 10942 10943 10944 10945 10946 10947 10948 10949 10950 10951 10952 10953 10954 10955 10956 10957 10958 10959 10960 10961 10962 10963 10964 10965 10966 10967 10968 10969 10970 10971 10972 10973 10974 10975 10976 10977 10978 10979 10980 10981 10982 10983 10984 10985 10986 10987 10988 10989 10990 10991 10992 10993 10994 10995 10996 10997 10998 10999 11000 11001 11002 11003 11004 11005 11006 11007 11008 11009 11010 11011 11012 11013 11014 11015 11016 11017 11018 11019 11020 11021 11022 11023 11024 11025 11026 11027 11028 11029 11030 11031 11032 11033 11034 11035 11036 11037 11038 11039 11040 11041 11042 11043 11044 11045 11046 11047 11048 11049 11050 11051 11052 11053 11054 11055 11056 11057 11058 11059 11060 11061 11062 11063 11064 11065 11066 11067 11068 11069 11070 11071 11072 11073 11074 11075 11076 11077 11078 11079 11080 11081 11082 11083 11084 11085 11086 11087 11088 11089 11090 11091 11092 11093 11094 11095 11096 11097 11098 11099 11100 11101 11102 11103 11104 11105 11106 11107 11108 11109 11110 11111 11112 11113 11114 11115 11116 11117 11118 11119 11120 11121 11122 11123 11124 11125 11126 11127 11128 11129 11130 11131 11132 11133 11134 11135 11136 11137 11138 11139 11140 11141 11142 11143 11144 11145 11146 11147 11148 11149 11150 11151 11152 11153 11154 11155 11156 11157 11158 11159 11160 11161 11162 11163 11164 11165 11166 11167 11168 11169 11170 11171 11172 11173 11174 11175 11176 11177 11178 11179 11180 11181 11182 11183 11184 11185 11186 11187 11188 11189 11190 11191 11192 11193 11194 11195 11196 11197 11198 11199 11200 11201 11202 11203 11204 11205 11206 11207 11208 11209 11210 11211 11212 11213 11214 11215 11216 11217 11218 11219 11220 11221 11222 11223 11224 11225 11226 11227 11228 11229 11230 11231 11232 11233 11234 11235 11236 11237 11238 11239 11240 11241 11242 11243 11244 11245 11246 11247 11248 11249 11250 11251 11252 11253 11254 11255 11256 11257 11258 11259 11260 11261 11262 11263 11264 11265 11266 11267 11268 11269 11270 11271 11272 11273 11274 11275 11276 11277 11278 11279 11280 11281 11282 11283 11284 11285 11286 11287 11288 11289 11290 11291 11292 11293 11294 11295 11296 11297 11298 11299 11300 11301 11302 11303 11304 11305 11306 11307 11308 11309 11310 11311 11312 11313 11314 11315 11316 11317 11318 11319 11320 11321 11322 11323 11324 11325 11326 11327 11328 11329 11330 11331 11332 11333 11334 11335 11336 11337 11338 11339 11340 11341 11342 11343 11344 11345 11346 11347 11348 11349 11350 11351 11352 11353 11354 11355 11356 11357 11358 11359 11360 11361 11362 11363 11364 11365 11366 11367 11368 11369 11370 11371 11372 11373 11374 11375 11376 11377 11378 11379 11380 11381 11382 11383 11384 11385 11386 11387 11388 11389 11390 11391 11392 11393 11394 11395 11396 11397 11398 11399 11400 11401 11402 11403 11404 11405 11406 11407 11408 11409 11410 11411 11412 11413 11414 11415 11416 11417 11418 11419 11420 11421 11422 11423 11424 11425 11426 11427 11428 11429 11430 11431 11432 11433 11434 11435 11436 11437 11438 11439 11440 11441 11442 11443 11444 11445 11446 11447 11448 11449 11450 11451 11452 11453 11454 11455 11456 11457 11458 11459 11460 11461 11462 11463 11464 11465 11466 11467 11468 11469 11470 11471 11472 11473 11474 11475 11476 11477 11478 11479 11480 11481 11482 11483 11484 11485 11486 11487 11488 11489 11490 11491 11492 11493 11494 11495 11496 11497 11498 11499 11500 11501 11502 11503 11504 11505 11506 11507 11508 11509 11510 11511 11512 11513 11514 11515 11516 11517 11518 11519 11520 11521 11522 11523 11524 11525 11526 11527 11528 11529 11530 11531 11532 11533 11534 11535 11536 11537 11538 11539 11540 11541 11542 11543 11544 11545 11546 11547 11548 11549 11550 11551 11552 11553 11554 11555 11556 11557 11558 11559 11560 11561 11562 11563 11564 11565 11566 11567 11568 11569 11570 11571 11572 11573 11574 11575 11576 11577 11578 11579 11580 11581 11582 11583 11584 11585 11586 11587 11588 11589 11590 11591 11592 11593 11594 11595 11596 11597 11598 11599 11600 11601 11602 11603 11604 11605 11606 11607 11608 11609 11610 11611 11612 11613 11614 11615 11616 11617 11618 11619 11620 11621 11622 11623 11624 11625 11626 11627 11628 11629 11630 11631 11632 11633 11634 11635 11636 11637 11638 11639 11640 11641 11642 11643 11644 11645 11646 11647 11648 11649 11650 11651 11652 11653 11654 11655 11656 11657 11658 11659 11660 11661 11662 11663 11664 11665 11666 11667 11668 11669 11670 11671 11672 11673 11674 11675 11676 11677 11678 11679 11680 11681 11682 11683 11684 11685 11686 11687 11688 11689 11690 11691 11692 11693 11694 11695 11696 11697 11698 11699 11700 11701 11702 11703 11704 11705 11706 11707 11708 11709 11710 11711 11712 11713 11714 11715 11716 11717 11718 11719 11720 11721 11722 11723 11724 11725 11726 11727 11728 11729 11730 11731 11732 11733 11734 11735 11736 11737 11738 11739 11740 11741 11742 11743 11744 11745 11746 11747 11748 11749 11750 11751 11752 11753 11754 11755 11756 11757 11758 11759 11760 11761 11762 11763 11764 11765 11766 11767 11768 11769 11770 11771 11772 11773 11774 11775 11776 11777 11778 11779 11780 11781 11782 11783 11784 11785 11786 11787 11788 11789 11790 11791 11792 11793 11794 11795 11796 11797 11798 11799 11800 11801 11802 11803 11804 11805 11806 11807 11808 11809 11810 11811 11812 11813 11814 11815 11816 11817 11818 11819 11820 11821 11822 11823 11824 11825 11826 11827 11828 11829 11830 11831 11832 11833 11834 11835 11836 11837 11838 11839 11840 11841 11842 11843 11844 11845 11846 11847 11848 11849 11850 11851 11852 11853 11854 11855 11856 11857 11858 11859 11860 11861 11862 11863 11864 11865 11866 11867 11868 11869 11870 11871 11872 11873 11874 11875 11876 11877 11878 11879 11880 11881 11882 11883 11884 11885 11886 11887 11888 11889 11890 11891 11892 11893 11894 11895 11896 11897 11898 11899 11900 11901 11902 11903 11904 11905 11906 11907 11908 11909 11910 11911 11912 11913 11914 11915 11916 11917 11918 11919 11920 11921 11922 11923 11924 11925 11926 11927 11928 11929 11930 11931 11932 11933 11934 11935 11936 11937 11938 11939 11940 11941 11942 11943 11944 11945 11946 11947 11948 11949 11950 11951 11952 11953 11954 11955 11956 11957 11958 11959 11960 11961 11962 11963 11964 11965 11966 11967 11968 11969 11970 11971 11972 11973 11974 11975 11976 11977 11978 11979 11980 11981 11982 11983 11984 11985 11986 11987 11988 11989 11990 11991 11992 11993 11994 11995 11996 11997 11998 11999 12000 12001 12002 12003 12004 12005 12006 12007 12008 12009 12010 12011 12012 12013 12014 12015 12016 12017 12018 12019 12020 12021 12022 12023 12024 12025 12026 12027 12028 12029 12030 12031 12032 12033 12034 12035 12036 12037 12038 12039 12040 12041 12042 12043 12044 12045 12046 12047 12048 12049 12050 12051 12052 12053 12054 12055 12056 12057 12058 12059 12060 12061 12062 12063 12064 12065 12066 12067 12068 12069 12070 12071 12072 12073 12074 12075 12076 12077 12078 12079 12080 12081 12082 12083 12084 12085 12086 12087 12088 12089 12090 12091 12092 12093 12094 12095 12096 12097 12098 12099 12100 12101 12102 12103 12104 12105 12106 12107 12108 12109 12110 12111 12112 12113 12114 12115 12116 12117 12118 12119 12120 12121 12122 12123 12124 12125 12126 12127 12128 12129 12130 12131 12132 12133 12134 12135 12136 12137 12138 12139 12140 12141 12142 12143 12144 12145 12146 12147 12148 12149 12150 12151 12152 12153 12154 12155 12156 12157 12158 12159 12160 12161 12162 12163 12164 12165 12166 12167 12168 12169 12170 12171 12172 12173 12174 12175 12176 12177 12178 12179 12180 12181 12182 12183 12184 12185 12186 12187 12188 12189 12190 12191 12192 12193 12194 12195 12196 12197 12198 12199 12200 12201 12202 12203 12204 12205 12206 12207 12208 12209 12210 12211 12212 12213 12214 12215 12216 12217 12218 12219 12220 12221 12222 12223 12224 12225 12226 12227 12228 12229 12230 12231 12232 12233 12234 12235 12236 12237 12238 12239 12240 12241 12242 12243 12244 12245 12246 12247 12248 12249 12250 12251 12252 12253 12254 12255 12256 12257 12258 12259 12260 12261 12262 12263 12264 12265 12266 12267 12268 12269 12270 12271 12272 12273 12274 12275 12276 12277 12278 12279 12280 12281 12282 12283 12284 12285 12286 12287 12288 12289 12290 12291 12292 12293 12294 12295 12296 12297 12298 12299 12300 12301 12302 12303 12304 12305 12306 12307 12308 12309 12310 12311 12312 12313 12314 12315 12316 12317 12318 12319 12320 12321 12322 12323 12324 12325 12326 12327 12328 12329 12330 12331 12332 12333 12334 12335 12336 12337 12338 12339 12340 12341 12342 12343 12344 12345 12346 12347 12348 12349 12350 12351 12352 12353 12354 12355 12356 12357 12358 12359 12360 12361 12362 12363 12364 12365 12366 12367 12368 12369 12370 12371 12372 12373 12374 12375 12376 12377 12378 12379 12380 12381 12382 12383 12384 12385 12386 12387 12388 12389 12390 12391 12392 12393 12394 12395 12396 12397 12398 12399 12400 12401 12402 12403 12404 12405 12406 12407 12408 12409 12410 12411 12412 12413 12414 12415 12416 12417 12418 12419 12420 12421 12422 12423 12424 12425 12426 12427 12428 12429 12430 12431 12432 12433 12434 12435 12436 12437 12438 12439 12440 12441 12442 12443 12444 12445 12446 12447 12448 12449 12450 12451 12452 12453 12454 12455 12456 12457 12458 12459 12460 12461 12462 12463 12464 12465 12466 12467 12468 12469 12470 12471 12472 12473 12474 12475 12476 12477 12478 12479 12480 12481 12482 12483 12484 12485 12486 12487 12488 12489 12490 12491 12492 12493 12494 12495 12496 12497 12498 12499 12500 12501 12502 12503 12504 12505 12506 12507 12508 12509 12510 12511 12512 12513 12514 12515 12516 12517 12518 12519 12520 12521 12522 12523 12524 12525 12526 12527 12528 12529 12530 12531 12532 12533 12534 12535 12536 12537 12538 12539 12540 12541 12542 12543 12544 12545 12546 12547 12548 12549 12550 12551 12552 12553 12554 12555 12556 12557 12558 12559 12560 12561 12562 12563 12564 12565 12566 12567 12568 12569 12570 12571 12572 12573 12574 12575 12576 12577 12578 12579 12580 12581 12582 12583 12584 12585 12586 12587 12588 12589 12590 12591 12592 12593 12594 12595 12596 12597 12598 12599 12600 12601 12602 12603 12604 12605 12606 12607 12608 12609 12610 12611 12612 12613 12614 12615 12616 12617 12618 12619 12620 12621 12622 12623 12624 12625 12626 12627 12628 12629 12630 12631 12632 12633 12634 12635 12636 12637 12638 12639 12640 12641 12642 12643 12644 12645 12646 12647 12648 12649 12650 12651 12652 12653 12654 12655 12656 12657 12658 12659 12660 12661 12662 12663 12664 12665 12666 12667 12668 12669 12670 12671 12672 12673 12674 12675 12676 12677 12678 12679 12680 12681 12682 12683 12684 12685 12686 12687 12688 12689 12690 12691 12692 12693 12694 12695 12696 12697 12698 12699 12700 12701 12702 12703 12704 12705 12706 12707 12708 12709 12710 12711 12712 12713 12714 12715 12716 12717 12718 12719 12720 12721 12722 12723 12724 12725 12726 12727 12728 12729 12730 12731 12732 12733 12734 12735 12736 12737 12738 12739 12740 12741 12742 12743 12744 12745 12746 12747 12748 12749 12750 12751 12752 12753 12754 12755 12756 12757 12758 12759 12760 12761 12762 12763 12764 12765 12766 12767 12768 12769 12770 12771 12772 12773 12774 12775 12776 12777 12778 12779 12780 12781 12782 12783 12784 12785 12786 12787 12788 12789 12790 12791 12792 12793 12794 12795 12796 12797 12798 12799 12800 12801 12802 12803 12804 12805 12806 12807 12808 12809 12810 12811 12812 12813 12814 12815 12816 12817 12818 12819 12820 12821 12822 12823 12824 12825 12826 12827 12828 12829 12830 12831 12832 12833 12834 12835 12836 12837 12838 12839 12840 12841 12842 12843 12844 12845 12846 12847 12848 12849 12850 12851 12852 12853 12854 12855 12856 12857 12858 12859 12860 12861 12862 12863 12864 12865 12866 12867 12868 12869 12870 12871 12872 12873 12874 12875 12876 12877 12878 12879 12880 12881 12882 12883 12884 12885 12886 12887 12888 12889 12890 12891 12892 12893 12894 12895 12896 12897 12898 12899 12900 12901 12902 12903 12904 12905 12906 12907 12908 12909 12910 12911 12912 12913 12914 12915 12916 12917 12918 12919 12920 12921 12922 12923 12924 12925 12926 12927 12928 12929 12930 12931 12932 12933 12934 12935 12936 12937 12938 12939 12940 12941 12942 12943 12944 12945 12946 12947 12948 12949 12950 12951 12952 12953 12954 12955 12956 12957 12958 12959 12960 12961 12962 12963 12964 12965 12966 12967 12968 12969 12970 12971 12972 12973 12974 12975 12976 12977 12978 12979 12980 12981 12982 12983 12984 12985 12986 12987 12988 12989 12990 12991 12992 12993 12994 12995 12996 12997 12998 12999 13000 13001 13002 13003 13004 13005 13006 13007 13008 13009 13010 13011 13012 13013 13014 13015 13016 13017 13018 13019 13020 13021 13022 13023 13024 13025 13026 13027 13028 13029 13030 13031 13032 13033 13034 13035 13036 13037 13038 13039 13040 13041 13042 13043 13044 13045 13046 13047 13048 13049 13050 13051 13052 13053 13054 13055 13056 13057 13058 13059 13060 13061 13062 13063 13064 13065 13066 13067 13068 13069 13070 13071 13072 13073 13074 13075 13076 13077 13078 13079 13080 13081 13082 13083 13084 13085 13086 13087 13088 13089 13090 13091 13092 13093 13094 13095 13096 13097 13098 13099 13100 13101 13102 13103 13104 13105 13106 13107 13108 13109 13110 13111 13112 13113 13114 13115 13116 13117 13118 13119 13120 13121 13122 13123 13124 13125 13126 13127 13128 13129 13130 13131 13132 13133 13134 13135 13136 13137 13138 13139 13140 13141 13142 13143 13144 13145 13146 13147 13148 13149 13150 13151 13152 13153 13154 13155 13156 13157 13158 13159 13160 13161 13162 13163 13164 13165 13166 13167 13168 13169 13170 13171 13172 13173 13174 13175 13176 13177 13178 13179 13180 13181 13182 13183 13184 13185 13186 13187 13188 13189 13190 13191 13192 13193 13194 13195 13196 13197 13198 13199 13200 13201 13202 13203 13204 13205 13206 13207 13208 13209 13210 13211 13212 13213 13214 13215 13216 13217 13218 13219 13220 13221 13222 13223 13224 13225 13226 13227 13228 13229 13230 13231 13232 13233 13234 13235 13236 13237 13238 13239 13240 13241 13242 13243 13244 13245 13246 13247 13248 13249 13250 13251 13252 13253 13254 13255 13256 13257 13258 13259 13260 13261 13262 13263 13264 13265 13266 13267 13268 13269 13270 13271 13272 13273 13274 13275 13276 13277 13278 13279 13280 13281 13282 13283 13284 13285 13286 13287 13288 13289 13290 13291 13292 13293 13294 13295 13296 13297 13298 13299 13300 13301 13302 13303 13304 13305 13306 13307 13308 13309 13310 13311 13312 13313 13314 13315 13316 13317 13318 13319 13320 13321 13322 13323 13324 13325 13326 13327 13328 13329 13330 13331 13332 13333 13334 13335 13336 13337 13338 13339 13340 13341 13342 13343 13344 13345 13346 13347 13348 13349 13350 13351 13352 13353 13354 13355 13356 13357 13358 13359 13360 13361 13362 13363 13364 13365 13366 13367 13368 13369 13370 13371 13372 13373 13374 13375 13376 13377 13378 13379 13380 13381 13382 13383 13384 13385 13386 13387 13388 13389 13390 13391 13392 13393 13394 13395 13396 13397 13398 13399 13400 13401 13402 13403 13404 13405 13406 13407 13408 13409 13410 13411 13412 13413 13414 13415 13416 13417 13418 13419 13420 13421 13422 13423 13424 13425 13426 13427 13428 13429 13430 13431 13432 13433 13434 13435 13436 13437 13438 13439 13440 13441 13442 13443 13444 13445 13446 13447 13448 13449 13450 13451 13452 13453 13454 13455 13456 13457 13458 13459 13460 13461 13462 13463 13464 13465 13466 13467 13468 13469 13470 13471 13472 13473 13474 13475 13476 13477 13478 13479 13480 13481 13482 13483 13484 13485 13486 13487 13488 13489 13490 13491 13492 13493 13494 13495 13496 13497 13498 13499 13500 13501 13502 13503 13504 13505 13506 13507 13508 13509 13510 13511 13512 13513 13514 13515 13516 13517 13518 13519 13520 13521 13522 13523 13524 13525 13526 13527 13528 13529 13530 13531 13532 13533 13534 13535 13536 13537 13538 13539 13540 13541 13542 13543 13544 13545 13546 13547 13548 13549 13550 13551 13552 13553 13554 13555 13556 13557 13558 13559 13560 13561 13562 13563 13564 13565 13566 13567 13568 13569 13570 13571 13572 13573 13574 13575 13576 13577 13578 13579 13580 13581 13582 13583 13584 13585 13586 13587 13588 13589 13590 13591 13592 13593 13594 13595 13596 13597 13598 13599 13600 13601 13602 13603 13604 13605 13606 13607 13608 13609 13610 13611 13612 13613 13614 13615 13616 13617 13618 13619 13620 13621 13622 13623 13624 13625 13626 13627 13628 13629 13630 13631 13632 13633 13634 13635 13636 13637 13638 13639 13640 13641 13642 13643 13644 13645 13646 13647 13648 13649 13650 13651 13652 13653 13654 13655 13656 13657 13658 13659 13660 13661 13662 13663 13664 13665 13666 13667 13668 13669 13670 13671 13672 13673 13674 13675 13676 13677 13678 13679 13680 13681 13682 13683 13684 13685 13686 13687 13688 13689 13690 13691 13692 13693 13694 13695 13696 13697 13698 13699 13700 13701 13702 13703 13704 13705 13706 13707 13708 13709 13710 13711 13712 13713 13714 13715 13716 13717 13718 13719 13720 13721 13722 13723 13724 13725 13726 13727 13728 13729 13730 13731 13732 13733 13734 13735 13736 13737 13738 13739 13740 13741 13742 13743 13744 13745 13746 13747 13748 13749 13750 13751 13752 13753 13754 13755 13756 13757 13758 13759 13760 13761 13762 13763 13764 13765 13766 13767 13768 13769 13770 13771 13772 13773 13774 13775 13776 13777 13778 13779 13780 13781 13782 13783 13784 13785 13786 13787 13788 13789 13790 13791 13792 13793 13794 13795 13796 13797 13798 13799 13800 13801 13802 13803 13804 13805 13806 13807 13808 13809 13810 13811 13812 13813 13814 13815 13816 13817 13818 13819 13820 13821 13822 13823 13824 13825 13826 13827 13828 13829 13830 13831 13832 13833 13834 13835 13836 13837 13838 13839 13840 13841 13842 13843 13844 13845 13846 13847 13848 13849 13850 13851 13852 13853 13854 13855 13856 13857 13858 13859 13860 13861 13862 13863 13864 13865 13866 13867 13868 13869 13870 13871 13872 13873 13874 13875 13876 13877 13878 13879 13880 13881 13882 13883 13884 13885 13886 13887 13888 13889 13890 13891 13892 13893 13894 13895 13896 13897 13898 13899 13900 13901 13902 13903 13904 13905 13906 13907 13908 13909 13910 13911 13912 13913 13914 13915 13916 13917 13918 13919 13920 13921 13922 13923 13924 13925 13926 13927 13928 13929 13930 13931 13932 13933 13934 13935 13936 13937 13938 13939 13940 13941 13942 13943 13944 13945 13946 13947 13948 13949 13950 13951 13952 13953 13954 13955 13956 13957 13958 13959 13960 13961 13962 13963 13964 13965 13966 13967 13968 13969 13970 13971 13972 13973 13974 13975 13976 13977 13978 13979 13980 13981 13982 13983 13984 13985 13986 13987 13988 13989 13990 13991 13992 13993 13994 13995 13996 13997 13998 13999 14000 14001 14002 14003 14004 14005 14006 14007 14008 14009 14010 14011 14012 14013 14014 14015 14016 14017 14018 14019 14020 14021 14022 14023 14024 14025 14026 14027 14028 14029 14030 14031 14032 14033 14034 14035 14036 14037 14038 14039 14040 14041 14042 14043 14044 14045 14046 14047 14048 14049 14050 14051 14052 14053 14054 14055 14056 14057 14058 14059 14060 14061 14062 14063 14064 14065 14066 14067 14068 14069 14070 14071 14072 14073 14074 14075 14076 14077 14078 14079 14080 14081 14082 14083 14084 14085 14086 14087 14088 14089 14090 14091 14092 14093 14094 14095 14096 14097 14098 14099 14100 14101 14102 14103 14104 14105 14106 14107 14108 14109 14110 14111 14112 14113 14114 14115 14116 14117 14118 14119 14120 14121 14122 14123 14124 14125 14126 14127 14128 14129 14130 14131 14132 14133 14134 14135 14136 14137 14138 14139 14140 14141 14142 14143 14144 14145 14146 14147 14148 14149 14150 14151 14152 14153 14154 14155 14156 14157 14158 14159 14160 14161 14162 14163 14164 14165 14166 14167 14168 14169 14170 14171 14172 14173 14174 14175 14176 14177 14178 14179 14180 14181 14182 14183 14184 14185 14186 14187 14188 14189 14190 14191 14192 14193 14194 14195 14196 14197 14198 14199 14200 14201 14202 14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 14230 14231 14232 14233 14234 14235 14236 14237 14238 14239 14240 14241 14242 14243 14244 14245 14246 14247 14248 14249 14250 14251 14252 14253 14254 14255 14256 14257 14258 14259 14260 14261 14262 14263 14264 14265 14266 14267 14268 14269 14270 14271 14272 14273 14274 14275 14276 14277 14278 14279 14280 14281 14282 14283 14284 14285 14286 14287 14288 14289 14290 14291 14292 14293 14294 14295 14296 14297 14298 14299 14300 14301 14302 14303 14304 14305 14306 14307 14308 14309 14310 14311 14312 14313 14314 14315 14316 14317 14318 14319 14320 14321 14322 14323 14324 14325 14326 14327 14328 14329 14330 14331 14332 14333 14334 14335 14336 14337 14338 14339 14340 14341 14342 14343 14344 14345 14346 14347 14348 14349 14350 14351 14352 14353 14354 14355 14356 14357 14358 14359 14360 14361 14362 14363 14364 14365 14366 14367 14368 14369 14370 14371 14372 14373 14374 14375 14376 14377 14378 14379 14380 14381 14382 14383 14384 14385 14386 14387 14388 14389 14390 14391 14392 14393 14394 14395 14396 14397 14398 14399 14400 14401 14402 14403 14404 14405 14406 14407 14408 14409 14410 14411 14412 14413 14414 14415 14416 14417 14418 14419 14420 14421 14422 14423 14424 14425 14426 14427 14428 14429 14430 14431 14432 14433 14434 14435 14436 14437 14438 14439 14440 14441 14442 14443 14444 14445 14446 14447 14448 14449 14450 14451 14452 14453 14454 14455 14456 14457 14458 14459 14460 14461 14462 14463 14464 14465 14466 14467 14468 14469 14470 14471 14472 14473 14474 14475 14476 14477 14478 14479 14480 14481 14482 14483 14484 14485 14486 14487 14488 14489 14490 14491 14492 14493 14494 14495 14496 14497 14498 14499 14500 14501 14502 14503 14504 14505 14506 14507 14508 14509 14510 14511 14512 14513 14514 14515 14516 14517 14518 14519 14520 14521 14522 14523 14524 14525 14526 14527 14528 14529 14530 14531 14532 14533 14534 14535 14536 14537 14538 14539 14540 14541 14542 14543 14544 14545 14546 14547 14548 14549 14550 14551 14552 14553 14554 14555 14556 14557 14558 14559 14560 14561 14562 14563 14564 14565 14566 14567 14568 14569 14570 14571 14572 14573 14574 14575 14576 14577 14578 14579 14580 14581 14582 14583 14584 14585 14586 14587 14588 14589 14590 14591 14592 14593 14594 14595 14596 14597 14598 14599 14600 14601 14602 14603 14604 14605 14606 14607 14608 14609 14610 14611 14612 14613 14614 14615 14616 14617 14618 14619 14620 14621 14622 14623 14624 14625 14626 14627 14628 14629 14630 14631 14632 14633 14634 14635 14636 14637 14638 14639 14640 14641 14642 14643 14644 14645 14646 14647 14648 14649 14650 14651 14652 14653 14654 14655 14656 14657 14658 14659 14660 14661 14662 14663 14664 14665 14666 14667 14668 14669 14670 14671 14672 14673 14674 14675 14676 14677 14678 14679 14680 14681 14682 14683 14684 14685 14686 14687 14688 14689 14690 14691 14692 14693 14694 14695 14696 14697 14698 14699 14700 14701 14702 14703 14704 14705 14706 14707 14708 14709 14710 14711 14712 14713 14714 14715 14716 14717 14718 14719 14720 14721 14722 14723 14724 14725 14726 14727 14728 14729 14730 14731 14732 14733 14734 14735 14736 14737 14738 14739 14740 14741 14742 14743 14744 14745 14746 14747 14748 14749 14750 14751 14752 14753 14754 14755 14756 14757 14758 14759 14760 14761 14762 14763 14764 14765 14766 14767 14768 14769 14770 14771 14772 14773 14774 14775 14776 14777 14778 14779 14780 14781 14782 14783 14784 14785 14786 14787 14788 14789 14790 14791 14792 14793 14794 14795 14796 14797 14798 14799 14800 14801 14802 14803 14804 14805 14806 14807 14808 14809 14810 14811 14812 14813 14814 14815 14816 14817 14818 14819 14820 14821 14822 14823 14824 14825 14826 14827 14828 14829 14830 14831 14832 14833 14834 14835 14836 14837 14838 14839 14840 14841 14842 14843 14844 14845 14846 14847 14848 14849 14850 14851 14852 14853 14854 14855 14856 14857 14858 14859 14860 14861 14862 14863 14864 14865 14866 14867 14868 14869 14870 14871 14872 14873 14874 14875 14876 14877 14878 14879 14880 14881 14882 14883 14884 14885 14886 14887 14888 14889 14890 14891 14892 14893 14894 14895 14896 14897 14898 14899 14900 14901 14902 14903 14904 14905 14906 14907 14908 14909 14910 14911 14912 14913 14914 14915 14916 14917 14918 14919 14920 14921 14922 14923 14924 14925 14926 14927 14928 14929 14930 14931 14932 14933 14934 14935 14936 14937 14938 14939 14940 14941 14942 14943 14944 14945 14946 14947 14948 14949 14950 14951 14952 14953 14954 14955 14956 14957 14958 14959 14960 14961 14962 14963 14964 14965 14966 14967 14968 14969 14970 14971 14972 14973 14974 14975 14976 14977 14978 14979 14980 14981 14982 14983 14984 14985 14986 14987 14988 14989 14990 14991 14992 14993 14994 14995 14996 14997 14998 14999 15000 15001 15002 15003 15004 15005 15006 15007 15008 15009 15010 15011 15012 15013 15014 15015 15016 15017 15018 15019 15020 15021 15022 15023 15024 15025 15026 15027 15028 15029 15030 15031 15032 15033 15034 15035 15036 15037 15038 15039 15040 15041 15042 15043 15044 15045 15046 15047 15048 15049 15050 15051 15052 15053 15054 15055 15056 15057 15058 15059 15060 15061 15062 15063 15064 15065 15066 15067 15068 15069 15070 15071 15072 15073 15074 15075 15076 15077 15078 15079 15080 15081 15082 15083 15084 15085 15086 15087 15088 15089 15090 15091 15092 15093 15094 15095 15096 15097 15098 15099 15100 15101 15102 15103 15104 15105 15106 15107 15108 15109 15110 15111 15112 15113 15114 15115 15116 15117 15118 15119 15120 15121 15122 15123 15124 15125 15126 15127 15128 15129 15130 15131 15132 15133 15134 15135 15136 15137 15138 15139 15140 15141 15142 15143 15144 15145 15146 15147 15148 15149 15150 15151 15152 15153 15154 15155 15156 15157 15158 15159 15160 15161 15162 15163 15164 15165 15166 15167 15168 15169 15170 15171 15172 15173 15174 15175 15176 15177 15178 15179 15180 15181 15182 15183 15184 15185 15186 15187 15188 15189 15190 15191 15192 15193 15194 15195 15196 15197 15198 15199 15200 15201 15202 15203 15204 15205 15206 15207 15208 15209 15210 15211 15212 15213 15214 15215 15216 15217 15218 15219 15220 15221 15222 15223 15224 15225 15226 15227 15228 15229 15230 15231 15232 15233 15234 15235 15236 15237 15238 15239 15240 15241 15242 15243 15244 15245 15246 15247 15248 15249 15250 15251 15252 15253 15254 15255 15256 15257 15258 15259 15260 15261 15262 15263 15264 15265 15266 15267 15268 15269 15270 15271 15272 15273 15274 15275 15276 15277 15278 15279 15280 15281 15282 15283 15284 15285 15286 15287 15288 15289 15290 15291 15292 15293 15294 15295 15296 15297 15298 15299 15300 15301 15302 15303 15304 15305 15306 15307 15308 15309 15310 15311 15312 15313 15314 15315 15316 15317 15318 15319 15320 15321 15322 15323 15324 15325 15326 15327 15328 15329 15330 15331 15332 15333 15334 15335 15336 15337 15338 15339 15340 15341 15342 15343 15344 15345 15346 15347 15348 15349 15350 15351 15352 15353 15354 15355 15356 15357 15358 15359 15360 15361 15362 15363 15364 15365 15366 15367 15368 15369 15370 15371 15372 15373 15374 15375 15376 15377 15378 15379 15380 15381 15382 15383 15384 15385 15386 15387 15388 15389 15390 15391 15392 15393 15394 15395 15396 15397 15398 15399 15400 15401 15402 15403 15404 15405 15406 15407 15408 15409 15410 15411 15412 15413 15414 15415 15416 15417 15418 15419 15420 15421 15422 15423 15424 15425 15426 15427 15428 15429 15430 15431 15432 15433 15434 15435 15436 15437 15438 15439 15440 15441 15442 15443 15444 15445 15446 15447 15448 15449 15450 15451 15452 15453 15454 15455 15456 15457 15458 15459 15460 15461 15462 15463 15464 15465 15466 15467 15468 15469 15470 15471 15472 15473 15474 15475 15476 15477 15478 15479 15480 15481 15482 15483 15484 15485 15486 15487 15488 15489 15490 15491 15492 15493 15494 15495 15496 15497 15498 15499 15500 15501 15502 15503 15504 15505 15506 15507 15508 15509 15510 15511 15512 15513 15514 15515 15516 15517 15518 15519 15520 15521 15522 15523 15524 15525 15526 15527 15528 15529 15530 15531 15532 15533 15534 15535 15536 15537 15538 15539 15540 15541 15542 15543 15544 15545 15546 15547 15548 15549 15550 15551 15552 15553 15554 15555 15556 15557 15558 15559 15560 15561 15562 15563 15564 15565 15566 15567 15568 15569 15570 15571 15572 15573 15574 15575 15576 15577 15578 15579 15580 15581 15582 15583 15584 15585 15586 15587 15588 15589 15590 15591 15592 15593 15594 15595 15596 15597 15598 15599 15600 15601 15602 15603 15604 15605 15606 15607 15608 15609 15610 15611 15612 15613 15614 15615 15616 15617 15618 15619 15620 15621 15622 15623 15624 15625 15626 15627 15628 15629 15630 15631 15632 15633 15634 15635 15636 15637 15638 15639 15640 15641 15642 15643 15644 15645 15646 15647 15648 15649 15650 15651 15652 15653 15654 15655 15656 15657 15658 15659 15660 15661 15662 15663 15664 15665 15666 15667 15668 15669 15670 15671 15672 15673 15674 15675 15676 15677 15678 15679 15680 15681 15682 15683 15684 15685 15686 15687 15688 15689 15690 15691 15692 15693 15694 15695 15696 15697 15698 15699 15700 15701 15702 15703 15704 15705 15706 15707 15708 15709 15710 15711 15712 15713 15714 15715 15716 15717 15718 15719 15720 15721 15722 15723 15724 15725 15726 15727 15728 15729 15730 15731 15732 15733 15734 15735 15736 15737 15738 15739 15740 15741 15742 15743 15744 15745 15746 15747 15748 15749 15750 15751 15752 15753 15754 15755 15756 15757 15758 15759 15760 15761 15762 15763 15764 15765 15766 15767 15768 15769 15770 15771 15772 15773 15774 15775 15776 15777 15778 15779 15780 15781 15782 15783 15784 15785 15786 15787 15788 15789 15790 15791 15792 15793 15794 15795 15796 15797 15798 15799 15800 15801 15802 15803 15804 15805 15806 15807 15808 15809 15810 15811 15812 15813 15814 15815 15816 15817 15818 15819 15820 15821 15822 15823 15824 15825 15826 15827 15828 15829 15830 15831 15832 15833 15834 15835 15836 15837 15838 15839 15840 15841 15842 15843 15844 15845 15846 15847 15848 15849 15850 15851 15852 15853 15854 15855 15856 15857 15858 15859 15860 15861 15862 15863 15864 15865 15866 15867 15868 15869 15870 15871 15872 15873 15874 15875 15876 15877 15878 15879 15880 15881 15882 15883 15884 15885 15886 15887 15888 15889 15890 15891 15892 15893 15894 15895 15896 15897 15898 15899 15900 15901 15902 15903 15904 15905 15906 15907 15908 15909 15910 15911 15912 15913 15914 15915 15916 15917 15918 15919 15920 15921 15922 15923 15924 15925 15926 15927 15928 15929 15930 15931 15932 15933 15934 15935 15936 15937 15938 15939 15940 15941 15942 15943 15944 15945 15946 15947 15948 15949 15950 15951 15952 15953 15954 15955 15956 15957 15958 15959 15960 15961 15962 15963 15964 15965 15966 15967 15968 15969 15970 15971 15972 15973 15974 15975 15976 15977 15978 15979 15980 15981 15982 15983 15984 15985 15986 15987 15988 15989 15990 15991 15992 15993 15994 15995 15996 15997 15998 15999 16000 16001 16002 16003 16004 16005 16006 16007 16008 16009 16010 16011 16012 16013 16014 16015 16016 16017 16018 16019 16020 16021 16022 16023 16024 16025 16026 16027 16028 16029 16030 16031 16032 16033 16034 16035 16036 16037 16038 16039 16040 16041 16042 16043 16044 16045 16046 16047 16048 16049 16050 16051 16052 16053 16054 16055 16056 16057 16058 16059 16060 16061 16062 16063 16064 16065 16066 16067 16068 16069 16070 16071 16072 16073 16074 16075 16076 16077 16078 16079 16080 16081 16082 16083 16084 16085 16086 16087 16088 16089 16090 16091 16092 16093 16094 16095 16096 16097 16098 16099 16100 16101 16102 16103 16104 16105 16106 16107 16108 16109 16110 16111 16112 16113 16114 16115 16116 16117 16118 16119 16120 16121 16122 16123 16124 16125 16126 16127 16128 16129 16130 16131 16132 16133 16134 16135 16136 16137 16138 16139 16140 16141 16142 16143 16144 16145 16146 16147 16148 16149 16150 16151 16152 16153 16154 16155 16156 16157 16158 16159 16160 16161 16162 16163 16164 16165 16166 16167 16168 16169 16170 16171 16172 16173 16174 16175 16176 16177 16178 16179 16180 16181 16182 16183 16184 16185 16186 16187 16188 16189 16190 16191 16192 16193 16194 16195 16196 16197 16198 16199 16200 16201 16202 16203 16204 16205 16206 16207 16208 16209 16210 16211 16212 16213 16214 16215 16216 16217 16218 16219 16220 16221 16222 16223 16224 16225 16226 16227 16228 16229 16230 16231 16232 16233 16234 16235 16236 16237 16238 16239 16240 16241 16242 16243 16244 16245 16246 16247 16248 16249 16250 16251 16252 16253 16254 16255 16256 16257 16258 16259 16260 16261 16262 16263 16264 16265 16266 16267 16268 16269 16270 16271 16272 16273 16274 16275 16276 16277 16278 16279 16280 16281 16282 16283 16284 16285 16286 16287 16288 16289 16290 16291 16292 16293 16294 16295 16296 16297 16298 16299 16300 16301 16302 16303 16304 16305 16306 16307 16308 16309 16310 16311 16312 16313 16314 16315 16316 16317 16318 16319 16320 16321 16322 16323 16324 16325 16326 16327 16328 16329 16330 16331 16332 16333 16334 16335 16336 16337 16338 16339 16340 16341 16342 16343 16344 16345 16346 16347 16348 16349 16350 16351 16352 16353 16354 16355 16356 16357 16358 16359 16360 16361 16362 16363 16364 16365 16366 16367 16368 16369 16370 16371 16372 16373 16374 16375 16376 16377 16378 16379 16380 16381 16382 16383 16384 16385 16386 16387 16388 16389 16390 16391 16392 16393 16394 16395 16396 16397 16398 16399 16400 16401 16402 16403 16404 16405 16406 16407 16408 16409 16410 16411 16412 16413 16414 16415 16416 16417 16418 16419 16420 16421 16422 16423 16424 16425 16426 16427 16428 16429 16430 16431 16432 16433 16434 16435 16436 16437 16438 16439 16440 16441 16442 16443 16444 16445 16446 16447 16448 16449 16450 16451 16452 16453 16454 16455 16456 16457 16458 16459 16460 16461 16462 16463 16464 16465 16466 16467 16468 16469 16470 16471 16472 16473 16474 16475 16476 16477 16478 16479 16480 16481 16482 16483 16484 16485 16486 16487 16488 16489 16490 16491 16492 16493 16494 16495 16496 16497 16498 16499 16500 16501 16502 16503 16504 16505 16506 16507 16508 16509 16510 16511 16512 16513 16514 16515 16516 16517 16518 16519 16520 16521 16522 16523 16524 16525 16526 16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 16558 16559 16560 16561 16562 16563 16564 16565 16566 16567 16568 16569 16570 16571 16572 16573 16574 16575 16576 16577 16578 16579 16580 16581 16582 16583 16584 16585 16586 16587 16588 16589 16590 16591 16592 16593 16594 16595 16596 16597 16598 16599 16600 16601 16602 16603 16604 16605 16606 16607 16608 16609 16610 16611 16612 16613 16614 16615 16616 16617 16618 16619 16620 16621 16622 16623 16624 16625 16626 16627 16628 16629 16630 16631 16632 16633 16634 16635 16636 16637 16638 16639 16640 16641 16642 16643 16644 16645 16646 16647 16648 16649 16650 16651 16652 16653 16654 16655 16656 16657 16658 16659 16660 16661 16662 16663 16664 16665 16666 16667 16668 16669 16670 16671 16672 16673 16674 16675 16676 16677 16678 16679 16680 16681 16682 16683 16684 16685 16686 16687 16688 16689 16690 16691 16692 16693 16694 16695 16696 16697 16698 16699 16700 16701 16702 16703 16704 16705 16706 16707 16708 16709 16710 16711 16712 16713 16714 16715 16716 16717 16718 16719 16720 16721 16722 16723 16724 16725 16726 16727 16728 16729 16730 16731 16732 16733 16734 16735 16736 16737 16738 16739 16740 16741 16742 16743 16744 16745 16746 16747 16748 16749 16750 16751 16752 16753 16754 16755 16756 16757 16758 16759 16760 16761 16762 16763 16764 16765 16766 16767 16768 16769 16770 16771 16772 16773 16774 16775 16776 16777 16778 16779 16780 16781 16782 16783 16784 16785 16786 16787 16788 16789 16790 16791 16792 16793 16794 16795 16796 16797 16798 16799 16800 16801 16802 16803 16804 16805 16806 16807 16808 16809 16810 16811 16812 16813 16814 16815 16816 16817 16818 16819 16820 16821 16822 16823 16824 16825 16826 16827 16828 16829 16830 16831 16832 16833 16834 16835 16836 16837 16838 16839 16840 16841 16842 16843 16844 16845 16846 16847 16848 16849 16850 16851 16852 16853 16854 16855 16856 16857 16858 16859 16860 16861 16862 16863 16864 16865 16866 16867 16868 16869 16870 16871 16872 16873 16874 16875 16876 16877 16878 16879 16880 16881 16882 16883 16884 16885 16886 16887 16888 16889 16890 16891 16892 16893 16894 16895 16896 16897 16898 16899 16900 16901 16902 16903 16904 16905 16906 16907 16908 16909 16910 16911 16912 16913 16914 16915 16916 16917 16918 16919 16920 16921 16922 16923 16924 16925 16926 16927 16928 16929 16930 16931 16932 16933 16934 16935 16936 16937 16938 16939 16940 16941 16942 16943 16944 16945 16946 16947 16948 16949 16950 16951 16952 16953 16954 16955 16956 16957 16958 16959 16960 16961 16962 16963 16964 16965 16966 16967 16968 16969 16970 16971 16972 16973 16974 16975 16976 16977 16978 16979 16980 16981 16982 16983 16984 16985 16986 16987 16988 16989 16990 16991 16992 16993 16994 16995 16996 16997 16998 16999 17000 17001 17002 17003 17004 17005 17006 17007 17008 17009 17010 17011 17012 17013 17014 17015 17016 17017 17018 17019 17020 17021 17022 17023 17024 17025 17026 17027 17028 17029 17030 17031 17032 17033 17034 17035 17036 17037 17038 17039 17040 17041 17042 17043 17044 17045 17046 17047 17048 17049 17050 17051 17052 17053 17054 17055 17056 17057 17058 17059 17060 17061 17062 17063 17064 17065 17066 17067 17068 17069 17070 17071 17072 17073 17074 17075 17076 17077 17078 17079 17080 17081 17082 17083 17084 17085 17086 17087 17088 17089 17090 17091 17092 17093 17094 17095 17096 17097 17098 17099 17100 17101 17102 17103 17104 17105 17106 17107 17108 17109 17110 17111 17112 17113 17114 17115 17116 17117 17118 17119 17120 17121 17122 17123 17124 17125 17126 17127 17128 17129 17130 17131 17132 17133 17134 17135 17136 17137 17138 17139 17140 17141 17142 17143 17144 17145 17146 17147 17148 17149 17150 17151 17152 17153 17154 17155 17156 17157 17158 17159 17160 17161 17162 17163 17164 17165 17166 17167 17168 17169 17170 17171 17172 17173 17174 17175 17176 17177 17178 17179 17180 17181 17182 17183 17184 17185 17186 17187 17188 17189 17190 17191 17192 17193 17194 17195 17196 17197 17198 17199 17200 17201 17202 17203 17204 17205 17206 17207 17208 17209 17210 17211 17212 17213 17214 17215 17216 17217 17218 17219 17220 17221 17222 17223 17224 17225 17226 17227 17228 17229 17230 17231 17232 17233 17234 17235 17236 17237 17238 17239 17240 17241 17242 17243 17244 17245 17246 17247 17248 17249 17250 17251 17252 17253 17254 17255 17256 17257 17258 17259 17260 17261 17262 17263 17264 17265 17266 17267 17268 17269 17270 17271 17272 17273 17274 17275 17276 17277 17278 17279 17280 17281 17282 17283 17284 17285 17286 17287 17288 17289 17290 17291 17292 17293 17294 17295 17296 17297 17298 17299 17300 17301 17302 17303 17304 17305 17306 17307 17308 17309 17310 17311 17312 17313 17314 17315 17316 17317 17318 17319 17320 17321 17322 17323 17324 17325 17326 17327 17328 17329 17330 17331 17332 17333 17334 17335 17336 17337 17338 17339 17340 17341 17342 17343 17344 17345 17346 17347 17348 17349 17350 17351 17352 17353 17354 17355 17356 17357 17358 17359 17360 17361 17362 17363 17364 17365 17366 17367 17368 17369 17370 17371 17372 17373 17374 17375 17376 17377 17378 17379 17380 17381 17382 17383 17384 17385 17386 17387 17388 17389 17390 17391 17392 17393 17394 17395 17396 17397 17398 17399 17400 17401 17402 17403 17404 17405 17406 17407 17408 17409 17410 17411 17412 17413 17414 17415 17416 17417 17418 17419 17420 17421 17422 17423 17424 17425 17426 17427 17428 17429 17430 17431 17432 17433 17434 17435 17436 17437 17438 17439 17440 17441 17442 17443 17444 17445 17446 17447 17448 17449 17450 17451 17452 17453 17454 17455 17456 17457 17458 17459 17460 17461 17462 17463 17464 17465 17466 17467 17468 17469 17470 17471 17472 17473 17474 17475 17476 17477 17478 17479 17480 17481 17482 17483 17484 17485 17486 17487 17488 17489 17490 17491 17492 17493 17494 17495 17496 17497 17498 17499 17500 17501 17502 17503 17504 17505 17506 17507 17508 17509 17510 17511 17512 17513 17514 17515 17516 17517 17518 17519 17520 17521 17522 17523 17524 17525 17526 17527 17528 17529 17530 17531 17532 17533 17534 17535 17536 17537 17538 17539 17540 17541 17542 17543 17544 17545 17546 17547 17548 17549 17550 17551 17552 17553 17554 17555 17556 17557 17558 17559 17560 17561 17562 17563 17564 17565 17566 17567 17568 17569 17570 17571 17572 17573 17574 17575 17576 17577 17578 17579 17580 17581 17582 17583 17584 17585 17586 17587 17588 17589 17590 17591 17592 17593 17594 17595 17596 17597 17598 17599 17600 17601 17602 17603 17604 17605 17606 17607 17608 17609 17610 17611 17612 17613 17614 17615 17616 17617 17618 17619 17620 17621 17622 17623 17624 17625 17626 17627 17628 17629 17630 17631 17632 17633 17634 17635 17636 17637 17638 17639 17640 17641 17642 17643 17644 17645 17646 17647 17648 17649 17650 17651 17652 17653 17654 17655 17656 17657 17658 17659 17660 17661 17662 17663 17664 17665 17666 17667 17668 17669 17670 17671 17672 17673 17674 17675 17676 17677 17678 17679 17680 17681 17682 17683 17684 17685 17686 17687 17688 17689 17690 17691 17692 17693 17694 17695 17696 17697 17698 17699 17700 17701 17702 17703 17704 17705 17706 17707 17708 17709 17710 17711 17712 17713 17714 17715 17716 17717 17718 17719 17720 17721 17722 17723 17724 17725 17726 17727 17728 17729 17730 17731 17732 17733 17734 17735 17736 17737 17738 17739 17740 17741 17742 17743 17744 17745 17746 17747 17748 17749 17750 17751 17752 17753 17754 17755 17756 17757 17758 17759 17760 17761 17762 17763 17764 17765 17766 17767 17768 17769 17770 17771 17772 17773 17774 17775 17776 17777 17778 17779 17780 17781 17782 17783 17784 17785 17786 17787 17788 17789 17790 17791 17792 17793 17794 17795 17796 17797 17798 17799 17800 17801 17802 17803 17804 17805 17806 17807 17808 17809 17810 17811 17812 17813 17814 17815 17816 17817 17818 17819 17820 17821 17822 17823 17824 17825 17826 17827 17828 17829 17830 17831 17832 17833 17834 17835 17836 17837 17838 17839 17840 17841 17842 17843 17844 17845 17846 17847 17848 17849 17850 17851 17852 17853 17854 17855 17856 17857 17858 17859 17860 17861 17862 17863 17864 17865 17866 17867 17868 17869 17870 17871 17872 17873 17874 17875 17876 17877 17878 17879 17880 17881 17882 17883 17884 17885 17886 17887 17888 17889 17890 17891 17892 17893 17894 17895 17896 17897 17898 17899 17900 17901 17902 17903 17904 17905 17906 17907 17908 17909 17910 17911 17912 17913 17914 17915 17916 17917 17918 17919 17920 17921 17922 17923 17924 17925 17926 17927 17928 17929 17930 17931 17932 17933 17934 17935 17936 17937 17938 17939 17940 17941 17942 17943 17944 17945 17946 17947 17948 17949 17950 17951 17952 17953 17954 17955 17956 17957 17958 17959 17960 17961 17962 17963 17964 17965 17966 17967 17968 17969 17970 17971 17972 17973 17974 17975 17976 17977 17978 17979 17980 17981 17982 17983 17984 17985 17986 17987 17988 17989 17990 17991 17992 17993 17994 17995 17996 17997 17998 17999 18000 18001 18002 18003 18004 18005 18006 18007 18008 18009 18010 18011 18012 18013 18014 18015 18016 18017 18018 18019 18020 18021 18022 18023 18024 18025 18026 18027 18028 18029 18030 18031 18032 18033 18034 18035 18036 18037 18038 18039 18040 18041 18042 18043 18044 18045 18046 18047 18048 18049 18050 18051 18052 18053 18054 18055 18056 18057 18058 18059 18060 18061 18062 18063 18064 18065 18066 18067 18068 18069 18070 18071 18072 18073 18074 18075 18076 18077 18078 18079 18080 18081 18082 18083 18084 18085 18086 18087 18088 18089 18090 18091 18092 18093 18094 18095 18096 18097 18098 18099 18100 18101 18102 18103 18104 18105 18106 18107 18108 18109 18110 18111 18112 18113 18114 18115 18116 18117 18118 18119 18120 18121 18122 18123 18124 18125 18126 18127 18128 18129 18130 18131 18132 18133 18134 18135 18136 18137 18138 18139 18140 18141 18142 18143 18144 18145 18146 18147 18148 18149 18150 18151 18152 18153 18154 18155 18156 18157 18158 18159 18160 18161 18162 18163 18164 18165 18166 18167 18168 18169 18170 18171 18172 18173 18174 18175 18176 18177 18178 18179 18180 18181 18182 18183 18184 18185 18186 18187 18188 18189 18190 18191 18192 18193 18194 18195 18196 18197 18198 18199 18200 18201 18202 18203 18204 18205 18206 18207 18208 18209 18210 18211 18212 18213 18214 18215 18216 18217 18218 18219 18220 18221 18222 18223 18224 18225 18226 18227 18228 18229 18230 18231 18232 18233 18234 18235 18236 18237 18238 18239 18240 18241 18242 18243 18244 18245 18246 18247 18248 18249 18250 18251 18252 18253 18254 18255 18256 18257 18258 18259 18260 18261 18262 18263 18264 18265 18266 18267 18268 18269 18270 18271 18272 18273 18274 18275 18276 18277 18278 18279 18280 18281 18282 18283 18284 18285 18286 18287 18288 18289 18290 18291 18292 18293 18294 18295 18296 18297 18298 18299 18300 18301 18302 18303 18304 18305 18306 18307 18308 18309 18310 18311 18312 18313 18314 18315 18316 18317 18318 18319 18320 18321 18322 18323 18324 18325 18326 18327 18328 18329 18330 18331 18332 18333 18334 18335 18336 18337 18338 18339 18340 18341 18342 18343 18344 18345 18346 18347 18348 18349 18350 18351 18352 18353 18354 18355 18356 18357 18358 18359 18360 18361 18362 18363 18364 18365 18366 18367 18368 18369 18370 18371 18372 18373 18374 18375 18376 18377 18378 18379 18380 18381 18382 18383 18384 18385 18386 18387 18388 18389 18390 18391 18392 18393 18394 18395 18396 18397 18398 18399 18400 18401 18402 18403 18404 18405 18406 18407 18408 18409 18410 18411 18412 18413 18414 18415 18416 18417 18418 18419 18420 18421 18422 18423 18424 18425 18426 18427 18428 18429 18430 18431 18432 18433 18434 18435 18436 18437 18438 18439 18440 18441 18442 18443 18444 18445 18446 18447 18448 18449 18450 18451 18452 18453 18454 18455 18456 18457 18458 18459 18460 18461 18462 18463 18464 18465 18466 18467 18468 18469 18470 18471 18472 18473 18474 18475 18476 18477 18478 18479 18480 18481 18482 18483 18484 18485 18486 18487 18488 18489 18490 18491 18492 18493 18494 18495 18496 18497 18498 18499 18500 18501 18502 18503 18504 18505 18506 18507 18508 18509 18510 18511 18512 18513 18514 18515 18516 18517 18518 18519 18520 18521 18522 18523 18524 18525 18526 18527 18528 18529 18530 18531 18532 18533 18534 18535 18536 18537 18538 18539 18540 18541 18542 18543 18544 18545 18546 18547 18548 18549 18550 18551 18552 18553 18554 18555 18556 18557 18558 18559 18560 18561 18562 18563 18564 18565 18566 18567 18568 18569 18570 18571 18572 18573 18574 18575 18576 18577 18578 18579 18580 18581 18582 18583 18584 18585 18586 18587 18588 18589 18590 18591 18592 18593 18594 18595 18596 18597 18598 18599 18600 18601 18602 18603 18604 18605 18606 18607 18608 18609 18610 18611 18612 18613 18614 18615 18616 18617 18618 18619 18620 18621 18622 18623 18624 18625 18626 18627 18628 18629 18630 18631 18632 18633 18634 18635 18636 18637 18638 18639 18640 18641 18642 18643 18644 18645 18646 18647 18648 18649 18650 18651 18652 18653 18654 18655 18656 18657 18658 18659 18660 18661 18662 18663 18664 18665 18666 18667 18668 18669 18670 18671 18672 18673 18674 18675 18676 18677 18678 18679 18680 18681 18682 18683 18684 18685 18686 18687 18688 18689 18690 18691 18692 18693 18694 18695 18696 18697 18698 18699 18700 18701 18702 18703 18704 18705 18706 18707 18708 18709 18710 18711 18712 18713 18714 18715 18716 18717 18718 18719 18720 18721 18722 18723 18724 18725 18726 18727 18728 18729 18730 18731 18732 18733 18734 18735 18736 18737 18738 18739 18740 18741 18742 18743 18744 18745 18746 18747 18748 18749 18750 18751 18752 18753 18754 18755 18756 18757 18758 18759 18760 18761 18762 18763 18764 18765 18766 18767 18768 18769 18770 18771 18772 18773 18774 18775 18776 18777 18778 18779 18780 18781 18782 18783 18784 18785 18786 18787 18788 18789 18790 18791 18792 18793 18794 18795 18796 18797 18798 18799 18800 18801 18802 18803 18804 18805 18806 18807 18808 18809 18810 18811 18812 18813 18814 18815 18816 18817 18818 18819 18820 18821 18822 18823 18824 18825 18826 18827 18828 18829 18830 18831 18832 18833 18834 18835 18836 18837 18838 18839 18840 18841 18842 18843 18844 18845 18846 18847 18848 18849 18850 18851 18852 18853 18854 18855 18856 18857 18858 18859 18860 18861 18862 18863 18864 18865 18866 18867 18868 18869 18870 18871 18872 18873 18874 18875 18876 18877 18878 18879 18880 18881 18882 18883 18884 18885 18886 18887 18888 18889 18890 18891 18892 18893 18894 18895 18896 18897 18898 18899 18900 18901 18902 18903 18904 18905 18906 18907 18908 18909 18910 18911 18912 18913 18914 18915 18916 18917 18918 18919 18920 18921 18922 18923 18924 18925 18926 18927 18928 18929 18930 18931 18932 18933 18934 18935 18936 18937 18938 18939 18940 18941 18942 18943 18944 18945 18946 18947 18948 18949 18950 18951 18952 18953 18954 18955 18956 18957 18958 18959 18960 18961 18962 18963 18964 18965 18966 18967 18968 18969 18970 18971 18972 18973 18974 18975 18976 18977 18978 18979 18980 18981 18982 18983 18984 18985 18986 18987 18988 18989 18990 18991 18992 18993 18994 18995 18996 18997 18998 18999 19000 19001 19002 19003 19004 19005 19006 19007 19008 19009 19010 19011 19012 19013 19014 19015 19016 19017 19018 19019 19020 19021 19022 19023 19024 19025 19026 19027 19028 19029 19030 19031 19032 19033 19034 19035 19036 19037 19038 19039 19040 19041 19042 19043 19044 19045 19046 19047 19048 19049 19050 19051 19052 19053 19054 19055 19056 19057 19058 19059 19060 19061 19062 19063 19064 19065 19066 19067 19068 19069 19070 19071 19072 19073 19074 19075 19076 19077 19078 19079 19080 19081 19082 19083 19084 19085 19086 19087 19088 19089 19090 19091 19092 19093 19094 19095 19096 19097 19098 19099 19100 19101 19102 19103 19104 19105 19106 19107 19108 19109 19110 19111 19112 19113 19114 19115 19116 19117 19118 19119 19120 19121 19122 19123 19124 19125 19126 19127 19128 19129 19130 19131 19132 19133 19134 19135 19136 19137 19138 19139 19140 19141 19142 19143 19144 19145 19146 19147 19148 19149 19150 19151 19152 19153 19154 19155 19156 19157 19158 19159 19160 19161 19162 19163 19164 19165 19166 19167 19168 19169 19170 19171 19172 19173 19174 19175 19176 19177 19178 19179 19180 19181 19182 19183 19184 19185 19186 19187 19188 19189 19190 19191 19192 19193 19194 19195 19196 19197 19198 19199 19200 19201 19202 19203 19204 19205 19206 19207 19208 19209 19210 19211 19212 19213 19214 19215 19216 19217 19218 19219 19220 19221 19222 19223 19224 19225 19226 19227 19228 19229 19230 19231 19232 19233 19234 19235 19236 19237 19238 19239 19240 19241 19242 19243 19244 19245 19246 19247 19248 19249 19250 19251 19252 19253 19254 19255 19256 19257 19258 19259 19260 19261 19262 19263 19264 19265 19266 19267 19268 19269 19270 19271 19272 19273 19274 19275 19276 19277 19278 19279 19280 19281 19282 19283 19284 19285 19286 19287 19288 19289 19290 19291 19292 19293 19294 19295 19296 19297 19298 19299 19300 19301 19302 19303 19304 19305 19306 19307 19308 19309 19310 19311 19312 19313 19314 19315 19316 19317 19318 19319 19320 19321 19322 19323 19324 19325 19326 19327 19328 19329 19330 19331 19332 19333 19334 19335 19336 19337 19338 19339 19340 19341 19342 19343 19344 19345 19346 19347 19348 19349 19350 19351 19352 19353 19354 19355 19356 19357 19358 19359 19360 19361 19362 19363 19364 19365 19366 19367 19368 19369 19370 19371 19372 19373 19374 19375 19376 19377 19378 19379 19380 19381 19382 19383 19384 19385 19386 19387 19388 19389 19390 19391 19392 19393 19394 19395 19396 19397 19398 19399 19400 19401 19402 19403 19404 19405 19406 19407 19408 19409 19410 19411 19412 19413 19414 19415 19416 19417 19418 19419 19420 19421 19422 19423 19424 19425 19426 19427 19428 19429 19430 19431 19432 19433 19434 19435 19436 19437 19438 19439 19440 19441 19442 19443 19444 19445 19446 19447 19448 19449 19450 19451 19452 19453 19454 19455 19456 19457 19458 19459 19460 19461 19462 19463 19464 19465 19466 19467 19468 19469 19470 19471 19472 19473 19474 19475 19476 19477 19478 19479 19480 19481 19482 19483 19484 19485 19486 19487 19488 19489 19490 19491 19492 19493 19494 19495 19496 19497 19498 19499 19500 19501 19502 19503 19504 19505 19506 19507 19508 19509 19510 19511 19512 19513 19514 19515 19516 19517 19518 19519 19520 19521 19522 19523 19524 19525 19526 19527 19528 19529 19530 19531 19532 19533 19534 19535 19536 19537 19538 19539 19540 19541 19542 19543 19544 19545 19546 19547 19548 19549 19550 19551 19552 19553 19554 19555 19556 19557 19558 19559 19560 19561 19562 19563 19564 19565 19566 19567 19568 19569 19570 19571 19572 19573 19574 19575 19576 19577 19578 19579 19580 19581 19582 19583 19584 19585 19586 19587 19588 19589 19590 19591 19592 19593 19594 19595 19596 19597 19598 19599 19600 19601 19602 19603 19604 19605 19606 19607 19608 19609 19610 19611 19612 19613 19614 19615 19616 19617 19618 19619 19620 19621 19622 19623 19624 19625 19626 19627 19628 19629 19630 19631 19632 19633 19634 19635 19636 19637 19638 19639 19640 19641 19642 19643 19644 19645 19646 19647 19648 19649 19650 19651 19652 19653 19654 19655 19656 19657 19658 19659 19660 19661 19662 19663 19664 19665 19666 19667 19668 19669 19670 19671 19672 19673 19674 19675 19676 19677 19678 19679 19680 19681 19682 19683 19684 19685 19686 19687 19688 19689 19690 19691 19692 19693 19694 19695 19696 19697 19698 19699 19700 19701 19702 19703 19704 19705 19706 19707 19708 19709 19710 19711 19712 19713 19714 19715 19716 19717 19718 19719 19720 19721 19722 19723 19724 19725 19726 19727 19728 19729 19730 19731 19732 19733 19734 19735 19736 19737 19738 19739 19740 19741 19742 19743 19744 19745 19746 19747 19748 19749 19750 19751 19752 19753 19754 19755 19756 19757 19758 19759 19760 19761 19762 19763 19764 19765 19766 19767 19768 19769 19770 19771 19772 19773 19774 19775 19776 19777 19778 19779 19780 19781 19782 19783 19784 19785 19786 19787 19788 19789 19790 19791 19792 19793 19794 19795 19796 19797 19798 19799 19800 19801 19802 19803 19804 19805 19806 19807 19808 19809 19810 19811 19812 19813 19814 19815 19816 19817 19818 19819 19820 19821 19822 19823 19824 19825 19826 19827 19828 19829 19830 19831 19832 19833 19834 19839 19840 19841 19842 19843 19844 19845 19846 19847 19848 19849 19850 19851 19852 19853 19854 19855 19856 19857 19858 19859 19860 19861 19862 19863 19864 19865 19866 19867 19868 19869 19870 19871 19872 19873 19874 19875 19876 19877 19878 19879 19880 19881 19882 19883 19884 19885 19886 19887 19888 19889 19890 19891 19892 19893 19894 19895 19896 19897 19898 19899 19900 19901 19902 19903 19904 19905 19906 19907 19908 19909 19910 19911 19912 19913 19914 19915 19916 19917 19918 19919 19920 19921 19922 19923 19924 19925 19926 19927 19928 19929 19930 19931 19932 19933 19934 19935 19936 19937 19938 19939 19940 19941 19942 19943 19944 19945 19946 19947 19948 19949 19950 19951 19952 19953 19954 19955 19956 19957 19958 19959 19960 19961 19962 19963 19964 19965 19966 19967 19968 19969 19970 19971 19972 19973 19974 19975 19976 19977 19978 19979 19980 19981 19982 19983 19984 19985 19986 19987 19988 19989 19990 19991 19992 19993 19994 19995 19996 19997 19998 19999 20000 20001 20002 20003 20004 20005 20006 20007 20008 20009 20010 20011 20012 20013 20014 20015 20016 20017 20018 20019 20020 20021 20022 20023 20024 20025 20026 20027 20028 20029 20030 20031 20032 20033 20034 20035 20036 20037 20038 20039 20040 20041 20042 20043 20044 20045 20046 20047 20048 20049 20050 20051 20052 20053 20054 20055 20056 20057 20058 20059 20060 20061 20062 20063 20064 20065 20066 20067 20068 20069 20070 20071 20072 20073 20074 20075 20076 20077 20078 20079 20080 20081 20082 20083 20084 20085 20086 20087 20088 20089 20090 20091 20092 20093 20094 20095 20096 20097 20098 20099 20100 20101 20102 20103 20104 20105 20106 20107 20108 20109 20110 20111 20112 20113 20114 20115 20116 20117 20118 20119 20120 20121 20122 20123 20124 20125 20126 20127 20128 20129 20130 20131 20132 20133 20134 20135 20136 20137 20138 20139 20140 20141 20142 20143 20144 20145 20146 20147 20148 20149 20150 20151 20152 20153 20154 20155 20156 20157 20158 20159 20160 20161 20162 20163 20164 20165 20166 20167 20168 20169 20170 20171 20172 20173 20174 20175 20176 20177 20178 20179 20180 20181 20182 20183 20184 20185 20186 20187 20188 20189 20190 20191 20192 20193 20194 20195 20196 20197 20198 20199 20200 20201 20202 20203 20204 20205 20206 20207 20208 20209 20210 20211 20212 20213 20214 20215 20216 20217 20218 20219 20220 20221 20222 20223 20224 20225 20226 20227 20228 20229 20230 20231 20232 20233 20234 20235 20236 20237 20238 20239 20240 20241 20242 20243 20244 20245 20246 20247 20248 20249 20250 20251 20252 20253 20254 20255 20256 20257 20258 20259 20260 20261 20262 20263 20264 20265 20266 20267 20268 20269 20270 20271 20272 20273 20274 20275 20276 20277 20278 20279 20280 20281 20282 20283 20284 20285 20286 20287 20288 20289 20290 20291 20292 20293 20294 20295 20296 20297 20298 20299 20300 20301 20302 20303 20304 20305 20306 20307 20308 20309 20310 20311 20312 20313 20314 20315 20316 20317 20318 20319 20320 20321 20322 20323 20324 20325 20326 20327 20328 20329 20330 20331 20332 20333 20334 20335 20336 20337 20338 20339 20340 20341 20342 20343 20344 20345 20346 20347 20348 20349 20350 20351 20352 20353 20354 20355 20356 20357 20358 20359 20360 20361 20362 20363 20364 20365 20366 20367 20368 20369 20370 20371 20372 20373 20374 20375 20376 20377 20378 20379 20380 20381 20382 20383 20384 20385 20386 20387 20388 20389 20390 20391 20392 20393 20394 20395 20396 20397 20398 20399 20400 20401 20402 20403 20404 20405 20406 20407 20408 20409 20410 20411 20412 20413 20414 20415 20416 20417 20418 20419 20420 20421 20422 20423 20424 20425 20426 20427 20428 20429 20430 20431 20432 20433 20434 20435 20436 20437 20438 20439 20440 20441 20442 20443 20444 20445 20446 20447 20448 20449 20450 20451 20452 20453 20454 20455 20456 20457 20458 20459 20460 20461 20462 20463 20464 20465 20466 20467 20468 20469 20470 20471 20472 20473 20474 20475 20476 20477 20478 20479 20480 20481 20482 20483 20484 20485 20486 20487 20488 20489 20490 20491 20492 20493 20494 20495 20496 20497 20498 20499 20500 20501 20502 20503 20504 20505 20506 20507 20508 20509 20510 20511 20512 20513 20514 20515 20516 20517 20518 20519 20520 20521 20522 20523 20524 20525 20526 20527 20528 20529 20530 20531 20532 20533 20534 20535 20536 20537 20538 20539 20540 20541 20542 20543 20544 20545 20546 20547 20548 20549 20550 20551 20552 20553 20554 20555 20556 20557 20558 20559 20560 20561 20562 20563 20564 20565 20566 20567 20568 20569 20570 20571 20572 20573 20574 20575 20576 20577 20578 20579 20580 20581 20582 20583 20584 20585 20586 20587 20588 20589 20590 20591 20592 20593 20594 20595 20596 20597 20598 20599 20600 20601 20602 20603 20604 20605 20606 20607 20608 20609 20610 20611 20612 20613 20614 20615 20616 20617 20618 20619 20620 20621 20622 20623 20624 20625 20626 20627 20628 20629 20630 20631 20632 20633 20634 20635 20636 20637 20638 20639 20640 20641 20642 20643 20644 20645 20646 20647 20648 20649 20650 20651 20652 20653 20654 20655 20656 20657 20658 20659 20660 20661 20662 20663 20664 20665 20666 20667 20668 20669 20670 20671 20672 20673 20674 20675 20676 20677 20678 20679 20680 20681 20682 20683 20684 20685 20686 20687 20688 20689 20690 20691 20692 20693 20694 20695 20696 20697 20698 20699 20700 20701 20702 20703 20704 20705 20706 20707 20708 20709 20710 20711 20712 20713 20714 20715 20716 20717 20718 20719 20720 20721 20722 20723 20724 20725 20726 20727 20728 20729 20730 20731 20732 20733 20734 20735 20736 20737 20738 20739 20740 20741 20742 20743 20744 20745 20746 20747 20748 20749 20750 20751 20752 20753 20754 20755 20756 20757 20758 20759 20760 20761 20762 20763 20764 20765 20766 20767 20768 20769 20770 20771 20772 20773 20774 20775 20776 20777 20778 20779 20780 20781 20782 20783 20784 20785 20786 20787 20788 20789 20790 20791 20792 20793 20794 20795 20796 20797 20798 20799 20800 20801 20802 20803 20804 20805 20806 20807 20808 20809 20810 20811 20812 20813 20814 20815 20816 20817 20818 20819 20820 20821 20822 20823 20824 20825 20826 20827 20828 20829 20830 20831 20832 20833 20834 20835 20836 20837 20838 20839 20840 20841 20842 20843 20844 20845 20846 20847 20848 20849 20850 20851 20852 20853 20854 20855 20856 20857 20858 20859 20860 20861 20862 20863 20864 20865 20866 20867 20868 20869 20870 20871 20872 20873 20874 20875 20876 20877 20878 20879 20880 20881 20882 20883 20884 20885 20886 20887 20888 20889 20890 20891 20892 20893 20894 20895 20896 20897 20898 20899 20900 20901 20902 20903 20904 20905 20906 20907 20908 20909 20910 20911 20912 20913 20914 20915 20916 20917 20918 20919 20920 20921 20922 20923 20924 20925 20926 20927 20928 20929 20930 20931 20932 20933 20934 20935 20936 20937 20938 20939 20940 20941 20942 20943 20944 20945 20946 20947 20948 20949 20950 20951 20952 20953 20954 20955 20956 20957 20958 20959 20960 20961 20962 20963 20964 20965 20966 20967 20968 20969 20970 20971 20972 20973 20974 20975 20976 20977 20978 20979 20980 20981 20982 20983 20984 20985 20986 20987 20988 20989 20990 20991 20992 20993 20994 20995 20996 20997 20998 20999 21000 21001 21002 21003 21004 21005 21006 21007 21008 21009 21010 21011 21012 21013 21014 21015 21016 21017 21018 21019 21020 21021 21022 21023 21024 21025 21026 21027 21028 21029 21030 21031 21032 21033 21034 21035 21036 21037 21038 21039 21040 21041 21042 21043 21044 21045 21046 21047 21048 21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 21089 21090 21091 21092 21093 21094 21095 21096 21097 21098 21099 21100 21101 21102 21103 21104 21105 21106 21107 21108 21109 21110 21111 21112 21113 21114 21115 21116 21117 21118 21119 21120 21121 21122 21123 21124 21125 21126 21127 21128 21129 21130 21131 21132 21133 21134 21135 21136 21137 21138 21139 21140 21141 21142 21143 21144 21145 21146 21147 21148 21149 21150 21151 21152 21153 21154 21155 21156 21157 21158 21159 21160 21161 21162 21163 21164 21165 21166 21167 21168 21169 21170 21171 21172 21173 21174 21175 21176 21177 21178 21179 21180 21181 21182 21183 21184 21185 21186 21187 21188 21189 21190 21191 21192 21193 21194 21195 21196 21197 21198 21199 21200 21201 21202 21203 21204 21205 21206 21207 21208 21209 21210 21211 21212 21213 21214 21215 21216 21217 21218 21219 21220 21221 21222 21223 21224 21225 21226 21227 21228 21229 21230 21231 21232 21233 21234 21235 21236 21237 21238 21239 21240 21241 21242 21243 21244 21245 21246 21247 21248 21249 21250 21251 21252 21253 21254 21255 21256 21257 21258 21259 21260 21261 21262 21263 21264 21265 21266 21267 21268 21269 21270 21271 21272 21273 21274 21275 21276 21277 21278 21279 21280 21281 21282 21283 21284 21285 21286 21287 21288 21289 21290 21291 21292 21293 21294 21295 21296 21297 21298 21299 21300 21301 21302 21303 21304 21305 21306 21307 21308 21309 21310 21311 21312 21313 21314 21315 21316 21317 21318 21319 21320 21321 21322 21323 21324 21325 21326 21327 21328 21329 21330 21331 21332 21333 21334 21335 21336 21337 21338 21339 21340 21341 21342 21343 21344 21345 21346 21347 21348 21349 21350 21351 21352 21353 21354 21355 21356 21357 21358 21359 21360 21361 21362 21363 21364 21365 21366 21367 21368 21369 21370 21371 21372 21373 21374 21375 21376 21377 21378 21379 21380 21381 21382 21383 21384 21385 21386 21387 21388 21389 21390 21391 21392 21393 21394 21395 21396 21397 21398 21399 21400 21401 21402 21403 21404 21405 21406 21407 21408 21409 21410 21411 21412 21413 21414 21415 21416 21417 21418 21419 21420 21421 21422 21423 21424 21425 21426 21427 21428 21429 21430 21432 21433 21434 21435 21436 21437 21438 21439 21440 21441 21442 21443 21444 21445 21446 21447 21448 21449 21450 21451 21452 21453 21454 21455 21456 21457 21458 21459 21460 21461 21462 21463 21464 21465 21466 21467 21468 21469 21470 21471 21472 21473 21474 21475 21476 21477 21478 21479 21480 21481 21482 21483 21484 21485 21486 21487 21488 21489 21490 21491 21492 21493 21494 21495 21496 21497 21498 21499 21500 21501 21502 21503 21504 21505 21506 21507 21508 21509 21510 21511 21512 21513 21514 21515 21516 21517 21518 21519 21520 21521 21522 21523 21524 21525 21526 21527 21528 21529 21530 21531 21532 21533 21534 21535 21536 21537 21538 21539 21540 21541 21542 21543 21544 21545 21546 21547 21548 21549 21550 21551 21552 21553 21554 21555 21556 21557 21558 21559 21560 21561 21562 21563 21564 21565 21566 21567 21568 21569 21570 21571 21572 21573 21574 21575 21576 21577 21578 21579 21580 21581 21582 21583 21584 21585 21586 21587 21588 21589 21590 21591 21592 21593 21594 21595 21596 21597 21598 21599 21600 21601 21602 21603 21604 21605 21606 21607 21608 21609 21610 21611 21612 21613 21614 21615 21616 21617 21618 21619 21620 21621 21622 21623 21624 21625 21626 21627 21628 21629 21630 21631 21632 21633 21634 21635 21636 21637 21638 21639 21640 21641 21642 21643 21644 21645 21646 21647 21648 21649 21650 21651 21652 21653 21654 21655 21656 21657 21658 21659 21660 21661 21662 21663 21664 21665 21666 21667 21668 21669 21670 21671 21672 21673 21674 21675 21676 21677 21678 21679 21680 21681 21682 21683 21684 21685 21686 21687 21688 21689 21690 21691 21692 21693 21694 21695 21696 21697 21698 21699 21700 21701 21702 21703 21704 21705 21706 21707 21708 21709 21710 21711 21712 21713 21714 21715 21716 21717 21718 21719 21720 21721 21722 21723 21724 21725 21726 21727 21728 21729 21730 21731 21732 21733 21734 21735 21736 21737 21738 21739 21740 21741 21742 21743 21744 21745 21746 21747 21748 21749 21750 21751 21752 21753 21754 21755 21756 21757 21758 21759 21760 21761 21762 21763 21764 21765 21766 21767 21768 21769 21770 21771 21772 21773 21774 21775 21776 21777 21778 21779 21780 21781 21782 21783 21784 21785 21786 21787 21788 21789 21790 21791 21792 21793 21794 21795 21796 21797 21798 21799 21800 21801 21802 21803 21804 21805 21806 21807 21808 21809 21810 21811 21812 21813 21814 21815 21816 21817 21818 21819 21820 21821 21822 21823 21824 21825 21826 21827 21828 21829 21830 21831 21832 21833 21834 21835 21836 21837 21838 21839 21840 21841 21842 21843 21844 21845 21846 21847 21848 21849 21850 21851 21852 21853 21854 21855 21856 21857 21858 21859 21860 21861 21862 21863 21864 21865 21866 21867 21868 21869 21870 21871 21872 21873 21874 21875 21876 21877 21878 21879 21880 21881 21882 21883 21884 21885 21886 21887 21888 21889 21890 21891 21892 21893 21894 21895 21896 21897 21898 21899 21900 21901 21902 21903 21904 21905 21906 21907 21908 21909 21910 21911 21912 21913 21914 21915 21916 21917 21918 21919 21920 21921 21922 21923 21924 21925 21926 21927 21928 21929 21930 21931 21932 21933 21934 21935 21936 21937 21938 21939 21940 21941 21942 21943 21944 21945 21946 21947 21948 21949 21950 21951 21952 21953 21954 21955 21956 21957 21958 21959 21960 21961 21962 21963 21964 21965 21966 21967 21968 21969 21970 21971 21972 21973 21974 21975 21976 21977 21978 21979 21980 21981 21982 21983 21984 21985 21986 21987 21988 21989 21990 21991 21992 21993 21994 21995 21996 21997 21998 21999 22000 22001 22002 22003 22004 22005 22006 22007 22008 22009 22010 22011 22012 22013 22014 22015 22016 22017 22018 22019 22020 22021 22022 22023 22024 22025 22026 22027 22028 22029 22030 22031 22032 22033 22034 22035 22036 22037 22038 22039 22040 22041 22042 22043 22044 22045 22046 22047 22048 22049 22050 22051 22052 22053 22054 22055 22056 22057 22058 22059 22060 22061 22062 22063 22064 22065 22066 22067 22068 22069 22070 22071 22072 22073 22074 22075 22076 22077 22078 22079 22080 22081 22082 22083 22084 22085 22086 22087 22088 22089 22090 22091 22092 22093 22094 22095 22096 22097 22098 22099 22100 22101 22102 22103 22104 22105 22106 22107 22108 22109 22110 22111 22112 22113 22114 22115 22116 22117 22118 22119 22120 22121 22122 22123 22124 22125 22126 22127 22128 22129 22130 22131 22132 22133 22134 22135 22136 22137 22138 22139 22140 22141 22142 22143 22144 22145 22146 22147 22148 22149 22150 22151 22152 22153 22154 22155 22156 22157 22158 22159 22160 22161 22162 22163 22164 22165 22166 22167 22168 22169 22170 22171 22172 22173 22174 22175 22176 22177 22178 22179 22180 22181 22182 22183 22184 22185 22186 22187 22188 22189 22190 22191 22192 22193 22194 22195 22196 22197 22198 22199 22200 22201 22202 22203 22204 22205 22206 22207 22208 22209 22210 22211 22212 22213 22214 22215 22216 22217 22218 22219 22220 22221 22222 22223 22224 22225 22226 22227 22228 22229 22230 22231 22232 22233 22234 22235 22236 22237 22238 22239 22240 22241 22242 22243 22244 22245 22246 22247 22248 22249 22250 22251 22252 22253 22254 22255 22256 22257 22258 22259 22260 22261 22262 22263 22264 22265 22266 22267 22268 22269 22270 22271 22272 22273 22274 22275 22276 22277 22278 22279 22280 22281 22282 22283 22284 22285 22286 22287 22288 22289 22290 22291 22292 22293 22294 22295 22296 22297 22298 22299 22300 22301 22302 22303 22304 22305 22306 22307 22308 22309 22310 22311 22312 22313 22314 22315 22316 22317 22318 22319 22320 22321 22322 22323 22324 22325 22326 22327 22328 22329 22330 22331 22332 22333 22334 22335 22336 22337 22338 22339 22340 22341 22342 22343 22344 22345 22346 22347 22348 22349 22350 22351 22352 22353 22354 22355 22356 22357 22358 22359 22360 22361 22362 22363 22364 22365 22366 22367 22368 22369 22370 22371 22372 22373 22374 22375 22376 22377 22378 22379 22380 22381 22382 22383 22384 22385 22386 22387 22388 22389 22390 22391 22392 22393 22394 22395 22396 22397 22398 22399 22400 22401 22402 22403 22404 22405 22406 22407 22408 22409 22410 22411 22412 22413 22414 22415 22416 22417 22418 22419 22420 22421 22422 22423 22424 22425 22426 22427 22428 22429 22430 22431 22432 22433 22434 22435 22436 22437 22438 22439 22440 22441 22442 22443 22444 22445 22446 22447 22448 22449 22450 22451 22452 22453 22454 22455 22456 22457 22458 22459 22460 22461 22462 22463 22464 22465 22466 22467 22468 22469 22470 22471 22472 22473 22474 22475 22476 22477 22478 22479 22480 22481 22482 22483 22484 22485 22486 22487 22488 22489 22490 22491 22492 22493 22494 22495 22496 22497 22498 22499 22500 22501 22502 22503 22504 22505 22506 22507 22508 22509 22510 22511 22512 22513 22514 22515 22516 22517 22518 22519 22520 22521 22522 22523 22524 22525 22526 22527 22528 22529 22530 22531 22532 22533 22534 22535 22536 22537 22538 22539 22540 22541 22542 22543 22544 22545 22546 22547 22548 22549 22550 22551 22552 22553 22554 22555 22556 22557 22558 22559 22560 22561 22562 22563 22564 22565 22566 22567 22568 22569 22570 22571 22572 22573 22574 22575 22576 22577 22578 22579 22580 22581 22582 22583 22584 22585 22586 22587 22588 22589 22590 22591 22592 22593 22594 22595 22596 22597 22598 22599 22600 22601 22602 22603 22604 22605 22606 22607 22608 22609 22610 22611 22612 22613 22614 22615 22616 22617 22618 22619 22620 22621 22622 22623 22624 22625 22626 22627 22628 22629 22630 22631 22632 22633 22634 22635 22636 22637 22638 22639 22640 22641 22642 22643 22644 22645 22646 22647 22648 22649 22650 22651 22652 22653 22654 22655 22656 22657 22658 22659 22660 22661 22662 22663 22664 22665 22666 22667 22668 22669 22670 22671 22672 22673 22674 22675 22676 22677 22678 22679 22680 22681 22682 22683 22684 22685 22686 22687 22688 22689 22690 22691 22692 22693 22694 22695 22696 22697 22698 22699 22700 22701 22702 22703 22704 22705 22706 22707 22708 22709 22710 22711 22712 22713 22714 22715 22716 22717 22718 22719 22720 22721 22722 22723 22724 22725 22726 22727 22728 22729 22730 22731 22732 22733 22734 22735 22736 22737 22738 22739 22740 22741 22742 22743 22744 22745 22746 22747 22748 22749 22750 22751 22752 22753 22754 22755 22756 22757 22758 22759 22760 22761 22762 22763 22764 22765 22766 22767 22768 22769 22770 22771 22772 22773 22774 22775 22776 22777 22778 22779 22780 22781 22782 22783 22784 22785 22786 22787 22788 22789 22790 22791 22792 22793 22794 22795 22796 22797 22798 22799 22800 22801 22802 22803 22804 22805 22806 22807 22808 22809 22810 22811 22812 22813 22814 22815 22816 22817 22818 22819 22820 22821 22822 22823 22824 22825 22826 22827 22828 22829 22830 22831 22832 22833 22834 22835 22836 22837 22838 22839 22840 22841 22842 22843 22844 22845 22846 22847 22848 22849 22850 22851 22852 22853 22854 22855 22856 22857 22858 22859 22860 22861 22862 22863 22864 22865 22866 22867 22868 22869 22870 22871 22872 22873 22874 22875 22876 22877 22878 22879 22880 22881 22882 22883 22884 22885 22886 22887 22888 22889 22890 22891 22892 22893 22894 22895 22896 22897 22898 22899 22900 22901 22902 22903 22904 22905 22906 22907 22908 22909 22910 22911 22912 22913 22914 22915 22916 22917 22918 22919 22920 22921 22922 22923 22924 22925 22926 22927 22928 22929 22930 22931 22932 22933 22934 22935 22936 22937 22938 22939 22940 22941 22942 22943 22944 22945 22946 22947 22948 22949 22950 22951 22952 22953 22954 22955 22956 22957 22958 22959 22960 22961 22962 22963 22964 22965 22966 22967 22968 22969 22970 22971 22972 22973 22974 22975 22976 22977 22978 22979 22980 22981 22982 22983 22984 22985 22986 22987 22988 22989 22990 22991 22992 22993 22994 22995 22996 22997 22998 22999 23000 23001 23002 23003 23004 23005 23006 23007 23008 23009 23010 23011 23012 23013 23014 23015 23016 23017 23018 23019 23020 23021 23022 23023 23024 23025 23026 23027 23028 23029 23030 23031 23032 23033 23034 23035 23036 23037 23038 23039 23040 23041 23042 23043 23044 23045 23046 23047 23048 23049 23050 23051 23052 23053 23054 23055 23056 23057 23058 23059 23060 23061 23062 23063 23064 23065 23066 23067 23068 23069 23070 23071 23072 23073 23074 23075 23076 23077 23078 23079 23080 23081 23082 23083 23084 23085 23086 23087 23088 23089 23090 23091 23092 23093 23094 23095 23096 23097 23098 23099 23100 23101 23102 23103 23104 23105 23106 23107 23108 23109 23110 23111 23112 23113 23114 23115 23116 23117 23118 23119 23120 23121 23122 23123 23124 23125 23126 23127 23128 23129 23130 23131 23132 23133 23134 23135 23136 23137 23138 23139 23140 23141 23142 23143 23144 23145 23146 23147 23148 23149 23150 23151 23152 23153 23154 23155 23156 23157 23158 23159 23160 23161 23162 23163 23164 23165 23166 23167 23168 23169 23170 23171 23172 23173 23174 23175 23176 23177 23178 23179 23180 23181 23182 23183 23184 23185 23186 23187 23188 23189 23190 23191 23192 23193 23194 23195 23196 23197 23198 23199 23200 23201 23202 23203 23204 23205 23206 23207 23208 23209 23210 23211 23212 23213 23214 23215 23216 23217 23218 23219 23220 23221 23222 23223 23224 23225 23226 23227 23228 23229 23230 23231 23232 23233 23234 23235 23236 23237 23238 23239 23240 23241 23242 23243 23244 23245 23246 23247 23248 23249 23250 23251 23252 23253 23254 23255 23256 23257 23258 23259 23260 23261 23262 23263 23264 23265 23266 23267 23268 23269 23270 23271 23272 23273 23274 23275 23276 23277 23278 23279 23280 23281 23282 23283 23284 23285 23286 23287 23288 23289 23290 23291 23292 23293 23294 23295 23296 23297 23298 23299 23300 23301 23302 23303 23304 23305 23306 23307 23308 23309 23310 23311 23312 23313 23314 23315 23316 23317 23318 23319 23320 23321 23322 23323 23324 23325 23326 23327 23328 23329 23330 23331 23332 23333 23334 23335 23336 23337 23338 23339 23340 23341 23342 23343 23344 23345 23346 23347 23348 23349 23350 23351 23352 23353 23354 23355 23356 23357 23358 23359 23360 23361 23362 23363 23364 23365 23366 23367 23368 23369 23370 23371 23372 23373 23374 23375 23376 23377 23378 23379 23380 23381 23382 23383 23384 23385 23386 23387 23388 23389 23390 23391 23392 23393 23394 23395 23396 23397 23398 23399 23400 23401 23402 23403 23404 23405 23406 23407 23408 23409 23410 23411 23412 23413 23414 23415 23416 23417 23418 23419 23420 23421 23422 23423 23424 23425 23426 23427 23428 23429 23430 23431 23432 23433 23434 23435 23436 23437 23438 23439 23440 23441 23442 23443 23444 23445 23446 23447 23448 23449 23450 23451 23452 23453 23454 23455 23456 23457 23458 23459 23460 23461 23462 23463 23464 23465 23466 23467 23468 23469 23470 23471 23472 23473 23474 23475 23476 23477 23478 23479 23480 23481 23482 23483 23484 23485 23486 23487 23488 23489 23490 23491 23492 23493 23494 23495 23496 23497 23498 23499 23500 23501 23502 23503 23504 23505 23506 23507 23508 23509 23510 23511 23512 23513 23514 23515 23516 23517 23518 23519 23520 23521 23522 23523 23524 23525 23526 23527 23528 23529 23530 23531 23532 23533 23534 23535 23536 23537 23538 23539 23540 23541 23542 23543 23544 23545 23546 23547 23548 23549 23550 23551 23552 23553 23554 23555 23556 23557 23558 23559 23560 23561 23562 23563 23564 23565 23566 23567 23568 23569 23570 23571 23572 23573 23574 23575 23576 23577 23578 23579 23580 23581 23582 23583 23584 23585 23586 23587 23588 23589 23590 23591 23592 23593 23594 23595 23596 23597 23598 23599 23600 23601 23602 23603 23604 23605 23606 23607 23608 23609 23610 23611 23612 23613 23614 23615 23616 23617 23618 23619 23620 23621 23622 23623 23624 23625 23626 23627 23628 23629 23630 23631 23632 23633 23634 23635 23636 23637 23638 23639 23640 23641 23642 23643 23644 23645 23646 23647 23648 23649 23650 23651 23652 23653 23654 23655 23656 23657 23658 23659 23660 23661 23662 23663 23664 23665 23666 23667 23668 23669 23670 23671 23672 23673 23674 23675 23676 23677 23678 23679 23680 23681 23682 23683 23684 23685 23686 23687 23688 23689 23690 23691 23692 23693 23694 23695 23696 23697 23698 23699 23700 23701 23702 23703 23704 23705 23706 23707 23708 23709 23710 23711 23712 23713 23714 23715 23716 23717 23718 23719 23720 23721 23722 23723 23724 23725 23726 23727 23728 23729 23730 23731 23732 23733 23734 23735 23736 23737 23738 23739 23740 23741 23742 23743 23744 23745 23746 23747 23748 23749 23750 23751 23752 23753 23754 23755 23756 23757 23758 23759 23760 23761 23762 23763 23764 23765 23766 23767 23768 23769 23770 23771 23772 23773 23774 23775 23776 23777 23778 23779 23780 23781 23782 23783 23784 23785 23786 23787 23788 23789 23790 23791 23792 23793 23794 23795 23796 23797 23798 23799 23800 23801 23802 23803 23804 23805 23806 23807 23808 23809 23810 23811 23812 23813 23814 23815 23816 23817 23818 23819 23820 23821 23822 23823 23824 23825 23826 23827 23828 23829 23830 23831 23832 23833 23834 23835 23836 23837 23838 23839 23840 23841 23842 23843 23844 23845 23846 23847 23848 23849 23850 23851 23852 23853 23854 23855 23856 23857 23858 23859 23860 23861 23862 23863 23864 23865 23866 23867 23868 23869 23870 23871 23872 23873 23874 23875 23876 23877 23878 23879 23880 23881 23882 23883 23884 23885 23886 23887 23888 23889 23890 23891 23892 23893 23894 23895 23896 23897 23898 23899 23900 23901 23902 23903 23904 23905 23906 23907 23908 23909 23910 23911 23912 23913 23914 23915 23916 23917 23918 23919 23920 23921 23922 23923 23924 23925 23926 23927 23928 23929 23930 23931 23932 23933 23934 23935 23936 23937 23938 23939 23940 23941 23942 23943 23944 23945 23946 23947 23948 23949 23950 23951 23952 23953 23954 23955 23956 23957 23958 23959 23960 23961 23962 23963 23964 23965 23966 23967 23968 23969 23970 23971 23972 23973 23974 23975 23976 23977 23978 23979 23980 23981 23982 23983 23984 23985 23986 23987 23988 23989 23990 23991 23992 23993 23994 23995 23996 23997 23998 23999 24000 24001 24002 24003 24004 24005 24006 24007 24008 24009 24010 24011 24012 24013 24014 24015 24016 24017 24018 24019 24020 24021 24022 24023 24024 24025 24026 24027 24028 24029 24030 24031 24032 24033 24034 24035 24036 24037 24038 24039 24040 24041 24042 24043 24044 24045 24046 24047 24048 24049 24050 24051 24052 24053 24054 24055 24056 24057 24058 24059 24060 24061 24062 24063 24064 24065 24066 24067 24068 24069 24070 24071 24072 24073 24074 24075 24076 24077 24078 24079 24080 24081 24082 24083 24084 24085 24086 24087 24088 24089 24090 24091 24092 24093 24094 24095 24096 24097 24098 24099 24100 24101 24102 24103 24104 24105 24106 24107 24108 24109 24110 24111 24112 24113 24114 24115 24116 24117 24118 24119 24120 24121 24122 24123 24124 24125 24126 24127 24128 24129 24130 24131 24132 24133 24134 24135 24136 24137 24138 24139 24140 24141 24142 24143 24144 24145 24146 24147 24148 24149 24150 24151 24152 24153 24154 24155 24156 24157 24158 24159 24160 24161 24162 24163 24164 24165 24166 24167 24168 24169 24170 24171 24172 24173 24174 24175 24176 24177 24178 24179 24180 24181 24182 24183 24184 24185 24186 24187 24188 24189 24190 24191 24192 24193 24194 24195 24196 24197 24198 24199 24200 24201 24202 24203 24204 24205 24206 24207 24208 24209 24210 24211 24212 24213 24214 24215 24216 24217 24218 24219 24220 24221 24222 24223 24224 24225 24226 24227 24228 24229 24230 24231 24232 24233 24234 24235 24236 24237 24238 24239 24240 24241 24242 24243 24244 24245 24246 24247 24248 24249 24250 24251 24252 24253 24254 24255 24256 24257 24258 24259 24260 24261 24262 24263 24264 24265 24266 24267 24268 24269 24270 24271 24272 24273 24274 24275 24276 24277 24278 24279 24280 24281 24282 24283 24284 24285 24286 24287 24288 24289 24290 24291 24292 24293 24294 24295 24296 24297 24298 24299 24300 24301 24302 24303 24304 24305 24306 24307 24308 24309 24310 24311 24312 24313 24314 24315 24316 24317 24318 24319 24320 24321 24322 24323 24324 24325 24326 24327 24328 24329 24330 24331 24332 24333 24334 24335 24336 24337 24338 24339 24340 24341 24342 24343 24344 24345 24346 24347 24348 24349 24350 24351 24352 24353 24354 24355 24356 24357 24358 24359 24360 24361 24362 24363 24364 24365 24366 24367 24368 24369 24370 24371 24372 24373 24374 24375 24376 24377 24378 24379 24380 24381 24382 24383 24384 24385 24386 24387 24388 24389 24390 24391 24392 24393 24394 24395 24396 24397 24398 24399 24400 24401 24402 24403 24404 24405 24406 24407 24408 24409 24410 24411 24412 24413 24414 24415 24416 24417 24418 24419 24420 24421 24422 24423 24424 24425 24426 24427 24428 24429 24430 24431 24432 24433 24434 24435 24436 24437 24438 24439 24440 24441 24442 24443 24444 24445 24446 24447 24448 24449 24450 24451 24452 24453 24454 24455 24456 24457 24458 24459 24460 24461 24462 24463 24464 24465 24466 24467 24468 24469 24470 24471 24472 24473 24474 24475 24476 24477 24478 24479 24480 24481 24482 24483 24484 24485 24486 24487 24488 24489 24490 24491 24492 24493 24494 24495 24496 24497 24498 24499 24500 24501 24502 24503 24504 24505 24506 24507 24508 24509 24510 24511 24512 24513 24514 24515 24516 24517 24518 24519 24520 24521 24522 24523 24524 24525 24526 24527 24528 24529 24530 24531 24532 24533 24534 24535 24536 24537 24538 24539 24540 24541 24542 24543 24544 24545 24546 24547 24548 24549 24550 24551 24552 24553 24554 24555 24556 24557 24558 24559 24560 24561 24562 24563 24564 24565 24566 24567 24568 24569 24570 24571 24572 24573 24574 24575 24576 24577 24578 24579 24580 24581 24582 24583 24584 24585 24586 24587 24588 24589 24590 24591 24592 24593 24594 24595 24596 24597 24598 24599 24600 24601 24602 24603 24604 24605 24606 24607 24608 24609 24610 24611 24612 24613 24614 24615 24616 24617 24618 24619 24620 24621 24622 24623 24624 24625 24626 24627 24628 24629 24630 24631 24632 24633 24634 24635 24636 24637 24638 24639 24640 24641 24642 24643 24644 24645 24646 24647 24648 24649 24650 24651 24652 24653 24654 24655 24656 24657 24658 24659 24660 24661 24662 24663 24664 24665 24666 24667 24668 24669 24670 24671 24672 24673 24674 24675 24676 24677 24678 24679 24680 24681 24682 24683 24684 24685 24686 24687 24688 24689 24690 24691 24692 24693 24694 24695 24696 24697 24698 24699 24700 24701 24702 24703 24704 24705 24706 24707 24708 24709 24710 24711 24712 24713 24714 24715 24716 24717 24718 24719 24720 24721 24722 24723 24724 24725 24726 24727 24728 24729 24730 24731 24732 24733 24734 24735 24736 24737 24738 24739 24740 24741 24742 24743 24744 24745 24746 24747 24748 24749 24750 24751 24752 24753 24754 24755 24756 24757 24758 24759 24760 24761 24762 24763 24764 24765 24766 24767 24768 24769 24770 24771 24772 24773 24774 24775 24776 24777 24778 24779 24780 24781 24782 24783 24784 24785 24786 24787 24788 24789 24790 24791 24792 24793 24794 24795 24796 24797 24798 24799 24800 24801 24802 24803 24804 24805 24806 24807 24808 24809 24810 24811 24812 24813 24814 24815 24816 24817 24818 24819 24820 24821 24822 24823 24824 24825 24826 24827 24828 24829 24830 24831 24832 24833 24834 24835 24836 24837 24838 24839 24840 24841 24842 24843 24844 24845 24846 24847 24848 24849 24850 24851 24852 24853 24854 24855 24856 24857 24858 24859 24860 24861 24862 24863 24864 24865 24866 24867 24868 24869 24870 24871 24872 24873 24874 24875 24876 24877 24878 24879 24880 24881 24882 24883 24884 24885 24886 24887 24888 24889 24890 24891 24892 24893 24894 24895 24896 24897 24898 24899 24900 24901 24902 24903 24904 24905 24906 24907 24908 24909 24910 24911 24912 24913 24914 24915 24916 24917 24918 24919 24920 24921 24922 24923 24924 24925 24926 24927 24928 24929 24930 24931 24932 24933 24934 24935 24936 24937 24938 24939 24940 24941 24942 24943 24944 24945 24946 24947 24948 24949 24950 24951 24952 24953 24954 24955 24956 24957 24958 24959 24960 24961 24962 24963 24964 24965 24966 24967 24968 24969 24970 24971 24972 24973 24974 24975 24976 24977 24978 24979 24980 24981 24982 24983 24984 24985 24986 24987 24988 24989 24990 24991 24992 24993 24994 24995 24996 24997 24998 24999 25000 25001 25002 25003 25004 25005 25006 25007 25008 25009 25010 25011 25012 25013 25014 25015 25016 25017 25018 25019 25020 25021 25022 25023 25024 25025 25026 25027 25028 25029 25030 25031 25032 25033 25034 25035 25036 25037 25038 25039 25040 25041 25042 25043 25044 25045 25046 25047 25048 25049 25050 25051 25052 25053 25054 25055 25056 25057 25058 25059 25060 25061 25062 25063 25064 25065 25066 25067 25068 25069 25070 25071 25072 25073 25074 25075 25076 25077 25078 25079 25080 25081 25082 25083 25084 25085 25086 25087 25088 25089 25090 25091 25092 25093 25094 25095 25096 25097 25098 25099 25100 25101 25102 25103 25104 25105 25106 25107 25108 25109 25110 25111 25112 25113 25114 25115 25116 25117 25118 25119 25120 25121 25122 25123 25124 25125 25126 25127 25128 25129 25130 25131 25132 25133 25134 25135 25136 25137 25138 25139 25140 25141 25142 25143 25144 25145 25146 25147 25148 25149 25150 25151 25152 25153 25154 25155 25156 25157 25158 25159 25160 25161 25162 25163 25164 25165 25166 25167 25168 25169 25170 25171 25172 25173 25174 25175 25176 25177 25178 25179 25180 25181 25182 25183 25184 25185 25186 25187 25188 25189 25190 25191 25192 25193 25194 25195 25196 25197 25198 25199 25200 25201 25202 25203 25204 25205 25206 25207 25208 25209 25210 25211 25212 25213 25214 25215 25216 25217 25218 25219 25220 25221 25222 25223 25224 25225 25226 25227 25228 25229 25230 25231 25232 25233 25234 25235 25236 25237 25238 25239 25240 25241 25242 25243 25244 25245 25246 25247 25248 25249 25250 25251 25252 25253 25254 25255 25256 25257 25258 25259 25260 25261 25262 25263 25264 25265 25266 25267 25268 25269 25270 25271 25272 25273 25274 25275 25276 25277 25278 25279 25280 25281 25282 25283 25284 25285 25286 25287 25288 25289 25290 25291 25292 25293 25294 25295 25296 25297 25298 25299 25300 25301 25302 25303 25304 25305 25306 25307 25308 25309 25310 25311 25312 25313 25314 25315 25316 25317 25318 25319 25320 25321 25322 25323 25324 25325 25326 25327 25328 25329 25330 25331 25332 25333 25334 25335 25336 25337 25338 25339 25340 25341 25342 25343 25344 25345 25346 25347 25348 25349 25350 25351 25352 25353 25354 25355 25356 25357 25358 25359 25360 25361 25362 25363 25364 25365 25366 25367 25368 25369 25370 25371 25372 25373 25374 25375 25376 25377 25378 25379 25380 25381 25382 25383 25384 25385 25386 25387 25388 25389 25390 25391 25392 25393 25394 25395 25396 25397 25398 25399 25400 25401 25402 25403 25404 25405 25406 25407 25408 25409 25410 25411 25412 25413 25414 25415 25416 25417 25418 25419 25420 25421 25422 25423 25424 25425 25426 25427 25428 25429 25430 25431 25432 25433 25434 25435 25436 25437 25438 25439 25440 25441 25442 25443 25444 25445 25446 25447 25448 25449 25450 25451 25452 25453 25454 25455 25456 25457 25458 25459 25460 25461 25462 25463 25464 25465 25466 25467 25468 25469 25470 25471 25472 25473 25474 25475 25476 25477 25478 25479 25480 25481 25482 25483 25484 25485 25486 25487 25488 25489 25490 25491 25492 25493 25494 25495 25496 25497 25498 25499 25500 25501 25502 25503 25504 25505 25506 25507 25508 25509 25510 25511 25512 25513 25514 25515 25516 25517 25518 25519 25520 25521 25522 25523 25524 25525 25526 25527 25528 25529 25530 25531 25532 25533 25534 25535 25536 25537 25538 25539 25540 25541 25542 25543 25544 25545 25546 25547 25548 25549 25550 25551 25552 25553 25554 25555 25556 25557 25558 25559 25560 25561 25562 25563 25564 25565 25566 25567 25568 25569 25570 25571 25572 25573 25574 25575 25576 25577 25578 25579 25580 25581 25582 25583 25584 25585 25586 25587 25588 25589 25590 25591 25592 25593 25594 25595 25596 25597 25598 25599 25600 25601 25602 25603 25604 25605 25606 25607 25608 25609 25610 25611 25612 25613 25614 25615 25616 25617 25618 25619 25620 25621 25622 25623 25624 25625 25626 25627 25628 25629 25630 25631 25632 25633 25634 25635 25636 25637 25638 25639 25640 25641 25642 25643 25644 25645 25646 25647 25648 25649 25650 25651 25652 25653 25654 25655 25656 25657 25658 25659 25660 25661 25662 25663 25664 25665 25666 25667 25668 25669 25670 25671 25672 25673 25674 25675 25676 25677 25678 25679 25680 25681 25682 25683 25684 25685 25686 25687 25688 25689 25690 25691 25692 25693 25694 25695 25696 25697 25698 25699 25700 25701 25702 25703 25704 25705 25706 25707 25708 25709 25710 25711 25712 25713 25714 25715 25716 25717 25718 25719 25720 25721 25722 25723 25724 25725 25726 25727 25728 25729 25730 25731 25732 25733 25734 25735 25736 25737 25738 25739 25740 25741 25742 25743 25744 25745 25746 25747 25748 25749 25750 25751 25752 25753 25754 25755 25756 25757 25758 25759 25760 25761 25762 25763 25764 25765 25766 25767 25768 25769 25770 25771 25772 25773 25774 25775 25776 25777 25778 25779 25780 25781 25782 25783 25784 25785 25786 25787 25788 25789 25790 25791 25792 25793 25794 25795 25796 25797 25798 25799 25800 25801 25802 25803 25804 25805 25806 25807 25808 25809 25810 25811 25812 25813 25814 25815 25816 25817 25818 25819 25820 25821 25822 25823 25824 25825 25826 25827 25828 25829 25830 25831 25832 25833 25834 25835 25836 25837 25838 25839 25840 25841 25842 25843 25844 25845 25846 25847 25848 25849 25850 25851 25852 25853 25854 25855 25856 25857 25858 25859 25860 25861 25862 25863 25864 25865 25866 25867 25868 25869 25870 25871 25872 25873 25874 25875 25876 25877 25878 25879 25880 25881 25882 25883 25884 25885 25886 25887 25888 25889 25890 25891 25892 25893 25894 25895 25896 25897 25898 25899 25900 25901 25902 25903 25904 25905 25906 25907 25908 25909 25910 25911 25912 25913 25914 25915 25916 25917 25918 25919 25920 25921 25922 25923 25924 25925 25926 25927 25928 25929 25930 25931 25932 25933 25934 25935 25936 25937 25938 25939 25940 25941 25942 25943 25944 25945 25946 25947 25948 25949 25950 25951 25952 25953 25954 25955 25956 25957 25958 25959 25960 25961 25962 25963 25964 25965 25966 25967 25968 25969 25970 25971 25972 25973 25974 25975 25976 25977 25978 25979 25980 25981 25982 25983 25984 25985 25986 25987 25988 25989 25990 25991 25992 25993 25994 25995 25996 25997 25998 25999 26000 26001 26002 26003 26004 26005 26006 26007 26008 26009 26010 26011 26012 26013 26014 26015 26016 26017 26018 26019 26020 26021 26022 26023 26024 26025 26026 26027 26028 26029 26030 26031 26032 26033 26034 26035 26036 26037 26038 26039 26040 26041 26042 26043 26044 26045 26046 26047 26048 26049 26050 26051 26052 26053 26054 26055 26056 26057 26058 26059 26060 26061 26062 26063 26064 26065 26066 26067 26068 26069 26070 26071 26072 26073 26074 26075 26076 26077 26078 26079 26080 26081 26082 26083 26084 26085 26086 26087 26088 26089 26090 26091 26092 26093 26094 26095 26096 26097 26098 26099 26100 26101 26102 26103 26104 26105 26106 26107 26108 26109 26110 26111 26112 26113 26114 26115 26116 26117 26118 26119 26120 26121 26122 26123 26124 26125 26126 26127 26128 26129 26130 26131 26132 26133 26134 26135 26136 26137 26138 26139 26140 26141 26142 26143 26144 26145 26146 26147 26148 26149 26150 26151 26152 26153 26154 26155 26156 26157 26158 26159 26160 26161 26162 26163 26164 26165 26166 26167 26168 26169 26170 26171 26172 26173 26174 26175 26176 26177 26178 26179 26180 26181 26182 26183 26184 26185 26186 26187 26188 26189 26190 26191 26192 26193 26194 26195 26196 26197 26198 26199 26200 26201 26202 26203 26204 26205 26206 26207 26208 26209 26210 26211 26212 26213 26214 26215 26216 26217 26218 26219 26220 26221 26222 26223 26224 26225 26226 26227 26228 26229 26230 26231 26232 26233 26234 26235 26236 26237 26238 26239 26240 26241 26242 26243 26244 26245 26246 26247 26248 26249 26250 26251 26252 26253 26254 26255 26256 26257 26258 26259 26260 26261 26262 26263 26264 26265 26266 26267 26268 26269 26270 26271 26272 26273 26274 26275 26276 26277 26278 26279 26280 26281 26282 26283 26284 26285 26286 26287 26288 26289 26290 26291 26292 26293 26294 26295 26296 26297 26298 26299 26300 26301 26302 26303 26304 26305 26306 26307 26308 26309 26310 26311 26312 26313 26314 26315 26316 26317 26318 26319 26320 26321 26322 26323 26324 26325 26326 26327 26328 26329 26330 26331 26332 26333 26334 26335 26336 26337 26338 26339 26340 26341 26342 26343 26344 26345 26346 26347 26348 26349 26350 26351 26352 26353 26354 26355 26356 26357 26358 26359 26360 26361 26362 26363 26364 26365 26366 26367 26368 26369 26370 26371 26372 26373 26374 26375 26376 26377 26378 26379 26380 26381 26382 26383 26384 26385 26386 26387 26388 26389 26390 26391 26392 26393 26394 26395 26396 26397 26398 26399 26400 26401 26402 26403 26404 26405 26406 26407 26408 26409 26410 26411 26412 26413 26414 26415 26416 26417 26418 26419 26420 26421 26422 26423 26424 26425 26426 26427 26428 26429 26430 26431 26432 26433 26434 26435 26436 26437 26438 26439 26440 26441 26442 26443 26444 26445 26446 26447 26448 26449 26450 26451 26452 26453 26454 26455 26456 26457 26458 26459 26460 26461 26462 26463 26464 26465 26466 26467 26468 26469 26470 26471 26472 26473 26474 26475 26476 26477 26478 26479 26480 26481 26482 26483 26484 26485 26486 26487 26488 26489 26490 26491 26492 26493 26494 26495 26496 26497 26498 26499 26500 26501 26502 26503 26504 26505 26506 26507 26508 26509 26510 26511 26512 26513 26514 26515 26516 26517 26518 26519 26520 26521 26522 26523 26524 26525 26526 26527 26528 26529 26530 26531 26532 26533 26534 26535 26536 26537 26538 26539 26540 26541 26542 26543 26544 26545 26546 26547 26548 26549 26550 26551 26552 26553 26554 26555 26556 26557 26558 26559 26560 26561 26562 26563 26564 26565 26566 26567 26568 26569 26570 26571 26572 26573 26574 26575 26576 26577 26578 26579 26580 26581 26582 26583 26584 26585 26586 26587 26588 26589 26590 26591 26592 26593 26594 26595 26596 26597 26598 26599 26600 26601 26602 26603 26604 26605 26606 26607 26608 26609 26610 26611 26612 26613 26614 26615 26616 26617 26618 26619 26620 26621 26622 26623 26624 26625 26626 26627 26628 26629 26630 26631 26632 26633 26634 26635 26636 26637 26638 26639 26640 26641 26642 26643 26644 26645 26646 26647 26648 26649 26650 26651 26652 26653 26654 26655 26656 26657 26658 26659 26660 26661 26662 26663 26664 26665 26666 26667 26668 26669 26670 26671 26672 26673 26674 26675 26676 26677 26678 26679 26680 26681 26682 26683 26684 26685 26686 26687 26688 26689 26690 26691 26692 26693 26694 26695 26696 26697 26698 26699 26700 26701 26702 26703 26704 26705 26706 26707 26708 26709 26710 26711 26712 26713 26714 26715 26716 26717 26718 26719 26720 26721 26722 26723 26724 26725 26726 26727 26728 26729 26730 26731 26732 26733 26734 26735 26736 26737 26738 26739 26740 26741 26742 26743 26744 26745 26746 26747 26748 26749 26750 26751 26752 26753 26754 26755 26756 26757 26758 26759 26760 26761 26762 26763 26764 26765 26766 26767 26768 26769 26770 26771 26772 26773 26774 26775 26776 26777 26778 26779 26780 26781 26782 26783 26784 26785 26786 26787 26788 26789 26790 26791 26792 26793 26794 26795 26796 26797 26798 26799 26800 26801 26802 26803 26804 26805 26806 26807 26808 26809 26810 26811 26812 26813 26814 26815 26816 26817 26818 26819 26820 26821 26822 26823 26824 26825 26826 26827 26828 26829 26830 26831 26832 26833 26834 26835 26836 26837 26838 26839 26840 26841 26842 26843 26844 26845 26846 26847 26848 26849 26850 26851 26852 26853 26854 26855 26856 26857 26858 26859 26860 26861 26862 26863 26864 26865 26866 26867 26868 26869 26870 26871 26872 26873 26874 26875 26876 26877 26878 26879 26880 26881 26882 26883 26884 26885 26886 26887 26888 26889 26890 26891 26892 26893 26894 26895 26896 26897 26898 26899 26900 26901 26902 26903 26904 26905 26906 26907 26908 26909 26910 26911 26912 26913 26914 26915 26916 26917 26918 26919 26920 26921 26922 26923 26924 26925 26926 26927 26928 26929 26930 26931 26932 26933 26934 26935 26936 26937 26938 26939 26940 26941 26942 26943 26944 26945 26946 26947 26948 26949 26950 26951 26952 26953 26954 26955 26956 26957 26958 26959 26960 26961 26962 26963 26964 26965 26966 26967 26968 26969 26970 26973 26974 26975 26976 26977 26978 26979 26980 26981 26982 26983 26984 26985 26986 26987 26988 26989 26990 26991 26992 26993 26994 26995 26996 26997 26998 26999 27000 27001 27002 27003 27004 27005 27006 27007 27008 27009 27010 27027 27028 27029 27030 27031 27032 27033 27034 27035 27036 27037 27038 27039 27040 27041 27042 27043 27044 27045 27046 27047 27048 27049 27050 27051 27071 27072 27073 27074 27075 27076 27077 27078 27079 27080 27081 27082 27083 27084 27086 27087 27112 27113 27114 27115 27116 27117 27118 27119 27120 27121 27122 27150 27151 27152 27153 27154 27155 27156 27157 27158 27186 27187 27188 27189 27190 27192 27221 27222 27223 27224 27255 27256 27257 27258 27288 27289 27290 27320 27321 27322 27351 27352 27353 27381 27382 27383 27410 27411 27412 27438 27439 27440 27465 27466 27467 27491 27492 27493 27516 27517 27540 27541 27563 27564 27585 27586 27606 27607 27626 27627 27645 27646 27663 27664 27680 27681 27696 27711 27725 27726 27738 27739 27750 27751 27761 27762 27771 27772 27780 27788 27816 27817 27818 27819 27820 27821 27822 27823 27824 27825 27826 27827 27828 27829 27830 27831 27832 27833 27834 27835 27836 27837 27838 27839 27840 27841 27842 27843 27844 27845 27846 27847 27848 27849 27850 27851 27852 27853 27854 27855 27856 27857 27858 27859 27860 27861 27862 27863 27864 27865 27866 27867 27868 27869 27870 27871 27872 27873 27874 27875 27876 27877 27878 27879 27880 27881 27882 27883 27884 27885 27886 27887 27888 27889 27890 27891 27892 27893 27894 27895 27896 27897 27898 27899 27900 27901 27902 27903 27904 27905 27906 27907 27908 27909 27910 27911 27912 27913 27914 27915 27916 27917 27918 27919 27920 27921 27922 27923 27924 27925 27927 27928 27929 27930 27931 27932 27933 27934 27935 27936 27937 27938 27939 27940 27941 27942 27943 27944 27945 27946 27947 27948 27949 27950 27951 27952 27953 27954 27955 27956 27957 27958 27959 27960 27961 27962 27963 27964 27965 27966 27967 27968 27969 27970 27971 27972 27973 27974 27975 27976 27977 27978 27979 27981 27982 27983 27984 27985 27986 27987 27988 27989 27990 27991 27992 27993 27994 27995 27996 27997 27998 27999 28000 28001 28002 28003 28004 28005 28006 28007 28008 28009 28010 28011 28012 28013 28014 28015 28016 28017 28018 28019 28020 28021 28022 28023 28024 28025 28026 28027 28028 28029 28030 28031 28034 28035 28036 28037 28038 28039 28040 28041 28042 28043 28044 28045 28046 28047 28048 28049 28050 28051 28052 28053 28054 28055 28056 28057 28058 28059 28060 28061 28062 28063 28064 28065 28066 28067 28068 28069 28070 28071 28072 28073 28074 28075 28076 28077 28078 28079 28080 28081 28082 28083 28086 28087 28088 28089 28090 28091 28092 28093 28094 28095 28096 28097 28098 28099 28100 28101 28102 28103 28104 28105 28106 28107 28108 28109 28110 28111 28112 28113 28114 28115 28116 28117 28118 28119 28120 28121 28122 28123 28124 28125 28126 28127 28128 28129 28130 28131 28132 28133 28134 28135 28137 28138 28139 28140 28141 28142 28143 28144 28145 28146 28147 28148 28149 28150 28151 28152 28153 28154 28155 28156 28157 28158 28159 28160 28161 28162 28163 28164 28165 28166 28167 28168 28169 28170 28171 28172 28173 28174 28175 28176 28177 28178 28179 28180 28181 28182 28183 28184 28185 28187 28188 28189 28190 28191 28192 28193 28194 28195 28196 28197 28198 28199 28200 28201 28202 28203 28204 28205 28206 28207 28208 28209 28210 28211 28212 28213 28214 28215 28216 28217 28218 28219 28220 28221 28222 28223 28224 28225 28226 28227 28228 28229 28230 28231 28232 28233 28234 28236 28237 28238 28239 28240 28241 28242 28243 28244 28245 28246 28247 28248 28249 28250 28251 28252 28253 28254 28255 28256 28257 28258 28259 28260 28261 28262 28263 28264 28265 28266 28267 28268 28269 28270 28271 28272 28273 28274 28275 28276 28277 28278 28279 28280 28281 28282 28284 28285 28286 28287 28288 28289 28290 28291 28292 28293 28294 28295 28296 28297 28298 28299 28300 28301 28302 28303 28304 28305 28306 28307 28308 28309 28310 28311 28312 28313 28314 28315 28316 28317 28318 28319 28320 28321 28322 28323 28324 28325 28326 28327 28328 28329 28331 28332 28333 28334 28335 28336 28337 28338 28339 28340 28341 28342 28343 28344 28345 28346 28347 28348 28349 28350 28351 28352 28353 28354 28355 28356 28357 28358 28359 28360 28361 28362 28363 28364 28365 28366 28367 28368 28369 28370 28371 28372 28373 28374 28375 28377 28378 28379 28380 28381 28382 28383 28384 28385 28386 28387 28388 28389 28390 28391 28392 28393 28394 28395 28396 28397 28398 28399 28400 28401 28402 28403 28404 28405 28406 28407 28408 28409 28410 28411 28412 28413 28414 28415 28416 28417 28418 28419 28420 28422 28423 28424 28425 28426 28427 28428 28429 28430 28431 28432 28433 28434 28435 28436 28437 28438 28439 28440 28441 28442 28443 28444 28445 28446 28447 28448 28449 28450 28451 28452 28453 28454 28455 28456 28457 28458 28459 28460 28461 28462 28463 28464 28466 28467 28468 28469 28470 28471 28472 28473 28474 28475 28476 28477 28478 28479 28480 28481 28482 28483 28484 28485 28486 28487 28488 28489 28490 28491 28492 28493 28494 28495 28496 28497 28498 28499 28500 28501 28502 28503 28504 28505 28506 28507 28508 28509 28510 28511 28512 28513 28514 28515 28516 28517 28518 28519 28520 28521 28522 28523 28524 28525 28526 28527 28528 28529 28530 28531 28532 28533 28534 28535 28536 28537 28538 28539 28540 28541 28542 28543 28544 28545 28546 28547 28548 28549 28550 28551 28552 28553 28554 28555 28556 28557 28558 28559 28560 28561 28562 28563 28564 28565 28566 28567 28568 28569 28570 28571 28572 28573 28574 28575 28576 28577 28578 28579 28580 28581 28582 28583 28584 28585 28586 28587 28588 28589 28590 28591 28592 28593 28594 28595 28596 28597 28598 28599 28600 28601 28602 28603 28604 28605 28606 28607 28608 28609 28610 28611 28612 28613 28614 28615 28616 28617 28618 28619 28620 28621 28622 28623 28624 28625 28626 28627 28628 28629 28630 28631 28632 28633 28634 28635 28636 28637 28638 28639 28640 28641 28642 28643 28644 28645 28646 28647 28648 28649 28650 28651 28652 28653 28654 28655 28656 28657 28658 28659 28660 28661 28662 28663 28664 28665 28666 28667 28668 28669 28670 28671 28672 28673 28674 28675 28676 28677 28678 28679 28680 28681 28682 28683 28684 28685 28686 28687 28688 28689 28690 28691 28692 28693 28694 28695 28696 28697 28698 28699 28700 28701 28702 28703 28704 28705 28706 28707 28708 28709 28710 28711 28712 28713 28714 28715 28716 28717 28718 28719 28720 28721 28722 28723 28724 28725 28726 28727 28728 28729 28730 28731 28732 28733 28734 28735 28736 28737 28738 28739 28740 28741 28742 28743 28744 28745 28746 28747 28748 28749 28750 28751 28752 28753 28754 28755 28756 28757 28758 28759 28760 28761 28762 28763 28764 28765 28766 28767 28768 28769 28770 28771 28772 28773 28774 28775 28776 28777 28778 28779 28780 28781 28782 28783 28784 28785 28786 28787 28788 28789 28790 28791 28792 28793 28794 28795 28796 28797 28798 28799 28800 28801 28802 28803 28804 28805 28806 28807 28808 28809 28810 28811 28812 28813 28814 28815 28816 28817 28818 28819 28820 28821 28822 28823 28824 28825 28826 28827 28828 28829 28830 28831 28832 28833 28834 28835 28836 28837 28838 28839 28840 28841 28842 28843 28844 28845 28846 28847 28848 28849 28850 28851 28852 28853 28854 28855 28856 28857 28858 28859 28860 28861 28862 28863 28864 28865 28866 28867 28868 28869 28870 28871 28872 28873 28874 28875 28876 28877 28878 28879 28880 28881 28882 28883 28884 28885 28886 28887 28888 28889 28890 28891 28892 28893 28894 28895 28896 28897 28898 28899 28900 28901 28902 28903 28904 28905 28906 28907 28908 28909 28910 28911 28912 28913 28914 28915 28916 28917 28918 28919 28920 28921 28922 28923 28924 28925 28926 28927 28928 28929 28930 28931 28932 28933 28934 28935 28936 28937 28938 28939 28940 28941 28942 28943 28944 28945 28946 28947 28948 28949 28950 28951 28952 28953 28954 28955 28956 28957 28958 28959 28960 28961 28962 28963 28964 28965 28966 28967 28968 28969 28970 28971 28972 28973 28974 28975 28976 28977 28978 28979 28980 28981 28982 28983 28984 28985 28986 28987 28988 28989 28990 28991 28992 28993 28994 28995 28996 28997 28998 28999 29000 29001 29002 29003 29004 29005 29006 29007 29008 29009 29010 29011 29012 29013 29014 29015 29016 29017 29018 29019 29020 29021 29022 29023 29024 29025 29026 29027 29028 29029 29030 29031 29032 29033 29034 29035 29036 29037 29038 29039 29040 29041 29042 29043 29044 29045 29046 29047 29048 29049 29050 29051 29052 29053 29054 29055 29056 29057 29058 29059 29060 29061 29062 29063 29064 29065 29066 29067 29068 29069 29070 29071 29072 29073 29074 29075 29076 29077 29078 29079 29080 29081 29082 29083 29084 29085 29086 29087 29088 29089 29090 29091 29092 29093 29094 29095 29096 29097 29098 29099 29100 29101 29102 29103 29104 29105 29106 29107 29108 29109 29110 29111 29112 29113 29114 29115 29116 29117 29118 29119 29120 29121 29122 29123 29124 29125 29126 29127 29128 29129 29130 29131 29132 29133 29134 29135 29136 29137 29138 29139 29140 29141 29142 29143 29144 29145 29146 29147 29148 29149 29150 29151 29152 29153 29154 29155 29156 29157 29158 29159 29160 29161 29162 29163 29164 29165 29166 29167 29168 29169 29170 29171 29172 29173 29174 29175 29176 29177 29178 29179 29180 29181 29182 29183 29184 29185 29186 29187 29188 29189 29190 29191 29192 29193 29194 29195 29196 29197 29198 29199 29200 29201 29202 29203 29204 29205 29206 29207 29208 29209 29210 29211 29212 29213 29214 29215 29216 29217 29218 29219 29220 29221 29222 29223 29224 29225 29226 29227 29228 29229 29230 29231 29232 29233 29234 29235 29236 29237 29238 29239 29240 29241 29242 29243 29244 29245 29246 29247 29248 29249 29250 29251 29252 29253 29254 29255 29256 29257 29258 29259 29260 29261 29262 29263 29264 29265 29266 29267 29268 29269 29270 29271 29272 29273 29274 29275 29276 29277 29278 29279 29280 29281 29282 29283 29284 29285 29286 29287 29288 29289 29290 29291 29292 29293 29294 29295 29296 29297 29298 29299 29300 29301 29302 29303 29304 29305 29306 29307 29308 29309 29310 29311 29312 29313 29314 29315 29316 29317 29318 29319 29320 29321 29322 29323 29324 29325 29326 29327 29328 29329 29330 29331 29332 29333 29334 29335 29336 29337 29338 29339 29340 29341 29342 29343 29344 29345 29346 29347 29348 29349 29350 29351 29352 29353 29354 29355 29356 29357 29358 29359 29360 29361 29362 29363 29364 29365 29366 29367 29368 29369 29370 29371 29372 29373 29374 29375 29376 29377 29378 29379 29380 29381 29382 29383 29384 29385 29386 29387 29388 29389 29390 29391 29392 29393 29394 29395 29396 29397 29398 29399 29400 29401 29402 29403 29404 29405 29406 29407 29408 29409 29410 29411 29412 29413 29414 29415 29416 29417 29418 29419 29420 29421 29422 29423 29424 29425 29426 29427 29428 29429 29430 29431 29432 29433 29434 29435 29436 29437 29438 29439 29440 29441 29442 29443 29444 29445 29446 29447 29448 29449 29450 29451 29452 29453 29454 29455 29456 29457 29458 29459 29460 29461 29462 29463 29464 29465 29466 29467 29468 29469 29470 29471 29472 29473 29474 29475 29476 29477 29478 29479 29480 29481 29482 29483 29484 29485 29486 29487 29488 29489 29490 29491 29492 29493 29494 29495 29496 29497 29498 29499 29500 29501 29502 29503 29504 29505 29506 29507 29508 29509 29510 29511 29512 29513 29514 29515 29516 29517 29518 29519 29520 29521 29522 29523 29524 29525 29526 29527 29528 29529 29530 29531 29532 29533 29534 29535 29536 29537 29538 29539 29540 29541 29542 29543 29544 29545 29546 29547 29548 29549 29550 29551 29552 29553 29554 29555 29556 29557 29558 29559 29560 29561 29562 29563 29564 29565 29566 29567 29568 29569 29570 29571 29572 29573 29574 29575 29576 29577 29578 29579 29580 29581 29582 29583 29584 29585 29586 29587 29588 29589 29590 29591 29592 29593 29594 29595 29596 29597 29598 29599 29600 29601 29602 29603 29604 29605 29606 29607 29608 29609 29610 29611 29612 29613 29614 29615 29616 29617 29618 29619 29620 29621 29622 29623 29624 29625 29626 29627 29628 29629 29630 29631 29632 29633 29634 29635 29636 29637 29638 29639 29640 29641 29642 29643 29644 29645 29646 29647 29648 29649 29650 29651 29652 29653 29654 29655 29656 29657 29658 29659 29660 29661 29662 29663 29664 29665 29666 29667 29668 29669 29670 29671 29672 29673 29674 29675 29676 29677 29678 29679 29680 29681 29682 29683 29684 29685 29686 29687 29688 29689 29690 29691 29692 29693 29694 29695 29696 29697 29698 29699 29700 29701 29702 29703 29704 29705 29706 29707 29708 29709 29710 29711 29712 29713 29714 29715 29716 29717 29718 29719 29720 29721 29722 29723 29724 29725 29726 29727 29728 29729 29730 29731 29732 29733 29734 29735 29736 29737 29738 29739 29740 29741 29742 29743 29744 29745 29746 29747 29748 29749 29750 29751 29752 29753 29754 29755 29756 29757 29758 29759 29760 29761 29762 29763 29764 29765 29766 29767 29768 29769 29770 29771 29772 29773 29774 29775 29776 29777 29778 29779 29780 29781 29782 29783 29784 29785 29786 29787 29788 29789 29790 29791 29792 29793 29794 29795 29796 29797 29798 29799 29800 29801 29802 29803 29804 29805 29806 29807 29808 29809 29810 29811 29812 29813 29814 29815 29816 29817 29818 29819 29820 29821 29822 29823 29824 29825 29826 29827 29828 29829 29830 29831 29832 29833 29834 29835 29836 29837 29838 29839 29840 29841 29842 29843 29844 29845 29846 29847 29848 29849 29850 29851 29852 29853 29854 29855 29856 29857 29858 29859 29860 29861 29862 29863 29864 29865 29866 29867 29868 29869 29870 29871 29872 29873 29874 29875 29876 29877 29878 29879 29880 29881 29882 29883 29884 29885 29886 29887 29888 29889 29890 29891 29892 29893 29894 29895 29896 29897 29898 29899 29900 29901 29902 29903 29904 29905 29906 29907 29908 29909 29910 29911 29912 29913 29914 29915 29916 29917 29918 29919 29920 29921 29922 29923 29924 29925 29926 29927 29928 29929 29930 29931 29932 29933 29934 29935 29936 29937 29938 29939 29940 29941 29942 29943 29944 29945 29946 29947 29948 29949 29950 29951 29952 29953 29954 29955 29956 29957 29958 29959 29960 29961 29962 29963 29964 29965 29966 29967 29968 29969 29970 29971 29972 29973 29974 29975 29976 29977 29978 29979 29980 29981 29982 29983 29984 29985 29986 29987 29988 29989 29990 29991 29992 29993 29994 29995 29996 29997 29998 29999 30000 30001 30002 30003 30004 30005 30006 30007 30008 30009 30010 30011 30012 30013 30014 30015 30016 30017 30018 30019 30020 30021 30022 30023 30024 30025 30026 30027 30028 30029 30030 30031 30032 30033 30034 30035 30036 30037 30038 30039 30040 30041 30042 30043 30044 30045 30046 30047 30048 30049 30050 30051 30052 30053 30054 30055 30056 30057 30058 30059 30060 30061 30062 30063 30064 30065 30066 30067 30068 30069 30070 30071 30072 30073 30074 30075 30076 30077 30078 30079 30080 30081 30082 30083 30084 30085 30086 30087 30088 30089 30090 30091 30092 30093 30094 30095 30096 30097 30098 30099 30100 30101 30102 30103 30104 30105 30106 30107 30108 30109 30110 30111 30112 30113 30114 30115 30116 30117 30118 30119 30120 30121 30122 30123 30124 30125 30126 30127 30128 30129 30130 30131 30132 30133 30134 30135 30136 30137 30138 30139 30140 30141 30142 30143 30144 30145 30146 30147 30148 30149 30150 30151 30152 30153 30154 30155 30156 30157 30158 30159 30160 30161 30162 30163 30164 30165 30166 30167 30168 30169 30170 30171 30172 30173 30174 30175 30176 30177 30178 30179 30180 30181 30182 30183 30184 30185 30186 30187 30188 30189 30190 30191 30192 30193 30194 30195 30196 30197 30198 30199 30200 30201 30202 30203 30204 30205 30206 30207 30208 30209 30210 30211 30212 30213 30214 30215 30216 30217 30218 30219 30220 30221 30222 30223 30224 30225 30226 30227 30228 30229 30230 30231 30232 30233 30234 30235 30236 30237 30238 30239 30240 30241 30242 30243 30244 30245 30246 30247 30248 30249 30250 30251 30252 30253 30254 30255 30256 30257 30258 30259 30260 30261 30262 30263 30264 30265 30266 30267 30268 30269 30270 30271 30272 30273 30274 30275 30276 30277 30278 30279 30280 30281 30282 30283 30284 30285 30286 30287 30288 30289 30290 30291 30292 30293 30294 30295 30296 30297 30298 30299 30300 30301 30302 30303 30304 30305 30306 30307 30308 30309 30310 30311 30312 30313 30314 30315 30316 30317 30318 30319 30320 30321 30322 30323 30324 30325 30326 30327 30328 30329 30330 30331 30332 30333 30334 30335 30336 30337 30338 30339 30340 30341 30342 30343 30344 30345 30346 30347 30348 30349 30350 30351 30352 30353 30354 30355 30356 30357 30358 30359 30360 30361 30362 30363 30364 30365 30366 30367 30368 30369 30370 30371 30372 30373 30374 30375 30376 30377 30378 30379 30380 30381 30382 30383 30384 30385 30386 30387 30388 30389 30390 30391 30392 30393 30394 30395 30396 30397 30398 30399 30400 30401 30402 30403 30404 30405 30406 30407 30408 30409 30410 30411 30412 30413 30414 30415 30416 30417 30418 30419 30420 30421 30422 30423 30424 30425 30426 30427 30428 30429 30430 30431 30432 30433 30434 30435 30436 30437 30438 30439 30440 30441 30442 30443 30444 30445 30446 30447 30448 30449 30450 30451 30452 30453 30454 30455 30456 30457 30458 30459 30460 30461 30462 30463 30464 30465 30466 30467 30468 30469 30470 30471 30472 30473 30474 30475 30476 30477 30478 30479 30480 30481 30482 30483 30484 30485 30486 30487 30488 30489 30490 30491 30492 30493 30494 30495 30496 30497 30498 30499 30500 30501 30502 30503 30504 30505 30506 30507 30508 30509 30510 30511 30512 30513 30514 30515 30516 30517 30518 30519 30520 30521 30522 30523 30524 30525 30526 30527 30528 30529 30530 30531 30532 30533 30534 30535 30536 30537 30538 30539 30540 30541 30542 30543 30544 30545 30546 30547 30548 30549 30550 30551 30552 30553 30554 30555 30556 30557 30558 30559 30560 30561 30562 30563 30564 30565 30566 30567 30568 30569 30570 30571 30572 30573 30574 30575 30576 30577 30578 30579 30580 30581 30582 30583 30584 30585 30586 30587 30588 30589 30590 30591 30592 30593 30594 30595 30596 30597 30598 30599 30600 30601 30602 30603 30604 30605 30606 30607 30608 30609 30610 30611 30612 30613 30614 30615 30616 30617 30618 30619 30620 30621 30622 30623 30624 30625 30626 30627 30628 30629 30630 30631 30632 30633 30634 30635 30636 30637 30638 30639 30640 30641 30642 30643 30644 30645 30646 30647 30648 30649 30650 30651 30652 30653 30654 30655 30656 30657 30658 30659 30660 30661 30662 30663 30664 30665 30666 30667 30668 30669 30670 30671 30672 30673 30674 30675 30676 30677 30678 30679 30680 30681 30682 30683 30684 30685 30686 30687 30688 30689 30690 30691 30692 30693 30694 30695 30696 30697 30698 30699 30700 30701 30702 30703 30704 30705 30706 30707 30708 30709 30710 30711 30712 30713 30714 30715 30716 30717 30718 30719 30720 30721 30722 30723 30724 30725 30726 30727 30728 30729 30730 30731 30732 30733 30734 30735 30736 30737 30738 30739 30740 30741 30742 30743 30744 30745 30746 30747 30748 30749 30750 30751 30752 30753 30754 30755 30756 30757 30758 30759 30760 30761 30762 30763 30764 30765 30766 30767 30768 30769 30770 30771 30772 30773 30774 30775 30776 30777 30778 30779 30780 30781 30782 30783 30784 30785 30786 30787 30788 30789 30790 30791 30792 30793 30794 30795 30796 30797 30798 30799 30800 30801 30802 30803 30804 30805 30806 30807 30808 30809 30810 30811 30812 30813 30814 30815 30816 30817 30818 30819 30820 30821 30822 30823 30824 30825 30826 30827 30828 30829 30830 30831 30832 30833 30834 30835 30836 30837 30838 30839 30840 30841 30842 30843 30844 30845 30846 30847 30848 30849 30850 30851 30852 30853 30854 30855 30856 30857 30858 30859 30860 30861 30862 30863 30864 30865 30866 30867 30868 30869 30870 30871 30872 30873 30874 30875 30876 30877 30878 30879 30880 30881 30882 30883 30884 30885 30886 30887 30888 30889 30890 30891 30892 30893 30894 30895 30896 30897 30898 30899 30900 30901 30902 30903 30904 30905 30906 30907 30908 30909 30910 30911 30912 30913 30914 30915 30916 30917 30918 30919 30920 30921 30922 30923 30924 30925 30926 30927 30928 30929 30930 30931 30932 30933 30934 30935 30936 30937 30938 30939 30940 30941 30942 30943 30944 30945 30946 30947 30948 30949 30950 30951 30952 30953 30954 30955 30956 30957 30958 30959 30960 30961 30962 30963 30964 30965 30966 30967 30968 30969 30970 30971 30972 30973 30974 30975 30976 30977 30978 30979 30980 30981 30982 30983 30984 30985 30986 30987 30988 30989 30990 30991 30992 30993 30994 30995 30996 30997 30998 30999 31000 31001 31002 31003 31004 31005 31006 31007 31008 31009 31010 31011 31012 31013 31014 31015 31016 31017 31018 31019 31020 31021 31022 31023 31024 31025 31026 31027 31028 31029 31030 31031 31032 31033 31034 31035 31036 31037 31038 31039 31040 31041 31042 31043 31044 31045 31046 31047 31048 31049 31050 31051 31052 31053 31054 31055 31056 31057 31058 31059 31060 31061 31062 31063 31064 31065 31066 31067 31068 31069 31070 31071 31072 31073 31074 31075 31076 31077 31078 31079 31080 31081 31082 31083 31084 31085 31086 31087 31088 31089 31090 31091 31092 31093 31094 31095 31096 31097 31098 31099 31100 31101 31102 31103 31104 31105 31106 31107 31108 31109 31110 31111 31112 31113 31114 31115 31116 31117 31118 31119 31120 31121 31122 31123 31124 31125 31126 31127 31128 31129 31130 31131 31132 31133 31134 31135 31136 31137 31138 31139 31140 31141 31142 31143 31144 31145 31146 31147 31148 31149 31150 31151 31152 31153 31154 31155 31156 31157 31158 31159 31160 31161 31162 31163 31164 31165 31166 31167 31168 31169 31170 31171 31172 31173 31174 31175 31176 31177 31178 31179 31180 31181 31182 31183 31184 31185 31186 31187 31188 31189 31190 31191 31192 31193 31194 31195 31196 31197 31198 31199 31200 31201 31202 31203 31204 31205 31206 31207 31208 31209 31210 31211 31212 31213 31214 31215 31216 31217 31218 31219 31220 31221 31222 31223 31224 31225 31226 31227 31228 31229 31230 31231 31232 31233 31234 31235 31236 31237 31238 31239 31240 31241 31242 31243 31244 31245 31246 31247 31248 31249 31250 31251 31252 31253 31254 31255 31256 31257 31258 31259 31260 31261 31262 31263 31264 31265 31266 31267 31268 31269 31270 31271 31272 31273 31274 31275 31276 31277 31278 31279 31280 31281 31282 31283 31284 31285 31286 31287 31288 31289 31290 31291 31292 31293 31294 31295 31296 31297 31298 31299 31300 31301 31302 31303 31304 31305 31306 31307 31308 31309 31310 31311 31312 31313 31314 31315 31316 31317 31318 31319 31320 31321 31322 31323 31324 31325 31326 31327 31328 31329 31330 31331 31332 31333 31334 31335 31336 31337 31338 31339 31340 31341 31342 31343 31344 31345 31346 31347 31348 31349 31350 31351 31352 31353 31354 31355 31356 31357 31358 31359 31360 31361 31362 31363 31364 31365 31366 31367 31368 31369 31370 31371 31372 31373 31374 31375 31376 31377 31378 31379 31380 31381 31382 31383 31384 31385 31386 31387 31388 31389 31390 31391 31392 31393 31394 31395 31396 31397 31398 31399 31400 31401 31402 31403 31404 31405 31406 31407 31408 31409 31410 31411 31412 31413 31414 31415 31416 31417 31418 31419 31420 31421 31422 31423 31424 31425 31426 31427 31428 31429 31430 31431 31432 31433 31434 31435 31436 31437 31438 31439 31440 31441 31442 31443 31444 31445 31446 31447 31448 31449 31450 31451 31452 31453 31454 31455 31456 31457 31458 31459 31460 31461 31462 31463 31464 31465 31466 31467 31468 31469 31470 31471 31472 31473 31474 31475 31476 31477 31478 31479 31480 31481 31482 31483 31484 31485 31486 31487 31488 31489 31490 31491 31492 31493 31494 31495 31496 31497 31498 31499 31500 31501 31502 31503 31504 31505 31506 31507 31508 31509 31510 31511 31512 31513 31514 31515 31516 31517 31518 31519 31520 31521 31522 31523 31524 31525 31526 31527 31528 31529 31530 31531 31532 31533 31534 31535 31536 31537 31538 31539 31540 31541 31542 31543 31544 31545 31546 31547 31548 31549 31550 31551 31552 31553 31554 31555 31556 31557 31558 31559 31560 31561 31562 31563 31564 31565 31566 31567 31568 31569 31570 31571 31572 31573 31574 31575 31576 31577 31578 31579 31580 31581 31582 31583 31584 31585 31586 31587 31588 31589 31590 31591 31592 31593 31594 31595 31596 31597 31598 31599 31600 31601 31602 31603 31604 31605 31606 31607 31608 31609 31610 31611 31612 31613 31614 31615 31616 31617 31618 31619 31620 31621 31622 31623 31624 31625 31626 31627 31628 31629 31630 31631 31632 31633 31634 31635 31636 31637 31638 31639 31640 31641 31642 31643 31644 31645 31646 31647 31648 31649 31650 31651 31652 31653 31654 31655 31656 31657 31658 31659 31660 31661 31662 31663 31664 31665 31666 31667 31668 31669 31670 31671 31672 31673 31674 31675 31676 31677 31678 31679 31680 31681 31682 31683 31684 31685 31686 31687 31688 31689 31690 31691 31692 31693 31694 31695 31696 31697 31698 31699 31700 31701 31702 31703 31704 31705 31706 31707 31708 31709 31710 31711 31712 31713 31714 31715 31716 31717 31718 31719 31720 31721 31722 31723 31724 31725 31726 31727 31728 31729 31730 31731 31732 31733 31734 31735 31736 31737 31738 31739 31740 31741 31742 31743 31744 31745 31746 31747 31748 31749 31750 31751 31752 31753 31754 31755 31756 31757 31758 31759 31760 31761 31762 31763 31764 31765 31766 31767 31768 31769 31770 31771 31772 31773 31774 31775 31776 31777 31778 31779 31780 31781 31782 31783 31784 31785 31786 31787 31788 31789 31790 31791 31792 31793 31794 31795 31796 31797 31798 31799 31800 31801 31802 31803 31804 31805 31806 31807 31808 31809 31810 31811 31812 31813 31814 31815 31816 31817 31818 31819 31820 31821 31822 31823 31824 31825 31826 31827 31828 31829 31830 31831 31832 31833 31834 31835 31836 31837 31838 31839 31840 31841 31842 31843 31844 31845 31846 31847 31848 31849 31850 31851 31852 31853 31854 31855 31856 31857 31858 31859 31860 31861 31862 31863 31864 31865 31866 31867 31868 31869 31870 31871 31872 31873 31874 31875 31876 31877 31878 31879 31880 31881 31882 31883 31884 31885 31886 31887 31888 31889 31890 31891 31892 31893 31894 31895 31896 31897 31898 31899 31900 31901 31902 31903 31904 31905 31906 31907 31908 31909 31910 31911 31912 31913 31914 31915 31916 31917 31918 31919 31920 31921 31922 31923 31924 31925 31926 31927 31928 31929 31930 31931 31932 31933 31934 31935 31936 31937 31938 31939 31940 31941 31942 31943 31944 31945 31946 31947 31948 31949 31950 31951 31952 31953 31954 31955 31956 31957 31958 31959 31960 31961 31962 31963 31964 31965 31966 31967 31968 31969 31970 31971 31972 31973 31974 31975 31976 31977 31978 31979 31980 31981 31982 31983 31984 31985 31986 31987 31988 31989 31990 31991 31992 31993 31994 31995 31996 31997 31998 31999 32000 32001 32002 32003 32004 32005 32006 32007 32008 32009 32010 32011 32012 32013 32014 32015 32016 32017 32018 32019 32020 32021 32022 32023 32024 32025 32026 32027 32028 32029 32030 32031 32032 32033 32034 32035 32036 32037 32038 32039 32040 32041 32042 32043 32044 32045 32046 32047 32048 32049 32050 32051 32052 32053 32054 32055 32056 32057 32058 32059 32060 32061 32062 32063 32064 32065 32066 32067 32068 32069 32070 32071 32072 32073 32074 32075 32076 32077 32078 32079 32080 32081 32082 32083 32084 32085 32086 32087 32088 32089 32090 32091 32092 32093 32094 32095 32096 32097 32098 32099 32100 32101 32102 32103 32104 32105 32106 32107 32108 32109 32110 32111 32112 32113 32114 32115 32116 32117 32118 32119 32120 32121 32122 32123 32124 32125 32126 32127 32128 32129 32130 32131 32132 32133 32134 32135 32136 32137 32138 32139 32140 32141 32142 32143 32144 32145 32146 32147 32148 32149 32150 32151 32152 32153 32154 32155 32156 32157 32158 32159 32160 32161 32162 32163 32164 32165 32166 32167 32168 32169 32170 32171 32172 32173 32174 32175 32176 32177 32178 32179 32180 32181 32182 32183 32184 32185 32186 32187 32188 32189 32190 32191 32192 32193 32194 32195 32196 32197 32198 32199 32200 32201 32202 32203 32204 32205 32206 32207 32208 32209 32210 32211 32212 32213 32214 32215 32216 32217 32218 32219 32220 32221 32222 32223 32224 32225 32226 32227 32228 32229 32230 32231 32232 32233 32234 32235 32236 32237 32238 32239 32240 32241 32242 32243 32244 32245 32246 32247 32248 32249 32250 32251 32252 32253 32254 32255 32256 32257 32258 32259 32260 32261 32262 32263 32264 32265 32266 32267 32268 32269 32270 32271 32272 32273 32274 32275 32276 32277 32278 32279 32280 32281 32282 32283 32284 32285 32286 32287 32288 32289 32290 32291 32292 32293 32294 32295 32296 32297 32298 32299 32300 32301 32302 32303 32304 32305 32306 32307 32308 32309 32310 32311 32312 32313 32314 32315 32316 32317 32318 32319 32320 32321 32322 32323 32324 32325 32326 32327 32328 32329 32330 32331 32332 32333 32334 32335 32336 32337 32338 32339 32340 32341 32342 32343 32344 32345 32346 32347 32348 32349 32350 32351 32352 32353 32354 32355 32356 32357 32358 32359 32360 32361 32362 32363 32364 32365 32366 32367 32368 32369 32370 32371 32372 32373 32374 32375 32376 32377 32378 32379 32380 32381 32382 32383 32384 32385 32386 32387 32388 32389 32390 32391 32392 32393 32394 32395 32396 32397 32398 32399 32400 32401 32402 32403 32404 32405 32406 32407 32408 32409 32410 32411 32412 32413 32414 32415 32416 32417 32418 32419 32420 32421 32422 32423 32424 32425 32426 32427 32428 32429 32430 32431 32432 32433 32434 32435 32436 32437 32438 32439 32440 32441 32442 32443 32444 32445 32446 32447 32448 32449 32450 32451 32452 32453 32454 32455 32456 32457 32458 32459 32460 32461 32462 32463 32464 32465 32466 32467 32468 32469 32470 32471 32472 32473 32474 32475 32476 32477 32478 32479 32480 32481 32482 32483 32484 32485 32486 32487 32488 32489 32490 32491 0 1 2 3 4 5 6 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 235 236 237 238 239 240 241 242 243 244 245 246 247 248 289 290 291 292 293 294 295 296 297 298 299 300 301 342 343 344 345 346 347 348 349 350 351 352 353 394 395 396 397 398 399 400 401 402 403 404 445 446 447 448 449 450 451 452 453 454 455 495 496 497 498 499 500 501 502 503 504 544 545 546 547 548 549 550 551 552 592 593 594 595 596 597 598 599 600 639 640 641 642 643 644 645 646 647 685 686 687 688 689 690 691 692 693 730 731 732 733 734 735 736 737 738 774 775 776 777 778 779 780 781 782 817 818 819 820 821 822 823 824 825 859 860 861 862 863 864 865 866 867 900 901 902 903 904 905 906 907 908 909 940 941 942 943 944 945 946 947 948 949 979 980 981 982 983 984 985 986 987 988 989 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2632 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3110 3111 3112 3113 3114 3115 3116 3117 3118 3133 3134 3135 3136 3137 3138 3139 3140 3155 3156 3157 3158 3159 3160 3161 3176 3177 3178 3179 3180 3181 3196 3197 3198 3199 3200 3215 3216 3217 3218 3233 3234 3235 3250 3251 3266 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 7940 7941 7942 7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8028 8029 8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 8077 8078 8079 8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109 8110 8111 8112 8113 8114 8115 8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233 8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260 8261 8262 8263 8264 8265 8266 8267 8268 8269 8270 8271 8272 8273 8274 8275 8276 8277 8278 8279 8280 8281 8282 8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 8345 8346 8347 8348 8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 8361 8362 8363 8364 8365 8366 8367 8368 8369 8370 8371 8372 8373 8374 8375 8376 8377 8378 8379 8380 8381 8382 8383 8384 8385 8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398 8399 8400 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 8411 8412 8413 8414 8415 8416 8417 8418 8419 8420 8421 8422 8423 8424 8425 8426 8427 8428 8429 8430 8431 8432 8433 8434 8435 8436 8437 8438 8439 8440 8441 8442 8443 8444 8445 8446 8447 8448 8449 8450 8451 8452 8453 8454 8455 8456 8457 8458 8459 8460 8461 8462 8463 8464 8465 8466 8467 8468 8469 8470 8471 8472 8473 8474 8475 8476 8477 8478 8479 8480 8481 8482 8483 8484 8485 8486 8487 8488 8489 8490 8491 8492 8493 8494 8495 8496 8497 8498 8499 8500 8501 8502 8503 8504 8505 8506 8507 8508 8509 8510 8511 8512 8513 8514 8515 8516 8517 8518 8519 8520 8521 8522 8523 8524 8525 8526 8527 8528 8529 8530 8531 8532 8533 8534 8535 8536 8537 8538 8539 8540 8541 8542 8543 8544 8545 8546 8547 8548 8549 8550 8551 8552 8553 8554 8555 8556 8557 8558 8559 8560 8561 8562 8563 8564 8565 8566 8567 8568 8569 8570 8571 8572 8573 8574 8575 8576 8577 8578 8579 8580 8581 8582 8583 8584 8585 8586 8587 8588 8589 8590 8591 8592 8593 8594 8595 8596 8597 8598 8599 8600 8601 8602 8603 8604 8605 8606 8607 8608 8609 8610 8611 8612 8613 8614 8615 8616 8617 8618 8619 8620 8621 8622 8623 8624 8625 8626 8627 8628 8629 8630 8631 8632 8633 8634 8635 8636 8637 8638 8639 8640 8641 8642 8643 8644 8645 8646 8647 8648 8649 8650 8651 8652 8653 8654 8655 8656 8657 8658 8659 8660 8661 8662 8663 8664 8665 8666 8667 8668 8669 8670 8671 8672 8673 8674 8675 8676 8677 8678 8679 8680 8681 8682 8683 8684 8685 8686 8687 8688 8689 8690 8691 8692 8693 8694 8695 8696 8697 8698 8699 8700 8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 8732 8733 8734 8735 8736 8737 8738 8739 8740 8741 8742 8743 8744 8745 8746 8747 8748 8749 8750 8751 8752 8753 8754 8755 8756 8757 8758 8759 8760 8761 8762 8763 8764 8765 8766 8767 8768 8769 8770 8771 8772 8773 8774 8775 8776 8777 8778 8779 8780 8781 8782 8783 8784 8785 8786 8787 8788 8789 8790 8791 8792 8793 8794 8795 8796 8797 8798 8799 8800 8801 8802 8803 8804 8805 8806 8807 8808 8809 8810 8811 8812 8813 8814 8815 8816 8817 8818 8819 8820 8821 8822 8823 8824 8825 8826 8827 8828 8829 8830 8831 8832 8833 8834 8835 8836 8837 8838 8839 8840 8841 8842 8843 8844 8845 8846 8847 8848 8849 8850 8851 8852 8853 8854 8855 8856 8857 8858 8859 8860 8861 8862 8863 8864 8865 8866 8867 8868 8869 8870 8871 8872 8873 8874 8875 8876 8877 8878 8879 8880 8881 8882 8883 8884 8885 8886 8887 8888 8889 8890 8891 8892 8893 8894 8895 8896 8897 8898 8899 8900 8901 8902 8903 8904 8905 8906 8907 8908 8909 8910 8911 8912 8913 8914 8915 8916 8917 8918 8919 8920 8921 8922 8923 8924 8925 8926 8927 8928 8929 8930 8931 8932 8933 8934 8935 8936 8937 8938 8939 8940 8941 8942 8943 8944 8945 8946 8947 8948 8949 8950 8951 8952 8953 8954 8955 8956 8957 8958 8959 8960 8961 8962 8963 8964 8965 8966 8967 8968 8969 8970 8971 8972 8973 8974 8975 8976 8977 8978 8979 8980 8981 8982 8983 8984 8985 8986 8987 8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 9015 9016 9017 9018 9019 9020 9021 9022 9023 9024 9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 9052 9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 9100 9101 9102 9103 9104 9105 9106 9107 9108 9109 9110 9111 9112 9113 9114 9115 9116 9117 9118 9119 9120 9121 9122 9123 9124 9125 9126 9127 9128 9129 9130 9131 9132 9133 9134 9135 9136 9137 9138 9139 9140 9141 9142 9143 9144 9145 9146 9147 9148 9149 9150 9151 9152 9153 9154 9155 9156 9157 9158 9159 9160 9161 9162 9163 9164 9165 9166 9167 9168 9169 9170 9171 9172 9173 9174 9175 9176 9177 9178 9179 9180 9181 9182 9183 9184 9185 9186 9187 9188 9189 9190 9191 9192 9193 9194 9195 9196 9197 9198 9199 9200 9201 9202 9203 9204 9205 9206 9207 9208 9209 9210 9211 9212 9213 9214 9215 9216 9217 9218 9219 9220 9221 9222 9223 9224 9225 9226 9227 9228 9229 9230 9231 9232 9233 9234 9235 9236 9237 9238 9239 9240 9241 9242 9243 9244 9245 9246 9247 9248 9249 9250 9251 9252 9253 9254 9255 9256 9257 9258 9259 9260 9261 9262 9263 9264 9265 9266 9267 9268 9269 9270 9271 9272 9273 9274 9275 9276 9277 9278 9279 9280 9281 9282 9283 9284 9285 9286 9287 9288 9289 9290 9291 9292 9293 9294 9295 9296 9297 9298 9299 9300 9301 9302 9303 9304 9305 9306 9307 9308 9309 9310 9311 9312 9313 9314 9315 9316 9317 9318 9319 9320 9321 9322 9323 9324 9325 9326 9327 9328 9329 9330 9331 9332 9333 9334 9335 9336 9337 9338 9339 9340 9341 9342 9343 9344 9345 9346 9347 9348 9349 9350 9351 9352 9353 9354 9355 9356 9357 9358 9359 9360 9361 9362 9363 9364 9365 9366 9367 9368 9369 9370 9371 9372 9373 9374 9375 9376 9377 9378 9379 9380 9381 9382 9383 9384 9385 9386 9387 9388 9389 9390 9391 9392 9393 9394 9395 9396 9397 9398 9399 9400 9401 9402 9403 9404 9405 9406 9407 9408 9409 9410 9411 9412 9413 9414 9415 9416 9417 9418 9419 9420 9421 9422 9423 9424 9425 9426 9427 9428 9429 9430 9431 9432 9433 9434 9435 9436 9437 9438 9439 9440 9441 9442 9443 9444 9445 9446 9447 9448 9449 9450 9451 9452 9453 9454 9455 9456 9457 9458 9459 9460 9461 9462 9463 9464 9465 9466 9467 9468 9469 9470 9471 9472 9473 9474 9475 9476 9477 9478 9479 9480 9481 9482 9483 9484 9485 9486 9487 9488 9489 9490 9491 9492 9493 9494 9495 9496 9497 9498 9499 9500 9501 9502 9503 9504 9505 9506 9507 9508 9509 9510 9511 9512 9513 9514 9515 9516 9517 9518 9519 9520 9521 9522 9523 9524 9525 9526 9527 9528 9529 9530 9531 9532 9533 9534 9535 9536 9537 9538 9539 9540 9541 9542 9543 9544 9545 9546 9547 9548 9549 9550 9551 9552 9553 9554 9555 9556 9557 9558 9559 9560 9561 9562 9563 9564 9565 9566 9567 9568 9569 9570 9571 9572 9573 9574 9575 9576 9577 9578 9579 9580 9581 9582 9583 9584 9585 9586 9587 9588 9589 9590 9591 9592 9593 9594 9595 9596 9597 9598 9599 9600 9601 9602 9603 9604 9605 9606 9607 9608 9609 9610 9611 9612 9613 9614 9615 9616 9617 9618 9619 9620 9621 9622 9623 9624 9625 9626 9627 9628 9629 9630 9631 9632 9633 9634 9635 9636 9637 9638 9639 9640 9641 9642 9643 9644 9645 9646 9647 9648 9649 9650 9651 9652 9653 9654 9655 9656 9657 9658 9659 9660 9661 9662 9663 9664 9665 9666 9667 9668 9669 9670 9671 9672 9673 9674 9675 9676 9677 9678 9679 9680 9681 9682 9683 9684 9685 9686 9687 9688 9689 9690 9691 9692 9693 9694 9695 9696 9697 9698 9699 9700 9701 9702 9703 9704 9705 9706 9707 9708 9709 9710 9711 9712 9713 9714 9715 9716 9717 9718 9719 9720 9721 9722 9723 9724 9725 9726 9727 9728 9729 9730 9731 9732 9733 9734 9735 9736 9737 9738 9739 9740 9741 9742 9743 9744 9745 9746 9747 9748 9749 9750 9751 9752 9753 9754 9755 9756 9757 9758 9759 9760 9761 9762 9763 9764 9765 9766 9767 9768 9769 9770 9771 9772 9773 9774 9775 9776 9777 9778 9779 9780 9781 9782 9783 9784 9785 9786 9787 9788 9789 9790 9791 9792 9793 9794 9795 9796 9797 9798 9799 9800 9801 9802 9803 9804 9805 9806 9807 9808 9809 9810 9811 9812 9813 9814 9815 9816 9817 9818 9819 9820 9821 9822 9823 9824 9825 9826 9827 9828 9829 9830 9831 9832 9833 9834 9835 9836 9837 9838 9839 9840 9841 9842 9843 9844 9845 9846 9847 9848 9849 9850 9851 9852 9853 9854 9855 9856 9857 9858 9859 9860 9861 9862 9863 9864 9865 9866 9867 9868 9869 9870 9871 9872 9873 9874 9875 9876 9877 9878 9879 9880 9881 9882 9883 9884 9885 9886 9887 9888 9889 9890 9891 9892 9893 9894 9895 9896 9897 9898 9899 9900 9901 9902 9903 9904 9905 9906 9907 9908 9909 9910 9911 9912 9913 9914 9915 9916 9917 9918 9919 9920 9921 9922 9923 9924 9925 9926 9927 9928 9929 9930 9931 9932 9933 9934 9935 9936 9937 9938 9939 9940 9941 9942 9943 9944 9945 9946 9947 9948 9949 9950 9951 9952 9953 9954 9955 9956 9957 9958 9959 9960 9961 9962 9963 9964 9965 9966 9967 9968 9969 9970 9971 9972 9973 9974 9975 9976 9977 9978 9979 9980 9981 9982 9983 9984 9985 9986 9987 9988 9989 9990 9991 9992 9993 9994 9995 9996 9997 9998 9999 10000 10001 10002 10003 10004 10005 10006 10007 10008 10009 10010 10011 10012 10013 10014 10015 10016 10017 10018 10019 10020 10021 10022 10023 10024 10025 10026 10027 10028 10029 10030 10031 10032 10033 10034 10035 10036 10037 10038 10039 10040 10041 10042 10043 10044 10045 10046 10047 10048 10049 10050 10051 10052 10053 10054 10055 10056 10057 10058 10059 10060 10061 10062 10063 10064 10065 10066 10067 10068 10069 10070 10071 10072 10073 10074 10075 10076 10077 10078 10079 10080 10081 10082 10083 10084 10085 10086 10087 10088 10089 10090 10091 10092 10093 10094 10095 10096 10097 10098 10099 10100 10101 10102 10103 10104 10105 10106 10107 10108 10109 10110 10111 10112 10113 10114 10115 10116 10117 10118 10119 10120 10121 10122 10123 10124 10125 10126 10127 10128 10129 10130 10131 10132 10133 10134 10135 10136 10137 10138 10139 10140 10141 10142 10143 10144 10145 10146 10147 10148 10149 10150 10151 10152 10153 10154 10155 10156 10157 10158 10159 10160 10161 10162 10163 10164 10165 10166 10167 10168 10169 10170 10171 10172 10173 10174 10175 10176 10177 10178 10179 10180 10181 10182 10183 10184 10185 10186 10187 10188 10189 10190 10191 10192 10193 10194 10195 10196 10197 10198 10199 10200 10201 10202 10203 10204 10205 10206 10207 10208 10209 10210 10211 10212 10213 10214 10215 10216 10217 10218 10219 10220 10221 10222 10223 10224 10225 10226 10227 10228 10229 10230 10231 10232 10233 10234 10235 10236 10237 10238 10239 10240 10241 10242 10243 10244 10245 10246 10247 10248 10249 10250 10251 10252 10253 10254 10255 10256 10257 10258 10259 10260 10261 10262 10263 10264 10265 10266 10267 10268 10269 10270 10271 10272 10273 10274 10275 10276 10277 10278 10279 10280 10281 10282 10283 10284 10285 10286 10287 10288 10289 10290 10291 10292 10293 10294 10295 10296 10297 10298 10299 10300 10301 10302 10303 10304 10305 10306 10307 10308 10309 10310 10311 10312 10313 10314 10315 10316 10317 10318 10319 10320 10321 10322 10323 10324 10325 10326 10327 10328 10329 10330 10331 10332 10333 10334 10335 10336 10337 10338 10339 10340 10341 10342 10343 10344 10345 10346 10347 10348 10349 10350 10351 10352 10353 10354 10355 10356 10357 10358 10359 10360 10361 10362 10363 10364 10365 10366 10367 10368 10369 10370 10371 10372 10373 10374 10375 10376 10377 10378 10379 10380 10381 10382 10383 10384 10385 10386 10387 10388 10389 10390 10391 10392 10393 10394 10395 10396 10397 10398 10399 10400 10401 10402 10403 10404 10405 10406 10407 10408 10409 10410 10411 10412 10413 10414 10415 10416 10417 10418 10419 10420 10421 10422 10423 10424 10425 10426 10427 10428 10429 10430 10431 10432 10433 10434 10435 10436 10437 10438 10439 10440 10441 10442 10443 10444 10445 10446 10447 10448 10449 10450 10451 10452 10453 10454 10455 10456 10457 10458 10459 10460 10461 10462 10463 10464 10465 10466 10467 10468 10469 10470 10471 10472 10473 10474 10475 10476 10477 10478 10479 10480 10481 10482 10483 10484 10485 10486 10487 10488 10489 10490 10491 10492 10493 10494 10495 10496 10497 10498 10499 10500 10501 10502 10503 10504 10505 10506 10507 10508 10509 10510 10511 10512 10513 10514 10515 10516 10517 10518 10519 10520 10521 10522 10523 10524 10525 10526 10527 10528 10529 10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 10548 10549 10550 10551 10552 10553 10554 10555 10556 10557 10558 10559 10560 10561 10562 10563 10564 10565 10566 10567 10568 10569 10570 10571 10572 10573 10574 10575 10576 10577 10578 10579 10580 10581 10582 10583 10584 10585 10586 10587 10588 10589 10590 10591 10592 10593 10594 10595 10596 10597 10598 10599 10600 10601 10602 10603 10604 10605 10606 10607 10608 10609 10610 10611 10612 10613 10614 10615 10616 10617 10618 10619 10620 10621 10622 10623 10624 10625 10626 10627 10628 10629 10630 10631 10632 10633 10634 10635 10636 10637 10638 10639 10640 10641 10642 10643 10644 10645 10646 10647 10648 10649 10650 10651 10652 10653 10654 10655 10656 10657 10658 10659 10660 10661 10662 10663 10664 10665 10666 10667 10668 10669 10670 10671 10672 10673 10674 10675 10676 10677 10678 10679 10680 10681 10682 10683 10684 10685 10686 10687 10688 10689 10690 10691 10692 10693 10694 10695 10696 10697 10698 10699 10700 10701 10702 10703 10704 10705 10706 10707 10708 10709 10710 10711 10712 10713 10714 10715 10716 10717 10718 10719 10720 10721 10722 10723 10724 10725 10726 10727 10728 10729 10730 10731 10732 10733 10734 10735 10736 10737 10738 10739 10740 10741 10742 10743 10744 10745 10746 10747 10748 10749 10750 10751 10752 10753 10754 10755 10756 10757 10758 10759 10760 10761 10762 10763 10764 10765 10766 10767 10768 10769 10770 10771 10772 10773 10774 10775 10776 10777 10778 10779 10780 10781 10782 10783 10784 10785 10786 10787 10788 10789 10790 10791 10792 10793 10794 10795 10796 10797 10798 10799 10800 10801 10802 10803 10804 10805 10806 10807 10808 10809 10810 10811 10812 10813 10814 10815 10816 10817 10818 10819 10820 10821 10822 10823 10824 10825 10826 10827 10828 10829 10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 10879 10880 10881 10882 10883 10884 10885 10886 10887 10888 10889 10890 10891 10892 10893 10894 10895 10896 10897 10898 10899 10900 10901 10902 10903 10904 10905 10906 10907 10908 10909 10910 10911 10912 10913 10914 10915 10916 10917 10918 10919 10920 10921 10922 10923 10924 10925 10926 10927 10928 10929 10930 10931 10932 10933 10934 10935 10936 10937 10938 10939 10940 10941 10942 10943 10944 10945 10946 10947 10948 10949 10950 10951 10952 10953 10954 10955 10956 10957 10958 10959 10960 10961 10962 10963 10964 10965 10966 10967 10968 10969 10970 10971 10972 10973 10974 10975 10976 10977 10978 10979 10980 10981 10982 10983 10984 10985 10986 10987 10988 10989 10990 10991 10992 10993 10994 10995 10996 10997 10998 10999 11000 11001 11002 11003 11004 11005 11006 11007 11008 11009 11010 11011 11012 11013 11014 11015 11016 11017 11018 11019 11020 11021 11022 11023 11024 11025 11026 11027 11028 11029 11030 11031 11032 11033 11034 11035 11036 11037 11038 11039 11040 11041 11042 11043 11044 11045 11046 11047 11048 11049 11050 11051 11052 11053 11054 11055 11056 11057 11058 11059 11060 11061 11062 11063 11064 11065 11066 11067 11068 11069 11070 11071 11072 11073 11074 11075 11076 11077 11078 11079 11080 11081 11082 11083 11084 11085 11086 11087 11088 11089 11090 11091 11092 11093 11094 11095 11096 11097 11098 11099 11100 11101 11102 11103 11104 11105 11106 11107 11108 11109 11110 11111 11112 11113 11114 11115 11116 11117 11118 11119 11120 11121 11122 11123 11124 11125 11126 11127 11128 11129 11130 11131 11132 11133 11134 11135 11136 11137 11138 11139 11140 11141 11142 11143 11144 11145 11146 11147 11148 11149 11150 11151 11152 11153 11154 11155 11156 11157 11158 11159 11160 11161 11162 11163 11164 11165 11166 11167 11168 11169 11170 11171 11172 11173 11174 11175 11176 11177 11178 11179 11180 11181 11182 11183 11184 11185 11186 11187 11188 11189 11190 11191 11192 11193 11194 11195 11196 11197 11198 11199 11200 11201 11202 11203 11204 11205 11206 11207 11208 11209 11210 11211 11212 11213 11214 11215 11216 11217 11218 11219 11220 11221 11222 11223 11224 11225 11226 11227 11228 11229 11230 11231 11232 11233 11234 11235 11236 11237 11238 11239 11240 11241 11242 11243 11244 11245 11246 11247 11248 11249 11250 11251 11252 11253 11254 11255 11256 11257 11258 11259 11260 11261 11262 11263 11264 11265 11266 11267 11268 11269 11270 11271 11272 11273 11274 11275 11276 11277 11278 11279 11280 11281 11282 11283 11284 11285 11286 11287 11288 11289 11290 11291 11292 11293 11294 11295 11296 11297 11298 11299 11300 11301 11302 11303 11304 11305 11306 11307 11308 11309 11310 11311 11312 11313 11314 11315 11316 11317 11318 11319 11320 11321 11322 11323 11324 11325 11326 11327 11328 11329 11330 11331 11332 11333 11334 11335 11336 11337 11338 11339 11340 11341 11342 11343 11344 11345 11346 11347 11348 11349 11350 11351 11352 11353 11354 11355 11356 11357 11358 11359 11360 11361 11362 11363 11364 11365 11366 11367 11368 11369 11370 11371 11372 11373 11374 11375 11376 11377 11378 11379 11380 11381 11382 11383 11384 11385 11386 11387 11388 11389 11390 11391 11392 11393 11394 11395 11396 11397 11398 11399 11400 11401 11402 11403 11404 11405 11406 11407 11408 11409 11410 11411 11412 11413 11414 11415 11416 11417 11418 11419 11420 11421 11422 11423 11424 11425 11426 11427 11428 11429 11430 11431 11432 11433 11434 11435 11436 11437 11438 11439 11440 11441 11442 11443 11444 11445 11446 11447 11448 11449 11450 11451 11452 11453 11454 11455 11456 11457 11458 11459 11460 11461 11462 11463 11464 11465 11466 11467 11468 11469 11470 11471 11472 11473 11474 11475 11476 11477 11478 11479 11480 11481 11482 11483 11484 11485 11486 11487 11488 11489 11490 11491 11492 11493 11494 11495 11496 11497 11498 11499 11500 11501 11502 11503 11504 11505 11506 11507 11508 11509 11510 11511 11512 11513 11514 11515 11516 11517 11518 11519 11520 11521 11522 11523 11524 11525 11526 11527 11528 11529 11530 11531 11532 11533 11534 11535 11536 11537 11538 11539 11540 11541 11542 11543 11544 11545 11546 11547 11548 11549 11550 11551 11552 11553 11554 11555 11556 11557 11558 11559 11560 11561 11562 11563 11564 11565 11566 11567 11568 11569 11570 11571 11572 11573 11574 11575 11576 11577 11578 11579 11580 11581 11582 11583 11584 11585 11586 11587 11588 11589 11590 11591 11592 11593 11594 11595 11596 11597 11598 11599 11600 11601 11602 11603 11604 11605 11606 11607 11608 11609 11610 11611 11612 11613 11614 11615 11616 11617 11618 11619 11620 11621 11622 11623 11624 11625 11626 11627 11628 11629 11630 11631 11632 11633 11634 11635 11636 11637 11638 11639 11640 11641 11642 11643 11644 11645 11646 11647 11648 11649 11650 11651 11652 11653 11654 11655 11656 11657 11658 11659 11660 11661 11662 11663 11664 11665 11666 11667 11668 11669 11670 11671 11672 11673 11674 11675 11676 11677 11678 11679 11680 11681 11682 11683 11684 11685 11686 11687 11688 11689 11690 11691 11692 11693 11694 11695 11696 11697 11698 11699 11700 11701 11702 11703 11704 11705 11706 11707 11708 11709 11710 11711 11712 11713 11714 11715 11716 11717 11718 11719 11720 11721 11722 11723 11724 11725 11726 11727 11728 11729 11730 11731 11732 11733 11734 11735 11736 11737 11738 11739 11740 11741 11742 11743 11744 11745 11746 11747 11748 11749 11750 11751 11752 11753 11754 11755 11756 11757 11758 11759 11760 11761 11762 11763 11764 11765 11766 11767 11768 11769 11770 11771 11772 11773 11774 11775 11776 11777 11778 11779 11780 11781 11782 11783 11784 11785 11786 11787 11788 11789 11790 11791 11792 11793 11794 11795 11796 11797 11798 11799 11800 11801 11802 11803 11804 11805 11806 11807 11808 11809 11810 11811 11812 11813 11814 11815 11816 11817 11818 11819 11820 11821 11822 11823 11824 11825 11826 11827 11828 11829 11830 11831 11832 11833 11834 11835 11836 11837 11838 11839 11840 11841 11842 11843 11844 11845 11846 11847 11848 11849 11850 11851 11852 11853 11854 11855 11856 11857 11858 11859 11860 11861 11862 11863 11864 11865 11866 11867 11868 11869 11870 11871 11872 11873 11874 11875 11876 11877 11878 11879 11880 11881 11882 11883 11884 11885 11886 11887 11888 11889 11890 11891 11892 11893 11894 11895 11896 11897 11898 11899 11900 11901 11902 11903 11904 11905 11906 11907 11908 11909 11910 11911 11912 11913 11914 11915 11916 11917 11918 11919 11920 11921 11922 11923 11924 11925 11926 11927 11928 11929 11930 11931 11932 11933 11934 11935 11936 11937 11938 11939 11940 11941 11942 11943 11944 11945 11946 11947 11948 11949 11950 11951 11952 11953 11954 11955 11956 11957 11958 11959 11960 11961 11962 11963 11964 11965 11966 11967 11968 11969 11970 11971 11972 11973 11974 11975 11976 11977 11978 11979 11980 11981 11982 11983 11984 11985 11986 11987 11988 11989 11990 11991 11992 11993 11994 11995 11996 11997 11998 11999 12000 12001 12002 12003 12004 12005 12006 12007 12008 12009 12010 12011 12012 12013 12014 12015 12016 12017 12018 12019 12020 12021 12022 12023 12024 12025 12026 12027 12028 12029 12030 12031 12032 12033 12034 12035 12036 12037 12038 12039 12040 12041 12042 12043 12044 12045 12046 12047 12048 12049 12050 12051 12052 12053 12054 12055 12056 12057 12058 12059 12060 12061 12062 12063 12064 12065 12066 12067 12068 12069 12070 12071 12072 12073 12074 12075 12076 12077 12078 12079 12080 12081 12082 12083 12084 12085 12086 12087 12088 12089 12090 12091 12092 12093 12094 12095 12096 12097 12098 12099 12100 12101 12102 12103 12104 12105 12106 12107 12108 12109 12110 12111 12112 12113 12114 12115 12116 12117 12118 12119 12120 12121 12122 12123 12124 12125 12126 12127 12128 12129 12130 12131 12132 12133 12134 12135 12136 12137 12138 12139 12140 12141 12142 12143 12144 12145 12146 12147 12148 12149 12150 12151 12152 12153 12154 12155 12156 12157 12158 12159 12160 12161 12162 12163 12164 12165 12166 12167 12168 12169 12170 12171 12172 12173 12174 12175 12176 12177 12178 12179 12180 12181 12182 12183 12184 12185 12186 12187 12188 12189 12190 12191 12192 12193 12194 12195 12196 12197 12198 12199 12200 12201 12202 12203 12204 12205 12206 12207 12208 12209 12210 12211 12212 12213 12214 12215 12216 12217 12218 12219 12220 12221 12222 12223 12224 12225 12226 12227 12228 12229 12230 12231 12232 12233 12234 12235 12236 12237 12238 12239 12240 12241 12242 12243 12244 12245 12246 12247 12248 12249 12250 12251 12252 12253 12254 12255 12256 12257 12258 12259 12260 12261 12262 12263 12264 12265 12266 12267 12268 12269 12270 12271 12272 12273 12274 12275 12276 12277 12278 12279 12280 12281 12282 12283 12284 12285 12286 12287 12288 12289 12290 12291 12292 12293 12294 12295 12296 12297 12298 12299 12300 12301 12302 12303 12304 12305 12306 12307 12308 12309 12310 12311 12312 12313 12314 12315 12316 12317 12318 12319 12320 12321 12322 12323 12324 12325 12326 12327 12328 12329 12330 12331 12332 12333 12334 12335 12336 12337 12338 12339 12340 12341 12342 12343 12344 12345 12346 12347 12348 12349 12350 12351 12352 12353 12354 12355 12356 12357 12358 12359 12360 12361 12362 12363 12364 12365 12366 12367 12368 12369 12370 12371 12372 12373 12374 12375 12376 12377 12378 12379 12380 12381 12382 12383 12384 12385 12386 12387 12388 12389 12390 12391 12392 12393 12394 12395 12396 12397 12398 12399 12400 12401 12402 12403 12404 12405 12406 12407 12408 12409 12410 12411 12412 12413 12414 12415 12416 12417 12418 12419 12420 12421 12422 12423 12424 12425 12426 12427 12428 12429 12430 12431 12432 12433 12434 12435 12436 12437 12438 12439 12440 12441 12442 12443 12444 12445 12446 12447 12448 12449 12450 12451 12452 12453 12454 12455 12456 12457 12458 12459 12460 12461 12462 12463 12464 12465 12466 12467 12468 12469 12470 12471 12472 12473 12474 12475 12476 12477 12478 12479 12480 12481 12482 12483 12484 12485 12486 12487 12488 12489 12490 12491 12492 12493 12494 12495 12496 12497 12498 12499 12500 12501 12502 12503 12504 12505 12506 12507 12508 12509 12510 12511 12512 12513 12514 12515 12516 12517 12518 12519 12520 12521 12522 12523 12524 12525 12526 12527 12528 12529 12530 12531 12532 12533 12534 12535 12536 12537 12538 12539 12540 12541 12542 12543 12544 12545 12546 12547 12548 12549 12550 12551 12552 12553 12554 12555 12556 12557 12558 12559 12560 12561 12562 12563 12564 12565 12566 12567 12568 12569 12570 12571 12572 12573 12574 12575 12576 12577 12578 12579 12580 12581 12582 12583 12584 12585 12586 12587 12588 12589 12590 12591 12592 12593 12594 12595 12596 12597 12598 12599 12600 12601 12602 12603 12604 12605 12606 12607 12608 12609 12610 12611 12612 12613 12614 12615 12616 12617 12618 12619 12620 12621 12622 12623 12624 12625 12626 12627 12628 12629 12630 12631 12632 12633 12634 12635 12636 12637 12638 12639 12640 12641 12642 12643 12644 12645 12646 12647 12648 12649 12650 12651 12652 12653 12654 12655 12656 12657 12658 12659 12660 12661 12662 12663 12664 12665 12666 12667 12668 12669 12670 12671 12672 12673 12674 12675 12676 12677 12678 12679 12680 12681 12682 12683 12684 12685 12686 12687 12688 12689 12690 12691 12692 12693 12694 12695 12696 12697 12698 12699 12700 12701 12702 12703 12704 12705 12706 12707 12708 12709 12710 12711 12712 12713 12714 12715 12716 12717 12718 12719 12720 12721 12722 12723 12724 12725 12726 12727 12728 12729 12730 12731 12732 12733 12734 12735 12736 12737 12738 12739 12740 12741 12742 12743 12744 12745 12746 12747 12748 12749 12750 12751 12752 12753 12754 12755 12756 12757 12758 12759 12760 12761 12762 12763 12764 12765 12766 12767 12768 12769 12770 12771 12772 12773 12774 12775 12776 12777 12778 12779 12780 12781 12782 12783 12784 12785 12786 12787 12788 12789 12790 12791 12792 12793 12794 12795 12796 12797 12798 12799 12800 12801 12802 12803 12804 12805 12806 12807 12808 12809 12810 12811 12812 12813 12814 12815 12816 12817 12818 12819 12820 12821 12822 12823 12824 12825 12826 12827 12828 12829 12830 12831 12832 12833 12834 12835 12836 12837 12838 12839 12840 12841 12842 12843 12844 12845 12846 12847 12848 12849 12850 12851 12852 12853 12854 12855 12856 12857 12858 12859 12860 12861 12862 12863 12864 12865 12866 12867 12868 12869 12870 12871 12872 12873 12874 12875 12876 12877 12878 12879 12880 12881 12882 12883 12884 12885 12886 12887 12888 12889 12890 12891 12892 12893 12894 12895 12896 12897 12898 12899 12900 12901 12902 12903 12904 12905 12906 12907 12908 12909 12910 12911 12912 12913 12914 12915 12916 12917 12918 12919 12920 12921 12922 12923 12924 12925 12926 12927 12928 12929 12930 12931 12932 12933 12934 12935 12936 12937 12938 12939 12940 12941 12942 12943 12944 12945 12946 12947 12948 12949 12950 12951 12952 12953 12954 12955 12956 12957 12958 12959 12960 12961 12962 12963 12964 12965 12966 12967 12968 12969 12970 12971 12972 12973 12974 12975 12976 12977 12978 12979 12980 12981 12982 12983 12984 12985 12986 12987 12988 12989 12990 12991 12992 12993 12994 12995 12996 12997 12998 12999 13000 13001 13002 13003 13004 13005 13006 13007 13008 13009 13010 13011 13012 13013 13014 13015 13016 13017 13018 13019 13020 13021 13022 13023 13024 13025 13026 13027 13028 13029 13030 13031 13032 13033 13034 13035 13036 13037 13038 13039 13040 13041 13042 13043 13044 13045 13046 13047 13048 13049 13050 13051 13052 13053 13054 13055 13056 13057 13058 13059 13060 13061 13062 13063 13064 13065 13066 13067 13068 13069 13070 13071 13072 13073 13074 13075 13076 13077 13078 13079 13080 13081 13082 13083 13084 13085 13086 13087 13088 13089 13090 13091 13092 13093 13094 13095 13096 13097 13098 13099 13100 13101 13102 13103 13104 13105 13106 13107 13108 13109 13110 13111 13112 13113 13114 13115 13116 13117 13118 13119 13120 13121 13122 13123 13124 13125 13126 13127 13128 13129 13130 13131 13132 13133 13134 13135 13136 13137 13138 13139 13140 13141 13142 13143 13144 13145 13146 13147 13148 13149 13150 13151 13152 13153 13154 13155 13156 13157 13158 13159 13160 13161 13162 13163 13164 13165 13166 13167 13168 13169 13170 13171 13172 13173 13174 13175 13176 13177 13178 13179 13180 13181 13182 13183 13184 13185 13186 13187 13188 13189 13190 13191 13192 13193 13194 13195 13196 13197 13198 13199 13200 13201 13202 13203 13204 13205 13206 13207 13208 13209 13210 13211 13212 13213 13214 13215 13216 13217 13218 13219 13220 13221 13222 13223 13224 13225 13226 13227 13228 13229 13230 13231 13232 13233 13234 13235 13236 13237 13238 13239 13240 13241 13242 13243 13244 13245 13246 13247 13248 13249 13250 13251 13252 13253 13254 13255 13256 13257 13258 13259 13260 13261 13262 13263 13264 13265 13266 13267 13268 13269 13270 13271 13272 13273 13274 13275 13276 13277 13278 13279 13280 13281 13282 13283 13284 13285 13286 13287 13288 13289 13290 13291 13292 13293 13294 13295 13296 13297 13298 13299 13300 13301 13302 13303 13304 13305 13306 13307 13308 13309 13310 13311 13312 13313 13314 13315 13316 13317 13318 13319 13320 13321 13322 13323 13324 13325 13326 13327 13328 13329 13330 13331 13332 13333 13334 13335 13336 13337 13338 13339 13340 13341 13342 13343 13344 13345 13346 13347 13348 13349 13350 13351 13352 13353 13354 13355 13356 13357 13358 13359 13360 13361 13362 13363 13364 13365 13366 13367 13368 13369 13370 13371 13372 13373 13374 13375 13376 13377 13378 13379 13380 13381 13382 13383 13384 13385 13386 13387 13388 13389 13390 13391 13392 13393 13394 13395 13396 13397 13398 13399 13400 13401 13402 13403 13404 13405 13406 13407 13408 13409 13410 13411 13412 13413 13414 13415 13416 13417 13418 13419 13420 13421 13422 13423 13424 13425 13426 13427 13428 13429 13430 13431 13432 13433 13434 13435 13436 13437 13438 13439 13440 13441 13442 13443 13444 13445 13446 13447 13448 13449 13450 13451 13452 13453 13454 13455 13456 13457 13458 13459 13460 13461 13462 13463 13464 13465 13466 13467 13468 13469 13470 13471 13472 13473 13474 13475 13476 13477 13478 13479 13480 13481 13482 13483 13484 13485 13486 13487 13488 13489 13490 13491 13492 13493 13494 13495 13496 13497 13498 13499 13500 13501 13502 13503 13504 13505 13506 13507 13508 13509 13510 13511 13512 13513 13514 13515 13516 13517 13518 13519 13520 13521 13522 13523 13524 13525 13526 13527 13528 13529 13530 13531 13532 13533 13534 13535 13536 13537 13538 13539 13540 13541 13542 13543 13544 13545 13546 13547 13548 13549 13550 13551 13552 13553 13554 13555 13556 13557 13558 13559 13560 13561 13562 13563 13564 13565 13566 13567 13568 13569 13570 13571 13572 13573 13574 13575 13576 13577 13578 13579 13580 13581 13582 13583 13584 13585 13586 13587 13588 13589 13590 13591 13592 13593 13594 13595 13596 13597 13598 13599 13600 13601 13602 13603 13604 13605 13606 13607 13608 13609 13610 13611 13612 13613 13614 13615 13616 13617 13618 13619 13620 13621 13622 13623 13624 13625 13626 13627 13628 13629 13630 13631 13632 13633 13634 13635 13636 13637 13638 13639 13640 13641 13642 13643 13644 13645 13646 13647 13648 13649 13650 13651 13652 13653 13654 13655 13656 13657 13658 13659 13660 13661 13662 13663 13664 13665 13666 13667 13668 13669 13670 13671 13672 13673 13674 13675 13676 13677 13678 13679 13680 13681 13682 13683 13684 13685 13686 13687 13688 13689 13690 13691 13692 13693 13694 13695 13696 13697 13698 13699 13700 13701 13702 13703 13704 13705 13706 13707 13708 13709 13710 13711 13712 13713 13714 13715 13716 13717 13718 13719 13720 13721 13722 13723 13724 13725 13726 13727 13728 13729 13730 13731 13732 13733 13734 13735 13736 13737 13738 13739 13740 13741 13742 13743 13744 13745 13746 13747 13748 13749 13750 13751 13752 13753 13754 13755 13756 13757 13758 13759 13760 13761 13762 13763 13764 13765 13766 13767 13768 13769 13770 13771 13772 13773 13774 13775 13776 13777 13778 13779 13780 13781 13782 13783 13784 13785 13786 13787 13788 13789 13790 13791 13792 13793 13794 13795 13796 13797 13798 13799 13800 13801 13802 13803 13804 13805 13806 13807 13808 13809 13810 13811 13812 13813 13814 13815 13816 13817 13818 13819 13820 13821 13822 13823 13824 13825 13826 13827 13828 13829 13830 13831 13832 13833 13834 13835 13836 13837 13838 13839 13840 13841 13842 13843 13844 13845 13846 13847 13848 13849 13850 13851 13852 13853 13854 13855 13856 13857 13858 13859 13860 13861 13862 13863 13864 13865 13866 13867 13868 13869 13870 13871 13872 13873 13874 13875 13876 13877 13878 13879 13880 13881 13882 13883 13884 13885 13886 13887 13888 13889 13890 13891 13892 13893 13894 13895 13896 13897 13898 13899 13900 13901 13902 13903 13904 13905 13906 13907 13908 13909 13910 13911 13912 13913 13914 13915 13916 13917 13918 13919 13920 13921 13922 13923 13924 13925 13926 13927 13928 13929 13930 13931 13932 13933 13934 13935 13936 13937 13938 13939 13940 13941 13942 13943 13944 13945 13946 13947 13948 13949 13950 13951 13952 13953 13954 13955 13956 13957 13958 13959 13960 13961 13962 13963 13964 13965 13966 13967 13968 13969 13970 13971 13972 13973 13974 13975 13976 13977 13978 13979 13980 13981 13982 13983 13984 13985 13986 13987 13988 13989 13990 13991 13992 13993 13994 13995 13996 13997 13998 13999 14000 14001 14002 14003 14004 14005 14006 14007 14008 14009 14010 14011 14012 14013 14014 14015 14016 14017 14018 14019 14020 14021 14022 14023 14024 14025 14026 14027 14028 14029 14030 14031 14032 14033 14034 14035 14036 14037 14038 14039 14040 14041 14042 14043 14044 14045 14046 14047 14048 14049 14050 14051 14052 14053 14054 14055 14056 14057 14058 14059 14060 14061 14062 14063 14064 14065 14066 14067 14068 14069 14070 14071 14072 14073 14074 14075 14076 14077 14078 14079 14080 14081 14082 14083 14084 14085 14086 14087 14088 14089 14090 14091 14092 14093 14094 14095 14096 14097 14098 14099 14100 14101 14102 14103 14104 14105 14106 14107 14108 14109 14110 14111 14112 14113 14114 14115 14116 14117 14118 14119 14120 14121 14122 14123 14124 14125 14126 14127 14128 14129 14130 14131 14132 14133 14134 14135 14136 14137 14138 14139 14140 14141 14142 14143 14144 14145 14146 14147 14148 14149 14150 14151 14152 14153 14154 14155 14156 14157 14158 14159 14160 14161 14162 14163 14164 14165 14166 14167 14168 14169 14170 14171 14172 14173 14174 14175 14176 14177 14178 14179 14180 14181 14182 14183 14184 14185 14186 14187 14188 14189 14190 14191 14192 14193 14194 14195 14196 14197 14198 14199 14200 14201 14202 14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 14230 14231 14232 14233 14234 14235 14236 14237 14238 14239 14240 14241 14242 14243 14244 14245 14246 14247 14248 14249 14250 14251 14252 14253 14254 14255 14256 14257 14258 14259 14260 14261 14262 14263 14264 14265 14266 14267 14268 14269 14270 14271 14272 14273 14274 14275 14276 14277 14278 14279 14280 14281 14282 14283 14284 14285 14286 14287 14288 14289 14290 14291 14292 14293 14294 14295 14296 14297 14298 14299 14300 14301 14302 14303 14304 14305 14306 14307 14308 14309 14310 14311 14312 14313 14314 14315 14316 14317 14318 14319 14320 14321 14322 14323 14324 14325 14326 14327 14328 14329 14330 14331 14332 14333 14334 14335 14336 14337 14338 14339 14340 14341 14342 14343 14344 14345 14346 14347 14348 14349 14350 14351 14352 14353 14354 14355 14356 14357 14358 14359 14360 14361 14362 14363 14364 14365 14366 14367 14368 14369 14370 14371 14372 14373 14374 14375 14376 14377 14378 14379 14380 14381 14382 14383 14384 14385 14386 14387 14388 14389 14390 14391 14392 14393 14394 14395 14396 14397 14398 14399 14400 14401 14402 14403 14404 14405 14406 14407 14408 14409 14410 14411 14412 14413 14414 14415 14416 14417 14418 14419 14420 14421 14422 14423 14424 14425 14426 14427 14428 14429 14430 14431 14432 14433 14434 14435 14436 14437 14438 14439 14440 14441 14442 14443 14444 14445 14446 14447 14448 14449 14450 14451 14452 14453 14454 14455 14456 14457 14458 14459 14460 14461 14462 14463 14464 14465 14466 14467 14468 14469 14470 14471 14472 14473 14474 14475 14476 14477 14478 14479 14480 14481 14482 14483 14484 14485 14486 14487 14488 14489 14490 14491 14492 14493 14494 14495 14496 14497 14498 14499 14500 14501 14502 14503 14504 14505 14506 14507 14508 14509 14510 14511 14512 14513 14514 14515 14516 14517 14518 14519 14520 14521 14522 14523 14524 14525 14526 14527 14528 14529 14530 14531 14532 14533 14534 14535 14536 14537 14538 14539 14540 14541 14542 14543 14544 14545 14546 14547 14548 14549 14550 14551 14552 14553 14554 14555 14556 14557 14558 14559 14560 14561 14562 14563 14564 14565 14566 14567 14568 14569 14570 14571 14572 14573 14574 14575 14576 14577 14578 14579 14580 14581 14582 14583 14584 14585 14586 14587 14588 14589 14590 14591 14592 14593 14594 14595 14596 14597 14598 14599 14600 14601 14602 14603 14604 14605 14606 14607 14608 14609 14610 14611 14612 14613 14614 14615 14616 14617 14618 14619 14620 14621 14622 14623 14624 14625 14626 14627 14628 14629 14630 14631 14632 14633 14634 14635 14636 14637 14638 14639 14640 14641 14642 14643 14644 14645 14646 14647 14648 14649 14650 14651 14652 14653 14654 14655 14656 14657 14658 14659 14660 14661 14662 14663 14664 14665 14666 14667 14668 14669 14670 14671 14672 14673 14674 14675 14676 14677 14678 14679 14680 14681 14682 14683 14684 14685 14686 14687 14688 14689 14690 14691 14692 14693 14694 14695 14696 14697 14698 14699 14700 14701 14702 14703 14704 14705 14706 14707 14708 14709 14710 14711 14712 14713 14714 14715 14716 14717 14718 14719 14720 14721 14722 14723 14724 14725 14726 14727 14728 14729 14730 14731 14732 14733 14734 14735 14736 14737 14738 14739 14740 14741 14742 14743 14744 14745 14746 14747 14748 14749 14750 14751 14752 14753 14754 14755 14756 14757 14758 14759 14760 14761 14762 14763 14764 14765 14766 14767 14768 14769 14770 14771 14772 14773 14774 14775 14776 14777 14778 14779 14780 14781 14782 14783 14784 14785 14786 14787 14788 14789 14790 14791 14792 14793 14794 14795 14796 14797 14798 14799 14800 14801 14802 14803 14804 14805 14806 14807 14808 14809 14810 14811 14812 14813 14814 14815 14816 14817 14818 14819 14820 14821 14822 14823 14824 14825 14826 14827 14828 14829 14830 14831 14832 14833 14834 14835 14836 14837 14838 14839 14840 14841 14842 14843 14844 14845 14846 14847 14848 14849 14850 14851 14852 14853 14854 14855 14856 14857 14858 14859 14860 14861 14862 14863 14864 14865 14866 14867 14868 14869 14870 14871 14872 14873 14874 14875 14876 14877 14878 14879 14880 14881 14882 14883 14884 14885 14886 14887 14888 14889 14890 14891 14892 14893 14894 14895 14896 14897 14898 14899 14900 14901 14902 14903 14904 14905 14906 14907 14908 14909 14910 14911 14912 14913 14914 14915 14916 14917 14918 14919 14920 14921 14922 14923 14924 14925 14926 14927 14928 14929 14930 14931 14932 14933 14934 14935 14936 14937 14938 14939 14940 14941 14942 14943 14944 14945 14946 14947 14948 14949 14950 14951 14952 14953 14954 14955 14956 14957 14958 14959 14960 14961 14962 14963 14964 14965 14966 14967 14968 14969 14970 14971 14972 14973 14974 14975 14976 14977 14978 14979 14980 14981 14982 14983 14984 14985 14986 14987 14988 14989 14990 14991 14992 14993 14994 14995 14996 14997 14998 14999 15000 15001 15002 15003 15004 15005 15006 15007 15008 15009 15010 15011 15012 15013 15014 15015 15016 15017 15018 15019 15020 15021 15022 15023 15024 15025 15026 15027 15028 15029 15030 15031 15032 15033 15034 15035 15036 15037 15038 15039 15040 15041 15042 15043 15044 15045 15046 15047 15048 15049 15050 15051 15052 15053 15054 15055 15056 15057 15058 15059 15060 15061 15062 15063 15064 15065 15066 15067 15068 15069 15070 15071 15072 15073 15074 15075 15076 15077 15078 15079 15080 15081 15082 15083 15084 15085 15086 15087 15088 15089 15090 15091 15092 15093 15094 15095 15096 15097 15098 15099 15100 15101 15102 15103 15104 15105 15106 15107 15108 15109 15110 15111 15112 15113 15114 15115 15116 15117 15118 15119 15120 15121 15122 15123 15124 15125 15126 15127 15128 15129 15130 15131 15132 15133 15134 15135 15136 15137 15138 15139 15140 15141 15142 15143 15144 15145 15146 15147 15148 15149 15150 15151 15152 15153 15154 15155 15156 15157 15158 15159 15160 15161 15162 15163 15164 15165 15166 15167 15168 15169 15170 15171 15172 15173 15174 15175 15176 15177 15178 15179 15180 15181 15182 15183 15184 15185 15186 15187 15188 15189 15190 15191 15192 15193 15194 15195 15196 15197 15198 15199 15200 15201 15202 15203 15204 15205 15206 15207 15208 15209 15210 15211 15212 15213 15214 15215 15216 15217 15218 15219 15220 15221 15222 15223 15224 15225 15226 15227 15228 15229 15230 15231 15232 15233 15234 15235 15236 15237 15238 15239 15240 15241 15242 15243 15244 15245 15246 15247 15248 15249 15250 15251 15252 15253 15254 15255 15256 15257 15258 15259 15260 15261 15262 15263 15264 15265 15266 15267 15268 15269 15270 15271 15272 15273 15274 15275 15276 15277 15278 15279 15280 15281 15282 15283 15284 15285 15286 15287 15288 15289 15290 15291 15292 15293 15294 15295 15296 15297 15298 15299 15300 15301 15302 15303 15304 15305 15306 15307 15308 15309 15310 15311 15312 15313 15314 15315 15316 15317 15318 15319 15320 15321 15322 15323 15324 15325 15326 15327 15328 15329 15330 15331 15332 15333 15334 15335 15336 15337 15338 15339 15340 15341 15342 15343 15344 15345 15346 15347 15348 15349 15350 15351 15352 15353 15354 15355 15356 15357 15358 15359 15360 15361 15362 15363 15364 15365 15366 15367 15368 15369 15370 15371 15372 15373 15374 15375 15376 15377 15378 15379 15380 15381 15382 15383 15384 15385 15386 15387 15388 15389 15390 15391 15392 15393 15394 15395 15396 15397 15398 15399 15400 15401 15402 15403 15404 15405 15406 15407 15408 15409 15410 15411 15412 15413 15414 15415 15416 15417 15418 15419 15420 15421 15422 15423 15424 15425 15426 15427 15428 15429 15430 15431 15432 15433 15434 15435 15436 15437 15438 15439 15440 15441 15442 15443 15444 15445 15446 15447 15448 15449 15450 15451 15452 15453 15454 15455 15456 15457 15458 15459 15460 15461 15462 15463 15464 15465 15466 15467 15468 15469 15470 15471 15472 15473 15474 15475 15476 15477 15478 15479 15480 15481 15482 15483 15484 15485 15486 15487 15488 15489 15490 15491 15492 15493 15494 15495 15496 15497 15498 15499 15500 15501 15502 15503 15504 15505 15506 15507 15508 15509 15510 15511 15512 15513 15514 15515 15516 15517 15518 15519 15520 15521 15522 15523 15524 15525 15526 15527 15528 15529 15530 15531 15532 15533 15534 15535 15536 15537 15538 15539 15540 15541 15542 15543 15544 15545 15546 15547 15548 15549 15550 15551 15552 15553 15554 15555 15556 15557 15558 15559 15560 15561 15562 15563 15564 15565 15566 15567 15568 15569 15570 15571 15572 15573 15574 15575 15576 15577 15578 15579 15580 15581 15582 15583 15584 15585 15586 15587 15588 15589 15590 15591 15592 15593 15594 15595 15596 15597 15598 15599 15600 15601 15602 15603 15604 15605 15606 15607 15608 15609 15610 15611 15612 15613 15614 15615 15616 15617 15618 15619 15620 15621 15622 15623 15624 15625 15626 15627 15628 15629 15630 15631 15632 15633 15634 15635 15636 15637 15638 15639 15640 15641 15642 15643 15644 15645 15646 15647 15648 15649 15650 15651 15652 15653 15654 15655 15656 15657 15658 15659 15660 15661 15662 15663 15664 15665 15666 15667 15668 15669 15670 15671 15672 15673 15674 15675 15676 15677 15678 15679 15680 15681 15682 15683 15684 15685 15686 15687 15688 15689 15690 15691 15692 15693 15694 15695 15696 15697 15698 15699 15700 15701 15702 15703 15704 15705 15706 15707 15708 15709 15710 15711 15712 15713 15714 15715 15716 15717 15718 15719 15720 15721 15722 15723 15724 15725 15726 15727 15728 15729 15730 15731 15732 15733 15734 15735 15736 15737 15738 15739 15740 15741 15742 15743 15744 15745 15746 15747 15748 15749 15750 15751 15752 15753 15754 15755 15756 15757 15758 15759 15760 15761 15762 15763 15764 15765 15766 15767 15768 15769 15770 15771 15772 15773 15774 15775 15776 15777 15778 15779 15780 15781 15782 15783 15784 15785 15786 15787 15788 15789 15790 15791 15792 15793 15794 15795 15796 15797 15798 15799 15800 15801 15802 15803 15804 15805 15806 15807 15808 15809 15810 15811 15812 15813 15814 15815 15816 15817 15818 15819 15820 15821 15822 15823 15824 15825 15826 15827 15828 15829 15830 15831 15832 15833 15834 15835 15836 15837 15838 15839 15840 15841 15842 15843 15844 15845 15846 15847 15848 15849 15850 15851 15852 15853 15854 15855 15856 15857 15858 15859 15860 15861 15862 15863 15864 15865 15866 15867 15868 15869 15870 15871 15872 15873 15874 15875 15876 15877 15878 15879 15880 15881 15882 15883 15884 15885 15886 15887 15888 15889 15890 15891 15892 15893 15894 15895 15896 15897 15898 15899 15900 15901 15902 15903 15904 15905 15906 15907 15908 15909 15910 15911 15912 15913 15914 15915 15916 15917 15918 15919 15920 15921 15922 15923 15924 15925 15926 15927 15928 15929 15930 15931 15932 15933 15934 15935 15936 15937 15938 15939 15940 15941 15942 15943 15944 15945 15946 15947 15948 15949 15950 15951 15952 15953 15954 15955 15956 15957 15958 15959 15960 15961 15962 15963 15964 15965 15966 15967 15968 15969 15970 15971 15972 15973 15974 15975 15976 15977 15978 15979 15980 15981 15982 15983 15984 15985 15986 15987 15988 15989 15990 15991 15992 15993 15994 15995 15996 15997 15998 15999 16000 16001 16002 16003 16004 16005 16006 16007 16008 16009 16010 16011 16012 16013 16014 16015 16016 16017 16018 16019 16020 16021 16022 16023 16024 16025 16026 16027 16028 16029 16030 16031 16032 16033 16034 16035 16036 16037 16038 16039 16040 16041 16042 16043 16044 16045 16046 16047 16048 16049 16050 16051 16052 16053 16054 16055 16056 16057 16058 16059 16060 16061 16062 16063 16064 16065 16066 16067 16068 16069 16070 16071 16072 16073 16074 16075 16076 16077 16078 16079 16080 16081 16082 16083 16084 16085 16086 16087 16088 16089 16090 16091 16092 16093 16094 16095 16096 16097 16098 16099 16100 16101 16102 16103 16104 16105 16106 16107 16108 16109 16110 16111 16112 16113 16114 16115 16116 16117 16118 16119 16120 16121 16122 16123 16124 16125 16126 16127 16128 16129 16130 16131 16132 16133 16134 16135 16136 16137 16138 16139 16140 16141 16142 16143 16144 16145 16146 16147 16148 16149 16150 16151 16152 16153 16154 16155 16156 16157 16158 16159 16160 16161 16162 16163 16164 16165 16166 16167 16168 16169 16170 16171 16172 16173 16174 16175 16176 16177 16178 16179 16180 16181 16182 16183 16184 16185 16186 16187 16188 16189 16190 16191 16192 16193 16194 16195 16196 16197 16198 16199 16200 16201 16202 16203 16204 16205 16206 16207 16208 16209 16210 16211 16212 16213 16214 16215 16216 16217 16218 16219 16220 16221 16222 16223 16224 16225 16226 16227 16228 16229 16230 16231 16232 16233 16234 16235 16236 16237 16238 16239 16240 16241 16242 16243 16244 16245 16246 16247 16248 16249 16250 16251 16252 16253 16254 16255 16256 16257 16258 16259 16260 16261 16262 16263 16264 16265 16266 16267 16268 16269 16270 16271 16272 16273 16274 16275 16276 16277 16278 16279 16280 16281 16282 16283 16284 16285 16286 16287 16288 16289 16290 16291 16292 16293 16294 16295 16296 16297 16298 16299 16300 16301 16302 16303 16304 16305 16306 16307 16308 16309 16310 16311 16312 16313 16314 16315 16316 16317 16318 16319 16320 16321 16322 16323 16324 16325 16326 16327 16328 16329 16330 16331 16332 16333 16334 16335 16336 16337 16338 16339 16340 16341 16342 16343 16344 16345 16346 16347 16348 16349 16350 16351 16352 16353 16354 16355 16356 16357 16358 16359 16360 16361 16362 16363 16364 16365 16366 16367 16368 16369 16370 16371 16372 16373 16374 16375 16376 16377 16378 16379 16380 16381 16382 16383 16384 16385 16386 16387 16388 16389 16390 16391 16392 16393 16394 16395 16396 16397 16398 16399 16400 16401 16402 16403 16404 16405 16406 16407 16408 16409 16410 16411 16412 16413 16414 16415 16416 16417 16418 16419 16420 16421 16422 16423 16424 16425 16426 16427 16428 16429 16430 16431 16432 16433 16434 16435 16436 16437 16438 16439 16440 16441 16442 16443 16444 16445 16446 16447 16448 16449 16450 16451 16452 16453 16454 16455 16456 16457 16458 16459 16460 16461 16462 16463 16464 16465 16466 16467 16468 16469 16470 16471 16472 16473 16474 16475 16476 16477 16478 16479 16480 16481 16482 16483 16484 16485 16486 16487 16488 16489 16490 16491 16492 16493 16494 16495 16496 16497 16498 16499 16500 16501 16502 16503 16504 16505 16506 16507 16508 16509 16510 16511 16512 16513 16514 16515 16516 16517 16518 16519 16520 16521 16522 16523 16524 16525 16526 16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 16558 16559 16560 16561 16562 16563 16564 16565 16566 16567 16568 16569 16570 16571 16572 16573 16574 16575 16576 16577 16578 16579 16580 16581 16582 16583 16584 16585 16586 16587 16588 16589 16590 16591 16592 16593 16594 16595 16596 16597 16598 16599 16600 16601 16602 16603 16604 16605 16606 16607 16608 16609 16610 16611 16612 16613 16614 16615 16616 16617 16618 16619 16620 16621 16622 16623 16624 16625 16626 16627 16628 16629 16630 16631 16632 16633 16634 16635 16636 16637 16638 16639 16640 16641 16642 16643 16644 16645 16646 16647 16648 16649 16650 16651 16652 16653 16654 16655 16656 16657 16658 16659 16660 16661 16662 16663 16664 16665 16666 16667 16668 16669 16670 16671 16672 16673 16674 16675 16676 16677 16678 16679 16680 16681 16682 16683 16684 16685 16686 16687 16688 16689 16690 16691 16692 16693 16694 16695 16696 16697 16698 16699 16700 16701 16702 16703 16704 16705 16706 16707 16708 16709 16710 16711 16712 16713 16714 16715 16716 16717 16718 16719 16720 16721 16722 16723 16724 16725 16726 16727 16728 16729 16730 16731 16732 16733 16734 16735 16736 16737 16738 16739 16740 16741 16742 16743 16744 16745 16746 16747 16748 16749 16750 16751 16752 16753 16754 16755 16756 16757 16758 16759 16760 16761 16762 16763 16764 16765 16766 16767 16768 16769 16770 16771 16772 16773 16774 16775 16776 16777 16778 16779 16780 16781 16782 16783 16784 16785 16786 16787 16788 16789 16790 16791 16792 16793 16794 16795 16796 16797 16798 16799 16800 16801 16802 16803 16804 16805 16806 16807 16808 16809 16810 16811 16812 16813 16814 16815 16816 16817 16818 16819 16820 16821 16822 16823 16824 16825 16826 16827 16828 16829 16830 16831 16832 16833 16834 16835 16836 16837 16838 16839 16840 16841 16842 16843 16844 16845 16846 16847 16848 16849 16850 16851 16852 16853 16854 16855 16856 16857 16858 16859 16860 16861 16862 16863 16864 16865 16866 16867 16868 16869 16870 16871 16872 16873 16874 16875 16876 16877 16878 16879 16880 16881 16882 16883 16884 16885 16886 16887 16888 16889 16890 16891 16892 16893 16894 16895 16896 16897 16898 16899 16900 16901 16902 16903 16904 16905 16906 16907 16908 16909 16910 16911 16912 16913 16914 16915 16916 16917 16918 16919 16920 16921 16922 16923 16924 16925 16926 16927 16928 16929 16930 16931 16932 16933 16934 16935 16936 16937 16938 16939 16940 16941 16942 16943 16944 16945 16946 16947 16948 16949 16950 16951 16952 16953 16954 16955 16956 16957 16958 16959 16960 16961 16962 16963 16964 16965 16966 16967 16968 16969 16970 16971 16972 16973 16974 16975 16976 16977 16978 16979 16980 16981 16982 16983 16984 16985 16986 16987 16988 16989 16990 16991 16992 16993 16994 16995 16996 16997 16998 16999 17000 17001 17002 17003 17004 17005 17006 17007 17008 17009 17010 17011 17012 17013 17014 17015 17016 17017 17018 17019 17020 17021 17022 17023 17024 17025 17026 17027 17028 17029 17030 17031 17032 17033 17034 17035 17036 17037 17038 17039 17040 17041 17042 17043 17044 17045 17046 17047 17048 17049 17050 17051 17052 17053 17054 17055 17056 17057 17058 17059 17060 17061 17062 17063 17064 17065 17066 17067 17068 17069 17070 17071 17072 17073 17074 17075 17076 17077 17078 17079 17080 17081 17082 17083 17084 17085 17086 17087 17088 17089 17090 17091 17092 17093 17094 17095 17096 17097 17098 17099 17100 17101 17102 17103 17104 17105 17106 17107 17108 17109 17110 17111 17112 17113 17114 17115 17116 17117 17118 17119 17120 17121 17122 17123 17124 17125 17126 17127 17128 17129 17130 17131 17132 17133 17134 17135 17136 17137 17138 17139 17140 17141 17142 17143 17144 17145 17146 17147 17148 17149 17150 17151 17152 17153 17154 17155 17156 17157 17158 17159 17160 17161 17162 17163 17164 17165 17166 17167 17168 17169 17170 17171 17172 17173 17174 17175 17176 17177 17178 17179 17180 17181 17182 17183 17184 17185 17186 17187 17188 17189 17190 17191 17192 17193 17194 17195 17196 17197 17198 17199 17200 17201 17202 17203 17204 17205 17206 17207 17208 17209 17210 17211 17212 17213 17214 17215 17216 17217 17218 17219 17220 17221 17222 17223 17224 17225 17226 17227 17228 17229 17230 17231 17232 17233 17234 17235 17236 17237 17238 17239 17240 17241 17242 17243 17244 17245 17246 17247 17248 17249 17250 17251 17252 17253 17254 17255 17256 17257 17258 17259 17260 17261 17262 17263 17264 17265 17266 17267 17268 17269 17270 17271 17272 17273 17274 17275 17276 17277 17278 17279 17280 17281 17282 17283 17284 17285 17286 17287 17288 17289 17290 17291 17292 17293 17294 17295 17296 17297 17298 17299 17300 17301 17302 17303 17304 17305 17306 17307 17308 17309 17310 17311 17312 17313 17314 17315 17316 17317 17318 17319 17320 17321 17322 17323 17324 17325 17326 17327 17328 17329 17330 17331 17332 17333 17334 17335 17336 17337 17338 17339 17340 17341 17342 17343 17344 17345 17346 17347 17348 17349 17350 17351 17352 17353 17354 17355 17356 17357 17358 17359 17360 17361 17362 17363 17364 17365 17366 17367 17368 17369 17370 17371 17372 17373 17374 17375 17376 17377 17378 17379 17380 17381 17382 17383 17384 17385 17386 17387 17388 17389 17390 17391 17392 17393 17394 17395 17396 17397 17398 17399 17400 17401 17402 17403 17404 17405 17406 17407 17408 17409 17410 17411 17412 17413 17414 17415 17416 17417 17418 17419 17420 17421 17422 17423 17424 17425 17426 17427 17428 17429 17430 17431 17432 17433 17434 17435 17436 17437 17438 17439 17440 17441 17442 17443 17444 17445 17446 17447 17448 17449 17450 17451 17452 17453 17454 17455 17456 17457 17458 17459 17460 17461 17462 17463 17464 17465 17466 17467 17468 17469 17470 17471 17472 17473 17474 17475 17476 17477 17478 17479 17480 17481 17482 17483 17484 17485 17486 17487 17488 17489 17490 17491 17492 17493 17494 17495 17496 17497 17498 17499 17500 17501 17502 17503 17504 17505 17506 17507 17508 17509 17510 17511 17512 17513 17514 17515 17516 17517 17518 17519 17520 17521 17522 17523 17524 17525 17526 17527 17528 17529 17530 17531 17532 17533 17534 17535 17536 17537 17538 17539 17540 17541 17542 17543 17544 17545 17546 17547 17548 17549 17550 17551 17552 17553 17554 17555 17556 17557 17558 17559 17560 17561 17562 17563 17564 17565 17566 17567 17568 17569 17570 17571 17572 17573 17574 17575 17576 17577 17578 17579 17580 17581 17582 17583 17584 17585 17586 17587 17588 17589 17590 17591 17592 17593 17594 17595 17596 17597 17598 17599 17600 17601 17602 17603 17604 17605 17606 17607 17608 17609 17610 17611 17612 17613 17614 17615 17616 17617 17618 17619 17620 17621 17622 17623 17624 17625 17626 17627 17628 17629 17630 17631 17632 17633 17634 17635 17636 17637 17638 17639 17640 17641 17642 17643 17644 17645 17646 17647 17648 17649 17650 17651 17652 17653 17654 17655 17656 17657 17658 17659 17660 17661 17662 17663 17664 17665 17666 17667 17668 17669 17670 17671 17672 17673 17674 17675 17676 17677 17678 17679 17680 17681 17682 17683 17684 17685 17686 17687 17688 17689 17690 17691 17692 17693 17694 17695 17696 17697 17698 17699 17700 17701 17702 17703 17704 17705 17706 17707 17708 17709 17710 17711 17712 17713 17714 17715 17716 17717 17718 17719 17720 17721 17722 17723 17724 17725 17726 17727 17728 17729 17730 17731 17732 17733 17734 17735 17736 17737 17738 17739 17740 17741 17742 17743 17744 17745 17746 17747 17748 17749 17750 17751 17752 17753 17754 17755 17756 17757 17758 17759 17760 17761 17762 17763 17764 17765 17766 17767 17768 17769 17770 17771 17772 17773 17774 17775 17776 17777 17778 17779 17780 17781 17782 17783 17784 17785 17786 17787 17788 17789 17790 17791 17792 17793 17794 17795 17796 17797 17798 17799 17800 17801 17802 17803 17804 17805 17806 17807 17808 17809 17810 17811 17812 17813 17814 17815 17816 17817 17818 17819 17820 17821 17822 17823 17824 17825 17826 17827 17828 17829 17830 17831 17832 17833 17834 17835 17836 17837 17838 17839 17840 17841 17842 17843 17844 17845 17846 17847 17848 17849 17850 17851 17852 17853 17854 17855 17856 17857 17858 17859 17860 17861 17862 17863 17864 17865 17866 17867 17868 17869 17870 17871 17872 17873 17874 17875 17876 17877 17878 17879 17880 17881 17882 17883 17884 17885 17886 17887 17888 17889 17890 17891 17892 17893 17894 17895 17896 17897 17898 17899 17900 17901 17902 17903 17904 17905 17906 17907 17908 17909 17910 17911 17912 17913 17914 17915 17916 17917 17918 17919 17920 17921 17922 17923 17924 17925 17926 17927 17928 17929 17930 17931 17932 17933 17934 17935 17936 17937 17938 17939 17940 17941 17942 17943 17944 17945 17946 17947 17948 17949 17950 17951 17952 17953 17954 17955 17956 17957 17958 17959 17960 17961 17962 17963 17964 17965 17966 17967 17968 17969 17970 17971 17972 17973 17974 17975 17976 17977 17978 17979 17980 17981 17982 17983 17984 17985 17986 17987 17988 17989 17990 17991 17992 17993 17994 17995 17996 17997 17998 17999 18000 18001 18002 18003 18004 18005 18006 18007 18008 18009 18010 18011 18012 18013 18014 18015 18016 18017 18018 18019 18020 18021 18022 18023 18024 18025 18026 18027 18028 18029 18030 18031 18032 18033 18034 18035 18036 18037 18038 18039 18040 18041 18042 18043 18044 18045 18046 18047 18048 18049 18050 18051 18052 18053 18054 18055 18056 18057 18058 18059 18060 18061 18062 18063 18064 18065 18066 18067 18068 18069 18070 18071 18072 18073 18074 18075 18076 18077 18078 18079 18080 18081 18082 18083 18084 18085 18086 18087 18088 18089 18090 18091 18092 18093 18094 18095 18096 18097 18098 18099 18100 18101 18102 18103 18104 18105 18106 18107 18108 18109 18110 18111 18112 18113 18114 18115 18116 18117 18118 18119 18120 18121 18122 18123 18124 18125 18126 18127 18128 18129 18130 18131 18132 18133 18134 18135 18136 18137 18138 18139 18140 18141 18142 18143 18144 18145 18146 18147 18148 18149 18150 18151 18152 18153 18154 18155 18156 18157 18158 18159 18160 18161 18162 18163 18164 18165 18166 18167 18168 18169 18170 18171 18172 18173 18174 18175 18176 18177 18178 18179 18180 18181 18182 18183 18184 18185 18186 18187 18188 18189 18190 18191 18192 18193 18194 18195 18196 18197 18198 18199 18200 18201 18202 18203 18204 18205 18206 18207 18208 18209 18210 18211 18212 18213 18214 18215 18216 18217 18218 18219 18220 18221 18222 18223 18224 18225 18226 18227 18228 18229 18230 18231 18232 18233 18234 18235 18236 18237 18238 18239 18240 18241 18242 18243 18244 18245 18246 18247 18248 18249 18250 18251 18252 18253 18254 18255 18256 18257 18258 18259 18260 18261 18262 18263 18264 18265 18266 18267 18268 18269 18270 18271 18272 18273 18274 18275 18276 18277 18278 18279 18280 18281 18282 18283 18284 18285 18286 18287 18288 18289 18290 18291 18292 18293 18294 18295 18296 18297 18298 18299 18300 18301 18302 18303 18304 18305 18306 18307 18308 18309 18310 18311 18312 18313 18314 18315 18316 18317 18318 18319 18320 18321 18322 18323 18324 18325 18326 18327 18328 18329 18330 18331 18332 18333 18334 18335 18336 18337 18338 18339 18340 18341 18342 18343 18344 18345 18346 18347 18348 18349 18350 18351 18352 18353 18354 18355 18356 18357 18358 18359 18360 18361 18362 18363 18364 18365 18366 18367 18368 18369 18370 18371 18372 18373 18374 18375 18376 18377 18378 18379 18380 18381 18382 18383 18384 18385 18386 18387 18388 18389 18390 18391 18392 18393 18394 18395 18396 18397 18398 18399 18400 18401 18402 18403 18404 18405 18406 18407 18408 18409 18410 18411 18412 18413 18414 18415 18416 18417 18418 18419 18420 18421 18422 18423 18424 18425 18426 18427 18428 18429 18430 18431 18432 18433 18434 18435 18436 18437 18438 18439 18440 18441 18442 18443 18444 18445 18446 18447 18448 18449 18450 18451 18452 18453 18454 18455 18456 18457 18458 18459 18460 18461 18462 18463 18464 18465 18466 18467 18468 18469 18470 18471 18472 18473 18474 18475 18476 18477 18478 18479 18480 18481 18482 18483 18484 18485 18486 18487 18488 18489 18490 18491 18492 18493 18494 18495 18496 18497 18498 18499 18500 18501 18502 18503 18504 18505 18506 18507 18508 18509 18510 18511 18512 18513 18514 18515 18516 18517 18518 18519 18520 18521 18522 18523 18524 18525 18526 18527 18528 18529 18530 18531 18532 18533 18534 18535 18536 18537 18538 18539 18540 18541 18542 18543 18544 18545 18546 18547 18548 18549 18550 18551 18552 18553 18554 18555 18556 18557 18558 18559 18560 18561 18562 18563 18564 18565 18566 18567 18568 18569 18570 18571 18572 18573 18574 18575 18576 18577 18578 18579 18580 18581 18582 18583 18584 18585 18586 18587 18588 18589 18590 18591 18592 18593 18594 18595 18596 18597 18598 18599 18600 18601 18602 18603 18604 18605 18606 18607 18608 18609 18610 18611 18612 18613 18614 18615 18616 18617 18618 18619 18620 18621 18622 18623 18624 18625 18626 18627 18628 18629 18630 18631 18632 18633 18634 18635 18636 18637 18638 18639 18640 18641 18642 18643 18644 18645 18646 18647 18648 18649 18650 18651 18652 18653 18654 18655 18656 18657 18658 18659 18660 18661 18662 18663 18664 18665 18666 18667 18668 18669 18670 18671 18672 18673 18674 18675 18676 18677 18678 18679 18680 18681 18682 18683 18684 18685 18686 18687 18688 18689 18690 18691 18692 18693 18694 18695 18696 18697 18698 18699 18700 18701 18702 18703 18704 18705 18706 18707 18708 18709 18710 18711 18712 18713 18714 18715 18716 18717 18718 18719 18720 18721 18722 18723 18724 18725 18726 18727 18728 18729 18730 18731 18732 18733 18734 18735 18736 18737 18738 18739 18740 18741 18742 18743 18744 18745 18746 18747 18748 18749 18750 18751 18752 18753 18754 18755 18756 18757 18758 18759 18760 18761 18762 18763 18764 18765 18766 18767 18768 18769 18770 18771 18772 18773 18774 18775 18776 18777 18778 18779 18780 18781 18782 18783 18784 18785 18786 18787 18788 18789 18790 18791 18792 18793 18794 18795 18796 18797 18798 18799 18800 18801 18802 18803 18804 18805 18806 18807 18808 18809 18810 18811 18812 18813 18814 18815 18816 18817 18818 18819 18820 18821 18822 18823 18824 18825 18826 18827 18828 18829 18830 18831 18832 18833 18834 18835 18836 18837 18838 18839 18840 18841 18842 18843 18844 18845 18846 18847 18848 18849 18850 18851 18852 18853 18854 18855 18856 18857 18858 18859 18860 18861 18862 18863 18864 18865 18866 18867 18868 18869 18870 18871 18872 18873 18874 18875 18876 18877 18878 18879 18880 18881 18882 18883 18884 18885 18886 18887 18888 18889 18890 18891 18892 18893 18894 18895 18896 18897 18898 18899 18900 18901 18902 18903 18904 18905 18906 18907 18908 18909 18910 18911 18912 18913 18914 18915 18916 18917 18918 18919 18920 18921 18922 18923 18924 18925 18926 18927 18928 18929 18930 18931 18932 18933 18934 18935 18936 18937 18938 18939 18940 18941 18942 18943 18944 18945 18946 18947 18948 18949 18950 18951 18952 18953 18954 18955 18956 18957 18958 18959 18960 18961 18962 18963 18964 18965 18966 18967 18968 18969 18970 18971 18972 18973 18974 18975 18976 18977 18978 18979 18980 18981 18982 18983 18984 18985 18986 18987 18988 18989 18990 18991 18992 18993 18994 18995 18996 18997 18998 18999 19000 19001 19002 19003 19004 19005 19006 19007 19008 19009 19010 19011 19012 19013 19014 19015 19016 19017 19018 19019 19020 19021 19022 19023 19024 19025 19026 19027 19028 19029 19030 19031 19032 19033 19034 19035 19036 19037 19038 19039 19040 19041 19042 19043 19044 19045 19046 19047 19048 19049 19050 19051 19052 19053 19054 19055 19056 19057 19058 19059 19060 19061 19062 19063 19064 19065 19066 19067 19068 19069 19070 19071 19072 19073 19074 19075 19076 19077 19078 19079 19080 19081 19082 19083 19084 19085 19086 19087 19088 19089 19090 19091 19092 19093 19094 19095 19096 19097 19098 19099 19100 19101 19102 19103 19104 19105 19106 19107 19108 19109 19110 19111 19112 19113 19114 19115 19116 19117 19118 19119 19120 19121 19122 19123 19124 19125 19126 19127 19128 19129 19130 19131 19132 19133 19134 19135 19136 19137 19138 19139 19140 19141 19142 19143 19144 19145 19146 19147 19148 19149 19150 19151 19152 19153 19154 19155 19156 19157 19158 19159 19160 19161 19162 19163 19164 19165 19166 19167 19168 19169 19170 19171 19172 19173 19174 19175 19176 19177 19178 19179 19180 19181 19182 19183 19184 19185 19186 19187 19188 19189 19190 19191 19192 19193 19194 19195 19196 19197 19198 19199 19200 19201 19202 19203 19204 19205 19206 19207 19208 19209 19210 19211 19212 19213 19214 19215 19216 19217 19218 19219 19220 19221 19222 19223 19224 19225 19226 19227 19228 19229 19230 19231 19232 19233 19234 19235 19236 19237 19238 19239 19240 19241 19242 19243 19244 19245 19246 19247 19248 19249 19250 19251 19252 19253 19254 19255 19256 19257 19258 19259 19260 19261 19262 19263 19264 19265 19266 19267 19268 19269 19270 19271 19272 19273 19274 19275 19276 19277 19278 19279 19280 19281 19282 19283 19284 19285 19286 19287 19288 19289 19290 19291 19292 19293 19294 19295 19296 19297 19298 19299 19300 19301 19302 19303 19304 19305 19306 19307 19308 19309 19310 19311 19312 19313 19314 19315 19316 19317 19318 19319 19320 19321 19322 19323 19324 19325 19326 19327 19328 19329 19330 19331 19332 19333 19334 19335 19336 19337 19338 19339 19340 19341 19342 19343 19344 19345 19346 19347 19348 19349 19350 19351 19352 19353 19354 19355 19356 19357 19358 19359 19360 19361 19362 19363 19364 19365 19366 19367 19368 19369 19370 19371 19372 19373 19374 19375 19376 19377 19378 19379 19380 19381 19382 19383 19384 19385 19386 19387 19388 19389 19390 19391 19392 19393 19394 19395 19396 19397 19398 19399 19400 19401 19402 19403 19404 19405 19406 19407 19408 19409 19410 19411 19412 19413 19414 19415 19416 19417 19418 19419 19420 19421 19422 19423 19424 19425 19426 19427 19428 19429 19430 19431 19432 19433 19434 19435 19436 19437 19438 19439 19440 19441 19442 19443 19444 19445 19446 19447 19448 19449 19450 19451 19452 19453 19454 19455 19456 19457 19458 19459 19460 19461 19462 19463 19464 19465 19466 19467 19468 19469 19470 19471 19472 19473 19474 19475 19476 19477 19478 19479 19480 19481 19482 19483 19484 19485 19486 19487 19488 19489 19490 19491 19492 19493 19494 19495 19496 19497 19498 19499 19500 19501 19502 19503 19504 19505 19506 19507 19508 19509 19510 19511 19512 19513 19514 19515 19516 19517 19518 19519 19520 19521 19522 19523 19524 19525 19526 19527 19528 19529 19530 19531 19532 19533 19534 19535 19536 19537 19538 19539 19540 19541 19542 19543 19544 19545 19546 19547 19548 19549 19550 19551 19552 19553 19554 19555 19556 19557 19558 19559 19560 19561 19562 19563 19564 19565 19566 19567 19568 19569 19570 19571 19572 19573 19574 19575 19576 19577 19578 19579 19580 19581 19582 19583 19584 19585 19586 19587 19588 19589 19590 19591 19592 19593 19594 19595 19596 19597 19598 19599 19600 19601 19602 19603 19604 19605 19606 19607 19608 19609 19610 19611 19612 19613 19614 19615 19616 19617 19618 19619 19620 19621 19622 19623 19624 19625 19626 19627 19628 19629 19630 19631 19632 19633 19634 19635 19636 19637 19638 19639 19640 19641 19642 19643 19644 19645 19646 19647 19648 19649 19650 19651 19652 19653 19654 19655 19656 19657 19658 19659 19660 19661 19662 19663 19664 19665 19666 19667 19668 19669 19670 19671 19672 19673 19674 19675 19676 19677 19678 19679 19680 19681 19682 19683 19684 19685 19686 19687 19688 19689 19690 19691 19692 19693 19694 19695 19696 19697 19698 19699 19700 19701 19702 19703 19704 19705 19706 19707 19708 19709 19710 19711 19712 19713 19714 19715 19716 19717 19718 19719 19720 19721 19722 19723 19724 19725 19726 19727 19728 19729 19730 19731 19732 19733 19734 19735 19736 19737 19738 19739 19740 19741 19742 19743 19744 19745 19746 19747 19748 19749 19750 19751 19752 19753 19754 19755 19756 19757 19758 19759 19760 19761 19762 19763 19764 19765 19766 19767 19768 19769 19770 19771 19772 19773 19774 19775 19776 19777 19778 19779 19780 19781 19782 19783 19784 19785 19786 19787 19788 19789 19790 19791 19792 19793 19794 19795 19796 19797 19798 19799 19800 19801 19802 19803 19804 19805 19806 19807 19808 19809 19810 19811 19812 19813 19814 19815 19816 19817 19818 19819 19820 19821 19822 19823 19824 19825 19826 19827 19828 19829 19830 19831 19840 19841 19842 19843 19844 19845 19846 19847 19848 19849 19850 19851 19852 19853 19854 19855 19856 19857 19858 19859 19860 19861 19862 19863 19864 19865 19866 19867 19868 19869 19870 19871 19872 19873 19874 19875 19876 19877 19878 19879 19880 19881 19882 19883 19884 19885 19886 19887 19888 19889 19890 19891 19892 19893 19894 19895 19896 19897 19898 19899 19900 19901 19902 19903 19904 19905 19906 19907 19908 19909 19910 19911 19912 19913 19914 19915 19916 19917 19918 19919 19920 19921 19922 19923 19924 19925 19926 19927 19928 19929 19930 19931 19932 19933 19934 19935 19936 19937 19938 19939 19940 19941 19942 19943 19944 19945 19946 19947 19948 19949 19950 19951 19952 19953 19954 19955 19956 19957 19958 19959 19960 19961 19962 19963 19964 19965 19966 19967 19968 19969 19970 19971 19972 19973 19974 19975 19976 19977 19978 19979 19980 19981 19982 19983 19984 19985 19986 19987 19988 19989 19990 19991 19992 19993 19994 19995 19996 19997 19998 19999 20000 20001 20002 20003 20004 20005 20006 20007 20008 20009 20010 20011 20012 20013 20014 20015 20016 20017 20018 20019 20020 20021 20022 20023 20024 20025 20026 20027 20028 20029 20030 20031 20032 20033 20034 20035 20036 20037 20038 20039 20040 20041 20042 20043 20044 20045 20046 20047 20048 20049 20050 20051 20052 20053 20054 20055 20056 20057 20058 20059 20060 20061 20062 20063 20064 20065 20066 20067 20068 20069 20070 20071 20072 20073 20074 20075 20076 20077 20078 20079 20080 20081 20082 20083 20084 20085 20086 20087 20088 20089 20090 20091 20092 20093 20094 20095 20096 20097 20098 20099 20100 20101 20102 20103 20104 20105 20106 20107 20108 20109 20110 20111 20112 20113 20114 20115 20116 20117 20118 20119 20120 20121 20122 20123 20124 20125 20126 20127 20128 20129 20130 20131 20132 20133 20134 20135 20136 20137 20138 20139 20140 20141 20142 20143 20144 20145 20146 20147 20148 20149 20150 20151 20152 20153 20154 20155 20156 20157 20158 20159 20160 20161 20162 20163 20164 20165 20166 20167 20168 20169 20170 20171 20172 20173 20174 20175 20176 20177 20178 20179 20180 20181 20182 20183 20184 20185 20186 20187 20188 20189 20190 20191 20192 20193 20194 20195 20196 20197 20198 20199 20200 20201 20202 20203 20204 20205 20206 20207 20208 20209 20210 20211 20212 20213 20214 20215 20216 20217 20218 20219 20220 20221 20222 20223 20224 20225 20226 20227 20228 20229 20230 20231 20232 20233 20234 20235 20236 20237 20238 20239 20240 20241 20242 20243 20244 20245 20246 20247 20248 20249 20250 20251 20252 20253 20254 20255 20256 20257 20258 20259 20260 20261 20262 20263 20264 20265 20266 20267 20268 20269 20270 20271 20272 20273 20274 20275 20276 20277 20278 20279 20280 20281 20282 20283 20284 20285 20286 20287 20288 20289 20290 20291 20292 20293 20294 20295 20296 20297 20298 20299 20300 20301 20302 20303 20304 20305 20306 20307 20308 20309 20310 20311 20312 20313 20314 20315 20316 20317 20318 20319 20320 20321 20322 20323 20324 20325 20326 20327 20328 20329 20330 20331 20332 20333 20334 20335 20336 20337 20338 20339 20340 20341 20342 20343 20344 20345 20346 20347 20348 20349 20350 20351 20352 20353 20354 20355 20356 20357 20358 20359 20360 20361 20362 20363 20364 20365 20366 20367 20368 20369 20370 20371 20372 20373 20374 20375 20376 20377 20378 20379 20380 20381 20382 20383 20384 20385 20386 20387 20388 20389 20390 20391 20392 20393 20394 20395 20396 20397 20398 20399 20400 20401 20402 20403 20404 20405 20406 20407 20408 20409 20410 20411 20412 20413 20414 20415 20416 20417 20418 20419 20420 20421 20422 20423 20424 20425 20426 20427 20428 20429 20430 20431 20432 20433 20434 20435 20436 20437 20438 20439 20440 20441 20442 20443 20444 20445 20446 20447 20448 20449 20450 20451 20452 20453 20454 20455 20456 20457 20458 20459 20460 20461 20462 20463 20464 20465 20466 20467 20468 20469 20470 20471 20472 20473 20474 20475 20476 20477 20478 20479 20480 20481 20482 20483 20484 20485 20486 20487 20488 20489 20490 20491 20492 20493 20494 20495 20496 20497 20498 20499 20500 20501 20502 20503 20504 20505 20506 20507 20508 20509 20510 20511 20512 20513 20514 20515 20516 20517 20518 20519 20520 20521 20522 20523 20524 20525 20526 20527 20528 20529 20530 20531 20532 20533 20534 20535 20536 20537 20538 20539 20540 20541 20542 20543 20544 20545 20546 20547 20548 20549 20550 20551 20552 20553 20554 20555 20556 20557 20558 20559 20560 20561 20562 20563 20564 20565 20566 20567 20568 20569 20570 20571 20572 20573 20574 20575 20576 20577 20578 20579 20580 20581 20582 20583 20584 20585 20586 20587 20588 20589 20590 20591 20592 20593 20594 20595 20596 20597 20598 20599 20600 20601 20602 20603 20604 20605 20606 20607 20608 20609 20610 20611 20612 20613 20614 20615 20616 20617 20618 20619 20620 20621 20622 20623 20624 20625 20626 20627 20628 20629 20630 20631 20632 20633 20634 20635 20636 20637 20638 20639 20640 20641 20642 20643 20644 20645 20646 20647 20648 20649 20650 20651 20652 20653 20654 20655 20656 20657 20658 20659 20660 20661 20662 20663 20664 20665 20666 20667 20668 20669 20670 20671 20672 20673 20674 20675 20676 20677 20678 20679 20680 20681 20682 20683 20684 20685 20686 20687 20688 20689 20690 20691 20692 20693 20694 20695 20696 20697 20698 20699 20700 20701 20702 20703 20704 20705 20706 20707 20708 20709 20710 20711 20712 20713 20714 20715 20716 20717 20718 20719 20720 20721 20722 20723 20724 20725 20726 20727 20728 20729 20730 20731 20732 20733 20734 20735 20736 20737 20738 20739 20740 20741 20742 20743 20744 20745 20746 20747 20748 20749 20750 20751 20752 20753 20754 20755 20756 20757 20758 20759 20760 20761 20762 20763 20764 20765 20766 20767 20768 20769 20770 20771 20772 20773 20774 20775 20776 20777 20778 20779 20780 20781 20782 20783 20784 20785 20786 20787 20788 20789 20790 20791 20792 20793 20794 20795 20796 20797 20798 20799 20800 20801 20802 20803 20804 20805 20806 20807 20808 20809 20810 20811 20812 20813 20814 20815 20816 20817 20818 20819 20820 20821 20822 20823 20824 20825 20826 20827 20828 20829 20830 20831 20832 20833 20834 20835 20836 20837 20838 20839 20840 20841 20842 20843 20844 20845 20846 20847 20848 20849 20850 20851 20852 20853 20854 20855 20856 20857 20858 20859 20860 20861 20862 20863 20864 20865 20866 20867 20868 20869 20870 20871 20872 20873 20874 20875 20876 20877 20878 20879 20880 20881 20882 20883 20884 20885 20886 20887 20888 20889 20890 20891 20892 20893 20894 20895 20896 20897 20898 20899 20900 20901 20902 20903 20904 20905 20906 20907 20908 20909 20910 20911 20912 20913 20914 20915 20916 20917 20918 20919 20920 20921 20922 20923 20924 20925 20926 20927 20928 20929 20930 20931 20932 20933 20934 20935 20936 20937 20938 20939 20940 20941 20942 20943 20944 20945 20946 20947 20948 20949 20950 20951 20952 20953 20954 20955 20956 20957 20958 20959 20960 20961 20962 20963 20964 20965 20966 20967 20968 20969 20970 20971 20972 20973 20974 20975 20976 20977 20978 20979 20980 20981 20982 20983 20984 20985 20986 20987 20988 20989 20990 20991 20992 20993 20994 20995 20996 20997 20998 20999 21000 21001 21002 21003 21004 21005 21006 21007 21008 21009 21010 21011 21012 21013 21014 21015 21016 21017 21018 21019 21020 21021 21022 21023 21024 21025 21026 21027 21028 21029 21030 21031 21032 21033 21034 21035 21036 21037 21038 21039 21040 21041 21042 21043 21044 21045 21046 21047 21048 21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 21089 21090 21091 21092 21093 21094 21095 21096 21097 21098 21099 21100 21101 21102 21103 21104 21105 21106 21107 21108 21109 21110 21111 21112 21113 21114 21115 21116 21117 21118 21119 21120 21121 21122 21123 21124 21125 21126 21127 21128 21129 21130 21131 21132 21133 21134 21135 21136 21137 21138 21139 21140 21141 21142 21143 21144 21145 21146 21147 21148 21149 21150 21151 21152 21153 21154 21155 21156 21157 21158 21159 21160 21161 21162 21163 21164 21165 21166 21167 21168 21169 21170 21171 21172 21173 21174 21175 21176 21177 21178 21179 21180 21181 21182 21183 21184 21185 21186 21187 21188 21189 21190 21191 21192 21193 21194 21195 21196 21197 21198 21199 21200 21201 21202 21203 21204 21205 21206 21207 21208 21209 21210 21211 21212 21213 21214 21215 21216 21217 21218 21219 21220 21221 21222 21223 21224 21225 21226 21227 21228 21229 21230 21231 21232 21233 21234 21235 21236 21237 21238 21239 21240 21241 21242 21243 21244 21245 21246 21247 21248 21249 21250 21251 21252 21253 21254 21255 21256 21257 21258 21259 21260 21261 21262 21263 21264 21265 21266 21267 21268 21269 21270 21271 21272 21273 21274 21275 21276 21277 21278 21279 21280 21281 21282 21283 21284 21285 21286 21287 21288 21289 21290 21291 21292 21293 21294 21295 21296 21297 21298 21299 21300 21301 21302 21303 21304 21305 21306 21307 21308 21309 21310 21311 21312 21313 21314 21315 21316 21317 21318 21319 21320 21321 21322 21323 21324 21325 21326 21327 21328 21329 21330 21331 21332 21333 21334 21335 21336 21337 21338 21339 21340 21341 21342 21343 21344 21345 21346 21347 21348 21349 21350 21351 21352 21353 21354 21355 21356 21357 21358 21359 21360 21361 21362 21363 21364 21365 21366 21367 21368 21369 21370 21371 21372 21373 21374 21375 21376 21377 21378 21379 21380 21381 21382 21383 21384 21385 21386 21387 21388 21389 21390 21391 21392 21393 21394 21395 21396 21397 21398 21399 21400 21401 21402 21403 21404 21405 21406 21407 21408 21409 21410 21411 21412 21413 21414 21415 21416 21417 21418 21419 21420 21421 21422 21423 21424 21425 21426 21427 21432 21433 21434 21435 21436 21437 21438 21439 21440 21441 21442 21443 21444 21445 21446 21447 21448 21449 21450 21451 21452 21453 21454 21455 21456 21457 21458 21459 21460 21461 21462 21463 21464 21465 21466 21467 21468 21469 21470 21471 21472 21473 21474 21475 21476 21477 21478 21479 21480 21481 21482 21483 21484 21485 21486 21487 21488 21489 21490 21491 21492 21493 21494 21495 21496 21497 21498 21499 21500 21501 21502 21503 21504 21505 21506 21507 21508 21509 21510 21511 21512 21513 21514 21515 21516 21517 21518 21519 21520 21521 21522 21523 21524 21525 21526 21527 21528 21529 21530 21531 21532 21533 21534 21535 21536 21537 21538 21539 21540 21541 21542 21543 21544 21545 21546 21547 21548 21549 21550 21551 21552 21553 21554 21555 21556 21557 21558 21559 21560 21561 21562 21563 21564 21565 21566 21567 21568 21569 21570 21571 21572 21573 21574 21575 21576 21577 21578 21579 21580 21581 21582 21583 21584 21585 21586 21587 21588 21589 21590 21591 21592 21593 21594 21595 21596 21597 21598 21599 21600 21601 21602 21603 21604 21605 21606 21607 21608 21609 21610 21611 21612 21613 21614 21615 21616 21617 21618 21619 21620 21621 21622 21623 21624 21625 21626 21627 21628 21629 21630 21631 21632 21633 21634 21635 21636 21637 21638 21639 21640 21641 21642 21643 21644 21645 21646 21647 21648 21649 21650 21651 21652 21653 21654 21655 21656 21657 21658 21659 21660 21661 21662 21663 21664 21665 21666 21667 21668 21669 21670 21671 21672 21673 21674 21675 21676 21677 21678 21679 21680 21681 21682 21683 21684 21685 21686 21687 21688 21689 21690 21691 21692 21693 21694 21695 21696 21697 21698 21699 21700 21701 21702 21703 21704 21705 21706 21707 21708 21709 21710 21711 21712 21713 21714 21715 21716 21717 21718 21719 21720 21721 21722 21723 21724 21725 21726 21727 21728 21729 21730 21731 21732 21733 21734 21735 21736 21737 21738 21739 21740 21741 21742 21743 21744 21745 21746 21747 21748 21749 21750 21751 21752 21753 21754 21755 21756 21757 21758 21759 21760 21761 21762 21763 21764 21765 21766 21767 21768 21769 21770 21771 21772 21773 21774 21775 21776 21777 21778 21779 21780 21781 21782 21783 21784 21785 21786 21787 21788 21789 21790 21791 21792 21793 21794 21795 21796 21797 21798 21799 21800 21801 21802 21803 21804 21805 21806 21807 21808 21809 21810 21811 21812 21813 21814 21815 21816 21817 21818 21819 21820 21821 21822 21823 21824 21825 21826 21827 21828 21829 21830 21831 21832 21833 21834 21835 21836 21837 21838 21839 21840 21841 21842 21843 21844 21845 21846 21847 21848 21849 21850 21851 21852 21853 21854 21855 21856 21857 21858 21859 21860 21861 21862 21863 21864 21865 21866 21867 21868 21869 21870 21871 21872 21873 21874 21875 21876 21877 21878 21879 21880 21881 21882 21883 21884 21885 21886 21887 21888 21889 21890 21891 21892 21893 21894 21895 21896 21897 21898 21899 21900 21901 21902 21903 21904 21905 21906 21907 21908 21909 21910 21911 21912 21913 21914 21915 21916 21917 21918 21919 21920 21921 21922 21923 21924 21925 21926 21927 21928 21929 21930 21931 21932 21933 21934 21935 21936 21937 21938 21939 21940 21941 21942 21943 21944 21945 21946 21947 21948 21949 21950 21951 21952 21953 21954 21955 21956 21957 21958 21959 21960 21961 21962 21963 21964 21965 21966 21967 21968 21969 21970 21971 21972 21973 21974 21975 21976 21977 21978 21979 21980 21981 21982 21983 21984 21985 21986 21987 21988 21989 21990 21991 21992 21993 21994 21995 21996 21997 21998 21999 22000 22001 22002 22003 22004 22005 22006 22007 22008 22009 22010 22011 22012 22013 22014 22015 22016 22017 22018 22019 22020 22021 22022 22023 22024 22025 22026 22027 22028 22029 22030 22031 22032 22033 22034 22035 22036 22037 22038 22039 22040 22041 22042 22043 22044 22045 22046 22047 22048 22049 22050 22051 22052 22053 22054 22055 22056 22057 22058 22059 22060 22061 22062 22063 22064 22065 22066 22067 22068 22069 22070 22071 22072 22073 22074 22075 22076 22077 22078 22079 22080 22081 22082 22083 22084 22085 22086 22087 22088 22089 22090 22091 22092 22093 22094 22095 22096 22097 22098 22099 22100 22101 22102 22103 22104 22105 22106 22107 22108 22109 22110 22111 22112 22113 22114 22115 22116 22117 22118 22119 22120 22121 22122 22123 22124 22125 22126 22127 22128 22129 22130 22131 22132 22133 22134 22135 22136 22137 22138 22139 22140 22141 22142 22143 22144 22145 22146 22147 22148 22149 22150 22151 22152 22153 22154 22155 22156 22157 22158 22159 22160 22161 22162 22163 22164 22165 22166 22167 22168 22169 22170 22171 22172 22173 22174 22175 22176 22177 22178 22179 22180 22181 22182 22183 22184 22185 22186 22187 22188 22189 22190 22191 22192 22193 22194 22195 22196 22197 22198 22199 22200 22201 22202 22203 22204 22205 22206 22207 22208 22209 22210 22211 22212 22213 22214 22215 22216 22217 22218 22219 22220 22221 22222 22223 22224 22225 22226 22227 22228 22229 22230 22231 22232 22233 22234 22235 22236 22237 22238 22239 22240 22241 22242 22243 22244 22245 22246 22247 22248 22249 22250 22251 22252 22253 22254 22255 22256 22257 22258 22259 22260 22261 22262 22263 22264 22265 22266 22267 22268 22269 22270 22271 22272 22273 22274 22275 22276 22277 22278 22279 22280 22281 22282 22283 22284 22285 22286 22287 22288 22289 22290 22291 22292 22293 22294 22295 22296 22297 22298 22299 22300 22301 22302 22303 22304 22305 22306 22307 22308 22309 22310 22311 22312 22313 22314 22315 22316 22317 22318 22319 22320 22321 22322 22323 22324 22325 22326 22327 22328 22329 22330 22331 22332 22333 22334 22335 22336 22337 22338 22339 22340 22341 22342 22343 22344 22345 22346 22347 22348 22349 22350 22351 22352 22353 22354 22355 22356 22357 22358 22359 22360 22361 22362 22363 22364 22365 22366 22367 22368 22369 22370 22371 22372 22373 22374 22375 22376 22377 22378 22379 22380 22381 22382 22383 22384 22385 22386 22387 22388 22389 22390 22391 22392 22393 22394 22395 22396 22397 22398 22399 22400 22401 22402 22403 22404 22405 22406 22407 22408 22409 22410 22411 22412 22413 22414 22415 22416 22417 22418 22419 22420 22421 22422 22423 22424 22425 22426 22427 22428 22429 22430 22431 22432 22433 22434 22435 22436 22437 22438 22439 22440 22441 22442 22443 22444 22445 22446 22447 22448 22449 22450 22451 22452 22453 22454 22455 22456 22457 22458 22459 22460 22461 22462 22463 22464 22465 22466 22467 22468 22469 22470 22471 22472 22473 22474 22475 22476 22477 22478 22479 22480 22481 22482 22483 22484 22485 22486 22487 22488 22489 22490 22491 22492 22493 22494 22495 22496 22497 22498 22499 22500 22501 22502 22503 22504 22505 22506 22507 22508 22509 22510 22511 22512 22513 22514 22515 22516 22517 22518 22519 22520 22521 22522 22523 22524 22525 22526 22527 22528 22529 22530 22531 22532 22533 22534 22535 22536 22537 22538 22539 22540 22541 22542 22543 22544 22545 22546 22547 22548 22549 22550 22551 22552 22553 22554 22555 22556 22557 22558 22559 22560 22561 22562 22563 22564 22565 22566 22567 22568 22569 22570 22571 22572 22573 22574 22575 22576 22577 22578 22579 22580 22581 22582 22583 22584 22585 22586 22587 22588 22589 22590 22591 22592 22593 22594 22595 22596 22597 22598 22599 22600 22601 22602 22603 22604 22605 22606 22607 22608 22609 22610 22611 22612 22613 22614 22615 22616 22617 22618 22619 22620 22621 22622 22623 22624 22625 22626 22627 22628 22629 22630 22631 22632 22633 22634 22635 22636 22637 22638 22639 22640 22641 22642 22643 22644 22645 22646 22647 22648 22649 22650 22651 22652 22653 22654 22655 22656 22657 22658 22659 22660 22661 22662 22663 22664 22665 22666 22667 22668 22669 22670 22671 22672 22673 22674 22675 22676 22677 22678 22679 22680 22681 22682 22683 22684 22685 22686 22687 22688 22689 22690 22691 22692 22693 22694 22695 22696 22697 22698 22699 22700 22701 22702 22703 22704 22705 22706 22707 22708 22709 22710 22711 22712 22713 22714 22715 22716 22717 22718 22719 22720 22721 22722 22723 22724 22725 22726 22727 22728 22729 22730 22731 22732 22733 22734 22735 22736 22737 22738 22739 22740 22741 22742 22743 22744 22745 22746 22747 22748 22749 22750 22751 22752 22753 22754 22755 22756 22757 22758 22759 22760 22761 22762 22763 22764 22765 22766 22767 22768 22769 22770 22771 22772 22773 22774 22775 22776 22777 22778 22779 22780 22781 22782 22783 22784 22785 22786 22787 22788 22789 22790 22791 22792 22793 22794 22795 22796 22797 22798 22799 22800 22801 22802 22803 22804 22805 22806 22807 22808 22809 22810 22811 22812 22813 22814 22815 22816 22817 22818 22819 22820 22821 22822 22823 22824 22825 22826 22827 22828 22829 22830 22831 22832 22833 22834 22835 22836 22837 22838 22839 22840 22841 22842 22843 22844 22845 22846 22847 22848 22849 22850 22851 22852 22853 22854 22855 22856 22857 22858 22859 22860 22861 22862 22863 22864 22865 22866 22867 22868 22869 22870 22871 22872 22873 22874 22875 22876 22877 22878 22879 22880 22881 22882 22883 22884 22885 22886 22887 22888 22889 22890 22891 22892 22893 22894 22895 22896 22897 22898 22899 22900 22901 22902 22903 22904 22905 22906 22907 22908 22909 22910 22911 22912 22913 22914 22915 22916 22917 22918 22919 22920 22921 22922 22923 22924 22925 22926 22927 22928 22929 22930 22931 22932 22933 22934 22935 22936 22937 22938 22939 22940 22941 22942 22943 22944 22945 22946 22947 22948 22949 22950 22951 22952 22953 22954 22955 22956 22957 22958 22959 22960 22961 22962 22963 22964 22965 22966 22967 22968 22969 22970 22971 22972 22973 22974 22975 22976 22977 22978 22979 22980 22981 22982 22983 22984 22985 22986 22987 22988 22989 22990 22991 22992 22993 22994 22995 22996 22997 22998 22999 23000 23001 23002 23003 23004 23005 23006 23007 23008 23009 23010 23011 23012 23013 23014 23015 23016 23017 23018 23019 23020 23021 23022 23023 23024 23025 23026 23027 23028 23029 23030 23031 23032 23033 23034 23035 23036 23037 23038 23039 23040 23041 23042 23043 23044 23045 23046 23047 23048 23049 23050 23051 23052 23053 23054 23055 23056 23057 23058 23059 23060 23061 23062 23063 23064 23065 23066 23067 23068 23069 23070 23071 23072 23073 23074 23075 23076 23077 23078 23079 23080 23081 23082 23083 23084 23085 23086 23087 23088 23089 23090 23091 23092 23093 23094 23095 23096 23097 23098 23099 23100 23101 23102 23103 23104 23105 23106 23107 23108 23109 23110 23111 23112 23113 23114 23115 23116 23117 23118 23119 23120 23121 23122 23123 23124 23125 23126 23127 23128 23129 23130 23131 23132 23133 23134 23135 23136 23137 23138 23139 23140 23141 23142 23143 23144 23145 23146 23147 23148 23149 23150 23151 23152 23153 23154 23155 23156 23157 23158 23159 23160 23161 23162 23163 23164 23165 23166 23167 23168 23169 23170 23171 23172 23173 23174 23175 23176 23177 23178 23179 23180 23181 23182 23183 23184 23185 23186 23187 23188 23189 23190 23191 23192 23193 23194 23195 23196 23197 23198 23199 23200 23201 23202 23203 23204 23205 23206 23207 23208 23209 23210 23211 23212 23213 23214 23215 23216 23217 23218 23219 23220 23221 23222 23223 23224 23225 23226 23227 23228 23229 23230 23231 23232 23233 23234 23235 23236 23237 23238 23239 23240 23241 23242 23243 23244 23245 23246 23247 23248 23249 23250 23251 23252 23253 23254 23255 23256 23257 23258 23259 23260 23261 23262 23263 23264 23265 23266 23267 23268 23269 23270 23271 23272 23273 23274 23275 23276 23277 23278 23279 23280 23281 23282 23283 23284 23285 23286 23287 23288 23289 23290 23291 23292 23293 23294 23295 23296 23297 23298 23299 23300 23301 23302 23303 23304 23305 23306 23307 23308 23309 23310 23311 23312 23313 23314 23315 23316 23317 23318 23319 23320 23321 23322 23323 23324 23325 23326 23327 23328 23329 23330 23331 23332 23333 23334 23335 23336 23337 23338 23339 23340 23341 23342 23343 23344 23345 23346 23347 23348 23349 23350 23351 23352 23353 23354 23355 23356 23357 23358 23359 23360 23361 23362 23363 23364 23365 23366 23367 23368 23369 23370 23371 23372 23373 23374 23375 23376 23377 23378 23379 23380 23381 23382 23383 23384 23385 23386 23387 23388 23389 23390 23391 23392 23393 23394 23395 23396 23397 23398 23399 23400 23401 23402 23403 23404 23405 23406 23407 23408 23409 23410 23411 23412 23413 23414 23415 23416 23417 23418 23419 23420 23421 23422 23423 23424 23425 23426 23427 23428 23429 23430 23431 23432 23433 23434 23435 23436 23437 23438 23439 23440 23441 23442 23443 23444 23445 23446 23447 23448 23449 23450 23451 23452 23453 23454 23455 23456 23457 23458 23459 23460 23461 23462 23463 23464 23465 23466 23467 23468 23469 23470 23471 23472 23473 23474 23475 23476 23477 23478 23479 23480 23481 23482 23483 23484 23485 23486 23487 23488 23489 23490 23491 23492 23493 23494 23495 23496 23497 23498 23499 23500 23501 23502 23503 23504 23505 23506 23507 23508 23509 23510 23511 23512 23513 23514 23515 23516 23517 23518 23519 23520 23521 23522 23523 23524 23525 23526 23527 23528 23529 23530 23531 23532 23533 23534 23535 23536 23537 23538 23539 23540 23541 23542 23543 23544 23545 23546 23547 23548 23549 23550 23551 23552 23553 23554 23555 23556 23557 23558 23559 23560 23561 23562 23563 23564 23565 23566 23567 23568 23569 23570 23571 23572 23573 23574 23575 23576 23577 23578 23579 23580 23581 23582 23583 23584 23585 23586 23587 23588 23589 23590 23591 23592 23593 23594 23595 23596 23597 23598 23599 23600 23601 23602 23603 23604 23605 23606 23607 23608 23609 23610 23611 23612 23613 23614 23615 23616 23617 23618 23619 23620 23621 23622 23623 23624 23625 23626 23627 23628 23629 23630 23631 23632 23633 23634 23635 23636 23637 23638 23639 23640 23641 23642 23643 23644 23645 23646 23647 23648 23649 23650 23651 23652 23653 23654 23655 23656 23657 23658 23659 23660 23661 23662 23663 23664 23665 23666 23667 23668 23669 23670 23671 23672 23673 23674 23675 23676 23677 23678 23679 23680 23681 23682 23683 23684 23685 23686 23687 23688 23689 23690 23691 23692 23693 23694 23695 23696 23697 23698 23699 23700 23701 23702 23703 23704 23705 23706 23707 23708 23709 23710 23711 23712 23713 23714 23715 23716 23717 23718 23719 23720 23721 23722 23723 23724 23725 23726 23727 23728 23729 23730 23731 23732 23733 23734 23735 23736 23737 23738 23739 23740 23741 23742 23743 23744 23745 23746 23747 23748 23749 23750 23751 23752 23753 23754 23755 23756 23757 23758 23759 23760 23761 23762 23763 23764 23765 23766 23767 23768 23769 23770 23771 23772 23773 23774 23775 23776 23777 23778 23779 23780 23781 23782 23783 23784 23785 23786 23787 23788 23789 23790 23791 23792 23793 23794 23795 23796 23797 23798 23799 23800 23801 23802 23803 23804 23805 23806 23807 23808 23809 23810 23811 23812 23813 23814 23815 23816 23817 23818 23819 23820 23821 23822 23823 23824 23825 23826 23827 23828 23829 23830 23831 23832 23833 23834 23835 23836 23837 23838 23839 23840 23841 23842 23843 23844 23845 23846 23847 23848 23849 23850 23851 23852 23853 23854 23855 23856 23857 23858 23859 23860 23861 23862 23863 23864 23865 23866 23867 23868 23869 23870 23871 23872 23873 23874 23875 23876 23877 23878 23879 23880 23881 23882 23883 23884 23885 23886 23887 23888 23889 23890 23891 23892 23893 23894 23895 23896 23897 23898 23899 23900 23901 23902 23903 23904 23905 23906 23907 23908 23909 23910 23911 23912 23913 23914 23915 23916 23917 23918 23919 23920 23921 23922 23923 23924 23925 23926 23927 23928 23929 23930 23931 23932 23933 23934 23935 23936 23937 23938 23939 23940 23941 23942 23943 23944 23945 23946 23947 23948 23949 23950 23951 23952 23953 23954 23955 23956 23957 23958 23959 23960 23961 23962 23963 23964 23965 23966 23967 23968 23969 23970 23971 23972 23973 23974 23975 23976 23977 23978 23979 23980 23981 23982 23983 23984 23985 23986 23987 23988 23989 23990 23991 23992 23993 23994 23995 23996 23997 23998 23999 24000 24001 24002 24003 24004 24005 24006 24007 24008 24009 24010 24011 24012 24013 24014 24015 24016 24017 24018 24019 24020 24021 24022 24023 24024 24025 24026 24027 24028 24029 24030 24031 24032 24033 24034 24035 24036 24037 24038 24039 24040 24041 24042 24043 24044 24045 24046 24047 24048 24049 24050 24051 24052 24053 24054 24055 24056 24057 24058 24059 24060 24061 24062 24063 24064 24065 24066 24067 24068 24069 24070 24071 24072 24073 24074 24075 24076 24077 24078 24079 24080 24081 24082 24083 24084 24085 24086 24087 24088 24089 24090 24091 24092 24093 24094 24095 24096 24097 24098 24099 24100 24101 24102 24103 24104 24105 24106 24107 24108 24109 24110 24111 24112 24113 24114 24115 24116 24117 24118 24119 24120 24121 24122 24123 24124 24125 24126 24127 24128 24129 24130 24131 24132 24133 24134 24135 24136 24137 24138 24139 24140 24141 24142 24143 24144 24145 24146 24147 24148 24149 24150 24151 24152 24153 24154 24155 24156 24157 24158 24159 24160 24161 24162 24163 24164 24165 24166 24167 24168 24169 24170 24171 24172 24173 24174 24175 24176 24177 24178 24179 24180 24181 24182 24183 24184 24185 24186 24187 24188 24189 24190 24191 24192 24193 24194 24195 24196 24197 24198 24199 24200 24201 24202 24203 24204 24205 24206 24207 24208 24209 24210 24211 24212 24213 24214 24215 24216 24217 24218 24219 24220 24221 24222 24223 24224 24225 24226 24227 24228 24229 24230 24231 24232 24233 24234 24235 24236 24237 24238 24239 24240 24241 24242 24243 24244 24245 24246 24247 24248 24249 24250 24251 24252 24253 24254 24255 24256 24257 24258 24259 24260 24261 24262 24263 24264 24265 24266 24267 24268 24269 24270 24271 24272 24273 24274 24275 24276 24277 24278 24279 24280 24281 24282 24283 24284 24285 24286 24287 24288 24289 24290 24291 24292 24293 24294 24295 24296 24297 24298 24299 24300 24301 24302 24303 24304 24305 24306 24307 24308 24309 24310 24311 24312 24313 24314 24315 24316 24317 24318 24319 24320 24321 24322 24323 24324 24325 24326 24327 24328 24329 24330 24331 24332 24333 24334 24335 24336 24337 24338 24339 24340 24341 24342 24343 24344 24345 24346 24347 24348 24349 24350 24351 24352 24353 24354 24355 24356 24357 24358 24359 24360 24361 24362 24363 24364 24365 24366 24367 24368 24369 24370 24371 24372 24373 24374 24375 24376 24377 24378 24379 24380 24381 24382 24383 24384 24385 24386 24387 24388 24389 24390 24391 24392 24393 24394 24395 24396 24397 24398 24399 24400 24401 24402 24403 24404 24405 24406 24407 24408 24409 24410 24411 24412 24413 24414 24415 24416 24417 24418 24419 24420 24421 24422 24423 24424 24425 24426 24427 24428 24429 24430 24431 24432 24433 24434 24435 24436 24437 24438 24439 24440 24441 24442 24443 24444 24445 24446 24447 24448 24449 24450 24451 24452 24453 24454 24455 24456 24457 24458 24459 24460 24461 24462 24463 24464 24465 24466 24467 24468 24469 24470 24471 24472 24473 24474 24475 24476 24477 24478 24479 24480 24481 24482 24483 24484 24485 24486 24487 24488 24489 24490 24491 24492 24493 24494 24495 24496 24497 24498 24499 24500 24501 24502 24503 24504 24505 24506 24507 24508 24509 24510 24511 24512 24513 24514 24515 24516 24517 24518 24519 24520 24521 24522 24523 24524 24525 24526 24527 24528 24529 24530 24531 24532 24533 24534 24535 24536 24537 24538 24539 24540 24541 24542 24543 24544 24545 24546 24547 24548 24549 24550 24551 24552 24553 24554 24555 24556 24557 24558 24559 24560 24561 24562 24563 24564 24565 24566 24567 24568 24569 24570 24571 24572 24573 24574 24575 24576 24577 24578 24579 24580 24581 24582 24583 24584 24585 24586 24587 24588 24589 24590 24591 24592 24593 24594 24595 24596 24597 24598 24599 24600 24601 24602 24603 24604 24605 24606 24607 24608 24609 24610 24611 24612 24613 24614 24615 24616 24617 24618 24619 24620 24621 24622 24623 24624 24625 24626 24627 24628 24629 24630 24631 24632 24633 24634 24635 24636 24637 24638 24639 24640 24641 24642 24643 24644 24645 24646 24647 24648 24649 24650 24651 24652 24653 24654 24655 24656 24657 24658 24659 24660 24661 24662 24663 24664 24665 24666 24667 24668 24669 24670 24671 24672 24673 24674 24675 24676 24677 24678 24679 24680 24681 24682 24683 24684 24685 24686 24687 24688 24689 24690 24691 24692 24693 24694 24695 24696 24697 24698 24699 24700 24701 24702 24703 24704 24705 24706 24707 24708 24709 24710 24711 24712 24713 24714 24715 24716 24717 24718 24719 24720 24721 24722 24723 24724 24725 24726 24727 24728 24729 24730 24731 24732 24733 24734 24735 24736 24737 24738 24739 24740 24741 24742 24743 24744 24745 24746 24747 24748 24749 24750 24751 24752 24753 24754 24755 24756 24757 24758 24759 24760 24761 24762 24763 24764 24765 24766 24767 24768 24769 24770 24771 24772 24773 24774 24775 24776 24777 24778 24779 24780 24781 24782 24783 24784 24785 24786 24787 24788 24789 24790 24791 24792 24793 24794 24795 24796 24797 24798 24799 24800 24801 24802 24803 24804 24805 24806 24807 24808 24809 24810 24811 24812 24813 24814 24815 24816 24817 24818 24819 24820 24821 24822 24823 24824 24825 24826 24827 24828 24829 24830 24831 24832 24833 24834 24835 24836 24837 24838 24839 24840 24841 24842 24843 24844 24845 24846 24847 24848 24849 24850 24851 24852 24853 24854 24855 24856 24857 24858 24859 24860 24861 24862 24863 24864 24865 24866 24867 24868 24869 24870 24871 24872 24873 24874 24875 24876 24877 24878 24879 24880 24881 24882 24883 24884 24885 24886 24887 24888 24889 24890 24891 24892 24893 24894 24895 24896 24897 24898 24899 24900 24901 24902 24903 24904 24905 24906 24907 24908 24909 24910 24911 24912 24913 24914 24915 24916 24917 24918 24919 24920 24921 24922 24923 24924 24925 24926 24927 24928 24929 24930 24931 24932 24933 24934 24935 24936 24937 24938 24939 24940 24941 24942 24943 24944 24945 24946 24947 24948 24949 24950 24951 24952 24953 24954 24955 24956 24957 24958 24959 24960 24961 24962 24963 24964 24965 24966 24967 24968 24969 24970 24971 24972 24973 24974 24975 24976 24977 24978 24979 24980 24981 24982 24983 24984 24985 24986 24987 24988 24989 24990 24991 24992 24993 24994 24995 24996 24997 24998 24999 25000 25001 25002 25003 25004 25005 25006 25007 25008 25009 25010 25011 25012 25013 25014 25015 25016 25017 25018 25019 25020 25021 25022 25023 25024 25025 25026 25027 25028 25029 25030 25031 25032 25033 25034 25035 25036 25037 25038 25039 25040 25041 25042 25043 25044 25045 25046 25047 25048 25049 25050 25051 25052 25053 25054 25055 25056 25057 25058 25059 25060 25061 25062 25063 25064 25065 25066 25067 25068 25069 25070 25071 25072 25073 25074 25075 25076 25077 25078 25079 25080 25081 25082 25083 25084 25085 25086 25087 25088 25089 25090 25091 25092 25093 25094 25095 25096 25097 25098 25099 25100 25101 25102 25103 25104 25105 25106 25107 25108 25109 25110 25111 25112 25113 25114 25115 25116 25117 25118 25119 25120 25121 25122 25123 25124 25125 25126 25127 25128 25129 25130 25131 25132 25133 25134 25135 25136 25137 25138 25139 25140 25141 25142 25143 25144 25145 25146 25147 25148 25149 25150 25151 25152 25153 25154 25155 25156 25157 25158 25159 25160 25161 25162 25163 25164 25165 25166 25167 25168 25169 25170 25171 25172 25173 25174 25175 25176 25177 25178 25179 25180 25181 25182 25183 25184 25185 25186 25187 25188 25189 25190 25191 25192 25193 25194 25195 25196 25197 25198 25199 25200 25201 25202 25203 25204 25205 25206 25207 25208 25209 25210 25211 25212 25213 25214 25215 25216 25217 25218 25219 25220 25221 25222 25223 25224 25225 25226 25227 25228 25229 25230 25231 25232 25233 25234 25235 25236 25237 25238 25239 25240 25241 25242 25243 25244 25245 25246 25247 25248 25249 25250 25251 25252 25253 25254 25255 25256 25257 25258 25259 25260 25261 25262 25263 25264 25265 25266 25267 25268 25269 25270 25271 25272 25273 25274 25275 25276 25277 25278 25279 25280 25281 25282 25283 25284 25285 25286 25287 25288 25289 25290 25291 25292 25293 25294 25295 25296 25297 25298 25299 25300 25301 25302 25303 25304 25305 25306 25307 25308 25309 25310 25311 25312 25313 25314 25315 25316 25317 25318 25319 25320 25321 25322 25323 25324 25325 25326 25327 25328 25329 25330 25331 25332 25333 25334 25335 25336 25337 25338 25339 25340 25341 25342 25343 25344 25345 25346 25347 25348 25349 25350 25351 25352 25353 25354 25355 25356 25357 25358 25359 25360 25361 25362 25363 25364 25365 25366 25367 25368 25369 25370 25371 25372 25373 25374 25375 25376 25377 25378 25379 25380 25381 25382 25383 25384 25385 25386 25387 25388 25389 25390 25391 25392 25393 25394 25395 25396 25397 25398 25399 25400 25401 25402 25403 25404 25405 25406 25407 25408 25409 25410 25411 25412 25413 25414 25415 25416 25417 25418 25419 25420 25421 25422 25423 25424 25425 25426 25427 25428 25429 25430 25431 25432 25433 25434 25435 25436 25437 25438 25439 25440 25441 25442 25443 25444 25445 25446 25447 25448 25449 25450 25451 25452 25453 25454 25455 25456 25457 25458 25459 25460 25461 25462 25463 25464 25465 25466 25467 25468 25469 25470 25471 25472 25473 25474 25475 25476 25477 25478 25479 25480 25481 25482 25483 25484 25485 25486 25487 25488 25489 25490 25491 25492 25493 25494 25495 25496 25497 25498 25499 25500 25501 25502 25503 25504 25505 25506 25507 25508 25509 25510 25511 25512 25513 25514 25515 25516 25517 25518 25519 25520 25521 25522 25523 25524 25525 25526 25527 25528 25529 25530 25531 25532 25533 25534 25535 25536 25537 25538 25539 25540 25541 25542 25543 25544 25545 25546 25547 25548 25549 25550 25551 25552 25553 25554 25555 25556 25557 25558 25559 25560 25561 25562 25563 25564 25565 25566 25567 25568 25569 25570 25571 25572 25573 25574 25575 25576 25577 25578 25579 25580 25581 25582 25583 25584 25585 25586 25587 25588 25589 25590 25591 25592 25593 25594 25595 25596 25597 25598 25599 25600 25601 25602 25603 25604 25605 25606 25607 25608 25609 25610 25611 25612 25613 25614 25615 25616 25617 25618 25619 25620 25621 25622 25623 25624 25625 25626 25627 25628 25629 25630 25631 25632 25633 25634 25635 25636 25637 25638 25639 25640 25641 25642 25643 25644 25645 25646 25647 25648 25649 25650 25651 25652 25653 25654 25655 25656 25657 25658 25659 25660 25661 25662 25663 25664 25665 25666 25667 25668 25669 25670 25671 25672 25673 25674 25675 25676 25677 25678 25679 25680 25681 25682 25683 25684 25685 25686 25687 25688 25689 25690 25691 25692 25693 25694 25695 25696 25697 25698 25699 25700 25701 25702 25703 25704 25705 25706 25707 25708 25709 25710 25711 25712 25713 25714 25715 25716 25717 25718 25719 25720 25721 25722 25723 25724 25725 25726 25727 25728 25729 25730 25731 25732 25733 25734 25735 25736 25737 25738 25739 25740 25741 25742 25743 25744 25745 25746 25747 25748 25749 25750 25751 25752 25753 25754 25755 25756 25757 25758 25759 25760 25761 25762 25763 25764 25765 25766 25767 25768 25769 25770 25771 25772 25773 25774 25775 25776 25777 25778 25779 25780 25781 25782 25783 25784 25785 25786 25787 25788 25789 25790 25791 25792 25793 25794 25795 25796 25797 25798 25799 25800 25801 25802 25803 25804 25805 25806 25807 25808 25809 25810 25811 25812 25813 25814 25815 25816 25817 25818 25819 25820 25821 25822 25823 25824 25825 25826 25827 25828 25829 25830 25831 25832 25833 25834 25835 25836 25837 25838 25839 25840 25841 25842 25843 25844 25845 25846 25847 25848 25849 25850 25851 25852 25853 25854 25855 25856 25857 25858 25859 25860 25861 25862 25863 25864 25865 25866 25867 25868 25869 25870 25871 25872 25873 25874 25875 25876 25877 25878 25879 25880 25881 25882 25883 25884 25885 25886 25887 25888 25889 25890 25891 25892 25893 25894 25895 25896 25897 25898 25899 25900 25901 25902 25903 25904 25905 25906 25907 25908 25909 25910 25911 25912 25913 25914 25915 25916 25917 25918 25919 25920 25921 25922 25923 25924 25925 25926 25927 25928 25929 25930 25931 25932 25933 25934 25935 25936 25937 25938 25939 25940 25941 25942 25943 25944 25945 25946 25947 25948 25949 25950 25951 25952 25953 25954 25955 25956 25957 25958 25959 25960 25961 25962 25963 25964 25965 25966 25967 25968 25969 25970 25971 25972 25973 25974 25975 25976 25977 25978 25979 25980 25981 25982 25983 25984 25985 25986 25987 25988 25989 25990 25991 25992 25993 25994 25995 25996 25997 25998 25999 26000 26001 26002 26003 26004 26005 26006 26007 26008 26009 26010 26011 26012 26013 26014 26015 26016 26017 26018 26019 26020 26021 26022 26023 26024 26025 26026 26027 26028 26029 26030 26031 26032 26033 26034 26035 26036 26037 26038 26039 26040 26041 26042 26043 26044 26045 26046 26047 26048 26049 26050 26051 26052 26053 26054 26055 26056 26057 26058 26059 26060 26061 26062 26063 26064 26065 26066 26067 26068 26069 26070 26071 26072 26073 26074 26075 26076 26077 26078 26079 26080 26081 26082 26083 26084 26085 26086 26087 26088 26089 26090 26091 26092 26093 26094 26095 26096 26097 26098 26099 26100 26101 26102 26103 26104 26105 26106 26107 26108 26109 26110 26111 26112 26113 26114 26115 26116 26117 26118 26119 26120 26121 26122 26123 26124 26125 26126 26127 26128 26129 26130 26131 26132 26133 26134 26135 26136 26137 26138 26139 26140 26141 26142 26143 26144 26145 26146 26147 26148 26149 26150 26151 26152 26153 26154 26155 26156 26157 26158 26159 26160 26161 26162 26163 26164 26165 26166 26167 26168 26169 26170 26171 26172 26173 26174 26175 26176 26177 26178 26179 26180 26181 26182 26183 26184 26185 26186 26187 26188 26189 26190 26191 26192 26193 26194 26195 26196 26197 26198 26199 26200 26201 26202 26203 26204 26205 26206 26207 26208 26209 26210 26211 26212 26213 26214 26215 26216 26217 26218 26219 26220 26221 26222 26223 26224 26225 26226 26227 26228 26229 26230 26231 26232 26233 26234 26235 26236 26237 26238 26239 26240 26241 26242 26243 26244 26245 26246 26247 26248 26249 26250 26251 26252 26253 26254 26255 26256 26257 26258 26259 26260 26261 26262 26263 26264 26265 26266 26267 26268 26269 26270 26271 26272 26273 26274 26275 26276 26277 26278 26279 26280 26281 26282 26283 26284 26285 26286 26287 26288 26289 26290 26291 26292 26293 26294 26295 26296 26297 26298 26299 26300 26301 26302 26303 26304 26305 26306 26307 26308 26309 26310 26311 26312 26313 26314 26315 26316 26317 26318 26319 26320 26321 26322 26323 26324 26325 26326 26327 26328 26329 26330 26331 26332 26333 26334 26335 26336 26337 26338 26339 26340 26341 26342 26343 26344 26345 26346 26347 26348 26349 26350 26351 26352 26353 26354 26355 26356 26357 26358 26359 26360 26361 26362 26363 26364 26365 26366 26367 26368 26369 26370 26371 26372 26373 26374 26375 26376 26377 26378 26379 26380 26381 26382 26383 26384 26385 26386 26387 26388 26389 26390 26391 26392 26393 26394 26395 26396 26397 26398 26399 26400 26401 26402 26403 26404 26405 26406 26407 26408 26409 26410 26411 26412 26413 26414 26415 26416 26417 26418 26419 26420 26421 26422 26423 26424 26425 26426 26427 26428 26429 26430 26431 26432 26433 26434 26435 26436 26437 26438 26439 26440 26441 26442 26443 26444 26445 26446 26447 26448 26449 26450 26451 26452 26453 26454 26455 26456 26457 26458 26459 26460 26461 26462 26463 26464 26465 26466 26467 26468 26469 26470 26471 26472 26473 26474 26475 26476 26477 26478 26479 26480 26481 26482 26483 26484 26485 26486 26487 26488 26489 26490 26491 26492 26493 26494 26495 26496 26497 26498 26499 26500 26501 26502 26503 26504 26505 26506 26507 26508 26509 26510 26511 26512 26513 26514 26515 26516 26517 26518 26519 26520 26521 26522 26523 26524 26525 26526 26527 26528 26529 26530 26531 26532 26533 26534 26535 26536 26537 26538 26539 26540 26541 26542 26543 26544 26545 26546 26547 26548 26549 26550 26551 26552 26553 26554 26555 26556 26557 26558 26559 26560 26561 26562 26563 26564 26565 26566 26567 26568 26569 26570 26571 26572 26573 26574 26575 26576 26577 26578 26579 26580 26581 26582 26583 26584 26585 26586 26587 26588 26589 26590 26591 26592 26593 26594 26595 26596 26597 26598 26599 26600 26601 26602 26603 26604 26605 26606 26607 26608 26609 26610 26611 26612 26613 26614 26615 26616 26617 26618 26619 26620 26621 26622 26623 26624 26625 26626 26627 26628 26629 26630 26631 26632 26633 26634 26635 26636 26637 26638 26639 26640 26641 26642 26643 26644 26645 26646 26647 26648 26649 26650 26651 26652 26653 26654 26655 26656 26657 26658 26659 26660 26661 26662 26663 26664 26665 26666 26667 26668 26669 26670 26671 26672 26673 26674 26675 26676 26677 26678 26679 26680 26681 26682 26683 26684 26685 26686 26687 26688 26689 26690 26691 26692 26693 26694 26695 26696 26697 26698 26699 26700 26701 26702 26703 26704 26705 26706 26707 26708 26709 26710 26711 26712 26713 26714 26715 26716 26717 26718 26719 26720 26721 26722 26723 26724 26725 26726 26727 26728 26729 26730 26731 26732 26733 26734 26735 26736 26737 26738 26739 26740 26741 26742 26743 26744 26745 26746 26747 26748 26749 26750 26751 26752 26753 26754 26755 26756 26757 26758 26759 26760 26761 26762 26763 26764 26765 26766 26767 26768 26769 26770 26771 26772 26773 26774 26775 26776 26777 26778 26779 26780 26781 26782 26783 26784 26785 26786 26787 26788 26789 26790 26791 26792 26793 26794 26795 26796 26797 26798 26799 26800 26801 26802 26803 26804 26805 26806 26807 26808 26809 26810 26811 26812 26813 26814 26815 26816 26817 26818 26819 26820 26821 26822 26823 26824 26825 26826 26827 26828 26829 26830 26831 26832 26833 26834 26835 26836 26837 26838 26839 26840 26841 26842 26843 26844 26845 26846 26847 26848 26849 26850 26851 26852 26853 26854 26855 26856 26857 26858 26859 26860 26861 26862 26863 26864 26865 26866 26867 26868 26869 26870 26871 26872 26873 26874 26875 26876 26877 26878 26879 26880 26881 26882 26883 26884 26885 26886 26887 26888 26889 26890 26891 26892 26893 26894 26895 26896 26897 26898 26899 26900 26901 26902 26903 26904 26905 26906 26907 26908 26909 26910 26911 26912 26913 26914 26915 26916 26917 26918 26919 26920 26921 26922 26923 26924 26925 26926 26927 26928 26929 26930 26931 26932 26933 26934 26935 26936 26937 26938 26939 26940 26941 26942 26943 26944 26945 26946 26947 26948 26949 26950 26951 26952 26953 26954 26955 26956 26957 26958 26959 26960 26961 26962 26963 26964 26965 26966 26967 26968 26969 26970 26971 26972 26973 26974 26975 26976 26977 26978 26979 26980 26981 26982 26983 26984 26985 26986 26987 26988 26989 26990 26991 26992 26993 26994 26995 26996 26997 26998 26999 27000 27001 27002 27003 27004 27005 27006 27007 27008 27009 27010 27011 27012 27013 27014 27015 27016 27017 27018 27019 27020 27021 27022 27023 27024 27025 27026 27027 27028 27029 27030 27031 27032 27033 27034 27035 27036 27037 27038 27039 27040 27041 27042 27043 27044 27045 27046 27047 27048 27049 27050 27051 27052 27053 27054 27056 27061 27065 27066 27067 27068 27069 27070 27071 27072 27073 27074 27075 27076 27077 27078 27079 27080 27081 27082 27083 27084 27085 27086 27087 27088 27089 27090 27091 27092 27093 27104 27105 27106 27107 27108 27109 27110 27111 27112 27113 27114 27115 27116 27117 27118 27119 27120 27121 27122 27123 27124 27125 27126 27127 27128 27129 27130 27131 27132 27145 27146 27147 27148 27149 27150 27151 27152 27153 27154 27155 27156 27157 27158 27159 27160 27161 27162 27163 27164 27165 27166 27167 27168 27169 27170 27171 27184 27185 27186 27187 27188 27189 27190 27191 27192 27193 27194 27195 27204 27205 27221 27222 27223 27224 27225 27255 27256 27257 27258 27259 27288 27289 27290 27291 27320 27321 27322 27323 27351 27352 27353 27354 27381 27382 27383 27384 27410 27411 27412 27438 27439 27440 27465 27466 27467 27491 27492 27493 27516 27517 27518 27540 27541 27542 27563 27564 27565 27585 27586 27587 27606 27607 27608 27626 27627 27628 27645 27646 27647 27663 27664 27665 27680 27681 27682 27696 27697 27698 27711 27712 27713 27725 27726 27727 27738 27739 27740 27750 27751 27752 27761 27762 27771 27772 27780 27788 27816 27817 27818 27819 27820 27821 27822 27823 27824 27825 27826 27827 27828 27829 27830 27831 27832 27833 27834 27835 27836 27837 27838 27839 27840 27841 27842 27843 27844 27845 27846 27847 27848 27849 27850 27851 27852 27853 27854 27855 27856 27857 27858 27859 27860 27861 27862 27863 27864 27865 27866 27867 27868 27869 27870 27871 27872 27873 27874 27875 27876 27877 27878 27879 27880 27881 27882 27883 27884 27885 27886 27887 27888 27889 27890 27891 27892 27893 27894 27895 27896 27897 27898 27899 27900 27901 27902 27903 27904 27905 27906 27907 27908 27909 27910 27911 27912 27913 27914 27915 27916 27917 27918 27919 27920 27921 27922 27927 27928 27929 27930 27931 27932 27933 27934 27935 27936 27937 27938 27939 27940 27941 27942 27943 27944 27945 27946 27947 27948 27949 27950 27951 27952 27953 27954 27955 27956 27957 27958 27959 27960 27961 27962 27963 27964 27965 27966 27967 27968 27969 27970 27971 27972 27973 27974 27975 27976 27981 27982 27983 27984 27985 27986 27987 27988 27989 27990 27991 27992 27993 27994 27995 27996 27997 27998 27999 28000 28001 28002 28003 28004 28005 28006 28007 28008 28009 28010 28011 28012 28013 28014 28015 28016 28017 28018 28019 28020 28021 28022 28023 28024 28025 28026 28027 28028 28029 28034 28035 28036 28037 28038 28039 28040 28041 28042 28043 28044 28045 28046 28047 28048 28049 28050 28051 28052 28053 28054 28055 28056 28057 28058 28059 28060 28061 28062 28063 28064 28065 28066 28067 28068 28069 28070 28071 28072 28073 28074 28075 28076 28077 28078 28079 28080 28081 28086 28087 28088 28089 28090 28091 28092 28093 28094 28095 28096 28097 28098 28099 28100 28101 28102 28103 28104 28105 28106 28107 28108 28109 28110 28111 28112 28113 28114 28115 28116 28117 28118 28119 28120 28121 28122 28123 28124 28125 28126 28127 28128 28129 28130 28131 28132 28137 28138 28139 28140 28141 28142 28143 28144 28145 28146 28147 28148 28149 28150 28151 28152 28153 28154 28155 28156 28157 28158 28159 28160 28161 28162 28163 28164 28165 28166 28167 28168 28169 28170 28171 28172 28173 28174 28175 28176 28177 28178 28179 28180 28181 28182 28187 28188 28189 28190 28191 28192 28193 28194 28195 28196 28197 28198 28199 28200 28201 28202 28203 28204 28205 28206 28207 28208 28209 28210 28211 28212 28213 28214 28215 28216 28217 28218 28219 28220 28221 28222 28223 28224 28225 28226 28227 28228 28229 28230 28231 28236 28237 28238 28239 28240 28241 28242 28243 28244 28245 28246 28247 28248 28249 28250 28251 28252 28253 28254 28255 28256 28257 28258 28259 28260 28261 28262 28263 28264 28265 28266 28267 28268 28269 28270 28271 28272 28273 28274 28275 28276 28277 28278 28279 28280 28284 28285 28286 28287 28288 28289 28290 28291 28292 28293 28294 28295 28296 28297 28298 28299 28300 28301 28302 28303 28304 28305 28306 28307 28308 28309 28310 28311 28312 28313 28314 28315 28316 28317 28318 28319 28320 28321 28322 28323 28324 28325 28326 28327 28331 28332 28333 28334 28335 28336 28337 28338 28339 28340 28341 28342 28343 28344 28345 28346 28347 28348 28349 28350 28351 28352 28353 28354 28355 28356 28357 28358 28359 28360 28361 28362 28363 28364 28365 28366 28367 28368 28369 28370 28371 28372 28373 28374 28377 28378 28379 28380 28381 28382 28383 28384 28385 28386 28387 28388 28389 28390 28391 28392 28393 28394 28395 28396 28397 28398 28399 28400 28401 28402 28403 28404 28405 28406 28407 28408 28409 28410 28411 28412 28413 28414 28415 28416 28417 28418 28419 28420 28422 28423 28424 28425 28426 28427 28428 28429 28430 28431 28432 28433 28434 28435 28436 28437 28438 28439 28440 28441 28442 28443 28444 28445 28446 28447 28448 28449 28450 28451 28452 28453 28454 28455 28456 28457 28458 28459 28460 28461 28462 28463 28464 28465 28466 28467 28468 28469 28470 28471 28472 28473 28474 28475 28476 28477 28478 28479 28480 28481 28482 28483 28484 28485 28486 28487 28488 28489 28490 28491 28492 28493 28494 28495 28496 28497 28498 28499 28500 28501 28502 28503 28504 28505 28506 28507 28508 28509 28510 28511 28512 28513 28514 28515 28516 28517 28518 28519 28520 28521 28522 28523 28524 28525 28526 28527 28528 28529 28530 28531 28532 28533 28534 28535 28536 28537 28538 28539 28540 28541 28542 28543 28544 28545 28546 28547 28548 28549 28550 28551 28552 28553 28554 28555 28556 28557 28558 28559 28560 28561 28562 28563 28564 28565 28566 28567 28568 28569 28570 28571 28572 28573 28574 28575 28576 28577 28578 28579 28580 28581 28582 28583 28584 28585 28586 28587 28588 28589 28590 28591 28592 28593 28594 28595 28596 28597 28598 28599 28600 28601 28602 28603 28604 28605 28606 28607 28608 28609 28610 28611 28612 28613 28614 28615 28616 28617 28618 28619 28620 28621 28622 28623 28624 28625 28626 28627 28628 28629 28630 28631 28632 28633 28634 28635 28636 28637 28638 28639 28640 28641 28642 28643 28644 28645 28646 28647 28648 28649 28650 28651 28652 28653 28654 28655 28656 28657 28658 28659 28660 28661 28662 28663 28664 28665 28666 28667 28668 28669 28670 28671 28672 28673 28674 28675 28676 28677 28678 28679 28680 28681 28682 28683 28684 28685 28686 28687 28688 28689 28690 28691 28692 28693 28694 28695 28696 28697 28698 28699 28700 28701 28702 28703 28704 28705 28706 28707 28708 28709 28710 28711 28712 28713 28714 28715 28716 28717 28718 28719 28720 28721 28722 28723 28724 28725 28726 28727 28728 28729 28730 28731 28732 28733 28734 28735 28736 28737 28738 28739 28740 28741 28742 28743 28744 28745 28746 28747 28748 28749 28750 28751 28752 28753 28754 28755 28756 28757 28758 28759 28760 28761 28762 28763 28764 28765 28766 28767 28768 28769 28770 28771 28772 28773 28774 28775 28776 28777 28778 28779 28780 28781 28782 28783 28784 28785 28786 28787 28788 28789 28790 28791 28792 28793 28794 28795 28796 28797 28798 28799 28800 28801 28802 28803 28804 28805 28806 28807 28808 28809 28810 28811 28812 28813 28814 28815 28816 28817 28818 28819 28820 28821 28822 28823 28824 28825 28826 28827 28828 28829 28830 28831 28832 28833 28834 28835 28836 28837 28838 28839 28840 28841 28842 28843 28844 28845 28846 28847 28848 28849 28850 28851 28852 28853 28854 28855 28856 28857 28858 28859 28860 28861 28862 28863 28864 28865 28866 28867 28868 28869 28870 28871 28872 28873 28874 28875 28876 28877 28878 28879 28880 28881 28882 28883 28884 28885 28886 28887 28888 28889 28890 28891 28892 28893 28894 28895 28896 28897 28898 28899 28900 28901 28902 28903 28904 28905 28906 28907 28908 28909 28910 28911 28912 28913 28914 28915 28916 28917 28918 28919 28920 28921 28922 28923 28924 28925 28926 28927 28928 28929 28930 28931 28932 28933 28934 28935 28936 28937 28938 28939 28940 28941 28942 28943 28944 28945 28946 28947 28948 28949 28950 28951 28952 28953 28954 28955 28956 28957 28958 28959 28960 28961 28962 28963 28964 28965 28966 28967 28968 28969 28970 28971 28972 28973 28974 28975 28976 28977 28978 28979 28980 28981 28982 28983 28984 28985 28986 28987 28988 28989 28990 28991 28992 28993 28994 28995 28996 28997 28998 28999 29000 29001 29002 29003 29004 29005 29006 29007 29008 29009 29010 29011 29012 29013 29014 29015 29016 29017 29018 29019 29020 29021 29022 29023 29024 29025 29026 29027 29028 29029 29030 29031 29032 29033 29034 29035 29036 29037 29038 29039 29040 29041 29042 29043 29044 29045 29046 29047 29048 29049 29050 29051 29052 29053 29054 29055 29056 29057 29058 29059 29060 29061 29062 29063 29064 29065 29066 29067 29068 29069 29070 29071 29072 29073 29074 29075 29076 29077 29078 29079 29080 29081 29082 29083 29084 29085 29086 29087 29088 29089 29090 29091 29092 29093 29094 29095 29096 29097 29098 29099 29100 29101 29102 29103 29104 29105 29106 29107 29108 29109 29110 29111 29112 29113 29114 29115 29116 29117 29118 29119 29120 29121 29122 29123 29124 29125 29126 29127 29128 29129 29130 29131 29132 29133 29134 29135 29136 29137 29138 29139 29140 29141 29142 29143 29144 29145 29146 29147 29148 29149 29150 29151 29152 29153 29154 29155 29156 29157 29158 29159 29160 29161 29162 29163 29164 29165 29166 29167 29168 29169 29170 29171 29172 29173 29174 29175 29176 29177 29178 29179 29180 29181 29182 29183 29184 29185 29186 29187 29188 29189 29190 29191 29192 29193 29194 29195 29196 29197 29198 29199 29200 29201 29202 29203 29204 29205 29206 29207 29208 29209 29210 29211 29212 29213 29214 29215 29216 29217 29218 29219 29220 29221 29222 29223 29224 29225 29226 29227 29228 29229 29230 29231 29232 29233 29234 29235 29236 29237 29238 29239 29240 29241 29242 29243 29244 29245 29246 29247 29248 29249 29250 29251 29252 29253 29254 29255 29256 29257 29258 29259 29260 29261 29262 29263 29264 29265 29266 29267 29268 29269 29270 29271 29272 29273 29274 29275 29276 29277 29278 29279 29280 29281 29282 29283 29284 29285 29286 29287 29288 29289 29290 29291 29292 29293 29294 29295 29296 29297 29298 29299 29300 29301 29302 29303 29304 29305 29306 29307 29308 29309 29310 29311 29312 29313 29314 29315 29316 29317 29318 29319 29320 29321 29322 29323 29324 29325 29326 29327 29328 29329 29330 29331 29332 29333 29334 29335 29336 29337 29338 29339 29340 29341 29342 29343 29344 29345 29346 29347 29348 29349 29350 29351 29352 29353 29354 29355 29356 29357 29358 29359 29360 29361 29362 29363 29364 29365 29366 29367 29368 29369 29370 29371 29372 29373 29374 29375 29376 29377 29378 29379 29380 29381 29382 29383 29384 29385 29386 29387 29388 29389 29390 29391 29392 29393 29394 29395 29396 29397 29398 29399 29400 29401 29402 29403 29404 29405 29406 29407 29408 29409 29410 29411 29412 29413 29414 29415 29416 29417 29418 29419 29420 29421 29422 29423 29424 29425 29426 29427 29428 29429 29430 29431 29432 29433 29434 29435 29436 29437 29438 29439 29440 29441 29442 29443 29444 29445 29446 29447 29448 29449 29450 29451 29452 29453 29454 29455 29456 29457 29458 29459 29460 29461 29462 29463 29464 29465 29466 29467 29468 29469 29470 29471 29472 29473 29474 29475 29476 29477 29478 29479 29480 29481 29482 29483 29484 29485 29486 29487 29488 29489 29490 29491 29492 29493 29494 29495 29496 29497 29498 29499 29500 29501 29502 29503 29504 29505 29506 29507 29508 29509 29510 29511 29512 29513 29514 29515 29516 29517 29518 29519 29520 29521 29522 29523 29524 29525 29526 29527 29528 29529 29530 29531 29532 29533 29534 29535 29536 29537 29538 29539 29540 29541 29542 29543 29544 29545 29546 29547 29548 29549 29550 29551 29552 29553 29554 29555 29556 29557 29558 29559 29560 29561 29562 29563 29564 29565 29566 29567 29568 29569 29570 29571 29572 29573 29574 29575 29576 29577 29578 29579 29580 29581 29582 29583 29584 29585 29586 29587 29588 29589 29590 29591 29592 29593 29594 29595 29596 29597 29598 29599 29600 29601 29602 29603 29604 29605 29606 29607 29608 29609 29610 29611 29612 29613 29614 29615 29616 29617 29618 29619 29620 29621 29622 29623 29624 29625 29626 29627 29628 29629 29630 29631 29632 29633 29634 29635 29636 29637 29638 29639 29640 29641 29642 29643 29644 29645 29646 29647 29648 29649 29650 29651 29652 29653 29654 29655 29656 29657 29658 29659 29660 29661 29662 29663 29664 29665 29666 29667 29668 29669 29670 29671 29672 29673 29674 29675 29676 29677 29678 29679 29680 29681 29682 29683 29684 29685 29686 29687 29688 29689 29690 29691 29692 29693 29694 29695 29696 29697 29698 29699 29700 29701 29702 29703 29704 29705 29706 29707 29708 29709 29710 29711 29712 29713 29714 29715 29716 29717 29718 29719 29720 29721 29722 29723 29724 29725 29726 29727 29728 29729 29730 29731 29732 29733 29734 29735 29736 29737 29738 29739 29740 29741 29742 29743 29744 29745 29746 29747 29748 29749 29750 29751 29752 29753 29754 29755 29756 29757 29758 29759 29760 29761 29762 29763 29764 29765 29766 29767 29768 29769 29770 29771 29772 29773 29774 29775 29776 29777 29778 29779 29780 29781 29782 29783 29784 29785 29786 29787 29788 29789 29790 29791 29792 29793 29794 29795 29796 29797 29798 29799 29800 29801 29802 29803 29804 29805 29806 29807 29808 29809 29810 29811 29812 29813 29814 29815 29816 29817 29818 29819 29820 29821 29822 29823 29824 29825 29826 29827 29828 29829 29830 29831 29832 29833 29834 29835 29836 29837 29838 29839 29840 29841 29842 29843 29844 29845 29846 29847 29848 29849 29850 29851 29852 29853 29854 29855 29856 29857 29858 29859 29860 29861 29862 29863 29864 29865 29866 29867 29868 29869 29870 29871 29872 29873 29874 29875 29876 29877 29878 29879 29880 29881 29882 29883 29884 29885 29886 29887 29888 29889 29890 29891 29892 29893 29894 29895 29896 29897 29898 29899 29900 29901 29902 29903 29904 29905 29906 29907 29908 29909 29910 29911 29912 29913 29914 29915 29916 29917 29918 29919 29920 29921 29922 29923 29924 29925 29926 29927 29928 29929 29930 29931 29932 29933 29934 29935 29936 29937 29938 29939 29940 29941 29942 29943 29944 29945 29946 29947 29948 29949 29950 29951 29952 29953 29954 29955 29956 29957 29958 29959 29960 29961 29962 29963 29964 29965 29966 29967 29968 29969 29970 29971 29972 29973 29974 29975 29976 29977 29978 29979 29980 29981 29982 29983 29984 29985 29986 29987 29988 29989 29990 29991 29992 29993 29994 29995 29996 29997 29998 29999 30000 30001 30002 30003 30004 30005 30006 30007 30008 30009 30010 30011 30012 30013 30014 30015 30016 30017 30018 30019 30020 30021 30022 30023 30024 30025 30026 30027 30028 30029 30030 30031 30032 30033 30034 30035 30036 30037 30038 30039 30040 30041 30042 30043 30044 30045 30046 30047 30048 30049 30050 30051 30052 30053 30054 30055 30056 30057 30058 30059 30060 30061 30062 30063 30064 30065 30066 30067 30068 30069 30070 30071 30072 30073 30074 30075 30076 30077 30078 30079 30080 30081 30082 30083 30084 30085 30086 30087 30088 30089 30090 30091 30092 30093 30094 30095 30096 30097 30098 30099 30100 30101 30102 30103 30104 30105 30106 30107 30108 30109 30110 30111 30112 30113 30114 30115 30116 30117 30118 30119 30120 30121 30122 30123 30124 30125 30126 30127 30128 30129 30130 30131 30132 30133 30134 30135 30136 30137 30138 30139 30140 30141 30142 30143 30144 30145 30146 30147 30148 30149 30150 30151 30152 30153 30154 30155 30156 30157 30158 30159 30160 30161 30162 30163 30164 30165 30166 30167 30168 30169 30170 30171 30172 30173 30174 30175 30176 30177 30178 30179 30180 30181 30182 30183 30184 30185 30186 30187 30188 30189 30190 30191 30192 30193 30194 30195 30196 30197 30198 30199 30200 30201 30202 30203 30204 30205 30206 30207 30208 30209 30210 30211 30212 30213 30214 30215 30216 30217 30218 30219 30220 30221 30222 30223 30224 30225 30226 30227 30228 30229 30230 30231 30232 30233 30234 30235 30236 30237 30238 30239 30240 30241 30242 30243 30244 30245 30246 30247 30248 30249 30250 30251 30252 30253 30254 30255 30256 30257 30258 30259 30260 30261 30262 30263 30264 30265 30266 30267 30268 30269 30270 30271 30272 30273 30274 30275 30276 30277 30278 30279 30280 30281 30282 30283 30284 30285 30286 30287 30288 30289 30290 30291 30292 30293 30294 30295 30296 30297 30298 30299 30300 30301 30302 30303 30304 30305 30306 30307 30308 30309 30310 30311 30312 30313 30314 30315 30316 30317 30318 30319 30320 30321 30322 30323 30324 30325 30326 30327 30328 30329 30330 30331 30332 30333 30334 30335 30336 30337 30338 30339 30340 30341 30342 30343 30344 30345 30346 30347 30348 30349 30350 30351 30352 30353 30354 30355 30356 30357 30358 30359 30360 30361 30362 30363 30364 30365 30366 30367 30368 30369 30370 30371 30372 30373 30374 30375 30376 30377 30378 30379 30380 30381 30382 30383 30384 30385 30386 30387 30388 30389 30390 30391 30392 30393 30394 30395 30396 30397 30398 30399 30400 30401 30402 30403 30404 30405 30406 30407 30408 30409 30410 30411 30412 30413 30414 30415 30416 30417 30418 30419 30420 30421 30422 30423 30424 30425 30426 30427 30428 30429 30430 30431 30432 30433 30434 30435 30436 30437 30438 30439 30440 30441 30442 30443 30444 30445 30446 30447 30448 30449 30450 30451 30452 30453 30454 30455 30456 30457 30458 30459 30460 30461 30462 30463 30464 30465 30466 30467 30468 30469 30470 30471 30472 30473 30474 30475 30476 30477 30478 30479 30480 30481 30482 30483 30484 30485 30486 30487 30488 30489 30490 30491 30492 30493 30494 30495 30496 30497 30498 30499 30500 30501 30502 30503 30504 30505 30506 30507 30508 30509 30510 30511 30512 30513 30514 30515 30516 30517 30518 30519 30520 30521 30522 30523 30524 30525 30526 30527 30528 30529 30530 30531 30532 30533 30534 30535 30536 30537 30538 30539 30540 30541 30542 30543 30544 30545 30546 30547 30548 30549 30550 30551 30552 30553 30554 30555 30556 30557 30558 30559 30560 30561 30562 30563 30564 30565 30566 30567 30568 30569 30570 30571 30572 30573 30574 30575 30576 30577 30578 30579 30580 30581 30582 30583 30584 30585 30586 30587 30588 30589 30590 30591 30592 30593 30594 30595 30596 30597 30598 30599 30600 30601 30602 30603 30604 30605 30606 30607 30608 30609 30610 30611 30612 30613 30614 30615 30616 30617 30618 30619 30620 30621 30622 30623 30624 30625 30626 30627 30628 30629 30630 30631 30632 30633 30634 30635 30636 30637 30638 30639 30640 30641 30642 30643 30644 30645 30646 30647 30648 30649 30650 30651 30652 30653 30654 30655 30656 30657 30658 30659 30660 30661 30662 30663 30664 30665 30666 30667 30668 30669 30670 30671 30672 30673 30674 30675 30676 30677 30678 30679 30680 30681 30682 30683 30684 30685 30686 30687 30688 30689 30690 30691 30692 30693 30694 30695 30696 30697 30698 30699 30700 30701 30702 30703 30704 30705 30706 30707 30708 30709 30710 30711 30712 30713 30714 30715 30716 30717 30718 30719 30720 30721 30722 30723 30724 30725 30726 30727 30728 30729 30730 30731 30732 30733 30734 30735 30736 30737 30738 30739 30740 30741 30742 30743 30744 30745 30746 30747 30748 30749 30750 30751 30752 30753 30754 30755 30756 30757 30758 30759 30760 30761 30762 30763 30764 30765 30766 30767 30768 30769 30770 30771 30772 30773 30774 30775 30776 30777 30778 30779 30780 30781 30782 30783 30784 30785 30786 30787 30788 30789 30790 30791 30792 30793 30794 30795 30796 30797 30798 30799 30800 30801 30802 30803 30804 30805 30806 30807 30808 30809 30810 30811 30812 30813 30814 30815 30816 30817 30818 30819 30820 30821 30822 30823 30824 30825 30826 30827 30828 30829 30830 30831 30832 30833 30834 30835 30836 30837 30838 30839 30840 30841 30842 30843 30844 30845 30846 30847 30848 30849 30850 30851 30852 30853 30854 30855 30856 30857 30858 30859 30860 30861 30862 30863 30864 30865 30866 30867 30868 30869 30870 30871 30872 30873 30874 30875 30876 30877 30878 30879 30880 30881 30882 30883 30884 30885 30886 30887 30888 30889 30890 30891 30892 30893 30894 30895 30896 30897 30898 30899 30900 30901 30902 30903 30904 30905 30906 30907 30908 30909 30910 30911 30912 30913 30914 30915 30916 30917 30918 30919 30920 30921 30922 30923 30924 30925 30926 30927 30928 30929 30930 30931 30932 30933 30934 30935 30936 30937 30938 30939 30940 30941 30942 30943 30944 30945 30946 30947 30948 30949 30950 30951 30952 30953 30954 30955 30956 30957 30958 30959 30960 30961 30962 30963 30964 30965 30966 30967 30968 30969 30970 30971 30972 30973 30974 30975 30976 30977 30978 30979 30980 30981 30982 30983 30984 30985 30986 30987 30988 30989 30990 30991 30992 30993 30994 30995 30996 30997 30998 30999 31000 31001 31002 31003 31004 31005 31006 31007 31008 31009 31010 31011 31012 31013 31014 31015 31016 31017 31018 31019 31020 31021 31022 31023 31024 31025 31026 31027 31028 31029 31030 31031 31032 31033 31034 31035 31036 31037 31038 31039 31040 31041 31042 31043 31044 31045 31046 31047 31048 31049 31050 31051 31052 31053 31054 31055 31056 31057 31058 31059 31060 31061 31062 31063 31064 31065 31066 31067 31068 31069 31070 31071 31072 31073 31074 31075 31076 31077 31078 31079 31080 31081 31082 31083 31084 31085 31086 31087 31088 31089 31090 31091 31092 31093 31094 31095 31096 31097 31098 31099 31100 31101 31102 31103 31104 31105 31106 31107 31108 31109 31110 31111 31112 31113 31114 31115 31116 31117 31118 31119 31120 31121 31122 31123 31124 31125 31126 31127 31128 31129 31130 31131 31132 31133 31134 31135 31136 31137 31138 31139 31140 31141 31142 31143 31144 31145 31146 31147 31148 31149 31150 31151 31152 31153 31154 31155 31156 31157 31158 31159 31160 31161 31162 31163 31164 31165 31166 31167 31168 31169 31170 31171 31172 31173 31174 31175 31176 31177 31178 31179 31180 31181 31182 31183 31184 31185 31186 31187 31188 31189 31190 31191 31192 31193 31194 31195 31196 31197 31198 31199 31200 31201 31202 31203 31204 31205 31206 31207 31208 31209 31210 31211 31212 31213 31214 31215 31216 31217 31218 31219 31220 31221 31222 31223 31224 31225 31226 31227 31228 31229 31230 31231 31232 31233 31234 31235 31236 31237 31238 31239 31240 31241 31242 31243 31244 31245 31246 31247 31248 31249 31250 31251 31252 31253 31254 31255 31256 31257 31258 31259 31260 31261 31262 31263 31264 31265 31266 31267 31268 31269 31270 31271 31272 31273 31274 31275 31276 31277 31278 31279 31280 31281 31282 31283 31284 31285 31286 31287 31288 31289 31290 31291 31292 31293 31294 31295 31296 31297 31298 31299 31300 31301 31302 31303 31304 31305 31306 31307 31308 31309 31310 31311 31312 31313 31314 31315 31316 31317 31318 31319 31320 31321 31322 31323 31324 31325 31326 31327 31328 31329 31330 31331 31332 31333 31334 31335 31336 31337 31338 31339 31340 31341 31342 31343 31344 31345 31346 31347 31348 31349 31350 31351 31352 31353 31354 31355 31356 31357 31358 31359 31360 31361 31362 31363 31364 31365 31366 31367 31368 31369 31370 31371 31372 31373 31374 31375 31376 31377 31378 31379 31380 31381 31382 31383 31384 31385 31386 31387 31388 31389 31390 31391 31392 31393 31394 31395 31396 31397 31398 31399 31400 31401 31402 31403 31404 31405 31406 31407 31408 31409 31410 31411 31412 31413 31414 31415 31416 31417 31418 31419 31420 31421 31422 31423 31424 31425 31426 31427 31428 31429 31430 31431 31432 31433 31434 31435 31436 31437 31438 31439 31440 31441 31442 31443 31444 31445 31446 31447 31448 31449 31450 31451 31452 31453 31454 31455 31456 31457 31458 31459 31460 31461 31462 31463 31464 31465 31466 31467 31468 31469 31470 31471 31472 31473 31474 31475 31476 31477 31478 31479 31480 31481 31482 31483 31484 31485 31486 31487 31488 31489 31490 31491 31492 31493 31494 31495 31496 31497 31498 31499 31500 31501 31502 31503 31504 31505 31506 31507 31508 31509 31510 31511 31512 31513 31514 31515 31516 31517 31518 31519 31520 31521 31522 31523 31524 31525 31526 31527 31528 31529 31530 31531 31532 31533 31534 31535 31536 31537 31538 31539 31540 31541 31542 31543 31544 31545 31546 31547 31548 31549 31550 31551 31552 31553 31554 31555 31556 31557 31558 31559 31560 31561 31562 31563 31564 31565 31566 31567 31568 31569 31570 31571 31572 31573 31574 31575 31576 31577 31578 31579 31580 31581 31582 31583 31584 31585 31586 31587 31588 31589 31590 31591 31592 31593 31594 31595 31596 31597 31598 31599 31600 31601 31602 31603 31604 31605 31606 31607 31608 31609 31610 31611 31612 31613 31614 31615 31616 31617 31618 31619 31620 31621 31622 31623 31624 31625 31626 31627 31628 31629 31630 31631 31632 31633 31634 31635 31636 31637 31638 31639 31640 31641 31642 31643 31644 31645 31646 31647 31648 31649 31650 31651 31652 31653 31654 31655 31656 31657 31658 31659 31660 31661 31662 31663 31664 31665 31666 31667 31668 31669 31670 31671 31672 31673 31674 31675 31676 31677 31678 31679 31680 31681 31682 31683 31684 31685 31686 31687 31688 31689 31690 31691 31692 31693 31694 31695 31696 31697 31698 31699 31700 31701 31702 31703 31704 31705 31706 31707 31708 31709 31710 31711 31712 31713 31714 31715 31716 31717 31718 31719 31720 31721 31722 31723 31724 31725 31726 31727 31728 31729 31730 31731 31732 31733 31734 31735 31736 31737 31738 31739 31740 31741 31742 31743 31744 31745 31746 31747 31748 31749 31750 31751 31752 31753 31754 31755 31756 31757 31758 31759 31760 31761 31762 31763 31764 31765 31766 31767 31768 31769 31770 31771 31772 31773 31774 31775 31776 31777 31778 31779 31780 31781 31782 31783 31784 31785 31786 31787 31788 31789 31790 31791 31792 31793 31794 31795 31796 31797 31798 31799 31800 31801 31802 31803 31804 31805 31806 31807 31808 31809 31810 31811 31812 31813 31814 31815 31816 31817 31818 31819 31820 31821 31822 31823 31824 31825 31826 31827 31828 31829 31830 31831 31832 31833 31834 31835 31836 31837 31838 31839 31840 31841 31842 31843 31844 31845 31846 31847 31848 31849 31850 31851 31852 31853 31854 31855 31856 31857 31858 31859 31860 31861 31862 31863 31864 31865 31866 31867 31868 31869 31870 31871 31872 31873 31874 31875 31876 31877 31878 31879 31880 31881 31882 31883 31884 31885 31886 31887 31888 31889 31890 31891 31892 31893 31894 31895 31896 31897 31898 31899 31900 31901 31902 31903 31904 31905 31906 31907 31908 31909 31910 31911 31912 31913 31914 31915 31916 31917 31918 31919 31920 31921 31922 31923 31924 31925 31926 31927 31928 31929 31930 31931 31932 31933 31934 31935 31936 31937 31938 31939 31940 31941 31942 31943 31944 31945 31946 31947 31948 31949 31950 31951 31952 31953 31954 31955 31956 31957 31958 31959 31960 31961 31962 31963 31964 31965 31966 31967 31968 31969 31970 31971 31972 31973 31974 31975 31976 31977 31978 31979 31980 31981 31982 31983 31984 31985 31986 31987 31988 31989 31990 31991 31992 31993 31994 31995 31996 31997 31998 31999 32000 32001 32002 32003 32004 32005 32006 32007 32008 32009 32010 32011 32012 32013 32014 32015 32016 32017 32018 32019 32020 32021 32022 32023 32024 32025 32026 32027 32028 32029 32030 32031 32032 32033 32034 32035 32036 32037 32038 32039 32040 32041 32042 32043 32044 32045 32046 32047 32048 32049 32050 32051 32052 32053 32054 32055 32056 32057 32058 32059 32060 32061 32062 32063 32064 32065 32066 32067 32068 32069 32070 32071 32072 32073 32074 32075 32076 32077 32078 32079 32080 32081 32082 32083 32084 32085 32086 32087 32088 32089 32090 32091 32092 32093 32094 32095 32096 32097 32098 32099 32100 32101 32102 32103 32104 32105 32106 32107 32108 32109 32110 32111 32112 32113 32114 32115 32116 32117 32118 32119 32120 32121 32122 32123 32124 32125 32126 32127 32128 32129 32130 32131 32132 32133 32134 32135 32136 32137 32138 32139 32140 32141 32142 32143 32144 32145 32146 32147 32148 32149 32150 32151 32152 32153 32154 32155 32156 32157 32158 32159 32160 32161 32162 32163 32164 32165 32166 32167 32168 32169 32170 32171 32172 32173 32174 32175 32176 32177 32178 32179 32180 32181 32182 32183 32184 32185 32186 32187 32188 32189 32190 32191 32192 32193 32194 32195 32196 32197 32198 32199 32200 32201 32202 32203 32204 32205 32206 32207 32208 32209 32210 32211 32212 32213 32214 32215 32216 32217 32218 32219 32220 32221 32222 32223 32224 32225 32226 32227 32228 32229 32230 32231 32232 32233 32234 32235 32236 32237 32238 32239 32240 32241 32242 32243 32244 32245 32246 32247 32248 32249 32250 32251 32252 32253 32254 32255 32256 32257 32258 32259 32260 32261 32262 32263 32264 32265 32266 32267 32268 32269 32270 32271 32272 32273 32274 32275 32276 32277 32278 32279 32280 32281 32282 32283 32284 32285 32286 32287 32288 32289 32290 32291 32292 32293 32294 32295 32296 32297 32298 32299 32300 32301 32302 32303 32304 32305 32306 32307 32308 32309 32310 32311 32312 32313 32314 32315 32316 32317 32318 32319 32320 32321 32322 32323 32324 32325 32326 32327 32328 32329 32330 32331 32332 32333 32334 32335 32336 32337 32338 32339 32340 32341 32342 32343 32344 32345 32346 32347 32348 32349 32350 32351 32352 32353 32354 32355 32356 32357 32358 32359 32360 32361 32362 32363 32364 32365 32366 32367 32368 32369 32370 32371 32372 32373 32374 32375 32376 32377 32378 32379 32380 32381 32382 32383 32384 32385 32386 32387 32388 32389 32390 32391 32392 32393 32394 32395 32396 32397 32398 32399 32400 32401 32402 32403 32404 32405 32406 32407 32408 32409 32410 32411 32412 32413 32414 32415 32416 32417 32418 32419 32420 32421 32422 32423 32424 32425 32426 32427 32428 32429 32430 32431 32432 32433 32434 32435 32436 32437 32438 32439 32440 32441 32442 32443 32444 32445 32446 32447 32448 32449 32450 32451 32452 32453 32454 32455 32456 32457 32458 32459 32460 32461 32462 32463 32464 32465 32466 32467 32468 32469 32470 32471 32472 32473 32474 32475 32476 32477 32478 32479 32480 32481 32482 32483 32484 32485 32486 32487 32488 32489 32490 32491 ‰2©?U‰L@ÅØ¯?? @B´?ÑA@É;Ÿ?†+O@¬e½?&Õ @Ž$¢?Cæ2@«4›? %@l±±?²×%@P¡?chG@m×µ?e¥A@\Ø“?9L‰@ ]ª?'óW@àˆ®?[W@«"¶?à=@õÀÁ?¬3!@ŒÐ?z¶@LTÜ?ëùé?Ü?Jü? Ù?xž@!Ø?2‡@9/Ô?fk @—ìÌ?â§è?€]Â?q»¿?æ4»?_ã?”½?‘–?¿?)“?)‚Â?ѯ¥?ËtÎ?¥½?Lhª?RÇR@5¬?à³Y@¶x®?kI\@r5±?é%\@ ³?—QZ@aQ´?Ñ X@ßð´?LºU@=µ?ã T@ˆû´?üÒS@/P´?>fW@cé²?Ù Z@…²?þ4^@/k±?–í[@ ¯?´DX@.Å®?=‰N@Ø;±?\fA@{í´?<;@µ?íB@b ´?ž ?@¸³?,¿>@î[±?nG@‹B°?·ìJ@é6°?:N@7°?]1O@ù6°?Ç8J@4°?°"D@‘z¯?I@@Áú¯?¥8@pЯ?c#@È?²?ö‰@H´?Ä©@z¶?‘@‘h¹?ø´ @ ·?–‹@ãÍ·?¢@ˆ¸?Aô?#Û¹?A ë?/ ¼?…9ð?ý¾?.€ð?šg¿?Þì?Hn¾?Ðñò?!V½?‚›ù?ä}¼?[ñ?š/Á?ø¤ê?;$Ì?c¹ë?¼ÛÎ?Üö@{Ì?{@9mÅ?™ @fá¿?ë*@Œ›½?ëû1@èL¼?ãq)@pqº?‚²"@ÁÒ·?z£@¿Éµ?‘|@£Œ²?ïJ@~°?mÉ@‚÷¨?—þ@Lµ©?_%@ÿþ­?¿Ö/@m·?m{(@ÖeÉ?2 @ÔÁÜ?à^ü?FÜ?'ÇÜ?Ø,Ê?Ÿ@÷Ô·?Ë¡%@”´­?úmU@¶¬?ñb@8C¬?Ñ;Q@ôh­?åA@Ú£®?Ìè5@aÖ®?x<.@Û£¯?‹š(@¸°?«&@?±?¸¾%@;õ«?k»Y@¸±?P@Úº¹?«c8@WÞÆ?h-@èØ?ú?ôÜ?(õ?¦pÙ? @›Ù?nÖ@n*Ö?0’@‘ÒÏ?î?—mÇ?É»?–Á?Ñx?ߪ¿?Fa—?C9Ä?ËÕ›?^åÁ?9à?fÜ?üòÆ?%f¯?þÒU@Ô³? bK@‰Ã¼?êf9@8ŠÍ?W@S¾Ú??“ø?p Ù?îù@Ûߨ?üQ@ñØ?û@?–Ò?„¼ý?¥òÈ?óZÄ?Ä?î¡?LÆ?6*”?>×Ë?MŸ˜?L×?ýµ?:î±?ÏêW@ïø¶?aÆK@ÞiÁ?úÆ6@3OÒ?Wq@]Ù?… @# Ù?ÍÛ@C”Ù?“k@V®Õ?Ë @ýyÌ?UYÔ?JÅ?Ä?¤?õ&Ä?…?í¿Á?P¯‘?M7Ø?ƒ5«?f«³?ƒØU@¼Õ¹? ZN@{Ç?å0@A4Ô?Ž@Ø%Ù?fQ@öàÚ?¼?ð¦>@ùìÉ? ±!@bìØ? ×@²öÛ?®Z!@1dÞ?I`%@éÊÔ?Ðù?ÜõÊ?×j²?XÓÅ?; ¡?ú[ç?ÅS×?æ]»?ñDC@”™È?D®"@йÚ?Z`@ûÂÝ?ж!@3ëÝ?ß™@t¢Ò?¦ì? ‰Ì?ù±?j È?p®?j©¸?NE@ æÆ?>U#@ËÙ?/Ü @DÁÜ?Ìt!@…pÞ?:^"@íÔ?×î?74Ñ?´?TÐ?ÍÉ?Ó¶?E¥N@*’Â?ú -@–‚×?u‹@ÚžÜ?J°!@õÞ?]©$@ -Ô?˜dñ?™Õ?uÐÀ?¡Þ?•u×?¹9µ?{ìU@Mñ¾?·Œ;@9ªÔ?v¸@“ÚÜ?Á$@/ß?ñ¢&@M‹Ô?9Iù?M†Õ?×ÓÊ?ý$å?ã®î?±³?¿\@»òº?ØæI@M¶Î?8I!@QÛ?T&@$ß?üá+@ÝÖ?ÙØ@›ÄÓ?ÿ^Ö?9ÁÜ?bÆó?N8²?pV]@¾”¸?éT@¨)È? ú.@n2Ù??®*@ÁòÞ?Å1@­ÙØ?„± @pkÕ?Cåá?ßq×?4é?Cµ±?sQ@¢¶?6ÈW@p¥À?WÉ@@Z–Õ?Ù*@‰Ý?ê¶6@’·Ù?kZ@€¦Î?‘}ì?ŸVÐ?ž Ü?Pƒè?Tèô?vˆµ?®>D@¬·?ØL@´l½?38K@ hÎ?ñ£0@ŒÑÛ?:9@ZåÛ?ë¨'@;óÒ?Š@°Ì?|6Û?°²Õ?Œ¦Ö?R;¶?ìPG@ò*¹?{ãD@¼?¦ßD@ú‡Æ?;@èº×?@:0@аÜ?å6@KíÖ? Ÿ@ƒ”Ì?¦üß?cÍ?BË?Ýfç? ÌË? æå?…º? jñ?}³? fê?m“£?ýÙð?pÞ”?)ï?hI‰?næ@B`‡?¹ù´?4WC@ÒØ·?álI@¶s¼?v»@@mìÂ?Ëh8@â¶Ï?lj1@ÖYÚ?ân;@-Ú?k‘*@GÐ?6®@ûðË?rHÑ?TÂ? Îµ?ŸJÈ?ƒ±?HaÓ?ü˜¥?IØ?NC•?áDÓ?Î ˆ?…™Í?S‡‚?8^à?%Ì„?A¹³?ËùC@>Á¶?èÙF@ãó¹?´@‚ßÃ?[P4@lÛÏ?û®'@NÒØ?8“7@WÚ?£Œ>@ÞuÓ?.È@*\É?)}í?5Â?PÉ?À(À?#:¼?”н?NX°?æÎ¿?Õ&¥?.Â?Œg¤?GâÐ?XÀ³?ç_°?›DP@Ð"²?ÍåP@±=´?†wM@`·?aL@䨽?xLB@ËËÈ?µj.@ÏðÓ?}Ç(@þßÙ?:@%ÝÕ?ög3@¡xË?žQ@-Ä?¤è?[r¿?•–Í?A<º?˜-Å?èÕ¹?„öÂ?ýܽ?Þ.Ê?Å?þ_Ù?ÈÍ?Üžì?°¸¯?uU@#A°?D¤U@‘(±?{¤U@p³?–}S@ì.¸?÷HP@|ÃÀ?$Œ>@¾ÇÍ?Å™&@´ŒÖ?ë‰'@J?×?¡36@ØÏ?g%@ªšÆ?¦g @»£¿?B*è?¹ ¼?£Ø?uç¹?05×?9½?ª!è?P Æ?Œÿ?|ºÉ?XJ @®ª¯?1rR@Ñ•¯?«¬N@W¯?¹êO@÷z°?~µ?³«-@YFÁ?ðD@{IÒ?^8 @ФÔ?^¥ @ÎòË?Là@×=Â?Wš%@ à¾?W!@eº?7@@c“¸?n%@p^µ?(!@Ž·?Žå+@NÂ?¡jE@ ¥¬? ñ7@ñ&«?pd=@Õª?QèC@×Öª?2uC@“µ«?kŽA@ ¤­?Ñï:@–n±?™s*@ ƒ½?à‰@B,Ï?‘Ê@ àÕ?‘@ÚÜÌ?Wt@±×Á?TM#@aÍ»?½u(@B\¶?“%@š¶·?n3)@äè¸?^ -@ »?Ê[8@X~È?è“K@Ö­?g,@GŸ«?»J9@U±«?]Û@@2ô«?³A@+Ž«?š=@ÚЬ?ç8@ö¯?£¬*@tq·?ìj@£Ë?«ø?9¥×?Ûýú?ÑëÎ?žá@éCÂ?Š@6¼? ×-@¦º?Šý3@7·?çø4@ɹ?1~:@óÔÀ?ã.D@ñg®?ú!@–)­? ½0@?V¬?ªÆ9@F¬?4Õ;@â«?Ð9@®Ó¬?²Y5@M­?kI)@^‡²?>@pÇ?D\é?.Ø?hsï?`Ò?dº@LÄ?„‹@·ý¾?µÐ-@Ì…µ?+25@›´²? <@Ò¢±?Nÿ:@«åË?|ÅU@¦¯?Ïb@AѰ? ú$@A®?KÁ/@R~­?¸3@Vì¬?k4@öC­?'1@Ö«?à‘&@£†®?Ѫ @_ØÂ?ØÝ?îØ?¦Ý?G*Ô?;Zü?o,Æ?»@’Ó¼?ûÙ#@F·?…9@f,³?usF@Jü°?ÐËE@Ƥ²?•$@ªÀ²?Í@Çà¯?cg%@Ga¯?`,@d®?­@/@$’­?c.@üïª?;¯&@㾫?ˆ @n¿?µ Ó?6ÞØ?(Ê?Ö?LÇô?¸ŽÇ?›¨ @ Í¼?:õ@¹ ¶?‘~=@ï¹°?—…J@·¸?´°X@ O³?âº@ù4µ?"@S)²?6Ê@|~°?Y²)@¬;¯?¿.@^g­?}¡0@_ª?âe'@»Dª?¢ð @–½?ÿTÎ?ú³×? ¿?‡LÙ?žûí?²¼È?]X @š¼?ô!@Ÿ´?Êæ=@çE°?( S@¹b»?$d@-¿´?¡ @2·?µÛ@[#´?‘Û@Ʊ?=*'@Ì@°?¦ú-@´Õ­?—W3@F]«?”@(@Én©?0; @Wå»?#Î?TõÖ?Ç&¶?PÊÛ?L¾æ?pÊ?ð1 @ê½?µË#@$’´?ú‹<@4¼­?ƒL@¸°­? RP@zø¶?«ã@ô"¹?Ï @‘ù´?+‰@Óõ²?D1#@°Ž±?˜E-@U´®?ñ£4@s~«?–,@Uí¨?c# @6y¹?pÑ?mßÖ? $³?—ŒÞ?1¶ß?òµÊ?ÇG @£Ú½?WF#@9ɳ?ý¸:@¨¡­?B±G@‹V²?#`Q@…&º?)gô?Saº?p>@®¢µ?·Ë@¼´? @¿¿±?‹ (@Åa¯?ݼ2@¤#¬?us.@³ˆ¨?Ѭ@;и?çÔ?Ö?ç±?;…Þ?ó0Ú?à†Í?'†@¨¹¾?ë @fÿ³?Jâ8@öÚ¬?È€B@㜱?AEH@s‹º?yàF@‚g¼?'.ñ?°t»?Õ~@w>¸?6C @Í´?mx@Os²?i°@¦G°? &,@¾†­?oé-@Ó˜¨?Èn@¡¨¸?ñüÛ?tÔÑ?I´?Ñß? ¯Ø?[³Ò?Ç¥@†Á?:Þ@à—µ?‘³6@Öå¬?Kk<@Ö±?¹7?@§Í³?s²:@½¬¾?ì<@;Ö¾?×Ðû?†H½?uä@‡tº?mÐ @Óšµ?õn@ç§²?»+@]ý°?â_"@zÕ­?7o,@©?“™@`Á·?ôê?§®Ó?çÚ¼?©Wà?)YÙ?EÖ?\§@F Ä?<¥@ ¹?uT2@!Ì®?ʯ7@«?ßq3@EÀ­?¨-@¯?Ï&@“ÝÁ?=™@Ÿâ¿?ñå@5,¼? ` @€-·?6, @Ǫ³?sB@[&±?¬+@`®?ïX*@EЪ?ž#@®¸?_¦@ÇÛÒ?ôCÍ?z à?bçÞ?©ù×?z^@gÇÈ?@YV»?F,)@S³?î@6@{ü«?!•0@cª?b§%@¬—Ã?¥@¬cÁ?on @˜¾½?²@j¢¸?£µ@¦´?ó @n…°?@u@ =®?Ët)@(u­? Ä0@)÷·?øå @átÓ?KÔá?kaà?ÆÅç?¤µÛ?&¡@IÞÌ?‰†@W¼?y @6’´?{1@ª7¬?:*/@ŠÁ?×@ŠÁ?Ä$@Šà¾?Èo@ù¸?a@ƒÑ´?Šu @æ±?oÛ@bή?ÔF+@ÿ{²?”wA@‰D¹?™x@M­Ð?æŒú?VíÜ?èýí?Fá?þS÷?´¦Ð?¡ß@Ä(Ä?eY@ù=²?9f'@’m¿?d ü?ôx½? û?4ξ?à“õ?Õ¹?D¦ù?Îϸ?Øž@vµ?@˜s´?AJ.@¥Ž·?vyH@f`»?Ø*@†ÒÌ?©‰ @åÚ?Wô?â?ó9ñ?pÔ?QÛ@avÅ?Oä@ù¿?fö?!¬¿?‹Ió?…FÀ?6?ò?„¿?Ìö?À½?Ÿ£@d3¾?k†@¼/½?d˜/@ÖQ¼?ÜB@e$¼?Ï},@¡íÇ?Ö@ `Ö?¾ò?U|â?øè?G2Ù?¦@ÂÅ?Úÿë?¢¹Æ?CÃó?¶žÆ?]Çø?;'Å?‘ú@,Á?¡Y@m/Â?óž @0Á?þ)@õ…»?/4@“º?Â{-@B×Ã?ã@Ó=Ò?|¯ò?äÝ?;ëà?Ç[Ê??Õø?¶ Ê?8l@4ëÇ?Q§ @NrÄ?@ßÂ?ZK!@Œ!¿?…& @¼?ÿ&@ý›¸?Ê8@¦÷·?aÏ5@O­¾?O‡@O¿Î?%Dú?'¦Ë?ú @ÁþÇ?)×@ êÅ?ç{@ÃÂ?¼$@þA½?Ķ!@q¹?ß#@=ô¶?QW5@ã´?/[L@‰Š´?èGB@¬¼?ÆÕ@¬$É?@ËAÂ?o@¬¾?¨¾@ ‹º?Îg&@Úã¸?¼£*@ÕX¸?ú3@\#³?0L@QV±?›^@qÚ°?R4N@ J¿?™‚@K¼?q0(@Ý~º?Ɖ1@­"»?p1@Õ‘¹?¶Ø2@3f´?õÅ<@o)°?-MQ@)˜®?d@“Œ¼? 1@(î»?³u4@†q»? Ú4@Åû¹?Ñù0@×´?ì_0@*´°?Ý'7@n®­?ê™Q@1s¼?^>0@Óº?«õ+@xº?%(@½7´?J¿(@Â¥°?¯|)@! ®?=1;@Ký¹?¢Û%@ŽG¸?ga$@¼Zµ?Ãp"@6Ô°?¨t!@„Þ®?×*@»r·?Z@s>µ?éD@ ²?ì9@c,¯?®Ž$@ó+µ?}ð@Íç±?Í)@ýf°?YØ@ܶ±?Íæ@lа?Dx@ÞD°?‹q@Z0¨?“ñS@K“¨?€Y@ØÔ©?E‚[@—)ª?Oa@TT¨?&£i@9§?!¤i@Ä/¥?-Èg@O§£?ú0f@R¢?x.d@é¡?$Ìi@vP¡?T*c@Õ ?ª‹U@©ÌŸ? 'M@#7Ÿ?ÀºE@“ŽŸ?@;@¼Ç?.ê4@ÈWœ?u2@èx›?rð5@xœ?Ë•;@·¿œ?0 =@Þ?Z =@;k¡?(ä;@?^£?¾i7@Uɤ?cg8@áv¥?3.:@|C¥?`ç7@9¥?œ3@@'¥?±I1@CG¦?Þ4@ Í¦?ª}2@DS¦?ã'3@K¥?.!5@þ”¥?f5@ËG¦?:Ž9@j*¦?‘ä<@\…¦?CzA@¾S¦?àD@[È¥?yG@Öó¥?5×J@ý2¥?6H@ÞÔ¢?õ…G@f£? ]F@+±£?)D@O£?ån@@}£?aA@Gé¡?X'C@’y¡?ÓI@˜Ç ?’3I@gž?1ºJ@Œœ?_ÇI@î’œ?oK@$éœ?µN@˜?DS@ã?¢jQ@"ãž?ùºS@ª¦Ÿ?ÿKR@³Ÿ?GUV@ œž?RmV@†Wœ?žU@€Íš?S@aåš?šÕR@‚´š?õ¶R@ó´›?ÞS@Ë3œ? •T@žœ?ªUT@ÐÊ›?„ÄQ@ž®›?ø²R@Fm›?˜O@ èš?ÁàM@C½š?9èO@š?k@S@ù‘š?ñðU@—‚š?«V@qš?Ø…X@7È™?“±X@»™?ŠòW@™?®V@z*˜?ì/W@²„—?`ŒN@:9–?,F@h:•?®>@ÞÔ”?‘„<@I2”?ø*>@‚d”?A£F@Ú–”?ÖÃO@ü“?–/T@Ÿ’?fsR@÷?;M@Éö?1çJ@ù“?köL@…Ž?¦ŠT@ˆB?€_@úZŒ?jÝW@]Ê‹?a©M@ï>?èM@¾¹?1ŠR@霚?\d@ð¥¤?ñ”m@Ò‚ª?Ë!\@2˜«?Ó¨Z@©œ¬?„i^@uÉ«?/c@#pª?ugh@Æ©?ëo@¶¢¦?Ÿ¹m@Þ¤?gm@/x£?Зm@ø¦¢?øm@Âk¡?Ëcd@—îŸ?bÁY@˜Ÿ?–ÅR@×îŸ?ñ±I@§3Ÿ?@Ý>@lyž?Ѝ6@|‡œ?JÄ4@f¸›?”C9@jv›?V=@ߘœ?²u>@TØž?JÎ?@_Ó ?ó¯9@Ï¢?Hæ5@úl£?¬7@\£?9v6@ïÁ£?]å5@Ì£?Õ—5@ez¤?nÜ8@”M¥?0š7@³ ¥?[Š5@Ť£?L7@‡¤?CX6@Îå¤?dÀ6@¥?[O:@Ýj¥?š‡@@$×¥?¯UC@飥?˺F@¥?˜=H@"§¤?:°H@ণ?4]I@z£?çF@ûC£?áéG@¨î¢?;F@i£?ÏzD@¤g¢?7‡C@ÚS¢?ÕF@Á¡?«ÍF@g5Ÿ?çcI@ùý?íH@^Ü?ÆH@Ö;?yN@…L?¯ÈR@)q?®S@¬ò?÷ T@ãŸ? ¢U@ˆ÷¯?YP@®§°?Ö°O@\Q°? žN@sõ¯?ÞT@`®?Ó]@Ê,¬?Ãÿh@C©? ¼n@^i§?úìn@¦?ë/p@at¤?ó–m@VÍ¡?¡je@:  ?ʾ\@/Ÿ?1›S@aŸ?ïTN@ÚО?×—E@`Œž?¹9@ô?<:@‚œ›?âƒ;@l›?  >@lœ?"b?@“Zž?! =@9‡Ÿ?É—7@Ç¡?"½5@·Y¡?ô‡3@*¢?ï3@Îâ¢?Â66@¬¢?ø‰9@ù•£?>9@äb£?6Ï7@Í ¢?Å9:@¢å¢?ûè7@Dp£?Åß6@DÛ£?šF;@¹¤?">@ç¥?’êA@üÓ¤?ºâD@{›¤?(ÒB@¸f¤?²E@A£?БH@9<£?Ñ‚H@üG£?JËF@Ü¢?Š%G@ߢ?Q*I@°ó¢?ÍE@á—¢?γB@I@¡?úE@²†Ÿ?ÔªE@ùNž?H@†ñ?s„J@ß0?¤õN@×iœ?*OP@…œ?“Q@ðÈœ?ÙS@Ê”? S@¥±¸?9~2@f9¹?s0@ôr¸?©°3@¤·?÷?<@q´?H@©°?˜X@õy­?Êb@báª?¼j@x©¨?ÝŒk@¾¦?/g@¯£?YJf@ Å ?Úh]@¬€Ÿ?:LU@¹ž?^.O@òô?0K@-ž?Á[C@Ô8?é×?@y´›?C‡<@ìT›?« =@Tœ?Ï =@†? 8<@'ªž?ÅÜ6@æÌŸ?:h3@“H ?<3@&¡?^4@ o¡?ÃÑ6@ð¢?ÞO9@¯*¢?v9@â¡?\=@h$¡?D~=@ØZ¡?ûá<@¢y¢?[„=@od£?¡<@Ø£?Dz@@Èý£?HA@i,£?Ô>@Ý£¢?éB@´Î¢?™;G@–¢?›ÈE@v»¢?~çE@Ûc¢?œCF@T•¢?ë­J@·¢?z F@ÃÏ¡?ö%A@/Ó ?ë;E@l… ?J€D@e¯ž?›F@s¡ž?nµK@šÜ?œEN@Üœ?¹Q@õ;œ?¯ÉR@ë—›?NØR@‡›?w½R@s8Æ?„Õ@iöÇ?¤/@%öÆ?͈@ð°Â?ô‹@:2½?Ȧ'@’Û¸?}»:@á®´?jhL@°?òÜZ@tP¬?*oa@”—¨?ìb@»Æ¤?"Èc@6Ž¡?n\@:ñŸ?ÌdP@3€ž?d L@Ã@ÅX›?l<@‚0œ?„:@j.?¡H9@1í?Y5@uªž?15@±òž?×Ú6@xÀŸ?ó·4@ºìŸ?Vl6@SÛ ?÷8@- ?´‡>@yÌŸ?b‘A@¬ÎŸ?‘ü@@°è ?Ù>@Æ¢? “=@|¢?lQ>@ü¢?ØC>@Ä¡?¯^<@<Ä¡?æÿ<@¤¶¢?–VB@Ó¢?‘´C@Dó¡?‡îF@TQ¢?ÿ8G@Ö‡¢?¿WJ@Ô]¢?åG@Ûâ¡?C@8ë ?ùD@'& ?ñF@§ÐŸ?ÎõI@·rž?M@7fž?BUQ@N$?ÖQ@¨å›?zR@-¹›?•P@žòš?•íR@J¯Ô?«gõ?§åÖ?=eï?;eÖ?Ží?÷§Ñ?æ&ü?› Ë?}ó @+óÄ?V@4E¿?]›0@P×·?c³D@•ç±?‘ºM@+`¬?tAT@—C¨?;˜Z@Ϊ£?úU@€¾ ?ôM@¢}ž?(rM@ÿœ?aìU@8Uœ?S%Q@íì›?Š»J@Ѓ›?AD@b›?Qé=@«Tœ?Ù%=@—öœ?9@?B¢6@ü:?`£:@±Þ?6@ˆ·ž?¿4@mBŸ?¤7@‘Ÿ?{9@1„ž?’£@@zŸž?)…B@:KŸ?/Æ?@g ?Ƴ=@_Ï ?t¯;@z¡?ËC<@"K¡?!~;@–H¡?{î9@Ë¡?ô=@—¡?ëC@ÑK¡?‰óH@¦ë¡?¦ÍI@Ás¡?ðMK@¸ò¡?m®K@,í¡?ÉöI@\ ?’+G@Kh ?üJ@;Ÿ?\òK@áž?iO@პ?F—P@–ìœ?ð6P@~Ù›?µðO@À©š?ÜM@mZš?Q©Q@)#Þ?Ùå?ïéÞ?¢ÝÝ?6TÝ?ô¢Ý? þÚ?Yhã?¡(Ø?íÚô?²ÉÑ?vö@Ý,Ê?~o@”žÁ?S9.@¹?].;@¨•±?ÿýC@ªÅ«?—|M@uk§?ésM@ø„¢?ºJ@Žòž?Ú˜L@H?l M@bß›?8“O@š9›?¶¾O@ Cš?ÿüK@%›?‘G@AŒ›?ŸŠB@М?þŽ=@³Žœ?z<@Åjœ?L'9@}?^4@ÒGž?~3@ Ã?’5@ÜK?|º9@Ü-?‰?@̬?bö@@Òdž?¹ >@ªÜž?"µ<@++ ?KÓ<@ç‘ ?[®;@@¡?`<@XÓ ?´U<@XÞ ?†-D@!Ç ?¬I@2¡?´ŠK@O¡?kãJ@eÒ ?¾'K@q» ?°AO@¤¡?„üM@©A ?šM@ðÊŸ?ÖO@ áž?éfP@v ž?=Q@¾“?O@㯛?ç>M@&¶š?ê³L@³¿š?ÄÜP@ÓÚ?`µù?KzÚ?`Bô?KLÚ?fÆó?Õ±Ù?0ô?mUÛ?·ö?ý>Ø?ÿ @±Ò?yâ @}ñÉ?ñ·@BîÀ?öã+@̱¸?³F8@&†±?¸bA@³8«?P.E@°Ü¤?2¢F@H  ?æsD@ô?LF@Ì?›?ã¦K@Xû™?xÌP@™?©½R@P]™?¶PP@±Ë™?*ÛL@ñ\›?·E@ï³›?/>@Å›? þ8@%ûœ?°‰3@Ûmœ?«œ0@¶›?Èb6@Èš?Cê9@'þ›?öe>@% ?±®>@I)?ÄW=@URž?…k;@‹Ÿ?:²;@ð•Ÿ?\>@ ¬Ÿ?´">@, ?‰D@"‘ ?Q J@eùŸ?kAI@àÞŸ?‚øI@zg ?+qJ@ø ?^HN@¨„ ?P Q@I ?8£O@ù¥Ÿ?D7R@(ôž?ðQ@Æ7ž?tÜN@Îe?‘P@þ›?±äK@1½›?äbP@’ œ?§çR@Fr×?ðf@ÕÕ?µ @ìÃÔ?¾> @t©Õ?é @NÖ?‚é @¢V×?¡Ç @eÒÕ?©B @êÑ?J~@ÔçÉ?îÇ@ÃÆÁ?U,+@ò’¸?“j6@»Î¯?,3:@lç§?âz<@ä¡?;@Aß?Ìé>@ŒN›?ÛH@Ýݘ? L@ꤗ?!àN@sè—? ÑP@1x˜?ĺP@éeš?YI@ ùš?¨A@_Å›?kú7@Uj›?\›1@ š?«w2@çÈ™?PJ6@Nš?Ô:@竚?5T=@¥ª›?ÿç>@Ï1œ?X<@¥­?ÞÐ:@_6ž?ð>@@}ž?ØÕ@@Oêž?)/B@³Ÿ?Ñ$H@·ÆŸ?l)G@wõž?Á H@+?Ÿ?:¡F@“Ÿ?µJ@õŸ?ÞN@§¾Ÿ?f€Q@8îž?x•U@p4Ÿ?p/U@,ß?^ÖS@åõœ?¾S@Ä›?yS@ ß›?IšR@;:œ?åU@y¶Õ?$}@…ËÓ?øô@VLÓ?k@'Ó?,þ@ÂoÓ?õ @:Ô?IÅ@nÌÔ?“@4ÅÒ?ø½@¹Î?Áj@"XÈ?Dõ$@ää¿?(,(@‹‘¶?í~-@™©¬?8(1@Úš¤?¸®2@!*Ÿ? 7@ï›?Hæ;@€6˜?gA@™–?ŠjE@[ä–?£bL@¬k˜?ÍÿO@?q™?¨—M@;„š?^“C@š?ñ8@†²™?ð°0@ö–™?ÜE2@cI™?œÕ5@Á™?ú:@+ë™?Z<@àaš?ÜV>@ÿâš?O2=@;©œ? '?@2.?vA@ÓŒ?ñsB@xgž?oD@ž?w¯F@Qyž?x³G@@Íš™?fY@@ÈÚš?Í:?@@õ›?9îA@÷Œœ?4/B@Ùñœ?-^C@j\?*kC@˜h?q¨E@öÁ?SF@;ž?±qH@í—?ŠJ@“º?º`N@Ež?dŠU@{‚ž?ÑW@@@ž?+%U@ô ?ÅT@ð`›?ÖçS@`3›?…»V@‚›?¼X@}WË?+=ó?Ü Ì?"à@ºèË?ÞÅ @ÞÍ?¡÷@øÐ?­%@ÀÏ?n$@ænÏ?šÇ @Ú8Ï?±- @œÜÎ?T @Æ7Ï?CÅ@¨âÊ?ð1@¸ÑÂ?;@Óä¸?ù@k¯­?tÉ@뤣?Š(@íë›?e–&@ ’—?II0@ä„•?¾Ë7@∕?ŒÇ=@3ו?MFA@—?’ªE@d­—?$ÉB@c{˜?ÓÎ:@’±˜?„Ô3@ˆ˜?êÙ8@¨—?çB<@†\—?8=@(˜?óg>@±²˜?ÑÇ@@±Dš?P„C@©—›?«E@É—›?i5B@ˆ”›?º-C@ÔEœ?«tC@ hœ?ņE@ôÝœ?†zH@<?´K@B¸œ?hM@«Ó?e¦U@Ý-ž?Ñ U@O‘?Ž“U@éÈœ?)4U@Ëœ?ŸÇW@}Ä›?…ÁZ@Gy›?ÿÝW@Ñ¡Â?ÁëÆ?˜‘Ã?°¾×?B(Ä?æÀë?ØÛÈ?*@ÿÊ?KV@êÌ?µç@ª«Í?s!@A¸Î?¼ê$@xÎ?ž$@A Î?!@JÊ?G@ÔâÃ?¥Û@¡z¼?ïï@úð²?w} @ë«§?÷@:lž?Éa@¹ð˜?7x)@gЕ?Œ¬0@ŽÙ”?Ö1@©`”?U=@*¿•?ÛÀ@@Í—?õC@»—?¼ã<@Jî—?Õ8;@áD—?$i;@†–?™“;@z—?ì;@1]—?qÓ?@Ó˜?ްB@ö¤™?XfE@ËÙš? nD@Ýdš?x¨B@Ìýš?ÝaA@u>›?YA@€¡›?…ÀG@³œ?דK@øë›?/O@0l?0GS@Uä?ÔÐU@5'?KU@~Èœ?*ßU@·’œ?^¸Y@Å œ?-NZ@Nî›?=¡T@œ€¼?c÷¨? ½?åð´?yʾ?³úÏ?—³Â?%%î?MÄ?Å:@_È?Ñ€@oMÌ?ÇÈ@q­Í?Ä$@³¦Í?n;(@`ÉË?wh&@Ì_Ç?ö#!@€Â?1@Ã_½?a@`©µ?¼e @ç2«?Š@4%¡?ƒ«@Esš?ä¦ @,'–?Gv'@Xý“?g.@í¾“?ŒÄ6@¼|”?c¡=@ à•?ûìE@RÌ–?©E@÷¿–?ú;@â•?Ú<@rL–?a9@2ÿ•?óù=@ Ž–?«@@ô—?fD@yŽ™?ÇAE@§Ê™?aÇB@ج™??@Ä*š?1?@¹Œš?PÀB@í:›?îH@ñ›?ÏO@u:œ?›ÙR@øÅ?‘5U@pÏ?ª?U@²#?ymX@$¼›?‘1Z@Và›?Y@ļ›?CcS@R}¼?4QŸ?â¸?ÛЧ?ɼ?üg¿?5Ç»?ÃÕ?r¾?Gí?TËÃ?L%@]­È?0Ä@:JË?’ß @Ê•Î?>*,@ìêÇ?²Ù(@Ï&È?ºù(@³–¿?"@;Úº?tØ@ZEµ?g@‰d¬?Ï @öà¢?ô¢@ºØ›? g@Y–?¯n @XM“?A¯)@×0“?$„3@C”?-Ÿ<@¢×”?öH@c}•?šµB@q •?»ÿ;@Ê=•?Úv7@©t•?Q¶:@ƒÂ”?û?@@+U–?Ó·A@éw˜?%D@¦ƒ˜?sOD@Gñ˜?·jB@ÂT™?Ú»A@r¡™?ÿ B@6Óš?šF@D´›?íL@$.›?Ì|R@èmœ?ÉùR@Bc?õAU@%sœ?X@l‚›?ûØW@ :œ?&ªT@áv›?t¿S@"«¾?ù3?vϺ?¦½¥?ø¸?€¸?×/¹?‘.Â?±«º?¯ìÖ?¦Ò½?ÈÕñ?ìÁÂ?lJ @Å?L@dÄ?¬Ê!@êIÈ?%Â+@TAÄ?iu+@:¥¼?0%(@›!·?»#@¬²?}¤@Ó¬?H @ø¤?Y @çœ?‚@––?¯@”?ã°#@9,“?HB.@†“?T:@¼E”?qµE@Ãá”?…:C@ •?³M;@N•?C9@Ît”?y¢<@ó§”?àï>@I¿–?g=A@A—?0¡E@®˜?l¶E@;h˜?YøC@N÷˜?²AC@*¼™?@ÅF@FÖš?ÎøH@óU›?kºJ@+›?•O@ Œœ?=S@k}œ?FXU@iÀš?¥U@íP›?âV@Ð7›?”DV@›Í¾?*§?}Õ¿?[ ²?Ë›¹?˜7´?s·?¼¼?9ƒ·?¥ Ç?¹qº?!Õá?‹i½?Qrþ?w#Ã?‡M@ÃÍÄ?¸@oßÂ?ν$@ûR¼?ˆ.&@/p¸?tÓ(@Ft³?N&@\'¯?uL@¬ª?Ù@Ï̤?Y @ìnž?î3 @ç ˜?mõ@”?x=@àt’? ¼+@@É’?}9<@Äç“? TG@¶”?¨¢B@»”??÷<@+\”?uR:@ ”?‡Ž<@Ö ”?ŽÎ?@þ•?VîB@½–?¬~H@¥,—?A!J@æé—?rG@I˜?!|G@")™?âeI@$š?LÏE@Ø$›?D^J@X›?á‚N@gS›?áKS@¯Šš?âT@xKš?*X@¸š?}ˆZ@öÂ?³T¶?bôÀ?j½?;ü¼?jº?P»?%º?Dÿ·?˜®Æ?Cá´?DÙ?¬›½?–/ø?V Á?´ @t£¾?Mz@)B¹?©@Q·?m©"@§!³?N—&@rȱ?öâ*@i­«?b(!@ÁŸ§?5Û@ò£?¨ @ÌT ?l@:›š?§ð@¡W•?la@OZ’?ð}-@† “?N@@âK“?úE@îØ“?ÌúA@yþ“?mN=@““?y,=@÷’?`Ò=@:”?‡ B@?2•?~ÛG@€þ•?û…L@Û–?h¡J@Ú—? H@M©˜?ë¿F@™?U’B@™?F@ÚIš?_ N@iš?©OS@j—š?¸ÌR@⦙? Y@Zš?Ûš\@ ÏË?·UÕ?ž ¼?}Ç?ûÛÈ?¦Õ×?ÛÀ?‰à?tÍ·?6vì?evº?Þòÿ?M¼?Âs@¥Ðµ?;@¹V³?øÈ@ ƒ°?+d!@»4«?û!@eާ?„š@@u’?€]D@͉’?>ºC@ªn’?÷€A@l’?dÿ>@Ô’??@˜}“?/G@ ß”?/J@–?OJ@ƒ)–?éÑF@3L–?À]@@eÌ–?õ@@yë—?hæF@ 6™?öëK@pLš?1R@Åš?™ÝT@)Ô™?$ÝX@›†Å?ª´@5$¶?lŽ@Æô­?5ã@´-£?éÄ@ô ?òä@Û? Ý@®ÓŸ?Ÿ»@DQ ?;\@FÓž?¿³@£Å–?z@­u“?à{.@+!‘?…>@1Þ‘?e/F@±’?~E@Ù’?DÐ?@lj‘?F?@,q’?÷C@ù8“?_ãE@Œ~”?¬I@À•?m{G@ø¿•?\=B@t¢•?ë @@òµ–?‘îA@»R˜?ÛG@QB™?æÕL@ºà™?_R@•gš?|OU@›õª?¹¥ @]ÁŸ?x+ @âž?‘Ä@Ʊ?Â@þÁ?Ýe!@ež?˜ð@œU›?r@ßs—?Ä@%h’?.@§˜‘?èø@@@‘?˜eH@þ¨‘?Ö;E@™_‘?8E@@¤Ú‘?Y@@ü‘?°pC@Û’?÷rE@Ï“?¿óG@6=•?7ÅF@窕?LÇE@º>–?k'@@x”—?­B@~ ˜?èžF@Ë+™?¶O@Ê™? V@PN˜?ðj@Ç?4ˆ@Na˜?ªà@\?»˜#@´A˜?êË@â?›?M&@)-—?¼‰@Z«‘?¯/@‘?Fÿ=@Œ›?Õ G@‘g?ÃðD@Ó‘?«>A@Çy‘?÷?@>b‘?§¨@@•E’?ÒˆC@@”?ïI@¹D•?)J@yA–? MC@{G–?ü±@@÷\–??C@åR—?ŸK@¡ë—?„\S@‚¡¤?e: @¢‡›?ù@µž?‰.@ËŽ›?-#@¹ž?v@?žš?„Ç@ð'–?±f@©À‘?¯º.@Ëy?4ð?@º—?#*J@f?$|F@òÝ?Z`@@º;‘?¤î=@u‘?Ú¿@@)“? I@ûš”?ÒŽJ@ï•?®eH@O•?h‰G@F¦?†wB@«¨¥?h¦A@•¯¥?;A@Ủ?„’@@áܦ?±‰@@mG¥?âO;@8L¤?øœ8@ t£?|Å2@G«£?À1/@ÓÌ£?øÖ,@P£?ÿ/@­í¡?K.@‡¢?õà,@pÉ¢?ÇR,@¤t£?xº-@óc£?Æa/@Vž¤?Ï%0@{|¤?IÄ.@e%¤?A.@¹â£?¸)-@Hï¤?VÎ-@á¥?ß-@Ë¥?c»,@Lÿ¥?Ô&@Ï ¦?Á##@þ"¦?Þi@&«¥?4³@"ë¥?¡d@!`¦?Ð@4ˆ¦? (@¸'§?vâ@b¦?k*@`¥?ý#@M!¥?8 @µÆ¤?¬ä @tÏ£?gÕ@Õ£?Ö@æ¤?RŸ@¹i¥? ^$@Bߥ?!‘*@F?§?Õ,@‡‰§?Õ.@yø§?üN.@ší§? -@¬Ä§?ì›-@z ¨?®Í)@ ¬§?/$'@„§?9â%@›¨?¯à"@è©?!^@úà©?Ü4@Þª?@ @!F«?"^@ûü¬?Å–@Ž®?¸¸@Ü­?ØP@ºZ¬?Ûá@|‘­?fÉ@9´?µ@º?ž’@÷À?'™@ª¾Æ?¾¸ @‰ÇÉ?­î@¹ÓÌ?4‡ü?CÁË?4‘ë?ºÆÈ?Õ˜Ü?Tu½?%èÑ?¦´?‘†Ð?ká³?¢ôè?¾A¼? Jù?´Å?.2@^,Í?6š@êùÏ?ôJ@ÍÑ?pµ&@v;Ô?:/@X"Ö?ÓÏ-@¸4×?–%0@‚AÖ?dí-@3Ô?Ä‹/@|Ñ?B°0@F=Í? J6@V É?ªÐ7@žxÅ?N‹;@­JÁ?ÓH>@l'¿?Sï>@Ãs¼?Fß<@Z¹?œ*>@ µ?$@@=|²? |<@j•¯?Ñ`7@ l¬?Ì09@¦¨? ×8@D¥?v6@¤ £?ÈŒ/@’£?ú¡1@Ïï¤?‡<@þé¤?œTK@qd£?ÛSX@<ß¡?ñP@]  ?¥G@S‡ž?ð}E@ˆñ?Y@A_¤?28@åý¢?%u2@v=¢?Ïæ/@KQ¢?éÈ-@¶ë¡?b(.@o´¡?i;-@¶g¡?Œå/@p@¡?œ±.@n¢?*2@Ø\£?04@ö4¤?m2@Æo¤?o®2@y#¤?RI2@öǤ?“o1@a¥?ªÜ1@³E¥?œý0@~ì¥?k[-@M8¦?LŒ(@©?¦?,ë#@r¦?¤µ@ðÂ¥?ÙZ@嫦?fÿ@¹à¦?œÿ@?)§?8¯@“̦?Æ@G§?I-@Në¦?D@k4§? ã@J÷¥?¿‘ @ö¤?žö @\¤?…û @Øm¤?nÝ@Xª¤?ë³@U¥?À†@ ¦?ê@ãF§?½½#@¨?TI(@¥u¨?CL.@©? Ð/@;‡©?†Ó-@ËM©?FÎ,@vX©?:*@AÇ©?ì´"@ãDª?e@d «?@˜«?ìž@0¹¬?Ñ%@!À®?r¦@׳®? @Yv§?ÍDQ@\'¦?@K@éú¥?YbH@ƒq¦?©åF@Ùt¦?*>@†Ã¥?œé5@©3¤?˜€0@1²¢?u.@ôŽ¡?¥Ã.@Õž¡?bt/@ð ¡?Í1@È¡?âò3@¥í¡?د4@p¢?xõ8@ùÊ£?iC6@Œ£?üö8@Ú­£?Ý(7@ Š£?xÝ2@¾£?P/@T¤?©r-@*ç¤?d-@¦?ÄS,@åí¦?…)@ë¦?ó«$@`Ô¦?¥ô@óí¦?¬(@¹³§?-@@`¨?uÑ@Aw¨?J@ħ?p/@øF§?©Š@ß§?Ÿã@L§?ÿ@F»§?3«@™:§?å @z´¦?ìÇ @ ¦?B¹ @hÃ¥?CÏ @Öä¥?¶T @÷Ó¥?Û@äÝ¥?el@j!¦?2Å@£I§?—5 @Ø‹¨?A$@­ª?^)@¶¡«?Öo)@L³¬?w)@Ü­?š{$@Yî¬?À¥@ø­?¼x@öÀ­?M@Â@¯?ë¶@Á¯?)ê@"”®?d” @ÙM¨?Þ¡Z@Íߦ?òÇX@WP¦?”S@@—¥?ú—E@™_¤?`ë:@1#£?¹w4@{Í¡?3@P¡?f3@Н¡?ÿ%6@¯¡?L=@Œ*¢?të@@ס?Ì1?@ì¢?ÄŠ>@ùu¤?«OA@Ðë¤?0;<@Hˆ£?Ñj4@õ £?o—-@„9¤?°+@Àï¤?Z]*@ø¥?Š ,@·ç¦?¤ô,@?…§?Ÿ+@¨? Ñ(@ãA¨?”a%@%-¨?4Ê @Àç§? ×@–¨? Ä@Wç?+”@t §?3´@Jï¦?Dô@¼ä§?Ô¼@±§?£@"‘§?! @‘ù§?óU @2¨?þý@âm§?ʈ@ìO¦?< @ˆT¦?¤æ@Žp¦?ùA@£±¥?’÷@Ȥ?^v @5\¤?YE@Øu¥?³û@x?§?Pó@VÊ©?×@ÉÁ¬?n{@ÞØ®?X @*ܯ?D£@Ä*°?M@Ox°?’Â@„ñ±?Š÷@Ñh±?•@«Ú°?£ @á¨?š§d@/‹§?Éz^@¯¥?ÀaT@Þ¡£?˜SH@$å¢?ø‰@@ñH¢?Àä=@Îý¡?$<@éî¡?ïO>@V ¢?eSH@4©¢?®.K@‚û¢?¿F@ê£?ÙdC@-á£?ÖU>@Òþ¢?í„3@âš¡?è9.@»d¢?š–,@­y£?¦«,@˜a¤?o0.@ö¦?š,@Tt§?ù‚/@T_¨?g=/@@ã¨?Ä-@Í©?Êû)@`á¨?,æ%@…¨?H4@È”§?iÚ@ ?§?¬õ@’¦§?šD@ßþ¦?­> @wê§?þŒ @1§?Í!@K›¦?Y @iõ¥?bâ@¥à¦?[¼@ʦ?fÛ@ñœ¦?{æ@èå¦?°@bI¦?m5ý?œ›¥?ü?±G¤?âhü?Tü£?"ø@ ©£?Z@¤?·@íJ¦?YÀ@K‹©?jµ @­?Žš@ë0°?i@‘þ±?*«@Ìò?ý@É'´?^@Dèµ?ÒD@~@µ?‹p@ §?6Çf@£X¥?òÐ^@+Å£?9ÌW@ ?£?ÉnQ@ºê¢?Î-N@ÂÏ¢?î=J@u¢? âI@£?QñJ@Âp¢? J@xÍ¢?zB@¬£?’g8@ªí ?£±1@ãË ?#ù+@€¡?n8+@Ž‚¢?œ-@¼¸£?© ,@`­¤?ו+@ œ¥?”F,@;§?/*@†¨?­',@ôÁ¨?L+@[f©?ÂX'@°Ž©?óI"@ͨ?k½@~ǧ?y@}|§?d„ @H[§?^) @-‰¦?­@@Îm¦?R@áÙ¦?ú´@Kɦ?S¿ÿ?Ñ}¥?Áèý?o”¥?Dý?îé¥?ó¾ü?’³?uÖ@8´?¥V@=•¶?ß @,1·?º< @+š·?˜ @·?½@§¹?¤@éL»?„„@?à¼?†@k Á?êÖ@VúÄ?T@{éÆ?1Ÿ@¹õÆ?‘Xþ?ƨÈ?uRý?ó›Ê?ñJþ?’%Ì?1º@‰ß¡? §\@ëi¡?HpP@b¡?¡D@g0¡?/½<@Iì ?Ò©6@h¿ ?bx3@n¡?#0@b5¢?Ô/@ê¢?àÀ-@cð¡?È»,@œ<¢?Ýh.@þ·¢?ê1@?«£?éL3@ö ¤?Û0@nߣ?5I(@ú¤?× @‘ª¥?–Ì@}»¦?UZ@&À§?#ß @LX©?®ø @3ª?¿`@®X«?DŽ@ît­? @—®?Ym@K‹°?ž®@ d±?7:@ ³?×Õ@¦”µ?W@Ix¶?¨É@áp¸?+˜@A¹?å@¾5º?5ð@º±»?Ê!@–¥¼?Ø¥@®½?úz @ØŒ½?°¬ @¤¤¾?T@Iݾ?”@Ð’À?†@¦|Ã?ÆŠú?ýÇ?ø?,^Ê?¶ô?f°Ê?Öð?=¦Í?N,ó?ºçÎ?õó?Ä`Î?£Wõ?·Œ¡?õzT@ëí ?jÙF@-l ?‰D>@ª¾ ?Xò8@!R ?¶i5@!i ?Ãe1@Q'¡?}µ1@wê¡?ù".@x¡?>ò,@¿ù ?à-@ª*¢?‹01@×¢?ýœ4@ú £?ͽ2@«£?Þ*@¯â¢?&!@d×£?Æ9@î¼¥?q/@:M§?vU@ é¨?œ5@HØ©?Ï"@ìãª?Ñx@´¬?5l@ÍÕ­? @õ°?É@Nö²?+ @ºXµ?õ`@ëx·?¬@—m¹?Bó@5õº?%U@Ï+¼?‹æ@[̼?ÿ>@{õ¼?3@­¶¾?"Õ @wÁ?U @pÂ?eÈ@sfÁ?„ñ@AÎÂ?§ƒ@ ÍÂ?©šý?žÕÄ?Ážõ?¾Ç?Lï?¬vÊ?ÐÉî?¥ÆÍ?:ì?™Ì??Æõ?}[Î?Ƈó?tYÊ?éì?LýŸ?цJ@ÊŸ?•…E@§1 ? K<@¡îŸ?Šã4@²BŸ?ð.4@ØAŸ?Æ&1@‡ ?ï5-@ß¡?ŽQ,@Õº ?øÁ.@Ö¡?Ä(2@iÜ¡?5@ù©¢?Z3@:¢?o)@å¡?´!@˜9¢?˜œ@6£?È®@ø¦?f'@V¨?!f@P©?zí@vª?«ï@Q¬?œÒ @·¼­?Ò"@]ü®?ß"@)2±?ØÍ@?´?Ç‚@¹Â·?Ü@`¯¹?(@ë‚»?Ç@5¼?Ì„@Uè¼?i@¹j½?j@ù ¿?9¯ @ß·Á?f‚ @â=Ã?m8 @bæÃ?÷~ @ËÄ?O @-‹Ä?Ü@ºuÅ?kýø?PÛÆ?Ãî?fqÈ?´eð?âlÊ?¾õ?¹ÝË?·H@Õ‘É?%û?äVÄ?4Oè?Ÿ? sE@ï ?6Ë<@nŸŸ?TY5@]•ž?œ6@Ñž?Á×3@<Ÿ?žÌ/@±–Ÿ?|U-@ÑòŸ?Ãü-@÷ ?y2@X6¡?µK5@É0¢?ëò0@R¢?@(@±‰¡?]@…Å¡?Ÿ@ª¯¢?hþ@ïE¤?’@Fº¦?Y@M¨?!@ª©?æÈ"@¶J¬?äN"@vw®?fÿ @ô†¯?ès@‰±?Ü@E5³?_€@¢‘¶?¯@J^¸?ˆÂ@øÇ¹?§í@Ûg»?oç@ªÈ¾?–é@ª2Á?ãÈ@éàÃ?y¯@—ËÃ?ù@çýÃ?œ@íÃ?î@ -Ã?,º@MmÂ?Nœ @ÏMÁ?Ë @^ÕÁ?÷õ?a5Å?h÷?{ÂÉ?É0@eÌ?ˆ@ÜÇÆ?”b@./¼?èéñ?·Ÿ?¥9@uŸ?€¬2@ûwž?ö¼3@0}ž? 4@%°ž?aÿ1@z&Ÿ?¸=-@ÛŸ?Ÿ,@‚òŸ?^þ/@ZÁ ?ié2@dð ?jr-@¡?‘t%@u ¡?ù¢@|·¡?¯÷@£?85@F{¤?‘È@¦?’J @j§§?°%@µ*©?!/(@Y«?‰*(@@æ­?5•$@D°°?8Y!@øÉ²?Ž%@¨Ü´?Œ×@=!·?)@머?³À@ Ñ¹?+)@×3½?è.@ìDÀ?uÅ@ÔÂ?¾&@‚¢Ã?¼@ð%Ã?«Ë@z“Â? S@_aÁ?¼X@DÀ?† @-BÁ?“7 @$¹¿?rF@ UÀ?–ü?%(Á?ù @€Å?nÏ@`!Ë?£[ @ÔûÈ?e7@°½¾?)ü?¶ž?62@_¼?ì'1@G“?åJ2@©Û?!Å1@5#ž?|×/@•§ž?ÅT-@ÏÛž?Xæ/@/íŸ?}‚3@M.¡?Ê™1@|ˆ ?7B(@L« ? ¨@µb¡?ÌÏ@]¢? 2@x¤?Os@#¢¤?nJ"@…‹¦?m£&@G‰¨?ë*@¨Oª?Å)@÷ʬ?A'@R±?²í#@/ܳ?UÜ!@U©¶?Ì×@gþ¸?i@‘qº?w¨@ÿq»?®@Z×¾?EÏ@C¡Á?¯¨"@‚ìÂ?+Ø!@²ÏÁ?o¹@kÝ¿?ÌÂ@*ª¿?Dm@ÍŸÀ?`î@'€¿?8{@¸¿?².@о?˘@«e¿?á @€{Æ?Œ¬@ãœ?§"2@)Ìœ?$q2@¹¡?“3@IË?{¾3@¨4ž?Óa3@Pýž?<þ4@~‘Ÿ?2Ÿ6@ Ÿ?¹ë4@h± ?ŸÊ,@oÌ ?={%@V ¡?c¢@ûR¢?Š™@––£?˜‹@g@¤?Ó"@üý¥?óÀ%@‡œ§?‹(@ð—©?bS*@ɬ?>(@F˜¯?ñ&@m÷²?ß%@6¶?3‡"@&4¸?F@¹º?/m@Ÿ½??µ!@:ÆÀ?>ê$@WžÃ?wâ&@…Â?ʱ%@@è Î?Hô@ ?Ñ?_Ð@)Žœ?«½7@¥P?;l8@Iž?)`7@'Ÿ?'{9@eöŸ?\3<@À¡?ÿb9@7R¡?vL3@®é ?b3+@@à?kN$@šÀ¡?t@»]£?bY@Öª¤?È9#@ßP¥?À©)@P§?*@Á¯©?•.)@+x­?§×'@”±?‘&@U¤³?8[%@ ·?~ƒ'@™º?`Æ?„t-@šÃ?*@IÂ?®j%@Q"Á?'Ê!@}Â?&ð @9¬Â?Rk @[ÃÃ?ûñ@ÖKÄ? P"@»CÄ?"@õÄ?—P@M¹Ã?{w@ûÅ?L‹@æÈ?÷b@.±Ì?Šü%@›Ð?@)@xž?Â;@¹åŸ?à$>@µá ?)‘?@Ÿ¡?.=@ž¡?³™8@Á¡?¿‹0@ßT¢?~)@ó6£?–&@¤?>Í#@s¯¥?1w"@Úì§?>4$@%ª?Ñö&@g˜¬?W*@¾¯?b,@,Ʋ?d1@c¸µ?ãÚ1@‰·?¾Ø1@ƒ”»?C>4@ËëÀ?¸i8@–ðÄ?á–8@%†Æ?23@Æ?±À.@mrÄ?× +@¡5Ã?7:(@–‹Â?E&@{¢Â?е%@DÃ?íT%@ºêÄ?I#@ÐÆ?ë†#@í2Æ?Šo$@…KÆ?â!"@0QÇ?QÑ@ ÕÈ?{@œ»É? á"@…øË?Û *@ýKÑ?â¬-@S# ?9†<@½’¡?ß=@ZM¢?¥b>@VÅ¢?`¿:@Å¢?Õ4@‰5£?‚¨.@X@¤?rÖ(@‰¥?\B%@j§?HÐ#@s1¨?A`%@·šª?ã'@4Ê­?2,+@ S°?y/@C¯²?Ç2@‚µ?–¯4@©A·?Q=5@d¼?¡º5@ gÁ?Ûè5@ÝHÃ?Õ5@OÅ?Z4@ØmÅ?ž~/@ShÄ?Sü,@T1Ã?Üð)@É!Ã?íí%@ÉÃ?• #@öÂÃ?S&@CXÅ?ã&@–ûÆ?O?&@ÕFÈ?ä|'@ýôÈ?Ø&@ÎÉ?³6#@ØÊ?ª$@CÓË?ðn'@ŠxÍ?‹W-@j™Ñ?*ï/@õŒ£? |:@IŤ?4ë:@ ¥?&®7@Òw¤?S¼4@÷ñ¤?ø½/@*ø¥?jK.@}L§?•A-@©ç¨?f+@ËȪ?o(,@æÇ¬?EÒ,@ƒ<®?Oñ0@"•°?£$4@3ê²?f.5@]Ò´?¡6@™%·?{+7@Eº?>N8@ä¿?|G5@¥Á?—-1@:Â?c 0@{Ã?CV2@غÃ?ž¸-@¸Â?‰º(@£Á?!Z%@„Â?Uà"@MçÂ?—¼"@ŸÄ?ë"@.ÓÆ?cC$@ržÈ?&@’@Ê?xî'@œË?ìÎ"@PÌ?{ø"@½NÎ?\·%@;‘Ð?k+@<™Ó?np/@ù£¥?lN9@}‚¦?«8@la¦?V5@h3¦?æÃ0@¾7§?u8.@?Q©?´=.@yDª?¹à/@ï’«?e2@J»­?ÐZ4@ϰ?÷C5@b5²?ø6@%e´?‰Ç6@ÄGµ?çó7@·¶?5Z:@1%º?ÈÜ;@ó/¿?ýu:@$ÃÁ? `6@fÂ?»K4@Â?ž/@ž¢Â?ú0@uYÁ?V,@ì À?H%@#¾¿?D"@/Á?çq @@UÃ?[%#@5ÅÅ? &@…¶Ç?y'@îtÉ?â$@· Ë?I-#@àƒÌ?Jí!@ ãÍ?‘"@ˆ Ñ?âß'@ü•Ô?¯9+@§Ÿ¦?+è9@8`§?9@på§?®¡5@±³¨?æö1@¿¿ª?í;0@cj¬?¼Â1@“‚®?Õ#4@û¯?ë8@„½±?;@â´?0 ;@,œµ?h;@ç¶?°²<@x1·?«Ú=@Þèº?Ão<@G¾?x=@”Á?yf;@·Â?Q:@á¥Á?` 8@‚Á?—J3@æ9À?Õ.@7\¿?ñR*@Eº¿?/¼(@C4À?ýJ$@œ„Â?Ï%@ \Ä?‘z(@;ÕÄ?C¦*@àÅ?ƒt)@¾dÆ?¥ò%@Ê{É?D%@lFÌ?ت'@Å1Ï?vã*@C4Ò?/T-@~§?Œv9@±É§?Âì6@?Ö¨?>b4@Š)ª?ߣ0@¡¬?Î0@B–®?1@ˆí°?Sc5@]̲?%ž;@¯Ç´?QÉ=@}¶?™æ?@N_·?4 A@{L¹?í@@C »?+=?@¬Ü¾?¸w?@Ü`Á?D1>@¦÷Á?¹É=@_ÖÂ?Ð?@EÂ?Ý:@(À?ë4@Ö÷¿?so/@דÀ? +@ôÍÀ?_x)@]xÂ? Z)@„Å?(µ*@M8Å?C!-@[Å?Ýó,@‹®Ä?jå*@cÆ?Öq+@)!Ç?8g,@lUÊ?°1/@[‡Í? C0@ §?ˆ‹6@³Ÿ¨?mù3@8¤©?1@¥ãª?JM0@Fú¬?å4@¤¯?ƒÊ4@³¼±?ÑÊ7@ â³?K™:@)”µ?ÛÙ=@òJ·?åGA@+²¸?ÌjB@g¼?„ B@"ª¾?½nB@}·Á?×jD@²ÓÂ?&mB@2²Ã?k¸?@ÐXÃ?jÔ=@ŸÃÁ?È\8@IÁ?ƪ4@œ¸Á?š /@ÔÁ?Á,@¸×Â?Mï-@äXÄ?5Ù-@!ÊÅ?™F1@£Å?Ÿö1@§mÅ?QW3@zÅ?ã'3@3wÅ?GÛ3@®Ç?òå3@DxÊ?"6@¾B¦?:û1@~i¨?ÜÂ2@¿Û©?É<0@/Æ«?œ2@|Õ­?=6@ Y°?‰ö7@‡x²?Þ5:@ X´?™n>@]Bµ?$?A@¨f¶?êæE@/Eº?œïF@g×½?HDF@ÄU¿?¾H@âQÁ? H@ŒÂ?‘ñE@¹Â?Òê@@70Â?@½<@”«Á?âÝ8@¨Á?Dü5@5÷Â?Çü2@û)Ã?0V.@]ùÃ?¦0@‚¶Ä?ð4@\Å??7@o*Å?ÛC9@SØÄ?$8@§oÄ?,©6@FÅ?-º4@E›Ç?>N5@§?;.@瘩?š¬.@|s«?m0@ ð¬?ã4@~-®?á—8@[å¯?6$=@Xɱ?Í@@‹Â³?3‘D@µ?”J¸?YVP@¹?N¾S@ι?ÆT@¡C¹?9ýN@:¹?¥ÐL@9g¸?ZRI@5§¸?wF@ ù¸?•[A@n¨¹?![:@#,º?Ø9@™ »?ãÔ<@3‘»?Ü9>@£"¼?›«>@K)¼?²<@„T¼?a7@;è¼?QÄ6@`·½?½;@ò¨?#0@í@©?ÝÉ/@Êyª?G1@ãî«?®¾4@½$®?¸º:@€«¯?È»@@b˱?åoD@;Y´?×ÏH@c™¶?cOL@9϶?ðS@î·?!™T@úp¶?3xR@Ô3¶?‹M@M|´?ÑTN@f´?OÞK@R´?icE@·¦´?•”=@勵?¥\:@¥Â¶?²Æ:@¨Ý·?4=@<Ƹ?=@>%¸?N=@žF¸?äâ:@`i¹?ñ°7@êo»?¥6@¦ˆ¦?…2@¶¨?²1@÷Öª?Õð2@^¬?Î7@¯­?Æ=@q˜¯?ìèB@%]²?ÆUF@6C´?OäL@2Æ´?ë!R@.û´?ýVT@LÀ³?«tS@1U³?ŽP@N²?ûN@Àq±?<îI@ô¶°?~C@·k±?aØ>@´²?àM8@M ³?Q¾6@²û³?D8@¾´?JZ:@Š´?Di;@g¸´?“N;@ªêµ?MŸ;@©1·?W;@ô§?'_4@©?Ï£3@¦ª?ÞÊ6@\«?[&<@Ïþ¬?„÷C@“å®?ÓñG@v”°?[õK@N¡±?ЗQ@³?;øV@¦³?/CT@Ïü²?ïMO@Ì®°?ÛJ@Št¯?¥ÊF@´…®?N³@@¡®?¶™;@Çg®?þÏ8@1Z¯?±5@Fǯ?>6@(}°?Âð5@ó;±?Ä‘6@4¨±?oU;@}R²?Ðu>@—â³?½ç=@5ì§?Ñ«;@… ©?Û<@@ª?Û=@n«?ªC@®3­?òEI@Y“®?TÈO@ 5¯?ñ~R@³ì¯?0U@–°?DöW@륱?”ûR@ד°?ºL@5ƒ®?æG@á.¬?„GC@\[«?¼3<@ªª?ø6@¿ä«?ú2@Žú¬?`02@Õ­?b3@‰Y­?Ÿq4@v®?Ðé5@Q¯?+\9@¿°?ÿ.;@ðÙ§?²²?@ÕĨ?ù¬A@jü©?úïB@ª«?ø‹F@=ج?ß²K@`­?6¹O@$ž­?8ÖT@È­?ÖDY@‚¢®?òøX@°?üT@`µ®?²M@F¬?æG@&çª?—B@¡´©? 9@ͨ?Ôí1@”m©?#¶-@X:ª?3o-@·ª?æã0@8«?i˜4@䋬?Ü6@ ®?7@·0§?iAB@nÀ§?WWE@Îb¨?,E@Âþ©?ÞÜD@šèª?§4G@xò«? L@w«?ÏëU@:F¬?HÊX@ü“¬?v;W@ô®?ðêQ@©Ä¬?úèL@H¨«?YýE@>eª?øp?@UL©?Iz7@?¨? N/@ä¨?>Î.@[=¨?¹0@µT¨?H.2@ŠP©?Âq4@ «?w¸7@8ü¥?FÍE@Á¢¦?_•F@zv§?"JD@–©?K0E@Yª?Â@ìs¨?4þ7@•¥¦?á÷2@>×¥?ðl1@²Y¦?mù.@#V¦?X×/@7§?§2@K.¦?7¤I@èS§?RLD@H-§?$zC@O§?Ü D@nE¨?È_D@ºú§?Ä|F@ ¨?wpI@ÿk¨?¼P@wó©?’ÁS@ŒÀª?µòT@ªª?‰KN@ܽª?ìmE@‡/ª?—ÅA@/š¨?S<@Á”¦?96@‚¤¤?~¡3@Ÿj£?d/@ç¤?¦Ê/@,¤¦?&H@º3¦?ëE@Ù¦?±òD@V-¦?,EB@¯Î¥?YªC@ ö¤?ÚJC@{¥?wI@[ئ?B O@§?ckW@¨Ð¨?8ºX@Iª?¬µU@Duª?äN@û©?ðLH@‘1¨?8@@+E¦?pÂ8@áO¤?›2@{ó¢?pì,@Y$¥?y—D@VZ¥?˜C@Ùt¥?“B@mǤ?DB@X¤?µ¾?@O£?”»B@Ì,¤?XªF@ˆ¥?hIO@>ù¥? -X@ÌÓ¦?(÷Z@fê§?ŽðZ@ከ?•rV@¨?f'O@öß§?47@@]À¦?ØÉ:@Óܤ??V3@ç<£?äC@Šñ¤?¼>>@9‘¤?7¦<@¬E£?žø<@Mê¢?’·:@“Ê¢?²ÿ?@7 £?CjG@ëå£?XP@XŸ¤?4ØX@‹—¤?â ^@Ká¤?Œ¶]@¥ã¥?w>[@›¦?mêS@¦?ØÍH@è¥?óÍ@@a6¤?"~B@ ï£?v¬<@›¤£?-<@å¢?ð|9@jS¢?U+:@–¡?ý’B@ìi¢?Q'I@)ª£?(›R@_ø£?s«V@EÀ£?ó]Y@+L¤?3 ]@Ê_¤?puZ@¿¤?sòZ@zA¥?ŒS@Df£?*ý@@Þ~£?œ/>@Òw£?+Y=@˜®¢?û¿<@;Û¡?÷@@Ç7¡?{¦E@¨ô¡?O@ b¢?”–S@èd¢?tTU@K¸¢?L[V@#¤?x’U@L¤?yQX@[¯£?_§Y@¤=£?$™A@w—£?-@@t¿¢?”A@º¢?ÈúD@,{¡?T¤H@?.¡?Ö}O@½A¡?DÂT@(%¡?UU@Ðê¡?\W@ÐB£?4ÉU@Ú¤?yúQ@²¢?‘)O@W£?$C@Pº¢? F@Â@¢?.±I@x¡?N“N@­¡ ?õ\R@h ? 3X@$j ?›íY@ÔB¡?:KZ@=(¢?ãYW@ú_¢?þAT@Žò ?–L@Aí¡?ôI@q–¡?6ºK@1O¡?}ÓR@Kà?ÇèV@W* ?ûgZ@ÒÑŸ?êÒZ@ m ?òb[@"_¡?ß2Y@67¡?U@zן?áqL@ëa ?Æ M@I’Ÿ?ŠmR@˜ƒŸ?Z:S@(ïŸ?&ËS@¯ ?`ŸZ@ag ?^@^¡?Ë\@a¾¡?^>T@âïŸ?lO@*éž?¶¡L@>Bž?-¯N@¶'Ÿ?ÄyR@›ZŸ?×°V@s ?òZ@S¡?Ç ^@r°¡?Ÿ#X@#åŸ?÷çM@Ë{œ?[óJ@ã}?fN@}ž?Ü4S@çCŸ?}4V@œe ?‘žX@~^¡?²U@C ?JºO@w™›?MÇK@_?m~N@³Æž?7&S@”®Ÿ?á¸W@Dˆ ?´zS@-+ ?«N@<Äœ?)%M@v©?rÆT@7Øž?b´W@^ÕŸ?ë’V@WèŸ?íO@ãùœ?cQS@ž?5X@%Ÿ?I7X@ÛžŸ?›êO@©ø?KÝS@ïjž?\šW@JŸ? `T@Þ?­,R@_½ž?äS@6Ÿ?L.P@Ÿ:®?|_@b¬?¶õ?ª¬?߸ë?6;¬?•;Þ?Nÿ¯?ÁIÕ?Ûà²?]¡Ú?¡µ?”¹â?{±»?g2ë?ÂÀ?+èø?ÿ*Ä?¹3ú?5Å?Ÿà?ª0Á?/]Æ?Œ¼?å´?eé½?ÿ®?ºÀ?¹º?IÀ?¶ùÆ?Ü—Â?$Ê?:´Ä?Ä×Ï?ädÄ?¿¦Ö?úwÄ?¹mÞ?®€Ã?'¿è? ýÂ?oõ?ì½Â?Hºý?”GÃ?‘0@»VÄ?Šÿ @éRÆ?Y½@DëÇ?‹ç@ƒ”È?–º&@šÊÉ?—F'@wåË?Üú&@9‘Í?Ñ%@<¬Ï?ž•%@Ó?½¥&@IÖ?>C+@'EÙ?>Ú-@••Ù?ùŠ4@ýnÚ?‘}2@»SØ?7“1@·çÓ?z.@DáÏ? µ,@$XÌ?ÞM'@ÞÈ?¨!@.êÈ?‘'@¶(Ê? !@lŸÊ?øF%@¬ÚÍ?fG(@F¯Ï?àc*@Ð?:P-@BRÎ?ãœ.@|.Ë?ÑF1@.É?†Ÿ3@3Æ?â&2@Z«À?_>1@ª»½?}À1@sº?”7@)I¶?…/?@™ó±?G@£»¯?iK@ ޝ?ðM@“I®?â K@ž­?pD@ôQ¬? o?@Ér¬?Üð6@¯"«?Ø-@Rx¨?µŒ)@ÄѨ?DÂ)@!«?(,@;Z­?Sx-@Ãw®?¦)0@S/¯?t4@Ú°?@6@Ïr±?#ñ6@ Ù±?E8@¬ °?sÁ;@Ñ­?`å?@ÍÓ¬?¯³B@ ²«?oD@]]©?+æC@K¨?2‚A@h§?KB@ê.§?œA@v­§?OQ;@R†§?kw<@#•¦? e;@« §?<@8‹§?áE=@“¦?¬A<@#Ó¤?ä;@ ‹£?‘ë8@—¢¡?1˜4@®â ?é30@0¡?“Î,@úÌ¡?ö,@‡„ ?ëÓ-@} ?†&.@?cŸ?/ê.@xž?2S0@´Dž?K2@~?ž?‘5@Vê?ºö:@ÇYž?kïD@ÏPž?ýH@ D?ÊF@h?×4E@\*œ?X—>@*›?›r@@t)›?.>B@ÜV›? 3D@–œ?ÙsH@}œ?"I@6Ïœ?ÑÔI@çÞ?‚0J@Ÿª«?Ãaý? Ú©?ëÎï?bâª?F÷á?»¬?kÁ×?Ï©²?ØŽÛ?ó˹?¼ôÞ?äBÁ?Ñè?wÇÄ?Nw÷?‰¡Å?G´ë?iDÂ?ÝdË?¾Î¿?Fѵ?¨½?1,­?ÿ6½?Ú^±?ò½?D¹?ÇÀ?ŒLÅ?ò¾Â?‘/È?ʉÃ?þÄË?HËÃ?rÛÓ?¥hÁ?‘ïà?:¿?½Ðî?&5¿? —@âoÀ?&~@\ºÂ?U @ ÙÄ? @ÃVÇ?@iEÉ?*>#@ÛèÊ? 9#@1XÌ?2µ"@µÐ?õž%@$ Ò?ä±'@ˆÔ?E(@YØ?ä+@„Ú? ±2@6¿Ü?,I3@£ïÝ?Yð4@½ÝÝ?2i6@ÄUÛ?‘°6@Õ?é“0@wéÏ?¨V+@.èÊ?m&@7È?Žº @Õ6Å?ÑÆ@Ç?º@HèÈ?¶"@âÜÌ?ùW$@CÎ?‡ý'@öËÎ?f +@t|Ì? ã+@ʨÈ?rÝ-@<Å?ÇŒ/@>óÀ?v‘1@;i¿?¡ý0@,|º?u2@v-·?8G9@Z´?ußB@&ƒ©?Slù?Ü2©?»Eð?ÿ§ª?«$â?à ²?ÂÌÚ?¦f¾?Cãá?ë®Æ?˜Oê?7"Ç?œ-å?/€Å?<ëÊ?×—À?µ—´?`ùº?뵪?U¼?Vì§?ÝÓÁ?èd¯?õÕÂ?ä°º?ê8Â?À?ŽÀ?uÄ?ÛÅÁ?¥#Í?’©¿?RÛ?é̾?]Aî?“E¾?çM@ë¿?9š@ÖpÀ?ÅØ@–Ä?\·@6¢Æ?X@…GÈ?¹Î @uaÊ?Dí#@°‹Ì?4ð"@jÏ?Üå"@üÒ?^*@AXÖ?D®.@¥†Ù?µº-@!&Ü?oZ/@±›Ý?Ûÿ4@€Eß?¸8@Jrß?2œ6@'!ß?—¯8@¦½Û?– 8@¬0Ö?ä±4@ƒÔÏ?i‡*@±É?¿"@¦Æ?ZÆ@4ÛÄ?‘œ@+úÃ?ÀÃ@”˜Ä?‘Ü!@xØÉ?€ü%@þ²Ë?’P*@Ë;Í?g,@,ÊÊ?RŽ-@§’Æ?«Â-@ Â?„¸,@#u½?*j.@Ó`º?XM2@t¸?ýW6@^µ?<@3ú°?WF@úL­?¯?@u"­?¹-õ?~µ?YÎã?ŠÖÀ?…lâ?\&Æ?k©ä?FËÆ?¸Ò?ÂßÂ?O¼?À?ùè«?k¼?‹j¥?3Û¾?,¦?"Á?G)°?A´Ã? ©¹?åÃ?Ö<¿?õÌÂ?!gÇ?V…¾?$$Ö?e|¼?¼!ì?Ǽ?œ±@Ö½?ù @8Á?þD@ÎÐÂ?Ð@–ŸÅ?”ñ@½!É?—!@ƒæË?¼<#@L‡Í?¹#@'ƒÏ?+¬#@ ÆÑ?q6&@ÆèÕ?µÝ*@hžÙ?1@ŸÜ?¹¿2@òñÝ?Xo5@Ü-à?µ26@\á?ø8@ Áß?%8@3Ý?„æ5@5zÚ?óz5@>ˆÖ?õ7@ñSÐ?£2@^çÉ?€¨)@œ#Å?r#@:Ã?û@:÷Á?5™@xÂ?¤• @ÏNÅ?…Ô'@¥rÇ?Â)*@S É?^§+@ôøÇ?XŸ-@@RÄ?8ô,@èM¿?*e+@Mƺ?œ„.@WV¸?½4@ï¶?¶9@è²?ë|>@À!°?d=F@ 'µ?½=@‚ò¸?þÇø?àˆÃ?°é?Ò7Æ? ÇÙ?øzÇ?Rš»?wTÃ?¹¤?ô!Â?¾+Ÿ?¢¿?µ Ÿ?w³Â?ä£?LÃ?Ü·´?% Å?9ô½?½‰Ä?‚iÅ?¸Ã?üÏ?Y¿?ÝÂß?4–½?%…ù?áâ¼?Ä>@Õü¾?¶¢@…‘Â?Y€@}Å?Ûõ@•¹È?©ƒ@†Í?/ú"@ÏÏ?Då$@G¯Ð?UN(@8gÒ?ì‚)@—Õ?ð§+@†‚×?, .@f#Û?ü-1@pÞ?Î4@ ÷ß?mÇ8@à?@Ÿ5@ãÚà?ø7@$VÞ?[n8@¯kÛ?Š5@kØ?·þ1@ÈòÔ?Mo7@ÝiÏ?‚­6@bëÉ?•0@fPÅ?“ó)@ÒÝÁ?%•%@wÙ¿?²·#@v‰¿?A˜$@6Á?ñÔ'@ÙîÂ?Âå*@JÄ?‰©-@VŠÄ?ÜC.@uÁ?¡ž.@÷±¼?¸±0@#ò·?ÿÏ3@„P¶?ç÷9@@/´?ÊÃ@@Øý±?´C@L°?sF@¶ã½?ys@™IÄ?§§÷?EXÈ?â=Ô?ô²Å?Y²?Ê0½?6ãž?¿Ø¾?¦zœ?ÅH¿?Bû ?ð’À?Ã[ª?°Á?‡î¶?bÂ?#YÃ?&ùÂ?´ÅË?ÃÃ?diÚ?aÀ?7(ê?9M¿?÷ ý?âTÀ?ý– @­bÂ?z™@9éÃ?¬°@óùÆ?zi @8¥Ê?8f#@íÎ?­E(@•kÒ?yŸ+@ôáÓ?à .@æÕ?«.@â×?Ó¬/@º‚Ù?0@¤ÃÙ?ø2@y‘Ü?n.4@ùÏÞ?a*7@ Hß?,¦5@N Þ?UÒ7@H‚Û? °7@Z‰Ø?{>7@RÞÕ?"w4@é Ò?Fj6@вÎ?:@f4Ê?›€7@îÅ?mŒ2@”æÁ?¤„/@©¿?£é+@tâ¾?÷œ*@ab¿?Y*@>‰¿?–ò-@0=À?Ý:/@ˆÀ?2`/@ñ?¿?âA3@.Qº?`æ8@‡qµ?¾nB@µ?&¿D@¬²?GpC@ë°?GÍ?ió<@˜É?kó<@0ßÄ?[‹9@ïZÁ?Û6@¿¿?u¯5@¨Î½?Y$4@g½?8¹1@ä\½?5@å.¾?x 7@T4¾?@±9@I´¼?x>@º|¹?ÝÅ@@0Ñ·?sÍD@gÞ³?^LC@r‡°?×B:@ù=¯?¶8@6r­?ëÁ<@uÊ? ü?VÈ?™VÐ?UÂ?ø)³?À¼?qs¥?RUÀ?&|¤?T Á?Yi°? ðÃ?‰µ?[Â?ª–»?\šÀ?fªÊ?ͽ?I6á?¾?äï?¯¿?U‰û?ÙÐÁ?hð@uÂÅ?D¾@0bÉ?e@TQÌ?RL'@$?Ï? ?.@ÛŠÑ?ü‚.@†Ô?€0@¿ÖÕ?GÁ1@x‚Ö?_Ý.@ÑàÖ?àã+@5b×?„q*@fR×?+@oר?‡Y-@Å×Ù?‚ñ2@/­Ù?"ù5@^h×?à5@õLÔ?ëÐ6@í<Ñ?¶88@…Î?²9@s8Ë?Õ):@¸Ç?Jî;@ —Ä?Á<@œµÁ?2=@èϾ?–•9@;a½?08@²Í»?ïÞ8@Ä$»??õ3@%»?à£4@Ýîº?k¯6@ðh»?€$7@’²¹?O:@Yû·?…µ;@•,·?l­:@ø²?çl6@Éa®?Ëì0@ŠJ¬?=ª+@!8«?øw.@êMÊ?0Öë?¤¶Æ?3­Ì?!ù½?oç°?ú—À?Ëx§?‰ËÁ?¤+®?z‰Â?18´?Ê^¿?f0»?©Ê»?GÍ?vŒ»?_œæ?ÚŠ¼?Û)ô?–Û¾? Ôþ?žºÂ?„@´ÉÇ?¤î@õÊ?±&@×Í?n¼'@‹Ð?°/@}«Ò?Q0@XÔ?5/@,¡Õ?NS0@+°Ö?~b/@ù[Ö?ãc+@ÆK×?é+@Ë×?ø)@Ð×?¢ˆ,@¦˜Ö?êO2@¥Ö?“ 5@Í<Õ?lv7@ Ñ?8~7@ºËÌ?ÕR7@RîÈ?P<@‘ûÅ?‚A@ÓöÂ?¡@@ÂFÀ?Ic@@qù½?Ï®B@μ?2=@ß!º?ùV8@œ$¹?2†5@‹T¹?­L2@Õ¼¸?lÙ-@åÀ·?ýæ-@Hâ¸?Ô.@ö¶·?ðô0@ï:¶?+Ý/@.Ù´?×É1@ݸ°?øK,@.›¬?‘Œ%@ª?P @º©?Ñ# @v@É?ûÝ?Ó}Á?CD¿?ˆ.Á?¡”ª?Á?Ãpª?4ž?5¯?˜æ¸?–Ÿ¾?þ¶º?àÑ?f ¹?î¿æ?™ ¼?ø?”ο?~Œ@œåÄ?¡¾@D#È?›@˜¡Ë?®Ì@ÅÏ?œ|(@)ŒÑ?Þø-@â€Ó? p0@—TÔ?2D/@—Ö?’1@ÜÖ?ËÃ/@,AÖ?kÔ,@]OÖ?Æ-@˜þÖ?YÝ,@¹OÖ?b¥.@ðLÕ?J3@"Ô?dm7@ Ò?ò:@Î?¨Ù?@£‹É?’Þ>@”“Ä?[UB@‘LÂ?wF@*•¿?jD@{¾?éŒD@@§¼?gF@Šº?CÄ?@¾9¸?„â6@‘ˆ¶?r–/@©¶?,,@5¶?Y'@Š“µ?±'@¯¯µ?‚*@ĵ?Oç,@ÚJ´?Q]/@ɪ³?)(-@Ȱ?éG&@óú¬?8>@ê=ª?k|@#æª?Øä@:Ä?ˆsÍ? i¿?¨D²?xž¼?#G¦?¦½¹?¬?Ë´?ÚÏ¿?¶?sBØ?#¹?ª+ì?n|¼?¬dö?U¬À?†@¿›Å?¾Š@cÉ?1„@¬ÌÌ?v®@1ñÎ?[¾)@ Ò?9 /@›Ó?þ /@TÔ?Jr1@cÕ?$·/@À¶Ô?S//@&ïÔ?¨ˆ,@WbÔ?p¥*@ý^Ô?»k+@–§Ô?ï§0@#ëÓ?ó—6@ù Ò?UL:@ÍšÍ?Û„@@gðÉ?ú]A@MµÅ?œàC@mºÁ?vF@Åâ¿?ÞG@Ú>¾?ªG@<|¼?¤E@ª2»?ÝE@c¹?`)=@ïù¶?ºå3@²´´?Üs,@3·³?£l(@qγ?y'@ËJ´?«)@b¶´?›h(@ c´?d*@©d³?ó~)@ÝŸ±?=-+@Fþ°?ƒB&@S-®?è¦@°¬?ˆ @ÍŸ©?òw@šÄ¾?—™¼?{‡¼?ËK§?h÷´?ø ­?LÒ°?\ÓÂ?f«³?=„Ü?âE¸?ï[í?™¼?Ýr÷?­šÂ?Ôæ@¤Ç?\K @ß7Ë?ƒº@Y$Î?ÎÔ @B6Ð?|¥*@3GÒ?hó0@¸WÓ?_Ž0@~(Ô?0@æpÔ?f0@œÓ?8á,@43Ò?M*@“Ò?Ó+@ÈiÑ?Q-@"€Ñ?³"1@fÑ?š7@eyÎ?س<@AÜÉ?T®A@§ÜÅ?òE@P7Â?ÚpI@5M¿?“¢G@Ͻ?tD@áÖ»?ûzE@mº?rfB@Q¹?mÔ>@:ݶ?->7@z=µ?Ka0@Ú¡³?N,@^‚²? 6*@.©²?Y~+@r†³?¼û*@Òɳ?&x)@òг?k)@¥ö±?€*@ôư?+@œ]¯?}+@­?°k%@²«?a‰@˜é«?ÅÖ @ ض?‘:´?(°?²Û±?Ÿ…­?z]Ì?é;³?|å? ¸?Ùëò?‘j½?œ¢ý?ÿ²Ã?„ÿ@·^É?ǹ@øHÍ?R@'pÏ?£ä"@‹3Ñ?lé*@eØÒ?‘µ.@Ÿ…Ó?AK/@»Ô?h–,@³jÓ?Ùm.@Ä¿Ñ?¨&*@;ˆÐ?ü&(@WMÐ?õ4*@¸UÏ?3/@ÍÎ?-5@SRÍ?gŽ7@”þÉ?„::@þ"Å?ÀN=@âÁ?ÁiE@ξ?ñF@#*¼?p>D@*¶º?Á>@­T¹?¯”<@í°·?Án;@à¶?ñ6@u´?Pâ0@]ײ?Óë+@¸r²?ÉÄ*@IJ?k¥*@ús±?„8,@¼m²?•L-@ì`³?ͬ+@K§²?ö*@È9±?[+@ö.°?e,@‡®?ñV-@±­?Ãa*@£æ­?í$@g¢®?ñ %@M®?¼ŒÉ?r€®?HÜ?Ø›²?6Àï?q¸?Wù?‘o¾?ÊŸ@rÅ?Ì= @‹Ê?#@hEÎ?0d@9Ð?-Ø$@ àÒ?Ã(@Õ§Ó?-@èJÔ?§‘.@- Ô?®²+@0DÒ?íO)@`Ñ?†˜+@\ÖÏ?ƒ+@n¬Î?~*@Ô^Ì?¬-@ÑØË?©4@îÕÊ?577@02Æ?×N;@ Â?7 @@¥Á¾?LC@GU»?X.B@Pš¹?¥>@ ¸?l7@—ÿµ? Ö3@—Û´?D 2@ýƳ?°Ò1@ÃE²?¿//@f±?˜£*@Œ'±?uG+@DÛ°?*U*@ò¯?“ˆ+@Rª°?µa/@yá±?^õ.@Åû°?#)/@Ý0°?þI,@zä¯?îª-@Pø®?ät2@Îa®?¡¹/@1E®?¨)@¡X¯? u*@}¬³?êsë?7 ¸?×îò?¾–»?ü³ü?"û¿?+^@e`Æ?"þ@¥¶Ë?›Þ@0Ï?E)@Œ¹Ñ?‘Á$@)cÔ?å(@vÕ?^‰)@ÂFÕ?‡L-@káÔ?æ,@…Ò?_Ó(@bmÐ? «+@‘,Î?`ñ-@Ô‹Ì?±`,@YÒÊ?ƒ€1@ÀÇÈ?‡3@gSÆ?B;@uÁÂ?AN=@¦€¿?E±A@‰Ï»?QŒ?@"÷¹?õd;@|<¸?å<7@4·?P…5@kÕ³?¾*.@4{²?©Þ,@Ô°?ÔT,@Ѱ?¥W+@/¶°?âˆ*@:ü¯?N-@ د?˜d-@×Ú®?„,@ö?¯?ÑK,@ù¯?¥l0@L¡¯?®0@Œ¯?J8.@Ю?k¢0@@o¯?æ2@¨º¯?¡š1@׌®? (.@ ›¯?ø/@Ü‚¼?Þ¦÷?²Õ¿?§E@þ÷Ä?Xà @™É?Ûö@I™Ì?fu@âÌÏ?¡@{*Ò?þó$@$Ô?ªé&@æ×Õ?!Á'@ åÔ?j‹+@v›Ô?¯Š+@<±Ò?03+@‹jÏ?¤É,@Þ Ì?š.@«ÜÉ?™ò/@„É?3³5@`Æ?OÏ6@>Ã?Óƒ<@¤¿? à;@+P¼?¥£=@Ügº?)§;@Ÿ]¸?x¼8@,.·?Þ4@¶?g'1@#³?Z/@W±?ã—+@ò’¯?U+@Ëׯ?+¼)@Âѯ?\*@Hð®?Ç,@Z¥®?Ù,@Ã(®?÷6,@«²®?“x,@ï®?Ð.@jŽ®?±Z1@f1®?YB4@h—®?ï±4@à´®?‡œ6@½€¯?uà4@;´¯?ÆL2@½ °?¯83@±,Æ?î@êÈ?K× @ |Ë?{÷@ëÂÍ?Æ¥ @VƒÐ?d!@î®Ò?Ÿ³&@&Ô?[•(@Õ_Õ?âÚ)@ &Õ?ƒY+@b˜Ô?éÜ+@Ó?=J,@¯ÏÏ?KV-@ПË?9.@ªÁÉ?Xb1@€Ç?Ò×2@FãÂ?Š9@¿?÷Æ<@^5¼?‡:@…À¹?án9@`R¸?ª¯6@ðü¶?ì4@›Úµ?ÕÑ1@žñ´?2.@.³?z†/@Ë”±?¢›+@í¯?å§*@SÊ®?×î'@•¸®?Ý6*@ѱ­?¥Ü-@­?¦Ï/@  ­?õ§0@¨Ó­?Ÿ30@üƒ®?+×.@h¾­?ëà1@‰?­?kš8@dï­?UJ:@Hy®?R×9@A¢¯?ÄÙ7@½‘°?Åê4@Ц±?çt5@:gÌ?Õf@lRÎ?Î@lÏ?M]!@øáÐ?Ä!$@#Ó?=J'@{½Ó?¢++@UˆÓ?´Ö*@õÔ?ü‰*@]-Ó?‡-@69Ò?±-@Ï?8ƒ-@©ÒË?\w/@Ë÷Ç?¬0@‰OÄ?O"3@|£¿?ÑØ7@ìç»?Øl6@”º?x3@P[¹?¯£2@$F·?2@åìµ?‹Î.@R´?X4/@)ù²?>d,@]ž²?uA-@œ±?ÃÁ+@£4°?2)@›à®?C+@"d®?Œ}+@j÷­?ÐU/@Œ­¬?4@£Z¬?;‡6@Ê€­?Žu5@8®?ƹ1@bÜ­?çÌ2@ÿN­?!ç7@^g­? 9=@F®?Üi?@ƒø¯?.å;@˱?˪6@””±?MÅ5@K:Ð?f@—¢Ð?|È#@*ÚÑ?&@“îÓ?ÌÛ'@b[Ô?ø+@x^Ó?(+@ü…Ò?×j+@¥ûÐ?kÛ.@©çÐ?¡™/@¶ñÍ?ç´/@ú¯É?!p1@ZTÆ?z–1@`äÁ?cš0@l¾? …4@òéº?é}0@*R¹?©E-@w¸?‰.-@Ï)¶?)’,@¼7µ?Þç,@Ú5³?øš*@Yý±?¾+@]°?é,@¤Ø¯?ON.@Ðé®?",@Öu®?ÿL/@<1®?É.@®'®?óß0@± ¬?{¦7@‡ð¬?lŒ8@m%­?f^:@n­?7@íþ¬?0Ø5@WP¬?ÜŽ9@½Ë­?Åç>@}®?"€A@AÝ®?Ñr@@š˜°?wñ<@Þp°?Y;@K½Ò?¹â(@“€Ó?©‡)@D]Ô?§)@ë^Ô?´S,@,aÓ?4Þ+@@ÝÒ?Ѭ.@†ãÑ?§J2@“AÐ?W3@ÚaÍ?¢4@ë½È?›3@ Å?ϸ1@²À??“,@S}¾?.À-@Bãº?ØÓ(@‰^¹?Ÿ°%@ÀS·?±Ë&@™Çµ?£c(@ß´?*@I³?%+@»Â±?Ó•*@DG°?"·-@í¯?ZÃ.@æy®?+š,@(®?±i2@¼­?Ê·2@‡ý¬?³¬5@Àé¬? 9@¤—¬?¼;@¯1¬?£a<@¿¡«?_<@7M«? 89@r´ª?k;@ï2¬?ë+A@¯”®?$@u«?{qB@¿·¬?ß7H@°T­?;5E@Àî¬?z A@™È­?!×?@B)Ù?üÁ0@dÔØ?¬&3@Ú{×?Eg-@§Ô?¶2@mÒ?$Ë5@©èÎ?ø\:@I[Ì?FS>@)Ç?ðÉ9@¢ÐÂ?/e0@Eó¿?Ÿ(@t¾¼?ü&@:™¹?ž#@n޶?ì(!@ç´?Ëà@ç²?°Ÿ@i°?´T @º?°?QÊ'@èi°?H*@¶Í®?†u-@€²­?»d1@Á®?Â3@‡d­?Z£6@D!¬?DÚ9@2«?µ€<@Tu«?.Ë>@[G«?}?@@¤ª?Áš9@6cª?p9@óª?Ý–<@Õ/ª?¾ö@@¹Ïª?ôxD@Þ†«?\bI@x̬?ù G@àB¬?ž[F@¢Ï«?QšB@½Ø?im2@áØ?Qd/@­ Ô?G·3@¶ÍÐ?¨‘6@ÁÿÌ?¼Ú9@…WÊ?+4?@`?Æ?IA>@r¢Á?UP5@¹¾?C*@»?¦Ý%@3Ƹ?´¤#@«’µ?Q´@Æ”³?»Ñ@²?ÊH@_©¯?÷a@„¯?žË$@Ã.¯?¬d+@ú°®?·'/@‘­?-Y3@B½¬?÷44@÷k¬?á7@~¬?•Û7@ˆ«?:@>«?5´=@Ôª?íº<@·ª?y»9@pþ©? 8@’©?ú =@Ž©?}üA@¿ª?UgI@@(°Å?Ǥ>@t]Á?Ý*8@åm½?Hf,@~»?n;%@—Ç·?áú"@êEµ?Õ<@kg²?$×@0±?àû@ä,¯?À@Ⱥ­?úž"@UF­?3 *@u ­?ø‡.@zR¬?”ê1@u=¬?Ñ=4@¨«?ñ7@¢J«?Ã\6@˜«?Ј8@¹öª?¼Ä=@Eyª?©³;@Y›ª?±:@JÚ©?ѧ6@(&©?`=@1©?ûºC@zWª? J@㾪?O—K@‡Wª?8M@⡪?*qF@jâ¨?¹ÞC@™[Ò?‹u4@I Ñ?,H8@ùÌ?O7@/ŽÉ?ïŒ<@±Å?~½=@ѬÀ?Å•7@Iý?4/@¥íº?š.)@Þ¶·?×"@–´?ñ„@&”±?šX@w°?·@V¦¯?éÒ@û­?)@"@6¬?ân'@25¬?[-@ð¹«?¢d0@q¬?Æ~4@rË«?J8@—ߪ?ð·6@j¸ª?cÐ6@3˪?Mà;@ª?%j;@`ª?)¸:@Ê©?ÄZ7@ʨ?B:@@Ò§?Ï¥@@m©?Õ F@ó©?xI@\ë©?ŸJ@=è?0G@ƒ~§?ÓÄE@ÏUÏ?ÄŠ9@,áÌ?…›9@2É?¸==@ZÅ?0•<@Y÷À?ƈ8@'½?À_1@J$»?`Ó-@½¸?^A%@‰´?¦@÷±?¸Å@•ö¯?æ@#:°?-g!@®?(/#@I ­?%;&@Oæ«?’+@DI«?»¸.@~¡«?Œ¦2@’[«?ë­6@K«?Y6@°`ª?«j5@+‘ª?kµ8@®Pª?צ:@¯Ë©?³™;@}«¨?%8@My¨?Ðû8@$@§?¸ž=@ªý§?¡B@_ò¨?iIF@™ð¨?ëH@`¨?’¶H@ͨ?ÜuC@¦¢Ê?€ð9@gAÈ?=@ÏÅ?øn=@¯EÁ?+9@[½?¬T2@øÇ¹?‘ä.@89·?b'@j}´?ÀY @–n²? Ÿ@+Ò°?Q@)-°?ç.!@ 2®?êq"@ÝN­?–%@ºO¬?*@««?G+@Rl«?N2@§áª?`@4@½ª?Àð4@š¦©?ô3@yÁ©?Èu5@Å ª?Gé8@QP©?4t=@À»¨?7K<@Fì¨?hó8@Õ§?ÑÀ;@µ„§?¹Ð>@W2¨?äUD@ôu¨?СF@g¼¨?©F@Uë§?Q|A@íÅÆ?ª¥:@h­Ä?ÐY<@®Á?E‚;@ÃS½?Ív5@ó¹?Ñœ/@Àjµ?%(@¿³?7#@‡²?üà @Ì#±?)'!@í¯?8"@/¾®?Ù3"@{o­?Ýæ%@^¬?µA(@*¬?›«*@襫?ÂK0@z¶ª?œ3@³Aª?²g4@¿{©?W3@§_©?‹3@LA©?«8@ÈM©?³É9@bœ¨?÷X=@M£¨?:;@Ä#¨?å–8@±Æ§?Ùµ9@ا?8Ë=@¨*¨?1A@O—¨?…XC@<3¨?“­@@v®Â?Þß>@ÛÁ?nÊ=@Œn½?`9@{¹?OJ4@ž¦µ?Qš-@i³?|p(@I²?ù&@c©°?`ÿ$@a°?©%@æß®?ò÷"@ñy­?a'@ÃZ¬?6â&@ß³¬?«˜)@Ö]«?vs-@f¸©?_Ù0@–ª©?á3@&T©?Lj3@*¼¨?É$3@Dè?pÕ7@óã¨?.:@€·¨?U;@ˆ·¨?¦:@çG¨?Ε6@‰$¨?Rh6@½1¨??x6@|(¨?ð$;@ÙÒ§?/A@3ާ?÷e@@•cÀ? T?@m½?u‰>@·º?á}8@)_¶?MÖ4@r³?ä80@¨Ã²?Ås/@Lǰ?~‚+@ï¶°?pí(@e¢¯?+&@Ó®?öú'@¬?\'@¬? _*@Gf«?FÁ,@þs©?A&0@V…©?ÆP3@¨¨? 2@Àj¨?ç4@=+¨?ÄÓ6@u¨?&s:@‘¨?>8@ãæ¨?ˆç7@Y_¨?D*6@§§?ݵ6@öµ¦?15@·¾¦?ØV6@ 6§?Í)@@Óo§?Œ@@À'½?=?@ÑŠº?²>@˜ö¶?–h:@!‘´?J>6@³?+é5@`á°?”€0@ã?°?ý,@d°?)›,@ Æ­?f*@1Ï«?k*@y«?÷ -@þRª?ò-@&L©?•®1@ æ¨?<š4@Ô¨?hk3@½±§?Uô4@7 ¨?6n7@ç~¨? T8@/Õ§?öæ5@žÃ§?„`5@ß§?ë´2@]¼¦?Nµ4@O¥?±s5@¦?L^4@½ª¦?C¢;@ýŧ?+ ?@”º?£h@@Ãh·? CA@eδ?Ö=@…z²?Ǥ9@wì°?Ðã4@Ú1°?$2@ã|¯?ª<1@ᚬ?PÔ.@¾7«?÷i.@pª?Ñ/@a"©?vJ/@‰…¨?§0@þÞ¨?³ç5@è §?5@n¦?,k4@§?AZ4@“§?™44@iD§?ê¢0@¥§?_Ð.@qo¦?KY/@¬¦?²@0@æÙ¤?Þ>2@áߤ?ëy4@èµ¥?Ù18@÷ù¦?ž­<@K­¶?æfE@¨u´?½C@Áá±?øû@@ °?fh:@ié®?8@\]®?ú/8@s¬?ô 3@‡Sª?¥è/@I€©?œF1@µM¨?ƒï3@B5¨?éD4@×ñ§?G¤7@Rõ¦?.Ó6@D“¥?ÎÚ4@¦?žÿ4@&ã¦?\n1@³S¦?˜’+@#Â¥?ü*@’Ø¥?Ý\+@(£¥?=U.@@ð¤?}Ü/@Ѥ?æh1@4Ϥ?ü5@­¥?IÖ6@k?³?eD@><±?hC@]¯?åA@:’­?ÔÃ=@”w¬?Š>@= «?)z9@$æ©?é¹1@‡à¨?¸é2@ñO§? º8@>S§?Ü 8@¾¼¦?¨c9@í¥?1¬;@‚ù¤?Ym8@Pä¤?ÖC3@QK¥?Ø.@pl¤?‹¥)@ ܤ?—¡(@ù®¥?¸%)@}¥?óÂ+@ùþ¤?2.@š£?ßÌ.@²¨¢?¿0@M£?¹3@lW°?¤k?@(Ç®?«ÂD@¬á¬?Æ8E@X;ª?ô:D@±è©?!D@„§¨?­x9@é§?+6@jÙ¦?YŽ;@æO¦?Ã<:@?ST>@@Ì¥?ànB@ ¥?v<@D|¤?G6@ÎÄ£? c,@g£?ÒÈ(@µó£?¹é'@ÄŒ¤?YG)@]R¤?WÂ,@µj£?ã,-@¶Ý¡?A†+@Ç¿¡?R*@m¥¡?Î>/@8Ö­?*ò?@IÏ«?Ù}C@ž©?L°F@yì¨?ÛoI@Zþ§?ÐnB@g¦§?³¤<@Ì­¥?˜>@ í¤?›.A@Æ¥?žÍC@b6¥?0D@‘‚¤?šÓ@@ ¤?}ë7@È£?Ć,@{Ó¡?½ø)@¨Í¢?;ð(@Ó7£?;5+@G£?£r-@”¢?Qû*@Fu¢?è:'@ÿÏ¡?ч&@ ?æÁ,@wª?ŒŠ=@'ݨ?Ù,C@Èú§?Ì D@¾R§?àšE@Óê¦?A@³¥?~ãB@><¤?ÊG@ÏŽ¤?ŠåH@ø€¤?GIJ@Éÿ£?üE@ëµ£?@Í=@Ö©¢?¹»2@× ?ò-@“¡?@N*@¾¢¡? x,@P¢?=¢.@ÌÖ¢?ë2+@¶¢?ê'@tw¢?Óá%@,¡?âB)@ó¦?/ª;@@S¦?ùÈ>@F7¦?B@%œ¥?²^B@‹7¥?BGD@ˆ£? ZG@=y£?ýˆI@®£?®‚L@‡£?«ïK@H£?·C@QŽ¢?]8@Tò ?~H3@ÐD ?â,@Eö ?œí,@À¡?˜.@5¢?Ä9*@À'¢?eô(@”š¢?#–(@T°¡?„·*@5V¤?в7@‹¤?‘`=@„ò£?3@@¤ì£?Û¼C@¨ÿ¢?âˆH@’¢?)ÔH@¾®¢?lNL@ùâ¢?ÝM@œ¢?ügG@¡M¡?Ü@@a ?Ä9@9 Ÿ?†2@2æŸ?>V/@¦‚ ?Ë.@/L¡?½*@…Œ¡?À§*@¸ ¢?_X*@ý¡?ß -@N £?ˆ%6@YÛ£?î<@¯£?š*B@L¢?H1H@r ¢?4-J@&¡?hvI@ž`¡?LÖH@Ž¡?¨òC@Žø ?Ä E@;¢Ÿ?ÁE@ªƒŸ?Q,=@´½Ÿ?ƒ07@¯9 ?9L3@q ?þ .@ÿ< ?Q]+@Oí ?¾G+@Ëy ?£-@c)¤?WX;@ËÁ£?M³D@xë¡?CYI@Ó¡?1"I@Ò^ ?¡E@ⳟ?ÈB@€ÒŸ?ÅÔ=@M— ?Å\?@ªŸ?¶„F@xxŸ?ÐSG@ƒ‚Ÿ?Ó³>@ºÛŸ?J8@RkŸ?Íh2@Êž?ò@.@/ ?è~-@œéŸ?Ùf.@2¤?ZH@åJ¢?.³M@° ?YÝI@àŸ?eD@ŸWž?f>@Ï,ž?¢Ã8@&Þž?‚%9@©RŸ?MB@;Ÿ?ѯG@°VŸ?-»G@MØŸ?û³>@¦†Ÿ?M8@CŠž?‘4@Xúž?ô<2@Ÿ?u÷0@ᚢ?m;S@mù ?ò N@)YŸ?MtE@¸ž?^ð=@ëú?k®7@+C?ü6@xê?ù3=@“Öž?hõD@p ?¿˜I@xáŸ?ÍÖH@UiŸ?—?@ô‹ž?7<@yåž? @7@ô"Ÿ?ø‹3@Jø ?ÌRN@eëž?6£B@A’?Ëü<@´¶?uU=@Åðœ?ô:@øœ?¸<@ä†?>ÃB@†Œž?2¹C@²=Ÿ?üE@ …Ÿ? !G@ƪž?â…B@Þ?W€=@$Ûž?>7@ôFŸ?ìD@Æ?®>@ƒdœ?ñ>@õ-œ?„>@©Õœ?Ìç>@Êvœ?Ûú=@Ó0?+l=@O0?²dB@!ž?s-H@Ωž?óøD@ªë?â@@à?®R>@‚ï?¸˜A@Jpœ?F²?@$šœ?¦Ö@@ú?8N>@|œ?¸C;@²Ì›?5Ý8@´Mœ?o²?@-­œ?ï£D@Ê^?f0E@kÝ?3ìF@óž?â³F@X?¬A@C²œ?c>@_Ëœ?ø=@»åœ?|é;@Åœ?¸<@Ðø›?·f@@NY›?¸C@"Çœ?84D@Aƒ?®IK@¦'ž?óK@ªØœ?tÃ?@ïœ?•¾;@)Cœ?‘’<@í œ?Þ?@bî›?lA@u›? ñB@†¦›?§E@h„?%KK@äñ?E’G@ôVœ?|?@Núš?ºl?@ôf›?x¹?@Œœ?Üi?@Ïë›?¼ÆA@j›?BÅD@Ô£œ?yÆK@.?òH@;ù›?ŠßC@%E›?ޏA@|9›?(•?@çç›?bD@Æ›?¨0E@0›?PJ@u›? H@eî›?UÛE@Œ›?±B@˜‰›?ëE@?›?Ÿ£I@rðš?.VJ@™¢š?¯jE@à›?CG@ày›?‘½F@Õ5›?¿»I@-˜š?I@dš?SÎD@tœ?K@3Þ›?dJ@‚¿š?:qH@RÚ?ˆ]F@%?[ºN@SÅ›?º4K@bÔ›?BžH@Çœ?„uM@IÚœ?p?K@J?^=L@ÝU°?^ @pN±?ð¦@¯b±?ø&@´T±?†@W¼±?c@„þ¯?°ô@Ar¬?öz @ˆe¬?vŒ @N™¬?õõ@7š­?FT@’«®?øb@3l¯?ÙC@†Í°?Ri@4ü°?Gî@/±? O@±±?œÛ @±?Ë @+±?­X @¾µ±?!ý@žm±?ú@^e®?Ê@º–¬?2Z@0¦¬?Ëõ@âɬ?_¸@¸0¬?Eu@É «?z‘@P'«?zD@±«?"~@†N«?²ë@û`«?µk@{¬«?Ï÷@¹¬?þx@9D«?Ò@㮫?Z¢@—C«?Á@èD«?§Ý%@Úˆª?CÑ+@Ás«?¢¨.@ªã«?Zb-@,¬?\*@O«?QU'@‰©?í $@iV©?' %@Ùì¨?{ê&@—x©?]±%@%ü¨?«‚'@g®¨?iÑ%@ð’¨?É÷"@p¿§? ô @Ñ §?Ÿ‡ @l/¦?n½#@¤Ô¤?ƒr%@Zo£?+&@€ ¢?æ<%@¸Ä¢?Ú&*@X £?XÇ/@¶?ó?9@Å–º?àÝ5@gÀ?4@2øÇ? Ì:@ CÎ?æï@@¸Ñ?<B@pNÑ?žÊ;@«Î?'25@<É?Ý;/@}Ä?óÚ"@Ü­À?p5 @X.Â?‚wý?AÏÃ?ÊÄñ?ÈÄ?H”ë?¨ZÂ?ñ-ë?ë²½?pYÚ?­Ý¼?Ë?ù}¹?ååÆ?µ´?›ÜÈ?à?·?>Í×?À‹¹?f—ì?t¼??u@Tú¼?©„@Ó»?°D@Ú·?ÅŠ@F·³?´@¸°?B*@éG¯?'ø@‡X¬?ß@9îª?\|@ÞÀ¨?Ũ@ˆƒ§?D@ž[§?ùú#@³§?þˆ%@ç §?(@ž§?ØÎ.@Ù¢¦?/@Ûï¥?*@Õà¥?§&@w«¥?F…$@¶ÿ¦?þ#%@ó~¦?†%@9¤?¼°#@ߣ?QË&@… ¤?$H%@Dä¢?Û#@Ä”¢?« "@« ¢?îÂ@r¡?þM#@³¡?¹Ö$@ ì ?˜g(@+›¡?D¥)@9â?5è,@Ǿ£?#d.@9‚£?Dš/@Jé¢?=q2@Y®?DÀ@Z“°?&@NÓ°?@Ȱ?9@­±?Ö(@+n°?®•@>|­?Þ @y¬?+m @ Ǭ?Ù @è¬?ê@’®?ñÀ@-Õ®?\†@q¯?b@Äå¯?æ>@ïß°?xÇ @Á²?nb@Ú±?ì@à³?!>@a³?MV@";²?k^@¬¯?ø@Å®?2@Y2­?”Ò@¡­?ê@úo¬?Ę@uñ«?‹Y@JÒ«?…u@參?ùK@ív«?©0@¹«?öb@™™«?+æ@·ëª?O@Ò«?ÅÈ@Uþ«?IÒ@-âª?€Í!@Tèª?ÁË%@ÛѪ?¤ã+@¼ª?+ì/@s<ª?Žœ,@^’ª? #'@©? ×$@:l¨?õ$@¯J¨?g $@òÀ¨?å}!@dœ§?£$#@²]§?ª&@qY§?sm&@wò¦?'%@ýU¦?`Z!@Œ³¥?BÓ@ƒ÷¤?G6#@4«¤?^x%@m¶£?‘#&@„®£?ùã(@Ò£?Ñp-@Ñ#®?šù?›H¯?†ò@óZ°?3Y@n°? R@ž°?«i@6K¯?“%@àÞ®?¸@‹­?©@…ó­?WG @%­?0,@샭?„@%½­?sÒ@)$¯? €@¯Ü¯?åÖ@q—°?¸=@Ëu±?h@„m²?}|@~4³?,@e¬³?8Ó@ôƒ²?*@,Ò¯?„ÿ@cp¯?é@O³­?|@WI­?Ã@R¬?4§@¨«?Oƒ@d «?‰@wS«? ×@2¬?wÆ@³í«?½‰@(D«?×@ø^«? @‘¡ª? S@v2ª?¢Ç @ÿª?z&@8«? .@£“ª?Í/@³ ª? É-@ÇQ©?ÇØ*@mר?åÒ'@Êó§?+©#@˧?DÚ"@.¨?+#@qæ§?À"@5é¦?N;%@&§?e&@;§?0%%@»N¦?þi%@¥Â¥?£ #@0W¥?ã¾"@’ò£?`Ü"@<¼£?>#@4©£?ö%@RÆ£?н)@×’®?hô?ùR®?žû?´¯?@þù®?]@¹}®?W{@@å®?§@‚¯?øò@ó²¯?V@/}®?[ß@}ͬ?‚D @¿w¬?uÔ@¨õ­?Äo@Ñ#¯?@n‚¯?£H@Ö¯?Du@‰#±?s@J ²?û{@Øb²?Äÿ@ÖÒ²?Îà@IJ?À­@'g°?Ñ:@*ˆ¯?¹@ïc®?¬Å@U-­?±O@Œ¬?|X@òr«?ùâ@vƒ«?P{@ª‰«?_@¶ú¬?ìí@xO¬?‰9@»²¬?U€@H¬?Ÿ›@":¬?(¨@I¬?;²#@ )«?Ïþ)@Iˆª?É»-@}‡ª?0"/@ľ©?£ð.@›©?9ï+@Ùò¨?æÝ'@ö¨?»•$@±í§?›"@Î*¨?¨$@á!¨?‘5'@ {§?¬Ã(@M^¦?QÄ(@ R¦?_S(@Ú¥?22&@L¥?ŒB$@ô¢£?=@#@Õô¢?]]"@È)£?Ú$@]Ì£?È}'@À¹­? Çä?ÊÝ­?¥[ð?À®?hü?f °?Coû?pa¯?©·ú?wÝ­?Ql@ðö®?IW@ ¯?N—@„­?„R@¹¬?« @u†¬?x¢@¹ ®? õ@¡Ð¯??Ä@g…°?`ë@±f²?a@¤±²?«S@xO±?¢@Ó%²?’ @Û²?Σ@m÷±?œl@•a±?\5@¯?ª@Kd®?XL@)€­?6a@›¬?":@O¬?ÈS@·x«?¬@r6¬?Mþ@Ýd¬?Ä9@½Ø¬?‘P@Hˬ?ƈ@´¬?}e@«?`!@1R«?!Á$@jX«?”*@V«?0,,@¿Vª?b/@À©?³+.@N¨?â (@¨§?v•&@r#§?žh%@4½§?cÛ"@¡á¨?.h#@Þ¨?­_$@%7¨?–ì&@¡å¦?ø¡'@”Ã¥?†6)@¥?ø '@»[¤?M$@eâ?o!@…©¡?G "@S¢?äí%@߯?öîÜ?²\¯?jLç?‡‘¯?²&ñ?y@±?Cÿï?ʽ°?Yô?¢Ä¯?šÄû?Ø °?š!@J-°?׿@²ù®?‡ä@Ѭ?Q,@L8­?È× @¹‘®?dP @‘°?Œþ@3o²?²+@¡Ç³?q@BC³?f‚@ɱ?É@~Ô±?0g@˜ï±?Aœ@zU±?ïr@ɱ?øH@!M¯?^ì@b¯?D@’1®?‘»@úͬ?¨Õ@ ¬?¶±@í¬?K6@|w¬?o›@«é¬?wf@óR­?aõ@ʳ?øz@.µ?ª%@• µ?/¿@ïèµ?x£@´?8„@£³?¸]@¦Í±?(ƒ@k¼±?‡?@â±? t@]ð¯?â4@<$¯?9y@¶§®?üE@­‰®?w1@_Û­?9Ã@)W­?KN@ñõ­?c0@DÑ­?4˜@ê­?w`@f°­?ˆ@uñ­?`Â@E¯?±š!@sª®?9p%@Ê{­?‡{'@ªA¬?Ÿ(@¬?{*@Á¤ª?m'@Wª?jî'@%n©?÷è(@Ö»¨?­¤'@w4¨?= $@Õ¥?«|!@ϳ¥?ô¦@¾`¤?=ó@m¤?Dm@AÆ£?]ã"@qg¢?&$@‚À·?O“ì?N·?óèñ?Þ‹¶?]Ló?b)·?‹ìö?²i¸?‡û?{z·?kŽþ?¯Ý¶?+T@uôµ?Ës@H¾´?ÂÏ@‚µ?xQ@‰¶? _@Âgµ?µs@(ñµ? L @±¶?{Ù @NÞµ?z @b´´?¹Ù @&øµ?Þê @êµ?‘@íD³?jJ@ý¿±?h/@ÇR±? :@Í'°?ù/@ò•¯?r$@Q†®?§@3ˆ­?Š@ô,­?È®@ÿ¥­?Žò@Û®?+]@Ü®?Ý@Òû¬?x@²Ì¬?×@‰­¬?°m!@3w­?ì$@¾ƒ­?j‹&@~æ¬?’…&@äN¬?¡ð'@kZ­?§‡'@~¬?ÞÊ%@¶o«?A˜%@&ª?ˆF&@'P©?ã¡%@å¨?ÌÊ$@=¦?…¨!@-§¥?– @Õ7¤?!@5&¤?t@øN¤?È@%—¢?µ¼ @è¼?Þò?Ä›»?×›ö?J¿¹?ÊTø?‰ö·?L|ü?p¹?Y=ü?/d¸?UÛ÷?˜·?» þ?(Ø·?5“@f•·?¨¯@ÕE¸?n@]¹?ùÝ@Ź?bZ@k'·?™ž@öa¶?‰@–Ƶ?Q@À³µ?ͨ @®÷µ?¤ë @°6µ?o¥@Ù¶³?i@¥ã²?S†@{¯±?­Ê@:)±?é7@CX°?à•@öL®?r©@*­?xL@zx­?†ð@Ä_®?³•@TM­?´‘@›b­?8W@Ò¬?×Ó@Ü­?äÄ@Hš¬?ä#"@^„¬?0A#@‘ãª?Üö$@}ýª?.ë%@Ìó«?ü'@LN¬?ø„(@ÌÛ«?B'@mgª?%@Ì©?~ö"@ޏ§?Á¡#@ܦ?…Ö"@zº¥?Õâ@U¥¤?Íó@¨¥?ÌÎ@÷¤?x@þ £?èÇ@Â?6 ô?b®¾?f\þ?žv»?e@*\¹?Öú?A“¸?©û?P*¶?˜ëø?§;¸?e@hò¹?Œ@i¡»?‡Ð@2ļ?ö–@¦á¼?xé@Ô¹?Ó]@1R¸?iŒ@SÀ·?ë<@¼å·?h¹@Õ¸? 7 @¸ƒ·?ar@²Àµ?K³@ ´?ú^@Ç ³?ä@Èá±?Ô@Bñ°?ëU @Ò½¯?à @ca®?&P@H¥­?x>@µÀ­?‰'@Ðì­?ø@6,®?&@Ž€®?`«@v®?Ãá@ñG¬?¬Y@˜«?-~@2›ª?Áb@vò©?6n@Ì?©?ù¯#@Âè?¸=%@³ª?vŒ$@hqª?'ô!@½¯ª?É "@N(©?xÇ"@‡ž¨?Ýk$@oä¦?Ç#@V¦?Ä5 @tÔ¥?¸Î@Xª¤?Éê@_ͤ?å!@à²Ã?!”ü?º%Â?4Ô@ãµÁ?@é½?²§ÿ?ዺ?Öã@æÏ¸?äÿ@ í¸?1@'ó¹?JÔ@e¾?Ý– @¸Þ¿?i @f]¾?ò° @åt»?Ýø @Qhº?=… @s\º?Âl @`¹?€ @ <¸?!“ @bˆ·?2ë@ŒX¶?ƒ÷@H´?¸þ@³?›ö@¥þ²?áö@0n°?Ž@<¯?Ÿ@4É®?ÿç@Ú®?I;@kÈ®?«¬@}®?[ö@<®?`@õP®?á—@Q2®?2æ@fÛ¬?œ¿@F^«?ñ1@ $ª?-E@¦¨?ˆ @’N¨?_Ž"@@w©? é!@Õ«?€á!@1$«?dâ @:«?Ç @%ð«?u*!@Îéª?¶p%@̨¨?ú‹"@‘„§?eý@³#¦?0©@KÔ¤?Eý@CÁ?§ã?ÊdÂ?ÕÞû?à'Å? ý@ ‰Ã?‡…@ÊÁ?ˆ@Ú¾? @±ñ½?’´ @'D½?¦Ñ@áû¾?Þµ@¾É¿?†‘@{i¿?øb@¢ê½?7Ã@å¾¼?/Ú@m†¼?r+@z»?7\ @…u¹?ÃX@ð<¸?já@Òb¶?‘ @Úö³?·ç@˲?»@¾’°?âó@¬é¯?˜m@ˆÎ®?ò6@U®?Q.@{Þ­?íL@„Ñ®?¤÷@U+­?Q#@­?â0@Ô­?ĸ@aç¬?eó@ÅÆ¬?EŸ@…{«?Cl@šÜ©?—@/©?+Û#@eb©?$@³Ç©?ë #@À¨ª?(æ!@÷‚«?ûp"@鮫?!&$@u­?hF%@ضª?%@Ç7©?!"@j‚§?ÉO"@ׯ¥?¿Ó$@XñÀ?÷1Å?–‘Ã?õ\ß?Å\Ç?,âñ?ÔÆ?o@HCÅ?›?@\mÃ?­@˸Á?«á @|cÀ?Ø@zÀ?ck@= Á?>s@[cÁ?L@¢š¿?@p@Kö¾?R @kŸ½?®§@Ýœ»?$‰@«Ð¹?ë5@"M¸?B–@|϶?,$@ 5´?¹@ ’²?–¼@êç±?I²@ı°?A(@$û®?zš@ÌR®?ÁÄ@J®?Z0@ý´®?J‚@ôå¬?¾C@}&¬?µ@qà¬? ï@窫?˜o@(òª?é-@ñ©?÷B@’ª?TÐ@LȪ?°x"@sIª?©0$@–©?÷$@‚ ª?~`#@.Vª?¦#@ɇ«?€%@©…«?Fé'@2w©?’_%@› ¨?¨/"@]Ä¥?2é @w“¿?ŠÝµ?P¾?–'Æ?•"Â?˜>Ù?“-Æ?hò?eÅ?'B@A.Å?Ù`@(Ä?S @z–Ã?ö.@-åÃ?^Ì@û Á?t@XeÀ?Íý@¬#¿?_@{ƒ¿?ze@¥j¿?Þ@\A½?í$@Jmº?Oö@|¹?Z£@t¿¶?Y@µ(´?Ô@µò²?š@(á²?W[@áè°?aÞ@B±?Y£@ °?;Ü@M¯?â&@Ö¢¬?Ç¢@)O­?I@?t¬?d|@¯Ï¬?3¼@Í7«?Kú@Ì{ª?mæ@.«?˜¹@;ɪ?Ó¿@ëz©?‘$@*Ž©?G`&@”Ù¨?]>&@iÀ¨?ž”$@ .©?€A$@›£©?$À%@dÅ©?•§%@2¨?¿z$@HÏ¥?µ>"@ž?q¦º?Ô©½?IÀ?_°¿?-Ê?TxÆ?’?Þ?FÂÄ?Сù?~Æ?!_@lÅ?* @&CÅ?+? @Ì*Ä?ÛÊ @HmÂ?¿‰@«¿?,[@6Ö¾?ý„@ ¿?ø@äš¿?2¹@nï½?8†@vÌ»? ´@Ãܹ?z@O¸?‡×@fïµ?*:@‚µ?ö@ú³?ú@ß²?_¿@×±?­@[ò¯?À@˜¼­?¼Ú@ä«?¸@ãï­?¾@@ý¤¬?K3@®¦¬?@‚¬?uS@Þî«?º@B«?µŒ@ƒÍª?äª@¸Sª?L&@Ú€©?Ã4+@L†¨?ÿ+@½¨?Ÿ'@÷ݨ?Ø&%@ö©?>§%@À¡§?[û&@xm§?ê$@êV¾?Q-½?¿&Ã?ßÙÁ?mdÂ?ÓyÉ?”„Ä? ­Ó?Ï Ç?°å?rÅ?´¿@“¶Ç?Ç@åªÇ?4’ @%Å?§Q@~ŸÃ?b9@0QÁ?@¤®¿?c@Ô¿?kñ@…º¿?½@éξ?+q@N½?7@9£º?h@d]¸?ß®@³|¶?8R@Ï´?©Ì@Rû³?ž@z)´?O@IJ?c’@²Ç±?Š@ãi¯?xÒ@E®?’Ÿ@ݸ°?æ¹@Ñë¬?=@ªµ¬?c”@.ï¬?km@7«?N5@¢ª?Nk@iª?Im!@Nrª?ñª(@³W©?þÎ/@|¬§?‡¢/@Õ¢§?¶Z+@ã§?Ã;'@K1¨?_Ç#@–P§?àJ%@ÖsÂ?ø?Å?€ÄÄ?Ä»Æ?²òÆ?›Ë?’}Å?mãÑ?tÎÃ?ŽÖ?––Ã?©xâ?…=Å?|rô?$°Æ? Ï@ìÈ?¸p@=îÇ?ï€@»çÃ?„m@«¡Â?S€@$¹Á?pK@þSÀ?Ķ@² ¿?í²@&ƽ?@ß¼?k|@ãÔ¹?“.@l$¸?ð@Ý·µ?^Œ@7éµ?§¦@€.µ?`@³?xË@[À²?w9@̰?Ç*@ª?®?ø@Ä®?¼¶@ˆŠ¬?—ô@Ö‰¬?ì@#ú¬?N»@i¬¬?Fl@j­ª?Ѭ@s’ª?&!@Wé?¨¬'@¯„¨?ž/@ƒ§?Þ-/@ü4¦?n+@u¦?ª'@ºÏ¦?È%@7ŒÃ?ŸÎ?÷Ä?gDÐ?œJÅ?·,Î?ä–Å?D“Í?J{¿?ï}Ñ?'‰¾?W¯×?ÇéÀ?¥xà?miÃ?ñ=õ?ùÉ?¹> @‹¢É?J‹@Ú²Æ?ad@3‘Ä?”y@jeÁ?DÐ@HºÀ?jr@m À? ø@0V¾?â@`½?MZ@„·»?@p›¹?íÉ@p%¸?½¶@‰Â¶?§ @Âò´?ox@u_´?è%@ºg²?›÷@ë¯?D1@šâ­?ÃÉ@Ç®?0Œ@Ý ¬?v‘@@à­?ó•@“\®?<„@Ín­?‰@ºª?»I@@—©?ž@–O©?Õ¨'@<Û¨?%˜/@äܧ?Y..@Ü]§?tA+@Ûf¦?¨1(@n8È?“þ×?‘ÛÆ?xÚ?:ˆÄ?ÉéÕ?âdÃ?oÊ?²žÁ?ž Ë?ý@À?x¶Ì?>¾?P%Ñ?0‰À?Œžä?£‡Ç?Ãý?ÁeÌ?ŠÓ @É?$g@%æÅ?Sû@¾ Á?ãº@‡À?[í@’Ǿ?Œ@摾?d~ @.Œ½?”š"@ßl¼?Œá!@™9»?ƒÕ@ ¤¹?që@·?kÐ@]ƒµ?^/@aA´?õ3@G©±?[<@G:°?P@¢R®?+ç@óü­?5@ã%­?ø.@di®?ÚF@› ®?ÊG@¦ï«?Øì@¤1©?¸@8\¨?×Ä@U«¨?nF)@M¨?ÞÅ/@p§?• 0@§?¼Ù+@YyÇ?æã?ÊÅ?Öå?¾ Ã?ßÝ?‘Å?ä*Ì?Ê¡Â?<«Å?AÂ?ò0Ã?—Š¿?›¾Æ?îÁ?KÚ?'lÄ?Ùâí?ˆöÉ?ïÿ?¼Í?ïÃ@ËÅÊ?ºÏ@KÃ?ñq@Ö†À?Þ¦@uç¿?ë›@ðì¾?÷Ã@5o½?$\!@†²½?ù$@li½?rv"@Ï•º?Ú @¯}¸?@éï¶?ü‡@ÉŸ´?žY@`ɱ?÷É@Pm¯?o@ùÊ®?ºÚ@ Ö­?ÞÑ@™–­?Þ#@m­?/@=ˆ¬?Ÿ~@`"ª?Þö@pB¨?_f@¯§?„n @¨?þÞ&@ʧ§?K-@5[§?Hâ/@£‘Å?uéê?ÔÄ?Ôtç?c€Ä?ùHÜ?¤BÅ?üEÎ?þ{Å?ªÈ?+—Á?vÃ?3:À?¤»Å?$-À?“ÅÎ?q<Ã?N(à?þ×Ç?èñ?µÕÍ?)ÿ?žÍÌ?£ @¥æÅ?Ïr@ ò¿?c¯@²„À?ø@¢³¾?+@z½?·N@ˆ¨½?h!@}c½? m @žÎ»?œÅ@…X¹?cw@¿¶¶?À@@óí³?-M@Ó`±? å@Ùm°? @2ï?YK@%­?Ó@™¬?ã7@J€¬?lb@Õœ«?´Ð@?yª?{@»¨?Š&@iƒ¨?áŒ!@§§?%@_§?•“*@þ×Ã?ñ?r¦Ä?A£è?ë—Â?)­Ü?Ý>Ä?q9Ò?€:Ä?®@Ñ?<¶Ã?hÔË?ÃpÂ? Ê?Å/Á?ÿCÉ?ºCÄ?’×?öÇ?Öã?*Ë?î?Î?ù@mÏÈ?žu@â‘Â?ű@½9Á?ÐC@ç À?ï«@ÌÁ¾?iX@á¾?I @öQ¼?c @ ɼ?q@æ~º?…@u¶?¬÷@³Î²?£$@„i±?ôë@Ô´¯?t‹@d¯?”@áG®?±@¢­?kó@Îj¬?Q1@¶<«?ö]@#¤ª?µq@Ùù¨?»‡@Kw§?ù@R2§?Ðý!@ƒ«Ã?8€ò?ŒöÃ?=Óê?<^À?ß?XkÂ?!_Ø?Š·Á?ÑÈ×?™Ä?¯'Ñ?ˆÏÃ?P™Ë?iþÃ?-Ê?¬7Å?aÔ?Ÿ‰Ç?bûß?w¥È?^-ê?,‚Ì?€ ü?f÷Ì?09 @ªÈÆ?Nƒ@ÎÂ?œ @ôÀ?Å}@a?¿?>!@ ô¾? Q@ûO¼?b@ûÿ»?È%@¯'¹?'û@ Ùµ?v­@‰ö²?˜@°Ý±?Žô@’˜°?kV@ÿЮ?«@ ¶®?0a@7Œ®?+h@é‹­?ˆ’@ðs«? ô@Šª?Ô:@¼Î¨?‹J@tu§? @é¢Â?`û?HÝÀ?©šî?Ç=¾?±©ã?§¿?žÙ?(Ô¿?uª×?pT¿?¹±Õ?ª™Ã?ò=Î?ƒƒÄ?¿~Ë?¯#Æ?r¼Ò?Æ?¢xÝ?ÜÇÇ? øã?h|Ë?½ï?]NÏ?«ú@RË?œ© @æÄ? º@ÌÁ?Â@ À?õE@=©¾?1,@tɼ?èì@Ë»?Ÿ3@4w¸?; @‘µ?ü<@qš³?Cj@[ô²?>Ã@ò ±?ƒµ@„w¯?,@ƒ¯?£Ò@Îø®?< @‘¶­?ª/@¢¬?w@J¨©?1@XL¨?t²@ëdÂ?8@#¿? Jø?®¤»? …è?6¼?ôØ?rO¼?žQÒ?¼Š¼?ì^×?iÝ¿?-gÑ?hÍÁ?‰Î?äÀ?ºíÃ?Ñ?i¿?™)Î?¨ÎÂ?ñÉÈ?èÐÆ?5AÄ?ˆTÅ?Ó˜È?ÔÉ?$Ä?\­É?@‚Ï?/ºÈ?íTØ?OÇ?hÉß?¼ËÅ?šRõ?èÅ?ç§@7HÅ?Gñ@!kÂ? 2@¡K¾?"ž@•¯½?™@rr¼?ÿD@»?nO@²·?âÎ@ôÁÌ?µ®'@|ŒË?„P,@„éÉ?¾:.@7<Æ?{i$@ç6¿?}ç@:b»?¡Ñþ?Aº?üå?²t¼?WÙ?`ºÀ?‡µÔ?\Ã??ßÐ?gÄ?ç´É?YïÈ?£Ê?OÌÌ?¸ùÊ? ÖÊ?WuÎ?7SÉ?™„×?ìÆ?¼{Þ?B¨Ã?P ê?×Ã?YÝó?Ã?»Âü?Œ{Á?Í.@±š¿?´@ªÀ?DÎ@ß½?ÈÂ@ÈP»?úH@§yÏ?©S&@ÌÍ?9î)@6%Ë?ùÄ/@æÇ?Ìa+@OÕÃ?èM@±ú¿?k @+â¼?©yú?‰½?¢Œá?b)Á?É¢Õ?PÒÃ?bkÐ?% Ä?ÂtÈ?þ»É?Û£Ç?@Ì?ÿªÎ?äûÌ?Í?®ŒÊ?ºÔ? Ç?ŒÝ?ŒÿÃ?Ëoæ?Õ3Á?§äï?M8À? ü?(ýÀ?E@ëÌÀ?·] @²ÄÀ?3@3¾?¶þ@ëÒ?žÅ'@ÍÏ?N<(@‹ôË?¿x*@µGÉ?«¦+@9Æ?iR%@yÅ?â@@”‹Á?`«@AÂ? Oî?'dÄ?kÜ?U™Å?ï²Ø?dßÇ?ðñÎ?:hË?iÍ?J9Ì?Ù~Ë?ÝïË?q«Ê?dùÉ?x¢Ð?ÅÆ?ÁÙ?ÑŸÀ?‘WÝ?ʇ¼?Íã?Ýs»?uñ?ŒÐ¼?äû?qF¿?Áê@)¿?é” @f$Ô?îœ-@©kÎ?Úð'@¾É?±/%@D{É?U%@̱È?Ñ$@8|Ç?s@ÕéÅ?Îß @ý`Å?ñdø?âEÈ?éÐå?±ãÊ? 2ß?*yÈ?EGÚ?þ Ë? ”Ô?qJÈ?@xÌ?”Æ?+ÇÂ?N Æ?OJÍ? Ù¿?fòÔ?}¿?ø”×?q»?2qØ?È•¹?Jüà?s§º?–é?öz¼?äCõ?˜Ô?%±-@1Ð?¸P&@ßâÍ?h¤@0\Ê?Jµ@.FÇ?S›"@¼ Ç?kŸ@êÆÇ?‚d@õÇ?Di@ìÊ?~îô?1êË?®@¹Å?ÂÑ@YþÄ?2x @ÏpÆ?€@!FÅ?ãì?çŒÁ?óÝ?\kÀ?öÐÑ?Oë½?iÊ?÷¾?Ò?±6@û<Ð?S¶4@o[Î?-=2@ܯË?¸¤.@=`È?ïì(@hÀÄ?qJ@ïÂÁ?Cd@¼Á?šø@ƒÏ?ÿˆ-@›OÒ?R‰3@QiÓ?5—8@`©Ò?®µ8@•Ñ?Uw8@œœÏ?)08@1sÍ?ÑÜ5@=åÉ?,/@þÅ?¹#@¤CÃ?ðÚ@÷‘Ñ?Ns1@ÿŸÒ?¡.5@IÓ?¸6@¥ÂÒ?Îò7@ÜÒ?Þ˜;@eÈÏ?L¬;@òÌ?«È8@ª\Ê?™Ï3@i†Æ?Æ,@¾ÛÑ?†|2@ZÔÒ?Ø5@¸&Ó?RÉ6@É?Ó?ÿ\9@œnÒ?ã×;@ ¨Ï? €:@d«Í?_R:@ Ë?¡h3@µÏ?½34@ÁuÒ?Sv6@ZöÓ?&s5@ÃÓ?íø8@JÀÒ?Æ;@Ó/Ñ?ŠÔ;@NþÏ?D9@g¦Î?×w2@OÑ?œ¡3@J>Ñ?¦§8@.ÀÑ?"=@ÐðÑ?>ª=@™†Ñ?Põ=@ØÌ?.d4@h­Ì?®å9@±Í?æ;@‘“Î?Õà>@³}Ð?ò·?@LÇ?Å5@iÈ?e5@¦ÝÈ?‹28@XË?ùZ=@ÐÁ?1@,sÂ?Ål1@—Å?bÚ4@Ä¿?h×1@M¾?Â2@†ƒ»?Qp6@ t ? 37@uÌŸ?¡7@³‘Ÿ?ƪ4@휞?QÚ1@mKž?3ô1@㳞?ßo6@ðž?¨ˆ9@SŸ?»—;@@WÞ¢?›¸8@Pà¡?­¦4@Eò ?ÑV2@›æ ?j¸1@’y¢?ëf/@›B£?Î=-@Á¤?U(0@í:¦?Ø0@Dë§?Þm4@üá¨?4{9@ùª©?¸Ö:@Djª?…?:@÷ª?º<@Ýœ«? —?@ͱ¬?à°?@g­?Ýõ=@ÎK­?m)<@Þú¬?†˜:@{«­?ºu9@&î¬?ˆ™9@Vj¬?3´8@žÐ¬?èŒ6@}í¬?ÊÉ6@ìä«?ÜŽ4@Ðæ©?¬-0@cj¨?ד/@ß§?.@Óu¥?ñÝ-@ÁH¤?bè/@d¢?õ2@B± ?ܾ6@䳟?«:@ò ?W,C@ü¡?`ZJ@žÐ¡?šˆM@¹¢?·TM@Å„¡?fóI@r„ ?RSH@@Ÿ?uL@˜ˆ?x P@¡Éœ?ÄàO@¼m?NT@ÆŠ?pS@©x?°‹L@÷t¡?k6@nR ?¶•8@¾¤ž?sÂ5@¹±?² 1@?ÁÅ.@P?iÏ0@K]?H1@+š?#à3@’ÿœ?wî6@ä÷œ? >@=O?iž@@°î?²D@ð ?Y¬F@î ?uÚE@aõœ?ŒœF@2Y?vTC@⮞?µ9C@ñAŸ? ùA@ñ›Ÿ?г<@ Ÿ?š)4@© Ÿ?¸¯+@]èž?«}#@?ô& @ÈŒ ?à´@œz¡?a@#£?É@à£?üÆ@8˜¤?x›!@4í¥?ÀÁ$@7­§?‘¬$@˦©?–þ"@–¬?ƒ @(­?n@Ù­?¡©@²Ò®?!@˜m¯?öò @¾¶®?}‘&@Rî¯?W’0@¯}±?Q®5@†z³?iI4@ȶ?]4@«–¸?®y5@¼º?И5@ä‘»?sù3@UŽ»?_y0@Éͺ?Ñ-@˜áº?º'@2º?¯"@@±¹?KŽ@Ѝ¹?€K@!(¹?ZÕ@—L¸?tÜ#@ë—¸?ë‡%@‚¤¸?CA(@éè·?«I/@¦Z·?Õu7@…þœ?k{L@;?ÔÕO@ÏÉž?Ø‚P@å«¡?W:J@T¢?2P@(»Ÿ?žAF@ož?ræ;@ÔNŸ?nw;@÷3 ?ú?@¢¡?DŽ=@ÕX¢?>:@CE£?¬ø9@”é£?i9@ò8¤?@95@ïd£?¤D2@ö¤?òú6@îf¥?›Y>@W†¦?CëA@w•¦?æ"@@†V¥? Š8@lù£?û}1@ÍM¤?u˜/@ûe¤?¹m1@Li¥?T„5@Éó¥?©85@ Ú¥?$Ü6@å!¦?X,7@Ìȧ?‰Ä:@³õ©?Ķ=@yí¬?Z½C@&¯?ŒgF@þq°? ;D@:e±?]ú@@•M²?T-9@ëµ?üÈ3@bú·?ì-1@ˆP»?-@ž½?±+@½?Æ{*@?³½?¡s(@|`À? )@¡Â?‘ø0@ßZÄ?:@ ÏÆ?Π:@-^È?Þ×8@¸éÊ?Èý6@Ã-Î?*ì1@É5Ñ?Ù/@ë1Ñ?Þÿ)@tÒ?$U"@¯ÛÐ?)O!@aÊ?Ú$@JÅ?’B)@"À?i>,@|Ó»?¨(@¶÷·?Ln,@LŸ?¸w9@åðž?^i7@V{ž?)U2@{Ì?Ì1@Z£ž?&5@8DŸ?þ 5@.àž?É·5@RÇŸ?îÉ9@‘Ÿ?hö9@À ?LÚ8@šM¡?¸M;@ ì¡?ûî;@ÄÅ¡?u 9@Ö¡?nY5@—¡?vc1@:¡?æ0@n#¢?êx3@v›£?Í¡2@ñ ¥? z4@†U¦?sR7@M§?" 8@ü ¨?$…:@vŒ©?K8@„ª?D9@ê«?xì<@Úœ¬?†è<@ G­?a=@®?‘ß=@p\®?0M<@P•®?Æ™9@ÖÕ­?Ä»8@£í­?³I7@Ï®?x.5@Ì ®?Pd2@z­?©>3@¨ýª? Å1@8Hª?±´,@Xç¨?1í-@Ûݦ?µ4.@Q¥?Ý‚/@N–£?½™2@6•¡?‡0@ì;Ÿ?×.0@ºŒž?¯6@»½Ÿ?éq?@Ù¡? E@ow¡?¾ÔE@5G¡?í(F@v ¡?Í€G@ÎùŸ??¾J@Ÿ?ÿ!N@zJž?ùP@òYž?Ý=U@äj?”ëT@fÌœ?6ôO@Ö Ÿ?CD8@4`ž?×Î5@þ´?z 1@¬?n—0@´[ž?Ï2@mž?ý 1@´iž?Þ1@Räž?Ôü1@ž?9ö5@1ØŸ?¢u8@z ?]Ü:@Ñ¢?©S:@×È¡?­/7@ç¡?Š©3@ õ¡?f’1@¹g¢?ãk3@i²¢?J7@TY¤?PC7@øP¦?î8@S¦?Ý:@¦¦?Mp:@Ï;¨?‰¬7@:ש?oˆ7@¦ƒª?zB;@î2¬?öŽ<@¥â¬?~Ù<@N)®?G <@- ¯?<@“–¯?/¨8@u©¯?f‘7@}Ô¯?`+6@b¯?׋3@ª¯?h40@â"®?á….@êû¬?X:-@ýЫ?ÄE.@èª?@ï.@N}¨? ›/@¢ƒ§?^Q.@ð¥?ßg0@Ä‚£?xà-@Ð<¢?´R-@¸q ?8œ/@Üšž?¾k6@:lŸ?k@:@qƒ ?ñ=@64¡?ÙØ@@ž¡?‡G@Ee ?wTM@z> ?(O@Ë” ?åˆO@q ?Ù/Q@$4Ÿ?R@Àì?èTS@Ÿž?vˆ2@½?ýå-@åJ?•Ø*@{K?LF+@Ü2ž?x2/@ Ìž?Ù0@,Æž?71/@º¢ž?~ª0@X¨ž?Î26@ÅwŸ?aí8@ ¡?k‚:@¿¢?]Æ;@䜡?̾7@›¡?ûY7@ ÿ¡?ÑÓ1@*J¢?ãs2@û\£?œº6@A¤?3ç7@Èæ¥?$ 8@›§¥?ð˜9@[ܦ?j7@t©¨?PR6@Ùµ©?ù58@‡îª?¸Æ:@X~¬?ß«:@$Ü­?ím9@då®?Àó:@c¶¯?`:@›°?«è9@µ±?|±7@K°?ÒF5@úw¯?dÁ0@»®? -@]ô­?¨*-@gÿ¬?ýz.@‚±«?Üø0@䛪?ù/@ø³¨?X.@PU§? Æ/@—¥?‚ù.@!’£?ÚÝ0@ï¡?m|3@½ ?PÁ4@ZPŸ?& 9@:àŸ?:H;@– ?±=@< ?ÇA@@uÒŸ?\F@lëŸ?Ä N@°“ ?`|Q@þ¢?lU@íä¡?„vN@o ?u‘M@†W?·+@í­?qÂ&@îá?\Ü'@%ž?ñÅ*@à…ž?Å.@Ÿ?›c3@? ?o°0@;ðž?Kr0@Ÿ¹ž?ö¾4@HŸ?õG;@¬¡?å=@gè¡?÷#9@7c¢?Û:@ø@¢?«:@/-¢? 1@ÛC¢?/@Éë¢?+(4@ô‘£?x£6@ˆ¤?ÿ5@"¬¥??4@Ó§?˜2@a2©?pÜ3@á̪?rŸ4@nü«?,»5@¡;­?`D7@Õ—®?in7@jø¯?à¡9@U±?ÒÑ9@Vm±?Dê:@±?;@h:°?Šˆ7@…%¯?½g2@ØÒ®?î.@æ®?› ,@¬å­?!¦-@½…¬?+.@çkª?pC/@Á ©?Þù.@@§? Í0@ˆá¥?Bg4@Õ¤?Ÿ¼9@ª6¢?žÏ6@Ø¡?1(9@P1¡? ¤;@¨J ?ÌH;@?Ÿ?l?@âО?a=A@È/Ÿ?šA@]áŸ?E@)l¡?0fI@H¡?÷BM@?¢?€ÊN@è#?%T*@“R?^'@Ä»ž?9Ë*@,Ÿ?Õ".@èbŸ?À0@l ?µ3@Gº ?[3@^uŸ? …3@{CŸ?zü5@åBŸ?K7@ý ?£>@Π¡?|Ì;@úº¢?öò:@/|¢?‘¸9@Í¡?Nâ1@`A¡?çj0@÷Õ¢?Sˆ/@ ¯£?5/@ -¤?ã0@$ ¥?ã/@~̦?¹o2@:B©?b 3@Ù%«?@°4@Û¬?Ô:6@…`­?—_7@¹¤®?K8@Ò…°?\08@b °?úÅ:@G€±?í>@r±?|Ö>@²°?dÛ8@X´¯?'ç2@-w¯?»v/@eX®?.@S­?/@)P«?µs1@†ª?ì®1@ýب?ú¾4@¨?Á?7@Ö]¦?¬]8@¹»£?h4@¥t¢?´Å5@üO¢?h|9@e%¡?žÆ:@¡Ÿ?XŽ>@Ê Ÿ?cX@@lŸ?a°@@ਞ?*a=@=YŸ?x<@1°Ÿ?lQ<@p¥ ?)eF@_Æœ?Ê9,@|^?^†,@•}ž?¥û.@´@Ÿ?i*0@…N ?°Ñ1@ÇI¡?nX5@µ ?b»7@ÊÌ ?gý7@  ?/h7@Ýž?9@Ñy ?³T>@¹¡?}6;@5Ô¢?º9@'¢?Ä›4@ ì¡?o3@꾡?À-@I¢?QG+@c£?ci,@R©£?À@.@VÁ¥?1@×|§?—¼4@À©?æH4@ÄŸª?×5@?è«?Ä<7@Ú|­?Þa8@r¯?ûŒ8@o„¯?†}8@Òð?K²;@FH±?ƒµ>@6´±?}Ï=@O£±?ÕÅ9@ež°?v26@Gï®?dï4@²¯¬?¡è1@ç«?^0@Z«?Íé2@h«?¼)4@Ìj©?„G5@µ\§?í¹4@T’¥?„04@5c¤?—:8@Ë£?I;@_$£?=É9@âê ?à=@¼ÑŸ?Ñð@@‡]Ÿ?È»A@!Ÿ?ú<@™ž?î<7@P? Á7@8ž?„<@Šyœ?Iž/@ƒž?G÷.@‘©ž?f0@$Ÿ?%3@㇠?àM4@@@¡?Ü6@`y¡?À°9@÷©¡?uÕ;@ùïŸ?x“:@ûž?”é;@þØŸ?•r@@1ë ?5<@M“¡?ñÈ7@¢¡?Èh6@šˆ¡?˜4@qT¡?+¥+@Vp¡?+@­Í¢?nÅ-@Ĥ?Ó1@3‰¦?tí2@¯t§?³‘3@ýý¨?Q5@¡ýª?â7@¬¬?8Û9@b×­??7@P®?õH8@õ®?šX9@q®°?‰A:@I~±?Mb:@a`±?Ìr;@ºÙ°?c"<@î¯?ß°:@Uø­?JÑ7@΃¬?+ä5@Ò¬?êQ5@·ƒ«?¥ã4@¤ó©?P\5@AƧ?«ˆ2@o¦?û5@,±¥?b“8@ò3¥?jN:@u¤?2;@+¢¢?0ý;@¡Ú ?î->@] ?.i?@ÍŸ?ß³;@iRŸ?÷¸9@óbŸ?+::@Ÿ?Ö‚;@uƒœ?´Ò2@t ?,Ÿ2@¯}ž?ç.2@äŸ?l$5@8¡?#5@Ké ?æb6@È!¡?Lj:@ã ?ûD;@÷ ?ªò:@öüž?áç;@sOŸ?Vê=@kŒ ?£¿;@z™ ?æÅ9@‰¡?,¨:@ ¡?_D7@ý¡?ÏO/@÷5¡?]Ç/@ë¢?Q·1@ŸŸ¤?e3@¿ç¥?¶3@ïù§?N4@aØ©?õÇ7@ĵ«?OÈ9@0û¬?w9@ä—­?SB8@cþ­?wÀ7@“7¯?ËB8@#ó¯?ÁÃ6@’°?Œi8@}V°?L;@a8°?ü)=@E¯?wß<@#Z®?ÿ9@y­?YÒ6@ï¬?]ô5@æUª?Ä·7@‹5¨?YÞ5@)Ч?%T7@Ý*§?8@€+¦?gŒ7@è…¥?nJ:@‰û£?^…:@<£?×w<@ŽÁ¡?$ ?@j¬ ?8e<@(¡?þ+=@Žó ?Ð<@ÀÙŸ?=!?@†¤œ?d…5@-œ?1 3@Sž?5@º ?Ž5@W ¡?Þƒ4@§¡?žc5@r¬ ?•:@« ?Ç5:@ÃaŸ?Fî7@ ñž?hV;@ÍŸ?çš<@#  ?—µ=@"~ ?®1=@/} ? ;@˜J ?âå8@Ó ?}2@ÿž¡?òd3@ÿn£?‘q4@ŠÝ¤?¯|3@Ðj¦?ÄÛ2@î§?tW5@³ª?U>8@…Ü«?T8@$­?“Ò7@ëõ­?KÃ4@5x®?p(3@å¯?xI2@r®?ôk3@.å®?W 6@Œ7¯?‹:@c °?¥ã<@§¯?þ\:@ ´®?‡Ó:@eЬ? p9@¯8«?Ã:@@]©?*2:@¹Æ¨?=Ý7@숨?•"8@ù§?æ9@Ȧ¦?:)8@ަ?yú9@V¥?ÿY=@‡ä£?·€A@£?Rm=@kb¢?¸$=@‚[¢?àÃ>@ã ?½n@@JÂ?ž$:@ÿL? Û8@®#ž?‚Ñ6@#’Ÿ?2 8@·ïŸ?r8@) ? .9@—dŸ?Ô:@…Ÿ?„“9@àAŸ?)8@5Éž?ž]<@­óž?ó>@÷®Ÿ?ùY>@j\ ?<@ÿ ¡?bî:@Š ?F™;@G× ?iå5@„´¡?]y5@Õ?£?ë3@d¥¥?J=1@Öæ¦?ò„3@›X¨?\7@KDª?˳5@´Ž«?¸°5@߬?ž<7@Ùe­?ùh3@P®?ÓC0@O‰®?î_1@@O®?Ì0@¤Ù­??Y3@ȯ?»;6@À`¯?ž¢9@çx¯?šä;@lC®?,b>@ãñ¬?Lr@@à’«?Q‘>@öª?§¶9@^+©?Ü8@ù\§?Ù9@ÞѦ?/à7@»Ø¦?äû9@æ¦?1‹=@!˜¥?'?@è ¥?4ã;@M—£?/o=@J£?’ ?@ô½¢?7à;@YNž?ö·?@ ´?¸A@„Ú?ñN=@®ž?/£<@ÒÙž?hm>@ƒËž?ÜÔ8@=ü?x;@k•ž?j;@¨¸ž?¯=@Öž?»q>@õkž?Çt>@`3Ÿ?¶~?@ L ?ÕJ=@Ά¡?Zã=@Å‹¡?¶<@¿¡?”r8@ã¡?ä5@¤?Ý61@ä!¦?ô/@z!§?ÛJ3@g©?)Z4@pEª?Û5@ý«?Ûz8@šÏ«?‡8@Ö­?4x1@hð­?‘w/@`­?XÛ.@S ­?Õ„.@Ä­?¥/@ú‘®?|…3@د?8@¨­®?µ >@ö4®?dO@@dà­?ãëB@q¬?—„A@‹©?,ö>@×ê¨???@ßT¨?ÏŸ;@P»§?9@^»§?âk8@©¦?‡ˆ9@5è¥?„m9@6d¥?s0:@†å¤?\9@µ¤?e§7@êÓž?Ä‚D@ž?Ù¡I@už?ÛÍG@ž?iâG@Ež?.øA@Æ9ž?ßo<@Rþ?ü>@^ž?à=@=ž?"ñA@Mž?A@ü8ž?ú%@@!ºž?YA@T¡ ?îqA@½¬¡?ÂB@vY¢?Æò<@ò £?•9@’¤?Of4@“ð¥?¶ö.@TD¦?jb1@P§§?_´4@Zq©?‰f5@îbª?DC4@Þîª?M-6@1¬?=Ÿ2@&Ƭ? È/@bî«? 0@ØŠ¬?Ûz,@íë¬?Ĺ+@ŸU­?®|-@L­?6¤2@¼Ð­?žK7@š†­?‘û:@^®?P"@@ù/­?!E@ <«?$ÄE@Xª?ŒÃC@@˜©?^?@·£¨?Oî:@æ%¨?NÔ8@¥²§?')8@Wý¦?WŠ8@Ö…¦?g 6@ ò¥?îÆ5@ߤ?Ø?7@q-ž?‘éI@zBž?‘žK@@ûi£?â:;@€¥?I3@jU¥?Ãþ0@û˦?º÷2@o¢¨?3=3@•7ª?D¢2@ª?‹Q4@JP«?Å’1@Ý«?›-1@Ó¾«?î2@œ=¬?X¸0@aŒ¬?Ç¢/@¸d¬?=/@ ÷¬?JW0@À¬?‹ª2@Rø¬?X92@z­?’h7@·g¬?ô3?@j¬?œÒC@îø«?ƒÚD@‰)«?8ˆD@jª?ÊÔA@/¨?ðÇ=@$ŧ?R„;@¼§?XÓ6@­Š¦?œ1@²t¥?¬#1@‹6¥?+Õ4@iBž?&¡K@Züž?ÑN@6Ÿ?ìN@­ž?P@¤ž?-•K@º>ž?}èE@ºž?ÃD@ž?-ÚE@óŸ?`L@@Ÿ?MI@m] ?GQF@`± ?.KF@¿n¡?ÃÅF@2A¢?ÕýD@B¨£?Íõ>@cH¤?×µ;@™ø¤?‡’4@t¥?°Ý2@$…§?=ª4@Š©?Œv4@Þã©?x/3@GIª?:Š2@}v«?w>1@PÜ«?ñã4@u4¬?ã6@Iö«?È1@œ«?\*2@ü%¬?ü0@‰Û«?å/@ov¬?,Ï-@³«?0@È4«?¦Ï5@AY«? †;@ï«? Í?@¿˜«?‚\D@Ñêª?°E@ª?+ F@“Õ¨?-úA@OÀ§?@÷:@#t¦?È4@ýȤ?ñ,0@x¤?â30@· ž?€ÂJ@¾)Ÿ?©¦K@:lŸ?¨ªN@r³ž?&÷N@$0ž?VO@•.ž?J@þ®ž?öSF@ Àž?¤=J@zߟ?]TP@· ?£ÜK@„ç ?}tH@tô ?ÉK@:¡?bI@Y¢?½F@bì£?Gõ?@”d¥?{ñ:@ST¦?7@/u¦?>Ì7@F¨?P(9@(J©?í7@¯©?[Ó3@çª?/W1@Ú«?.5@]à«?š¾6@?S¬? ô4@¨ý«?×Û3@Bü«?§3@wP«? ¿1@P>¬?‘B-@Ê«?¦Û0@Sýª?1š1@&(ª?–‡4@yª?¯8@nª?Ì?@¥Zª?¾pC@ôª?q†E@Ýש?¯ÈD@éð¨?$n@@f§?Ä<@‰¥?24@Ѥ?Ð/@M ž?J¸H@ušž?¿†J@hýž?þH@¤ðž?œ…M@äÿž?ròL@mãž?w K@…Ÿ?6ÅF@£ÒŸ?”G@u8¡?ÿLN@ð¡?QžK@sO¡?ãJ@”°¡?<N@Šä¡?«“J@¬Ë¢?G@Ñ¡¤?%#>@ヲ?Hz=@I§?uè:@„è¦?Š?@on¨?#¢:@é©?„5@Ò4ª?Ïé1@È«?ÿ°3@.&¬?­4@°{¬?+”7@>|¬?l7@«?}M5@óö«?‹3@54¬?tñ3@›¬?î¾5@:÷ª?14@2ë©?Øb2@å¨?Í(4@®J¨?tg5@B‚¨?Õ„:@'ø¨?¶'>@7©?ì”A@Vu©?½£A@¯ß¨?éÓA@âa§?àâ<@Ö¦?“7@DΞ?ß:F@d(Ÿ?uÒE@TLŸ?ÚD@ ?•œH@'áŸ? ÓI@È ?ÜFG@oÕŸ?îG@º ?J@òƒ¡?ú•M@•S¡?å‰G@¡û¡?aH@p¢?îBH@ÊT£?Ì|K@µ£?†ÿG@ݨ¥?àPB@ÄY§?D–B@·§?Ÿ…?@|×§?}”?@ʨ?úË:@Ôz¨?3Õ5@ÆU©?„P5@$*«?¤ë7@ì1¬?lš8@Lí¬?‹^9@ä¬?YS4@œ©«?Ó 3@wr¬?½P6@ýù«?7@sy«?_Ô5@û©?4²5@oy¨?5'5@‡#¨?sÿ2@’Χ?Á'2@°Í§?3 6@ ¨?ÃK:@’Ĩ?Åw<@þ©?ü‚@@`Ÿ¨?'|A@t§?bA@¨.Ÿ?ÑòC@æþŸ?‰ˆB@ÍîŸ?q‹@@t£ ?ê1D@¡ ?«ªE@©¡?Š0F@^¬ ?2G@o=¡?¦L@?èDK@Ûf¡?ÎÁF@Lo¢?TTD@·U£?4E@22¤?E1H@¥?©0F@{§?¾`E@¯ ¨?eÌD@z¨?UD@U:¨?'ÏA@PZ¨?^3;@Ø"©?I9@I‚ª?§Ï8@+¬?á6@q_«?£ô8@NÜ«?y[5@¼î«?úU4@aª¬?/6@o£«? J7@îñª?gæ4@ØVª?%7@¿›©?Í»5@l*©?ËË3@C©?²92@‰å§?z/3@d9§?œþ3@\X§?ø3@qä§?Zf7@ ¨?Úù=@(ç§?¬ðB@W ?‰d?@¼Â ?}ã;@• ?W½9@ x ?Ä<<@æÏ ?ßL@@ô ?ÎjC@ÝI¡?S¨F@ X¡?d±K@ÇP¡?Ú£I@xŽ¡?nÜF@± £?@ªCª?Šv<@|‰«? £9@Á±«?§N8@S«?;7@`Ñ«?+5@œ¤¬?Ç/5@߬? ÿ4@Td«?{]4@S#«?Áf5@~ëª?»A8@ÒÔª?‘Ü6@Gn©?) 5@4¨?ÛÂ5@lž§?N*5@v¨?ˆJ0@è0§?Gû.@Š„¦?£F3@^¥¦?_F:@&‰ ? ­2@Çü ?/H0@I– ?õÊ.@ÃüŸ?_Þ3@÷9 ?wb;@I× ? &=@7%¡?ŸÏC@rÖ ?ÑFE@ÄG¡?+½C@I‹¡?ÑUE@¶‚£?'H@ÊÑ¥?aF@Zÿ¥?ùG@Êù§?(àE@P©?Œ1E@_¼ª?¶H@lÅ«??ˆF@ Z«?ÌïD@È«?ÇÓA@Ö¬?¸>@h¯¬?¢Á;@ˆ«?ìí;@l«?‘<9@+\¬?‡Ø7@J«?†,5@7ݪ?æË0@øáª?xl1@¹æ«?¿(6@·«? T7@Ž=ª?Äé8@[ì¨?Øm8@#ü§?ÏÈ9@ÛD¨?Eú4@ §?!2@«Ú¥?YÞ.@¥?@Ü0@17Ÿ?³(@‰!Ÿ?Ķ&@í¿Ÿ?nJ(@4  ?E\,@PÀŸ?œý0@ éŸ?*2@‹0 ?ÐO7@|– ?Ј;@d)¡?¨N=@£¡?tsB@3£?<I@ë¥?ŠK@×§?×ÑI@ g¨?#ÌG@ò©?ÀH@OÄ«?«™H@†Ò¬?ïqE@Ϭ?D{E@*‚¬?çïD@\¼¬?ÞIC@½¬?;kA@þú«?d¦A@q*¬?Dy>@X«?c;@/ª©?%6@¯Õ©?Òú2@ á«?•‰6@›«?Ü9@!ª?ãç:@\©?ã¬8@âѧ?½¾9@ñ>¨?@Ï7@¨§?e&6@sÊ¥?+[0@Ö¼¤?Èa-@óŸ?7z!@‰FŸ?+k@ʲ ?ëÝ @ 7¡?ƒû$@êž ?„)@ÍàŸ?*@ôdŸ?ÊA-@¤¼ ?rG0@¼¡?|ˆ3@С?|:@áò¢?vKC@-,¥?îgF@]¦?×›F@7¨?@ÕI@]qª?„ I@!š«?gF@=ý«?._C@ƒ'¬?¾F@­?ˆ=I@YZ­?—7I@¢¬?…NF@~V¬?ÛWE@ò~¬?a†@@ìd«?˜Û:@9Qª?@ž8@ß«?¤X8@2Ø«?Ž 9@}«?8@ål©?D;@ʨ?DP8@†(¨?­8@碧?Œy:@YĦ?<7@÷g¥?½Â/@]E ?¯@ ^ ?TÉ@`H¢?¢@"¢?è0"@÷¡?ú%@…Æ¡?aä&@¢l¡?ø&@’Ó¡?J/(@L¬¡?}:+@ÿ¢?]”2@½ô¢?‹q:@84¤?D½=@"¹¥?t‘@@°Â§?ØuD@剩?³cH@½ª?`éE@é«?Å×C@`x¬?QrE@ÿþ­?4K@™X®?˜´L@cÚ­?j¡K@b­?üïG@û1­?цA@Ü)¬?äÜ;@§U¬?‰;@an¬?pÒ=@Qq«?Sy9@®4ª?8:@vü¨?7ì8@¨?O9@Ó<§?2È<@z¦?€€:@Ž^¥?2p7@Ô;¡?T@¹À¢?Œ@i£?@x$¤?Œ“!@ÿÏ£?žŽ%@1¤?Ñ?%@÷¿£?(Ñ#@*å£?ÔŽ$@£¤?Ý'@ü}¤?ã®.@þ¤?¨j0@j•£?"55@_V¥?:@¼<§?Wà@@‚©?·HD@€Zª?ZöE@ßw«?_E@¤ñ¬?¹H@KÓ­?רL@÷s®?ĹM@H®?"¾K@¼¡®?¿˜G@Ç®?|žC@Ä•­?¡A@Œ{­?bÀB@žQ­?øæ>@¯Þ«?Ϭ;@¢£©?Í)9@ê©?…é8@§‡§?ñP<@ï•¥?b*<@¹Y¦?v6@!K¢?ïL@fd£?DÃ@¡Ý£?‘¶@Ë)¥?Ïe#@%¥?Þ«%@dÎ¥?ôÏ'@q£¥?²%@Ð}¥?sú&@ªè¥?v[*@í5¦?`,@1¾¥?·,@'&¦?Ÿû0@š¦?ÞI4@)¨?Û~:@ÚŸ©?P?@Y÷ª?ƒÜE@ˆ…¬?3}G@e­?ØDJ@ê]®?òšL@ä’®?&(I@¶R®?9I@D¯?£lG@B£¯?®D@©d®?ZE@Àî­?x–E@r­?ìŒA@óÙ«?2ò<@òwª?­T8@éé¨?bl=@ì¥?ȸ<@Zò¥?˜M9@,£?U@þ¾£?Ô_@gí¤?ð!@,•¦?xÙ$@;4§?'@UǦ?ÞÏ)@,g¦?zà,@%§?¢·0@}b§?Yƒ0@ØÛ§?Z]-@PY¨?(Î,@rL©?gæ,@®O©?…Ô.@Ì©?¹î2@—•ª?OW:@Ô «?¯C@¯Ý¬?ÏÚG@ÆO®?Û9M@¯?–JL@ñÌ®?ΓH@éÉ®?yŠF@ñù®?Ø]F@c¯?0âC@/¯?àqD@.®?i)C@ËI­?D}C@ìþ«?j@@'ª?¹Ž>@ò®¦?úÜ?@µ¥?AÏ:@V×£?Æš@­5¤?ie@Cƒ¦?Ä™"@<ܧ?H%@Ѝ?±"(@‚n§?Š$,@›§?úW0@ ñ¨?S7@ì ª?®z3@”`ª?^9-@Ló«?¸d,@¥à¬?þã+@:¹«?¦ü-@åÖª?ùV0@Øa¬?\o4@^a­?ÙÒ<@;œ®? sC@°?ÐøH@ƒÛ¯?ÃJ@'±¯?nI@ž{¯?žJI@˯?<®D@°5°?îÛ@@çã¯?…îB@Å­®?µRC@¶ï­?R8C@kŸ«?PB@…Ò©?D²>@r §?^ò9@F¥?ç @¢†¦?Ož @妨?p!@Ôx©?Y$@÷"©?óò'@àÖ¨?·t,@P-ª?m2@~ÿ«? ?7@Q¬?à4@¢ ­?ž¼.@x­®?®o,@¯?€»-@5Å®?Q70@à&®?-:/@vU®?³D2@.¯?D³8@Áe°?ò÷=@õ¼±?½gB@($±?8hG@u°?ÒJ@¬ˆ°?^MJ@¤Ë°?«§C@ƒ´±?ûÕ@@öG°?@zf²?ØšD@|)±?:0I@øò°?ž¾E@¤/²?÷¦D@d ³?&-C@qE²?³†?@ø°?Ïâ?@IO®?†þA@£ª«?óB@Aa©?¨Ÿ$@¯Åª?NC$@Óå«?ª,"@ÐL¬?š6"@Û^­?`³'@¡þ®?CJ,@¹Î¯?Ä3@0D°?Ëì2@šn°?c°0@Rõ°?Q÷0@,ó²?ë¥-@Út²?/ÿ,@pT²?A4+@f«±?S!+@EƱ?pù+@„%²?87.@úO²?b93@I³?m¤;@oæ³?™r?@&}²?:ë>@›³?U/>@*Û³??gA@´Ì³?¾~B@½²?#Ù>@銰?A@x:®?žýC@H«?$È$@*©¬?¯§#@êI®?&‡#@À%¯?ˆp%@#h°?NÜ(@7k±?Ú,@˜²?ÑŠ/@–õ²?˜Ä2@›³?*0@æò³?Y0@"´?.@~b´?ø0*@Îk´?ýŽ(@åÜ´?’À)@4e´?!’)@A´?í*@þí³?ñ60@+ä³?f6@t;´?f+7@=³? ó5@Þ²?EÊ8@²Š³?ÿž?@ª>³?:uA@¡û±?ÛË?@”°?ÍB@þ»¬?„O"@Ãy®?0ö$@En°?ÕÌ%@¦¾±?²a)@ï³?,@èÛ³?4ç,@Åô´?Â.@ܶµ?²P/@tÛµ?²,.@o¶?‹Ñ-@mQ¶?o´+@½Ó¶?ŒÉ(@eß¶?Ô:(@5—·? q(@ÏK·?8Õ)@ ¬¶?h%,@¬½µ?nþ/@bäµ?\¥0@'µ?eº1@²´?Ì‘3@VK³?ìá7@<²?ë«=@D…²?õ?@¹«°?@NB@YD®?J#@‹°?+s(@‹²?*@,ï³?Õû)@©´?w+@’‘µ?'ú*@oð¶?a+@"›·?,Ì+@¹¸? +@ñ¸?ÝŒ)@ø? Ò+@¿–¸?BÉ*@o¹?/µ'@°•¹?É:'@yP¹?Ò¶*@`”¸?p™.@~v·?¡1@>U¶?ôx2@ŒKµ?^‰0@ ‡³?xÀ3@Ã*³?+c6@­V²?éë9@©³±?µS;@Üϯ?u#&@vI²?ïG+@7R´?_\+@(¶?¿)@R.¶?Ô#)@ ¢¶?™Ì(@¡¥·?Q¦'@zu¹?'Å&@)Ⱥ?“ '@»?‘N(@ah¼?™ù)@4ç¼?Ú)'@ˆ"¼?žÍ%@Ɖº?V|)@Ò*º?ìþ,@Qй?ÄA.@ÚP¸?îÉ/@f϶?«ü/@L´µ?8«/@JZµ?™y3@Ê´?”5@غ³?A„6@í¢±?zœ(@IK³?<~+@’µ?Þ+@ Ô¶?^¯*@Ñ`¶?_Ù(@ËI·?H&@X„¹?tb%@Žâ»?I$@P\½?«¹$@³¿?z%@ðZ¿?KÓ'@é‹¿?5‹&@×!¾?MÓ'@ {¼?õü,@`¼?Dt-@¬ÿ»?"ý*@2ð¹?tœ,@Õ§¹?Eù,@ ¹?“Û-@Α·?.2@†¶?ÇÜ4@(Ú±?ím'@úa´?Cÿ,@Ί¶?+.@–g·?f+@·s¸?Ó<&@Д¸?T>'@*`»?Xp&@À5½?çŠ%@ðy¿?ï¼$@Å8Á?ã‹%@´Â?¿(@üñÀ?3 )@çK¾?/›,@lÓ½?Ð….@a˜½?„+@½¼?Yå'@8»?ã+@ÿÍ»?Ê+@s¡»?k-@Rr¹?P&3@Îú±?t+-@´jµ?Zó1@IY·?¸Ð/@Ôw¹?oV+@2¹?PÒ'@+ø¹?Þ#'@M¼?d°&@Úˆ¾?x©'@QøÀ?.G(@qÃ?ñ³)@QrÃ?ÏÖ.@ŒÁ?1Ö-@Þ¾?ì².@óë¾?\ .@K°¾?îÜ&@÷½?:H&@(m¼?bô(@d¼?Dñ)@Êœ½?ýì+@Ž ³?RÐ3@9¶?96@µÈ¸?Ó·2@•ú¹?´ô+@›€º?^­)@ÿÖ»?¿O&@/¾?‡š$@_Á?Ù£&@ÕVÃ?5Ð)@¼eÄ?Ÿ>/@sNÃ?­4@~þÁ?ñ0@ðkÀ?£W,@ÔrÀ?6Ô(@‰¿?ÑŸ$@TS¾?@NI»?q×B@/¾?'~?@³`¿?)Ö5@EÒÀ?Ì7,@ŸÃ?*j"@oÆ?ÎK@ÛÇ?0@~yÇ?æj%@Õ Å?9)/@êCÃ?›C3@`­Â?ì\2@Â?Ä/@ë½À?kl-@èUÀ? °*@çäº?È÷<@®¶½?ŒdB@37À?Ë3@@¯QÁ?Z7@g@Ã?Á-@@hÆ?d @h/É?u:@ºBÉ?æ¦@ÂÈ?Ø&@‚Æ?âº1@ŒñÃ?¤°6@7ÃÃ?úG7@=2Ã?lj5@W`Â?iÔ2@|D½?®ú:@Êó¿?“@@YÂ?š\@@¦šÃ?‚8@;>Å?x€+@žyÈ?Ó5@õ´É?,@ÿBÉ?nP!@{È?½-@ÛÇ?$)8@ÉbÆ?*ô=@nïÅ?w>@ŒsÅ?Ff<@à½?Sè9@áÁ?rT?@8BÃ?8V@@jiÅ?=ƒ6@!dÇ?¯B)@(ÚÈ?¸„ @«ÐÉ?æE!@“É?Òá(@¯É?¯À3@÷È?¼Ö;@ªÈ?UU@@ÓIÇ?wê=@O¾?½–6@³ÈÁ?Ûò;@ÿtÄ?ŒÛ<@ŠuÆ?«)7@5õÇ? ^,@“ÊÈ?­)%@7èÊ?ùÁ'@¦ÁÊ?øV/@«/Ê?Ï 6@bÊ?ë;@*åÈ?qî<@wÁ¾?m[2@dAÂ?äa7@5hÅ?î9@ï>Ç?À½5@|8È? .@ëBÉ?–š(@oË?‰*@ãSÌ?»¾/@9SË?mÃ4@%qË?ë7@øµ¾?*f*@›$Â?ú.@ Å?Ra4@&ÁÇ?ŸÐ3@Ž­È?ÑÅ.@ëôÈ?Äy(@ÈË?œ¥)@ïÌ?K¤-@S5Í?ø<2@»\¾?M¥#@±çÁ?6-*@âÅ?_//@œhÇ?…1/@%žÈ?Qš,@æÉ?ºª(@mƒË?nã'@œ1Î?6',@j½?°j @áÀ?Jì'@`‹Ä?K×,@ÍÇ?±/+@…3Ê?¼)@üÌ?‚î%@ûËÍ?`^&@€¼?cè@ 3À?9í$@ͼÃ?bb(@ëhÇ?0(@.±Ë?SD'@ ¨Ï?.¾$@jG¼?Án@âCÀ?'Ú#@ÚvÃ?½Ç%@¼„Ç?K%@$KÌ?ªà$@KÏ»? Ý!@þ¿?ÎÑ'@¢Ã?%)@ÂØÆ?} (@ऻ?'%@ ®¾?€+@aÑÁ?ñö-@,Uº?)@.J½?Ã-@E$¹?áÚ+@ݤµ?”8@Êíµ?.Å.@M¶?bï&@ï¿¶?«×"@r¶?ø%@ÝÁ¶?«(@;Y·?K¨+@?X1@ÇU¶?2ƒ2@´Hµ?Ç/@wŲ?#z-@@Ä®?žÊ+@Âfª?äò+@Ùܦ?]…1@®C¤?%>9@Äâ¡?oÎB@„ËŸ?6¨J@•Å?uOR@‚Hœ?>Y@ÓE›?ðÁ\@Š[š?}6^@ºD™?7+Z@D†˜?ŸÚT@? ˜?ýO@¶‡—?+=L@D{—?¨¸L@Ie—?‹K@†—?ŒêG@;7—?N—D@‰Ž—?C§@@–˜?Õ1>@—˜?v€<@n¾˜?Í:@ Û˜?%å:@_2˜?˜<@¬ä–?‡Ì<@F–?ÈK=@z­•?³º:@âs“?êf8@»‘?…d4@q†?Ú{2@S¤?H—4@0ŽŽ?QE6@Ž?,¨8@îÇ?*:?@×½?!ûH@·?œâR@SŽ?Žð[@x„Ž? f@·Ž?ÌÏk@E??s@Yk? I}@rl?@{‚@å?È©…@Ù1‘?0`‡@å{’?ëˈ@i]›?‰X @º›?'p@›?$@ZÔœ?¶ñ&@@~wš?²á8@+ãš?~\9@¼š?W@@³«š?/F@gD›?õC@xÍ›?ÑuA@¹?<[;@ÂYŸ?¶¥5@a ¡?ã=3@Ee¡?þç.@~ÿ¡?)E/@²Æ¢?Áý.@L1¢?™E2@㈠?+Ÿ5@ ñž?Œò9@@ÍØœ?*D@ý:œ?íÖF@Ð`›?U%I@<Øš?°¹D@¨vš?‘u@@Ù‡š?›7E@%Rš?Q$M@„Ó˜?ã]O@ÿv–?ÒHJ@•¿”?MP@’?ܹb@Ø8Ž?ææ‚@²SŠ?б“@³Ô‡?X$•@·1‰?@ƒõ??Sw@úpœ?‚rW@DÖª?Æ*=@׳?Ôû@«×´?¡¾ @læ°?à@I®?yB@pC«?”xr@k÷Ÿ?ƒ¹†@eÙ²?A=@ˆN²?$Á5@ ²?ç4@®°²?«¿4@Œ ´?ö¹4@\µ?ñî4@˜dµ?µ‹7@6vµ?=Â:@â$µ?ÂF>@‡e²?T‘?@»­?Gä9@©?]„4@:€¥?7@µ§¢?=@Ký ?kJE@5Ÿ?ÈeN@Y!ž?DzY@‡Úœ?Rc@*œ?øh@=V›? Äi@— ›?sqj@~ðš?Q”i@ü ›?+Ch@cd›?h@,Û›?:©f@Nð›?¤[f@k,›?Þe@ª#š?U¼c@Θ?Rb@j—?Dþ_@…–?íZ@º–?þ7Q@‡_—?u$J@ðÒ˜?V7E@q`˜?ËãB@U9˜?ºßB@Xë—?Ž•C@`—?9ÛB@É?–?m1B@. ”?~Ù?@³á’?7>@\’?òà?@Á!’?H¥C@>r’?0OF@y“?SêH@?²•?ZkL@ ô–?ÏR@k'˜?‚ÝZ@*u˜?age@Êü˜?ç j@‡™?dq@Hï™?í y@웚?ô˜€@ƒÜ›?fƒ@¿Š?™ø„@JU®?—o5@Ë"¯?Ú0@µ§¯?™¾1@ûw°?BX9@ÖL±?V}@@2²?X^B@H’²?=@@”±?uA@½ù°?NC@˜ú®?•D@B'«?—4A@uƦ?–ç@@ ¢?Ÿ@@pžž?xNA@åvœ?W¸E@”•›?+CM@è ›?ôyT@êÈš?^Ž]@Ùš?¾¨d@H›?›#i@$ž›?_j@iPœ?;’k@íK?(lk@ô|ž?0Gk@ÌÛŸ?ak@Ë¡?ë…m@Çã ?+Øn@`ÄŸ?=…o@,Š?fr@@…š?¶úq@Q®—?ø`q@3x•?``p@Ðx”?ˆ i@d©”?Mö]@€&•?ijT@âÄ•?ä1J@¥ª–?VˆE@M—?oÂC@Ë-—?ŽOC@0–?mC@¬•?ÄÉE@ã–?|¦I@N—?šùL@8™?WÄN@d“š?¹@»©?©«<@,§?+P<@?b¥?_¹>@ Ò£?ÃÈ?@·c¢?´.=@â{ ?œs9@Á?ÙÚ6@{›?`ý7@ ™?ô¾9@¢H—?«$C@0T—?x6R@­†˜?½Y@ÁÔš?¿¨Z@êu?¸W@Ëߟ?I+V@ÙŽ¢?+SU@|¸¤?R@Dž¦?ûßK@¨N§?"H@è•§?ûÆH@Ö³¦?“¤O@X£?µ\@Ÿ?h!i@ìš?mbx@L¥•?ø&@>ù‘?q£@%S?’}@Ž?U¦r@óMŽ?;;e@Æ?ÔX@Áá?+yN@8·?q›G@Â~‘?ÉC@uë‘?«ì>@ª®’?:@åd”?£3@О–?O….@Ô¬™?—z)@åÚ?|A(@â?¢?tê#@ဦ?¿ï @yª?nì@@Ì­?X@5v¬?ñº.@±‹¬?04@y¬?Ä;@Jê«?…XB@ú„«?/´G@Ý3«?®OK@%âª?ËeN@7ª?ÎL@Q¬©?/J@‡Z¨?eÉD@¼í¥?ü?@‡‡£?$0=@‘8¡?Š=@›TŸ? i=@R‘ž?r&9@·†?eõ5@´¶œ?ø¼4@P›?CÅ7@Q…™?@Ø<@qÖ˜?öG@,6˜?Ö¨S@¤´˜?òW@@ï™?PùV@ß ?“U@ ?œP@U¢?±ÀI@ŸJ¥?ŽC@¶:¦?,‰>@/Ä¥?!&C@¾Ò¥?æ1J@è×£?€ŸO@¬%¡?+[@ï?Ek@(š?²}{@ï–?q«‚@cÝ’?²Á…@MK?'„@ ¯Ž?p,@Å|Ž?dix@Â?|Nm@"?ó`@jÔ‘?ëOU@gâ“?ÎbJ@1¦–?ܦ<@ÖŸ™?Ôr/@ãÖœ?õ"@ðM ?oZ@`x¤?0@¢Þ¨?%}@ûp­?‚– @„G±?ë† @Ç[¬?ÀÑ-@ì?ä25@Ý­?'#@@ñÿ¬?lJ@­?´Q@Zâ¬?R R@Þ¬?ªQ@õG¬?[L@«?xiH@%¨?Õ\E@Ó{¥?wzE@¿£?DÐE@è ?zH@¡tž? I@J”œ?TÞI@S›?AOK@äZ™?*L@¼˜?…=P@©'—?LvU@ö5–?üU]@ñ¾•?‘b@AŽ•?P¨d@»_–?¥¦e@M˜?<”a@ĸ™?ê[@Q{œ?9>Q@¼Ež?E^G@ÎÒŸ?^uC@†Ý ?öýA@$A¡?wÁG@2ÏŸ?5ÎM@R6ž?ˆW@÷%œ?ë–c@ý™?Éo@¤—? è{@ŽY”?ã€@Õ(’?Q}€@M©?#³|@”?=•s@+L?U‡h@ªb‘?¦[@¯s“?Ê)O@®’•?k£B@Øa˜?€8@çáœ?ö’/@ª¢?µ'@ÌF¦?á @‡©?¦@–¬?±Î@ů?Èg@­­?È–/@àM¬?© 4@ãa¬?³o=@<ü¬?+G@FÊ­?ËnL@?®?l¸M@î®?nK@Et®?µH@}Ä­?5H@8]¬?Ö I@¡ª? AM@xí¦?·mR@Æp£?ªu[@gР?¢ÿa@ø?€ f@æU›?¸¤h@b…˜?Äj@ÿ–?N×i@VO”?6rl@ÉÀ’?‹ål@ñV‘?‹l@˜?"5l@f¯?óm@bu‘?®Ul@.~’?óÊf@Àð“?8s_@'–?ý|U@ ˜?‘ÎL@Ä™?gJ@R š?ÐM@¥™?kR@Ž™?’yX@Ao˜?•,^@À—?g[d@²d•?“ki@îR“?–Üj@³0‘?})l@Žp?%l@…°Ž?ÁÍg@qŽ?áóa@2ÉŽ?JR]@¿?G5X@߬‘?ÉñS@Q”?DþO@:—?»£H@Œ8œ?{ B@\— ?O{<@×z¤?Ï9@ Þ§?Þµ:@wÝ«?O2@@«?É’6@ «?‘E=@1v«?‚ÌB@â ¬?8øF@ßð¬?õGH@³‘­?EóF@œ¿®?©9C@Ö¹®?^@@Æ–®?8&D@µÊ¬?×>L@”H©?W@н¥?‚ý`@^¢?»¹f@Á9Ÿ?«k@¯œ?ô{j@gš?~+h@º™?aûd@Ù–?¶™d@ã •?¿6c@Å4“?«É_@ÄÉ‘?=3[@¶u‘?ìÁZ@dÉ?æ5Y@9Ê?8X@˜—?‹U@³~?]BP@‰ë?í¦N@ÊŽ‘?§—O@¥’?Ï=P@‘¥“?¹T@À”?Ëß[@Ø9”?ñ[f@¼r“?æ)p@óõ’?‹ u@Vn‘?”3y@‰%?]Ú~@£NŒ?½5€@t'‹?°p@VŠ?*‚@áʼn?I‚@Ö'Š?Y‚@H‹?7@ÂŒ?‚D}@‘3?»Šv@|:’?qöl@oŽ•?’½e@Zì˜?ûÊ]@ت?šÜ:@Þ…©?_N?@¼(©?ç‰B@ö©?â™D@ï©?ü$F@ ª?ÈiF@‘¬?®tD@áy¬?ú¡B@®+¬?Ž™A@yoª?ë®B@Z¹§?EÕE@¹œ¤?ï¼I@éΡ?æM@–Ÿ?æxP@q?„ÒM@#Ž›?Ñ\K@&š?:ÐJ@˜?ŽL@hB—?Ò•M@‡@–?ÓwO@7`•?3‘Q@p”?УO@—“?ŒN@©î’?†þM@ô=’?2—N@Ó°‘?.äM@<‘?-”J@®i‘?QýJ@ò=’?yhO@Ö»’?÷/Z@–ê‘?iÙd@R¸‘?ŸÒo@þ‘?]`y@FÒ?j¢€@¬¤Ž?Oû‚@E?s‚„@Ós‹?«å†@üø‰?+G‰@ݲˆ?Jg‹@kɇ?É1Ž@B1‡?¸@ã†?½ù@Ð$‡?&ÊŽ@³ˆ?‚®Œ@ØP‰?6SŠ@ ‹?‡¨†@!O?#>‚@ k¦?xN@šR¦?ðO@cs¦?ý,P@ñ¦?-P@»Ä§?ÆuN@謨?µþK@þ ©?ÌH@Uj¨?yÜG@ŸG§?eÀE@ˆ¥?ÄgD@°Ð¢?¦E@c ?ÄçE@mUž?„F@ëeœ?‘\F@›?ÖKI@Sš?E;L@³P˜?"ÐI@òä–?ôËH@¾•?„I@ç””?«F@\“?·E@Åò‘?ñ×C@Û€?£(B@Æ?Ñ8B@Ya?€êE@졎?qýH@ÖÀŽ?üñN@âÖŽ?û¶V@ó_?v‡b@ H?Ô-k@e€?ÁÒp@-’?€Dz@:I?ÌÂ@‰Ž?;€@)Y?½@\=Œ?Ä‚@2-‹?{»„@gó‰?Õhˆ@ýˆ?žfŒ@߈?Þ @`&‡?ê’@ï†?ý“@sk†?ù”@º«†?I;•@¿>‡?þ=“@¦ñ‡?ëêŽ@9y¡?;K@D¡?íúI@¼M¡?$vK@Ü'¢? QM@sN£?”¬O@ •¤?FO@0 ¥?ϯM@ãÞ¤?ãÿK@â¤?\—I@Æý¢?$H@o7¡?qhF@%;Ÿ?gD@‘\?!²E@äW›?9ÃF@­Qš?nB@™f™?« @@@Z˜?!<@XÛ–?Kn;@ÕD•?dO:@ä”?ÀŠ9@ƒ*“?®Þ6@É/’?éœ7@y´‘?±˜=@æ*‘?aÆA@œÕ?¸eH@µ?!‡R@’€?“[@œ»?kŽa@cõ?0g@¬q?éÎh@Òt?‚ol@7?ä™n@âBŽ?óo@i‹?…ñr@Ðh?4¾x@£®Œ?^ý~@fŒ?ñƒ@ím‹?xYŠ@<Š?M‚@.͉?=Á’@êÆˆ?yΕ@ˆ?@l˜@ª‡?øl™@x‡?Îݘ@â…‡?¾Ž—@µçŸ?ýa4@*dŸ?Áµ2@ÄÇž?t8@¶£ž?ÿ¼>@~ ?°hC@)¢?ñ„G@o.£?”ÍJ@Ò ¤?ƒ¦J@Á£?¬7J@¡E¢?åŽH@ͱ ?QÒG@ …Ÿ?²*G@§ž?X&C@í?DÔ=@`œ?'L;@¡Ú™?<4@Ü—?›.@çë–?Ay.@³–?À“1@¾7•?ÏØ6@7 •?ó(=@ë(”?ŒOB@J“?-YH@ ÿ‘?¬!L@Hö‘?Ç7O@Tè‘?¥XP@Cô‘?pJS@ |‘?¼CV@ôÌ?¬-Z@–Ê?qL_@b?q›c@¿¼Ž?Å?g@?# j@Œ¹Ž?)ÿo@=‘Ž?6u@4kŽ?ݦ|@OÄ?Ü‚@‘ìŒ?‘3ˆ@ aŒ?Ž£Œ@9Œ?C?@eý‹?í@Y—‹?Óª’@›)‹?Ü”@ý¸Š?u^”@ð¸Ÿ? ‡'@``ž?’þ)@…?Š/@(¨?T5@dŽž?)Q9@îúŸ?k=@¤!¡?Ÿo@@gÛ¡?õ™A@w>¢?¥+C@ô³¡?K‰C@YU¡?ëðC@9$¡?iA@­³Ÿ?#;@m¿œ?FP4@`Vš?Ŧ/@ûö˜?[È,@Oÿ–?ìÊ-@RÛ•?vT5@§¢•?Óm>@`(•?T^C@//”?ÒdE@n*“?‰ÉG@ãÁ’?íG@G\“?vâH@Þº“?I@#_“?-K@j’?)1O@Æ ’?æøR@®–‘?NÊY@"b‘?B^@Í!‘? cb@ ‘?+e@Ùî?@k@®þ?2Åm@´˜‘? Äq@Òš‘?Ñw@ÏI‘?èív@Îz?|\|@%/?x³€@É»? Y@ðe?K£‚@, ?Ãö‚@ÎŽ? Þ@þ?F(@+'?Ñè(@QZœ?ÂØ)@/=œ?މ,@ò¨œ?´ò/@1-?ª4@ž?/ˆ6@¬RŸ?V:9@ Π?ÌW;@ù}¡?Ä8=@S›¡?,›>@ŸÌ ?›Ž=@óKŸ?s=@›ž?²á;@ï]œ?ž°9@6š?Eš9@-}˜?:@ ¯–?ì½<@­•?óô@@÷‚”?œõD@•?!°G@´”?7€G@WŠ”?0A@ƒÅ”?t£?@«f”?WßC@j²“?kbJ@‰“?›ÃO@:t“?çnU@í„“?}[@$f“?±¶_@Ö“?–ßa@)Ñ“?êe@jÓ“?JÕg@˜”?)Ïc@}Ö”?¢$d@6£”?i e@!Γ?Qµf@îø’?¿f@ͨ’?B¨j@5ˆ’?µ¤g@¿’?[½b@ ª’?Ï`@®P?ÜÂ+@Ä?`¯(@jhœ?0'@ œ?;œ)@ ö›?M1,@-„›?,¨-@¹œ?Jc0@¯Þœ?ý1@ÑÔ?;=5@iüž?Ä«9@+Ÿ?¬,<@½,Ÿ?U÷=@ÉÉž?‚IA@ÝÐ?Ù»B@=Gœ?8C@Wý™?:ó@@Òf—?ÚC>@„÷•?f=@ö••?¼A@¼•?3@@!•?fÁ;@ÄA•?ùˆ<@ö'•?pB@šI•?Q[F@'&•?¨ØL@¢1•?0¬R@vA•?k=W@wŠ•?gZ@Ý>–?ÛÓ[@í¤–?=O`@0—?@Èe@ª¨—?ìTc@ý}˜?ëA^@ß5˜?Z]@£—?¹Y@âg–?€Y@_•?”-[@r•?ÝW@~´”?¢S@&Æ”?DwO@åý”?ž'N@WC?P²/@Xœ?:ì.@ÿë›?IL.@"ëš?­Ô-@0ð™?Àâ,@#™?ei,@§Þ˜?ÜÊ,@*›™?K00@ÌÌš?Qb4@æCœ?ìn7@ßP?„E<@Nj?aí@@ ÷œ?ÚëD@[±›?aðE@ÕYš?"GE@é™?9C@£—?8C@>Ж?~@@Ã"–?]>@Í–?Ó&>@ïí•?ó>@$O–?UC@3 —?ŠK@ç±—?BâR@Û˜?ÒX@þr˜?M Z@ké˜?¾Z@è(™?£uY@ßU™?òx^@è5š? ^@Ê›?®\@{¹š?3:Z@’]š?:Z@c™?c{Y@Œ/˜?ÆdV@¨½—?=ÀT@ÒK—?*Q@¹–?ƒôL@Y¸–?4ZL@Ç\–?ÂmJ@°¾›?’u6@=ýš?yÏ7@2í™?Ž›7@ƒ¡˜?I6@å•—?pƒ2@Ø]–?¥X/@™?–?^0/@v —?Ó¢/@°>˜? &4@ÞN™?hÚ:@Wš?Ò?@m°š?lnC@Þ]š?~G@˜š?áH@¸Ç™?­³I@ÃÒ˜?;dG@Zò—? “C@F}—?gÀA@£—?‡¨@@ —? ·A@ñù—?yF@ â˜?þÆK@P«™?˜¿R@G“š?b½W@Ò›?¯s[@kíš?ùÛ^@Db›?)‚_@¨œ?[@ˆmœ?.\@ Åœ?<|Z@ýìœ?W\Y@ß·›?‰[Y@²Cš?ø[@³‰™?zà[@6™?R¨U@ ™?£P@Ôߘ?æM@$™?¡ßM@,™?±†P@U0š?À€?@}[™?rÄA@zò˜?ä>@Ó—?#J9@0›–?€á4@@ê•?Z·/@4•?Ú.@MØ•?9à0@M{–?tœ5@k—?Ø:@Xó—?Oß?@ô;˜?åøC@¼Ð˜?/ÄH@†™?ãÿL@™?nÊK@ Ř?H@'˜?„EE@LЗ?ôÁD@]¶—?‰ F@>:˜?—I@%˘?OŒL@å²™?”Q@†›?U¾W@ÌJ›?½s]@:œ? ‹_@Z??>0]@¦?8^@‰½?ºÇ_@: ž?@_`@©P?ÿ‚]@N2œ?ѹ]@?>›?*Ê^@.›?g¨_@Å›?ý Y@º+›?DZR@f|›?fM@/›?ãýK@kßš?­øL@¦K™?‡¿@@Áê˜?+:@@Ñ—?øþ:@±–?é7@Ïu–?ÔÁ3@4–?‰ 0@¸¡•?K§0@“–?´/3@ò–?|6@–?Â;@Í»–?wr?@ys—?¸çF@;˜?W&K@½‘˜?"¡I@à~˜?˜·I@DG˜?‘H@<û˜?7TH@«Y™?КL@!š?É O@¿ðš?9TU@ü'œ?*êX@Kçœ?$Á[@Úî?xa[@ šž?ÃÒ\@×ëž?+.]@œž?¬·`@6Á?cI`@¹õœ?y·`@?¾b`@–,?{]@¥üœ?Ÿ“R@X±œ? XK@•œ?aµF@Çœ? ÕB@o†›?ÑE@õ͘?x÷B@ýì—?Ò’A@ªd—?þ>@cæ–?°Ê=@H–?I´;@O –?òw9@c–?É9@ 5–?.;@lF–?!—<@•«–?M A@Ô—?!G@·Œ—?ò+I@ü˜?a†J@墘?ÉŸI@C™?¦:H@UN™?›”F@Á×™?LèE@c¡š?…F@‹Êš?NDJ@ï0›?"óN@0~œ?SíR@:À?MîU@¼Sž?üíW@³ãž?¸¼Z@òž?Î…\@Ë Ÿ?ûw]@:oŸ?¦*_@BŸ?']@rž?¸o]@nž?‡cX@´³?ýÊO@ F?ÏðD@È?PŸ<@’ð›?æV<@U”›?¿ß=@·m›?3?@U5˜?Ä•D@ ˜?››E@ø(˜?öE@4‹—?âxF@”Ж?0´F@Ùq–?„B@4J–?œˆB@yÌ–?KóC@´F—?æF@Þo—?OŠF@÷<˜?—iE@<^˜?À D@ªÆ˜?#A@Q-™?o3>@Mš?’þ=@hb›?Ôl=@vœ? µA@Öbœ?ýF@í?ÕïK@5ž?:qQ@ÏŸ?€ U@Ò‘ ??QT@ð  ?¥GX@ž ?ny[@èz ?ÅãZ@—T ?K‹Z@õŸ?©}W@n/Ÿ?ÎÕR@ Öž?ÀRH@eú?+A@9x?.³9@?é76@Ûá›? Ý8@¥Æ›?ž×<@½M›?âç@@Q¬—?ðÂG@îÚ—?5¸K@±=˜?¬L@œ˜?$1K@ß—?,…J@²D—?<°L@m©—?ÑàO@p˜?¢JN@ý—˜?h“J@ÒÀ˜?ÔsF@d÷˜?YB@k™?´K;@t…š?¨z7@ùðš?Ô4@·ì›?© 6@‰uœ?Þ¥:@PJ?¸É?@¶^ž?‹+F@﨟?†@À ?LD@à`¡?€E@¥v¢?©•E@§ £?Š#I@A£?Y3J@q¢?àTK@÷¡? ¡L@n¡?-ÃH@1& ?¨C@Ÿ? á<@qÛž?XS8@î(ž?lã9@‡Ù?†¤9@ßìœ?ax;@éËœ?­Ï?@“Zœ?RE@uv™?OG@„j™?ÿ|J@Ù?m L@æàš?œnN@¾°œ?–!Q@Z×?[öR@¦’?l’R@r?÷EQ@^±?k€L@ˆ`ž?á D@Љž?÷v<@Tpž? 8@'ž?DH3@DÌ?¾#2@òÛž?¸G3@w•Ÿ?Ö5@Ê ?€h;@Ã:¡?$n>@Ñ¢?^î?@K ¤?@rB@‚µ£?]»E@£?àïF@v¢?ùG@—;¡?¯îD@C( ?HfC@Í¿Ÿ?DŸ@@àëž?øÚ<@×dž?(>@ŠUž?H™;@±–?º1<@@çœ?@Ž>@m´œ?û}B@E›?`èH@Èâ›?üLM@˜#?ÿbN@®„ž?žâN@ø~Ÿ?±zP@¥ÄŸ?ëKQ@J«Ÿ?X S@Ç* ?{¹L@©\ ?Ä—H@  ?>³B@  ?F"=@9BŸ?èT9@;Ÿ?9/6@qýŸ?xº2@h§ ?+k1@RÚ ?û5@ÈŸ¡?d<6@.m£?J«9@袤?Xý;@gȤ?Õ=B@D¤?XF@¢?XG@èn¡?õYF@kÁ ? F@'X ?)ýC@yŸ?ºè?@c<ž?PB@*Î?{@@²?fã<@l¶œ?j <@¯d?I&=@?ñ-I@%‡ž?ÈJ@DHŸ?ïøK@¿Ÿ?ø,P@ | ?Ä?M@Áÿ ?M@ê¢?åH@‚"¢?¹BF@2¢?žKA@П¡?ÏÄ=@É„¡?³ê<@Q1¢?no:@o¢?¥5@²¢?3@WÞ¢?Ð3@£?ŠÓ2@s¯£?ù…4@y¤?^«6@ƒZ¤?&|>@Ü ¤?ÄwC@I¤?gPG@(¥¢?çÚH@…‰¡?qoG@Û× ?Ú=E@“`Ÿ?ì…C@S`ž?X"E@ ?t’C@°–œ? =@$Þ?ÍT:@¨mž?¢Ÿ9@rž?ëºF@ð§Ÿ?9-H@ ÿŸ?øH@;' ?å*J@ÅР?°G@àü¡?HC@×Т?7‚@@ª¢? ¾>@Á¢?™;<@:¢£?ÐÒ<@tǤ?9ƒ=@!÷¤?ëB:@;"¥?Î4@G¯¤?·3@=¤?}²3@W'¤?ø‘0@ñ]¤?Q1@eW¤?¦7@4ߤ?7µ<@Ÿr¤?øÃA@ø¢£?KgF@Ë ¢?PF@© ?*E@Ÿ?+oC@ 'ž?HàC@¦ ?AD@tN?^@>@€Ÿ?r>;@¤] ?¥,8@©Ÿ?oV@@bb ?’B@a ?uE>@V´ ?ôŽ:@ÒY¡?É©<@ ¢?[´>@ßÔ¢?s=@¤ã£?eè8@\¥?²;@Ø ¦?Χ=@O¦? <@åH¦?3ÿ7@윥?945@o²¤?.Y2@z¤?±/@¤?çÇ+@Ð;¤?Dý.@r¤?˜×5@–2¤?D<@s£?1 ?@£Ù¡?PÄ@@/@ ?fWA@s2ž?±<@¡ž?¬ >@ÃI?3Š>@âÄ?æ‹;@Æh ?„Î7@só¡?Üm4@ÁOŸ?6Õ<@ÏŸ?ÿ1;@$;Ÿ?`6@ИŸ?µ5@"Õ ?Œ=@M¢?ßÎ:@%ê£?þ88@¸v¥?:N:@|+§?û?:@7—¦?³À:@-h¦?Ûù8@ «¥?ó­5@,“¥?^ä3@á’¥?²-@ýŠ¥?1ö'@ø¥?yh'@ƒ£?/w.@ŸÚ£?ƒ2@£o£?Ìò3@ÕÓ¡?Ë6@[8 ?ê5@3ž?Κ4@1ž?Æ8@½?$µ<@Ôž?@:@Rù ?±5@¦^¢?ë<2@ªpž?¥î6@Væž?tÀ5@ïpž?25@öˆŸ?#g;@Öª¡?4:@„Á£?Æ:7@fm¤?QR<@…A¦?¨€8@Ü6§?$'7@êc§?¸‡5@rݦ?Y6@ɦ?Ñ3@©U¦?r9.@|ì¥?fQ'@¾$¥?®#@Û=¤?^ð$@º£?ÞY(@Çœ£?ãå+@hÍ¡?Ój.@@- ??¢+@»¿ž?“=.@Ù?p¸1@M3?Œ7@æYž?::@Y¡?ë6@oí¡?Á‰1@Üiž?˜!1@´xŸ?lá1@gÌŸ?¸Y6@Ö™ ?Ï÷6@Ë®¢?4e7@Û™£?.Ó7@-!¥?¡e8@@8¦?8`4@O§?^ª0@ªz¨?Œ›2@îè?Ö¥1@¯e§?.@^¦?Êþ,@m¥?È@"@È¥£?!#@&9¢?¦Þ$@¹;¢?Õ&@ÌÚ ?g˜'@V&Ÿ?Rá&@Õä?„'@6_?Ã.@ž?é2@:6 ?»‰;@À¡?¨O8@ƒ>¡?X{0@GnŸ?iS+@¥íŸ?´z/@} ?pN3@ˆÌ¡?Q2@ø£? Ç4@Ë^£?„6@éä?Øå3@´›§?J1@ ²¨?„62@À ©?¯¬3@^¦?ì¹0@oN¥?—-@}¤?y”'@Qî¡?ܱ%@¡?–!@‰Â ?øê @`hŸ?/ÿ @Ç¿?ëž!@Å.?D~$@O2ž?:þ-@˜·Ÿ?œP5@í¦ ?dÛ:@ >¡?”6@›ó ?Šù2@sS ?ôÚ+@&ä ?,x.@满?¾í+@­í¡?I.2@¸×¢?L4@×Ñ£?Îm3@DT¦?ñÜ0@€g§?P7/@ø§?"ú1@c—¥?%\1@&ô¤?¤€.@|ï£?ÿ8)@!©¡?5b$@ïe¡?H„@)ÌŸ?üÈ@>?‘7@þo›?[§@d+œ?ÄË&@ ùž?Q´1@# ? ×8@Ÿ?Š9@ÞÞž?i73@ÇÔž?Ì‚.@ ¡?ÞÁ)@0â¡?6¥)@Ï'¢?øv/@Î…¢? —3@Ú¢?ÂÞ3@¢K¤? ‡-@zY¥?e+@2¥?âU/@Ý£¤?îw0@õá£?{¡.@½£?f¼(@ØÈ ?Ô@$@½  ?ë_@ 7ž?ã©@ɧœ?Ÿ$@Ý´œ?®Ù#@`q?Ùû-@É&Ÿ?Ë…8@SAž?î6<@Ö#œ?SH:@Ópœ?ûñ0@“sœ?’,0@ i¡?2³)@¯Æ¡?Ak,@YÆ¢?%t2@òŒ¢?wf0@¿å¡?‡ä'@r&£?['@Sv£?%*@yq£?r42@|£?CÒ-@´„¢?tz'@bΟ?Ô"#@}Çž?ïQ@Â?š£@y›?´‹"@^?,B*@€ž?…€6@Å}ž?,Ã<@x·œ?Àë<@¥š?T˜9@Δš?ág4@ŸÉš?fY;@bù¡?+à0@á¢?L3@mE¢?ûÜ1@î§¡?ò}(@X,¡?‰4$@¼l¢?×'@t£?Ì¿/@pÔ¢?Ñ.@9¢?ê*@+¡?ÖK(@¦Ÿ?Y&@Ž?f '@ÙJ?Ãk,@K„ž?ì/@–XŸ?1s6@ñh?’Â;@Í–›?NÍ;@Lš?^>@Œš?×E9@jš?½ê>@Ûî¢?Mó9@T‚¢?b^7@ž‡¢?ØW/@F£?´è)@Õ¶¤?M«(@w¤?R ,@ ¤?S 1@¶Z¢?Xü2@¬G¢?ž{.@¦!¡?à‡.@”ˆ ?Ÿ>0@ƪŸ? Å3@"oŸ?)Ô7@¶áž?í 6@ô1?H8@e¯›?L€>@i\š?²ÝF@Ö™?nç@@©ô™?cñB@ò~£?€Â;@ ñ£?sY7@ãâ¤?3‰1@¢¥?Ñ1@)¥?Ïo.@jn¥?ÉR2@éx£?¡7@>ë¡?8í1@’O¡?‚ñ3@%ÍŸ?|Œ7@NBŸ?Y‘9@×(Ÿ?iÓ6@Ñâ?'5@ºy?nÓ4@ˆ¿›?ÄN<@¤›?¸G@mÏš?î•F@7š?¤ŒA@±y£?>a7@wϤ?b×5@äÕ¤?‡ü5@S¿¥?¯ 1@¶ê¥?L1@I=¤?c£7@Iª¡?%U7@¹! ?¢5@‘¹ž?ñœ6@aì?×S7@(¨ž?'Ã7@£/ž?P0@9?ý2@øu›?ˆ8@;ýš? šC@,‰›?ŽcB@P'š?ÍF?@‚¤?&Õ3@–’£?+‡5@<½¤?H(1@jÒ¤?/ˆ-@ u£?X5@9ê¡?*‰:@Êj ?KÔ6@ÜŸ?‰56@)–?w7@kµ?ï?5@ü?,ä0@HJœ?[å.@ Qš?È6@YÜ™?^Â<@ÿ›?;@Òfš?Éà:@üJ£?Ð3@Ö&£?øÛ4@Aà¢?w!,@Qþ¢?úå1@þê¡?R;@L^¡?;ä8@ˆßŸ?a°7@êž?E®;@¯?t7@¹úœ?£í/@|›?Ð*)@D™?¦~0@•™?¼5@-š?žj2@ ›?”!8@½£?th2@V£?Q-@l¢?:-@¾=¡?ûC9@$ ?^P<@̆Ÿ?ó6@ò8ž?î<9@cÞ?qR5@mžœ?³K.@™9›?²W*@©È™?ð,@[ç™?2;.@ £™?{q+@Üš?L›3@²®¢?„L-@Y×¢?ån+@J ?¨€0@ÊŸ?„ÿ6@ÈUž?r1@·Õ?S2@3¼?‚”2@$?«é+@?œ?¸*@ œ?à*@%B›?-M)@@ú›®?ek@ S­?d@槯?wW@[[±?l×@õ*²?±@{[³?¦A@‰K´?b`@mŵ?†@`²º?.¡@Pغ?wÔ@µÕº?¬%@HÔ»? e@c€»?i0@ö¼?Ë•@ Ľ?øD@¬ð»?@º”º?ôÖ @nº?ì@ñª¼?¢ @úI©?bµH@7˜©?Þ;G@ͪ?Îy?@_©ª?¯Ò:@»œ«?=¹9@7Í«?£=@Ö®¬?^m?@bJ¬?íg4@46«?ê‚-@Oª?ST/@&|«?fr3@ã¬?PF@•S®?[XM@’+®?kH@»9®?4tD@u¾°?N3:@Ž µ?¹.@Uïµ?$î.@óC´?0@ëL´?l%@8­´?¡C#@‰¯³?ª¢#@×É´?Å+(@[¶?üp)@‹<·?-&@4îµ?iÍ&@,§µ?‡ @è4¸?÷Ê@£2»?”¨@—:½?E@¯¿?´Æ@Ä¿?8S @Ž¿?­Í @™2¿?‰Ÿ @÷ì¿?‹µ @–RÁ?Ì @„÷Â?áp @ºzÆ?ÛÓ @î„Ç?@ÑŠÂ?†!@c`¿?,Ž@õª¾?‘ž%@>¿?cS'@*²À?À'@¥ïÁ?ž '@Å™Á?n'@tìÁ?°†$@òÂ?7;#@ Ã?ǰ@{ë¿?‘.@Yñ¼?û@6"¼?_ @<»?­E @üN¼?‘ú @o¾?Ó¡@¤º½?­@ @B½?o@­ º?}# @ë­º?KJ @ŸM¼?Vz@æ½?@e½?ñM@/ý»?‡°@‚¶½?û¡@ô|¼?+@ͱ¼?˜<@¸ø¹?o¡@Ë/¶?qâ@d´?x=@K%´?}Û@ú˲?s;@oDZ?Ü@g®?–Ó@ÒZ®?^Ç@ƒ·¯?Ó@¨°?øÚ@¨¢®?]Ï@lË­?C@Û‡¬?s@Ñ1­?ðÑ@Œ:¯?--@9á®?°Ÿ@¦÷«?éœ@[ª? Ë@©?øâ@Äí¨?{]@„¢©?2÷@Iª?{@ctª?¸W"@Ñ’«?Gÿ(@딫?Õ‰-@/ߪ?Âþ/@¶ª?ø­(@uЩ?º•&@Ú©?Þr%@,Ö©?lú@’§?Þ@½­¥?mÆ@’{¥?|ˆ@ä?ÿ;@7F£?‹ñ @/Í¡?ú@ž9¢? Ì@¡È¡?š@Àè¡?ê% @e¢?ÖF@Uó¤?p" @Þ=¦?Å9@$4¨?Jh@Y|ª?/ˆ@(+­?$@œr½?æÜ @#w»?@3“¹?oK @G€»?V¶ @Ég¼?9µ @GŸ½?,k@|ï½?gÇ@˜¾? é@Ù¾?Ì@Úº¼?—×@áA¹?îÅ@Ï„¶?¶b@´?ûŽ@S€´?ÅÍ@*³?Lê@Ç„±?øA@—’®?œ@ϯ?v?@?3°?Ž5@ãÕ¯?ÿ¬@éµ­?´X@js­?e,@½…¬?Ó3@=­?M~@ý®?=e@b¬?'i@ÓϪ?‰´@IŸ©?EY@Æ5¨?¡1@cE©?ýõ@’ ª?™Ñ@Òd©?«?@“«?ÄY)@ìF¬?Í$-@i¬«?‡ð3@eª?÷/@@â©?Ëœ'@î"©?a±$@ÞŽ©?X8!@ß™¨?¸¯@í¥?Eƒ@½_¤?5¼@w`¥?ùÆ@¸ü¤?Ï@e”¤?¯È @Æ\¢?xT@Nh¢?•´@•‡¡?œÌ @¾Ð¢?ô«@a˜¤?×O @¦¿¥?×à@Çצ?½h@nܨ?žS@í/«?°×@ÑT¼?‚î@Ó†½?–p@.¹º?ý@ʺ?7 @Þé»?ö @X3½?ˆR@ðؾ?üà@æI¿?k@~æ¾?®¨@ܼ?>@“¶¸?·š@ÏRµ?^a@ȳ?]d@1I³?„K@þÿ±?¸ê@ı?À[@¹°?+_@ÿv°?°¹@ Ý°?ùP@Íè¬?í @¹¼¬?x @uZ¬?êQ@íW­?“@Ç®?@Ù§¬?j@îóª?pó@Ðâ©?(@ðh¨?e@Ù¨?Â^@x™©?@íª?ô±@ògª?ô)@Ы?ií.@á«?xÊ1@ «?G2@îN©?Äù-@RS©?^2#@ãô¨?.!@ é§?‚r@Íû¦?ˆx@ó€¤?Ĥ@ðf¤?ü@Ò¦?Kd@F<¥?qÚ@cf¤?s°@ô‚¢?„W@T[¢?^@?£?pÍ@÷q¥?ž\@¦?ÿå@0¦?â'@€ç§?ët@û©?N@!G½?ŸØ@RO½?/]@ɺ?g @_/¹?/I @ñ »?]¾ @‹½?Ù÷@µÕ¿?‘6@ï­¿?`à@xr¿?xï@­¼?ʽ@lù·?;C@7úµ?Â6@X&³?ÄÁ@Ô—´?t@ó]²? ê@‘m±?8‡@–f±?#@Cº±?Xå@ è­?0S@©c«?Ù@¬?.µ@Æ~¬?$@׬?<@Ø?­?¿5@Evª?|°@†›©?*¿@º©?£§@Ц?Q•@^§?‘)@ت? I@Iˆª?Ц%@û'«?C6.@çF«?ü1@Šˆª?Ø£2@*ש?’:1@ʃ¨?Î*@, ¨?54!@_Z¦?"‡@Í¥?×@0Q¤?zg@ð£?˜@¥?!’@ (¦?œj@¾¦?\Á@”²£?qf@'M£?Pð@Í£?Žâ@g²¥?¼@£Ö¥?À@ý,¦?˜B@‡§?N1@¤©?„à@°§¼?m @Zp»?Cõ@Òs¹?DK@Ôº?^w@.ÿº?ô¤ @M2¾?X@Ç¿?ô‚@ß}Á?OÊ@eã¿?¡Ò@ÛÚº?º@Þ…·?WA@âýµ?ù@þ³?v@´³?k¤@Ó²?åÓ@ëu±?NË@72±?t@Íð°?^·@뼬?<@ƒ1«?y‘@¾í¬?ù@Ï™«?ÇØ@g\­?z@Ý«?â‚@¸Ã¨?åò@@’§?k@̃§?¯@§?ÿ|@’Œ¨?7É@ž—©?ô!@¨Xª?”,@¢^ª?Œ4@”ª?~3@=ª?%b3@¨Û§?Ã-/@¸L§?d''@c¦?& @”r¤?o@87£?’×@‘2£?;4@®¤?]R@¦?é´@æÊ¦?Û;@5¥?nX@L¬¤?“¤@^´¤?í×@£˜¥?^Œ@ÿ¼¥? ž @S¦?`"@%R§?žÍ@ÖK¨?5€@ã$½?ÝØ @D!»? p @’8¹?Az@e¬º?ms@ñ^º?8Ù@¾?ô(@JËÀ?2ü@äMÁ?Ìø@±ù¾?¼@Å»¹?ÚZ@Ä”¸?°P@¬µ?.@þÓ³?È´@Qr³?9\@ \±?À’@©ú°?û\@eý°?:@Â-°?Ç@‰í¬?h«@ìû¬?ÃÅ@Z¬?7@´}¬?,‡@oä«?{@(‘©?Ö@sq§?<@oÊ¥?È}@ ¦?.æ@%2§?ƒ@H+©?sv@H©?'¿(@Ýõ©? ‡1@Ìz©?š2@R©?8Ò3@ö•¨??ó1@d¦?$*@*è¥?Äp#@&\¤?=F@ã)£?ÓG@C¬¢?€f@¹]£?ù0@fĤ?+ð@«¦?&­@ }¥?ʼn@gB¥?F…@:£¤?Ïà@Ã¥?®!@i¡¦?V­&@V¼¦?}'@,•§?â,#@ôp¨?j @í¼?uî@>¹?¿@”¿·?ï@ú¹¹?§Ý@¦~º?§c @÷:¾?D@žÝÀ?@V@ÀHÂ?Ñí@ż?C @埸?k@)1¸?Z‡@ε?¥@—³³?¬î@ ”²?¤@1“±?Ï?@ÿ̰?Àr@ؽ°?x“!@{j¯?.V@­?s.@Êݬ?x @—¹«?žq@îʬ?Äû@`ª?,\"@‚¨?8o@¶¯¥?HS@*h¥?Œ@ à¦?–@ã§?A4"@–ƨ?ÎD'@Ø­©?¨0@„Ý©?–H/@ºg©?ê/@{C¨? Á/@º¦?„+@»`¥?4x$@L¤?‚Ê!@bF£?¶¡@芢?é@CÛ¡?]Ÿ@:J£?²g@ÃD¤?.ä@²5¥?ˆj@Ť?±ã@㦤?¸h @°¡¥?}e#@sö¦?=È*@¦Œ§?U•)@™»§?é'@ú§?Œ$@ûE½?Uš@Ƹ?k™@ä·?Q*@ {¹?§@ ¼? ³@“¿?NA@?ìÁ?E÷@€I¿?ïU@^T»?—J@«$¹?hD@^Ķ?D@¦`´?€N@8t³?ºh@ ³?à˜@ÖÒ±?Ö{ @ùš±?><&@_°?`8)@˜Æ­?0&@…÷«?9ÿ@Õ«?ª#!@¹¬?˜æ"@¡ª?°N'@]½©?Vn%@‡3¨?Ö@xP¥?vÜ@cm¦?;@‚ ¨?ã#@Î:¨?Þ)@¶¨?¹Ì-@õÑ©?æß,@]L©?X"-@H‘§?ç[.@‰.¦?ço*@sù¤?±§#@Íx¤?zë"@\Ú£?ÐØ @k\¢?‰È@ÁÓ¡?õ®@á?‰@Üþ¢?PÖ@Ȱ£?xA@ž,¤?þ@ŸÂ¤?‚d$@÷¤?k¥%@8¦?Þ‚+@8¬§?Ç+@ϧ?•È'@ò‹§?š4$@Ð%½?+ü@³·?{³@òŶ?³P@!ç¹?ØR@$¿?g¦@Á?#@ÁdÁ?Õ"@gÙ½?è!@ÎȺ?kß@«ç·?Ø®@½µ¶?¯a@µ¼´?§ß@A–´?pÅ@´´?s!&@àï²?Þo(@Xì±?ø ,@çЯ?¯Ã+@®?EJ*@ܬ?M(@V«?øq*@)ò«?èR(@Î*«?Á,@P/ª?Š*@Ã&§?>'@t¦?·"@ÀU¨?S¹(@‚0¨?jä)@€¼§?©Y0@«‘¨?4Ê0@qê¨?;Å,@¤™§?qG-@x–¥?£ï+@¾×¤?O%@\á£?„Ì%@cö£?ñ%@¿B£?“Æ"@)œ¡?êˆ@3¡?Ý‚@¿ø¡?Ñ@Áã¢?Ð,@Ó¢?»@…¤?¦ž'@Õ¤?û…*@Êt¥?šM*@äë¦?Ü-@™`§?‹¿(@é §?¯I%@èm½?xW@U¶?`Á@iÔ·?$’@¼?¸M@µÀ?MÖ@‹ Á?2d@ÈÄ¿? @©!½?mg@'»?¸@NƸ?Ÿw@²²·?V@(޶?òa @f‹µ?RÐ#@_C´?3e*@äd²?èœ+@Œ…±?Ä.@õ«¯?ã–.@í'®?]•.@A¡¬?062@^(¬?ŠÍ0@jˬ?=e-@}a«?Ï 1@îV©?ùß.@îò¦?¶]'@ ò¦?ÞÃ*@:ý§?%È0@õŧ?ÉÎ1@™“§?3P6@ b§?"«.@`±¦?Ú…*@éK¥?å)@¤µ¤?…ð'@«‚£?~#@‚€£?hr&@莣?3b(@‹ ¢?Ä,#@7x¡?””@¡?ÔÑ@°Ø¡?Ù¦@£S¢?и@´ £?ÀÞ%@,¤?¹-@H¤?+@Ú¤?Þ@-@ɦ?B´*@åð¦?ÙB'@?S¼?z±@H ·?#Ø@j7º?£ê@ŠD¾?@ÀÁ?Ó@&Á? @z÷¿?t:@â×¼?÷@BÙ»? Ó@3¡¹?Vù@*̸?¤ç @ªœ·?‰º#@À€´?Å+@Ÿï²?´-@º²?øÄ,@)+±?œÞ.@說?î–/@ˆ¨®?É0@N:­?+'5@Ný­?`_2@2M¬?½„1@Ê"«?Ù‡2@´ñ¨?Ø1@²§?,@Uw§?ä±/@ì§?¾è6@ì¦?å8@ß¼¦?+N2@®Ü¥?Ó.-@昤?MJ)@ºW¤?k (@ª#£?ëb$@S£?]é!@ÞA£?&n&@‘¢?Ö¢'@# ?”“!@ µ¡?@Ò!¡?È€@5ð ? K@QJ¢?É-&@¯Ö£?a\/@¤?8!/@9d£?jÚ-@Šd¥?·,@ò£¦?­â*@(ôº?Ú'"@;”¹?Ѳ@zò¼?äÿ@Y;À?!@ã<Â?dÊ@”|Â? @Ö!@ÿA ?ÖÓ(@ÌÉŸ?JQ+@ÐÙ ?à,@Â5¢?ê50@$i¢?ͪ,@§ë£?¼0@¦?ID/@¾½?Ú´%@Ò}¿?|§"@š¯Â?óö@˜×Ã?eS@þ©Â?™#!@ýº¿?D%@ú,¼?ûl'@r‘¸?ߣ(@dd´?—È @°?‚4@Â8­?ãE@P.­?Š @m¬?|y"@¸®?!ø'@vø¯?ØZ/@ºê¯?!5@ ¯?R7@Èå­?ª´9@¬?ÀD;@&1ª?!Ò8@¿Ú§?l7@´¦?×0@3¥?ùÎ.@jI¤?]k3@Ë`¤?½ 4@^£?‘¢1@ ñ¢?Õ›.@‡!¢?²L+@ü‡¢?¸ß'@'ƒ¢?e'"@/¶¢?8 @Ù§¢?üÎ"@.Ä¢?”'@W¯¡?—ï$@‘Š ?GŽ%@N- ?YV)@Z¢Ÿ?¡0-@ˆP ?ðu-@æ¡?(-@á¢?ÀK-@›¥£?Þ{0@±¥?CÆ0@¸À?xA"@kOÂ?«Ù@иÃ?Bà@ËšÂ?ú¹@cYÁ?ð&@ÓŸ¼?5V#@W$·?ÿõ!@;Ó¯?•@·k­?=ƒ@å¬?j¬@t«?Á©@ÈWª?•X@OǪ?4¼@¿L®?Æ®'@¯V°?m*-@‹@°?ý4@T®?&à8@+¸­?‚Þ:@€ª?øú:@èK¨?kí6@m–¥?Þp2@= ¥?6¿-@c¤?û,@êè£?` 4@Ž£?º³4@}r£?®.@:j¢?!c)@’/£?Mj&@lÏ¡?Ÿ%@t€¡?›• @†ê¡?£Û@£?ôt$@û4¢?܆#@:¡ ?53%@À¡?u¿'@*äŸ?ƒ/@G¡?:«-@È¡?a/@ƒ®¢?Ú-@m£?.B1@ùþ¤?§3@ÕGÂ?¯@ÍÅ?¸@,¸Ã?ðþ@Pu¿?#r@u1½?‰-"@¨²·?…o@Òþ¯?Ê@Ï}«?Z@圫?Œ@˪?¬ @ Å©?;±@‹³¨?ú.@d¬?{ @"ª¯?µ³$@ðQ±?4s,@ô²¯?t3@îo®?–=7@Ž–«?ì’:@ë©?ÅO8@ÊÊ¥?¹è4@Ôy¥?¾Þ+@Òz¤?O¶*@¨¤?п0@Èë£?Á4@¬]¤?¼]-@š ¤?6*@%Á¢?ÉQ'@;e¡?$@&@¥ ?ÊÍ @ê#¡?å @Þï¢? z%@ŸZ¢?‘ç@þ ¢?ƒ¡$@/[¡?Ô‰'@˜; ??¹/@jØ¡?Ït-@]í¡?^h/@ Ô¢?h[-@£?#¥/@Éò¤?R‹1@ã¹Ä?VŒ@OÃ?Ö@ÀT¾?çÉ@r̺?Ô¥@ÿ¸?5i@²E²?Ó%@Mü¬?ûY@ëô¬?q]ý?¬¬?Íx@ߪ?E @[µ©?M4@õ.«?ïé@Ô;®?úé@Ø<°?k`&@ÁƯ?üÚ-@<7¯?uÍ3@!$¬?ÞÑ8@¹z©?¤“;@ ‡¦?É37@†r¥?-á,@üª¤?,@Ý2¤?"Ð1@½5¤?Á6@ ^¤?Å/@Ù¤?Úý)@3]£?bJ%@­¢?õú%@¡?sX#@ôø ?o #@»â¡?¯i%@câ¡?Òr"@Ù¡?ý#@œ»¡?Q,&@Ó ?;¼-@(~¡?žp/@Ûi¡?éX.@‘¢?S£.@ê!£?¥+@ U¤?‡õ.@–Å?óó@Ë´¿?ŸU @{{¼?€> @÷œ¹?Šï@º¶?›¸@q!°?— @/¯?€»@Ø­?¬j@!9¬?¾@Ü#«?=@i¬?ô@œÎ­?@‘ ¯?ù@à¯?)³%@#™¯?'Þ0@@f¬?Š‹4@!ª?Â5@‚«¦?Ä16@((¦?Q=.@Qd¥?úy,@Ün¤?8’2@[ʤ?Jß4@#Σ?ˆ'/@>õ£?žß*@ü™£?¶q&@[R£?E¤'@b'¢?g+$@[¼ ?GZ!@Þ ?Áæ%@ñÚ¡?2$@÷o¡?Fo$@p(¢?£L%@qž¡?Gç-@hF¡?j1@øÛ ?ŽG.@ÙF¢?¼Í.@ÊI£?¡¹)@¤?Ú[&@1oÃ?ãï @Ÿ¿?öD@çv»?¼‚ @Ä ¹?k° @º´?){ @è ±?®I@\*°?›@[¬?¬@¼¬?¯Ã @ &¬?PP@÷Ï­?\@¯ê®?-D@)a°?›u@k°?½\+@=§®? C.@{oª?20@C§?w¼4@ÁÓ¦?¦y2@J¦?z_.@œ¨¥?nÞ/@¯¤?é[2@¥¤?µu/@“=£?^þ,@FŽ£?«»'@Áœ£?ó'@ÜÕ¢?й$@Š[¡?za"@õ1¡?‡¡"@iþ¡?Òx$@U”¡?tì%@e¢?*e&@¡v¡?èb-@à¡?O­.@=ð ?)o+@Í¡?hî)@þÓ¢?>€%@ á£?C5@ZÕ¿?xq @º½?)@N]º?Ë @7u·?€Ë @X¸²?%@ ´°?8g@&Í­?@ ¬?ÚÊ @,@¬?0· @iâ­?{×@ª¤¯?ÄE@T2°?”¾@Tر?+"@1›°?=*@9€«?]-@Å7¨?2@ü¦?L4@æ%¦?•¬0@ ¦?Ñ/@Àb¤?x¹/@±&¥?OÂ,@Ÿ£?a,@<¼£?Í)@I¤?Ü“&@¢Ã¢?ç]$@öE¡?ýf"@ªq¡?0Õ @ð¨¡?Ñc&@?+é'@PT¢?$h'@3„¡?c.@¾Ù ?B«,@{¡?Ã&@>:¡?¦v&@8,¢?Û@£«£?4@À?lß @wí½?Î @¥X¹?Äy@U¥µ?ÁÅ @¯ø²?¤>@¾o¯?¢Ö @Ï]¬?bÁ @)¬?óä @ì´­?Qã @T.°?¸­@”˯?®o@ª¦±?Ç@U­±?òµ&@ "­?÷$+@tª¨?z*2@$¦?™ 4@q·¦?qŠ1@¢1¦?Ný/@;¥?½-@懤?ç+@¸£?ù~*@¤£? +@3‡¤?>»'@½Ú¢?î$@Bh¡?â¾#@á?bž$@ŒŠ¡?“%@ÉÏ¢?ë“)@:W¢?ªf*@=Ì¢?Ñ—+@ãž¡?ÉÊ+@õä¡?ëŸ'@³r¡?ê¼$@®¡?®@QÙ£?»{@ê8À?$ @fl½?æb @%+¸?èû@Ët´?@—‚±?›@áî­?jð @Fެ?ƒo @Á¯?ò¾@&±?ËÓ@u`°?Éô@üÿ°?@’M²?¦6#@%®?‹­*@Pé?ŸY1@ı§?Ö´3@þŒ§?ª(3@ö¥¦?˜°/@´¦?@Â+@Ñ©¤?Ï+@J•£?Û)@ÜÓ£?,*@³¤? Ÿ*@–™¢?ò²'@­)¢?aÈ$@=9¡?²>%@øX¡?ò.%@Z'£?ìQ)@j΢?ƒÌ*@É£?m+@Îw¢?‡j)@m}¢?Q>*@+Ä¡?Oé"@vp¢?cN@¢‘¤?oó@jÀ?ø @Õ_»?S@/§¶?¯p@Œê³? H@@ݯ?•ü @j>®?pþ @Yg°?aÔ@ÓL²? @?D±?JÆ@[¹°?Ì@—F±?„ß@½¯?î'@]-«?õª1@ §©?ñ0@ê›§?î£5@o§?ûO1@¨ø¥?æh+@ð«¥?•ž+@; ¤?*'@ô<¤?å0(@oפ?î>)@Œm£?ìq(@‚Ï¢?«Æ$@R†¢?Ì»"@êÔ¡?!|%@’_£?É¿*@ÐË£?–:)@ X¤? ù+@1Ô¢?p+@GÚ¢?Rm(@1+£?˜‘"@oc£?!Ù@èX¤?"´@„…¿?S±@—á¹?e¡@Z°¶?@ua²?±@éѯ?—Ï@Û±?´@®®±?H/@#±?ÜŒ@ j°? @%ã°?›æ@N`°?þÍ#@9Ü­?»!3@N«?FÙ/@wϧ?³¿1@3ϧ?S0@±O§?´p-@"¦?R.@@¥?y'@4&¥?|¡$@Ôs¥?í·(@.¦¤?Á!'@£'£?Ñu&@4£?&($@«£?Äa%@+`¤?à_,@v:¥?«'@YI¤?X+@…h£?kg+@Ñ¢? "*@†m£?W–!@Ú’£?>Y@$¥?GÑ@ôh½?\@-¸?™°@K1´?›à@0Ù±?µ"@ä<±?Ž@Êý±?Á7@rÒ±?" @–#±?Û@xC°?žO@¤‘°?9^@а?uñ0@¡0¬?7œ0@pv¨?+C2@ž¯§?Ó‰-@7¨?êt/@§?˜`1@Ó¦?u3+@Y¦?Í$@Ó¦?ÿ%@æ/¥?§™(@5è£?ì%@þN¤?»û&@¤?=î$@p‹¥?3Ð*@ÍŸ¥?Ò£)@ùì¤?‹+@¤Ý£?˜ù+@:£? ¶.@Dg£?÷ì!@ø!¤?–‰@‡‘¥?©S@²èº?ñ@Š;¶?|Ö@•³?’w@’²±?‚É@ŸÝ±?¬(@•²?Ÿ@û²?®@±?Å®@Ñ"±?7@-”²?Ñ·)@P®?±2@^v©?ñ/1@1x§?Ýœ.@B¨?N/@J¨?î½/@xɧ?h.@û§?ÇÀ%@ƒ¦?-$@nY¦?„ç)@ø¬¤?«)@““¤?ce'@%ä?,&@´>¦?š*@¦?Dß,@*)¦?Z*@A„¤?˜8)@bô£?..@w¤?¨…%@b|¤?uk@¿n¥?¾@õ¸?¼@Ôd´?›@x ²?ò@´?%µ@䪳?V@Äf²?3ú@Û²? ·@‹Æ±?ZÑ@]{³?ìs"@3…°?à 1@m«ª?Qí0@)ù§?YR.@§ð§?;/@q¨?”Â0@È…¨?þ.@ ƒ§?f@*@{¼¦?öo%@O¦?°ƒ(@ ¨¥?»—(@€h¥?Ý(@;¥?ŽP'@ߦ?¸å*@Iݦ?°v-@G§?ä,@Y­¥?²Ú'@çú£?!D-@W ¤?âe&@‚Ý£?§"@Õˆ¥?`@¡ú¶?+@R½³?Ñ@÷8µ?w# @”¼²?,:@<«²?C@…‚³?tu@Œ]²?1…@qÛ²?8Ã!@p~²?›/@;§«?HÆ0@Ûd©?Ûû0@>N¨?A 1@S~¨?!'2@¥Ž¨?l‘-@ÿѨ?;›-@ó§?ºP)@ɧ?8'@Zž¦?®'@KÙ¥?›Ò'@1Î¥?ZŒ'@‘Ǧ?Â)@ý˜§?¯-@ûy§?žð,@ò¯¦?D)@¶æ¤?d8*@Ú£?€£&@<¤?IT#@™¥?ÚS@'’µ?Ø@µ?Þ"@Ú‘²?eÑ@ÞH³?Dv@D»´?ʧ@“²?!@mµ²? @Üγ?¤'@wk®?êk2@éÇ©?1@M\©?ú†3@žP¨?°»3@aº¨?º«-@V+©?~ê-@[¨?FÄ)@@R§? (@›ô¦?¤!'@£¦?ø$@Î[¦?ùC$@+¾§?W&@h¨?+£,@˜¬§?ʪ-@/è¦?Ò,@Ç¥?tÓ'@Û#¤?,è'@ßû£?ý„&@ë‹¥?ø=!@+¯µ?ˆN$@37´?ý@ij?ûÈ@/´?ìg@û ³?ùÄ@Ȳ?¾Á!@Ài³?}g&@oŸ°?¸31@¥ª?Ly1@8é©?E5@û›¨?Ö5@žU¨?h¹1@Ï|©?‘…*@Œ3©?f *@熨?pÛ)@Úƒ§?¨Ü'@ê<¦?‡$@WÒ¦?ë®$@âL¨?¼ô#@$ɨ?¸4*@ã\¨?</@ºc§?«‚)@Ú,¦?JÎ(@_´¤?6T&@¸¤?+W$@WS¥?Þù#@µ?T#@É—³?¦ç@[†³?F@ ™³?žž@9A²?ax!@Tó?øÞ#@Õ}²?G³0@†(­?«±1@ª?¨!5@mò©?µü8@Ìà¨?×~5@B‹©?«·)@ß«©?Šo*@Ýu©?­_)@Tܨ?s)@Ħ?Ça%@ÌB¦?#@¥/©?±Ð"@r¤¨?>(@Aš¨?þa+@x‚¨?²)@ü¦?á*@ø¤?¹Y(@z¤?n.#@û¥?ƒw)@a´?M%@–n³?j@ÔÓ³?|“@ñ¼²?ž!@¯³?Xƒ'@F´?ï/@ÁÉ®?ø74@˜-«?ÄÛ4@<«??p9@œBª?ý¯8@Šª? °.@Ęª?%º(@„­©?=ø'@;£©?ë·,@°œ§?Ža%@MU¦?HÛ$@Nɨ?ë†%@V©?ê±'@ ©?˜*@B¾¨?_ç'@‹£¦? c)@`t¥?þ2+@c¤?Š%@S¤?7(@ò‘³? "@ -´?.™@—f³?Èy!@lT³?Ú#,@C€´?«õ0@ °?´5@(Ò«?¸H8@ =«?s¹7@à«?Ãn:@%V«?\I2@Þ[«? >(@‚¡ª?!=*@ø¨?ìJ.@ªÏ¨?ø*@¦?‚&@Û÷§?¡“'@¶Á¨?gÚ&@Z©?Ì )@­=¨?ê0'@»¨?c$@½Ž¥?Õj,@vA¤?S+@•Ò¤?·Ÿ&@ëç³?ލ @Ä´?×ß@\ݲ?f•*@.Ê´?qÈ0@’±?Íd8@5G¬?R':@so¬?„§9@"«?":@;`«?ÄR7@"…«?]£+@ž«?šä,@ïb©?sÁ-@ §¨?.]/@Y ¨?©R*@€§?Š(@rÿ§?ß»)@$g¨?g©(@àO¨?ãa'@Ü©¨?^ &@Ù¦?I›(@¥”£?,X.@Õ£?H°&@<¤´?—Ò!@F—³?Ÿ )@É´?v•0@ç²?ñl8@õC®?Ä¥:@ ߬? U;@Ù®¬?Í:@Åy«?«[9@¥$«?“A.@–«?;á,@›Ê©?õŒ1@Uª¨?§.@’4¨?f+@_ܧ?Bw(@Gާ?)*@ïS¨? 0)@ûĨ?¸Š'@V¨?? &@¢J¦?$@·&¤?x-@œí£?Sñ*@hÇ´?aH)@zH³?Dx/@Sù³?gÜ2@ Ã¯?~Î9@§Æ­?Uö<@ X­?l =@È:¬?°<@Š«?g2@*\«?›*,@PCª?Ű+@ÿó¨?iä*@3e¨?(J+@!—§?0Q'@£‚§?Õ’(@ߨ?ÎØ*@¶H¨?§(@D0§?8%%@ئ?äì%@‘¥?×(@pb¤?/@޳?îÉ0@ný³?`/@Çè°?Žú<@:C®?¾ >@Ws­?£]>@ ï«?ÇH=@(é«?4@jýª?‘@+@g«?Šâ'@{Ä©?èX'@õ¨?ÛÕ)@}3¨?øå&@& ¨?Ú%'@+Ÿ§?žå(@b§?Äl)@$Õ¦?²Ü&@’Ñ¥?<{&@M-¦?E÷&@Z¤?E-.@^Eµ?Òs-@^¯²?»ì9@’˜®?†@@"á­?"èA@cÑ«?y–@@½Ù«?c 4@ô†ª?}ø,@âOª?½0&@”ª?À²$@S‚©?Lß%@†ô§?r–)@1,¨?št(@óL§?¿+*@éP§?žY*@7—¦?-p&@¬U¦?L’)@5*¦?76)@dg¤?Ü*@¥´?æ$3@°Y¯?kÉ@@T´®?yÿ?@Z¬?äžB@B°«?^7@‰Âª?‰--@Yaª?ÐÞ$@–$ª? G#@a©?%´#@ä,¨?«¿'@:D¨?SÕ*@>§?I)@x§?ó?(@{”¦?Ín'@Ëi¦?%ë'@”‚¦?j +@Fù¤?h·*@bg°?`>@y%¯?zÈ@@ÉD­?¬SC@‚Ô«?^T=@Ãû©?«§-@+ ª?µI(@)Sª?õ§#@×8©?eÕ#@(n¨? ü(@É5¨?rÅ*@Ýx§?xÕ)@ºW§?®¿&@$‘¦?uD'@ðP¦?±(@ÒØ¥?(m-@wn¥?A¸*@¤@®?ÙEB@¸.®?5¦D@$׫?)sA@Ur©?¢ñ.@…Ì©?©5*@&Vª?K&@V)©? $@Z¹¨?t8)@|i¨?ò+@Zå§?ÞÄ+@ Ÿ§?x6)@ŠÞ¦?ÅG(@j¾¦?3Â)@yN¦?Ó-@£¤?D,@&j®?¦J@è¬?h8C@úª?˜<5@=v©?•°)@¿.ª?ò$)@!U©?w`#@?ظ)@o'¨?‡Ù,@”f¨?Ê\,@Ô"¨?‘´)@– §?õ6+@v†¦?^ï+@¸&¦?´Ð+@€¤?îŠ.@㘭?¦»I@•c«?/7=@â©?ÃÕ-@È‘©?{c*@\©?–'@¿¨?GQ)@¨?ÔØ/@¿ ¨?¿É/@ßg§?­+@T§?Þ¿,@ܤ¥?ÉM.@lš¥?$ë-@q¤?'q.@ç+¬?Þ¬>@êª?È/@àש?k*@—`©?¯W*@`z¨?‡-,@â/©?«=0@Q§?2²2@!F§?ß4.@9Ö¦?°X/@¨˜¥?“~.@'ð¤?(¸-@Ÿ¥?­8-@¨©ª?n2@û„ª?-j,@¡©?8¦,@†/©?ÖD-@4¾©?¦i/@ ߨ?µ87@mi¨?‹P3@šÎ§?«0@bƦ?¬ù.@€Ò¤?¾.@Íå¤?¬Z.@ÛÓª? ‰-@ ”©?ˆö-@O|ª?{~/@bvª?Š2@Ƥª?ò{<@üº©?è:@ýý¨?NM5@—7¨?4Ö1@œM¦?™ƒ.@=S¤?«²/@*oª?Z.@Nu«?u—2@z«?67@|Ù«?uâ9@‹oª?·>@ â©?êª;@¹¿¨?ìM8@¶§?®¨4@¥2¥?õd2@H¬?@…3@ÿʬ?c¯;@c¬?…A:@¾éª?«Ì>@ø,ª?¸×?@û·¨?jþ=@‘ ¨?Å:=@¦?^»7@á¬?Wâ>@d´¬?C’:@©«?lf=@Ú ª?€.?@ƨ?°?@Ö¨?u@@$á¦?™—=@°2¬?"µ<@ÈÛ«?Œ:@Æ©?QÄ=@¤Í§?Êß;@ :§? =?@9§?Î@@@Û0«?#›:@™ª?`C=@Gk§?Æ ;@Wئ?§í:@Âæ¦?eS>@– ª?Ž®8@A¨?‰];@oª¦?¢ò8@%Ô¦?`È;@ñ`©?¶¹;@ƒ§?Ñ7;@§]¦?7"=@„"¨?W…?@§8¦?ßô=@×l§?Ôû@@]ô»?L @¸ª¼?¶@¨½?ˆ›@¼?„J@Ä?º?ó™@i|·?´­@S¡´? ÿ@Ya²?¾é@œ±?£@Cû°?íª!@\#®?ðÔ%@AË«?î&@1¸ª?ÿ¸#@A+©?ߌ&@ªò§?£¿&@vp¨?@ë(@Ú¤¨?¤Ž0@º¹©?QØ8@:gª?L?@K[«?ì”B@¦ëª?©îD@×Aª?S@@ ¨?ínA@Š¥?:û>@ú £?r\A@J”¡?#vB@fz ?vB@ç4¡?s8A@YÉ¡?x[?@b· ?Q@@iW¡?ļ>@è¡?É»=@´"¢?¾?@,b¡?m<>@Ü#¡?ïU=@~*¡?Ëå?@]‚¡?’eA@3Š¡?øà>@à:¡?xL<@/œ ?ìp;@†} ?\>@ÇJ ?ôï?@ßè ?b)=@m.¢?ƒ¿?@¢?F>A@±£?øŸA@­r¢?0C@2Q¢?Å*C@î» ?Þ =@#ü ?†7@Xœ¡?¬3@ )¡?ç*5@4Æ¡?¸|6@ýõ¡?F†7@ß·¡?|6@Þ¢?C5@Éÿ»?øV @ H¼?Q@ ?¼?Œ±@µUº?äŒ@â¹?£¼@Ói¶?j¢@G´?I @[³?™ç"@m6²?·$@\…¯?<#'@ÐÙ¯?Mg%@—­?o³%@§²«?­W%@ÏY©?fõ#@|4¨?8 "@ªs§?ô>#@g¨?l¨*@%©?Qr3@•è©?€¥8@w÷ª?„>@0%«?¹J>@”·ª?T¶?@¥š©?`Y=@Bm§?†=@x¥?"ó=@-ë¢?1=@ ¢?¥Ë>@aõ¡?ég>@›¢?Æž@@Ü;¢?ÀYA@À£?Ã@Ïe¢?¹¼;@mÕ¡?Rª>@“¡?8B@§E¢?8×?@Ä1£?æÅ=@æ+¤?¸[>@· ¤?›=@ú¤??@ªÓ£?ö‘>@…£?¿«;@NW¢?K7@÷¢?i,1@8}¢?„¼,@¢?R´-@£?700@SZ£?ˆw1@Œ£?&o1@pø¢?Ñy0@»»?«¿@l»?Rü @æ9º?EÝ@sº?ê–@óä·?Å@Ͷ? @·k´?û$@?³?4ö(@ê§±?¦,@—°?¤¸*@`Я?¾4)@>¼­?x'@Ñɬ?‘&@_ƒª?t!@W ¨?J."@<ô¦?:…%@p§?L|)@ s¦?xÝ-@d©?%î2@Ǫ?ü6@G«?N9@5Ÿª??P<@Wî©?ŠY;@¤Á¨?Ì@<@ û¦?x³<@¦?©t>@ „¤?šÂ?@ ߣ?n×?@W|£?³xA@ˆD£?-?@‹¹¢?¡ð>@º$¢?(?@/Q¡?£k=@d¡?®›;@&½¡?“Æ=@• ¢?ä;@øæ¢?†ç9@GΣ?;ò<@‚£?XÃ@@Õ £?J¾A@ïL¤?×0>@=ͤ?|<@‰¥?«Â=@Ì¥¤?å¸7@Ì•¤? 8@ÕÁ£?sÞ9@„8¢?$ó0@h£¡?«¨(@Œð¡?0‘&@ +¢?o+&@Ž|¢?fô'@倣?½+@ûô£?žD)@ÓH£?²Ú*@@¼?îÐ @¼Š»?VZ@p>º?Þä@_«¹?¬@e«·?5 @ µ?i«!@f¾³?Rg(@h³?Ò6-@Á"²?•1@¾°?Ñì,@´m¯?+ä(@°®?É%&@_ ­?ü±"@µ®ª?¡U!@^¯¨? .#@Ñž§?Ά @é¦?ÒÞ!@†Ä¦?¥«'@S·§?ns-@ŠŒ©?‘D1@¢mª?Dß0@ü]ª?Xê0@2©?Þ[9@‹è¨??@‚/¨?0ë>@ %§?GFA@7Ó¥?º³@@#­¤?ó_>@T(¤?–>@Y±¤?¸­<@Ÿ¤?L9@«i£?È6@” £?¬Ý6@¦þ¢?=•7@Ф?L>8@uÿ¤?j:@¿e¥? ¹<@qé¤?r?@ïÆ¤?Mœ?@Aؤ?x;@ßV¥?Q9@D¥?´5@ L¤?¨æ0@”®¤?$»0@Š£?ò1@¥‰¢?Z³+@–·¡?˜…#@o¢?C: @6ä¡?ޝ!@"£?]S%@M¤?¥þ%@ùÉ£?ªø$@ª_£?'@ÕI¼? @\»?¶k@›ûº?G@ð±·?"@ƒQ¶?æ•@SRµ?Íá!@îh´?ѽ)@Ðʳ?™90@K€²?Ý41@È0°?²5-@™Å¯?ó+)@èõ®?&@P½¬?…¬#@ð`«?})!@Xn©?H…@.½¨?B~@€l¨?|5 @Ô@§?œé%@>ú¦?DX&@qn§?!s(@&\¨?wa)@B¨?Œ10@ÕQ¨?í´2@–¨?­È7@ ¨?ZC;@Œ·§?›==@ p¦?$(<@R<¥?ûµ@@"k¥?y=@ך¥?4z7@j…¥?ž¸5@6¥?»‘8@‡’¤?äš8@ÝÞ¥?M‡7@غ¦?ž9@Í¢¦?j:@±±¥?æM9@*k¥?¿Ã4@{ˆ¤?5_1@`º¤?š/@»¡¤?É?+@à:¤?½E(@'Æ£?Fr'@HÁ£?0Æ&@Øñ¢?%@ ¢?A "@¢¢?Õ- @ £¢?'ï @Ad¤?¶"@¨¤?Ë%@©°£?^Z#@1ò£?ì6$@$~½?‡à@È»?ÄG@ë8¹?£V@¦¥¶?ÊÚ@÷ µ?r¬@?]´?{"@SØ´?¾f*@Âk´?ý2@Õ²?2@¦Ž°?Wi.@ôò®?³q(@˜ ®?mV&@ »­?ìå#@¡‘¬?è"@é~ª?uä @²©?ö‰ @¿}©?ïö#@ù7¨?à#@:4§?¸!%@Û §?[$@O§?Áð&@¬A§?Æ&+@s½§?"³-@*/¨?O/1@·Ú¨?c5@Õv§?1ë6@¦?+s7@Îo¦?ËÁ7@5w¦?%9@ÿ6¦?« 7@MD¦?’6@Š]¦?‘M5@1–§?D3@ƾ¦?SU0@‰ä¥?<0/@¹ì¥?ª,@XФ?T@)@ÑÈ£?á®&@Ù£?§>%@Ç ¤?”%#@à ¤?ô"@î¤?—é#@s·¤?¿Ë"@~ü¢?G#@8Т?¯c!@Œ£?c"@ O¤?¾÷#@ÕÕ¥?H"@ÆV¥?}­$@£€¤?jû"@½¥?9u%@R©»?W@2Šº?ò9@ ô¸?rç@n¶?™r@ʵ?˜ë@/jµ?(Ì'@ªË´?zš.@úþ³?f3@§š²?±2@.b¯?³Â-@h­?(ò(@å­?“Å'@‰}¬?ùþ&@q%¬?‘i$@ªhª?ÎË"@.º©?ÝL#@$¨?E‚"@ØO§?ø©$@ï•§?.ì#@U*§?Ì$@„x§?`7&@¿ª¦?n)@"¦?-¿-@*]§?N0@=i§?\›4@{À¦?¯Ø3@C§?6Ë3@§<§?g-6@mئ?J…5@Œ§?H3@ŸJ§?#"2@Vg¦?*-@ñŒ¥?¶ê)@Ž&¥?rí*@xz¥?ûs$@‚ã¤?F´!@É£?œÛ @Ÿ³¤?Qƒ!@Á¥?@Í @؈¥? ƒ!@|̤?yô!@\Ф?Gy!@0Í£?í"#@` ¤?M#@Y¥¤?™Z$@Ѥ?ÇU'@Ü—¥?ªg$@¹¦?´%@¤§?Z&@J{§?>È%@®V»?d0@,Z¹?[€@1E¸?so@ÇR¶?~^ @ßIµ?Ãì%@~?´?¥N(@IV³?…A.@x³?¾÷3@æ ±?ù85@ŒJ®?T1@ð'­?6¦)@ß®¬?1Õ&@ø³¬?±©$@” ¬? ×!@ÔQª?2÷@¯©?Œ!@S¨?ä"@Áÿ§?dw#@«¨?°#@—§?äº#@1 ¦?t @b'¦?T&@šŽ¦?WÄ,@Dç§?ƒ1@”e§?bÕ0@õ¿¦?è–0@³>§?%U2@Rl§?V1@<‹§?FÛ.@óè¦?”,@RÀ¥?Jy(@m¤?l×#@c›£?«B%@ 3¤?ôù@ý«¤?eÝ@S6¤?äX@„ ¥?Yà@e¦?‘9!@Ê¥?ëË!@¹î¥?|ê"@L›¤?— @ƒ6¥?Á!@õ,¥?ˆ #@Ïd¥?<&@?¦?Ä·'@¨¦?ÿ#@{f§?Û½#@ÐȨ?Ïî#@ا?[ñ#@š¹?´Ç@›ï·?ˆö@0÷¶?ìý@+¶?$1 @ÿ³?Ã"@<²?_¨%@ÿ±?Öb-@´±?®¶4@r°?±¯5@9!®?Á0@°|­?”ð'@ä­?,7#@n$­?«€#@cùª?!@§©?cò @G$©?õ7"@à©?.Ë$@d°©?XX$@¨Õ§?)!#@Mò¦?Á< @§i¦?b"@R¦?ß6(@öë§?þq+@‘z§?ê -@…§?Â.@ɧ?Q'/@.°§?_/.@ȇ¦?Jï(@òŒ¥?#"@Óƒ¥?t@ K¤?*@9£?OÞ@¶“£?Ч@¤?f@ät¤?ï@º®¥?Uj@&î§?à@ð¨?Ïw @òR§?½ä"@ü³¦?Þ)!@ÎP¦?%Ì"@ ̦?<ý#@j§?kÈ$@+K¨?¥$@/¨? å @ä4¨?L) @“¡¨?;#@—¨?Ü{$@·¸? Ì@›¹?´ä@‡Å¶?M@Æ,´?ÚH@r‰±?xÐ@e‡¯?xÐ @EW¯?KE)@ذ?X2@R°?b5@N×®?[µ.@ê®?ë#(@C:­?ý$@ëà«?ÿÝ!@Eª?Þ]!@Þvª?M#@ļ©?ª¥&@µä¨?ŒR$@{_¨?©˜"@MU§?Í@›k§?’@*/¨?kj"@¨?(@Áѧ?†«*@Yѧ?V&-@¯ñ§?t¢,@bý¦? 2(@zÙ¥?¨˜#@_Ì¥?¨@¥?V­@x$¥?D @^ü¤?Kº@Æý£?\›@™¤¤?¬ @1¥?7¹@Åî¥?¡V!@ا?`‰"@êN¨?,3#@^S©?" #@ ©?Ú""@Ñn¨?ì]$@à¨?bÒ"@ f¨?u#@Jæ§?™ù"@ŠJ¨?×Î @®b©?B@Σ¨?sì@Û\©?6L"@—lº? @ð·?o@°Ó´?[‰@Aì°?.@¢_®?æˆ@òp­?½ñ@×Þ­?3È(@w¯?E43@¯&°?´4@xÀ®?÷­0@ꨭ?¡ )@tó¬?)ÿ#@D6¬?ÒL$@|«?ô,%@8ª?.°%@ç‚©?Å"@m?©?ò"@ L©?\%@Ú¦§?Jü@©?ÔÈ @ í¨?”4$@›C¨?)'@e¨?{+@bn§? b)@ó ¦?Ù#@Ö+¥?r0 @¹ë¥?Ëï@”Ì¥?_@„¦?’7@O¦?,@Ñá¤?¢@Êœ¥?€E@S¦?c @\»¦?zÔ!@©?¤#@™¿©?å‚$@î9«?ªü%@ Öª?„r#@ ¸©? Ö%@7ê©?«¥#@¸ ©?ì#@^"¨?~Í$@l¡¨?² #@ab©?Éú!@Щ?n¿!@b{©?T¸#@ B·?¦þ@øŠ´?—d@ %±?å¯@6¯?f @¥­?€ë@e/¬?­Ö"@îÉ­?Îå+@KS¯?ê4@^¯?Ì£6@ªN®?óí2@Ók­?‘›.@Z6­?ɱ*@³è¬?ÒÀ)@]™«?ì0(@¾ ª?äN&@ï`ª?Bõ$@0¢©?ÿò!@×a¨?ñŠ@Eª?l[ @*³©?ÑM%@Ô˜©?Ħ%@¸©?¤…%@¶¦?—þ%@«í¦?/ @Ÿ—¥?²@ËÐ¥?Ì@kï¥?ýF@†ó¥?@Žˆ¦?´v@˜L¦?(Á@æ¥?Þ@ L§?ä@ùü§?Yf @Âo©?ÿ“"@¸|ª?T%@(+¬?æA'@îr¬?ªn&@V[«?'@ÇŠ«?Ã'@ù.ª?UÌ#@àt©?Þ-%@q©?Þ™%@Bö©?Ñ&@­õ©?3™&@ýª?«Ö%@Ó®´?|Ã@Ò`±?úë@9#°?^Õ@9¯­?-@+¤¬?½.@¶¬?½¹#@6Y­? —,@¸Ò®??¢4@{á®?1Õ6@ο®?†»4@?Ý0@^½­?Â×-@3­?ª<+@•§«?^í&@3'«?VA$@Ö•ª?ø #@Ë&©?G¬ @—ª?ÏÚ"@ºª?1F%@›æª?^$@ˆë©?Ž$@Ó‰¨?À#@¢¨?Æ@‘¦?ÿ°@¢Æ¦?I_@Ç¥?1@=´¦?Ü@¢¾§?¿@NF¨?@Ó§?3@Â?¨?H°@J2¨?Z­ @ ‰ª? ü!@m’«?.‰#@»­?ð]&@³m­?û*@U“­?Ò*@Û­?’“*@¨û«?¬Z'@,Õª?|ü'@¥qª?¶þ&@_çª?¿¼'@Õ%«?¯+'@§Êª?×(@(²?ù*@šÇ°?@‹@S ¯?üÎ@î?k™@E'­?ÌÇ@ÈA¬?xÊ$@w™­?·)@Ãê®?ÞR2@ÈY¯?D€5@½¯?Qõ6@C®?–T4@Ì€­?…±0@ºY­?Ž})@úÛ¬?š;&@ ”«?~$@5Hª?Ð!#@Ílª?ù>#@/«? Ì%@z «?;g&@)ɪ?¤Ð$@Þ^ª?l¢"@ª©?€7@}¨?“Ç@Çö§?5@ʦ?@}†§?”[@Œ©?@ n©? \@Q$ª?Io@òª?¿C@|ª?Á" @ép«?àb"@s[¬?z³&@Ì®?Jõ)@ ß®?ù,@ ‹®?Iœ-@œ´­?N¶,@'­?T*@8s¬?Ÿ*@ø¬?Š(@|¬?=r'@>Þ«?Vy'@×ø«?æÁ'@8¤±?UÒ@åG°?ø”@™Á®?ú@"­?yV@,ݬ?ÞÄ@by¬?#?"@U­?—'@¯?ÎÛ0@—²¯?(o6@p0¯?4ü8@Œ}®?=6@Vô­? 1@€â¬?‰x-@iG­?ås)@h¬?&@h«?Ï<$@¶º«?Dj'@¡t¬?ß&@z?¬?ÕÑ&@¬?̃#@«?h@Óª?f@{©?5³@Æ2¨?:ì@7©?©@V5«?¨Ã@;ìª?S@©«?!@’«?æó@³;¬?&!@„ž¬?£ƒ!@q­?ð'@:/®?O+@@G¯?ÔÞ.@H ¯?Ô²/@ù¼®? v/@>Э?ž.@Q²­?~é+@WU­?8Î(@¢>­?¿÷%@âè¬?&%@$Ú«?`<%@Gr±?/@ݯ?ùÂ@0 ®?Ö„@šÇ¬?mX@¥o¬?Þl@ô1­?ˆ— @„­?í%@AA®?}H.@5„¯?ùˆ7@\¯¯?¯¥9@J ¯?ô7@::®?¼\3@»!®?´±/@=­?/.@©¼¬?¸‡)@a ­?¡f)@gb­?Nt'@†¦¬?¹â&@ŠN­?Ñä%@ü¡¬?Š%"@÷ ¬? Ý@[³ª?œº@êð¨?áð@êê?b @w¬?Ü!@Ǫ¬?x¼@"®¬?þ\ @]¶¬?}Ï @¡'­?Ì€!@48­?DZ#@çÝ­?XÉ'@ ©®?È™+@¶æ¯?} .@¼0¯?§.@ì¯?[Ý/@R1¯?tB/@}®?§Ã.@i–­?®*,@ú®­?&@¿d­?å5'@ñ°¬?v6&@óÒ¯?è«@ã.®?j@¬¯¬?å@¦¬?Œ@@àø¬?h«@Ø ­?ç@;°­?4€$@¡¯? */@ëå¯?,÷4@T °?Mr6@x¯?Có5@0¯®?™2@¨Ç­?3ª1@´7®?û0@ø¶­?+@ˆÝ­?(F(@b­?WÛ&@!Ò­?DÔ'@´T­?(1%@ 0¬?nS$@‘«?wi"@™ª?é¹!@ƒíª?‹Ÿ"@^Ÿ¬?½Ù#@CÒ¬?Ö†"@H6­? ¼#@2­­?Ù"@µ³­?0?%@ú®?—­(@rî­?æ)@ä3¯?¥+@Iϯ?n-*@A ¯?ÝZ,@<°?1ø.@CÕ¯?±2@u¯?|%2@$'®?–8/@U[­?ž=+@~#­?L¸'@=¬?ô '@’Ü­?þ@à­?á†@ç¬?ž¢@·¬?)Ü@ÜÈ«?ˆ@‚¬? u@ŸB®?U¥%@c®?A†.@PÆ®?VV2@O£®??ó3@DN®?1‰3@žI®?+G1@ k®?¬#/@Üø­?kÓ+@…ÿ­?áÓ)@v·®?¢Í*@þ^®?Ñò(@0®?¶B(@šÌ¬?lÌ&@¡¬?i$@3Þ«?~F#@‡¬?ší"@•3­?Ë„#@W¦¬? $@©w­?J]&@Û®?‰&@±á®?¸â(@û®?ÿú,@Çý®?—–*@£ö®?`Á)@e:¯?ºø'@9i¯?¦è,@xè¯?Ô0@î¯?z1@.Ÿ¯?£œ1@kå®?H,0@Э? @W°?¡@{å°? £@Ó±?£&@¼§²?J=@r±?v%@lû¯?ƒ„@d»±?Üø@ÑF²?I@éɱ?£Š@‚<±?]Ç@Ô¹±?Æ2@«Õ²? á@’½±?H¯@‘°?ãó@WM°?#°@èÖ¯?â @sP¯?ä@j«¯?­è@–e¯?n @Ÿ_®?Ô¸@7­?pý@c‹«?ÝŒ@=ì?a{@³}¬?è3@³®?0@|®?ÿ"@¯®?hÿ@ëÛ®?д@¬ƒ¯?D¥@TN¯?€Ä@7;°?ªD@¿¡±?n&@À,²?°!@v±?Ç @Jl¯?8Û @F´°?£“ @O%²?O¾ @—ý²?®@ëû²?Ûf@o±?–@pG²?¿±@Dz?*Í@­~±?ˆè@—›°?y@lh°?£€@½Ð®?ã÷@¯É¯?¢d@³F°?ž@SZ®?4@œ¸­?6ô@9¬?Îì@Å’«?¦@@».¬?®È@.¨¬?®ÿ@ga­?%@®~­?²[@:‘­? ‰@©<®?ñ@L½®?ËŠ@Jî?DÍ@µ‚¯?úþ@J)±?ÛQ@àð°?Æ¢@´’¯?ý¸ @ÍÀ¯?;ê @,±?V @º¿²?b.@ÎQ´?D<@A|³?Ë!@Å„²?8Û@ë±? @:$±?rù@2j°?Û@Ÿ¯?×û @=®?oÌ@«Ä®?‡¾@n¯?U@8 ­?¦@%@¬?|Å@6½«?i¤@q«?H@Q<¬?¦Q@ ¬?x§@=Ÿ«?!@@=¬?@Ô÷¬?ñm@-ª­?6ã@Ù­?oQ@¢"®?¤‰@8¦¯?X…@´¯?æ° @®?ŽY @m®?ºï@ÿI¯?© @¼T²?Þ@§6³?b9@P÷²?e›@o²?AÖ@ °?Å@š¯?’ @=6¯?ë¨@©Í­?s» @7®?o@ùN¯?Ô@)®? @¶¯¬?^@÷«?ì;@þ^«?ݨ@œ¬?Ñ—@†Ø«?Qu@U2«? —@“:ª?¼‰@ú|«?!@Îþ¬?mÞ@n­?^W@)­?Ô8@«±­? @,M­?Ü@|­?ø @É­?!Q@Ïà®?åú@›Æ±?ê- @J²?e:@¾¥°?Šz@ï~±?ê7 @çW°?J@Ii®?(< @ƒ[­? V @Q­?vW @‰›­?à@»¸®?Ð@̬?L-@në?°á@c³ª?x+@FN«?xã@Ñ««?”Š@t(«?µÊ@üÛ©?ë@€Î«?ˆÙ@72¬?ž½@¬?#P@­ˆ­?¤÷@|¿­?»÷@¶ ­?ïT@~¬?x @C¢¬?‹* @Mg¯?£Ö @5ð°?é+ @ýî°?=@È ¯?új@ÕN¯?é @Ó¡®?m+@ý­?ËF @z¬?Õ@còª?èô@×3¬?®÷ @‰­?ï/ @œ ¬?y•@ë?6é@n£«?èÍ@=¬?ÞŠ@+Ôª?H@pnª?Kê@-Kª?úF@g¶ª?¥9@Ì®«?ùÐ@v¤­?¿ã@Zñ­?q±@ìë­?éÌ@ˇ¬?X>@+>­?(Æ@öµ®?«à@òɯ?h@Y,¯?Öa@;M®?Så@õ­?ãc@i®­?ë„@?/­?^@QĬ?e” @[m«?8 @®­«?mÊ @_¬?Wà @‰S¬?Vø@éq«?¾}@~¯«?/¦@G¢«?N_@ã«?x@D«?é@Äyª?@e@Yy«?p‡@C.­?‡@Fs­?ó@¡»¬?Üe@•o­?Ùù@;1®?5@Dƒ®?å!@Ú¯?öÉ@ûØ®?–q@IÌ­?X~@­?Ƙ@ ÿ­?ë@‘À­?a@:Ú­?h{@Y­?cn @Þ׬?#Þ @ߥ¬?A™@{æ«?@@V6«?mÚ@Ò“«?‡@¨5¬?0.@V§«?J8@Ò«?e>@¥ª?˜o@W«?œå@mO¬?U+@ù«?í@ï¬?rã@ š­?š%@²ç®?ª¯@(¤®?[¸@Â’­?ÿÈ@ ì­?÷…@Í¥¬?>@gÙ¬?'@Çñ­?õÃ@|,®?÷y@yŸ®?’”@úÀ­?5˜@¹*­?¹q@k4¬?Ð @sƒ«? @©«?Pn@w‰¬?@/µ¬?9@´ß«?@vC«?5•@DØ«?|<#@÷œ«?¶0@Y±¬??…@ß­?&Ù@_Ý®?e!@Ðë¬?, @Ö%«?|9 @B«?¸- @”ç«?!@¹!«?MY"@é$«?ÙQ"@d?¬?‚ @±¾¬?y@ùÖ¬?r@w§¬?·N@’·¬?\Ö@žn¬?ðW@¯o¬?þh@a.¬?žæ@³¬?Ê)@û¼«?ûœ@¸¬?È@«v«?Ž;#@fÒ«?Ÿ®!@ô}¬?¡v!@=_¬?Gû"@1ë«?!š!@Ziª?ÿ."@&š©?«ª"@^å©?$@”&ª?‰‚%@ɪ?„k&@H}ª?xÞ#@£âª?÷'!@(V«?—)"@Î;«?Q !@Õ«?!@±Ü«?mÖ@~­?ó<@®Ç¬?Ù@„I­?A@ÜJ­?L/@vc­?=@D«?¸Ã%@¬?<&@*«?ס"@kçª?^#@§´ª?é"$@q¥©?‚#@Ñj©?1Æ"@óª?Ÿ&@¨ª?F)@¬Gª?1R&@íñ©?;-#@»Ý©?‡p"@b#ª?"@ž½«?…“ @¡0¬?M`@‡ ®?t@Í®?Èæ@&z®?:Ë@vz®?Æ@´®?n@‚‰«?Ͼ'@2«?Õâ%@Ñäª?û›&@ÿ©?/g'@äs©?.Æ"@™Ï¨?9#@Kï¨?cK%@ë ©?“‰'@“ª?]ø(@¤©? ›&@É™©?k#@oª?ƒß @n¡«?Ïû@ÊF¬?“R@Ož¬?òw@¾À­? é@áþ­?ë@Õ6¯?eÅ@€°?¢Â@ŒÆª?À)@%ª?H)@b©?‰í(@ò¨?bd&@W¨?·'@†¨?^B(@è¨?¬t)@{©?kÐ(@#ö©??~(@ð‚ª?³'@ï «??Ã$@lU«?rb"@@’«?W¾@EA¬?°8@ç!¬?Úq@¬Ë¬?¬<@½+®?ͺ@m#°?SB@†Ì©?æŒ&@S€©?fÊ'@Õ×§?fŠ'@ú8¨?E8)@â¡§?#b)@Ô§?º©(@`©?%Ë(@”î©?&*@;ª?ðQ(@©¶ª?ºŠ%@Ê÷«?Ì`!@2ë«?u_@§ò«?"÷@Ü…¬?ƒ @#Ÿ­?3 @{÷®?ã©@¸°?,= @2ª?—$@ƒÄ¨?Qa#@}¡§?γ'@Y1§?èk&@Ч?Çm&@·Ü¨?p%@b…©?ùx#@¨?tü"@[©?Œ @j4«?B@ã«? ‘@{x¬?qí@…¬?ÿp@Ûƒ®?¾Y @¿"¯?ì¦ @®°?vS@ÿǨ?.À@\×§?Jl$@‹§?B˜%@þ:§?b«$@ô™§?Ö-!@g¨?R@Èݧ?+@¶ú§?ûC@öʨ?]ˆ@¹´ª?˜d@Óë«?Û@ŠÅ­?—i@2›¯?¸'@t°?iµ@^N°?Gœ @#™§?#´@›i§?°%#@-V¦?iË%@ü•¦?Þ¿!@å̧?Éæ@%¨?žf@C½§?ÝÂ@ð¦§?F:@EÁ©?"o@“6«?'.@ØÅ­?²Ë@Iÿ®?5@1°?ýA@_1±?á(@Ь¦? œ @óá¤?É:%@6K¥?¸¬"@.¥?‘J@a3¦?8É@‹k¦?±Ô@ W¦?b˜@¥I¨?d @{ª?Ÿ{ @·˜¬?Sî @Ö ¯?@¹é¯?3É@îÙ¯? ß@üà£?{.#@”Ѥ?ƒ“@qS¤?sP@@Σ? ú@Z¥?Q´@‡1¦?@H¨?ìŠ @_#©?ú´ @¤ «?ãK @h7¯?• @öE¯?•@¿ô¯?Ì @ñP¤?§ì@\m¤?!­@ó;£?ú @5ê¤?rm@uÜ¥?ª¯@5¨?D˜ @j@©?ÏO @Aª?ªš @ é­?1ö @¢>®? é @&¯?¬Ð@›ñ¢?g¿@ìa¢?ù@锣?@êΤ?Ò+ @˜ ¦?ŸŸ @xe¨?!ù @X©?Z@ á«?C @·Ã­?i¶ @}®?U+@{E¡?q²@øF¢?#±@ÑÖ£?ûG@CÎ¥?Ù @ðÔ¦?cÜ @Hʨ?[6@ÞϪ?ÿ¡@{¬? H@oü¬?²¼@›¡?  @Ùs¢?Ô:@–”¥?‘@J‹§?ƒŽ@Q$¨?çÔ@ß°©?ˆ @#z«?ô @Hq«?o¹@Í¢?9@ïR¥?ÁŠ@ÄÛ¦?Çt@­m§?£Å@o,©?dj@gé©?‰~@Æh«?lÉ@*{¤?¤@o=§?˜ö@"@¨?;Ú @ì©?o @Û™ª?Œ @.¬?1œ @ðt¥?GQ @™¨?Íø @7©?€D @7N«?0% @q®?µb @{¨? K @E1ª?!l @4¶«?ãÌ @³¹¯?dÂ@Ø¿ª?X| @*j«?­ @ÈP¯?à @|a¬?³þ @éD¯?¡ @\¯?ƒa @«€½?¨ù @—N¿?‰8@9 À?£¡@™èÁ?Ÿ@ ”Å?•@"%É?GA@Í«È?Ir@Å?A @¦À?óÑ @L½?$€ @¹>»?øÈ @@…¸?¿@Y·?ÑF@"ô·?‹ƒ@6[·?ûe@3p·?% @‹æ·?¶@%϶?ð1@Ïú·?܉@Rø¶?R›"@xĵ?8¶!@÷µ?Ϋ"@ µ?öw'@Æ[·?¶„,@ÀѸ?Ñ1@8º?Û¢6@G“»?€0@ʸ?HÝ/@°@¶?rÔ.@pT´?¦-@XÛ²?éé%@ôµ?ÎÊ$@8í¶?Ìu$@X¸?µÑ#@—e·?Ð*$@%-¶?aÂ&@Ì%²?™0*@Ш¯?30@Ú­?8.@›³«?~¾-@Òr©?S/@Bܦ?Ú4@˜q¤?M6@”Ø¢?°B9@ˆ£? UC@¢?‘úF@] ?EC@Í”ž?`xA@a{?óD@¯•?u[C@á:ž?¶ñD@Bžž?HÜE@÷?KJL@ª'?9K@·œ?£ãI@)ô?9‰G@;½? × @H\¾?‰ô@k¾?¸å@CÁ?w@”¸Ã?ëÍ@Ù^Æ?¸&@PaÉ?\@:gÇ?Ù@­ëÁ?‘@&Y¾?Ä@%¦¼?Ò@OA¹?{@ *¸?:@C«¶?‹í@c8¶?ò@Þí¶?›ñ@7;·?ã¿@¡y¶?ì@X'¶?q@ýµ?no @÷#µ?@ @¿g´?¿©!@üé³? (@r>¶?ÐÔ/@ò-¸?óü3@˜²»?;¨-@DVº?µ®.@g^¸?jä3@á6µ?.Û1@ÇU³?Í*@ ¶?‰'@‡‘·?¯­$@î1¸?Ä6&@¨2º?çJ$@¥¹?E¸#@*·?sÝ%@(´?íZ*@¸\±?Ж.@ëý­?èü.@yœ«?fÊ/@£×§?Â@3@Æ ¥?8p5@ê.£?Aœ6@HÍ¢?î >@«Þ¢?iÅC@€U¡? ]?@ÛoŸ?+ò@@ˆ`ž?MÐA@.#ž?RE@wž?…D@ž/ž?½1A@¹Å?wA@¤ ?%‚F@=†œ?HbJ@Zz?ÞM@¾ ¼?÷x@%L½?Ñ@‚§½?Í-@T¿¿?Õ%@%À?§†@ôÀÂ?åƒ@"Ç?Áå@wuÆ?ºž@I?Á?D«@„·½?S@÷œº?+w@ãF¹?/@žÌ¸?ó7@J·?ÞÈ@Š·?¾†@ü ·?_,"@j_¶?£$@€Xµ?Ì6#@M´? H#@€P³?À{"@ýв?:? @P²?Æ?"@´?]*@>H¶?x5@͸?R6@Ï×¹?àR,@Æ©¸?°3@óU¶?¯¸0@Bµ?6.@Шµ?€ï(@Pœ¸?‹»$@¿š¹?xH%@äáº?É %@ú½»?‘&$@¿ ¹?‡¸#@b‡¶?€)@JL´?ý©.@Xа? %/@Ó­?’é0@9gª?Ÿt4@)^¦?ùÝ6@·£?F5@f£¢?»:@í¥¢?S¡>@ð–¢?l–>@2*¡?áÏ@@“eŸ?Á²B@Nô?ŸA@`­?wò@@x?Úu>@óE?kü<@)Çœ?z9B@Sœ?‡eK@(o?åŽQ@~°¼?…@¼?çº@ø)½?,ë@t¾?ü‡@kê¾?Sð@]¹À?‰½@_SÂ?¬@ð¤Â?³n@©8¾?ðî@ æº?)y@®¹?PÛ@“×¹?PN@„¸?´b@ì¶?SÑ"@K»¶?ÿ%@Ih¶?–%@úá´?ˆ¯%@š­³?´#@¤Ï°?ëd!@Ͷ°?`þ@C6±?˜/%@Xw±?Ù)@j³?[¸1@ø”´?4®6@Vk·?+ /@äÔ¸?´9.@^ɶ?è@0@‚ µ?•B,@Ž+¶?óG'@xÇ·?ØÝ#@³§¹??’"@»?èÅ"@±÷»?O;!@Nº»?»w"@á—¸? O'@ƒÔ¶?ˆ,@HL³?¿•0@ÐÍ®?Ì1@x¬?Ìñ1@›¹¨?‰ò4@f¥?¸g3@¦a£?µT7@Ÿ‘¢?PP<@ÖÛ¢?íÝ@@\£?VME@Ì¡?WlC@k\ž?+G>@—œ?f½>@]Žœ?Y¨A@.fœ?ø=B@6Ìœ?a¤C@€¯œ?xI@ô=œ?= P@0à»?(@Ja»?\Þ@ï½?;ê@ë>¼?($@ž¼?D6@wK¿?ª@>À?ßñ@Ò¿?˜’@S"¼?ki@cº?ñ[@5â¸?'ï@’h¸?øV@.Ÿ¶?J!@œ¶?cÓ%@—-´?«*@©Þ²?/5)@·Ú±?PQ(@æ°?‰5$@’X¯?êG$@TŸ¯?Dµ"@g¯?lk(@SÛ°?Hõ-@$a²?Î93@:h´?Ð3@áý¶?øë+@·?Î/@Dƶ?•ƒ,@϶?2›'@±t·? c @U¹?¸ª@iöº?ºW @˜¼?÷^ @ao¼?CØ!@fEº?¿U%@oÈ·?„&+@ÜÆ´?òÎ-@§ò°?‘01@j›­?øk0@ùª?¬¢0@À¨?ž/@u¥?‘}2@æO£?Ÿî4@¸o¢?ÛŸ:@ȃ¢?ñÚC@oé¡?~›E@%Ÿ?ÉöA@€óœ?¢jB@Hœ?›E@gMœ?PI@Ò^œ?ç‚J@¾{œ?¨?L@àZœ?îÐO@Oº?Ñh@$¹¹?@–-¹?®¡@›ò¸?1Õ@º¨»?=V @t¼?u³!@f¼?||$@¦à»? @œÃ¸?Å‘@¯‡·?Cb@£¶?å8@sàµ?ÀÒ@מ´?nð!@˜x³?=6)@Öá±?þ:+@ 7±?:*,@Œ °? -)@ Ó®?"C(@a—®?Ê¢#@¢Ð®?-Í&@ä`¯?d:(@™±?#-@ÄX²?>‡1@Ãæ³?èZ/@Ì·?v¨,@§z·?±-@>N¶?4R&@®·?R@ò“¸?)@C0º?en@_³»?-l @ì ¼?R¿!@¬Aº?‘v$@ü¸?Rd(@M¶?ó+@ ³?)+.@Я?Ü0@Ö¬?Û0@áb©?×ó1@s·¦?Ím3@½¶¤?§/@žG£?v=2@Æ‘¢?à¬>@¯E¡?>H@0 ?dŒD@f-ž?vF@Ëœ?+ÓG@X‰œ?(àM@•@œ?ñÏP@ ˆœ?¨N@›K?‘âN@^¶?ûì@5Qµ?"£@ήµ?¾í@»ÿµ?j‚@ä¸?Ÿ"@M¹?5×$@'vº?‰‹)@Mº?#È#@¶?Ñ­@)ø´?Ök@P³?àâ@ýª±?Y= @ ‡±?ݯ%@ѱ?ö,+@:İ?Ár+@u¦¯?ÞÊ(@ï­?€¨%@Éã¬?;³"@@i¬?µ "@~c­?lÉ$@þ­?‡L'@ê2±?.-@&q²?8¥,@Ð>µ?4Š-@/^¶?xs+@¤%¶?d½%@nô?ni @ÝǶ?V@ú=¹?¾@óÙº?›@áì¹?Æ,!@Jó¹?!©#@O¹?̲'@é“¶?³Ë*@¤²´?Ö-@¦²?Ì+.@‹®?­e/@(²¬?}ñ0@/ï¨?Ís2@Ñi¥?N0@ÛT¤?vâ0@Îë¡?«Y:@‚¡?Q/F@a[ ?¾HI@çqŸ?[F@ÝGž?«5J@+¯? ×N@3?•mR@ïi?h+P@ëž?¶DL@Qº³?îð@±ê²?Š5@á²?r-@ž÷²?@.#@5±´?}š(@å¹¶?à*@ôÜ·?µ<*@“B·?åë'@2è³?û™ @ëX²?ÿv@Yu°?<:@§¯?Åœ @¯?¯?%@ÇÛ®?ìA'@4d¯?«=%@¯E­? m$@Wé«?ý>#@1«?Ì @ÍR«?&$@ìf«?¨ú&@¹®?—‰)@Þî±?^1-@qR´?%q-@Ê»´?IÔ(@D´?ÕÍ&@á%µ?øð"@xeµ?ü‘#@ò#·?M* @ ¹?Qù @Ùƒ¹?LÌ@Gœ¹?4¶"@“ƹ?H&@h"¸?J°*@¸²µ?#÷,@‚æ³?9G0@)±?–«-@g—®?¦Ÿ/@ –ª?‘ˆ0@ç?|å-@§¥?½Ù/@¸þ¢?Y26@£ ¡?u`?@h ?ˆD@Ð3 ?÷hK@þªŸ?†_J@UŸ?~O@쌞?oØQ@é=ž?…ËR@òÒŸ?Ÿ)N@Ú ²?U,@bš±?˜R@'°?Äš!@ìK±?‹Ú,@³?ö2@Ìà´?Ñr-@Þ¶?O*@{µ?›Ñ+@ƒ ²?ðÛ!@ŽŒ°?-@Qp®?ü¤ @E)­?ç—%@.¬?ˆo#@Ïð¬?ám!@[k¬?)†!@Œ6¬?Í2"@ôž«?¿é@æª?[ö!@‘vª?x#@sK«?òÀ,@±B¯?ÿ3@.ï±?µA-@0³?·k*@Jž²?®'@QͲ?¿¸"@ë-³? $@²>´?Q1#@ ·?v]!@ ¸?øã@kº?"@£Êº?]%@OE¹?¿ƒ+@l¦¶?è/@ïÄ´?Aê1@ '±?þ0@@ô®?Üœ.@oø«?=v.@F¢ª?žË-@•§?¾.@øl¤?x/@žÕ¢?ž³8@öG ?¼A@-O ?™ÑH@Ä ?ŵM@q ?ÞL@ a ?RøM@* ?C P@ý’ ?Ó|N@°{°?Ñ@ëq¯?Y@âz®?¤O%@Nã®?Å-/@‚n±?½×5@ôè³?Ý¡/@IŽ´?¤Â-@†²? ,@vد?m^&@¹­?¡#@*÷«?C~#@e¼ª?£$@Ò€«?2 @£>«? ?"@4ïª?úA#@ÖѪ?1!@àAª?,T @ß ©?î–$@%ˆª?nC'@J­?Å0@½˜¯?Tï/@’v°?Q·-@0Z±?!W&@]€°?+9$@b¨±?õ"@¨å²?9¹$@>_´?’"@"·?øÈ@4é·?ŸÏ@þ‰¹?î#@kó¸?ˆÄ+@^¸?ƒ÷,@Ŷµ?Ê.@h[²?)/@·@¯?‡a.@1W­?kŽ*@×é«?¼Ï)@`‰©?Ss+@HÚ¥?~ñ-@£?v¯4@½¡?'=@EJ¡?§´D@Hx¢?ï£M@,¢?*™I@¯Ú¡?0™K@Ò‡¡?VËL@.à¡?}’O@€¯?7Â"@I`­?'‘#@ƒS¬?hµ(@Û­?¨ 8@åʯ?Ÿé:@6i±?ã3@Åo±?¡|1@¯?‹1@ÌÔ­?¥×-@‹’«?CZ$@±r©?Ñ*$@TÅ©?ën$@D!ª?"®"@Þª?Þr&@sª? „#@Î3ª?ˆÊ"@°Ð¨?#'%@Jz©?¾'@‡«?¼'(@ôC­? §*@;¯?õ„+@ÆÒ¯?À«%@«¯?M1#@Ôó®?Êj%@…z°?6ÿ%@:ß±?$ò$@³´?å!@òͶ?®1 @,ô·?u!@ñÇ·?¿Ì'@±ó·?¶ò.@!W·?ü"-@A³?xÝ,@š¾°?„À+@ù­?ch)@Ì(¬?…Ó(@‚¸©?é,@ªv§?–e.@C¥?é2@,£?Ã9@@»¢?ÏB@Ë£?çK@ʰ£?‘ÞI@p¼¢?É¢I@Êx¢?þ¥K@5¢?,uQ@kZ¬?;=&@êUª?Qu(@Û¬?¤â3@t®?3.?@3¬¯?ÿ@@ ¸¯?\ 8@·§®?9p3@jœ­?ø7@¬?Y0@r'ª?k-@dQ©?ùf/@W©?ƒi+@k1©? )@Èv©?ï &@ü¨?B1%@¤è©?Á#@£L©?÷¿&@`ª?¯å%@£¬?v*@gÊ­?++@$<®?U")@®?»«!@ñŸ­?¥¹ @K†®?ëX"@æ1°?êF(@5€²?M·%@ϳ?µH#@œÄ´?„ "@Ú½µ?ù¸&@š·?öˆ,@·¶?Bã.@ø%¶?7”-@5ú²?éE+@ÇÖ¯?Rl*@\I¬?¥„+@Ohª?xD)@ ©?´Ö,@ºò¥?#y2@ø£?ôƒ9@Äã?.E@èE¥?Ã?I@ÊY¥?¨J@ö]£?ÎäG@ä ¢?hJ@]R¡?xšN@±(ª?êá$@3©?´g,@)(¬?òj8@þ¾®?óD@V¯?»ÑD@Ƹ­?ÐU>@¶¸¬?ÿË<@ø!¬?¿:>@J«?Ñ’9@kMª?kT6@já¨?ßñ2@?¸'-@f©?‹I+@U»¨?,*@©œ¨?;n*@t1©?ž)@‰ï©?ôi'@ûM«?& )@«¬?þo,@qU«?^;.@]æª?´±'@k±¬?ð"@&7­?¤c!@Æ®?l%@pð?-ë&@öè±?Cj#@%>²?>¹#@?†³?¡Ë%@P÷³?Æî+@Ö´?ï6/@lù´?X8/@ ´?‡µ,@à±?×{(@ò+¯?×ù)@%Ò«?u»(@¾á©?†ö*@^§?óµ1@ì¥?ãÊ9@GK¥?qA@ï/¦?…jB@¦?³K@…Ø£?'’L@Zö¡?Ý¢H@½"¡?ƃG@S(©?RÕ%@…Xª?E6@­?ÇyC@¹ ¯?æÁC@A®?…–B@>V¬?a´A@„ «?‚fB@£ª?8uD@¿Å©?ßã?@U+©?d-;@úȨ?5ñ1@ˆ+©?_´-@ú©?Ýl0@Ш?0?0@|̨?·þ,@Ì ©?'d+@Tª?N%'@ c©?â*@=©?y-@'o¨?ÂÐ)@¬ ©?µÖ%@5«?ë"@…Ǭ?°_#@@®­?§Z'@µK°?0~(@ä±?ÛÍ%@M_±?)(@yã±?J -@›¦²?x-@I(²?†$1@áʱ?Þ0@ú¤°?NF.@;z¯?‘,@æ­?>°*@Ë•ª?²È+@‰¨?Œ"1@Ãѧ?±Ð7@ ¿¦?²³=@8â§?G‹=@òÛ¦?ÂB@#q¤?lJ@Bÿ¡?·C@fµ ?ª_A@¿š¨?ÃM.@—«?ÛÆ=@À­?;E@!¯?•ID@ͬ? OC@5Fª?ó,E@½V©?ù,J@+ä©?»G@ã<©?Ö‹@@™á¨?¬,9@§â¨?®‡6@Ž©?¬4@:I©?„74@/ ¨?¿F/@nq§?½K,@ï§?×!*@ަ?»J,@Þ§?´Á,@î“§?ÜÏ(@¶Á§?W‡%@Ш?Ÿá"@cÕª?ßF!@©`¬?“þ#@Ìv®?ñ„&@…7¯?ƒ$'@'ñ¯?XÈ&@;M°?@,@¸°?mT1@`°?‚Ø0@ȯ?#‡3@$±®?h0@¾&®?·K0@H®¬?ç°0@B¤ª?õv0@ש?yÑ3@²…¨?žÐ8@7-¨?Ne;@˨? >@*g§?eÅ@@Û¤?Ž#@@Y¢?â:@Ôµ ?e™8@?Ѩ?³ã3@Õ¯«?“µD@0Ê­?^‰J@'”­?¸™F@Äàª?þ5D@#„¨?²H@º‰§?L@lª§?ÖG@?¦§? +@@¹Û¦?ˆ<@]¦?a¸6@1à¥?H\3@S¥?¢“/@¿×¤?Œ‘)@Å’¤?S#)@F"¥?xö*@°ƒ¥?®®+@Â?§?^'@B§?€3(@W¤§?±$@‹º©?Ôç @Z+ª?ß @ùV¬?$I"@ ´®?ûó"@É€®?7Ò%@xQ¯?9;)@_¯?q-@3¯?G®2@±w¯?‰i4@bs®?y02@‡1­?Cf2@qØ«?Í4@›kª?´ú3@ì©?'¥7@N©?Œm8@¡“¨?L™8@Úˆ§?ï<@÷¦?;.:@ÿ¤¤?ªô8@üÚ¢?É 4@”‘¢?×M4@DVª?Œw:@V¬?ª?MÝ"@žr¬?]p!@6M­?lj$@5«­?KÒ'@ÅŽ­?óÂ+@§­?ëk0@—ý­?Q4@ ­?`X2@9 ¬?ºN3@ò›«? 4@뫪? Z4@Î5©?`•6@ ר?»6@“©?ëG8@ð¨? –7@?N¦?fí5@Ïà¤?Ó5@Ζ¤?Š.5@’Ÿ¤?+Ç1@t¬ª?ʸ>@yq¬?‰A@a¬?ÈaD@ldª?´rF@v¤¦? oG@íZ¤?—“F@kÍ£?ðâC@‹U£?Y@@ØÍ¡?ÑÎ8@€¼ ?¸0@{N¡?•ò.@~È¡?ð+@îV¢?U(@†£?6?'@åݤ?©X(@‹¥? Â&@Sܦ?%Ð$@Xð§?}$@9[¨?`#@‡ ©?’¶#@-f©?é¯$@Wª?‘Ì%@ZP«?Ö0&@¬ö«?ƒA*@aT¬?·-@†o¬?W 0@1.¬?¾á2@ÝѬ?~3@©p«?ÖÎ3@6ª?Ÿƒ6@¢ ©?¿5@Z/©?Qk5@[©?Ž·6@[u¨?B”6@›Ñ§?™z5@}¦?ž$3@º¹¥?ÌG1@€œ¥?Ê4@ªÈ¥?y²1@åÿª?Š?@ªÑ«?'TB@#«?±C@ë¦?¾G@½£?æF@zA¢?Êœ@@úÑ¡?èS>@Ø¡?ÞŠ:@7Ø ? œ5@·ñ ?Ë1@ö"¡?À¥-@šï¡?õS(@þn£?¦$$@$¤?„ '@†c¤?4[&@ük¥?Þ5$@ýp¦?…Û#@´Z¨?Q”$@ïf¨? $@y[¨?ß³%@k¥¨?¼þ%@\ ª?&s'@…8«?‰f*@C;«?].@K¬?%d/@·Ì«?i2@¹È«?»Ä1@­«?„P4@1©?µÁ5@ñ<¨?׈6@ô©?04@¼o©?2@•[¨?±õ4@æ0§?Ýž3@·(§?¬m/@³?§?’¡.@Õs§?Ãx4@¼¦?üV2@ ¯«?}E@Hc«?ÊÅD@Cì§?=E@qí£?™™H@°ì¡?‚RE@üô ?åƒ@@É¢ ?‘Q;@N5 ?å8@ž” ? Ã6@::¡?âÐ0@ˆ¢?ÂÀ+@ÿQ¢?,†%@G£?o%@<é¢?Ÿ%@kK£?÷0$@ÖϤ?ƒî%@橦?Ç0'@Ú§?ÿg(@µG§?]T'@Ë3§?=]'@¿4¨?¢t'@Œé©?tÞ)@oª?€y.@Ôª?íK0@‘Kª?åÕ1@8Oª?H›0@´hª?ø2@mM©?=ú2@…M¨?îê2@ó§?ÊG3@—¹§?žä3@œ™¨?°2@’¨?èk4@ü§?1@râ¨?–»/@ƨ?¢s3@^¨?^å3@„ «?ëëF@Èï¨?»9G@¡ï¤?ùI@¦¡?p·I@N¡?çûF@ÌΠ?I¯?@$ ?A9<@ [ ?«!:@a ?pˆ4@áÒ ?~-@,o¡?})@|D¡?6&@oÍ¡?%@C¦¢?|%@Gî¢?ê¯&@耤?.Þ&@F¦?â[&@óé¦?ôð(@ï2¨?ÿh'@h„¨?Þº'@ ©?B +@sª?oÁ-@k‘©?X€2@öð©?M3@Äj©?—1@y€©?‰©2@1v©?8«1@i’¨?94@”ø§?ø3@ô‚¨?„³3@ó™¨?sm5@D±§?F‡4@m=¨?aõ2@Úr©?¬û/@ª?Ö\3@ 3ª?ìÐ4@‘e©?ޱD@!Ú¤?°ÖH@v@¢?OM@rp¡?K@Jµ¡?;ËC@}á ?ä<@÷Y ?Ø“=@BM ?ѱ5@B'¡?7ƒ0@êÒ ? W,@°ñ ?ð“(@Œå ?¥4&@^¡?Z%@ý¡?ú%@v£?Uê&@*У?)‹&@z?¥?š^'@£¦?d6(@ߦ?ƒ¸'@…§?ù)@$ú¨?ô*-@P0©?)—0@dÝ©?b"2@£©?yó0@̦¨?Pä1@©?»ÿ2@ä¨?úÕ2@–½§?z2@þ§?4@ÍF©?܉4@{¨?Z3@–/¨?ÿŸ2@Ö©?í1@¬»ª?™©1@p½«?GÅ7@¦?˜C@,¢?é_F@ÄÖ¡?QÌH@M‰¢?âD@qÌ¡?—?@Ì^¡?ª€A@ß]¡?^t>@á§ ?Í :@‚Ç ?[|2@©4¡?€÷,@,¢ ? /+@S^¡?Ðt)@¤$¡?PÈ'@y¡?Ìœ'@,É¢?”Í(@ж£?Ⱦ+@›¤?‰ï*@¼ ¦?Þœ)@¨S¦?"~*@V §?«l.@:ߨ?†0@”!©?_h0@‰$¨?÷ø2@Ѥ¨?wJ/@§h¨?j/@ƨ?„á0@œ ©?€Ð1@9œ§?z73@s7¨?º4@¢¨?ÙÃ2@A#©?ký2@Àkª?13@«? 4@D!¬?m¾7@L¤?…@@€¼¡?ÀC@±¢?æ@·Û¡?WI;@t™¢?èc:@Ø£?lî5@wd¢?sŒ/@üæ¡?Î,@ÉW¡?Q)@K¨¡?‚)@*¡?çÃ+@ñý¢?yŸ.@òµ£?z/@¤?´R2@“ܤ?¸@3@.¦?ÙÚ2@ì̦?`§2@Xͦ?Â0@€]§?Æ2@Á¦?¨13@¹ú§?T[5@O±¨?¦S8@ƒ0©?׫6@ðG©?š"8@ÉNª?œ4@çÙ«??ÿ3@¹²«?´5@Y¬?†A8@è¡?iCE@¸y¡?á{E@“p¡?‚C@[¡?A@š¡? B@…G¡?Æs@@¹Û¡?¿º:@êÏ¡?yß8@€Z¢?äÿ;@™d¡?c9@‘ ?®³1@^u ?»8,@–® ?9B+@ ¡?äv-@ñ¢?Ž™-@\Ë£?œ.@¶¤?r 0@‹¤?MZ5@RÓ¥?9:4@È¿¦?üL1@w¨?†z2@Pw§?[ 6@bЧ?# 7@H¨?+ 6@öé¨?Vä7@4©?8@MÌ©?K×6@´0ª?ðY7@?s«?½Ã5@­Ô«?ív6@Un¬?8ð8@ T ?þbH@)¡?Ž'H@ï#¡?œ”A@í¡?;)?@M¡?Ë=@˜ö ?oW:@×… ?M:@W=¡?å¹;@Pj¡?Í‹:@[‰ ?{K4@Ùמ?­,@"+Ÿ?¢*@mùŸ?êÁ+@7ó ?+@[–¢?a©,@Èœ£?Ô.@ëÙ£?Fè1@×(¥?@×2@n‰¦?úÿ2@Ó¥§?aO3@òͨ?§ë4@MÓ§?„48@n7¨?œ;8@B(¨?D9@¿¨?I9@Ñn©?\?7@ãЩ?è5@Mëª?­¿5@¼’«?X7@c(¬?^9@bF ?ŽçD@Í%¡?zE@at¡?¨ø>@’c¡?øZ;@¯Û¡?=°9@:¡??Ž9@}¡?‰9@ê™ ?b8@ÈΟ?íX2@›…Ÿ?ká.@9~ ?ã+@¡» ?{Ó)@*«¡?+@¾F¢?]u+@\×£?.Þ,@’&¤?£X1@É•¥?:b2@Ú¦¦?Ä 4@i”§?¥¬4@¿§?€ä3@jÿ§?c?7@ûŸ§?ûÜ8@o]§?\~9@P©?5:@Â:©?¿/8@gQ©?é3@ÐBª?øÉ2@ü«?56@åä«?D:@¡?3H?@,¡?ø•B@zŠ¡?áx>@ÿS¡?t­8@Òâ¡?k¥5@‡@¡?÷h3@±¡?Ya5@z• ?~G/@Ç ? .@£¸ ?Ü¥-@Þx¡?Ja+@­|¢?tC)@¢\¢?¬d+@Fÿ¢?½Õ,@À*¤?f….@-¥?Ó³0@§? ¢1@Bg¦?Zc4@ƒ¦?t´4@¦?lF5@)m¦?ÊH6@ðB§?,y4@éI¨?Ùü8@qþ¨?Uý7@¾©?ÙO5@Ù«?èš5@ ¬?}œ5@ýǬ?J;@&=¡?ôÄ=@sœ¡?PÝ?@r¡?˜S>@q¿¡?Õô6@¤¢?=ø.@Hü ?ñ/@yã ?y.@½. ?¹3-@ïV ?ðx.@¡ò ?/.@èç¡?I,@à)¢?œ˜-@ŽÆ¢?ŽE-@³—£?(….@œ©¤?Õ!1@!\¥?s0@C%¦?0@†¦?¸<1@©q¦?9‡1@4©¦?X¯2@Ï4§?¤Ó2@N¨?Ÿ6@î9¨?,ß5@Çœ©?ב6@HT«?·,:@Z_¬?s(:@!Ò¬?¯£<@Ñ ?Q:@ÅÅ¡?W:@È ¢?°¼7@•Û¡?1@Øí¡?/+@2¡?ÈO,@½ ?pƒ+@0¡?9/@½¡?ù£0@lë¡?w0@ˆâ¢?!1@IØ¢?Áí1@NУ?û:3@ch¤?2@»¼¤?4L.@ŠÉ¥?§?Ès/@{õ§? ’2@Þ¨?L5@Úy©?œ%5@íEª?L9@µ>«?U;@%Ù«?¿r=@hõ ?|=@,T¡?(ú:@†Â¡?QÏ6@Q%¢?AÄ0@'¡?›s.@œ¡?bT,@«)¢?íi-@`ƒ¢?„‹.@߯¢?}]-@9\£?ç 0@çÈ£?4Ò.@½£?c¤-@a¤?Ÿ»*@G¥?†~*@²¥?¹Q,@KÕ¥?ÑB+@”3¦?»,@`V§?§-@ÈG§?*,@ÚZ§?^'0@“‘§?LS3@ÓK¨?ôý7@ýš©?úÛ8@fõª?ô:@)F¡?…?;@˜n¡?XZ7@ÌK¡?^4/@¿‰¡?],@Z0¡?T\+@A{¡?ˆt)@a¥¡?y².@èi¢?ÂÇ+@¢?hX+@?‘¦*@ù>£?çp+@®¹£?ÛÚ(@rŒ¤?4 (@4¤?÷\,@Ô¤?öp+@×¥?x+@EQ¦?—-@ã¦?ÙX+@ϧ?(û/@è§?Û¼2@˧?:9@üF©?Œm:@Ç©ª?î;@fС?ñI8@q ¢? 4@/Р?C±,@!A ?K&@¦4 ?vä%@‡ ¡?kC(@@¡?‡D,@ÃØ¡?¾ã'@.û¡?…&@&¢?K'@òÒ¢?U×'@ì£?|{'@÷ ¤?õ¿)@ót£?UÅ+@,Ÿ¤?/ý*@ I¦?«-@s¦?Ìw+@^8¦?²X0@P³¥?Ÿ04@îJ¦?(@7@!¨?Qï:@gª?~¨:@±¡?é_8@¡?æ‰2@¦M ?tÆ+@`ÒŸ?CÇ%@E ?ïÉ$@¹¡?}H)@ã¢?Gn&@–°¡?$@…¡?›|#@12¡?ßË$@ëH¢?7­%@Q¢?ó,)@ž(£?¥¿+@É€¤?Õ§*@ÄA¥?‘},@ ]¥?Z“.@c|¥?Q|/@õD¥? Â3@5E¥?“T5@BÓ¦?ìT5@½Á¨?BV6@&¡?Ä9@žf¡?”Ì1@¡?0@›µ ?†Á'@¡?U–$@S¢?™é$@ˆ_¢?ú1#@С?ñ"@Õò ?ø"@ G¡?F#@ýq¢?w'@Âý¢?íÆ)@T±£?"û+@œ(¤??*@pd¤?s+@¤?Ø,@åW¤?À=/@rѤ?º&5@®»¥?܃5@r_§?Ú[2@RС?ÉÇ;@-Z¢?Èß4@¯¡?;N0@{õ ?Ü)@M¡?—z%@⎡?¯#@^¢? ä"@k¢?±"@Ô¤¡?áW#@¡?ÒN&@§¢?ÏÏ#@E¢?y6$@Bò¡?®%@‚d¢?а&@V¢?­V(@FŽ£?‡Þ+@uR¢?üº*@#Ó¢?Ÿö+@7ƒ£?·ì)@,£?(,@Õ¤?Ñv*@¹Š¤?%¢+@)¢¤?«-@šÍ ?»:@yF ?G8@Ò‡ ?ï•.@€¾ ?¢#)@®¡?fä'@ŒV¢?ž %@•°¢?>['@ å¡?Æä)@«¡?+@r ¡?uÉ,@dû¡?Up+@Åš¡?<í*@`¢?•ú*@%B¢?s¨,@A¢?s*@‰Ë¢?ä}+@ºP£?e_+@/a ? ½9@裠?äJ7@ºê ?$q2@ ?0j+@¤ ?ÑS(@J ¡?à{&@ûÇ¡?ZÅ)@FA¡?Sp)@$í ?r+@SK ?µ»,@ò, ?KB-@& ?\Ž-@,¡?k8,@-é ?âï)@X¡?“+@ËΡ?k-@ÿD ?qÒ:@ˆÕ ?¡£7@³U¡?E‹3@¨¡?Ùè/@ ?ë,@Ο?à+@ÓŸ?‹ï*@[òŸ?Ù)@Sn ?7h,@^ ?êT1@+Ÿ?¢Í,@Ÿ?ŽÐ,@ã ?¾+@_M ?íD,@¢_ ?ëf-@ØÎŸ?ž>@a ?4o=@òî ?x‘:@x] ?¤x8@¤¢Ÿ?Íh4@ WŸ?h2@Ÿ=Ÿ?÷0@s Ÿ?/»0@¼Äž?S.5@ÆÍ?ªä1@ŸŽž?¦ê-@°wŸ?p),@§¸Ÿ?-ÿ.@#¨ ?ÞO0@êŸ?kP?@c‡ ?°œB@e® ? B@y ?Zñ?@ƒa ?¯—?@hÿŸ?Q’?@üן?³ƒ@@8AŸ?Ïü<@ˆVŸ?ˆG;@š]Ÿ?4ý6@g ?Íp2@«8 ?Åç1@L¡?ü2@çå ?±ð?@öt ?CB@g ?ÉWH@6Ä ?k~D@%ö ?àHD@kÞ ?[¿F@#Y ?Ü=H@`´ ?¼/C@µ?¡?Ñ@?@œÇ ?,m>@mg¡?(ß9@ø¢?§8@Ba¡?C•A@¡?ÆÌA@¼¯ ?š@ÈŸ?"›;@û ?¶4E@T  ?3–F@†Ÿ?Þ|F@YuŸ?‘A@D›Ÿ?]"@@Ÿ?Ì«@@ Ÿ?T?@}DŸ?}¿=@œVŸ?@Ò>@«Òž?Â@@¬Ýž?’Ì=@wJŸ?š??@ÀŸ?Hâ<@ññž?õ‡:@€cŸ?¾9@N¬ž?‚Ä8@GCž?Dt9@:˜ž?Uö:@s…ž?kß:@:Ξ?Ëþ6@\*Ÿ?W]8@úØž?°x5@2à?H²3@ÿ Ÿ?êˆ4@”‘Ÿ?´¨4@xoŸ?Mv3@,Ÿ?U•4@΀ž?Ó›/@7&Ÿ?,ã1@ ÑŸ?ï 2@˜ÚŸ?¤4@$Ÿ?ëQ3@ gŸ?ù²1@þ` ?uQ5@­éŸ?ÇÕ6@èÙŸ?ƒô5@ÿ±?Nð@@¢G°?Ñ=@Þ¯?™9@@ê¯?$C7@‡Y°?6Á4@–¨°?Bì3@œF±?w4@æÝ°?ž£7@‘ö°?K <@âT±?ñ A@ e±?¥!F@ø<±?”ˆF@?s±?;E@ï³?väB@vÞ³?3µA@û´?ÍA@@Ú´?ªFA@P³µ?ˆÏ@@5+¶?s ?@å¶?<$=@å‹¶?pg<@Z¥µ?1š:@i[´?Y_9@ ?³?p5@|±?=«.@·I°?£î(@}u®?é&(@Ю?‘º'@Œ0­?2å(@»_¬?±‰*@Ù@«??Ñ+@ßò©?+@¼o¨?¢Z'@»h§?ü"@T¦? @,–¦?=#@yߥ?ƒ*@,¡¥?Ó.@¦?Æ1@;ò¦?òŽ3@²Ù¦?•5@:ݦ?ö39@hü§?W9@€C¨?Ç:@eà§?f—=@·8¨?8 ?@åk©?ë!>@жª?âD@–±ª?dK@V.«? öH@4{­?ë±C@aÀ­?½nD@5¸­??K@Ü®?A8T@D±?ÍÙR@s'´?{P@g¢?žò5@:¡?dd5@øEž?æþ6@Ñ?‡V4@1•?ÖF5@~ƒ?©m4@êïœ?q^6@îœ?.Ò<@SŒœ?o}?@"?#äA@ø?0A@»’œ?QKC@E œ?” C@J<œ?ÍÐA@$ïœ?ì÷@@rFž?íÓA@G  ?>ë=@\ ?H<@Q0 ?eë7@›Ÿ?2ˆ.@R.ž?„/%@¯>ž?9@@~¯Ÿ?9;@eû ?|@C¢?³J@c€£?Î@~¤?êÎ @û¦?,¡$@I§?5}%@´*©?‰($@äÕª?“ @>†«?aˆ@%ɬ?i@Óï­?ò4!@®o®?æb!@ð®?çá%@Øã®?ë(-@}İ?½0@Œ³?Êß/@D³µ?+ä/@­·?03@‡ò·?ø46@¢´¸?N3@ϸ?ä2@÷Þ·?+©2@=+·?_Õ/@\è¶?¡-@u·?Ðó,@ue·?Z…-@ ·?eã.@m·?ò/@†·?.D1@¾¹·?Ðî3@Cš·?`…;@SR¶?ÞH@¡¢?æ5@¾£ ?ш9@½Ÿ?Ö69@¨Ú?é9@×?œp7@jÞœ?q8@?%”<@>`?6.>@Ïôœ?öÉ?@“¥œ?ç:C@|¥œ?TPB@÷ƒœ?ë™A@eÍ›?8 A@œ?–á>@Ÿ†?#®=@[WŸ?Éþ>@0þŸ?ù×;@ÏZ ?¦9@€AŸ?(2@×È?²T*@Ð?ø6%@†Ež?¼@=VŸ?[@¼¡?}@Ê/£?@gX¥?§A"@Q"¦?{¿&@Ƨ?¦_(@u1©?aX%@ü[ª?·š"@J±ª?^#@4Ы?Ö¤$@Ws­?ïm'@7®?kî(@ZŠ®?@ï+@ps¯?(0@„±?ø1@€³?+92@àÞ´?ž¥4@ ƒµ?ŸS8@mK¶?ÌR5@ݨ¶?&V3@>³¶?Î*6@B¶?N;@§‡µ?7ç>@3¶?¶÷=@!T¶?½C=@Ƴ¶?H¸<@Î~¶?&W=@YÞ¶?BV=@!S·?Úê>@td·?dB@™a·?h H@✴?¸hR@UÀ¢?¡Á4@&¡?@ÿ8@Ÿ?‘9@óš?äá8@â³?';@¡œ?žÅ8@:I?ñt=@è·œ?û*@@¥Û›?ÃZB@r8œ?Ü7D@m¤œ?G E@Bל?ëC@ïD?Ú‘@@äw?nR>@:ž?ü<@[LŸ?p×9@„Ÿ? Ô8@Ÿ[Ÿ? "8@ʦž?›­1@ñèœ?f(*@$^?lr"@¬æž?.µ@'Ž ?b5@´¢?Æ@Jþ£?ÕJ%@á¥?dz'@Û§?Œø'@6ê¨?ÖO%@zBª?Y½$@‘3«?Ýt'@XO«?a2+@2M¬?÷Ä,@ã3­?P\1@žñ­?J44@Nf¯?E3@Mô°?"†3@䯲?-5@ý»´?ªÿ6@_´?€A;@åÁ´?÷78@ƒ#µ?:66@<´?ª—:@ŠR³?âî@@‚Ú²?²pE@dz?iE@W´?jD@ø³?(E@j9´?ðD@g?µ?‘ìC@ÇÖµ?•§D@º¶?÷¹G@šµ?>ÊM@Qu±?xUU@œR¢?¼)5@¤r¡?Æ;@ø, ?Ì<@ýºž?ì¤;@oQž?“:@•ž?¹Z:@ ?ø$=@mœ?¶v@@ô.œ?sA@P›œ?‚Š=@aÜ?#×=@éÀ?Îc@@6ž?ÊeB@+“ž?ç>@XО?Xa;@d9Ÿ?Án7@wŸ?®;6@€Äž?“F4@£Í?íN.@Ò~?4('@ZPŸ?Oµ!@¥- ? H!@#¡?¢m$@ £?kÔ&@¥?¶Î(@ˆè¥?Ci'@‹Š§?¥Ø&@i©?f'@¡Á©?‘à,@q2ª?%¦1@Bbª?HÁ3@ñ³«?h7@ób­?f8@> °?Ò3@ä°?ÖŸ2@ÿá±?"^2@ ‰²?µD7@ E³?”37@aµ³?h^7@9è²?ð\;@êA±?V4A@6]°?wJD@$±?U”H@§E±?2]J@»”±?8˜I@Õ¬²?øÿH@ w³?ÔH@U®´?ÿVE@ïµ?³C@Lª´?vÍD@Sʱ?pyO@<:¯?+—Q@õà¡?]21@±€¡?¯<5@Ãè ?§z:@2ÕŸ?%(9@µ½Ÿ?ûÉ9@‹™ž?ä´9@E4?=E=@2¡œ?g˜=@±qœ?9@ ”œ?«_6@Dœ?ñ:@vU?¨ýA@“ ž?žÔC@gÕ?­ª?@<?šÒ;@Z/?0<6@:ä?îÞ1@¡±?K0@â?E*@IŸ?e#@~üŸ?ûF"@Æw¡?j@#@|Ü¢?„™%@Œ£?Rb(@«¤?.+@î¦?N7*@Ÿó§?*<+@/ ¨?‘y0@Qh¨?<4@m³©?O<5@Óï«?.e6@£9­?p8@Ç®?Ó˜5@!3°?“i2@Ž“°?D‹2@Âä°?d'5@ðæ±?Õ6@U ±?s·;@lد?‘EA@^û®?ë±D@ú¥¯?ï)F@;°?ÚýG@iá°?ÇÓI@:°±?z`M@oȱ?ÛÿK@*ö±?jI@IC³?çC@Ñ.´?e‘=@Ç=²?N3C@xÿ¯?õH@?’®?6ÄH@3¡?_,@’Š ?…;/@Ñ ?n1@í; ?î`3@eÿ ?˜ù4@à  ?M9@]×?ª¾<@Áœ?•æ:@I¤œ?b 8@úŽœ?ª¡5@Ø›?ñð6@1Žœ?îê:@ù??Ð;@ô-?×+<@í ?ž>:@‚?$[6@ˆ#ž?LÄ3@´ó?÷æ/@Iêž?q|*@‡ ?ˆ+(@ B¡?¿%@è¢?c;&@Tâ?­õ&@T£?l;(@œ­¤?«+@Æ÷¥?ã<,@7¤¦?+É.@Mû¦?NÓ0@i(¨?Z/@¼#ª?àÚ1@ƒ€¬?Ù%5@yÈ­?Àü2@½¬®?c\6@>)¯?cP7@1ޝ?Ë:@ï °?Gh?@z¯?>@¿®?pôA@3ή?ÂD@·˜¯?¼]F@ƒ|¯?d|H@Lk¯?8©K@ ±¯?i…M@T‹¯?&ìK@_§¯?« G@H ±?QŽ=@—²?4I<@0̯?8ŠA@u¯?ÒLB@Ý®?„yC@º ?‚'@´ ?ž(@e ?.9*@·¡?´-@¤~ ?Ý1@ÚÞ?’9@1g?:;@ù{?µZ8@vÔ?‘£4@‚œ?]¿2@œ›?]÷2@ª÷›?7Ë3@ïèœ?H£8@J‡?z”<@ÿj?Zò;@t^ž?qê:@•2Ÿ?@¦8@èž?‘¿6@RC ?â/@†= ?ìæ)@ëc¡?P'@f2¢?¸þ%@Gñ¡?g&@Kƒ£?˜+'@òW¤?Ä|+@ð£?àã.@t¥?vâ-@Áö¦?bP*@²ô¨?×-@ïê?Éž3@Í«?™Û4@…Ÿ¬?Ù8@·­? ;@6h®?û?@•ø­?`?>@À„­?¦Ø=@Û­?õË;@/€®?Tï>@¯?ÃB@eƒ¯?åxF@1G¯?+I@µ-¯? XJ@ö¯?ùÔD@I¯? O;@º÷°?¿•8@*J¯?Ó;@#·®?¾Q=@)û®?G?@È­?f¶E@§g¡?€!@¼ÿ ?ÿ…#@¢¿Ÿ?Ä]%@m€ ?•,@¤ ? ˆ/@Ûž? 5@‡†ž? 6@ÜSž?”6@¼ž?)«1@éöœ?&™1@m:œ?‰2@ ‘œ?t3@1æœ?–Ú7@fG?óŠ:@öÉ?e°;@ ÿž?Ó<@V©ž?½°9@ïKŸ?R6@É)Ÿ??”/@œs ?‘N-@°Î ?‡î+@Éf¡?Ÿ*@¢?” (@®œ¢?È¢*@@£?_®+@ç/¥?‘š'@aÝ¥?JÊ$@x½¦?\Z+@%»¨?Œ1@ ¢ª?ã4@•ä«?‰8@“2­?»Ë;@°­?‹ð?@´ÿ¬?_Ô;@¿ì¬?Œã8@­ã­?-09@òÒ®?É4=@bˆ¯?’@@J®?G_A@á~­?ÌA@–‡­?ÞR>@1r®?\D8@dn°?,3@& °?¢°4@Q¯?|y9@æ ®?>@Tb­?¨\B@¾»«?=&I@T'¢?f¾!@‹Ô ?©L#@C˜ ?³ð%@ìR ?@Á*Ÿ?.?<@ÌŸ?T8@:Ÿ?Wý7@ž  ?öÂ7@ÒÙ ?Öi4@‚ ¡?¼#3@S(¢?^ª/@M0£?±Ö,@b$¤?*ù)@S@¥?°z'@UÀ¦?Š%+@.¨?t/@àmª?Õ€1@.N«?zØ5@ì:¬?ô@:@ýD¬?œ|9@Ë¡«? 8@…f­?¥y8@¶ð®?Â÷:@tT¯?M.=@y—®?Q =@KQ­? t?@;E­?+ë;@$­?[¨8@Wl¯?Þ»5@C0°?:5@‡u¯?Wý8@½Û®?O><@f×­?ªb?@®S¬?ûF@üâª?æìH@27¢?·#@(W£?X²"@_¬¡?bG$@¬C ?œ>'@½äŸ?ï°(@uR ?j¥+@6* ?Bw-@  ?¬-@›øŸ?AC-@°³Ÿ?#²,@i Ÿ?8F1@´]ž?é3@'ž?žÓ7@¯?D\;@»ež?°P?@,‡ž?,ºA@¸Ÿ?1w?@äŸ?Ï[@@,‰Ÿ?Ç"C@­»Ÿ?9A@ü ?è ;@¡?Cÿ5@6c¢?s$/@¤€£?Ø|*@ý­¤?Ä×'@Bð¥? '@µŽ§?Ÿ)@—û¨?ö*,@9?ª?ô»3@Ïœ«?Ò~6@TU¬?žð5@‰¼¬?5z6@®?N¨8@óí®?™;@¬÷®?*˜9@æ­?Öº;@瓬?VÛ<@ðo¬?6Ò9@±X­?²‘9@“³¯?ÑT7@ƈ¯?¢’5@@S¯?¨¢:@¤k®?‚j>@EZ¬?·4D@áøª?äH@+ª?ìD@¢?¬7"@e¢?Ò;"@Mä ?ÞÌ'@Ô[ ?î\(@[ ?àŠ&@ú ?³Ð#@ 8 ?kÈ#@×S ?ù–'@L ?@å$ž?¿7@@ &ž?u¿>@Ssž?¤#=@”Ÿ?™ø?@ÕYŸ?kþC@ÏÅŸ?N-F@h] ?4C@^ˆ¡?”<@‹<¢?Ä4@2¢?1@ߌ£?„',@á¤?£Ð*@a„§? +@d.©?³º,@O{ª?ƒÁ/@Ϭ?Dí1@@ªÔž?xæA@Wž?‰éC@m¸Ÿ?xF@²¡?4F@•S¢?b C@fþ¡?IË?@×–¢?¬L:@}£?ÂÀ5@\?¥?1@FU§?Ë40@kI¨?S¹.@¹ä©?x@-@ɸª?òÖ+@×)«?z0@¼r«?92@ Ϭ?Ë5@m¬?ߥ6@Äðª?6@|«?¿I:@cʪ?†™<@2O«?œ:@Í{¬?Ó9@­?ô5@.9­?8@©Õ¬?Ÿ?@ ,«?˜´F@‰©?9NJ@Ë.¨?¢8G@¨?ãP@@’ø¢?ãœ'@ñ£?¾%@qÆ¡?„$@ü©¡?àÀ"@Ʊ¢?¼Â"@S¢?U#@Õð ? %@„Ø ?þ*@ÔÕ ?±-@bÛ ?Î@2@\Ë ?/7@’µ¡?û‘;@1<¡?.Ú<@j+ ?+ü=@9 Ÿ?k:A@L¯ž?P˜D@ ; ?4éA@nk¡?Ë…@@M{¢?^B@þP£?ŸþB@¬R£?DW>@gˆ¤?9‘8@ôߥ?Y×6@Sߦ?zL4@KR§?ä,2@`ލ?¬â-@d«©?ë-@vª?_™/@h(ª?/Ë3@0ͪ?(Ä6@HŒ©?+6@Z©?½5@…¢©??ï7@œŒ©?+T:@Ckª?Äö7@M/«?Ý'9@?«?f@9@È—ª?äz>@Xvª?õD@”F©?Ç”I@[s¨?_tI@ ¨?A«B@³+¨? ¢<@RJ¤?£p&@´.£?é|&@;´¢? Š#@¨Â¢?n!@mË¢?Ô{!@¼¢?†‡#@›;¢?Ÿ'@@„¢?ø)@¢¢?-@v`¡?eÂ2@Ñu¡?„ž8@ù ?x/;@@ ?^ü;@ n ?i!>@a‰Ÿ?¤>@½{ ?4‹:@7I¡?#:@q±¡?ƒ=@rè¢?° =@̯£?º¨8@¶‡¤?cQ8@ïŤ?ì6@í¥?á²5@ªZ¦?.t4@ÊÕ¦?æÐ2@`î¨?Kñ/@¿©?]*0@Îã©?Ýž4@o}©?íY4@ž}¨?ÞU2@}¦§?Ÿ1@à­§?Ý¡5@Ëë§?”C8@†¡¨?ÇÉ6@/t¨?Î39@BȨ?C >@Š1©? D@þ`¨?ÔsI@Fš§?¾H@ýZ§?,E@Ѧ?¼Ô>@ï§?Þ';@G'¦?E“&@ß8¤?©&@ÛJ£?L™!@êË¢?"!@Fl¢?b²$@A£?g)@‰*£?µþ)@•¢?¯+@Ír¡? .@üß ?oÿ2@ÿÜ ?Tß4@¡Ô ?º÷8@¸Ò ?Ï9@$ï ?%6@¥Š ?—÷3@±(¡?*43@®|¡?9u5@áW¡?„b6@°ÿ ?8È7@¢?»?6@C¨¢?Û 4@a«£?4@¶Í¤?@]3@¼á¥?˜25@cT§?Ûa3@3R¨?´á1@TN¨?º0@苨?¬2@Æñ§?Ö -@;§?ò.@ݦ?”Á3@'¦?‡8@度?Э8@ð§?ný:@¨ó§?æ@@n¤§?ëœH@“¦?†!K@4ö¥?+êF@°±¥?i?@ÿ†¥?E:@|¦?.S8@K¥?%ç'@ƒm¤?Ѳ"@6d¤?Âh$@Ý£?íD)@{ɤ?°K)@TA¤?rT,@xB£?ø6*@0µ¡?D#+@½ä ?†¾-@Qý ?ëq0@"¡?¢¨2@¦Ä ?b\3@Úê¡?U 3@6…¡?v0@ _¢?ûv0@™å ?jÍ3@ì¡?‘é3@Ù ?ôn6@gË¡?ö³3@il¢?Ó2@¯¿¢?(¡1@£Ž£?ïp2@)á¤?N3@ãg¦?V5@J§?’6@¯F§?(2@—±§?’h1@it¦?²¯+@‡ ¦?½-@¯¡¥?w2@¥?*#9@nå¥?Q´;@:{¦?•`>@'¥¦?èDH@Òj¦?cK@#¥?" H@?Ѥ?Q„>@¨T¤?¸7@oF¤?¤f3@1©¥?Û 2@îk¥?‘½$@°G¥?ê&@c¥?ý`*@Ј¤?xT-@ç¤?N(,@Žê¢?„+@GN¡?Õ‘*@¡?Rƒ+@Hˆ¡?†«-@f¡?Þø/@°¢?Ím1@H˜¡?ß2@zС?õ‹/@Q¢?øe1@òË¡?há2@ïß¡?Ã?1@4¢?¨q2@ A¢?Y5@IÕ¢?ª>7@^£?ô˜5@…©£? 24@à4¤?¹44@1W¥?ˆþ4@dÒ¥?è*5@é¥?îï3@@¥?*2@a"¥?Ô}-@ص¤?:b/@ÿº¤?45@˜~¤?è9<@>´¤?Z)?@ÛU¥?á?C@–ë¥?DvI@s¥?ŸeG@Ä™¤?ÖÌ=@-¤?à­6@ãÍ£?a—1@÷¡¤?Å¢/@¥ ¦?ö0@¯à¥?fx(@¼G¥?æ<*@†¥?ƒÑ)@Eÿ¤?¸å*@FU£?±¬)@¥¨¢?Ôe*@NZ¢?ÎË*@Ÿ¯¢?U.-@†¢?ß÷1@“†¢?¾C2@]É¢?Zû/@܇¢?Ô“/@¸9¢?à“0@A£?"2@,£?Š2@éè¢?ßµ2@ú²¢?=ê6@Ò@£?×z8@[™£?„7@Ó&£?Ñ 5@ªÎ£?Õ3@Nl£?®4@CÀ£?:Ð5@ôþ£?±¾5@·0£?«2@m£?È0@ߤ?MJ3@Ž#¤?Ã~6@çì£?Ug;@Á£?WaA@R¤£?8XE@I›¤?ÿZD@¼Ž¤?Uâ=@Nè£?H6@ʘ£?ð™1@‰Î£?ºÉ.@ܤ?K/@Þö¥?ø†0@†£¥?¶G,@P%¥?]¶+@ý¥?_ÿ,@Q÷£?•+@ué£?ÄG-@ð¬£?ð/@³ £?Ö².@ø,£?n/@`£?òO1@…£?;j.@?÷¢?ds,@õV£?5--@Zt£?Ÿ§/@ô£?#º3@Lޤ?Ë 7@øŒ¤?Xp<@ñ$¤? :@"Ì¢?^´5@^ˆ¢?Þ3@M¢?Xð4@éñ¡?í 6@Ø¢?Þ6@«]¢?‚F8@í¢?k¥7@*¢?3@LÏ¢?34@3£?ŠË7@:ߢ?¢=@n΢?„HC@Ý¢?î§E@±z£?Ãy?@!>¤?«8@Fä£?œò1@W/¤?ßÖ-@Õ¤?4t,@'"¦?÷„,@~¦?çü-@ôz¥?¯,@VÕ¥?lþ,@Á4¥?¸,@7 ¤?ªŽ,@_g¤? v/@Q»£?{m0@T8¤?ê˜/@‚'¥?Ÿq.@à~¥?¿a*@޳¤?„È-@øB¥?×9.@¶¬¤?©Õ.@ŒÙ£?¾G1@SË£?¦K7@„¤?øP;@£?¡§7@Ïø¢?–5@÷£?‡d3@ᣢ?*t5@裡?‹7@Qˆ¡?~Ö8@ñ•¡?Fš:@µÄ¡?J{9@²¡?&—5@Í9¢?.Æ6@£?·:@K°¢?Ùu@@2‰¢?'F@¦ £?Ã&G@§¤?…=@†¤?1Ó5@§Ã¤?ì0@ÂB¥?¥þ)@€“¥?Ü,'@‘!¦?Ó¼(@ïG¦?¸)@ãy¦?¬î)@(¦?n³*@¥ƒ¥?.@.¥?Z31@ÄÁ¤?e1@œ¤?xo/@ƒo¦?,i0@jÙ¦?çN.@ì-¦?ÙŒ/@-¦?Ý(/@Xó¤?”.@]]¤?-0@­¤?šv7@þÙ¤?¿•6@»¤?_ 4@"¤?Ê+3@³È£? 3@èÜ£?ÑÓ4@Åâ?D6@똡?8O7@íq¡?åP5@¼¡?s%4@úà¡?úA5@˜¢?=á7@Т?¡¿;@c£?S`B@ã“£?2ÝH@ú£?¥G@Øh¤?\ >@¢¥?RU6@la¦?%.@þ²¦?GH%@aá¥?®x"@E ¦?lÍ!@Ц?P!@Fצ?.R'@‹¦?ûÌ*@ܰ¦?m«/@£¦¦?‘É0@Ã¥?Šd/@]*¦?n/@\Ǧ?÷Ú0@‘Ǧ?Û1@Åù¦?°42@›´¥?SF2@;¤?ü63@Ÿ¤?0y6@Ò”¤?D†6@¡à£?q2@‡-£?e®1@D©£?·Ô.@“u£?Ox0@oú¢?‰3@¢?¦E5@Yé¡?ÑÂ3@ŒÛ¡?¾|0@­Ã¡? ƒ4@Ò»¢?+\9@ÈD£?ý>@’Ú£?‚¯B@꟤?·ÒE@E¥?«ðF@-7¥?¾Ö?@l?¦?sI6@OÖ§?¾-@ÖD¨?„I#@‰V§?zü@,{¦?¶â@¢r¦?½¢@Ý¡¦?¾¼&@ë;¦?Þƒ'@Ŧ?ï1)@E¦?nè(@÷~§?&|*@ ÿ¦?/×.@OE§?Þ>/@Á5§?ªž/@Q¦?;‘0@õI¥?…ä0@¸¤?ž»2@°¤?ĉ3@î—£?!/@7£?pî,@ë?¢?ú–*@›¤¢?uV-@Ó­£?(0@hH£?4H4@Dü¢?«'3@ˆÿ¢?´›4@ÓÉ£?œ7@¥c¤?õL<@Òp¤?SC@ËΤ?4NA@µb¦?b @@ ²¥?A@ô¥?‘M>@ÆQ¦?Â6@,!¨?vX-@Ô©?µ#@Í8©?¿ö@—ŧ?Î@K§?jt@ng¦?}â"@% ¦?<$@í,¦?jù#@ù³§?=Ž!@øÏ¨?M+%@gô§?ëk(@I!¨?Q,@z'¨?Ðx-@’õ¦?¾‰/@.‡¦?m©0@t7¥?u].@Ñ>¤?±7(@££?Õü'@w£?¿´'@ØÓ£? B*@ìü¤?…-@,¥?™0@„{¥?·"3@ì±¥?‡Ò6@´Ó¥?ÒJ9@]ö¦?J@<@&§?~ß?@D~¦?ZÚ:@'@õX°?ñ @T"°?e@jh®?Ìè$@Y¾«?8-@«?¼@_1ª?ö@r ª?:@ ª?_f@õ ©?/q@ûz©?ü@^©?vX@}©?@ª?º@†¸ª?ùù @4)­?· @ò ­?st@O—¯?d$@,÷°?ˆ‹@9²?æF@©³?Ùˆ@ž9µ?Üñ@ä¶?ç@üú·?hf@Ù¸?>Ý@`;»?{ @®E¸?â&@¤qµ?é‹!@,|³?É›$@Н?ï(@f°?[ @{À®?«u!@ù¬?D1@fq«?È„@Àâª?â@`V«?„@Ú¸ª?¿$@v+ª?h/@Ýi«?\~@bÒ¬?ˆ€@⾬?)ã@è!­?†¾@Úݯ?¢@tA°?VÍ@¦i±?±@ƒÎ³?Y\@âk¶?N@Ǻ?³@‚¡¹?ç8@1õ»?ã@(Õº?;@§Ãº? @¿?»?£Ü @ú§¸?º—@šO²?˜h@®n¯?Cj@QN­?çî@š®?ï>@%G®?šÛ@õ€®?°@Õ<®?cé@ùÄ­?)@sH­?]C@ªý­?bÇ@.Í®?œv@€·°?Nu@Ú°?™Ç@Hͯ?Ù#@ƒ¬°? }@à*³?.Ž@ú’µ?TÝ@ã´·?¾2@"î¹?\n @ÐÑ»?¦g @ ãº?´g@¸—»?¤N@Iº?:@ѹ?iœ@> ·?š¯@ %´?Su@ ó¬?Ñ’ @t0«?Ñ@cÀ¬?ߤ@ê®?K@1Ú®?L«@5²?èö@ŽU³?@t@+1³?´*@¡²?Ä@ž´?µï@ŸH´?M@ž³?¸@R?³?ÃÊ@vs´?5÷@ž·?*˜@$¿¸?Ñ@À7º?·@[Ùº?¸üü?)U»?ÞZú?‡è·?®òô?°Æº?D+÷?e©º?bæþ?R—¹?²´þ?ñ‚´?|Üù?Ô¡°?£@;®?7£@vu¬?m @ÿ¿­? @&î¯?u@€*°?¯j@Ôy¸?ÎK@9¸? `@w ¸?wÍ@(Ú·? ‡@A¸?!n@EÞ¶?¿@_Ó·?‘˜@,¾¹?ÐN@Vu»?í^@쮹?Uv÷?øB·?^#ì?yóµ?8õé?— ¹?ê?_r»?˜¬ë??,»?œÎî?¬‚º?!ö?¨6¹?j‹ý? ï´?âÅú?>²?ë3û?2a±?)´ú?б?}{@v°?­ÿ @Þ±?ħ@Ù!²?· "@E)º?Èx@Šº?¯Ñ@§Ý»?{:@ò1¼?‘w@° »?‹x @sI¼?ŽÑ@[é¼?úa@²º?ÝÝô?#¸?)4â?,´?a½Ù?}u´?z$Ö?瀺?¶«Ý?.½?]æ?t´¼?’ßì?Çö»?à»ò?¨¢¹?4!û?èÛ¸?UHü?¿¶?ó?õ?ÿµ?ŸÒõ?<]µ?9 @lÛ³?ÏÀ@€Å³?„@]ѳ?¿'@W{»?WÁ @Žž»?‘Ë@2½?ý»@?m¼?Ðùü?•»?«Bñ?u¨º?99ð?F!¸?Y+å?š„µ?Y’Ó??F(Ò?η?ìÙÎ?gÀº?z×?`_½?µåå?Œõ¿?xqì?@Á¾?Ôï?J(½?‘ù?Öƒ»?!Àü?`¹?Û‹÷?¹t¸?Døû?^ù·?@ @^0·?’·@· ¶?5#@^U¶? @,@¨t¹?Ê7þ?ø>¹?.Ï÷?uZº?„Ïê?}A·?¢Þ?/]¶?¯Ú?N±¶?T×?M¶?cÿÐ?¾ã¶?NÐ?ø:¸?ÌÐ?%м?|ªÜ?:¿?¥*æ?*Á?¯ò?–„Á?÷ó?å4¾?C_ù?˜\»?Cü?4º? qþ?|c¹?'Ÿ@µ·¹?–@¾ç¹?' @e(¸?âà(@Õï·?´P1@rз?Ää?]A·?qÛ?ÆH¹?UòÐ?é\º?uÐ?KË·?™Ñ?Å·?œ˜Ñ?®'¹? ÝÑ?ê@¾?ôÀÖ?ª¿?ã?š0¿?: é?|VÃ?–òõ?½ÆÂ?d‘ö??ï¾?˜þ?^1¼?„}þ?íR¹?¡B@bâ¸?Þ@§©º?ø}@ŸŽ»?py"@ÆÌº?“z,@‡f¹?þÔ4@´]µ?×»Ð? ±¸?ÃyÍ?£h»?õîË?Fw»?UÎ?ýè¸?~Ï?&½»?}•Ó?0Â?” Þ?cºÂ?¯±æ?ù«Á?¬ï?ÒnÄ?qÜø?VØÃ?`ú?‘.À?ñpý?硼?o‘@ ¿º?çè@Øtº?µ¾@ úº?ÁA@c »?Uf%@Ô»»?Æ´-@Ä)º?0ü4@¹É¸?”JÌ?NÞ¼?RÿÏ?ÏR¼?€Ó?|,¼?­ÙÖ?a~¼?ëøÚ?ˆÂ?x è?ïÃ?…·ð?ùÅ?‘ßø?%ÒÅ?ü˜ø?–Ä?JÃù?@Á?µý?^œ½?MÔ@.ù»?p @*~¼?éU@M…¼? ‘!@_Ƽ?‘‡(@kÖ»?D£/@DĹ?]ý5@O$½?ñùÏ?—œ»?ÅNÛ?‰½?2lÝ?óÙ¾?xÏÝ?!Å?¯‹ê?'5Æ?åõ?à Ç?×$û?Å?8ù?:ãÄ?82÷?ôßÀ?øÿ?T.¿?÷‚ @Ås¾?M@§í¿?q`@“¤¿?ÑL'@¿?zà,@`r½?r;/@Âã¹?¸27@祽?IÖ×?/Ú¾?òÊà?×ÐÀ?¿Ãæ?™YÇ?µÃì?š­Ç? ^ú?} Å?ÃTþ?KSÄ?‹µù?DwÃ?AŸö?ÍòÁ?ðM@ÃvÁ?1 @FµÁ?[—@Ã?~ï$@º„Â?%ô+@F¹À?û0@'J¾?Xº2@Uº?ÑÕ8@÷BÁ?*å?æIÃ?^pí?ú È?~nô?+ Ç?£|ù?ÐUÅ?%ú?ßfÃ?ÎÄ÷?ËÂ? Åý?Ø)Ä?Ó¾@OŠÃ?h@uÄ?h @vzÅ?ªã)@ƒ„Ä?.¢1@V7Â?‡³5@p¿? µ7@ˆ º?01;@¦PÄ?ž•ë?m1Ç?,nö?j¸Å?Ìö?¦òÂ?;Üö?¦ßÂ?§þ?Ã?DY@yeÅ?q§ @÷ÖÆ?k¨@8Ç?Hð"@YpÇ?×+@Ý Ç?x¤6@¤tÄ?à;@=À?†9@Žhº?tî<@d]Ä?§ùó?u‘Ã??•ô?ŸŒÁ?U©ú? (Â?Œº@ø¦Ã?;• @†Æ?1@ ÞÈ?F§@ÅÊ?5^'@·äÉ?,œ,@gPÉ?´8@óÅ?‰æ<@YÀ?Ô¥<@U¹?Úð>@Ü Ã?‹Œ÷?lÁ?'@ðXÁ?ÙQ @6‡Ä?ÒŠ@8Ç? @’ÞÊ?ð5%@À>Ì?|+@‰ÍÌ?’/@°VË?9P7@-ÒÆ?åf>@Ï#À?<Å>@H‹¸?,E@@ssÁ?Éß@LGÂ?`)@U¿Å?= @Ú.É?I“)@Ì?ü+@ÔÙÍ? 0@(ÃÎ?É*3@S Í?’6@á4Ç?áÛ<@í¿?ØÈ?@Âü·?Ì•@@ø¬Ã?Ö@Ç??*@‹áÊ?›2@â·Ì?S§4@ÁÏ?&4@ëéÎ?wz7@—[Í?ºÌ8@G¸Æ?/<@w¿?) ?@Iö·?áÑ@@ÞNÈ?2§,@À×Ë?ØF5@€Î?-ë7@šxÏ?U8:@“ãÎ?ìÀ9@žÛÌ?„Y;@ï‘Æ?ø™=@;U¿?±o>@a ¸?C=@£ùË?g>4@G™Ï?Ž"9@òQÐ?¯=@ØÙÎ?à)=@&ìË?YÇ;@U=Æ?Õr;@ÁÛ¾?˜à:@ î·?¤:@UÑ? !9@ÖœÑ?sb>@§€Ï?Õª?@‘‘Ë?&>@°3Å?´ä;@¥¿?9(8@dÈ·?.8@`Ò?Ô@@$‘Ï?aAA@PËÊ?¾ö@@@RÅ?øç:@ŽP¿?l"6@‹/·?áJ5@ÖÜÎ?©ÀA@&ÕÉ?’ƒ=@Q–Ä?è˜:@æÞ½?ZF8@2b·?Dú5@cNÈ?x=@çNÂ?FM8@s’¼?½_9@œê¶?E÷7@–ÉÁ?·"4@`ð»?ù6@.¶?b7@I»?«w4@*¶?¨Ú7@àܵ?ÂÅ8@oï­?šðI@ʱª?Æ¢M@/§ª?uƒP@ `©?@1I@ÉL¨?‹=@f¨?ûµ0@»G©?!J*@‡b©?Ú*@#’©?±,@fª?ŽÕ-@+Zª?BÚ.@Wa©?ø*3@Ъ?õÄ5@=xª? 9@Ú8©?¾¿;@š©?h:@©?Œ9@ ƒ¨?LÇ9@i©?¢ò;@¬»§?.;@æ9§?ÅQ:@y6¨?¨?6@j]§?h5@ÌÀ¦?î4@€‘¥?×2@Ñz¥?'3@Â3¥?ëï3@Xh¥?B÷0@žŸ¤?’Ï,@Må¤?¥«&@Ìò£?öh&@Ûý¢?Ø'@*¡?lû'@¨y¡?Z.!@‘Ÿ ?\¸"@Ó ?Á(#@vР?xk(@D› ?]}*@ó¡ž?uû,@”?>ù.@ £ž?äà,@ (?å#)@ö?k¥&@°£œ?X=)@„Èœ? Ï)@%œ?Ñè)@뾜?â²&@Àvœ?bU#@gÀ?IX%@7ž?îÐ'@‚¥?så$@àÑœ?ýé"@(^›?êa$@Ÿš?Î$@L#š?Zõ#@ÿNš?%@Žž¯?G„L@#¬?¬_A@Ë«?ƒã1@F;¬?£¢+@Àè¬?#¼'@ª)­?¯*@¯ó¬?¸m0@[ù«?#[5@÷À¨?ÌB@Gž£?WO@“ ¡?æI@­z ?¨I6@;2Ÿ?|Ó/@š€ž?JZ0@:Áž?c§1@ùSž?î°0@…]œ?ƒ7@ìF›?"j<@XÛ™?”p>@ëå˜?4ŽA@éJ—?¶xB@¥‡–?”(B@Ç'—?~ÇA@¦ã˜?ÞâB@´ˆ›?èXB@’†œ?20@@! ?{Á8@E?xÃ3@ž?A·2@Ndž?­¤/@“S?ýJ+@vcž?«!*@Z  ?þ+@òG¡?!”/@­Ë¢?a<5@T}£?š7@”n¢?Xo:@ÀÇ¢?Í 8@呤?+ø3@Æ´¤?Ê·4@Ÿ£?GT5@>ž¡?õ™.@àY¡?*Ý'@}ä¡?âR$@X¹¢?ùÇ @œ6¢?x#@Y ?)1"@} ?ÄT%@Šž?¦é#@/Àž?€ï(@7 ?§&@&5?3n&@7Éš?ˆc&@š?Èó @ÂÛ™?lõ@È#­?³-L@kÕ«?&…8@„J¬?í1@Ñ%­?XB*@Jô¬?ÞU,@­?yV0@绬?7@8@³Êª?©š:@ÞM¥?V)L@uQ¢?+P@D§ ?“E@%G ?Z8@M&Ÿ?¦ì4@½‹Ÿ?85@–$Ÿ?¬1@w"ž?5Ï3@jZœ?°ž7@bÑš?ŸI;@i™?Z\@@ò]—?ÒÜ>@-O–?Ƹ<@Ýe–? y=@ ˜?š.@@|š?ÄàA@;&›?¢$>@aä›?i9@½{œ?µ'3@¾œ?—â3@•?Ai2@O?¯î,@峜?—@*@¦£Ÿ?w<,@Úý ? 3@4<¢?&ü6@„ ¢?›9;@£?Ò:@ß £?Ç7@¬¤?F 7@¤?‡Ì3@r×£?6u3@ý¡?ÁA3@ ³¡?c½&@Š¡?þÌ"@ÌÉ¡?9!@º¡?J£#@vì ?]Å"@ìpž?P$@¾†ž?8&@qŸ?‡)@4üŸ?¬©'@‹¿Ÿ?ˆ'@ôl?5ÿ(@þš?‡›%@öå˜?åž@±›¬?—eC@ïЬ?x¹6@¥¬?úy1@d”¬?)0@wg¬?ßò2@œ¬?ým7@ò´¬?|¦:@Õѧ?–ÃC@Ø»£?œØP@Ú“¡?<´O@ ¢ ?ºLC@úÊŸ?#:@i:Ÿ?99@hgŸ?¾U5@"_ž?Ô5@& ?:|5@zœ?ºÓ6@eÑ™?E™=@Û,—?y9=@Ù–?£Y9@Ù4–?¹9@:ý—?| <@ùo™?7}?@W`š?.‹:@/{›?î:9@êœ?’ù0@Ö”œ?"º1@Réœ?³®3@¶¯œ?|.@3l›?»Õ-@NÌž?160@Ž¡?ŽÊ5@È>¢?B<@ðk¡?¬—<@fJ¢?UG:@Ò£?óU7@U¤?%5@ÝX¤?­Ñ4@J©¢?õ71@O®¢?6 '@^¡?ßq'@Ìß¡?7¶#@н¡?Ñ!@Ñ¢?Ã]!@âé¡?š!@è¢?]Ø#@€· ?bY'@ɤŸ?h§(@]³Ÿ?Oä,@­Ÿ?§Ø,@ Ÿ?**@‹¨œ?Jœ$@Á8›?w##@|­?E4>@Ь?2þ:@4(«?%x:@Öô«?yw8@gž¬?i9@²7­?o;;@`1«?Éh<@žÂ¥?CL@ºv¢?$ãQ@¦ ?ÀM@Ä ?¯¢C@~¶ž?Sq;@Ô}Ÿ?Q9@Nž?:Ê8@ißœ?¢¥5@·^œ?¦x7@%¯š?ÄH9@¶À—?Ä{<@èÜ•?wÀ:@öp–?ûJ6@¨˜?B7@SÀ˜?ƒ½=@ùÝ™?d9@Áéš?àš7@Û«œ?ð«4@eª?"¿0@)Í?¥3@ƒn?­±3@ä[œ?+e3@d£?¼3@Л ?h7@Ô‚¡?'‹;@¼¤¡?Ø_?@]‹¢?F[<@=8£?½¾8@c¤?‡@8@€|¤?Nø6@žÝ£?“Å-@Ò£?à&@5—£?X•"@ÆÓ¢?§$@`ÿ¢?÷÷"@i0£?ÊÎ!@Ý•¢?"x@ýÌ¡?Á$@¢?®‰(@sÿ¡?w”)@¯ù ?˜(@dÌŸ?,@h ?³®,@§£?ö³&@ Ë›?E%"@³›¬?&BA@‹ãª?„ÿA@Ú]«?«[>@¤W¬?„<@‹º¬?†Y<@% ­? <@¨?‡E@ C¤?S¬N@5¡?õO@•A ?ýÏK@LŸ?_|B@gÔž?²<@–pž?§8:@3T?÷:8@œ?cD:@F ›?Æ;@~˜? )9@Ã^–?Á‡;@rG–?wc5@¦ç—?H6@9™?â¨;@ÛÑ™?¦Â<@,Íš?üõ6@Ÿ»›?Ek5@¯‰›?w5@Ž?n 5@É€?6@@ž?Gî8@Vž?|Ô:@ÖŸ?Ř6@€¡?÷Ç8@¡?–f:@Å¢?;@£?Ò©;@Qp¥?J <@”ݤ?^Î6@:Æ£??7.@C×£?x‚%@D¯¤?Z@Íl¤?ñï @Ç £?V!@¬a£?Ö#@¥^£?bå!@_R¢?‰c$@g+¢?ê^'@oŸ¡?)@l¡?1h+@Þ$¡? æ*@˜ž ?Võ,@õ}Ÿ?µÜ*@ß?}#@Ÿ«? +G@þ «?8E@ t«? ‚=@7»¬?È8<@¤Ë¬?Òn>@ï6«?¥"@@ˆ¦?ŠyG@\£?l Q@-º ?ØÑL@º²Ÿ?kjI@‡qž?$A@]\ž?«N=@œÍ?V¤;@ñœ?â<@t¡š?“Œ?@ç™?ÑÚ;@d˜—?‘~9@n–?G7@l“—?2û5@Á1š?¤_7@ýš?º³<@"Í›?é 9@%¡›?í¢4@:œ?Ê5@˜zœ?£6@à?”;9@‘!ž?sj<@þ¨ž?$eB@ X ?ö<@a¡?¼6@Î"¢?877@¹#£?ÃÕ9@>×£?»e9@9‘¤? È:@'0¥?k08@Šò¤?ä¤.@@Ì£?xŽ%@9ð¤?O›@÷ߤ?ÉÏ@ï£?x@ïe¢?“Î @´€¢?ÒO#@_<¢?ö#@ZH¢?¼z(@Èç¡?Í•,@ÔI¡?ˆ/@Åž¡?O|0@²Å ?_3@†ýž?†?0@Úž?Þc)@uîª?ûH@ʪ?¥ƒ>@Oˆ«?F:@Mß«?K@@÷ì«?jß@@„©?ëRD@&¥?GMK@Éi¢?sÊP@窠?V³K@²ˆŸ?‘µD@XRž? B@Kž?×ë@@ÒÙ?@›&£?ùÈ9@PN¤?ë?6@Hƒ£?Š4@Íü¤?/@ó¥?ç®2@E¦?ã@-@$¥??E#@ À¥?xa@hÞ£?9á@n¢?‰.@¨c¢?öt$@Û=¢?ÆÊ+@xR¢?v»/@c¤¡?2}/@?¡?Úì.@¶|Ÿ?]-@”†ž?kú+@¦Ÿ?*@%«ž?Áø'@ª?<:@Å­©?!ï9@dª?RA@ƒ«?·ûB@Úª?“‘C@T‹¦?@wF@‘1¤?-K@‚a¢?øÕH@•È ?oÓF@RN ?8ÇD@OçŸ?º¦E@ ðŸ?a¦B@jÚ?e0?@$9œ?r>@6›?œ5@m ™?–,@¤™?‚H+@È›?Ÿ3@Ä›?žQ;@ðmœ?¶]>@¡3œ?}7@°œ?Í93@"þœ?Qž5@Ô~?,è5@îß?§¿8@í,Ÿ?âZ;@£` ?9@[2¢?ă>@Ú£?ö>@L¿£?k”6@Œr£?‰²0@“^¤?ÂH,@x1¦?k*@»ß¦?S*@t²¦?'ê)@‚÷¤?+ö&@ä³£?Y!@•$£?’c@§¢?,%@‘ˆ¢?VS+@Û¡?[/@Dµ ?R¯,@¬¡?ù_'@ÝŸ?Ǻ$@^Çœ?³&@«Îœ?M)@©’?Ô÷&@d’¨?Æ&<@pž©? >@{ü©?*A@…ª?­9B@ôN¨?¹8E@¥?üzF@ò³£?ù™E@!M¢?½ŽD@_¡?ÙIC@aN¡?_B@4¡?Æ(@@óèŸ?˜ä<@œ(ž?™£8@Äœ?âø2@îBš?†^*@…ë™?h&@?Š«,@òŽ›?3c7@%Ú›?Nˆ=@§\›?0œ9@C›?¢¢3@ö´›?Äø3@û$?Î1@ƒež?Îõ3@¼Ÿ?U%4@A‰ ?3Ö2@o-¢?„;@bL£?²-=@¦£?Õ>7@ë£?QŸ/@ Ò£?'ç,@Ö~¥?H@(@=d¦?ß*#@–3¦?îS#@™¥?ò‰%@oœ¤?Ý—&@] ¥? ß%@£¤?."@Ðh£?­½)@”¢?ïx,@܉¡?qþ)@ëz ?Þ®$@ ?+ @ÀÉœ?ùŠ@ªáš?”–%@.Hœ?‰ '@Ôç¨?sR=@‡¤©?š½>@X©?zK@@Q©?vNB@ǧ¦?ˆB@ûF¤?¹D@•£?TB@ é¡?^B@¢?xø@@pÅ¡?Dá=@S¡?˜8@1ÉŸ?Ú65@ßóœ?á.@½„š?Lj)@Êã™?'E#@³š?g¯'@)›?ju5@+›?ïŸ8@2nš?=6@³?™?Fß/@ùm›?é¼/@Áþœ?mj0@ÍTž?q0@þ‰Ÿ?ù¿0@ág ?kã.@د¡?ký5@)D¢?žê9@<‹£?í 7@-ã?÷Ü1@! ¤?E-@LD¤?ûÍ(@K¥?%$@Õä¥?k²@ͤ¦?½Ñ#@íA¥?U˜%@Àm¤?¿W)@®”¥?(]&@nÛ¤?D[(@)£?”U'@ÚÅ¢?($@Åà ?´!@tQŸ?ó@Ì’ž?eX@‚Л?!"@Féš??9%@ˆâ¨?Ò3<@¸S©?Ñì<@Ь¨?ø’?@Y¡§?#9D@®¥?8 D@•²£? A@G¢?>@žÈ¡?6–<@)«¡?¤:@%¢?ÞN4@Yé ?óã1@О?Î+@M0›?hè&@àšš?û¿#@6§š?çU&@ êš?Lð0@Ïóš?è;6@º•˜?‰Ì0@v^˜?sn-@Ó°š?Õ,@oz?ü.@´Ÿ?Š×.@¤ ?˘0@ˆñ ?q>.@œ~¡?Ω0@1£?yë3@L!¤?¨94@>[¥?/È4@$¥?00@ýÖ¤?O+@5ì¤?8Ð'@¹Õ¥?î{ @È ¦?k8@t„¦?.©#@nȤ?Ðð%@4e£?Ò‘'@˜‰¤? (@,)¦?vù(@G£?‡â#@³;¡?^H"@‹­ ?ÖÕ@ÆÕž?âB@Êež?”Ë@.Ø›?²n%@“¦¨?­ :@4±¨?Ù<@Ãð§?«¦B@Ç%¦?ÃA@G¦¤?œ.A@È£?Úu=@r…¡?o09@¿Ì¡?Wý7@×ü¡?¡H3@EF¢?{ß0@”Ÿ ?—.@ßS?ñŸ'@ô›?þ„"@«{›?×1'@T7œ?´{0@@{›?²¦5@3€—?0@$Y–?*@j¡™?y+@#Äœ?÷¥-@TŸ?žÃ0@ë ?Fp2@ƒ…¡?:0@±P¢?ð‚0@·[¢?3•0@’ ¤?ú .@Èi¦?µG2@u¦?c0@äF¥?,@dÛ¥?~+@ŧ¥?¤#&@•Z¦?QQ @µ!¦?Ý#@±ù¦?¼G'@ð¬¤?9*@E £?‹Ö+@Íߤ?â4+@짤?€å(@¤§£?i#@kº¡?#û#@@+ ?ñ@7»ž?Nù@xq?ÂÖ"@R ¨?c9@k ¨?µÁ<@wí¦?ÜX@@¥?'È=@¯‘£?da=@X¢?ÜI<@ó¢?@¬9@l¢?€2@ýø¡?’z0@b¢?šö0@vŒŸ?{,@ ? Ž(@¸Nœ?O^*@†ºœ?çÇ1@Ý}œ?¨74@—÷˜?434@–Þ•?/S*@ÇC˜?y(@Çì›?Uˆ,@9ó?ê22@/ ?Ò|4@& ¡?NX3@XZ¢?o<3@• £?©1@/£?ˆK/@€¥?í&,@ùŒ¦?mu/@”¦?II-@㶦?ç,@¬¦?00,@‹2§?PÞ&@N„§?oé%@¸³¦?4'@EA¦?C.*@¹À¤?‘,@S¥?ø†0@GM¤?,@‡!£?¡±%@þÈ¢?dö(@Þ$¡?qm(@oŸ? …"@cÔ?H¬"@Nu§?é8@Ê,§?Ò”=@[¥?=Š<@üž¤?åJ9@?¢?[:@€ª¡?¿7;@¬U¡?#9@œè¡?3Õ1@ç¢?x 1@á'¡?Ãÿ1@[9Ÿ?«-@B§?¬.@º ?×Ñ3@.ùœ?½6@%:›?I4@™þ–?D‹.@÷<—?àæ'@Ä]š?^Y*@±B?¶}.@üŸ?‚–4@˜_¡?‚È3@Éç¢?eu4@*£?Qd6@|У?ER2@Ÿ£¥?f/@?·¦?¤§,@˦?7ñ1@œ@§?m-@—ä§?õ'*@•£¨?¾¿,@%÷§?ë +@2ÿ¦?ÎÜ(@“µ¦?.Ä'@{—¥?pw.@Ö‚¥?å3@³œ¤?ê.@¯Ë£?oä(@šä¡?+Œ)@BÑ ?-¤/@£d¡?pÞ0@*ŽŸ?<)@ÞO§?u%8@鸥?çÃ:@“H¤?G«5@fä¢?n¯5@^Œ¡?K9@ ¡?„P:@vw¡?{6@p”¢?7n1@ÂY¢?áN4@ïÍ ?mó1@÷Ÿ?nö2@"Dž?o4@ Ø?®7@2|œ?¡5@2Ï™?Šï.@hQ˜?zÑ+@¼™?­“(@ëLœ?l9+@ß~ž?þ1@-G ?Ka5@2›¢?134@¶£?:9@[]¤?›á7@Úƒ¥?{ 5@§?0w0@@•§?§0@.à¦?4Ö3@*=¨?É-@ð¥¨?§É-@(á¨?—%-@Y§?i&+@~H§?—¿)@M§?Ç)@å¦?+œ2@;'¥?Ø@.@¼ ¤?èj*@¿÷¢?ío'@]ð¡?)u*@’-¡?d/@<ßž?nJ0@íÔ¥?§ü5@ B¤?ë$4@þ¢?¬Ù.@hB¢?†2@3ç ?°·6@íµ¡?ö”9@Rô¢?^N4@ãZ£?8w4@DY¢?µ4@ÓÓ ?ŒZ5@–âŸ?767@þŸ?I:@±‡?°5@¶Ìš?k¦0@oÆ™?ìQ+@8qš?_Š*@ÃM›?Ñ!+@¹÷œ?3Ü+@e&Ÿ?xð2@±Ì ?² 7@°£?ý¨6@ÉÖ¤?uã7@ËÌ¥?ýz9@žì¦?ŠÉ3@ä¨?‘4@[ü§?Ê|6@Q$¨?D5@ÛX¨?D.@‹¨?F.@‚À¨?ë +@\ù¦?ë,@îÚ¦?Ù‘-@Í9§?}‹0@bò¥?¤z,@q‚¤?„!@Cò¢?ÏÛ%@^š¢?_ª&@ñº¡? µ)@‡Ÿ? Ø)@ù›¤?V/2@]Œ£?9Þ+@\Ï¢?«¤+@!À¢?$Â/@Bm¢?¤º5@T5£?¿†8@†×£?Q|5@~ë£?d•6@¿“¢?[q5@tû ?¼48@dÖŸ? j:@ ›ž?͇8@Ðlœ?kà1@S`›?¼‡-@fZ›?9-+@Ÿ)œ?´ç*@³§œ?²C+@tj?ø .@›§Ÿ?8~5@¦¡?N7@"ø£?…-5@ÌŠ¥?=6@ç?Å5@\Z§?i5@E~©?…6@?Ψ?Y8@åȨ?‰¼1@˶©?à‡-@z©?Ø×,@Gj¨?~+@öß§?}m,@³Ú¦?í42@o¥?~<1@ޤ?P‡#@Ú4¤?¶†@h¢?´e"@]B¢?|â&@°¢?a¶)@XQ¤?͉+@¹?£?yx'@ÿt£?#´)@b £?=a0@U*¤?%h7@^B¥?¤p8@Ö¤?75@i¤?0-7@ÌH¢?P¸8@Â@ ?ãc<@ÐwŸ?+=@åÕ?Ó¬6@y°œ?[–/@¹ùœ?Y¥,@µ?ó^,@N?ßâ*@Ûz?g±+@ý­ž?Ì51@«Y ?áç4@â´¢?žØ3@Üà¤?8ê3@£§?OŽ4@R¨?vÌ5@Vó¨?ÌC7@ñ©?÷W:@„F©?LV8@É=©?× 3@‰\©?'e/@ö ©?„Ý.@#í¨?ý½/@¦:¨?Àd2@lƦ?ÖA2@þs¤?ýô)@l¤?áþ @,w£?Þ @V¿¡?¢h"@º/¡?q&@è|¤?Õ)&@⺣?ñ%@U¤?±ô*@g¤?£}1@ôÛ¥?P8@¡¦?Já6@!¥?#8@®›£?)b:@¢?Oý<@: ? €A@îž?‹l;@nz?Dx2@öè?¿-@®¿ž?h,@7Þž?—+@Rüž?¾*,@¥4Ÿ?_á.@G  ?¸¯1@ˆÍ¡?)Ó4@K ¤?|}4@ ¬¦?™E4@]°¨?Ny3@¥3©?<å6@ Õ©?eÄ8@j.©? 2<@B±©?–í6@–©?+è3@%e©?y®0@ʇ©?’2@rH©? %7@{À¨?V6@5µ¦?O¹/@~p¤?Q&@¢¥?äÕ @2·¢?é}$@¹¢?[4$@O–¥?‹M$@O|¤?}ú&@ío¥?œ¼-@j¥?W 7@íp¦?@¾7@¦¦?®‚8@Üã¤?Õ¼;@`ý¢?!C?@ÊÞ ?fD@îÜŸ?FúA@"ož?º^9@¹=ž?ž”0@¿GŸ?»—+@îóŸ?Â",@Ç ?‘ú,@Á¢ ?ŠË-@¨ì ?Nä1@Ö¤¡?.ƒ3@b‰£?}4@û¥?¬ÿ4@{ê§?o75@ôÛ¨?”À5@Bª?4w7@Mfª?m+7@F©?öÜ:@ˆ©?US4@a€©?ä´3@^¨©?$Ø5@8å©?D":@ôÇ©?ð];@1×§?_k3@K ¥?» ,@t¥?F&@€+¤?xB$@E¼¡?æ«$@o¦?í%@ý¦?ÝŒ+@2b¦?ðÍ3@y¦?@9@’³¦?ð!7@¬(¦?³<@,¤?!¯?@«|¢?Í:C@GQ¡?-XE@; ?–I>@nPŸ?Ÿ3@‚:Ÿ? Z.@h ?|+@Æ2¡?Øð+@~¬¡?*.@f¡?NÎ0@+õ¡?½3@ð<£?J`5@¸¤?<€5@®§?ÜL8@,¡¨?o26@o·©?uÍ4@¡­ª?`§4@⯪?½4@1Ú©?`6@‰J©?OJ4@¯"ª?>ò7@“ª?ë;@’±ª?^Ž?@ …©?Eû8@£C¦?yk/@Û¥?ûà)@È¡¤?bX&@†£?9˜#@”§?½*@íð§?й1@çy§?Àš6@õ9§?½­7@€¤¦?Ru;@/}¥?Wn@@/$¤?þ{A@þ,¢?ZfF@‘—¡?(ÕA@q» ?:&8@LÏŸ?ü°0@fïŸ?0/-@b¡? s,@ËÊ¡?!Ç/@{¿¡?]Ú0@þ¢?µ6@ªó£?=I6@J¤¤?t75@ž¦?…7@ö ¨?ÚQ8@!Œ©?è4@J"ª?É2@@^«?c:2@–#«?!Q4@µ ª?R 5@ ª?¾=9@õ«?^Ç>@hѪ?Ú¶?@NH©?0x;@k¬§?žÓ3@ž!¥?žg,@wµ£?=(@Χ¢?Ýé$@Cå¨?ÿÌ/@˜Ó¨?E­4@a¨?S9@R ¨?h:@£E§?*—?@b~¥?âÇA@Lˆ£?—ÝD@…ä¡?àçI@õª¡?@@¸#¡?^Ê5@ú}Ÿ?Æè0@\­ ?ìp-@hà¡?ø~.@bt¢?îû1@€b£?Û5@—’¤?ÈÖ9@~¥?Ój6@ZH¦?ÕØ5@Ç›§?Ø©4@³¨?™4@4­ª?lC2@\ë?#P2@^ ¬?´ã2@äv«?-6@Ñ«?ñ™9@£«?Cç?@HÆ«?ŒA@âÙ©?.Ó;@µ§?`°5@‰§?zÛ1@eV¥?™ð(@y#£?õÆ$@˜ ª??.0@«ç¨?Ž7@Õò¨?Ò9@Ž ©?Àï=@[}§?Ñ@@Î=¥?Ã:B@n5£?£˜H@(Å¡?ô I@K†¡?Õé>@) ? 5@jÛŸ?qI.@ëס?‘B-@â>£?ˆV0@:¬£?º-5@jó¤?*@<@«¥?1h<@”õ¦?j67@®§?8@Ðq¨?Â4@9©? 2@ðE«?‚T1@†»«?¯Ð1@«†«?‘È3@S¬?!:@§µ¬?Ê@@eϬ? ÇA@;«?žå>@òÕ¨?L4@P¨?Óu0@<ü¦?wÓ.@¡Þ¤?ß'@癪?CW2@í©?S…8@…©?C*=@Û¨©?œA@‘±§?2A@ºÔ¤?š7D@Ý©¢?ŒžK@"F¢?×3H@ V¡?K<=@Ç ?Çô0@!¡?#L-@—¢?ê0@Ú®£?]¢5@‹¢¤?Ï:@Ýg¥?)Í>@ó®¦?äa=@{ϧ?ë#<@0¾¨?ØÛ6@•Q©?ëÞ4@]Kª?a×/@盪?&/@¡3¬?%k/@ÇÄ«?Q•7@ê§­??@G­?ײA@ïe¬?sý?@º…ª?øÇ7@R¨?Þ¶2@öX¦?.x0@*Í¥?§é*@«Ç«?ú¥1@ª?˜–7@úÖª?+ö@@Ï–©?SC@†§?8EC@œ¤?:éG@ŽK¢?yýL@ð.¢?ôLF@pÞ ?”~8@$D ?'`.@à¡?i00@²S£?6¸4@†¤?8@i:¥?hä=@@¦?êý?@ý‰§? ñ?@Pî¨?;:@Ϊ?¸¯7@柩?™­4@lü©?ö)/@ìG«?™-@z}«?Æ4@.Ò¬?’{=@¶!®?‘}A@?­?à?@1´«?wl9@^z©?_6@ò§?@®4@¢¦?‡½.@6ý«?/`/@D«?¾9@,«?x@Ê/§?½?@h¨?{<@+@ª?ŒA9@OȪ?58@€8ª?˜24@¢¼ª?—!0@c«ª?ì^5@„.¬?:@ÿ­?ͪ?@ný¬?ë>@F«?:ž:@Õ˜©?5‚9@;¨?ið8@¦¿¦?-™3@u¬?Ý"0@}â¬?ª³=@¿à«?PG@x¡©?vÓI@[¡¦?¯3I@!D£?Î×M@Gï¢?ONK@9?¢?=@:¸¡?³¤3@ ס?Úp3@*Ï¢?ñÇ3@öÆ£?Þ9@ú ¥?ò½>@H¨¦?Ûó>@ƒ–§?j<@§Ÿ©? y:@”“«?( 8@¼«?Ž´6@û—ª?v½3@aŠª?ñY2@&`«?—Í;@+¬?ü±>@1¬?(ä<@R«?+à:@[±©?mØ:@H¨?q9@ÿæ¦??98@.O®?sÍ4@ó ®?¿äB@Œ¿«?·éH@¹æ©?hïJ@«´¥?íI@-^£?˜vM@‰ë£?Q­F@¯/£?zo9@™Á¡?{:4@:¿¡?ð 3@´£?õ«7@¤ò£?Ã@<@ÇÔ¥?ƒŠ=@L§?„`>@›^©?"ð;@E«?:@8Þ«?&9@V"«?§7@ÏM«?xN3@ïa«? °9@9v«?UÔ>@Š«?å<@ «?¬h7@ cª?ì·7@fæ¨?}Ò6@i §? ï4@.°?Ó¬9@¥¯?6G@Q<¬?:|K@=©?U:I@f¤¤?‚‰J@¾¤?­M@Ëü£?vC@b©¢?i38@޵¡?û3@•“¡?DY5@Hg¢?f:@ Τ?GÐ=@Eæ¥?¬ü@@?>©?Áû=@óª?XR<@‘¬?è=@¹‡¬?Èñ9@ûè«?˜<7@B¼«?~9@Ѻ«?õ>@µàª?>î;@xª?™]7@ì5ª?H˜5@÷ª?0×6@jا?X»3@üw±?a@>@t¶¯?°PJ@=ª¬?.L@F·§?«ÅH@̤?{3K@Ƥ?gL@‹õ£?U˜A@”`£?G6@H^¡?S4@–ö¡?¸ö7@YУ?µ÷9@‹§¥?Œ>@9§?£>@,ý©?UÑ<@v«?8?@Æ%­?«Ú=@È­?Š:@¼«?'í;@ÃÊ«?‘};@Ϭ?å,;@\tª?¤7@= ª?á­3@¾ï¨?5@Ö§?Œp6@ŒP²?WB@ö °?ŽìL@¿ÿ«?3ýH@ÿ.¦?²þH@Ñ^¤?M@[¥?ü¼J@¤?Cµ>@Ëk¢?+ÿ6@D¶¡?Ú”7@™Ô¢?x8@Ô¤?”6;@Q»¦?˜'=@è¶©?(6:@ת?JQ<@˜‡¬?_±:@ÐÙ­?K'9@7P¬? ¯=@û¬?õ„>@ÜÆ«?…Ù9@¢×ª?°û9@zö©?™Á4@Ä©? 4@s]¨?Ò.5@ñ³?NDD@L,¯?ŽL@þª?Ÿ;I@òû¥?|I@Xï¤?÷HO@Ѥ?'@H@3¤?ƒÈ<@!ì¢?MÇ6@ä¢?r~6@…ú£?ò8@±¥?L^<@?ž§?—d:@³.ª?™»:@¡’«?}º9@Ò­?$Á7@Øù¬?¦¬9@dÚ«?Ý£@@~o«?xÕ@@úy«?×E=@ª?éÀ=@ ©?O€8@òþ¨?µ5@4û²?– F@H&®?Z,J@á©?TJ@ë¤?¹K@þ¤¤?ÊBN@êߤ?„cF@…ª¤?`G;@çç¢?j6@ë£?R5@ k¤?;p9@?'¦?·þ9@E?©?Ú¡9@q «?–Î7@ ­?ÌÂ7@ò­?>„9@¥ñ¬?¤=@¢)¬?aà@@"~«?Ñ;A@È̪?…$=@ÉÊ©?56<@¨? b7@| ²?UÊE@ÞT­?7ßJ@“}§?LhI@Iܤ?Ì”L@䦤?˜ÝN@ŸŒ¥?–SD@ï¤?ê];@¹å¢?kr4@ ¤?K 5@j¥??†7@m§?³¯8@ Ë©?ö‡;@¥Û«?ë :@×­? :@s›­?}<@jÛ¬?®h@@æo«?kŽ?@‚ïª?†À>@©Ã©?,ñ;@Hœ¨?€½:@§¬±?9ëF@t^¬?E·I@9x¦?‹5I@\Ô£?ãL@ƒ²¤?„íM@Uñ¤?a.B@Ї£?|G7@¶¥£? i4@‚y¤?ˆ‡2@_¦?¡¯2@ì+©?¶ 7@ÿɪ?9@'!¬?™M9@¼ ­?N:@…¬?_U;@'c«?Ýê<@«?J=@*´©?&«:@öm©?=@µ'±?”YG@?¿ª?!óG@‰a¥?›¾I@8¤?HÓO@F¥?æ‚I@×1¥?CN=@` ¤?·¥5@1[¤?Åš2@€¥?^³1@bè§?*é3@qª?k{5@•ß«?`7@V¬?1i:@ZC¬?%Å9@µ’«?„c8@Ižª?ÁG;@X…ª?$Ù8@Œ©?ÄÈ8@o¯?¶òH@Tü©?ÅþG@Ã¥?t}K@øS¥?öŠN@@A¦?kzH@‡&¥?^ <@‘„¤?’À1@¹C¤?".0@Ц?·/@ág©?Îæ1@ˆÌª?éŸ5@`¬«?ÀA7@‹«?rf:@hÞª?Ÿþ6@ØÉª?° 8@áã©?:X9@©? 8@¹ô®? ·G@:g©?†‡I@_Õ¥?=K@§9¦?;zO@Ò+§?áëD@j{¥?N±6@6T¤?Ùf.@{n¥?ˆè,@Ûø§?ö¸-@e©?Fú3@ÿÞª?lŽ4@W«?Ó6@ߪ?jÁ7@år«?@„7@–™ª?Î8@_Í©?±:@‰Î®?IÎJ@*'©?œ J@Ù6¦?7ÌL@”§?ÇEL@Êý§?¤y?@x¥?¨3@7ˆ¤?Ô-@ÓA¦?À,@œ¨?ßJ/@½Ð©?Ç3@Ž«?n¸4@`m«?lÒ5@½Ñ«?„y6@¿¬?ýÂ7@Š'ª?a€:@ õ­?@K@#©?D9K@‹Ã§?#N@K¯¨?uºF@û¦?ñ8@Ȥ?Õ•-@¥¥?O+@Éw§?F/-@½©?§Æ/@àã©? )2@‘ «?é3@°r«?ð‡3@ɬ?+›3@ Óª?M 9@OÚ¬?J J@r©?בJ@¨?1AM@Îò¨?°@@Žß¥?m1@X̤?½u(@ÆÉ¦?áF*@E.¨?0ð+@–a©?œÑ.@ré©?©©1@šÚª?.0@»Ú«?m³0@_›«?¥&3@‚¬?õöI@_(©?÷ÃJ@™Ó¨?öÞG@¬4¨?7A9@¸ª¤?r\.@ ¦?%Ð'@}O§?µâ(@†k¨?¦i+@Ja©?”v/@<î©?àP/@#»ª?n’.@‹Ÿª?s2@uL¬?„K@uÅ©?§ÎI@ò™©?ñ¹A@tã¦?4@ZK¥?œ—-@»ƒ¦?Rö&@º‹§?·h)@#©?n~*@Þƒ©?£/@q=©?7/@f2ª?èÄ.@&¬?ˆŸD@K©?êSG@Q3©?fþ=@Ý5¦?Ëf3@w¦?bD*@@§?œÕ(@Ѝ?„Æ*@¦3©?+@‰©?fý,@³2©?ÓF.@—ð«?[¯?@1†©?—1C@‘ ¨?#¼:@¦¦?ÑI2@I¸¦?Ññ+@²1§?ø%)@ÿ®¨?*@…ب?k²+@¿©?k -@4Ы?€Ò=@Kë©?Ð@@®¨?V69@Kà¥?\®1@¥¦?f®+@sí§?tˆ(@Éž¨?+î'@S$©?œ¤*@t ¬?RE9@ó"ª?Ü0B@eЩ?V=@Ÿ¦?Gá7@Îë¥?ß-@ E¨?ëd)@‚Ũ?1t)@»í«?Ôb:@¹dª?RŠF@Æ!ª?QÁA@F§?û7@çý¦?ªê.@ ¨?z®*@²€«?äc<@Ãîª?‹I@®Pª?¤TD@3¨?¶­;@ïq§?hÒ3@%Ÿ«?èÅ>@A¼ª?R°M@æUª?S”F@ÓÛ¨?-\C@r¶«?¢u@@ž#ª?dÏL@9.ª?í§L@U¬?@@Ó~˜?ïxB@ôE–?ùQ@@5™”?ŒÐ7@+±‘?' 3@‘?•¸0@ƒ’?ˆ -@”?|Ê2@’$•?'6@¥#–?sc4@Ž—?Áà0@è—?œ•,@äh˜?wn$@'p—?Ø@º0•?yV@çÊ“?c3 @vw”?;ë#@¤Ê“?ëx(@“=“?a_.@Âf“?3@Ð!”?û39@eê“?£7=@’?éÒC@^S’??‹F@Ú¥‘?h¬I@÷ÿ?­O@Ê‘?¾O@ëÛ–?®/@Ó5µ?èò:@„€¡?Ì9@—Š”?êz0@lû“?‡·<@Ê„–?ïºK@C““?.àV@x—?-*d@ÕÌ•?åSf@².”?.h@‡:•?Pºg@ü¥–?k{a@0˜?¼hX@BØš?œ–M@KŸ?’A@ c¤?aŠ5@ÿ ¨??À*@År§?˜æ-@+X ?lÐ@@bô›?°œS@«Ð™?Y@7Ÿ™?Á®\@F”™?ëÕX@p‘š?¾…T@è&?‘ÐG@Ç|¢?%‡=@ÙE¤?8â6@´¤?,ß;@=D¤? :@‘¤?ÜÆ3@Yž¤?Zæ2@«Î¥?í5@ g¦?Ûb:@ð¼¨??@@Å««?èD@ ö«?†­A@,*¹?îH@°“·?Ó@@]®¸?é7@YX¶?zi5@sp²?#e<@åK²?)R@·7°?ænj@G‹¯?Äv}@‚|°?L„@‚ã²?£)ƒ@Hæ¶?ŸÓ€@¶Åº?=Æx@~I¼?žr@xd»?Êf@ƨ¹?Yé^@@§s™?ÀB@fœ™?¸PM@µx˜?Š€L@ò•?yvJ@"Ì“?öªU@ŸÛ?Ÿ.n@7 ? UŠ@õZ‰?#Õ’@mш?•@=XŒ?+ ‚@ –?v+c@ø¤?Þ‹O@ƒ$°?D©9@†N·?̆@¬¿¶?:,@å±?çL(@~Š®?gU@´ô¨?÷0|@§Ùš?´¸#@&Êš?/%@-œ?~u$@ؾ›?ªö$@Áš?]#@G™?bæ @€5™?qx@s˜?h!@ãë˜?Ÿ7$@Òû™?ÊV.@αš?Ð8@{+›?;@<’š?˜Î;@埚?Q¯9@º–™?&Y6@%G™?Df6@š? ü6@yš?«ž7@#+›?éP3@yÅ›?Pq,@À ?÷U,@24?N1@˜°ž?ïQ5@?DŸ?|8@b ?z:@™¯ ?ŸO<@§h¡?á<@Ö—¢?þ9@nf¢?K-6@ɯ ?EÌ6@æQŸ?k´:@Ïž?>C@9¯œ? _K@±àš?ýñK@ï"š?EI@Q«™?’ÖC@·£˜?õà;@Š˜?½=?@m˜?ìFI@›Í—?vL@ëô”?‚oN@਒?À4]@œi?þC{@P™‹?õo@E]‰?Ü[@±ÔŠ?V³…@AQ‘?)òl@ã@V¾¢?œÞ<@ðÜ¢?О6@ñ¡¡?z6@Õ¾ ?Ñ8@܈Ÿ?\‰B@ãÝ?D L@ád›?ð K@¸ô™?õÙF@¼™?‹˜B@ 6˜?äQ<@¿å—?n‹>@€ä—?•#H@ÿ —?ŸêM@)!”?K,T@‹"‘?bBi@Ø"Ž?×±„@ÂÊ?G¾@\­Š?þo‰@EŽ?UÆt@C¼—?ÂZ@×m¤?ª¯V@ð¨¯?ƒ@e¤?Ü·<@ù‚¢?¶<@%q ?fu?@t7Ÿ?6®E@2Ò?ÝM@&Áœ?FK@´0š?Ç@Q—?ItH@wø•? "Q@Ý×’?Î]@Ð?Á^v@[èŒ?ªR‡@Û*‹?æ#‰@ ׌?¶Á{@€‹“?Å^@W²ž?9PU@…ª?<{]@!€²?°éW@–Ê·?töL@Þ9¹?¡þF@5Ƹ?irJ@oëž?Ʀ@ªŸ?nF#@«µŸ?/.&@7ž?Tø(@@†Ç–?§7@ÓÔ—?±0@늙?¬4+@Íœ?4Œ$@Ÿ?eÊ!@u¡?ß5"@ª^£?Ò$@ا¥?T\'@J¨?Ÿe,@´y©?í2@xª?o:@ˆÑ¨?r]<@j!§?W>@0 ¦?>@Fí¡?×Ì?@²"Ÿ?#C@:Ï?D¸G@*¬œ?d9I@ß?z9M@5@›?‰FI@ø˜?º‰=@£\—?…:@ãÏ•?äƒ>@l­–?gøJ@Ìr”?§X@ßk‘?Üìd@ÉÑŽ?¬ì@-ÓŒ?㇆@¡ŸŒ?Fä€@š»?BIc@Ü(š?Z6R@q ¦?c]@BÚ­?1Àe@tÚ³?^úc@øS¸?å[@½Û¹?_uY@MX?™ß@¹<ž? æ!@ÏNŸ?ám'@¹ž?f¤,@((ž?&1@ž?BŽ4@¸“œ? :@l*›?h]8@èߘ?bÑ9@'l—?–Â<@6O•?ë¬<@ù{”?é?@[•?`VC@䢔?‘ÝF@.•?[‘B@l—?“<@ò™?Ö™6@#›?84-@I?¦È%@.þŸ?nÁ!@¢î¡?ˆþ$@\‚¤?–*@ËH§?^½-@Ø6ª?õ2@S<¬?±t7@m¤­?RÛ9@rø¬?Ôì<@bb©?ËA@鈦?f?@:¢?Œ{?@SÐ?’£C@þJœ?QF@_Šœ?‘fG@Œ ?÷I@í8œ? H@µ,™?µ=?@Ã{—?ð7@|Ε?Ë4=@›ä•?(DO@Ê“?Ìa@ÂE‘?óo@_ÛŽ?KÔ€@ÃÔ?øà€@lw?Ãk@ëa–? –Q@ó¡?ëéS@SŒª?\[i@/Ú¯?¡©q@^µ?sm@øHº?´Lh@2(›?}X@d››?[È@["œ? ñ$@eÇ?ý{*@jI?ön3@:Zœ?M×:@T¸›?ô£>@¥iš? F?@³w˜?Á?@Ž—?kãB@9N–?‘ E@"Õ•?ç™I@)“•?mK@K–?îM@ès—?`&I@ט? ÇB@–7š?wÐ=@"í›?\W2@ Ež?~ô*@Iw¡?Zd&@×4£?kÅ'@*¥?VZ*@¨?ÿ¶.@@§?Ú¸=@"|¢?=?@n?ZH@›?owD@IÆœ?.B@ëJ?IF@Y`?KÑE@Q™?å=@¼}–?T8@X]•?ì‡A@öI•?L?W@I¸“?‰$g@y‘?Dòr@ÏR?@uê?¬sr@˜”?OWW@†+ž?ë,J@vǦ?°ðb@Hý¬?”=@ÍÄž?+A@VZŸ?±ô@@a›?û=@?—? ô=@MR•? ˜F@Ý_•?þ^@ਔ?Ò°i@[ò‘?.q@\ú?Q–r@›¨“?=õ_@j›?EI@bn¥?b]R@34«?Nts@#®?ª•@ c³?’€€@ôè˜?’o(@q™?Em$@b¤™?2F&@f™?H6.@q@™?ÏU7@Ò™?¡C8@þWš?Ñ&7@Qn™?O¬:@Úí—?«?@êÍ—?ŸnA@KE˜?þßC@6©˜?:™F@H™?ª¶D@˜? @@Hœ—?E?@;˜?e>@™?¡a=@&Ç™?×+;@h¤œ?ÇB6@é?¥2@•¡Ÿ?ú3@Ñ¢? Á5@y…¤? í5@ý¥?íK6@ÓV¥?Âü8@Œ­¥?P8@Ì¥?‰ê7@š?¢?ÊA7@yU ?dG>@°¬ž?æ=C@1X?ûD@fÀ›?ÝP=@@àž?††3@]üŸ?„°9@g|Ÿ?9þ=@þä?€.>@”™?½bA@7I–?ÛºO@õJ–?•^c@ïc•?Ül@Å “?„o@ê”?æd@Ù™?“R@ ­¤?BI@Ç&«?bœj@#$­?É"‚@#ý¯?O„@¬eš?žÖ'@Qi™? ¶%@@˜?Ai*@"?™?é&2@T-™?Ÿê1@e1š?hþ2@=Nš? ¯8@pý—?K;=@7u–?cÏ>@a£•?˜ÎA@ Q•?&C@•?QoC@U¯•?Üð?@h¾•?ªu:@hM–?Ä”3@Žø–?…»3@q¨—?Ù27@~I˜?Qí6@3§™?”¨8@p#œ? j7@…ž?Ö=@û ?Ë @@†½¡?1¿@@B€£?ŠC@@À­£?œ1:@­F¢?‹„4@ ?·2@Þ?3 2@ô?C™>@e®œ?øzD@Îzœ? D@µkœ?p½9@Õ ž?ä.@`-Ÿ?ÞL7@¡?Ø>@K—Ÿ?åÝ<@⣛?ìYF@ß<˜?U«W@w˜?[i@…R–?%Ãk@°–?“Uf@Íû™?¢A]@f £?µL@ìÖ«?&.`@]´­?q?~@ĸ®?Ty„@™?‘ç$@@d˜?ï“(@4˜?Ï .@ã™?z¶.@Dš?4ú2@¹žœ?!à8@ÅÙš?¤¡=@²—?‡>=@“•?ó@@±”?’B@ï“?k B@Ï2“?øõD@ä@“? g=@àY”?d8@²Ü”? 1@}Е?T0@ –?x&3@ž—?I6@€Ü˜?ðA;@*-š?¿—>@nÓ›?ò@E@dó?kE@9 ?³C@“¡?ÝC@g—¡?ýæ?@·Ÿ?°6@?Û¦-@Þ0›?Þ7-@ðð™?Ï8@D›?+(?@r¬›?œ@@Aøœ?3Û5@¶¦ž?±|-@úæ ?Û4@[N¡? ï7@ ª ?›z;@hõœ?ïIJ@5š?oA`@ûF™?½k@zR˜?JÈf@š?ô@c@‡¡?NW@ku«?©:W@`ì®?L9p@Ýù®?&€@ßí˜?jZ%@üŸ˜?ëÅ$@Ü\™?DZ(@-š?‘ù+@dœ?[ë7@…m?H?@Ñš?Â&;@N`–?\ù=@-”?„7B@/’? >C@¯N‘?J*B@}’?Áæ<@•’?xØ8@K “?ŽÏ9@l“?c£5@T"”?w—5@æ>–?„8@è\—?j·;@¯Œ˜?ò¨=@#[™?ë´A@\ñš?ÉUC@?@ýœ?ìî1@m¥?³@,@üŸ?\‹1@iÍ¡?Ñ’3@燡?ß@=@ÊÆ?ëÛT@Õœ?JŸg@1;›?©)i@êRœ?Dc@ŸÎ¡?mÎa@ºÊ©?€áX@o °?-Nc@K°?´cw@Rr—?¾v@˜K˜?Ê @ [™?(d%@º–›?<¤/@ž?®ã9@sbœ?Œ;@ k˜?sÒ7@æ”?K¼8@“?‚>@!Ò‘?ìL?@r˜‘?D¸>@Èþ‘?Û:@¢*’?†à:@µT“?ü¾?@®·“? C@P9”?¾C@9–?ÃÕ?@5V—?/A@ÊÖ—?±ç=@}ã˜?üÉ>@Ó™?cÎ?@èk›? X>@¦?$T@@UÖž?¾B@•€ž?4B@?.B@®žš?ž?@‘;™?\<@Ò¦˜?8@í˜?›ê9@ŸÏ˜?ûŸ9@¢{š?ÐR2@i¬œ?¸‚/@ÿž?™T0@ZÏ¡?ÙÅ5@Ù%¡? 6J@æž?·_b@ÖÃ?k@þž?|§d@th¢?!ûh@“o©?W`@5°?o^@$»°?âWc@žÀ–?Â'"@ê#˜?4d"@Ñaš?ê#@&?%l.@¯ž?¶6@jR›?“ú3@v˜?æ£2@OÈ”?p6@}“?£<;@ ã’?·;@di“?ƒ™>@1‹“?´‚>@帓?—A@Ïü”?©I@öŸ•?™M@7Ä•?øJ@p€—?ê»E@ õ˜?_çC@ïë˜?>B@ØP™?ÖeA@/Žš?óÕ>@0I›?U >@$œ?„d<@,„œ?üú<@ü œ??@h›? D@tkš?F@.î™?+}C@ò˜?¬Í?@À?˜?}y:@Ì—?Ò¸1@˜o˜?¢ .@üš?ʦ2@Ñ|ž?œ£>@°¢?ÃËJ@NÚ ?½&Z@{  ?“Äj@ù\ ?ži@v £?’|l@Ò©?Xûj@[a¯?˜©[@š´±?`©T@̈—? t&@͘?Œ@1š?ù€"@še?[.@9â?m³5@ÛSš?0@#e—?b¬.@º…•?p77@¿s”?éž:@Z8”?^m;@µ¥”?A@@žW•?d^E@ÁD•?§ãG@H–?]L@}b–?=ÞK@ì”–?¹^M@È™?nXG@Álš?¢àH@Zäš?Ä×G@3›?”ÉD@ªE›?mÇA@9"œ?˜>@n:œ?³ô<@.œ›?ÌÐ>@¿Öš?ëc@@¯š?g•D@O–™?ñC@‹C™?“jE@Þ‘˜?G™C@Ÿ]˜?¥¸<@Š˜?Gð;@Å“˜?ÔÄ9@^›?Ê*E@íX ?›sU@å:¡?\@5Π?0+f@Ó¢?TŽl@”¿£?´on@7k¨?q?q@Vg®?­f_@¦N±?„éK@!÷—?]ÿ%@MŠ—?¸@YŽ™?^Ÿ@®ù?U·-@˜ž?è6@=š?!-@-×?‡¸/@X^–?Ä_9@;p•?Dö<@;©•?á'=@“Y–?3ˆB@ع•?éöE@‹–?8ŽH@6%—?óJ@˜Ü—?ãG@,™?²F@€Eš?QaH@›?ÊúK@;3œ?Ô9I@Þ£œ?žJ@äN?1~G@ý_?¼=C@¾G?q+C@õã›?êJE@’›?ZyE@† š?pÑB@=™?ú¿=@5¶˜?#?B@™?­ÆE@Ös™?^M@´ð˜?5ËL@ʤš?ø]O@5ž?Ò\@êp ?L|a@ ¡?¬™f@fý¢?:k@ø…¤?…”o@˜§?êªr@ʬ?ž²f@?±?9SM@=j–?ÒV%@Å•?Dj@Ú|š?TÆ@upž?Œ,@£Þ?q4@µ³š?ߢ.@GÞ—?Ǭ1@… —?Õy8@”Ì–?y B@ít–? ß@@P—?ë!C@â–?¨ìF@.a–?*¡I@â+—?FF@–×—?½ZG@ú˜?I@>+š?J@ਛ?UWF@óðœ?»ùC@ל?±F@šl?¼–E@{í?éI@V…?R]K@!ó›?!äL@ˆÏš?6MJ@–t™?ÉØ@@íË™?†¢=@ð™?µ D@s š?IäJ@·Oš?lÏH@ëîš?œ&K@}Á?I_V@YŸ?Õôe@¤» ?|Ld@ “¢?0õe@µ%¥?¶m@ñÖ¦?°Pv@ Û©?Po@¨¯?{ T@õL–?ÑÎ#@!—?ëj@¶¯™?]!@ž?c +@–@ž?hG/@ ¹›?Xb-@ó—?ˈ3@t|˜?O;@Lù—?Ñ´@@(‰—?YA@rñ–?QB@½W—?¨E@™~—?rG@«×—?±×D@3]˜?)œF@sW™?°»I@%“š?rD@œ?ÔôD@æó›?‹E@C²œ?OA@s»?')C@ùÜ?v‡F@o?r;F@È4œ?ÎiD@ÐÙš?ôQB@ôuš?ØÖ>@éM›?x->@6£›?T"<@:œ?@¢5@Õž?`ö5@Í?z„F@sàž?rç]@0Ÿ?\"c@|ý¡?1oe@l¥?âÞi@¦?»t@q2¨?õvs@5}¬?á¥Z@,—??¡)@ô}–?f!@Kõ˜?gØ#@#™?¢h,@?ž?_-@É^›?t@+@‡6˜?õe0@@`™?ײ8@™?€Ì;@æ:˜?½~?@ä ˜?—@@mt˜?SÌC@>7˜?L#D@˜?ÃîC@7Q™?BD@ß#›?pQC@Ù,›?žaB@^Cœ?yA@܆ž?Ç=@VŸ?»¾8@!Ÿ?ß—7@Ð5Ÿ?œš4@ߟ?ö+@ú| ?ëÔ)@RŸ?AX*@¨Ÿ? !*@e ?Þ–"@†X¡?Y#@YÑ¢?f–&@Àþ¡?Io4@ÍŸ?ÓO@Ÿ?Ë]@ ÉŸ?zc@ù^¤?#f@"¦?â8q@Sɦ?j‚r@–Ω?.û]@çÝ–?•¡+@j •?…$@Äü˜?Ùâ%@Öœ?-A-@ Î?þJ-@x>š?je)@{=˜?kr,@Å­˜?±±4@’ï˜?x:@ÐŽ˜?só<@5Z˜?&e>@üQ™?¡Õ?@í®˜?Û@@ÀÚ˜?C ?@:š?Âú?@Ñ€š?f>:@Go?«<4@-þ ?f/@¶ß¢?Žn#@ü£¤?î@¦?y‹@‘u§? V @™T¦?'@ô§?;„@dú¥?ˆ @Y`¥?†¿@¢§?8á@ùŸ¥?ó› @3ß¡?Ô4@PŸ?yºG@[8ž?‘¾T@ÀÔž?W\@Õ¢?;Rc@mŽ¥?ql@Z1¥?«üo@%§?“Ÿ^@§™•?ná+@_¸”?hÆ*@Gš?lF)@9?•%2@üåœ?¯,@JÕ™?QË$@”˜?é(-@Žä˜?%7@˜˜?Y:@jü˜?ØÇ:@ºš?u×;@‡4™?6P;@h/š?cÍ;@ ›?%f3@GS?i·)@:W¢?±! @@§?QÛ@œÊ«?æ€@Pã¬?ó\ô?û°®?™Pá?ªU¯?¬Ø?ç‹®?¤o×?¯ì­?ÐÚ?²ª?²™ó?Ÿ8«?v@èK«?7@Ž_§?Ud@EÞ ?Ïô2@à(?0C@…õ›?É{S@ûèœ?6lZ@eûŸ?·^@„Õ£?îûf@pì£?1k@$Ƥ?Öæ\@q™•?„.@¤œ•?V<,@Éš?ŽX1@B°œ?ð3@Àš?T\(@cå–?+ý&@Çb—?é§.@çט?þ6@Cš?a;@8¼›?rt8@Qkœ?úV1@èmœ?ç.@1^Ÿ?†J&@ÙУ?i¨@ÎC¨?b@k®?£æ?l¬°?Œ#Å?Íéµ?>F´?6„²?&²´?¢†²?ÔÕ¿?Ê`°?£„Ð?_ ¬?º¦Ý?x«¬?zÝã?´C¨?\è@ţ?Æ"@IA¥?h @‰Ý ?†É.@5þœ?(=@íš?º@N@Й? 7Y@×k?gx^@B›¡?½ a@o>£?YÚh@7£?Ñ©Y@²²”?0i,@]C•?Ê´2@·r™?´“6@¸‰š?Hû1@Ê5˜?)@µ–?ž'@µ—?• .@™Îš?xÿ4@ /?„2@— ?”P&@ðÆ¢?=;@þ¤?p³@m2­?Θ@ú3±?QÙ?eê´?¸t½?#´?û«?<Ƶ?[ø«?àá¯?~¼?é ¬?¡²Î?:Þ§?¼+à?§ð¨?FSï?O¤?Ó§ï?ÉJ¤?Át@8E¢?„@³ˆŸ?¸9 @)S?QÄ2@\Ñš?ñN?@Lô˜?{J@°˜?¨ŸV@š[š?B‰^@E†ž?#`@x¢?ÕKc@ ³¡?[xW@ÝŽ“?Á{/@ˆÖ–?ø.9@ à˜?LY6@)˜?yï/@’è—?T¢*@ûÉ—?˜±-@Ð8›?àX/@  ?ú°*@Å)¥?×a@Êå¦?+9@uÖª?°úð?68°?Ì Ô?tKµ?‘iÓ?Pɳ?¦pÓ?œY¬? ìÏ?F£¥?ÓBÞ?÷à ?y„é?âI?˜$ñ?.^›?ʹ÷?lgœ?k²ÿ?ÒÒœ?Ÿ@xÏ›?MŒ@f›?z)@Q©˜?Q©$@n,˜?.?-@A—??@eã–?$K@²1—?tXU@o]˜?ÒR_@ž9›?#Þ_@›> ?È_@“’¡?W¨V@_•?žê2@áߘ?øË9@Bñ˜?¤¦7@xä˜?ëÕ3@F˜?žP0@Stš?ß 3@-Ÿ?SQ.@o¥?¼P@m¨?ø @Ûª?~Yü?Ù}«?”æî?¨§?Á*û?@§¡?óý?oÿ?Sû?» ™?…iû?g–?âê@C’”?ëð@Œï’?]ò@“g”?Ç@Ì•?eÈ @⹕?x0@õ–?„@N‡•?ù&@O•?%Œ+@Ôh•?‘É8@Ãp•?Ÿ!G@Ì•?hóT@3—?áÔ]@8¶˜?³1]@Ÿ'?%a@ª]¡?àX@ªå™?+G;@‚ù™?ëÖA@˜¢š?½=@3Yš?õ9@ú ™?MÃ9@p]™?Ù8@e?pW1@?õ ?TY&@<Ê£?T¯@éžž?!Œ@â9š?¸‚@h­•?òX@Õ|“?À' @X“?㟠@¸“?¨»@ìÆ’?«Ó@¢ä’?„,@ºÊ“?~À@)ù“?¨ã@<±“?‹@Ù/”?+o @»·”?ã°%@a`”?ײ,@¹±”?w<2@,•?aÍ@@1`•?ê¦N@Uì•?ËãZ@iø–?žù\@ì±™?F]@0 ?2Y@Nš?+uF@‚™?’DE@±N™?KC@;Ƙ? ÿ?@ƽ˜?s>@–‡—?Ã;@|è—??<@ìü—?¨•8@m”?å¶4@Æb’?&‘2@GÈ‘?Ü/@ª “? '@¥”?Pæ @’a–?Ñ]@°ä—?À:!@›˜?ff#@“ð—?ß$@e%—?nÐ%@ΰ–??ç%@‚–?áÃ&@ ;–?r)@uŸ•?µù.@•ì”?yT3@»2•?¡Ê<@„•?¿íH@Ì#•?ñ U@íÈ•?ÃXY@?½—?ö\@cÿ?Z«V@¯Ô—?ÁF@=•—?¬A@EÔ–?„c>@5—?s@@t ˜?ä>@ž—?+‡A@U•?½Æ>@³Ü“?ëz7@’?ñu4@ÑŠ‘?>‚3@’(“?T©*@Ñ•?)@䆖?:@ö˜?1@Á™?gï@5ј?}ö@zÙ˜?^!@±B˜?%%@\˜?óP(@µg—?·ê)@k—?xò,@ëü•? Æ2@60•?FÐ9@Ì•?Ù¯B@2 •? M@@á”?Š-W@-ò•?è‰_@h0›?¢—X@V•?ÙÛ<@¶é”?º}7@;”?ã†:@Uò–?2>@Й?Ñå>@=™?Ë~>@ÁJ–?ž\>@1«’?I¢+@–?:@·?@ž@ò|‘?S= @Vf”?Q@&g•?…| @Ó–?Þ"@ôõ–?V5@ÿ`—?Ss@”Õ–?/Ä@ÖQ—?ú­@vû–?gi"@gâ–?_Þ%@ÈN–?žÉ.@—ò”?ÒW2@‘Ž•?ñ;@bf•?Y+B@d%”?ÔáL@ÝÇ”? \@@#™?-s[@Í“?¡Å0@W¿’?™û4@tþ’?ãy4@Þƒ—?Èã5@-“˜?}:@M ›?¿¤:@ 'œ?‘˜8@™?(#@_¨”?fL @Yö‘?š þ?¨]”?‚Ãô?ØŽ•?–4ø?ej•?'Ëú?(–?„k@åâ–?ã„ @ ’—?Ë1 @lf—?¼£@ç—?î¾@€—?©@Zo–?mZ$@GL•?H*@$•?.²0@¦B•?êÐ6@H7”?¦?@Ûª“?·ºR@§ž–?-c@bN’?µ,@ô”‘?F1@,þ’?”›2@©–?Êñ1@Íà—?Àa3@$¡š?35@O?ñ2@¤R¢?Û7"@Å#?§É @>k—?q‚ù?”¼–?`ñ?œì“??Šò?•Q“?’z@„B•?Y@%˜?Íà @šY˜?Æc @iw˜?jk@ü—˜?ï‚@î—?h@Ö?fª#@ Æ”??Ì'@Ú`•?!.@èx”?¬“4@v¤“?›ƒJ@;þ”?SNe@$a‘?ˬ*@Â@‘?5¡/@ôÓ’?ö3@El“?v^3@z{•?‘?*@Gߘ?ÖY,@— ?áw0@ã£?¢@ä9¥?c@•Á£?š @:JŸ?¹ø?茗?Fó?´Ã’?2éü?K²“?BN@·—•?ÔŸ @*·˜?Ò@¯á™?;@r„™?ú3@î˜?•Ð@uÌ•?c#@K2•?´î'@û$•?"˜,@Òx”?’š=@Ù”?4Ûb@Q¡‘?v1@-ø‘?^8@œà’?þ‡<@Í]’?˜µ4@™©“?•ä&@yž–?8ä%@Ö=š?¸-@[ ?9>'@{¥?ê@ n¥?;j@ü1¦? “@ö¦?Fý?ª ?)íü?þ’–?ä®@­–?:°@ P˜?Y @R6™?%b@{†™?°[@°˜?@§@Æb–?Ð'$@2ú•?þÛ'@ÁG•?)7@>{•?ŽÐY@àm“?xã9@4¥“?S‰?@¬’?|M@@¯¾‘?$v3@•›’?~#$@ñ’”?© @ ™?Z¨$@µ ?I$@Üs¡?Ñ]@ÕèŸ?×G@T¥?àù @ø©?:Ó@lΪ?4ø?Àd£?P.ù?¹?e¡@%¹›?µ@ìš?ù‰@kwš?Ún@z˜?Ä#@cx—?˜é&@´—?8µ2@äÇ–?eðL@Vü”?6—9@¨Ü”?5 A@Óê’?ÐC@ï«‘?ãÃ2@»‘?®Ú$@k1“?ÿÊ@e—?›Ó@3œ?_W@IÑœ?|‹@?Gž?Ïz@x]¤?{é@öç«?….@µ>¬?½!í?J¦ª?Ìwè?¬a¨?ò? Ò¤? ‹ @é¢? @UQŸ?É‹@áåœ?žA&@¸þ™?‚,4@/M˜?CxE@œ–?LB;@#Ú•?ÀE@œ³“?Ÿ­>@MS‘?ôr3@iÔ?P&@šæ‘?@6†•?¸ò@¯x—?›I@Ü+š?«-@^?ºL@¹ó¢?Ö@ϧ? #@š™¬?P¥î?"Öª?©Jâ?å>­?Ujç?ÈR­?DJ@¶L¬?E @·~§?žÛ@ð£?ñ)@Q¹?YZ@@i»–?æ8@L’–?ÙÙ<@ Ò”?äï<@û}’?L‘3@) ‘?c'@p(‘?ÞU@©ˆ’?y@"A•?R³@ñë—?¤w@:¬›?r{@¹OŸ?I¯ @UA¦?þ®@¨?uRø?DO¬? è?į?;æ?Å:µ?OLå?m´?æå?†,¯?G@g§?å)@ö˜?Ñ+@c¼—?ìv6@¦†•?N´:@Ì“?¿4@Ñ’? É+@8·?ÜN$@“?‹½@Ø—’?Ê@N%•?ä<@p¸˜?sÆ@¥?Ö@¸¡?Êî@݃¥?¡@V‘­?%g÷?t ³?JDë?Ûù´?Å5Ý?uµ?uí?œc°?¤¤@i™?ÑN'@5Œ˜?Q§/@Óê•?Ì7@ò§”?tÔ9@¾’?IV2@S?+Ú)@(é?µ"@`‘?ô@ñó’?õÀ@ÈU•?©/@KL™?D@Ç…ž?8@QË£?« @ƒKª?X%@¢ª?¡…ü?ºY­?B°@úE®?‰¬@ãÀ˜?þv"@¾Ž˜?öÖ'@v›–?[.@,”?7@9ü’?[7@ý±?~B0@h½?íæ)@×—?fµ$@Ž¿‘?Ö™"@YÊ“?lÅ @Æ´—?§Ì@3î›?š™@P÷ ?ž§@Bë¢?¡Ô@‡ß¤?+¸@#D¦?:â@ :–? @°Í•?£$@ÀO•?iï*@«´“?€2@c’?Òù8@^K‘?óz:@€8‘? 04@ ¾?Yã/@÷S‘?m-@{P“?Ç(@&¢•?É)@¥g™?%Z(@¤œ? (@k`ž?¼‚)@Ï{Ÿ?e0@õÁ“?ó!@I®“?ŽÅ%@7ß“?(")@¬õ’?Ö-@#’?88@’?Þ=@ŽÌ‘?Ù}=@ðÈ‘?Nú;@’? m8@Å\“?÷5@•?KÐ8@ѹ—?ª„8@–Ù™?ýš<@‚­™?/fB@r°“?|G%@õn’?¼Û(@@’?®Ö)@ä‘?,^+@»ì‘?j6@é:’?9á<@¥C’?ãÌB@í’?•§D@z‚“?w I@“„”?ùpJ@i‹–? …K@aV—?ý]O@iú–?üÎS@ß“?â,@>+“?æ—,@é<’?nê+@ªÌ‘?£/@#š‘?ç7@'N’?Ê>@o “?mÇF@ÅE“?@¾ “?mB@Ф“?ßE@ôê“?Œ·L@؆“?_eU@*þ“?ÇYa@@”?;Êh@vÑ“?|f@3’?3¯H@ò‘’?+öM@qÙ’?p N@èú’?ëÄZ@‹Ð“?»b@ø.“?fd@JÃ’?i`@ÉÈ’?9£J@´=’?^ Q@ªè‘?‰³X@ÖÆ’?ä*Z@p ’?ïS\@üP‘?IT@Œ ‘?ÄO@›Y‘?¤ER@ï¶‘?»åS@]ÿ? ‰N@ìc’?¶|H@æÔ?Ó-P@ý€‘?®O@Üà“?Û]D@îô“?ñÈ?@A¥?ï¾?@œ™”?¨‚5@Uç–?šµ7@mW¢?§ˆ2@‘&Ÿ?ñ5@Ñ”?¨—C@]œ?#ð@@>¨œ?@@H?c&F@£çž?²_K@Wèž?aèM@‡Ÿ?¤îS@.ž?]ÀS@gQž?ÿM@Nž?ÐvL@‡ž?ˆIN@Q?þƒH@Ä@œ?âE@Òk›?x(F@’wš?YÝG@;™?ö¾H@/™?«ÇI@,ý—?#ƒH@ݘ?x‘J@Ýv—?²-N@ëÙ—?ÛP@Dª˜?†O@ œ–?>LT@犔?^ÒK@p–“?¤ÙE@wü’?wrC@6’?CG@p’?uûG@¨Û‘?.E@±‘?f9C@<‘?%wA@ ‘?]õ>@,t‘?Éò=@÷Ö? >@l‘?*|A@M¿?¶RB@ N?|ŠF@Ì¿?áøH@Mk?o;F@ý?‹|H@ áŽ?¥ªI@íÒ?“aI@ÝõŒ?8ýK@z3Œ?h4O@Bߊ?sAT@a8Š?šäY@OáŠ?f—`@GMŒ?•°h@¡º?]Âl@Y ?Éei@ñDŠ?*Xd@ÅÁ†?D \@‡?EU@áyˆ?CÆ\@xz‰?zni@£ŒŒ?èË~@uo±?ÚU-@ί?Xæ1@ Ϭ?‰€6@µ*ª?ý“7@÷™§?‚R4@†˜¤?".@ó‘¢?H++@Bd¡? ,@wfŸ?9s,@)¡?H©*@!Tœ?–)@½‚›? o)@ãcš?“Ì)@)+™?Áe)@Þ>—?àÝ$@vK–?”É&@´–?Û-@R7–?¸þ4@õm–?,A@§–?à·I@^F˜?‘ÅM@Ómš?Í„Y@&C?'_@fNŸ?H›W@¿'¡?»&I@0À¢?þ©?@"j¥?YÐ3@@9¥?ø-@YU¥?H,@ÊÞ¢?^÷.@…ïŸ?|é3@ê ?*.;@¸zš?B@aZ˜?¾J@Ç•?¯½S@Çê’?MåT@.f‘?¤1Z@~c?uY@Ç?Þƒ\@gR?º«b@ØR?_Él@«ÆŽ?'…t@XŽ?”­y@…_?D|@ËNŒ?û:€@P‹?ûv€@d|‰?â~@#ш?ê |@Æ–ˆ?dx@Wˆ?Ù^q@¤¸ˆ?xLm@C‰?®n@–Ö‰?ä s@øf‹?Ì·v@5f?Ö€@Já?þ”…@6½²?\œ+@«¿²?@.@^³?ÿ+@;³?ŸÝ&@ÔN³?ÒY&@®Ñ³?øj(@푳?÷)@`Y²?D*@t‰²?íÒ/@#¸²?“`0@`%²?o©0@ƒS³?Å.@½¾´?úR+@]T¶?q¹)@%y·?ؼ)@º?&.@÷´º?~Í/@Lg¹?Î+3@+=·?ÂZ:@Å’´?œ–I@t̲?ëøT@Ì»±?Á3R@Kΰ?³J@ذ?ËC@à°?Ò‹=@ð|¯?"<@Q¯?ý–:@=Ü«?8õ3@2ž©?‡(/@r=¨?ëç-@†&¨?»ÿ-@.¨?ø~1@bR¨?õN6@œ¨?—M;@o¦§?õ«@@J·¦?ÇA@+˜¥?‹»@@œæ¤?ßt?@ Œ¤?Ï==@_]£?ÈÆ>@è¡?*F?@j+¡?.X@@ÕøŸ?äA@ ¬ ?¹¹G@âx¡?Œ³Q@Æo¡?S@, ¡?JS@ן?Ï1R@zþ?ŸVO@+©?ÜpI@?Þ5C@ó9œ?fs>@‡ˆœ?Ò8>@…V?dA@ÜE?ïÌA@÷‹?wÈA@‹?Ñßp@[Ĉ?пe@«‡?QZ@®É†?G[@£kˆ?D­`@Y€Œ?9f@KS?m h@œgŒ?&Eg@|°‹?þÙe@è&Š?‘à^@ö ‹?+V@G|‹?‚³O@-Œ?ëÙH@TŒ?kxE@¤ÉŒ?D@ñ©?š=E@¿{Ž?yDB@=¾?e¡D@º\?M'E@Ÿa?¤A@iÒ?67<@Ó¾?(€=@ß[‘?CŠ9@ór‘?3¦9@ÜÜ‘?³=@ÔG’?—â@@R’?øÀB@õu’?ýC@lô‘?K#?@ï_“?ˆÞ:@·“?›>@•}”?à½D@•D–?ÜP@7•˜?ZÌN@Þ˜?ä7I@ÛN™?¯ÓG@')™?P C@ý˜?=@™„™?HT>@?Lš?\@@Äuš? NB@,¹š?ËÝ>@ƒŒœ?:M>@ñž?D/?@Útž?ž B@/ž?ÎÈE@kk?x%K@–Û?¶O@–¬ž?LR@Œœž?R.M@…gž?/ÜJ@-]?WyC@‰œ?ï‰@@À¯›?v‘=@•T?xe>@@œ‰?‚Bk@=ÿ‡?F%b@ïL‡?¡i]@a4‡?ìP^@8¬‰?­Û\@cKŒ?÷]@Ì?°¨]@E¬Œ?7Ÿ\@I ‹?+Z@¤_‹?X³S@ž#Š?WN@k¶‰?²øF@³Š?Â…B@Œ?`A@`?aÕ>@v´Ž?09C@CÌ?ÁíE@Ò>?T¤A@1þ?àbA@bÔ?W @@ÛÅ‘?¡ÉA@z’?O£?@Æ’?u-=@¤Ë’?LsC@Ì’?lÚC@,É“?ýXE@»¼“?€A@]ž“?!yB@ÑE”? Â>@•û“?{X>@øæ”?ZD@h–?8˜H@^š˜?[kF@Å™?ŸD@.\™?NÅC@œ™?–?@âD™?0;@Ú‚™?êp:@ƒû™?Ÿü9@EFš?åü<@óÊš?“D<@¢Bœ?_.<@‘ó?_>9@z"ž?Þ_<@G#ž?Øò@@™?]\D@Mç?bJ@$zž?vN@Õb?."L@mÌ?R H@ •??aD@cB?LB@ ??@À{œ?ñD?@ßiˆ?‘Ýh@Ì(‡?Ìb@f®†?—.\@½µ‡?6\@LžŠ?ŽÈW@AèŒ?­W@ºìŒ?#'X@Û¼‹?É‘Y@Yn‹?#4R@”’Š?sXI@f‰?—B@9‹?²œ@@sŒ?¢êB@JN?Þ‡=@b\Ž?GD@ó¨?:éK@/?Ã+H@Öv?­FD@€L‘?ÄF@ü‘?‰G@ø¾’?¶E@–h“?3ªB@é“?6ËD@þ”?:—E@üД?@E@hw”?vD@1÷”?²}D@d€•?ôF@Mœ•?˜ F@‘²•?ÎH@D¤–?T2K@ô—?žñC@ ™?uB@ÝÆ™?˜B@±š?þ†?@H3š?û¦=@²ä™?t:9@ÇOš?|Ü7@äY›?}m:@HÇ›?* >@ˆ4œ?Æ->@¢†?yÛ:@j£ž?;@1ž?@^=@îß?? >@¬Â?@b®‡?ˆ/g@E±†?Ìe`@” †?šÙ\@™ˆ?HX@w"Š?ÝaX@‘®‹?ÀøW@‹?«¤T@§&‹?¡ÿN@láŠ?-²D@ä‹?Sî>@#O‹?$þ?@T?zBC@5?Y"C@;ïŽ?ÁE@Ö.?ØL@µ;‘?[ÎN@—¬?>TG@]‘?¦ E@¸Q‘?‘vG@ɧ’?Å>B@,“?øB@ʲ“?¤»A@«”?ÙA>@Òù“?øÑ@@ët”?±?@9T”?Y"@@§<•?Ö/B@^ñ”?ÿÆ?@Ä”?¨C@„Q–?¡D@Kˆ—?¬1E@íÚ˜?C@b š?ågG@ù™?ÒB@H¬™?Q’>@7™?2Õ:@Cæ™? Ì9@%›?!<@ÕIœ?ì>@äœ?…U>@NM?á{;@6ž?(e8@ Dž?Ch6@È¡?Øe=@`¥?G5B@ Ø?ÙñA@3Í?ÜëB@e\œ?+ @@X§œ?gú?@Ù?é“@@ÈX?+¬?@Ge?âß<@b.‡?Õ‡h@Ñ^…?{d@õ…?y^@/ˆ?³S@³¼Š?P…V@‹?çRT@ß,Š?XYJ@HÉ?GC@MðŠ?-{>@¸‹?¾X=@T­?ˆô>@Š–Ž?ÞE@º‰Ž?^öE@ÚE?ÂÈH@îv?“æN@½‘?±I@ø×?Ÿ¤C@÷;‘?YøD@ì‘?A@@¬\’?X¢<@:ž’? 9@£™’?Ñš:@Ç “?¯>@ó^“? †@@C”? =@äû“?k|=@w ”?(¿=@JK”?t>@÷Y•?Xb?@„Á–?&gB@_ ˜?ÿÆ;@ì\™?ëÉA@*¡™?x³A@t™?ÔÌ=@µú˜?Ë:@ €™?†ò7@©š?@“8@N*œ?Þ7@xœ?µ;@©õœ?åˆ:@b?)78@eß?Z½7@·?àß<@n‹œ?¿tA@ãœ?+A?@?›u>@êvœ?`÷?@"œ?÷=@¯§œ?{ô:@Éß›?Ø<@ÂÅœ?û<@Î=†?Lzl@na…?”Nj@‡?jŒ^@qê‰?«NR@‹?A°P@ `‰?ÔBM@:Ú‡?äB@ÂÕˆ?¤¯?@ˆ‹?ø`=@0D?6"=@#3?vëB@ãE?½.I@ìŽ?kŽM@?ˆGM@’·?ôM@É$‘?E@ñ’?@ÅC@¡Œ‘?æ¾B@~u‘? O>@¯`’?69@7ë‘?>:@4ž‘?ê¶;@wá‘?KB@4·‘?GoA@Ô½’?CA@ql“?­1>@ò”?NI>@Eê•?‰d?@uÞ–?û@@Ù˜?‚#?@a–™?÷JB@­™?Ÿ¼=@Ÿ±˜?‹ç7@f˜?é*7@D™?Xf6@¯šš?0u4@§H›?÷È4@Ä›?ë¯7@œ?…ö6@ûRœ?!ö9@É?s%8@´L?çÂ=@@ ž??·?@»U?Íl>@oGœ?‘"<@œ?@Ó¯‹?Ê´;@ÃMŽ?·!A@Ð?ÉÌK@+¡?º­R@ðüŽ?ìKS@µ•?õ\M@ >‘?ãI@ê@’?"ŒF@Gâ’?^lF@㌒?l¦F@`’?`wE@¶ý‘?:@@Ü’?„@?@Fg’?'G@þW‘?7I@u4’?ÀF@û“?eC@Tˆ”?~ÃC@D—?“ƒ>@8˜?!A@÷†™?ƒmA@âHš?­žC@¹™?\?@p¿˜?K ;@Ä­™?èº7@w€™?©X7@6¨™?a5@š®™?ùG4@óƒš?:4@y›?‹E3@$›?–6@=›?xA8@fΜ?=a@@’Ø?w*B@‡>œ?øÂE@D³œ?Á2G@¾çž?ãˆ?…§D@@‘Š?¸Ù?@ªÔ?d@@¼!?pH@ºR?¤ÚN@Ä6?ÆU@Yh?B+S@½C‘?ÝM@c–’?KFL@#î’?™*R@Ï“?8½R@!h“?ÉQ@@Ä“?Ä,K@ŒÅ“?ðRK@X%“?GwP@Žs’?\ëP@Þ’?yÁK@‰í“?‘0J@V½•?¸H@J7™?©Ù?@þœ?w<@áï›?–Ø>@²¾›?šF@7”š?÷¦A@*Eš?í™=@¥¶š?¦Þ<@@8š?¾Â6@§´˜?KÓ2@‡"˜?=Ž5@Ôª—?²`3@<à˜?¶E1@š?Ù‘1@¢eš?h8@"¯›?§?@=´œ?65D@ þ›?üKK@;œœ?7M@Û¿ž?h¼H@M£Ÿ?÷óF@ˆ¸ž?=I@ lž?.ÜL@¦¶?ðM@|à†?Ùm}@Ö:ˆ?âXv@¯7Š?jêm@v,Š?ÙPg@ ¬‰?’&V@Z‰?¥N@+Š?02C@¼‹?FG@À?´ÁM@ìý?†„R@÷#?{V@³q?|ÍQ@xì?Ù/Q@B ’?$0W@MÖ“?]ÓZ@dè“?Qû_@D3”?Y@ÂД?„ŒU@#›”?ÏXU@ÏÓ?ZGX@£w“?~sM@O“?¼5E@Èé“?`ïD@]–?bD@\š?Q²=@·?íô2@–‹Ÿ?8£5@„Ñž?Þ4:@OÑœ?P°B@µÛœ?ü)@@(Cœ?=û@@åYœ?íì9@A%›?Ù•7@ë™?5#;@:s˜?;@ÔÞ—?— 4@N@™?§µ1@=[™?‚¿:@s9š?ȇ@@¿°š?ïlB@Λ?™•M@Joœ?«¥S@í´ž?RÍN@×§ ?(ŠH@É…Ÿ?D#N@½üŸ?ÂO@èÜŸ?þÞN@ Z‡?Fç~@) ‰?£µx@gŒ‰?²Õt@äŠ?E f@þŽŠ?³W@ 1Š?ö$L@­jŠ?ùßJ@NÈ‹?Q@eß?´bZ@ôk?°X@ÑŽ?nžR@‘?:S@’?9ÆX@¯4”?ä ]@º”?.`@q“”?PX@ëC•?‘ S@ãc•?,R@2M•?U@·n”?Ø>M@„r”?=S>@kG”?Î79@a •?ó£9@Ûò™?_5@ž?¯Ç)@òÞ¡?îü(@œ(¢?  ,@ ?-×5@^ ?©O<@+‚Ÿ?>=@Q_Ÿ?Ù64@¸<Ÿ?Ý4@8)?VÓ<@‘›?A@£™?YA@an˜?J@;@ψ˜?Ù‘:@¤™?ÎA@ÀOš?ØmD@§Y›?h L@7?õ3W@ÅAŸ?VQ@Š ?2 O@Æ¡?ÎO@©£ ?¡÷N@]æ ?­°P@vžˆ?ê~@Ñd‰?xô}@Ⱦˆ?Ãèr@·’Š?Œf@¼K‹?YïX@ë‹?ÿ”T@gë‹?×–W@y“?I¯]@üm?ß[@VL‘?Ì[R@…ð’?2P@‰/”?".T@fº”?Í¡U@›A•?DËV@_u•?„S@¾†–?ІN@:D–?ŽƒO@ï•?¸=N@ˆ•?QM@d€”?ÁC@¥f”?{=8@Ûd—?:3@™?Õ0@îÒ?¹°*@x¡?Ò$@± £?Ä"$@öñ¢?‚+@ß¡?i 2@= ¢?Î3@"2¢?,ú&@|:¢?/ 0@ïí ?ÔË3@ü?BÔ8@Þ×›?,…=@[Ä™?¸û?@²ú™?eLB@%›?¥CB@˼š?‹˜D@J œ?C‡J@X¯?°ØS@{GŸ?÷R@Î7 ?rˆQ@[†¡?*ÁO@M¡?5ÎO@41¡?öT@‰?˜‘@M–ˆ?®}@Lú‡?°¬n@|†‰?nÎ^@8û‹?Ñ[@ô7Œ?\X@„n??Ù\@}?`°\@*Š‘?;ùT@=ò“?Ì^U@½0–?kwS@ÖU—?CñQ@_y—?%ðT@Äœ—?8WX@²—?aÒT@ßß—?¹qT@ôô–?X@=‘–? Q@J –?XìF@=G—?SW<@CT™?v ;@Ûwš?ê&:@w)œ?$3@jΞ?ôÓ)@{ ¢?ˆ:#@£?fÍ)@my¡?vÛ,@Cý¡?ÓŽ.@t¡?ÆC @Ì{£?n @¢¬¡?(@<¡?jí*@¯±ž?AÎ4@£aœ?RÏ;@:ç›?rC@u—›? ÂD@jlœ?h]G@_?l/J@}ò? LO@ù‹Ÿ?ïUR@/õŸ?Ø÷T@{¡?bfT@Í¡?”+Q@ŸÞ ?[”T@­!‰?”Ÿ}@ø(‡?¡Jy@*‡?~n@$®ˆ?‹gZ@#¾Š?}U@¦™Œ?­Y@E¨Ž?»`@ù?”Ÿ]@áî’?¼º]@ù­•?ûûX@ÁL˜?í±]@á˜?_c@ä˜?zb@6™?ÀÕ^@dɘ?œEa@#a—?V_a@˜?È\@ƒ’˜?yTP@¬ù˜?hkE@È4›?‡iC@=œ?hJB@¡B›?¤3:@6º?Ö2@Ù£?„é*@uD¥?Kº#@²‡¥?¨•,@0½¢?,0@ ?¶(@·‚¡?Na$@Ó¡?o&@”E ?ÚG-@Nûž?]B5@¾;?öÿ=@4_œ?RnB@iþš?‘wK@TLœ?^eL@`?˜áJ@;Ÿ?oP@PÀŸ?ÈT@ËÌž?3nX@_<Ÿ?¬rS@ÛŠŸ?êO@3> ?˜aJ@%M‰?;tx@؇?uªt@Ö?‡?{Ÿb@ëˆ?¡W@‚F‹?cY@(nŽ?[…_@¹æ?È_@ ’?ŒI]@Øÿ”?c@~¥—?hKc@ê6˜?«Hb@Ê—?¼kb@•½˜?Æ]@{O˜?•¦[@B—?WŸ[@ù-˜?/B^@F3š?»NW@<>š?bO@ë®›?Y×I@—ª?+ýB@uåž?­ç<@† ?ñý6@Ì®¢?’J-@3–¤?Ø"@Q™¥?¹d-@ ý¡?ø¬8@.z ?¢1@B¤¡?t•2@W ?™—2@öËŸ?{5@¨ž?ìÆ>@×Kœ?ÆÙD@̱›?.ÑJ@µäš?ÏP@U›?ç^U@z´œ?( U@žž?ÏsV@¿Ÿž?ÁnW@Ó,ž?MT@Ä2ž?®õK@ù÷ž?Î×C@††Ÿ?!jA@dŠ?”qr@扇?Å´j@_ó‡?ôZX@gE‰?Ù+W@м‹?7ô[@Ð?Qb@±’?³e@æY”?,e@+–?[©d@‰Ã•?drd@½Ù”?=vZ@,”?UKQ@#s–?ÝœJ@{²–?wSJ@{ê–?9¾P@:µ˜?3S@]ö™?P@ù›?EP@uµ›?oPG@poŸ?Ò£=@†þ ?•ï8@´¡?_/@'õ£?³ì#@ü#¤?s{)@Ÿ¡?~W9@3‘ ?šp9@ÂuŸ?ä“=@“?lB<@µ?á6@µè›?¢|B@–œ?¦¡I@(‘š?q"T@À™?3¨V@ÆJš?;ÇV@šÐ›?ÁV@]|?gÊV@8½?Õ*R@y¸ž?xJ@ËLž?lcE@ü¸Ÿ?è…?@3 ?¼t>@ƒíŠ?†Çh@ñ‰?i¿Y@?óòL@¡qŠ??gR@£Œ?/_@,‘?€ûg@½g”?mb@ëf•?th@rë“?-a@n’?îtS@W ’?Ž>D@"U”?Zà>@4ð”?SÏ@@ ¼•?À«D@…3—?‘?K@˜?²L@š™?ÐZN@fPš?m­R@"Tœ?Ø„G@ú³ž?ì<@- ?”K3@8¢?[Ÿ2@ ž¢?ë>0@iš ?w 5@E£ ?Ðú=@þ#ž?Ü¿;@,™œ?"È8@?К?•9@¹I›?åD@ñ­™?rN@¸™? Q@²5™?8ãT@D…š?‚¸S@"ð›?Ë/N@P}? LN@IŸ?|qI@@ãŸ?‘E@^$ ?g®B@¥)¡? @@@(¡?ž?@õ\Œ?ô[@E$‹?çQ@–)‹?BÄJ@òNŒ?+R@ÛïŽ?EH`@ b’?—Ê”?,\@—¼’?R`@ä?¸‰S@TW’?¬OD@¡£“?4à;@nÚ”?‡P8@ˆ•?îS9@/–?@@-Ä—?8LA@$Ü—?‹ÛD@/‚—?ÏIL@)ð™?’L@aé›?¾ A@½š?/_7@(²?O¤7@0ïž?<#=@K‡Ÿ?•f7@œ¢ž?®<@vÉœ?‚;7@ œ?lV1@F›?2ü8@lš?™™B@ w™?íM@)û™?ø©P@¥xš?òîK@ÐÙš?x¿I@í.œ?Ä=F@Ÿõ?ÛÁG@gn ? H@i?¡?×C@^#¢??¼@@О¢?Hß>@/É¢?ê«@@ù?bÞT@ßÕŒ?¹ÜN@ô?†ßJ@®Ž?—ÔR@²ð?d`^@eú”?3ó\@v¹”?ˆd\@z‘?żR@z§?¶'L@‹1“?j:?@YÀ”?Å«9@–•?¬–6@Ü–?:—:@,^—?ö­>@í1˜?M9@H—?k=@²˜?:îE@¤+™?dÖE@Ó÷™?aÉ>@ìœ?â†8@žH?jã:@Ø?´8=@Ö¦?L7@~0œ?ÿ63@_Qœ?g 3@uðš?Õé:@âw™?[;E@I1š?%¯L@2Þš?}PK@=¥›?W D@Ýœ?«‡A@éH? ¨A@Šsž?ÄHG@(¡?jÍF@¯á¢?GpA@›.£?ßÊ=@1¤?˜d=@úÈ£?úF<@Ö¨?HˆP@QAŽ?hèO@šÞŽ?™cL@$F?Ç)V@ýF“?…Z\@c`—?@ÎZ@ÇÅ”?45V@ê?R@Ž”‘?òÂE@¥”?æA?@xË”?»!<@8È•?(=@ºª–?·=@)²–?$L8@>¿—?g9@DÖ—?Ⱥ;@rb˜?_”B@Í[˜?+D@/™?tÈ9@Iœ?09@¾Mž?38@4 Ÿ?ô–2@“ûœ?7¬4@â³›?Õ7@üá›?k=@ ~š?„¬C@V›?ÈE@,›?/õ@@2—›?»=@?MÙ8@a:ž?].<@ôÛŸ?qYD@0%¢?L\C@x¸£?{¹>@8j¥?Ð*<@°@¥?å<<@h5¥?k½:@O ?ùoN@ûŽ?ŠÌN@ÑM?GT@{“?ZåZ@H•?\\@e˜?_=X@”?UoS@«‘?àJL@Dv’?Q+F@?Γ?¶IE@7|”?Õð@@§§•?À_:@Ø$–?GÌ6@ò«–?!6@n—?„:@€˜?my<@mS—?¡°C@寗?´ê:@X-™?ý>;@æœ?„þ5@ÉÊœ?6*5@Uœ?‡ë8@*Ÿœ?Œv<@¼›?óÐA@Ú›?¥C@θ›?°]?@9?¬©?@Fh?È›<@ÜÆ? ±:@œgŸ?ñÜ=@ƒF¡?Ö1@@‹"£?™L?@ÑÕ£?­Ö9@h¦?ªí<@<4¦?N,@@ä¦?:P>@?ËŽ?f÷J@Ò¾?P@sŽ‘?úuX@Ø©“?=—^@&–?Pób@â?—?Þ™]@ÎÚ“?ÏQ@dï‘?I@8<’?\~F@Vד?T_C@}•?p<@¹Ï•?ª6@Ív–?‰Õ5@…p–?ÄÑ9@ç_—?ÐØ8@×—?Ä;@¥Ì—?€Ð7@O"˜?wŠ:@Íš? t:@†\›?¢7@«å›?T¾8@ж?«Š?@ýˆ?“#@@0Óœ?…ÙD@©?‚@@Ò?^ëA@ÕSŸ?W€@@Nåž?œG?@êÑ ?…›<@±¢?™9@„Ï£?˜7@·Ÿ¤?;@?¦?ô4@@Jµ¦?“–B@qÁ¦?MhC@òÒ?Ñ’M@w?tcT@þ‘?{]Z@*ƒ”?ìŠa@‘–?‡èf@c–?—Ê_@Ñÿ“?Á]P@ŽÐ’?‘F@Qg“?Þ‡A@ú'•?ŠKB@ôŒ•?ÿæ:@Tj–?ñ+4@»ð”?ë;@y4–?}r7@ã–?»L5@(—?8X4@G‰—?NÝ9@f™?³=@G;›?«6=@„œ?½_>@ïüœ? “@@¹C?^x>@Å?ÅOC@`ž?›±A@)¦ž?™æA@ëÍ ?jE@ºçŸ?LÒD@ŸB¡?>?@z¢£?X :@ÞH¤?u7@ñz¥?›ø@@Àn¦?P¾B@›§?ÑD@h§?h2C@8Ã’?•ŠL@ÞN‘?æNR@>Õ’?L[@7Õ?1½c@("—?tÅd@SQ–?ÿ‹^@ïi”?QPN@Wˆ“?zÓI@¿“?kD@@º”?&HB@Óï•?Ü0<@-•?7ñ;@ú”?1þ;@#Q–?‰Ú8@ð–?µ5@p¼–?Û6@¨÷—?×5;@?í»>@_›?È@@ŒXœ?ú(B@­œ?æA@nÙ?m?@¿¶ž?È—>@Ÿ?üÇ@@"f¡?îG@Œ ¡?U¸H@΢?äøB@@Þ£?„•B@”Z¥? Ë=@¦?–B@´¦?'ÚB@ɧ?ŸgA@_ÿ§?ÖÝ?@ã1•?¸3G@솒?úÆS@¹r”?õE_@ôЖ?ð+e@Ú…—?Þ3_@zn–?ÏæZ@Ås“?E„M@%“?=¹D@…“?Í»D@J”?PLC@³I•?’ÅA@‚Å•?ÇñA@ʹ•?˜>@Ÿ—?^Œ9@{R˜?‰|9@˜?pç:@i•™?h˜?@óÚš? `@@Û›?õpA@°aœ?FfB@dSž?Ç~=@xó?Ä6@@mìž?E@õR¡?dE@Ð{¡?ÖQI@Ò³¢?^*C@¿¤?œxC@µ¥?Ü*B@kÙ¦?=¶A@³J§?iD?@êê§?Äi;@š–¨?u9@Ñ—?¶ŒB@冔?^¥P@Ë\•?Ù_^@—Ü–?Bza@£6–?²jY@j–•? R@Vº’?Æ#J@Þ&’?ÞUF@ñÆ’?uéE@þ@”?¹ D@•?ƒ"D@Ç4–?D[C@à¶–?è_A@·°˜?š-A@Ÿ&™?Ψ@@7 š?åí>@R_›?ó_@@mAœ?œ,=@rœ?+.B@õ?jQ?@”–?u?@؇ž?öàB@A ?éFB@-¢??hC@Z`¢?à­C@F”£?=ž>@{E¥?53?@"8§?Óþ=@îñ¦?† =@]¨?øð9@…j¨?£²7@Û­˜?6B@1ã”?QER@޲•?+E`@ëB–?]@ø•?EÎZ@¶ ”?dQ@ÈG“?+®G@©ù‘?©FG@É’?LAI@þ—“?®OH@””?+F@4ü•?àBH@*¢—?ø`F@®{™?›YD@üÚ?7@@½œ?ª¤:@ª?ò68@ò"?¹=@é;?DÞ@@Õ{œ?F˜B@>ÿ?¸ D@dŸ?Mù@@ ¦¡?wØ?@Ò¢?xòA@NÀ£?‡=@ 7¥?Çy:@õz¦?Ø.=@®y¦?Žb;@x€¨?ì¥9@•x¨?q7@„¦š?“B@wÚ•?õÝV@gè•?|_@Ø^•?˜O[@%ý“?¦ÐV@t”?d_J@ }“?×E@“?\ÉF@Œ%”?¸6M@Y7”?AQJ@Ý«•?œýK@Ï£–?©ÀH@à˜?üE@Rš?%.<@¼Ž›?Û7@6?ø/7@û9?Ù=?@÷¹œ?¥D@¼µœ?áI@¸r?,SF@á2Ÿ?OC@Žï ?ñÌ@@‘¢?¯¥C@<¤?‘g>@sä¥?ŸŒ8@Ï}¦?)Š;@ý §?™ ;@ã§?Éð;@®w©?}D5@ä“›?k:H@tˆ—?öÜ^@%ÿ•?_B_@x3”?ø*W@沓?û¸L@ŽÓ“?þH@Xr”?};D@’`”?ĘF@z•?VN@z–?aùL@<Ç–?ЯH@Ä$—? µC@ÿ€™?ô<@¸K›?Û];@Àœ?h·:@2&œ?2ÎC@ê(œ?kI@Žx?iQ@.™ž?/yN@讟?mJ@Ó±¡?x¼E@ž»£?¦³D@Ц?› ;@†³§?Ú<@X¨?¤b@@•¨?4A@¨š©?ÕB@8Í©?D&;@ó›?БL@-=—?4`@/•?Î&[@7“?QÚS@‚A“?QÇK@ûª”?•C@hI–?Ò½A@G—?¶&J@-´—?ÿiJ@áy—?ùE@™y—?ý*E@\™? uB@·Áš??@¸Ã›?Ù¸?@hlœ?XØD@Æ%ž?IWM@.yŸ?ÓDX@h¡?Ý7X@«¢?èQ@’ó£?ÙÂN@Xå¥?¯åH@8‚¨?2LB@Õùª?Œ6B@Ô–«?LG@ •«?SÿJ@œ¬?½ I@Ç«? y?@E\›?EôP@-—?]@/¡”?)T@EÒ’?ëùO@wC“?cOE@ëG–?r‰?@Ô(˜?‡_I@× ™?srJ@šØ™?ÕE@¡ˆš?ý„F@üš?CG@×’›?÷`E@Ú¾?£?F@4Ë?ø•J@–îŸ?Ñ(N@ ;¢?^@Ò¢?ˆa^@£j¤?ÛìS@¡Ì¥?“U@²a¨?CWH@µ›©?ëÊ@@9òª?СB@¶N¬?+äE@*­?ŠI@dº­?´'K@Œ®?|aB@ŠZš?^›W@=«–?k&Y@ü”? ÌS@Tc’?ŽM@×]“?X—F@?×–?øM@í°™?QÔL@‹œ?V C@…e?EeD@À¢ž?ÛÀB@–Ÿ?«F@B ?n\N@@x ?œšK@¢?6ÈP@(¤?mÐ]@9v¥?Iõa@¡Z¦?vø\@à¦?…àV@zg¨?–RR@nê©?'ìH@íW«?]EH@ÀF­?„2J@ê7¯?RèB@@Ðâ§?RãF@7 ¨?;ZU@ù¬¨?Ï]\@!˜©?ùÏ_@Å­ª?#b@ùy«?Ysd@ ñ¬?&c@¯?“œY@¯?±JQ@¹“¯?8K@†~—?¸S@“?©ôK@–’?|Ò=@g.”?š‘@@h¢˜?ºP@Jœ?þ‰P@ç?ì0N@·- ?„5K@^££?»E@E3§?ãþC@ºÁ©?ö¾<@¸8«?pÐ0@¯ë«?›¢,@3|ª?°ê?@Àq©?xP@Š=ª?ØøV@ @«?S¹\@Ôö«?¼*e@øÅ­?d§b@Ô¯?ƒ]@ìk¯?%W@#ç¯?!–R@}Y•?†sJ@96’?…?@ÕC’?ä•4@Š»–?PvC@¥ã›?'èR@¥;?„P@ÏÅž?þJ@ˆ«¡?svC@”¥¦?Ìz=@#óª?Õ7@‡L­?:Ñ4@J•¯?ºH.@x“®?(0@Xl­?§Ð;@ ¬?¾íH@.´¬?s/V@æí¬?)§\@¤¯­?2t^@Õ¯?OY@Fý¯?ëbX@ýr±?•£U@Eæ“?/¹C@Ê’?Zœ0@?SK2@˜E™?úH@aÈœ?raN@¿?áH@G¢Ÿ?ÂB@÷/£?ü™;@Àب?AÞ2@§1­?D‚3@¾½¯?Nw6@³±?[8@§u°?O3@ÿ‹¯?ö7:@¢ °?GqI@Ù¬¯?+ŸQ@"M¯? S@»'°?ÐñP@ÐT±?XT@ƒ³?Æ,U@yv“?ˆ?8@Úm“?S’*@ –?Q¶5@Í›?§A@ÿž?ÝÚC@w¾ž?^}<@b ?â-8@€M¤?¿v3@¨ ©?¦].@Ý®?€-@¬©±?HD5@ O±?Áù7@Ò/²?c*8@m³?2=@00³?ãö?@;y²?ÐáB@IJ?2ßB@åæ²?¾G@#è´?ŽnG@›f”?U.@5p”?«¬(@Ÿ(˜?€f1@Úœ?õ™;@ð5Ÿ?='@@ÕàŸ?Ÿ7@}Æ ?§ 2@¬y¤?kÖ2@ѽ©?j™-@ßì®?æÕ-@&9±?MG/@8³?Fð8@©ü´??@Ðŵ?‘.8@jf´?ˆ²7@›_´?D`7@Ã4µ?O?7@‰Ú¶?L‘6@ÏÄ”?y9(@·ª•?°L"@ÙTš?Ð,0@ °?ƒ2<@¬»Ÿ?}s<@µ ?ü¾4@í£?œP1@ɇ¥?mÆ3@üä¨?'µ.@/2­? ),@ü»±?r.@o’´? ‰6@já¶?Òê2@Z!·?ò1@÷?¼i6@T>¸?™j5@¡ô¸?Û4@Eÿ”?Ò.@–ð—?oÿ&@Ìåš?Ù—1@晞?^z=@ü[¡?3¸9@ès¡?ðŒ3@êk£?¾Û6@¹-¦?ðK5@ÆI©? q3@µ{­?ñF0@W2²?â{-@!Z¶?}$,@åθ?Êú*@ãº?“ /@b~»?B®.@“æº?L3@X–?Ú®"@ÑИ?É"*@±Yœ?-h6@k)¡?ë¯=@ã¡?̶:@vE¢?˲7@‚¤?W@:@!K§?7<;@'ª?¶í8@àL®?«E0@}é³?Wä)@•·?ÙÜ'@½ º?+ó)@t`»?NÖ*@»Dº?oÀ-@ó ˜?ÇB'@‰ š?wz*@o»ž?§Ó8@·.¢?‘ >@U£?áœ;@ÇL¤?&’:@õf¥?J.?@/…¨?ˆ3A@Úo¬?â86@ Я?¥Œ-@1|´?Å£)@2Q·?%&@Y¸?ÔÌ'@‘µ·?iÇ*@ݬ™?k³&@’·›?ˆK/@¦U ?h:@/¤?^=@í¤?‘r>@ö&¥?ÚAA@b §?°A@Ϫ?U<@Ë®?185@í7±?øà-@}K´?>h'@Ò µ?”2)@…¼´?ïM+@²³š?–[)@‹¥?QP2@ľ¢?pu:@šÚ¥?‡þ>@ v¦?;ÕA@žE§?êoC@ƹ©?ÿð>@ž­?‘o8@>¯?>U2@©ß±?À²,@¢Œ²?*-@#³?õ/@\lœ?èˆ,@oŒ ?Ä4@”å¤?«X:@Gʧ?jû<@ñ©?¼B@-Ï©?¯E@3¬?HY>@·ò®?/€4@]–±?Z§/@­±?›[.@_²?•2@îž?$*.@Áž¢?S84@Éç¦?…‘7@¾]©?ï>@/µª?î~F@ ¤¬?óSB@¨x®?Añ9@Bñ°?'?3@™ò±?Ä&1@.t±?¾P2@‘Ò ?¹=.@ØÓ¥?Lp1@¢˜¨?x 8@Ùܪ?Tà?@™Ñ¬?©ÙA@^¯?K³=@7U°?c|7@-²?{º2@³ž±?®õ1@“‚£?QE-@úý¦?ž!2@yª?ëð9@ó«?²=@s®?‘=@ö°?û¾9@ãø±?2@’²?)ò.@¦a¤?æ,@‰Ç§?ë4@;ª?›”7@5Û­?+\:@?/°?:@…ޱ?4@Mв?ê-@ñø¥?d/@në¨?ó3@w¬?o-8@ÔS¯?øt:@RZ±?®‡6@³”²?u/@Šß§?ÖK4@³ª?°9@®?6ë8@1³°?·ì8@,†²?ê4.@Œß©?È9@-“¬?R:@Ç@°?)7@qŒ±?ý/@}¬?À¬;@¸–¯?E^9@MN±?Tª1@zÁ¯?´ß5@&]±?3@1s±?Èž0@¼þ¾?¦@k ¿?Un@›~À?¿b@ŽÃ?Ìå@GÆ?o3@@É?>«@«Ì?SŠ @ùmÎ?Ò @KåÍ?fÝ@>Í?¦¤@vbË?(ã@×þÌ? G@½êÒ?®l@Ø?þó?ŸÒ?¹}ý?KÑ?V—ì?ë2É?$Ù? Œ¾?8ÏÌ?¶­»?uÂ?»Í¾?¹Ã?–Û»?1Î?c¡¸?ã?1H¸?Pàö?Xoµ?)—ù?ε?{.ç?ÝÌ·?¿hØ?M¦»?E²Ñ?.¿? +Ñ?…mÀ?à¼Ü?Û|Å?WÙà?sËË?“•ê?'æÇ?g?é?)„Â?Š¢ã?”žÃ?#Gç?{¦Å?9JÙ?ò Ä?íÓÛ?ôº?TÉë?ß{¶?? ö?{z·? ©ö?×ù·?ñÿ?Ïȸ?Lò@Ⱥ?G«@z¼¾?Ÿ‘@ÃÈÃ?Aà @m—Æ?†™@‚èÇ?@ºÈ?〠@¶«È?˜@ZRÈ?«q@òÍÄ?Ð@Ë…À?ˆ®@ ¼?¤Æ@½Ã·?já@† µ?¾@tѳ?I¨@â´±?ò‘ @°wž?„D@%ž?_…J@C·?;&M@ôž?FM@ž?áåD@Á?DA@FŸœ?äSD@èc?ÈÅD@ߟ?ÜsE@¡?D1G@öä¡?`ˆK@¢?V,C@wÕ£? 4@Eí¥?éh3@ïõ§?@Ã2@^J©?$š2@Öª?0@P$¬?ÜŒ0@b¯?ÿŽ,@Y ²?)z+@ Ï³?¹!+@Eݵ?Š3%@æËµ?Q"@ î³?v!@8³?—$@’È´?å)@ ùµ?„..@Ì…¸?Ã1@}t¹?Ô÷4@Û\¹?6@º?p3@ Ð·?:.@ì9µ?¹&@—2¶?ñP$@¨@·?‚• @²¸?7@hO¹?ôÑ@ ¸?S’@UŠ·?xq@¹J¹?Ñ‚@ô¸?äº@ˆF¶?f¶@@ж?‹@@¸?w‰ @²•¹?R€ @HŒ¹?ïÕ @ò¼?Ç@hvÁ?ï @×Ç?@áªÉ?€‚@î^É?ã‰@‚ÝÄ?Ñ@á±Ä?Ð@g Á?&y@éÍ¿?*I@+²ž?eÇE@"‚ž?ÞxJ@©î?ÑÓK@aÓ?­5F@©U?ɺ?@y?éFA@.çœ?¸´C@ñqž?¶G@íðŸ?ÞG@ ¡?ÄMI@¼¡?~mJ@Ï#£?¬˜@@€¤?Ô·5@On¦?qç6@çר?2â4@ZY©?¥ /@)fª?kñ0@¶x«?Γ.@à ¯?+–-@Øa°? Ë,@o*²?º¯*@€¶³?n^$@E™²?J®"@ 4²? z%@….´? m(@ø3¶?À†.@¾·?AÎ3@H¹?´Ò7@$½¸?›¼7@Þ'¹?EÈ1@âP¸?>.@Ÿ³µ?ó'@‚&µ?& $@ø1¶?ш#@¯¯¶?˜E@Iâ·?ží@%þ·?f@‰¹¸?Á!@5¹?é±@\ع?\j@0¸?„È@µ¶?ðc @“ĸ?(¢ @ D¸?ÆO @8²·?þÁ@Æ-º?%e@sO¾?è @ÊWÂ?Íá @È?„G@äÏÊ?îG@ØgÈ?ë†@&þÆ?o„@c@Ä?D·@ŠÁ?“ @.ž?~5E@.yž?®fE@ÎÉ?‘F@? ßA@Ò ?ë¾?@Ùœ?8C@Åž?wSC@Gðž?ØE@¾™ ?žfE@°Ó ?ƒzI@â?ƃL@]£?µ·D@g¥?‘D@@¸ý§?ƒ;@ ï©?á¸3@#ºª?êc1@}Ȫ?¾S-@”f¬?£*@°¯?¸,@Çt°? -,@—z±?ãj(@d€±?Ø‚#@Wœ±?Õò$@…~²?Œ9*@uµ?k=,@ØÛ¶?„æ/@ÅO·?Sh3@Þ>¸?B4@¢°¸?ï/@O!º?8á+@·¸?8œ(@öŸµ?#¨"@*W¶?µ¿@•)·?âf@m:¸?bý@£¬¸?Œx@›*º?û@*»?r@ˆ]»?ïe@Yƒº? ’ @c º?xª @Ì9¹??# @Œ(¹?¶C@©·?@š±¶?DÔ@iº?^n@•7¿?ò @ÕÎÃ?Bˆ @/¨È?ö?@€†È?¸@K¬È?«ð@œäÆ?¸@Ä?B@u²œ?¥×C@fþ?þ¶B@Ö‡?ÇØA@wè?KÀB@«â?K´C@Bè?ªÉC@Ünž?®}C@ÉF ?ôkB@òJ ?ºC@‘ ?¸?H@&ó¡?DžG@Àì£?ÒbD@½?¦?û<@E¨?=O3@ý©?‹Ú1@P5ª?Û*2@¾«?Èg-@ö£­?(@z®?Hù)@¹Ã¯?<Ü,@åý¯?^ )@`'°?ô'@§ô±?Ð)@<²?‡-@cŒµ?­,0@"¶?4@S¨·?Æ-4@óó¸?$0@Qcº?4,+@`G»?ñh'@Q¸?ÒD"@êg¶?Ù¿@Áw¶?vÃ@R-¹?W@伺?;é@ »?;²@S¼?à @ˆš»?k @ Ç»?R @·C»?Å) @Ž»?ðþ@m±º?8L@$¹?Îf@ö²¸?@Lù·?u@ò¢¼?ÄB@ZDÂ?…ˆ @KYÄ?,ô@ŠAÅ?(˜ @ÃâÇ?–:@ĨÈ?—U@Û_Ç?;Ã@¦œ?0C@Œ–?˜å?@‘ô?v,?@š†Ÿ?»D@/¥Ÿ?µ H@:yŸ?/øE@…“ ?=ƒA@Ò]¡?IC@¸O¡?$oA@åÚ ?˜A@€A¢?!úA@‚\¤?¿=@q´¥?.5@j ¨? F1@J™©?µ 3@ª?‰ì2@#‰«?i+@올?«Œ*@Å­?Û,*@Ô®?T4/@"•®?-@P'°?ˆ+@™†°?b,@Wè²?êÓ,@þ´?¿3@˜¶?Ä8@s×·?2=5@Àp¹?¡(@#Ò»?go%@΄º?K,#@]ã¸?ìû@öZ·?Ô5@ ý¹?¤Å@ˆC¼?ì¿@%½?@Ľ?ŽG@g¾? Œ @{¼?w @_a»?À³@.½?àÅ@Å^¼?Dçû?Üåº?.æü?Aò¼?¦ @_¼?L5@½»?ë@ª¿?’@É®À?µ•@kÅ?öÍ @-ÿÇ?6%@ŒqÌ??2@òÀË?)4@l9?°WG@ë¯?XC@4¾Ÿ?o?E@oè ?ä¸K@-Z¡?F­H@H¢?:7F@ò¸¢?_þC@EŠ¢?áA@ç«¢?l?@ﮢ?‚;@·x£?yD;@1¥?ó´6@‘“¦?NŽ1@‡–¨?à2@Ω?¿À2@ª?Ú£/@áX«?ÄÚ0@ËU¬?S0@lk­?¬­.@À«­?z/@|“­?©ô,@¢é®?Þ)@´`±?Ún+@_)´?¡$0@5šµ?i`1@»^·?ôˆ1@" ¹?iê)@ßG»?[µ#@ ­¼?A$@-:»? 3@--¹?)m@ÏÖº?4t@>ν?á+@Þɾ?ì4@ng¾?›á@S(Â?É‹ @2'À?Ýì@ï½?LD@Ä]¾?Þüû?Û¿?Ð ý?|à¿?²÷?ÓŽÀ?fWû?'ËÂ?û‡@¨1½?sá@j¿?¤÷ @H!½?¦˜ @SÞÂ?Nø@X Ç?´@¨Í?ýP@sVÎ?Ø @TÖ?l‰J@ù²Ÿ?«vF@ø¡?MkM@TÖ¡?‚ÚM@Ü΢?³I@è~£?CõG@-ߢ?XþA@ýN¢?½Ž@@×Ü¢?>@åì£?ëÔ;@Úô¤?78@¬[¥?0¾4@i¹§?Õu5@™è¨?<£4@þ:ª?Òí2@*«?«B3@ «?"1@´¬? Ò+@øa¬?ÞË-@e¬?Æ`*@J®?Ìð(@¤×°?8ß(@P@³?*@j.µ?Œe-@¸ß¶? Ê.@ˆ¸?æ+@̧¹?Ã(@ZG¼?=%@j/¼?tü@õº?>…@ÔÞ¿?«ð@Æ­Á?c @,´Á?p@nÂ?O¥@ŒÄ?~ @yëÇ?a¸@ÕYÅ?ª9@Š„Á?Ⱥü?Ú¹Á?sD@jÆ?C¯û?m‹É?‰Sÿ?¨Ê?!@jMÇ?¶–@ăÁ?³â@öp¿?LÞ @¡â¿?ž;@[ÒÄ?æ¹ @ð˜Ë?¦I @dÐÏ?ží @°vŸ?ÐM@«¡?€%M@ Ρ?¦£L@®~¢?E6J@Z„¢?,HM@ ס?ˉC@á?üp>@Ym¢?,k=@ÖY£?3Â:@sí¤?õ38@&¦?H$6@Ÿ§?Â7@J¨?+Ï5@u¨?Ûî1@–zª?ör2@t|ª?‘†2@üe«?§F/@ÿ¬?ds.@y­?.,@?±(@öò°?s¿)@Ô0³?On'@×6µ?™(@ŠE·?,ö+@ƒ¹?¶E+@pù¹?‹8-@®³º?­.'@c‰º?æ+@×¢º?»@¿?¹G@2¼Ã?=@ŽˆÅ?¥?@ÖÞÈ?S@I…É?ŠÑ @ªTË?iç@ù¦Ï?;çÿ?×ÛÍ?.áû?bÊ?+@-ìË?Z[@ð/Ð? ö?!?Ð?£÷?&)Ò?Á0ü?ç¯Ì? ÿ?¶Ã?¾O@œú¾?kn @ƒÆÂ? î@sMÉ?Ʋ @Ï?jD@À÷ ?ÛP@™>¡?õL@Ô›¡?ëK@Ê„¡?ò¥K@fæ ?t'H@ ò ?`'@@ãñ¡?­Z<@È¢?äö;@}¤?fp9@`¥?Tb4@ž§?Y96@%ž§?†q4@5¨?†è1@£eª?'T.@Zî©?Ï,0@0yª?ž,@,¬?_.@;ò­?9ä/@Z¹®?î-@ÿ°?C-@³?5±)@ç·?˜)@>l¸?J+@Jyº?s_&@Ͻº?Ù¶,@©»?G(@³u¹?–Ø!@_º?^€@2œ¿?ùö@I¤Ã?^O@ Ç?ƒ!@m¼É?+Ü @8|Ì?8 @b¹Î?ƒú@›íÐ?àÐÿ?¿Ð?Ñ€ÿ?ªÐ?sÜ@O\Ð?P@}çÓ?4û?ŠÔ?’ïö?)Ó?иó?³ÝÓ?Ô@5ÑÌ?¸<û?cëÄ?‘} @-ÀÃ?³Î@º‡Å?Ρ @pÌ?ãå@zc¡?'nR@|w¡? ùM@¤¡?ë•H@Óä ?^»D@Ô&¡?Ù“B@aÊ¡?†¸>@{ü¢?ùÃ<@‘'¤?žˆ8@zƒ¥?¤86@ʦ?•n5@ ý§?‘¨5@$®§?=b0@Ô¨?È=,@ ø©?Gÿ.@¦@«?y¶)@IÙª?Lg+@g£¬?gÝ-@3-¯?Çb.@Ű?ܧ.@P´?òq0@j ·? C/@r¹?>W-@ûSº?+»*@!»?‘w+@¥ö¹? ,@.8¹?»Ü%@E¹?±¡ @¨`¾?4ð@wÃ?ìU@ЀÈ?Êð@ Ë?çp@züÌ?ë @1kÎ?&Ì @ FÏ?.+@EOÐ?×:@µÑ?E±@eÒ?¯q@CŽÕ?FÝ@Å%Õ?N%@X®Ò?xþ?9Ñ?éX@äŒÒ?»ÿ?ØÓÌ?>ï@êøÇ?î @oYÇ?Q@V É?ÈR @VÔ¡?ÂöQ@U¡?ÒÍL@#q ?\àD@ O¡?}?C@ò¢?[g@@N£?GH<@ßf¤? ³9@z¶¥?€_5@éH¦?Iî5@o¨?8@À§?¥Ø/@te¨?X0/@ÒG©?gí/@{«?±ó,@Ýú«?Â,@Í+¬?¥Í(@ï´®?žd,@.±?Ò.@@´?¥h3@¤-¸?ÖÅ0@“º?¢)+@5¼?…Õ)@ÜG»?¸z'@™¹º?])%@ú?ÂÚ#@¶Âº?c @×P¿?ží@Ç*Â?¡ª@ƒ®Ç?:ï@ Î?þp@Š!Î? @•pË?áÆ @3vË?¸ @ðsÍ?è@D¬Í?>a@ Ï?ù@®ÕÏ?úŠ@ÉÒ?\„@øSÐ?¾@=¦Ì?–)@ Ð?FÛ@¸ÀÑ?‡Oÿ?[dÍ?ï2@µzÌ?V @=ÑÊ?øJ @B*¡?ü¹M@ ¡?ÔF@Wa¡?ò¬@@/O¢?Ö A@xº£?Ú<@Jê¤?/8@Ë¥?Ò5@u §?®4@-¨?Ú54@FL¨?›2@zn¨?s-@­a¨?, 0@ʪ?Ë‹/@æ«?a-@ô¬¬?¹/+@£®?ÛÒ+@ðè°?h8.@~\³?—c.@Òi·?¹à2@žº?²C+@*¾¼?·’*@VL¼?¾1$@[½?8 @s,¼?P"@AF½?ñ@#-¿?8ä@F0Â?jâ@íqÅ?yð@1Ì?›1@×Ð?• @°‡Ì?¨?ij-@M©?,2@[«?H˜1@Q?­?€Í/@Á±­?£%-@ô¯?nÕ-@¬²?â(.@ú¶?åÝ0@wM¸?94,@»y¼?z!,@1Ÿ¼?¨ý!@'è½?® @‡"¾?¸@Ë¿? Ô@ÜrÁ?ü@úaÃ?ä @™RÆ?g@rÈ?U @p)Î?µÞ@ù Ð?]¼@v´Ì?ù@éÊ?:]@2ÿË?N @ó?ó,£?Ó±@@¤”¤?h;@ôX¤?8@Kœ¤?I5@¢£¦?XA8@Ø€¨?èï:@,¯¨?¨T3@=¨?8ù*@»¨?KÞ(@¢ª¨?Ü÷*@˜&«?«©0@gr¬?Q¸/@§ø¬?13@€z®?g3@Ýò°?©À.@c³?<3@´?ÄÄ3@®¾µ?§T0@É%º?–d,@ð½?N'@OY¾?H&@û0À?D*"@̤Á?z@eÁ?µI@è2Á?*@*ÿÁ?IT@̆Æ?eì@ÌCÌ?ó‰ù?؆Ð?˜´ó?4Õ?m´ó?©eÒ?2ž@³ñÍ?!%@v¶É?XQ@G2Ä?‘2 @^…Ã?u @lhÍ?¿Ð @²RÕ?_ô@¶5Ù?»Cû?¬¬Ö?u¿ø?ÜØ?4“ò?ôÒ?7ì?9”¤?ÑÔ>@¢¦¤?t4@ˆz¥?s­4@þP¦?ÎÂ;@–ƒ¨?#?@þ+©?Ý7@Ó%¨?,/@8d¨?â½(@ަ§?‘ú(@²—ª?h,.@¯0«?0.@f¨¬?¿Î-@ù!®?§T3@)¥°?ï`2@Ô³?^3@›´?Áê5@h´?çw5@ ·?O"-@p{»?^ö%@;ȼ?½P$@ãcÀ?øp!@-Á?9@TJ½? ï@R¾?øÛ@¤ê¾?±ù@6SÂ?ŽA@ù*Ç?Qÿ?gÎ?1ð?^âÔ?äAì?Y»Ö?wPî?>jÔ?P@˳Î?w @ÌÇ?‡\@ïgÃ? ±@óÉ?\@‘»Ñ?.« @¿Ô?þ@Q±Ô?NCø?xÔÔ?‡ç?®ìÐ?³ä?Å®¤?";@bá¥?iµ3@§?1ð<@_|§?âþC@|¤¨?ÀP<@ߨ?N1@öA¨?Æ‘-@’‡§?—¶*@Õ‚©?ž*@·«?Hb.@ª~«?ƒå*@òë­?’Â/@&±? …5@Ö¥²?a?4@~˳?+S6@æ‘´?F¢6@i“µ?DÍ/@v'º?¯å'@¼?u#@É¿?Ê¿@|À?aŠ@Ôu½?\¾@sÙ¼?Öÿ@²­¼?†@ Z¾?<Ã@ðŽÁ?óã@6óÈ?ú€ð?ðÍ?8Éâ?‹²Ö?rà?¹'×?÷iò? šÔ?bœþ?màË?H @ôâÆ?y"@ÿÈ?•@ϾÎ?-?@‡ÍÎ?ÊM@´¢Î?øÁõ?ûíÍ?–­Ö?w É?GNÕ?T¦¥?:@N§?y€;@üõ§?’m@@2“§?à@@Ò¨?m6@˨?»À-@Ië§?¨C.@è¨?ö<+@>#ª?÷l,@Z§«?˜;-@R7®?Z¡-@Nü¯?•‡2@Y²?û13@õ´?ÅÏ2@M²µ?¨z6@µ? 0@û¸?fö#@6º?&B$@K ½?„q@H¿?¥æ@%õ½?l2@Êм?‡·@;;¼?xþ@—¾?°2@•~¾? ¼@EÝÂ?;…õ?µ<È?ìà?$Ï?“Ü?/ Ô?òÞ?×?5&í?¯ Ñ?ýw@MÍ?q¾@UZÉ?Ä­@•ûÊ?×ô@”UÉ?Ðó@¦éÄ?úð?¿ªÂ?.p×?kÁ?¦vÊ?êS¦?ÙJ=@¬m§?@?@h¨?ÃS?@îk§?DÙ7@uϧ?)ÿ1@ôó¨?y@0@tb¨?çS/@z˜©?œÛ+@Õä«?W¸-@/®?Ǿ+@Çå¯?nÙ.@«Ã±?»/@ra´?È´0@6§¶?±83@`P·?è0@=¶?PB!@°æ¸?‘§!@±c»?Ÿe@47½?‰ö@ ¡¾?@Ð@¿Ñ¼?V9@ï~¼?h³@é]½? ¨@&¿?cz @V¾?ñÚù?úÀ?xÊß?ÊŠÇ?+,Ú?ˆ°Ð?²Oà?šX×?ÌêÛ?G-Õ?«¥ñ?¬Ð?…ß@ŸÌ?ÁM@Ÿ\É?·ñ@@=Â?|@ ¾?²î?´*¼?n¢ß?_v¼?¥ÑÇ?}‚¦?ìÐ?@…ƒ§?}»=@¾×§?ÃM:@Wä§?C£4@xù¨?ù2@`©?tÇ1@¸š©?b/@¬ª?Y°.@ð¬?ãÃ*@Hå¯?+ë-@`E²?QÎ-@èÍ´?Õ·/@eζ?A/@©Ž·? ü,@Úw¶?–ð&@±b·?<9!@(׺?sæ @›Æ»?µU@s¿?D|@™¾?@Ö½?øæ@°G½?8z @¥æ½?C @{X½?½'ü?ËÖ½?Óªé?…£À?SÃá?mcÇ?"ß?>:Ñ?Ô»×?SåÕ?°ÄÜ?hýÔ?2¯ó?MYÎ?À@^ÞÇ?Y˜@Ì\½?¹}ú?¡2¹?°"ó?Õ¹?·Œã?Ô=º?Ò?½h§?{«=@Öê¦?øŠ9@sµ¦?‘ 7@ØÕ§?*ç3@Z…¨?²—4@K˨?c0@V/ª?¸y-@«‘¬?-@-P¯?ä*@²?É-@Äæ´?[u0@§¸¶?®*0@o|·?&_+@Á·?N *@)W¸?†v"@oš¹?žß!@•aº?€ˆ@øl½?´N@T=À?ÐÛ@ 'À?IX@ø¿?o @ø·½?…@z½?‡Ä@@¾?´ò?8Ï»?9é?l<½?œá?¨rÊ?ëVØ?é«Ð?ëkÓ?äìÔ?9ƒÛ?ñPÒ?¿/õ?YõÉ?ë@䔾?x\ô?ª¾·?ýÃê?ƒ÷µ?ÆPé?±Ò¶?žÞ?ꊧ?ݶ8@sq§?Ëk3@§?ÔB5@¥§?³ü5@q:¨?DÛ/@°\©?L¶,@p«?T#-@Üw®?]_)@¼s²?®½*@«ô³?žm4@¨,¶?‰R/@ ¸?:À-@´_¸?Q0(@,¸?Ù(@…¬¸?õf"@l¹?œö@˜Áº?Ñb@ÑG¿?á·@DƒÁ?@:Í¿?ü @–Œ¾?Õ@‹˜½?Ió@Fº½?Á&ø?‡º?¯]è?@»?å?;%Â?þÎÜ?Å{Ê?º½Ñ?âõÒ?O%È?Ð?ÚÛ?º¹Î?´ó?îóÆ?’>ø?š»?Q¬ã?ú°´?Æ´ã?¹¶?‰î?x̧?¼R/@êE§?I0@E§?ý¾4@ã§?&Z1@ש? Ò.@êI«?Û*@}¯?)@tf²?KÏ+@œ¤²?oŸ3@xê´?H5@¶»¶?û-@ðí·?|Š)@¸?aŠ)@l´·?R&@µ¼¸?ýö@eô¸?@û½½?¦÷@ñ£¿?Y@W¶¿?f&@X¯¿?¸@Åã¼?Ö@Ý~»?=¤þ? ü·?Þ1ë?þë¸?¯µâ?cº?ÁˆÞ?ñ®Â?ÙZÔ??Ò?TeÌ?ÓÇÒ?Ó?j×Ð?ûõÛ?pÌ?Fí?Ä«Ä?ÁZë?и?/ˆá?OÙ´?ï?§?Þ+@…r§?Õê,@7W§?“/@:Ш?Ë€-@‘Ûª?d.@a·­?lÏ*@#²?©0@`U³?N¿1@t³?¸@x¿?Ĺ@¾¯¿?S: @fʽ?Î@;›º?½óÿ?A¹?¿Íó?޳¸?ˆ²æ?»õ¸?tCÛ?gœ½?ãèÑ?@çÈ?­ÜÔ?}©Ð?q Ù?öÒ?·£Ø?ŒˆÐ?fÛ?.ôÇ?ÏOæ?…º?QdÚ?’ì´?òfß?Aƒ§?)@ݧ§? Ý&@@˨?H -@—ª?»¨-@Œ}®?ì.@U±?‡Ü1@°U²?(3@^³?D=@¬ µ?8¾;@A¿¶?QP4@ii·?Yâ/@Þ¹?E_,@e5¹?='@*ß¹?¥œ@üÛ»?w@!¾?Ñ$@¦ê½?k@d¾?ÏÊ@à–¼?M @8¹?W@›¸?Û¸@ô‹·?·ò?Ý®¶?î¹â?Bz¸?§"Ö?p*¾?Ï‘Ô?viÌ?Ÿ^Ñ?¸Ñ?W¤Õ?UéÎ?—­Õ?àÉ?ȲÖ?†^Â?^Ú?ô¥¸?ßuÒ?#‰§?Ë…(@¹É¨?É++@Ç «?60@èz­?°–4@C¯?Ø^4@ Ô±?ÄÌ6@Ëë±?Ç?@T:´?—$B@¼–¶?@;9@ζ?5@+ë¸?Û&*@ÒQ¹?H(@fº?_P!@¿¼?CË@ú¿?‚¶@•û¿?4©@-a¾?Ž@ý±¼?“=@~p¹? @Vl¸?aT@ߨ¸? Ä@¡·?Пô?’´?k é?Žœ¸?G±Ù?!Á?çÕ?lÎË?ˆQÏ?Õ²Ï?DÔË?ú]Í?±×?šMÅ?<ªÛ?¿?!ð×?šž¨?é¦*@b«?û.@Ïá­?Q37@XJ¯?Í4@¯?­·7@¤í°?â{E@¨‘²?¶†I@ ¶?i?@=æµ?E7@„›¸?ÓÈ*@óð¹?¦((@Cܹ?Qx#@»?å@•3½?º0@H*À?8ä@Á?š¨@Äw½?¡#@x»?= @v º?[ @ع?¨Ù@U ·?¬¦@Àµ?qþ?ð\³?ë™ñ?„ºº?ý]ã?0'Ä?¶Ö?…¡Í?Ú×?$ÁÑ?+ÓØ?æ'Ê?©û×?wîÅ?ÓÉÓ?f`«?£Ú-@¯š®?`H3@»¾¯??o2@¯?|y5@ž,°?Š£C@æ²?—ÌK@"µ?ÁëK@™·?fž<@û·?”b/@…º?Ô¸+@ȹ¹?©—(@ Ôº?©!@À»?Â@F¼¾? ×@׬Â?nv@”#¿?}°@~м?ƒÙ@­¬»?w @‰%º?°¼@þv¹?^@`œ·?¥”ü?cÕµ?JÙõ?Äö´?óõ?‡Ž½?ÙÏè?‰–Í?Þ?«Ñ?¡Mß?ÕgÍ?]'Ò?F$È?¾äÚ?ng®?Œ5@ A¯?ÙŸ1@Àû®?tF5@V²¯?õ„@@âZ²?„ÔQ@4µ?rüN@ºŠ¸?^qE@Gǹ?“´3@Ù‹º?ÄŸ/@/º?œA*@ýõ¹?(@儺?!@W1½?c~@ŽgÀ?¨!@0PÂ?N@r+À?_\@hÞ¼?ÿž@u4»?3¯@(Q»?é4@Û?¹?Ìúú?ÿ·?ØŽé?Cʵ?¬pë?߀¸?®Cì?æèÂ?¤9ê?CÑ?ÝGè?›JÐ?ƒÞÕ?ÙþÈ?SÚ?µA¯?Öò6@̰?ø¬5@ì²°? @@óß±?ã[L@Ç$µ?þÈ<@ݳº?ª,3@PF¼?9·-@0]»?i„'@ÝÚ¹?í$@Üļ??,"@7{¿?ø@2À?8—@ÍÀ?Bl@¿¯¾?*r@ôCÀ?,ð @öâ¾?Ÿ@ðS½?4Fù?·.»?k:í?dz·?<˜æ?1¸?Aùè?#î¾?JÅð?Î?©é?áâÑ?V]ê?aêÍ?Íå?{,±?{Ç8@ÆŒ±?éA@S‡²?ÐJ@Ö´?ùM@¦Ÿ¶?Ä€N@Ê{¹?Š‘A@Û ¼?ªã4@F¼?ù]2@ž…¼?¿ü*@l¬º?öÞ"@¬¼?‘ª @¨¾?Ò)!@H>¾?w”@®%¿? @ø`À?c™@µLÀ?Ä0@¤yÂ?ªŠ @uNÀ?/3@œÀ?[…ø?Óº?<"ê?äf¸?¡…à?ªí½?b|é?±Ê??_ë?’Ï?k(ê?¬DË?Oå?È8²?EL?@²?µ)K@ E´?þŠL@D ¶?téN@@¹?¹ÉH@jv»?¹õ;@ìà¼?êÀ0@ä[¼?Za2@Ís¼?f(@UÊ»?—›@sÙ½?^ü@]½?«I @)½?^Ÿ@w•¼?*¡@ቾ?[ï@¿5Á?‰ÿ@/4Â?]0 @[gÃ?Á@A‚¿?kù?]»?‰ªè?‚À?s¼ã?b$Ã?¬^å?zË?üÅã?]NÈ?‘?í?ø´±?¡çF@Ù"³?µ~P@¤K´?XØO@ÅN¸?Ä]N@ë¹?HA@/s½?5@Ó`½?:Š1@½½»?¬~.@,f¼?ð"@yä¼?!@Xs¼?å"@¼»?pŸ@´>¼?ýß@¿Â»?¶C@'g¿?½ @ó¿?Ìt @ ÕÀ?JT @¶Á?y@*sÀ?Ì:ó?„óÁ?‡¼æ?!@Ä?„öÝ?%3Æ?“þé?2Æ?jäí?²?¿3P@s³?ºƒQ@ì¶?<üK@ª/¹?#{D@…¼?ùÓ;@ «¼?”n4@„Ò»?L8.@b¼?œ(@ºØ¼?>µ@^L¼?T–"@$ »?“Ü@»?>@*M¼?È@‰6½?Ò!@"t¾?O§@ý}À?j- @4¿?µ@V†Á?ÿ‰@‚Ä?–Ûò?Ã?ä’ì?ÃèÂ?÷Kò?wÇ?˜Gî?Ôä²?·²R@Ç´?ºVM@nw·?ýËD@%ñº?HÞ;@iB¼?’U8@g"¼?30@;/¼?])(@oY¼?áâ"@Kp»?ÿ1#@3³º?`|@ÿ¦º?:™@¢»?+A@W4¼?d@¬½?»*@Ü Á?Þà @εÁ?Éî @IâÃ?"Í@ðÅ?B@~6Ã?½ú?wÝÁ?s±÷?gøÃ?m7û?q©´?03M@Ŷ?A”D@Äõ¹?@]?@m|»?ø7@iʺ?Ûj3@|Œ»?Yç*@ÐŒ»?¦ÿ$@Y‡º?Å"@Ï º?ä[ @\Lº?»3@¦²¼?Õq@^á¼?÷³@ǽ? â@m8¿?³9@)òÂ?œ@( Ä?ñ@&wÄ?Z@,{Ã?À@¼À?ø/ñ?;P¿?¸q@"‘¶?—“B@] ¹?§;@öܺ?t=@¯ëº?hÀ3@®3º?„Y/@èãº?B{*@`к?S•&@F7¹?¥‘!@”Zº?V @**¼?ñŽ@öH¿?ä @V×¼?®á@ż?W@„À?Û @mÂ?b @*­Æ?ϲ@&þÅ?h*@÷¾?æ¸þ?.<º?ðø?<#¹?Pî:@–?º?øÈ8@dǹ?'€2@ÞŹ?‚*/@º?í*@Žå¹?±E+@ý¹?Ár%@¾7¹?m!@ZLº?3 @‰=½?«Â@6H½?û@‰J½?>Í@ùƒ¾?D^@2ƒÃ?ê@'sÅ?â@>Å?Ö6@¥YÂ?äaþ?¤•¹?._õ?y—º?kû3@œ1¹?©Ÿ2@šr¸?p-@Ê º?&m+@þ‡¹?‰)@í·?(™'@ò¸?<¤"@j`¹?¡¦"@ò ¼?þà @cŒ¼?¹Ö@ŽL¼?æ@] ¿?$@ çÁ?V@>yÅ?2 @„#Ä?·&@AÁ?ÆÛû?¨ý¹?dý?M­¹?<1@ÏÒ·?í­/@ʸ?7)@ý¸?¬j*@Ó,·?s˜+@5þµ?u'@*O·?Y!@¸§º?Î@눼?I¤@…'¼?5á@¡œ½?‹ @,À?+Ÿ@;ƒÄ?„^@¸ªÃ?*Ý@êÀ?Î'@dº?Ñú?çÄ·?6^-@á\·?ä1,@Nu¸?F`*@/·?½û)@sµ?*@ܵ?+R$@b·?i3@"º?l×@e»?ë»@”ö¼?-C@ud¿?ã­@ÂÀ?8@þbÁ?§/@Ê¿?Dg @A*»?ñ&ÿ?&·?H?*@ãÖµ?kë.@,Œ¶?eä,@:×´?x²(@…¯³?Ñú%@•žµ?e"@ôQ¸?…£@Ÿš¹?C @ôB»?_Ö@ûŠ¿?5¿@œÐÀ?ªM@ øÀ?þÛ@¹¿?p¡@ ç¼?žH@€¶?e‰+@É´?A‰1@u¦´?Ïw*@¿ß³?Bî(@Wô´?ÐÉ$@‚¢¶?/#@i±¹?>ò@8¼?@ƒ@åó½?¿9@Þ¡Á?¤’@WÌ¿?ñ” @D¼Á?4[@˜ÔÀ?ËD @é´?9r-@¥³?rÊ/@F³?L;)@a´?@Ÿ'@†ñµ?ku$@°ß¸?&{ @ýM»?‡È@k¶¾?+Å@öV¿?”!@¾ü¿?+%"@HÁ?ì@ÍÉÁ?„@þ-³? à-@v²?«ÿ*@¡f³?àö(@J{µ?/#@ ø·?p%@$'»?Þ0@wè½?®I @óÙ¾?‹·%@:½¿?VÜ!@ŽHÀ?¤"@ÌàÂ?þÐ@o«²?…|.@>ޱ?.+)@/Í´?9.'@Vò¶?ÃT"@),º?Zö!@ýš¾?„“@¾?2¼#@Óq¿?ì$@ãë¿?dÞ"@t*Ã?O÷@už²?,@—в?®×%@c¶?mq!@Õ?búô?WÓ?ñOó?ñÉ?\@ð\¿?@@Ög½?­ @Mc¿?:) @Nó¿?øí @ ¿?Ñ, @]ð¾?µò@ÀëÀ?>ª@‰€Á?®È@×cÀ?š@À?Gê@Bf¾?†T@:·?t@$¢·? L@ÝT¸?Gm@Ûº?Ü\@Áƺ?®á@œ°¼?sw@×'¾?Aœ@\«À?Á8@Ó8Å?Íl@‹Æ?R,@«íÄ?b¯ÿ?®ôÀ?5y@‡G½?Ø1 @õMº?†ý?‘·?d“â?8×¾?wðÒ?Ç?ý@Â?R§Ê?ÁâÊ?üœÇ?Ä?››À?qÃ?ujÂ?rÚ?j2Ê?è?ùPÇ?!ØÜ?Or¿?Ó?Ó—¿?9üÕ?î¾?æÅÞ?AˆÂ?J…è?º‚¿?Fö?îõ¿?®cþ?»{½?xl@ÑB½?N ù?¾Ø¼?ž¯è?Âò¼?%lØ?|©»?xÌ?3ȶ?lÍ?{žµ?˜%Ì?[/¹?§”Ñ?—µÂ?”aä?—^Ï? ô?GÊÔ?zèò?/ZÓ?+ î?¾tÈ?6~ÿ?31¼?9!@Á£·?D¨@‡Î¶?Äj@Ø‹·?s@à¸?]‚ @d‹¹?´Þ@b¾?I–@zÝÁ?·¹@ÇÙÁ? @žÇÁ?oÏ@¯9¾?©€@C¹?Z–@y@º?¢@?¸‘@YÒ¹?š)@0»?δ@ 5¼?Ï@u]½?T @ž¿Á?¥Ñ@|°Â?Š @«ÕÁ?¯»@“ǽ?% @.¹?âË @F·?ß @’¸?‹>ó?øs»?1_Ü? É?~Ô?pâË?ÚÔ? GÊ?^ È?EÂ?CâÆ?z¹Ä?<ùÛ?üÿÈ?Ãä?ôÃ?µ6â?Þöº?N@Ï?k¸?¸tÑ?òÙ»?ÎDà?Üõ¼?ëàê?ÒŒ¿?…îñ?âÚ¾?%þ? ÝÀ?íóý?ë¿?Hù?¹×¾?Óÿí??>º?TBâ?N†·?Â\Ü?‰~¶?·“ß?Ï´?Áà?< µ?Ç_á?µÁ?.Çé?ÓHÍ?¿xö?Í)Ô?Sï?&½Ñ?f ð?•¼Ç?+Aû?YŒ¾?÷î@{¶?9Ñ @‚ƒ±?„±@*«²?;¬@ µ? @-}¶?Ä•@…º?E @݆À?_@ȃÂ?+@êhÂ?O¤@ À?¢)@%¼?E@¾b¼?Ÿc@™P»?ÙÛ@•¼?w@Ò=¼?,’@Mz»?Ç@£¼?‘ƒ@+$Á?2a@%tÀ?¨D@c/¼?¦Œ@²¸?sË@61µ?(r@*G·?âeð?ð Á?ìqÙ?·AÉ?sÐÍ?H%Í?Ãjß?MÈ?ûeÕ?óÂ?$Î?ªÅ?¿Œà?·àÈ?G½ì?bšÄ?=[ç?׺?H7Õ?õ?]ÕÎ?Eg¸?ÙÌà?ädº?ëaì?ø¼?,ô?óv¾?»øø?^¾?¹Îø?„J¾?Èø?ªL¼?¸‰ó?8à¹?6‘î?€«¶?+<î?óµ?¶^è?§ä¸?ÅÁÜ?ʘ»?´´Ï?©~¾?I'×?6È?Ã4ð?äÐ?ÑÁð?Ö;Í?®Ìö?ÎYÉ?z¶ï?î¢À?àð?ûµ¶?ËJ@÷®?¸ @ß¶²?„º@Ýô±?9| @ø ³?YÊ @ßÇ·?޾@p’½?óÙ@GŽÂ?Zë@œÅÂ?7@àÀ?>^@k‡¾?ó$@+!¿?·@GD¾?ÛÞ@Ý}¾?Z@Éì»?rR @‘¹?¦’ @Mvº?ÞÒ @ôÁ¼?„/@.ʼ?à™@é[¹?d@LÅ·?nû?Wr·?Ë[á?ÇkÂ?†Ï?•¹Ë?-Ç?ˆQÏ?™Ï?oäË?YLÉ?MÇ?ÆrÍ?¬¢Ç?ÑÌÖ?È?OÄè?¼ÚÃ?”Íã?Q¡º?‹ÉÑ?¹¶?KÔ?Ÿ|¶?‘RÞ?ò\»?‡Hï?¸3½?®÷?Ó´½?^Žû?³±¿?%ø?DH¿?ë÷?;~½?w!ð?¤(»? æ?_ð¸?²eÜ?ÌȺ?S®Ó?{½¾? †Ä?Ðe¿?ÝÁ?å`Ã?•ÖÀ?`È?¡¨Ð?£CÈ?è?8¼È?šìí?-¿É?lIè?I*Ã?kãë?@‡¹?‰Ùø?›U³?«’@µÌ²?ä² @¶.´?Þj@XÚ³?â5 @ãM¸? @’÷¼?Ó)@šòÀ?¤@”¦Â?…@MöÁ?ùŸ@uóÀ?Zî(@EÍÀ?î7@t8¾?¯;@UX½?!9 @¢¥»?ó¿@ÀM¹?p_ @x´»?_– @¾¾?`@GϾ?÷‡@6î¼?Áyÿ?tR¿?^èã?[{Ä?#ÍÃ?ІÆ?ë.¸?GÌ?Ô^¿?ŸÉ?žùÆ?9É?3GÌ?@ É?Ù¸Í?‰~Ç?÷Û?ǼÄ?µà? '»?·EÛ?6º?Q'Ú?¢ƒ¸?t"é?7ž¾?m÷?I:Á?„µ@’'Â?ž·ü?ÌbÂ?è‘ò?9–Ã?¹í?‘¾Á?Ëê?¶½?Xß?½?—¨Ò?ð½¼?¶¾Ç?°Á??Cº?‰Â?D¹´?•²Ç?Ž—¼?äÜÉ?«Ð?{Æ?lØâ?gÆ?ÎÒí?ó@Æ?0ì?½ƒÂ?Tí?YD¹?Ê\õ?Mϵ?žBý?Ÿc´?d&@~ªµ?a@Ü”¶?‘¿@Lk¸?Ã, @ç¿?Ô @ôÂ?æ@yÃ?•U@GqÄ?3Ç@ÓjÂ?Ùk$@€÷Á?VÃ@Eƒ¿? Ö@Èc¾?h @q½?T¢@šž¾?Ò@ƒ¾?^i @†À?\Í@[Â?áÿ?ЈÅ?O;ç?¸É??ÜÏ?«‰É?Í Â?ùÈ?%½?ÙŽÄ?æ3»?Æ?zhÇ?¸0Æ?e|Ë?Ü©Ã?™ÞÔ?ìyÀ?ÄrÔ?ãû½? Ú×?—ܼ?«ñà? ÿ»?øaî?p«¿?þ?EVÃ?›@GÄ?Ýì@HÅ?í‰û?€ÏÅ?‹õð?Å?Ÿé?d‰Â?þŠÜ?(êÃ?ÑóÍ?£,Â?*Ã?®÷Ã?ÎjÄ?-§Ì?V´Á?G’Ï?¹Â?… Ê?²Ø?FÂ?p‰ë?9%Ä?mCð?;ÞÂ?ûJç?âÈÄ?j¬í?Ï"¼?mÉò?)·?J€ÿ?Tð²?ã  @¢_µ?Ó¶@qÀ¶?É@lθ?Ðj @¨½?÷@ypÁ?Öt@¢Â?ær@LÄ?jÆ @x9Ç?…%@YGÇ?ƒž@—#Æ?(x @à§Ã?JÙ@:¨Á?fTú?ƃÂ?æMú?N*Ç?`‡ö?ñ+É?™Çê?‡öË?•Bß?ß_Ê?Ý{Ï?KÉ?™jÂ?8È?x>¾?eïÇ?²v¼?›­Ä?:õ·?ÇÇ?ñ%Æ?÷Ä?g4Ö?Ÿ+Ã?nŽÜ?ÿ½?AøÞ?yQ½?Þæ?‚¾?jð?X}À?f»ÿ?ÐkÄ?—@#YÆ?§@ÁÆ?1B@°Ç?úéù?RÃ?=ï?ݘ¿?ý Ü?ìý¾?,*Ö?¹nÁ?:È?£tÊ?_Ó¿?h´Í?TbÉ?Í?änÀ?=ÊÈ?oÍ? JÁ?´sé?O$Ã?Æaõ?K0Â?£ï?UÑ¿?qãï?Ÿ§¿?íRö?·?šÒ@V´?HH @Ñ6·?ø´@’j·?Šª@[eº?`Ì @¤¾?‹l@-íÀ?Ö@Ê|Á?Ã>@ËÃ?ü'$@=¶Ï?sò@hœÍ?gÈ@ Ð?ñÊü?.9Î?¶´þ?äÉ?ZEç?êÙÇ?¿Iß?‹Ë?NÀÒ?ÎÌÑ?ÞFÓ?ú(Ñ?†Î?²bÒ?ñxÇ?ÑÑÌ?ú[»?ÞZÇ?Dù?ñÆ?¥—¹?kÄÄ?–É»?#áÅ?‚°Ë?-æÆ?$Ø?>4Æ?Äñé?Öå¿?€ñê?¼ÜÂ?Æ_ö?5ÌÂ?'@F™Æ?Øn@´È?µ@ÍfÈ?Ç@¥-Æ?¹Bù?Ù€Â?úoá?áIÂ?–Ù?óµ¾?0IÖ?µJÀ?»!Ì?dMÈ?{×À?½~Í?´ô¿?PË?b¾Ä?‰Å?4ÑÞ?&®À? pò?¥¼Á?LÄ÷?<¼Å? mö?\ØÄ?Ê´õ?„¿?N÷?Þy¶?0×ü?kõ³?ËË@A¶? ]@Ë8·?'¶@qº?õ¶@¿?ø_@¤“¿?]‡@E¿?H~@À1Â?P¼'@…Ñ?Có?0oÓ?9Oî?ÑÒ?j8î?FÒ?þñ?«øÎ?kÓÚ?“Ë?ë"É?÷’Î?‡ ½?ðÏ?Yª¸?ûWÍ?ÔŠ½?u Í?*m»?½\Ì?Å׸?P>Ç?kQ±?g¦Å?¦š¾?t¤Ä?"Ñ?÷Ä?.CÙ?ݲÅ?¤ïë?0nÅ?`ò?RŠÃ?YŸ÷?“™Å?¹@*È?V…@}£Ë?áÀ @aÉ?âT@çûÆ?htù?vÄ?œvê?ÊÂ?y‡à?„¿?àØ?Oï¿?üÈÎ?¶VÅ?&¼?ƒ”Î?cÙ®?‘µÊ?Õœ¿?h`Ã?Ü£Ú?ìX¿?Ãù?Bɾ?~<@#Â?©ˆú?,BÄ?Wñ?&mÂ?ï@ø?ÂÕ¸?;þ?9ˆ³?1˜@¸µ?²u@µ ¸?A¢@%Pº?l³@Ó;?ˆa@Yª¿?é` @@ò¿?‡È!@ghÀ?öi)@„Ì?•æ?gÊ?YñÙ?«7Ì?oÑ?`VÑ?«VÕ?ÖÌ?úÈ?¿CÉ?E»?FrÉ?¶¦?ª›É?ÝŸ?¨fÅ?Œp¯?ªÄ?êZ¯?ñÆ?¿¸?7ÙÃ?_â¿?ÿŸÂ?tIÛ?1Æ?y³é?«ÊÅ?9?î?vðÃ?…¹@§ÖÃ?¥–ÿ?~ Æ?»@º‰È?<©@óùÌ?xI@/$Ë?¾Š@ÍKÈ?×ï@¤ÝÅ?˜ó?õ­Â?•!ç?)€Â?†²Û?•¦Æ?7Î?Ü È?ÌÖÀ?|Ê?¸ç³?[ˆÌ?ÑD³?M¤Ä?zÒ?–»?‚pý?•y¼?Å@F¯¼?Húú?­0Ã?ÙJð?0­Á?×{ù?¬¼?æq@dõ?Ö@üà³?_I@k¶?.@·”¹?(ƒ@Ù¼?ïá@8¾?¬&@¾¾?ƒ%@ fÀ?ü£%@ÄÈÀ?Ý?OÂ?òÊ?hUÄ?Y,Ç?]§Ê?””Æ?ÍOÅ?§‚¹?ÕÄ?ï?£¼?«§?9*¼?[¨?ô¾?Œ±?ÀÓ¿?ãÁ?1ZÄ?ÖÍÖ?ö¿Æ? Bé?‘ÄÆ?Uâø?¦Ê?Ùöÿ?BÃ?/7@R Æ?Œ¤@+ÀÇ?ÙÛ@}nÈ?8@¨®Ì?JU @ÏÌ?q@M\Ç? ÿÿ?ŸhÄ?Èø?·Â?'ï?êvÃ? áã?VÅ?2 Ñ?€øÆ?bgÁ?ð˜Ê?>¹?3±Ð?êJ»?lVÄ?®µÖ?á|¹?’ ü?ïO¹?ÔF @ù»?ç<@ aÁ?’ô?YÁ?ïõ?ð¿?„¢ý?z;¹?TH@!@µ?m @˜ ¶?³½@ôL¹?WÏ@ÉÜ»?à© @Ú¬½?…«,@ÇÕ½?©7'@/N¿?kÇ%@ñ‘¸?™±á?é}º?YÔ×?䑽?ÆyÍ?½é¿?SÒ?¬ÜÂ?ò3É?{ȼ? À?x£º?|Í»?û¸»?Úκ?‚9¼?µÅÆ?UÒ¿?­‘ã?JRÆ?Æ—ü?{÷Ê?‚R@ûVÎ?@î Î?@€CÉ?÷á@s–Ç?„E @õÈ?Ðw @ ŒË?•± @ Í?ÑN @¤KÉ?c³@Æ? '@ÝÁÄ?2zö?§]Æ?Bíç?vÈ?ùQÛ?tÃÊ?xÑÅ?ÍŸÊ?z…±?qÌ?Ö@¿?à¹Ç?FMÊ?®3¼? „ï?þI¹?;Þ@îx¼?@¸>À?qÐú?!+Ã?’+õ?÷GÂ?uûö?Ž~½?h'@vÁ·?äæ@¡¶?¤Å@Ô·?@ô˜¹?öè#@}¼?Dv)@ª?¼?–&@¨?½?ó´#@Œ-º? •ç?\̸?òá?3†¼?È9á?ïÓ¾?ã;ã?ý¿?e²Ý?Ÿæ½?”ìÙ?iº?;Ð?6}¹?Ï«Ï?-¦½?¶ á?„>Ã?«õ?ÕpÊ?åÏ@9Í?@¼<Ñ?^Þ@UÑÎ?o @ÀË?p@ÊøÊ?ÖH@f®Ì?¦@lÓË?×g @mÊ?¤l@ÉÍÆ?»×@çÄ?xúö?SŒÄ?bòè?x¥Å?½´Ö?kÈ?ÄÇ?=ýÈ?´g½?Ü?Ï?ªkÆ?IzË?JgÅ?‚¦Â?£Ù?Œ±¹?uªù?êgº?Çh@L¾?^Âý?oÞÁ?ßý?ÇŒÂ?qý?Ví¼?ÑÅ@â »?úÅ@É’¸?ªà @*¹?)¢@ŸLº?ÿ@Îgº?ž¥%@I"º?¦á$@°—¼?Ññ@=†¸?ˆë?v€¹?žÿö?(ؽ?qô?ÅòÀ?Îçì?´§À?Oá? z½?g=×?žº?¡iÕ?ñë»?Àß?=Â?|¾ó?ÄèÇ?aÅ@ˆ¸Ê?iZ@•\Ì?‘ª@ÌJÎ?H@ÍRÎ?s,@Ú¬Í?M@ÌÿÍ?‚@jsË?¸ @>ÀÇ?r@©ýÆ?n @PƒÆ?h¤ú?ªÂÆ?€+õ?Ú¾Ç?·Ãè?ó˜È?4îØ? Í?#Ð?ÔÌÏ?+ðÍ?oãÑ?. Í?°"Ç?2æ×?dóº?*ìé?»?Îþ?ª¾?Ñ×ÿ?ËÁ?¢@Óž¿?ƒþ@ÙÑ»?L  @Ážº?à @½?|• @ʇ¾?ç<@™½?Äí@}¸»?’d@´ýº?Ñä!@E½?G @»?Òðä?$ ¼?’pö?E…½?…/ù?èîÁ?Kó?ÊôÀ?*áè?Y½?6Nß?÷˜½?Ëà?=Á?‡;ì?aƒÆ?Ù û?Ê?KF@ãË?~9@ðoÊ?Qj @0»Í?ÂÞ@}ÑÎ?ë@ŠÏ?ˆG@ÓJÍ?U« @2ÉÊ?R4@ˆÊ?Q4@èÒÉ?B¤@U Ç?oû?â÷Ä?„áí?Ž=Å?!&Þ?„‘Ê?4KÐ?KßÐ?ŸÉ?¨$Ó?™íÆ?‡"Ê?¼¥Ñ?E4Ã?´pè?*XÀ?6¶ù?¬7Ä?U.ÿ?ýÃ?X@hó¾?Ý@Xm»?Ѳ @åo¼?„Ï@–œ¿?ä„ @B³¾?gy@P9½?ç@gâ½?@wó½?À@ãÛÀ?~x@lƽ?Ðç?  ¿?Të?¿ª¿?ÕÝí?è&À?8î?¿?}ê?úr¿?çiæ?Z"Ä?å¢ä?Ë­È?\óì?xË?’fù?lƒÌ?Ãl@ÁHÌ?>ê @¢¿Í?s@uŠÏ? ó@ÐÙÏ?²@ÞGÏ?žI@d•Í?¯™@™tÎ?ý@ºoË?|Vý?v¡È?Ù,ó?­øÄ?Y á?‰VÄ?vÙ?ݽÆ?]ÊË?GÌ?d¶Â?rÉ?”fÂ?åZÅ?—§É?Ÿ›Ã?â™ß?]éÄ?…qý?k=Ç?´"ù?§ÑÆ?©Cý?úTÂ?¤;@H¬À?–± @¡¿?›L @pÀ?¯@ÙÑ¿?~Ê@ÿÄÀ?W*@À?`Þ@ŸªÁ?ä@8hÄ?…p@ï“»?D!ê?o½¼?×"ç?%a¿?2ïá?)Â?³3ã?&ÕÃ?,ã?®Ä?&ªá?¸ŽÉ?kžç?Å5Ë?ñ?¿ˆÎ?¦=@êÎÏ?‚Œ@| Ñ?ê@'‚Ñ?5ì@iÍÓ?›S@1Ò?$U@¥ Ï?¸^ @¾xÌ?î¥@} Ê?s¾ú?à_Å?Éûé?IÃ?7×Ú?+XÃ?xÛË?Ý?oòÁ?²°ó?Ú|Ã?Á%õ?î:Ä?Û[ð?¶PÄ?HQ÷?¸WÁ?’¸@)Á?Ù @å ¿?}†@Ø¿?¿3 @5Û¿?ÁN @¦À?‰@¯YÃ?Ù¤@"²Å?{û@[0º?„µæ?8½?M_â?0$¾?ãhØ?õmÂ?—€Ý?P–Ç?ȼÞ?æ‡É?îõæ?°ÓÌ?S¼ò?Ó+Î?¦*@KÐ?&i@„ƒÒ?Ï@œÔ?&!@>Õ?l@ʪÓ?+Î@DÅÐ?™¥ @XÍ?É?×P¿?rÈ?­”°?¬çÉ?ÙJ¾? âÂ?«ÀÒ?©Ï¾?8çÜ?mÁ?…øë?fƒÁ?úœø?JgÁ?mÀ@$ÏÀ?)@oäÁ?@!ÓÁ?‘³ @nøÀ?:| @¤½?ðf @¢¾?+A @óOÁ?Ä® @ZÁ?YN @R4Á?œ„@¬¨¼?6éÿ?ˆ¼?¸ÿý?-VÁ?œMø?¾ìÃ?„Äû?ÈàÈ?V@ Ì?¹ @¤±Ð?% @ö¸Ò?xk@sÅÔ?±]@!@Ó?%£@Z¹Ï?£@ÉË?Ÿ@ÕµÈ?‡ý?BË?¥]õ?ErÒ? Oí?RÊÔ?<8á?a†Ò?×?cÎ?aéÎ?ºÞÉ?£Í??ÕÄ?YjÜ?1ÅÄ?Ìcé?Dî¾?Ó ò?û\¿?‡Ÿý?sbÁ? B@Œ$Ä?ÿ @% Ä?š @tXÅ?ÚQ @WêÂ?} @;-Á?ž{@(\À?îI @ÅMÁ?™0 @ÜÂ?H¬ @"ÎÁ?Sø@+Â?#ç@[¼?x2 @£¼?.k@ÒØÁ?ý@ƒÌÂ?m@Q.È?’.@[oË?êð @UaÍ?š²@ª#Ð?×J@‡rÐ?³Y@ïôÎ?‚@¢JË?üu @”„Ì?œå@‡Ï?mö÷?Ä6Ó?|ç?ÝÓÕ?ÂÙ?ãÍÐ?%æ?MáÉ?6 ò?ƒ—Â?Dcý? ²Â?ï@QtÆ?ÕÁ@whÅ?kðþ?DÂ?«ã@ÜóÂ?`ž @ÃÞÅ?jý @$KÈ?©™@/YÅ?ø¡@ÐÂÂ?Ë5@”Â?㨠@£óÁ?`Æ @—°Á?DU@]@Á?:ð@·Â?1 @þÂ?D© @»¸?äƒ@Lü¹?i¦ @®à½?’€@Y,Á?@|uÄ?7P@%WÇ?•@UÉ?Zœ@¯„Ê?þ&@ßÊ?ö†@3jÊ?-Û@q™Í?ÑÕ@ã›Ð?Yû?§Î?nTë?tÌ?—ò?wŒÆ?mE@ QÀ?w±@,žÀ?x¢ @¸Ã?9Q @dŽÅ?…@+Ã?¾ç@WÃ? Ø @‘§Ä?eú@{Ç?•ë@‰<Ç?^¶@QÄ?DÂ@ƒÎÂ?øÜ@—øÁ?}Y@˜ŸÃ?Õ @=BÃ?xð@NÂ?À<@»FÁ?q;@oÀ?ކ@TC·?Õ}@a¡¹?¤ª@´°º?²ø@Õ¨¿?ªE@&€Á?¦²@Æ‹Ä?G—@é*Ç?ʹ@¶¢Ç?mX@YýÉ?‚@ÜÌ?k³@$Î?@ÓÝÈ?Øó@M»Ã?° @‚¿?j¿ @Iv½?ÐØ@¥¿??v@k†Ã?t@²Ä?Ëz@5Ã?Œ @{Ã?Dá@Í„Â?Ý]@?éÂ?Æl@ˆnÂ? @YÈ¿?\ö@OÁ?YÇ@cLÁ?È™@žýÂ?Ä¿@OìÁ?u›@ÝÁ?}D@)Ï¿?v5@Ñ€¾?Ÿ©@„—¶?,Õ@Šg¹?òÁ@cÜ»?¥þ@èé¿?þ,@éÂ?Zý@ÉŸÃ?ì‰@ó#Å?„â@'È?ø‰ @;MÉ?¯î@w Æ?¹Y@"ÉÁ?3ó @1c¿?y @[œ¼?Ö8@«¼?="@bz¾?'™&@ÉÀ?m™"@ž”Â?\€@ÁeÂ?¡@G'Â?uÑ@Ñ8¿?\@о?Y¸@4Ƚ? @Ëc½?Vì@dŒ¾?Õ5@!m¿?9@hâ¿?ºæ@L%À?ÿ@Òc¿? @ûî½?€@^ ¾?f´@ñ·?³ @Ekº?H]@£3¾?W±@bÀ?©í@Ä2Â?¶l@8xÃ?-@…Ä?`›@¸ïÃ? @–Â?­ @j±¼?ü@}¿¹?Šã@ ¹?Ù™@tf»?°&@–¼? -@àn½?–™0@4á½?̯-@Ô…¾?4*@½`¾?Vø#@Üá¼?À¾ @<¼?“í!@nï»?W@ks»?Ör@šÁ¼?D8@ø½?¨@%¿?wÇ@8]¿?Œð@£É½?ç©@…½?½@Õ±½?j@÷ôµ?I$@Ð)º?+X#@{V½?ai @<ŠÀ?\b!@šüÁ?©³@ÈÐÀ?â@¤0¿?rd@7e»?ø@#s·?Ar@Xí´?@‘ @Bžµ?c¢@;i¸?~"@åd¹?nÌ'@Oº?²„,@%º?›0.@Ú»?O+@©;»?<¨(@2h»?k#$@9©»?Dõ @ßÏ»?@½@Mù»?_@Ë ¼?QF@wǼ?T@äY¾?Ë@Y÷½?*Ž@¨¥¼?t/@žÜ¼?œ@+½¼?«Ð@a´?1z2@Îϸ?0c/@ð ¼?»º.@ û¼?ðS,@榼?Kw*@¡Bº?ùm%@ü¸?½)@ö&µ?ŸM.@<³?ë‘+@¿ ³?‡þ%@—´?||$@Ø-¶?¨%@™·?}‰&@#E·?­Î(@$µ·?-$@¶ª·?é„ @u¹?z@º:º?Üë@¡»?C'@÷ð»?<ñ@éã»?t…@z¼?›Š@Ÿ¤¼?p7@} ¼?Æ@šòº?¤`@ǹ?Í:@éä¸?óõ@–²?fr?@4+¶?ˆ¼9@æà·?1@Hf¸?õ¦/@N‡¸?\ç.@¤(¶? Ì6@ç:´?+ç8@³?+®5@ª*³?¿V0@6‹³?´¤+@ S´?)@Iú´?<)@Ìæµ?\¨&@Y¶?8.$@øôµ?+^"@Þœ¶?)Ã@Ĺ?áô@¡?º?2@dȺ?žö@iº?êy@ŠLº?S…@;º?Ja@뺹?M@M¹?¼@-×·?Qö @¡:¶?½ @âð±?N?@…³?>Ë7@ •µ?×1@¬¶?x›4@6<µ?:Ò?@o|´?lC@l´?A÷A@Á´?wî:@Ûí´?,'4@Ò¹µ?š.@ïWµ?ð,@'{µ?žÌ(@4‘µ?©«%@ú¼µ?ž5)@ˆ?¶?õ)@~q·?"á&@s¸?C“#@ì·?Ó$ @P·?Ûê@S·?T@z‹·?Zd@ ü·?X @ÎÙ·?Žö @¥A¶?›%@%¶?k'&@¡²?kö?@sU³?¹ù7@´?üV8@~R´?O²B@ØÝ´?…oG@Ú%µ?]ÌE@ùµ?NB@X’µ?ï=@‚­µ?õ:@öoµ?!“6@Rèµ?<3@ö?ø.@¢û¶?‘²,@…>·?6b1@V·?fe5@~8·?vß4@ƒÛ¶?»Ö/@«À¶?ƒ±)@N%·?šu%@zƒ¶?ƒ@&@€¶?˃&@Ã:·?ÓK%@>„·?ñL&@¤n·?ƒ (@=Ʊ?C#D@¤Ú²?k=@ì_³?!A@´e´?)eE@‡´?Ô¶E@倴?ioD@*µ?ùC@‘»µ?Ã¥B@Ó¶?»=@{w¶?¶¼;@Ó&·?žO:@È/¸?`W8@t¹?hQ4@œV¹?/16@q°¸?Æá=@›µ¸?Ks>@ûð¸?Ãã8@Jå¸?EK4@¯^¸?í”0@î ¸?Ì/@À ¹?xÁ,@š¸?ì3*@˜Ï·?ž+@µ¶±?£]H@¬[²?teF@Uij?ìE@ Ã³?D7H@gdz?G@žy´?äA@ë³´?±©D@¾‰µ?k6D@4áµ?ûæ@@*‘¶?A?@û[·?|?@ꀹ?a§:@>þ¹?ì¢6@1aº?ýÇ5@ĺ?Ê‚<@Vº?Fg:@+Fº?‹u8@ȹ?5@f]¹?Ëý1@me¸?pï.@Mp·?«´(@Kʵ?$œ(@¤ ±?»wF@¦²?PbE@ÐÁ²?I@7®²?€I@ó²?¯oG@a‡³?uE@gu³?‹ŒE@ò-´?[BA@>kµ?KL>@²òµ?N=@r§·?¸79@e)¹?á5@t1º?Ξ1@Ź?CÌ4@±Ÿ¹?@7@ŠÜ¹?.Ð3@L ¹?¢’2@B¤¸?W0@{8·?×,@ª>µ?S'@s´?ÚÙ#@qN±?®`F@F9²?U'F@ϱ?ÑÐH@Dî°?M*H@/Ò°?¢~F@õ²?«€?@¢A²?ãÉ;@òг?¶Ô:@< ´??¥9@„Þµ?ˆÙ8@|c·?ó#6@¤Ü¸?Œ*/@½¸?È1@]¸?˜…3@t ¸? ±1@ìÞ·?xb/@C·?T‚/@ F¶?¼5-@xµ?™&@¸µ?¨G$@}š²?­Ÿ<@ ¾±?6ï@@”¹°?ëƒA@4˜¯?†´@@¢¯?Ñ ?@¢ƒ°?Ã9@º7±?53@1š²?Ó/1@tâ³?>‹4@ú‹µ?››2@l¶?Ä3@.­¶?u¾/@IA·?õ 1@q2·?(/@dF·?%ï-@«¢·?Ö-@k¶?7S,@ ¤µ?'Å)@óµ?ªº%@ÛC³?aH:@I›²?¨:@! ±?ý¾:@û>°? 9@£µ¯?I§6@ʨ¯?Zé1@°?A•,@˜é°?Ÿ÷+@®±?+L,@×Ù²?«@0@³?t5@¿m´?äÔ2@…%¶?3Ä/@ x¶?T0@Çöµ?Þ0@Øâµ?¼¨-@4µ?±,@ Ó´?Íó.@… ´?»n;@îų?±X7@6q³?§!5@bÛ²?õ&5@ã–±?SÕ3@J°?,2@ !°?)—1@çã¯?åÊ1@²@°?¸T/@)g°?úE4@Q±?9@”§²?(L:@7δ?ßX6@|µ?g4@ļµ?¥1@®µ?‰õ/@­±µ?ïò/@‡³?w8@;³?øÕ9@Tf³?.3@~ê³?SR0@ÿ´?›Ÿ2@»²?ë¯2@Ÿ•±?ˆ4@]Á±?ïË3@/^°?hÝ6@G´°?Pâ9@y(²?In>@èi³?8b;@ÑÏ´?¿u8@†¾µ?o:5@Hɵ?®2@¢•µ?450@ Ð°?Qz9@À°?å0;@Ͱ?¸C:@í±?2Û9@]ϲ?ét6@Ùɲ?Éd6@zÙ²?Ö=6@R•²?ã™7@e0²?Îî9@°u²?á–;@Xã²?be;@³h³?*Ò9@kw³?>L9@‰G³?‡19@È,²?–,8@z®?3¶D@T}®?Ê™>@1¦®?ó<@Hn®?4ö@@ØË¯?¡1C@¹¸°?J}C@ß@±?mËA@Ó±?‚œA@&ê°?ë…B@ I±?„¨B@ƒ’°?RrD@q̯?qÅB@b5®?¸PD@Á ®?#C@©±­?JNR@FÇ­?uL@Àæ­?¥×F@ ™­?xI@;t®?~®I@Éo®?ØåJ@·Ñ®?Â-K@Ë®?I@zP¯?¥dE@Ä¡¯?‹*E@ü®?/ÀC@bî­?>D@H ®?æG@Ø®?ÞXY@ëR­?‰§U@ ­?Q@_¬­?C•R@¾"®?ÆÐV@0®?/KW@o®?0´U@m ®?;?U@ÄÞ­?¬tS@`Ù­?õ|P@‡­?HyO@¯¬­?D@N@±Ñ¯?“ª`@*®?À&X@r]¬?9R@-¬?"hN@€¬?eaN@Áþ¬?Õ;O@b–¬?µ7P@ý¬?íuP@Ãë¬?þN@%­?xM@v“¬? 'I@s²¯?_ö_@‰®?q7`@= ­?“W@ެ?!J@Ÿ[«?Î6E@¢Kª?þ“B@`Dª?F"A@¶òª?êù=@ˆ*«?”ÿ:@0ݪ?Ãò6@©¦°?ΟZ@ŽÒ­?Ô9]@›‹¬?)ÌX@X¬?JR@N¬?Ø G@™«?¸">@ó«?ìe8@ìmª?†Õ4@ ·ª?^µ2@ºó°?,©Z@VU®?ý[X@ª¬?âvS@èh¬?îWN@“™­?GJ@ÓĬ?ÇMB@aö«?°û7@y«?Œ`0@£2±?ÌÔ[@ÏÔ¯? kU@%†­?ÖŸL@"³¬?.H@;â¬?>‡G@葬?ÒB@³¬?ˆ;@ù °?‚Ø^@k9¯?îW@¤o®?—N@vj­?3íF@Mˬ? &C@'ñ«?ÎB@Ây°?Æp_@¯? Z@^M®?5þM@V­?®D@÷š«?ëA@"ï¯?uÄ]@ù¤®?VS@棭?ƒµE@w¬?|W;@«"®? ¶Z@Ž ­? ôM@<Û«?Û­A@}¬?ôT@½Q«?0DJ@@«?eòM@Ø‚—?0ñˆ@´“?)‡@О?‹‚@QŽ?ÁË|@‹®Œ?,Nx@,Œ?¥Út@b›‹?PÏu@¿‹?~|@㻌?ö@îé?1ç„@°;?8X…@_Ý?«ƒ@$’?GB@"X“?¶™|@#z“?`Äw@OÓ’?œ§t@ÕE’?;t@§s’?s@d§?µgI@kÕ£?4CT@˜Ÿ?ÁtS@°Ï›?>BP@´„™?OòK@n÷˜?* E@B™?×Ð;@îw˜?ø~8@ʘ?âG1@™?®Ã*@ }›?¿ú*@w–œ?i~*@Gã?ER(@¬Û?¸j(@äòž?Ö)@ÏK ?`W-@š¨¡?öÕ,@&ú£?dc-@äì¥?§‡0@æú¨?ñ/3@ò׫?V€3@Á®?Ÿ0@‚Ȱ?ƒ|+@G¡?Nφ@&…œ?‡@t™™?q…@Òö–?w’‚@ ´”?‘1~@†7“?Û6z@‡¤’?„îx@©€’?¡ò~@ÓÌ’?½ë‚@rò’? ô…@Òm“?Ýy‡@ì“?¬<ˆ@È/”?[‡@øS”?ug…@«â“?š¯„@“?†Ž‚@µ¹’?b}@I¢’?x^t@ÒX“?~~k@&’”?¼^@}–?ø5R@¤¶—?Ž…C@X^š?“Å9@¹ž?¸\4@öY£?g=1@ù@©?¢‹.@©¡®?ݱ*@Yϳ?R@$@ xµ?J^@|‹´?ñ@ƒÓ´?ô$@ã³?ÍG.@¨ò°?”\:@Æ«?@[J@z–¥?$íO@ßö ?b¶N@^?¤ÜO@OÛš?EßK@ƒŸš?êaB@ó™?S‹A@;ˆ™?Ù<;@}±š?K$5@ªŠœ?Ÿ0@ctž?R3*@ôM ?_H(@xðŸ?cG*@Ý¡?‹)@T:£?ZQ.@à†¤?¢™,@@°÷ª?×àC@îõ¤?ö G@Jò ?ÂÅJ@Õ¥?5JJ@§mœ?¯H@Ç­›?üfG@—~›?´âE@pœ?„(@@ž? è9@, ? '0@8é¡?dÏ-@°ê¡?øÃ-@ £?¥/@ ¥?åA0@yê¦?[ý-@~©?ïú.@7¬?«Y1@rä­?û2@µÚ®?ï'1@i’²?¼m@8G±?¥åw@,°?’È{@í¯?T0€@öl­?"€@QCª?‡B€@º©?œ@d„©?ÁŠ„@¥s©?&p†@Ôj¨?UL‡@´5¦?Ç%‡@³V¢?Ú;„@±vž?+I}@’›?0Šu@œÂ™?D¡n@ž6™?¼åd@¤Ó™?2@¥¹¢?½x7@¤G£?¸i4@™ó£?ÚR6@ð­¥?e±3@?P¨?Œq2@<«?Ïô2@æµ­?¸{4@¯?³ñ5@5>¹?!&n@Ñ·¸?Mu@D;¸?mÃz@Ì··?zx@o—¶?ñ&}@^¿´?ÃÌ~@uS³?Öœƒ@ò‹±?î)†@ß®? ʆ@˜«?ô®‡@ü¥?;Ú‡@¡?ÄH„@#µš?æÛz@^V•?²]o@œ‘“?¢çb@GÄ•?"¤Y@#—?8Q@| ™?!aK@´/ž?íL@’¦¢?bO@9?¨?Ï–L@o¬?ïDG@ìk¯?ä‘>@Ö£±?l69@a÷´?T¸5@Éõ´?Èm2@7¹?ÉÛ+@t¼?d)@cx½?K‡'@g ¿?a(@Lo¿?pè'@ÙO½?¥¦&@í„»?Š)@ÙO¸?áG*@ÿ²?Tï,@®?%2@R©?‹3@-ͤ?CÝ6@'©¢?ï;@ôÞ¡?íÛD@µÛ¡?“O@hé¡?#àR@Ó¢?rÿS@Ëu¢?qL@Ý££?|eD@üN¤?E¸A@Y¥? m?@¾§?¦Â9@Åä¨?y…;@öæª?µþ;@¨­?:@Öp¼?ïƒp@-½?ÈMv@âE½?q z@|)¼? su@|Þ¹?4üs@ "¸?©9z@Ï(¶?©!}@3·²?b¡€@@®?9¾‚@'Ǩ?ã\…@ÒÝ¢?²…@sØœ?Qb@L¾–?CDt@ãN’?(ri@/$?6a@£«“?_Î`@ í–?›«e@¡ ›?¶q@FdŸ?½€|@ÄQ£?9=@E`¦?ïCx@ºL¨?âdm@Œª?a_@Ÿ¬?mP@ )­?C›C@Z±¯?+9@û´?"*@;÷¹?—@ºå¿?ÿ:@Y$Æ?â™@ÔÉ?‹@«ŽÇ?Ç@PvÆ?È}@®|Ã?tS@i½?@–¦¶?‡Í@„#±?i@L ¬?½š'@2q¨?ÕI0@9R¦?È9@Ǥ?þvH@Ú~¤?CSP@ä^¤?Ê¥W@TȤ?¬eV@e¥?ÉXR@’Z¥?èßR@Ðì¦?™8P@gT¨?~M@Ù'©?žJ@Ò «?Z4G@õ>¾?U u@ò‚¿? Ôw@®¿?0Æu@ÿ¾?jÚr@‰©»?Žq@¶¹?~8t@¿Ûµ?¥t@”±?êrw@ý.«?Šx@½ò¤?Fq@¿?v\l@s(–?MMb@D ’?£V@ÊZ?©MM@\OŽ?ˆIK@|Î?„‘R@ —?8Ýa@‰Y›?àÑt@rýž?cG€@ Þ¡?U¶ƒ@Éù£?c‚@<'¥?9ê{@Ÿ¥?6>u@Ц?úo@£Ã§?ÔWg@ª?>ÝY@W®­?áæH@'²?É<@¨7·?W¸2@WV½?ë$@6Æ?ùƒ@\0Î?RD @µÒÑ?Ž@þ{Õ?=Aö?=˜Ô?%ð?3‘Î?éö?þ7È? ±û?•§¾? @é:¶?W@â¯?˜2@•š¬?© -@¡M©?à¼:@ÞF¨?гI@Á¨?¢sQ@áN§?8îU@K§?=6X@4á§?JaZ@9|©?Ø [@0âª?<Y@ªê¾?]òz@#Á?'ky@Â?ÓAv@ö¾À?èk@¬·½?1fj@ÄÞ¹?^k@‰$µ?·µj@=3¯?ëßi@î7¨? Ë^@ Ÿ?‡[N@@û˜?à[=@p ‘?Á-@cýŽ?Sƒ@Yw‰?d¨@/šŽ?&@šÚ?vW:@nÿ•?pcS@Hãš?ÑÅl@µ÷œ?;-|@ð?Ÿ?ó‚@àÌ ?Î\€@wN¢?õ_}@j£?ÁÁ{@¤Ð£?à z@¤?ë‰v@€¦?j r@æe©?+i@W%­?Q0]@zT±?•tO@3µ?ÎA@L¸?óå6@Bż?0*@5¦Â?dt@,­É? @O³Ò?W¨þ?^ñÙ?ðŠè?*–Û?ÁÜ?]ûÙ?¨¾Ü?¸pÒ?Õâ?IRÆ?Ñð?._¾? @¼E¶?Uö@Õk°?s'@YÄ­?x•2@*µ«?|H9@Z~ª?C@KŽª?-YQ@ÿo«?ß”_@Ö"¼?Qr|@ërÀ?¡Ky@ý‘Á?úfu@Ô>Á?kjl@dï¾?ù8i@¥ô¹?UPf@·~´?Ü_\@®?<ÀO@4tª?¹=@Ó£?)Ý)@‹œ?T±@ו“?©£@'?Ìrï?é‘?1Kì?~“? – @õ“?¸¬&@‚`•?ÄâJ@÷™?`e@²™?Ax@Œf›?»N€@ Ìœ?X¡€@€Í?P¹}@ç8Ÿ?u|y@Š… ?;¯w@Þƒ¢?œòr@~‰¤?UÍm@Š$§?0¤?ö$C@"Ϧ?çT@@Üè©?²J8@Šq­?¥R.@ö±±?d#@S¶?¥Ì@vé»?u_@¢’Á?‘V @J¬Ç?‰Ø @ÛÅÏ?^2@lEØ?H*ö?úÂß?¡Þ? ÆÛ?)1Õ?ZvÔ?ýŠá?·±?‡cz@©¶?bÐo@`¹?×_m@>;»?êVp@é\º?n@¦¶?-äZ@4š°?;@‘b²?­@ˆÊ¶?%@–\³? ´Ü? ߬?ËÈ? °?ÈÓ?M6 ?§)Ã?Æ ?„ØÆ?7š?©Ì?Íz˜?çô?õ$‘?"¨@¢*“?¼J@š?„@/@cq?ç9@j´?âB@ŸO‘?y-D@Ú‘?7E@¢9’?êšE@JM“?œ)E@Ê6”?9D@c•?åŠ@@Õî•?ß“9@¿ô–?‘~1@+™?£/@ã0œ?*É.@3ž? ¸/@Ú=¡?—¤-@­£?E¡*@²q¦?^í*@+1¨?Ñ'@4ª«?G$@,Ó­?_6@ôµ?—ð@=ƒ»?K@­©Â?8‘@ÃÑÌ?·Ñ@~'Ø?…Aý?§]à?q(å?CÛ±?ûêh@3µ?Rh@õß·?Ëg@ú¹?ÿÂk@ÜÀ¸?*h@Ä®³?û¹Z@–Á­?øs6@Y^®?¤@y¯·?E…ì?OŸ»?v&Ò?¿X½?õÏ?·'Æ?ÊÙ?²½¨?§iÌ?'n§?´>Ü?Éš ?(·Û?ÈГ?ã?¤k?Tï?H‘?â@Þç’?€U@8VŽ?i>@¸ä?²ô"@úŽ?Ç')@kÍŽ?”B,@Ñ»’?,Ò1@­ “?KÅ.@Ó-’?¶‰*@­ö’?¨U$@ç^”?`p@y–?9w@Fü˜?]w@ö¶™? @;+›?—@hlœ?w¼@ Ù?’¨@{üŸ?À¹@Ùí¢?ž#@ìÀ¥?oÔ(@òª?ñ¼.@2…­?sx)@µ±? €"@YF¸?©5@6uÂ?Xè @ NÐ?+Ï@’`³?m»L@»µ?eU@ŠÍ¸?RÒX@À°¹?T¶]@¿m¸?ùf@Hƒ³?ü[@ ¬¬?ª~:@ )¨?X@E‘·?»Rå?Ž8¼?tcÌ?š@½?TÊ?2¾?p-â?«Êº?i¦ö?°?ªôý?WÓŸ?¨—ó?Œ/§?^F @à“™?ݼ@;‘?™Ö@«p‘??» @cM™?¹>@C0—?#&@íÈ’?ïÞ@ Ž?f”@Ì…“?)@Ó¤?Q’@~Ÿ’?é0@!ˆ”?Õ @r¿•?Œ @Ñ•?·Î @?»–? 7 @ -˜?D·@3ò™?»`@¹š?ˆ³@Oêœ?į@ßò?Ÿ@Jÿž?„©@T ?^"@¯#¤?)û'@V?§?É0@§¸ª?‹¢/@£±?‘$%@„O»?B2@ì¸?ìš5@jš¹?ÑN@@„`½?H|G@8̸?QsS@0¸?šèd@þ¦µ?Ó a@œ°?ÁD@L±?*·@§¶?!÷?žüÀ? à?Ô¿?à¥Ý?ʺ? 9â? Ôº?õãó?àÈ?Qõ@-޵?Â\@{\µ?âä@Óš?˜@çz¡?&@|7”?OJ@i¢‘?P@d‘?ÆÅ@ü&™?ž@GÓ—?ÿÆ@]Œ¬??@颟?_x@Þ̤?Ó:@ãL«? ;@%¿¤?t¯@‡š?×ø@„Ÿ?Ø4@d’Ÿ?Óqÿ?íâ?5@ûÛ›?¡¿@˜øœ?Ç @| ?:Û@Œ{£?€)@üë¥?AË'@ј©?80@m`¯?Ü–0@Ò϶?ì @¨¿?TK(@v­»?à3@1À¹?ÛV@”<¹?hk@Ü­µ?>0m@D”³?ÊZ@o¶?Ê9@¸?d@šŸÀ?ˆ‚@˜s¶?àð?bÓº?Òÿ@'âÀ?“D@¹é¬?áS@VO¾?b(@:©²? }@F›¢?“äú?=¨?µ¨@Ÿ«?[ @ħ?9 @|wž?ù’@åìž?¿h @úN¥?:@!”¨?*@G®·?0“@,Ø¿?¸q@--»?Úâ#@Š·?áI@Üà¶?;Ðn@Ní´?¤t@ Ü·?2w@fL¹?´åZ@ ¾?§>@›¼?„c@À¢¼?¡a@"éÇ?2Ã,@%‚¼?Y-8@η?,º;@%@Æ?8¿G@òöÃ?è³G@ºz¯?ÀJ @…3¦?P@ØÂ¢?ÐZ @Cݧ?¾ƒ@í Ä?®€(@Á%Í?su@/c¿?†˜@¬–½?;D@Fî³?šQf@¦µ´?ñ0|@*H¶?Lh@º\¸?9Çt@ ¯º?µkY@ÐYÆ?ò¯G@õ§·?ç5@6*¼?`UU@÷è¹?þ¿(@Ã?:‚/@ÁrÏ?Ò–@Ÿ,Á?/)@xÄ??ß2@;9·?¹ U@ë³? Ÿq@dì¸?Á¼ƒ@Ni½?w*…@ƒ¼?¢p@šJÏ? A`@ò2Â?ìÄ0@::Ï?@„àË?B+@‡È?€%@6Ä? S@–Í¿?wÁq@Ë¿?K¡‚@òÃ?T#‡@øŽÀ?–Ôz@=ë»?é,@¶DÆ?@o6Û?ÍË@o6Í?¿@úÌ?ŽýG@¶Ô?Ì…@Ï3µ?ôC&@âBË? @Ÿ Ü?¡˜@³WÛ? +@¹³?]@0"Æ?zÚ@ªÚÒ?’Ëå?:³õ?#@RE³?72@ŸÀ?˜(ú? ŠÓ?8~á?BJ±?Q±@„³¾?ž4õ?—Ô?{Üä?Hp®?F@ÌÙ¼?4žó?¼xØ?rî?öO­?`@µ7¼?£´î?—ÍÝ?zö?ˆž¬?Ïû @¸?ÌÄë?a,Ù?ØAö?®ª«?§; @“‚·?"éï?ëúÎ?ôù?!ª?œ3 @ ­¹?+íí?èÒ?bw@v7¦?‰Ÿ@A»¸?BŠó?,Ò?bû@'2¤?W|@Ь²?χï?gÊ ?e@‹X¹?·šù?³ž?·&@ƒN·?7›ø?y€?F',@]Kµ?ˆÚü?x±ž?ãÆ.@ƒØ¯?!Lþ?ûQ ?g6.@Uº³?*s @à £?Õ15@Øÿ½?[ø!@Jp¡?á;@A5»?Šô!@ˆ«Ÿ?¨˜G@@\Õ?ä25@áמ?½˜N@÷œ?_ýU@ަ›?}æ]@uÊ?½yK@²Úš?³ºb@MÉ?îH@°”˜?’_@kJÂ?6æN@¦$™?†µ]@ Â?W@Ù±?éb@£tµ?`èT@âʦ?Ñøe@íUž? ‚Q@‡ž?¶ìO@@r?šÙL@sl›?I@Jmš?‘F@u™?‹zC@ÝИ?H&>@4>™? "<@Â1™?<~=@Œò˜?yg?@ߣ˜?“uD@Ú™?©wE@OÛ˜?3žE@ò£˜?‡uE@Æã—?‚’D@˜?„ìD@_˜?”gC@+ ˜?¾:A@Ž—?Ñþ<@¥‰—?¡=9@YÔ—?áE5@¼3˜?°.@t™˜?Ê,@°g˜?¹ +@Ê—?S-@oÍ–?‡c0@ξ•?+›0@H½•?çÍ.@@8—?-0@÷j˜?NM/@A1™?q\.@ó˜?M^&@¹W—?0y@R£—?WÝ@+æ˜?ùa@ö¢™?K»$@¾™?)®$@]™?Ø/"@ùÁ˜?â±$@ˆ+™?ÜÚ*@Ç=™? â)@Nø™?qæ'@Ýš?*@ôøš?cš$@K›? >"@’ò™?V?!@Ä@š?ôs@ö”™?Ü@€3›?+ÿ$@}2?Ñù%@8Ôž?lµ(@¶ž?iH(@7R?ÔB+@}Éœ?ž”)@eGœ?±*@ZÇ›?bŠ,@æ§š?Ô(@8+›?Â…%@;Úœ?ѧ$@ÖoŸ?)@ÿß?j;%@Æ ?%Æ@]Hœ?MÉ@5’š?À@Ö*œ?O(@[œ?1¢-@Äuš?ÿs(@û›š?)$@ ›?‰%@ Pš?YD)@!™?”`/@¼ê—?‘Ä/@#˜?XÑ'@ªÐ–?„)$@;{–?g> @üÄ”??@Üg•?ÄH@‘–?ã8@Ïÿ•?]²@€”?æL!@Ó“?2!@ I•?Ùw*@Œ«™?(1@%š?ó€:@›„—?5?@»,•?kn<@nk“?;@m‚’?A:@‰Ç’?&3@¸j“?—2@ód”?+Þ3@ö…•? 2@—?…ˆ+@Ÿ‘—?H'@´?—?@^#@—?W @g•?/\@ÐÛ“?­#@Rå“?+#&@!“?>V+@ž‹“?b/3@Û*“?Âé7@0J“?w/<@Jä’?õ½?@K‚’?D²@@ Õ‘?VWB@š˜?ÀMG@˜?‘yK@ ?dL@Ž^’?@E1@ÞI¼?“µ6@>dœ?'ˆ+@äõž?4X)@#Ÿž?k—$@:?ž?Äÿ@Šœ?Z@ì1?ƒ@ç¶›?šÀ@Hœ?×A'@æœ?Hž+@”5›?YM*@úš?A+@E›?kŒ.@ù”š?±Õ-@–?™?£h,@˘?°%@€¨˜?²Õ@ ˜?]@,‘—?_@ïý–?E@½v–?„°@lÛ–?A€@®–?œs$@´Í–?“v(@î–?†o*@ZÏ—?á01@¹ª™?óÄ5@o˜?D:@Ì%–?ñ^:@Δ?¢<@DÑ’?Á:@¤8“?ê>6@èá“?Z(3@·p”?~1@tà”?2B/@ø1–?¥-@]”–?¡8*@èÅ–?óè'@lQ–?8¼!@“¢”?³ü!@¶”“?Ò9%@ÒÇ“?)@+¥“?áÂ-@…“?ë°5@~n“?õ8@“?(†:@ù’?Iå>@©þ’?Aì?@i’?ž‚@@1‘?åE@•U?,OL@¾+?BM@Ïb“?ØÖ5@s¸?n2@ÞÁž?’+@® Ÿ? ))@²ž?âö@ö@œ?7u@×?¦ê@[?.Û@Uè?Þ°@AÒ›?6'*@ï?wì-@m›?‘.@ç›?¹ñ/@Zeš?”+@š?Á¤%@gšš??8$@Î.š?XÞ@X›š?Û´@‰q™?˜±@4™?-t@C˜?®M@m³˜?o”@6ü˜?Ó®'@-™?£0@]Ø?<3@—“˜?Ù3@þ;™?8N4@z¨˜?=j;@PI—?‹ß@@Y•? Ý>@‚d”?ßp;@,½”?ö6@`-•?Ý2@9¡•?›3@û–?K81@ß7–?Ý,@òô•?U;)@il–?¿D)@–?L^(@5”?ÓÌ%@†U“?¸,&@_ç’?õm+@G“?,0@ŒÀ“?5@]‰“?ØÄ9@:“?>c7@Ö’?9@Ûí‘?Ž=@mô‘?¹F=@‘?õH@x?ßjJ@¾[?¢sL@›’?„ñ:@ÒXŸ?­®,@­i?g·'@x¶œ?ˆü@½Ä›?@;_›?‰ô#@‘W?‘Ü @×?O!%@+œ?ÿÔ,@ñˆ?hx1@Q‡œ?=.@õvš?ÔE+@Ò_š?¿½#@Dÿ˜?xÿ@Àë™?@p0œ?”@¦©œ? Â@=f›?@´ô›?÷B@ÍÛ?°1 @2–›?Ê(@/e›?¢&2@²S›?p4@Ÿš?ih3@ïIš?Ýp3@À›?`7@z™?ëA@ û–?ÓF@Ç”?ß;@ š”?I\6@@ñ•?IÉ/@e>–?V$1@D~•?yª3@ŸÄ”?d4@ÂW•?aé-@g?•?FX(@'7”?­$@¿”?gâ"@÷.“?„s'@Á’?(ë+@ýC”?Eo1@ N”?;<@I€“?uÐ=@¬˜“?Q19@s¾’?Ç„8@”‡‘?ñÎ:@¢s‘?}Œ>@>Ö?UD@VH?ÚýK@_æŽ?ɦQ@V?“Ò?@XÒž?Pz,@¼?œ?Š$@móš? ;!@þN›?š"@”„š?¨M%@Gð›?ëQ%@é­?=Õ+@¬?åV0@›^?“ý.@N¨›?D&@`š?+("@7¸™?¤þ@ 0™?Wp@ø˜?“¶@wÔš?z@Ćœ?_ó@Kž?-2@€,Ÿ?c:"@˜Kž?»^)@Ó‘?Š/@éíœ?…2@¬fœ?x1@¥œ?Þ3@ˆnœ?D£5@+›?ü=@V™?©¥?@ÿ!•?š^7@.©”?…/@J.–?z5@z–?Ì7@Çù”?[5@^I”?Ç.@$r”?ª»*@k£”?¨K'@¼V”?"$@v•?©Y$@Rä”?JZ(@*1”?NZ1@க?G7@$•?&B@@D”?Âf@@fŸ“?Ä–<@¢²’?Ö‡8@19‘?£ª6@P ‘?Y=@@#'?ÒÑF@ôkŽ?¿ÌN@x?2ËV@¥¶?'’L@ɨ?ÁÁB@”ž?æ6$@댚?žÔ@Yš?2Ä@òš?&ƒ!@2dœ?fj#@DS?ïò)@Ä„ž?F0@œÎœ?Iw-@oK›?@ì*@•q›?{ !@=Yš?Ö=@ š?Hå@\Zš?z»@ɶš?ª@¦+œ?Ñ¢@ Ξ?}Ó @vÚŸ?—'@xŸ?;|,@+æ?Ïó-@&u?o:0@aN?Ëý0@ä?W0@l?‚³5@,3œ?Ù;@±Æ™?×+;@ƒ­•?·K6@Ô{•?Qƒ1@°–?+™6@Êו?b´9@î•?F…6@¹”?Ô„1@€”?ïÁ-@ÄÀ”?Ñ0)@°“?c9-@E ”?¹?*@­«”?›Q-@¿›”?‘q6@µ“•?åK=@iŠ•?è~A@¸”?n<@3Í“?þ8@T×’?¡7@QC‘?cý9@aj?Àú>@,o?F~H@Ä?ʹO@=ëŒ?l[@ún?ÉeV@@Z®?5nY@yœœ?ïØ@0ј?g@bæš?þÏ@FP›?ï"@Oÿœ?I²(@Mkž?‚%0@ú?ö.@ü£›?Æõ)@¸š?Þà#@.œ?Kã"@ê0›?Ú¯@"þš?tO@û­›?Z/@¾? ¬@Låž?I &@‡«Ÿ?ÍL,@^BŸ?µ /@(?p.@5‹›?Ïc-@ôØ›?G'2@BÔ›?â¾2@f~œ?ʾ1@)„œ?Ðd7@ëš?ßå5@Çn–?ö0@œô”?ì-@4 •?«s2@p–?©d8@&•?ÕQ5@ø”?äº5@˜ù“?¨7@ºû“?ÎR1@x3”?&.@¨Ï“?SB/@ w”?Fä4@¿”?;@ä •?¸¿?@Ì”?ìWB@ ““?8—<@FŠ’?85:@e’?39@´ç?‰;?@ï;?}>J@ÞøŽ?ãgO@mm?ÔÚP@׌?·]@ {‘?úËb@÷Ù ?¯”U@2›?ƒX@Í™? ¹@‘ š?’@Ê›?’%@yÀœ?ôÂ/@þ ?O3@²(œ? 6*@Óó›?*“&@X?š?!%@ÆM›?ê×@2 ›?Ý@¸îœ?Ùx@BàŸ?üµ@¯+¡?X"@û,Ÿ?-,@g™ž?¿)-@“›?s+@‡½™?ƒ°)@\m™?¢-@S9™?Û.@û¸š?›1@to›?iØ1@ ^š?bX0@¦—?¿t0@þÒ•?-+@><•?þV,@–?À¤5@å•?¿5@Q€”?é;9@‡¡“?Lû8@ “?K„7@`@“?Ñ1@(,”?¦¢-@ƒ÷”?+Ø6@e±•?Äi;@é•?`¬@@1{”?ÖýA@!R“?Ú?<@¾D’?¿´:@4ý?;‰?@ûÕ?¥[G@BèŽ?âGS@á ?§R@ IŒ?5eR@ (Œ?þA^@¹s?7Ça@™f ?¨b@;Vš?›@û5™?—R @ì™?ÑG"@¦æ›?ä*@‹œ?#1@Éš?¿+@JÀ™?Íf$@%œ™?Lk"@ÊÙ˜?9Q @ à™?+$@ëÚ?8L@e©?A—@Z¡?Ø"@Ò¡?S2$@¤ºŸ?x1(@n(œ?6\'@»r™?4j'@ž™™?8D&@–»™?˜G*@ÈTš?†Ö-@kš?Ž%4@%;š?8½4@ñ–?›51@ç •?Êñ,@Úù“?Ä,@µt”?C°2@G•?ÿ 6@Ÿã“?*Ž9@r’?a¨9@#<‘?…¹6@ ’? A4@Ò“?݈2@-Ö”?ÌØ9@‰•?¨@@•–?T@@¼½”?Çä?@…þ’?v•<@Tã‘?v <@œ‘?YPA@x›?ªJ@÷+?‘R@-Õ?µËT@÷û‹?XVW@ÜŒ?ð‹`@Á‹‘?ŸCe@Z¦?Çs@’ì™?ÿ@QŸ™?ðñ @šC›?»&@å]œ?¯1@)öš?áç0@©ä™?H%@;«˜?a@ @hÒ™?Wh@“ã˜? @èoš?—¥@OEš?¯ž@ºMœ?ÿŸ!@$;Ÿ?fÎ&@ ‰Ÿ?oH!@fÍ›? !@;Ö™?7#@ÁV˜?s"@Lš?c%@V¼š?ò*@ÍR›?Ó 1@ììš?A­5@?+˜?+k5@so•?iÞ1@x)”?m0@Rz“?¤³2@Š“?¿R4@œ “?wê3@?Ø‘?6Y9@@Ë?O+8@ûª?f4@(9’?8=7@Ã-”?´ù8@Ø•?p B@;#•?X1F@ŠT”?TãA@žÓ’?ì…=@ ’? Ð<@§!‘?0.>@!?cFI@í”?‘NO@ÇyŽ?—§T@°Œ?C÷T@†C?“›b@AÔ‘?y e@o7ª?ž-~@/°˜?ö!@º;™?˜<%@HXš?bÒ-@‚z›?ªE0@ š?ÈV+@3M™?}ü @š?I<@¢Cš?Xõ@j™?щ@[À˜?[‘@ؤš?ä@Fà›?7"@v¸›?K#@š²›?mg@oš?˜!@X š?ŸR!@|—š?޳#@™½›?Îa)@=?T%.@nR›?„c5@Fó˜?Å5@LJ—?Ji4@u–?óª3@éñ“?˜•4@/‹“?k94@}/’?Í3@<’?¥†4@ˆÝ‘?W9@°°‘?SÝ7@Šg’?%5@$%“?\:@㸓?+8A@àד? ñD@¶@”?dn@@,“?§=@㥒?¤Þ;@:\‘?¢ÜA@p}?ädG@4à?³L@?+0S@ÕI?ù$Y@ZF?Ù0c@z˜?ø„f@:U¤?A"}@´ ™?™\#@_Zš?é,@¡š?4 0@¥›š?†R-@tЙ?âX$@Šš?0Z@7¦˜?’W@Ôà™?m>@ß¿™?ô@: š?˜6@3Ù›?•T@µœ?¸¶"@š‰š?}©"@ðö™?GS#@Âá›?xÎ$@v³›?ˆ$@ÀD?Až&@0Þž?Äo-@èÝ?‘’3@‚­š?ÏR7@•—?„#4@aN•?Xš2@‰¬“? ±4@Ÿ²’?\5@æB’?Üé4@Vc’?¡Ø6@"l’?:_;@Y‚‘?h 9@ ’?õ”6@b’?†:@Vc“?ØLD@ÞN”?ýZA@p:”?¼ü@@ “?kl=@ä_’?xª>@w‘?2‡A@8Î?BPE@sÖ?¼L@Ô3?JS@ª$Ž?¡f[@"?Þ¼a@+§?Û—f@!ܘ?Åïl@ªš?l<)@¡š?bö+@‡¯˜?#*@Yh™?{(@w³š? .!@z¬™?¬7@]ï˜?0<@Ù™?„@±à›?ö¤@@Ê”?>@ê “?~ˆC@Gù‘?™ÒC@Œæ?29D@üF?œTJ@­?4P@J@?¨§Z@É=?L’d@?\9c@¡?Fd@߬«?œÕ‚@á›?Ô¯,@‚q™?äâ)@̉˜?Æ-!@mߘ?jÅ@ÿš?ô† @?kš?=@]š?$³@ j›?3„@(až?¤¦@=ž?# @.á?@W @1sœ?QK&@òñ›?Ñ´,@°œ?Àù0@±<œ?3í.@!?Œ,.@¯œ?ï*2@U›?æ·6@‡¿˜?f07@|–?½3@]!“?bk-@ö†‘?–Ð-@Ìï‘?Q1@œ’?Õ 5@ÚË’?Ù5:@ý’?*ä9@Kò‘?ó >@ ’?©»?@ÂÕ’?¡ A@õ ”?Ô,@@/!”?ê:@'ù“??@1®“?¦ªE@:Q’?”J@T@‘?6J@Ð?bL@Q?¸ÍP@ÐÄ?HQX@µì?ß§d@¬AŒ?Wb@”ÿ?ÁN_@›¾–?ðg@&W›?„þ,@Íù™?XQ)@­™?z @Õ»™?„O@£Òš?¿Ì@8Nš?^!@±›?Eœ @êBœ?â#@ž¶œ?x¦"@é`œ?À#@wTš?˜@#@£™?©!&@ý£š?sD*@S!›?Az'@pY›?,@§œ?ß-@ñ›?MH3@fW˜?½X8@ÀË•?Ž25@fk“?pè2@l’?’1@)P’?Ìñ5@i’?ÄÁ8@ú‘?29@Vz’?¥‚>@¦’?§A@º•’?^Å?@Þm’?'ô@@Ò’?ëb@@ÒÃ’?=@û’?ÔÉ>@ï“?·nG@|Ä’?Ó÷J@‰a‘?MYL@·Ã?5éI@³A?ÄL@¥Û?ÄgR@㢎?DÎ`@ ËŒ?ðec@¶ºŒ?ÀU[@§ð‘?®ua@€ù˜?µŠ*@ ™?Ño$@WŒ˜?ø@ƒaš?žä@i°™?r0@f™?}@s#›?:#@h ›?f‘#@߬š?Ü$&@ º—?È¡!@3K–?ÃÚ!@™J—?HÀ"@ó)™?lu#@¶™?4z(@ºœ?G.@MBœ?‹ö1@#K™?¡k2@1ç•?„ÿ0@@†”?„/3@e»“?*6@È’?Dz;@³ ’?Æn=@¼R’?‘w=@r“?§q=@L“?#w<@•k’?îÏ<@ŸÅ’?–=@Í“?¼>@“?mê=@‹’?^d@@'ˆ’?A2E@Ü©’?Ò²M@¬ò‘?þVN@yú?SJ@~a?5yI@ M?ø­L@Gð?Y¢V@ˆ¤?Ü}c@oô‹?×9\@åí?!ÛY@°—?’'@N­—?P^#@—˜?ÞÂ@[v˜?¤ž@§¥˜?m5@ª˜?«â@f^š?vÁ!@Pöš?À$@¨™?›o!@ ¨–?³µ!@Z3–?±,"@ ž—?Æ©"@ý™?æ•&@˜à™?øo.@W¬›?“2@Èá›?z´6@@y˜?Âm9@>´•?s7@ Á“?kq7@ái“?+ 5@ H’?\#;@Ú‘?w,?@Í’?7¾A@‰>’?ÎSA@b1’?Ø@@@. ’?+#=@%Í’?`Ž=@Tù’?i';@¬Ì’?<@¹ú’? &=@Úé’?dE@ýé’?3O@Áß‘?k"M@°-‘?F L@<´?WG@pò?ˆ8N@ìX?8wY@û·Œ?PÐ]@„"Ž?$U@ç—?ø²#@Í’—?£@(S˜?NX@Q˜?šI@FW˜?þ³@›ð˜?±#@¥•š?!@:ýš?lŽ&@´Q™?¤(@ u—?^(@DX—?Ë,)@uƒ—? 9(@'Ì—?ØÕ)@¸9™?áÛ0@GNš?D²5@R]™?›Ü?@¾—?KÜ<@Nî“?V”7@L×’?`­9@˜=’?O‘:@’ï?ë>@¥‘?‚fB@û‹‘?ˆE@/÷‘?€êC@Ýý‘?þpB@A’?Û,?@¾"’?M1=@@“?ƒm<@ùY“?4¥9@;o“?#t@@fº“?)vK@Ÿ“?§øO@%æ’?¢'O@il‘?5×H@®Á?2 I@Ç?=‡M@שŽ?bL`@»IŒ?}EW@‡À™?@à’˜?ôä@Q)˜?o›@èÝ—?¼„@u˜?Rˆ@ä²™?û3#@ƒ½š?.)@=ôš?‡s(@¤È˜?6å(@äû—?A)@_6—?Vl'@Øå•?BË%@Ü—?Ç/(@¢™?’î-@”«™?0ý3@·G˜?$>@°z•?š2:@ñ2’?ÿo8@Ÿw? ´@@×G‘?„pA@S‘?c;D@5õ?ƒÎA@‘?¹B@­ß‘?S§A@;é’?$€@@®A“?Ž>@²“?³ê>@¹8“?õH=@A ”?6h<@”p”?÷D@]d”?¤«P@ÈU”?ST@’?pyM@ë?ëpG@ÊI?=ÞF@©?ŒT@x[?¥ó^@rlš?Ðk@û+›?*@ û˜?|y@ý˜?œT@”'™?Ãm&@X‹š?“*@ÃÄš?©X&@¦™?¯$@቗?@V&@W—? ¤&@C–?k'#@ÛÝ•?‹å#@L8—?U'(@ÀÑ™?¯x.@š?îà6@h×?ÛÝ;@"w”?ï9@.‘?8{9@k?ÓÜ>@©?q`B@G‘?l¨B@P’?|/?@N’?^x?@0’?NpC@¢“?Ö–A@8S“?¸O>@ãw“?Ú>@ïÛ“?ò<@…<”??q@@ƒ”?è’M@Ú"•?϶T@ô“?ƒCO@ªy‘?_QG@õ¡?ºi?@à?-0I@ÛŽ?WÄ[@Kø™?’÷@Zš?žä@¡˜?‹>@«½˜?8J @‚6š?¹þ)@o¿™?A©,@wY™?°¾%@ÐÀ–?(T$@ŒY–?iw'@<–?‰¿$@¸I–?·Þ"@ —? $@2™?>€.@ƒš?ô²7@l6™?Ó÷<@Ü[–?„õ=@U÷’?žP:@Ü!?&d9@<Ì?;Å<@^‘?ú ?@oŠ‘?v©=@Xü‘?æ5@@Y<’?\@@‘ð‘?ÉË?@­’?°¼>@¾p“?ú£<@¶Ã“?ÃÎ;@—f“?•‰=@³?”?u_I@æ4•?öýQ@›Y•?®R@ Ê’?ߪN@1ç‘?á¸D@ݶ?ë–D@“?Ä*R@üa˜?­¿$@ƒ€˜?Sß!@*<˜?ë@Uì˜?/$@¯“™?¨=*@¢Õ—?°B*@$m–?¶å'@m—–?¦;*@žÇ–?c"*@”Q–?ÍQ$@l–?ž¾#@L—?'Ñ+@n™?¬O6@VŠ™?¤š@@ãE˜?EjE@BÕ?ZB@c“?©Ü:@ך‘?Ë;@Á’?Ì5A@>e’?ÉC@îF’?„ÒD@)“?$çB@êÙ’?Î@@;¿’?\ì=@*+“?žb;@£b“?TE<@3“?ʨ;@–”?TÐB@ I•?¶cJ@9Õ?~@R@›”?+†U@]õ’?‹K@-)?¯D@üË?«ïM@`f—? @Š—?+*$@´W˜?Y{(@–ë˜?„2+@ïJ˜?VR-@||–?0¤,@Ž¢–?ãù/@C!—?c1@ÚÀ—?³)@’–?ÍÅ*@SÔ•?À ,@6~—?¤Á1@/ç™?ð´=@–™?;]G@S ˜?5™D@å_•?J@@Ü•’?Ñ¿>@ Ü’?²C@1%“?‰ºH@ Ù“?{J@㥓?‰ÊF@l=“?œC@Ùä’?]„=@àx’?}õ<@„ç’?s =@ƒ’?‹Å>@©›“?„k@@¿•?‰bE@¤•?nÈM@¯c”?>fW@ë“?¥)V@Ãב?$&K@ÂL?­*J@µ—?Úu!@Pà—?¸]$@Kö˜?&Ë+@¼÷—?"I-@’œ–?½¨-@KH”?®--@ô>•?Á)@ߥ•?Ï€&@Çs–?Ô&@-–?t‘-@yÄ–?Ÿž0@¶$™?Šˆ4@î]š?y@@_™?¶¾I@=–?ÚcH@¬×“?ÖE@ƒ=’?}iH@Çœ’? ¿L@þ’?ç‰O@.ø“?´L@½)“?sìG@ “?÷ÑB@UÛ’?n¼?@@E“?ÎC=@äz“?—>@ƒ'”?žE>@3•?«B@מ”?-%G@cª”?oQ@ÂÈ”?[—W@±+“?ROU@*û?j@O@M2™?Ö=#@`È™?ç¶(@ž³˜?©S/@Gª–?4ð.@¦Ô•?¸“+@š†”?.+@¿s•?Ç&@#Ÿ•?–²$@€9–?×â%@Ï–?0E-@ç˜? B3@p™?…7@³Zš?B@Pì˜?r‘G@„œ•?@²G@5Û“?+9H@½Ö’?èL@0$“?,»P@î“?abN@+”?+ÀL@T^”?Þ!G@äÜ“?I|E@”e”? B@S´”?NA@à|”?8B@ê•?Q·C@¡&”?0E@D”?&K@q°”?¸Y@!H”?¥qZ@C²’?NT@Äp™?àÃ-@åX™?u¡5@J4˜?mª/@&!•?ʇ.@î-•?Eä.@@A•? <)@–?ìò)@]G–?G“'@ ü–?ë *@+K—?8€/@ä.™?¶6@¡Âš?B?@V7š?9!I@³ˆ—?ü›I@¤Y•?®F@@á’?d•J@L´’??“P@Dñ“?ÄoP@†•?WíK@•?OL@žä”?E%K@¸•?GDH@ •?N{H@ùÓ”?ÒùB@=•?A~@@’0”?L\C@õæ“?DG@p@”?TR@fÓ”?,ŽW@7ø“?ÎÏU@¥ ™?‰U2@Ù˜? d5@6’—?¢ž4@^§•?WÜ/@2²•?O0@¹u–?kÃ-@1z–?ÊÇ,@ùÅ–?ÈG-@.—?ý¡0@l7˜?_8@ÎÕ™?yË@@U=š?7•J@vI™?mpM@žb–?i”?”>K@«Û”?'Q@&Ô?[ŸQ@—g˜?´Û3@Qt—?Þ3@Q—?øF5@™–?"õ1@þq•?w*1@D –?éË1@ë•?ò€1@â^–?öø1@DÁ–?[î6@r˜?ì=@ý¼™?|E@'¾™?QbO@žø˜?÷ÀJ@D…–?H@AÏ’?¢¾I@D#’?³ÚK@²¼’?&L@–“?ž0O@1I”?k M@Eº”?šrL@+‰•?ÖÒL@æù•?ð,I@Äñ•?ðšC@$m•?"8B@=ò”?˜§E@üŸ”?ì–H@•?­ZH@"ï”?›mI@Ôþ–?´.2@_š—?æI0@aµ–?Sé/@8«–?c3@]$–?$5@¸–?ÐÁ3@ò•?wš3@.9–?tâ6@õ.—?I;@T¨˜?µƒB@v™?KÊJ@^‰™?N@n ˜?ĹH@ã”?ÅH@á “?HžI@P’?jáJ@N[“?¾2K@‘î“?ÆèN@vŒ”?ýGP@C•?|{M@§î•?î:K@‚©•?ïYI@pÏ•?VCD@†²•?“ìE@•?ŒÐG@ó •?{áD@ðh”?óC@Û–?I-@æ—?Ó,@Á–?8³-@%—?¥)3@#¾–?nÚ5@¡½–?&´6@—T–?»F8@:c–?ix:@ÅB—?Ùæ=@Óô˜?£E@ˆw™?­0M@)è˜?Å'K@Á>–?‡íG@ás”?ð;F@ÿf”?‘ˆF@Éú“?WîG@¹”?»fO@—‡”?òõQ@Y•?JN@"ã•?¶ŽM@ø‚•?>ÁK@/•?%IK@Œ,•?xßH@L;•?â®G@9P•?ŠB@'ä”?Tµ>@¹]–?­-@[f–?ÿç)@ò–?Øq+@èÆ–?>4@Â{—?<8@9æ–?F³:@ð–?¬:@%—? r;@X˜?G@@.Ÿ™?¢âI@7 ™?žXR@–Ÿ—?øJ@ »”?zF@ûö”?ë¬A@áT•?ÓÂH@_É•?cM@”ß•?GGR@nJ•?›°S@r•?å.P@Ù3–?£æM@Àð•?yyO@g¬•?<‹L@i’•?1ÙG@0«•?^`A@·Ê•??@n2–?î.@›–?øÉ,@d–?«À-@Ý(–?Qe2@ÜŠ–?r;9@Ú–?™¡:@Ò—?ÈM<@ÇØ—?Ï@@{˜™?âI@™™?OÂP@ç ˜?µmN@·•?£êF@T•?W/D@tl•?­¢D@!€•?8øJ@r#–?í¥R@vƒ–?û‹V@ x–?9žU@&/–?ðžR@‹‹–?Ì®P@ÜU–?¥iS@7–?-OM@ª–?ÀI@Û2–?!D@%—?·ç.@ðe–?ÍE0@?z–?¿*0@ù¦•?Ë4@+)•?;@=5–?šË>@¼W—?PKB@tø˜?PF@„Þ™?ÅûL@ ¯˜?°^P@»r–?ô‹H@n]•?æçE@!a•?ÖA@-“•?MˆD@Õ•?'…J@Y—?¨PS@ò—??,X@y–?ßÎV@§–?‹ÓS@ÞN–?IØT@@„–?4×T@í¾–?õ–R@ —?T¤L@q—?gÃ.@š–?øO2@{³•?/÷1@p•?¨Ø8@ßù•?xž<@ö—? Ç>@ñu˜?I‹A@~´™?ÑÚH@vÙ™?ù¯N@¯f˜?7ºL@‚™•?þõF@•?{›E@…m•?üC@rŸ•?ÆD@T–?*÷K@^˜?ƒ´U@üâ—?[ÄY@­Ú–?·W@šG–?òwY@`Ë–?#IY@Ä—?^ÉX@œ—?G_U@š7—?——0@Œœ•?xy3@£Ã•?Ÿ6@œm–?‡ ;@‘¹–?ó¥?@U‰—?E¤A@Ö)™?ÿ¸E@Ðoš?tI@6Öš?bVN@ÂÑ—?TK@0I•?qÀJ@×”?ÃG@ôE–?ãD@—? DG@};˜?ïÇO@ư˜?×Z@Ôñ—?—\@MW—?¸[@éH—?»^@-A˜?qg\@”…—?¯½Y@™'—?Ô#5@`–?ߎ5@”W–?¡9@ [–?øè;@Î"—?§Á>@˜x˜?žPC@4Qš?Í!G@¨íš?:M@àX™?QåO@Ýt–?0DL@^ÿ”?‹KH@æx–?H[E@À«–?&×G@žƒ—?+ýM@Š˜?ŒS@®‰˜?Y\@â}˜??²]@¿ø—?ò¨Z@Aû˜?}ÿ\@¹º˜?ÉZ@Ë—?ßÖ8@Ï–?ú;@É–? ,@@ŸF—?jÆB@…h˜?Ã(C@ ä™?˜GE@‡ïš?MËJ@Eš?’óQ@Ô#˜?ØKP@Û\–?ÇËI@g—?RE@9Ž—?ÚŠG@<—?Ê~J@S˜?mL@Ђ˜?z¿R@KÖ˜?úY\@ßŘ?<\@Ãv˜?²Z@™?,ÇV@%8—?$.>@»%—?Ï8C@vÀ—?ôiF@°˜?D_E@ ”˜?£4G@&š?$MI@kšš?Ç÷O@ ™?tóR@%P—?˰N@1F–?ȃH@—˜?b^F@Õc˜?£áE@åø—?wI@\¯˜?/N@|ñ˜?~VV@ÿ;™?~Y@Éÿ˜?ÍZ@´˜?I6U@ëæ—?ÛgC@Zo—?ñ²D@ÉÝ—?š€E@_ô˜?q@H@h±™?u5K@¿š?޳N@gHš?ñV@ƒz˜?â‚P@–?sGM@}–?ÕMJ@!/˜?€oG@æn˜?ñJ@‰h˜?D®M@bý˜?¸tR@bD™?©mU@93™?KV@ìÄ™?3 U@±N˜?éhD@ï{˜?Ö D@L´˜?\iE@b™?DF@ sš?u€I@×Áš?Á%Q@ã*š?} U@òr˜?á÷R@>—?YÉN@è—?$N@¯î˜?•íL@ #™?°AN@z™?VôN@ëš?MiR@#³™?pT@Ì?š?¾OT@ºé—?û-G@]˜?E}G@:™?O»G@MEš?¢ÀK@·]›?÷2O@Ã~›?púU@iš?¤ŽV@wy˜?Z²O@aC—?UÑP@‰˜?µAO@'q™?þN@‰uš?ÎP@»7š?''P@Ž8š?Y‘R@JFš?ÄæQ@ç˜?šŠE@9 ˜?}'H@¢Ì™?äØJ@Žâš?ÀzN@Ëø›?2S@­Î›?°ÀT@Ô·š?SïR@ÏN˜?émP@¢ÿ—?-O@T§™?O@Pš?xwO@«üš?äÎQ@Ïš?w+R@©Ìš?‘ÁO@ca˜?†E@a ™?ÝàL@d®™?`ÙK@J(š?¢tM@Qèš?ŠåM@”И?o B@U!™?ÉsB@YNš?&F@UAœ?Ä^O@ó²›?ËdY@kŸ™?°£T@lD˜?¡$O@õc™?óK@{š?]ˆM@YD›?ã¾M@G­˜?×ÊA@R˜™?Ô|B@9t›?øùK@ Nœ?|[T@«:›?:IX@…p˜?ÞèR@À™?@O@ cš?(,N@‹`›?¯ZP@ k™?9ä?@²‡š?ÆñE@l{œ?|IO@¼œ?ÍV@/›?&S@{™?XæO@Ãmš?EN@¦›?Õ·P@ š?ÏD@EÏ›?ÁI@Jñœ?40P@ œ?Ö¼T@pŸš?”fQ@v¼š?[ÒN@sG›?Ò‡Q@Ô9š?9D@æœ?ÓI@ðœ?É6P@)ˆ›?’±S@¯š?œÊP@ŸŽš?¿pQ@Œ8š?KE@R"œ?”dL@ $œ?…S@íåš?ÖIS@éš?Q@ÃY›?üI@U¸œ?j„P@âÆœ?¼§W@÷Zœ?¹TS@KRœ?µ²N@ÅQ?œŸT@¬œ?U@]?xêO@F3ž?×üS@„Ïž?Q@çš? ¡(@Ò(›?kg)@¥¶œ?ÀE*@sœ?]Ý)@›œ?'Ž'@âU?¸~%@æ?Þ’(@§?Ù+@pœ?®–,@¥œ?7·%@‰›?ƒá!@Ò¼™?»ë@°{™?…:"@ºŒ˜?ƒÜ @lW™?ïj&@˜é™?M–+@*'š?²-@Ï/š?’æ)@æÚš?ËR&@´œš?[y"@Ú¦™?Hz$@ š?5"@^r˜?ë7@^˜?·_@l¥—?§ø#@š™?ô{.@ÝÆ˜?0@Ž—?„.@ÿ—–?¹ë,@9–?Jÿ)@h—?cü.@妘?£o/@Ÿï˜?²e,@ìT˜?¤z-@4ð—?Ÿ+@›˜˜?D,@„N˜?¸Û2@ÃÚ˜? M7@Ñ-™?ad;@¬C™?¨|=@?"™?QC@Þà˜?Õ{D@¯v™?ˆËE@›¾™?$G@W ™?õ™F@à˜?eD@G˜?Þr?@à ™?Qt<@f]™?ÄC>@‡õ˜?Í;@ƒZ™?à A@«î™?–A@³Áš?œ•D@°Aœ?‘ L@þ?TÔJ@Q›?ž0)@1 ›?w%@i&›?#T%@Ù÷š?§W&@õ›?;{$@du?«¡&@S«?œ0@”3ž?(e4@®Œ?©,@g«›?‚&@++š?Þ!@Y‰˜?KŸ!@\Q˜? !@ ˜?¦î$@ד™?ü2)@µç™?ÿ¡,@Ïš?ÞJ-@ƒôš?‰+@ŠE›?2V&@`›?q;%@S<š?¡$@ã6˜?=í!@Ü—?ïÔ @d—?µš#@£=™?Â%*@ß™?Bö1@¯ì—?\_-@•d–?P¢(@nd–?M%@l÷–?ÔF)@íß—?ŸÇ.@>3˜?+Ù,@CÖ—?ž+@˜Ð—?«7)@Ûr—?<,)@˜?lô-@Øx˜?Z×1@Íq™?+L2@K“™?”ë6@š? y<@ÿ1š?ËÏA@iš?êÆF@ˆš?LˆD@Êoš?±vE@I™?7rE@ù˜?Û°A@ÁΘ?x€@@Õc™?ëS?@]Wš?c,=@-š?Wf@@tÌ™?y ?@0ÿ™?Û‰B@Wçš?ùáJ@ b›?ˆ&I@ ›?Zx%@7š?Ï##@]š?"@¯t™?^ñ&@0›š?$B)@ଜ?5C0@ Á?GK7@¿›?k½2@Ö›?Þ®+@µ®š?gJ(@×®˜?˜»!@Ù ˜?·¸!@ãC™?4!@Äš?û$@Vó™?-Ÿ*@³™š?0Ù1@;1›?¨£4@” ›?DD/@ÐR›?+@§/›? ë%@sÓ™?U$@¢˜?£,$@Ê8˜?r,"@Ù?` '@¼*™?  .@±—?}%1@­U–?Ð+@Ö?¬A&@’Í•?©(@…È—?T×,@š˜?,œ,@æš—?ö(@D—?(m(@‘¶—?õ8)@,î—?Aõ(@ +˜?Dê+@Y ™?I;.@Ž™?ì[4@® š?(¾9@“gš?¦Ï>@MH›?×4C@l.›?|AE@çÙš?yÇC@ï ™?YöC@@ؘ?îVC@ª¯˜?%A@r™?œ[@@òèš?-îA@¢¬š?=¦A@£!š?_¡B@˜™?RLB@¢š?æåG@`µš?Ê F@y›??#@>Mš?H…"@Ùš?]%@S]™?¥¸)@ô9™?À¿+@Aó›?‡|2@ä^œ?ÐÖ4@(Gœ? {1@$›?ìÖ(@»Ò˜?´†%@üõ˜?‚Ò @$¼™?]? @—(š?†¨#@âš?ó-&@û›?²…,@K›?Sû4@|Ïš?o¿8@> ›?¸©3@õ3›?§C.@›?x£*@cÍš?.…*@O:™?'@¤Õ˜?¤l"@“™?'@!q™?C1@àÀ–?Ol0@y–?;)@Nr–?ÎÙ*@›y—?õ-@[Ù—?©)@Âs˜?L¹)@{¼—?‚*@æ—?ÉÓ'@?å—?{(*@u™?n.@ûÆ™?ˆ 3@<š?~)5@|_š?)s6@š—š? =@$Ûš?šRB@~]›?@ðC@Šéš?QöB@ØRš?K×C@%é˜?D3C@ײ˜?ßA?@Pp˜?*t?@÷š?ø@@˜­š?3FB@š š?ö-E@ɨ™? aD@!6š?¼G@ßD›?y´D@˜œ?F}$@B›?–f$@¸}š?ES'@6˜? *@½{˜?U-@ï›?¿m1@8 œ?å2@Ï›?æë/@Æ™?Ï+@ñy˜?Ïó&@З?rÇ$@1ߘ?*”"@$Ý™?HI&@㦙?|Ì+@î?š?¼¿/@SÍš?'24@¥°›?{•9@1œ?´ª9@Æ›?k“2@ý š?º-@áÑ™?ŒŽ,@7E™?*¡(@œ/™?ÉP&@:8š?ÊÂ-@*I˜?¡,4@A—?%1@‡—?Ê9.@Õ³–? ¢/@µ—?lƒ+@ò/™?Bý,@!·™?Ëš,@&š?Zì-@*k™?<[/@1Tš?Õ….@²›?2ô0@T š?ö»1@Íš?žO2@¼qš? §5@z0›?¢.9@WC›?>á9@øš?\ÎA@›?^‡F@A š? ÂA@¿I™?£?@èà˜?°‡>@îs™?¨B?@tâš?!±A@90š?¦UE@Òš?VJ@䤚?¶vI@9<›?ÇC@]¿œ?³(@!Í›?t)@Gך?pk)@° ™?*n&@>ñ™?åå(@§÷›?¥ô0@T¹œ?ä4@òÛ?3†3@ò+™?Ž¿.@WÖ—?:‚)@ƒ"˜?¸&@”T™?—''@ø$™?Ó#)@ØB™?¸³*@ð{š?O¥*@ò¯›?7²1@£ œ?C9@¬¿›?b9@O'›?û>2@;Kš?Ä÷-@Ü`™?Ï&-@\Ž˜?Ñè)@õ[š?Ž*@zi™?Ë/@*q˜?y*2@dv—?žª2@*“—?U‚2@þÉ—?Ó/@@b™?áv0@ª›š?ˆš1@Á.›?"÷2@Úš?/3@™~š?Î 2@î®›?øT/@ g›?kØ/@BE›?†v-@¡{›?+Y-@X1›?3/@­ßš?óþ0@-™›?Ê7@®›?RB@9›?àC@ž¸š?ýXA@ê7š?²>@¿š?“c?@mQ™?©ÿ@@mš?óÞC@œš?[BK@ hš?`FI@•øš?¸ÂB@gÙœ?pí(@»š?ïF'@±8™?r÷%@ëš?NW%@IÉš?Õ}+@ œ?yÜ4@Œœ?…ë8@³¦œ?02@O™?)Ñ*@p˜?6ñ%@s˜?È9&@N ™?Qã&@¼™?}Á%@Q š?ïÚ%@§øš?• .@s.›?ëË4@•´›?sž8@™‰›?¨`7@ºû™?~6@Hy˜?³q/@DN˜?0ï+@Nfš?¢•'@CŒš?à,-@8\™?+}/@ \˜?¼´2@jš˜?íñ5@bx˜?à4@[°™?A2@¸iš?·e3@Sq›?rÇ3@—š?Úb3@ë™?O1@ô¥š?g1@Õø›?îa/@Òvœ?Æ/@o?¸î+@Wê›?¬+@2~š?hÂ-@f3š?¶w/@ö5›?dT6@g½›?ñ3?@P¼›?Ì•G@ýƒ›?ÑC@'Fœ?·ªC@Šœ?íeB@’›?¿E@Ú›?ö‚G@?š?€D@‰W›?ñpA@jB›?‘ù"@‰Ëš?11&@ ™?Y%@Îíš?%ª(@;ñ™?£Ý/@š?6@¯›?6@ø¶›?³˜/@Ÿoš?Êd(@î™?r&@Sk˜?wí'@Y´™?£Þ#@æš?G‹%@àš?&{'@2º™?% -@—Ú?&o0@Ëu›? 6@ü”š?+7@#Q™?>3@삘?xã+@Ò™?Dƒ'@xš?ù+@/µš?©@-@•n™? Ã0@걘? 43@êé—?ô„5@Ãà˜?9!5@©Å™?Ât4@†@›?ßb5@öh›?j4@ø«š?6B2@üz›?íÙ1@w†œ?ϼ4@%?æ2@Ë~?¤/@iªœ?x5+@n‚œ?!-+@·Ç›?³,@œ›?ð0@XMœ?Y!7@ôˆ?¡>@€?‹D@`’œ?D»E@Tnœ?ž%D@›5œ?«]H@l^œ?JÒG@ù…›?>øD@Dœ?8ž=@Ÿ¿š?øÊ$@±Kš?E¤&@’qš?+@|Öš?±0@lú™?€†3@vxš?!5@a›?¦¡3@c›?ë{0@cË™?-)@ÜÚ˜?_½'@Æ™?S]'@8¥š?ÝÃ'@3G›?±&(@Ó›?·Ž*@Ág›?M`,@_›?Ä0@ð•š?«02@ù™?üŒ.@#^™?Dw.@e™?Øy-@o›? ò*@µÍš?+õ+@Yš?žÉ,@Ê™?¡ß2@˜?Ÿð5@<Ι?(7@¾š?5â8@1r›?–Þ:@ÊMœ?g¶9@XÚ›?–33@¡1œ?x=2@9?¸†2@p?‹»0@î¬?½+@ÐÃ?*@¤¦?]ö(@½ûœ?ÕL,@—“œ?Yx0@Ÿœ?.Œ5@}î?ø8@¨Ô?Òñ=@k°?G>C@*?îB@Ó ?NJ@wÞœ?k|K@(‰œ?`#H@¯tœ?FWC@TÙ›?}%@‡ïš?‚U*@á›?§ý/@¤Šš?ü!3@.#š?yô5@€¤š?%k8@}½›?¥c8@Þ}›?k1@¨Î™?à¨+@š™?Ã*@¾¨™?¥)@’y™?äÔ*@ey™?é£,@s3›?Øc.@{úš?ÐK,@®¿š?¢‚-@Ònš?Sœ+@Ï€š?Nã+@«š?ùë,@>Rš? +@à;š?ü+@ø„™?)³/@î´™?øÒ2@±š?Ž53@Áš?Å8@†š?^Ý:@~›?kï=@‚Ë›?Ûý9@HTœ?G26@­Ÿœ?^1@^:œ?}=0@Ü¥œ?F.@Q?Îm+@îÕ?U×*@C!ž?Þ+@gž?ð_-@‹ž?ëÑ0@+ú?@4@®˜?Dƒ5@\ä?Ý„6@çÕ?,;@ž?ž‚?@”¬ž?§¿E@(ô?“åI@[Óœ?ƒ½F@Üóœ?š]H@p7œ?æ_(@÷kœ?˜B*@Æ^›?Ñ0@øš?Äp5@uô™?54@d\š?Þe7@n›?“4@ºÉ›?N,@¶-›?+,@dš?‘‰+@ô—˜?¯)+@¥ ™?ÌŽ(@°'š?Å‹*@Êoš?,@ˆƒš?âI-@ˆJš?‰?.@9š?ž,@øIš?¸‘.@9¢™?Ùe1@&®˜?Ëù/@Ò^™?’¤/@$Ñ™?ÄÛ2@ ƒš?~w4@‚Öš?nÃ2@i™›?É8@‰Tœ?–p<@ÿ3?—æ>@šE?÷"=@ à›?" 9@"ƒ›?Þö1@&?Q±-@P? .@-q?òç,@ÞÌ?.@:ž?9Û1@³éž?¶4@pnŸ?(3@ø–ž? Ë3@‹¢ž?>83@ >ž?7@Öž?ö‚:@îâž?+¹=@ኞ? gA@¸ž?µtB@ª?kG@ 7œ?ó|(@ªœ?Ÿ-@• ›?^E3@oÄ™?xà4@ܘ?\*8@™?´3@ÝÇš?”,/@ˆÈš?Rù/@R£š?že-@ÙÛ™?þ*.@;3™?9+@3°™?ñ*@TMš?•›-@³¸š?Ä-@­$š?`t1@Q š?å:-@\š?§o-@L³š?q›/@Ï9™?‘À0@Rµ˜?¹ÿ/@ü=š?š¬1@ î™?k7@çš?&ø0@묛?³­2@€œ?AS7@/!?–ö<@l?7@@üœ?Oq?@*ú›?Ê—7@7!?‚2@óÒœ?„Ê2@Tîœ?˜2@Ô÷?þ2@«Ÿž?)25@büž?‘O4@WŸ?81@²›ž?à/@Wµž?©ˆ4@>Äž?»,6@ož?16@J+Ÿ?mÉ5@¦Wž?·Ó7@?è?Ãå;@š1ž?8@@!åœ?è5+@©œ?Åä,@Šä™?ö5@×M˜?;4@Ȉ˜?Z¯1@I‘™?(3@m÷™?XÉ2@h­š?šÓ4@+Õ™?k•/@ ð˜?§U,@tP™?gæ,@K˜™?2/@ô™?‹{0@Ç*š?Œ„0@DΚ?Ç?-@š?gŸ,@Å­™?Й.@Þš˜?‘F4@ ï˜?ô'1@&œš?r?3@(u›?ƒV7@Ѱš?d˜2@†õš?•U2@JЛ?åŽ6@ôÕœ?eq8@®"?9’?@>áœ?É8A@Nn? )?@ie?>~;@9?wC:@] ?¦5@SÐ?{¿3@2<Ÿ?˜K4@z™Ÿ?6•3@–žŸ?T0@5©Ÿ?Y´/@Kèž?EÕ2@ùóž?U_3@×RŸ?:Q4@lïž?Ú3@F[ž?DU5@¶?·‚:@ež?çA;@H;?÷ *@Á*›?ê!/@¢¡™?ª5-@lϘ?÷P-@†y˜?HÑ1@ƒtš?,ã5@)š? ê5@Ùm™?@€3@Í´™?«s.@Ù"›?Hñ,@¬šš?ƒw-@BFš?Ù2@Úš?¯¹0@ôÄš?”º-@¿Gš?Çò,@ŽÓ™?¿«0@÷˜?Xg.@J®™?ݼ.@”™š?I_0@&›?¶16@A>›?ÿ6@ØŽ›?û6@Gœ?5Õ5@‘íœ?ž 9@Ø?˜X9@©nž?žæ;@¡HŸ?ýW@@vyŸ?^¾A@Í–Ÿ?KÇ>@9HŸ?Öê<@H  ?º´8@:úŸ?€6@)¡ ?*•3@õ ?£’1@vU ?«¿/@Ò¡Ÿ?ÆÛ0@6D ?Zý2@~ ?´e6@’çŸ?£46@/Üž?›6@h¢ž?÷S4@’?¥4/@–å›?O‚0@‹á›?ñ3.@$Êš?ß-@‰š?K_0@·È›?Ö!3@ iœ?¸30@£Dœ?d6.@v›?åš.@š›?!-@ÿyš?û-@Òš?,%2@Báš?ß//@ì;›?3@õ™?Ô~1@3›?¤0@ ò™?rq*@š?Ø‘)@IÝš?#®/@U‰›?x¿2@«zœ?c7@Vªœ?À59@$3?ô8@ul?/N6@ž?t_8@Äž?kŠ;@ÙûŸ?•HA@ªÆ ?jD@5-¡?¥ÞC@!¡?~²?@"à?‘Ò;@µz¡?6¥6@zB¢?Q0@r`¡?C},@“ ?¼•.@(@ ?94@J¡?Ï48@· ?#µ7@ÌñŸ?í7@¯—Ÿ?«â1@Éìœ?-2@Åžœ?$v3@ œ?·ù/@—†›? ~/@Rœ?[Ñ1@éМ?¯T3@@àð¡?”RB@Ê"¢?…_F@8¢?zC@¢?Ô,<@àØ¡?—4@ïé¡?ˆ3@ju ?¸4@a’ ?Ka5@¨b¡?°Þ6@0Z ?â±7@ w ?°ø7@t+Ÿ?:•1@#Ÿ?Í/@ÊÞž?Ì(1@Š?<2@7´œ?âÄ6@ö?™7@=^œ? û1@œX›?}^,@™%›?‰d*@Ľ™?ä‹/@Ó š?«\1@!;›?p3@bš›?B4@]ãš?β1@ºWš?ý÷.@‹Äš?0€-@ÙŸš?u/@øj›?¶H3@ž;š?n?0@ƒõ™?cú4@È›?tè8@S3?ˆ=@ì»?<Ü:@È^ž?o·6@Ôpž?)Œ4@Šèž?ç³5@¸ÆŸ?188@ c ?qö;@ °¡?yeA@Á¢?ƒ”A@Ž9£?;æ@@[£?˜;@ˆ"¢?× 9@¡?Öb7@£¡? M7@=*¡?I¶5@éË ?©¤7@•L ?np:@ øŸ?Ã2@ËÙŸ?±'@2¼ž?õ*@áuž?E+@Í4ž?uf1@ „œ?'½1@_ç›?»g1@Ì€›?.@a’š?W›0@ÍX›?–Ç/@¥|›?žÄ.@Hœ?Øî4@˜Œœ?³6@Œéš? 3@Kò™?ù0@NÓ™?‡»1@ŠÂš?Â3@éZš?j6@ûFš?¥/3@‹T›?kí5@V?lC6@¯ß?k$7@|ôž?x 8@ Ÿ?Ž5@ÆÜŸ?¼4@§T ?ôú5@ž8 ?($9@{¡?¨6@!#¢?+V8@ £?3°:@’£?…<@‰ £?ë=@š¢?~<@«%¢?2å<@•? ?&£9@V  ?ï}8@ަ ?†Œ6@t¢ ?‚1@-7 ?6Ô$@ËŸ?œ[%@ ˆŸ?=½)@€ð?˜D/@¾J?õ‚3@= ?{“3@[Cœ?&¡3@kYœ?Ô2@ Êœ?!®1@1fœ?Ÿ2@c@ªô¢?v?@&Ò¢?xàC@0T¡?„@@¦ã ?HÂ9@Ê^¡?065@ou¡?ý˜1@Á¡?†#@Oq ?[7%@ÈŸ?B)(@³vž?ZS1@fž?»?6@¸?ò4@œI?×}0@Rûœ?¢$0@Â?³4@b?ש4@±F?ud7@wΜ?@Ô5@y[œ?<5@=4œ?ñÁ6@Peœ?‚8@hœ?K£6@Ó›?Ç0@Ý*œ?»,@?Þl4@Ô>ž?ðð6@·LŸ?s5@:žŸ?©³7@ÚàŸ?Wd6@ù—Ÿ?©X5@Õ) ?¹2@”ý ?yz0@‘o¢?Ó0@¾¶¢?S1@ö˜¢?Á\8@]å¢?ÎÌ?@²\£?ô"D@ î¢?ŸÔA@íH¢?[½=@—È¡?èñ7@W¢?'j3@wV¡?yf#@Ù¡? @&@O• ?DZ,@ù¡Ÿ?÷¯/@ÆŸ?ª3@ È?(/@…"?4/@¾?Œå0@¿U?}Z5@J?äè6@±Cœ?·“8@¢`œ?EP5@­ œ?u4@™á›?¥ö6@®2?ŠB8@d®?}&9@( ?æI7@‹‡?Îi6@é+ž?n©9@'Ÿ?¬8@¥¸Ÿ?×6@gÉŸ?¶»6@ê ?Ï“4@A„ ?cÜ0@U?¡?ñß1@¼h¢? /@Ùš¡?‡-@ùŽ¡?7ï2@5¡?h#6@šQ¢?þÆ;@û„£?2=@|£?«!@@° ¢?HÃ=@‹¡?]P7@Ÿ“¡?€„#@))¡?‘ª%@'à?4h*@Ò ?8ª+@Ž$Ÿ?Qe/@`@çØž?ù;;@)Ÿ?U;@ú0 ?^A9@KïŸ?öŠ5@È ?ŒÐ1@Ÿ® ?zh0@Z¡?Uc0@l”¡?D¾.@7¯¡?-@öö ?ï0@h¥ ?i³1@Û ¡?£¼5@b#¢?Ná5@ü™¢?&;@ F¢?k9>@­¢?ÿ=@·ÿ¡?͹%@b%¢?5%@®B¢?+ &@¯³¡?jù+@§  ?[×2@†Öž?ο5@ÉÝž?Z6@%«?A24@’;?„Ë4@_À?mÇ4@ø ?¢"8@³Xž?+¹8@Õž?›9@Ξ? :@²qž?C<@ FŸ?Èä@@oÑŸ?köA@_ÒŸ?/=?@ñŸ?Ç:@ þŸ?g4@ù ?p 0@QK¡?µ 2@zð ?nŽ1@ø¨¢?v§+@¢?ô-@“ ¡?î0@&¡?kj1@šØ¡?¾1@9ž¢?Ôe0@b¢¢?‹v3@ôó¢?Eí8@8Ë£?Ã’<@}j£?Uw$@’×¢?3¦%@l/£?g*@}I¢?†0@t=¡?M¢0@›}Ÿ?ø³5@mBŸ?j„5@â+ž? 3/@o?w/@é2ž?/È2@Mž?/7@[=ž?Ð28@«ž?6@Žo?n€8@wí?$<@ªŸ?Ô`D@,П?‘ÄE@x9 ?ïåA@ah ?í>@*\¡?÷Œ4@sœ¡?Ä04@#¢?Šg2@)‰¢?H.@U«¢?8‹0@çy¡?!4@®¢?¾`4@>£¢?’¼2@BY£?ðo.@”n£?ç€/@68£?Òµ4@b¤?Ù9@d¢?õ#@Þ«¢?ž#@è¡?Z'@L ?ϵ)@¯G ?q".@;êŸ?…F.@9¬ž?',@êIž?Kd)@ÉÕž?ë,@©* ?SÖ.@ârŸ?õ2@ãž?ÒÖ6@k`?° 5@Í ?¿¯9@fCž?@@áqŸ?ÿÜB@F ?oNF@ㆠ?'ÍC@}¹¡?J?>@Æ'¢?õ”7@Òk¢?úÔ5@ê=£?Ù¨7@Ž»¢?€7@Å\¢?kÛ7@È¿¢?àÁ8@ÖP£?z85@°”£?MC4@ z£?Kè2@ú«£?f2@Ú¤¤?Èk6@¯˜£?‚!@„ߢ?¬%@ú³ ?$t'@'pŸ?Þ°(@…¢Ÿ?v-)@/áž?â+@¸Hž?@›*@Þðž?ˆ/,@ЗŸ?þO0@ò©Ÿ?n#2@Á«ž?YÑ7@pž?&8@œ‰œ?È8@Y?|¬>@ÇDŸ?õA@ïŸ?±qC@ =Ÿ?¬¾B@Q| ?I#>@Û¡?Á<@o°¢?¡ý<@Ëõ£?ÂB>@”E£? ò9@!£?¾Þ8@B=£?¸:@Be¤?";@±4¤?!â8@„v¤?ÑW6@¾¥?' 4@ä¦?pB5@w1¤?.§)@¨¢?ʘ.@Π?F&+@ß» ?8a'@1É ?ad&@õþž?zh(@XRŸ?Ͻ-@Â,Ÿ?Ä/@ )Ÿ?Àñ1@þcŸ?-é4@."Ÿ?[Ï7@$²ž?ªÃ6@®ž?­Þ9@Î÷ž?IÅ>@|*Ÿ?¯ÂA@ybŸ?ò›D@Ð( ?9@@ßC¡??"=@Pw¢?%©=@5h£?üC@n¤?ÛŒA@mø£?‡Ç>@ªØ£?c;@¼¥?Ya<@ü÷¤?Æx7@u¥?0“7@O¦?=·4@‰¥?r”4@Íë£?Qï1@¨¢?“Ð0@ùà¡?,}+@¡?$‚(@ ½ ?)Õ&@ß: ?Ó*@6+ ?LÉ.@rýŸ?âÈ0@¯‚Ÿ?Ž0@©?Ÿ?h33@?¾ž?.6@™7ž?»l9@GÍž?IS;@ŒÉŸ?l?@é2 ?!4C@è¼ ?G8D@º¤¡?t{C@%ð¡?ÆA@ê¢?SôE@6î£?²¯G@’ £?ALA@c$¤?¡^<@Ø7¥?]›8@Ž¥?&¤6@†U¦?I5@õŒ¦?V[6@÷¦?°ÿ7@¬_¤?Äá1@M£?¦ž-@¼ª¢?¶R*@ O¢?E&@c¢??è(@Ó†¡?;w,@I®¡?yp1@Ó¡?fM4@æ3 ?Z‚3@a‡Ÿ?u«6@¬ˆŸ?öQ9@¸>Ÿ?]Þ9@«. ?î+<@ÁÄ ?õE@@~À¡?v³F@‹^¡?¨JH@gÌ ?ŒûD@§Ì¡?•ªG@LÈ¢?sH@P©£?‚!E@Š ¤?„;>@@¡¤?1]7@’¥?w6@í¦?Ó 8@é¦?>Ÿ9@>ˆ¦?û‘9@œ;¤?_Ç/@4H£?Þ.@ûÊ¢?v+@ËË¡?Á8'@G¢?“ñ)@kþ¡?´|-@~ž¡?¢52@ 0¡?݉4@s*¡?»4@/? ?6~5@‘P ?\ê9@®ô ?p'<@#Ú ?#º@@êö¡?»H@Ów¡?RÈJ@™M¡?wH@é¡?:+I@¸ˆ£?¶K@fP¤?ècH@†˜¤?¼‰D@Å>¥?…J:@%¥?!<@ÃQ¥?Ì&<@ˆe¦?ñ;@Ж¦?¢;@U6¤?,G.@eä£?¨1/@¯á¢?U­+@{¢?åš-@Á¸¡?¯0@6¹¡?$0@™¢?.S0@ü¡?61@9‹¡?UB2@1'¡?æÚ5@_¡?¸=@ÚY¡?ÿk@@Áµ¡?¢àF@J:¢?SÞL@õ ¡?ZVI@@/Œ¦?Öª>@ Ϧ?»*C@Nà¥?°4@/ÿ£?Ô3@H£?‘X1@ú¢?iÅ.@g3¢?Mñ+@ZÚ¢?¬í.@Ù¢?=·1@°:£?9…2@ÿ¹£?ü½6@cФ?¤<<@÷ˆ¤?Lr?@Š÷£?ŒõA@ýå£?ØÄC@n¹¢?WÕD@û¤?˜ G@ë¤?·èF@‹·¤?J+A@¿ý¥?×›=@ú'¨?(<@ߨ?¡M<@ÐI¨?C%=@»‰§?¯A@qÀ¥?êy7@Âh¤?Ïë3@<¤?»2@œ ¤?Óÿ/@;À¤?D«.@{…£?€Ë1@Js£?Ï1@ˆ‹¤?hœ2@Aº¥?j…5@–Ä¥?a9@+¥?xá7@—¶¥?p#<@X¤?¿D<@b¤?Œ@@,A¥?úðB@A¬¤??>@Ôª¦?9¾<@Ÿ¹¨?÷2;@î{©?Ñ/:@ ‹©?ݸ:@çÖ©?kÏ>@¿ü¥?7@ˆ©¥?:¾4@„¡¥?3@0þ¥?0G1@’ú¤?>1@"¤?m-3@Õ¤?@2@O¥?¨Ù/@±¦?Ó¼1@?¥¥?c*/@]l¦?ü 3@’÷¤?]4@A‚¤?³7@”w¥?$<@A ¥?ž·?@§?•k=@iH¨?Uv9@lÛ©? u8@«?z˜;@rq«?®P?@Y*§?þÙ7@‰¦?s^8@ðÁ¦?º“5@ª¦? 5@0Ã¥?¼3@Ľ¥?b2@d`¥?¦P,@•¾¥?Ðó)@D+¦?Þ*@ƒX¦?ƒÄ+@ÐÕ¥?Q-@Û¥?o‚,@›¤?·2@7N¤?Ÿ:@yO¦?ø;@  ¨?dÆ7@×vª?ÒÚ6@Ù$¬?Qª8@×)­?5y;@g†§?õ4<@á§?Š;@x¦?sõ;@x¤¥?ÔÂ7@9¦?š4@·¦?)-@ây¦?`Y)@Oú¥?oÕ&@6È¥?`&@1˜¥?†'@åâ¤?O]'@õ£?²‘)@ܪ£??2@˜_¥?JÁ8@Ñ)¨?ƒ4@ñª?…5@ê¡­?Ð}6@§S®?â‰9@%R¨?`Œ:@:¿§?t<@k@§?¨{:@¯È¦?²ô6@C§?e1@¸&§?ÈK+@4M¦?&)@s8¥?g$@ƒP¥?N%@mT¤?µS&@¿ ¤?’Ú$@ÍË£?5C)@ø¥?‘7@õp§?6@Òpª?^73@iü­?}r6@3ñ¯?®o9@Sܧ?pÕ9@í§?^¬:@¥+¨?ôû8@¨æ§?.4@ñ§?R°/@Î?¦?ú*,@s&¥?…N'@Hè¤?ÁŒ#@"°¤?úù%@î¤?$ &@*E¤?W)@M¶¦?øº6@á<¨?{Á<@éQª?–¯7@À¶­?-'7@dR°?<39@q¨?H3;@ ±¨?8@â{¨?‹5@i4¨?Dœ3@ñò¦?WK.@»¥?¹&*@¯g¥?ÇÒ(@ž¥¤?Ô÷'@3¥?‘ +@aÞ¤?¦.@朦?Õ:@6­¨?óC@Ūª?øË=@pT­?t:@|_¯?¡ž8@¬©?Ño8@cz©?Šž6@.,©?sV4@Q¨?Î-2@Õ¦?AN/@DÓ¦?AÎ+@ ¦?g>,@ª6¥?QÊ/@’š¥?S6@vѦ?öÛ:@©Ó§?ëõB@°Hª?;X>@ª¬?y9@«p®?ƒ’7@×Cª?×ê4@ wª?2;6@Ù‡©?ßJ5@=r¨?ït5@{¸§?{j2@–ñ¦?C.@¾¦?61@5j¦?eJ7@$ä¦?“<<@^&¨?¹QC@ö©?v×@@e ¬?ÇI:@|­?´ù6@ñ&ª?Üþ5@шª? ¬4@NŠ©?’6@š¨?½²3@“R§?160@ئ?»þ/@8¦?«Š2@EO§?48@9™§?íA@Õã¨?ã"E@•Zª?)=@ܬ?57@š¡©?›Ù2@èi©?%w2@Ën©?ÐÃ/@î¨?ï¼.@Øq§?©§.@ãæ?ï©/@†W§?'3@bô§?ˆt>@)¥©? ÉE@lª?‚^A@Jª?rR9@òÇ©?&1@&ò¨?»„,@Œ=©?…-@üþ¨?ªU-@ŠÛ§?DK.@Üe¨?oƒ/@Û¨? Š9@ìú©?0Ñ@@z«?/@@ª?8@µ/©?†à+@,Ô¨?z¡+@`¶¨?ûÏ,@rG©?ç¾.@k’¨?6.@ ª¨?qì7@“½ª?̵>@^>¬?WöA@T ª?Ñî7@›Ž¨?ï—*@Sn¨?‹3*@2ô¨?ó*@î¨?Ë-@‡Š¨?H:6@£”©?É_<@–ëª?Q„C@çw©?8À9@ûϨ?ˆ*@?©?2+@ºò¨?+7/@ ܨ?|5@ª?ÕT<@vŒª?ÑÒA@—e©?¾}@@}̨?0@«¨?)^2@a–©?Ôó:@½'«?Ú>@S¿ª?d›B@æÄ¨?nC@hD¨?‡E:@•[©?¡A@Tª?ä‹F@Ѫ?ÉÛC@œI¨?›õC@Ëg©?8·G@ð[ª?ÝL@àª?3UH@3©?e'F@4Qª?eP@ ¬?íóM@¾Nª?í‹K@¬«?t$P@á8«?«ÃM@W­?{K@´Ï‹?PÈz@?‹?sËu@빊?Êo@ iŠ?0‡n@ž«Š?kul@m2‹?Qqj@ôÿŠ?Êe@ hŠ?lV^@¯yŠ?d(T@¼ŽŠ?ê[J@‹?¦ÂD@_£‹?xR=@À\Œ?gÁ6@?Q3@ÄQŽ?8³1@X”?ª_/@wX?Y.@‘?-@)“?;½/@©/”?ñz4@f«”?²Þ5@/ä•?ë£6@gª—?Êv5@7W˜?7)6@c¦˜?ü4@Ù ™?hX3@'®˜?I3@ør˜?&Ï3@dU˜?³o5@í˜?·†4@YA™?…ó4@›…™?«R6@Çš?9–9@@Tš?*>@]š?ouA@”C›?À"B@ÄÔœ?4ä>@pÚ?@;@" ?‚f7@™æ¢?(æ2@9¥?Åú+@êܦ?ñn%@fÑ©?ÔC!@ l­?š&@¬¥°?Ÿ;@‘í³?Î@¡¶?q@·?YN"@Ê·? $@[e·?ü#@%G¸?†°"@‡Ü¹?©ˆ@%º?ë5@Dã¹?Jé@í¢¸?» #@œ•‰?åVf@Ÿ‰?Á¦d@6‰?¡`@¬Ó‰?öV\@<"Š?[@ÄŠ?1Z@cÕ‰?ž X@É‚‰?Ñ­W@6S‰?¯P@WŠ?/wG@#"‹?“ÀB@hD‹?Û >@q?Œ?²þ9@`n?Ô5@éçŽ?™Ü2@g^?kÇ0@t‘?9-@V¹‘?´†)@Ëf’?ÃÐ)@jß’?„b,@Da“?v….@ ”?$Æ/@´ •?Iq-@z‹–?ð.@å•—?F0@)ɘ?¶`/@¹™?¬ä/@N£™?þ_1@){š?ÊË/@Aþ›?8.@bÜœ? .@B?¼Y.@ë¾?^‹/@¨Ì?Û«0@Ä;ž?‹80@ŽŸ?ÛØ+@Uî ?„Ó(@´£?§ã%@ÀÛ¥?=l%@»_§?ÔÖ$@w¥©?/u#@d«?¨×@$¬?Y@Vu¯?Çê@j²?n@oô´?Ò;@è·??ó@Åd¸?Î@ð¸?vx"@¤º?3ç&@¬»?Áž%@Œ¼?µ@@þ¼?Ž @_ä¼?~` @ËDˆ?ž¶[@«ˆ?P[@x—ˆ?¹×W@vd‰?{}S@¯b‰?råS@t[‰?²cS@ð‰?0§T@zõˆ?ÐT@áˆ?‘NO@^‰?jG@<Š?fÍ>@ùøŠ?˜•=@ 1Œ?s;@sš?þð7@Î@÷ô‰? \;@¦‚‹?-/<@ W?j9@ÍŒ?Äo7@5Ç?é4@å‘?Uî3@I,“?wª1@À”?…³*@Š™–?aÍ(@¾Í—?u$@:+˜?^Š#@M-™?áQ&@ý½™?Y9)@’v™?Úõ)@^š?ªt*@Q›?Eò,@¢œ?¯É.@؃ž?o³+@h¤ ?ò-(@“\¡?B×%@p_¢?nâ"@+p£?- @c@¥?*á@”G§?¶Y@.¤©?¬@*Ñ«?”¤ @E’­?‹˜&@—ž¯?Ô—-@{+²?öç6@¡l´? y<@P5·?`Ê>@¨¹?MA@>‡¼?F<@@ôì¾?ÓW?@ziÀ?øŸ>@ŸÂ?_c>@BÍÂ?‹¬9@3>Å?ŠÏ3@ƶÆ?‘k,@˜[Ç?°œ%@úÆÆ?^Ø&@؇?¸ˆY@—Kˆ?…#\@øÚ‡?®è[@.ˆ?äZ@,¡ˆ?ØÏX@åˆ?Âl[@PŠˆ?§Z@²'ˆ?âXY@9Ô‡? ÐT@nˆ?Ä÷O@rˆ?7HI@jl‰?E‡?@ª6‹?Å<@!¦Œ?i58@5îŽ?UH9@±-‘?^7@§@’?m™6@ܺ“?Ûc5@p2–?C7/@–€˜?')@Öè™?ï¡'@Jôš?§À$@Šhœ?”¹%@ŠM?P}&@Ùž?{¶%@u™ž?xî)@•TŸ?ÁA.@µk ?ãš.@&¢?cÅ*@z¢¤?^'@ˆ™¥?ªÝ#@¦?ÓE"@5^§?0Ä!@·Æ©?ï @Â;¬? @¤m®?óÑ#@Þ°?h(@“ä²?2.@*²´?ż1@z¶?ö 7@ŠŽ¸?|68@`I»?Ю;@ ¾?ßK>@ÐùÀ?¢ >@x’Ã?ñX;@šAÅ?tJ:@á¸Ç?ƒW7@wÊÊ?!‘.@ì»Ì?‡Ç'@”ÓÍ?Ç#@›Í?±á @‚&‹?—˜f@©Û‹?a°f@º…‹?JÝi@ÅûŠ?“d@wŠ?f_@ÑŠ?sa@¡Š?ú™_@b&Š?ÛÈ]@«Á‰?=.[@1÷‰?ÏX@×0Š?JÚQ@Ê‚Š?ž)I@Ý\‹?‡HA@gŠŒ?ƒÜ>@5?I=@íL‘?©>@}ÿ’?CbB@åC•?{@@8û—?Al<@á™?n'5@œœ?Ëž/@ s?z‡.@|<Ÿ??i)@Ù ?úc%@Íó¡?\4&@Ü¢?Z/'@çÀ£?û*@%ƒ¤?^$-@š¦?ÉÙ*@½ð¨?Cd'@,¼ª?¼'@Õ¬?|:(@y®?F<)@Gö¯?ü¨)@rH²?¡Ë*@ë,´?))-@쀶?$–/@^Q¸?vh1@¥º?1Ã0@ÏL½?G-/@üÀ?‚/@Ù,Ã?’½0@¡<Æ?èQ0@íùÈ?Kq-@bqË?¢Z,@Ê©Í?\-@"ÊÐ?¼À(@\ºÒ?ºŽ"@!àÓ?i@Ú½Ó?Šø@ðò?pîj@/Ž?£tk@÷]Ž?¿¸m@îú?E)l@§¢Œ?(¥j@[!?+hh@UòŒ?ø÷e@茌?ãd@á‹? ^c@@%Œ?Wc@x¥Œ?&Í[@ÞŒ?^U@—?ž˜P@­BŽ?æÉI@ Ñ?9D@gG‘?3jE@©“?‘H@x–?N:E@¨s˜?âHD@¡š?±?@?éï9@ïHŸ?¯Ï6@®|¡? ¬2@¸A¤?1.@ú¦?ô‰)@(@§?" )@}Û¨?{Œ)@¨©?H0@Êêª?Vé0@9Š­?­/@-°?p1@ȱ?Îø0@ÏÁ³?J 0@¶?ûh0@à_¸?”è0@>ݺ?D0@33¾?Žn/@\¼À?„0,@‹”Ã?7¥*@£Æ?«˜)@ÒyÈ?¥­*@8¦Ê?ø'@¿²Ì?„ý%@ Ï?8€$@ëŒÑ?´G%@¯Ô?M"@—˜Ö?šz"@†×?+K!@ÊÕ?§(@9HŽ?ìýj@2¡?˜ü9@}e£?cû5@Ǧ?â:0@üòª?£0@¡®?ø,2@/±?22@ᆴ?KÎ4@ì·?²6@A+¹?œÕ2@€ƒ»?D0@¡Ý¾?‚"-@6Â?‡ë)@ìZÆ?Ѫ&@«ÄÈ?M%@¿…Ë?§;"@ÐÅÌ?)·!@$uÍ?§@‡Î?iÚ@°1Ï?šL!@LÒ?S‹ @VåÓ? !@[¸Õ?³%@ ×?€ &@oÔ?)*@‚–Ò?‚È,@Óÿ‹?™d\@\6?u‘Z@%?œ`Z@ÒD?õ½X@Û\?ÈIW@Ž?NO]@š³Ž?Yzc@ö{?‘h@«²?Ðf@×À?ä¿d@ìÍ?Ÿ:h@V‘?×g@»’’? e@}È“?ùb@¤½”?–_]@ ã•?W@æ—?ÙÈI@öª—?@=@[—?’46@ O—?Ò3@>d™?ü5@Í0œ?Ç3@ž?X”.@°¡?æÚ,@Vë¥?ÂU-@ê?Ç+@*–­?¡Á-@y¥±?To0@Hȵ?ãõ4@޹?j4@V¡¼?:¥0@üEÀ?^~+@ÄdÃ?h}'@¢Æ?Äþ"@uèÈ?X@FõË?1›@¬XÍ?t @KyÎ?VO @‰„Ï?Þ× @ÇöÐ?=m!@+ÁÒ?Æ%@'ÊÓ? É%@ÓÔ?^-%@âAÔ?Q'@åÓ?¡ô*@ PÐ?¸„0@‹?±X@.w‹?lŒW@¸|‹?3FR@¡î‹?NO@-"Œ?ÊÜM@ª€?ÁT@ÔMŽ?fZ@–kÊ?à#@ÌHÉ?Ñ&@êuÉ?ý'*@Ê?‰2@g¦‹?ÓP@ê·‹?ë•Q@þ{‹?YˆP@iC‹?ÝH@W`Œ?‘íF@¾h?ÎJM@[?P@„Ž?VN@Ê?yoN@ß/?1O@y‘?‹ÁP@ýG“?t¥W@l¦“?H³\@¸Ù“?üw\@O”?{GX@Ïà”?ÊóP@HÜ•?eÉN@¯â—?˜ÝO@4Fš?å¦P@<Ü›?øÒM@b ž?%ŒK@¯Ÿ?¿ÂE@e¢?Ñ;@‹É£?Q6@¦W¦?)2@ð©?–Ð-@™“¬?4.@r°?“P-@=×´?®,@e¸?ýú-@gà»?O¡,@‡À?ÐY+@DîÂ?J¶)@NáÅ?6'@Á.È?·•)@³qÈ?Ѹ,@[cÈ?àb,@’Ç?Æ{*@àÅÅ?ëj(@JõÄ?v%)@\ôÃ?N+@Ÿ&Ä?{;.@TRÅ?æ5@¥àŒ?z¯K@=†?AìR@éÊŒ?‰ãP@ßI?==N@îÐ?2O@BêŽ?zIN@¤ËŽ?!AK@å@?¥?I@½?¡LF@®Õ?¹ãF@š‘?QfI@oÖ’?S¶N@ ”?ëýP@åï”?i‡R@˜‡”?úùM@Uf”?K¬H@–?Š=G@›Š—?âcL@D/™?A´P@ó›?4O@Ë?!˜M@^j ?jâH@Éö¢?eC@Ké¥?L…>@à!¨?u:@Vª?ëü4@«ó¬?©61@*°? /@ãt³?è.@¶?áQ/@º?Ze1@ãó¼?%11@IK¿?Të1@VÈÀ?Ýñ/@²EÂ?#º/@JÔÂ?~&0@Q°Ã?2Ç/@#èÂ?„¯*@ÃÉÀ?;-@(‚À?i¾0@—uÁ?b3@¼-Ã?¥:6@#?GàN@ÓýŽ?‘xU@À‡Ž?aW@ôA?ˆHU@¹Ð?¸ßT@P9?{M@€è?½ I@\â?]C@i‘?2J=@¬‘?Ñú:@*—‘?„§=@*’?ËB@s&”?|[C@7š”?á'C@`ú“?Â@@d-”?x@@—•?G°C@CÔ—?"YK@<Õ™?º£L@OË›?ÍÆJ@8ž?|ùH@?ª ?›±E@¶Æ£?ÁH@¬Ÿ¦?¨¶E@½á¨?A@ áª?˜2;@A—¬?–¥6@†ª¯?j2@‹ü±?Ý^3@Ú/³?Qü6@±¶?¢e6@OÖ·?^‡7@º©º?C4@ùj½?«Ÿ3@@ ¿?W/@Ún¿?Yu-@.Ü¿?Ð).@UhÀ?s-@›Å¿?ª¸/@»Š¿?Ÿ71@^Á?âñ/@AG?2}Q@¢û?;ðV@›Æ? ÑY@Œs?×X@V)‘?ŠQ@’?ÕfN@0’?^bK@@µ‘?DbB@|‘?Q,<@õ°‘?äd6@MT‘?ÂË7@ºL’?S7@©¶”? <7@Ò0•?Ñ[6@*”?d@6@ #”?ô‡<@Xñ”?ÐB@e}–?¿SG@—Ô˜?…ªF@˰›?kÇC@9·ž?™ïB@(M¡?<B@P ¤?ßïE@¦?þH@„Ĩ?6@SR’?±w9@½]‘?ˆ6@*&“?¤Ø2@î“?Ø$4@&ó”?¸º.@È´•?F3@m©•?¬¶7@öp–?®¦:@ï©—?ø÷<@kw˜?Ú:=@†ëš?o=@ž|?E?@ü† ?.A@§ä£?MÇE@<·¥?LG@E¨?Â\H@äͪ?üG@/­?FD@‹Ê®?%º>@ÌQ°?qÝ:@kº°?Bp8@Ó±?Æ6@|Ù²?íë5@ëó´?ï5@=Þ·?Šú1@ç º?jâ+@¸ƒ¼?g.(@Z·¼?݃(@r½?°ÿ&@I ½?$Þ)@P?¬lN@=Ý‘?ÞˆU@ð’?£V@亓?ŠU@*“?#ºQ@&Q“?¥mG@Ø’?.A@zÍ“?j3?@×”?IB@q§“?õA@ÿ.’?k;@)]“?žO2@.@”?K70@&£”?˜p1@}k•?VÇ5@Í&–?¡6@ýn—?Z}7@\|˜?«~8@ú ™?­Ù7@ÿ}š?BO9@øWœ? <@P½ž??@¡?†C@PΤ?ZB@ò)¨?‰B@Ī?iE@¯¬?\G@®¼¯?ºùA@Bø°?@@ž±?â|;@Úç²?|½9@1´?б8@C5µ?¥»4@¶?»X0@ô§¹?¨É+@_u¼?íz+@à§½?m×)@xÛ½?Tý(@ýÑ?{FK@}d’?ÓR@È“?óÓV@F³”?ØU@ød”?äUP@2”?Ÿ§H@pä“?T5>@ ç”?™<@⸕?7 C@œ•?ËÓI@ó ”?H„B@{”?ó5@¸E”? $2@›P”?*o3@7 •?ç5@­¼•?y¤4@óF—?W¥7@Œ·˜?Wj8@µ‹™?@6@Msš?U\8@å·œ?à7@?3?^:@þ‘Ÿ?´¬@@q£?cB@‰c§?ðC@ù;«?b0D@×¹­?Œ‡C@Àë¯?ôgE@ ½°?†ûC@Ḻ?rë=@T¢²?…é;@èÿ³?».7@ãä³?€4@w=µ?˜Ë0@‘£¹?é`-@ü?Ž:,@~(½?÷G*@Sv‘?<)J@»Ê’?gP@R¡“?gU@)•?DÍV@µq•?IØV@«Â”?è„K@Êb”?K)>@––?/É:@iÍ–?8~<@®–?¢ÅC@^–? ÎA@ 3•?v„;@#6”?Ì4@¨‹”?³$4@ 5•?,(5@¶ –?F·5@Oÿ—?´ß7@F™?ÆÝ7@‘Dš?¡Ê7@PŸ›?t7@Uçœ?ôî4@ê>?ôŸ7@IUŸ?=>@Òz£?Ò¨@@¹'¨?.ŽE@¤wª?$ªC@Œ×¬?D;C@² ¯?p‰C@[°?8UB@)¤±?@A@`³?½(>@Us´?™9@ô¡´?¥)7@×èµ?«ù1@ú˜¸?×È.@y“¹?ós,@¹€‘?˜H@Ö¡’?äTR@^&“?>X@¿ä”?ûªZ@ÁA–?#jZ@Dn•?>5M@6•?Ò <@Ìb–?Œ¦3@“Ñ–?ó…4@òh—?ÿè<@}—?ÕX?@ªV–?èZ>@àƒ•?š8@¡$•?øƒ6@½–?fŸ7@ò¹–?B­8@ÀƘ?’18@ùb™?Õ;@.”š?Œß9@/m›?½ë7@hcœ?>E7@j®?ZÍ:@¯½Ÿ?¹ø?@YI¢?0C@þÕ¥?¸sA@Ë‘¨?´†@@A«?èðB@ö™­?Í B@•ú¯?߸A@#±?‘0D@R»²?¾B@É-³?X?>@ù¹´?à«7@Z}µ?Û–3@À¾¶?ød1@I ’?LhK@|’?{ÎV@D7“?ÒY@KŠ”?èÄZ@/à–?æû\@–?˜ÝO@`ö”?«$;@Cz•?8/1@•¯–?Ž2@zv–?rp9@Ì4—?mø?@˜?ë ?@â1—?Ý;@hž–?md<@èÜ–?A9@|h—?%:@OP™?nÓ;@\×™?ÐâA@®š?!!?@rè›?L‡9@ú¾œ?7<@­é?®>@@Ÿ?„i>@¹¸¡?ÑÓA@âå¤?D|>@À §?Df>@N$©?š„>@ùƒ«?s‰A@« ®?íÇA@á;°?ïÖD@ù±?¡XB@ö³?b>@»M´?G:9@£³?ª5@×Ë‘?ò½J@öª’?§VU@]©’?—?íuZ@ðŒ–?íáG@ú”?Ï®8@{"•?X3@\|•?y5@ÈT—?–9@>˜?íz=@ ™?C^?@ž‰˜?þdC@˜?ž§@@` —?µó;@«¼—?d:@µÖ™?+_?@—š?\å?@:ö›?êŠ>@® ?ø$<@ü¨?W<@þEž?zÝ9@踟?Á>@øÇ¡?LC=@£?–”8@i·¥?.è8@0_§?£$>@öˆ©?'ÚB@ùJ­?„ÞE@²Õ¯?ë«G@£±?&±D@?'C@ø[²?ÑÐ<@4:’?‘§G@½Ü’?58R@Û’?ÅV@×”?1W@§ç–?%3S@…–?ºÚB@—â”?Ë:@Ú¶•?Í];@©î–?]Û:@89˜?@£7@¥Ð˜?µs;@Æ#™?Æ(?@„%™?ÕyC@hP˜?øpC@!˜? AA@Ç€™?2 <@rzš?)Ÿ:@·u›?Iq:@bœ?‘ç;@…?D˜8@”?¥9@5Ÿ?X;@™¶Ÿ?Ö8@† ?‚È6@7‰¢?GW2@VŤ? ×5@©¿¦?iû>@²´¨?ìûF@«D«?šÙH@"î®?iÇH@VW°?)ðG@Ž#±?êýE@eÓ‘?Q&F@“e’?¦ƒO@ÔÌ’?oÚQ@mÜ”?ëòT@õN–?•ÌT@#–?j0H@—Y•?‹"D@Å•?8$?@Žó–?#L8@ž€˜?Í7@Á„˜?bE9@´{˜?t>@°V˜?¢ C@Ϙ? uD@­Î™?@@Hû™?¾Ì;@?:@8u›?$8@»Ìœ?é–6@mÆ?ýø5@ÿ‰ž?|$;@_¿Ÿ?js9@NØŸ?ê›6@¡?µè3@µÊ£?·%2@†°¤?W 8@X^¦?ÿx?@éÀ¨?´ÛF@[4«?×ÅE@a¯®?Ù†H@¶a°? ·H@,~‘?ç5I@Ýh’?îR@ÝÆ’?ƒ•R@¥•?ŦZ@úœ–?iV@f–?ÿPN@ª•?ñ B@!ô•?õ­<@—?¸ê6@k—?š5@ak—?™ú6@Îã—?ˆr8@°Ÿ˜?Ò­?@<š?9A@Äš?¾ZB@n ›?{I<@âä›?Šu5@h÷œ?‹2@?¥?ö2@Oiž?"™5@Þ,Ÿ?–Ë9@6œ ?Ô8@Àh¢?h4@yd¢?wœ4@(:£?²•4@ª¿¤?Ûý9@c¦? <@ª±§?xÍ@@{ª?¯ïA@Õç­?šáD@ ì‘?)5N@Åœ’?kV@?—%X@¢Ì•?4¡Y@­–?À÷S@Õ•?^K@®I”?ÅdB@Pt•?üÍ7@†©–?5@!¹—?øœ3@Ú—?2‚1@ƒ˜?ÖÞ5@µ¨š?";@#Ÿ›?C@ç0’?ûÄQ@ܦ“?Ä>X@B¼•?ßR@t(—?ÒW@J4—?ÂV@« –?XºG@àL•?<@Sˆ–?Eg8@ï×—?5@—!˜?„3@ãe˜?Xv3@3™?'ª1@xQš?áø,@$íš?¥C3@&#œ?Ëj:@'“?™;?@=É?q+;@ÂÎ?fÒ1@Òž?5š1@ÿiŸ? 0@ué¡?xE1@!/£?ü6@#æ¢?¦Ú7@Û´£?“o7@P¤?߯6@Úa¤?X(7@À#¦?ÄÒ8@\]’?)‰N@gŽ”?Æ`T@臖?pòP@>˜?ÏzW@–˜?¦ET@ž1–?WÀE@¦w•?,Z8@‘j–?„Å1@GR—?ɱ.@.«˜?ó¦.@ˆn™?3n-@¨Õ™?Ì.*@ š?u9+@,›?Ñò2@{ƒœ?ž/;@Äj?J´?@L(ž? ¶;@EHž?38@ Óž?üÕ3@9‹ ?È™/@•L¢?Û3@/¢?+È6@3i£?8@—£?pË8@à¥?›»8@{H¥?uû8@ ”?3ÚK@l#–?C‰R@L&˜?…žT@_w˜?±pY@Kš˜?T†Q@«-–?âFD@¬•?þë8@ƒa—?nY0@ ˜?1/@,ñ˜?Eæ/@¯n™?"L.@š@š?•¹+@Z#›?€„/@°›?mÉ1@*¨œ?üd8@uÁž?Ve>@ ÂŸ?#?@”ÓŸ?^.:@ØûŸ?,W2@G9 ?ø†0@쀡?µá2@¤¢?þõ6@.M¤?Ôk9@æ¤?1§8@«¥?r¼6@´@•?rîO@O—?ÃaS@þ6˜?$bV@;™?ÊÐ]@ј? 5R@™|–?´jA@ –?¾7@¡–?¸2@3˜?XZ2@9©™?”K2@ôGš?ÁÔ.@!'œ?á/@…œ?ß^1@Àdœ?~þ1@Mž?«¹6@ÌÇŸ?ï’;@¼Ý ?í¬<@“Р?ª:@Ĭ ?øÞ4@´¡?q2@±å¡?ˆ÷1@n1£?lÄ8@‹¥?7Ú7@ÿŒ¥?7€5@a –?füS@¼i—?–Y@ ú—? ¸W@$™?êÕY@Ș?íðN@s—?ùC@“Ä–?μ<@]È—?Wn9@Ä™?üÓ5@›?~Ê2@&¯›?©94@Kíœ?Èx5@R%œ?§g2@†?‘N3@n«ž?ª4@Ó' ?38@Ôæ¡?$À<@Úá¢?ú;@(X£?S98@Êu¢?{3@'›¢?z4@3Ý£?V@5@³¥?:3@gÕ–?ò U@Dù–?áÇX@ªn˜?êU@÷÷˜? u[@¹W™?I)N@b¹˜?¬D@å—?PhA@d ™?ÑË<@Ý2š?X¥;@›?²8@«{œ?Ú:@ÆÌœ?Û7@¼Âœ?Ð"7@М?X4@iŸ?„„3@ù ?³{9@1£?J =@oÿ£?•5>@úÁ£?lÊ:@ކ¢? !4@ß<£?‘N4@¹Ú£?3@%z—?)×W@¼—?#h\@n8˜?FX@™?2[@«Ê™? hS@­d™?ÄéH@u<˜?6?@mH™?õqB@?¥š?Óú>@ÕÏ›?¡ø;@=Hœ?V“;@í|œ?Iƒ8@÷?ù“3@¦ž?ÈÁ1@¢ÚŸ?ÍÒ2@:¶¡?Ü 8@‰!¤?_'<@ÙW¥?ÖÄ?@hm¤?A;@Ïö£?PÓ6@ߣ?@3@¾H—?ÌæX@ŽØ–?v+^@W›˜?½@/™?ä•>@ùš?m A@p—œ?Å;@¨Ìœ?h•4@?ž?^ä/@Fž?]{1@Áêž?¨Õ0@}n ?ƒ™1@—d¢?Ö·7@V‘¤?J@@ÂÚ¥?:$A@…¥?±Á=@÷¸¤?•J8@¶ñ–?¾3W@}—?£ÞY@®y™?;‡X@s¶š?K_U@¡0›?ž4N@جš?ü4F@k¯™?:‘>@{™?×<@„\›?¸;@dœ?Ñý6@îS?ïù1@C¥ž?^Ê2@–Ÿ?ó2@[ ?‰÷-@üb¡?E2@³¢?Ä7:@•ؤ?ëõA@€å¥?çCC@=Þ¥?>9?@Íb—?:¢P@§•—?Ó™S@Ö™?‹T@'²›?ðT@0…›?<»O@6§š?D@F™?U=@Kš?Wµ:@m2›?"89@‚;œ?^8@à£?¿@8@÷EŸ?â6@j‡ ?KÃ1@+Ä ?ÐL4@ÿ(¡?©7@¡ £?\:@œž¤?7A?@#Ó¥?VdA@í—?èëP@0™?%€T@‚E›?«ÿS@Š0œ?ÓET@§-›?©.L@I‡š?ž^B@>æ™?‘²=@gÿš?\º9@{õ›?¸I9@þQ?è<@ιž?8=@Ã4¡?U©9@U¡?d8@ÝÝ ?l 4@òË¡?zÂ4@™£?uí4@#Œ¤?È…;@0͘?³?S@›š?Ä‘X@&œ?W÷R@Kmœ?á†P@hË›?‚ˆM@€çš?B E@ÀWš?†¸;@#Z›?@ M ?ŠJ<@XÉ¡?Þ‹:@„¡?2&6@yR¢?ÁŠ2@’Œ¢?LÞ/@9p£?°4@Ι?' Q@§S›?UT@qœ?|ÅS@/?×Q@Lø›?8kJ@Êqš?=oB@JÁš?8J<@ê ›?‘K<@§ò?¿>@+ŸŸ?ê?@!¶ ?½®=@xà¡?óë7@½£?õ/6@ó£?â:2@Ïv¢?4@3)›?éËL@þœ?ŸQ@™ãœ?©R@Úd?hQ@I“›?F’I@ûëš?1A@Æ«›?à=@už?Í1=@ëþž?è@@µ ?mü=@ã#¡?ßs;@Ú¢?hî9@Œâ¢?Ý88@Ü£?S%7@÷›?^P@j2?dËS@rž?HñQ@K?ÙmO@gÅ›?£G@2Úš?A@n«œ?4h?@Ê-ž?…2B@¹ªž?æu>@Ò¡Ÿ?äO=@=+¡?Ê>@™u¢?‡>@“£?÷P;@0ïœ?§„P@íâ?Â&U@u@ž?G«S@Î? P@³eœ?bûE@‰aœ?‘A@°?‡·E@¼ž?*iA@ Ÿ?|B@Ç›Ÿ?"-@@4¡?Zü>@ýè¢?‘n;@Η?˜R@SBž?ZV@Ç%ž?«S@¶„?à¨Q@[ž?› G@—ž?å6F@ åž?éÆA@†Ÿ?UvC@¹rŸ?¨?@4} ?ãm<@D;¢?Áj8@€Ù?Ò9T@âò?äAS@ARž?,«P@·xŸ? ˜R@ÖŸ?¿§K@°Ÿ?ì²A@®wž?2ÕB@ÐÍž?©AB@Ö ?˜>@0÷ ?k];@é?³ËQ@ÆÜ?òÔQ@àøŸ?˜TS@ߌ ?owS@[„ ?@"K@@"Ÿ?°UD@ž?·8B@çÀž?ªß@@ù ?ÈÒ>@à,ž?T@v‘Ÿ?6;V@{• ?P@™õ ?¾¼L@+¡?M½M@˜ÙŸ?s`E@rà?Öû=@… Ÿ?O:=@TAŸ? V@¢ ?øqW@Ž˜ ?EP@lÀ¡?‘bM@î¡?Ý‘Q@šôž?âkF@=8?DÃ;@´Úž?tU@7øŸ?÷kS@ÈG ?:7O@uˆ¡?ÒO@Ün ?Ñ P@—¬Ÿ?41D@g7Ÿ?`N@£[Ÿ?ÌÿN@¤† ?bnK@p™¡?ð¼L@$Y¡?†‰P@(Ùž?€I@ÁËž?Ç K@¾ ?Ó K@Ι¡?ÿ1@aè¾?é +@8Lº?'±&@´˜µ?C¤$@O”´?^¬ @SÙ¶?Á8@ âž?|[@’¬?ñ©@-Ó³?1c@§vÁ?: @XüÍ?Î&@ɸä?„#ï?"¶Ý?çÛæ?QýÄ?Ñ´ @å³?¸M4@M,°?ÔE@–}°?iP@O™°?½O@¦°?ì‡B@ÞC¯?E›6@\k¯?Pb0@ê¯?¸%/@ï´¯?û?0@O±?[Ð*@”²?’q'@‡ô«?kÌX@ꓯ?*EW@-–¶?üB@Z+Á?h],@¶Ò?O‰@€ß?¥7è?Þ? xõ?~mÜ?µÒ @ô0Ü?Jé@­NØ?N9@¢Í?ÃöÓ?€Ä?ó¤?YþÁ?jK’?°2¼?'¹•?¢Ùº?¤®?|­?QàZ@³?‡>P@„7»?½;@¨È?‚A$@mOÙ?ÑŠ@:7Ý?%hþ?¿ìÛ?é(@}ÙÜ?„@£íÙ?kh @ó³Ð?Õ?i‚Å?«)¢?qÃ?9?åõÄ?²Ÿ–?MHÄ?ǰ¡?D¯??¢Z@£lµ?‚L@ž¸À?D‘7@;Ð?´ª @¨Ú?˜H @ÒxÛ?›~@1òÛ?å @9GÚ?å~@8ÚÒ?Ú®ì?-;Ç?-u¯?ÛéÆ?òQ’?8Ä?½‘?3dº?€¢•? ²?¢Y@2ˆ¹?,”J@C^Æ?Qo5@k¼Ò?zê@Ú?@›§Ü?“²&@CûÛ?hè#@õXÕ?Ò#@I…É?iáÁ?\Ä?·pš?´qÆ?“?À`Ò?iö ? \µ?ÝêU@7Ö¾?ž/A@ aË?Ž:1@7hÕ?c1@…‚Û?LÝ!@“Ý?²È,@Ù?xÄ@̽Í?ÝäÞ?aÅ?^ب?«óÃ?œ›?ÔÀ?«o™?_%¸?=8O@8˜Ã?¸ë;@œŒÐ?ù(@;/Ø?Df#@š¢Ý?‡+@åöÝ?Dµ'@I©Õ?¤Ð@ërÇ?‰åÃ?;RÁ?eÑ?gÃ?4<¡?\›Ø?Õ‚Â?ød¼?^¹B@ØØÊ?´¨-@ŒÕ?æ#@(ãÚ?«R*@E¦ß?®<0@µ¶Ü?Ê•@ÿÄÑ?Ñàò?Ç?5®¹?ÃÀ?©[¥?ð«Å?ßv´?i[À?…î7@?Ñ?õ&!@r$Ø?ø›!@¹NÝ?˜ 0@?¾à?ñá-@_Û?oò@ÆÐ?u7ß?×ÃÅ?÷º´?fľ?G`°?PþÃ?n/-@„<Õ?6™@ï$Û?.@óƒß?"0.@#~á?ƒÇ*@¦Ú?/  @õ Ð?HÕ?òÄ?/Ò²?ŠÂ?!l»?©ÄÅ?EØ&@þØ?¢‘@M3Þ?„[@PHá?®‰+@Ö“â?§Þ&@íPÚ?[C@ÎÐ?{¸Ð?û Ä?ÑS´?Ìå?@Q×?4`Å?q)@³2Ù?*œ @m|ß?f@ ká?ƒ´*@“©â?»/%@ØÚ?ëU@æÑ?ܬÌ?æßÈ?TYµ?ž%Ý?7MÑ?0<Â?®U6@‡¢Õ?äo@O¼Þ?‘Ø@+á?“Ö#@yâ?…†&@3xÛ?UÙ@RÂÓ?H>Ñ?ê.Ë?¸.µ?\Ó?]JË?$н?ù~J@­vÎ?á–!@¾›Û?) @ ß?.@ôõá?S¢'@€ÛÝ?S@bIÕ?§%Ø?ÕùË?èQº?‹}Ð?Œ\È?Ôc¹?öbV@IçÄ?”s;@S)Ô?íÌ@ yÛ?‰%@Úìà?Þu$@’à? ~@0Ò×?„„ì?kyÏ?"AÅ?Ð?ÇsÍ?cæ¶?ÂõT@„ý¾?HdI@¤Ì?k[/@ùkÕ?¨%@úÝ?.["@`çá?8%$@#åÚ?4P@dÓ?ÙºÒ?éÈ?öõÅ?1y·?ÃÀH@8Æ»?uLI@œKÅ?<@é Ñ?kw,@}ŠØ?‘'@và?Ož'@`ÐÞ?…æ@C¸Õ?D2å?Û¼Ó?q Î?Z÷Ì?D‚Á?Kd¸?²ùC@ »?Ò F@flÀ?TÌ>@ÊÊ?:u4@!Õ?t,@õyÜ?aF'@™*á?7É"@¸Ù?û$@@éÒ?ÌPÒ?‡SÒ?ÈÆÉ?'D¸?&1G@ްº?©ëE@[R¾?(Å@@ôfÄ?“L7@XÎ?I?-@Ã.×?J%@îßÞ?݃#@Øsß?7i@„Õ?–¡î?ý÷Î?ñ½Å?µYØ?ДÇ? ÷¶?ÁH@¸?SI@=÷»?®¼F@ìcÁ?0Â;@Æ?Õå.@†ÞÏ?Îl!@¹)Ù?HÊ@ð'ß?€"@HÖÛ? ¼ @.TÐ?<öØ?ºÉÇ?F>»?:°Ñ?ÛÚ¯?Ú‹Ì?) œ?¯oã? Ž˜?ïüÝ?Ь„?ìCì?r ‚?ssµ?QõN@]d¶?;»J@ ”¸?÷òH@ℼ?gGF@%Â?Þ7@ÄÏÈ?`Ô&@ªÀÑ?Ä¢@ÚÚ?xr@G^Ý?Òº"@ïTÕ?„ï@? Ë?ž<Ê?d߯?6Ô´?P(Æ?w†¢?:“Å?þâ?Æ?ƒÿ‚?ª!Ü?Ã}‡?®@´?¼ÏR@Îý´? P@™“¶?ÉÊK@ɹ?ÙñI@QǼ?#(D@ˆ˜Ã?þ 0@³Ê?³@ü¼Ô?3s@ÂçÛ?•_@ÏØ?å@xµÏ?J¸ò?Ò’Æ?N&Â?2}¼?Õ˜­?c¼?>ú¡?ß§¼?•L“?“bÝ?ÐK§?äv³?O@‡ ´?WP@ù¶?4_L@;¸?•›F@L¬¹?[1D@þ½?PÄ;@-Æ?«'@¨mÎ?'p@äÛØ? á@ kÚ?‰°!@ËÒ?›@ß@É?'…ã?){À?ëwÄ?SÀ?Rè¸?a¿?•}±?{ß×?ÊÌ?¬\´?Ý{L@‡T´?ÓþJ@ã6µ?J@–Q¶?à^E@:¬¸?B€>@W»?Å®:@Î{Á?IÓ1@EfÉ?™@ ýÓ?¤G@DƒÚ?=ä@@üÓ?̰@Ó‚È?xŸ@­2À?¸„å?²º?mÖÓ?„„Ã?ÀØ?–Ï?²üê?*v²?}uI@á±?6FK@D²?èL@ŽE³?ZkH@iäµ?•Ž?@Ù3¹?ž#8@ ¾?Ù2@!Æ?ÂX$@ðœÎ?jô@DÛ×?Bå@µÿÔ?à @‘{É?H@|Ѿ?W@•U·?kÿñ? <À?jó?mºÌ?b@DB°?˜ùI@#=¯?d†R@è'¯?kkS@Î̯?$N@T²?YíC@ƒ|¶?I*;@žK»?2‹2@§Â?½²%@zéÊ?¢þ@) Ô?ñI@hÔ?d…@ÕˆË?á"@O«À?×ç@x»?&B @#wÄ?1- @ÇšÑ?Àð@·Ã?‹Ž@ 1®?‚¸F@f­?Ý\P@­ë¬?R@aD­?ÕL@#¯?NžF@˜ª²?;Ë;@ 7·?ò3@ŠÊ½?O•%@^Ç?V†@6Ï?À@‰ÉÓ?Ìy@–Ì?…s@ÑÁ?V@››»?È@§{Ã?Ÿö@nÝÇ?—¯@gs¾?SB@p–­?`H@Š4¬?¢M@ÅZ«?FM@'Ž«?ÄiG@ïý¬?e @@&€¯?,7@ö³?’,@0¹?=á!@±»Á?v@`Ë?È@¯ŠÑ?/v@†YË?Y@Ä?.½!@ôÿ¾?±L @9½?MÌ@I*Ã?xH#@!Ö´?Jû @:¬?¯«E@·óª?vmH@;]ª?«âG@< @ωÐ?ï® @µÄÊ?ãª@ÅðÅ?Gà$@9XÂ?iv*@ý¨¼?Ç%@í"»?>'@»…À?;é3@/«?k˜;@Ðó©?@91ª?É&?@æ«?œù:@—n«?áÐ1@̨­?$¨!@"ͱ??@Õc¹?KT@ëëÆ? G@kpÐ?[n@ŽêÉ?‘ô@`oÂ?# @äÄ?¨2@>Â?+Z6@ æ¸?äî/@¬}Â?ˆ+C@_–Í?˜™V@´¶«?R!3@ô«?Êk4@‡)«?µâ5@zͪ?Ú16@DŒ«?x41@ü«?8(@l'«?k@#¡¯?žÞ@.¶¸?Lcï?­È?T\è?+ˆÒ?NWý?ºÊ?_ @#ô¿?@ÊÏÁ?Ýj0@»A¾?¼¨:@«Â?=@‘?·?/<@G€¹?Þ@2ä¶?¢@0cµ?ãs@d³?z»&@I³¯?ÑË(@@«?{„@­©?+ü@i.®?¸$ê?BK¹?8Á?•sÐ?w.°?Æ=ä?r|à?ëß?Ñp@ϲÐ?@í6Æ?95%@ÇÖÈ?j¥8@n¡¸?/£2@Á³­?ƒ,@‚¡±?)Z*@ãi½?êÚ @¹?œ¡@Tïµ?Æî@æñ²?qD@¸¯?ë/#@ÃX¬?¾Ä @)«?l@™°?×…û?þ0¹? „Ò?ŒË?}:º?™tá?¨Þ?iä?? @ÉÕÐ?ÅI @nZË?&2@õ¿Ç?­.@jƒ±?¶%@ì®?;à#@è?ª?Ño@^‚®?!@ @;_½?”f@OFº?‘~@¼A¸?àg @”A³?%x@>¤¯?ÄS@Oª®?9°'@Pf®?b›@øŸ±?« @‡•¸?%×ì?)qÌ?øªË?8?ß? GÜ?¼Bä?ó³ö?'cÒ?éä@¸yÒ?ÒÑ@È@Á?~Ì @Lˆ·?Ü"@³®?Ì?@ŒËª?¨@º½?úõ@p»?< @ ò·?øa@Zu³?„O@°?÷P@ÃѰ?Û)@Šù²?М1@¦U³? !@Ç÷?SŒ@ÕÍÆ?GrÞ?¦Òß?lÞ?ÄãÛ?Çšê?¨Ú?Œû?jþÒ?ûÓ @ ÃÃ?‹U@¢£½?'=@f–±?Óê@­}¼?O˜@§¼?7@Eá·?Sø@”S³?E@WN±?¥Y@س?úØ%@ùµ?]Ì7@2œµ?5@ ñ·?$@¹TÃ?4Rö?RÙ?¯ß?˜†Ý?œ~å?aïÜ?nÚõ?õ„Ü?ÌÏ@΄Ë?µÄ @‹?¾?6Œ@œI»?.þ@~dº?%z@f¸?¿ý?Ê“·?°Qú?×:¶?´—@&Ô¸? ú@–D¹? u8@ôc·?¥@@m£¸?Ì·+@2¿? q @¢Ò?§?ë?4â?céá?­¬è?Åiô?ã×?u-ú?Ð?°M@Ѿ?½˜ò?(\½?-gí?®´¼?üEò?Uþ?Ûƒú?ĵ½?¬Ë@#ë½?J@»—½?=¯/@Ys¹?r:?@,l¸?û¿:@ ²¼?—@:‘Ê?÷Ëþ?Ã8Ý?ø0å? â?õlâ?Þ?uêô?­µÃ?»÷ê?Î;Â?„è?q†Ã?šQð?a›Å?Ôê@¢óÀ?Ñ@èœÁ?… @XÁ?™$@tÈ»?x45@ßÖ¸?¡=@-͹?Ç=*@Ì.Å?ø @PXÙ?GÕï?äjá?•þâ?x9Ê?Õõ?’È?Qÿ÷?ó;Æ?(á@8[É?¼ @è¸Å?  @7—Ã?Èt@!»Â?Òµ@±Ô¼?4­(@Ù(¹?ë37@Å·?¹\3@e‘¿?Bs@©Ð?íG@ãË?ç @·~È?r @7Ç?Î@ ÁÈ?Ć@&ÜÇ?õí@œÃ?Æõ@9Á?U…@?"$@Ž.¸?X0@§Bµ?ƒo:@eS·?ÅŽ)@·ôÇ?BA@~Ç?U‘@DËÅ?Zñ@/&Æ?@H@œRÂ?:þ@zÔ¿?øž@w*½?‚@$gº?˜ê%@Þ µ?ñÞ0@ä­²?ć;@/BÅ?V¬@ÉÂ?Î@7¿?” @`­¿?0ñ@9½?Ó€@럹?x"@u¹?Ñî&@û´?FÏ1@é²?¨f@@8ɾ?+r"@[/½?¦q#@ø¹?~#@›é¹?ë(@Ç[¹?îj(@‘?·?=|.@—´?àw8@Ù±?cE@ôˆ¼?3 2@ͤ»?§’2@{ø¹?"ˆ1@Lº?ªˆ1@ìÛ¹?І5@k=¶?ÄŒ8@)l²?$?@"€¼?À±<@*¼?»m9@œc»?êÛ3@N€º?‘Ñ4@Øá¶?<¶7@—IJ?¬—7@a„½?!˜:@諼?ªÄ4@·Ÿ¹?©4@þÖ¶?¨N4@Xu²?D>4@·U½?`ó0@:­º?æ3@Æò·?7Ä.@Rf²?™¬.@–†º?7*@(u¸?˜y+@ðâ³?y¢,@…¶?)ô(@t‰´?î(@Í~´?Lƒ%@W̨?ûN@( §?xýO@¥ž¦?6}S@êl¦?ÞDZ@žé¦?ªa@#À¦?ÜÂd@¦?Žªf@–i¤?& g@?¢?ÏMf@ÅZ¡?UºY@ÒZ ?/ÊT@7¡?QóT@.¡?-iS@ß¡?AJ@$ ?i,D@¶…ž?ûx@@Ù¢œ?°=@'Øœ?~Y;@>rœ?xY:@ãþœ?,Ó5@ëÁ?y*5@‹÷ž?ºl5@µÙ ?¤Ž9@ò¢?Á8<@ôu£?ÉË>@Œ$¥?=@ñâ¦?Œ :@Y}¦?„"<@l §?Q#:@µQ¨?ÿG<@«¨?óü9@@=¨?K—;@G©?;!>@†©?‹B@§€¨?>kE@¯ô¨?cæC@§†¨?óE@ߎ§?“¾F@:ó¦?ëÃC@•”¥?ÿÍD@c4¤?!G@ßå£?ÚF@Ñ1£?òJ@/¢? KG@ S¡?©ŠF@§8¡?VB@ëŸ?v‘=@¯JŸ?8É<@+Nž?Jê>@Ùú?åµB@®gœ?×¢H@ÿÿš?Ò M@r›?gR@Ø›?LÃV@ª,œ?ýWX@ÕG?BX@rÄœ? V@O<›?†¾X@|6š?‰®W@†š?שY@äQš?zIY@”š?€þY@üš?§S@€™š?ÃMM@›?2©I@÷×›?è¼K@%'›?$N@Ã`›?ðßO@‘L›?vP@jçš?ƒQ@é!›?\T@a‡›?US@§š?ë¬W@ÓÑ™?GzX@™Ú˜?S@o¸—?|L@9V—?ÎoE@Y)–?‘$D@ ò”?&˜B@?±[B@¥F”?TËF@tÞ“? M@qN“?7S@­2’?dOR@fÍ?üBM@~?éKK@“ÈŽ?C;G@ˆ?#G@^?N@¶Ã?ÕaW@„p?Áå]@?)?á”V@ƒö?Ñ%J@oŽ?_ó@@®?:s?@ˆu“?qðB@Y\’?«Í+@Šø?Jë @ëÈœ?zÞ@_ª?JiW@öí¨?é&Y@Ú"¨?\b`@št¨?|Ðf@á§?oëj@§?q2p@/é¦?þ¾p@0’¥?´n@lM£?UMg@)¡¡?£_@”© ?§U[@Å ¡?§šX@²­ ?kÁZ@#© ?nYR@<·Ÿ?SH@§Xž?BA@rÉœ?9@Gœ?Nª5@y5œ?m[5@:.?&Ó4@òÞ?Û5@'@Ÿ?N 6@ûp ?Yƒ7@ý¡?‰_:@Eú£?ËF8@"ï¥?Ûª7@’v¥?{²;@Aƒ¦?¶Ø;@Îñ¦?žp<@'˦?ÛQ<@— §?H¢=@70¨?`¸?@^é§?„9A@K§?+ŽC@Sˆ§?ÓŠC@J]§?+ÏC@é ¦?Ê7E@î¥?›ÁD@í¥?¸¹F@/±£?ªUI@}£?-!I@Nù¢?ŸÚG@`I¢?UoE@™¡?õ!C@°>¡?ÿ%>@ت ?FÉ;@ ¡Ÿ?[r8@©Öž?î6@ùS?† ;@7gœ?zæ@@—È›?ÄJ@ž¢›?ñÛQ@Èj›? KQ@t ›?ôS@k1œ?|DY@ßý«?Õ[@Â#«?u?`@òóª?Fyc@R®ª?pîd@àÍ©?qBi@®¨?Ó5q@Ïq¨?Hþs@C´¦?œ r@¤?ij@Û¢?âÿe@§?¡?Þ¼^@^· ?÷]@9- ?­"\@£Ÿ?ºŠU@\Ÿ?)wK@oož?©³A@ 4?[R9@ÒÊ›?éu5@½œ?ð7@à?4@œú?`3@æ2Ÿ?þk7@  ?’é6@¸¢?˜i4@²%¤?H˜2@vU¤?÷H8@þY¥?—:@]ò¥? ÿ;@¸«¥?2¡=@ôM¦?þ„=@&¿¦?Ÿ¤>@Ÿ¦?I?@’¦?d­A@¬)¦?~kD@™F¦?*¶B@#Ê¥?Ö@D@æ?¤?ÀE@|Ì£?ÞG@Í”£?Ì¡J@†£?ƒMJ@!ö¢? ðE@D¸¢?jÇB@Y,¡?,û@@“ ?yE>@éÇ ?ß·9@ZùŸ?ºù7@U¹ž?bE9@¶Î?’=@v–?y#@@ùÒœ?n¾G@›ø›? zP@5›?‘S@ôMš?ë6S@2Úš? ŸU@AÔ°?C¤P@"é¯?%ŠR@ËM¯?Š›S@¹¼®?çªV@έ?£j^@E«?xëj@ùæª?š²q@y™¨?÷øn@÷¦?Å)j@Áº£?ôœe@˜¢?ºž[@Ρ?ÄtZ@Go ?Ñ\Z@8Ÿ?[œ[@zž?Ñ]S@Ξ?ÔFH@¢ ?gö=@­Ù›?âW9@³‰œ?|8@çÆœ?Tè4@Ÿ¤?ëã7@jDŸ?/c8@¡?ÿ64@†¢?ƒ92@«¢?Gè2@1#¤?y#7@#è¤?‡;@Ë ¥?ëG=@W¥?Lã<@ÈL¥?%<@Ò¥?¦h>@ ¥?ö1B@u­¤? E@ñʤ?t”D@¢O¤?ƒíD@P|£?@%E@I1£? JH@€£?jÛI@ª £?‹¶H@x¢?ã³D@P˜¢?³@@«]¡?`•>@iÄ ?uH=@B ?¼0:@4¼Ÿ?K|:@döž?¦{;@ÙО?ŸL@@Ýdž?Õ“D@’d?OG@ÈXœ?)ÍL@;@œ?ê·P@•f›?[N@wkš?¥5T@7º?ѯ2@й?ʯ1@¾E¹?Š2@ßC·?Î;@4™³?N–L@:º°?äZ@A\®?ó½d@e\«?‘„i@ø©?™•h@C3¦?Ì]d@D¤?›Ã]@¿¡?ΣY@~V¡?‘áW@M‰Ÿ?K[@ê?pwY@P³?‘¥O@Ôíœ?9DD@¢­œ?–^=@4œ?J“7@—¶œ?‡I8@kò?Щ8@¥…Ÿ?P6@͵ ?ªç2@0}¡?cÀ1@â¢?§Ù4@$9¤?Äô6@Íö£?¦0<@‚¤?n£=@Nh¤?1P>@¤?|ì>@¦—£?áçA@Vê£?;ÈF@‹™£?üD@Ü•£? ÚC@¼Í¢?¡$B@eû¡?%¡E@xС?óG@0õ¡?Â~J@켡?¯D@‰µ¡?à D@Qß ?Ÿ;D@¾áŸ?D@@1ÁŸ?Þñ>@†äŸ?€’@@´Ÿ?!@@ ®Ÿ?Ü­A@ÕiŸ?qJD@M“ž?…¬F@´?7 L@̉œ?o N@Uœ?Ã÷N@Ž>›?›T@ïþÈ?ßò@ É?+@GÆ?0î@zÃ?†å@”«½?âà-@×˸?²8A@Š ´?j‡P@l7°?ú·\@l‡­?ÞC^@-ª?è"^@Öo¦?¶Ÿ[@9q£?ðY@Z¡? W@¨ÁŸ?½•U@´¯?NðX@4œ?ÂüT@I*œ?L;I@¸5œ?é@@‘œ?Õp<@–dœ?©=@v‹?„Ã:@ZŸ?õ¾6@; ?Ó?5@Qú ?Þ3@ºý¢?kv2@çø¡?+§7@ ó¢?X?@Îy¢?™ž?@ÈÇ¢?bg@@ye¢?ð¢E@m}¢?µîG@ÒÚ¢?̓E@¢?uõB@ߨ¡?[ŠB@Iv¡?€ËB@:h¡? G@ðZ¡?þH@Ÿ ¡?F@o¡?§gE@¥ ?Œ E@ ?)D@© ?m¾B@–¨Ÿ?]JC@åF ?ÆíC@4¡?ëâB@Ô¡?ûRE@ÕO ?ºþG@t†ž?VœL@˜¥?MâQ@z=?6ÒS@u‚›?.µZ@ÐÛ?=ã?URÙ?^Öß?ú.×?MGé? òÓ?^Ñù?§Ë?»Á @¶«Ã?:l$@C¯¼?Âg9@Ç8·?lGH@í³?áN@Ê…®? pQ@»^ª?¯ãR@1K¦?ê8R@'«¢?ìŽP@£Ì ?‰qQ@¤dž?¹S@‰œ?qƒQ@žÈš?J@óêž?^UI@Óœ?¾óK@‘9š?»ÓN@yiš?ЃQ@¬ ›?IµL@¨Ûš?r H@ .œ?ߢ@@Rd? }7@àž?yº5@›ßž?a?8@Êòž?ÿ”:@òÛž?~î9@ûÒž?f+=@øØž?‘oA@`3Ÿ?Ñ`D@¥•Ÿ?†AE@¿gŸ?ÐA@«ž?ʇ>@a¾ž?§Ó@@`QŸ?fÖB@xŸ?z:A@£0Ÿ? XA@`—ž?8ö@@Í•Ÿ?°ù@@AÝŸ?”D@Ñ ?®ãF@޹Ÿ?ÈI@7) ?4L@Ú‚Ÿ?‘{M@zSŸ?ÀN@Ûž? 6P@t–ž?ÒW@õ?M–[@ô œ?ëW[@sýš?ÆßX@×ÝÞ?Nñ?|Hß?Iç?¿à?¢ä?W¼à?›á?Odà?&†é?©ÍÚ?ïÇñ?À³Ó?6Î@£ Î?9f@A¸Å?Çç$@âX¾?÷8/@h·?)6@½°?ë6@nHª?=<@¢‡¤?v÷=@áKŸ?«ä?@Q…›?×RH@Ëó™?qL@7]™?ñÂP@"±˜?¤iR@ š?^L@¿%›?Ùr@@Øþ6@é7?î5@köœ?%p:@M?8=@Oe?òB@1ž?5¼C@'¸?J´>@uA?üá>@=’?ï®@@!Ç?cmA@›Ù?bâ?@Ýÿ?ùÔ=@ð?Ýi;@àž?¡5=@Ÿäž?«hA@º½Ÿ?žF@…Áž?™L@ÍuŸ?…½M@ªŸ?QéO@צž?YˆR@Dgž?¦OT@§Ä?,¨Ú?dñ?9{Û?‘ ô?‰»Ø?Ct@żÑ?ú³@©øÉ?ä@éëÁ?Ì @¼Á¸?»Q(@êz¯?¸¢*@v§?µH/@£ ?­ˆ7@‘Ù›?¬ A@]²™?Q£F@áÆ—?DN@µ—?P¿S@&ã˜?1¢K@§Šš?”€A@Vœ?±¯<@+§›?Ô7@‚Š›?xÝ7@ÈV›?VÍ:@4›?¬+:@®¼›?m`?@\kœ?õA@„5œ?¾=@^$œ?S?@µqœ?Æ A@Ò¥œ?ïa@@«µœ?ö;@¡A?™Y7@µ?k6@15ž?ÇH8@гž?•Y?@Õûž?§ÒE@ydž?î§K@ôÉž?ÖN@Öñž?âR@®§ž?ëT@¶?~U@Šéœ?nW@¢vœ?¯èV@9Nœ?¹R@¡—›?œcN@ ¹Ù?ìX@‡Ø?"Ä@`J×?àÚ@Î~Ö?•ø@Ø¡Õ?5g @šÕ?‚@ÓÿØ?fõ@ÛÚ?µ­@ØÖÙ?à^@<øÓ?((@I0Í?÷± @Â?¯O@®Œ¶?Ö|@<Ó«?+{$@5"£?^Q/@Þôœ?|7@u„™?iø>@Å.—?SìI@ε–?‘K@ü`—?‰éH@B™?¶6C@å™?×=@ywš? Á=@\ ›?3€>@.‘š?_ˆ:@KJš?ë;@´)š?ºU>@hš?'>@m€›?zÏA@­ã›?GÏB@º œ?Gõ?@·í›?£Â;@[÷›?ŽS7@’ûœ?¼6@áD?¬)7@âG?P=@\ç?)hC@꟞?`^J@$<ž?·eO@_ž?ƒP@æ®?‘R@î\?ÑòS@jšœ?\~U@<œ?DÔU@Ö›?]SW@øž›?À.S@ Õ? ´ @ ñÓ?ͤ@ó‰Ô?(@‚˜Ô?ëë@›óÓ?’u@QÓ?­¬@ÍYÕ?¦‘@¹'×?­_ @À5×?Â@‘ØÕ?6@/Ð?ÞÇ@UÇ?¯p@x½?ß @!–°?àï@c¦¤?YØ#@Ì?Ñ0@\˜?^x7@Ö?`ë<@íª•?+A@>–?è•D@ÌŒ—?‚:E@Ä3™?>CB@0š?‹A@0Y™?ƒÃ=@„˜?·X9@(©˜?ú9@Ω˜?Р;@y«™?ë•@@Ô«š?‚GB@&K›?NVB@¹›?kü?@vs›?%Þ<@œ5œ?t”:@7)œ?‚Ë7@ Rœ?ÅR:@ªvœ?]G@@ &?ëC@\ý?”¢F@÷ ?®õI@·¢œ?ræI@§)?ÅŠN@Íîœ?Y¥U@Qœ?æX@f œ?ßÅY@¶Ñ›?îR@.Ì?`àã?×9Ì?^þ?íÎ?. @DpÐ?õc@‘…Ñ?j3@:Ó?^Z@×ÀÓ?>b@ÝaÓ?Äã@*ŽÒ?(‚@áäÐ?µ,@PÌÎ?^ @tÓÉ?ð»@™Ã?uuý?Oµ?µM@ç§?Í‹@1Yž?hï#@‚^˜?(Y.@>o•?l6@¾”?kè<@36•?ãüA@Ì¥–?%HF@_·—?èF@ðï˜?3A@„˜?Ñ;@x±—?†8@ο—?&ô7@@=†œ?$B@vhœ?¤ D@/œ?nƒF@tû›?šòI@})œ?’S@o€œ?È“[@'М?9íY@‘œ?šR@ŽÙÂ? O·?ƒÒÂ?†Ç?/xÆ?QCÞ?XvÈ?.Q÷?Ë?µC@ Ï?̰@î%Ð?J£@öÏ?=@F¸Ï?Ô !@ žÍ?ÕŠ@NûÊ?‡(@'Ç?¤° @ª Á?øJ@ s¶?è!ý?µ¯«?ÒÐ@| ? ª@™?x‘)@ó$–?aM2@*5”?õá9@Oi•?Jó@@„ð•?ŒùE@oè–?7H@ç¼—?µ1D@Ë–?¨5;@æo–?Ö4@—?`7@Rb—?ô%=@9˜?0_B@KJ™?´¼B@ÕIš?d¹F@>›?2›E@/Þš?Mâ=@ÙMš?jQ:@3˜š?#8@nC›?L[:@Xø›?kÒ=@Á›?Þ$A@„›?[¥E@TÔš?¢ZH@œ?ö»P@Ôé›?xCY@¸"œ?ÉNW@â›?ž‘S@§‡À? †œ?¾?E1£?¶¿?š²?Gм?ºÈÁ?ìÂ?áçÓ?²ôÅ?ÖAê?`È?Y™@ËûÉ?V@ÏÊ?Dë@B=Ê?˜t @‚Ç?.!@í^Á? Œ@K¼?fR @ÑÅ·?²p@¥¯?Ç@]b¤?v£ @*=š?yª@pä•?$/@‘´“?£8@*•?T<@(–•?ýåD@–? dJ@š%—?æ D@›r–?äB:@ƒ–?“W7@f–?:<@ÕU—?Ô¹?@+—?kÜ>@¾(˜?—E@™?k5G@4­™?ÁÐB@‘™?u>@9y™?Z9@cš?3.8@á›?„:@?e›?þ >@Ëûš?€ÖC@X£š?šXI@Œöš?BgM@ž‹›?î£R@Gƒ›?&èS@nãš?³S@èö½?Ê•™?Dæ¼?çÍ—?ß±·?ëÀœ?8°¶?¬â ?ÞT»?¸Ê®?D½?ʽ?…l¿?CóÓ?(ÎÁ?„ò?-þÃ?jr@l Ä?Ä‘@MáÀ?¯@·M¼?0¹@ï·?ß @² ´?…"@c^¯?Ï@I¶¦?‚@Î¥›?*@ –?Jr*@å“?7¦2@#I”?MF6@Iû”?A@te•?qI@¾–?Ä´C@ئ–?ì,<@ö–?‚¿9@fM—?ˆd<@kÀ–?Î=@1g–?²Ü?@Í—?jqD@Ä8˜??ÑE@õq˜?D`B@uC˜?)>@ט?AÌ9@C™?«X7@ô»™?Ãu;@"cš? °A@Ù š? ÍF@YÑš?\}I@B›?+YJ@†“›?b´M@êô›?jhP@i·?O)?z´?£)œ?”î³?™:—?Àlº?3m›?$Z³?R±™?1ì´?Ω£?]·?ªe¶?蔹?QmÊ?zU¼?/7ì?k.½?+Ý@,Ĺ?Éè @c·?Vy@Y›²?Ê@ê®?Ä£@d¬?ê¨@y§?äY@ž?½Ü@…Ö—?ªZ"@|d”?f+@’g“?}U2@ˆ”?×>@Ëî”?@ƒH@|+–?56G@L –?ƒ‰?@ÞÛ–?B¹=@· –?}“=@$–?¦~<@¸î•?fi@@Ö#–?ûôD@`q–?ñ E@ô–?æáB@a˜?ŒÃ=@ǘ?d’:@ð$™?.ñ;@ š?r.?@ÿpš?ÇC@?M¶F@xH›?öKF@¦›?wqK@^Í›?WgO@kœº?9°?Q„³?tª¦?Ú"·?LO ?RÒº?ãÙ¦?¸?Ý8œ?›°±?,ûœ?d¸?¨œ©?âº?7÷»?å¸?þÅÏ?Ýëµ?‡·æ?g³?‚ÿ?Ãi°?d`@·×¬?•k@á…«?Ù@¾<©?º @Ë8§?]@DÒŸ?Ìè @CÅ™?è@x¸•?6'@Ó?ðÑ2@Ó‡“?äá<@õ“”?±$H@G½”?µYK@3–?Y+G@ϸ–?JqD@®S–?ª?@Ô8•? b?@ñu”?ºQ@@v<”?QöA@QI•?ÅTC@:×–?‘~B@jþ—?„­?@Õ˜?Ùþ>@© ™?u¸>@1ò™?ž—>@÷š?²àC@ó~š?°²G@û¹š?9òH@ ±š?Q@R8µ?ˆ{µ?ªò´?‘…ª? ­?@›?ç±?)U¢?à‡²?®¤?”¹?‹Yµ?ÿi´?(KÀ?0±?—®È?ºÃ«?>ÇÝ?ħ?…_ÿ?I4©?2'@ÉN¦?ð<@|>¤?R@sº¤?’_@†{¡?«÷@îèš?c@Åô•?ä$@_@“?z½1@ÆÒ“?Cû:@Qe”?»ËH@ü”?¯£R@Fו?XsN@@Ç–?>ÈE@GV•?j=A@§(”?Œ<@ ~“?$Þ;@ø8”??@¾u•?¨D@µ¨–?ìÓE@Œœ—?NõB@lò—?Ø<@%È—?Üý<@pÛ˜?F>@ š?³.D@Æš?|UG@è™™?j.O@³úÁ?Ôɼ?wé´?£¨?ñ¤¼?ßš²?ûà¹?,ã´?Ϊ³?Û.°?±Ð¨?ko°?<î©?Á¯Æ?Ü ¤? à?5¢?€ó@§ ?á@_jž?b\@A¸¡?›B @¶ø¡?Q@œ›?ëp@¹ÿ–?€œ"@Ò[”?Õ0@P“?¼#<@!¤“?QkL@yq”?]YV@D[•?vçP@zi•?Ð÷D@¦A”?<@á4“?]ª5@Ó“?¹a9@« ”?÷jC@üs•? I@ù§–?‘gF@n —?A@ã^–?×[>@ŸÇ–?,E=@ö…˜?U?@¡œ™?² D@Íø˜?/µJ@·A­?«¬?Ë4¤?-8¨?¯`§?p®¹?~]Ÿ?eÊ?º(›?÷æ?C<™? @v›?Àõ@rež?4Î@þ¡?!ü@YQ?˜M@Ä—?Å@ä6”?ÀM0@“?_>@€“?œËM@5y”?å1Y@ÛM•?VQ@c¬”?QŒ?@E"”?vø5@³’?^9@U’?—y@@P‹“?”­G@g‡•?AÚI@\º–?i.F@æî–?‡NE@ãM–?Ç\@@¶–?¼@@jL—?+ãC@œ”—?žPF@Õ¨±?çù´?Wý§?:¶?ú×¢?^H¼?”?s;Ñ?è•?è@<Œ˜?ª#@·èš?‘u@© Ÿ?Ñà @=E?6©@Û˜?ÈA@}¥”?É,@ì’?æ=@Xs“?éP@=”?`W@-”?änM@r'”?èÕ>@]ò’?8 :@È‘?È=@b1’?¼ùB@ÙÉ“?û×G@vb•?^¬J@{Ž–?˜åJ@ŸÙ–?@sE@³à•?x@@#“•?ëC@íÏ•?Ò{C@çü¥?Àn¹?ú›?7X²?G‘?/¾?èI‘? ÷ç?˜I•?ñ@B˜?ð‰@=%›?Ž @ãa?Ht @¨“˜?bi@u•?ô¶(@j“?ê?@Ì’?)”L@Ð “?eS@ÍJ“?ñM@¸=“?°A@é&’?*>@>’?3Å@@ô‘?ð–D@mM“? üJ@.•?ïO@òŽ–?…¸M@Ü•?@ÞC@Ž>•?“ú@@‡ö”?DÚB@nˆ¤?ç´?û¢‘?0·?‘?öêÍ?6ñ‘?vŽ@!š•?{‡@–ú—?R&@¶Pœ?‰p@ÍŸ˜?è@d¯”?H/*@ˆ÷‘?Äv@@5­‘?óüI@q\’?ÉáR@“¹’?kÐP@ø’?â~F@ñ’?ÚjA@†‘?¶9A@ìÿ?+áE@Ýè’?ÞëJ@)T•?(°O@™Â•?Ú™H@í'•?Ô%B@Ór”?;õB@¸›”?2l¨?B¸?Ö¿?¨VŽ?Æõê?ö®’?XM@ï–?pÂ@s]›?àØ@à$™?]@Õ”?òô,@· ‘?ŒÏ=@1`‘?_-H@A’?ç¿S@µ®’?EfV@/*“?-˜I@ a’?m˜?@{†?”A@¡E?œÛC@,’?bI@]\”?5!N@›•?ÒiJ@ÑÜ”?˜”F@xKœ?‘d³?I—Ž?†ˆ¾?©¶Œ?‰H×?õž?øŸ @ÅÜ•?ý|@i›?@q˜?xá@¯v“?aÌ-@Š|‘?ÜÍ8@" ?aD@ ‘?M»R@ˆ’?] W@y®’?š L@Øf‘?žŽB@¾?ë@@á?Ÿ`C@ב?“ÔK@Š ”?`P@°”?µL@k??Å#¶?}êŒ?×¹Ñ?ó@?Ò @5–?ë±@m™?:)@oá—?4b@$¶“?K@+@…–?MÓ1@#? A@eÅ?[ÒP@8r‘?TW@ù?’?šˆL@‹“?ç½@@Ï—?:@ç¦?W P@ш?ÎsX@ëY‘?Q`L@Í2?ÿ˜E@R?=ZG@VW?“éK@æç•?Õ’Í?´òŽ?6Ë?|'Œ?Dÿ?‘?0@ek”?J¢)@vÈ•?¢+@ “?‚I-@D1?q2@Z?žï<@2M?úpQ@CH?DtZ@XG‘?ë–N@ÑÝ?LF@ÉÊŽ?R¸H@t+‘?:‘½?‹øŠ?º‰Ê?¡±‹?»êý?}p?ga@Äe“?k—+@g”?öÎ0@×±’?\x.@ÅT?Y¶/@¾?{Ÿ>@I??ßS@Yî?©$[@Å\?u^P@!‘Ž?´þH@½›‡?t‘Ï?ûèŠ?%"õ?ÊŽ?û@h¸’?(*@6”?Ò÷/@§“?tw0@SÌ?Iy3@q¥?xC@H?”ðX@âê?3 \@øH?ñÑM@~ •?¹—í?J—‹?4\ì?·´Œ?H@r“?øH)@—”?ˆ‘3@€T’?øé1@Ä@?ºë9@© ?ó¼H@nG?j[@²§?ìæT@á>‹?/=Ù?‡¸?Nïò?ÓÙ?ïÏ@·L“?%–.@2j“?,û5@ü‚‘?46@$ËŽ? H;@â“?àM@sW?F\@’‹?t›Ý?ೊ? `ô?;&Ž?f“@-“?|Í3@ìÞ’?–„9@uÿ?ì8@$ÅŽ?Ò‡=@£(?«T@Ö‡?íä?™ºˆ?¹¬ï?±?ì@ ³“?àÄ8@J«’?6¨:@3§?’8@#?(œF@mc‹?ô¶å?Š%‹?!‹ö?û€?Å#@ÔÊ“?¶[9@6y‘?·;@{ÁŽ?Ù=@Ok¢?] @ôÞ?·O@¢]’?§-@Þ£’?èŸ>@eô?,7;@J ™?"r@4a?z: @þ“?Ï¿8@ú‘?L">@'A˜?~Ð@Ë>?¿‘@º•“?Ž=@¬@Ž?sø?5‘?Œß@;ý‘?—Y@¶¼§?‘n@@A-§?G;=@ü§?y<@犨?Ýø;@©?í>=@˜¨?!:@Þq§?þù7@ )¦?>ù5@`á¥?Iª2@sÛ¥?³/@%u¥?]q,@˜î¤?÷)+@æ­¤?uô+@gͤ?E<.@7Ϥ?7¿.@K¤¤?ã¼,@yn£?ǧ,@á¢?×5*@šp£?Ág)@Z{£?¼‹,@ˤ?åœ1@]¤?VÐ6@Ôk¥?%‰8@³Ñ¥?Q€8@7”¥?[d2@5ã¦?ð?+@É™§?æ"@©©¦?*@8U¥?¬T@(¹¤?åø@ç[¤?ú…@묤?ïÕ@äE¥?‚ß@Ò¶£?%z@| £?wÜ@Œf¢?óZ@WŠ¢?;É@ý¢? ú"@_c£?kð'@8é£?Ѭ.@眤?jÜ1@»ð¤?w'6@¸¯¥?tñ6@zX¦?øE5@è©§?—0@0x¨?º–*@úE©?Cš%@õZ©?C%@…R©?G‡$@šœ©?H!@ï÷ª? ‘@R¹ª?3@ŒXª?ªü@FYª?#H@Жª?ÎÉ@½Nª?Ë @¨u¬?_@Ÿ©­?Ú@w»°?³n @vÇ´?b@~¹?¥Ã @µ²¾?lº@2}Ä?e @‹PÉ?eK@ÕºÉ?+Öö?ý-Ç?¤•ê?üÔ¾?¡åÔ?@Ѥ?fb<@ô›£?"•9@Ðê¢?äo<@u©¢?Øc?@l¡?•yC@‘èŸ?pE@{ Ÿ?ã?F@ö®ž?U´H@P&ž?G@}(ž?¯ÜG@kž?ªÛG@r>ž?QèG@ €ž?„¯I@až? LM@%–?-dP@%Î?ƒ!Q@ùܧ?{`F@z›§?)©A@Ûħ?¬>@€¨?9@@•¶¨?z1>@®ù§?E[:@ÝÀ¦?C7@¢­¥??™4@Xá¤?öÏ3@‰¤?ʆ1@Ū¤?4/@[&¤?0@«w£?Ó[/@ùw£?Ú-@У?8ë,@ÿ÷¡?“-@š¾¢?§…/@„‹£?ë/@ a¤?2z1@f—¤?hƒ5@Wì¤?ô•7@Ù¥?L¡6@½k¥?l1@z·¦?#G*@;Ŧ?Œ~%@ o§?Í"@;š¦?^C@Gþ¥?@>@ü¥?ÀË@Ö9¦?QG@K`¥?·X@bž¥?@C,¥?p@æR¤?¸Þ @ æ£?ˆÇ@hï¢?ô@AŒ£?—J@ÐS¤?k¨@P¥?.è@ª¥?†~$@Q}¥?‰e'@“˜¦?+@®§?8í)@û§?m +@td¨?Fa*@²'©?}+@Cª?!+@š—ª?³Ž&@]S«?œ&!@xj¬?w@4à¬?ÿ¡@äÖ¬?%î@ u¬?üT@NL¬?®c@h²¬?^»@¹¦?ÂH@rZ¦?” D@³€¦?³—B@˦?# B@ä¥?·ö>@;ÿ¤?Ÿÿ9@k®£?“=6@ç£?'b8@ò¢?@<@Óº¢?àˆ:@·Ê£?ø-6@H£?Æ3@離?ÏÀ2@N£?±þ0@3¬¢?ب3@z΢?xÏ5@Ï$£?Ûe6@«'¤?1:@õ§¤?U55@á¹¥?û0@¶»¥?%f.@ïc¥?^@*@»©¦?Ô"(@T¨? &@?¸§?¶Ð"@Æï§?v¦ @µ§?ã¶@c<¨?Qù@i¨?&»@¼Ì§?Ð@z¯§?ËE@o¦?½Ï@áó¥?÷ç@Ød¥?Ó @jÓ¥?Ð @bê¥?° @ž3¦?×§ @õª¥?©¢ @êù¥?¦Ê @¾˜¥?ß»@iI¥?~J@BS¥?U»@‰I¦?ü @LI¨?¢%@¸©?aã)@Ÿª?Úy+@ü…«?>4+@ö¬?–Ï%@’­?Ù|@S·­?“ù@R¯?CÀ@ï?œ@9¯?rñ@½ø­?Bi@Và¥?5@®£?Ò|=@5‘£?43<@®Ç£?^9@iÅ£?(58@«¬£?:Ñ:@ýP¤?eˆ7@hÛ¤?þ96@!¥?ÒÃ2@”¥? ‚.@%¥?¸*@C¿¥?{(@K{§?D&@H¨?k/%@í̧?·p$@[ͧ?=·!@';¨?Lõ@¦z¨?øº@r6¨?J@¬¨?1…@u•©?§¾@T…©?`±@@å¨?¡Ó@AW¨?:Ä @̨?›, @‹v¨?$š @8ܧ?(ã@T§?3˜@,T¦?œb@±Ù¥?v@ÝÁ¤?@¨@Ê`¤?Ô @à6¥?Æ¿@e§?€¾@•E©?"@$]«?ul&@Á¤­?Î)@¹g¯?Îy'@åþ°?·¯"@µë±?n@¢P²?›@œ¨²?Ö:@º¦²?–w@n²? é@ë¦?giT@„©¥?ñM@ut¤?FE@ëÇ¢?…@@ó¡?2U@@‘ì¡?)C@½ƒ¢?ˆïF@*Ý¢?—¡H@¹T£?1PE@D¤?kÔC@ˆ6¥?JÎB@Ñ¥?~‡?@.‹¥?q ;@£î¤?ç$8@çʤ?$G5@ؤ¤?$Y2@J¤?ãC-@vL¥?æ*@¬’¥?^«'@Ц?í)@Js§?= +@9¨?)@Eç§?“&@°“¨?d##@š©?‡ @Ä*©?Š@ ÷¨?@б©?:h@뿪?íú@1k«?Þx@窫?¼•@Åõª?Þ¦ @î,ª?̈@ Æ©?³†@Nª?#Œ@Dª?ó´ý?>~¨?‘pø?ô£¦?uæñ?Ñ%¥?%Vð?áe¤?–eö?öV¤?ÿ²@‘¦?÷‚ @ò+¨?øu@ ½ª?à9@}®?õµ@¢´°?AJ#@ȱ?KŸ @Hƒ³?@d9´?q‚@åy´?`@ˆŒ´?Ñ@·Tµ?{$@ͧ¥?Z@5î£?Ü€P@ñÛ¢?IJ@Ý¢?k F@ë ¢?|F@íR¢?óI@oÞ¢?5¬H@žÂ£?wB@G}¤?!§?@ ¢¤?‚†;@šæ£?âÆ9@Òã?µ5@(Ó£?‹Y5@õ8¤?5&4@¸À¤?y¢1@rפ?ï.@⨤?!.@ò¥??½,@¨í¥?„+,@›6§?¬8+@#1¨?K)@[Ù¨?°L(@Z.©?µ¹%@÷'ª? à @·©?&˜@u8ª?ĉ@dª?¡ñ@ŽOª?ÎŽ@¢I«?ö* @‰e«?q<@ä¬?ï@ ë«?Þó@r‘¬?l†@„7®?h3ü?z“¬?Gö?ÐÆ©?œ¸ó?N(§?Ñfî?òá¥?¬ê?B ¥?§ƒé?—¢¤?d¢ñ?‹Æ¤?uøü?F%¥? Ð@”˜¨?_Ò@`Ƭ?êŽ@¦'°? µ@òx²?ñê!@€½´?V€!@Ãx·?@q‚¸?ð@nå¸?²@|Z¹?1l@âC¥?[@”’£?ñ R@‰m£?]ÕK@³£?&9K@8¢?·J@rÕ¢?ÛƒD@`¤?þ‚=@Å…¤?F:@2ç£?ç§6@3£?`´1@s¢£?¥ 0@í£?Ć.@Q¤?ÖL0@¦¤?Îl0@Zö¤?[Ò.@°¥?7/@ý&¦?xò-@:#§?L$-@ÉŽ¨?¦(-@Üí¨?¯*@Ô©?w‘&@ï©?ÌÔ"@]{ª?T4@o|ª?LŠ@?Ø‘@䆪?zá @åª?@š’«?…è@(à«?žì@š¬?#âÿ?è©­?¥ûü?u߬?²?ÿ?«?«n@o«©?9!þ?N¨?L"ú?{"¨?Æq÷?7Ч?¡õ?Ær§?]«ò?@¨?¹úò?õ§?6ö?Y[§?÷7ÿ?ÿš©?8Ó@“÷®?n8@Ð-³?›ý@ò%¶?ш@0&¸?~@:»?@Ö@'¼?wß@½?|í @ìÚ½?Ç @Õ¤?Ë®_@#£?ßXZ@´[¢?²sQ@ÀÞ¡?^€K@°a¢?L%C@&S£?µ¼<@²£?QÉ6@éÔ¡?*0@q(¡?Ü-@ý¢?Ï,@”¢?€ /@‰ £?ÿ.@l¨£?§S-@zؤ?f,@nD¥?‰e,@ø³¦??(-@A §?¼Û,@[e¨?­Ô*@ƒ ©?zš&@Q©?¼p @$Ý©?ìD@å«?@@ö!¬?&à @NŒ¬? # @)t«?'C@øÊ«? @`)¬?¿8ÿ?ˆ«?¹ @²«?û¶@r|«?µµ@°X¬?Õ@tP¬?2N@ø"«?nó@é«?U]@s¬?8é@Rß­?§@¼®?S@N^¯?d ÿ?x3¯?‘ÿ?(\¯?×k@O±?k@5ã´?g© @œ4¹?ÒÝ@a¸»?t@…½?HÙ@z:¾?îW@6PÀ?Cf @?Â?Y@¥;Ã?æb@œ¼¢?QŽ`@é¡?”UV@¡r¡?ÐyN@Ò¡?¨ØF@Z£?ž>@i=¢?Ò 6@’¡?‡k/@,µ¡?ø¢-@Ö9¢?ß+@ü3¢?I.@¢?{+,@ÅB£?l+@8W¤?%+@Ff¥?Âæ+@œ¦?.@Üo§?»,@6ä§?|½%@E?¨?O#@e›¨?äO@¼©?c @X0ª?·B @«?»-@ù‚«?‡D@˜¬?è"@6û«?Þ¼@‰ü«?uý@“«?Ä—@Dƒ«?·H @Dú«?^O @5®?šæ@ì¯?+@„˯?Þ• @ ް?ˆe @ç²?›ë@¤º²?@"î´?/@T§¶?ZÞ@ŠK·?µ½@'7¸?Û@-U¹?×á@g»?oV @j½?J£@„Z¾?³X@L¿?Þú @#Á?òö@j¸Â?z*@’Æ?©º@nÈ?“i@Û¢¡?O[]@!¨¡?vT@{—¡?u€I@<à¡?þf<@§B¡?uM4@á¡?úA1@t¡?è»/@øú¡? -@wT¢?ó,@‘ ¢?˜-@™Ž¢?ñª,@"q£?6A-@¨s¤?9Œ.@Â¥?d-/@?¦?µ.@!‰¦?!ü%@W§?Ê@vë§?û@Eæ¨?æ>@B©?.2 @Šª?Ü @ ܪ?^¾ @‚'¬?i< @Ŭ?ëª @Cܬ?W| @Ìú¬?xº@0H­?Q@+ª®?’Ý@K+°?C@†±?‹g@ —²?¯€@uK´?f @LEµ?^I @éS·?ñ @Á˜¹?Šl @nº?Î@šÍ»?)2 @ûœ¼?&Ó@¡Z¿?¨ @L„À?•é @lªÀ?Š­ @ áÀ?®æ@]•Â?+u@ÔÂ?í×@R”Ã?½¬@}ÏÆ?i°@ÀÉ?åÈ@¶>¡?øäR@¹J¡?#ìK@8Ö ?Àû<@þ6 ? ²2@uûŸ?b±.@° ?‘Ä/@I¡?cS-@¢?0Ã*@œ¢?’*@‡“¢?’è,@†£?Ì0@_’¤?”„3@A‘¥?¿>3@¦?aÑ0@K¹¦?úœ'@ž”¦?É @5r¦?‡G@Só§?˜Q@½¼¨?ÀM@ð»¨? @žæ©?T@`žª?@¦È«?ræ@ûˬ?f$@ÉR¯?†¿@q±?-@TQ²?:@q¿³?¶Ø@fµ?~§@w¶?i´@xw¸?t}@Ð º?HB@bk»?sJ@©¼?Ç @T;¾?öý @ס¾?ÙQ @mÁ?é_ @®µÂ?¦Ú @a¦Â?ú»@LêÁ?½á@>Ã?9É@¢qÄ?ýc@@PÃ?Û@gÃ? À@0ÎÆ?Ç™@,GÉ?!û?úü ?¼ÉO@ݬ ? ¾D@O= ?4§5@罞?3·1@§VŸ?Š™1@=M ?^Ê.@ö¡?h+@Ÿ ¡?Ù/)@º”¡?«-@¥¨¢?Cl1@ÑD£?zä5@yr¤?²Ã5@%…¥?Æß0@àH¦?C(@S4§?½„@Šç¦?[Ù@ªE§?y @Çȧ?+ÿ@#ö§?êt@Øð¨?<á@ódª?@@ë«?åR @óÙ­? >@ëK°?Û‹!@þ³?O"@Ëêµ?J| @_"¸?„Ä@¢M¹?!8@§éº?Á˜@¾Ô»?5@@Á¼?Üã@´½?€Ð@;?±¼@VËÀ?el @–šÁ?ún @”iÂ?H[ @¢Â?þ @*Ã?žŒ @ÄCÃ? @èÄÃ?ëµ@8ùÄ?ô@!ÏÄ?ö¼@í}Å?ÅP@ÐâÆ?sXÿ?RjÅ?ÆÃë?Ùã ?y‚M@V ?²>@ Šž?a6@›ž?ö}5@0mŸ?[É2@ê• ?µä.@Cé ?Ì®+@Þ&¡?Èô,@Æ¡?å¬0@)‚¢? ›4@.µ£?!6@¹ ¤?–…1@Êd¥?…*)@È»¦?™@~7§?¡†@•³§?ªÈ@þÙ¦?Å«@ÂA§?…ß@€©?CË"@R ª?¬¶%@à}«?s5&@”i­?:Z#@¤°?ß"@Îÿ²?`Ž!@p’µ?Åz@àç·?‡®@õ¡º?ÑW@:¼?b@ÐŒ½? J@¢D¾?®@¨sÀ?i"@¸OÁ?£á@ãÂ?²Ø@-¯Ã?Ç›@ÌíÂ?”À@ƒÐÁ?­`@ýoÁ?ø?@”À?_Ë@PÀ?R•@ÖÁ?r¾@¢ŸÄ?0 @Ï)Ç?Œn @‚aÅ?Pöþ?Í8»?_èâ?‘³¡?UêF@0tŸ?ø†;@E)ž?[=8@¶Éž??ú6@37Ÿ?×<3@ÉïŸ?Ýë,@Ê9 ?«}+@Û¡?UN/@'¢?Þ¶3@eþ¢?J5@éñ£?ã1@£×¤?U´+@b¦?®E"@v-¦?—|@F¦?Œ™@ŒJ¦?w@¹å¦?)Á@¨?ëŒ!@2)©?qƒ#@ºyª?Ò\$@Á4¬?™ %@(k®?M/#@Ýİ?í?#@6y³?Iz@ö6¶?©a@šÕ¸?òê@ E»?Ô—@=¾?©ò@¾¿?@ÁkÁ?[Ž@ ’Â?ø@BöÁ?X@S¾Á?¯[@±zÀ?Ž@®Œ¿?x•@‡¿?΢@nÿ¿?ši @ô¿?{£@†qÂ?ÁR @1Ç? 7@€Ê?îg @g Æ?Ö@éoº?ó ê?g, ?›Ê@@Ë=ž?U:@´.ž?p½7@7›ž?#4@§Éž?2…/@x‹Ÿ?ò‡+@ÃþŸ? \,@‘œ ?Fy1@Ž ¡?j5@Š¢?p1@V4£?@ø*@v5¤?6Ö$@ÎZ¥?–W @ ʤ?†'@B`¥?°°@%¦?„±@õï¦?и"@Àe§?ä‰#@ê©?x>%@<›«?ö3$@a-®?8F#@;†°?Aß"@o³?ª{@¤;µ?©ø@ˆ¸?\¢@¼¦»?@u ¿?x@SËÀ?Ý8@á9¿?Ú @Eá¾?·Æ@Øð¾?†Y@£©¾?¤Æ@±¿?²]@O€¿?Î&@)¿¿?x²@w€¿?þö @cºÀ?=Ó @BÄ?5ï @©_È?Xs@ÔáÌ?w( @þ¶Ë?Q?@¸Â?¿‘õ?UAž?¦=@x?®¾;@áï?Fu7@ìž?ɾ/@Ýí?â+@olŸ?Ï[-@Û ?U¢2@ ‚¡?A‹3@ ¡?É;1@Ù1¢?`+@½£?ð‘&@ˆ8¤?Qï"@9L¤?• "@ø†¤?ò!@ï–¤?½#@¦?7%@~g§?å,%@Åã¨?ƒc%@N¹ª?Ü&@M ­?Fý"@ð¯?O˜ @kB³?ª×@swµ?ì[@Ѐ¸?à¾@Žˆ»?ÑÝ@x}¿?|É@vÁ?|…!@¼?Á?èF!@¼”À?Y@½?3€@- ¾?’@Ò®À?È>@…iÀ?eø@ßȾ?Q¶ @Š€½?f@ ®¿?r @vÿÂ?%q @äÈ?4ä@Ù›Í?¢@«Ï?ãð @¿É?ŠÛ@ç?û8>@9¾?b¯;@‹Š?Yä4@ã®?-/@îž?Q~.@· ?ÿ4@lp¡?€r7@_¢?«ä2@¢?ƒ,@˜ˆ¢?ŒÅ&@Àâ£?Tf#@Ø…¤?yý!@¤F¤?.h#@±K¥? è#@ê³¥?²«&@š §?Ü'@M;©?K‹&@Ž1«?mÑ#@Ǽ¬?x!@õܯ?ÞÛ@‚³?¾@|ô¶?ú³@¸¹?–@¸ ¾?Jò @wÀ?NŠ$@<ÕÁ?(í!@µ!À?¡ @V÷¾??6@ê¾?üµ@*x¿?«@^Á?`)@(@ 7£?w$@‰¢?B¤!@Ò|£?ïë!@à¤?bÄ#@qz¦?‚M(@j_¨?ç·)@Ué©?k (@ÏŸ«?ó%%@þ!®?Y1#@ÖS°?Å'@|w³?ž8@ V·?7<@NÚº?xF @ ¿?ð”#@hÀ?œ#@|ÓÀ?›@mÀ?bî@V¿?•à@²¶¾?·;@ð³¿?Yß@ÓÂ?yQ@:ÐÃ?wt@¼Â?òñ@œ”À?I@ΖÀ?†@tÃ?–¸@ºôÅ?c6@iÊ?ýJ@ýÍ? @ÿÔÏ?¬Ä@¨!?EË:@Ê?È#8@È®ž?z¦5@ù ?ö):@¤5¡?ݽ>@ b¢?yh<@••¢?¨5@èx¢?¨¨-@…£¢?r'@kP£?çY$@L£?§½#@ •¤?ÓX$@柦?û='@H¨?ùÊ(@¿kª? ‰'@­?³ê&@«G¯?;Ï#@ß¼°?9™ @.ܱ?e†@Iyµ?U @ã~»?Î&$@úç½?.!&@ì.À?"%@sÀ?Þ"@Ñ¿?x@¬ò¾?£¨ @…¿?T@©Á?ç@8áÂ?¯@iÅ?6@VÄ?®$ @N¡Â?îf!@C£Â?hÆ @ÆñÃ?&Ú@èõÄ?U~@÷øÆ?íû%@YèÌ?¨(@ŒNÏ?6$@û®?E’7@©Ëž?Ä5@ñ¥Ÿ?8@Åt¡?Ài<@Qû¡?ÄÕ<@5n¢?Hú7@<¢?I{1@hÜ¢?«6,@nW£?É>(@àã£?N”&@Ø¥?Mó$@Χ?Ü&@Ç;©?gÌ'@Na«?ã>)@é­?ºÓ(@ª§¯?@¬'@f¼±?ñ3%@ÔO²?wF"@Qµ?/V"@žp»?£'@»Œ¾?D)@ç¦À?ö=(@ŽÀ?åX$@¶‰¿?ðà"@¯¾?ªN"@éK¿?Ø\@ÛŽÁ?g@­Ã?“H@þYÅ?±Ê@oøÅ?NE!@úÄ?О#@çÎÄ?Xu&@eÆ?&@»ÜÇ?i,&@}©È?0”,@fÚË?”0@!Ï?Zý*@¹Â?šÉ6@fvŸ?{7@Ý© ?Â:@ê¡?Ac:@p‘¢?C)7@+ì¢?e0@„¤?DD*@#‚£?HÃ'@Põ£?.'@öý¤?X9)@}Ô¦?kq)@Úv¨?t1)@f·ª?~ƒ*@Âf­?j-@ô¯?.-@a"²?å—,@_ͳ?Ùá*@¾+·? Y)@i¼?Óy*@{<À?÷+,@ȘÀ?ß¹*@ìÌÀ?#T(@™Ñ¿?,h&@:†¿? &@—ú¾?®!@ W¿?Ã@®Á?± @EèÄ?.#@mºÆ?VÞ$@ú>Æ?uŠ'@Ì©Æ?-V*@O9Ç?Ù¡)@ý¾È?r%*@Á{Ê?â×/@ÏbÌ?„\2@€åÏ?Z%/@X\Ÿ?\ƒ5@¯— ?LÎ8@iË¡?(þ<@;¦¢?ñ^9@g­¢?ù2@b÷¢?¡Õ,@ú+¤?#å(@ ¤?8ï'@Cߤ?›a)@h’¦?â,@áä§?We-@ìAª?Þî-@F­?ø,@Õx¯?¬Û-@{ܱ?ÒŽ/@ µ?ù/@.g¸?uM/@ª¼?<`/@À?·½/@‹&Á?J,@lÙÁ?¼(@ƒþÁ?| )@àmÂ?}¿(@ˆÁ?kL&@|0Á?+]#@x4Â?ú "@–Å? †$@‰ÚÆ?w'@29Ç?`+@ÞÆ?šm.@lÇ?ä”-@Â×È?EÃ-@9qË?V/@LuÍ?™©1@ô„Ð?ެ1@/ï ?f~8@ú#¢?Åú<@í<£?^²<@|}£?]ß8@ÈD£?›=0@ ¯£?€0*@6–¤?} )@»r¥?˜ *@fܧ?ØF,@š=©?8°-@i^«?#.@U­?Å/.@E!¯?çp-@çu±?N/@ÉÊ´?Õ2@FÓ¸?g­1@ô¼?5f2@™~¿?ƒY3@Á?<0@¶ÁÂ? +@´“Ã?*ð)@áÃÂ?Ôl*@f˜Ã?-›)@bÛÂ?÷ä&@§Ã?(&@è¯Å?§ä&@3¶Æ?Zq)@¿³Æ?œÕ*@ÀÇ?+R-@ àÈ?U`.@†.Ê?å6.@I5Í?™1@É<Ï?Í2@ÚFÒ?œ2@— ¢?H<@ƒ·£?M<@t;¤?U“8@¿ ¤?o€4@ö¸¤?],@ZK¥?@(@i'¦?a9)@Ũ?¸,@ª?Ûô-@"³«?;0@h]­?)1@¯û¯?2<1@×€²?ÎH/@ŠV´?P*3@Ô=·?sd4@Uxº?U—2@iÔ¾?_Æ5@³Á?f5@ÔwÂ?~W0@ÏÊÁ?¹ß-@EÂ?€Å,@eçÂ?­+@ÞËÂ?a5(@òÍÃ?cþ%@&iÄ?dr'@ÿXÆ?øÃ(@,£Æ?°ÿ+@D Ç?4&.@OàÉ?x`/@ߤË?pú/@ò™Í?‘ý2@ÇùÏ?’o5@°ùÑ?ï×4@Þ£?Ð=@õe¤?”0<@ü#¥?$+8@lŽ¥?Rì1@BN¦?UH-@:ŧ?׬,@1Щ?+[.@:/«?b0@D’¬?e’2@ÙŒ®?×+4@¡Ú°?Q–3@øD³?‰ÿ/@Z¼µ?Ô1@)W¸?³ 5@\õº?Ø4@rv½?Lš7@÷À?È8@œÂ?‡ö4@[×À?ÃÜ.@IàÀ?•å*@Û.Â?()@ªsÂ?Io%@ PÂ? j&@ªBÃ?Í](@´zÄ?XÍ'@5 Å?ë9+@¡˜Æ?ž{0@]-È?\2@ÙÉÉ?6¹2@"9Ì?%j3@Y¥Î?i7@§´Ð?@9@7¥?Ÿ†?@ö,¦?+m;@d´¦?„5@uf§?N2@Ü8¨?Ö/@!8ª?î˜0@rͬ?¦d1@ :®?˜33@Gį?û(6@:·±?`X6@Ó&´?íÏ3@RD¶?_©3@ñh¸?“ê4@Ó´»?ÃÔ5@OÞ½?èQ8@ÕQ¿?öð:@BÂ?. 8@Õ¥Â?»S4@lûÀ?kF/@ü×À?ev,@SŒÀ?á«)@ŠÀ?¥()@ã¦Á?Pf-@`”Â?HT-@³JÄ?‘Y,@B+Å?M‰/@}=Æ??R3@óxÇ?šÌ3@ã¥É?6@êË?ž:@ãpÎ?S;@ ^¦?`Ú;@Û|§?ß17@‹q¨?5@Çs©?¯4@é9«?‘ú1@Œ$­?’Æ1@9G¯?ëæ5@°?ø8@'²?T—9@xɳ?øÄ7@Mˆ¶?a6@ð¸?ÈR6@'.¼?Ÿ¢6@µx¿?²`;@ìÑ¿?‘5>@$ Á?ˆP:@ƒŒÃ? v8@ynÂ?­27@JcÁ?Ä:4@I«À?º,3@;AÁ?¶V0@-Â?ôÆ0@Œ`Â?N 2@|YÂ?èÖ1@¬àÃ?ö3@y'Å?þ3@÷éÅ?p4@CßÇ?E¾7@¶IÉ?*”:@?õÊ?+®9@"¦§?4 <@Íå¨? –;@ö˜©? ¤7@¤-«?nÅ4@Ѭ?4@Ó«®?(’6@%»°?ø‡9@a¹²?«}9@(b´?ì‹7@µ?kœ7@wÚ¸?´ð7@œ@¼?kW8@û¾?Yd=@êÀ?1@@‚ Á?Ý>@KÂ?@™<@ÕÂ?`×<@#ÏÁ?-f>@Ú‚Á?S';@kzÂ?Ñõ9@ õÂ?eJ8@˜øÂ?Á7@UÃ?”L8@ÕÄ?ý 7@Ü<Ä? ó8@¤Ä?9@ΉÆ?»–8@nuÇ?ô 9@XbÈ?8A8@Þ¬§?Îï9@O©?eò7@¡ª?P4@.ô¬?éY3@ºq®?‚¼5@êÁ¯?nF9@nï±?šŽ;@<ø³?¯];@tµ?{~<@dj¸?¸?;@ͺ?¾;@ñV½?RÅ=@ܽ?¹C@÷AÀ?fnE@ÂwÁ?‘ðB@N²Á?ë?A@KþÁ?1±@@›oÁ?_Ÿ@@ÉÛÁ?WÃ>@\>Â? %>@ñ'Ã?!?@Ã?°è=@9Â?z>@V`Â?6Æ@@xÃ?¶ˆ?@ʧÄ?!>@CWÅ?Dð<@‰ Æ?xå<@ ¨?<»7@ƒÊ©?û5@Ò¯«?.ÿ3@EJ­?¶ 4@e¯?¡œ7@7±?œ:@zß²?JX<@’­´?)Æ=@”,·?>’>@›W¹?6–=@;»?̰A@‚¸»?F@QA½?)”G@ÿµ¾?}¡G@0|¾?‘DG@ÿξ?'ÿH@ÒŽ¾?ÈõF@r¿¾?DqB@_ô¾?9Ð?@]¤¿?Iå@@¥ð¿?‘C@Iú¿?5ÇC@…¿?*~D@§hÀ?%lB@ºIÁ?ºí?@¤$Â?ØÞ?@ …Ã?‰È=@šà©?k¶9@öþª?1÷7@Ʋ«?T7@H]­?>09@È}¯?„X;@ˆv±?×<@ë;³?¨§:@N¤´?nb=@¹·¶?*î?@ꢸ?Ý-D@œ¨¹?êH@Nº?;úI@æp»?âËJ@œ‡»?@9J@N@»?ž¾H@)¼?óE@.¼?ØÛ?@rÛ»? >@Òz¼?PŸ?@@w¼?@B@w×¼?,ïF@7!½?÷ÕF@ R½?0E@íV¾?v—A@­y¿?ÔC@@(ð¿?D>@4_©?jg7@0ñª?¹y7@Œ¬?ó7@®Ÿ®?’“:@â>°?j<@ö±?…F?@°Ä²?¥5A@ǯ´?çßD@çö? >H@§·?+ŸK@ï·?~K@ð·?1öJ@]t¸?ŸJ@‹«¸?yH@£ë¸?›—E@p¨¹?=ü?@ôu¹?»ý<@´’¸?Ç >@ݘ¹?Ö¤>@ ü¹?¢A@,º?@"C@,_º?®{D@óv»?C@« ¼?à?@@>n¼?Ú+>@u½©?Uc;@×h«?Þ*:@Añ¬?åq;@áή?lˆ<@m\°?Š«>@ƒ±?’)B@䆲?á F@Eß´?T`J@L¶?ÄþL@ óµ?<|L@åµ?,gK@ªß´?îyH@:µ? zF@çµ?&1E@üÛ¶?Þõ?@±úµ?Íý;@õ´µ?ßç9@6O¶?¶<@Â$·?w=@ 0·?á@@r·?xÀA@ßN¸?olB@Ï&¸?ªB@Џ?æ–>@°{ª?£p=@§g«?0ƒ<@2¬?z4<@ë™­?qù;@Æ?¯?Ñ|?@ƒÒ°?Õ¸D@‹Î²?K@Ú­³?¨oL@Ô®´?—·K@¡i´?%½I@Ju³?Ý_F@¥E²?~ÁC@I­²?¥žB@À¬³?È?@Áȳ?öô>@ -³?™¾<@®r³? <@_“³?¦*:@X´?Žš=@ç#´?ëŽ@@“,µ?›®@@#ö´?™¨C@ê ¶?A@ñtª?çõ@@S«?FA@N¬?ÊÜA@(¬?‡€A@µù­?²D@æ¯?J@Üò¯?G¤M@v°?âÑN@:²?‘sK@æõ±?ÆèH@¿-±?ÕME@næ°?d@@²±?H“>@s ±?Ñþ=@u]°?•Ø=@@°?øù:@ÜK°?÷Ý:@Ò¯?M’;@õ¯?‘Ð;@n‡°?°>@èDZ?§½A@Ž ³?z›D@›¡©?¯™E@KC«?êÊE@™†«?9>F@\Þ«?<(G@ ƒ¬?J|I@N^­?qJ@É­?µ~J@&®?bL@îñ¯?vK@«¯?‘I@‘ð®?6OC@£µ¯?È“>@6¯?Ý7=@—=­?Èî;@… ¬?À6<@Øõ¬?kë:@æ­?ø—8@µ­?½Ò7@ ï­? €9@î³®?6z?@kL°?é¸F@W…©?0XD@¤¯ª?ÍE@éÛª?¸¡E@Öª?nÝE@E«?H@©¬? hI@½¬?»/J@©Ñ¬?Y&K@v¼­?‹)H@…4­?¡µE@Éî¬?ØLA@'­?¿ >@ ‘«?5‹<@rߪ?Uá;@ ª?û:@$cª?ë78@yîª?®8@¬H«?ai:@iþ«?Ñ>@"u­?ÇZD@Ò¾¨?4G@±‘©?ä›F@Û8ª?k›E@$pª?ž–E@¬cª?—™H@ÓBª?žJ@´iª?7EJ@+‘ª?ž7H@ ت?CFD@Xª?Ù«A@ø2ª?ö›?@#ý©?«T@@üÙ¨?#ú=@þø§?R:@»§?ã;7@Gd§?’È6@¥¨?œ7@zר?Ë*:@ «?ž<@?'¨?á±F@ó¨?¾qF@÷Ũ?¶F@•©?|#I@=e©?86L@ëÛ¨?_L@Þ¨?¶I@—©?ùÏD@Ë©?cA@E¨?xÜ<@0¨?ˆØ<@½ù¦?b¥>@Çà¦?Ü=@€‹¦?]”6@æ¥?'ç4@˜‰¥?Ÿ„5@%'¦?<9@ÏI¨?›ë;@üǦ?®ÝE@Û§?ë‚G@³p§?ëªG@lß§?¼8J@-¨?,¨J@‡£§?{K@5$§?óðG@°$§?÷B@¯â§?±Ž:@O§?ë&;@§¦?Ž<@¿¦?¸=@[m¦?£¯9@¹Â¥?ÐÕ5@÷?¥?¢98@>x¥?¦š<@Ãí¦?wN<@J¥?3|G@†´¥?c^H@¶R¦?Q™G@á̦?rŒH@bè¦?ò L@û§?8´K@¶-§?8_H@œÛ¦?›¯D@°ü¦?2Â>@Â|¦?/=@gp¥?$ˆ?@ÈÛ¥?Þ6@@‘ ¥?øë=@ ‡¥?Å>@Ñ©¥?Ü{>@µ¹¥?>Ú>@{¨¤?q¿G@lï¤?U£H@'ž¥?%mH@Žv¥?‘J@,™¥?qXK@…½¥?êµM@p¦?vL@G†¦?¢tJ@õ§?ÔE@ÇO¦?#D@j¥?µUC@8¥?÷åA@&n¥?]u@@ó½¥?‘EB@fˤ?Ü?@ɤ?º­G@(`¤?ÞÆH@Ȥ¤?Ñ÷G@l¤?.¯H@°F¤?`M@Σ¤?.O@ˆ¦?ZL@î¥?À³L@1¦?È`J@ð¥?ÑJ@-ؤ?¿¿H@?I¥?ÞF@u“¥?lòD@ù$¤?vœA@{ì¢?ÌH@ÇP£?º?J@f£?3ŸK@ø¦¢?QÃL@Ô!£?â N@3ä£?£AQ@–å¤?¹³Q@:i¥?¥P@Û=¥?)–N@£³¤?€„N@á¥?žL@Ž,¥?’ÃH@ùù£?@LD@o¢?¨G@¤±¢? ÂF@ù·¢?gØH@ú¢?âáJ@ ¼¢?¦pP@ˆ‘£?#¤U@8£?1ÖV@¤?2£V@å¤?~‡R@^×£?ΕN@_£?æbL@쮢?Y+G@x€¡?ÿ„F@xÕ¡?9öD@:q¢?Ù©H@ñ¢?bTN@»¡?ÅŽS@Þ¢??,X@´Ð¢?l¥Y@tB£?ßU@‰ð¢?õåN@Uj¢?%&M@á?D1I@ÏV ?|ÏD@bD ?«XE@å ?ïG@´S ?BL@vŸ?xÊT@?Ç ?‚ÂY@C?¢?õÈY@‰¢?†ïW@ðê¡?+’R@‹Î ?öJ@ºXŸ?ÉgA@’†ž?\rH@Ü…ž?8L@Œhž?½O@e·ž?PÎV@¢{ ?PKZ@’,¢?xÀZ@;¢?ØW@‚Ä ?"°M@¹Gž?¨ B@Ç?ÜÈK@Cš?¨EO@'0ž?[>T@©9Ÿ?+Y@Væ ?ÙJX@y¦¡?CKS@£| ?,M@ôþ?ÞG@T€?|­O@J5ž?†æP@]<Ÿ?Å“V@Ç) ?ÔÙZ@¡?sYU@¢b ?Å]O@|€?ÑÞK@g8?„çQ@²‚ž? U@­xŸ?¹Z@û« ?rWV@è; ?ÕPO@zל?¨^R@0?ã3W@#Ÿ?ÜW@äK ? W@õŸ?T%N@àNœ?„ÈU@“ƒ?Ð×Z@h£Ÿ?³W@s+ ?p—Q@—6œ?óZ@—‰ž?©—[@CˆŸ?„zR@[$?É>]@à´ž?ÆY@7 ž?ßY@ß±¬?VJ@ý©«?àÄ@.«?æþ?nª?4òñ? Oª?^Aâ?Nа?Fþß?+"·?hRè?58¾?sÐò?z„Å?¬`ö?+Ç?Uá?_gÀ?X>Ì?â4¾?>Uº?`Ÿ¹?²?I8¼?ü׳?ÅO»?^€½?ùÛ½?òÒÇ?‘„Á?Z8Ó?ëœÂ?!ïØ? Ã?ŽÞ?{ Â?é¿è?SìÁ? àø?5éÀ?ø@CÂ?X @ žÄ?Ôÿ@õœÄ?¤r@‹÷Å?e;@¼È? ¨@jéÊ?å!@b¨Ì?wÏ'@¦HÏ?Þ«,@‚´Ð?]®3@½Ñ?áv3@[QÓ?H‚0@_ÈÕ?‚)@éØ?q7#@~"Û?ËG)@CôÙ?ës3@àØ?µ0@’ãÕ?éþ/@ÂÔ?S‘/@7€Ò?G…0@æãÏ?õ@.@£Î?© +@›îÌ?'á'@ïÄË?&@GWÊ?o/)@Z&Ê?0(@ü%Ê?Nö%@ÉHÊ?Ý&@pØÉ?ŽŠ(@±RÇ?I*@Ä™Å?ìÅ,@fÂ?<0@í¿?G¹5@fn»?y8@º?öù:@(ܵ?“‘C@¦Ï²?baF@ea°?Ê'F@ñÙ®?— I@tH®?ø“F@bâ¬?A@¹ø©?»n;@Wר?u˜7@½½¨?Þ¡5@¨?@A0@ç7©?¶ê.@Yª?k0@±Tª?@0@ê^«?4è-@;s¬?•ì,@Þ%¬?/Ö/@X/¬?ú]3@ ¯­?âû7@››­?xÅ:@gŸ­?p»<@1€¬? n>@tv«?5ºD@4ª?ÄçE@D©?u‰G@û¸¨?ÀeD@73¨? B@Êò§?÷p@@í…§?‹·;@¸b¦?Þ :@º^¥?‚d<@©i¥?nU;@… ¤?W_<@‹c¤?Å#B@}¸¢?»&E@½D¡?\B@$ ?ò¹<@wÏŸ?ï‹4@Ž- ?šÅ,@8ÛŸ?™,@KŸ?./@¼üž?89/@ÔÞž?DÈ0@¼Šž?6¸4@5#ž?Ÿ;@èÆž?^/D@ÓGž?=ÅE@?fF@‡Ì›?× @@ Ùš?Qh@@ºcš?_rB@qš?,©F@^nš?SåJ@?š?» G@kSš?ÿ=E@¼›?ÿ§E@õÑœ?QNI@Üܬ?Cé@¬?°š@ëx«?)ø?੪?‘®è?˜¯?@Rã?`e¶?—ç?·ø¿?¿zî?µîÇ?Ùöô?oLÇ? Ú?Üû¾?¸Á?¼‹º?RÛ±?‹í¼?6“¬?Áž½?© ³? ¿?±Ô½?>À?‹Ì?8pÁ?QÒ?ÓÄÁ?,}×?X×Á?£ßÞ?hÓ¿?æxì?tŒÀ?«@†1Á?§o@¯ûÂ?cé @€–Ä?-@dÅ?ô›@¥Ç?ŸÓ@léÉ?Ó¶@­Í?O+ @;HÏ?}R'@d$Ñ?gÂ,@ •Ó?þ‹2@Ö Õ?þÖ4@\„×?JC7@xmÙ? 2@×IÚ?gØ)@{€Ü?R‚)@1dÛ? 3@‚\Ø?$Ú3@šàÖ?æ)5@ºÇÓ?Öã2@¹BÑ?‚x/@ÏÍ?Ò¯+@§SË?¸„*@[É?j=*@nÞÈ?¯l'@£ÁÇ?D(@‚xÆ?¼)@ÓuÅ?™(@ÊÅ?ø5'@ Æ?(¶&@ÙjÄ?Õø(@YPÂ?ÑU,@Gˆ¿?nÖ2@0 ¼?…T4@rĸ?*"8@¶?ùã<@]Í­?<@Eã¬?z@Š ®?×ö?Õû²?¤(é?v§º?•(å?›FÂ?Ï5ë?­È?y¡ê?¿ÀÃ?.Ë?~m¿?›·?kð»?ØW±?¶½?Ÿ*­?<>Á?ªµ?/ØÁ?m À?ÖÁ?H.Ê?î8Â?‡Ò?áÃ? Ö?µzÂ?p{à?¸û¿?Nýñ?OºÀ? ð@JÑÁ?Ø @Ø«Ã?ø—@/@xûÙ?‘“3@µÔÜ?¤‡9@µ–Þ?À{9@´³ß? Z6@Á“Þ?¥i3@¶¥Þ?vÃ/@½]Ü?)3@¦<Ú?SÌ6@4éÖ?Ó8@¦\Ó?le7@ÿ}Ï? Á1@+“Ë?0ê.@…Ç?ðÿ+@=_Å?ã(@;JÃ?+‹'@'Â?ä*@U´Á? ê+@R¢Á?œ,@‡ÊÁ?m-@/ßÁ?m¾1@±\À?$ž.@×Z½?e÷0@ƺ?½2@¤Ð·?5@2µ?Íi=@àñ²?ȤB@2¸?z} @xë¼?S ý?½\Ã?èî?™´Ê?jä?0Ç?¯ºÒ?*†Á?%ô»?¾¯¾?+¶¬?yÛÀ?«B°?¤6Ã?|+±?› Ä?"<¹?2 Æ?ÄOÂ?[Æ?ºÎ?Þ-Æ?½ì×?ü*Ã?<÷â?}÷Â?¶î?DÂ?‹0ú?‚¼Â?ëw@”×Ã?´ @[`Æ?ú@q{È?^ó@PxÊ?¶¼!@EøÍ?Þ(@±Ð?‚=)@ÆßÒ?¸W+@§Õ?8+@³pØ?ô«-@Î]Ú?þ0@ÔÝ?Ú=6@‹ß?|i;@¢wà? 9@\kß?œ”5@àÜ?´3@y`Û?uŸ2@ˆÙ?]©6@ÿ&×?Ò 9@_=Ó?4J8@PsÏ?Uì2@H+Ë?°p1@«ëÆ?0@'ýÃ?*å/@åÌÁ?ôv,@ž¿?aå,@°Ç¾?9-@#%¿?&}/@Š´¿?ß1@©Ú¾?ý2@e½?æM6@YÀ»?¹8@@¹?›S8@”a¶?i<@É›³?Û B@N2±?o×E@_Q¾?S£@^)Å?Óö?YRÊ?;Që?Ù½Ç?ºË?=ßÁ?³µ?wÁ¾?Õ¬?>ºÀ?»Â±?FRÀ?È*¶?CùÄ?à»?ìÛÅ?п?AÒÄ? ðË?ÿÃ?§aÖ?ÿHÁ?ð ç?‡Á?Èíï?/ÀÁ?Þ0ù?çMÂ?¾ì@‘“Ä?‰ @÷Ç?“3@uÒÉ?,U@{`Ì?1U&@•$Ð?U8-@HƒÒ?K€.@•Ô?ø“,@Â]Ö?s-@ôØ?”<-@â-Ú?®'.@kŠÜ?5@ÙCÞ?¤=9@`ãÞ?º98@÷Þ?ÞÜ6@.¥Ú?n„4@§ÑÙ?zî2@&~×?Δ6@ÜZÕ?Â:@jÑ?“•7@rÎ?õž4@kSÊ?Ë4@TPÆ?™§4@ÏéÂ?ÖÙ4@­ä¿?¬…2@Ïã½?Mã/@U+½??k/@ѽ?{2@7°½?¨ 6@²¼?Æ‹8@ ¬»?‚48@ž¹?N>@—·?œýC@ô?é§E@dJ²?[XD@ g¯?ÌC@¥&Æ?P2þ?ù³Ê?]gð?ŸÈ?œ_×?͆¿?%E¼?‚J½?õê³?œ¿?Œ¦´?K;À?°Žº?ÕcÃ?3Á?ößÁ?¤†Á?§;À?b+É?êÖÀ?×Ö?eÀ?œ>ä?þ?âVì?¢õÀ?÷Äô?Î Â?Fç@y‘Ä?§k @ãÔÈ?º@RË? ±"@¿zÎ?ºª+@ Ò?²_1@¾¬Ó?)42@PZÔ?ñ 0@ŒÖÖ?ú.@°uØ?y.@&kÙ?E.@8Ü?è1@ú…Ý?L£4@ÍîÜ?Ø86@X»Û?r«6@Öã×?³ã2@éÖ?Z2@¨´Ô?Íù3@ŠáÒ?§Ž6@0DÏ?QÑ6@1Ì?_7@ZNÈ?žè4@Ä?Z 5@MÁ?‰à8@Ñ»¾?ã7@}…¼?ªõ4@óv¼?Æì5@–‘¼?wÁ8@І»?sÄ;@¯º?t'?@c¹¹?>)B@²·?éC@îèµ?ÔG@ÔQ³? ÌH@3±?Ç.C@ˆÉ®?9žB@³Ì?¬ý?`ÐÉ?¢â?WÁ?C®È?÷(½?Ï ¹?ào¿?j%¶?pTÀ?wjº?ô¿?z…Â?%«¿?2^Å?¡¡½?OÊ?„æ½?ÀUÔ?ø?¿?¤‰à?8I¾?Nè?c"À? Óò?J©Â?¨¢@üÆ?0@Y±É?+æ@‹¶Ì?áä)@v>Ï?1@• Ò?ø53@ÊwÔ?×l3@ Õ?ªù/@ˆ7×?¡-@wÏ×?Þ 0@%TØ?»x0@pÚ?~V3@#Û?–°4@áZÛ?‘4@CÜØ?C°5@~±Ô?°t3@Ÿ€Ò?\3@¾`Ð?44@¶Î?Ýš3@-ÞË?Ç`5@ÒÉÈ?æ7@ÜÃÅ?EJ8@ËÁ?¢+9@¨L¿?B9@N2½?Xí:@§û»?ÊÆ7@Y#»?àÊ9@/º?‘½=@/¹?oh?@€æ·?#‰>@„à¶?Ç}>@pǵ?ñ<@Êܳ?¬HA@訰?tì@@Ï­?nŸ;@;¬?);@ÎÊ?;iï?XªÃ?+µÖ?M»?ÿ¿?êP¼?N´?Ç"¾?7º? ²¿?&À?'_¼?üIÅ?èA¼?>Ì?»]¼?—Ô?dà¼?+1ß?÷þ?¦ç?öç¿?)Šô?âµÂ?¼,@©^Ç?¬W@ÉÙË?&Ê@àŠÍ?ÑT-@JßÏ?ø3@t´Ò?…Ù5@b«Ô?r³3@@n×?µ0@áF×? ”-@p€×?“ƒ0@¸M×?|2@µ2Ø?xw3@Ô%Ø?Ë5@n ×?Š3@fÕ?¯±1@KþÐ? E4@39Ï?ž¸6@tíÌ?½×4@WË?B1@LpÈ?I 2@÷Ä?¤h6@cÃ?ª;@Ɇ¿?Ä:@dq½?¹;@@»?)0=@æÎ¹?[g<@¶¸?÷>;@,’·?eZ9@Ú¶?n¡9@ü¦µ?‡7@l[´? 7@;ó²?‚6@¸°?KŸ9@pœ­?ðˆ7@ªU«?Ô¼4@Zª?j­4@í§Ã? Þ?•!¼? =Å?´Ú¸?Ÿµ?3¯º?(¼?꘺?”v¿?Éý¹?Ö…Å?lí¹?½ÜÐ?eK»?ZØ?W"½?`—ß?_"À?6?é?Y÷À?HOû?š—Ä?Ô,@0IÈ?þ×@›åË?ãF @™AÎ? Q/@m©Ï?—¸5@™ÌÒ?ö74@WÖÔ?˜â2@{ÞÖ?1².@µ ×?¾-@xÖ?-0@žÖ?HI2@ZóÕ?.&3@Õ?E5@˜ÅÓ?Óà5@Š*Ñ?}‘1@L±Î?%Ü3@zöÊ?,¤7@ÕÝÉ?‘Þ6@QÇ?ò 7@ >Å?=é7@ñQÂ? ;@©À?QA>@èý¼?ÒW=@|V»?Ÿ<@g¹?ko<@µP·?‡:@éÇ´?¸8@d]´?yð3@v³?Í‘4@9ù²?¸æ4@´Ž°?d22@ L°?ªo1@…Ø®?{Þ0@À«?÷ô/@ñÓ©? W.@¨«¨?Ë21@Z§½?d²É?¢¸?A·?ô»µ?±A¸?+Ì·?„ À?U¸?ÏÈ?ÌÒ¸?I(Ó?ࣺ?½yÛ?“¾?wà?ªÀ?íšë?¿ÞÃ?D0ü?œ‹Ç?°¦ @PöÊ?9A@CÌ?Sí @gÚÎ?÷ˆ-@0'Ð?./3@¥Ò?Êó2@L|Ô?2@^ðÔ?tï.@¿bÕ?Ǭ-@ç+Õ?úX/@›Õ?¨’2@„ÁÔ?|ê2@7‚Ò?\ˆ3@ÊŠÐ?ÞQ6@°£Í?^”3@â#Ì?kF6@{‚È?Ë÷:@ÖÅ?~M=@V‰Ä?B5>@: Â?Í>@ GÀ?²ž>@€1¾?‘~>@ç »?É_>@:Z¹?fÆ9@ö?¢`8@É?<µ?AÑÔ?±ó¶?;ÍÛ?¦b»?«üÛ?çÿ¿?3÷è?5ÄÄ?8^ý?iDÈ?K' @¾·Ë?x@ÑüÍ?5Ó@KXÎ?kÝ!@nsÏ?Ä2&@ÀàÐ?ŒB,@GÒ?‹r,@áÒ?«Å,@q7Ó?có,@àðÒ?Xà1@$Ò?†‰0@»fÑ?+‹0@‡6Ñ?·5@rÏ?'ˆ7@ùÌ?±A6@äÉ?¨á8@Ÿ"Å?ÕA@ïÃ?ÑüE@è©À?äüC@ë¾?D®A@¿\¼?J˜=@ÇÙ¹?¸É9@S‘·?úæ5@"¶?>³5@øè²?4@ó±?ýØ3@d1°?k1@ö¯?7!/@öȰ?^+@"ã¯?¡Â*@Þ®?4+@—ï®?‹t,@º¬?¯=,@¾Œ«?«0.@µœª?DŒ-@Ñ©?f/@©?¨/@Oíµ?æÝÔ?mc·?"ïÚ?„s»?Ü<ã?Ýé¾?€3ä?ÇÀ?~ñ?ÉžÅ?:@¶’É?y[@xêÌ?¸5@ÖeÏ?¬@àCÏ?w+"@²Ï?é#@þ´Ð?§¼(@½Ò?³)@|lÑ?y +@e–Ñ?t|,@#Ñ?o51@64Ð?tu2@¥XÏ?[C2@·(Ï?Ü7@‹hÍ?"û9@€ÈÉ?$¼8@MwÅ?®²;@džÁ?¤æ@@›¤¿?Ô%C@Ê ½? ó>@˜h»?lj<@¾A¹?ð«8@˜ä¶?ó“2@ℵ?¿Ö.@&ê³?Ä&0@ç²?iÌ/@_|°?£/@n–¯?nõ/@A¯?1w/@â¯?×'.@࿯?Q,@[ž¯?‡i+@ÿ0¯?t*@‚é¬?k-@Žýª?o}/@Ýoª?Ó@ëSÁ?&2>@ÖŽ¾?½½@@•X¼?Øp=@ÍOº?nÙ7@)ñ·?yI6@Ùv¶?æ¾3@ô´?$!-@Tw´?ë‹)@Aº²?¥ù*@Ö±?š-@ǰ?ý‹-@’¯?è-@Vô®?±Ô/@²·®?_þ.@ä¯?½-@Œù¯?I.@m^®?ˆ+@Á¬?Êê,@„Š«?jF1@5 «?Íý/@i ª?ã.@Àëª?ì*@Â?|õ? ³Æ?j|@ÓÄÈ?’+ @‚¬É?*Û@g™Ë?…@ÎÆÏ?¸*@‘¯Ò?™Î@¥+Ð? @B¨Ï?ï¥@,GÐ?Z !@òÐ?C{'@› Ñ?$@)@o Î?{’*@;3Í?ïÌ,@†ñÌ?°ˆ.@ÍÚÊ?@F3@©ÔÉ?&9@6ŽÆ?56>@IµÂ?–BA@ò×¾?Ñ×?@Æ|¼?ž <@ eº?ìë6@-y¸?–33@f˜µ?ï,0@ˆî³?;.@½"³?Ö&@ð¹²?¤`%@僱?Eê&@ ±?;+@Ú¯?B*@šÒ®?¢¯+@F³®? u0@wP®?û1@kæ®?×C0@„1¯?^1@Pº­?J-@‡v¬?‡é/@ݳ«?×+3@-¹«?¡º0@‘!«?Œ´*@•ª?~o)@ª;Ê?n @ÇÏË?ú@öË?õ›@~Î? @Ä@Ñ?o5@eÓ?M{@î´Ñ?)v@YÐ?%, @dÑ?Ÿä"@áiÐ?›„%@·Ð?¿)@ Î?É<*@˜“Í?•¥,@C¶Ì?^æ.@ÙÅÉ?¢#5@ò¸Ç?8Ö:@“@Ä?‹ª=@æ6À?ÅbA@ܼ?4ñ?@Ǹº?‚;@éW¸?O 4@3w¶?¯;0@{´?†$+@ª±?PK'@kƒ±?…)"@È4±?†é @Öö¯?Ö¾%@0¯?*@DÅ®? ,@¨a®?V-@,Ñ®?ÏÓ0@þÚ®?É÷2@.º®?!13@‰¯?—ý2@Þ‹­?ÊT1@µU¬?é2@h´«?òd5@šÝ«?³–4@ÄØ«?gÒ*@ôh«?öË,@›yÎ?R¿@ÁÎ?°B@‹úÏ?Æ­@$Ò?r@ÎûÒ?OÃ@@Ó?@…˜Ò?|"@!jÑ?Ql%@©Ñ?(Ï&@¸Ï?ƒ5(@†Ï?:Š*@ó'Ï?Ð,@,Ì?& 2@ éÈ?ѹ5@ª Æ?±Š:@PÂ?äg<@´b¾?4->@Ò_»?°R;@òå¹?a8@E·?ô§1@ië´?0Ã,@{‰³?¢Œ'@bõ±?Ý{#@Ìö°?Km @a߯?ÔM@Ó®?‡_#@Zo­?>(@ m­? Ú,@2 ­?@.@¶®?„ø0@:±®?S4@B{®?D¹5@V$®?ªd6@€ ­?Ž45@ÍŽ¬?ü:6@KÕ«?4 7@­R¬?u4@(¬?Gþ.@å«?¯è0@³„Ï?Ío@›¬Ð?ó@U¢Ó?‚Â!@»·Ô?[? @œjÕ?'÷@\ªÔ?ôí#@ÚzÒ?‚è%@øÒ?k(@ •Ñ?«‰+@výÏ?rd0@´Î?‹$1@n\Ê?| 5@3Æ?ºá8@†ñÂ?ì9@_ÿ¾?,ï8@)p¼?}u7@0ß¹?µ7@ãÍ·?C84@~rµ?ƒì.@ î³?})@´¹²?<|%@±?*œ!@Ï¢¯?€Ñ@šæ®?^–@_­?ûÆ@‰I¬? 5$@¤:¬?0m)@cb­?eç-@®?1@!M®?òö1@Õ­? R4@I­?‚–8@EW­?Å9@¨Ã¬?`Å;@¦£¬?‘÷9@/£¬?.o5@—Þ¬?à3@ËV­?™s3@ÌMÑ?ÃG%@`¯Ó?n¡%@¨Ö?µØ%@Ó×?Å6%@;Ø?J(@©ìÔ?1*@×ÏÓ?¢+@5ÁÑ?¦Ì1@@[Ï?18@Ï=Ë?eŸ8@ëÅ?Â5@³lÂ?>7@oÀ?X8@ ý¼?AÞ5@×iº?†j7@`¸?¢4@-†µ?%2@ä´?õ,@…ý²?®ð'@"l²?á%@‚q°?x"@ô­?I?@ÎK­?6@²i¬?kå@Òè«? û"@ýë?|„&@Ø­¬?¨.@›$­?2@D®?Ï;1@ƾ­?¹š1@&­?–ž7@ݬ?LG<@*­?«²A@µU­? ¤=@¿`­?,q7@ø­?.L6@4%®?ž¶7@ç#Ô?».*@gÀÖ?0¤*@,ÈÙ?ˆ‘*@œÙ?Þª+@¤Ö?:²1@OBÓ?m©4@ãøÎ?®ò4@ñÊ?Òp6@@Æ?ød5@VËÂ?²/@‰‚À?`/@Åk¾?µ¿4@lÌ»?Žû5@(D¸?=s4@Üû¶?22@V,´?7.@³?î¾*@ì±? (@ó°?Ä%@G£¯?#@™÷¬?!@ߨª?"@M«?Þd#@Ëê©?#m#@!ìª?žh&@%q«?ú\-@v ¬?YÐ1@M¾¬?eD3@Žg­?ç%1@#k¬?Np8@”‹¬?}ù>@Τ­? ûB@O°­?Fá@@T­­?:@žX­?Âh<@ÆÎ­?p>;@“ÕÕ?¸l/@ûôØ?HÏ0@è,×?)0@ûBÔ?v6@†QÐ?ïÐ5@VØÊ?×1@´ŠÆ?Ò0@Ã?-Ï-@ëQÀ?Çó(@e÷¾?«Á(@B¸»?ÝK.@ä¹?­ð/@½=¶?2ô1@²¨µ?Ng.@Ѳ?Òo-@ÐW±?óÈ(@/›°?òg%@+u¯?Vx%@Õ‘®?T$$@¶Ù¬?Óñ#@,”ª?’š&@ÿqª?‡…&@5â©?Éç&@Ýï©?^b)@*Òª?ÙÓ.@Ä%«?‹—3@C˜«?î4@‡ë«?B{4@"ì«?"0;@!ø«?Õ\B@ð!­?]F@äM­?j?G@6­?b·@@Ñ\­?œ˜@@F‹­?æ>@@³×?d3@ºÈÕ?ô5@ïÑ?xÝ6@d8Î?Y±/@¹È?ô'-@eçÃ?_â)@ æÀ?Š`&@®¹¾?äý"@š»?zA"@Àƹ?ñ%'@ŧ¶?SØ*@½Ü´?>b-@)L´?ð*+@d²?1?+@ùï¯?ðv(@L̯?»%@ðN®?ä|&@Þ™­?Ý•&@px¬?8-&@ …ª?ÞÀ)@Ê6ª?8Õ)@ü©?¸‚,@´©?8¸.@3Ϊ?‹81@Ålª?"A4@§—ª?’L5@x±ª?5¿7@Ýâª?œl>@éw«?íôE@û«?j¡J@!!¬?ßH@¸P¬?4êE@Ši¬?¹ E@)^¬?Ñ÷A@_Ô?‡€7@¶3Ò?w©5@vzÎ?‘/@¸ÜÈ?ŸW)@3ŠÂ?"@F¾?W!@“õ»?Â7 @‚¹?Öê@h…¸?ö @cúµ?Ql&@ø ³?íÌ(@ÂE²?ø5*@W±?Õs)@!6¯?u®)@e+­?+Ö'@t½­?kh(@´¢­?îŒ(@C˜«?’É)@nk«? Þ,@5«?k¹-@¬ª?µ/@Äjª?{ÿ1@,ª?Ÿ4@#Þ©?Šæ2@©Å©?h3@•‘©?öÀ6@^ª?†xA@ï«?ibI@7i«?‰N@:«?¼âI@(’«?&ÅI@¹!«?@I@ã«?4]H@´Ñ?Ò.8@k Î?«Ù3@kÃÉ?ðG+@ãQÂ?kF @Î(½?øÐ@>¹?s@q~·?ûí@íÚ´? @$ɳ?mh"@ÿ„±? ¡&@Œr°?²&'@Í'¯?šÄ)@3 ®?sœ*@†n­?m¥*@ ß«?çj-@­?Cÿ+@Íø«?åÇ-@ /«?6/@¾Ëª?Ñê0@Øâª?t?2@ò“ª?ðë3@Yª?‘Ì4@Ç#©?§L4@šÈ¨?¤×0@™Ì¨?eÜ3@ál©?Ï_?@{•ª?9¥I@Š$«?S6N@s1«?3ªJ@ŒI«?Ç1I@Ò:«?âI@ÄV«?'G@¬nÎ?þ®5@R©É?be1@8Ä?¸%@ž½?=P@,Õ·? «@öCµ?mŒ@$²?¾—@aš°?äQ!@XН?â(@8½®?S=)@ÿA®?K*@9Q­?Ë.@ùM¬?.\.@„>«?ì¥0@§F¬? ?3@ݤ¬?n,2@8h«?Ë3@—Úª?ÿ4@B«?õ4@FЪ?V+7@cª?·‘8@6 ©?Ëx5@C‘§?M\0@ÔY§?…&0@m¨?×9@Ò©?‰’E@e«?`ÚM@Ñ–ª?~L@êVª?ÞŽI@4³ª?#J@î\ª?û‹G@˜ñÇ?ëy3@:Ä?Ûá(@S~½?›(!@5-·?Í@Y¡´?Z@Ôõ°?„ @Ý‚®?ê:"@JÌ­?@å'@dô­?P+@C”­?¼Ö*@¨Ó¬?…0@i>¬?ê3@Úd«?É04@Ú&«?r3@•¬?oœ5@Ï‚¬?bÜ5@Å…«?`07@Q«?Gˆ7@'ª?P8@¯Õ©?å|8@YÙ¨?¤+5@]¸§?9ð2@¸ò¦?¶1@¡È§?ª'5@ ©?Þ÷B@ݪ?;3K@:ª?…ÞK@¬O©?<ÁJ@¾©? ÷E@&ͨ?ZE@Á{Ä?ì‡0@¯ ¿?Ï&@|¸?³@д?¯@t±?‡²@‰ÿ®?+Ó!@†S¬?”$@’¬?x¹(@Tó¬?Ê®+@š’¬?"j.@\¬? 4@˜N«?$H6@‚7«?¤4@ÈÑ«?Á¦6@L¬?ñW9@&S«?ÌJ8@/ðª?ëç8@2<ª?Ä7@«p©? 8@;¨?Ö6@¥–¦?„’6@çA¦?5@¥¦?cº5@J=§?Ø@?@¿Þ¨?pI@‹U©?îmI@é3©?øIG@¶5¨?˜…D@Œ ¨?8BB@ÖIÁ?–].@Émº?,|$@‡»µ?êî @i‚±?†ü@…ü®?ÞÈ"@@ô¬?äŽ"@7Ý«?c$@½.¬?³“)@=ð«?2Ž+@$ ¬?Ó`0@Å«?jô2@—ɪ?b4@ ª?`¸2@ !ª?,25@¤©?vœ6@(s©?/³6@LU©?Ûû5@j³¨?,8@Sͧ?•’7@XǦ?ŸX6@³4¥?H[7@9 ¥?¢œ5@ v¦?žõ:@í¦?ªÃC@ò¨?F2I@²ó§?©£F@øU§? ;B@W§?Ám@@äм?ÜÎ,@ˆ3·?!„$@ý˜²?‚:$@П¯?k…'@HD®?À''@¡›¬?Kj&@µâ«? (@†ûª?°Ü*@T׫?0/@“ª?¥1@|ý©?Þø3@•©?/5@›m©?V2@>O©?øÚ2@?ʨ?Sy3@gX¨?»…6@Ÿˆ¨?HŒ6@*Þ§?„u7@gõ¦?kU5@R)¦?xn4@D«¥?Üþ2@»¡¥?0¨6@)¦?, >@‘æ¦?̈D@T¢§?ôÕE@B§?Æ©B@˧?µA@˜.º?Ñâ+@xu´?Ö(@Ÿ³°?fh)@|u¯?‘ã*@ËÇ­?܉'@ìÕ«?ê$)@ß«?G%*@Dª?”°-@êuª?®/@mª?â1@Hª?9æ6@Àܨ?4@¯¬¨?½T2@.´¨?WÊ3@af¨?6É6@à6¨?g/7@O¨? 6@ §?¦85@zͦ?4"3@ ¦?î2@š@¥?ß5@ºž¥?VÇ:@o˜¦?z>@ôr§?žC@1§?NüB@˜l¦?FNA@ «¶?>/@ ó²?Ê5-@º°?Þû,@Ëk¯?e+@ |¬?Eó,@5£ª?V*@ O©?óN-@‘wª?C5/@¯Mª?í(/@ŸÎ©?ÞÍ3@ææ¨?Ú4@Ø]¨?ï¾3@%V¨?Ýi4@‹Æ¨?ZÊ7@éR¨?;8@u¤¨?XÛ7@`K§?m7@1¢¦?ÿ‡3@À¦?^É4@ÇR¥?(Í6@¥?e:@Á¥?Ýù;@š‚¦?þ€=@ `¦?¼ÈA@ÑN¦?VXC@¶1µ?x4@»u²?çd0@uq°?àX/@-º­?{Z.@:µª?éè,@8ú¨?I,-@ ©?h\0@1fª?©r/@gþ©?ç?3@%M©?Æ×2@Ì/¨?§5@PA§?tÁ5@Îŧ?5:@‰q¨?à8@3N¨?86@¿Ý¦?bµ5@/ ¦?Bš3@%A¥?Âô2@z¤?ßè4@¦ê£?CB7@˜ ¤?²6@t(¤? •7@1ˤ?sM>@ö[¥?"ÂA@v`´?Žr7@X˰?¿ß5@«N®?Øø3@¥~«?%ò/@7è¨?™,@í¨?‰¨0@=š©?/·2@³ã©?6Ò4@¥½©?ø£6@mШ?‡Ð6@Ý:§?³9@bb¦?”8@z§?tc;@"Z§?k¡7@‰ñ¦?{ä4@†¦?ÇÞ2@Gç¤?F1@¾Š£?˜Ê0@Ó£?Þ 2@4<£?eE1@_M¢?«´2@=;@\ש?ØÜ5@ŒI§?rþ2@U§?×f;@Æw¨?â>@¸¨?Ū?@™‘¨?l:A@?Ó?@¿Ÿ¦?‰{<@î¤? ?<@h6¥?zñ7@ì–¤?1/2@ÏŒ£?!7,@ö?¢?WF,@ø?¡?{.@7ø ?Á,@’€¡?Ñ©+@™ ?,@Ð{ ?‘0@û ?o–:@÷ƒ¬?™¬?@ì©?õ7@¿«§?·6@©¦?Œw=@ä+§?zµB@Q§?¢¦D@f®¦?ýE@H!¦?ïF@爥?üB@Ť?š3B@ÛϤ?I_<@ñ7¤?r24@²Á¢?y×.@_¡?'+@ÿo ?•:+@H¡?y9+@ÙŽ ?Ž7,@j¬Ÿ?Ir+@u ?ÀR,@ÀÌŸ?ÜÊ1@fØ©?Â(:@r¨?_,7@l ¦?¹E>@¦?÷?@õô¥?˜cD@Í¥?â–G@oO¥?I@o¤?ÂôG@êÙ¤?¾áG@'¢¤?øøF@j¤?ŽE=@¼5¢?Ñš0@êo ?R²,@ꂟ?¯A)@ ¨ ?ï*@Š ?u+@¨Ÿ?—,@| ?/z(@  ?²e+@Ù˜¨?Ÿ;8@™»¦?µu<@ÚU¥?:?@Õ¥?`BA@æE¤?€ÍD@%Š£?ÈG@üÓ£?|dG@Ò¶£?CUH@êØ£?›K@O³£?©˜C@É¢?ô7@P® ?Ó0/@<™Ÿ?Ãù*@R; ?8F(@G# ?iß+@äŸ?=–,@§ÞŸ?.)@y ?†+@Aî¦?Æ;@ÿJ¥?;@L)¤?F^9@’¯¢?rh@@3×¢?fÖC@¤Ô¡??—A@ ¢?c›C@ÀU¢?È¿G@W`¢? îG@ÃË¡?…‘?@bˆ ?âb6@_Ÿ?ù+.@©—Ÿ?p*@O¶Ÿ?rì,@WŸ?7¨,@-xŸ?Üó)@kÏŸ?Oá(@ì¤?O5:@…¤?s9@û\¡?;}9@®8¡?õ=@¡â ?kh@@d; ?¡šA@8¤ ?ôÁB@Øò ?Æ‘D@h¡?È-D@ÿ­ ?ÉQ@@ŽŸ?°?6@gž?ªŸ/@C¹ž?ý+.@PÍž?òè.@÷( ?ãÝ+@Ž0 ?•Æ)@5º£?ò7@i²¡? f5@Ðw ?á,9@õP ?¶ž@@ Ÿ?ÌŠA@'Ÿ?~i?@«›Ÿ?1 A@#  ?ϯC@äY ?äµE@þ[ ?x»?@)äž?|6@ÖØ?Òì1@Ž&ž? –.@ƒ3Ÿ?òž+@Û!Ÿ?¢*@ü5£?©Ê7@ ¡?†è7@ÊãŸ?ž=@› ?xZA@š'Ÿ?-@?@n‘ž?N~>@óž?¨B@뢟?TnC@T¥Ÿ?-D@xãž?<@@âÎ?·X9@}:ž?Ú1@c(Ÿ?Ã-@óŽž?r.@œ¢?aŒ:@óy ?·ß;@69Ÿ?÷@@óŸ?íî@@[<ž?\ç?@Sî?} B@ærž?–š>@ïž?ºçB@îÒž?SéD@Êö?yÒA@ç!ž?N§;@rŸž?ž}4@'ž?gD4@2ì ?ªì>@•ÆŸ?€oA@BÖž?lßA@|?ûzA@÷>?b…B@!Òœ?M<@X?ú ?@.ž?3WD@^ž?v+C@Qž?„¿B@Ëgž?Æ,A@»ž?pÌ<@ƒÜŸ?œúB@±Vž?ýC@);?M @@Yäœ?ìA@¾uœ?øC<@~Ü›?Áñ;@þל?D¹>@ˆ?D”C@j?€]A@˜?çC@¡Rž?1·E@–;ž?¢ E@œ=??¤?@Ϲœ?#ð=@Ü¥œ?ð²=@QK›?øù<@çך?)´>@ÚÊ›? ¤?@öœ?ÃA@([?î•B@†ž?¿=F@až?”äC@ÕÑœ?_”=@V?<@[É›?»&>@cNš?˜ÿ?@‚§š?D§?@ømœ?qšA@ÌÍœ?Gù?@Pèœ?žÙC@º?–¨@@ôªœ?øÚ;@´Ñ›?Ø <@Šš?…Ø>@}š?RR?@ØŠ›?²7B@Õœ?¸Ù?@ݬ›?Þ¡@@›xœ?Kc@@±›?É<@¹š?-6=@8xš?nÛ?@ƒ|›?Y¦C@"$›?̦@@æçš?ä@@Úzœ?‡ý@@›?Sl>@š?ô=@õõš?_—C@Á ›?œXE@Kðš?ÅQB@orœ?#fB@òÉš?Ú#@@™‰š?Ýn?@3çš?…E@Ýš?mmD@˜Oœ?¹0C@Æ›?Ã÷?@,Žš? 1A@DÒ™?ï B@tG?ÞÜD@ªj›?}(C@$‰š?îÁC@ß”œ?/ûG@,›?•_D@˜aœ?@7I@â´«? @»µ«?®º @° ¬?vµ @­?«?+¤ @í´«?›È@’ª«?e¸@ÇÞ«?"–@è*«?^ò @G*«?¯Ÿ @“K¬?ù@‚¬?k @:Ú­?†@]±?²9@`@±?#¯@"…°?í@{Õ¯?s@Û°?`Š@hê°?Žh@‘`°?Iè@ô°?į@ú†¯?{ß@²®?tq@#[¯?˜ú@ °?Nþ@‡©°?Mš@Õ°?z×@ŒÊ¯?çä@¸Ä®?é,@Ò}®? Î@¨ˆ­?T›@T®?=Å@–­?ÿˆ@s5­?;À @%­?/œ @^}¬?sA$@¡««?Šè'@‘«?º^)@Ö½«?,ê+@ ¬?[Ô-@<õª?1@/@‘ª?zE1@`ëª?àl2@¡ì©?ô¼1@ z©?žY3@òÀ©?Ç&4@¶ú©?—3@T)©?Ä0@Æ£¨?Žª0@0;¨?·‡0@e½§?é×2@9Î¥?ìÏ3@~…¤?d˜2@Ê:¤?õ/@¯b¤?Õ,@`G£?F -@L¢?ë–5@ž¼?wN7@‘êÀ?²7@…&Ç?åü<@TžÌ?šSA@FÕÏ?]£@@!ÊÏ?´A@LÍ?Ó¾>@ªÓÊ?,Y9@0Æ? /@ê‚Á?x~@$œ¾?Óí @c¿?¿'þ?#ÌÀ?þó?5?À?΋ë?àD½?‘Øá?©¹º?HÖÐ?Ž„¼?¸'¿?®¹?`Å?Û{º?NèÌ?¹?0žê?#»?H ÿ?Gô¾? @¾?œÑ@`q»? t@çÒ·?¼S@2î³?Û­@/«±?L@µC¯?¦@¿,¬?9 @öª?Pç@z©?E@@ð¦?v8%@Ù¶¦?­1@êj¦?ƒÇ4@¯[¥?B22@±ª¥?Tþ*@Iø¥?Gê&@I®¦?v±"@--¦?øÙ @+"¥?ç° @f¥?·¿@¤B¥?)¤"@‰Ï¤?šv%@ ¤?,_+@¤?0@W£?ëª/@Š=¢?…i,@W¡?×ÿ(@!H¡?C¾*@Mt¡?"R.@áס?Ѱ-@Ìp¡?¢Æ0@Ü[ ?ô 3@¸¡?xª3@>¡?ì19@R)¡?†Ã9@Uc­?ü”@ó±¬?³S@)¬?J@7%­?Ec@hr­?ÀÎ@ð•­?¿@KƬ?i @è ¬?šE@f«?„" @aF¬?S@_3­?y¨@Êy®?„Ð@Ú¯?Ì8@ëi°?ð@~ï¯?9÷@F©¯?`\@«Û°?:@r•²?·ÿ@Áh²?ƒ@W;²?h0@x°?YÇ@”’°?g‰@»Þ°?®ú@ű?£ê@‚±?š0@J¸±?²@Q°?‘í@wÁ¯?Jæ@xq¯?é@ ¯?úÜ@ÛN¯?âP@vd®?kÖ@f®?ªŽ @G­?¢ª$@“X¬?Uÿ'@V–«?`„)@È«? }-@šb«?e/@í¿«?ì@2@¦O«?9Í1@ØA«?F53@ÿ&ª?¡64@¯j©?Óæ2@(©?^3@_±©?Ðí3@cª©?»“2@7í¨?Õ(2@ #¨?%Ð1@Ä7§?x³2@Ow¥? 2@‘Ƥ?«0@Kp¤?”³,@u£?‰()@B×¢?ã×*@e«¡?;4@f;«? @ú_¬?ŒÁ@XP®?mœ@˜¥¬?[m@¬?8S@›6¬?×;@¾E¬?›¤@Ö…­? @Ë­?Æ@4&­?^“ @¤­? @ä9®?3@Õ.®?ê/@:¤­?ÑÍ@k ¯?£@¢Ô¯?@‹‡°?g@—ı?Ð@K³?ý;@8±?Jt@¾A°?‚q@Nß°?Òw@—À±?µÏ@P¼²?G0@û²?Xb@B±?ŒO@i!°?3d@é°?4“@ÒÚ±?Çe@.N²?ƒ@úA±?dZ@u±?ÿ2@h±?ëŸ@°¿¯?åb@à_¯?e@VR¯?^ù@Õq¯?~a"@Û¯?¬¨&@°:®?ƒd)@õl¬?+@k’«?ÙÚ.@:‚«?Ñ31@É«?Ÿ1@xЫ?ñ­3@V±«?b(3@åЪ?j¼2@ƪ?2@cpª?!0@g¡©?æÆ.@².©?.•,@”©?Ÿ-@ð©?Ãó-@ì§?/(.@¾ü¦?ßZ-@]\¥?Ð=,@Œk£?îþ*@Í@¢??(@â¡?A@)@~ ¡?¡õ-@áz«?‘>ò?Ù«?üEô?;4¬?Éû?”Ûª?8f@ºe«?,@ûô¬?؃@¤¿­?†± @û'®?òP @D#¯?&õ @³·¯?•3@]6®?Ä|@³­?‹ª@Û-®?“„@Ä®?´Y@sþ­?Wâ@´å®?»@A—¯? j@3Q°?Ô,@$Ÿ°?ø±@!ï°?Ìñ@†Ø°?¤@»·°?Ÿ@Ô?²?î@ϲ?t²@ÙY²?ت@D2²?Ó@å±?Þ@ˆ°?y@铯?Ë@ål¯?_@–y¯?‚V"@Uή?¸i&@®?_Ä,@Ä­? Æ1@$­?-À4@5m­?šµ4@/X¬?,2@›Y«?C®0@›ª?õ0@›hª?â51@x{ª?D’/@[Áª?Š-@T6ª?v›*@ ߨ?«k,@°©?*y+@(†¨?úT-@ K§?÷z-@Rú¥?sÕ*@Eê£?Fc)@\¢?+)@ïÁ¡?þÅ)@õ ¡?î,@L²«?ŽÂä?ÜÚ«?âÈê?p£«? Pï?Vž¬?ÄCó?ZN­?s¼ø?:X¯?k@i\°?¼X@Q%°?Ië @ذ?x£ @@±?ŸÄ @w®?Þå@:¢¬?¶Ï@¿ˆ­?@1@!¬­?°Ñ@‹ ­?·N@V­?áç@&®?/£@‡E¯?¯/@‚¯?ž@a°?@0ˆ°?×Ü@)ϱ?àÃ@Éë²?ÿ@)ز?O@æG²?ò@ïα?®@Ê ±?¨¥@~–¯?«f@­Ù®?§ö@:Ï®?«¬ @ ®?“ø$@®?Ý(@ú×­?&.@Æ­?«Ú1@›)­?S2@“§¬?P2@t¬?ÅÃ3@¶'«?ai0@ìî©?¸Ô/@u¥©?“â/@ºª?}|.@fqª?c.,@‰(ª?¢ +@vGª?J-*@Í©?N,@ø5¨?L+@òͦ?f+@o¥?ž³(@Ä£?„í(@}£?e&@{¢?Ãé(@xŒ®?0Èã?ŠO¯?Ôë?–‹¯?W­í?ž²?‰ð?§²?^ÿò?çÿ±?Y@€¿²? %@>Ų?Ë@¾Ý±?„Ø@‡3±?׸@ic¯?×) @M¨­?.v @X]¯? Ì @Ðî®?$š @µé­?R? @§<®?4@¾®?}¶@7Ù¯?¦@zf°?É’@[@°?YÑ@ñG°?® @ÖD±?ë¥@-‘²?§\@4ʳ?©@g‰²?²Ç@Ô²?4E@Pr°?øÔ@É×®?ëÇ@[ƒ®? c @Åx®?Ø:!@|¡­?Å%%@?¦¬?×B(@z$¬?Ž((@ ¯¬?žÁ+@Ç'¬?a¹/@R«?¿`/@Z÷ª?¦/@«?WÔ1@§.ª?è2@Xë©?*.@¸Vª?‘ê,@ eª?÷_-@¶©?/ +@bD©?ïÃ+@‰¨?«$*@fµ¦?ê3&@ G¥?(!%@üΣ?“Q&@¶4£?,w'@¢?@:*@ìR´?_ì?7º´?R8ë?e±?w!ï?þQ³?¹3ï?|³?9Pù?‚ó´?½÷@"Rµ?E@5èµ?º¯@´µ?ó@­ö³?8Ý@0Dz?¹-@à™±?öŽ@Áj±? j@‚±?ð @a¯?è @ë¼®?”; @÷¦¯?ä$ @å:¯?¢E @!°?Î@Âû¯?o @º_°?WI@•ɰ?ôx@H˜²?þ2@\„²?Uø@&÷±?CÊ@˜±?sZ@0°?y @l1¯?;Ñ@†Ï®?Ž!@Ë’­?Û¾"@¼6­?ø:$@ ­?Å#@| ¬?8Þ$@†µ«?ªœ*@ûW«?ØÊ-@›«?$.@«?Ì,.@6šª?UE/@cëª?DÇ/@Ónª?.@Éî©?1-@½ ©?Ï-@¥t¨?¦à/@Ô¨?€,@h:§?ct%@ó¥?ûC%@_K¤?îæ&@cú¢?±’'@ ¢?†¾(@gµ¼?ô?<¸?²Lò?öµ?DBó?Ibµ?%1ô?]Ôµ?¹ùý?–¶?Á¦@s›·?Î_@ô'·?ñÚ@C§¶?²Œ@•e·?X@Bbµ?:0@›É³?ýø@£‡³?¸³@ E³?É¥@kƲ?‰I @}ß³?W\ @E³?J @Wî±? ê@žž±?Ö@æ²?9(@î²? 5@}³?Žt@R²?SV@“±?; @šf±?å @«Ä°?‚°@Êd°?Š@F¸®?¾ @µ7­?£Ï"@܃¬?m "@¹Ë¬?k"@ú¬?÷!#@f#¬?\'@Þð«?R@*@ºá«?ôÈ*@t·¬?ÄÚ+@-%¬?‡ -@/Ъ?p±.@2Lª?„š.@{ª?7/@U¼©?GŸ.@9á¨?™-@çF¨?ô.@⎧?Z +@æ?kð&@,ƒ¤? õ'@»·£?vë(@b ¢?F'@‰‘Â?¥Úþ?Tƽ?³ý?|͸?øùù?¹‡¹?'²ý?£¸?6@çb·?í·@#ø¸?ßÜ@å\·?,ç@éë·?¹ž@ßS¸?5Æ@œ¶?^@ºÅ¶?¢ù@:9¶?Ó @¶z¶?¾O@Møµ?W@u´¶?­ß@ªa¶?a @Ñȶ?om@T“µ?‚@ö¯µ??@wªµ?îs@©¢µ?Þ6@¡ˆ³?J@ˆ±?ý5 @n±?ˆ» @âm±?÷ @oQ°?-‰!@]®?„É!@Á»­?=Ø @ƒ®«?e  @óÅ«?è  @g6¬?âX#@#l¬?9&@ÍH¬?: (@/V¬?^Ç)@Lެ?þü+@)¸«?zD,@Ó‰ª?2…-@¯Ôª?º ,@¸*ª?iý+@Üð¨?€ˆ,@=¢¨?Af+@‡§?)“+@õQ¦? –(@óP¥?;:)@(¤?J%*@]“¢? )@j½Æ?Uþ?¼Ã?l|@ÓŒÀ?FÀý?JȽ?N0@%ü»?ŠS@z¹?1@XS¹?×@FP¸?»@ó¦¹? Ó@¡¹?Æ–@©8¸?„L@{™¸?™“@|ͺ?™é@D¦º?mœ@mƒº?6@Ñ>º?´}@iš¹?å  @4 ¹?j«@Å…¸?y³@Vý¶?ÕÏ@ùy¶?,e@Ä@µ?!ñ@,’²?.ò@LC±?A:@u—±?ÚF@žö°?K! @z\°?då"@~‡®? "@7ɬ?7"@.¬?òó @xë?Q>!@‡¬?­ü"@7¬?y%@°««?Tû(@i–«?ò +@ÇŽ«?ò+@î̪?,@§’ª?ª)@®©?xg(@R©?+»'@Ôï¨?Z?)@§¹¨?«3)@î§?òÀ)@#ߥ?™n)@^¤?‹Ÿ+@û/£?ø«+@BŒÄ?lGã?4˜Å?´ù?ë·Ä?ÌÂü?HÁ?»°@*¥¼?+–@Ãu¼?›@˜`º?cÎ@ëV¹?¶0ÿ?y¹?síû? W¸?,4@‘"¹?ÜŠ@cÖ¹?Ý(@f »?Å@Ѻ?ã<@—é»?5T@ü`»?ÞÎ @kº?p@³º?bM@Ûš¸?êN@ÿ¶?»ü@Pµ?²œ@Ô«µ?º)@[޲?‘¡@ذ°?î§@Û°?“z@]Á¯?e@>¯?4¿@Èå­?ä @kˆ¬?ù @Z«?ž!@ Ϫ?T@!@Ÿ#«?ZÌ"@-0«?˜%@$ «? ®(@iT«?•–*@&«?!$+@ö «?C,@°ª?´†)@³©?Ú'@6=©?i(@6¥©?cX&@Žc¨?Æ '@q>¦?]‚)@âŤ?ì@*@AØ£?Òs-@)øÁ? sÈ?tAÃ?²Ëæ?QÆ?)°ü?ÞìÄ?+i@’×Â?ú¾@êlÁ?1ƒ@W½?Ë‘@Št¹?Ö€@$$¸? ]@¹Ÿ¹?‡@K³º?q2@³ »?E@Q…»?> @žs¼?sç @ix¼?(÷ @G½»?xƒ@îrº?Ã*@3ĸ?†K@cZ¸?æp@tÔ¶?J²@Yö³?4@úp³?Q@+±?\/@ö¥¯?E@瑩?ÀÝ@èF®?Ї@ßç­?‡@˜t­?ÏÁ@cѬ?.[ @º«?K !@ˆ«?ëM!@|îª?r¿!@»—ª?*¦"@]«?ë°&@c«?Ã*@H§ª? j+@Ùª?ºP)@[ ª?k(@8ó¨?öµ)@'1©?ò)@¥ù¨?ÍK(@( ¨?^1(@Ÿ¦?Áé)@ ª¤?›Ó-@o¼?hñ½?WŸÃ?6‰Ö?jŸÅ?Sóé?bÃ?6Á@THÄ?k¿@ïÂ?è@G:À?X@¨p½?Om@š=¼?¯æ @¢T½?ÚŠ @?ð½?£å @X½?þ­ @TW½?o®@½¸½?ëž@ {½?ÆC@-¼?O@ýf»?/f@&?¹?¶@`·?§@°2µ?]²@…³?¢l@W³?IÙ@„m°?!@né­?‡z@Ýü¬?£³@¤]¬?*V@,ä¬?üé@Ô|¬?ò*@u‚¬?q@:d¬?‰k#@—¤«?áÐ#@õª?¨#@¤«?8¹#@ÿÖª?Â%@@nª?´å)@M½ª?=õ)@•Tª?±n'@Ò¨?Ï(@A¨? *@éܨ?A[*@—ϧ?rŸ(@†·¦?¿*@õ•¥?òZ,@ˆ»?š½»?ÐEÂ?lÅ?j‚Á?ˆ‘×?ºLÅ?å§è?RÄ?šÂÿ?XÄ?b“ @GÄÁ?ŒÝ @æÀ?cg@šôÀ?> @Ѹ¿?Êâ @¿?G¨ @*"¿?©Æ@x=¾?8Ü@™"¾?Â@Í˾?ïI@a-½?¸\@¬T»?³Ò@ó÷¹?Ã+@‚̶?È@­Ÿµ?Ž· @:´?Ci @Yþ±?Ø @jú®?K@­?—«@Åo¬?Å@Žù«?åº@PO¬?Ë&@éѬ?Ùõ@µ(¬?x¦@¿F¬?‰\#@¨¬?ãò$@ˆA¬?ã®$@׫?e&@ø"ª?³'@q ª?Õ *@}ª?)@¢©?ØL(@¥ã¨?k)@¯Æ¨?Þ¦(@ I¨?¢&'@p•¦?ôn'@ƒƒ¥?vi(@ƒÿ¼?9¸?‘E½?CU»?SíÁ?`!Ä?´ØÁ?ËÕ?XFÃ?¡Mí?uäÅ?æš@mÄ?, @xŒÃ?q3@Å?°Í@_@Â?Ô@ÁÜÀ?å@þ¿??-@ŠV¿?:¾@ ¬¾?Öj@K‰¾?¸1@‘Ǽ?Y,@Ïáº?áî@É]¸?Ä@9™¶?ËB@~´?‘Ä @­³?+ê @»˜±?Õ» @!Y¯?Ù@'Q®?Cx@­?e@*׬?Ä"@È_­?†Ý@H.¬?Û@…L¬?f@»Å«?¯E$@ïö«?Ó„&@[¬?NŸ(@oU«?Z+@îÜ©?^W+@Þà©?] ,@~©?æ8*@ލ?Þ!)@g‡§?_”'@ܘ§?[%@"ª§?™@%@ß“¦?ô6$@|ÅÀ?óá¼?ÌÄ?ù¸?BƒÄ?e¼?(¿?d:Ç?æ¿?x»Ý?çÜÃ?QØø?•NÅ?¡Á @„õÆ?P'@Ô Ç?ðf@@†Å?ë£@ÂÝÂ?­z@l®À?ow@{¿?S‘@§<Á?&¡@ ¾?&@XY¼?O@ɺ?ú'@8h¹?ÄT@± ¸?Òr@G½¶?‘ @ñø³?Je@‹õ²?8ô@°á²?†N@{ ±?Ëô@‡ °?`p@c®?8Ú@Üu¬?Mø@’s«?‘+@iA«?Ï/@Ë «?NM"@y‰«? (@.¼«?_Y+@!R«?o¥.@fy©?èá,@5J©?%,@û©?­`(@s¨?°¢%@¥L§?3W%@J¦?tR#@ý¦?ºu!@ ‡Á?§òÌ?MnÃ?¸JÆ?dÃ?jÝÁ?nvÀ?½;Æ?v4¿?¨ Õ?jsÀ?Dè?GJÃ?xj@-YÇ?Ïà@’É?º@úˆÈ?µ@÷Å?bã@OÄ?@Ê@}BÁ?EP@oY¿?«/@¨¿?• @‰b¾?LÙ@h´»?ÑË@Ê¿»?P‚@éÓ¹?d?@˜)¸?ø©@þ(¶?¤@Å&µ?hÝ@«ž³?ªv@=º²?™w@F°?OŒ@Q>­?Mú@â9«?û–@«"ª?¥½@ª’¨?3&@ꂨ?Àé @I›©?z;%@#xª?¬È)@Ùç©?¸´-@Í+©? V-@¡2¨? ±*@Jç?+)@°’§?Ÿ$@šs¦?pr!@;ð¥?ãÛ@›·Ã?p‡Õ? [Â?£Ñ?7Â?˜©Ì?´âÄ? ÁÉ?ÌkÁ?*ØÒ?wÁ?™ÂÛ?¹¦Ã?L€ò?ÇxÇ?Ú@ÅUÊ?·@.×È?»7@ózÈ?râ@Á9Æ?`@ÞÄ?²þ@“Ã?#Ÿ@0„Â?ó@K°À?¢@}Q½?C@á•»?­x@¬¹¹? Ú@¹ò¸?‹>@8ž·?.@M¶?BJ@i2µ?Ó@8ù²?©ž@%õ®?x@zj«?ÿÁ@~©?ž@1ô¨?šL@ y¨?~@ñ§?FN@£ê¨?Hù!@"]©? º'@¶ ©?{T,@{¨?>-@å¨?±Ü)@²§?h %@õÿ§?¶g!@Ô¦?σ @¼›Ä?è¹Ù?(ÄÆ?KãÖ?/¼Ä?ë*Ö?ÓÅ??Ó?‡ùÄ?.ãÍ?¬ÉÃ?3Ï?CÅ?úöà?F@Ã?÷?€øÆ?sû@~éÈ?=_ @Û Ê?€À@R{È?§Ô@*!Æ?Ûª@²&Æ? »@¼zÃ?‚¦@çÀ?ÀŠ@«¿¾?’%@öo½?È@C*¼?¿f@™bº?@œ÷¸?2@¸f·?þ@Æ<µ?΄@’ñ?¡õ@Ý$®??Ø@ß«?‚8@Z ª?¬@¶Ô¨?'G@#@§?¯2@¡ó§?nø@ú}©?¨J@Ê ©?iŒ&@¹©?‹P-@ù¶¨?+.@Hg§?ÝÔ'@¶ä¦?I­$@€o§?Œ#@äÂ?Ûùà?Ì.Ä?sùá?ÕÚÆ?ÃBà?÷Ç?NÝ?ŽÄ?ˆ‹Î?ÇAÁ?ò É?h¯À?%›Ô?QêÀ?â?÷žÅ?F!ð?\Å?ö«@LœÆ?Ð@"SÈ?a»@%>Ç?A@<ÉÆ?ý@güÄ?g@J‚Â?¡á@‹À?\@øÃ¿?œM@±/½?tÒ@ϼ?ÒB@·<º?C@qj¸?K@¹<µ?ÄÂ@õm²?3@Ö¯?5à@u¬?^5@Å–ª?,@i8©?ê@ú¨?!ž@Ýy¨?t‰@dy¨?ð@m¨?wî%@~©?‘-@E²¨?z.@Ãs§?:Ý*@y¦? g(@£ZÂ?L í?ŠÊÄ?Å%ê?ÍïÆ?ƒ-è? Æ?#»Ü?Ò~Å?¼Ñ?äøÁ? [Í?ÚàÁ?VÌ?¡§¿?¸YÐ?ØÁ?)·Û?’À?8<é?B«Á?è–@HÅÆ?mK@K3É?;ã@vËÇ?£:@þÛÅ?ã@ÑÀÃ?Ë*@BÌÂ?2´@$Ù¿?#Ÿ@xÕ½?E‚@|,¼?GŠ@.àº?r5@ƒ¸?„Â@ºc´?‘¤@‚;±?(æ@m’®?ª‚@‡’¬?Ha@æô©?_9@g©?2}@Ϩ?@ìB¨?‚t@ì4¨?Ê@Â;¨?«%@É©?£-@Ϩ?A“0@–‘¦?g/@ÿ]Â?Öý?‹Ä?8eó?ÔqÇ?Sï?V‰È?ŽÍè?ÜÈ?ÐØÙ?}Ã?a=Õ?…¹Â?´ÓÍ?”+¾?mêÆ?6î¾?ÿoÊ? »¿?×sÞ?¦ZÂ??¬ö?™×Ç?J @ÛÝÊ?+R@¾™É?MI@¹ºÈ?Õ@åÆ?Ñô@w›Ã?Yü@ö~¿?ú¥@d“¾?”½ @“L½?H@õ^»?K¥@ç¸?´Ž@º«µ?ö@Ã?C@HŒÅ?êõþ?ö,Ç?®#ô?{8Æ?¶ží?©³Ä?Ðjå?2Á?Ø?ס¿?Î?\»?öâÇ?1†½?QZÅ?A›¿?WðÏ?lpÁ?j"ë?™‡Ä?šàÿ?0ÂÈ?¬ @ÑûÌ?Ã@ÊË?Ó@æÎÇ?/s@EðÄ?ƒþ@HæÁ?9µ@88Á?‘4@å¾?•›@ª¼?7E@Ç*»?*@Œ¸?„à@‘³?‡@í#±?á@®?–M@?¬?3/@”œª?0·@[Ô©?ý<@cþ©?Ý@Mi¨?Ë@QÀ§?Äæ)@.©§?fŒ2@EKÄ?üÄ @(/Å?¾@€žÄ?fãù?˜ Â?®nò?júÁ?Ì é?'2¿?D"Ú?Ç?¾?‘ÞÔ?ú„¼?AµÍ?Óè¾?LJÉ?OFÄ?žÍ?CÂ?}]Ü?\Ä?´õ?Ê;È?I@ªÊ?2 @ü Ì?£ã@‚‘Ê?üX@µ•Ç?¹µ@»AÅ?sÚ@HÃ?qf@̳À?±g@Zµ¾?9w@W+½?V@þ·?þû@ܱ´?YU@d ±?¸A@혭?*Ì@B¬?Ýc@vÃ?þÏ @ ìÁ?î@Lο? õ?•ÈÀ?NÂí?‡C¼?»­Þ?ë~¼?òÙ?EûÀ?¼¼Ó?œ¿?°æÒ?TtÂ?ÿ.Ô?íÃ?WÕÚ?£øÄ?A§å?X‹Ç?‹Eö?ÔÌÈ?—Æ@n½Ê?<†@þË?„›@÷(É?8’@îqÆ?.ª@WSÃ?³#@ÜD¿?&2@£Ò¾?É@J(½?Q–@¹º?§ª@ªüµ?Ž)@<ñ°?ø·@‡×¬?í0@I¬?|@暬?Oì@µ¬?}@‡ª?zk@E¨?i @¿ñÄ? p@£cÃ?Àä@ì-À?K$ @†$¾?–Jû?´Ä¿?Ó1ï?4º?àÅâ?¡¹?%qÚ?‰k¾?úïÕ?`¾½?}Þ×?)¢¾?~¾Ò?Ø]Ã?ÚwÓ?ðUÄ?b*Û?ÛáÅ?Èå?ôÅ?®ò?éÑÈ?Ov@-ÅË?Ð@pgË?+@=NÈ?³£ @.àÄ?5s@ Â?ò‰@ý²À?C”@½?»D@§¹?Äã@… ¶?´L@ÌZ²?J°@#[°?ëY@BÊ­?Sž@»®?íV@º1¬?ç{@¨×ª?¨Ä@ qÅ?%ƒ@Ë1Ä?+?@)IÁ?”X@^Q½?Î[@ë»?¬÷?ð¶?uCè?^´?ÉÅÝ?2ð·?ÚÎÕ?jç»?I`Õ? ʾ?/*Ñ?Â0Ã?Î Î?QÄ?ÊÔ?`#Ä?øäÚ?…õÃ?è”â?ÙeÆ?£†ð?GxË?ø3@”Ë?ÅÅ@gâÊ?ä’ @\tÇ?îL@å¢Ä?@×@MÁ?P@¡¾? ^"@d¼?;v#@ Ã·?RÌ@ô‰µ?sº@¡²?@7õ®?ž§@y’­?¸;@ôb¬?>£@†9È?Ü#@‹ñÅ?k6#@лÂ?²Õ@)^¾?+Ø @ݾº?eg@¶ž´?~ïí?°.²?Ypâ? ¢´?®ûÛ?½¹?Ø´Ô?žNº?qÓ?>ö¿?3Í?ÉBÄ?}•Í?&FÂ?i;Ð?+›Ã?ØØ?ÖvÇ?´$ê?ÖÊ?¡ù?©ˆÊ?ø@ñ—Ë?Ž@ûmË?ˆé@ üÇ?ÎY@y-Ã?A[@ÛÂÀ?g›@½?—²@ߥ¸?öë@Lµµ?2š@W)³?¹@(V°?k¸@¬ ®?k­@­ûÊ?¿*@€0È?9*@™÷Ä?è+ @¦5À?¸@ ýº?- @¼3µ?÷óô?UÕ²?€/å?Uoµ?’ß?Aè¶?|„Ø?n¸?Y3Ô?€#»?`ÛÎ?r‹Â?¼ÁÆ?ŠÁ?LÆ?òÃ?ˆê×?YÇÆ?Èç?B×É?úï?Æ¡È?§÷?sêÉ?4@BÊ?‹ì@›LÈ?(„@ñ Å?‹@òFÀ?Òq@Se¾?Š@Gǹ?2@™¶?µÝ@"}³?­³@Pް?”’@÷yÌ?qE/@'NÊ?Ð /@ ÀÇ?î2(@»“Ã?ÅÏ@…4½?»¸@½½¸?÷¹þ?•t¶?LÝæ?WÏ´?ù~ß?Ý´?wÜ?Uæ¶?ÜÓ?Õ}¸?×/Ì?a'¿?^“Â?Â? uÃ?î’Ä?~Ô?sÇ?"Cá?šaÇ?1æ?ëŒÇ?¤ð?IýÊ?ȸý?MKÊ?îÄ@ÍË?½D @TÇ?;Ñ@eÍÂ?°@|é¿?<Û@Ó~º?#)@‘î¶?Z@ ‡µ?MN@rÇÍ?ˆà0@ÅÂË?þ§0@¸+É?šû-@W_Å?îÁ#@î¿?qP@¨šº?àç@?8·?”nî?çÓ³?Õß?”³?6>Ù?’·?ºÑ?kM¸?ÏëÈ?Xú½?9oÂ?R\Á?n´Å?*«Ç?ËrÐ?¶‹Æ?ø¤Ø?±ÕÈ?kß?ÜtÈ?bqê?vùÆ?úlø?¯XÈ?ê@ÉÈ?‡@^ÀÇ?1i@ÉÄ?×¥@à¿?˜@’f»?yò@]¸·?@7vÍ?NG/@úðË?«ù.@PÊ?¼n.@ûüÇ?©Î)@•ìÂ?åp@¦4¼?YE @A ·?‡êø?1m³?e½ß?ŽÁ²?ºÓ?j·?ݱÊ?«º?=sÉ?×z½?¯ˆÌ?ŠÅ? Ó?1RÆ?ÎÕ?:ÕÆ?èiÙ?î È?¡=ß?ËŸÇ?õÄè?óÆ?ÈÕõ?eÈ?®Oý?UÇ?¸õ@*šÆ?H­ @SlÂ?‹6@!ʾ?ø»@ ëº?eq@§SÏ?sµ*@cÌ?í *@h¦Ê?Tß,@nÉ?”Ò-@mùÅ?ð]#@Ëù¾?u@Qq·?ˆÊ@rª´?¡1ä?m\µ?djÕ?¡+º?Ý/Ñ?š·¼?¥.Ô?Ž8Â?§Ö?¤‡È?~Þ?(É?„…ß?cõÆ?ÌâÜ?0EÇ?¹WÛ?èŒÆ?§"á?l¯Ç?^î?KÆ?óZù?=Ä?¹@?Å?OÒ @%Á?t@”•½?ºZ@›~Ñ?x´&@ŠÍ?©ì$@ ÍË?<÷(@êQÊ?Di,@Q#Ç?Xµ'@ùÁ?¸!@W+»?•Z@Ù#·?Ûcê?§¹?µò×?°Ï¼?8×?óMÀ?¡­Ø?fåÅ?“Ù?:Ê?“äÝ?ôÉ?â)Þ?"áÈ?2Ù?ª’Â?Œ×?MÜÅ?IkÚ?¨çÆ?ªæ?ÛkÃ?NÇó?Xñ¿? ,ÿ?ÑÚÀ?J @ Á?¤/@!ÅÔ?kó!@TÕÏ?•ø @GÌ?&©#@Ž—Ê?Å}*@9½È?…A-@(UÄ?#@ë«¿?L@”º?w ý?P¼?R«ä?íó¿? bÝ?¬}Ä?â?Ø­É?xä?âxË?½lß?û›È?‚ Ú?¨TÄ?ååØ?=Ã?V`Õ?R Å?ŽõÚ?FÎÁ?Ÿá?Aݽ?„ð?¦Ð¼?ï.ù?Ť½?‚ð@a×?……'@ìÒ?$?%@ü¸Í?^5$@"ÀÉ?LÇ&@½È?ñ{*@eÖÆ?e?&@pÚÂ?ñŽ@#*Á?;[@äÃ?]î?.£Æ?qÉè?gjÊ? Þë?mÉÊ?÷pç?\4È?{vá?…)Á?íBÝ? ¡¿?’Ä×?PÆ¿?*ŽÐ?“À?Ñ›×?,¾¼?xýÛ?ø¾?Q*æ?ì—»?‚õ?K9Ö?¬r/@íßÑ?•Ø*@‡¿Ì?-D&@Í÷È?dû"@µÇ?›#@±½Æ?t#@XJÅ?s•@÷qÄ?Ë–@—dÅ?Yÿ?ŠÔÉ?Crô?TÜÊ?oï?ˆËÆ?këê?ÍÊÃ?²¦ã?ÅÏ¿?†iÞ?–>½?"Ú?:¾?‡ûÓ?í¢½?$Õ?¿y¼?Ï‘Õ?`°¼?2ÎÚ?w­Õ?æ.@›RÑ?Úñ)@lÌ?ÿÖ"@ïÁÈ?>ï@‹Æ?N°@ð(Æ?sa@ÂÆ?;ñ@=šÆ?¾E@YHÆ?Þý@ÁÈ?²Þ@è‡Æ?.‰ñ?úzÅ?ujè?æªÀ?¯7à?%½?[/Þ??×»?Ú?®J¾?îÑ?é¹?×8É?~¼?|þÈ?OÔ?B­.@®sÐ?¨‹(@nÿË?5S@êTÈ?Œ@‘CÅ?Qy@µºÄ?¾Q@jÅ? "@ÃÅ?«†@úÅ?‘Ï @ENÆ?#G@¹LÅ?Uë?}éÃ?_â?$]Â?ÕÝÝ?¾Î¾?BüÙ?,p¾?ÃÏÔ?胻?WÊ?è\»?ÝlÀ?àRÓ?.@Ž<Ð?ÕÕ&@q^Í?cP@x+É?±Å@›6Æ?@ÒÅ?Û@*Å?ÿÂ@DÝÄ?· @0IÅ?µÛ @ËRÅ?¼²@Ï5Ä?Øì?¦=Å?^ã?ÌŒÃ?YhÞ?ú™À?”¶Û?Dm¾?OæÖ?ªº?€RË?ÅQÒ?ø‹-@ªÁÐ?ô&@¶Ï?qø@ϳÊ?3®@œÜÇ?è@! Æ?&e@6wÄ?}i@kJÄ?n¶@fÄ?E„@5ÀÃ?vØ@4^Ã?S0õ?ŽÃ?zöè?‘Á?yhè?ºx¿?‰¯ã?ãB¼?áÞ?¥öÐ?O*@LÎÐ?ôè#@¦ŒÎ?+ì@<Ì?½@¢­É?è@aÆ?˜ã@O”Ä?àÁ@ýÁÃ?>ž@€Ã?xw @GmÃ?…¨@ˆúÂ?‘ûø?ÞãÁ?ŒKí?áÍ¿?¡½ì?X¿?èšè?¶²Ï?‚É%@­%Ï?:#@6'Ï?N@ÚwÎ?@Œ>Ë?Ùø@­«Ç?zÞ@¬ÂÄ?Ü@‚Ã?Lt@)Ã?«\@âfÂ?ò@S·À?%‰ü?„¿?‹ññ?òÀ?Jâð? Ï?Ÿ &@‰ÆÏ?cÁ$@ÞtÐ?'ø!@R`Ð?Ê'@„ÏÎ?6P@íGÊ?™3@\ÝÆ?z@ÃÄ?Û@WÈÂ?"o@ôÀ?Þ @£J¾?@@ª¾¾?¡²ù?lÄÍ?4£)@ÇgÐ?Ó4'@œúÐ?B&@Ï\Ò?£v#@ñ˜Ð?Ò @DQÍ?:@¥VÊ?¶Û@TÇ?¯¯@ÑÃ?gï@'£¿?ÓÐ@L¾?5×@ÀúÌ?v!)@±+Ð?n#+@›$Ò?0~-@—ÅÓ?ÀÅ-@ª-Ò?+Ý-@)¿Ï?¹£*@Y‹Ì?ë )@0õÇ?k'@A Ä?Q€!@»À?W@ÚýÍ?ä'@?ÄÐ?‘{,@°Ó?!^2@'ßÓ?bß5@¦Ó?€Ü5@®¨Ð?*´4@Y0Í?ÂÝ4@¸0É?u^2@ØÅ?™)@çÞÍ?Äž)@øÐ? q.@OúÑ?ÄÀ2@"Ó?ï;@ߘÒ?¦ý;@”þÏ?rŸ?@ØÌ?ý~>@Ö~É?í]8@³Î?'p+@ËaÏ?÷×/@-§Ð?Ç-5@úYÑ?V¸>@sÑ?Ò A@Y/Ï?8ÌB@1ÔÌ?˜«A@šŒË?ó .@0nÍ?D2@¿¦Ï?!l7@×ïÐ?ïÇ<@¦Ð?ðA@zÎ?XD@¡½É?&S1@&VÍ?Ķ5@ã„Î?×\8@ÛóÎ?Ö=@àBÏ?ÀÔB@ÚƒÈ?'2@„ÅÊ?e7@ÉRÍ?0ø:@™õÎ?x¸>@ÑÅ?æ3@¥:È?mš<@ùEË?!i>@@;Â?,7@6Å?¦1:@0‰¾?D–6@ÒW¢?þæ7@YF¢?éD8@þ¾¡?Åï;@Ñc¡?=>>@€ ?v9;@ÙŸ?ãu8@Ö¬Ÿ?j¨:@œÓŸ?0[B@Æ0Ÿ?ÕàD@îlŸ?»@@ÇVŸ?Á?@ð^ ?%{=@‰ç ?æÐ8@íH¡?`4@õŸ¡?À82@G¢?A2@Z×¢?êñ2@ýA¤?\Q4@çG¥?¼¡3@h:¦?Ÿ~2@`¡§?ÃÖ3@æØ¨?r©6@6ª?9@鯪?¿š:@þª«?×ð8@h[«?–¹8@–«?s÷7@n²«?^7:@Ù“¬?±s<@·­?ÐL=@Ïæ¬?+á<@–|­?]p:@ƒˆ¬?¥:@8¬?y>@‰ú«?•@@s «?Ù@=@²l©?„±=@¨!§?Á?@@Ђ¥?—†9@Ÿ£?Q9@¢?.ã<@(¡?Ý<@£ÿ ?Ëô<@ d ?(T>@´°Ÿ?Ì{@@(Ÿ?‘§D@€tž?VÒM@XÁž?n Q@ØBž?ìT@—ß?²þT@‰Yž?žER@Ù¤ž?ÕþQ@¿à?ÎT@?Ü?hÍU@íSœ?/2T@§Ìœ?ŰN@ÎË ?]c:@¯°Ÿ?L;@9¼Ÿ?|Ã<@†…Ÿ?Â…>@[)Ÿ?•£>@_»ž?j>@“,Ÿ?+Y@@鉟? &A@p>Ÿ?eB@Ý_ž?ÑaC@–?¢TF@øs?ÛÌG@Òm?ʰL@Ï´?èõH@¬¢?)ÓF@Lž?ɉF@C‘ž?+ÜH@;dŸ?ÁƒE@ÀiŸ?A"9@;mž?A¾-@hµž?¡'%@à× ?ª+ @‡\¡?]w@ Ý¡?¹G!@ ;£?Àþ @ÔÛ£?j"@Ѥ?ïƒ"@&¥?µ#@¿V¦?¢_$@,§?r=&@@ñ§?uD(@=˜¨?Ýd+@)©©?ð‹,@»*«?¦á*@‰f¬?þ«*@å4­?„Ù,@‡Å®?LÒ.@j8°?71@ _²?t¨2@m:´?ËT6@’±¶?/¶9@¾¸?ûz>@ñ"º?AßC@Ìõ¹?ÑzE@¬Ñ¹? –C@5â¹?ÀK@@.û¹?ÙÇ;@?sº?µ,7@T;º?«Ì1@L}º?¦1/@º?680@çÀ¹?Rô5@¢æ¸?Ú<@“–·?li=@Nɶ?ÿö:@Wε?h5@c4œ?ñ(Q@²Vœ?±B\@äœ?ï6^@È›?”>W@þÐ?§¤T@ Ò? NN@ÆGž?ëÏJ@°KŸ?¹J@f ?\I@˜½¡?‘ÏK@£?lM@ü”£?ÉN@ÿT¥?L¸P@{Â¥?ÁJ@¦?þ C@ñ<¦?0oB@4§?µtF@¼§?>&I@!‡§?@C@:ù¥?+R8@'—¤?€Â5@…–¤?‘R9@¾o¥?˜?@ªv¦?ýäB@gž¦?ðéA@Ÿç¦?˜ôB@Êô§?-¥A@¬ ©?ÛB@Ù©?ø¸E@E0¬?îM@^á¯?ÕQ@›²?€K@à´?D!F@$¾µ? *I@Ó5¸?‰?@Yòº?7¼9@ïϾ?ü4@&äÀ?V4@èÄ?n6@‰QÄ?8D7@E›Å?l0:@‰€È?5×?@?Ë?ÏÕ<@ƒÍ?9Þ6@VÑ?qg/@n0Ô?@Õ-@!þÖ?qp'@|6Ø?ë!@ó[Õ?´­$@v¼Ï?ë,@sÉÉ?Á0@ZÃ?aÊ/@¶¾?É÷/@Y ¼?â`-@ܹ? *@B ·?þó(@‡®¡?°’8@$b¡?D7@„\¡?þÖ:@(P¡?>@ýýŸ?…;@VqŸ?õT9@Ÿ?;Ç8@ò˜Ÿ?µn>@dÙž?†?@‡rŸ?ªI>@8¹Ÿ?5<@vä ?©=@åæ ?ó47@E°¡?ß\3@ûÀ¡?5o2@+â?ÈÍ/@@è£?3R2@¥?¬4@»¥?ð3@¹e§?51@a©?«¨0@ߪ?U¦4@O`«?[8@ýa¬?(:@:š¬?¾Æ;@Á“¬?5Ä9@ç¬?Éb7@ßx­?‹û7@ϵ­?2”<@Þ­?‰1=@ªÀ­?—=@ì­?Ü]<@Ç!­?¾¦=@Né¬? 7@@Hä«?Å=C@ú–ª?[ûC@÷^©?ô"?@ª"§?Ë<@v5¥?6;<@Œô£?× >@ªá¢?>@l ¢?s3;@s• ?0—=@ZŸ?¯ˆ<@%1Ÿ?A@ÌŸ?12C@“<Ÿ?¯nJ@}ž?¡þN@Ó?oáS@U¼ž?tüQ@š'Ÿ?ÀÞP@/Äž?UT@n·ž?ò¨T@’'?73X@œ?à U@ûº ?JN8@­ï ?07@ ?ã…9@RT¡?"©9@)çŸ?ìâ:@Mž?r¤;@/9Ÿ?Î<@Í*¡?ú->@TÜ ?Ò:@gO¡?1@½—¡?_*3@`]£?¥]1@2¤?ùž4@Ü÷¤?Ø£7@Ax¦?ß»7@¨?q:3@ª?ÛB3@N‹«?ù/4@––¬?tÅ6@nž¬?˜Î<@ÂŬ?§?@9­?«o<@vÏ­?F:@jè­?<;@w®?/<@Å‚®?,ú;@?5®?å8;@ભ?í<@$ß­?]¶=@|ê¬?©“?@—À«?Ý{B@Izª?g×B@UO©?¬?@%.¨?ˆ!<@ga§?ŒÓ;@\ë¥?¶<@¤?a£=@ƒ·¢? =@‚ ?š—>@tìŸ?ά@@€¯Ÿ?GaC@ÒŸ?˜VH@ã)Ÿ?$ÒJ@·£ž?*P@}¬ž? ±T@jMŸ?VV@K+Ÿ?ÜdR@§ˆž?6R@ÖØœ?¤ÒU@»iœ?[@¢. ?‡I5@¬½Ÿ?éÛ3@ýMŸ?ó06@nïŸ?’’8@MpŸ?ð´8@ayŸ?æí:@yž?hg6@1&?Jí8@RDž?üp7@HŸ?ÏŽ8@ÑoŸ?ðt=@=G¡?^[A@èþ ?4=@ê¿ ?8Q4@~Ρ?1@ ä¢?•"3@'%¤?(d4@ðq¥?„ 8@áA§?Ù8@Ú¨?Šó4@È¡ª?mL4@ñ¬«?*Ú2@ø—¬?¶B7@ p­?Q/=@kj®?æå@@_á®?Ò¿A@º`¯?øVB@Ïį?ª-@@2°?ÌÑ=@°?¦ñ<@<%¯? :@ª½®?qÞ:@ÏŠ®?7?@V­?ìEA@øÍ«?7qB@_.«?c@@ˆ©??@wå¨?˜÷>@§Í§?¿;@@7¦?ƵB@Fò¤?IZ@\ž?î-Y@jÞ?BùU@PM? X@„ÕŸ?ð28@@Ÿ?35@³MŸ?sì5@öŸ?°È6@ùŸ?#8@PŸ?0=@ôž?MM:@ ž?ì7@!Êž?¾7@‘¤Ÿ?î‡8@ÇSŸ?e#@@Ü ¡?Ô=B@­‹¡?Î#?@Ì$¡?­5@ʳ¡?Í´1@!Т?’®3@ e¤?º¼4@,¦?q7@!´§?Á•9@d÷©?™D8@ä«?ž%6@IX¬?ö95@ ø¬?ƒ¼:@O ®?ß¡>@ä;¯?pA@Ú°?Œ‚C@Cé°?(íC@U±?3éB@.^±?Ù?@¬s±?wa<@²˜°?Ùh:@ÅH¯?q1=@|ê®?È>@­?žI@@¹¬?ôã?@'Ñ«?k^?@EÚª?k@@iª?È»B@´Ÿ¨?”üF@Œ§?¢H@ã>¥?BfK@½õ£?I1K@ߢ?¹“L@€&¢?gùL@åÖ¡? ¨K@  ?L@^lž?™„L@ψž?‘‹O@­Ÿ?{R@@Ÿ?ÐdW@Üé?«ðX@Ð{?Ï@W@k:Ÿ?€á9@4cŸ?'È8@E8Ÿ?Õ#:@Ó¿Ÿ?Ð’:@”“Ÿ?Ì:@EFŸ?m>@³Cž?DR>@¦³ž?*;@äRŸ?d;@ƒ> ?ë(=@?ÒŸ?ÑŒA@©¡?û}C@߬¡?iŸ<@!È¡?LA5@z·¡?‘4@‡…¢?1Š5@V¤?rŽ5@F‹¦?‚7@× ¨?¤æ5@ã‘©?ô!5@j«?§3@2 ¬?-E3@­A­?öe5@§Ô­?HA9@ ¯?2ª>@AK±?7Â@@¸n²?²ÜD@2æ²?&¸C@­„³?ÀA@ð¿²?oÖ@@§Ñ±?rA@@+¤°?yw<@¸¯?¢±;@Hë­?CÎ<@«­?ÝÅ;@ *­?’X?@;g¬?PD@"¸ª?Ú¦I@õШ?ßÁL@~s§?¦ŸO@º&¦? ðO@Lʤ?˜zQ@Ób£?Ï6O@ç¢?+N@Õ7¡? ¿N@­ ?9L@¦šž?:I@®Õ?#G@n4ž?¡\H@Þ‹ž?žVN@©ž?´ÑO@ºZŸ?â:@’‰Ÿ?¯Ý;@Å@Ÿ?X‹=@ZVŸ?‹^@@€íŸ?½?@Öøž?ó=@@x:ž?A ?@ƒµž?\Å9@YlŸ?£Š?@ ?Š?@ˆ  ?Œ7D@£Û ?Ò-E@æ÷¡?àH@@º¢?+5@_¥¡?55@Ô†¢?>k5@º¤?¡ð6@n»¦? Ë8@z¨?r¤5@Ù®ª?ya4@½{«?ƒ×2@:­?6â1@˜­?É2@ge®?I>4@ò®?f:@‡×±?.?@8ù²?/C@Lâ³?ïD@Þ>´?Í*G@Ée³?jG@À‰²?¢ÇB@§ï°?c8?@o¿¯?f4<@®?3M9@ }®?(¦<@âÁ¬?³ÖB@²‡«?ÑßI@Ū?PîL@gÁ©?'°Q@Y:¨?š@S@ã §?oîR@±õ¥?ø²P@`i¤?,N@çÊ¢?­(N@»¢?SL@yž ?ú¢H@ÃhŸ?XG@/ò?¦F@«Û?”]E@*y?þH@xŸ?ãk=@°SŸ?¤ß=@K©Ÿ?Î">@ª< ? C@§ ? nA@üŸ?°Ù@@´Žž?ìt>@âûž?%ú;@‡RŸ?tß>@¼Ÿ?-@@§  ?-×C@Éõ ?ž¿F@ÿ¢?ÖB@Ÿ¢?ƒ<@»Í¢?€€9@ô£?x¯6@µ°¤?û³5@4X¦?9@Ѿ§?/Þ7@1tª?Ä¥5@0׫?ó5@qÞ­?«|3@þ®?û/@[W®?M52@å=¯?/À3@‰0±?"49@ñDz?ÃÙ<@v´?ûmC@ÂA´?UI@{b´?ç`I@W³?…ÃG@þ²±?ñþD@¹Ö¯?B@@¯×®?ê?@¿½­?T>A@M—¬?Ã1G@o\¬? L@ «?SR@-bª?ÇQ@>©¨?¾S@Ûä§?•S@Ÿò¥?ZÃP@(q¤?±N@¯¤?ÝH@Ï!£?"žI@ K¡?ƒËJ@ªÜŸ?EáD@›ž?$ôB@ÅŒž?œrG@KŸ?+ A@õRŸ?Ñ÷@@! ?%rA@Ž ?©žC@&·Ÿ?öÛB@¹Éž?ì>C@*Ÿž?×iA@'iž?E{=@'ïž?Ë”<@¾”ž?óÛ?@`Ÿ?-/A@ G ?Y4E@Òg¢?›–F@”΢? >@­?»2@ǘ­?,Á0@g&®?1@OO¯?öJ3@Ù±?äŽ5@¥²?ºš9@¹=³?Ö,@@³´?2æG@ëg´?0+M@¾³?cBO@²?‹K@vî¯?UxI@„®?v I@©°­?©7J@º­?¥ØJ@L­?³³L@Ô¬?|±J@ILª?ž;M@Ì ©?ÑN@ ˆ§?7\M@gi¦?X’I@¢ÿ¤?Ä E@š¤?C`F@€g£?޲G@о¡?Š9E@¾å ?¯~C@[ ?£^G@Ûãž?éHA@Ρž?Œ@@õ[Ÿ?¶³A@ȸŸ?ÎËD@VEŸ?\ÍG@ŸÃž?"“D@-Œ?™&E@z?mó?@P{ž?ë*@@àÛž? :C@“ûž?S}E@x:Ÿ?¯½C@«Æ ?àºE@^z¢?û$@@£h¢?[_9@¢B£?¼$6@ ¥?$a3@º^§?ãO7@+¨?f7@(wª?r°4@Æ®«?à\4@Ð ­?N3@±:­?S 2@iÌ­?ë‰5@µw¯?$Ú4@-¬±?;¶4@4б?ç7@ZS²?Šô<@»3³?k§B@¨³?nàI@³³?¸ P@™h±?ªøQ@°ô¯?ÎÍQ@Íš¯?dP@Ó®?œN@`­?¥°L@}’¬?UG@¯«?ä§D@Pª?öGD@§Š¨?²G@±:§?TlF@h°¥?èD@.˜¥?~E@Í¥?H@ÚÙ£?½½G@ºå¡?ìºE@·¡?8ÞF@ÊPž?urB@[ež?ŽA@XŸ?”OC@ï`Ÿ?AE@bŸ?3OK@âž?ÐRH@}ª?þ)G@NZ?éŽD@ò¿?(©C@ÜÖž?PH@Rêž?'GF@jäž?E@,Q ?÷C@‘Ö¡?@Q@@ä¾¢?¤³;@Fó£?pf5@ô¥?âÆ2@üÁ¦?|g6@ æ¨? Û8@ˆ»ª? N2@ˆº«?s4@GH­?Òõ5@x^®?Û7@ºV®?@]9@\Ÿ°?“a8@d±?¤ô7@ɱ?z¯6@¾#±?3i7@c…±?Æü<@m±?EŸE@±Ã±?ŸO@U±?lmU@HÞ°?ðÔU@h¯?U@èC®?ÒQ@Ñ2­?îJ@…¬?ïA@o®ª?"O?@Ë£©?}>@•÷§?3C@!Φ?>ND@Q¦?ƒDE@[Ì¥?4@Ã$£?zF>@‚Ƥ?|3>@‰·¥?€ß<@=ï¦?î>9@xñ¨?Í9@î«?è‡;@‘¬?mÀ<@X…­?«‘?@­®?¶A@ž¯?Î,@@2õ¯?gs:@ZP®?Ãþ<@þ®?Ã>@2®?«‹>@³Ÿ®?ôØ;@(b®?š=@¤®?£_A@‡Ž®?à%I@Ù5®?ñ¶Q@Ý®?eV@X ®? !V@^­?YQ@‘t«?éCJ@…Sª?ëÍE@Éã¨?ë{H@j»§?„ˆG@H̦?ü3E@zb¦?Ã3F@ ;¦?çPL@ÐÜ?ÀÎG@Só?1(J@kÆ?ÑK@õñ?ĸM@\v?ê^N@¾o?ÐöN@8Á?èQ@Îfž?š|S@¥Úž?^ÊU@=Ÿ?^îQ@KŸ?r€M@h:Ÿ?–²M@¢' ?ÒPF@±c¡?DëA@ ,£?„@A@Ƥ?ôR@@«¦?™@@yާ?œ:<@,´©?Ä€:@Ä"«?Ä;@´À¬?!>@Þ¬?æ_A@˜V®?4•C@-,¯?+(@@SÕ®?V =@Ä:­?\ˆ=@9·­?/r@@„à­?1 B@kV­?#PB@j½­?*·?@Òµ­? xB@ì4­?XšJ@KK­?39P@Þ­?GèT@Y­?°T@Ƭ?0ÈO@+÷ª?žÙL@,©?¿†N@W¨?ïBL@›§?vXD@9ì¦?‡B@õG¦?jG@?É?h°E@¾ž?Ý|F@uæ?¾TG@­ž?ÙßJ@H¼?XK@}‹?R K@Ï4ž?dùN@¢ž?çiN@uŸ?õ®N@zŸ?O@f ?°>K@[H ?±’J@—ñ ?=K@É¡?ÑåI@ 7¤?¡ªH@ù¥?å F@ò¥?IE@§?„ @@:©?Ã=@ 5«?03>@¿ ¬?u»A@Â'¬?0˜C@iP­?ÙpA@³?®?ïæ>@¹­?K\:@Én­?‰<@‹ì¬?ÈD@l­?÷'H@T­?5ÆF@l­?ôÌG@´#¬?=—F@†Z¬?ÿ~H@+¬?xK@炬?hŠO@Ë=¬?ä«N@(g«?!QO@ÎÀ©?É:Q@n´¨?ÖBP@Þȧ?>–J@Ò2§?ýC@}<§?7FC@ß)ž?ËE@?ž?fF@-ž?š¡H@Ïë?ÄvL@Ìý?„bL@v[ž?jÁI@!œž?«ÿM@ºÑž?¶‹K@MŸ?»›L@tˆ ?J@"¡?„H@ [¡?¨LG@/¢?ƒ;J@Ãf£? @0­?wn<@Ï2­?TY:@ÖĬ?zåA@‡y¬?åÏH@¶×¬?Å#L@b¬?1N@µ«?x°L@…¾«?GIF@üO«?XYF@}æª?H”E@™Éª?(MC@xÁª?ÍìF@›'ª?ÖM@uO©?’lP@}ý¨?ÜÀN@¼Ú¨?6J@¾Ï§?ÍYE@›-Ÿ?z.G@({Ÿ?™F@ænŸ?‡*H@*MŸ?ÏŠM@]òž?º,N@èŸ?)êM@쮟?ûP@ÜŸ?V)M@¹" ?'ÞL@Ü¡?CËI@ë¢?–D@¹£?h[G@GT¤?ÁÑF@“ؤ?‘ J@¿I¥?©ùM@Ú¥?u’M@ïG¦?ÓL@Oå§?~H@³¦©?™7G@—«?4—A@Ô‡«?ú§>@Å«?O°?@x;¬?2ù:@ b¬?˜;@¨¶¬?‘a<@Ò¬?è!F@Ñÿ«?‰˜I@U¬?YÔL@Ĭ?îMM@SS«? TK@÷šª?QnG@Ydª?9MA@ÈJª?§»9@K©?Ý™:@'¬©?7aA@ÇM©?+„H@–F©?åáL@.½©?• L@y¨?Þ“I@ÀŸ?_C@0 ?µB@…¡?QJC@þ ¡?XI@Áv ?˜¯E@Π?Z>J@ðR ?ØÜH@>(¡?ã„G@‰¡?XD@â¢?ŒúF@`Ý£?bH@9¿¤?—RE@õ¥?M~F@f¦?±]G@d¦?8óF@|Ϧ?ž‘K@Ù§?õ”N@UH¨?UÓL@1ò©?¹ÌG@ôª?^.A@N›«?Ã=@l«?bw;@ |¬?‰B:@)#¬?|;@¦¥¬?y•A@¥Ó«?6G@J«?Œ7K@w;¬?þEL@ßÝ«?åÅI@R-ª?ѳJ@0ª?Þ©E@]d©?Æw<@˜á¨?.k6@jz¨?7@à¨?Ï‚<@Äȧ?eB@K©?”E@.©?â™H@ ÷Ÿ?’ª6@Þ ?žï8@§2¡?È;@s-¡?Ô*<@J,¡?õo;@äÉ ?½@?@/Ë ?Æ@@A©¡?tM?@/£?nA=@À¼¤?ª»=@W‰¤?vÊB@w3¦?-UD@®§?/ßD@¹H§?4gE@7§?̃H@E2§?0°J@r0¨?m~K@Þ©?RÞM@ZA©?ü5K@U]ª?ö’@@xª?™¤>@|²ª?"¥>@éX«?¿ ;@6­?Ç:@d¬?¢¦C@8\«?B—I@¯Í«?gO@°K¬?M@[Öª?,M@“|©?J@¶v©?6‚G@‹©?ó?@ÝZ¨? ”7@å§?Âc7@Ç §?Øg5@I§?¤ :@ޏ§?*û=@"±Ÿ?­,@'” ?÷s1@ëì ?/•3@•¥ ?ÂU0@ž¡?{0@¬¶ ?^22@OU ?Ì2@Sö ?$m5@Ó¢?K6@D‹¤?…³8@˜v¥?Èl?@¶§?@@ó¨?ž¥C@ÿ–§? ÍD@‚ƒ§?5ÀF@{¨?ÈJ@âÙ¨?.ÑK@É`©?qL@Ã"©?ORL@OÒ©?þ›F@0ò©?w@@ò•ª?Ø<@´c«?8ø;@íô¬?©;@iB¬?SUD@P¬?þvI@ç;¬?eiM@e¬?âL@]þ©?dóO@Ä©?òQ@šQ©?•¡J@ðݨ?X?@M¨?˜8@Af§?Š4@åW§?í¯3@îW¦?ž4@ì< ?¥á&@Ñc ?ã—)@Ò¡?9o-@®¡?¯,@èá?Du+@Ä¢?Âù,@–¡?V?+@_ñ ?.@‚p¢?Ñ1@âe¤?­Â4@çz¥?ç9@í)¨?Q5;@¬©?›B@&t¨?+MF@óH¨?ϧH@æb¨?+sI@¿"©?PIK@îá©?{¡K@ ª?õL@‡ª?_ÎD@Î9ª?©Y@@\<ª?½>@¥p«?‡3:@#L­?¥M;@ÿà¬?/A@é$¬?Z;I@ì¬?TËG@ ¾ª?wåM@Úé?™ÀQ@g{©?… P@?U©?ÿF@ x¨?(?@¢E§?ód:@öS¦?¸7@©¥?ê"5@îç¡?­ž#@©»¡?Á$@ù¢¢?L{(@ÛÝ£?Øï'@.Ê£? (@iŠ£?‚'@˜Z£?:‡'@㇣?Y+@U¤?¤'-@­¾¤? ˜1@ì¥?pÕ3@t¯§?šª:@}ª?¾A@Õ©?E@é?ÅÏJ@¸q©?ÄVJ@ø%ª?ð_G@©³ª?ÎF@µÚª?òùE@o²ª?œD@?Õª?ù@GÍ«?A8@+Ó¬?%¯:@¼q¬?ÕœA@Íð«?â E@£M«?©IF@¥ ª?E„L@ä¨?dWO@¶ê¨?#µI@ú¯¨?”ÄB@a‚§?›¿>@±.¦?.v=@×¥?,W<@þ÷¢?Ón"@Û £?Ù¿#@öפ?RÜ$@Í¥?z™%@ì$¥?‰'@c‡¤?Ú'@Ÿç¤?ÑÇ%@­Ö¥?|*(@9P¦?9*@ðA¦?TJ.@Å’¦?Cd3@~0¨?wÔ7@òsª?·´A@ð«?4CF@ËZª?qÚH@àfª?~mI@"p«?}èD@!¹«?NÉC@èJ«?+B@#O«?ouD@¸«?8¡E@%¬?Œ@@Gõ«?Ÿ®;@—¬?ÌÒ=@Ò«?îA@(&«?”A@n¾©?z"H@t©?À6M@%³¨?fÆJ@FШ?žF@kï§?4ïB@ò±¦?èA@·¦?äd?@UÖ£?¤!@{$¥?½Ý!@x¿¦?k¸!@ö§?6H#@#ݦ?¨­%@²,¦?D÷&@[`¦?=û$@JW§?[H(@Ÿß§?=)@.¨?S‡.@ýã§?‹é0@­ ©?kÔ7@} «?4Ú;@‘«?†JE@¬«?H@™Z«?xTH@WÛ¬?–E@Ïݬ?µ#F@çó¬?¬AB@6­?AýC@ßÁ¬?ÙF@4¼¬?ðjD@°­?ÁBA@ (­?ÈSA@à-¬?ë9=@0¹ª?W”=@궨?ë‹E@óè?m'G@M¨?ƒÓG@N»§?¦E@¡r¦?UÁE@ ¦?k×C@6œ¤?“!@ˆÐ¥?Ïx @å/§?6¥!@’ ¨?0$@é¨?¡a%@G¨?Bá'@L¨? &@œ"©?þ8)@»ƒ©?S÷)@¸Y©?)`.@øë¨?«2@nŽª?Ú<5@J¬?I‚:@fH¬?¢6@@‘l¬?R-E@B0­?»H@´e®?‚„G@W®?[zG@íé®??ûA@2=®?îÆC@ô­? ÿD@¶ç­?áRF@Ì^­?®bG@t‹­?¥ÄD@cá¬?q)?@‘ª?Í’>@ô•¨?_D@W¨?D±E@©d§? E@œ¦?øD@ôn¦?µ÷C@¥?ÆÇ"@0¦?àª!@°¨?š·!@»R©?Fõ"@ëa©?ø6%@„ª?ú(@%—ª?¥'@«Üª?®)@7ƪ?¥p+@øª?(.@ª?‰}0@—Ù«?–f2@­?[8@…w­?ÌJ<@Ó­?x*C@ZÑ®?/ûE@J„¯?ÑF@b’¯?u½G@ˆ&°?}}D@jé¯?8±D@^·¯?~B@d¯?Ò¹E@͹®?8I@6¯?À(E@†á¬?WzD@fžª?¹ŒA@û¡©?ÞE@©?`•C@°Ó§?¸C@ §?ăC@xÖ¥?À#@d`§?Ù#@|©?‘¯"@‡û©?¹¯#@³ª?ÍŒ&@wð«?«A)@¤Ã¬?<(@C¬?7_(@¬?)*@ø¬?;•,@ÐŒ¬?„"1@B¸­?Ñ»1@hË®?þ84@1œ¯?h98@üœ¯?56>@è"°?rû>@ ±?—OD@•5±?[kG@ýx±?3ÿG@ ¯°?!E@K‚±?¢ì@@а?k¯D@×Ô¯?«:I@‹°?a€G@­?¹E@Yú«?æED@I¬©?ÝWG@¬ù¨? E@$d¨?ÉŠD@Ø£¦?~i$@ü{¨? (%@Œ€ª?Ñz#@¸«?Õ#@¨¦¬?ûÏ&@Öl­?x(@e®?€î'@ÿ®?~P)@çì­?ê(@È·®?Õ+@#¯?Ýt.@kø¯?~0@I²? ì.@Ô²²?ûÅ2@§÷±?6@+à°?5¯;@–æ°?qVB@ð¾±?äyH@ «±?ë¯I@ޱ?¸ÊH@Þ°?‘›C@<à°?˜D@[{°?ö!I@è6¯?bI@©È­?$J@¿a¬?J@á«?kH@Šª?x¶E@N/¨?„«&@{ª?&D%@l¾«?'#@­=­?;+$@—®?Îæ&@¯?'@¦¯?%<%@¤¯?ÚÞ(@é’¯?¡´(@!°?9w)@9·°?ó‹*@jF²?OJ*@öÛ´?R)@ãF´?²…,@Ùˆ²?1@«-±?ãY7@ø]°?žø>@ @±?ÃdF@´(±?«kK@s>°? tM@‘°?ø£G@³$°?›†D@ ±°?9H@š×¯?jžK@‹’®?fM@O­?iÈN@¿ «?Å™K@@U©?ž '@"ö«?wü&@¯ü­?gÍ$@ø.¯?Žv$@'g°?mø&@;V°? |%@.x±?â$@,t±?j´%@÷ç±?ž&%@K²?&E&@m³?Q )@yì³?®Ù)@)™µ?'@¾‘´?¬Ö,@(}³?;/@Ð ²?«4@Ú‘°?u<@Cа?–×D@Ú,°?¢`K@9ޝ?ÒQ@$é¯? M@Éf°?}F@ï_±?3 I@–°?LP@}ð¯?£BP@dˆ®?†×S@åaª?¾ô(@Ë\­?#@(@½¨®?­û&@½±?¢.%@»Ž±?}<)@Dı?€ó$@‹J³?ÈÀ#@_’³?ì2$@¢%´?ž–#@gÀ³?Ê&@}å³?mp(@0ä´?‹)@Íuµ?HG(@Šl´?vÍ,@ã ´?d./@¯£²? 4@Ü6±?t¤;@ÞŠ°?Ý}C@؈¯?­.L@¯?cbQ@ˆc¯?@¯M@›ð°?JG@é²?l J@@²?§âJ@F²?S£O@:8«?Ùt*@7ñ­?•)@ i°?«Ò(@±'²?5Š(@Tɲ?Ðq(@‹*³?Z†%@®Ê´?¬ý"@g,µ?©%@9ºµ?E%@Ûmµ?¤y(@}µ?zÆ)@2¶?ë&+@ƒöµ?Ñ-@Ñ ¶?òÞ.@¢k´?X0@¤³?rÃ4@ ç²?‘•;@ ±?UC@™B¯?†I@ŠÀ¯?•OL@‡½¯?Ó×L@ó±?ŸK@®²?Ä?I@:³?ˆI@^¬? Z*@ί®?ý*@ ±?©+@Aý²?Ê¢*@`£´?ß&'@-}µ?TN%@vL¶?¢ù"@Fc¶?*¡%@|·?èN&@‚­¶?[d(@H·?w*@¡G¶?ûò,@tâ¶?kà3@ \·?À5@%)¶? {5@¥ ´?‘6@2[´?4Ë9@Nܲ?^a@@ ²?«fD@á²?­H@º ²?`ZJ@ ñ²?[L@…J³?ïªJ@²g­?x*@Ky¯? +@e°±?gÆ-@/ܳ?B)@¼µ?£%@­Ã¶?]"@5¸?Gƒ"@¹Ç·?$@‚¨¸?^ã%@¬­¸?3H(@ÓU¸?*@Ú%¸?„¢0@í¸?&8@íC¹?_:@<å·?¡ï7@Êèµ?:@áµ?¥]:@ǵ?"J<@a ¶?˜ =@ÚŽ´?F²>@ê´?ûîA@Oãµ?vD@8„®?ZŒ*@˜ì¯?[D,@ F²?iô.@©†´?‹'@Xùµ?< #@ ¸?ƒ–!@—Ö¸?‘9"@SN¹?Y$#@O’º?¾Í"@Å»? ˜(@©Ó»?| -@Îìº?‰ 3@òÈ»?½9@)»?ÙÃ:@"_¸?å§;@9Ü·?æá;@M ¸?Þ+=@8D¸?™:@x·?ßÎ9@@Ô¶?ï˜9@H°·?øé<@m¯?k}-@Þ±?„0-@Žq³?„á,@¬%¶?Qû$@MQ·?ïÒ @õ¸?•© @ö¹?.J!@ÿ(»?°â @ÐZ¼?Ü^"@†3½?¤…(@õÔ¾?Âz0@?Þ½?Y¥5@H·¾?j€6@‹ð¼?kV7@ljº?Ì9@?1º?EA9@[^º?Î<@ƒéº?-:@f9»?Lå7@¦îº?ξ7@ñy°?C0@:ð²?x/@ç@µ?ÄH+@M·?32#@ÿ,¹?ÒÆ@(|º?ìm @ ¼?Ó@5W½?Æ\@N¾?š #@´#À?ê2*@#TÁ?lÁ1@OÁ?à4@ê™À?º46@À?ÞÕ5@ò¾?ð±8@"¼? f9@ý%¾?Pß7@•LÀ?ã¿6@¿?Qj7@§ˆ²?&é1@]™´?Äx/@½Þ¶?¤)@µ>¹?ŠÖ"@MÙº?ïA @ž¼?0°@²^¾?Þã@Ö¿?ï‘ @×RÁ?÷G%@æçÁ?à -@;Ã?³^1@ÈãÁ?5@ÝšÁ?Ť5@…Â?ËÃ5@Þ•Á?©Ç5@3À?86@eBÂ?t…6@üZÃ?ˆ7@„E´?Ǽ3@û¶?j0@ER¸?ìW*@Ž»º?Üo%@©¼?ê:!@¥"¾?ö@Í2¿?ÍÖ@®Á?µ#$@ðÇÃ?|Ž&@íïÃ?NZ-@P Ã?£Ù/@H—Â?‘F5@rÞÂ?Ýs7@©*Ä?ˆ¨4@#íÃ?y%6@>Â?öñ;@W¹Ä?‚ 8@n¶?L]7@M“·?dß4@l—¹?é€/@9»?ñˆ)@ðž½?m"@w®¿?4¹@žýÀ?ˆÖ"@êÃ?ÄG&@«KÅ?î@)@|@Ä?=Þ-@”Â?Eå1@´¨Ã?r18@ãÄ?Úm:@:ÞÄ?Ï9@“Ä?:9@g•Ã?‘(9@d¸?Ê=@TI¹? >;@{ÿº?ò3@м?3c*@⃾?Þú @S"Á?³@«&Ä?“X$@Ÿ’Å?v£(@@÷v¼?"e6@§¾?Á)@ë®À?™c@åÄ?~E@îèÅ?)Ã%@\ÇÆ?Ò7.@kÆ?8A@²pÈ? ¸E@fþÈ?uB@,æÈ?`Y?@'üº?•tE@’5¼?Ë@@êÁ½?­j6@Yš¿?Lï&@tÂ?F @'ÙÅ?DÆ@*¥Ç?BÈ*@|È?ÊŒ3@ý)É? ±8@›sÊ?Ûh@@–Ê?Ü•D@ºË?%·C@÷Ë?‚Ë@@lv»?³bF@C+½?ò‹A@À(¿?¦‚3@ò)Á?î‡$@ZÄ?Dœ@- Ç?ð€ @¨É?õØ/@#Ê?ÌV9@ŒUË?« =@¾Ì?Y_>@†sÌ?>@d³Ì?]8@ º»?mÕC@ì½?k?@¼Ü¿?ï3@WšÁ?À!%@¼Ä?@cNÈ?Ú¬#@¼:Ê?u2@Á—Ë?”Ä8@ß’Í?“‚9@MOÏ?§k4@«Ð?á4@Š“¼?5B@Îm¾?}Ç>@ëè¿?tœ4@D8Â?6o'@5 Æ?+ü@Ó„È?ÛQ%@²êÊ?¢f.@GçÌ?C1@ãÏ?] 1@^¢Ò?Þ.@‚Ÿ¼?z>@[S¾?›A<@ð4À?•$3@˜;Ã?¯d(@„3Æ?W$@7ÑÈ?_ð%@±îÊ?Y¹*@BiÏ?/à*@N0Ó?<])@$‰¼?¥ð7@~¾?Ê,5@„5À?vu-@9Ä?;”'@;Ç?1&@Ç"Ê?„³&@Z}Î?k'@:@Ô?Óa%@Ï0¼?[Ù3@&¹½?|.@Úü¿?J(@”Ã?å¨'@€çÇ?œë(@‡.Ë?t!*@²3Ñ?@H)@g¼?»±0@"õ¼?åk-@ü ¿?Gâ)@¾Â?„)@¼Æ?‘p*@ñGË?±7,@Ø»?x4@c’¼?g·2@À¾?Ö°.@`Á?¿C,@ ‘Ä?w‹,@½»?Ô;@¥÷»?ê#9@5]½?ì2@ º¿?ø/@6†º?ÕŠ?@c§»?ÈÞ8@û¼?ÑP3@†è¹?;@…Q»?½Ç2@ ¹?X/2@Â÷´?LÕ+@› µ?õÃ)@²¦´?Qn-@v0´?Úß3@Ù:´?Â4:@G´?@lô³?‘4B@–˳?D=D@´?Ñ~C@õˆ³?ÚŽB@}þ±?"b@@ܯ?Ö?=@_,¬?ÞØ<@Tä©?8«?@´à§?}F@¤ ¦?çzN@»¤?P±Y@'é¢?k a@Ue¡?ª6b@ýºŸ?_@Èaž?Z@éœ?‘S@L^›?nƒK@‰ƒš?^RH@i!š?|F@ˆý™?Í™F@St™?zÁI@º¼˜?e”L@fÄ—?"ÐP@â–?‡»S@$,–?]3W@¶¹•?/ÔV@£•?ûvT@ÓB•?)šP@±•?ýÏK@•–?ÒH@Øœ–?éhF@ãì–?E@ ž–?cóC@Oy–?ø!D@;F–?ŒýD@OÖ•?^«D@ÝW”?@D@Z±’?r¤@@ì?=ó:@ÄF?kÏ7@Ò“Ž? ¢<@ð9Ž?ªdA@8?“C@€’? H@AŽ?¨¾O@Â$?…áZ@´ç?!^g@Ä?%p@ª ?æ»r@É«?®s@šª™?q$@-A›?à¬'@Ö¯›?„)@§œ?r)@i0ž?1Ø-@m^ž?Ê>2@jL?×1@i¬?–0@ž?b¤*@ýsŸ?l§'@1áŸ?¬(@Ç" ?ÇÝ&@w° ?*@ŸÜ¡?u3@§.¤?(J8@ ±¤?=¥9@qt¤?üK8@º÷£?¡0:@à³¢?÷Œ>@e;¤?*óA@;У?Ö :@©¢?š|3@RŽ¡?ž-2@ÉŸ?+=1@àŸ?zë1@­bŸ?_l:@é…Ÿ?@@ÞKŸ?¬¨C@‹Ož? ´D@˜œ?§uC@;ßš?=4C@‰„˜?bI@Cs—?®3K@¿P–?RŒJ@F—?´‚E@¥4˜?HIG@(î˜?½G@uT›?õ<@fl??¯6@a?c¶1@cœ?r 1@Eœ?z3@üáœ?@8@yáž?®yD@Hû¢?ã¯N@69§?̦A@èª?ía7@««?˜¦1@身?U0@•¬?D;9@.ñ«?’>?@üZ¬?€=@GЬ?Œ94@û­?=p6@‘°?ª?@T³?0Ž>@dÝš?Q #@2d›?oU"@¶!›?ñÔ$@Üš?«ž#@-µ˜?WZ'@ D™?$@¤Šš?/ù*@FÈ›?ÓÎ-@éO›?M+@Õ$›?`,@ãH™? ,@;™?Ý/@$™?q=8@3‚š?0Û>@Üîš? ˜A@6š?8§>@ëž™?ø<@Øš?uµ?@¡7›?Fš@@Ǹœ?ä¹=@pè?RN:@ˆž?‚›B@CŸ?ŠÍG@œý ?õK@žƒ¢?ôE@ÎÏ£?Hæ@@•5¤?Žð@@‹Ë£?ËC@`ò¢?ÙG@d¡?lP@sŸ?Ö…X@¢®?õ&Y@yœ?§ÚU@6ó›?ÔL@Ý›?ô«F@ú­š?CÔC@ÏÙ™?=F@2Dš?¿³L@+…™?JðM@‘‚—?­dI@퇕?¸DG@Ðà“?i‘O@Ž ’?u®d@ÐŽ?{+…@퇋?5V’@o¥‰? @ºŠ?u„@à‘?>…_@pž?¢ø5@ت¦?F{@¨9¥?§:@}}Ÿ?ë¡$@%£?ÞÈ?@¶¤?Qhe@„qœ?Ìv@7~•?Á&y@¥â²?§z7@¾²?qß5@šç±?‰y:@>h²?7&>@ú£²?Ø#C@ã¾²?¸ZF@Ó ³?Ø«H@%¸³?uJ@œ.³?!L@½?±?I@§¬®?|ÁE@3—«?åD@7\¨?Ä»D@±4¦?¼ƒH@Ï¥?`ÜM@A®£?•ÔT@¢?Šk]@£» ?«”c@x­Ÿ?Wg@BPž?eªf@‚?Ud@šðœ?B`@Käœ?ðÝ]@x}?Ý”]@F®ž?80\@ÉŸ?Òµ_@@ ?2n`@Ë ?2hb@Ç;Ÿ?Àd@±ž?Bh@aaœ?%‹k@„š?¬Ði@ g˜?‚´i@†–?>g@I”?ia@‡”?ÄZ[@Á7”?˜U@‹”?ž5R@øý”?%MN@ýš•?2PK@åS–?DTH@)J—?S$H@K8—?ý˜K@8"–?\#K@6m”?Ñ¢G@Ç<“?øºD@ºj’?¡·E@5Ä‘?½êJ@Ó?ÑN@"¾“?øQ@Qn”?‚eV@‰]•?í¢\@Í…–?±e@•†–?‘#o@È•?ŸNx@ª°? <@`°?±Ð=@J±?Å A@­R±?6_F@6–±?¯£H@%’±?h#L@§Ž±?¼ŽM@7é°?öAO@‘a¯?³N@¾ß­?ÇàL@–ã«?s€M@²î©?âÒN@ÄG§?†P@‹á¤?ñØR@Ù!£?Õ¬V@ôí¡?ªZ@6u ?™`@þÊž?ì•c@.ž?zºg@¬Ã?e|i@jõ?1sh@ò4ž?ÎÖc@ KŸ?–âb@Z¡?Òn`@ ¤?a“`@Ét¦?Ì»`@Îê§?ñAd@r$©?þd@õå©? Ye@>p©?öd@=Û§?#e@œv¤?øŠh@h ?õNk@†L›?Uúm@-—?Lo@á5”?"n@\u’?Ãei@|–‘?¼6c@ôH‘?çR]@¹­‘?‹ÞU@ð’?ˆM@< •?y°F@¥ó–?¡UG@}>—?ÒöK@÷Æ–?âÓM@_¡–?³ÃM@K,–?^qO@b)–?åO@~Œ–?çR@yƘ?ØkT@þš?Ð!W@}wœ?\@p?5Åg@A?L"o@¦®?»H6@“&¯?çõ:@ ü¯?hA@ÎŽ°?èÍF@bp°?zîH@˜þ¯?EÚK@Н?µêJ@åú­??¦L@£|¬?CTK@Øk«?ßµH@¨Ñ©?†ØE@ˆ§?^ŠE@螤?‚HE@“¢?±H@{È ?!@J@–Ÿ?) O@Õ3?ƒJS@6œ?b¨\@/]›?BÐe@¾a›?¿j@ývœ?à¤l@'Fž?ðÄi@a‡ ?K@ª÷­?bÂB@Îo­?¤DF@³¬?ãG@ «?ðxI@_‚ª?üvM@v¶©?5£K@ó™¨?gPJ@{G§?3jG@×¥?E@Z¤?ÿ+E@Ÿï¢?Õ>B@C¯¡?ŸšA@݆Ÿ?Óï@@XÆ?´B@ÏXœ?¿ÖH@Èòš?0uQ@j½™?Ö»Y@$Ç™?‚Äa@íE›?Þ[c@%­?¡—a@%« ?ñz\@…€¢?ÓS@ý„¥?шK@甩?+VD@ 4¬?ì>@fé¬?®?@Æ(«?^£C@ª?ù&I@7V¨?QbN@w4¦?ItV@W£?#e@¿;Ÿ?jÜs@YÖš?‚|~@a—?Y6…@1P“?·s†@yt?Û9†@µ|Ž?­C‚@ax?äÉv@á¥?' e@uÛŽ?0OT@i?ÕØG@-õ?B'?@’?8;@ÁT“?ÌÅ:@¡N•?x#9@6B—?Oc9@^Ù?t19@;Åœ?þ¡8@˜@ ?–À:@e ¬?X?@¤:¬?ãíA@0¬?é]F@~Ù«?3YK@ÛF«?.M@˜ª??O@×Þ©?o Q@z$©?NO@¼¨?·]J@Vͦ?Ã2H@O3¥?eüI@(Ñ£?ÿøH@ä£?r¨F@Oµ¡?ilE@¶Ÿ?p‹D@ýÆ?ÈîD@¿cœ?b§G@o›?ëÏN@[<š?x‰P@›i™?ÅÅP@f˜?ÀÒR@!Ù˜?³‘Y@Zš?DX@Ür›? o[@Ð?3_X@ñ€ž?qÈO@fÜ ?‚ I@s£?–GI@D†£?höK@á¤?fêR@´Ñ£?â2V@f£?AB\@·‡¡?kbd@:Ÿ?ÙÅm@EÑœ?‹]y@š?Q΃@=*—?A‰@Än”?y5Œ@ÆJ‘?TÜ@m?]ÏŒ@ˆRŽ?®‡@ ó?,€@oŽ?om@í‰?ví[@v‘?ýsK@‡¦’?— ?@n…”??›5@1 —?Aþ-@tš?r['@THœ?°$@&Å?Ãd"@£œ«?m\E@Ó©«?ÜH@4¦«?ã£L@UÔ«?ÛÜN@q£«?ÀQ@V0«?á¯R@Ѫ?ÜÐS@Ix¨?ªøP@¡¦?éO@ÿZ¥?±7N@…3¤?÷1M@½¢?¿áO@uA¡?8°P@=VŸ?µR@d?? úS@“›?1V@N%š?>µZ@ú˜?nb_@j˜?¿Æb@ö —?$We@Zu–?¿Ìh@Ý–?çél@b²–?s¶k@[i—?k@"k—?\h@ûy˜?Ëÿd@K4™?çû^@¿Zš?²R]@hš?þbZ@ßÇš?^OZ@ί›?"]@ã›?Õ_`@º½›?ÇFf@Ò~š?06o@c•˜? Iz@¦)–?q­@7v“?‡J…@ng‘?[@‡@<3?(bˆ@V4?¥…ˆ@Ò¬Ž?–|†@Ù¼Ž?±¬@Û??’os@÷k?D¬`@%d’?£ùM@9D•?v%=@„­˜?,@GXœ?Eï@À± ?É3@c£?½®@ÂV¬?”±@@úš¬?ÇoH@ÉŽ¬?è P@e¬?lJS@ «?¥±T@5aª?×T@D‰©?ìŠS@/¨?§Q@yR§?³9P@|«¦?üQ@C¦?ѱT@Þæ¤?([@År£?®b@«Ï¡?á2g@–‘Ÿ?Ó¡i@(?Wo@Þš? –u@ѳ˜? |u@œg–?à›r@Š®”?¾p@ù‡“?«us@Ó“?׈r@„W’?»(p@{{’?•8k@~Y’?%Gj@2$’?«ri@Ž…’?+ h@ß@“?• f@ø“?>+c@‹“?Ü`@Ü”?^\@ÆË”?x&]@õp”?qRc@š1”? k@¿W“?Æq@‡»‘?]ïv@.?Á™}@ìéŽ?>'‚@%Ž?‘…ƒ@Í?*A‚@Pß?€G~@ÂgŽ?„ut@¨?—ái@<‹?*K\@‹¯’?ÇóK@8ç•?w‹;@”ú™?W·-@Öù?êû#@®”¢?Öª@>¨«?»Í:@I¬?ŒD@{\¬?HL@Àq«?(O@Áøª?þ®P@lÒª?P•R@úª?§Q@ù¨ª?Y™Q@C­ª?}?S@;Nª?½îT@<©?NŒW@ŸÃ§? Ê[@FÜ¥?ØŠa@Ë4£?í½h@¡G ?Þ5k@l“?zün@iê›?§µq@îš?+œs@:˜?F’r@4–?´ép@Œ”?7o@¦“?¢tl@%[’?dNk@i¶‘?¹Fe@œH‘?hþa@ìþ?Nf]@Õ?°’W@­”?ÄÊT@â?bNT@* ?õV@3º?4¥[@G’?.&a@þ?Fûc@WÃŽ?=Un@LŽ?´ex@–ß?æ@‡r?Kyƒ@?…‡@ÖŒ?6â‰@ô§‹?#‰@4ª‹?°¶‡@ Ì‹?t†…@bŒ?´‚@±¥?äy@`±?Óãl@¼µ’?B­^@d(–?3›P@ìâ™?·ÂB@É©ª?e~9@¶Qª?˜B@Ÿª?‘$K@{áª?[P@vE«?ý—Q@ÐS«?²»P@u¹«?z9^@9û“?§ÛZ@+ô’?iœY@U’?úX@5¢‘?%†U@í?‘?AÕQ@ï‘?›S@BR‘?¬»W@2‘?‰q\@>½?Éa@h3?=”g@_?S(o@àÃŽ?U"v@=Ž?Æl}@öˆ?Ì_„@ÈùŒ?)ÿ‰@%ÿ‹?еŽ@1‹?T?’@ÏŠ?|”“@¾Z‰?A9“@ò‰?⤑@L‰?%àŽ@ò‰?|å‹@΋?úú†@4ÓŒ?÷Ž€@PÚŽ?säq@dߨ?úÁ<@ëï§?WC@Bõ§?´H@ÿœ¨?QM@ ô¨?â¦O@;©?#QP@ר?N¾N@â‹§?Á L@$†¥?¹ïJ@6%£?)L@¡?8(K@TY ?¶ÓJ@× ž?%K@ˆ¤œ?ÙµK@<êš?LÖO@´›™?”QS@¥˜?gÞU@ç—?°ÀT@‚—?£¿S@¸ˆ•?ÉO@””?QòL@"´’?"ïK@Úl‘?À.I@!€?S¨H@Á?L7I@S?rÔI@8ÏŽ?´vK@ígŽ?Ž N@Üö?'òS@ñ7Ž?Žl]@aŽ?J&e@*-Ž?/n@("Ž?ž]w@qÜ?¶A}@4r?=ƒƒ@OæŒ? Nˆ@”YŒ?—"Œ@àD‹?LVŽ@ÙnŠ?¢’Ž@J]‰?ƒt@쪈?¢‚’@zPˆ?Yù’@†(ˆ?Mê‘@†Fˆ?‡G@"³ˆ?›Ž@ät‰?Y`Š@¡¦?/éF@™¥??J@v¥?á(M@EÅ¥?wpN@¢¦?ºUN@‹`¥?´M@!¤?Û;M@>¯¢?L@%¢?EÄK@%N¡? K@e‘ ?ƒtI@Ÿ?ÝJ@³,?tH@^Λ?8H@—š?&óE@[™?«#G@pƒ˜?+H@ߘ?1³F@wÁ–?=dF@Ù”?ø$G@k¡“?G5F@ù’?ŠD@¸ˆ’?_¤C@¾ô‘?úèE@Þ‘?íÅG@íþ?‘ŒH@¾ýŽ?¤üP@~Ž?óA\@÷Ž?îÎe@~Ž?T$j@–Ž?Wn@3™Ž? Mt@_ãŽ?w@îŽ?6{@ì?™ê€@Ž?„@¡õŒ?x ‡@‰-Œ?§1‰@Å‹?¥‘Ž@ÿ­Š?’@²0Š?¿•@U•‰?V]—@«9‰?„á–@]&‰?;å•@ÇF‰?±<“@tX¢? 5P@JI¡?(éM@{5¡?QSK@SÜ ?ø´I@æä ?æ¼H@ÖÅ ?âNH@‹B¡?~=I@vƒ¡?J@»¡?àK@‰ý ?¨ÑM@e»Ÿ?ŠÐK@4‹ž?éÏH@Ê?†eF@¦ª›?ù«C@cáš?ëB@*F™?³/>@6%˜?-Ä<@xú–?o=@I»•?+.=@¬•?ƒ—>@,Ú”?5?@O€”?^{A@ a”?‰ÍC@~“?+II@Ô=’?t’Q@' ’?eS[@ŸS’?¡Œ`@ä‘?œzd@ü&‘?—›g@2?7j@á³?ÀŠi@Á¾?‡hj@˜ò?#›p@×ð?'«v@<û?m9@ç˜?±¡„@3ýŽ?§Iˆ@ÓrŽ?C‹@ Ž?H@ޤ? å@Ô@?¹í’@{§Œ?™x”@šï‹?;Ê“@ÞŸ‹?:“@ Wž?]'<@§&ž?/Þ:@”³?ô;@´ù?µä>@Jž?" B@ú0Ÿ? ¯E@éøŸ?IÊH@] ?¡%J@¥# ?[wI@}Ÿ?øeF@óž?ÂÑD@ ž?E@ìÚœ?^ëC@#²›?næ?@ÄÁ™?(ò:@ãÒ—?Õã7@Y–?êm5@͸•?4¡7@rœ•?²=@·†”?k B@ƒ°“?PxE@'Ë“?§ˆK@^š“?É„S@ìÑ“?l]@¿>”?„@_@µ-”?ð`@GÊ“?Z<]@ÕŸ’?kL\@E‘?¼¶]@õ«?â]@ç–‘?)á_@‰’?5]e@e’?ðÙi@{’?hln@>m’?Nˆu@ 8’?2†|@É‘?ƒ@øv‘?΄@½m‘?Þ`…@ƒj‘?І@¡Ÿ?r_„@‡´?†!„@4?Cq…@:öœ?ÒÚ1@®œ?¨Ø0@dHœ?ƒÎ3@l=œ?³7@,ˆœ?:@?â£:@f$ž?Çö:@,Ì?Mx;@‡ˆ?w1<@%b?5¯=@.:?NÛ@@’œ?¹ÛA@Áœ?âA@ØBœ?«ŠB@Bkš?Ôß?@åo˜?÷=@×–?kZ<@DM•?µý?@Á”?êëF@®y”?(ÍL@Õ“?xîP@s5”?y6V@Œ&•?LvV@V •?],Y@ø•?°ÌY@ŒÈ”?á4Y@1Ï“?ÚPY@™û‘?([@|Ì’?ŽÆ[@»“?˜{]@(”?êÁ_@Ÿ«”?ýf@¸ò”?Ðf@ïç”?*f@–z”?5‡h@y¸“?¶Pg@¡Ý“?˜xg@b#”?=ýk@»“?ÐLl@Q“?–"l@²å’?sÃk@¢Q’?Î3j@4œ?¸_,@¶›?“Ï*@ :›?’?+@åJ›?kf-@Ì›?Ãò/@%Õ›?>1@3›?!r3@¹Œš?¦”4@>*š?DÉ7@Ÿäš?êò<@ã›?*I@@&Äœ?zÙC@?< F@ý´œ?Ý÷F@)X›?…E@fV™?ѲE@´­—?ÞÏF@ƒÇ–?½G@䔕?QÅH@žÿ”?O^K@Šÿ”?`L@š¾•?ÕèR@ð –?µWV@+–?é¶T@Ôœ•?ž¿W@×ì”?DY@=Õ”?;/X@ZÒ”?–jY@Œd•?ÈæZ@H–?¨³]@¸ª–?æH]@Ì—?ù¥\@Kä–?–K_@¦–?‘Ö[@X •?†iX@ë°•?öZ@ÕÀ•?Ï^@¦~•?ÇW]@åp•?&êX@ •?µU@k”?â­R@n²›?Ã-@{Ú›?(f+@e²›?„p+@&›?ù-@9š?ó^.@Õ`™?Á˜1@*˜?Óø3@Lg˜?Ê8@.¹˜?Œ;@«\™? '<@¡ š?Yo>@0›?V C@Qš›?n¦G@·›?x˜J@4š? áK@‰ç˜??HK@”­—?!J@vµ–?‰I@Gy–?eK@‚%–?ç°K@O–?wM@4¾–?faO@g!—?´¶R@0—?ÊV@ O–?Öá[@°‹–?^žZ@µp—?n„Z@PÇ—?aW@vD˜?Ó^Y@i¶˜?D&Z@[4™?z\W@LÖ˜?ˆ+[@y˜?¨aY@[—?OlU@c7—?^}Q@[ý–?}ÆQ@¥–?±R@2¸–?AsM@(–?f³J@¡•?­J@Õœ?&4@á›?LJ4@ú š?š4@:í˜?‡]5@µÃ—?v­7@=—?8@@®–?ŠT7@>*–?æH9@t–?<):@¼2—?Æ<@ÐJ˜?åú@@nm™?ÅVF@\Ö™?¼J@™?WßL@m͘?'ÑL@ðE˜?6vL@2‰—?éK@nú–?óK@†é–?O\J@Åp—?rÐI@–8˜?ÏjL@pM˜?S@ò˜?ä&\@p˜?V9\@®˜?‹[@¯®™?j”X@¸5š?[¢Y@š?DQY@Qƒ›?„JX@3›?îÓY@bAš?̘[@F™™?FW@S(™?¶S@QI™?ˆ‹O@°ã˜?/N@nc˜?„íI@)î—?„ÕJ@ñJ—?+!K@B8—?ʧJ@t)œ?{ :@ž©š?µÐ=@Ú˜?1þ?@Ç—?܉™?R.P@ýÁ™?Ó§@@`à˜?ú^C@SA˜?Í$C@Æg—?«B@Ñ—?É>@Ð –?ÃÓ9@9Ç•?® 7@.®•?ut9@õ•?÷´<@b#–?ÎB@xx–?äG@Y›—?gXM@â˜?z¶P@Äc˜?®!Q@9C˜?£,O@{\˜?}ËL@=£˜?´IK@™?,L@™?=O@nИ?å˜S@ë˜?nZ@?)š?Ù^@c›?t'_@ œ? a@íðœ?À©b@å,?Röe@ºË?¯f@sGž?R\e@hšž?xŽb@RŸ?DAa@«—ž?jÜa@¬ž?­_@hÞ?@^@—áœ?oí[@D3œ?!tW@0k›?é}V@Ýêš?’2R@A˜?¥aD@­3˜?0ÓF@ž4˜?;jF@ ˜?88D@KÉ—?È@@´ó–?\m?@,|–?á<@†¡–?•ÿ=@*–?i8A@¬>–?®rE@KO—?©XH@Šé—?NîJ@C1˜? …L@Ï|˜?0ÆL@Ö¿˜?aKL@)™?iM@IE™?¶FN@åC™?’YP@ ™?ý=V@_í™?¢Ç[@.\›?íˆ_@qWœ?Bj`@ ?½d@HÔ?i@Ž8ž?,Rn@† Ÿ?vl@‹ÛŸ?zg@{} ?†re@÷  ?ÔÇa@H¡Ÿ?á1_@Ñ(Ÿ?IcX@@Tž?¶¹S@çx?6T@ù?lçU@:%œ?éØT@t8›?UJO@#Ò˜?ÉG@²˜?Š6H@%˜? [I@̘?'J@w»—?•"G@òø—?ºxF@Ð9—?å¤G@ ò–?H@Cu—?³F@Îù—?[F@ó&˜?AâI@V~˜?ð»H@£é˜?ØúH@®Á™?Ó’F@D,š?‘"F@²eš?íMJ@˜š?ÜHP@üš?¯U@&Aœ?CY@?Ó¾[@ÁÒ?ûG^@¢•ž?“²c@E^Ÿ?¦çf@ÌÛŸ?\k@ì% ?ßf@Â¥ ?p½a@(È ?ƒUX@-õŸ?xˆS@'}Ÿ?¥·K@ Ÿ? I@9ž?ü›E@ ¬?3‰F@Þ$?Œ{J@mœ?FJ@û‚›?ÓëG@dM—?¸$G@,3—?b[L@bŸ—?UNP@Þ˜?öúN@«!™?’ P@ä˜?ëÜP@ã™?=ÊN@B>™?h;L@Ø0™?»ÅK@Ñ>™?ÔŠJ@³™?¸;D@J³š?,l@@ˆ5›?¡Ê=@ô"›?$Þ=@rµ›?. @@J|œ?9E@#‡?˜K@ùÐ?! Q@M˜ž? üU@¶ÁŸ?¿¤Y@«ñ ?²½]@(¡?Tø_@ ¡?¼l`@…>¡?iÞ[@ýÙ ?¬¡T@Ãq ?oJ@¶`Ÿ?´wF@Ÿ?´ª>@bMž?Ã]:@Å/ž?ø,;@eÜ?^ŒA@Å+?š–F@Íœ? F@ãì›?E@‰Í–?«´K@™%˜?ÇïM@©’˜?ΗR@R™?HÂT@Ýš?ÊgP@¬J›?‘#O@ib›?[ûN@UB›?5P@WÚ?ÏM@OO›?=HF@#œ? ?@á›?~3;@{Ø›?{È9@Sœ?je9@$u?^D:@f¹ž?²C?@#RŸ?€ G@BúŸ?\çL@àó ?eQ@ÙG¢?êT@ߪ¢?ÊT@é¢?ÆS@=Ä¡?ëŒQ@¾‡ ?æÕK@,4 ?)C@ãž?è”B@ež?|é;@zÅ?£µ:@³? Q:@{J?Ë(A@Í?òeK@lhœ?íÞN@í›?ÚO@ªn˜?ä…K@wb™?©M@9&š?‘ÁN@6`›?«2L@‘º›?rÊM@¸*œ?h—P@øœ?UHP@ íœ?ÊN@Þ'?QK@Jf?ÇêC@™àœ?øß>@}n?¼9@!Ú?5@Xž?u«4@p7Ÿ?Ø8@[­ ?rs=@S¡?Ù\C@Ëî¡?‰©I@Gc£? K@R§£?¨µI@Qœ£?»7H@èW¢?¸wI@Å— ?†-F@íÜŸ?ßtA@¨®ž?< B@Vä?ó=@‹~?3Ž:@@Ê?ri=@³ž? GC@íÏœ?¼P@#0œ?¿W@:œ?ŸV@…d™?HÀG@l¤š?ÔH@Ì›?9“F@H]œ?ÐL@l?ã7P@ùž?ìR@Žž?Q@qÒž?«úO@RÓž?0mF@·Öž?›Ú>@“ZŸ?• 8@°ÿž?ø"5@ó<Ÿ?Ýy6@ðHŸ?3I7@Lñ ?9@d&¢?°…>@˜?£?ž²B@Òò£?hÆC@0|¤?‹}E@Kò£?V`F@?î¢?žâG@&7¡?rF@_z ?ãFB@©Ÿ?Ù>D@ª?âC@mÈœ?øˆ?@€A?”Q@@¦?8E@UX?ªvP@Ћ?kÝT@ ‰?œáW@ùÄ›? ^C@9¯œ?„.D@Í?ZI@Ö^ž?ÁÙM@™[Ÿ?jQ@ÁáŸ?!JP@æÖŸ?•¬N@ž ?:gE@7 ? ?@I< ?=F;@] ?¾Ý7@K ?†T6@°µ ?#5@§¦¡?D$7@±•¢?ÑU;@·ß£?äÂ<@²¬¤?Ù?@9ð¤?ì²D@†ã£?~J@¸ò¢?=:H@ñª¡?AŽG@M… ?•ßD@qNŸ?DÃG@£?€G@¤çœ?†€B@Ò0?{Š@@àŸ?å~E@™!ž?âžM@@Ÿ?^HQ@ß…Ÿ?×fU@¬e?EAE@”>ž?‚E@NÝž?7@I@cZŸ?7§¡?;ÈB@ìÞ¡?@S ?´]<@4ðž?› =@6k?Ôˆ=@5„œ?-{?@ñÀ?8¢B@Ã7Ÿ?Ý H@@ð ?÷ÇH@ó¢?ëîC@¤£?LA@ßÈŸ?7*@@Ÿ?A¤>@®OŸ?¢:@¥• ?G^5@™È¡?)È4@óê¡?ðP6@ñx¢?îK9@&¨¢?g0;@ƒ®¢?‡*7@·Ï£?äa1@M¤?á.@O¤?à‘.@Ö<¤?j(,@ûV£?y 4@Ðl£?e%9@Tã¢?209@­È¡?îŠ8@ÃN ?£ƒ5@Çüž?«8@+ž?ì}6@¸?®ü8@¿?çt>@è$Ÿ?Õ[H@.y¡?QôG@»˜£?DìA@öK¤?Þƒ<@_Öž?V®8@¨Kž?óŽ7@×zŸ?1@HР?¶¡0@¨¡?Eð2@G;¢?¬|9@’Š¢?Rô9@ ¢?—7@ª­£?p 0@$¤? E,@:¤?ס-@*[¤?ÿ+@ £?†0@—£? 4@¿¢?¢û3@Š“¡?Ü3@ƒQ ?÷O0@ Ÿ?kó1@Ež?Æ2@~?š7@pž?Ä?@ñS ?ëK@5U¡?Ö‚J@@ £?ü®?@û“£?V#>@Äöž?$[0@èõž?˜ý-@m ?7Í)@BO¡?#7+@ØÅ¡?? 2@¡?('@ÐK ?^,(@A ?ˆ(@lºŸ?ûo*@Ÿkž?¶L1@ÔÓž?Äi;@H, ?Oê@@ÞïŸ?IF@‰1 ?²jH@öDŸ?#*H@å`ž?‚òE@º Ÿ?„ÔD@Ó”¢?¼0@¢?Ǭ1@?l¢?Ù›4@…|¢?¶ç3@2¡?ð3@°å ?¸à/@Áo¡?np-@ìÍ ?mY*@©Û ?«o)@÷Ä ?«*@މŸ?nÃ(@>Ÿ?]*@êUŸ?Tº*@Q¯Ÿ?'«6@ß'¡?õ‡?@u¡?·ÚC@¤zŸ?úåF@ˆ{ž?²F@%@÷š£?Â;@Š£?ï/=@ßâ¡?¬¨=@jS¡?YH>@1A ?†±C@̱ž?–D@J¤œ?rˆA@“›?øD@ð]š?ùEE@[ý™?D,G@íš?9 C@úÑ£?Ñ€@@Ô¤?—A@È”¤?·C@ah¤?Ü×?@¯¥?«=>@“¥?sB@;X¥?ÆÉ@@‚0¤?8_?@¿Ä£?­>@ÍU¢?6A@Ù¡?¸¤?@” ?²<@Å£?Ý7@@øNœ? A@Ÿ9›?æ A@·¶™?oHD@‡‰™?¾»E@ÍZ™?‹zB@º¥?lå=@îQ¤?P @@O£?Q­>@­l£?Ÿ¤>@z£?†×>@´¢¤?ìç@@7z¤?i=@þW£?¾,8@18¢?:B:@_Ñ ?^@@ïߟ?R=@ôºž?³':@ø¥?&À>@q?œ?¯B@f›?ûIA@:š?|DC@ˆ(™?~Ý@@§›¤?Ï;@3m£?‘ò>@Š¢?ÿA@@ãÁ¢?–P>@Yü¢?ùÝ>@ºY¤?äÕ>@x¸£?”Þ9@E~¡?¦H8@mª ?ð{;@ý  ?µ‘>@Ñ ž?Pt=@Êœ?žÀ=@œÁ›?Ä@@|ÿš?ôaA@ä™›?ÜA@Jš?É ?@Ëa¤?•ò<@) £?ø·;@’«£?§´>@¥‘£?A=@wz£?¬R>@ÀN£?ÆŠ:@²M¡?Ó°:@5y ?@<9@²Ðž?0‚;@³ž?Ì?@fÞ›?G<@-¨™?¼ç9@é"š?Æí9@ù›?€Ü=@_Z›?m C@(¢?9ö6@-Ï¡?…±8@ J¢?àñ;@Ý:¢?·q9@fE¡?¥D;@2x¡?ý±;@) ?6+:@ÿŸ?Þ³7@›-?¹69@f´™?¨!6@r˜?åê2@>™?¤71@”™?»Ë5@!›?•Ù=@ꛡ?k;0@ØC¡?¸2@Ï- ?^·1@'ÿŸ?Ë7@ì?Ÿ?[~5@ˆ…ž?¦Ù4@î;Ÿ?­z2@Û‹?Ru1@øô™?:—,@郘?ù -@Yµ™?”,@²˜?ã/@`=™?óA6@!¡?`ô,@ õ ?µŒ/@pè? .,@µË›?`.@Æ?=y*@Òú?+@õ®?`_,@ôŸ›?à¿*@Öø™?¶o+@¿aš?|å+@…Ô™?ŒÛ+@Rì˜?ï-/@$¡?YÁ,@”âž? +@ò…œ?ü)@Íœ?ù£&@„?ì÷'@jAž?»(@½œ?ùé&@š?R+@Õí™?Ü-@šš?ù,@”£™?††)@¥Ÿ?R(@‡ ?0;,@Úi?)’+@\4?•~(@÷?©¿&@¼?U %@æ2›?²õ&@fý™?ž (@­<™?#(@Y”™?Có)@ÁR?h"(@þÚœ?·µ,@œ?qv)@Ú?!©#@ œ?„r%@øœ?UŸ$@øÑš?&@Ž®š?¦(@åMš?N)@ˆ?Ÿ2+@§¸œ?[z$@Ègž?ýü%@{4?â$@U4œ?’È+@†ú›?xÚ)@Ø´›?¦+*@•tš?t*@˜Îœ?ZÐ'@T?&@ãr?‚¥%@ðœ?¹)@o?ü,/@æœ?:Ä*@o1›?;%,@ =œ?¼w,@ÌÒ?ë\(@4ìœ?H•,@9¢?·~4@Üž?"k2@…¨š?-@ƒi?Ø-@Xyœ?¦Z-@Joœ?;p0@Zÿœ?}2@Î4œ?æ².@C1?Ú«+@¼kœ?#+.@rМ?½ð,@J5œ?ˆt)@¡ºœ?êi+@¹aœ?óû+@Rœ?2Q(@Óœ?ÊŽ*@ÜÚ›? š&@Êwš?g(@á¿©?¥? @ˆ§?2x @ާ?Æ @?v§?o‰@›p¨?=¨@a¦?ž—@cÚ¤?QD@je¥?aÈ@#p¤?c¨@*¦¤?…@}„¤?Ø„@4w¥?%Ý@m'¥?¬Á@Õ¦?K@Ú©?ál'@”†ª?ã«.@ØÉ«?®>+@í«?±˜'@… «?.’!@D•«?TY@¾«?nÍ@Fë?p @Í«?]o@#©?SU@k©?AÙ@S ©?^ñ@REª?8ø@ÎR«?ó#@¢â¬?Q¾@= ­?‘ @0Y¬? @á «?@K@$ž©?¸]@aªª?Tr@⯩?£©@ *©?·Ñ@R˪?kª@q ¬?M@†p¬?&@;®?Э@÷ê°?ÉW@êÆ°?Ïh@Õ¬±?F@Îá±?â@&§²?×@ç[µ?2§@ªÅ¸?à©@Ã÷¹?C$@ÍÀ¼?ëì@µ*¾?gK@Ŷ¾?!Ý@C¤¼?p„@窻?PÊ@ [º?m?@Q7¼?KG@…ؼ?K\ @Àl©?˜;B@wê©?(¿B@Aت?¦A@Û­«?"’B@?³¬?2†@@p¦­?àyB@ej®?…9>@ªl­?óà4@3Ы?,/@:ù«?œ 1@>ûª?îÉ8@±«?°>F@4~¬?ÄãO@z¬?Ž6I@m¬?®¸C@¬×¯?‹qC@ȳ?qŠ7@[’µ?üŽ.@Ádµ?è3@@R³?-@<̳?©Í'@cqµ?Z³$@>·?ĺ"@Uo¸?I€$@­í·?)#@¤¦¶?¸6!@ݶ?ÙG@CI¸?¦@r¬¼?h@Pð¾?Ýô@ÝõÀ?j¦@CAÁ?*†@–öÀ?ߣ@‰ŽÀ?#@ã¾?ÿN @|<¾?—™ @„½?•q @v½?ê0 @Xݾ?”R@À?7ˆ@Ö¥À?L@©F¿?rÉ @M½?Þ×%@k½?¡$%@Ѿ?,%@4¼?³í!@?<¹?û@Ñ·?Å@Þ¸?|@k¹?S¸@úp¼?ë@ò,½?I@@XZ½?~@”±»?«» @½?«B @y½½?W @ü<»?¯w @†cº?C@fœ¹?á® @X»?xÑ@]¼?¾@>Ž?%@’ݾ?@ l¾?¿M@3Û¹?ÑQ@Ö¹·?ùÎ@…¦¶?k@ÝJ´?‚k@åų?sÇ@~²?†S@¸±?8Ì@¹+°?®þ@³®?˜ñ@Û¬?îu@©¬?‚ê@t«?{è@ó©?Äå@] «?ø@N“ª?ê@ˆŒª?F@$'ª?ëù@3Œ¬?Æ@Ì ¬?Mç@vÞª?/"@Þz©?ÑC@=©?Hæ@GÔ§?^S@…æ§?ĺ@ _©?ƒE@Þƒª?ÏŠ@)]ª?¬ @ –ª?4+@Zߪ?*p%@¤2«?ï¤)@Šw«?Å£*@'Lª?jÈ/@²©?Ú€(@hf§?ºn @r@¥?c:@ÿ¥?Й@œ†¤?Ál@ÅO¤?ºŒ@T¤?žØ@r!¥?D¥@œ¥?‰e@CÑ¥?–ú@¨?Ôx@êB¨?†·@¥§?e2@1E§?Ï @F|©?á*@Ø3º? ä @›ø·?ãª@^¢·?nå @_»?D*@Ûi½?‘\@ÆI¿?_e@Y¾? æ@Ä¿? 8@Ÿ»?g§@ͤ·?ôà@?g¶?¦Ø@è´?Ç @…´?Æ7@Âu²?”/@£±?5@)ð¯?4Y@½J¯?úÜ@É·­?RX@°«?°c@™«?¬@±Í«?žõ@A«?T*@s«?ê§@1¹ª?}Ô@(éª?„H@Ë ¬?5C@ݪ?OÖ@±u¨?]¸@¦Ø§?³Ž@Z§?ŸÙ@c·¦?“O@Jî§?¬£@š©?kd@Ô©?"@¾ª?œî"@@«?ÄÝ'@Ø@«?û)@‘«?K”*@1Úª?ó’,@½©?^[*@€¯§?Óû"@êÝ¥?T@°~¥?Ž@²£?Ur@7½£?@xߣ?(@œk¥?à @j¥?k¹@#ø¥?÷ý@¿ð¦?Ų@{«§?“½@Ëh§?Il@h\¦?à @ˆÈ¨?1ä@’îº?ëò @Iï¶?øÒ @Ž[¸?L¢ @Ôg»?~@Z¿?[æ@(!Á?@‹„¿?Ty@gó¿?@ Ͻ?ä@ü‰·?¶@õK´?‚¹@»|µ?Íî @®,´?+\@F²?”q@j²?€ @!±?¸,@KÒ¯?C•@WV®?™@G¯«?öæ@¶ì¬?™ÿ@®¶«?3í@Vö¬?0œ@˜ «?§“@:È©?Ž@%Y«?\µ@@gª?Õw@ q©?ÏÝ@®K¨?ê@,€§?sò@µ}¦?´`@·ã¦?Í@\«¨?§<@3%ª?n#!@©Ðª?©%@প?H¢,@íàª?d›-@ë9«?i)@ƒª?È*@:l¨?cQ+@5ߦ?.T$@Ë¥?¯|@&ܤ?Á:@Þ£?`¡@U)£?gÒ@gÚ£?Yj@—â¤?+_@Ï}¥?&>@b×¥?ˆA@û}¦?õù@Äë¦?‚@º'§?K÷@Áý¥?œº@t/¨?8Š@©¹?7‚@˜Ô·?þï@Ôº?ª‰@¿ò»?¡e@9¿?D4@¦²À?iÑ@¿eÁ?Äþ@¹´Â?!<@R˾?ü@úµ¸?¢›@ò[³?ñ@k ¶?-º @Ìö³?L@²±?2à@K²²?@ q±?C-@ç °?Ví@pé­?]V@«?à1@¼'¬?Ü÷@έ?9“@è«?˜)@¨’ª?¿·@ušª?jå@ÆÜ«?×@‘…ª?æ?@¸m¨?};@“§?Â5@ãí¦?É™@1§?¯“@…§?û÷@¾©?C, @¦8ª?»¨%@üñª?¬,@Ò-«?Þž.@ýJ«?ËÂ*@ï‚©?Õô*@Xô§? ¾*@¦?‰&@Ó„¥?*h@F¤?@ã°£?šÆ@@æ¢?Cg@2I£?:f@0Á£?´À@ ]¥?´@8<¦?}@˱¦?v@ÉЧ?I¶@`¦?|È@¼¦?GÀ@ï¨?]ü@c»?ê%@å%º?LN@xÖ¼?¤@³½?Œž@£Ç¿?@‚bÀ?++@2€Ã?z@ËÃ?£Ã@ýL¿?NZ@'¸?NË@D*µ?t¦@ Qµ?øM@c)³?°@cʲ?Üî@ÆD²?‹@ ±?³-@^&®?I¶@·ï«?Å@ë««?5L@¹q¬?ñM@¨û«?Äž@«?_Ö@ŸS«?ž„@‰«?¾Þ@´]«?¦;@üO©?\@¦B¨?{]@Ú±§?Ô‚@fm§? Ä@*M§?·Ë@ ,©?-Ô@M*ª?/'@ª?k¦+@|«?ZX-@îïª?tx)@‹É©?5+@”À§?Š+@ØX¦?[(@™å¥?û±@Ÿè£?HS@Kø¢?®@()¢?`I@`e£?s6@ Š£?„•@vF¥?Ÿ@ñ¥?V@E§?ìö!@¤Î§?iT$@¸à¦?€Í @ §?ô@4]©?p/@gß¹?Ù@ñðº?iæ@5\½?Šj@ ò½?øÉ@"†¿?õý@{LÀ?ÿ@™Ä?‹@Â?ªˆ@îš¾?-æ$@ñ¹?ý’@aóµ?»†@v™µ?Ý@ÆÉ²?hÛ@¥µ²?Wë@†w²?¦Õ@M›¯?4…@JÒ¬?>û@¬?üÙ@‡¬?Xv@ –«?ß…@£­ª?_@FS«?… @D}«?D5@ý&«? ¿@BŽª?ÞÇ @û½¨?Ô"@ Þ§?ƒà!@Òµ§?'Ó!@Ȧ?2~@Ùç§?0 $@'2©?nn'@N4©?¯i+@ª~©?œ/@Mª?™ª,@lv©?žP,@A'¨?;+@È*§?:ì(@C,¦?ý"@çÁ¤?‘(@ 0£?ªK@ ¢?mõ@Ï]£?b<@¿!¤?^ß@ý¥? @2¥?%@ÖÙ¦? î$@×®§?æÀ'@m‚§?Å#@xÙ¦?T @æ¨?ËÛ @2X¸?±@‰·º? Ú@fu¼?ú’@5x½?¼Ì@™¿?˜@»žÀ?K“ @¥ÛÂ?$÷@Õп?Ÿi @g¾?4ç"@'B¹?W–@1@¶?Ú•@>ûµ?ñ’@’³?è”@’³?uù@0 ±?Tn@[­? d@úé¬?¨m@‚¬?%ð@¥3«?¹@¦ª?¶ð@¸d«?ûâ@ʬ?Úi@téª?Yn@ü]ª?Þî!@¤Y©?¸E$@®»§?‘Œ#@ð¨?y )@)µ§?j(@s,§?¶'@cǧ?«(@«¥¨?:·,@%š¨?S0@ø×¨?Ρ/@7©? 0@°ë¨?8g.@¸M¨?¸ú)@{¢¦?añ%@ç¥?8 @¶j£?Ñ @Õ©¢?þ¤@í¢?ó@¢R¤?¥î@äv¤?«*@î’¤?òV @稦?ô{'@ÖF§?Zÿ'@LT¨?·Ó'@Ù§?HE#@Çd¨?È!@/B·?“™@ƺ?¬¬@'î»?Ü"@€û½?'x@‹Ï¿?º"@}”À? 7!@¨É¿?"@I7¾?ý$@ Ⱦ?r_"@U½¸?è @Ž­·?åú@¹¶?x@å\´?DÆ@Æ¢²?þP@@ë®?/Ó@æë­?°ù@,%­?íÍ@p¸¬?Ñ @ñ«?ˆ^@?«°@jS¬?®Ä@°øª?Tx@Ì;ª?=€#@kÙ¨?†ß$@¯É§?ë7$@ß©§?¥,+@ö§?úÆ/@#ü¦?é-@Ñã¦?¿+@¢Æ§?çû-@²o¨?¤g0@_†¨?¼ð/@xó§?±ï1@^Ѩ?ZS.@¤¨?ι+@ÈT¦?O&@‹á¤?ýá!@0 £?H‚@p›¢?è¤@_¢?_@&›£? 7@f¤?áu@Â&¥?°Ÿ#@;¦?{Ò(@ó¦?C (@VB¨?þ0(@ŽZ¨?YÁ&@ÙV¨?8·#@“ܸ?V<@ÙIº?8a@[ˆ½?úÊ@ýs¿?ó @b©¾?«"@G¿?–3"@„½?sF#@4õ¾?kÈ&@°þ½?É•!@ ‡¹?‘X@˜ýµ?M{@&²´?7 @UÞ´?mK!@Çü°?”Ì@Ô,¯?àÿ@lÇ®? |@Ž[­?ÄÂ@B®?}G@©,­?J@\¬?‡@¤Ð«?:h@™«?ƒ>#@ÿv©?„­&@Œl¨?š(@ÇŽ§?í -@¬Ö¦?=‹1@b„¦?Dˆ2@å¦?î.@%ç?0@a¿§?ë|0@¥¨? ®0@hý§?©P/@—§?3F.@N­¦?ñ*@uƒ¥? ¥%@(å£?v @ˆ–¢?Úo @$S¡?0@¢Ñ¡?. @Ûâ?|‰@R¤?éÁ@9H¥?€#@á¥?®¹)@t¯¦?Âa*@èr§?é*@©?¡'@Ê^©?§T&@­4º?Ê@¡-¼? …@ü¿?Pž!@ ¿?“#@˜¾?R %@ƒÝ½?n©"@9 ½?ýe$@>‘¾?s!@½?Ö: @Í6¹?÷3@íp¶?C×@S›µ?ø@hú²?sP%@—™°?n@s]°?Ò´@ů?a}@G®? @“å®?‡)@ò¬?jÒ!@£«?“>"@¾ß«?m*$@;/ª?ÆO&@©?°+@µ§?N/@ì§?Sÿ3@¢¦?@4@Ù?¦?ñ¼1@G[§?+3@[L§?>h2@ñŸ¦?n/0@J¹¦?w&.@bñ¥?±¾-@É\¥?®µ)@¤¤?“Ÿ$@Ö*£?TÅ@®¡?µ¨@ ?ÍÛ@”„¡?›»@_¢?‰@¤?šY!@v'¤?zY#@â¤?8 (@g¦?ûJ*@@Ú¦?#P*@¬ƒ¨?ò„*@ Æ¨?^Ì'@ »?ß÷"@kŽ?¾#@ucÀ?‡,@5¾?%@¼}À?Ž>@´ë¾?jf@ñµ¿?s7@IP¿?ðu@ ø½?t@‹:¼?'&@P¸?*È@ßìµ?'#@[v±?gI"@0“°?¹ !@F°?«¤ @èâ®?~À$@G­?ÝÎ@ }­?1\!@<•«?Åé$@9/¬?æ(@m—«?,+@'jª?ŸÖ,@½5¨?þ 1@aѦ?†·4@²–¦?§ 4@žo¦?„ 0@¦?3@Ñ7¦?6O4@ÓR¥?¨P3@ÏD¥?o.@û¥?]K,@%§£?ÂV)@á&£?0õ"@,¢?QÆ@*¡?S@æõŸ?[@Ë3¡?P?@•‡¢?-@ £?ž@À£?Þ/'@x‡£?ëú'@ž\¥?¯Æ*@B¦?½u'@¶ã§?åH+@© ¨?ÇÃ)@®¢»?Ìc&@ P¿?Îì@n'Â?W@ÊÁ?¶@³-Ã?ê¡@òRÁ?ô@› Á? m@QÁ?öÒ@º^À?IÈ @Û´¼?Ä7@¨º¸?ñÄ!@@DÄ?¢à@ªfÅ?p2!@8Å?ñü!@…ÑÂ?<Š$@˜“Â?™ì#@ÛâÀ?hm&@¾Û½?Ö•$@Ϻ?ÃÒ#@ ú¶?l/#@ž?@:<Ÿ?=¿@6 ¡?@eø¡?Øú@‹Ì¡?x´%@¶,¢?r“,@›´¢?.+.@Ç)¥?¿¥0@´n¥?oB1@ûü¥?Ž5@Kj¾?e¤"@IXÂ?u@]’Å?/“@õëÄ?n+!@>ÈÃ?+â@…ðÀ?q-#@cÀ?´"@l¸½?ù€"@YÖ¹?á³'@#¸?C€#@˜ˆµ?bß @â]°?·„!@‡“­?°@åÞ­?²Æ@­?©Ú@b=¬?€ó @X´«?ê#@¯Ù¬?éW*@„m®?ë#4@íë?±ñ2@ik©?ø1@-ë¦?‘)1@P¥?†è1@—I¤?™92@ÛÕ¢?ÿÐ0@]V£?P(2@W¤?,.1@¨’¤?º„0@}”¤?ø×+@éP£?ÒŸ&@9Û¡?+. @"Ä ?½«@|TŸ?)@ô„Ÿ?Ô @¤m ?£ô@>¡?S@wM¡?‰…"@A…¡?‹÷)@†¢?O,@{È£?ùœ0@þû¤?„P5@¨¥?)ü5@¹&Â?Ë@å Ã?\y@+ÓÃ?êg@šòÀ?@î¾?ž.@¡¼?Ü@†»?–S@I[·?…Ã@¶åµ?… @0®´?¹@3Z±?¼ @ÆV®?@˜Ç­?~z@Rb­?ˆO@Ö$­?6å@ ¡¬?i¦ @ÃT­?¸ò'@¹!¯?,s0@eJ­?êD1@9S©?ïM3@LA§?8b4@^˜¥?Ê£3@F¤?rà1@?¢?f9-@#ª¢?É0@fq£?«1@’c¤?rd3@s¤?bc.@У?ݱ*@—:¢?Ì#@~ô ? 8@ ³ ?”@¦„ž?¸@¹¶Ÿ?ã @À5¡?‚¸@_ ?@¡!@1 ¡?~B(@æë¡?D_,@ýæ¢?ë1,@3Û£?â 3@Z÷¤?v+5@_îÁ?7m@4FÀ?íÙ@Ï¿?ë@hê½?fT@Z©º?²ò@á¸?®#@'á´?R¥ @°!²??@v¬±?gæ@_G±?#@mÆ­?3P@ñ3®?3@Æ¡­?7d@Àv¬?.@5É­?‚«@‹|®?ªø"@ .¯?§1,@¶ó­?©Ð1@»ª?Ãr.@Iž§?”Œ4@ý`¦?Þ3@Ð2¤?ß"0@Ÿ¢?R=,@25¢?ÿ6*@ £?q/@Þï¢?,0@b¦£?¯¡1@4£?Ÿ­.@Ûé¢?NÇ*@¢ó ?îö @o¡?èÓ@Ì"Ÿ?Zf@;·ž?äÀ @nÊŸ?À!@¾¼Ÿ?, @| ?ªù&@Ρ?¿ä+@§¢?^\,@Š¢?‹“0@3¤?ÿ6@û§¿?’v@ŠX¿?Îå@ÇY¼?ùZ @bñ¼?Ö6 @˜Õ¸?Dj @©¤²?nê@q²?g@ ¯?àÝ @°¯?¸ç@ž¡­?®Ô@Ýí¬?þ9@¤’­?ìˆ@o­?Ù¡@:­?û@/ú®?æÿ@Cè¯?§­%@¥­®?Í-0@ßíª?-@ -¨?éæ1@Lä¦?*¤1@€›¥? L0@랢?hj)@›Ì¢?ž)@ïË£?)ñ,@¥K£?Jˆ/@ŽÍ£? è.@#g£?C60@.£?fÒ,@!ô¡?m÷&@–¡?Çú@ÂaŸ?/4@âž?‚d%@`«ž?ÊÐ @XÅŸ?ü@£i ?ÑÚ%@„S¢? ó-@.„¡?Ñ.@iY¡?Mt.@ûË¢?s21@‹Â¾?Ï @¤ð¼?€ @èt½?ìH @ÅP¼?Š«@]¶?hY@àF±?‚:@ú2°?ü.@{Ù®?Í8 @p¤®?å‘ @x¬?A³@þ¬?ŠÀ@–»­?jØ@•¬?SI@LU®?øU@) ¯?Öü@G­­?ŽÎ+@Ö«?\*-@}O¨?\1@2ɦ?°ó3@%m¦?«i/@Bt¤?%¥*@— £?D*@žy£?R¦+@è£?á®-@2ë£?ÞÔ,@«ü£?_à.@Œ)£?>Þ+@¸n£?8Ž(@îm¢?=H"@»è ?º@†™Ÿ?ãs#@âŸ?Œ$@1OŸ?š8 @Û„ ?åy#@c‰¢?šú-@™€¡?äÉ1@˜± ?¦ 1@PÝ¡?mk-@Y½?œg@pÞ¼?OÄ@ÿ½?ìŠ@5Šº?Ü“@µþ³?DO@í²?l2@™°?Ç@^¯?Ñ @0ʬ?•ò@±Õª?¸%@®?ÐU@X]­?6ð@¬®?ïú@9ÿ®?ÄP@x—­?Uá%@ùû«?ø-@ ©?rÿ.@6¢§?ÒC3@×y¦?©º/@ô¦?^&+@J ¥?›©*@ž…£?y2*@¿£?ÖŸ+@y¤?Á¢,@³9¤?Ðê*@Ÿó£?þ©-@FÝ£?‘Ó)@O:£?LE%@ù¡?† @vŸ?jÝ@;…Ÿ?Ãr$@&±ž?–!@VmŸ?2@þ¢?¾a.@]#¢?^01@¾8¡?hŸ3@kú¡?ˆä*@­š¼?OG@5¿?r1 @¹¼?§?@ f¸?µ@â,µ?W…@¼´?8g@~ƒ±?_N @–2®?Á/@z¬?»Q@<­?£â@ó’®?½Ü@#_®?mŠ@Û®?7é@;í?IÉ @ð«?L‡*@7©?f,@ö§?É20@†¦?($0@ C¦?é)@¦L¥?›Ù*@w¤?n*@P'£?¹ª(@N=£?r{(@A ¤?µ)@sà¤?kñ*@Ť?j))@8£? &@A!¢?Ör#@å ? 1@ÏÜŸ?y#@óŸ?S…%@ëtŸ?' !@•¡?J­*@[¢?Ÿ1@è§¡?ÖH0@û¢?½…*@CJ¿?É @þ¿? @Ni»?+v @%·?Eè@u¶?¢n@´?(ë@Ý ¯?¥È @Èz¬? B@q«?Êü@§å®?K@µŠ®?{«@{7¯?Ó@Ê­?kñ@ÕW­?“&@Šæ©?7E+@Ч?ææ,@Ôw¦?¦Ë2@ž¦¥?Ññ+@WÕ¥?cŽ*@ ¥? +@`¾£?È*@—Þ¡?e¸&@ÿ—¢?;T)@—¤?tŠ+@–¤?:S-@£–£?Dú(@ =£?Â.$@Œ“¡?vA"@Õa ?±ã#@Ó ?ɺ'@0T ?·"@ÕA¡?ò %@¨¢?îI0@>8¢?Í{.@þó¢?ao(@¢ À?ÂÉ @]¿?^@âj¹?ÌŽ@¤N¶?ëa @Ê‹µ?6w @(„±?U» @T¿­?­ @•«¬?bn@nu®?%S@訯?Û@Éà®?ªÙ@\(­?bÞ@®?8™ @ mª?íµ(@·Ö§?¯-@ƒ §?-2@ÜJ¤?‡ 0@ºI¥?ø™-@Åɤ?T,@‘¤?ê,@@7¢?b‡*@ty¢?š(@‡Û£?Æ-,@%À¤?“Û.@s–¤?–,,@b¤?C%#@á+£?¾!@fË¡?öæ#@± ?£(@L3¡?f$@“¡?Q#@xI¢?_.@ߢ?o.@ù¤?}P%@WXÁ?Üò@.¾?™@­Á¶?|³@ž¶?Ä«@ J´?øã@e@¯?¼ @¾´­?žQ@˵®?tg@/ö¯?n5@Û(°? ¯@È­?^j@®?’s@›‡«?8ó%@FZ¨?–s-@C†¨?¥7.@Ú­¥?¶ª1@\ ¥?yµ0@£m¥?øä-@cõ£?zN,@V­¢?KÃ*@ã¢?k5*@¯K£?NÃ,@;T¤?ûI0@Õô¥?Jí,@Ž¥?l&@<ÿ¤?Gy#@)€£?­¹%@+ù¡?c[)@fó ?e&%@3µ¢?Ä#@+c¢?ÇŸ,@BÈ£?ž,/@÷ã¤?j @ýôÀ?ƒÔ@wôº?C @û¸?añ@ ¶?„W@]0±?x@)¯?Öo@ø®®? ,@CQ±?Œ@“b±?ÂY@N$¯?ìE@ô{®?êå@÷’¬?–Å"@Æë©?n)+@Rý¨?¡˜,@F?¦?ÙÉ0@Ä”¦?º3@†1¦?tq/@1›¤? ž,@î}£?„C)@^½£?/¬)@Ej¤?«--@óü£?â÷0@>%¥?p.@¦?”J)@bè¥?P%@ª¤?¸™'@D¢?bl,@Ú2¡?Äj&@©h¢?w%@Oó¢?qt+@îú£?ýû-@òâ¤?— @&ç¾?@U÷º?\ @çr¶?i³@²?ý@í!°?sÂ@ˆª¯?P@`²?\@I²?—@Oä°?K@L×®?©@úú®?«Y!@Yã«?oþ(@íĨ?„,@^P§?,í/@}t§?¤0@K0¦?6‹.@MY¥?k,@㥤?;{&@­ü£?Ë(@¢„¤?b§*@gU¥?65/@9&¥?,0/@>‰¥?Ìå,@žw¥?Zý&@…1¥?*ñ'@å¤?œ.@>¼¡?{(@5 ¡?%'@%±¢?‡6*@£y¤?>,@²™¤?þÅ @˜¡¼?Ñ@ú«·?z‡@"A´?eø@Cɰ?Ò@°\¯?¹Ò@ðI²?ù´@d«³?y7@í?±?Ä@Ü„¯?î@ìY¯?Ø@¿x­?¦®+@ô©©?% ,@´¨?}.@©¨?ßu/@šv¦?®./@%Ú¥?}:+@d¥?íB*@y¤?Ê‘%@ ¨£? )@ªS¥?üA+@ïͦ?‚<,@‰¦? ,@BÍ¥?Ê*@ܦ?èh)@¥M¥?«Õ+@1<£?ï¢)@ÏL¢?³ %@¿¸¢?Í6)@5|¤?i/-@5D¤?93"@´Â¹?J@\4µ?©é@¥L²?@µ+±?¡@o¾²?@˜’³?)"@ZQ²?½4@ Q¯?q”!@?Ö¯?ºÒ@f¯?Óu*@à ¬?Œß-@"ª?•>3@€ø¨?~91@.â¦?I—0@ží¥?7+@åe¥?"­,@o¤?&„'@÷é£?&@Zc¤?_'@oÖ¥?FU)@’„¦?p™,@Ù@¦?Ln+@Ô’¦?€)@Hy¥?€í+@M¤?EÃ)@™o£?##@´m£?e¢&@Y±£? /@¿½¤?Û"@­s¶?'*@ç9³?Hf@ù²?¿Ë@ý6´?ís @%A³?„@³?Mo@N<¯?Mü"@—°?äò @ü±?iŸ$@„®?Jm0@Ï@«?˜ 8@¸Ï©?ñi7@+¨?x2@¨¦?@Y.@„Æ¥?ì-@z1¥?Úl*@#¥?S¨%@ÓÛ¤? 1%@§D¥?ž'@†V¦?#½*@vÔ¦?„c+@×÷¥?pÊ)@P’¥?0+@¥´¤?7û)@ÃU¤?[s%@Yˆ¤?'&@¤££?˜+@»§¥?ø¦'@uˆ´?¦‘@_§´?ð&@ 6¶?W‚"@_É´?„ª@ é³?ÇC @l±?´#@*Y±?(Ú$@ÔM±?ž@!@„ð®?¼ .@•u¬?çl8@€ºª?qÆ7@<„©? 7@ºu§?aA3@9h¥?Vp0@ˆç¤?…,@Ê¥?“b'@RÂ¥?– %@–ÿ¥?«Ú&@§?5*@øÂ§?*@’4¨?üX*@Ò§?.’)@Ô@§?WÝ+@ƒê¥?XM3@¿O¦?#[5@dµ?ù~%@ßí²?¡ #@Ë4±? +)@T³?/',@ÓG±?À 1@wö¬?÷Ù?@Ήª?.V>@Ü «?b =@Fè?JF:@¬‘§?3@u£¨?(ô-@l©? N.@Ø ©?‚*@õƒ©?åt$@» ¨?Yc&@€F¨?Qæ*@þ§?Ò"+@ ¨?Bê*@{¨?ò‹*@ g¨?§V(@ø—¦?{ü.@œ¥?dÆ1@!³? &@ʲ?)*@#P´?øY/@,e³?5Ì.@%—®?[ A@?ª?h»@@ÁÖª?/A@­ò©?É@;@¥¶¨?âÓ4@¿©?²S.@æ*©?)b+@ ÷¨?Í(@¹p©?Ú?$@«þ¨?/Ï!@óõ§?R(@Æ­¨?µÂ)@é³§?¦%,@ƶ§?b(@8–¨?1–)@æË¦?%J+@"¤?ë~/@¼L²?¦,@óˆ´?²1@/µ?ò/@$ã®?ðîA@·%¬?`GC@Éüª?‰D@]í©?:[=@Žÿ©?ùb2@¾ú©?›×,@òæ©?H)@Õ·©?©ö%@䱩?‘ü#@€(©?k}!@ʧ?` %@r§?¯(@æí¦?â›'@.§?0‡'@¼y§?¡'@Æ.¦?³š)@ØZ¤?Ÿk,@¦^´?+´4@`¥µ?`3@-+°?uœ?@Í(­?–¶C@ÚZ«?$3G@‚Ϊ?ÈR?@bÓª?dE3@·Ø©?p°-@ºª©?‘½'@sª?.J$@”=ª?O"@ì©?°"@3B§?Jf#@¬>§? X)@M_§?`(@³²¦?5'@DŦ?Šv(@¹q¥?¬è)@Ac¤?¸=+@^Å´?[m3@‰²?NB9@f­?é¡C@â1«?H@¸«?a?@:Óª?¼o5@ß©?²Û.@“¾©?2é'@:ª?\#@EDª?%#@%W©?Ó.#@Ë §?Iu$@2§?™p)@ÿ §?uÆ'@¤G¦?D\&@%ª¦?d2*@’ü¥?ð±*@¹Ž¤?^A,@Xi³?5@"y®?º(C@3‰«?¸bH@®,«?RéD@«>«?#f6@Ǫ?‹82@lð©?Ï%+@¼©?í¬%@ümª?a<%@JQ©?ø»'@"]¨?Ù'@>®§?d¬(@`é¦?¢l*@ µ¦?ÚQ'@4¦?v(@—Î¥?=w*@„¤?Á<-@Û°¯?¨D@äk«?,I@ «?otH@×^¬? ;;@Zÿ©?Íç1@Hó©?J»,@gà¨?)@`„©?g>(@D•©?|™)@]ƒ¨?cÈ(@ï‘§? ä*@^ä¦?õG-@i]¦?§*@îô¥?ùÂ(@ß<¥?3i*@ý\¥?[-@Ö’«?$õE@ñ&«?öJ@ï«?õf@@Ú ª?²î3@ˆ„ª?0@©è¨?a0-@©? +@ºy©?!€+@Ï%©?Šá)@¶¨?³+@.§?æ/@©¦?ÆŒ,@ßQ¦?Ùo)@ §¥?k*@X¹¥?·1,@ã^«?ÌŸJ@&[«?ð÷C@òª?ã;5@£’ª?G|1@l˜ª?±‰-@TR©?T‹-@4X©?( -@0[©?çb,@î§?®n-@O§?}s/@ú–¦?+ó-@G¦?¾h+@Ë¥?Ʋ*@ßÏ¥?ü©*@¤I«?þ?J@5«?. ;@`ª?A'0@þàª?›/@žêª?û-@˜@©?Wd.@ß©?åè.@Èë§?ÓŽ0@®z§?þT/@d½¦?Jô-@/X¦?ÝÏ,@Dë¦?D4*@$Z¦?Eø(@I«?ý=@Qª?–.@b«?£j0@]«?â90@qª??.@¬o©?:0@A¨?¯Ù2@î8§?R“3@E§?{p1@í¦?‘O/@DQ§?¬"*@q©¦?Ñá*@°Ñª?(¯4@Ì««?Ú.@–ˆ«?Öÿ1@§ª?ä/@W?ª?ß3@Ì#©?è²5@œ/¨?¤E9@©~§?²5@^ɦ?ô1@Þ|¦?ax,@Ǧ?Ï„+@Ú`«?˜A/@T ¬?É0@„Ȫ?è 3@wqª?ýõ6@1yª?h$:@«©?Ž=@ ³¨?+:@SЧ?5n5@[2¦?‰Ø1@ܦ?´-@ŽÑ«?fp/@Ȳ«?|–5@ý$«?éŸ9@Ø«?Љ>@ª? Æ?@4ª?þˆ>@š¹¨?X:@$“¦?Ñð6@›+¦?úÐ0@5‘¬?ìÞ5@ &¬?¾M>@Qò«?‚A@ ñª?ŒB@’œª?B@éi©?þ>@èÀ§?ì†<@§?¸ 5@›­?2Ù>@$­?AÏB@ÎF«?ÊØD@²\ª?r\B@/©?Ä´?@L¢¨?÷È>@h;¨?ð:@­?ÕC@›Ç«?öC@‰ñ©?ÐA@Ì©?È?@7À¨?òÝ>@-°¨?HÎ;@ÎV¬?oqB@ü,ª?WÒ@@; ©?Þj>@Â`¨?Za=@Ç$©?¦Û<@¶ª?Î @@ãD©?¤‘<@«U¨?)D;@c=¨?Gj;@:Ü©?@@‘¨?É9@Žf§?¶9@©?à‘=@©u§?Éí9@#@¨?¥û;@ÜÆ¼?*!@>©»?ˆø@)ë¸?¥@nm¸?“@4K¸?ú @4óµ?|$@µ?“Ï+@޵?ü2@£Ñ³?¬f3@°?Òt+@®?V %@<}­?ß? @n¯¬?z=$@—å©?‘8%@\p¨?ÌÞ%@Ñ/§?ë—(@€j¨?b.@…(©?“1@BH©?y6@Ž;ª?Ð<@öì©?$P@@£†©?D@‘e§?éB@±…¥?'UB@½ä¤?‰E@PÉ£?v–H@Í££? ÿC@÷›¢?t_?@Å•¡?×…@@ùó ?®Ù?@Á"¡? !=@¨Á¡?A@@ ¡?ûxF@Æ™¡?@jB@Dq¡?lGC@’`¢?,F@¯¡?+>I@fÿ¡?t!G@ôƒ¢?´âG@k¡?’ÜG@¿j ?ŒÏC@w ?£B@!£ ?ÿÔB@V6¡?;?@ô.¢?ÁÌ?@nÏ¡?Dˆ=@›©¡?÷G9@Þí ?ª73@¯Q ?`ö.@ÍŸ?â¸*@JVŸ?Ë )@ü¶Ÿ?R™0@| ¡?aV4@^Ì¢?œ)6@Á§¢? 3@^¢?† 5@> »?¸‰@‡¹?o‹@ ·?åË@ĸ?{R@`u·?]½#@lC¶?ü&&@›J¶?£-0@zÿµ?—º7@+p²?;1@¯?Ík&@¢®?XÄ!@×U­?ŸÇ#@2¬? %@O «?ïí#@´©?w’#@Èï¨?#%@Ë3¨?c(@¨?Éc-@储?¡A4@œk¨?e<8@˜^©?”ó=@òñ¨?Í;@@ì¨?~×@@/ú§?}‘@@ã}¦?‘VA@5œ¤?t«@@ü¥?„v=@ú=£?8A>@@V¢?+Ã<@™¡?¶o:@²ê¡?«Õ9@æL¢?c9F@OÜ¡?D@¶‘¡?QKD@V¿¡?“cE@V¢?¿iG@¯¢?µLI@TA¢?lQI@ª*¢?mÛG@<¡?kB@³ª¡?x>@}P¡?ÆV?@Ji¡?=M;@Eõ¡?Xe=@nù¡?¶D@@«2¢?‰8@„¨¡?UQ0@BÝ ? Ó*@wˆŸ?%Ð'@œÏ ?CL&@Ž9¡?lÀ(@Óÿ¡?ƒ0@Qü¢?`þ3@œ0£?N3@Å*¢?Ô0@╹?¥ò@¤Ê¸?LÓ@cÞ·?™]@X·?kT"@A>·?´Æ$@.Š·?ø€)@ ç·?s×1@õC¶?µ2@àx²?Îç,@²¢°?h÷'@1ì®?Š%@Þ°®?øa$@®Á¬?·"@ó«?Ý "@” «?SQ!@_÷¨?Ä(@ߨ?)@ö§?vO*@§? ì*@t¨?iœ1@ )©?Šz6@£d©?Ï[@@ »©?ÏÊ@@MŨ?ô9@@•Ô¦?¢ä>@Ø ¦?ar=@e,¥?8™>@3r¤?~c;@$Ô¢?Dñ6@ Ï¢?‘?<@î£?4WA@»¥£?C´@@n–¢?Åä>@–Ý¡?Þ¼A@¡@¢?ÝyE@™$¢?†E@ô)¢?À}F@ €¢?»&E@Øh¢?HzB@”{¢?t>@æ%¢?zf:@7ç¡?„µ=@0¢?@:9@‡m¢?’Ÿ7@p™¢?"¿0@Ýã¡?Ïg*@²9¢?î|&@"ý ?o&@]›¡?mØ$@8þ¢?‹o'@Œû¢?%Œ,@µI£?83@Vô£?ë=4@ܤ?sn0@õº?†@îR¹?KM@ᢷ?3B@²à·?|ù!@ÔÆ·?„Z&@Œk·?¢û+@€ó·?? 2@ âµ?3Ä4@}_³?¨÷-@R7±?32'@h¼¯?Ò±$@çü®?y°"@S&®?:À#@º<¬?â%@;ª?gÚ)@Fc©?(@Ý&§?šs$@‘À¦?Üß"@- §?„)@·¨?¨§0@œY©?ä8@x¸©?¸ž?@ïf©?B@LI¨?X=@SW§?у<@gî¦?'s>@ç­¥?7ñ;@ìi¤?‚‹8@,¤?¥Œ:@;˜¤?¡Ï;@cu£?¿=@=â?ÚÙ<@û‡¢?´Â>@1ë¢?u£B@Ê¥¢?AB@jž¢?šŽD@l†£?_²?@Ú'£?£8@΢? <:@Õë¢?õÐ6@xr¢?W—5@_S¢?Ôb2@åb£?‡0@Jw¢?Å-@/¢?q×(@™c¢?ð$@ ¢?êŸ&@.ƒ¢?^û%@æË£?Îd'@ùÙ¤?™Q*@0é¤?ÞÙ/@vê¤?‡À5@ø ¤?C:1@’Ϲ?]ç@^¹?Rì@\ʸ?Á/@u¸¸?­›"@$H·?µn#@$O¶?ˆÉ+@Â7¶?â2@§æµ?á©1@S³?Ï-@%x±?')@ùа?¬Ä&@“L¯?·à&@Œ‡¬? ˆ(@CA«?»A*@ „ª?ùØ%@·¾¨?ÒÑ"@‹l¨?+Ï"@Ó6¨?¿Y#@0N¨?O,@í©?¼0@ X©?gM6@¨ª?”K;@ª`©?‰9@Oŧ?~z:@5¸§? ¨8@ê¦?Þ$9@˦¥?_6@Ó3¥?3½8@#ò¥?èÛ6@#Ú¤?(^;@ÒÕ£?r8=@•»£?=´;@sê£?!_?@¤?n²@@ ã£?h>@“.£?¨á7@Í£?ìJ5@c£?à‹5@Ãü¢?"5@ŽË¢?J0@î#¢?Vä,@D4£?×â*@d˜¢?ó‹)@…ñ¡?ç#@É¢?«i"@„ù¢?/¡$@)í£?‘ã#@v8¤?Nc'@¢{¥?°l*@3G¦?>Ë+@@õ¥?qÖ0@ð¥?ˆK2@Ž!»?´›@ܺ? <@âAº?þœ@&·?s!@¹Çµ? '#@õþ´?é)@È‚µ?J÷0@æÛµ?ÚÎ3@_г??1@±?Ð#,@k…®?Å,@;N®?›*@V­?š«(@Öý«?µ '@WѪ?j×#@wÕª?oæ"@Ý.ª? é"@W©?+/&@Í€¨?À*@ܶ¨?O>1@bª¨?˜a5@]è¨?Y6@œ¦§?*R8@ê–§?õw8@æa§?"7@×à¥?¢3@Nã¥?¥3@¨Ö¥?N 4@‡œ¥?Ф9@ëq¥?×d8@N¥?tq9@øè¤?—ˆ:@Îÿ¤?g;@Ú[¤?–f9@—t£?ÍÒ4@…†£?ô–4@ç×£?™Ì0@_Ï£?Ún1@øS£?g.,@f¢?J0)@V¢?›&@Á£?5í&@‡*¢?ÝŠ#@Ô·£?ì]#@€Q£?l$@çn¤?)—$@ãϤ?ÿò'@“«¥?†ü)@Ѧ?&")@NI¦?±B.@O¶¥?•2@qf¼?Í@Š»?ј!@ž¹?}‹@s¶?ô @Ñ´?Ds @R1´?˜(@Àµ? X0@D°´?^È5@g<±?$—1@OK¯?c.@iÆ®?Ã+@&–¬? Þ*@¶´¬?<(@Ç­?a&@D¬?Ÿ{#@ºî«?"@V«ª?¤Õ"@Ò©?Oã#@÷]¨?ýu,@—ا?Áí*@ 6¨?ÐÙ,@xB¨?‰33@}̨?k4@ˆ)§?èÿ1@À5¦?A/@q_¦?«Á1@›¥?\2@žj¥?Xü2@m0¦?ÿ.@»¦?Óé/@£+¦?Mö3@üŸ¥?©á5@FÏ¥??Ê0@y÷¤?7/2@®£?r¹/@íî£?‘.@”²£?C-@šC¤?Ñ*@à£?\¨'@·)£?•%@§ £?J'@-í¢?±ž%@¡±£?Ä $@Cc¤?š’%@$¤?;R&@A¤?)@Àd¥?üì*@Ή¥?ê)@n†¥?BÆ-@«q¦?˸1@·¬»?„½@.ޏ?@:ª¶?Ÿ@Ñò´?Þ“@"ó?41 @P§´?Å<*@l´?Ë5@hj²?:5@Æç°?!u1@$©®?•í-@¯Ã¬?%ó*@t<¬?ø(@=E®?þ'@Úw­?_%@9¬?ö‡%@›«?œB%@´[©?(4&@»Ý¨?BF'@5ï§?—'@ÞE§?ð&@Yñ§?ë0,@À©?O0@ ¨?ˆÈ*@ a¦?;Y+@‰¨¦?Õ¯-@„Ÿ¦?Ê”-@{K¦?.@A²¥?D.@–s¦?Óÿ)@èÏ¥?De*@팥?+s,@qߥ?|+@(x¥?Àî,@K,¥?Q,@aä£?¡‹)@õ¼¤?á¾(@xˆ¥?Åê%@íü¤?? &@Òè£?%#@vú£?×;&@()¤?7'@ÓØ£?wà@Ê"¥?Wà#@`w¥?Ñ$'@ô§¥?ô¤(@&é¥?VJ,@ ×¥?%M+@®¡¥?›/@.ç¦?p»1@Œ…¹?K@™·?’­@"µ?º@½á³?[+@B7³?lP"@Ò³?Áí+@6#³?»B4@Œn²?žM5@0’°?œŽ1@È\­?‘m-@?å«?–Õ*@)V­?~ý'@tЭ?g(@’ͬ?~!(@b­«?ñ‚'@»Ž©?^'@²W©?–†(@¬Ø¨?)A&@:,§?%'@tŧ?û€*@¡©?¯÷*@ú„¨?%‚(@Oã§?ß9*@É~¦?ý?*@Þ§?T.)@µv¦?* '@Ù5¦?AB)@ܹ¥?ï…&@? ¦?O#@à]¦?º'@öU¦?Yº%@íJ¦?3u'@œÛ¦?›¤&@Úƒ¥?¸%@{õ¥?Ðø"@E¦? „"@ºZ§?±%@{B¥?Iþ%@àÖ¤?á“$@5q¥?Z(@c@¥?L…%@³¥?®Ñ#@ö¦?i”%@™<§??ñ'@Þú¦?yS)@»¦?ƒ:.@ ´¦?nt0@”®§?¢l0@[g¸?Ô@Vµ?½Æ@Ã8³?ª@¾‚±?‡Ó@Ú¾°?·I#@̲?!C-@@³?æ97@dB²?…Ü7@÷$¯?Bô3@õ¬?ä.@F&­?MÌ(@>D®?ñª&@(­?f]*@î¬?•+@qbª?Éÿ)@_ª?~/*@„¨?¤ƒ&@èi¨?ëª%@ ¨?ë )@ú`¨?†ë'@_¨?š(&@톩?{`'@v§?8•(@ˆ¯¦?Øi'@¢§?+Ç%@å¥?êë%@¢î¥?%@ÅÒ¥?Ý#!@ë¦?4##@6½§?‡™"@x§?Qœ%@9ë§?1Ü#@ÁÀ§?øS$@zl§?9, @„â§?…µ@Žb¨?"@é\§?v°%@e4¦?<\"@°;¦?Z%'@'¦?ù'@®€¦?ø’$@üº§?ì9$@!Ѝ?Z‘&@ãh§? (@Ý™§?á½-@G=§?ÓÒ0@þЧ?ñ—1@’2µ?h@'+³?¶½@ϰ?Âè@ï¯?À~@¶Ã¯?½…%@û ±?CÒ1@ýR²?&3:@¹j±?*´9@窮?E3@®?œW*@îý¯?(…'@Ï;¯?¢,*@ÖR­?­ .@W¨«?GÁ,@H¯ª?Ë*@H´©?ÒT(@ø(ª?‚˜&@j¨?’{(@Á§?þ &@,\¨?Y&@Òª?ïï%@÷¥¨?[ (@„§?/æ&@¶¦?å;"@‡ø¥?&""@…¦?& %@û¨¦?ˆ¾!@¾Í¦?B"@/§¨?;!@ðL¨? º#@F°§?‘€%@/¨?Ä3%@ì+§?Œú#@7«§?nM!@t©?!@‹ã¨?ë$@¸‰§?Ÿ±&@·§?-À'@[§?„L)@ºŒ¦?´=%@̨?™—#@Dº©?-G'@Uq¨?‚’'@6°¨?Ÿ,@—¨?#M.@›œ¨?¬V0@Üu³?žƒ@Ýê°?ÀN@B°??W@Bµ®?íŠ @z¯?÷F*@kâ°?ae4@-Ó±?jZ:@þ6±?¹ž8@ó°?L0@T<°?~k*@õ²¯?>o+@óQ®?‹f.@U)­?“k.@„¬?¼-@ZK«?ÒC*@b«?‘)@/ª?qà'@ÿV¨?(&@à–¨?7%@õ@ª?FË%@9é?ľ'@ÃĨ?"h$@î̦?-÷"@Mj§?»"@Wܧ?Aa$@Mî§?Û7#@’A§?q"@}L©?°A!@vÚ©?^f"@»¨?+'@Óý¨?jº%@Ð@¨?#è$@ŧ?†Þ%@¬ƒ¨?CÂ!@ ¨?£&@þ}§?CÈ)@±"©?Rå(@®ú¨?¼(@1ç?6U&@—o¨?ÆÆ%@Ÿq©?©J)@Ü»©?&)@ ©?•÷*@³`©? ±,@–½©?• 2@Á±?q7@•6°? Á@I®¯? @TÚ®?´þ#@¯?–‡,@6ó°?S4@”-²?x9@%¿±?0…4@ ó°?p-@ôǰ?.*.@óX¯?'/@P´®?í0@>ÿ¬?Á;1@I¬?,Ú+@¬?Q[(@ «?­(@[­©?—?%@‰ê©?K(&@.Vª?Ó%@2dª?’¶$@,„©?&] @o-¨?~!@³Q¨?o"@7©?Ni!@Yͨ?#$@sV¨?"@^Fª? 8"@E«?žd"@í§©?ÒR%@{Ó©?…&@ÂEª?çl%@õ€©?áŒ&@}ÿ¨?tî!@©¨?b#@À©?ÒŽ(@ ‘©?£Ü)@‹ó©?Þ+@—£©?_¸(@ü ©?d2*@à ©?,@—ö©?¤„*@Úª?Î/+@ìu©?Äv-@Úª?ó2@ò3±?׋@u?¯?3±@â¯?#o!@äå®?–&%@Š’¯?y,@û²?‘m5@¡²?µ–6@ãT±? E2@”`°?É/@¼•¯?+1@h¯?–»/@Al®?ƺ0@~û¬?™ +@{ü¬?B(@…«?›x)@[.ª?­%@›™ª?Ĺ%@Úd«? &(@"{«? &@…4«?‘f@⫨?ÿ^@Wþ¨?s@ÿª?Ä~#@’„ª?aH!@°rª?” "@7 «?¡}$@•«?›%@œ[«?÷y$@R?«?;®%@H«??ˆ%@”¾«?fw'@Y(ª?Íc%@‰‹©?«|%@î¨?mB&@g©?]4(@•~ª? ¨+@Z`ª?„*@ZŽª?u¦*@ré©?›*@‹‰ª?Ò*@ô«? N,@¢ª?Ù0@þ™©?Ž2@¢ê¯?ª @8°?m@ÜL®?RŽ@X&®?Ê»&@¨7°?D/@z²?V¡6@€²?g7@üº°?³N5@A…¯?{“3@aL¯?·Ý2@×®? §0@úL®?¬Î*@+­?E*@ø«?'¾)@‚™©?È((@n«?ò–(@Ⱥ«?¾*@ û¬?í…'@í%¬?Xƒ!@ô©?Gs@¾o©?Y2@óIª?}"@w(¬?Ñ´ @ ¬?õ^"@2 ¬?­$@ƒ0¬?-&@TÁ«?åÆ'@¬?OÝ%@Bf¬?8u&@áh­?¾'@•ú¬?GÅ(@¼¨ª?Ù%)@ù©?«()@ ¨?T£*@k ©?‰*@ÿʪ?[+@eVª?O*@^0ª?Ló)@åª?¥™*@.ʪ?á,@¾:ª?±W/@ª?5å0@ư?Ã@%Ú®?ƒr@x®?IÛ"@e1¯?—ì)@Ȱ?ú0@wŸ±?­Ð7@S±±?ŽÆ8@íé¯?"T5@ª°?y1@Þ®?ø9.@]¯?>+@cû­?Ð+@E‡¬?Žr)@×Ë©?Ø­(@1ª?Òj+@D¬?*+@ͱ­?ø'@Ð`¬?ÃÆ#@åu«?4"@‚%«?ï !@M(«?Ÿ"@WŸ¬?Ìþ"@ÈT­?7½!@ÃD­?$£#@2 ­?^%@‰Q¬?”&@‹+¬?9Ó'@dé«?È'@(Ô­?ÄX&@¹}­?e!)@™«?³+@åú©?/x*@ꈨ?°Ó(@ª©?q'(@n¬?¥½(@Ø„ª?Ý)@HĪ?#[)@欪?À+@«?Gœ)@Óaª?@o,@y«?‹â/@-K®?ôŒ@3¼­?áf@aÞ­?ÌF$@þZ®?'¨*@‰ø®?ªä1@S°?"E6@q°?+A5@ìs¯?±0@Ë&¯?þÈ,@o¯?^,@V¦®?Zú+@7í?N8*@ì¬?&@'@^«?Ô.-@a~­?¸Ù+@Šþ­?³a'@Žî«?„|#@& ¬?7&@Ž ­?$@Ų­?¹"@z­?Ôj#@#I­?Nˆ$@TŠ­?µ%@|û­?¼$@l!­?©«$@}4­?<à&@Y’¬?—Ó'@í)­?ò~'@žp­?)@Jð«?Ä%)@oEª?Ï+@˜Û©?B&@E6ª?õ%@ÞÚ¬?÷¥(@’/¬?áH)@;¬?‘9,@YĪ?ú{,@Š}ª?P¤+@$B«?õ¦+@i4ª?-@7­?„ý@/­?C@/ö¬?ºW#@÷c­?¦Ó(@d®?+÷/@䈯?§À/@ßܯ?ß/@ßU®?|@/@»æ®?—G-@êì¯?Þa-@m¯?yR)@t­®?ú‚*@“ì­?*‡-@#ó®?./-@8‹¯?–&@—®?l«#@×F®?á3'@¶‹®?Q!'@pñ®?5è#@x®?¼ö"@Yt®?Yt%@Kô­?Ц'@’¹­??Ï$@X‰­?J¤%@÷n­?ý6%@¶×¬?ž'@uð¬?Ê'@í<¬?—ó'@h·«?iN'@wª? A*@Ú«?/0'@9Õª?Ý}&@áë¬?q*@Ðo¬?3©*@|í«? ˜,@Ý4«?>p-@˜Ëª?ø-@$ª«?yó,@Cµª?ŒH-@o·«?nr@a­«?DP!@¦J¬?ù3$@;­?ûÅ&@ú&®?~L)@¼^®?°4*@ 1®?§ë-@Ò®?@Ð+@ }°?’-@°R°?¶E)@þ™¯?Lü(@+°?ði*@"“°?e*@/J°?ÜD%@Ðï?×'@eO°?Ð'@ÚÀ°?,j'@LF°?fð%@Ư?êu#@sß®?3{$@Z´­?S&@þ!­?8¿&@O&­?‘»$@=d­?ä¦#@ž­?%H$@àƒ¬?Ù %@ f¬?nÃ%@l¬?Mˆ%@ßj«?¹(@;†«?¥*@3Š«?=b(@Aެ?Ý+@ B¬? ï*@Ãv«? Í+@!f«?ô"-@™ñª?~ ,@œ¬?õ]+@]À«?óo+@A!«?‘@Í«?^À!@¤k«?%@ꎬ?/'@Ó¯­?^p'@0Э?ðk)@â\­?4ò(@™¯?&»)@Aí¯?Æ™%@2:°?·¹%@;±?Ѱ(@Ðh±?¹)@XÔ°?||&@zH°?™L'@ ×°?,ñ$@Þ°?¥Ñ$@,º°?žQ$@çÆ°?D~#@eh¯?.®!@-Э?u#@0ã­?QÖ"@ή? …%@Õ ®?’&!@x­¬?ÿÔ@_™¬?µŸ"@è!¬?«÷#@Cج?¤I"@ñá«?Ìb$@¼y«?H '@¢®ª?lº&@ž(«?Ë (@HE«?ÓL(@‡%«?õj&@`L«?ï;)@«?ï¼+@x&¬?«×(@§6¬?EÔ(@{‚©? í@Pª?®e"@U/«?¸x%@ð¬?u%&@R|­?T$$@Há¬?×#@©¹®?ÇH$@¶À¯?ø~#@ะ?Ñ%!@óé±?€Ÿ%@Í#±?Z~&@R±?;è&@¿±?èL%@ÄA±?ž#@¶°?}f!@³^°?ë!@̰?t®#@¯ø®?üW @î®?¢@"@æÁ­?¹!@¹À­?Ôý @D·­?á@M}­?ÞC@–î¬?¢¡@û}¬?$Ô@Ù©¬?Ò¤@½¬?o0 @¨A«?„!@Žª?ýõ%@¤ª?+<%@÷°«?Q¡$@åJ«?kù"@B«?¢!#@¤»ª?E%@*\«?=&@6.¬?¸Ü'@lª?Bk@;jª?Â*!@눫?ÞQ!@Ü0¬?Ö@¡…¬?ð@í­?ùÙ @s¯?i”#@©y°?Õ"@¨T±?÷k#@q±?í"@…DZ?ù%@?±?°”#@F·°?tã"@zë¯?}"@þ¿°?ÖK@K±?ê¦@ÆW®?Ù @ßÈ­?‘… @'—­?Ä@lÕ­?®I @¶P­?­?áw@eë¬?ì×@×á¬?@½¬?~Ý@§4«?#‚@m=«?P¯@l«ª?]@STª?I›@A#«?Ý@ˆ«?GÙ@e§ª?ÿ0@dª?xT@íþ«?8Ë@¼Ð¬?ªÖ@Í;®?îà@ÖÊ®?zö@~®?¦2@¨«®?·@AÑ®?–¥@ܤ¯?Šš@[°?VU@ÂÁ°?š@ö_±?/]@Ý1°?À’@ëG°?À#@œ2°?<Ü@2¡®?žs@°®?Ú@ö´­?ùC @qí¬?÷“@[H¬?J{@R˜®?;,@îv­?í°@®ô«?[ @^ª?UÈ@—¿ª?û=@ä«?FŒ@øÞ«?¶@«?°1@äúª?&Ê@{±ª?5@«?Àþ@繬?ë<@*<­?Jç@‹`­?ÀD@ª…­?aÁ@y‰­?ƒ @ë÷­?eo@‡Ž¯? @a°?A4@]­°?Ò@ƒ°?J‡ @’¯?=i @ñݯ?üü @$Œ¯?âÄ @7ç®?q— @í®?tŒ @Z4®?-Ö @3¬?²@Äݬ?ؤ@á ®?NÞ@•«?çÓ@Òÿ¨?ˆ@Ù›ª?:Í@Ѽª?0+@î7¬?Êf@¹è«?ó~@¶ «?¸¢@Ähª?0O@ ­ª?Œ@s)­?dA@¹g¬?=ï@Úά?¶E@˜|¬?1@ãŬ?þÀ@Ï@®? @ê)¯? ï@ä°?Gè @^°? @¬â®? + @éä¯?@"@v»°?Y@ @Ͱ? Ä @–€®?¼½@pú®?ƒ+@JZ­?Ý @cø«?„ø@ù‹¬?@æÞ«?¿Ü@{ò©?d@¿C«?žF@Š8«?<Ž@ÎY¬?+é@z¬?§I@ fª?Qz@ª?ýZ@A…«?a<@¡­?ÇÛ@ª«?¶@¼t«?U @³ª?.¼@*ú¬?¸Ã @ÆÈ®?ÏÙ @r†¯?:ˆ @N/¯?Ë@¸J°?Pƒ@nϰ?à]@œË±?<¦ @Ú±?Z @û„°?‘×@¿s¯?š@$¼­?|Y @º(¬?ý @Œïª?Xt@½¬?Ç7@CÙª?NÑ@› ¬?¥@d«?=ê@¬?0[@_¬? e@çPª?ìo@iª?Û;@„÷«?õ @ ®?…+@±®©?ôï@g~©?Á© @``«?¸Ú @ß@­?ñ @Y ¯?wŠ @Ï8¯?`~ @ó°?Óå @sé¯?c @ÍŒ±?G¥ @¿±?Õj @±?«¶@99°?:@Q®?8Q @è<¬?z™@Š]«?Æ{@Óö«?ƒo@ÖÙ«?T@qø«?R!@J¬?hk@—)¬?—g@ÑÀ«?ó@Äöª?ߟ@i«?L|@ÑY¬?Äò@îI®? Þ@í—©?”@¦zª?h¸ @xA¬?l @ø™­?‘t @‹U®?PÞ @¢°?p @q°?¸ @…O°?з @e°?äs @ͯ?8÷@Ì„¯?2 @'®?.@þ'­?A@9q«?<*@¤¦¬?ÄÅ@½„¬?(¥!@œ¬?Ao"@S’¬?q"@{æ«?z–"@‹ã¬?Úc@œH¬?·Ô@Þ«?øþ@¢‹­?·@z”¯?´½@<̪?ò[@ʤ¬?Ñ» @Ìm­?uÐ @À¯?:‰@#z°?4_ @nh¯?Ûæ @M#°?ÑŠ @Dz¯?öu @ÌV¯?ø @ø&¯?2@¥®?i@â½­?ô@@w˜¬?]B@ÃÀ«?¨Ž!@‡¬?˜h!@­¾¬?Q$@`R­?µÒ!@Z|¬?£X#@xl¬?' @J ¬?‡%@_Í«?–ò@2t­?‡J@­Þ®?Îz@V¬?%@³®?8) @{¯?ÆP@wc¯?=‹ @•…®?Ä÷ @V˜¯?»—@þͯ?}ù@Qƒ®?lB@‚Ì®?;Œ@¹G®?¸‘@$®? @s9®?\s#@)þ«?s%@,Ô«?‰Þ!@¿s­?à#@õ(­?r®#@@ ­?£ß"@Ƭ?•Ã@t¬«?­Ü@x¨«?/@šÝ­?7:@+¯?j¦@~­?Ι@À®?Ú’@@¯?}À@ã×­?ªâ @8'®?.3@ŸP¯?ÐH@ë®?cÕ@o®?Ç—@Zº®?ô@£;®?„Z!@%Ò­?ú$'@»”¬?ÁX'@ÝE«?á#@¼¤¬?­$@è¬?±%@Ë_¬?'"%@¿¼«?€¥@ ««?pí@”ë«?;.@^™­?} @"g¯?¯ @ˆ¬?Òn@ç¬? @í±­?Gå@«.­?5Í@5®?lÍ@<Þ®?ƒ}@ñÚ®?a^@©¯?år#@Óÿ®?:Å$@ÍÔ­?fÓ'@Ðý¬?*!&@Ùñ«?«¡$@D«?%A$@ùm¬?Ít$@X¬?ÑÐ#@®?«?Š @MO«?ô^@ó3«?z@;µ¬?@V ®?5õ@âä«?¸q@l`¬?<@Ík­?-@E¯?†—@šQ¯?f÷ @±¯?É_"@¾4®?I)@8 ®?ýÕ)@Åá¬?¯+@™Î¬?€'@ÔÀ¬?v%@Ë`«?*´'@uI¬?oA&@e~¬?Ë!@B÷«?}Q@ ¬?^@‚«?U|@Är¬?‘‹ @_Ò­?E@ó«?ÑÏ@„x­?œl@*|¯?|ê@„°?ÝD$@lK¯?‹+@Ó¡­?›-@E’¬?íu1@kýª?Z0@øë«?œ)@Ñ'¬?óû$@¬?Ë +@å¬?\&@ ò¬?D""@Y­?(@«Þ­?¯W@éb¬?é@Í]­?þ6 @1î?‰+ @Õ„¬?ù'@Åü­?Dà(@îæ®?ºb+@PW®?¨{0@ó­?Ì÷3@Üñ«?Þ›3@¸ª?~r1@Úvª?ž7*@/ïª?Ïâ'@Lë«?2n*@ý•«?×!&@)o¬?| !@´à¬?¼@+F­??H@Qò¬?ÄÐ@±P®?>–@é`¯?ÞÓ @Ñj¬?‰-@š<¬?ÃZ/@cô«?Ý2@˜«?•À1@ô$«?ÃÃ0@Rª?áI1@94©?õ!*@2+©?™'@ …ª?KC)@è©?Êz&@íª?–¸#@¨«?V@/5¬?@Á@ؾ¬?¶b@5i®?¦Õ@À¯?ùë@‰ª?³|-@Kª?‰-@Ü’©?›*@ z©?™*@ÿY©?Œ*@kç§?Ƹ'@†t§?ô8@’©?åß!@t¨?¦!@9ܨ?ߢ!@þá©?´C@n.ª?x¾@Îb«?õ9@4ñ­?éZ@¯?žj@ä ¨?xÂ"@Œz¨?“¡ @¯D¨?Ç!@¡.¨?¿#@‡7§?Z« @Kë¦?{E@3§?¸\@àq§?Ã-@œ²¨?JÓ@…å©?^¤@ÝY«?Sa@3ɪ?€u@Å«?òë@s3®?-@’§?5@X*§?²U@ å§?a$@!y¦?Ú–@¥ð¥?b@eO¦?²Ï@ e¦?>ß@êØ§?“G@Ýv©?ï@‹2ª??@'gª?E@Õ²¬?1 @… ¯?Ó0@ˆµ¥?øí@½%§?*Ô@ÔL§?¸•@4£¥?@(@ºG¥?º@º±¥?ñ @Éñ¦?dÞ@d·¨?]@ ª?D©@Ѫ?q®@‰â­?8³@Æœ°?E{@F ¦?<Ã@¦?D†@£,¥?%Ý@ì¥?|@¨¥?Ä3@¯y¦? Ë@=¨?+¹@•Ó©?å‚@]d«?‘°@®?¨@R °?lÏ@ç¤?Ìx@’¥?D@B)¥?M¶@ [¤?E–@¼¥?«ë@Ĩ?+J@ ª?`/@,I¬?2@`û­?ôà@Û­?§!@hœ¥?^<@¹Ì¦?ÊÆ@Œ¥?—¤@&‰¥?Éö@{K¨?Kç@ÒEª?ˆ)@ת?Á_@%»¬?¨_@C¬?³¦@´·¥?×í@X¤?#ž@îS¤?Â@P[¦?e2@ßt§?<@=µ§? ×@Iï©?ý@ˆ.«?A@£¤?» @$=¥?M@tO¥?'é@Æ ¦?jÝ@`°§?ª@2ì¨?Þé@X´©?—œ@ç¥?7ý@¤Y¥?Ék@@¦?øŸ@3§?÷@MШ?`ô@Ȫ?'œ @½ ¦?`S@%Æ¥?c™@?õ¦?n@Ĩ?;« @£Î©?g÷@ãK¦?v @@‚§?îß @!R§?¯ @^í©?ýý@e¸§?±9 @yø¦?¶M@1ª?öö@ƒ§??w @•É©?Å6 @ÂÉ©?ÓV @Ð0À?ø¤@¼À?×@ÞÓÂ?…@[²Â?¨§@[ŸÂ?h @‹Â?V@…&Á?X‰@ýMÀ?|Î@é ¿?0U@lp¼?9î@¨¢¹?í¾@>¹?C%@“X¸?}T@)Ÿ? Å@4{¸?ŒÜ@„†¸?Ý™@5+¸?Q#@rñ·?&•@õ¨µ?%:@ÙÀ³?¼¿@ùã³?W@щ´?ÙÙ@Ì µ?Ö5"@F<µ?Ài+@ö¶?x)6@@å¹?9@%é¹?ù‹7@ ¹?§w2@¢7¸?ò8@³Þ´?Q¾<@²9´?I1@ ´?p-@l)µ?ÑÐ,@{¶?:/.@ñ´?ÈS+@Kk²?æ‹+@»¯?¯’-@½\®?•Ø0@‘ê¬?¯E1@”ª?Î=1@hw¨?9:7@ZЦ?løA@cù£?*tF@ÉF¢?@•K@Ês ?uO@´óŸ?r¸K@Ÿ?bfP@Ž­ž?ïÑL@]Ÿž?3ñF@ƒ—Ÿ?ÝÛE@0 ?m¹E@ç? ?ÑÂ>@ÝjŸ?Äã=@ûŸ?éB@ä]?¨E@Žóœ?œãI@Ôô½?Ad@¨ß¼?õ8@—̼?Å@ÉÄ»?)‹@q³½?½1@wHÁ?ä@`…¿?] @YM¾?$>@œ¼?¨©@^²»?£c@òfº?P@ 8¸?ñ·@!´·?!@’¶?ëÑ@7±¶?N€@Vÿ¶?Ð#@Ì1·?c$@ä¶?È$!@†¦³?*""@1±²?Àž"@à²?´É!@Í_³?~’!@0Û´?ëŠ'@TÅ´?Ðë1@ãɶ?eŒ9@᣸?¢=:@Y°?¿'@ư?Î3)@6в?D\-@¸´?à6@ñ¿µ?ß9@þ¸?ÖÌ0@#•¸?jF3@1·?+ 9@ݵ?‘:@Ù#´?„ƒ/@y¬¶?ß'@,Œ¹?¾Š&@ú»? \)@zY¹?®/@ĸ?o0@ߥµ?¸2@Ëï±?hº5@°P¯?:ò9@ɽ«?Aa:@ð¨?V§:@/¦?Ld<@1|¤?·>@45£?ŒB@¬¢?EG@瑱?ôÌH@W7¡?]çL@ç¡? M@’ýŸ?’­H@sè ?·vG@š ?A@§ÑŸ?qxC@µ¿ž?TãG@—ã?@K@Èù?»¾M@¢·?Ñ„@º ¶?Å¡@aìµ?Îç@’p¶?^@—2·?ú7"@ùäº?ö¾$@Ut¾?ó¾@J?½?¾I@Äøº?e@°þ¹?½@ ÷¸? Ë@.¸?áb$@Ø’¶? M(@·øµ?Gè'@~´?åÓ'@“Ú³?ÄÉ*@\á²?wÏ(@ d°?é¼%@ѯ?Œ&#@)¤¯?˜H%@ìS°?¾©(@}Þ±?Æ3@1=´?î‡8@°E·?^ð1@mæ¸?ÈŸ-@ÜZ·?MT9@ÿI¶?’9@wÑ´? 1@‰ã´?ˆt)@*Z¹?b(@žG¼?ø*'@?»?"°,@;º?û¼2@Ÿ|¸?~®3@uµ?y¼7@Áî°?ƒ:@+—­?+A:@·ª?Ÿç8@”§?]W7@8¦?zÑ9@Ú†¥?Ä¢@@:I£?¤BA@µ¡?˜E@× ?¢SD@‚P ?ºÝF@tŸ?äƒD@çFŸ?‘ÙC@Æòž?«ú=@›µž?ÛáB@Zë?ÐH@ö‡?¯´K@„?¢ÌN@º}¶?°Ú"@€´?i @—¹³?xå@2È´?ˆR!@±Öµ?†'@¹ëº?XÑ(@F¯½?%@Ž’»?=!@V3¹?Ha!@Tº·?Ó˜ @lN¶?˜ #@•}¶?^n%@½º´?üõ$@y³?ú%'@µH³?DU*@þ³?Ij)@éÙ°?ãè'@Þ·®?Àz%@¢ú®?$Õ$@O—®?†£'@§T¯?’‚,@…N±?žä7@û½µ?3A4@Öà¶?C+@œí¶?Þ4@ß ¶?&c6@Ïé¶?«ö.@Ñ?·?Þù+@e%¹?w,@‚yº?Ú,@2û»?Š+@®»?^’/@Uº?= 3@òE·? c7@¬5³? )9@›Í®?:@/‚«?8;@qþ¨?¹R9@{à§?Ô):@X¦?¥½?@¦4¤?´s>@3¢?|ùA@¨> ?'ŠA@-™Ÿ?¸ A@²Ÿ? 2A@®²ž?QED@eµž?ÈáB@F`ž?«þD@¾?"J@ײ?´ØP@•w?÷|R@œ¾µ?C3#@Ÿî³?àþ#@¢ï²?=š%@*²?eô'@Ttµ?AP+@ìGº?H×*@ýtº?Xt&@hb¸?«±$@D›·?_U$@]³µ?³[%@Ol´?Dæ%@»;³?e“%@Û±?®Â&@’[±? +@$ú±?C«*@^”±?ù)@ô¯?+’)@I¡­?²R%@vЭ?Ñ&@Y(­?r“+@Q­?~ª4@ë²?[”6@oUµ?û/@U§µ?nC2@hjµ?­13@báµ?¬.@«…·?Cf+@ÿ¨¸?ô*@®zº?×ð-@Еº?¸Æ,@øØ»?ë.@ã ¼?Ù¢0@°)¸?öJ5@ÊGµ?àÜ:@ôm±?(1:@³­?A<@+Tª?9’;@¤Ý¨?2Œ8@‘¦?>ó<@d¥?‚>@¨ê£?DÌ?@¾¢ ?¹oA@–õž?î[>@‘ø?Õé?@Gô?¸·E@Fþ?ÉF@$b?òG@A‹?†¡M@Ú5?flS@gâœ?k…V@Ó¾´?ÒG+@³?<+@…”°?Ì+@ùÛ¯? ã-@˼´? /@Fȸ?¾û*@:¹?–&@ÿ¶?èR%@Z;³?ûi&@€²?¸Ñ'@&\²?ùY'@”«±?xµ(@î°?”Â*@D;°?´\+@ׯ?ð-@7¿®?-­-@,œ­?Ø—)@e™¬?‘:)@º«?$¼*@j ¬?Ëx0@·¨®?!ø4@ ¸²?;½1@Íå³?³‡/@lij?å/@F?µ?f¢.@¦¶?™˜/@ܸ?k(@í®¹?/‹&@Ü‚º?›Ö.@*Šº?G/@‚/º?Kœ/@Iç·?ñ3@ ϶?V7@Ú”³?³;@3¯?½;@Ѭ?Í”:@Zª?„8@•í§?¦?:@ B¥?¥5@@*§¤?p˜?@;ä¡?…ì?@Nóž?‹`B@íO?lÎ>@ ?¬çE@h\?§I@Ûîœ?äÆN@Fƒœ?(S@¨ ?¹mT@´?S(W@0®³?–†/@Gű? ’.@P›¯?~./@íÌ®?+3@$׳?SA6@/¸?d\.@x·?VA-@hR´?“–,@ý–±?s+*@>À¯?Z,@Ë­®?Þ?,@*ò®?Žå*@éÇ®?ûx,@ꬭ?iû,@>¨¬?f$.@n¡«?Ôã-@l‰ª?Âð-@>&«?îl,@쪪?•%0@mY¬?&Ê2@ϰ?k1@x±?Gœ+@nL±?„³)@ëš³?¨°-@Qsµ?W±*@íd·?ì·(@©r¸?„L*@fs¹? ò+@cº?)M/@̺¹?,…-@m'¹? 1@x·?ì„6@->´?åW9@’Ÿ±?%»9@†­?kï9@²jª?‚(<@ªá¨?F­7@Ìí¥?©A?@¥+¤?ä@@gE£?lA@)O¡?GB@éž?C@Þàœ?ÛÀE@cöœ?ò™K@!œœ? –U@¨­œ?¢OU@ª«?ïQ@Žž?…R@B²?6ë,@鋯?–m*@²G®?`T.@ ª®?öO6@ ʲ?m¡:@¶?üþ2@äµ?Ë"0@œi²?¸~0@W°¯?¶æ2@覭?¡0@94¬?µ.@lF«?ŽB/@§2«?°Á.@ÐPª?š{,@Ì…ª?v8*@å•©?û¸,@+»©?"r.@©¹©?“Ø4@Þêª?ȇ5@ÜF®?ó6/@Ø®®?H×(@ä®?Ü=&@¦?±? b(@n²?”Î)@ˆµ?Ê'@Y³¶?É&(@](¸?ž™)@-¿¸?vê+@íb¸?;u-@E‹¸?/v2@ç¸?Ä~5@(¶?a9@Ô³?@<@Cܯ?}X>@e\­?EÔ=@ì^ª?;@Q–§?¸Þ>@Gb¤?}ðD@òa£?]š@@™Ã¡?õ¢A@ßPŸ?Ï­C@Euž?DG@( ?лL@£?V^S@Ô¿?‡aX@½?R@LHž?óS@sÖ¯?ð(@¢ž®?IÆ(@${¯?sr/@F¬¯?ÅU9@à³?èô>@ù0µ?-98@H°³?{Ò6@ì¯?p0:@ÂZ®?'D;@Ó¬?´L:@˪?y<7@ch©?ŠZ5@F©?ÚÐ0@Ì{©?ÓS-@r‚ª?k9,@©Š©?Í01@¢¯©?,e7@ðª?';9@þi¬?Y 4@À­?ÝÔ*@ N¬?%@ù¿®?°%@†°?ÙŸ*@޳? (@B¶?ú2(@§~¶?[¾*@PU¸?ÄÈ,@,·?Õ´,@¨a·?o}2@§¸?bK8@›·?S>@iµ?³$;@Íy²?zS<@œ6°?¶4=@µ­? 7?@f6ª?.â@@hK¦?,ŒC@å¤?b,F@Þ¢?uF@7B ?1G@€¥Ÿ?ZÓL@Õž?®¸O@Ñž?} T@“Ëž?%VV@*ž?ßP@ÅÞ?þ—R@Îh®?Q&@º®?“m&@ðÏ®?Ýâ2@ ~°?Ù<@ND²?b%@@°Ð²?ß=@gʰ?+Õ@@ª½®?­èA@sn­? s?@µè«?8³B@'ý¨?¬õC@Òã§?w’?@’ħ?c^4@|¨?P0@6j¨?µ~0@"ª?Î 4@Ó¶«?C5@ æ«?2@â°«?;V+@;«?ÕÒ%@ÿx¬?µ|'@0®?Ä8-@Vh°?ac,@~¯³?©ù)@4‰µ?7)@Ë·?ˆ+@+$·?Ì].@”Þ¶?Æ€6@@ª·?^ý7@ÜŠ¶?ܱ:@4µ?y`:@'õ²?6ä9@‚þ°?¡Ì7@`O®?Ü)<@S“«?¿Y?@¨?ë C@ée§?aÙI@g¤?ØQ@ãe¡?« P@bŸ?f#O@X†Ÿ?R@›HŸ?aT@¹ëŸ?ÁÍP@˜3Ÿ?W6T@uÀž?É•M@ è¬?¿X%@Œ­?+@‹Â­?Ž6@L¯?sÚ>@¢±?Ô?@sã°?I?@Ùq®?¸’A@±^¬?›ÆE@ðª?Ó5G@7ª?ÂrH@Ó7¨?µAI@*‡§? ´@@«¦??Ð8@m‡¦?vû3@0ö§?8i4@ö©?ªé5@C:«?þT0@,ñ©?Éí*@¹¢©?)(@aQ«?‘Ê%@Ç­?Û;'@ò¯?k«*@EL²?Œö-@‡´?4§/@Y¨µ?¿‰0@M·? /@·?7ô4@éb·?ñ«8@÷‰¶?wí:@®>´?ѽ8@YÖ²?Æ™:@ õ°?‘(:@¿K®?¯‚<@&¡¬?‡?@öÛª?kÒ?@›ÿ¨?+DG@©§?è{S@!x£?~óN@Àe¡?ÌŽN@rZ ?cßL@˜t ?+yN@PT ?ç·P@¾, ?Ø U@F ?ôéJ@} ¬?zÐ$@®¬?¡*@u†®?%Û8@ß‹°?ÃhA@Á±?£•>@Ôî? êA@¼ùª?ëïE@×›©?ÈÎH@I ¨?œAH@q°¨?éF@ñX¨?8¤B@ÿ§?gæ<@©S§?2=:@·…§?¬k6@—ÿ§?a2@大?0í1@`·§?ÏP-@ˆõ¨?Ð+@üÚ©?ë'@¤Ô«?pR%@õ­?g %@Œÿ¯?S*@ J±?ýn.@£³?où1@½µ?eÎ0@ÈP¶?¸ÿ4@û¶?,.:@k¨µ?Rã:@z7´?Qµ8@½½±?Û:@”–°?’`:@øŽ­?Ñ;@«?§W?@-rª?ôy?@Ðo¨?ÛuG@¦Ù§?ΩQ@·~¤?¢O@bÈ¡? Q@ln¡?šeM@ÝM¡?ðK@¸¡?¯„K@Ø&¡?%¼N@ˆ† ?~F@EÉ©?ñ)@ŒT«?ž¯2@—¾­?[Õ;@ͯ?ÇA@×ð¯?œ¡A@XV«?£¢A@^ï§?²E@8§?‘iI@vø¦?‘GI@‰‚§?Þ‡E@ÇG§?²M?@$ó¦?`x=@*0§?¼Ý:@ ¦?« 4@ý¤?oÄ,@–¥?X])@1Å¥?<£)@‹a§?ä*@âª?2)@zƒ¬?-+@”&®?/ô*@̯?‰-@V ¯?N¡3@ ß²?wo4@ ´?’7@Š.µ?õU<@ô²´?aÇ<@×.³?ݬ8@Û²?Þ:@`r°?»9@œ@­?eÊ5@Ês«?¿F8@Qoª?° <@s:¨?ï¿A@ ˆ§?ÁAG@W2¥?¸/P@*á¢?œ¯S@i3¢?aºT@˜G¢?«˜Q@ìO¢?!K@ É¡?\ŠG@;¡?2ÛA@pO¨?û.@Y¤ª?‡B:@ë›­?!a@@ à®?KšA@j«?H=@~S¥?‡ÝA@ý¤? ‰E@|y¥?)¿L@ËÆ¥?=ýM@Ô ¦?üL@=ò¦?LôE@ö¼¦?\à?@9º¥? Ž9@¡å£?áÎ*@zÛ£?éd'@¤?·'@ÌÕ¥?­,@,¨?ÑÆ-@& ª?Çï,@\«?Ï,@ìí?Žë+@ºö®?bZ0@’C°?t©0@c²?‰’8@Åù²?¶>@*\³?^P;@ry²?=9@'1±?˜¤;@İ?5¥;@?®?Qü2@¬­«?~•0@’Dª?¤–5@Md¨?ô8@ø‡§?çA@êþ¥?‚ØJ@f¤?SœS@eÙ¢?”R@hb£?ËM@€m¢?’QJ@¿£¢?Œ|B@S3¢?kæ=@2f¨?As0@7à«?ç?@’b­?;ÌC@TÀ«?þ9?@ð¥? ªC@»A£?ÙG@j»£?PN@¤?ãZU@¨r¤?œoS@Ϥ?´êK@ÞR¤?!Æ?@Jx£?{6@†…£?­b.@S£?'õ%@ØÁ£?¬U&@脤?wà)@Yê¦?þÍ,@¶4¨?ò*@ #ª?Ùñ+@í«?Çi+@¾è­?x´-@z¯?´ƒ/@j °?ý3@б?º:@ š²?nZ;@´²?Ðw8@ýÒ°?É=@ “°?ñý=@¹¯?õæ6@·R­?=4@¯«?²¤3@«©? ‹5@Û=¨?ÀÕ9@*¦?rU@@3Ú¤?¬_B@7!¤?bòL@MÚ¤?LùN@À’£?-¢H@æj£?6ËA@òd£?"b=@°ª?.Þ8@X.¬?Â?@è…¬?.G@hf¨?WðB@!F¤?föE@Ñc£?LÉM@À£?8?R@Ðp£?aQ@›Ó¢?4öH@Œý¡?ZM>@G#¢?J!6@úÊ¡?À“0@-Y¢?Ÿï.@[@£?Ù[)@Y£?­³(@›R¥?((@íǦ? ·(@Œ§?ØY*@bV©?8Ž)@|¬?0+@â­?’p-@÷@¯?Ÿú1@9U°?-8@ðA±?+§;@s±?‘Ž8@Bt°?Sv9@~¹°?)>;@å›°?i6@Ï)®?*5@tí«?²”0@X©?Ó3@,¨¨?pë3@rx¦?t4@Þ¤?„–<@OP¥?C@›¥?ÎËK@l*¥?àB@ÈÞ¤?…Z<@Ñû£?[+8@¸4«?RT@@¬?ÿI@Ÿ«ª?Ó¶L@á¼¥?ÍM@ËÆ£?4ÝQ@w|¢?‘!R@Çÿ¡?gùI@Áס?#6F@ [¡?.º;@\¡?´ 4@’F ?òa/@ :¡?²/-@›Œ¢?ê/@?JŠ)@ø¢£?7(@Kå¥?žD*@/á¦?W++@&¨?‰¹-@!ø©?©y0@“¬?N-0@…®?lw0@!›¯?kÉ4@„°?&Æ<@«°?d¬<@?Ó°?Š:@ð¡°?ýB<@µ °?Z¥5@ð—®?ôÌ1@Nk¬?«~1@°gª?n:1@Áµ¨?–Û/@ÏĦ?Ô(2@ö^¥?$e<@è,¦?fA@R¥?|rD@ƒª¥?Vå=@t@¦?p?@|¦?Í<@kkª?ˆãD@Vت?U\G@À§?°äJ@Ï£?}Q@fð¡?‘W@þ© ?‡„L@b, ?‘C@= ?¸¯?@% ?Ú>8@u¯Ÿ?01@ ”Ÿ?²H+@x¡?Ð:,@@£?Q®,@™<£?–r+@fÒ¤?š?*@†+¦?D[-@£)§?ßµ0@.©?uÁ3@ã}ª?B¸4@â:¬?!d4@^T®?Kb1@êW®?×8@VЮ?†6>@Ö¨¯?š ?@^°?Uö>@G¶¯?FD8@±j®?ªW5@J0­?ÿ2@¹«?Ñö3@v¨?3@3S§?RÔ7@L§? S?@\£§?ò³C@5¦?£{C@N«¦?½Œ;@¾U§?¶É<@ƒk§?@@3ýª? D@VV¨?=3C@+;£?H@!ý§?‘$F@F½¨?ÿ³F@ö¦§?ˆÈC@³Õ¦?8„=@ØË§?Ù>@ç[©?->@â+©?é+F@ªO¥?!¸H@ÓG¡?6I@™Ÿ?Ç“F@<Õž?±@@hÌŸ?„æ9@7•Ÿ?œ57@)úž?Uü3@Sž?˜š0@[äŸ?&Ð+@?xê.@Ψ¡?è¬0@,þ¢?Ò»/@ýg£?QG/@)¦?@Ð]¨?'¦>@Ö™ª?»Ù;@ç-§?¸+G@%£?·,H@•C¡?C@RA ?Õà@@³ÉŸ?z¤=@#;Ÿ?98@‚_ž?[k5@¶ž?!.4@Ÿ?^ž1@€ÿ ?V,@)¡?ô-@uy¡?-@w°¢?×–,@Ýï£?ƒÊ-@rþ¤?ã‚.@ýÐ¥?s$3@צ?ë?6@œ¨?´`4@Ÿƒ¨?Ä¢5@ʨ?°«5@³_©? q5@8?ª?kº1@V$ª?ƾ1@ÿ©?m·7@)ר?,9@'·§?d<@&§?XìA@v´§?Ù¡F@H>¨?Ý"F@1©?’H@Ÿ4§?ÅÑC@üñ§?)¼>@W©?bÐ?@7ýª?1ª=@¥¤?üI@Äy£?æõG@U°£?KF@ÿû¢?‘‚B@6|¡?þ`?@'Ÿ?Øî6@kè?)7@ïŸ?£J5@ÄŸ?[Ú3@=@¡?øÑ1@佡?½[-@ ¡? Í/@Qæ¡?´4/@®£?¡f,@+ï£?Ð$.@ïw¤?d 2@Ù¦?a 4@Ak¦?Ï 2@4§?]Â0@‚˜§?+O/@b3¨?Þ2@zE¨?Œ­/@%§?D;4@@–§?&e8@£§?Bý?@€Œ§?#E@X]¨?¹¡G@«ä§?RŽA@}}§?éXD@˜Ó§?†Á@@ó4¨?ò>@zì¨?™Ö>@®«?“D>@ÿà¢?B¿I@Be¢?@M@3ñ¢?„žF@>Ò¢?ayC@V>¡?Ç2<@ óŸ?©O9@b. ? à:@Ês¡?´;@¬x¢?9½:@ô–¢?Šù4@ ¡?“@1@Gƒ¡?S1@‘Þ¡?€x.@o ¢?ñŠ.@¨¯¢??ø0@⪣?Õ2@Ob¤?Z0@¤Ü¤?À1@m6¥?6ž1@eº¥?:Y5@¨£¥?rs4@Mð¥?¶+4@ëY§?¸Î9@)Û§?VR@@©a¨?©C@ÈH¨?3VD@„§?DB@E²¦?«.C@µ–§?­t<@P…¨?§È;@r*©?ð“9@[ͪ?E”:@¥ß¢?(˜J@Q¥¡?á G@ÄÌ¡?ÁqE@Ρ?‹|A@>¡?ÿ!?@6ç ?C@:@ùì ?],9@ÁS¡?‹S>@Í ¢?/>@¡…¡?›27@ÓO¡?Â5@ܨ ?‚1@i« ?F;1@uÞ ?yÕ3@ħ¢?Už3@l"£?¢Ë1@oT£?[X3@\Ö£?=~3@Æ#¤?¸7@y¤?ìË9@{í¤?!;@Œt¦?-<@ú§?15>@í¦?9î<@2¦?…^<@h¶¥?¶Ö<@!È¥?˜ =@$§?Ì}9@Ï›¨?¡:@š@©?΢9@Â5«?ö-9@”¢?]H@¤¡?ðÔD@DÈ¡?‘šD@~/¢?”¹B@ý"¢?ß>@&F¢?þ;@Õ]¡?Zî;@ÐO¡?&¦=@½¡?Û_<@Ij ?Ÿ<@ñ ?3î8@nŒ ?WÐ6@ÖÑ ?ø¦8@‘¢??>@qž¢?¡;@Ÿ£?p<<@<,¤?„"<@¡¤?m:@U¤?ºÄ;@ìs¤?6#?@º,¥?a@@˜Q¥?Ät>@ÄJ¥?À•=@ož¥?³¼<@ËÖ¥?-X;@/¦?äx7@]¹¦?×9@øz¨?¶€9@K©?«Ø;@ò{«?9@b|¤?SíD@ù=£?$`D@ ¢?ÈTB@¿Ý¡?!ïA@1¡?`~;@/ö ?‡“8@œ© ?Ú¼9@Y¡?2¤;@Û|¡?°ì>@§8¡?ëP>@ß*¡?B>@dt¡?<Œ<@Væ¡?ÏdB@š¢?\7E@1÷¢?4A@–t£?°?@Œó£?â0A@Z¨£?g¡>@Ï!¤?LF=@ï½£?H`<@£?ˆ @@üZ¤?&A@/`¤?g5=@ûä¤?w/9@ll¥?äÊ7@º¦?bí8@„b¨?+Š7@¦ä©?<¦;@+®«?ƒ’:@˜I£?¡ì?@~ð¡?œB@h•¡?æû?@ꤡ?¸T:@&»¡?x]7@¥¨ ? ”7@ƒ¢ ?æP:@·n¡?f;:@5u¡?Óñ>@+ ¡?5—@@ñE¡?èB@Øã¡?0wE@üá¢?¹H@æÏ¢?M.L@`ï¢?süE@d¿¢?p:A@ 8¢?ãª=@݆¢?í;@ªà¢?øR<@W#£?eS;@º„¤?=@®‡¤?N9@@Ÿ¥?+~;@Ë^¥?6E8@çö¥?f8@~£§?s7@ ‡©?*9@Û‹ª?@;;@n¡?ý×<@|¡?bW:@c¡?«:@íÁ ?«õ9@ÎW ? ¯7@Of ?IT9@Í ?áY8@éf¡?Õd7@Ý`¡?p˜=@ ¢?EøB@çF¢?àÇD@’Þ¢?F^G@#[¢?„ H@:³¡?SK@,w¡?ñ¼>@ü¡?¯+8@yb¢?Àì7@ö¢?FO9@Ãñ£?’A8@.º¤?Èk<@À;¥?Í>@ˆ™¥?®†;@o‘¥?è;@7(¦?æž7@?¡§?,7@°©?|7@û¸ª?; 8@¥0¡?4)<@û"¡?õ8@ON¡?Q³7@¶m¡?¯b:@zN¡?¬d=@Re¡?mü9@oH¡? :@ío¢?Ã9?@b“¢?%B@ZO¢?ÙƒE@Ó¡?ÇE@j¥ ?öKD@š ?ËA@´¯ ?à=@–P¡?Yú;@ˆ¾¡?w9@³Ã¢?ù„8@B¤?Û7@©è¤?DN;@¹ß¤?£;8@ꇥ?+W;@&z¥?Ñþ:@àW¦?jÓ7@æ?ae8@2¨?>¢6@¦ª? Š6@ñq¡?L=C@f1¢?(B@öX£?q2?@"Å¢?¶q>@¾¡?Ñ|?@$¡?ºv=@|H¢?,?@Žt¢?ò6=@k¢?*BA@±÷¡?”-?@ܸŸ?~?@?ôŸ?ŒX:@ÂÇ ?¹Ï6@ë5 ?™Õ7@Š–¡?ÿP6@¯¢?žX8@úH£?“:@çæ£?Í;@q»¤?Ð8@ù¥?ÆÛ8@Øÿ¥?l7@òG¦?6@SV§?º27@ä8¨?º8@Ī?N7@3µ¡?­G@Ë/¢?•–C@~¿¢?>@­'£?°þ?@õ¢?©t@@ÄJ¢?Q=@?óÊ9@A·¢?¯>=@]ä¡?Â%=@1¡?æË7@^H ?_¦4@?;¡?õ¨/@aK¡?Oµ/@Ý*¢?-à/@®ˆ£?b5@3‘¢?¶†:@w|£?]9@×F¤?êõ6@yŸ¤?™z8@Î-¥?©ˆ6@>O¦?®5@Ÿ§? ¶8@S$¨?ð9@ ó©?Ë9@ûm¡?‘ÇC@Ñî¡?ãl?@Zr¢?t¸<@8Æ¢?ôÅ=@ä|¢?Dþ<@©¢?ŸrA@¾4¢?c›?@D¶¡?–Â:@þÿ ?P\6@º ?è 1@»H¡?f,@{Ñ¡?×Þ-@;°¡?2@›O£?IÂ4@­F£?gØ9@ã£?®e;@Oˆ¤?Æ8@=w¤?v’8@ F¥?zÑ5@g1¦?²5@°O§?¡;9@ô§?+u<@ô-©?Zz<@zi¡?+¥>@´4¢?q«<@Zk¡?ÉW<@pä ?p=@5Q¡?íR@@š¡?Õ@@ä¡? <@ü¡?&ý:@Ñ¡?5@Rq¡?È,0@¯Ú¡?‡þ.@&¢?Gê1@z2£?Só2@ú"£?k¯5@6È¢?‘8@wí£?2 ;@7—¤?¯%;@%í¥?ks9@ü§?°ú8@­v§?gµ8@¥K§?ÎØ:@;}¨?œp;@—Ô¢?e¶A@ûU¢?Ò@@ò,¡?ºWC@ج ?$„@@S ?8Ç<@Zs ?æc<@¹Ÿ?[<;@ ˆ ?†$7@ŒÇ¡?:í3@›7¡?CŠ1@¡ý¡?¯Û1@;„¢?´¢4@‘ £?il5@OÕ¢? ^5@Áv£?Z(8@Óq¤?¤/7@e’¥?ÀZ7@„Þ¦?ˆJ8@¬ž§?¦ò6@¡§?6@=ë¦?ý°7@,¢?×âF@e¢?ÿC@uÛ¡?^D@p¡?»^B@E«Ÿ?ד=@žŸ?°P9@K»Ÿ?28@µý ?Ö 4@ÝÊ ?Ìë0@žH¡?þA1@`®¢?ë3@Qs£?Nr4@öi£?%4@ná£?Ø<7@wp¤?—+2@D¥?¯4@«h¦?èL3@A¿¦?kø4@ƒ3§?™P3@«y§?ÙX3@›®¡?]ìF@KÙ¡?3ÏG@AU¢?ÿD@ G¡?ØŸA@VFŸ?³ ;@÷sŸ?úy7@ÌL¡?"5@D¡?öý2@ƒ&¡?&#/@T‹¡?Æ¡1@¶u¢?h2@wª¢?ÂÂ1@ £?a²4@ç£?‘Ñ3@ìͤ?I]4@<¥?ï4@Ô‚¦?`h3@y½¦?-Ô3@~œ¦?Ð1@Ä¡?ÊE@Bž¡? ‰B@­H¡?Ü?@(ûŸ?8À;@¾ž?»4@× Ÿ?Ð*1@i ?aË1@! ?°&/@“ñ ?KR.@œñ ?nû.@N¡?Ùv0@¸²¡?·ž1@º?¢?HS4@ù¥£?–³5@—¦¤? I1@âr¤?wz3@­¥?›ž4@½¥?M-6@ÃÏ¡?#5H@ºR¡?¥9B@Ï' ?Ü=@6¾Ÿ?ÇÒ8@(Ÿ?}5@êgŸ?Íu1@¬ÓŸ?¢¼/@‚h ?ñï-@¡ÿŸ?Ñ».@,  ?½1@`Û ?! 1@1T¡?+x3@@E¢?QA4@ê£?x0@¦™£?€à2@çѤ?€+5@zê¤?#5@cR ?ò4B@ÁŸ?~Ž@@èŸ?;p;@nŒž?Y7@ä´ž?ü³2@ϾŸ?Qq0@™¤ ?“Ñ-@gß?¥q2@û4 ?ó24@£µ ?}m2@È ?ê&0@™°¡?xí/@¹ ¢?´Î.@a¦¢?‘‰/@ ¤??w1@×j£?'x2@ÿ«Ÿ?UiA@&Ÿ?8n>@ôUŸ?=g<@z²ž?%@<@ƒ.Ÿ?øê:@«• ?âç9@ÁŸ?™57@YuŸ?þ8@? ?î5@ر ?ÿ1@dµ ?_Þ1@ð–¡? \.@g~¡?F¤-@ ‰¢?è/@U¢? 1@`ÚŸ?ûÉB@T™Ÿ?„C@ߟ?uÝF@îfŸ?˜E@ Ÿ?BA@ôéŸ?Â>@1§ ?³ë>@¨Ø ?øÔ;@'G ?Wb9@  ?—EL@ÕhŸ?žI@ÂGŸ?H8E@ÂcŸ?ÑlA@ÉGŸ?©C@¤Ÿ?~&@@E~Ÿ?<=@Ÿ?s :@‰Ÿ?é7@ôŸ?Òc8@<¡?ˆ6@îú ?‘ÁC@­¨ ?æKF@Œq ?•VG@B. ?˜ÎE@9²Ÿ?ŸšG@,#Ÿ?0-G@à(Ÿ?RþF@d+Ÿ?ÓOE@jŸ?0}C@<ÆŸ?@@䃟?µ=@è± ?`Ó8@?Û¡?½=@¸¡?ݬ>@'"¡?u_A@zú ?^¼C@:/ ?äD@º ?6ŒE@ýr ?˳F@x¡ ?Ò·H@6c ?ø¬E@ck ?TH@@IsŸ?¡Ž@@îh¡?/=@;¡?ïÒ@@’¡?"<@@4`¡?6A@¹ ?]3@@^ã ?XÖA@­ ?u‹E@ˆÄ ?H@4 ?ŽF@廟?‚+B@Öã ?ª=@"Ú ?µMA@ÃU¡?ŸÀ@@©† ?r¼>@ÉŠ ?agA@„Ñ ?©öA@B> ?ÖE@d  ?I@›˜Ÿ?ë‚E@^‰ ?A<:@%<¡?ôe=@}¡?-“=@5à ?x;@* ?_–?@j§Ÿ?ÊcC@oÕŸ?é^G@MS ?àÉI@}ôŸ?0@íÙŸ?nï1@WÿŸ?+ô8@ •Ÿ?&F6@4Ïž?kV<@ý¶ž?t ?@ÿWŸ?çZB@_ž?ot*@·ÕŸ?ºW2@ 6 ?•Ð3@_9Ÿ?¸æ7@ªâž?Ð:@Áþž?i±9@Ô=Ÿ?8Â.@{ ?CÙ4@âŸ?Vi3@¹ZŸ?ÙÌ9@‹<Ÿ? ¼;@Ÿ?š5@ÇüŸ?X@4@ï# ?ó¬7@*ùŸ?=@“Í ?JZ7@/å ?À)7@á?„ï:@Éw¢?›P7@,{¡?%¶:@ z¢?Ñ5@.´¸?è>@>¼·? ˆ=@ô¶?®=@Mw¶?9ð;@ë¶?fÙ<@+»µ?Þ!<@õXµ?—:@‘uµ?"Š8@BNµ?²:;@Ÿp¶?àn=@Ð[·?94>@Å©¸? @@ÿ"º?¿q@@ô%»?{¬>@›f»?‚±>@1»?Xð@@è»?«(>@à»?«…>@Ü»?}ü<@.ü¹?29@.Û¸?&ø3@qæ·?#/@Uäµ?¸Þ&@…´?{i!@{t²?Dï@ýe¯?½É@›J­?¹%@^#­?ë @ü=±?'W!@Ð\²?d+"@ ί?Ú×"@Ö2­?Ô0!@âüª?E\!@ïä§?+Ñ+@ަ?ÑX4@îÈ¥?Ó{7@±Ø¥?Â^=@=a¥?íU?@5$¦?!?@Ã¥?lø>@Ʀ?áü<@Yï¦?¾!?@ù;¨?Î]?@²¨?$ C@CO©?ô¸D@‰¶ª?»UH@8Ç«?›íH@ÎÆ¬?ÒUM@¾í¬?péN@ý)­?‘ÊL@<®?JSN@|Ö­?ã–U@ÖÛ®?÷>\@Õ“°?x”[@6¸²?¶SU@³ô³?qF@—? ?°ô:@™8 ?RÎ>@!ÜŸ?¬f?@(iŸ?ç>@@ž?î—?@Zž?µÿ>@ö,ž?À@@@Õšž?sD@G"ž?åäF@§»?¦üI@IZ??ìL@±´œ?TôL@×3œ?·œI@¦œ?àG@½•?ô>G@¼Šž?—WH@ŒOŸ?øÓC@.Ÿ?c9@NB?ˆQ/@3(?îo#@bªž?Ç@²DŸ?ðú@”ß?DL@!Ñ ?0g@N¢?Ó›@£?*D!@´¤?wf"@$3¥?p>"@Cñ¥?•Š#@AA¦?©<&@̦?o±'@Nѧ?Q¡)@©?3*+@…âª?¨,+@Á ¬?ëZ,@ŒR­?ž}.@oÆ®?Ý0@’±?^"4@&â²?mb6@+ú´?Î8@’¢·?•<@r%¹?bõ?@V¹?øbB@Áô¸?¯ÿ@@Ez¸?„”@@A¸?8R=@™¸?êð8@ÝD¸?G33@}£¸?Þ†0@W|¸?Ìþ0@ÏÄ·?? 4@·?5G9@¶?•í=@Hµ?ÎC@Xº´?&G@ ?ÿÇ<@£ ?‰ ;@ûuŸ?õ™9@ÝÓž?¦ô;@v}ž?ë¶;@xJž?Œ·=@€Nž?º¢B@ûÌ?´€F@3?+«L@§?Þ4O@w—œ?kµM@p£›?ÐmL@èž›?ÇH@€•œ?ªŠE@„÷?Ô]G@ÏDŸ?wûG@$Ÿ?È?@lIœ?x3@>H›?¸—(@Ähœ?îð!@è}?¼Î@מ?&@Ô.Ÿ?^š@ ¡?˜@E¢?ó@¢p£?(æ@…R¥?Ìw"@ i¦?¢$@I-§?ß%@¶5§?NË&@Pù§?ã'@ 4©?ó)@’«?¿,@~R¬?N|.@5v­?g·/@±®?kF2@Û=°?ÕÊ5@§'²?&a9@z´?Úª9@e}¶?'(;@åR¸?7 >@Òä¸?.A@qÖ¸?€sA@çÒ·?¼iB@pt¶?¤nB@§K¶?E¨@@0¶?|š>@B&¶?™ÿ<@â¿¶?Ú„:@‡Á¶?Z9@ñ•¶?1Ö;@Ž8µ?ZæD@È:´?uËP@Ú¯³?ùY@øˆ ?¦9@š7 ?{:@HªŸ?kR:@?ª_>@d·Ÿ?‘û=@@xŸ?ZåA@šŽž?DE@‚?<ÖI@ï…œ?‰vK@Ïœ?)µJ@œ?ÄÏJ@’7›?­L@Þs›?eøH@ÊÀœ?T†F@XÏ?…XE@'¦ž?®µB@#?I8@cZ›?,ý/@õÏš?`%@ Jœ?Ì‘@w?¸a@h­ž?.È@{˜ ? ¸@¢?‡ô@:`£?$”@íK¥?Ð "@,¹¦?Âã$@Þà§?C0(@¯i¨?Ð÷(@®©?‰m)@] ª?kÅ+@g¼«?’\.@ãä¬?,1@œÁ­?áY2@QÇ®?&õ2@fò¯?q 7@ó¡±?;<@v_³?? =@µ½µ?ó<@÷£·?OX?@%ĸ?äæ?@ ¸?ÝÞ?@È·?í¾B@<õµ?Û¶E@…ú´?G@@´?P]H@e4´?HoG@žµ?öE@¿¶?ƒ‘B@vîµ?BÈB@’T´?ÄÄM@課? ˆ^@w²?ȸc@ˆ¡?w'8@Jî ?s÷;@L. ?*<@ß' ?Ñõ<@úŸ?ùê?@¦Ÿ?…D@Ǽž?n"E@÷?—ÕE@?è3G@·Tœ?3J@&S›?è©L@à>›?ÄJK@xu›?œH@çÌœ?±`E@Ið?#NF@¯ž?ÖA@m)?~ 4@MЛ?ÄÁ(@€þ›?Ѥ@’“?°é@¢”Ÿ?R:@só ?‰Â@*ž¢?8Œ@ÖX¤?T°@=]¥?’!@ªÒ¦?i:%@{–§?éJ*@ö[¨?n+@¸%©?’°/@>‡ª?&0@5Ü«?Ù2@9µ¬?žµ5@ŸZ­?\Å7@ý+®?q«6@®¦¯?’H9@ ‘±?¢Ô9@1ò?­z=@È´?¬Ä>@¸a¶?Ê_A@þË·?ïB@ç ¸?AÊ@@¸¶?TTB@7á´?Ñ1E@±©³?È J@Á³?‹M@+³?B@M@4E´?«ýK@¥¶?ÝîG@ž{¶?ŒEH@Ú«³? YS@Rz±?¬$c@³[°?­@f@?OÌ9@zR¡?<@½ ?ñV;@È ?­R=@\Ο?Ôü@@„Ýž?¤qB@Œž?¾¶A@Æøœ?š€@@É]œ?3ùB@~P›?á E@Ê‹š?³¸H@ãÚ?ùÕH@nœ?å>F@‰1?}E@fNž?/KB@]ž?Q:@¸Ôœ?».@YCœ?¿4"@Ýóœ?@hŸ?ÑÕ@’¡?Cc@q‘¢?¨r@Õ:¤?%u!@’„¥?³$@F?—'@ à§?´,@»¨?]¸0@‚`¨?#Û3@#ª?òü3@ßA«?Pb5@—¬?ò8@Ý¥¬?Xû:@Õh­?\<@ài®?çs=@'º°?À->@ ²?&š?@=N´?±?@uô´?н@@Mrµ?¡ÐA@s\µ?ÀD@—¥´?^üE@òI³?Ä!G@kñ²?s`H@_²?ÑYK@x²?=yM@u³?ÐôI@·¥µ?ŠÏD@ÿ0¶?aåD@;+²?§T@æ°?ËÅ_@ãú®?ÑÀ^@Ú;¡?|}6@"x¡?ì7@¦£¡?ù¦;@r ?Îö<@N¤Ÿ?Xš@@yÉž?úBA@ÁÕ?ê?@—Ëœ?¡Ž=@šYœ?)4?@Kf›?Rï?@êûš?F#E@²›?{sD@92œ?h½D@Ñèœ?øD@\'ž?w¿=@Í?È5@ߪœ?…j-@&?w!"@5¡ž?90!@èÕŸ?Kx"@L¢?1À!@cK¤?²¶#@í¥?øÈ%@ÑP¦?>)@`ö¦?/@à•§?Ö™3@*&¨?”T7@Ío©? P7@Ž?ª?e9@ݳª?ª":@¸k«?±;@Ì@¬?Ö:=@‘{­?+ç>@þ5¯?'é=@‡‹±?ë±?@©³?–_?@¯ú³?[y?@|Ô³?QþA@¸²?"üH@CC²?’@rMž?k?@ªÄ?CÌ@@£¾œ?øR?@ˆœ?¶å>@£kœ?_B@#5œ?a¦A@X]œ?ðZA@gZ?€1A@>&ž?Šè<@^ž?m8@×Çœ?ð/@fê?¬'@‡Óž?ÑÝ&@|± ?&Ç%@…«¢?e%&@d¤?t[&@¥?Ã×(@yߥ?T)-@r¦? -2@ é¦?îL8@g¨?DÛ;@ø×¨?Ñ>@V©?e=@C'ª?K¼=@ø«?£=@dC¬?Îa>@íÍ­?u­;@*ö¯?dÑ=@ä±?ë <@ó²?)A@b²?‚‰D@‚DZ?DšJ@T¤±?¢H@W/±?·]G@ä°?5éH@‹°?R&J@n°? ªH@D¶±?„›E@¾è³?pžB@_³?Ž,B@Nʰ?-ïK@#4°?ÀP@\®?‘XN@^M ?á‡1@CÏ ?+z6@'f¡?Jy9@s³¡?1Õ9@N*¡?]<@å’ ?õ=@ñП?z @@˜¥ž?8ò@@ù?Iƒ?@Üè?©Y?@ô`?ï’?@V:?C>@P+?-æ=@qä?â­?@¢xž?x=@Úmž?Ôú7@4ä?¸k4@³°ž?ж/@LAŸ?-@–† ?@(@šÝ¡?Ƚ&@S£?+V(@0¤?dJ*@jE¥? p.@¯U¦?]½4@‚¦?pw:@H`§?e%>@Ÿ;¨?a>@èA©?¯@@oª?ò@@ÂR«?ü0?@ãM¬?nÏ?@Ã~­?îZ>@Y¯?+â=@¸~¯? A@+İ?Î$E@Šñ°?¸¿H@ ƒ°?l¸G@N °?'©H@˰?èÁH@+I°?Â`I@­o°?|êD@¡±?âñB@߃²?¦VB@ñ±?hD@b°?c!H@V¯?{£L@S®­?¿_L@N*¡?üG0@ØQ¡?f7@=”¡?hä7@Ð}¡?ÊA8@PN¡?]$;@ÖW¡?n›;@œN ?åï=@³‘Ÿ?7)@@^Ÿ?m*@@¿˜ž?ø“?@'ž?3X?@ÐW?w>@:h?¾ø>@*‹?!o;@– ž?lj=@”ž?]F;@Ú¾Ÿ?9@M\ ?‘/6@+Ì ?ül/@âö ?_+@GС?…*@ÖB¢?ë:,@«h£?Ïé,@õ´¤?ir0@”~¥?-S5@N?¦?bŽ;@ªP§?7ú=@:’¨?ML>@£]©?†,=@›ª?²/<@“«?(r>@òЬ?þ”>@µ­?÷=@` ­?^<@©î®?’‚?@|¯?ñ=C@÷U¯?³”C@0û®? 5F@“¯?v]E@‚.°?ŠD@ª­°?oa@@ܰ? !<@‚»±?²T=@‚à°?‘,A@z‹¯?ÓµE@·z®?ænJ@vó­?ëÉI@à9¢?*à0@@ ¢?s|6@l¡?¸‘6@#^¡?·ã3@'D¡?FÙ4@È3¡?^d6@fÒ ?é9@M2 ?'s9@À¿Ÿ? U>@Ë_Ÿ?þN<@\ž??•=@ø¥?s±=@Fw? ú:@çÊ?ŽØ8@|Ð?hé;@Úž?æ;@Ò. ?×J<@q%¡?ؽ9@ ¡?»l4@W0¡?©ý0@¾Ä ?äù/@Ž¡?dž.@ 9£?&0@¿Å¤?û2@L¦?T6@Aá¦?-s9@gj§?ªc:@'ö§?Ä2:@mƨ?× ;@0æ©?Ü;@ˆ[«?Ô¦=@߬?t;@·‡¬?ÙK;@Z¥¬?$Æ:@0=­?ž?þ„>@‹¸ž?©>@Ã2 ?¾#>@=T¡?`e<@σ¡?î6@r2¡?_q4@äd¡?à3@u©¢?a[1@ù:¤?Tx0@µ]¥?ÿd3@Ϧ?òÂ5@s_¦?%9@°§?ÿ9@¬¾§?I;@Ux¨?nQ<@¯Í©? >@}¼ª?:É>@7ýª?ü<@ÓϪ?!;=@XÚª?”û>@Ì=¬?ƪB@œT­?¿gF@Šf­?Ÿ C@@öÖ¨?§h?@dÙ©?]Ò?@eKª?öw>@qý©?Ô<@Q£©?:>@×Ī?;lA@·³«?åÎC@ØQ¬?ÕB@¨¬?›ë>@ŽU¬?©ß?@'f«?XÕ>@Qïª?Z¦@@\«?ÍèE@«?ôðJ@LWª?ÃþJ@ש?êD@€Á£?‡¿&@³ó¢?»B(@é£?^¾)@G-£?Âx(@}’¢?”q&@=m¡?>'(@&û ?Ö,@~ ?“¿/@ù» ?͇/@“, ?à§/@zz ?Ìe3@ZB ?7l6@$ ?Ò99@ž# ?ûö:@¾‡ ?Ï=@f5 ?‰8<@O‡ ?s:@2„¡?’9@M¯¡?1œ:@ƽ¢?d8@×ê£?A¿9@àΣ?D¸7@ï£?y‡2@h¬¤?÷Í6@6¤?Pº8@œÿ¤?n$>@ùH¦?ÿ•B@³~§?ÚB@ãJ¨?{ŽA@1õ¨?((?@˜˜¨?Db<@-¨?¤u=@Ç:©?“>@ "ª?Ä ?@ÓŪ? Ã@@¦ª?'@@:˜ª?Ê@?@=q©?\‘C@ÜĨ?VF@(ލ?»žJ@$©?/YI@Íw©?+H@F†¨?l D@2Ù£?<Ð"@¬ £?kû%@‘{¢?,£%@Bë¡?Ž&@r ¡?“N$@Hú ?ƒ&@È ?š¼)@Nø ?ºª,@™ ?ù-@e= ?"³/@u ?Ë 1@0Ê ?Š 5@;÷ ?x44@Žö ?Ÿî7@›³ ?·8@¥¬¡?–9@š„¢?ÇÀ:@9£?¯¶<@ºR£?*Ù;@}Ë£?«(;@dc¤?n™:@ú£?Ê 8@kŠ£?‡^6@`Å£?ü'<@Ùu¤?½?@›º¥?CèC@iC¦?ˆúC@lS§? sA@…k§?³²?@¥—§?D=@â©§?« <@‹³§?µ,<@’I¨?+‚<@d*©?ÞN>@™©?Ì×>@Oe©?nA@¥¨?ÏÂD@<§?ÑfH@@V§?—åH@¸ù§?wJ@cX¨?¾sI@C<¨?ªÍE@O¤?e#@ð”£?Ãê#@ôë¡?è³"@î¡?NZ#@Ù;¡?-&@‰R¢?Õ$@¨ñ¡?®%@Ýh¡?M†(@9‡ ?Š©.@qÇ ?Þu.@¹I¡?òÞ-@ð¡?jÍ.@‡¢?¯@0@Ò•¡?ÿ¯3@Ø?¡?Ñè1@GÊ¢?eË4@œ£?¸¤8@c4£?(;@, £?CÌ:@Pv£?ÐØ:@?£?üÖ9@ØD£?$£9@kG£?­>@=£?ãßA@!¤?^D@@а¦?A<@R[§?r,;@¨(§?ŠS<@c§? \?@˜M§?SÆ>@!ѧ?Û?@8‚§?ÚÈA@w±¦?«¹D@îê¥?#–H@­‡¥?~(I@ε¦?ÇL@£§?MJ@”§?CE@M ¤?.O"@û<¤?²"@‚!£?™‡"@LC£?¶Õ"@Ú £?ŸÖ"@ÖT£?ôÜ#@HÑ¢?ˆÇ%@%(¢?ò'@%¤¡?œ--@á?+þ/@»X¢?ÖÙ+@O€¢?¼¤+@ºs¢?ˆ/@V¢?x»1@I £?ù1@p£?»=7@+£? 9@ž£?Øn8@»“¢?´º7@vU¢?Ý=8@À¦¢?F‹:@O¢?.‹?@qc¢?£{A@æý¢?M B@lУ?<C@Ǥ?$B@'!¥?ÖÈ@@”R¥?ü§B@௥?€l@@¼˜¥?G¶=@Ó¥?Dl>@ ¦?lƒA@Ò2¦?¡7B@7ï¥?ÙÄA@†d¥?ˆ¤E@ꉤ?”vH@Ô-¤?fæK@ž7¥?c„K@þ†¥?ë}J@ëÝ¥?ÕcB@ˆ¥?'¦"@¼V¤?/F#@hÚ£?ÕG%@)¤?ei$@È›£?‰¿$@úô£?Â6%@º£?|'@Ë„¢?ýt)@œs¢?Ñb-@?Ô¢? ¹-@¥¢?3U)@I¢?ÄY-@‚?£?®Ó/@öû£?ÿ=3@t¤?¾”4@m¿£?$6@½ë¢?ZK6@U§¢?n@7@'d¢?Ûb6@’¢?‰I9@°O¢?Ô„;@6Ø¡?IX?@/Ü¡?Ä;@@Ô¼¢?‹B@*£?XÁA@[&¤?=‚A@lH¤?q™B@èJ¤?@X?@@$¤?hÜ=@ëĤ?ù¼>@ç¥?¼v@@Éd¥?Y×@@Ñ1¥?'C@†À¤? ŒE@^Ñ£?QýI@B„£?6ÕL@A_¤?ÆàI@¤?BgF@`¤?ëš@@ž|¥?¿<"@þ¤?À#%@´’¤?!'@­#¤?°Õ%@ºª£?«…'@W(¤?I¬&@y«£?ø5(@Ø £?Jb)@3£?½&-@M£?X_+@‹Þ¢?=Ÿ,@๢?•/@;›£?•ì4@‚\¤?H6@Ø—¤?kp4@ss£?¡À3@¼`¢?E"6@<…¡?ÕÒ8@¸à¡?Â]8@Óï¡?å8@_>¡?Šó;@ì„¡? o=@o¡?ʺ@@Ðo¢?j“@@!ˆ¢?hA@­Õ¢?õi?@Y¢?óW>@äA£?ÖM>@¢£?ék@@ކ¤?ñãC@N‰¥?^ÃB@Íò¤?ÙØC@2¤?ÎF@AË¢?²¬H@Ϭ¢?®®H@î¢?PF@a5£?ŽD@á:¤?ÖÕ>@×å¥?‹Ã$@Å¥?ôÃ(@Ó¶¤?æ„&@£Ü£?ÔT'@Ó¿£?ÉF)@°›¤?®¢(@‹J¤?bÏ*@½8¤?÷Î-@$Ô£?Ñt0@€>£?ùô/@½£?G 2@†£?¨W2@p¢£?Çæ6@ÒÛ£?ì 7@NË£?ò©6@öQ£?•p6@â"¢?Ä9@JK¡?›¸:@2ô ?Q¾9@P¡?Æâ7@:¡?s¡8@!m¡?·=@4¡?Ž@@(¡?®…=@pñ¡?yá=@j¢?Ž>@2¢? ¡@@ý¥¢?~E@á£?¥E@æ ¤?V^D@üý£?u¾B@Äî¢?Á^H@#$¢?ÏJ@b¡?ôžE@Óp¡? í@@Ê¢?”=@Ém¤?KÜ=@©À¥?¯å(@Òÿ¤?„ )@Ã"¤?Ù2'@sØ£?|)@d–¤?°M*@>¥?3.@_6¥?Ã-@¶y¤?”µ1@i1¤?D‚2@ý¤?Ñÿ2@°—£? †2@Äå£?mY5@Ú£?'7@¬C¤?‘¹7@Ò£?2 8@’à¢?S:@­r¢?‡ä;@€ˆ¡?)9@+l¡?P46@Êœ¡?8†3@p£¡?;w5@B· ? ý6@°I ?Èt;@SÀ ?2=@ðŒ¡?Žk=@m|¡?QC@.¢?_ÑH@/£?H K@»i£?û@äf¡?AC@û¡?]„G@‰¢?ê%K@§¼¢?wrN@NÍ£?¿ŒN@ÿŽ¥? N@æ¥?Œ[N@Dg¤?†—H@hÚ¤?ÝŸA@_/¦?¸I<@¢¦?õ¯:@+3¥?‰Ä1@·¥?¿b2@Ï¥?“2@pÕ¥?ÉØ3@ìj¦?i3@)š¦? —4@ãü¥?á2@hˆ¥?…2@GÕ¥?P2@³’¥?Å 2@)¥?x71@Bu¤?g”3@wº£? é2@}£?xÐ3@Æ„£?44@´d£?õ£2@øë¢?W0@•£?%5,@‘¢?½,@s¡¢?Λ,@¬¡?µ/@ø¨¡?`7@”ƒ¡?< <@¡?U|F@=¢?˜íH@þÈ¢?ØÖI@­£?íÿM@ê£?ò\R@Š¥?›šQ@[{¦?šO@Ds¦?q,H@§?¿µA@’¨?n;@b—§?j»4@úB¦?Þ4@Ür¦?ÉO4@o­¦?ÿ—1@$º¦?^€0@ú\§?,I1@s°¦??.@Mù¥?#Â-@uõ¥?nI,@n:¦?EÌ)@ek¥?y)@VĤ?W*-@©·¤?ì©,@ÙB¤?xb-@Û|£?!Þ,@k£?ŸÂ,@»£?OÐ+@¦£?þš*@Ô£?.(*@_R£?¨*-@Õ¢?Ój1@+È¢?©8@¡È¢?ó>>@¿æ¢?‡hF@3£?kYH@XG£?·€H@;£?øØK@L£?çFP@ÎŽ¤?…‘Q@ÓL¥?)M@Þw¦?þ]I@ŸÞ§?B@ħ?{¡8@e8¨?ó20@õ¦?WÂ.@=¦?¹)@ à¦?¦'@ʦ?Hê&@¯·¦?ìÝ&@÷¨¥?žû&@º¦?œ&@î~¥?Ȥ$@øh¥?’v#@.O¥?…æ&@¤$¥?Üc)@Ù‰¤?Hn'@k0¤?‡U&@ßù£?fa&@6Å£?nƒ'@1ޤ?¾ë&@=Í£?ÀO)@^¤?¾÷,@¸ð£?Å~4@ÇW¤?ÌÑ9@äó¤?à@@Ф?tF@P¤?0yH@Ô¤?´ëH@ %¤?c¥J@æ£?ÿuK@fà£?ËI@¯õ¤?ªB@H¦?§?@O¨?‘;:@Á’©?ð1@qÕª?·5)@ø‡¦?! @<ó¦?L#@QW§?%P@CS¦?#§"@ŒZ¥?ˆ@yù¥?U³!@?¦?Å@!@?t¦?¥ !@TÔ¦?fJ"@<—¥?Qy#@>,¥?œ†!@Õs¥?j™!@3Ĥ?ah"@Io¤?'ö"@aM¦?^%@ùà¥?¡O)@}¥?a-@gH¦?5ç3@:“¦?ëx9@w§?ÝÌ>@‰§?PC@}¦?æBF@RЦ?âÏB@1z¦?÷A@€“¥?WÛ?@‘¥?¶;@ 0¦?ßò6@º§?~1@ ¨?Ã-@m·ª?Y[)@¥;¬?‹$@2©?¹@Ω?¸C@,‰¨?¼g @ö7¦?@Ǧ?•@¥²¦?ëÏ@sT¨?Ñ!@ÚY¨?q(#@o§?ãi#@&¥?[@*Ç¥?è@Á¥?~•@tئ?s @:‘·?‘—@)m»?³Å@¾»?M™@!»?bÅ@ƒ¸?¦Ã@ ¸?Ž©@»¹?q@)´¹?Ô9@‘3¼?§x@è…¾?2@â»?c¢@?B¸?ÄÜ@†´? .@ný¯?¸]@ƒ÷®?kóÿ? ü­?£|ü?²­?0”þ?æ÷®?Ö^@Äô·?ƒ@ï,¸?`Ž@ßå·?È@lŠ·?<Ï@*á·?ëd@3¹?íT@ïÉ·?ê›@ÇO¸?s@û?19¹?”ô?ér·?=iñ?µÚ¶?u<ó?j³?~¢ð?ìµ?˜aî?šÀ¶?Ãzõ?ሺ?ÐEû?„ö¾?^ @YL»? @Ľµ?¯ø?¹ö³??Ñõ?°>´?#eñ?~²?¶oï?`²?mó?ܲ?Ñmü?½Ý±?-± @òX¼?U@h'»?—™@˜$º?L@íȹ?]Ä@ˆm¸?"@tÿ·?Ý0ù?9Ó·?ˬë?.“¸?ã*è?SJ¸?m ß?[¶?]å×?„žµ?w\Û?)´?Æòà?.Ÿ·?òËé?»?;†ù?`k¾?PÐ@:½?0@å@¸? Òø?“L¶?ÁÃð?(‹¶?°£å?ßz¶?"Dé? ¶?%®ó?ó–µ?ÄÐ@ês´?îí@ÁN¾?Ð@½?Óï@[¹º?e;@pt³?#þ?š³?úè?½Z´?^àß?D’¶? rà?þW¶?ÿ¡Ú?œ,´?õÂÓ?ä‹´?®ÇÓ?tù¶?ºÀÚ?ƒÂº?[†è?Ô!¾?uÃù?Ó¢¿?a@ºË¼?ûþ?=»¸?«Õô?ý¹?¼ë?ÿй?^æ?Ÿ*º?+ì?äx¸?dwú?R¸?Íë @._¶?‘¼@È¥¼?Á0@› ·?¥«ù?Ü:²?“äç?ee°?;Þ?œµ?dÖ? œ·?¾)Ñ?pª¶?<;Ø?ʶ?B×?Æ ¸?~âØ?䔺? mÜ?z+¼?÷·å?|Á¾?óÞø?!7¿?Ñû?{¾?økö? ½»?D‚ñ?vʹ?­tì?g¾¹?—%ì?xº?¥Œó?笠?(_@é·?ª@<¸?Qí @|•¸?)fï?‚M³?hÛ? à±?æÑ?y”¸?CÍ?àl¹?/¡Ë?¹k¶?{mÕ?læ·?jÝ?óúµ?¬bä?\ê»?Õõè?Ñ¿?ߟì?†_¿?‚o÷?-¨À?[ú?s„¿?Ÿ\õ?С¼?SÒð? ý¹?÷öö?±¹?iý?B¤¹?-Ù@³D¹?7+@tª¹?g@à¹?Ñ])@ª¸?Q9×?µ?ˆ¬Ì?a¬¶?¬yÅ?ôŒº?Å?|6»?„ Ð?é»?{"á?aÁ»?â¨ð?”í¿?Cñ?_Â?H1ò?úÓÁ?!aö?g½Á?øßø?U¿?èÕ÷?}/¼?È"ù?`š»?§ý@,¼?RÜ @઻?ý*@Ù¼?Z†@‡–¼?÷û%@o¶»?þ0@¸d¸?6¦È?鉶?VÛ¿?Òn¸?ž$Â?RMº?©7Ò?÷ø¼?júè?ç^¿?7û?ûÜÃ?üãû?gsÃ?Lü? ²Â?)Yû?ÿ‹Á?‰ù?‚¿?sèû?м?¨ô@Â0¼?¸K @Ÿ¸½?ŸÜ@ÿ¾?«X@¼´¿?è…#@»-¿?+*@Öe½?KP5@´¸?Þ½?w&¸?_Ç?ë-º?\Ú?w%¿?«3ì?£rÂ?w±ÿ?Õ–Ã?N`@§¬Ä?„ˆÿ?ÆÛÂ?»¶ü?aÆÁ? ðú?i<¿?çÿ?ž?Ïë@B¾?Q«@¸¤¿?Ïc@ÄìÁ?–p&@Ã?ÿ.,@ÿZÁ?sº/@PÞ¾?Éo8@‹u¶?­4Î?ùŒ·?Qà?þí½?’íí? ÕÂ?‚\ü?fyÄ?åí@Ì“Å?'¼þ?uÂ?ñ5ú?ÚÕÀ?”Þþ?Ôþ¾?ˆV@•¿?¯— @–÷¿?ô>@&,Â?hA#@sšÄ?ß-@]ÚÅ? m1@RpÃ?+*3@hpÀ?åé7@”²º?þLÞ? º¾?íøé?;Á?¦ù?žÃ?±@%oÄ?!þ?zRÁ?,Åù?*À?Ì!@ÄÍ¿?/@ªŠÀ?Z@ÕóÂ?±Ú@%Å?¾m'@TìÆ?Ĭ/@ñµÆ?b7@«âÄ?÷^5@ë Á?Š[:@Á?Òè?éyÁ?SÊó?¬Â?êü@‹ãÂ?!Ãý?ÂWÁ?Äý?S¿?³‚@«6À? Ü @Â?ÍÏ@º¹Ä?» @D‡Ç?Šo+@=È?` 2@ŽgÇ?°:@/ÛÅ?T9@bñÁ?öO;@ë´Á?x­ð?A/Â?í˜ù?ÅEÁ?2cû?³îÀ?–&ÿ?Çè¿?«‡@=1À?íØ@¾ Ã?³@ÖËÆ?˜%@µíÈ?…ñ-@þ#Ê? M4@2È?þ;@-Æ?Pâ<@EÂ?Ä}=@ˆÁ?´1ø?ó²¿?Eý?ãÀ?;î@DC¿?ßÝ @¸€À?&û@êÄ?)›!@ºÁÈ?› *@÷ªÊ?&0@µDË?¾17@ÎÉ?ýƒ;@V©Å?f<@švÀ?Ìa>@8†¾?µŽ@_¹¾?Ýô@y¢¿?1}@VÂ?¿@£KÆ?,&@±£Ê?Ì-@ÅJÌ?Ý-4@ÔË?-8@CÉ?x9@Õ#Å?Þº8@¦¿?­³;@íN¿?^©@<ïÀ?Q’@Ã?ÞÂ"@>ìÆ?^×)@ÌË?ç2@qÍ?ºZ7@åË?øÖ8@xÉ?88@TsÄ?ƒ7@—,¾?K0:@kwÃ?fŽ%@#Æ?á?+@zóÈ?È'/@û–Ì?Äp5@&æÍ?¬'=@r9Í? :@V/É?¸r7@ªGÃ?:i6@Z½?p¬7@?êÈ?ê‰3@$§Ê?&W5@¤Í?¤È8@ÀÎ?TvA@¯ÆÌ?M»>@‚oÈ?Zà6@PÂ?5@颻?´l6@Ï6Ì?Õ9@‰›Î?Ñu;@â*Ï?ùeB@L„Ì?,¹B@ôàÇ?- :@ÄÙÁ?ÓF7@^»?‰I7@><Ï?Qi?@ãÏ?~CD@gÌ?‰@êk¬?T@4@}¬?ï;@=R¬?”Ô;@˜Ñ«?‹95@K¬«?Có(@(¬?î(@ލ«?„1@Üzª?ú08@Y£¤?¼˜J@5 ?ÑtM@&Ø?C@}Dœ?6›>@ý¾œ?(ê4@ 4ž?7¯0@b}ž?m…3@?kõ8@”mš?Õ¦@@cø—?äéD@/+—?ë@D@™N–?'VH@-F–?`ÄK@©5—?‡rI@Ñ/™?_àF@E›?$½B@Rôœ?àÊ?@¢Xž?îG@@ Ìž?æ3@@%bŸ?±8>@–Úž?ÀÌ5@óñž?>.@; ?Ç·2@ С?ó4@´©£?<%:@Ëð£?ID>@ ×£?•l:@û1¤?<@fõ¤?²°9@_¦¤?÷8@¼ž¤?Ÿ•2@”[¢?ñ‘0@ŽŸ?†l+@t ?rŠ"@K› ?îÎ#@qþŸ?í(@œ‹ž? ë*@pž?s#.@ž?g°3@ú|Ÿ?Õ‹2@Ÿ?@;/@jž?°;,@ª#ž?õ~*@9œ?ŠÚ)@÷õš?P$@ÜD¯?ì=M@ž°¬?¦<@¹¬?/¦;@ú?¬?¦Ð9@ݧ«?‘23@}èª?QN&@’þ«?Û§#@„J¬?à‚-@ÄŽ¬?¡4@£¾¦?WC@å¢?’P@á}Ÿ?«L@??Ñ[G@&pœ?å¸=@ß? 5@g`Ÿ?AG2@.mž?6r6@IÕ›?.;@¨¼˜?–ŒD@ÇK—?ùVB@ª•?TYB@¼–?åBE@Ns–?ºH@»˜?¹G@ÿÏ™?E@a²›?O·>@ŽÄœ?9º;@¥£ž?:@Ÿ?Ïr>@”ž?LÖ7@³~ž?Á4@WR ?4î4@À¡?¾Š5@‡y£?¯:@ÉÓ£?îù=@ɤ?aM=@t1¥?Eù<@‘:¥?;Ú<@Kð¤?Ùi7@x„£?zœ0@( ¤?Á +@™.¢?¤U+@ì ?œu$@‰v¡?&œ!@IE ?¼…"@ÏýŸ?¶$@BNž?!+@,¶ž?¸/@뻟?d2@je ?¢Á3@pœŸ?Ù‚1@ }ž?4Ø,@Œ¸?F,@ꇛ?5J(@ƒ­? ¹K@3±¬?“»?@-T¬?<:@†#¬?.õ2@©i«?ß(@öô«?2$@P¬?Û-@¡Ä¬?€&4@MÞ©?Îù;@+W£?„æM@„Ÿ ?W8Q@²Ñž?gM@î:?7G@ùÄ?+Ã;@Hž?Q6@ù ž?ÅÀ4@+œ?{)9@×+š?0j?@ៗ?{bA@–?oÐ=@en•?Ú³>@eç•?5“?@•S—?PÜA@¨:™?²VB@àù™?êºA@b2›?;@%#?¬ 9@˜2ž?¡>;@Dgž?c­<@ÎÓ?ø[:@:¨Ÿ?«+9@4É¡?™ý<@š£?ÕÛ?@ÍÕ£?ó4?@õK£?ë“>@"w¥?Vü<@í¥?°Ë<@šß¤?„|:@%Z£?;5@¢i£?7Œ+@mu¢?6&'@Ûߢ?æO'@!“¡?K%@¾¡?Àˆ"@/ÛŸ?kW!@SÔž?sâ$@(yž?Uÿ*@¡óŸ?!Ì.@' ¡?c¤6@j(¡?¨¦7@÷ž?{3@ÎW?&]-@è6›?VX(@ i­?8ÆI@V}¬?9Œ?@È(­?x6@"¬¬?£.@Ï«?Ã[*@E‹¬? 1@G¬?OX6@G…«?·Ì9@z£¦?©ÒC@nì¡?9¡P@`  ?÷°R@ú ž?—L@X?ÀNE@¨j?7œ=@%Ó?Ð6@õóœ? 8@ò•š?°6>@¶}˜?ÝA@7q–?>È:@¨•?ØC8@@’•?NO7@;—?6>@C’˜?ÞÞ@@ï ™?ý²C@5š?ÜÎ>@¥W›?å9@æ[?Q‡6@|1ž?ð;@+ú?ç›?@Ñž??œA@JÜ ?;Q@@´€¢?æþC@=à£?ÎÓA@]ì£?@@Œ¥?ªA@M!¥?7Ò<@öq¤?+Ï7@¬¤?ðß3@ÉM¤? ®,@¶¬¢?+'@©*£?k&@z¡?½@)@‘¡?¤%@Ü¡?D-$@· ?¥"@KìŸ?]}'@qÈŸ?ñÔ,@sÊ ?©g1@Øý¡?’ë3@µöŸ?gô0@š›?%N/@{œ?,Ð)@É­?Y/H@K­?H>@W#­?¨«8@ƒ¬?›Â3@)­?d'8@Ì«?&à;@e¢«?„ª9@Ȫ?‹'=@פ?()H@mT¡?¬hN@®&Ÿ?>7M@Äc?‡K@‰'?<"D@¡ƒ??=@äbœ?†R8@µYš?q3>@ØÔ˜?8C@p!—?ù?@丕?Ñy9@Л•?Ê 6@Oö–?¶Ì6@½¦˜?M;@&R™?ê˜?@—Ûš?ðÁ@@®Ôš?¿`9@\“›?{¼8@w\œ?¯ =@·ž?uÆ?@ž?…vC@çŸ?3ÍB@&Þ¡?ÉÅC@û{£?a×B@¤?”ÐB@š¤?âC@ëq¤?5š@@Â;¤?ãŸ9@ú!£?/1@_Ô¤?o¢.@X¤?c²+@KÆ£?;)@½c¢?â&@ÔÕ ?µw%@À¢?.$@4¡?^Ÿ$@Š@ ?³‡%@hX ?‰m)@¨¾ ?ë»1@yE¢?¯0@Ã%¢?âe+@œOž?®&@”åœ?Œ|'@ô ­?F@ã?­?NC@n¯¬?wZ?@´¥¬?ê?@¶§«?81B@è$«?ïÒ;@ëJ«?ïQ:@6ð§?DäC@™¤?ƒâD@Ýæ ?(H@²Ôž?ÞšG@Mé?±!G@ h?)xD@?vœ?-ª>@’›?ÉÇ@@Ó8™?²ÓE@§Ë˜?œ@@ ˜?r:@•ž–?F†1@J—?Ò¼3@¼™?7@cˆ™?&·9@‰š?‡B@,!›?²M?@d«›?‡Œ:@=£œ?7è<@ex?+Î>@tvŸ?[UD@ïÇ ?\%D@ߢ?i4A@Í¢?DEB@Hí¤?"`B@Þ¨¥?´F@5¤?,[>@Ô¤?Qû:@×ð£?b3@•ã£?ù-+@r]¤?”+@ÿ~¤?öå'@g•£?¾'@k¢?ë+@ŽY¢?Š (@¢Q¢?ë/$@åÿ ?Jh"@V ?Ĭ*@|?¢?om2@\K¢? r2@E9¡?%º+@ÝfŸ?a%&@èž?yÐ&@à­?YDK@­¬?ÅJ@>¬?ú¸F@¬w«?âEG@ëKª?û@@½Mª?ÿ=@Ī?ļ>@Ô}¦?;IC@Nl£?-WB@¸¤ ?‘@C@)CŸ?´E@©3ž?HõF@¤`?MÍE@Šºœ?…]D@jŸ›?ùG@ûŠš?3XA@7“™?„q:@tÚ˜?"±/@v˜?Ú.@cf™?”4@ü#š?ÿ8@ÄKš? @@@æš?ѳE@¶œ?AH@@ü¶œ?8à?@Ͳž?+î>@ ?Ó8C@'!¡?¦ C@£??åA@››£?A(@@‘²¤?³fB@—©¥?=5@@ðT¥?bÌ>@4¿¤?–Õ7@ï{£?ý 4@-Þ¢?Ñt+@9Ÿ£?Ã[(@]Ò¤?°*@4~£?«ª(@r¢?íN+@:_¡?h›,@µ=¡?¡})@"Á¡?£›'@¿.¢?JR,@›¿¡?æÈ5@žÀ¡?8d5@Óß ?W,@™mž?|º'@BÀ?­ë(@óX¬?’ÑN@ú «?²µL@¥àª?ñ·I@s‰ª?n¡E@\Q©?åæ@@3©?™­@@&O¨?lßD@VQ¥?pEB@ܧ¢?3AB@"z ?-C@œžŸ?kîD@¯ãž?lH@š‰ž?ÄòD@Ù‚?7@¥L¥?l:@Ф?–0@Lè¢?,@¤?e0*@V/¤?_~'@ªå£?UÂ(@)û¡?¿+@ÃQ¡?–ï*@zU¡?ד(@¢?uI.@Û‹¢?1@àÓ¢?ˆi5@¡?éÓ2@ñ ?T-@ÍŸ?ÇV%@þJž?8ø%@¹&«?YçN@øªª?ªO@ª?Þ3H@è+©?³‡A@†¨?…§?@슨?3¸B@Ħ?òÞB@õd¤?„ÆB@¾Ä¢?†B@6Ž¡?œÓB@ùÅ ?^XF@(Ç ?ñÆF@ùWŸ?¤³D@Ó™?o#>@c¿œ?&5@¢®š?¸,@„Ž™?)H,@ð™?í?6@Ù™?üŸ@@CG™?ÖËA@Oʘ?‡¸@@®æš?¾6A@Vœœ?ê’?@“$?ÂA@—´?ˆC@Ÿ?ÞzF@×ë ?QTI@ðS£?þ$H@úÚ¤?ò-B@Öc¥?ÙÙC@ÁI¥?BhA@è%¥?÷ã:@/ ¥?θ3@ß‘¤?-+@éI¤?6Ë'@¨£?•½$@3ó¢?+E)@ú¡?6 (@ë³ ?',@y ?â'-@—¢?³À4@Åo¤?×ô5@\V£?%K6@¡¡?€o0@û ¡?Qr(@ïÛŸ?‘å&@hÌž?)'@*‰ª?) N@!y©?4ÆJ@~©?TµC@Ëè¨?“D>@{§?–:>@ ¸§?ÑÓB@yM¦?"Ø?@J¹¤?ò>@u)£?ÑÕ?@Š¢?ºZE@ô)¢?ŠG@c™¡?—D@•ŽŸ?¯c>@KÞœ?˜4@p6›?­k*@Ëš?Ëi.@(z™?&:@ u™?%>A@Y;˜?hxD@òC—?‘X;@½™?Š2;@}G›?yý>@ö¨œ?<@v…ž?í“>@š' ?â{@@0¢¡?³D@,¤?™ôA@p¥?D›A@Ú¥?ëE?@rr¥?!•;@»¤¥?3¾8@‡–¥?0˜3@÷œ¥?s†1@Á¥?Â*@M¤?>h#@¼Ü¤?2•"@3a£?G+'@\¢?&[&@ìv¢?á,@tv£?Ù¶1@ÿ¢?L63@-¢?Vù0@Ós ?{ì(@ïØŸ?¹(#@}nŸ?3û @€®ž?_"@8V©?>4I@†¨?÷¹F@ø§?ä6@@÷ §?ÛY=@º€¦?wã?@aª¦?4A@lI¥?µ=@âa¤?ªf9@°´£?gè<@œ£?ˆºB@…£?­‹A@nA¡?“'>@“ž?'á5@ 2›?P.@PÀš?Äý,@|š?ïº:@Kš?æA@›é—?è?@”–?À5@lX˜?Œ¬4@£›?¹Ì8@«?¶Ý9@Ó´?­Ì:@ôK ?]‹8@Ô]£?wÀ;@`ï£?#<@“s£?á;@Ué¤?µ°9@2 ¦?¶ñ3@—v¥?R3@*¦?ß4@o¦?tŽ3@±ð¥?3ñ,@{§¤?xc%@LΣ?YÎ#@ïä? Ÿ"@¿£?Á&@ˆ£?,@˜´£?¯m,@tœ¢?«)@Iu¡?…ï'@~ ?jë$@ÅŸ?™î @ÞŸ?5¢!@Vï?åü@Dê¨?E@$;¨?@@>a§?êà=@+§?f<@ÿã¦?]OB@¾·¥?pµ;@å-¤?Ü8@±ƒ£?…\9@Šþ£?ÉS<@Çb¤?ðÖ<@¥_£?|*:@ÈD ?‘•7@f9?]‰/@Ø œ? a.@c›?ãj8@_þš?êß?@’ê˜?3n=@Ù–?E…1@–õ—?:71@Õš?8)7@? q9@¼ž?Û7@Ø ?€ç8@iè¢?(é7@sߣ?l˜8@/[£?s§8@‘Å£?"Þ4@8µ¤?¨3@jì¤?Ys0@Of¥?-ê/@‰Í¦?CV5@A§¦?q½/@Zn¤?Y{*@ö¤?ܶ"@£b¤?ÊT$@È ¥? è'@E¤?zŸ,@š^£?Á)@~o¢?&@\¢?2"@]d¡?™½!@â, ?$@D1Ÿ?#$@ôBž?#@«b¨?»)A@QÁ§?¦Ü;@M†¦?Ã>@Dã¦?U?@üå¦?á£?@ø¤?ë<;@­ã¢?7:@˜T£?šD:@àn¤?£å8@ð¤?b8:@£Œ¢?y·5@MàŸ?!3@Ôûœ?Ž0@p–œ?•8@Ç,œ?|„=@Nš?B™>@ò•?’Æ1@ñQ—?u.@ü š?*4@/œ?"6@bBŸ?+W5@P ¡?kk8@Wç¡?ÇÌ9@³¤?»µ9@FФ?›:@&ã?^"5@è¤?‚k0@c¹¤?.@|£¤?û+@Î$¥?Ó½1@ê«¥?›#1@åN¥?ãr.@¨·¤?äO+@Ï®£?Þó&@Hg¤?Ýn*@ò¥?¡h.@ꈣ?^š'@ÔÁ¢?‹!@a¡?¯³@Ãn¡?І @­S ?ü\"@ÝåŸ?Ê„&@)cž?–&@cº¦?ˆd?@tB¦?fè=@µ^¦?•B@&ñ¦?ÄH?@<]¥?ÜÞ<@+¨£?xÕ9@JP¢?li9@.³¢?fî8@µÄ¤?G7@Vé£?éÙ6@:d¡?gÞ4@ÈŸ?¸a3@Ñ£?†:@¹äœ?¥ù>@Èš?›(8@©Ù–?Áx1@Io—?5¬,@â™?/2@ï­›?\7@¯Nž?"7@àž ?íö4@Ö¡?l!9@[ï£?ö=@eפ??<@LŸ¤?0*:@tߤ?Á|4@æ¥?š¸0@´P¥?ð.@K¥?jm/@¥?¥//@k¤?ÊÍ/@M×¥?‚ñ+@=E¥?íB.@øÃ¤?®@0@Tð£?m1@D·¡?z¶(@Ü?¡?»&"@á—¢?Êd @9£?ÇÉ@V$ ?­Î@<£Ÿ?j^"@€Óž?k])@Ű¥?Ñ.?@Êá¤??mD@R­¦?g‚B@ôØ¥?=?@@ùФ?¨N;@ ¨¢?VÇ:@>ä¡?µ8@¥å¢?*‚4@p‡¤?y‘4@í £?5-5@V× ?ª„5@žŸ?Do<@ +?§gC@GEœ?88@Aí—?øú2@$ö—?“,@çØ˜?zh-@×á›?®4@¦?ro8@¶/Ÿ?W¯8@ ¡?ž8@©%£?xÖ?@‹•¤?ߨ=@–¥?¶¦=@€¥?y:@•æ¥?Êë5@E¦?0ù2@8Å¥? ¤2@$ÿ¥? 3@Mæ¥?xø,@®i¦?<~.@½)§?Œò0@­þ¦?[¸4@Çz¦?k3@òa£?ŠE)@+©¢?‘A#@Ÿ.£?û°#@æ£?ë!@ʘ¢?¨— @¿Y¡?4"@?+ ?§a+@µ¥?B@éõ¥?LE@™Ö¥?Û˜A@s«¤?•Ù<@.£?¹í;@x ¢?ø£9@¿¨¡?Ø$5@£?qã2@[P¤?üÁ5@‰á¢?ð`7@{© ?lÉ:@çZž?–A@h¨œ??@}™?à 6@šÚ—?D>/@ص˜?MO-@[­™?¨0@Ê­œ?Q6@Àž?L;@¹- ?²;@-8¢? Á<@žÝ£?ñ•>@ÆÏ¤?.™<@ËÀ¥?;>@v\¦?sT<@î¦?³*7@¾h¦?—µ7@å7¦?(5@há¦?¹G1@ÊȦ?rú-@X5§?jÙ/@]×§?Æ1@xܧ?Ê 3@9¾¥?z9)@ÀǤ?Õî#@]Á£?’>#@F{£?ë¬!@>:£?-#@ƒ£?ê$@ h¡?kh*@[¦?w}C@«¥?ÑæC@y‹¥?¦>@M)¤?‰–9@£Š¢? <@¬b¢?æ9@I¸¡?·2@¶£?Á€1@¡/¤?hµ5@ÿr¢?N8@çûŸ?„Y@@z½?pA@7”š?â^8@òj˜?èŠ4@.™?¨Â/@ ~™?´Ã,@”òš?ˆ1@vû?Ñ8@éh ?¸k9@€¿¡?¥á;@«;¤?8z>@&¥?Z;@Åã¥?ó•<@!Œ¦?‹V?@J ¨?h:<@ú¢§??Ü9@¡Ä¦?7c5@£B§?ß|4@寧?Å+1@Â6¨?8Å0@ s¨?8œ2@Ox§?M2@¢é¥?¥*@K¤?+'@>§¤?Í©$@I£?I¾%@7£?D7%@PO£?$q&@·È¢?ƒF,@U*¦?É,D@ P¥?[Â?@ÿ¤?t 8@_°£?~Ý5@E¢?U!8@§¢?wï6@ˆ*¢?Ýf1@&¤?úõ0@<£?&Š:@7¡?Œ±>@-Ñž?žtB@­èœ?¾8@yO™?\Þ8@î§™?pt5@@š?.s/@úªš?Öà+@ïŽ?72@mëŸ?s6@Zm¢?Š:@1¤??@§Â¤?x¼<@¯ƒ¥?&Ü9@­¦?«ß<@̨?*¥<@qŨ?=è:@™¿¦?ñ$9@šâ¦?Eý4@nŒ§?Kô4@£u¨?VÁ3@Wû¨?ô2@H¼§?¤O/@½y¦?¦°*@>ߤ?õb'@«£¤?­¢&@ÏS¤?Âw&@Üæ£?§û*@¤ˆ£?my*@p!¤??+@Ìâ¥?„Ž@@r™¥?£¾6@éÛ¤?Aú2@ìá¢?¶b3@pO¢?^ 6@XZ¢? y5@øÁ¢?Ÿ1@£?7s4@x„¢?¼ =@™- ?èù@@”rž?¢ ?@©â›?ƒ8@µÐš?l°8@PÔ›?ñg6@³È›?ØÃ/@§†œ?LŽ.@Ÿ?é²3@{ö¡?…6@9F¤?lô9@WÂ¥?ŽÜ>@¦?g=@Ú §?Eÿ:@h¼§?^¢>@p©?±Ç;@¡~¨?êõ9@t§?:ý7@ã$§?6@ÉK¨?Ä6@¬©?ÿ5@ ã¨?†â0@¸¦?Ù,@Ü·¥?³='@D¦¥? '@g^¥?'U'@UK¥?„)@\ܤ?_§*@f¤?Ùò-@>l¥?ì:@úI¥?72@¤?ŒÔ/@æ¢?Û/@”i¢?µ7@Ä?£?P3@»ò¢?t4@{¬¢?b_:@âM¡?Ü‘>@*KŸ?öU>@E³?‘9@Þ?¤â5@Ú œ?I|8@Xf?c5@Ó ?d0@Iž? 2@¥Œ ?Ó6@ £?n´8@d¥?+Q:@ަ?ã×=@å§?#>@}F¨?îÁ>@âô©?™?@¢ª?¡;@³'¨?~ˆ9@¾|§?É@6@Ïϧ?Y]8@¾m¨?(;@³©?˜6@Ob§?.90@©ó¥?Ž×*@õ8¦?”|'@tˆ¤?;g+@/2¤?kí-@•t¤?ú,@T¤?V,/@y¥?ZÞ3@ãâ¥?Æ£-@&¥?Q°.@…ƒ£?=2@Éc£?–7@鯣?.÷6@È*¤?:@\•¢?x£=@Üq ?²y?@ûÖž?Wø4@–ž? Ä1@o®?fÔ5@_?ô|6@Vb?;·3@< ž?ã‹3@÷5Ÿ?w 5@ŠÅ¡? 6@‹Þ£?ý-9@hf¦?T_:@¶Œ¦?\$>@6*¨?)É>@}3©?Ú@@pªª?!B>@ólª?%8@v¨?õ›8@Cͨ?·09@ש?%=@]R©?fÛ:@M‡¨?=Ó3@)§¥?×/@nl¥?Úg*@× ¤?±'@4„¤?š,@ûÈ£? ½,@´…£?= /@ ·¦?‘]+@‰§? *@–"¦?Åÿ,@BϤ?«6@)…¥?(h;@¿Ú¤?´ƒ;@Ëc¤?™Š>@ă¡?œÅ?@wˆ ?g6@:ž?``/@_mž?.+0@uŸ?+2@Ýž?å¬3@kž?=ú3@Ùñž?Ç-5@S× ?M*5@úñ¢?oÀ7@ý¥?¼Î8@§?$5;@rž§?c <@4F¨?B«?@;©?Ð@@¥©?«!<@¦p©?Ät9@mœ©?Á<@¢©?± =@& ª?‹ý<@HR©?"µ5@}C¦?%l3@W¥?Ía/@÷¤¤?$H'@÷û¤?D(@ͤ?-@é+£?v#0@{ú¨?Ð3%@’&ª?r^(@•º§?Ý~0@§?æ`<@ç?As?@ÁÊ¥?7€>@¿ß£?YY@@úh¡?¼ûB@•Ÿ?RÙ2@]ž?¹œ,@´‘ž?IC.@k“Ÿ?Rü0@Þ3Ÿ?O²5@ðgŸ?‡7@·Q ?6@³¢?¸7@öÚ£?¸·6@˜ù¥?"Â7@&§? :@ûŸ§?hz<@ZC¨?½5>@¨?¤?@>ù¨?ÃC;@,ª?¢U=@*ª?1Î@@‚ª?Ò`>@+ª?øù6@?B¨?Áø1@N`¦?<­/@[ã¤?ƒ+@÷¤?+(@¥?s´*@T¤?5,0@s¬?ˆ¾!@° ­?Ô)@ºª?ôó4@{`ª?€ó?@ê§?‘åB@¢l¥?^2B@:£?§öD@»k¡?¯n=@½Ÿ?  1@ïsž?4-@·kŸ?¦ -@_÷Ÿ?†H2@4ëŸ?És8@–8 ?Ý[7@¯$¢?ŸÓ5@ ²£?Èù5@§c¥?Ñ6@&æ?/€7@l˜§?«Ñ9@¯q¨?ëÍ<@jð¨?ùX=@>ލ?hX<@ÅÈ©?.g=@}pª?÷Ÿ>@ ¯ª?xz@@q÷©?ð¦:@þ©?þÆ5@ §?vx3@5¤¦?Û /@ɤ?B7+@µ:¤?^Y+@ ñ£?¹/@*T¯?Î #@lÝ®?Ÿ -@m”­?kD9@ÊΫ?ÐaE@%è?ÁIE@ç8¥?°ÞD@^„¢?H@Ök¡?Ê9@N¯ž?{-@Œ¼ž?ŸN.@k ?Œl.@½=¡?|ô4@6Þ ?^Á7@¢?÷Ý5@\§£?ÖE4@l•¤?»z4@gŠ¥?5y5@Oä¦?P5@}Õ¨?\*:@í%ª?+ 9@·©?+t<@Õ&ª?Dð;@9bª?e;@#«?eV=@´”ª?¶=@ ?¨?v¼6@¼¦?ÞË2@q¦?5ú0@å“¥?ãá,@O£? ‰-@Ë^£?¤N/@ª:±?ü&@‰É¯?Ù%0@ƒV®?zÝ<@ÙÊ«?ÊðH@ˆZ¨?'²F@/ ¤?DaC@Ù£?¸¬B@ƒè ?€s5@#'Ÿ?ãÑ-@¹VŸ?“f.@lÁ ?Ü 1@!†¡?¿¸3@Â$¢?Èr4@oÊ£?öy5@Tz¤?Ø;6@l:¥?L!6@AK¦?Ô–3@˜‚§?p-6@¯¨?Ò8@4Š©?]5@?z©?†l9@±oª?:Ü:@’ùª?؉9@Óͪ?DÚ<@7h¨?]ñ8@,e¦?p¸2@3S¦?ö‡2@Ŧ?fŸ.@$ã£?›-@_,£?SN-@Ÿ‡±?ò›$@ä¯?bµ1@‡Œ­?~C@mw«?WJ@§?ü©H@‘¤?ÊDI@[ç¢?HI>@ÖÛ ?@d4@p]Ÿ?R.@̇Ÿ?oŸ.@Øø ?Eã0@ ¢?}¹1@34£?²+5@²ã¤?Ûó5@û)¥?â77@ÍÑ¥?Bþ5@¯>§? Ã3@¶U¨?k*6@`¨¨?X>5@öѨ?³f5@Ãé¨?h9@Ú@ª?v;@æïª?ˆë9@Ð^©?.;@¥‰§?¨Ý4@¦?§?È2@.r¦?p&2@ês¥?¸/@b8¤?0¶.@25±?ËÛ%@8Ÿ°?â 7@Ó’®?,G@\ˆª?{‹K@Ôc¦?D¿H@3j£?ÚàH@H^£?S7>@é ?§þ4@½ž?”'.@hÓŸ?üt/@»¡?*d0@—½¢?bò4@>]¤?áj6@t3¥?Ó«6@y¦?Â}7@ös§?xÏ4@[ ©?+V4@Ѓ¨?©à3@)x¨?.@4@1‡¨?dÊ6@)§©?§<@Üü©?ð…=@s`ª?Š<@’¨?q;@…˜§?šú5@øÕ§?Ð3@c¹¦?Q/2@Ÿ¿¤?­˜1@Dó°?`Â)@q²?Fâ>@:n¯?Î0I@ãDª?x_N@1¥?srH@šg£?KàG@-C£?8;@Ø' ?´(4@—¥Ÿ?_¯0@žë ?m/@%°¢?}ï/@ˆp£?bû5@e£¥?‰9@=²¦?¸b8@ݧ?âž7@™c¨?Å6@Ô†¨?6‘6@L©¨?%3@ç ©?3“3@™A©?Z£:@Ù©?Q>@„À©?´±@@5©?ø—=@@o¨?HŒ9@Ñ ¨?Þ>6@Ù §?í6@Øh¥?yI5@b±?ƒ¢0@ÓØ²?}­C@ÛL¯?e÷K@ð%©?ë§L@ƒ³¤?WjG@'ì£?uKC@ÉB¢?‰p:@%m ?à·3@þM ?¯Ü0@÷?¡?¤2@‚¢?2@|P¤?ä8@æË¦? ²9@ž¨?QV:@²³¨?Ô‘9@ <¨?0d9@푨?òg7@{¨?_Ú6@,î©?`Æ8@Îbª?oA=@Ê ª??¿A@Üj©?¶É?@3Þ¨? ;@ð±¨?ž8@Ré§?Þ)8@V¡¦?˜'6@ ²?ë_6@mŸ³? #E@ÿ®?ogL@ ‹§?6H@¤=¤?gjF@¤?m«A@}-¢?À48@à.¡?G†4@7¡?:¹6@Þf¡?¾3@}`£?ˆ¢5@îæ¥?Çž8@Þ¹¨?DR9@á¿©?°Ý;@' ©?ë2<@^©?A ;@*k¨? ø8@ù÷¨?c‰;@Ô˪?"†>@'«?± C@;$ª?ÌüA@ûâ¨?Ñy?@|5¨?¸ñ<@¨í¨?ŽÇ9@-í§?´=9@Ê…´?IÇ7@öP³?V|G@–S¬?GJ@œt¦?DÛC@"·£?üÄH@2£?é§@@§¢?‘Ý7@¢?Ñæ4@3ÿ¡?O•5@¯£?B5@ÍQ¤?ˆÐ:@¢§?Ÿ9@Ý©?t78@Â3ª?{=@ø¨?Kw>@ùQ©? i9@©?“+9@ûè©?`*?@mB«?bCD@óŪ?k–D@ˈ©?Á–?@I®¨?á¦=@½³¨?mq>@N¨?ç>9@-?¶?;@ݲ?ÝJ@\è«?HñG@÷Ÿ¥?I=D@L¤?lH@”Ó£?]Â?@ô£¢?Ÿ:@¿B¢?©_6@Ó4£?žõ5@-¤?¬6@¢¥?¿°:@ +¨?›Ò5@f@ª?t½6@%ª?]©;@÷ÿ©?ÛC9@O©?g°6@®t©?¹:@žTª?_-A@{ª?#£B@ÖΩ?Óþ?@³U©?Öï;@ª©¨?%?@e2¨?ê^>@Þàµ?9{>@Rã±?ŬH@2¯ª?°@G@|Õ¥?c¼F@KÛ¤?iôG@$$¤?Ø\?@‰û¢?J9@¶£?Ðí6@ËÚ£?ߎ6@Mܤ?×§5@Ç<¦? ƒ9@ Þ¨?øp5@g5ª?|µ7@ª?;(9@Áeª?Gi7@BÈ©?ÙÉ7@6Kª? ?@Gyª?rºA@ᶪ?Fö?@iI©?Õ³;@ø¨?}Z?@MY¨?¾|=@d®µ?’ü@@I±?¸sJ@cΪ?qãH@ ÷¥?ÉF@‚¥?phF@W`¤?×;@°i£?Á7@ õ£?4R4@£¤?Šp2@;Â¥?w8@Và¦?Í9@ñ¹©?€å5@Wv«?¾D6@­ «?Rk6@Ûàª? ·5@Iª?¦:@kª?>öA@› ª?w4C@QÛ©?[¾=@©¨?¨ž:@ʆ¨?Äe9@Š1¶?7E@Dz°?wÝH@à!©?ùPL@&t¦?O%G@jú¤?÷õC@ʤ?@;Xµ?·LG@Á7¬?9M@a«¨?BéH@â¦?3D@ŠÞ¤?8:@Ë¢¡?Àã1@»ï¢?/È/@b~¥?%50@ŧ?cQ3@›&©?Y1@ÿ˜©?¾1@÷0ª?æe5@”§«?1t7@†z«?OJ8@ ¬?Ñá8@6(«?´¸<@fâ³?'àF@hA¬?-M@uï¨?±ÄH@ú¦?._C@Z¤?œ6@¢6£?ž±0@©¤?N1@rr¥?k_/@”¦?I12@‚­§?>%/@?ä¨?@0@ª?ß5@_z«?rù5@‹E«?‡5@][«?,»:@ ³?ž@F@éà¬?‘™H@[V©?ÙJH@¨?G3A@66¤?…m7@¹x£?¯/@Äc¤?×k-@Á¥?Ù6,@ªŠ¥?ó/@¹ð¦?”:0@Ö9©?-[1@Š…©?@Ù3@¬Qª?ÑÛ3@ï2ª?‚5@þl²?¼D@5ª¬?iºE@ y©?C_H@d¨?ØA@T¥?Ó5@yµ£?IÄ-@Óú£?˜+@£^¤?~*@TÅ¥?Eù0@Óš§?‚û/@¯©?á°0@1e¨?éi4@¨Á¨?£"3@5£±?/ÒB@&,¬?ú`D@Ÿ©?VËG@;ð§?O@@J%¥?Cá4@¶˜£?„_-@­¤?ž*@¥?”,@r¦?.1/@Iö§?Ú//@,ö§?&½.@w÷§?óŒ.@;-±?&SC@̪?ë D@ÆY¨?¦"J@¯û§?'>@ù¤?{˜5@—¥£?.@¤?½2)@ˆÇ¥?½=,@Ux¦?r0,@ºþ¦?{‰.@¤D§?‘Ô+@™¢¯?ç?@l´©?k©D@ÅB¨?H@Ѩ?^>@5j¥?·þ3@¸z¤?@0@ìö¤?5Æ,@Ú¥?¾Š+@`¶¥?ðt,@ô¥?¸Ö,@Ëö®?³Š<@,Mª?ú}B@¦³¨?QE@Ѝ?1\;@%¦?‰Ã5@h¥?Û]2@³¦?É-@Y$¦?DB+@D¥? +@q$¯?Ê ?@íž«?—HB@È/©?8ÒA@¾9©?б>@g¹¦?MA;@ߦ?NJ:@‚ƒ¦?ç2@ê&¥?õ,@3v°?1?@Üv¬?ÛA@Hæ©?àŒA@(B©?8ÚD@6À§?#F@›>¨?8o?@ ¦?…™5@4Õ±?á®>@‡ý¬?ȱ@@ºª?AE@¶­©?s'I@zȨ?í˜H@^÷§?Gv@@#3±?¼Ü@@ãn­?.ÜC@±)«?VH@úª?”ÇK@˜¼¨?s I@ÂÙ°?…SA@+•­?ãzF@ë!¬?I@_ª? ùK@å²±?!B@®?–oG@ ý¬?aH@ã²²?w©D@H@¯?z×G@¾â³?ˆ=E@ÚVš?ôl%@XH?˜(@¼€Ÿ?@-@ƒ¨ ?U>.@7 Ÿ?¨á*@Û½›?\#@žäš?_å@_›?\ @ylš?ø"@/‡š?¿ù%@-<›?ÅX(@ÿS›?–».@™?ªW4@ëÒ˜?™N2@^Ö˜?Yš1@î_™?ªÑ.@¿˜?Å+@EË—?®™$@(,—?øV&@Û—?`·(@p>—?&@òò–?Âg @çö”?v¨@U ”?ö–@ú•?UG&@ôœ?É“0@™¶œ?3å6@¡;™?éy6@¹R—?© 4@‘6–?=Œ7@± •?\®9@ül”?€A9@ ª“?[°5@©”?ø*0@ù’”?b«)@¥•?‘Þ(@Ý0•?Xi.@Ø`–?šî1@ìg–?K‚.@_Š•? ä#@[•?ª0@À “?õ6@ ‹?8 @âõ?’d&@&2Ž?À,@\ý?¦ÿ@@þ?ÝU@îÆ‘? äW@5’?„·M@œ‘?8eN@jŽ‘?¨‹U@H{™?3åV@%G­?ãíL@3£?ß%D@vù?ñäH@@x–?›K@» ˜?Ð V@é%•?4·R@Ž•?MOV@óe•?_MQ@(¸–?øýI@Ó=™?Ñ&A@;?¿Y=@™Ÿ?X?@¸®¡?¤c>@R¢?{x?@•3¢?ÃE@“ߟ?x˜M@¤(œ?’[S@hT™?ò4W@|—?$xZ@Œó–?Ϲ_@C+–?±‘e@ÛV–?@¦U™?Ð<@3¼™?‹_>@?¿š?ôs>@³·š?K;9@}?š?ÞÆ-@zš?T*@B›?%¿1@v.œ?–Ù:@!Ÿ?óºE@—%¢?Õ‘L@pI¤?Ä4G@ò)¤?ˆE@¯¤?¸šH@m~¢?½òI@H#¡?jDU@cÈž?LY@h±œ?p¤Z@¡›?êV@,Ùš? P@Úå™?DgI@å™?qnD@,ñ˜?¡C@×i™? “G@t™?«K@ɘ?ãH@ë •?9^F@­O“?=—O@WÛ?_äj@]³?@Uˆ@æ)‹?ç@‰Š?çu‰@‡Ž?xPk@‚+™?³A@µR¥?ÈL"@ÍU©?Öü@Öj¤?L@;8¡?RV1@â¥?í¾T@¡?Ó~t@ŽÄ™?`{{@!>œ?bÿ$@- š?âA'@%…˜?1r'@}+˜?§v$@ä˜?s "@¼š?…w!@I˜™?®%@øØ˜?x,@=P™?Á/,@ûø—?t/@fš?Éø8@W ›?.q@@ý¶™?Ø D@„d™?â$?@؈™?;S?@zš?KGA@;÷™?F49@Î`˜?‡h-@ÿ[™?+È"@Ó›?ø[@›?b@GÊ?P"@šž?r–(@íOŸ?ÿf9@‡A¢?â´H@n(¥? [G@œd¦?ÀD@€ê¤?­H@•Í¢?SN@#â ?QI[@¯+Ÿ?õ¯^@³µ?¥A[@ã œ?øÓV@’š?–ØQ@A™?óK@®´˜?XoC@^˜?â@@ZÙ˜?]ÿD@ö˜?¬êJ@^r—?bÆJ@ø”?ÀÚJ@¤•’?²LT@Hz?‹ïy@¼?“Œ@ž‹?Ø=Œ@ ÀŒ?rx@4¯“?‘ÕI@Í ?Û(,@b“©?tÁ!@î¨?ƒÐ!@_£?‡9(@÷R¢?ÿwB@I ¤?¸h@z¿ž? ­z@† ?“·*@ñ›?v*@¢›?ƒ)@Ê×™?+Ž'@H š?hÞ%@Ά™?Z›$@܆˜?{u#@0±˜?õ¥(@¡˜?Ö+@¨™?ÉŠ4@^hš?ÏŽ8@J±š?›ø:@Øœ™? ¤<@|O™?XK=@I™?­Ð>@`²˜?äJ7@…õ—?Ü&@e}™?aò@^Äš?Ð@ëž?©@fJ ?Ñë@Tà¡?öv@<Ä¢?;y&@…£?£|2@Ÿ¬¤?”L<@,¨?áG<@s°¨?#Z<@ß>¥?­C@–í¢?®áL@K¢¡?ë³X@I ?Ø€Z@Ÿ?‚â]@gm?;NY@V›?H}S@?|™?¢9J@‘g˜?¼AC@—?ô5C@l—?„OF@µˆ—?àšJ@A¬–?ö}N@ɤ”?¬Q@QH‘?òga@ö°Ž?úù@Ó?uæŠ@ù?A@W ‘?ôgV@© œ?Ò‹,@Ô/¨?b'@œZ¬?Úw/@õ9§?Y¬4@Ä£?ûD8@ß,¤?ß@ì%™?àK>@”–?A;@Òœ•?kù,@˜?I¥!@Ú·™?Ž@Ç%œ?Ä‚@Ùòž?ݯ@øò¡?¡Ø@câ¤?HW@Ô¡¦?ì¬*@ S¨?¾è2@&©?e¼6@¼Qª?'B:@ïð©?Q+<@ÊM¥?ÔC@_`£?wM@ªE¡?ÆP@  ?‘çR@íŸ?ìO^@ÒÌž?$\@ßœ?`ZW@ñ™?€÷L@ž˜?˜}E@%™–?»°A@Nn–?6B@I™–?ÌI@«§–?R@—”?l]@&Þ?6!o@|çŽ?<…@Ž…Ž?„@©‘?_å`@“˜?£Ÿ3@Э¦?PÂ$@œ¼¬?Ã<6@"C«?sFJ@­O§?FÎC@ìѤ?IL@¨.¥?S¹g@L/Ÿ?SŸ(@Ô?¡?ŽÍ'@a@¡?‚Y+@ôIŸ?Ž˜.@hQœ?+\.@“š?¼&,@OŒ˜?¸-@Ëx˜?Dì4@=y™?jé8@Y™?,h8@Îø˜?ü“9@ù¦˜?4t=@âQ—?ÞV<@ÞU•?é†8@Î2”?E5@³•?mw0@Hi—?áV.@WP™?eH-@õÞ›?„‹'@ú°ž?ë˜"@ª¡?Ñ­@~À¦?‰0$@Á©?‚Â0@2ë«?w}4@nÖ«?c7@í¼«?ïæ9@ ©?þáA@(þ¥?˜‹E@ê¢?â8F@ö¹¡?EXF@ÿ.¡?;Q@q® ?ôXZ@3 ?ûY@•ž?8ŠV@ˆ!œ?¾èR@¹‡™?@™f˜?bL=@‹p—?HŸ:@Œ—–?T :@{Y•?<Ú;@|•?ã<@馔?^UA@Å!•?{c@@@ –?ë;=@Ó¥—?_:@™?Íå5@ °›?j~2@ Ÿ?œq*@Dœ£?PU&@Jé¦?:)@XЍ?ͨ1@Eâª?ÌÀ5@iêª?!™4@Vÿª?„¥;@ˆ\§? ðB@—·£?ª‰H@Ää¡?ûÈE@w¬¡?ѸE@£?;ðJ@Ë ¢?ÒP@™‰¡?IN@"¡ ?ªcQ@ì ?N¡Q@]?¾7Q@tš?0>M@ù×—?>áL@§ú–?pìS@3å–?·Žb@O£”?Ur@'’?ï y@ÞÐ’?'ßn@s¸—?_BH@ø£?Q…#@”k®?UB/@rl®?@]@t­? k@µ&®?'P_@Í-¯?C+`@+Éœ?#Ã!@?Ñí#@‘_?ÞZ'@葜?/ª(@J¸š?l"3@z·™?ó(;@aÚ˜?”˜?@9v™?É)@@ó¿˜? ?>@²2—?Á!=@½æ”?ïá9@ n”?€(C@4•?ràF@Ôr•?ú+G@¿ø•?qêI@Ô–?¶D@-~—?dE@@²™?ó=@( œ?ç7:@Åœ ?Éï3@¯£?{/@6š¦?ØZ/@æß¨?™ì0@ }©?Í¿1@7x©?Å'4@¤³§?4:@‘¤?¹C@PK¢?µÙJ@Ï¡ ?Ó¹H@†¥¡?é´G@ãÀ¡?:øI@5†¡?jQE@̼¢?–'B@0£?“E@KÄ¢?ôJ@my ? "M@K’œ?·ÆL@å§™?ϼS@qÛ˜?HÛ^@ ˜?¿óm@ƒ~•?Ês@cí”?ä]m@š™?‡ñQ@Øf¢?[7-@ÅR®?”(@X°?ýôY@Rp®?¸ƒt@ŽÎ°?NJk@Gœ´?dWh@ŒMš?i‘ @Œe›?¼á"@>,›?ã¥*@=<š?Ó9*@î>™?v5@¢½™?‰O:@(iš?Ñ >@b™?ký>@ÛÙ˜?ñ <@ú€–?†p>@Îm”?úA@³•?Ü@YPž?#;@®Â¡?¯„9@2¯£?~Ú3@䫦?&º0@{§?71@d§?î.@z2§?¾¬1@+;¤?®Æ:@Em¡?íB@æB¡?#ÎI@ˆ.Ÿ?¥`M@n  ?EL@ò+ ?EG@¬r¡??=@ }¢?^=@¿þ£?ÅÆ?@ûø£?FF@RO¢?o»N@>מ?IU@ˆÛ›?yó`@0˜›?ÑÉk@L¬™?‚q@|-˜?k@퀛?GÛW@“¢?¸ë7@ ñ®?ëL(@›J´?¯åP@sE°?œÁz@ ™±? ww@ŒÚ¶?­fj@+¾™?„!@ú™?!Ú#@„¢˜?Ñ’'@¿˜?æN.@¿Í˜?–ý5@CÛ?2Î9@\²›?™9;@Ukš?‚>@w˜?Ì=@w:•?Ðz=@Ž2•?Æ/D@Pû–?Ø@ ì¢?F@Ÿ2¡?Ç£Q@Sž?/•a@t‹?®o@ln?€q@ï œ?ÇŽi@ç6ž? §_@ø‰£?(Ü>@ „¯?›ð/@L¶?~]J@Án³?‹²z@¬P²?§à€@L&º?S‹r@Ι?†{%@Κ˜?oÄ)@Tq—?ëf+@Ä™?S´-@š?eë3@)/?N5@õÞœ?ëQ;@4fš?Õ:;@5A˜?ã>@r|˜?ÁÂ=@TÓ–?x’=@Å:˜?Äü>@¦*™?IÕB@59˜?‘"D@,ó—?Uv@@€æ—?ôÐA@½”™?qC@§œ?ª€?@yëž?oÓ=@5µ¡?­9@,B£?¦6@„“£?YÎ5@‹ª¢?ܸ7@_š¢?8b2@?¡?¸72@ˆd ?Þõ1@y)ž?BØ;@+‰œ?ažE@MÙ›?iÅJ@Ù›?K¡I@;íœ?®cC@ ±ž?øh=@Êg ?v_>@«Ë ?¼»>@“ô ?¸J@V7 ?.º]@Çëž?¶=n@ŒÊŸ?„u@îcŸ?¹œk@½( ?µ d@y¤?4]L@¤[¯?4R7@:°¸?mK@býµ?©Ør@ú ²?f«‚@ˆ'º?m_u@öš?Tš*@S„˜?«U.@`9—?î.@ ˜?1º+@¯iš?xò1@ßÉœ?NÙ8@§Àœ?‡¿:@Bš?jË7@ {˜?Ô6<@Õ&˜?›D=@5‹—?åô?@£c–?¸šF@i|–?èB@5–?€=@NW—?7@=@V\˜?$B@p™?ôD@Ûv›?îB@ð?ž?g#=@Ù} ?o¤:@|¢?Ð~<@rä¡?óâ;@;p¡?”:@á$ ?æl2@çrŸ?z6-@#\ž?¹90@4Ì›? ;@WŽš? :@@^ š?âˆF@ š?ï£F@0š?ÎïB@­‹›?ì¼C@[w?ÇTD@—wž?üP@ ?Y^@øh ?T1m@ßá ? iw@xŽ¢?ºr@H:¢?x"f@€u¥?&YW@Á”®?0D@î{º?ë Q@D¹?Æ1i@0}³?B@ è¶?d.{@>Ô™?ãV1@n{˜?*-@W8—?¶F+@ Û–?'.'@÷™?´^,@猜?K;@!? G>@kïš?²:@'š˜?|û=@±–?œC@šn•?úlE@Få”?òáC@ á•?Ž9@?<•?Â;@––?€@@§—?M!D@y™?ö¾B@ù·™?žC@Ïœ?Ð~<@]Gž?J\<@ÿ ?D·?@3p ?ë•@@2ÜŸ?‹<@dçž?3@ãñ?j/@ ¡›?‚r8@±#š?ùÖ=@Ô ™?¤sE@wH˜?óG@ºÎ—?ÐJ@õ—?.@ûˆ?«®=@&š?ø:;@|‡•?qû<@yy”?äDC@WÏ“?ô’D@žê“?³þ;@øh•?iÚ:@…•?žº<@ŒK–?>9D@Hü–?kUG@>d˜?¤0D@b™?NÃB@µ¼š?ë%?@hXœ?kW>@;ž?ª?@”ž?·@=@É÷?’07@>2?G*4@Âë›?fá7@G™š?ĸA@‰Æ™?ãB@R%˜? YH@ýΗ?Œ«K@!Þ–?ägO@ÝY–?^ÅR@n1˜?–V@rô›?—€\@ÛXŸ?c@Ø¡?‚8l@ôŒ¢?ótr@kÁ¥?Ðnn@ó¦¦?‹ðo@w‡©?Þa@S´?BªV@ê=»?eDX@ú¹?Za@–s´?=¡o@½¹˜?‘ú,@å;—?âÙ%@(,–?¢÷#@m—?¼@$@šê›? -@`?|œ8@{¸š?´Ì3@@m•?«‹5@Ë’?m8@õó“?"÷?@ÝÇ’?º@@Çy“? ?@ï'•?C£>@þG–?¯»=@0–?bñD@‚K–?XéH@f/˜?øÏD@9z™?ºE@ÀIš?¹ì=@SZ›?²0=@7]œ?Â;@íœ?æ£6@mœ?ž¹0@“òš?§i3@V³š?` ?@C*š?–*E@…É—?ÁÄG@>—?3 G@ ã–?g•L@š†–?8‚R@6Û•?yV@ܘ?§@S@y±›?±V@ÈPŸ?¦@^@Fò ?±Xl@V ¤?…Žo@F§?‹ãq@y¨?4¤p@ W¯?d¹\@z¸?‘PV@‹D¹? pP@lh¶?©0X@l0˜?Âü*@‘ª–?ö€#@ —?ÍR @—¡—?ʹ)@ÉMœ?q22@~l›?Y_3@€œ˜?ýD.@”É“?œz2@´“?|/9@ü“?A@d“?(·=@˜”?þU@@ƒ•?‘Å<@’•?üB@Ƕ•?³F@r{—?ÝnE@ …˜?ÌG@ÿ„™?.F@(¶™?cXE@¢š? ÒA@¢Éš?Þ©=@ ›?²ì1@Zbš?u¿.@Q¯™?x5@]¦˜?*Q@@-!—?itD@¡•?q F@•¬•?RC@ꦕ?ñ§J@âÇ•?>L@IΕ?ŒÖF@¶=™?ËÊC@ìaœ?rM@+.Ÿ?žZ@tÁ¡?¢l@§ç¥?uvp@¶¨?Jöy@T™ª?n¡j@<¦²?šiX@`ö·? LN@Aع?í.B@ø˜?ö%@Ä–?p½@pê–?©<@¹ô˜?ò)@{~œ?Ã?1@ìIš?X,@…õ—?•k*@¢”?¯1@bÓ?™F=@Ï9•?é}B@ˆŠ”?Èz=@(ƒ•?x´>@X•?è>@M†”?ȈF@0ð•?ûYH@æ8—?ŒF@*å˜?ŽEK@B³™?¡´K@JÙ? L@,š?¹íG@>Œš?q6=@±;™?¬F5@½&™?8|4@%N—?D¾8@ ñ•?øž=@O”?DB@•¢“?÷ÖD@Ω“?õ¶C@$ý”?gúC@§á•?ã=@䥘?‘ê2@†³š?¥4@Qœ?f#E@ ?Ÿ?]|]@¸æ¢?œ¦j@‡§?©y@uè?'x@ÚF®?ûd[@†Ê´?vtJ@l*º?éÅ9@—€–?¹!@=V—?9>@]–?t!!@t›?W'@(œ?f®.@=’š?ƒ½)@n—?~«*@šL”? ×2@•#”?6´?@Aà”?¨«=@ËÀ•?š—?@›D•?•Ù@@WX”?7ÌB@ïo•?ÖGJ@eÌ•?ÄH@*l–? K@ Ò—?*=L@Õ˜?F‘L@Ëq˜?Ú O@Œ'™?î&M@¾©˜?ÎÄE@À—?;C@"¼–?hb@@‰á”?Ù@@J“?VÄ@@5’?;™C@Kž’?04?@Ñp“?â9@?Ô?-m2@¬¤™?þ&@&œ?ëÊ#@T›?0/@e›?ÞL@“áž?P`@r¤?”·o@8¨?@È ª?f g@ŸL±?‰µI@@Ù¹?%÷9@éB—?É%@Øæ–?{ƒ@qï—?K#@«î›?Y +@‚i?).@ò ›?áÀ'@l"•?žÜ*@Õe“? f5@+•?Sò<@…Ø•?Þ@@=à–?¨öE@¿}”?ÒH@~Ç”? £E@¥ˆ”?3“E@£ñ“?”F@ÝO•?¢C@$Û–?û§E@=á—?íAK@ê(˜?GO@åÊ—?§xP@¸f—?‘_S@Þ–?#]O@iq•?4ŸK@²!”?àAG@Š`“?)£@@Öù“?pŠ7@UB•?QÎ-@/ ˜?_$@Ý£›?E@‘ž?Šž@MŽ›?4"@–ï™?àØ9@|Êš?VW@ƒËŸ?2Qg@hM¦?¥0z@ë$¨? {@Èú¬?šPO@.ùµ?k8@;}—?‘N)@—–?Õ$@éÞ˜?5š&@Dœ?C-@Šò›?’¤*@r–?jÑ+@“??x.@?3”?E9@¥ÿ•?¼:8@þæ—?<@Þ•?êØ@@´q•?ŠeB@`A•?‰4@@ã–“?d±@@(>”?Ï8@_á•?@0–?+È2@7™?4M'@ Hœ?Í@ϳŸ?9Å @²© ?Œ? @Eí ?z¦ @\ßœ?15@û ™?÷Y/@ó—?ÑH@®&›?7'^@Z¢?½Fo@|I¦?ÇŸ€@ü¨?òË\@Š¥²?^_7@E˜?¹L-@©–?w$@s —?wø)@0œ?ÆI0@šœ?<ß*@¡—?<Â+@w”?ïº4@Åa•?~À<@q–?YÞ6@ ¨–?‡À<@ Ö–?li=@ðÝ•?:@åÅ”?þÉ:@xß“?žÎ3@8ו?yu)@>ê–?Iø"@æ=˜?{F!@v™š?(Ñ@¥ ?_v@–´?ÜY@®œ?£;@„$ž?Ô$@Ùÿž?¸@Y¢?(ê@“j¦?hƒý?ŸL«?9Ëð?̬?šÛð?u–¥?}@@¦Ÿ?Ä@SÈ™?a?/@…ô•? •A@‚:—?}BW@c¶?÷úh@ñc¤?‹ã{@m§?`¾l@˜`®?€R<@y_—?fà0@ØÑ”?>.*@·–?%Ü)@‹M›?oÖ1@þš?Y+@lÖ?Ó0@wÜ”?²±;@N+–?Õ;@ÎÑ—?A´5@2¨™?•ó5@¸ï˜?m0@j{—?Q*@º™?7à @®š?é‰@Š)?£Ê @œŸ?€@Á« ?+õ@)&£?_@p¥?˜Mû?"¨?ú]ò?;ª?%fí?kì§?¥öæ?ÚÜ­?sÏå?…¯±?>Éä?Èî°?h â?[]°?™oí?Ùí©?`¹@jI ?"ç@“U™?fƒ/@V’”?Æ=@­p”?`R@̉™?€(g@SŸ ?ÃQs@Ûx¦?Õq@}^¬?Qå9@xs•?¸³-@9¨“?ó.@™û—?Eê*@È›?.¯3@bo™?p"*@Å––?ñ€0@6ñ–?¢¦6@†™?[ÿ3@Ñš?:(,@‰œ?G­%@’?›Á@8¡?®@÷¥?Zû?9¨?:é?u¬?ØÛ?š¯?¦½Ð?k¯?¶ Ê?Uɱ?ž½É?ðÛ´?=oÇ?ñ|µ?ŠÇ?K¹?leÏ?t¶?-Ø?ä4¹?8³ã?“‰·?Åë?6²?§÷?bΧ?× @¯ØŸ?t@—?7½*@s“’?o£5@OM’?ïzM@ÙÏ•?‘a@àâ›?`0j@OÏ£? x@¨ª?–¸@@ÁG”?ôß+@©ž”?K€0@!—š?Å0@mœ?'¼4@?x™?x.@»…˜?š5@o¦š?¬:@ž?=ê0@@t¢?pF@°2¥?Ÿ«@Ȩ?_›@UÊ®?(Áá?[ó³?½îÏ?Eº?êAÍ?´»?#‡È?³2¾?H°É?õÂ?=ZÂ?4ò½?—lÁ?ý»?8ñÈ?Eö¼?2Ô?Õ¼?0LÞ?I¸?ÎËò?‚±?Å@™r­?–S@U4¤?H]@›?Íü@ž’?ÆÀ!@?§A.@Y²‘?wRE@l“?¨ÓY@‡˜?Ùùe@_!Ÿ?£¤r@<Ÿ§? ^T@ •?r5*@ˆå•?»ø4@…ûš?(’3@tá›? 4@VÇš?+±6@}›?> :@îž?„>5@µc¥?—#@©¬?‡Å@j²?³q @]µ?9T@=¼? ëñ?#z¿?ÎÂí?Q@½?»[ç?»V¾?èÛá?kH½?¶å?OA¼?ÖÞ?™Ø¶?‘:Ý?Ã׳?æ¤ä?û3²?Uåô?B7«?Š}@£`¦?a @„µ¡?œ‘@ç™?¨â@(×’?Ê@¾Ž?ƒ‰@s??V@+@®‘?íu?@˜‡’?ÜT@[d•??º[@(š?` g@Ði¤?íÌ`@{g•?’”-@ b˜?I¯9@š*›?xþ8@\›?í§7@x›? :@õuž?Ñú9@¢À£?Ó0@¼Oª?ì"@5Ͱ?Ôä@,jµ?Ó¶@~«µ?É@}ª³?„N@{¿±?äû @¶Z®?“@K×®?¬@ž­?f@Ê4§?z^ú?è­¢?þ&ý?äž?fæ@È6›?©*@º——?®¾@’-”?x @·&?б@Ë?‚æ@ ¾Ž?Ý@ŸÀ?¦*@„‘?œa<@•Y’?z}L@u$”?„LT@€¯–?åµ`@Ï!Ÿ?ô”f@ T›?]7@µVš?+D>@ó¶š?±M8@[üš?Ë­:@ Â?}<@”¢?@à ?´¬N@ÃÌ¢?÷óV@ Àž?;ÚO@Ó˜?·J@Õ¥“?y‘>@˜i’?Þ /@½’’?±w#@ó)“?ð@Æ’?øÜ@šÅ’?@Ò@Ù«“?|Ì@Ç”?í@¤¯’?_ß @ªõ’?bŠ&@x&’?ež)@Jv‘?_æ-@¤î‘?š"/@—ˆ’?ñ³1@22’?ɯ:@B“?ó§D@v“?ü¯H@»š“?Ú(M@aÁ•?º”`@é˜?xÁ:@ã0š?6}A@ ›?¸‹G@ž? @@9Q¡?Ñ]B@=³ ?ôwI@Jz ?…W@?£X@Mg—?ÌRP@àD“?wE@‰¶‘?15@‹J’?Š&@‡ˆ“?n’@Šs•?k¶@¾r–?ãý@wÕ•?-/@…?•?z@÷Ó”?‹@ ”?‚$@•G“?-'@j¯’?R *@Òt’?,?.@Lå’?…¹2@B’?N8@FE“?IÁ?@#l“?ë·B@(i“?ò%F@(ò“?£ja@é—?Hè6@h˜?žÒ@@š?îD@¯-œ?þA@n>Ÿ?­”F@µS¡?âºK@1¡?ÊTO@„=™?Û F@Ú“??í9@úª?å5#@Œ‡?»@À:?¤í @,M‘?Ø€ @,ë‘?è @˜“?d½ @•*“?<@Ò|“?mÁ@t°“?rÖ@’?R@Jj’?;Ø@€Û‘?/Ñ"@ûk’?‹V*@_’?þ1@6ë’?Úô7@=‹“?€Œ;@q`“?‰@@à’?9‹Z@O•?k­6@Ñ*•?¢?@ø–?<@@Œ'š?G.?@¡sž? ‹B@•á¡?KbD@Ë;¢?dÌ>@§ ?@4@>²–?OÎ"@ýí?«À @³ä‘?…N@õr“?š…@½Ä“?p&@bB”?bB@"$”?y: @êk”?Ô$@^”?Q @HÏ“?ц@s¿“?@÷’?Yj@n“?_#@ý~’?b&+@Íš’?Í…0@ÍÍ’?w_5@Zç’?»Â:@³:“?ÞóT@áV“?¡;@ A’?ÊA@ “?Kh<@@¨–?ž47@VQœ?<9@X9¡?å<@]‚¢?.Ì6@é+¢?oe/@yEž?œ•@_—?Ô @•?&»@·Ñ•?m<@°|–?R @(¯–?f{ @Ã=–?%Ô @li–?Qž @ê•?kÖ@׿•?²@Òn”?à©@½”?Žé!@2n“?i°%@Tá‘? ,@)—‘?:â0@ S’?Ót4@ï’“?`N@t\“?Ý09@jâ‘?¹–?@˜c‘?þA9@bâ“?kJ2@}˜?Ø3@ÿâœ?•ê1@šÝ ?‘§4@ ú¡?ŒÝ.@t¤£?V @=ý£?‹¶@¢Úž?ñ’ @m™?º @‹˜?O…@Ov—?Γ@Ï—?æ@–O–?û—@y–?)Ž@Z…•?ëg@¸•?¥N@o„“?šP!@+Ç‘?ã%)@ë×?–u+@Ùã‘?(L-@ì “?%(E@““?u23@äB’?Ò#<@D‘? U8@l‘?¤|0@®O’?_-@ˆŽ—?„¨+@\³›?™‡*@½ú ?Kw)@q1§?ºo@¶h©?Þ@H¦?Τ@M¢?l‡@ÌŒ?·Ì@0†™?ê½@b –?X° @?••?¢ @xÍ”?(¦"@ˆ”?ñ›!@„{’?¾#@¸ç?òO(@D\?~',@‹©?V+@q’?îf?@±±“?v#.@šI“? <@w)’?3@@š+‘?M 4@bº?…œ(@ØÂ’?Í @˜˜?¬N @SŸ?; $@©)¥?O@4¥?£@aë¥?4Ý@@ ¦? @ÁI¥?2@õ™?‘•"@{ž•?r.(@è,’?–Ž-@Z‘?žß-@†­?è€0@ ù?8U/@ú!’?ðz<@›@•?“ø)@æÉ“?>5@ u“?À->@ü{“?µ|8@P¦‘?‘7,@}é?Àá@>“”?÷€@Ìœ?J#@ûÑŸ?ËÒ@ñ0¢?øˆ @¥¿¤?ìo@Ÿ¨?^[@Ϊ?@qŠ«?D @Ž©?‘w@—ü¢?‹"@ò ž?Ñ@%@Ô˜?_)@^”?¥1@`<’?E4@ÅW”?">@´¶•?'@½u•?N”.@®Ó“?Ä6@_î“?ž%9@Ðu’?£r1@¢n’?uò@a“?±@|"—?Îi@}ð›?«'@†² ?tÀ@ÀÞ§?$v@û;©?_@F¬?þª@ìi¯?2sø? R°?i @g¹¬?IÇ@FI¨?ìá @¡?²¦ @N¿™?›+@ã5™?^Ð:@l€–?A;+@)–?‡å)@¬¹”?u˜-@„s“?ºÝ.@Ê»’?n†,@äÑ’?ÊJ"@ªb’?7å@Ê”? 2@Œ™?+K@?*œ@þ‘£?Q4@‡§?p@Ö)®?è¬ú?|±?Êô?l³?XHë?¤*±?N•ö?2$¬?M· @¦Ž¤?ù7@9lŸ?0@™–?«Ý0@±å•?‚ó*@â“?‘²+@Vü’?‘½,@Y’?z +@þE’?&@g’?¼$@]“?QÞ@©•?µ@/š? ú@|§ž??ß@¿f¥?»6 @û¶¨?ÿ¾@J®¯?…§ô?¶c³?Îeð?Œé°?;@î)¨?A@ù%¥?u&@éÀ–?¨’0@e‰•?“ª/@í-”?Mý2@¸“?äÛ.@x’‘?q¶/@Ëÿ‘?jp,@ν‘?&$@ŠT’?ò(@i’?T @…?•?Á@QF™?7%@AŸ?+V@a¥?ã& @•Ϭ?v_@æ!®?ï@ “©?Žþ@0Ï¥?/¢"@¸Ú”?±[*@1×”?G[3@‹Ù”?+Å7@Ε?ÑA9@Øa“?ÿÇ:@›E’?+¥8@ðÚ‘?&m2@Íó‘?ä‡-@­­‘?ú%@ ª’?ë%@R—?”6&@ÿyœ?^!@ô¢?èø@K¥?HM@ æ?õž@éE£?˜(@Ãö”?VG"@Yž”?ú+@1º”?~f3@\ •?Ùs<@œƒ”?HŒE@H”?míF@½A”? qE@"“?ÍÔA@ü’?~Ñ;@Ÿ “?¡<3@‡ñ•?ŸÎ0@Ø3š?‘¥4@»Bž?f%0@ÆBŸ?ÆÉ-@HåŸ?äd/@¹®’? a"@H+“?3Z&@+”?¯Ä+@°†•?¬U6@Ò™•?ùë>@@–? wF@$p•?w@K@}”?ÚþO@Ý@“?9çK@i¬“?IUC@Àê•?dÜB@£—?Ê)A@wz™?zQ;@›?½3@€Ø?ð˜'@­R?À…'@›3’?ê*@äÍ“?¦‰/@ûd”?®æ2@ïJ”?^É9@cº”?ÈB@ê!”?VJ@œð“? EO@e”?tT@|û”?* P@Ë[•?‘ÑG@Cš—?ëð:@LDŽ?ÞÏ*@˜?]È*@|?ûÌ0@ ‹‘?ÝJ5@˜’?úG7@´è’?˸=@~”?AÀE@ˆì“?ÃR@«”?r_\@Ö”?Õ_@¿·”?‡„V@3¢•?kVH@43Ž?äò4@ 8?­¤=@)o?}-G@ã_‘?õüN@è‘?ÙGS@Ç„’?ÀNX@ÚF“?`@‘t“?Šnh@ ì“?ÁÈh@:«”?aÆ_@•?o“R@wÚ?>^K@Ý‘?SáW@0æ‘?•^@om’?ûe@²“?‘§k@;º“?gðk@ŽË“?4Ñq@*”?’Ÿr@§ô”?&ñg@¥»”?}=Z@Õ§?œÊ]@êÝ‘?´/c@W2“?fQi@)t“?‡ o@ÍÖ“?íq@ú”?‹u@Fw”? Ìr@‹”?ëeg@ ¶”?Y@‡7’?Æ®]@ä/“?I_@ØE“?ÿþ`@#H“? lf@†“?m@Rç“?´j@·”?jý\@¨¶•?åR@GL’?¦¾O@Hƒ’?^R@ c’?GÜ[@Ýû’?&Â^@H5“?îm\@Õ>“?ˆŽO@ÜÁ—?yÊJ@:q‘?ÛØP@¶&’?AªV@©’?HïT@}Í’?;zN@ß(”?nF@E—?Üß@@ªŒ”?V@lW’?+qN@£’?–ÊD@¶“?ø8<@¶Rš?€>@ŠK“?M£D@÷Ÿ?ê‡K@Iö˜?v§;@Vœ?•;@è\¥?¸ÜJ@`²?_ÀU@1©œ?ô«J@ë6?®AJ@…h?Q^K@·Ÿ?¹F@|ž?êÃC@L¸ž?ÀìD@{º?x/P@)‰?ÇqM@ø„? ˆI@››?žÊF@Þø™?ïI@å™?WqS@2™?Q¨R@_ö—?ô|S@á–?'²T@ò–?þLS@hÓ–?*ÌO@ˆ—?*W@<–?Å\@2'–?¸/^@i\•?¥ñY@僔?¡êR@¹V”?¾K@v~”?ÖëG@„v“?ŸE@{’?µÆC@¶’?šü<@Ô?W8@=?g#8@¬?ÖŸ8@Ȉ?Ê®8@JïŽ?«â=@¥q?Ã^B@]1?}4E@p?¤ìC@«ÑŽ?CxG@Cñ?§GL@Ë3Ž?kN@±:Ž?uRP@3Ù?üL@TüŒ?XJM@ïŒ?ËžO@×pŒ?JT@ÓëŒ?;^@¬É?ff@)ýŽ?¿ïg@í®?“c@ïÂ?œÁ`@Êù?V`@ÜI?A,^@9«?©"a@M Š?dQa@¼‰?˜7_@r-‰?[@ADŠ?aA[@*/Œ?Bö^@`(°?s-@Íu®?D®4@æe¬?—6@±Ä©?U*2@è&¦?ßÍ.@Ì¥?ô“&@Ñö¢?ãî#@Xò ?”F!@aŸ?¸/@$?|¢@¦¯›?M™@Ùš?mq@§R™?]Û@+®–?«“@Y}”?ÔY@¯!”?Î' @æ”?/@–?ÇÁ<@Ãæ—?«,H@ë=š?M1T@?¯Ñ^@„Ïž?žÓ]@>ë ?ÝeX@WV£?^‡P@•~¥?SÙF@EO¨?d|=@걩?þ28@ý“©?þÛ3@ã^©?z(2@O?¨?|Ó3@ã-¥?T[3@¹m¢?ão6@ÐÖž?'›>@3‘›?ïÐC@Ðÿ˜?„èJ@¤Ö–?/»S@Д?¸Z@ÅZ“?VÈc@ \’?=2k@:Ô‘? q@æ‘?ø1q@Ä‘?F•p@8Š?^ßp@;¯?,Îr@¯Û?€z@-}Ž?äQ~@¼dŒ?{ü€@׊‹?Ÿ@× Š?^6@ ©‰?‚à@Úp‰?8é~@Ø,‰?ë‘v@f¹ˆ?'o@Ó)‰?­¾b@hd‹?-é^@€‡?NXa@“3²?¬—%@bT±?Ÿ'@<°?.+@∯?¢Õ-@÷®?§ .@ä®?R.@²þ®?ñ¡,@(°?bõ-@»±?©0@Hú²?kô1@š¢³?¥½1@Ò´?€D/@Ñpµ?ãû,@ ¶?Qü+@›t¹? c+@¶*¾?,+@mr¾?n=3@â½?³.@ZS¹?ü‘1@¥ì´?€SC@LQ²?I!U@kD±?ÅN^@h°?«/`@®¯?ùhV@…¯?ŒG@¥¾®?X[=@Wá¯?Ý9=@*®?s»@@F)¬?€?@Ë©?Çj<@舨?ȶ=@Ÿ4§?ëÏ=@Ì/§?ã?@cç¦?sô>@Ù¤?¯š=@r<£?ÄÝ;@ëû¡?ï0:@üR¡?¸Ð:@š¾ ?µÐ;@µ ?ªJ?@!KŸ? ºC@œóž?âH@è$¡?ž¸N@±Y¤?Ä•T@‚/§?ÀR@ ’§?^KL@‹£¥? ðJ@§£?M@ È ?À£H@n#Ÿ?û—E@¦Ÿž?=ëB@¯.ž?]C@V®ž?è4C@—ž?üPB@¬K?}ŠA@l7œ?|ÒE@1C‹?QÙ[@~Š?pÐ[@q+‰?¬Ö\@dù‰?Ùz_@ÖùŒ?ç]@µ?³ÖZ@Š ’?•ø]@ë’?°¹`@Ç‘?i˜`@[x?‚‚^@o?Ä,^@‹?ŒT@€Š?ÛßK@+‰?ÈF@šŠ?"¹B@f…‹?×ÌB@#)Œ?ÇÀD@jX?ïkD@¶¾Ž?xTC@:;Ž?½öA@"ÝŽ?4ÔC@w¬?SEC@æ?°@±!?„U>@Ÿ~?BV=@w‘?AZ:@‘þ’?˜ =@€$“?É<@£­’?'x@@k®“?WA@û2•?ãîA@†”?˜G@™¼•?³ÙL@âQ–?FR@^¾–?&éR@Ëz—?2P@OÑ—?3G@‚M—?DÆC@±—?E%F@*œ˜?=µF@§®™?:HG@Œš? I@š?ÆE@nŒ›?vCB@rA?ùA@ÊMž?.^@@!Ì?)qI@ Ì?¦›A@ô ž?] <@®Ež?c#>@qâ?ߢA@[ª?ÒSC@¤?3C@"°‰?§\@f ‰?b—[@…Š?ì`@6íŒ?õ@`@$®?ïÍ]@oR’?ÏßX@#á“?†âZ@ ª“?Ì+\@§Â‘?¯V@ ™?,Q@c—Š?©÷G@²ˆ?“iA@¨6ˆ?}Î=@õ³‰?;„;@‹ÊŠ?øU:@¾®‹?°§:@%{Œ?û(;@ÛŽ?+s<@¡‹?MR?@”ñ?ÌB@d?ÜïG@|«‘?0ÇF@o‘?p-F@+²‘?ªfE@†Ü‘?WâD@G‘’?ÐåD@Ø4“?*ÓB@RV•?Á†C@"Þ”?«CE@%a”?®4B@”?öoB@ô5•?jD@ýÜ•?´åC@>–?_nE@{×–?QRF@´/—?HãG@b¦—?·¹G@¤|˜?µ¶B@ÚU˜?Ü>@A˜?â:@Õ‡˜?RË>@ƒ™?‹ A@ š?tC@ŸÄš?€N?@”kœ?!;@U?>@gÖž?É™=@{ž?³_A@0 ž?Ã?@&µž?¦T:@Pqž?d8@A[?ͽ>@h§?{²@@Œ˜ž?á>@ÝÕˆ?ã´a@nƒŠ? »c@®¾Œ? b@Ã?Ûm\@Ê‘?ŒØS@žs“?ÁR@L”?@£S@ö’?Õ~S@·9Ž?ÀÇN@é°‰? C@#2ˆ?«6;@ň?¿ú9@Š?: 9@!L‹?ŸÞ:@­‹?%=@ÒÕ‹?Æ=@PU?JN?@‡|?~ŒA@ŽW?¬ØE@¸j‘?xjI@™ã‘?m K@˜s’?{„H@"ô’?\¢I@š “?çÁE@²§“?êNA@7M”?n?@†–?ƒyA@“2–?CDH@TŠ–?pPG@ð_–?—J@Q:–?< M@‡²—?úJ@â‘—?’uJ@ÃL˜?m:G@tt˜?-;E@mò˜?ÎC@Œ™?¥—E@¡™?8@@$i˜?Ö@@9™?O‚:@"´™?/ =@¢›?'É@@Tò›?+a?@c$?’]:@{Ñœ? •9@Ç,ž?ƒÅ:@¢Ÿ?–;@n³ž?'<@nО?ØF;@âŸ?É/8@ˆ¸ž?¬G<@ïž?¥@@o²ž?– B@ÎT‰?šl@ìM‹? ˜j@&èŒ?Ø€`@ÙØ?9ªS@‰S’?µOM@BV“?ùtH@Žm“?yK@ªùŽ?ÉNK@ªŠ?Ž/D@ŒÙ‰?±@@寉?ñ`<@´Š?¶F;@$Œ?â:>@§»Œ?_4A@³ºŒ?ì–B@-K?„E@*½Ž?«àG@R?VuK@Ïx‘?ŽèJ@Ž‘? ÌJ@¥=’?8MI@”A“?ýÌG@O’“?«BF@z”?•2>@ð”?à›9@á[•?w¡8@|Ì•?ð¨=@—B–?‚øD@ÙÇ–?ÂßC@¢»–?¤ÈJ@qŽ—?«L@Õt˜?½ŒM@:„™?ßK@(…š?‡–L@¨}š?%‰L@lÞš?þ:K@cÿš?¸ÆF@}Ëš?ÅH@ÃÅš?èA@q®›?ç¹@@†oŠ?z³t@pïŒ?RÄi@KÉ?(™_@gt’?«BY@.“?Á5U@iª’?8£R@÷=?ð}N@šÝ‹?¥œK@ÜŠ? H@{Ÿ‹?¸¡E@¨Œ?»õF@ï¢?ž}G@˜Ž?8±G@ç:Ž?"H@ ÉŽ?RI@"?9³H@°c?rK@þ‘?v\Q@<°“?x^U@„O”?›Z@”?AöR@n»”?h N@!ç•?ëÙI@h(•?ˆD@ÐÊ”?ê6F@Ü-•?«ïD@VX”?0B@éy•?µŽ>@€D–?âë@@“\–?ôC@s –?ZöD@Þ/˜?ýøA@µ’˜?‘UA@ñϘ?·‰D@Ivš?8ÕF@Ee›?úD@œ×›?·@@b“œ?%gA@š¸?GÈE@Öî?`ÍE@Ïžž?ÚRE@!„ž?{?@ú´ž??@¸ž?Èò>@ŒŸ?$o=@ÎÝŸ?(Ç7@ÐÀž?2b7@çŸ?F6@æÏŸ? Í=@ÓÓŸ? õ>@Õ—Š?%zw@å\Œ?Ûwm@·?±Áf@! ‘?“8b@åy’? ^@Å’?@ý[@³?6X@|ìŒ?ò³P@U³Œ?EI@£T?dL@¸Ó?$bQ@V¹Ž? /O@r?öN@l•?8BM@1‰?¾SO@½Æ‘?@ñT@„’?»uY@‡·“?ø]@›½”?5šb@f•?˜b@¶–?i^@9Þ–?µQ@¬–?ÕR@u€•?ÈN@9j•?:›L@²ñ”?17K@ÝÖ”?ø"F@®7•?àC@LŠ–?a^@@н–? tE@‡–?Q¬@@¢Ë–?@@õΖ?™B@@³˜?è*D@ß½™?”¯B@§ûš?=Å=@»E›?Í=@p]œ?¼î>@Ïœ?C@CÄœ?öC@¿U?„RA@a§?̤A@@ƒž?϶?@÷Õž?\Ÿ@@=Ÿ?)Í:@èŸ?Âb5@ò?©Ø8@Ü%Ÿ??@‚ÁŸ?ó„?@ªÌŠ?!{}@qN?‰šu@ f?§´p@.H‘?¾l@º²‘?Ñáb@žd‘?[è\@9??Ç•T@k?l7R@»ÜŽ?¾®R@§?ѹU@¼;?‘†X@›¾?<~W@@n‘?©áU@9:’?IÝZ@<½“?M¸\@þF”?gŠ_@Òè•?ö`@Å–?<Úa@¢Q—?U@e@yñ—?£Òd@„˜?ç\@×I˜?KsU@å«—?ÞÇW@á–?vNS@Ç—?Â)T@)—?^GS@‡‰–?-M@µP–?d>G@àò–?F@‚—?uE@¨ç–?‚£D@ÍÈ–?ã÷A@Äý–?9OD@É£˜?è¾D@‘‚™?@@^‹™?QÕ>@˜wš?RK<@„š?Ä?@øµ›?>û?@Rý›?°u@@Ü?Þ¸A@ëö?¬A@ Æž?%±A@îÊŸ?OB@5ÍŸ?8Ž=@#ž?Í ?@÷О?”žH@Ô0¡?™xG@xÉ‹?Eã€@áŒ?WÙ|@^«Ž?ñw@Ø5?Ý5p@‘?- h@®ý?6¶_@JŸ?—Ô[@ü?Ã,Z@?‹?=ÖZ@ ’?ý~\@hc“?Qd]@“è“? ¥\@ÍY”?â[@+ð”?ÞÌ[@óG–?·[@?—?«¡\@þù—?Ê6Z@º"˜?¤°_@*‘˜?ÇïZ@ ™?jwX@4X™?ÂõU@Cn˜??•T@–=—?ýT@r­—?rÉP@e˜?ÆBT@N˜?ˆÍQ@a›—? áM@Jþ—?:{H@\±—?0wG@6,˜?­I@ E˜? “H@€7˜?‘–F@#Û—?œöD@Óµ—?›pA@zï—?U"?@ÿì˜?ñ7@iš?}ê<@Þ-›?+>@Ò œ?×Ö;@”˜?BÄ@@Ћž?"I>@ì.Ÿ?µ°A@m" ?Ï>I@PÔ ?}XF@›Ü ?ª•F@ê ?Y M@ æ¢?vöM@ ¸‹?Þ9‚@^ß‹?«@$Ž?¿Àz@µŠ?š)w@Ôþ?‘Do@…Î?Äg@MÓ?WÞa@vû?´9\@°Ð‘?¿ÊY@Ä“?m\@±ì”?¹[@A•?+›X@ƒB•?šéT@©^–?zÓV@¦ž—?…rV@àE˜?,’T@{ö˜?î¦W@ó™?zúW@ ,š?z*T@ÏU™?šãO@îÛ˜?Ý1P@õû–?­îO@^–?ïQL@X^˜?‘mJ@Ÿç˜?¤„H@î˜?î2H@Œ1˜?tåE@þÙ?A@¬o™?WkJ@ƒNš?faI@i\š?$:B@ïô—?4øE@ ã—?ÂÞG@]—?$çC@PU˜?Ñ;@º™?9@¨ˆ›?-/<@«œ?(>;@=fž?y_A@ ?\•D@ôÁ ?PD@Vå¡?¬bH@1”¢?õ1J@-¿¤?qwH@㧤?þAM@Éõ¤?X½L@ì?>$€@1oŒ?—2€@U?÷L}@¦Ž?Ìqx@p0?Ì0q@W?Ùh@Îä?<Öa@Ðv‘?Ùr^@I“?1ä]@,ÿ”?)ÛX@5Û•?þP@¥–?xkJ@Õý•?)P@Üü–?¤—W@Xw—?ÉŽ[@§/˜?s ^@«Ò™?4Ê\@[5™?aª\@m ˜?x•X@%"˜?ËU@’:–?Ú¬X@¸Š–?T@…™?§ÙM@ÞCš?bJ@¾˜?pU@@~F™?íà:@Q~š?ïÆ>@U ›?«f<@‚?›?‡I?@Yê›?¿{A@Îáš?è¼>@Õ ™?ZµC@…P™?™F@Û™?9¥=@9¶š?‘®8@ðµ?a:@©Àž?aÚ@@¢p ?Qá@@äâ¡?ÅE@¶M£?BD@y¤?ŒA@Öi¥?·ßE@ $¦?òUI@úצ?›5L@-Ó§?M¬K@Å_Ž?‹^w@ÅìŒ?,”w@ž¹‹?„bu@é?Œ?!Ôq@tùŒ?Ên@j¦?EÇi@’?=Èg@Ðù?Îsa@ å’?ðî]@¥ë“?4ÀY@áu•?ÏðU@j)–?ï“V@L–?Š\b@eà•?@/H£?VO@ª‚¡?pLS@[à¡?ÐbL@G¢?|qL@‡¢?ÎS@ d¡?R}M@àèŽ?ïNf@E ?˧d@‰ÉŒ?_@rŒ?ËX@ñ"Œ?ÜS@а?£U@øÐ?ÒõS@Ùò‘?TV@È!‘? êS@wG?ßýN@\ï?/L@“<Ž?~#F@É?Øç?@¡¼‘?lf;@1“?Þv;@Íì“?Ú<@è¾”?Šf?@Æ•?•>@@ñm˜?¿¾B@ï™?;ÅB@î;›?¤A@Ÿj›?;5?@!›?¾A@v1›?TŸ<@ûkœ?Õj;@°Ÿ?£*-@L¢?úå"@ú#¤?ƒY#@X¦?$@0º¨?Ý$@lµ¬?yÆ@ËTª?™â#@Hn¨?‚+@!¨?Hª5@|Ý¥?åÃF@QÏ¢?¡ÍO@é ?˜PN@¸ ?­I@´=¡?ÓßI@¡ ?‰M@_õŸ?ZG@g\?~¸g@*?$c@\àŒ?¨Z@'¯Œ?ñ:T@(?°ËR@xÌŽ? 7U@•?¹ÆQ@»¹‘?hÒS@Sž?šŽQ@F¶?ôàL@Ó.?–þF@]NŽ?fpB@‹Y?uY<@ó,’?F6@ñ{“?Çÿ7@Š,•?ˆ6@H+–?â‹9@9—?#Ž8@Bš˜?˜¡C@Ä›?½É>@®ðœ?]Ç>@ð?O©?@vž?b„?@VRŸ?‰Î;@ëóŸ?=@ã?ž#1@Ȇ¦?~J'@7¢¦? -&@ß«§?ïè,@¡Õ¨?Þ‘-@F©?õ£-@ßä¦?vÿ6@Dm¦?¾Ð@@ë8¤?¥¾J@ºß¢?·QM@àI¡?ô§G@üî ?“D@>¡?^pE@¥b ?ÑH@^ ?†·E@T?r?c@ïÛ?”._@Çq?—‚Y@3M?„ÐT@7Ž?!U@ÿ¿?]&X@0‘? DY@àk?É»X@Ö“Ž?ÛêO@÷Y?:H@„—?7D@õ÷Ž?Nª?@Û,‘?›—:@ “?œC4@F~”?‘ 4@1Õ•?jÑ5@ó—?Žó2@Ùù—?Ôl;@Ëj™?¹>@–›?•Ï@@ÉÖž?•YB@ª†ž?N¼A@iŸ? ¿@@‹¼¢?z>@ìÄ¢?»e?@ñª¥?2·:@er¦?üâ2@ÚØ¦?2/@h¨¥?2@Eñ¦?Gä6@5¤?Šu=@+:¤?ô‡D@æ¾¢?ÐÃH@饡?¦KL@m¢¡?¡æF@¹¿¡?¹åA@}“¡?ÑWD@Ks¡?3yF@$¡?ÿ*B@Ä‘?|`@²tŽ?Ê%Z@ÆÇ?xxV@¦]Ž?`V@²ÂŽ?íY@Ü?&c]@õ‘?Ñ¡\@@H?‡mX@rIŽ?4O@R?ˆ G@#Û?ÖB@¶%?y ?@-_’?èl:@–Ó“?:@?•?xñ4@ä–? ¹1@Æ—?ÞK2@˜?ï“9@´š?˜¥;@”qœ?¢Š>@Ä'ž?Ó=@ù+Ÿ?)QB@i_¡?>õB@3*£?ìZF@ãT¥?ü´C@Á¦?5ŠA@z=¤?×’7@Þ¤?nQ9@‚û¥?ÀI<@fX¤??Q@@Å|£?÷žE@僢?d•G@~`¡?ódH@’¡?C?D@üi¡?‚>@Ü ?P?@Ê ?‰ÑC@ð§ ?ºt@@Æ3’?š[@îŽ?e‰S@¡Ž?†AU@дŽ?Þ~X@u˜?$^@ØI‘?Úå`@À'‘?ëñ_@8?‘SW@ÉÕ?ÛiN@ÿaŽ?Õ«F@y?)k@@XÓ‘?É:@Ž8“?žf9@ c”?œ;@¤`•?ñù5@!F–?d02@ý…—?nO3@¢ý—?!þ6@oOš?³;@⣜?žU>@ç}Ÿ?X$=@)n¡?A >@R£?¬SC@Žò£?*G@÷º¥?ÚyE@{Û¥?[`:@(¥?Vó>@¢*¦?Á‚@@8Ë¥?ä«E@ £?;I@:¡?© G@Tü ?ž›A@–¡?µ%C@O™¡?#¥;@ËÙ ?¼Ü;@Úè ?w=@ˆ˜ ?Â!=@:Œ“?8ST@‘Ì?”¤J@Á®?Õ}N@_ ?ÏW@ˆq?(q_@’?£_@À$‘?ÝD\@&Þ?rHV@ÓiŽ?òN@Q`?‰E@× ‘?,?>@Šò‘?K„<@ZC“?É%;@‡È”?aù;@Ý •?L:@ É–?\”3@Kn—? ¸2@ÎZ˜?ÂÏ6@H0š?ò¨>@Ï?Às<@ÆŸ?î:@¢?ï>@«¤?ºÕB@Ò¤?T9D@Bº¥?¡9@³V§?•p8@ö¨?÷ì=@Á¥??F@Ϥ?µF@wË¡?¾=F@pû ?ÃSB@™~¡?QX@@«œ¡?ŽD<@W¡?Ĭ:@£x ?F8<@á*¡?ßë9@4æ•?âK@”O‘?á|D@¹ÍŽ?{wI@}‡?h¾V@QP?n[^@í“’?MÊ`@Ì‘?Sm]@?ÝŽU@Âf?*L@º ?(ŒE@›‘?t ?@˜ï’?øB=@O’“?73?@!Å”?‘×>@»T•?©9<@Å•?Ý«3@s²–?ñÉ4@åK˜?X·9@¤Íš?0@:@Cœ?8$8@‚ ?1é9@¸ä¢?I;@„Í£?7\?@(¥?ä:@ƒï¦?ð8@§½§?…Ì8@Ó§?pü=@ve¥?ãSA@ÓC£?e-C@ì ¢?u E@;\¡?_ÙB@Zº¡?ü?@sl¡?w@?@1¡?ÐIA@U¢?+<@e˜?©C@‘“?’Þ@@ú?Ó2E@t?êþV@Ü ‘?YJb@“?J4b@{e’?øÖX@i‘?y_V@ÜC?!±L@û<‘?lKD@`0’?¾=@ÃÝ’?Ã9@@c”?û$C@ð“”?eA@0•?€ú:@Ï•?hÈ7@îÿ–?6@J™?n67@T›?9¢9@Ü]?Ã:@Kp ?;@瘢?ÎJ;@“¤?!P8@g¥?`G8@G§?l ;@Üʧ?÷¾<@G™¥?­§A@Ôà£?8.E@&¢?³MG@[t¢?EF@¢?#ÖC@"|¢?{¹C@… £?¶¢C@ë£?ºÚ=@\fš?»;@œ•?¾=@ð‘?Ñ@C@yï?,X@›´‘?ãgc@gf“?aÅ\@©Ð“?8¼U@¸ ‘?üU@?æ‘?J@“-“?6É@@!x“?‰gC@ ¢“?E’E@dÒ“?$øB@Q”?H³?@½Ã”?¼<@Ö?º»;@Ѳ—? Å9@ud™?!¼:@ñ>›?š:=@Ü?ø¥>@5& ?âá<@=\¢?µí8@hؤ?ÆU6@Ÿ¸¦?x??@¨Y§?^?@“~¦?\×A@gô¤?”Ö?@ãÖ£?ÍfD@O†£?òF@L£?]áF@;¦£?†wD@ s¤?°NA@ç§¥?R=@¸Tž?÷J6@¿˜?<–7@6·’?[D@5º’?×Ú[@Ì-“?á?c@‚•?.\@L3•?^iU@f±“?H4N@8d”?RÞF@ê”?GhB@íî”?†pG@:Ö”?\°C@vâ”?XB@·•?ÃåB@~?•?Ñ#B@$µ–?j¯@@輦?J¾?@š?¡rA@!l›?«rD@bBž?Ü+@@J¡?VŠ>@ëù£?ÊV<@©»¥?­êB@ðަ?xÇB@§ƒ§?~B@^w§?Ïn<@6d¥?±Ü<@8j¥?cÑA@zÚ¤?õqE@MÕ¤?´½A@Šê¤?V²@@ez¦?7;@a ?Jª4@@÷š?á6;@ÈI”?¡èL@ôó“?ÏR`@B§•?\®a@Kæ•?¯Z@é•?ÃÚP@ÛŠ•?&fK@㎖?G‚B@ZV–?B_@@-–?âC@¯c–?WŸC@jÝ•?¡ÝE@Ëb•?9qB@»b–?6,C@öå—?¡B@*Ê™?ã•C@€·š?Þ²B@¾2?rCB@‡ÝŸ?ËsA@Þ`¢?gøB@§½¤?‹¹E@¨"¦?¦?@b[¦?{å@@”¦?/Þ>@‡­¥?Xï;@¾@§?í=9@ËI¦?Î@D@Rs¥?gA@£:¦?0P>@AƦ?¨;@Ä¡?Pì6@n›š?D½C@IZ–?€ÝY@–?Õb@ÎÒ–?óTb@U –?^~W@$É•?’éJ@W¸—?¦vG@™ª˜?©½?@o˜?ïÂA@Óƒ—?˜A@ãê—?’sB@ñý—?O@@ ì—?JpB@L2˜?D¨A@È™?â??@Êt›?c?@(Μ? Û@@¶Ÿ?8ÁC@í·¡?¶†C@H[£? H@ìD¥?ÖêA@­ó¥?+RB@[M¦?éõ@@,‡¦?7Ï?@Ï„§?¤Ô=@^´§?úåA@üÀ¦?_B@rÿ¦?ÇÝ<@0¨?42=@ΰ¢?Ö:@{›?8þK@ëÖ—?¥«d@ÅZ—?¸¡f@$A–?$\@@¬–??Q@êç—?ÊO@µí™?­HH@Èš?æC@ U™?Ä@@9$™?ÒD=@U0š?Æp?@Yš?n^?@Qµ™?n(?@Ÿ›š?¸Y;@…—œ?¾2<@Ó ž?ø">@Ë‘Ÿ?4QE@»¢?ÉD@¬¤?kG@W:¦?DšF@Nã¦?„H@MW§?ñàC@:§?áG@ªe¨?†wD@Ã2©?{FC@;©?iC@,ú¨?½›@@W¸©?’í<@ކ¢?8šB@ì›?ñV@šô—?« m@ô—?Dif@Ýæ•?Yf[@wd—?Á'V@™?:ôQ@N‘›?K@Àœ?ËÊ@@)h›?€h=@¾Ô›?¿:@Œ?¼R=@ÅΜ?G>@'Ö›?>F>@øèœ?2÷:@ 2ž?§=@`¡Ÿ?-C@q £?4kK@ŸÕ£?²–N@"³¥?oˆM@ðÛ§?+RQ@QD¨?¸EN@—>¨?‰®O@­¨?ÅSH@QÄ©?îZD@«?úE@ÀÓ«?«MB@¿u¬?%z>@:î¡?íýG@"l›?Ð e@`—?dxn@§ì•?bÌa@d•?þ5W@E+—?@íW@\‹™?µÀT@¡â›?Á?L@–×?AÇB@Ä?äS=@²ž?ø\8@I=Ÿ?Õã=@=už?Vµ?@Už?‚p<@mœž?ik?@yÍŸ?ÑD@nZ¢?ëlL@ø›¤?@#R@ô²¦?H[U@„é§?Y@|¡¨?¶CY@Ⴈ?2S@Ć©?ËO@‹®©?¼G@O¬? âG@qÖ¬?I'I@\®?™ŒA@lü ?;:O@Ú?ÅT@æ^š?r}X@'ø?SJR@¾_¢?”lD@­Œ¦?s>@Íg¦?Ñ€?@éc¨?™ÆA@?Ĩ?Æö>@g§?DcH@GÀ§?.áO@½©?¿§U@P̪?„[@ð[«?‚a@ë«?Àp^@’ë¬?¸ÍY@‰ ®?;Æ[@ø­®?j·W@›?˜^@µ—?ñW@åK“?UL@q$’?xHG@ÿ6“?ÁXG@U•?úTO@^˜?¶8V@§ô›?(¡S@;ëŸ?›ñN@5£? JM@脦?H@ ª? B@¼¬?K=@aÔ«?i°9@ åª?W6@ ¬©?pØ>@p ª?Õ¶I@?«?ó¢T@¿+­?Y)[@ïô­?o—Z@ ô®?ßN^@‹Ž¯?zE_@@³™?|†Y@Š•?LyK@‘?ãA@CG‘?›§=@_l“?’G@ 7—?P@ó š?_ST@`(ž? !P@nY¡?ËéK@¥T¥?Ö%H@èy¨?‘ E@ŸŒ«?\@@Zm®?ü9@=£¯?†º/@ž®?·!)@áR¬?n 1@9Œ¬?óÙ?@'®?ïLJ@lç¯?8ëS@ á¯?YY@àÀ°?ïZ@f—?_µM@‰û’?ø¡@@!?,³6@,‘?·¦:@¾%•?HöI@:™?øuQ@I,œ?„R@ÎéŸ?JkI@L›¤?ìÊA@Lµ¨?àE;@»ª?´%7@A+¯?bw3@š|²?DÅ1@ˆ²?Ø.@ ²?ý!@[´¯?d(@‘‚±?§5@Î ²?1D@ù±?ž7L@#ô±?•=N@æ–?ÿŒC@ §‘?S4@Ü7?݆.@ŸN’?ž9@@‰—?·÷K@í"›?ÿQ@®ž?xRJ@{ú¡? <@@Ôý¥?ÃM7@"ö©?z2,@³L¯?ã#(@0W³?¸À)@£lµ?Ä*@9°µ?4G+@5úµ?,$%@1¬µ?çs'@}(¶?Ò”0@m½µ?òç7@aö´?°Ô=@P””?êÚ5@F$‘?à¦&@ÜJ‘?+È(@  •?S<>@À¦š?éM@¦ç?SJK@MP ?F-@@IŠ£?Æ3@”¸¦?SL(@ZÛ«?Á»$@ñİ?šÙ$@J¨´?nÁ"@õ”µ?³(@f®¸?4ø+@©×¸?Ô®-@zMº?‚<*@!º?ÒÔ(@¹?iä.@|e“?(Ê(@º~‘?=€@ÄÒ“?ªº+@”™?'òD@y?ñ;J@q–Ÿ?åŠ@@‡Ë¡?Yù2@ÇV¤?÷î)@#)¨?´×%@5‰¬?x¹"@0į?^ï#@Õ ³?°º!@ÓÓ·?ç¾"@Sº?ë+@D‘¼?^y,@޼?W¨+@Ír½?E,@ó’?-õ@@>’?ÞŒ@ :—?8G2@påœ?iÝE@'+Ÿ?hK?@ûø ?+4@®G£?yn*@)¦?“„'@‰c©?Ä5%@¡Z¬?Û‚&@Œ¯?í$@Ws²?æD!@ÃÔ·?Ž%@̼?­¸&@½?Ž&@â=¿?ç‡.@“?„»@Åz•?Ç@[›?!87@{4Ÿ?|§<@ ¡?›Á3@³E¢?DY,@:ž¤? ×(@Ù^¨?y(@^ºª?'&(@¶ø«?WB+@Œ=¯?\,@æÁ³?F}+@wé·?ê%@Ècº?)²%@¸@¾?ÏE*@0•?ë@"|™?’¹%@‡Ÿ?Çê5@в¡?LJ5@J¢?Ñ.@5R£?µm*@‘8¦?má*@»û¨?Úô+@}ª?5º1@A†­?!u2@Ù§°?F3@>–³? ‡+@Ÿ¶?a*@®¸?Èâ+@4™?ž?@4é?ù¥&@TÉ¡?;<1@©Â¢? m0@ £?k)+@Л¤?èÑ,@u`§?õ0@+•©?2@£â¬?^5@€[¯?z67@å±?92@‘‚³?ªi-@Jµ?¶D-@Mì›?¬@– ?â(@±ó¢?Sn.@Ïô£?‡Õ-@IW¤?4?0@¦?Á4@û]¨?04@ Ъ?ê7@ ®?9@~(±?þß7@¦²?y!4@èÔ³?lA0@;?”@•e¡?ZÛ'@¤?§0@Ré¤?º5@:ƒ¦?!°7@‡õ§?Væ8@”Þ©?¯Œ;@䵬?O)<@ï°? <@)±?ÐÜ7@:R²?$Ÿ1@ Sž?ê@ê4¢?r<*@"¥?°›5@+^§?/&;@³Ñ¨?‰g=@/Eª?µé=@§Õ¬?·">@ÿ¯?œ‹?@Žw°?67:@ño²?Áä4@›ºŸ?8G$@šz£?e.@ǧ?E<6@Ù¨?ë)<@ A«??î>@3¬?ç¾A@2)¯?,C@¥†°?5=@7,²?76@5Ë¡?® $@ z¤?F-@‡‚§?˜3@*§ª?ñY9@é…¬?’Õ>@.¯?vÉA@‹›°?v=@6¯±?²˜4@娢?Öâ&@Ý¥?°#*@̨? Ù-@üª?ôá3@⤭?AŽ8@e•¯?P68@ú°°?ë—3@wà£? a%@$Z¥?¥b'@¨?l4*@ù¬«?¹*0@bÑ­?“H2@¨'¯?ß2@a§¤?…&@;§?y¿(@«²ª?€,@v¬? O/@£g®?4W3@·§?À±/@S~©?Äñ1@1-¬?!G2@ å­?øZ3@Ïtª?²6@™­?Ÿ6@ºÇ®?¸4@®?«7@j¯?dä1@ë?°?^Y.@œÀ?7¡@Â?´H@ÂKÃ?Ä)@!oÄ? ˆ@™È?¯q@J½Ã?w5@"NÄ?̨ @®ÒÅ?Ǩ @“ñÃ?Vy @ºëÁ?s‘@°xÅ?aÌ@,Ì?òÄ@jCÑ?à¥ÿ?)zÖ?Uò÷?;ÄØ?  ü?ÐÒ?Cpý?1Ë?‰ûã?ŽèÀ?žÏ?ñá·?+Ó?L§¸?xËÐ?7l¸?‚ØÍ?Ö­·? ÌÔ?寵?ÄCé?[ó·?üäö?ß*¶? rò?¶`¸?6²ã?t»?´ÒÜ?Øf¾?®áÔ?}5Ç?õì?(Ê?Öù?RÉ?N‚ù?‡Ê?È\é?ï±Ê?úñã?¼È?©)ê?;¾Å?‹Ýó?ν?¨Ó@®Yµ?çž@=ó³?-@²æµ?âÙ@ÚQ¹?€ @kľ?h}@sÁ?Þqÿ?O°Ä?¸R@ßÅ?€ã@7Ä?n]@ÙÄ? Ô@ 0Á?Å®@"Á? Q@OÂ?@o@AÀ?µÖ@:4¿?ð @M¨¼?À‚%@§•¹?h#$@¨¸?§| @AŒ¶?ïÑ!@\µ?þƒ"@Zêœ?J}B@ƒó?a.B@pŸ?:ý=@%Þž?Ë—<@Œ\Ÿ? Ç?@É@Ÿ?2G@|œž?÷H@æ?‘8I@]ž?GÓQ@éŸ?å2N@“o ?Ä¥P@‚ƒ¢?åL@ðÉ¢?”WI@d¥?8¡@@m §?ó‚>@Â3¨?|ð2@׫?ÙN/@‚Ø­?ÕÚ/@Ê­?ÕZ.@B¯?¿ï+@}“²?»C+@ý¹´?äè+@nrµ?*µ.@e‰µ?¢|/@Àç´?›ä3@ü¬´?´­9@ÚT·?ˆ„<@À׸?Õv6@Û¹?¨7@â»?Ń;@Ìá¹?§Q9@ ¼·?I˜0@imµ?2(@h¢µ? @?̵?@o¶?Çß@4¸?½g@|`¸?t:@ÜØ·?v@5P¸? @<¸?Á@¨-¹?ÄÔ@ ƒ¸?Ÿ_@º?ÔT@Šì¹?"@H½?í@“­¿?K@z˜Â?)õ@JaÁ?&5@GÏÂ?Ã@kÇ?Ê\@òVÆ?[@´Æ?Ù@žÆÄ?“@Æ?Ã?·¿@2Ä?żA@¼©ž?uJ@@V-Ÿ?Ój;@¶Ÿ?}Ö<@²qž?À,>@Dô?©‹H@.±?¶M@Ìjž?±:P@ŸtŸ?ÔT@uŸ ?Ò S@³u¢?!HT@äz£?ÙãN@Öå£?×Ñ@@º ¥?`1<@7ÿ¦?ÎÛ5@OH©?í0@ÇÕ«?+­0@}¬?sÂ/@Cà­?<ê-@¬ °?2,@ýp²?Æ+@4´?,@Õʳ?…1@¸K´?+.@¡´?78@t™¶?®a<@X¸?Y±8@Íe¸?¬>;@Dý¹?Yp<@«Oº?K68@, ¹?<€3@iE¶?’é)@ò_µ?#@4·?ˆ@Ò͸?‰°@基?D›@ãú¹?Ó/@di¹?ÈË@ºý·?ÈÂ@i¢¸?~Ñ@?x×@´¦º?¿Í@J»?‘r@˜y»?¥@j%¿?=·@O7Â?Ý­@’çÂ?Ê@«õÂ?‡à@…ÍÂ?ê÷@\¬Å?h@±vÉ?@o™È?QÅ@^OÇ?³Û@ZÅ?•Y@Úß?þC@Yë?Êy@@Npž?hB@ÖÖž?c?@©à?G@Ñ-ž?^ÜQ@©;Ÿ?0ùS@êB ?oŒT@Ó9¡?TT@ëc£?_ÐV@H‡¤?ZV@Ì#¤?¿þH@]ˤ?n<@ûR¥?“8@Tw¨?)4@ʪ?—*3@•«?ü³2@>ج?i½0@ªœ®?œé,@Zž¯?«.-@A±?ÒC/@а?ßÂ/@•ª±?´õ1@%!³?R3@ýµ?9@ F¸?w»7@¦·?,¶:@¹?-;@}º? ÿ4@€`º?1î/@æ¸?—î'@`Ž·??#@µI¸? Ö@v¹?c@ež¹?ñ¬@ v»?'²@é@¼?8@þÕ¹?S@­¤»?õv@Iº?Wú@3»?=ž@åÖº?Fá@zÒ¼?]à @#‹¿?q™ @ÿ Ä?]Ç @`_Å?–@CÆ?ƒ@52Ä?ÎZ@†·Ã?dÆ@¹Å?&‚@×zÉ?íÒ@ÓÔÈ?“<@~Æ?„@þž?ßeC@?mBK@ož?¨ÈG@åž?ûªK@V(Ÿ?ÁV@øºŸ?Î;Z@·j ?KrX@ã¡?àƒV@N,£?EV@ŸW¤?Ýl?K“H@|ƒž?µ-M@ú‹ž?›KO@aYž?xiX@ Ã ?Ìúa@2ú ?E\@z¢?[\@šó£?ƒpT@£°¤?l}W@Öþ£?@ÒP@cL¤?NÃD@7Ý£?á3=@Üà¥?Ãs8@G~§?ò8@ÐG©?¹6@7 «?ÿ»1@)‹«?€“2@Øv«?¯E1@^\­?FÀ.@œÿ®?i\-@ €¯?½/@ga°?ô²/@?WÀ6@*¶?ëX3@륷?„Ù8@b·?;<9@£b·?¨Ð;@#²¸?¸±2@³=»?9P+@s½¼?æŒ%@@š½?Þ $@ž¥½?8K@Gq¼?•È@ Á»?x#@о??@yؽ?ø"@“r¾? ™@S¼?7+@¡Wº?e×@…»?³ @ m½?¼ @¾Ì¿?•$@=¸Á?£Ý@_ØÅ?8Õ@àË? @wôÌ?ä @yJÈ?™†@â#Æ?Þ@¨Å?Éà@•èÇ?zF@3ÊÇ?ÿÇ@·¢ž?dýL@¬ Ÿ?niQ@hCŸ?%gU@00 ?xZ@‡h¢?}”_@Ô¢?¸á[@ ¥?‘¯\@]u¥?»eS@tÞ¤?×DR@ö£?ÅG@mF£?cu?@`±¤?Ãã:@|¦?™ =@]=¨?Ò;@²©?«"9@ ¹ª?·A3@;>«?ŠK1@þ±«?kå2@@J­?Ø2@3Q®?Ñ´1@ó;¯?Ññ1@»È°?Òº3@Ø™³?‚õ7@˜z¶?«H7@™@·?3˜5@ e·?49@º¨·?¸6@ª¹?+È,@'¼?]«&@ß˾?Œ$@&¹¾?Ї%@†È¾?±ÿ@P¾?æ@&ã¾?Î@ÀÁÀ? s@‘ÃÀ?T@CÁ?¥ @Mâ½?½k @'-»?I• @ãÛ»?í'@I¿?¯È@¨ûÀ?1i@`¥Ä?æ@Ê?¬å@ܨÌ?"‚@$UÍ?eL@šÊ?%_@=ÊÆ?]¢@\gÈ?Z#@1È?]¨@]ÖŸ?mM@+˜ ?³’S@¬*¢?ä Z@Ùø¢?²uY@Ò¤?1ÀX@B¤?Js[@¤S¦?àW@R*¥?ñÂO@®t£?!I@蛢?bF@o¸£? ´<@åH¦?Yž<@=¨?yD?@o¨?ˆÍ:@+©?|Š7@ÿkª? 5@4`«?¶Û2@UÛ«?z\5@êü¬?h3@[å®?à•4@ñW°?W|4@3h²?¥(:@°ø´?§C=@R·?¿’7@°·?«A6@ú“·?(Ä4@DÓ·?X/@1·º?Ö<'@R½?#@2]¾?Àd"@åÁ¾?«)@“¾?Þê@$¬½?çî@ÚÍ¿?Üú@”áÂ?ñ @—ÏÃ?÷ @NsÂ?©a@c›¾?X@öº¼?d{@•U½?Þé@ÚÆÀ?¯¿@+Ä?©Ã@°tÅ?±)@ÍkÊ?µd@rÒÎ?@ @ÅZÎ?5@@%qÍ?+@8üË?I2 @v'É?a @,£?ÄåJ@ØÚ£?ÏÚR@t0¤?¬VV@1¤?=KU@Ï~¥?°!W@å¤?\[@y¥?¾áT@pª£?S8I@|ä£?TÉA@æ£?`A@n¥?À<@Ú˜¦?^Š<@d¨?D¹;@h©?0'8@ º©?Q-6@GŽª?Vö2@U¬?îk1@Ç÷¬?Ât4@×®?Óö1@O&¯?ÃÍ6@~V±?ëƒ;@a…´?–@@‘0·?z <@äb·?cË3@}¡·?.6@ªü·?â¤3@Y¹?t‡)@Ú~º?2“%@”¼?„$"@’ѽ?âz@¾H½?”6@~¯½?§t@U]¿?ÿv@,sÂ?qè@%8Å?ú¾@ê-Å?¡ô @rÓÂ?*@c°Á?t¥@¿?9c@RjÁ?ê¶@¨ßÃ?¾@ ôÂ?u @¥ Å?yv @ŠéÉ?Г@„ÛÍ?¨Õ @G­Ð?ºE @ô¼Ð?«X@=oÌ?²<@•P¥?qÍI@'Û¥?ñ‚O@ÌJ¦?²ÇT@ª¥?œˆW@ö«£?úYW@x±£?ÀV@L£?pMK@>”£?Õ]A@."¤?ù ?@FF¥?xÙ>@À:¦?5=@¾Â§?2ò:@€S©?ê7@1©?‹8@È©?qö6@ùWª?Ö1@oL­?86@v­?Θ4@,¯?Nª4@º­°?aœ6@§³?êÆ>@Ñ~µ?â7>@–¶?&Î8@’·?.%4@¸?”¯5@/¸?'Ç-@³`¹?8×*@‰éº?¼s#@ p¼?œ@FÓ¼?O@Å-¾?‡î@׿?Ÿ @åÅ? @˜xÉ?ê¼@ŒíÉ?šw @µÿÉ? @·âÉ? 0 @¬È?í @æ*È?Ûe@[nÈ?YB@¸ðÆ?]L@™9Æ?¸• @ŠfÇ?©S@ÙÌ?$ó@¾¿Ï?‘Û@ÃTÎ?sŸ @©µÊ?Ôa@œ-¦?‰ŒG@2¦?´CS@åV¥?œ W@AM¤?²MU@l£?ÖëW@#ä¢?æ‡J@ȶ¢?^ÅC@o ¤?ÖÍ>@›¥?ÝY=@˧?6É>@Ï¡§?çœ;@Q¨?yH7@Yø©?xC7@Øg©?go;@ Ùª?˜¨8@˜%«?9¹5@3¹­?ôè5@±‚¯?^ 5@Ű?ïT5@¾\²?}¡:@>]´?V5?@Ä>·?ø‚<@Œ&¸?xT3@â ¸?… 5@šÅ¹?[Â/@ªz¸?†-+@`Ϻ?¸¥%@2ż?¸ @ù•½?Ž @T¬½?ž}@]¾¿?8K@G Ä?x @U0Ê?^Ç@µ(Ï?ï @û{Ò?w& @o)Ï?Ÿ÷ @ä²Î?Dø@œ¶Í?2Ò@ÂÍ?ø9@ßFÍ?DP@#‰Ê?/U@ ƒÊ?éˆ@„ÓË?® @DBÑ??Ê@E Ï?=Ì@ÕZÊ?¾1 @̧?µ_R@ ¥?í´\@5£?‚W@ ^£?*OX@ "£?øDP@{ £?•™G@S[¤? =@iŠ¥?Ád9@§?::<@&8¨?>@‰q©?ÞÎ8@+Z¨?jç4@ªª?j8@¹ùª?öÂ<@Çûª?®é:@™þ¬?«.8@¡(¯?‡¿9@†$±?ìn8@ù`²?=Z9@DÑ´?k¡=@J·?j=@rP¹?}93@¹?8Š1@u¡º?kf1@º?‡x,@Kü»?jÚ$@ü/¾?„#@¶¾?îÄ@ó ¿?2Ô@lÈÁ?•d@WÆ?ð`@Ó*Ë?8¸@î°Ð?C: @»XÖ?ÑÊ@(Ô?‡ @_ÛÑ?€@N&Ð?Â*@ðæÎ?e–@ÂÍÎ?]!@\;Î? @´Í?ò @ÜÊ?$˜ @•¨Ð?‰@-÷Ñ?D@È>Í? m @W¤?¸èV@¨2¢?Ã~W@·å¡? S@o‚¢?mO@h*£?­hG@AN¤?f?@€z¦?ÍW6@K¦?=ì5@ ©§?4ö7@˨?ÆÍ:@$,©?°7@Ç©?ŸO7@þZª? ¨;@îÏ«?r}:@òg¬? …<@ù|¯?Dý:@@ű?ñm:@2s²?.<@±¢³? ³:@Ÿ/¶?ÿè:@šZ¹?Ã4@Pº?*+@v¼?ï ,@ƒ]»?L -@—@¼?qµ$@¤¿?Ú±$@ÈŽ¿?u$@‹ÜÁ?1£@ƒëÃ?ž“@ð[Å?O=@†jÊ?ót@0Ð?] @íÏÓ?K¿@mqÓ?Æ@ÙÙÐ?e'@ºÉ?«C @û|Ê?2y@¿ðË?ö @8áÐ?”£@!sÐ?ì¨ @j§Ï?’| @­µÏ?D @óûÔ?) @¢xÐ?Y @½?¡?ÚŒO@™š ?))N@->¡? ®N@”¢?ðÕE@H¤?a·?@%y¥?©9@D¦?é3@fí¦?Ô¸2@Y¨?ã´4@.m¨?â]4@#a©?“5@‡©?Ð 9@-«?¡1;@×j­?^^=@mR¯?Äb:@˜Ñ±?™=@ª\³?g8@᪲?=@Zºµ?Ÿ8@cD·?–Ø6@-D¹?ׇ0@Ý´»?D+@^½?$[+@-¶½?`¿%@ÚÀ?Ù!@tÚÂ?d³%@ÿØÂ?+@½„Å?Û@ BÆ?°J@ßÊ?Ë—@’Î?v! @ÐÑ?z* @`ÞÐ?‘«@ÝÌ?ÙA @¯çÃ?=æ @€Á?¬ @êÊÅ?cz @‰Í?!ë @5DÒ?ûœ@­Ò?Q @R8Ó?è†@³Ö?ñpý?ÞSÖ?„Aþ?ñ  ?ñC@¸’ ?ÔÎH@¾î ?W´H@cS£?dA@Â¥? ):@‚Ÿ¥?ó7@ƒ¦¦?vÍ3@¦¨?“4@ñ¨¨?[F3@1÷©?˜2@O¾ª?D\4@¥r«?¼Õ5@ßˬ?öI9@§á®?©9@P±?ëÞ9@=³?AÒ<@д?Êí:@[´?—9@vµ?$9@ó[·?òÀ4@JH¹?®N0@U̼?YL+@“ݾ?a}$@ÂëÀ?¯¡!@>PÄ?x3 @œzÆ?ó¸@RÆÈ?bØ@¡äÊ?4÷@2,Ï?$ÿ@XmÐ?õ@ÄÌÑ?Ã:@Ú¥Ð? @õ(Ë?6@xxÅ?†8 @ñ¿?“ï@e˜Ä?óÕ@2Í?Z @}Ô?©@ãÖ?rþ? ï×?bøü?ŠŒÚ?êö?4c×?ñ?äŸ??u@@òâ ? >F@tÒ¡? ÇB@´¤£?Š¢;@∥?Œ@6@#ù¥?Þ 4@[§?î46@ç&¨?˜Ý4@š¨?d4@¯Ü©?‚5@hô«? c5@]­? C5@³½®?kµ8@Ý"°?Qð;@6‘²?š<@†t³?üD?@ïj´?&Y=@›Û´?ñ7;@ L¶?^7@¾¶·?Êœ0@?€º?Ü^/@¾? )@±|À?—¤#@ÆÂ?"!@•{È?Ý7@¢?Ë?¤>@—ÄÎ?âç@O­Ò? @¸ðÔ? x @Á(Õ?6 @\©Ò?S7@¾6Í?{P@'„Ç?M @êÅ?"@hÈ?ò@|­Ð?ŸÎ@5PÕ?Ðï@„.Ù? @TíÙ?0Áý?„àÙ?… õ?ÇVØ?2¸ñ?w ?gÜ@@ª"¢?„VD@z©£?¾B:@Ù¿¤?`6@b¦?M1@±§?êW5@Ø(¨?o5@d7§?áÊ8@æ@¨?J¨5@Ø*ª?&Ì5@bš¬?þ5@¥®?D¼5@[°?z¯6@U ²?ìå<@Ó5³?«Ï=@ßµ?6é>@&µ?²¥<@¼â´? Ö8@®õ¶?¾0@dº??ÿ,@­»?Y´-@ܼ?)@ï)À?^&$@“Ä?G@ÓˆÉ?ÝÊ@ Í?æN@ÛËÒ?¼ø@›Ô?„@&×?8þ? @Ö?öp@x‹Ò?š“@ÐhË?$ @-èÉ?š@¡FÎ?Mó@’Ó? ‚@åÖ?ÏÑ@6ÅÖ?y[@^rÔ?oo@…ÔÔ?2ÿ?ù{Ó?‰×ì?0¡?C?@£?°+=@!Ò¤?o£5@áË¥?¢K5@2‹¦? K6@Ô­§?2Ü7@a§?ü5@ /¨?M7@r©?‹º6@3x«?Q"6@hf­?ÊA8@Èõ°?Vh5@T²?øE=@N³²?xð=@×µ?W">@µ?&Ä>@[t´?§½6@Lfµ?ã×2@i¸?5-@óº?¹]/@Ž8»?ŽÓ*@åO½?ô-%@…WÀ?9×@‘¥Ã?Á@£[È?Õ@hmÌ?v @aÐ?)_@A Ó?dú?óÖ?Æ®ð?v`Ô?S•þ?–~Ï?H€@¶ÃÎ?E@Õ­Ó? ì@Ÿ2Ô?l @„”Ð?®@ÄïÎ?óáù?Í?ÈÊú?æÍ?Ó¢ó?…NË?~nç?œ€¡?¶Å<@tÓ£?T˜6@h ¥? 5@þߥ?-›7@Pœ¦?§Ò:@û¨?g’7@І¨?o³5@ßf©?As8@ˆõ©?,œ9@”§¬?3˜7@Éò­?å9@xi±?{8?@y³?pm=@§Š³?¨âA@Ä…µ?@˜>@özµ?IÝ8@ņµ?~¢2@‹}¶?iu/@°l¸?ã³,@M!»?‡'@…u½??!@5r¿?"H@^À?ÌÚ@ÈWÂ? Ó@Ö!Å?ê\ @Þ)È?~v @{ŸÎ?8æû?GðÐ?ä«î?Ì ×?Æ‚ï?7*Ó? F@^VÐ?ûT @*QÓ?, @IÓ?"¥ @TÍ?Ûª@höÂ?ßð?3´Á?ù¶á?NõÁ?¬mä?CÏÃ?¯çß?$Ó¢?ÓÜ:@˜Å£?·8@VÆ¥?Q}:@(¥¦?|·<@X§?¤)9@Y%©? g5@®©?Á3@­ ª?å-:@ž¬?z¥;@I‚­?„Ø<@g°?À<@ék²?ýL?@ÓK³?`Ñ?@Êõ´?ã&@@·ÿµ?¼?éP$@ô/¾?ad#@ø•¿?9Ü@|â¾?¹9@¤¿?ÂH @¾”¿?à @©ÆÁ?wn@¸ Ä??0õ?ÝjÌ?öç?›—Ò?ª7ì?ç`Ô?ë¼ö?Ð%Ñ?@ŠdÒ?+À@_Ñ?+è @õË?Qˆ@ÎV»?k†é?}¤¸?UªÞ?NV»? ˜Ø?\ô¾?%wÖ?,[£?£{;@—?¥?=@ È¥?Œˆ>@ß[§?´U=@øT¨?¨ì7@-ß©?Rñ.@³Vª?åc3@?ÿª?~ƒ6@ó®?×6@øm°?Ú>@[”±?ä…=@8è³?>Ù>@·.¶?Öî=@§¸?PD<@½k·?r06@¸?+2@ø"º?Ñ3'@ðc¼?&Ä"@º\¾?œº"@æÈ¿?z¾@}=¾?bØ@ó½?Þê @Pr»?ΰ@Éü?Ø¥@(Ç»?Dˆù?®¿?ƒ5æ?ƒÆ? ²ä?Ñ?"³ä?Ô?zë?(hÐ?]N@I#Ì?ýå @ñyÃ?WE@—¹?jæñ?Ö|·?êwâ?Fƒµ?1)Ø?eþ¶?.SÍ?:_¥?6U=@R,¥?—øA@w¦?×z?@ùŸ§?Në;@£½¨?á5@.ú©?$’-@‚+«?©,@î'¬?aÆ.@'|°?Îô6@س?7>@γ?Ž*A@œµ?tK?@BJ¸?h ?@D{¸?æ=6@x¦¸?c’0@æ%¹?¼I(@Ž<¼?LÌ @'h¾?Û@´À?ìö@öÞÀ?T#@~¾?Ê– @+Ôº?â·@Tº?©Ò@¶¹?ÎOö?¬l¸?Ø(ì?òĺ?îß?ˆÃÅ?õ:Ù?3›Î?Qß?MÊÏ?.óé?·ÊÉ?åé@eÏ¿?ra@¶»?QÏñ?ý´?Ëõê?NÞ¶?íÉâ?±:µ?Ë’Ö?ÞW¦?´]A@%œ¥?ߣB@új¦?%Í>@Oü§?8û:@©l©?ñ,3@玪?[;*@¤Ã¬?Es+@%Ÿ¯?òÜ-@dü²?TL:@¼´?‹>@êzµ?º$H@¨·?­ÔF@Ò¤¸?=â@@Û¸?Ã7@²¹?Ùš.@"º?gÏ!@)£½?¡@V’¿?ŠB@RgÀ? k@÷¾?‚ @7ýº?rw@zb¹?”*@Oî¹?dáú?DRµ?Êõð?=-µ?øÁÜ?퇾?‘ŠÔ?‹ŠÇ?ÊÚ?ÙBÍ?¬Yà?#Í?‰ìö?2¿?Uû?Hº?!£ë?‚ö¶?X%ã?êG·?#öè?åa·?ïß?€¡¦? c>@ Õ¦?|Ô@@¨?ê`9@š[©?ôY7@?øª?½M.@o’¬?J‘-@ôW°?߉1@¿|²?u(:@w$´?ñ=@…ð´?D@:9¶?#×M@“ ·?KàD@$©·?™¢9@Õ€¸?°2@Q¹?Ö(@§»?R«@K¿?t@°«Á?˜¥@©ÔÀ?Uú @œ‹½?^ƒ @U·¹?±ƒ @ÌŸ?K @É¢¶?~iø?†´?.Hç?FĶ?Ðèà?7Í¿?–Ï?±¸È?YòÕ?ÀÄÏ?9ðä?ŸKÈ?kVç?k¿?ÑRå?!!·?p¢à?CA¶?Þìß?dµ?¯¬ê?eݧ?|<@Ra©?s^<@p"ª?“Ï8@‹²«?¨6@ÁZ­?’3@ã°?3@çX²?$9@O7´?üy=@ Ü´?Ï©C@ñµ?ûKL@Þ¶?“ËD@ßc·?û‡<@uG¹??æ8@…¸?@d0@æž¹?¡=%@ã»?¹"@çÁ?‚0@mÀ?»^@Œ,¾?¾@Ø×»?•ê@,=¹? § @Ê·?f@P:¶?qý?Ss·?urò?(@»?)Šà?& Ä?Šv×?ò¾É?ý}Ò?© Ï?©Ö?ëHÄ?%Ù?Jh¾?ÏÆÜ? 4¶?åY×?CO²?p¡â? ©?¥×<@«'«?Ò:@™‹¬?†ù8@c|¯?H<7@H°?.K;@7²?Ø8@øú²?³ª>@´?˜-C@èQµ?+ÒL@®¯¶?—ãH@˜–·?Œ¹C@÷º?Æf?@xº?374@ª¹?‡Ü)@|º?Üc"@‹+½?Úì@_àÁ?Y@SÀ?#¢@1^½?í\@0ò¹?†~@ž0¹?ÞÞ @¸F·?2è@ÕÓ·?wm@äù´?‘Hõ?k_º?Óë?õÂ?z‹Þ?|©Ê?#Ú?¤ÄË?q_Ø?¡BÃ?[ÀÛ?œ(º?XÞØ?¡-µ?$Ø??4«?xC:@$’¬?ÆØ:@—Z®?4Ú=@¿±?.;>@—Õ°?û\:@Hþ²?P5=@ü³??D@ý+´? ìL@±0·?ØH@§;·?¤”A@Šð¹?<Ë@@§Ç»?¼;@S»?±¹/@}®¹?@§$@Y>¼?ËÇ@$ÉÀ?aÐ@Ç%Â?¡@¸ÁÀ?:e@%A¼?+¿@Öwº?—c@BE¹?U@ˆ±¶?^î@س?çø?E…²?¨ó?¹?–Ìð?;ýÅ?ïlæ?¬ŠÏ?̘×?ÓvÌ?9^Õ?ÙÃ?îïÚ?&£»?ÄðÖ?­?H <@.¯?§=@yÿ°?4w>@$8²? -=@Ýà±?w>@ûDz?ˆ®F@Ô¹³?ÓÓK@¶? …M@‰P¸?¤êD@?çV;@­î»?\†=@|)¼?á9@„nº?J*@‚º?íG#@Ä"¾?R1@é¥Â?‰@êÊÀ?÷@Âò½?ø:@cÓ¼?Äi @‘º?Iì@ù¹?ú_@ž“µ?Æõ?w´?4?ï?pµ?’Òø??O¾?Ìñ?ëwÌ?¹â?˜Ò?K¬Î?žÎ?lÜ?ún¾?@ÓË?8`®?‰‹A@+à¯?A?@œz±?»<@@TI²?®C@¸²?éH@—³?*ïP@ Ìµ?‘¬O@+a¸?†bF@kƺ?®µ:@¼?‡`<@©¢¼?ë?@¢T»?71@•Iº?xÈ$@XŽ»?´ @÷zÀ?÷è@ÏmÁ?é@@ Â?AY@ì¾?|™@sK½?tì @½?F@çOº?]Xø?ec´?h‡ì?ÓVµ?–ìð?X¹?AYö?ÃÇ?8‘ä?!œÑ?åÙ?zêÓ?+Ù×?ãÈ?µß?§å¯?.BB@i°?DË?@ º°?ýI@#³±?Ÿ‚L@^²?i±Q@[µ?ÞU@¥-¸?øsK@>‰»?h\@@hv½?5Þ:@o¾?ÅÙ=@|ç»?`:@mº?HÉ,@ ~º?ôy @š…¼?å€@í¿?ýf@W¼À?dÜ@c¿?ÖÊ@É¿?–@tݽ?ïb@l¾?‰@{8¹?~Nî?Ñ\´?$wç?¿?¸? Îö?°MÃ?»Ñö??øË?çµÜ?O™Ó?<Î×?ÞoÎ?3'í?ö°?=?@'8°?ŠªJ@s¾±?ðqM@Ÿ¾²?_TP@Üð´?=:Q@Qó·?×ìM@Z ¼?}A@Vk½?ƒn=@L›¾?‘ø:@\%¾? Ñ;@…—»?P5@?êº?Æó)@ ð¼?\à@¢¾?íY @ ¾?´û@€Ç¾?r@©¯¿?!–@ À?°” @é,Á?½ @ƒÝÀ?ž.@õ`»?o±ï?¹¼?Ä6ï?-ÖÂ?™ô?qLÌ??Ýå?ÄÒ?è9Ý?×8Ë?Ø3æ?šÖ¯?1ºI@ún±?‡‰Q@E³?õÔQ@&ª´?2V@¥·? ÊN@i$º?Ï–F@Ät¾?ª?@½¾?Šx;@"#¾?xo8@<ª¼?åŽ6@·ºº?§@3@ -»?u“%@±¼?H3#@¾½?£ #@¿¦¼?oÈ@äÁ?@êÂ?D× @òÀ?.J@§ËÀ?µZ@˜6Â?ÄÏ@&ÆÂ?æµý?ZœÃ?c‘@väË?Èö?iÑÍ?ÛÞ?…Ò?êžé?bs°?ÿòT@&ì±?n@Ö=¿?vØ;@Íy¾?PÀ4@û½?D4@—»?™‘6@¿òº?ú.@ ¼?¶ê#@p­»?)(@´Óº?A5 @>á¼?ÑÌ@~$Â?¾©@ÜÊÂ?±Ë @ gÁ?Ã. @ÄÂ?œa@‘*Å?«]@1üÆ?•@©$Ê?kÙú?£äÊ?õôï?-CÏ?Ê‚â?‚°?Iq]@ŒÆ²?+c\@h?µ?ÿ(V@&t¹?äHD@3½?µw<@|¿?lî7@T¸¿?#4@‡î¼? ™0@¨–¼?u74@׺? P4@Äź?÷­,@…º?õø%@¡ º?`¡"@^ »?×7@&«¾? @w"Ã?c@¸–Ã?‘@HªÅ?ØF @Î÷Æ?Qa@…ñÅ?ì¨@üÚÆ?'@ È?Uþ?±Ê?jtû?äc±?5a@f2´?…>V@ÝÏ·?BjD@ê¼?\Î5@¤›½?¥Â3@Ë0À?Q+2@ #½?l~0@Ã[½?÷Î-@¿t»?G…2@ `¹?„ç,@g5º? !*@üǸ?iB"@$Eº?ëÎ@K¾?²ø@*}À?/@nQÄ?ŠL@¨âÄ?ݧ@ôñÅ?æÝ@Ÿ?È?;l@kÅ?ãÖ@{?Ä?ëÞ@lÅ?½ü?xJ³?¸U@x—¶?«ÄG@© »?—Ý3@PI½?B4@˜¾?~Û1@;½?Û/@Ù¼?Té.@‹>¼?P/@Øè¹?-0@,G¹?;á(@QY¹?£Ä%@[Yº?$Õ@׸½? 2@žñÀ?„„@IuÂ? ±@whÃ?Þ:@AìÆ?` @obÈ?N“@º”Ä?žtÿ?IEÁ?Ž@@©À?GY@þǵ?1%F@¢W»?ny5@Ç7½?¤ð5@Ô¾½?hÃ3@É7¼?;/@Û|»?Ðt/@ô»?‘ /@ÁѺ?BÚ0@²÷¸?ȵ,@µ¹?û‘'@%÷º?ê*#@a’¼?2Ò@ÆÁ?…Î@KòÃ?ìØ@ îÂ?žZ@ ¤Ä?ê¿ @é'Æ?Ì„@UÍÅ?³„@û¿?¡.ÿ?J»?b@Tþº?¸ñ5@z³½?B£2@'°¾?ë0@ï+¼?~0@[¤º?²R/@{Oº?™/@*º?Øí.@©²¹?j´,@[9¹?}>+@Š¡»?‹Ë"@?¼?A@Û¯À?Ø@§Ä?è_@Ö8Ä?Êî@aOÄ?r@û'Å?8å @MlÅ?ó@÷$Â?]óú?x¤¹? Å@½?ж2@¡ù½?2G1@å¼?œ½,@dº?ð.@ Ø¹?Þž-@E3¹?1Ø.@ ¹?a—)@á=º?œB,@Iã¹?W+@“½?1š@ˆo¿?´@_1Ä?„Ž@pNÃ?2@HåÄ?zu@Ù‹È?0± @xüÄ?Ч@ŠêÂ?4@á»?€o@½@¾? 2@>à¼? <*@µÀ¹?„*@³â¸?‘+@¤h¹?^D+@rG¹?Ä0*@•g¹?[O*@ƒuº?'.@ܼ?%@%@-y¿?-l@1ÈÁ?õ@øÃ?Žž@ô®Ã?îû@»Ä?´Î@8þÂ?Ò @{pÄ?š@³±¾? !@^}½?£½)@mº?iV(@R‚¹?u‹*@iø?«X+@θ?„=*@Í·?¯-)@h<º? -@_»?š¶(@µ±½?w4@mëÀ?]ó@¼¸À?¦ˆ@,Á?Π@ÂÃ?È<@•ûÁ? ÿ@@$Ä?†[@ÜÁ?ß@ÌØ¹?*@Sµ¸?g+@sf¸?yq,@¸?µU,@Fí·?ö+@jÕ·?0Ô)@‘º?µæ+@Ű¼?‡$@2Ù¾?Ì@@ŸÒ¾?³@‹9¿?Ȭ@åÀ?`Ö@ÃnÁ?8 @µ Ä?¼@z(Ã?ø´@¾¸?èé+@‚·?ÏŽ.@ Ô·?>r-@Td·?:5,@)-·?½)@·h·?–+@1´º?y)@ â¼?zÌ"@¸5¿?@ @ ¾?X2@÷¿?Ê@™-Ã?ÈK@ýÛÄ?QS@—'Ä?b@‚º·?d-@ê·?ýÑ.@9¶?Ny,@*-µ?Ëí,@Ý«µ?‰)@—Œ·?*@þþ¹?LÜ&@Cç»? X@¹Õ½?YÇ@b ¿?%n@KcÁ?>l@XhÅ?ùö@¤aÅ?ÞÚ@Àéµ?˜'/@å´?v3@›[´?2+@= ´?ÿL+@ï´?šY&@΢·?ï6$@óm¹?mQ@ýé»?x'@wʾ?¥\@ÓÙÀ?Ö‘@¿:Ã?jF@í7Æ?´}@¯^´?Ä1@¦¼²?å‹1@ w²?jL(@v7³?”%@hǵ?áè@Tï¸?©©@ŠNº?ëÔ@ÿؽ?H@J*Á?«ç@ê±Á?æî@;ÞÄ?Ôo@à²?l_2@fú°?ðd.@£ ²?‘Î"@ËØ³?Õß@¹t·?‘@rº?£ˆ@júº?ç†@`]½?Y@2ô¿?ô­@¥Â?è@à ±?v0@íž°?n*@ a²?Íû@y¶?K€@×=º?vŒ@7<»?pS@[X¼?¡@8(¾?jx@D"Á?Íû@‹8¯?ÑÖ,@1Y±?„²%@aò³?’|@uÅ·?ºÂ@Å_»?í@üª¼?[ˆ@,´¾?”t@ÞÂ?C@ɼ®?mý)@~ ±?ë{%@)µ?¼@~l¸?Ä@ú?Df@|Þ»?âÁ@+w¿?d@­®?cM*@²á²?«u#@àµ?Ì}@LƸ?'@òfº?Êr@‹`½?î@52°?@_)@¢“³?kF"@6ض?þè@kx¸?Õ@ÊK»?ÃÜ"@ÿޱ?¬/(@­´?sî"@Í1¸?ù@Hs¹?i_@~Ó²?§Ä&@­Êµ?t!@ù¸?žë@°g³?|ú$@WO¶?bQ @]´?“#@Hf¶? K @Tô¶?»#@ø7¹? ¾ @vg¼?Jë%@’¿?ܨ&@jÀ?êß#@œÁ?az@®ÃÃ?6Ÿ@1ÇÄ?í€@íMÃ?Þ@™±Ã?iß@ lÃ?§ @ÚoÂ?­v@ÈãÂ?V@Œç¾?ïi@'|·?°Ç@ä9³?'Ú@ú%¯?šö@L¶´?ï ú??K»?9 ÷?™!Ç?Åß?$¨Ê?þnÑ?×jË?Ø.á?îîÅ?¸øã?)ÆÄ?Û÷?UÙÈ?îÈ@¸›È?õÜð? vÀ?¸9á?7¹?!ÒØ?q˜·?¾Jé?òk·?sø?çü¸?f^@ºÁ¸?‹ý?"d·?9æ?e{¹?ïà?¼y´?‰iØ?—ñ¯?Ô?çì¹?|øÞ?Û=Ç?LÑò?Ò?lž@¦]Ô?ÎAú?—$Ô? ûï?LæÑ?¶mü?SòË?fê@+ÙÁ?ë… @¨Ô½?UJ @+T¾?°5@,V¿?QŽ @çϽ?± @O7½?¯¿ @'zÂ? @ÔÃ?)å@& Ã?^ì@‘{À?ŒI@Šr¾?/§@¾¸?M¢ @Eк? $!@íõ¼?ž{%@†¿?¾o+@æhÀ?õ(@à Á?=â%@AÊÄ?š@é{Æ?+é@îÄÆ?ã½@[”Â? 3@lœÁ?¥Œ@a°Á?&í@u¤¾?RÄ@Ú¼?Ä@`¹?¢1@P”µ?<‹@R’°?Qmí?|¦²?¯Ü?ãrÀ?6 Ý?w‚Ç?Í?çíÉ?nÇ?DÌÅ?aeÓ?⨾?£Né?2eÅ?kü÷?/É?Þ´ô?N†Ç?èöé?š×Ã?G*ê?øÔ¿?óã?´º?W5ë?K|¸?¹ ö?¦Fº?§Ã@Ôl¹?ø¦@­7¹?60ô?¡¸?`Þî?ë ´?Äð?}J²?‘Nã?ú·?–²ï?ŠÂ?%Uö?ÄÌ?[@îÓ?Ðd÷?xÄÒ?ïì?>Ï?b—ò?Ì Ç?‰­ö?ƒ`À?7 @´¡»?µ@båº?”›@„¹?|Ž@Ƨ¸?Ë× @ÞDº? ¢@ñ¹½?fÐ @K˜¿?ÁÍ@‰âÀ?7B@o{À?D!@'+¾?ë,@«Q¼?é`&@òe½?jß(@Ò,¿?³Â+@Æð¿?×x(@Á?ƒZ(@.‰Ã?6ë$@!Å?2¡@’RÆ?ûÄ@Õ"Ç?øç @:À?IÆ@z_¿?`{@miÀ?ö @j”¼?ÒI@$â·?´ìú?ß­µ?×}ï?J´?DãÝ?qH¸?‚Ï?ÛòÃ?™¾?°íÉ?iÐÅ?ÙÈÌ?‘·Î?{<Â? 1Ô?ÆfÀ?w‡ç?nÄ?í.ø?·Å?+‰ô?ÙäÀ?ì?Ô~Á?œ]ç?fæÂ?ð›á?~ùÀ?Ùxæ?°¼?Ïñ?ð0¼?Jný?'}½?¡óû?ÚÁ»?2—ï?µÍ¸?)ì?¼Åµ?û‡ë?(‰µ?(ä?]x¹?Zèã?ºd¿?Šé?ûÉ?S”í?:†Ñ?C9ó?·qÏ?~ãí?ŠÔÉ?Õî?©©Ä?QÑì?'¿?Lñ?°»?²ö?â»?È ú?â¸?0º@èS¸?I @\¸?’H @“H»?,·@%¾?“¨@ôǼ?4ô@gx¿?µÑ@Z/¾?£@„L¾?gÔ+@ 9¾?*·-@ÚŒ¾?2)@Í%¿?÷Õ(@+Â?’(@åÑÃ?V®@õÔÆ?¬ö@^Æ?\@ÌèÅ?+ @ÖÀ?$n@9¡½?K[ @Fl¼?¿¿ @žþ¶?ëò@#µµ?Êñ?.¨µ?Éhâ?®2º?©#Ã?p‹È?|U³?NÌ?pÉ?’ºÉ?DÆÉ?‘f¾?Ì÷Ò?ó Á?lòç?\Å?m˜ñ?!н?Žê?jº?ÄÞå?Ô«¸?Æ„æ?%ä»?®<è?Â?'öì?i=Ç?W|õ?Å`Ã?t@’w¾?S¦ø?:éÀ?´ ï?Q©¼?ç#æ?Ùö¼?O–Ö?S“»?×?ỿ?öÐÙ?Q`Ê?b¸Û?z¶Ì?¨ä?^Ï?¿äê?#ÓÎ?¶êï??9Å?ërñ?ײ¿?fí?¬C¼?¬mó?V»?x¡ô?ŒÝ»?âvü?×¼?×!@V»?ÐÐ @w¹?h’@×¹?«@õ½?M; @®ï½?3 @Ió¼?a@ ¾?è±@q ¾?X 2@V,¾? !3@d‚¿?+/@t¿?:%)@6ËÂ?›£#@Ù>Ã?ݹ@0Å?r@ÇJÆ?°s@{»Á?Cj@…r½?¸S@ô©º?¬T@Xå·?ø¾@gÞµ?õ_ý?ãô·?Ñðî?¶K¾?à°Ë?Ç?!·?ùÊ?#ñÃ?hÑÅ?·ËÎ?7¼?î¼Î?¹ºÃ?cà? ÞÆ?ØQá?UÀ»?ó_á?¹?^ˆã?<¤·?µ…ê?œC½?8,ñ?›¡Á?Ûªù?5>Ã?œ@È/Ä?p@®`Ä?í @(„¿? î?õ ¼?Úìß?šQ¿?›ÄÐ?ZãÂ?šVÄ?Œ”Ã?–Ë?sÐÉ?iÞ?ÓtÍ?·Öç?ý Ï?äDê?&@Ê?flð?ñbÅ?Y\ö?B£¾?þ#ø?n¶?§Ñó?œ\´?%&ø?u;¶?h©@pS¸?&„@¬¹?¸a @¦õ¹?ˆ‡ @ͼ?Á@žŒ½?%ë@°¿?D„@ò¢¾?Ú`@ÅR½?µ™@i3¾?L6@Éο?&23@½ŽÀ?ŽH+@;rÁ?j'@n’Â?õ"@á$Ä?†- @¤$Ä?ïÒ@ÂlÅ?8„@€}À?:›@I<½?β@å»·? £@¾†µ?V–@ý÷¶?½î?{½?—“Û?„¤Æ?õË?çÇ?pÁÉ?ÒÅ?Ù?¿ò¾?[ÞÏ?ìÐÂ?ëgÚ?“–Å?Åæ?‡¹¿?öÅá?@x¸?phê? ½»?}ø?¡ÚÃ?„y@&Æ?ø.@mãÇ?Zœ @I|Ç?Yy @ÛtÀ?_Â@ŒÛ¾?Æù?AÕÁ?kä?ámÄ?•Î?µ È?òÉ?¦uÍ?.Ã?*Ï?’­Ó?âŒÌ?M±â?6ùÌ?ú£î?ÒîÇ? ›í?GÃ?ÓBþ?ª3¿?)"ÿ?rŒ¶?Hëý?+ ²?â û?¡£³?`{ý?˜›µ?x@Ze·?H† @d^¹?³ @U»?=Q @ĺ¿?Å@]G¾?ÿ´@$¿?ê@ºp¼?Ï@á"½?6h3@>xÀ?êþ+@g:Á?óe%@Ä›À?åˆ@îZ¿?‡b@:Á?¶ @Â?7°@•àÀ?Û—@.”À?Ø0 @âE¼?–á@.½¹?ë‚@–%À?…Ìú?\ÝÄ? Ø?òHÆ?s Î?èûÇ?‰jÍ?`Â?wDÐ?†­Â?EüÓ?KÄ?¢LÚ?Í4À?Kß?S¸¾?"ðã?'«»?f‡ñ?¸W¾?X:@-RÃ?àñ@ \Ç?ä!@7’È?­ @þÇ?:‘@}fÂ?2ÿ?uZ¼?‡´ì?ÍØ½?j³å?Y˜Â?TlØ?„<Æ?ÔŸÌ?„~Ð?¸7Ë?9ÄÍ?:ÞË?ZÇ?<Þ?\È?Mrè?2½È?éó?“ßÂ?#w@rο?D}@È‹º?4ª@Îd·?‘Áþ?ýÓµ?˜E@¿Vµ?=Ï@ª¸?‰ @@¹?„¡@r5»?Vf @ê­¾?º@)À?fÛ@Gf¿?þµ@¢b½?é@GÀ¿?X{,@±Á?Ý(@¢Â?ÿ% @;à¿?‚@»À?€•@ï_À?õ"@îy¿?ð˜@-¬¿?¨@§$Â?* @a[À?9´@¸¸Ã?’Iö?í¾Ç?0áá?qUË?fÒ?ÇCË?c;Û?ŠcÅ?«^Õ?…äÃ?çìÊ?åX¿?]IÌ?W½?ÈrÍ?%P½?9HÔ?¤À?Ù5æ?û Ã?ÆYû?§^Æ?…Ì@ÙðÉ?í5 @üxÊ?Üq@”›É?‡} @ãÂ?¤¼@ö§¾?2ˆð? ¾?Éç?§c½?»"Ö?bkÄ?hoÃ?¯êË?1¼?¯Ê? âÊ?5SÅ?+ö×?V;Æ?´è?6ÏÄ?D‹ù?›HÃ?ïPú?½‘Á?è×@&{¿?‚jû?‡ý»?+¿÷?R9¹?vF@BǸ?£@jj·?f@M0¸?¬ñ@›º?sR @ƒm»?î_ @³Ÿ½?ëå@æÀ?ò©@}¼?¹„@yÀÄ?¸@à Å?_È@¨…Ã?3v@5ÑÂ?%²@÷0Ã?¾3@,xÁ?¹F@FIÀ?al @©oÁ?üH@¤iÃ?˜…ù?D‘Å?Ç'è?µ9Ç?çÞ?ñ Æ?¥Ð?ܰÆ?“Î?Å?dÞÉ?ô!Å?2€É?€x¾?¨ïÀ?¡u¿?£åÌ?Kܽ?Â`Ñ?s¿?ØFè?d^Ã?2þ?À0Æ?[æ@µÈ?8ò @!'Ê?È$ @³ÊÈ?Z„ @^ÃÅ?“@ZÃ?JZó?Æ"Á?Ú·é?,à½?)äÜ?v#¿?Ä'Ñ?•Ç?ŽÔÈ?–Ï?H]Ð?&gË?Þ—â?áóÃ?þðñ?z2Ã?gc@[Ä?Öê@{tÁ?f^@l¿?ŸVú?‘7¿?úö?ÿT¾?N¯ú?¿½?„Œö?\ñ¹? @9’·?å@ ‰·?nE @.º?AÄ@ûr½?äG@š¾?šü@—Dº?Q@ç¤Ë?eH@_;Ê?„ @ jÈ?wa@½ýÆ?4ª@Ä?Ö6 @k Å?åü @Ñ`Ç?†@"âÄ?N¼ù?âDÆ?ÕðÞ?È?^MÈ?ÏÅ?”UÃ?ÿhÇ?\Â?± Ç?±Â?Ä?°9¿?¼Å?èÈ?„S¾?f’Ô?¦Á?ßÊÖ?èyÃ?zší? zÆ?bÊ@möÆ?`,@U•È?} @+;Ì?)„@cýÊ?†Ö @(Ç?p @‘[Â?ÐÅ@´mÀ?Ãüø?¼¨Â?Qæã?ÉÂ?íÌ?ójÃ?T«¾?ê'Ë?QRÇ?ÒÇ?ÖW×?Á?k'ë?)Ö¾?6@o Á?n@¥ªÀ?DT@€I¿?|)ý?Ý9Â?Põ?­ÔÄ?©Žø?#í¾?’Lü?I¹?Ìuý?aß¶?ª@|M¶?ü @*)·?3 @'µ»?´®@[W½?þÛ@ɹº?]+@vÌ?–k @=PÍ?Äw@qúÌ?¶H@µË??¸@É?…Øþ?îãÌ?)áø?i‰Ì?¾Êë?ßáË?Z~ã?ùÉ?k5Ï?«fÆ?Æ/¼?ÿ Ä?:^±?ƒéÂ?{¯±?‘8Å?x£À?ÚÄ?¦sÊ?,!Å?®,Õ?_4Å?Cé?,È?L¡ô?KÞÆ?¬@®Ç?4 @}·È?ld@£™Ë?%@‰Ï?æ@ÐÌ?d&@"È?¨N @ñ‘Å?J“ÿ?j©Æ?P í?!jÄ?‚°×?àÓÃ?·À?>…Ê?'À? mÉ??¾Ú? OÁ?†ì?2ð½? ý?Ð~¿?”{ @usÁ?Ú²@XŸÁ?k!@y!Ä?ă÷?ÐpÁ?¡'ü? 7¾?4Öý?Cƒº?«@›œ·?‰\@(V´?Ìá @»“´?žD @(º?Íó @#½?èÂ@¾Ê»?Fó@ýMÏ?V6@+ÆÍ?‘´þ?ÕÁË?«‹ó?ŒÎ?,ò?š¶Ì?‚Ôå?¦tÊ?›®Ö?"èÉ?öÓ?«ŸÈ?ÒÈ?à2Å?Î<Â?hvÃ?m²?e“¼?«4±?°£¾?ñù·?(ÜÂ?²Õ?½ÛÈ?úAö?n]Ë?xš@¯Ì?B9 @×1Ì?QÑ@[wÊ?¿c@ãÞË?¿†@ ßÌ?Vƒ@äãÍ?@»@54Í?X.@þÆÈ?àò @j[È?Š@W¨Å?¶)ø?¦êÄ?»ôã?êÀ?–€É?Ë Æ?îÅ?¶uË?÷|Í?û4Ã?-Òì?¦:¹?zÿ?hó¹?Þ™ @m½?Ép @åi¾?ŸP@釽?Þ‰ü?Ú¿?k<ÿ?fo¿?ÅW@U£¼?ýQ@»a·?ö @rU´?‰A @ØØµ?°@q…¹?ˆ!@ų»?Ñ%@ýš»?Á"@uµÍ?§:ñ?J0Ë?äç?÷äÆ?ëPÛ?Ê? âÙ?ÎkÅ?G^Î?ØüÃ?D Á?¾eÁ?„ÅÃ?àÁ?ÂxÇ?–1À?¤À?“{¿?Ђ¿?âæÂ?·Î?v Ç?»ç?xüÉ?Ϥ@þÂÍ?m(@ï Ñ?i@µ[Ñ?¶²@÷AÏ?W@«hÍ?oƒ@šïÍ?a¸@ÆßÍ?«Ô@`Ë?ÞÒ@ÄÉ?ª1 @çòÉ?†ˆ@ÒÊ?wÿ?Ž,Å?cì?Ä?h=Ï?€_Æ?ÏÃ?¼¦Î?°êÏ?æÅ?xüØ?‘7¸?Êãù?ض?‘Ÿ@‚%º?| @¸¼?CH @UǼ?ôv@¥d½?´M@„j½?¥"@¸]»?w @LŸ?5@5…·?4@Q¹?éY@?l¹?¹…@¤¹?®C@»µ¼?ùE"@õHÄ?º¾è?c]Á?†Šá?JÔÂ?ðt×?"§Á?Q•Ô?7?¿?òÙÌ?-ç¾?BZÍ?LÅÀ?¢Ô? ¿?+CÐ?Sy¾?=k×?Á?)Ûß?˜$Å?â|ñ?‹¨Ê?¢’@®ÓÌ?Ù‰ @T›Í?K;@Þ™Ï?’²@ÑôÐ? [@èáÏ?pQ@y!Ï?ÇÛ@;GÎ?@¹'Ì?“ö@øoÇ?W @¦°È?Ájþ?7­É?n@Ò¾È?x9õ?yÇ?„já?|ÙÉ?¯#Ó?sXÎ?”Ö?3ƒÈ?ÅH×?,g»?½!à?#‡´? »þ?Ÿ´·?íµ@»›º?ÿÜ@åê½?×ó@˜ÞÀ?ˆ@¨¿?u¿@A#¼?Úš@©¼?d@6{º?è@…vº?r@Ž3¼?Û>@©p¼?¸Ò@8н?9ß!@TC½?Êó?Ú¿?Ð^ò?òÐÀ?"í?±¾?é?ê¾?çä?’Â?4zì?ÐJÄ?íàà?¿?7úÝ? ˜¾?b_à?3Â?ë?!Ç?qEû?Æ?Ê?DØ@Ë[Ë?ÂÝ@ÉÍ?í1@y>Ï?› @#uÑ?0@muÏ?2Û@…ìÍ?¤7@?Ì?–C@ƒ¶É?b@Û`Ê?4´ÿ? úÊ?sû?è¤É?j…ð?(gÊ?iå?BÄÌ?‡Œá?j¦Î?ÌÝ?E†Í?k]á?$Ã?1ÈÞ?Ìh¸?=Èø?}¥·?Sl@Á'»?¿ª@èa½?Cõþ?ìYÁ?TZ@XðÃ?¢Ò@JÀ?`‘@Ôi½?‡x@]óº?zº@÷€º?}¿@7í½?Ö¾@{ð¾?K @4À?Ðj@°À?À)@ÈÚÂ?Û%þ?ܪÁ?‰ ý?~.Â?Ù½ø? ËÄ?^¢ý?ŒÞÃ?dÿ?™PÂ?U5ñ?~žÀ?h¢ä?VqÄ?uíã?ÔÕÄ?ùë?QÈ?‡dò?­ÎÉ?Dõý?áXË?¼@ŽÔÍ?>ö@dûÏ?wñ@ƒPÏ?íK@‘°Ì?3@¶rÊ??@NþÇ?Žs@ÎïÈ?‘Hþ?€É?mó?\¸È?xŒá?«É?Üžã?÷ŠÍ?Èeé?õ¶Ï?§Læ?ëÐ?·8Ù?X=É?^àâ?Tþ½?â²÷?bâ¸?'§ @9e»?¸Ç@‹r¾?´ì@£ºÂ?1ñ@rÔÃ?(°@‹†Á?Qã @¡Ñ¿?_.@çI½?A¿@Õþ¼?³Ñ@æ—¿?ÔC@ ÞÁ?ª®@}5Á?DØ@•EÂ?+Ä@AdÄ?PŸ@·zÂ?Ub@¥Æ?ž.þ?ØŠÆ?A@RÅ?!bù?7ó¿?·ùì?çzÀ?ç~ß?GOÄ?~JÚ?ª#Æ?¡™ä?X¡È?÷ºõ?Á¼Ê?°@àÌ?…K @ sÏ?zí@ fÏ?vj@GÈË?zŸ@ËÉ? @{Ç?¨,@ö"Æ?ÖÜ@ØeÇ? fí?ÛÆ?ïÛ?Õ„À?B›Ñ? Å?´NÖ?µÍ?ÎÙ?:•Ñ?QøÚ?ôË?›à?ÉbÅ?ÝÊò?Ýݽ?¤@µO»?>@io¾?§l @n}Á?àA@Á/Ã??Z@9Ã?w @“­Á?*s@ËÙÀ?É‚@fïÀ?çi@ÈXÀ?T;@iŠÁ?žÐ@ÉžÁ?b%@K+Ã?ìÿ@m¦Ä?ÎÙ@Å?É@ù¼Å?ëå@GGÆ?´\ü?¡žÅ?ÐŽé?/ÖÄ?jêà?§ŽÄ?HgÚ?åÃ?çÙÝ?q¡Æ?Óì?ÐË?¿“@jãÎ?Ä @ѯÑ?Mk@·›Ð?F@LƒÍ? y@¸RË?8W @ÚÈ?@eÇ?ê ö? éÃ?x ê?×­Á?A¦Ú?Û{»?GÄ?ûuº?„’²?M>Æ?šú«?îzÉ?ëA·?,ŒÉ? Ó?‘NÂ?xÊæ?ªÂ?Fé@Ø\¿?i@à‡À?c# @Ç]À?†@Lò¾?O¸@„CÂ?T@B)Ä?äÏ @þÅÁ?Æ@ Á?JM @à‡¿?Žg @™¾?É" @§½?…n@|ÕÁ?I@÷À?†;@=À?i @9%Â?e@x·Ã?Õó?oÀ?^–æ?­:Â?,Ý?ð¡À?8Ý?À<Ã?êqì?æÇ?Ùå@ÃyÎ?Q;@Ó?9I@eòÑ?É«@“LÎ?‘©@AøÊ?òH @²É?KL@õNÉ?’òþ?Œ½Æ?Îë?£ºÂ?ŸÕ?Iº?¾ŒÅ?d1Á?¬Ã²?=Ç? ל?VÉ?g„¦?ÁÂÉ?Çàº?­À?À/á?Gí½?‹Íô?| À?Êòû?wbÁ?„@ÛÀ?nÞ@°yÀ?®5@Ý9Ã?¯@ Â?¤Y @÷½À?ló @©„¿?ÛÉ@æI½?®ä@¨Ÿ»?h @þ©»?Çb@B¾?éÏ @{¶½?Mš@N%¾?’Ý@B’¿?öù?u¿?Ìñò?ž|¿?%9ê?rü¿?|Êæ?Í’Á?ÞKð?ÂÅ?š%@¦´Ç?œ´ @*ºÏ?=Ó@§BÓ?Dö@PÐ?du@Ì›Ë?YW @5äÇ?b†@©¹Ç?%øö?…AÈ?—'æ?!Ä?‹Ò?î,Á?Ï{Â?&®Ì?[¼?ÆßÊ?I&´?+—Ã?Øà¬?ê{¼?­.Á?±1»?(ªÛ?ÏRº?ð¨ë?Ô|¾?¬Mö?·óÁ?“@$ªÁ?J©@!Â?‚Ÿ@%Ã?€" @†¡Á?æº @wÍ¿?E, @{á½?B @Qu¼?õ @sÖ¼?8½ @&>¼?¼Ë @¸Sº?¿V @ç»?Ê@L‰¼?f@G„½?Dã@• ¾?@s@Æß¾?í2ÿ?mÀ?|¤ý?ŒÇÂ?ü×þ?â´Æ?–%@1rÇ?ü•@¼öÍ?sJ@ÌèÏ?ø~@&Í?²@GãÈ?¯Ž@ÝhÇ?U|õ?‰TÇ?­Zé?[ÇÂ?NYÙ?2­Æ?\˜Æ?WcÎ?„CÄ?âXÆ?‰G½? ßÀ?0áÆ?%q½?_×?£À?ºÍä?h¿?= ñ?Ùo¿?çc@ȈÀ?š¾@pîÄ?m®@«ªÅ?.c@Å?í¸ @RÁ?÷@ d¾??@ÎX¼?m%@í:¼?$›@®»?’@@.©½?©" @=·?ÿž @Q2»?pñ@ŸÍ½?‰7@6ï¾?Ë @Â*À?„Y @ý Á?ÛO @vcÀ?ˆ;@O•Â?+i@Á’Ä?êâ @žÆ?TC@ÜÉ?ı@6¬Ë?wø @ôºÉ?ú5@ Æ?mOö?zÂÆ?VDç?íÊ?¬,Ø?¬ïÐ?}{Ê?ñyÔ?.äÍ?¨Ê?)LÓ?4Â?¬Fã?ÑoÁ?óåî?óÕ¿?Ý*û?Ñ|¿?šü? @]-À?Iœ @ÈË·?Z†@t ¼?‘³@2º?wP@G§¾?9í@î„À?n@¾„Ã?ª¥@rÈÂ?šÖ@j9Å?¾U@¨Ç?®@o?Æ?Dx@ùÇ?ã® @ñ1Ë?^·û?í Ñ?ß×?Þ£Ñ? Ó?ÂÐ?ìØ?|:É?âýñ?4Å?¹@¡ÙÄ?‘@ÇçÃ?{ÿ@’$Â?p @n^Ã?4! @RSÅ?Ì"@©nÆ?„-@VºÅ?Ü@ÛáÅ?Æ @ŸWÃ?ÃA@×Â?Lò@êAÂ?UÔ@Ñ“À?š"@6®¾?W@ç¼À?yÐ@õ˜À?ÂØ@Z¶¶?Ï\@Km¸?ºt@å¼?à@š¾?Kó @n‰Á?æ%@£¸Ã?7c#@n’Å?û> @Õ«Æ? ð @)XÈ?¿@"Ê?†Ê@Î?ë@ ÉÑ?í?Þ'Ó?=è?¢„È?0Nõ?iŠÃ?Õk@“Â?¡Ÿ@ÀÄ?1L@ÇÂÃ?hC@ØNÅ?-@îÄ?ø@ÌÄ?¼@}€Ã?W„@ÿ*Â?lV@tvÂ?½¯@Û¹Á?*º@`;Â?„l@]œÀ?Þ¹@ÅÁ?+†@7 À?…À@yåÂ?v…@õÇÁ?®K@‚r³?Tb!@ ƒ·?OÀ@­’¼?“”@ØÁ?lÍ#@—ÝÁ?J6(@hÄ?ª>&@J‘Æ?ÿ @ßãÈ?Ë]@µiÍ?Ø<@¥ºÑ?iâ@јÒ?¶@DZÌ?+b@*Ä?'™ @‹q¿??x@tÀ?šH!@¤Á?D®&@1‰Â?Å$@•Ã?+³ @¤æÁ?Þ@LÀÁ?|#@a–À?qE@aŠÀ?1P@çå¿?+'@ DÀ?·Ð@ójÀ?z%@óÅÀ??2@ÒçÀ??_@<ûÀ?Õ¥@é0Á?²c@¡À?d@&C°?J'@5¥´?žE!@Ä·¹?t«#@‹*¾?S›%@ï@Ã?fE'@W'Æ?`Ñ#@ÑÄÊ?Åü@rÒÍ?l»@âàÏ?Z @BiÍ?KB @Ø?É?­ž@±)Å?. @öTÀ? %#@\¾?An-@•À? {4@ÛÀ?à$7@¢¿?&@0@í¾?5)@çȽ?Ç$@J4¿?‘\"@aY¿?«;!@á·¿?ë:@œ•À?÷—@€îÀ?Ķ@ž©Á?69@[£Á?¼@àÂ?T@ŒŸÀ?Ÿ‹@ƒ¿?ë†@ ±?W@6Wº?žm@ ÿ¸?¨Í@o¢°?E©7@Ú*²?§1@ï)µ?›€+@0×¶? Ô*@°¦¸? -@öº?ƒ.@÷Aº?+Z1@&ܹ?ÏF0@Ã4¹?ÊÌ0@fK¸?>J/@Ìž·?~Ç,@ˆÆ¸?Fƒ,@¢¾¹?Õ~,@ÐϹ?þˆ+@´Nº? Ù*@Û†¹?k+@ä¹?4û)@p4º?é$@g»?’m#@AÆ»?ø*$@»?Þ“$@™º?w“@¡º? p@ é¸?ò—!@¹j¸?¸™"@8k·?s!@-×°? ‘:@ÍJ²?Õ5@ç³?-~5@²0¶?ò9@šv·?ë”>@š»·?§­>@Û·?}{=@÷?Ôw8@ˆõ·?’D6@M&¸?Þý1@ⱸ?Ow3@{à·?ÉR5@r¬·?s’3@Í8·?°0@‰÷¶?Þ{2@Šö¶?õÀ2@UB¶?&0@U·?æw.@§&¸?®.@áJ¸?½b+@°T·?½b'@¸ù·?+¼(@ÀÄ·?…ê(@Ÿ]·?—n&@³ü¶?ø¢"@»p³?àš?@4´?ðn?@@–µ?'YB@¾·?t8H@žÊ·?MÛH@¥7·?[F@ó{·?ôÕA@Î=¸?RD>@nD¸?‰õ=@j¸?V!<@X·?Mu=@¥¶?:k>@•B·?¦K<@‹©·?ÊM;@5Æ·?í‚:@Í·?­Þ;@8Û·?d8@hº·?„Ü4@ô»·?d‡3@M¡·?4@| ¸?X05@^Þ·?Áž1@f&¸?†,,@dð·?ï/'@1ã´?ZžB@ ðµ?]@Ô¸?üà;@¥¸?žo9@€·?˜9@¬·?D)3@Äà·?bÊ/@¸?'@É)µ?•‘K@Gµ?_VN@d7¶?ûƒO@Ÿ¶?A%N@J¶?ÞbP@Ý·¶?þK@˜L·?I©I@ u·?cfG@Ûg·?wÚG@ñ(·?³I@å9·?ìL@A¥·?ë_H@a°¸?EßD@³†¸?~VB@àœ¸?Y+A@œo¹?>>@ØÍ¸?íŒ:@[‹·?£`7@À<·?Æ/5@_j·?ª 0@ô·?<*@z·?œ%@ª´?gÑQ@ýÆ´?ÎýU@'ªµ?˜œU@ãµ?V@$4¶?GsS@ L¶?ØQ@ÈÓµ?2M@d¶?ôXM@1ܵ?BFN@½S¶?Ö=M@:ÿµ?QIK@Ù#¶?šMI@ðÕ¶?¦D@YT·?@@¢Ô¸??I:@¸›¹?/µ6@‘R¸?6@®å·?fì1@Ÿ%·?ù¤-@Ðȶ?½)@«µ?cë&@ f³?‚Y@{´?<ÄY@¢¸´?ê>W@dŸ´?bHV@NÖ´?p¸S@Ñj´?XãP@âà³? ßK@Á¯³?möJ@•ö³?¥½L@é@´?ݦL@sæ´?¸|I@Oµ?0lE@õµ?Ÿ¿?@tݶ? 8@ÁÓ¸?Òd5@ë(¸?„l1@!`¸?C¼.@ÇP·?H¯-@n\¶?8-@üš´?ú…*@&"³?ÃlV@Ög²?WîS@µ²±?$ñR@2F±?v®Q@*Û°?ÈN@‹…±?FDG@4é±?¸aC@…±?vÆC@©±?@ÞE@„±?DéE@ ²?c A@’¿³?–»=@H)µ?Ó;@‹Þµ?Žÿ7@KW·?¡O0@BÝ·?‰@,@»¶?w0-@*Fµ?Ôæ.@¬Œ´?%W/@c|´?Ó‰I@¢w²?0YK@òœ±?¦ƒJ@*¯°?;›H@?û¯?ÊD@Rž¯?WØ=@új¯?F˜;@ÿ®?¤{=@¨Ì®?ëü=@°Q¯?I)<@v±?,¿9@ËN²?ýÇ9@쟳?x­9@ûs´?îw6@"pµ?n1@.õµ?HQ0@oqµ?—R0@ ³µ? H3@fµ?»ø=@H´?Í@@b´?Ò@@³?25;@Þm±?,n6@ñÀ¯?É 4@Kf®?è4@Åg­?=Õ4@xó­?·ö3@òv¯?1t0@|¯?(3@²±°?¾å4@àc²?:96@Ô9³?@·4@6ų?_t4@ñ¿³?õ3@|Œµ?f1.@è µ?¸:@POµ?ÞI7@´?éG6@ ´?dg2@Ï­³?</@àŠ²?q,@í…±?,y-@†~±?=û,@‚±?^/-@ì`±?^W.@\š°?öN.@yó°?ÃB1@¿:²?W¹1@…²?Úð3@¥0²?w6@œ°²?#â4@/ž³?=@ò#²?x[=@äB±?%)=@Õ•°?ø >@»±?Rå8@Û±?²N3@T‰±?’å7@é{°?øñ;@߯?É):@Ôø±?À24@€3²?–r2@³Ø±?U¿2@‡m±?û6@^v°?*½;@Gë¯?½@@à´°?ÔÙF@$e¯?¢‰E@ì®?˜­H@mî®?›“H@ûE¯?H`E@{ ¯?9F@Í ®?SE@“+®?ˆõF@&­?WF@n±­?¾”A@ ©­?‡ÈB@[®­? A@žý¬?0ÍB@ü&­?ÀBB@a6°?®Y@I®?SÌY@(K­?¢:W@Tb¬?ÏžV@}<¬?•ØU@ÒJ­?ÃqU@#ï­?×WU@ù­?"ÕU@†®­?TGV@&Š­?€S@©­? YO@­?ygL@Û*¬?³×K@^å±?Ã/d@7s¯?¨âd@v­?ms`@ì—¬?àÍY@Q"¬?–”V@92¬?•^S@wv¬?ñQ@­?½R@9P­?=¥W@W¶­?-Y@â*­?ÍX@¾°¬?EýS@5Ų?»d@t_°?ñàj@DV®?=¾b@tÖ«?›×V@žŸª?AçM@"«?£ÞH@“4¬?AG@“™¬?‘{I@®º¬?SXM@›i¬?ÑMM@Uš«?èCK@®=³?Öb@IÕ¯?kKi@ñð­?Ø“b@õ1¬?¡ZU@ݬ?(°L@Jp¬?¥*D@5¢¬?¥'>@†Z¬?'m<@b@¬?ï‘<@냫?B²:@«ë²?ÐÉ^@ú!¯?Füe@j®­?¡`@ ì?ŸáW@=>­?·fL@‰­?sÔA@ãô¬?¼¹:@We¬?m5@=í«?ü1@޲?ód^@üh¯?c¿_@CÊ­?õ&Y@nù¬?4ªS@•»­?òÉL@=õ­?›}B@>Û­?”C7@¿R­?ø$1@€±?Ü™\@ÏЮ?ÐÖZ@`¡­?ÇR@ôɬ?ž%M@ô©­?PÈH@«¦®?ŽCA@¬<®?Ÿ¸8@[¶¯?zWZ@dË®?k(W@Û®?wXN@l!­?(™E@=S®?åRA@Ì®?5®@@Ò§®?«íY@s|®?ǰR@.m®?–‚H@®`®?bKB@ç¹­? dA@7¤®?+`Z@œ~®?^òN@†\®?,E@ôe­?%C@Ô`­?dS@ÇÔ¬?âËF@nº«?ûD@€E¬?‰[N@È–«?Ä D@R®ª?›5J@ 0?ui@ÒTŒ?¡Îh@¯@Š?|k@£8‰?šÝt@I‰?‡€@Ô‰?Ö†„@`Š?½„@¹¦‹?ç„@YÏŒ?p½ƒ@½Ž?µ?ƒ@¸?㈀@}©‘?«Í{@I¤‘?WP@Ý‘?ˆ€@¬Ÿ‘?]¯€@ËŽ‘?¸”{@G3’?Q/q@þ’?~Wi@¥ê“? §^@G4•?S$U@è>—?­‰J@ Eš?·†F@už?pó=@á1£?>c6@»§?,¬1@”«?¼ª-@µß®?¿œ,@3N±? +@K5²?ÿÃ(@Lf±?Z)@N‰¯?»ì,@Kp­?3@¬ª?ò<@õ¦?8xH@bŒ£? äP@YJ ?½Y@&Wœ?ÖiU@<™?wN@W˜?xA@L´—?ˆæ2@ªÄ–?ò¶%@Yo—?YÌ@d0š?ä@¶›?ªÈ@µÜ›?ÏH@®N?@tÜž?ÄS@c¡?²@&<¢?#y!@z—£?“2&@äæ?K|+@}=©?Z2@赬?¼b4@  ­?|è4@Ì•¯?Ê-@e’?+«t@Á·Ž?©tq@`uŒ?õ u@LA‹?ez@€‹?ð @’‹?y †@¹Œ?c‡@qÓ?… ˆ@?%?zʆ@w¾?A…@J‘?+P…@ÝБ? m†@hÿ‘?Ò ‡@j¢‘?Úø…@ûz‘?q@¾‘?Üv@d ’?M“k@, “?¬ƒa@–²”?… V@»ë–?­ºN@Ai™?!rI@ÿœ?ÑZ?@ ¡?üE5@I©¦?&x1@†W«? ¬,@=;®?¥-(@ /±??ã&@¨ä³?ì»%@¢Ð¶?¬Ó#@u(·?LÈ"@×¶?ÃG$@êµ?JÃ'@¿¬°?˜Þ-@ìn¬?¤y7@®;¨?ºá@@'Ï£?ûãJ@ ?ƒêN@”Eœ?à|R@{cš?veH@]5š?7;@ôÀ™?þŸ/@:qš?,ý$@’úœ?iC@å7?Ñ·@×ãž?`@¤ ?Ð…@¼å¡?H=@U £?rQ @äø¤?À#@™§?uÀ(@#ª?ºr0@é­? ð4@s®?¸m4@0®?@2@)=—?ʺ|@0±’?²·z@]Â?àƒ~@¦Ž? õ€@‘ËŽ? „@!?RÛˆ@½¦?.tŠ@ˆ²?‘¿‰@˜î‘?¥£‰@^(“?¦šŠ@íF”?uzŒ@QN”?ˆYŠ@O”?(†@d<“?J@a“?§yv@ “?8h@Џ”?lI^@[›–?öS@OT™?È>I@&½›?ÆÁA@ö Ÿ?°J:@›R£?ÐÝ3@ž/¨?-2@ìÌ­?ù^1@ÿ0¯?v\/@#H²?oå-@º]´?¡¢+@´àµ?· )@ô²·?Z'@j¹?º%@zï¸?læ'@t=¸?œx,@д?2@a¬°?Æû7@Å ¬? á<@{™§?+ÔF@„g£?ž4O@‡3 ?ØdR@Μ?S¨Q@”`œ?”ÁI@T7?xN?@??›–2@+-ž?Í¥%@™žŸ?V @Òá¡? Ú@pâ£?ZR @¿?¤?×}@–C¥?²‡$@¨?^f&@_²«?¯¶+@£­?™u4@r&®?¾Õ9@™‡®?5è4@´´œ?4~@¸“—?26@ M”?ja@WH“?³e…@˜•“?f‰@袓?ÑÖ@+”??@ŠÖ”?Š;Ž@«–?xUŽ@· ™?ñƒ@ ™?×ß‹@Bé—?fò…@i~—?â5}@ˆ…•?–pn@œE–?`_@*‰—?H³T@ÄDš?[°I@ð¼ž?ÔB@b!¢?éª=@³¤?ˆX<@¸ò©?ËÕ5@$ʬ?ô 8@&*¯?£9@Œ±?¯š8@ÝX³?ÑS8@¥µ?®)9@xã¶?3º8@îÖ¸?45@«lº?u±0@!»?Ïb-@· »?[+@ ó¹?%H-@î“·?E2@+.³?ër5@º“®?¬<8@wÙ©?“©>@¢3¥?kTF@ŠØ¡?ŠÇM@D, ?+)O@+Ξ?õ©Q@}kŸ?‘.N@ŽðŸ?ý.E@ªÿŸ? ‡;@Ø« ?Ï/@¤ ¢?RÔ(@cÁ¤?LC&@ Ŧ?g¥%@‡ô§?fÞ*@ Ѫ?'»/@¬?âü6@­?T­<@Zå­?9¬5@÷i¢?%}@eæœ?Õâ~@sƒ™?¶¾@`«˜?…"†@§@™?÷½Š@£7š?ëÍŒ@Í]›? ®@çŒ?Ù6Ž@sAŸ?Ü/Ž@ûS?IÁ‹@{Ë™?!_†@t–?A˜}@®“?¡xk@’À’?]ŒX@8Š’?cQP@Œˆ—?žUK@†aœ?ŸšL@™|¡?éÿP@俦?ýÜK@Lʬ?yñG@dð­?æB@£_®?™°?@Šý®?Y¢8@¬°?º(7@L ³?©7@Ù_µ?áØ7@W`¸?<4@Ø$º?ž.@ D¼?#Å(@¥¿?N "@…æÂ?E2@*=Ä?Àñ@>ãÁ?p8@!±¼?¬@À¶?a}$@2®?p"+@ñ¨?,‹3@(ñ£? T;@&¢?ž3C@u¯¡?CN@y¡?׉T@:¢?qáT@V-¢?1ÒQ@©„¢?iÝH@Ž>£?±¹@@B:¥?Fþ9@Vì¦?)±8@{Z©?o;@Àòª?üDC@89¬?/B@•ñ¬?r0:@Nâ¨?H‡v@ê.¥?4à@\)¤?.,ƒ@\¤?UQ„@âi¥?¬B…@Xa¦?"ï†@$1¦?’m‰@ ¥?\wŠ@m½¡?­!‰@}?cHƒ@7 ™?©v@Øå”?Åde@á{’? íZ@Ê@’?Ò—T@q0•?QS@iâ™?ø]@bF¡?k÷n@ü™£?,w@‰%¦?»u@¦Ð¨?f@d_¨?ÍNW@©?Q¥Q@³hª?I7K@㈪?çJ@8<«?àHJ@®­?ú'H@7\°?SúA@†u²?éh<@ù ¶?¸š3@,º?¤*@Pí¾?.‚@.JÆ?‚O@õ3Ì?àÔ @É=Í?¯Ä@êÈ??§ @Ô;¿? ô@×Ò¹?— @P2±?ÑŒ@)(©?‘n-@Q8¥?€´>@ ë£?\,O@@“£?„ÓW@jÞ£?f}\@ÇÚ£?¾Ù]@(ù¤?‘ó[@–4¦?½—V@@øß“?uF@(õ˜?^,W@›A›?·Xl@Sþ?™º@|¡?t±ˆ@Ðï£?Ãe†@½X¤? oƒ@‹ ¤?‚K~@.2¤?,s@²È£?üGo@­%¤?3ºj@;«¥?O±e@'ç§?9Ü_@Áªª?1¯Z@ ®?}WT@ ϱ?‰I@ÌMµ?ª=@…<¹?t§1@ú;?|3$@áŠÆ?@›[Ì?±ç @gŠÒ?¸Õù?ô<×?REè?Èe×?‘"ä?НÌ?Õò?æÀ?u@ûW¶?u/@.­?T¡)@Æ©?Gf8@“þ¦?°H@â¦?G_T@1§?»ÿ^@­w¨?S7c@KÁª? d@d¬?ÐÈb@°o­?ŸT@´9»?k v@ºÔ»? x@ÎV»?øÔx@Ý^¹?w@žz¶?ê5u@¼ñ±?2±r@ï¬?ó˜o@ŽŸ¤?Ñe@‰Ÿ?Þ|P@r¸œ?¿z9@·~”?íq)@¥bŽ?Å@! ‘?z(@t’?s¼+@Â;’?¸ùA@y—?Ñd[@„œ? Úu@ˆË?j ƒ@gŸ?~„@†0 ?ÞXƒ@üK¡?Ñà€@gÒ¡?¿ò~@ñí¡?¶Ž|@×£?üFt@Œ†¤?¤œl@ªw¦?,¹f@1ƨ?þa@˰«?ë[@SÔ®?ßKQ@/ë±?ZjF@;_´?K>@Pi·?2Õ4@ »?ÿ'+@Ó#À?O¬@`Æ??@]{Ë?Þ^ @TÔ?xú?ƒ±Ù?B¶ë?¢$Ù?Š9æ??Ñ?prë?eÅ?|sý?L¹?ÿ@€p¯?7å'@õoª? Ã;@[B©?уM@ï©? ùY@ƒ¬?zeb@ý®?#ß\@5—¿?þ t@ ¿?×9u@Vƾ?êát@`/½?bQr@Ų¹?Sµm@L@³?™Êf@úu«?QÌW@»¦?Þq@@Ûk¥? ¿&@ æœ?ôæ@²Æ˜?˜@°˜?h5û? º•?ëÆ@ؘ? ¥@ ”?)"@’A—?ûC@õÕ˜?u._@Hš?mÚp@îM›?;q|@v&œ? ¾@ø²œ?XQ‚@§”?7c€@hÅž?®áw@„s ?=…m@@Œ¢?ø)f@õ£? Uc@뙥?D?a@ݧ?¡Æ\@$Ä©?µW@µ˜«?Ú;O@J®?ûqH@9\°?=×A@ù&³?Ð 9@A ·?js0@=¼?s&@ÚøÀ?œä@3È?W)@±YÐ? Ü @ ÆÖ?8%ý?ÕÛ?Tþç?ê.Û?·FÛ?w«Î?î¥ó?° ¼?èâ@¾ñ¯?¢'@ªÛ«?Íë>@J¬?4ËM@§Â­?ËU@æNÀ?×úo@¨R¿?…Bo@–¾?ÄÒn@Ç…½?èn@Иº?¼”b@“ò¶?½[S@\ÿ¯?g£@@ª?‘˜'@ýfª?Î5@þT¢?Lµù?´ï?C:ä?0  ?t£Ó?f¸Ÿ?`ZÛ?„F—?ÎÖù?šÚ’?g(@¡è”?'â0@9Z—?ÌrK@‡—?G˜_@ã˜?{j@\˜?®¤o@6Ò˜?Óïr@k¡™?Çt@倚?8bp@ê«›?ªi@ùñœ?c@aVž?ý'a@ ?@r\@÷h¡?~X@è0£?ÇT@jQ¥?q\Q@3r§?âôM@Ƕ©?(H@¡ ­?À@@®°?‰7@Ìy´?øá*@Yè¹?y @€À?„ @¼ˆÆ?„Ð @|&Î?ÐM@àÖ?„0@ã›Ý?ñê?Ú¶Û?¹Pá?}YÍ?¹õ?‡s¹?{¶@‰œ±?iè/@7–¯?s5A@ÎüÁ?Dli@ö¾?Íl@—м?Ý l@…Ö¼?]i@Îþ»?—=X@§¹?›{@@S²?„U(@ã¯?k@ˆæ¨?©Æý?2wª? jè?$K ?+9Æ?÷^¦?{¥¿? ¦?ÇmÇ?3Ÿ?¯ß?¦–š?x•@zŸ•?¦Ð@ò{”?'0.@¡\“?S˜:@òÝ“?¼oE@!ú“?`{O@ñ§”?†XV@þ½•?hvY@%œ–?¨ZW@ÌC—?+êP@˜?HóK@ò¿˜?oŸH@ï­™?&åC@è›?«NC@ ?MÁC@f‘Ÿ?Ü>C@à¡?¬µB@ ñ£?aó?@òɦ?pó<@ת?ÜÓ6@6j®?À…*@ è²?Ñ*@3{¹?#9 @¶²À?÷õ@¨¶È?‹ãý?êLÑ?fOÿ?ë3Ú?;`ñ?æÀÝ?¥4Ü?”×?¶ á?¼È?ã¸@8ø¹?æs@­BÀ?¾f@k¿?¸°g@U³¼?âšh@¼º?‚šc@-¹?„ÃR@N2º?å4@½š»?lŸ@,¡¶?1@¹Ð¼?-vñ?àÚ°?¡RÝ?¯?1cÌ?æ+±?4±Ì?¢3­?¦Ì?rN©?—™Ü?Ùƒ ?*‘@Gg?ë_ @Äö™?³T@pÏ? õ@ýz’?''@Éû”?&‚8@D›“?Fƒ:@»=’?¸Ã;@ S“?™:@PÈ”?ÎE8@ôí“?±B6@fq”?J&4@üa•?î¹1@*À–?•¤1@Ôt˜?Ÿû0@Ízš?.1@™.œ?ÖØ.@û˜ž?a.@¶® ?ÃÅ0@[0¤?/@©?üP%@—p®?jt@€/³?Yt@º?6@JèÁ?‘Ýõ?;ZÌ?d6ó?ÙÕ?jÔõ?Ä©Ý?ätß?uËÜ?þHØ?·-Ò?ð?ðu¹?ÿi@xr¼?O`@Ít»?Œ\@µe¸?;\@Û@¶?ü0E@ëã·?êU&@b¦½?H¬@}¢¾?<í?i™¾?ÔÔ?)¸?+ÚÓ?™’¶?vNÖ?ãB°?ÂPÝ?oš©?­*Û?¾¬?§ë?.µ£?d‘÷?Èm¤??3@Ç›?Å@ @ªÆ•?67 @Òÿ•?§{@".’?¢@官?í.@w:œ? 7@fø—?ïÕ2@ç·’?©t)@X’?8.&@ȧ’?q¶$@i5“?tù"@]•?.©!@,–?óO@c,—? ¦@Øþ˜?·@|š?h- @O¤œ?Î$@Q³ ?Z !@F±¤?ç‹@õ;¨?Qý@#~¬?â°@vײ?D¦ @†K¼?rý?º È?š.ó?¬AÕ?£ªü?Ì=ä?ºò?Šèæ?«9ç?Óc¶?°mg@·î·?â4c@ÔǸ?+q]@[Áµ?³8X@uX°?ÅêA@ 2²?w«@“·?0îõ?5(»?<$Æ?Ù#Ë?h¸?¥Í?áx»?pË?´vÄ? ¸Ç?‰w×?5žÀ?9Äè?Èë±? Íù?Ó¬?YÝ @•J?b @žÏ?5Ò@/¢?"ø@ž¡?²¯@Õô–?Ъ@Y™?*@&<™?ñÝ'@ôð—?«¨%@É?Т@T?4Ã@zU‘?I@J”?ls@m•?Ë@á•?r\@o•?Õá@†¿•?Ë(@ªÙ˜?ü>@÷9›?*Ÿ@@Ÿ?m–@Ì“¡?„k@Ý­¤?Ôé@ðͨ?Ö@˜·¯?"b@Ùb·?Þr@¢ÁÆ?4@ŠÏ?Äî@Ï`Ö?ñôò?ßøµ?ºÆ]@:œ¶?$€a@B×·?<Å`@ fµ?ø9a@Ã{¯?½§J@ûÛ®?ÐÏ@O³?E&ó?îû?¬oË?ŸeÄ?{¢µ?B[Î?„á»?º/Ë?®ýÈ?âï¿?°`È?&ß½?J{è?¯Ò´?Wö? S¤?.^ @+!£?¥@^ŠŸ?óÙ@?qa@-Ø›?­„'@BK¥?•:9@Øœ?W«.@Ÿ?àV/@¡“”?s’!@3š?­ @wýž?:¥@Ó}Ž?V @}‘?W8@9h“?[Ñ @ €•?“ @ý®—?çÄ @uL•?· @;_—?¨ @ ¶™?Äb@_œ?D¾@ iŸ?®€@fR£?ù‚@Qe¦?Õg@ «?c @†¸¯?N˜ @-ܼ?y] @\ŽÄ?@ùT»?X L@ËU·?ÅQK@6‰¶?ËyW@g3¶?Ÿ¼l@<³?ÞLc@Ÿx°?î4@Fµ?À¨@£ ¿?bÙ?;½?G Ç?Â?KÖ?QѾ?RÚ? rº?ï8î?HÒ¬?¨¶ñ?¨ü­?lŸ@¶V¯?@¦©¬?’V#@A¨?Г)@Î3 ?U¦,@mº¨?ëÀ@@”ѧ?æ+G@™S§?›D@âݨ?G­D@á|«?å;E@yt¤?† 7@Xõ¡?–W'@4¿¦?š•$@£”?œÍ @§ü—?@Y “?xã@¤Å˜?åè@×û˜?¼A@ª™?l÷@dð–?ƒ@!?‰^@0Ÿ?sÙ@ûéŸ?+-@ÂV£?fP@œå¦?Ò³@úß®?‹S@c[·?[œ@òï¸?Õg-@‘@»?Ýç;@ª¹?u1F@në´?Ah@;o´?ÊRv@¨Ö´?g\^@ÅCº?|y4@FiÀ?g@SzÁ?“@wtÉ?àC@%²¹?äö@µ?‡l @^²?5ñ@â|®?±&@G.¬?£-@ñ´?âV8@õ®µ?z£>@Ê®?€A=@{%³?s|Q@/e²?}}U@—* ?]+@¼ ?‘@)û?v.@„ê—?¦µý?…X?ÜÑ@?ù@¾?¶ÿ@òÇž?‹N@b¡?Ñ@F3§?ï~@Ÿ®?f0@ðë¿?ã`$@ó»»?E@©£¹?)o+@!I´?k~T@¿³?®¶s@Ȳ?«¥~@¯ ·?”™b@-IÀ?qJ>@IlÉ?Ž\-@ARÀ?oh @ G¶?Þ.@›‡±?QÈ&@µàª?/-@{k®?;i?@ˆ±?!¡O@Y¸?Us[@9á­?VxM@Nfª?ÒP@X µ?]ü\@^Q¤?Ûì@Kè®?¸z@ê6«?Œ @j[¤?–ë@’Ê ?sä@›2 ?®1@ – ?Ü@܆ ?b%@,W§?ît@&ñÇ?¼@êÅÈ?†v @í-¿?¤7 @¾A¶?ær@@,Þ²?uxb@¥;±?Ÿyx@4@¶?»&@R½?¬h@hD¿?–?@M†Â?·Ž.@K1½?r"&@oP¹?•œ7@Ÿ3®?>:?@m‚±?~&]@*¯?ÖÊg@2ú«?ol@ÛÁ«?9Zj@££°?@ñp@ÿϹ?²@ñU¿?‚Ú@…½?|,@G¤?ï@Ä¥?áÑ @{ž?ù @8l¡?ß @‹Í?e @RÑ?½½@'Ë?x@|9½?(91@fŠ»?sM\@¼³?³Êg@“K¹?Vî|@öº? N|@ ÝÂ?Îye@7^Ê?k@@íÃ?Éæ#@6c¿?1z-@óP©?*=@Ù]­?Âè`@|’¸?Ã…@žý°?z|@Jº¬?2y@ÓŶ?IN„@í™´? "ƒ@>ý¹?ÎU†@©À?‘Õ‡@’Â?Ɇ@ÿ?eF$@ãĤ?Ð@ßÉ?$Ç @ åÖ?š)@WsØ?Ã2@ÌàÍ?´°,@À=Î?ì=U@œ À?ÖgX@X?µ?Þ`\@öçÈ?©€@|ÉÃ?vWq@b»Õ?ö-Y@ûÇ?¸e“@d‚Á?efŽ@F{Â?Z,@[¯Ô?ÚAú?ÁèÚ?- @›×?r0$@ß?!lI@œº?«B@ñ©Ð?¤ü?hˆÚ?>@×?ì?#Ï*@%ïî?rSA@_5´?m@²ªÅ??[î?²ñÛ?ÎV @R_ú?¢'@ P°?OX@òúÀ?Q£ç?lÑÑ?Õk@2õ?:ä @¿®?•@0ߺ?fcå?²œÒ?nó? G@†-&@Þ­?¶s@NË·?Råæ?ŽÊ?Né?¾Lú?G*@.X®?á@@·?=bí?#ìÆ?äã?ŸÀ­?°¥(@/¶?ºó?ô"¾?ûÄ×?Ï«?ç˜2@iŽ·?ù?Ê\»?6Ö?Bž¦?C@^b¸?o7þ?y¼¼?Ø?,w£?€M@õÊ´?w+@Ïâ¹?,ÓÚ?÷Ï¡?-'W@ÆG²?]M @l‹½?ˆÞ?±ž¡?`;\@êN°?x¦ @¼¿?ßóå?’ £?OV@œG°?¬· @ØÇ?*ní?DѤ?ÿM@Þƒ¯?ø… @CÀ¼?…ÿæ?ŸY¥?•²N@ º®?Ј@&À?/Sð?G ¥?B2M@­²°?U@¿ÉÏ?ùt@†œ¤?ZÔP@¹o®?Â1+@QZÒ?‚@8£?–UV@ýŸª?^í9@júÈ?d¤@í ?7,^@ ¬?uŸM@›çÇ?å|)@Ë¿?–º^@Ï™§?ÏtR@¾Í?‘rA@Ú°›?X+_@便?ÌPX@!ÐÈ?Æ·H@ìš?ò_@m£?ñt]@ó7Ë?’†R@’œ?">c@û¨?Käg@|÷Ñ?žJQ@K?-c@'c­?5b@@@›?¢É\@zÂ?§2t@¦`ª?pÞh@xnµ?œdj@”øœ?/>J@’|?ÑhJ@l?žøL@Ÿ?zM@€ç›?BžK@hš?½ö@@Àš?’C@G ™?éIH@ ™?ëkL@Ù?­I@ÁZ˜? G@‹|˜?Ð$M@yÝ™?êæI@E™™?à D@ñE˜?~E;@\Q˜?GQ5@Î-˜?¨a6@R:˜?ï[6@ %™?ëe7@Æ™?’l5@Ú˜?x1@´'—?¸1@hñ–?a/@}—?)N-@«—?ä,@ÝÝ–?ÞE,@bv–?Ûâ+@ØÝ–?Û/@’;™?- 7@Ãò™?+A7@g{š?,Á.@Àn™?¾,@{&˜?kÙ%@—î—?a$@ìs˜?—Î&@ðù˜?Ò/&@×Õ˜?¦™&@29˜? ‘(@³™?³É,@Y´™?ä>0@9Û™?ó³/@”Òš?p52@„ך?1 /@°Iš?‰ß)@uê™?S(@½ß™?åý&@«æ™?¿--@Vš?=Z-@ýÇš?øÃ,@fœ?‡.@Òòž?ø0@úŸ?]¤2@¨¶ž?Å)0@Žž?šû+@?$ú)@Çúš?Õé*@‰”?ä)@Ÿ?•$,@ÄG ?ÀÅ/@½ì ?¿/@kûœ?ªê$@²Ò™?K<@Ž‹™?Äf!@Ñ®š?×ú @3sš?ës"@Èkš??Õ%@t›?Ó³)@¿é›?†˜0@€Ûš?ׇ8@>ý˜?ç˜4@þ!˜?Ï<1@¤Ò˜?6-@S€—?B½&@x—?ò$@Ì4—?ž¯@Ë—?Áá@M‡—?U‰@žã–?@K@ >—?ã’@N™?1“(@@Òœ?ÕÏ1@´_?¦ 6@¹š?F16@²Q—?±G4@jЕ?³#5@vl”?ã6@l‹”?ýÞ5@þš“?Y2@•Û“?öÈ0@a/•?^°0@œü•?wW/@µE•?|Ž/@ Å”?Ä/@ˆc•?P)@ft•? ý@=£”?D,@¢˜‘?2í$@ØñŽ?ÙL#@Åž?*\(@ënŽ?Q.@£'?t>@$$?¼ÁN@K‘?R@`Ç‘?ôL@Zß?!†L@s,–?ýè`@s™?ê,\@šûž?3’+@MZ ?!À-@‡: ?÷ .@è>?7'@#˜š?Dä@Cš?¤@"š?añ@ìš?{@$@\Ù›?–“$@c»›?`š+@£>œ?À@2@pœ?k`8@Êbš? ‰6@1ÿ˜?"†1@¤˜?Š*@w˜?ËA$@‚D–?¤h"@7—?©ñ!@cÄ—?¡Ä@€ ™?õk@×\š?‚·@°Ò›?- $@-?ž¤+@]ž?B4@:ež?‰š7@«}›?ð6=@P­—?&×<@ž³•?ìe9@mz“?q6@¨§”?{ÿ1@‰““?N’2@ôB”?°)5@ýg•? 74@Ñ\–?»¸0@¡D–?ð*@¥•?Ð6%@n¦”?3 $@ 1•?õ1#@6€“?ÛÒ(@å³?þº(@‰Õ?  )@í?¾*@u¨Ž?Ç%3@`?ëD@ ?žûJ@ ‘?&ÅN@ª?‘?K@GB‘?œ·H@¶’?Én\@\•§?Hãy@)Ÿ?Ê!0@³ýž?Vq-@ᵚ?èÊ$@Ò›™?öR @Ñà™?^Ì@&‡›?b&@Ú–š?%m!@'›?¢¹$@œ?ø-@Íœ?DÑ3@|Ä?8Û8@Ë#œ?ÿ­;@í=š?Š*2@¶Õ˜?³,@àH˜?åø"@^Œ™?ÃÞ@Ñ—?Çô@o™?Í_@}{›?Q_@”œ?Ã!#@wH?9G'@¿?¹.@vüž?ëÇ1@Ñ Ÿ?Hs8@‘äœ?Q=@Ä&š?AA@_Ï–?—Y?@:”?¯^8@W•?5@ °”?È(6@Sd•?”¯6@+•?ø§7@&­”?wd1@¤U•?¸¼*@ø–?ëc+@”?yù(@y0“?ë+@Ù<‘?Øô*@Í?š+@íÅ?—î-@÷¨?§.@  ?êG9@âÞ?ÞýG@ûN?,L@ë2‘?˜H@V¤?tI@à‘? ñG@U=•? µ]@VЗ?­]a@³xž?aæ1@•êš?õ'@ë™? 4 @iÁš?,Á@g†š?šv"@W›?$#@4Æš?8Ô'@ÿÙ›?\%,@’?3@ÌN? 4@àÚœ?ª76@úÊ›?:ª1@™æš?+s)@p-š?!µ#@(š?cì@¸=œ?µ´@1›?6 @ˆäš?¸;@ZÞœ?+ú!@“:?®'@ >œ?x‡.@Öòœ?§š0@Яœ?@Q2@9.?¹þ8@Ó‹š?bc@@x„˜?BÇ=@%•?¯Ý5@u:•?Ír3@u³•?™³7@’Ô•?N¤5@kÚ”?â³2@Ÿ4•? /@•?q7/@¾ê“?±=2@ç²’?e0@‡~’?…+@Œ’‘?? +@Ðü?+±.@„¥Ž?s!0@;Ž?¡W0@w¦?©é<@‚ ?tJ@7?c®J@6Å?F@ðU?e±B@+?ÄF@Ì”?KZ[@ —¡?]i@5Ÿœ?‘Ô.@!ö˜??*$@™?: @®™?õ¬@×Uš?z%@…K›?ÏP)@ôœ?Ä*0@tËœ?64@ªLœ?éa0@è›?£+@ðñš?Öö,@ÂŒš?ÄÇ(@“žš?æ\#@®­š?9Í@ 7›?Ël@!Lœ?Îß@7¡›?ð @œ?@Z(@Z4œ?³º)@8›?e—'@(Pš?è!.@¿›?ă1@ Ÿœ?Ÿµ2@¹›?âÝ;@¶˜?ÛÑ:@Ó®•?1=4@©è•?7ß/@\Ž•? >/@þz–?Í4@¦j•?Œ|2@1•? r.@ØÝ“?°/@r’?$ð0@b€‘?À.@»‘‘?dK.@¦í?¦/@F$‘?8 1@*Ó?v72@X?‰É4@7)?‰b@@|¶?I@ãŽ?}I@3ó?U6H@A?þíE@ ?K B@‰‰”?5ˆW@ãš?ø¸R@ ‘›? ø(@éü˜?À‘ @´Å—?Ð@›ò—?ã!@é?š?d@&@jmœ?¹Î.@0¤?1U3@A?­¬0@<›?â4(@Ü›? #@?Öš?F$@z ›?u}!@Ijš?ë²@dG™?ÄÃ@_Åš?a€@I‚?»˜!@ Hœ?}ü'@L ›?Þü-@uÒ›?U­*@ò™?g‚)@×ì™?' ,@L_œ?^ 3@öœ?ËJ:@üš?eX:@€••?¡W5@h—•?’2@$Ò”?bÎ/@i”?!’0@ÿñ”?Á˜.@ç”?ª©1@Z “?^Ó1@è’’?ïˆ1@0¼‘?ý‰/@}º‘?¸%2@˜t‘?ÈV1@Së?š.@ S?Ü2@1S?16@ Æ?ÞÏ@@b_?:H@¯“Ž?R.F@žw?™¼G@)}? #N@8¿?~iD@ç1’?æN@®Ç–? D@uê™?9È%@m™?kª@r˜?Ò&@Dù˜?nU"@åmœ?7)@q+œ?äÐ2@›œ?ü1@î1œ?])@Z›?è&!@ë›?›@¢E›?>g @“›?E™@h›?¬@m:›?}¬!@_]?¿}&@Q~ž?Ÿ€,@[?ÙÉ+@Áñš?ZE/@zcš?v]0@Öì™?G.@¨.›?Ml0@ñò›?åÍ5@E›?÷§7@Ÿô˜?o^6@SÏ•?„¾/@S›”?QU*@h3”?Þ0@¬Å“?ºð/@}“?Dñ1@ïz’?„1@ôà’?å{4@ ù’?‡5@Ö“?k 5@­’?™g5@úO‘?ç0@‘?§ƒ3@ã?™]9@?‘?žA@æ¦?7‡F@üaŽ?& G@Í©?5—E@§@?Ë%T@¤~?ñM@‚8‘?VJ@[Ζ?ýE@'´™?¡q'@¶·š?¨2@’ç™?¶@t“š?×n$@Õç›?d!/@mTœ?ï3@i›?0)*@—àš?8$"@’sš?ë@P£š?A@›?ÿ!@‡W›?ë©#@±ýš?áÕ'@|ò›?ØÌ,@¥ú?æÊ.@Þ+?ˆô*@‹A›?%$,@]Õ™?Z0@½Lš?%S3@&…š?…=1@äs›?ÝQ2@UL›?¾48@ˆU™? œ3@»"—?yô*@U ”?µ–&@›”?Ç),@ó^“?AÉ4@Âä’?vù4@Rì’?×8@±p“?¿7@“?¶á7@‚~“?q78@y_“?âw8@cp’?ÛÐ6@Ñø‘?—x6@VÑ?`,;@‘?`G@„?4”K@dŽ?¹€I@°+?ç6J@@¦?^äR@@?@5[@ ?CK@¦i“?8ëJ@Ѓ¤?ÎX9@v”š?Ä-'@S=›?'¥"@=›?šØ @ /œ?„%@š{œ?"¿,@N°›?.¨*@FE›?ð2%@ø$š?ÞZ@Di›?žÑ@€›?ôŒ@\º›?uî@±›?#Ó!@"~š?”Œ)@¤Üš?ð.@Eœ?æç/@À3›?‡Æ1@Sš?ר0@æ°™?Ï 1@êpš?Ê5@lš?æ 5@C*›?>Â8@ì™?¢¿<@*g˜?§è0@²”?Ò )@ÅI”?{+@-”?ŠÊ2@˜V“?× 9@Df“?°%>@ ”?òñ9@Ú“?}×9@ ›“?çH;@_“?Qf:@·ô’?ø:@ “?Þ¯7@lY’?Ã?@øŒ‘?¶*N@–ª?ïÞO@!òŽ?øÇK@Š‚Ž?™J@L.?ÓT@úŽ?—Ü]@Q?ÙöS@(Œ?rïL@ëj˜?ßA@ôDš?†‘+@î[›?4c)@!¬›?ú%@?&?=*@=Jœ?–Ø'@»†œ?Â"@X"›?ˆ'#@â,›?Z¦@>š?”½@³¬š?¬@, ›?S@o¢›?¦Ý"@îÓœ?*‘%@ªX›?€&@0Ó™?H;/@xš?—4@j™?cq2@<™?¿Ü.@\(š?™Ð1@¿¡›?lß5@ªwœ?ë3=@Û%š?‘”:@¾c•?…í0@;“?Qd-@"Á”?2G.@[ê“?h?6@¢’?tG<@Ì”?Ãà9@#î“?[<8@”?Q–<@¤Ž’?²{>@®“?â:@•x“?äÛ9@ ï’?«u>@Í’?±‡J@†?U@:úŽ?]gQ@kŽ?_M@ÎÀŽ?bP@Ù•?«Y@¡ ?—y\@—¬Ž?âÔL@ýû‘?$M@è<•?n»,@ÿš?£Î(@˜Óš?´Æ)@Š œ?º«-@íœ?ná/@ú0?‹š'@Möš?Í¿#@Zš?æ€%@›?˜c @«š?Í @ÿš?çü$@^w›?Ég%@(œ?Î(@ìpœ? :'@!@š?“%@q°˜?RÛ(@5w˜? 1@Ï™—?J¡0@Ž™?§þ*@í«š?3?,@ œ?Ê41@ùXœ?,å9@¼´˜?¿6@t¬’?l .@ÚP”?ØY1@ñ•?Ò(4@Z?“?žF8@bs“?68@y¾”?i:@nk“?=å=@’?pE?@g‰“?D*;@àë“?äe;@°“?cÔA@8ú’?aG@Ï‘?­ƒR@F±?œ™?f*@Msš?´[/@zš?°k/@KÀ˜?ëw(@tZš?|)@SÓš?ÿZ*@n™?Ã[#@ßÙ—?>+ @¢Ä™?ÇS"@é¿™?n%@ðÜ™?{(@["š?\˜&@% š?F%@“š?%|)@[›?Äw*@‚(š?ǃ,@Gç™?­i.@š)™?Ë,@ ›?/@Úåš?=6@ c˜?í(4@5„•?ƒ/@l}”?ÍÉ-@E“?]œ.@?<“?É@3@ã’?'?9@!²“?ìA@̘“?•ÚC@÷‘“?˜A@¡‰“?Ûë=@nL“?¦~A@T¤“?ú)D@HV“?D±I@Ÿµ’?ÂXU@?2‘?)ªQ@]ˆŽ?öÀL@òã???J@^¼?"\S@k’?ø°.@µI“?˜ó2@¹)“?$)5@h#“?ƒ?@ý_“?tTD@6”?©E@À¿”?o@@ïF”?!'A@Gá“?øÿB@¶D“?I»F@™‹“?x4Q@«Ö’?ûsV@«È?æN@B?^ÃH@ŠùŽ?ê'K@Ò?vÙZ@̤Ž?D½T@µ)?#2@@¿Q’?ÑýL@ð'’?ôx$@XËš?-/2@ßš?nR+@@Û™?-Ô#@K™?MÂ!@SÀ—?ÿ@¥˜??a@ ™?$@Åà˜?N\$@@Kš?\*@aç™?°Á*@!Ò™?ø»(@ßqš?õ9(@ÏÜš?™'+@ÿi™?rÁ-@þš?-0@ü†™?° .@Ö˜?K-@]Sš?öB6@„dš?ÚÞ9@Æ„—?Â5@E’”?*ý4@×Ç‘?r™3@7Ø‘?žû4@#’?nŠ6@î’?7Ú<@7\’?-D@F’?–äD@†3“?DIE@í“?asA@£ë“?=7@@«T“?±B@/;”?^M@”?¿U@×]’?J‹R@Âg?ÍfJ@¦ÚŽ?žZG@ý€?nøQ@™p?ë![@#?É[G@}?üðH@.¿“?˜ëA@ _™?¼î.@Bú˜?L'@2hš?‚!@;¢™?!Ü @¬™?¶Â @‚Ë—?Hw"@…;™?† '@ù¯˜?±['@=dš?Zþ(@dÜš?¿©+@”Mš?ÙÏ-@³kš?’,@Œ®š?µW.@è)š?¹è0@£™?¤~0@]Ž™?ï+@Ÿà™?uF/@ vš?Ý7@n˜?ƒÓ6@™O•?j“1@C5‘?F3@ÅŽ‘?¹†3@ôo‘? :@†’?ñc;@µì‘?í@@‘?X¯G@fÍ‘?’E@ Í’?hE@Xí’?ÊÐB@’Ÿ“?H²@@o”?†nH@E¥”?R@ôy“?{ÄR@”:‘?“ŸL@l(?³!H@?$4H@®C?3ÊX@àï?¿P@šÞŒ?€ƒB@µ’?K¦I@=ü˜?“*@ú™?'•(@ÖE™?q{"@˜?ëÛ @ߤ—?›Š@øé—?n"@PΘ?œm(@xΙ?ž×(@û|š?3¢,@r;›?p.@†wš?|"0@¹š?š.@˜u™?0@¾4™?ì0@¢%™?°”/@ôˆ™?åÌ.@ïýš?ag3@h™?ç§7@$–?^a5@B–’?Àß0@=.‘?ÔÛ0@r ’?_­6@æ’?b°;@ÃÜ’?ä;@S¼‘?¥jC@f‘?- J@ºK’?ÕÑE@9O“?sD@C$”?ÂYA@|”?ÃðB@ué”?J@!6”?8âM@¼’?ºN@bÐ?ÆH@Ø^?íE@i? 'K@¡¯Ž?>qW@X?‘ÁF@cÈŽ?””C@Ò™?6ñ)@Y.™?²'@ã˜?-"@-˜?1h @Ș?˜@®Ó˜?È#@Ìš?p«(@ØÑš?û,@>i™?Bz/@eú˜?cR4@7y™?Âê0@u¬—?„Ù+@@¥î‘?ÍjF@7Ú‘?ÛoJ@ë“?Á;D@WG”?fC@Þ•?Î@@/o•?ÄúD@s•?D7L@û”?\ÏO@VË?ެK@@úŽ?¸LG@Â/?ÚðB@êYŽ?еO@᲎?ØU@qƒ?Å…G@q­™?ª(@á˜? '@ x˜?êÊ"@h ˜?ò) @ݶ˜?Ê @ü›š?,)@9–š?ŽÅ+@€š?Tî-@}Ę?…ä-@sU˜?M“/@˜\—?*--@ãw—?Ñ*@„Ù—?ÿ2-@.Ë—?ü.@ø™? d0@Vš?ø6@z·˜?"M?@ï‹–?ùÛ;@‰n“?¹2:@˜×‘?{;@Êý‘?Ñ©8@Šp’?ò9@`’?à€?@";’?)æB@;–’?«nG@šÒ“?KE@ñX”?·E@r4•?Ôæ?@G•?V%?@ú•?òÛH@Ü •?ÇŸN@Ûs’?âP@ƒT?„»H@ùoŽ?ò5C@MèŽ?JrF@ 6?Ž\@·‰?q¤T@ÝO˜?iÞ'@(ï—?<'@y7™?î?!@ÚG™?ø @‰Å˜?h(@†Îš?3“,@?™?-@Ûn˜?C|.@¢Î—?K¡.@Ϙ?Ûµ+@4+—?ËØ'@¹—?ã&@ªŽ–?”‘*@"˜?Ö©0@„?š?å4@‘™?Ý‘?@_Ê–?ÎIB@0º“?Á˜A@é2’?¥6C@a°’?ǦA@¸©“?%>@"‹‘?þ=@·R’?ž@@;ð’?IC@ÌÉ“?:\D@©ƒ“?U9F@øl”?•@@©”?Üi@@€0•?ºD@a0•?^ãK@^1“?,ÍR@­'?hL@€=Ž?‚ZC@ú$Ž? ¦E@«?'/V@ ?Fq_@~——??&@•˜?Õ%%@§p™?¬Ý"@’,š?|%@cfš?ñv-@˜?så.@r——?W@-@ÜÓ–?£Z-@€–?PR+@=~•?k~'@«•? W#@¨–?…ã'@s™?º/@0š?S>@aô˜?4‰D@κ•?„B@N…’?Ýy@@?Ü‘?’©E@B“?ó-G@X”“?!G@%»“?ügF@Ž=”?L]H@ŧ”?ruE@gŠ“?k/D@®§“?ÀE@¶“?ʇB@ïM“?,B@¬ë“?ãH@µ”?ÖœQ@â^“?¦ýT@ý“?1 L@µŽ?uEF@?eÅF@" ?Ö“P@e×—?SX$@yõ—?i#&@A9˜?-)@0˜?Ê /@¸Ê–?Ý:1@+–?x -@Pð—?.@oÍ–?Wì,@Ê•?v)@}Ï”?/A&@áÄ”?^(@äð–?N2@Ч™?ñì7@¤A˜?Kæ?@†–?N?@+“?ch>@3ž‘?éHA@O»’? ¶G@Ðj“?¦I@I+“?ëÛI@cø“?¥I@V”?7ÁJ@J”?ôAE@™ “?”ÕD@ã”?ÖD@Îä“?þ‚C@Û!”?ÀE@²”?ÑÊK@Ì”?GÿR@@s’?oQ@(?½H@‚ ?B«B@ß3?`ÌG@l—?:Á&@A‡˜?„Ì*@P™?„o-@ ˜?µ.@ÔÖ?’z-@ –?Óx,@Á–?©´.@åM–?>¬,@Ch–?Y;*@p{•?g›)@¨–?8Å.@=£˜?HÀ5@ˆu™?C–?@¿„—?ƒ„C@ú•?QŸ>@Oç‘?ƒB@Â’?DF@ËÇ’?ÐI@Zý’?Ü(F@{´“?'E@žv”?+ƒI@b”?{fI@Þ“?GH@çH”?CH@4Š”?ôB@ˆ”?ÿA@fz”?S©C@›r”?‡ÂK@“²“?ÙbS@|¨‘? ÃJ@Ž…?šD@%Z?‹öC@Θ?ù+@Â^š? )0@«˜?îó0@Ts—?m1@ß–?œ+@¢>–?³å,@à¿–?È+@xº–?Óì)@ÅŸ–?‘q.@¼—?.@Z˜?uO0@5š?ÚY:@#H™?Rû@@QŸ–?,ÿ?@rØ’?êóA@ã’?„ŒD@®à‘?æ=I@Ž’?JÝF@ï’?|½I@úŽ“?¶©E@V5•?¿ L@÷O”?GfN@¿“?¡ÿG@†3”?Q´E@ðY”?ºš>@R”?Á¥>@œ/”?ëíE@8'”?•|P@®W“?Ÿ»N@¤µ?åÏH@/ùŽ?eàF@ážš?†3@=•™?°¤3@ëV—?.Œ0@峕?æO+@U²”?n)@üÙ•?B·,@hL–?ä>)@p°•?‘*@u–?X/@®Ò—?b¯0@í™?Mg6@Þ!š?WÍ=@!¦—?Í?@Á”?«í?@å;’?–«@@ìâ‘?±'C@iØ‘?HE@/%“?DJ@^î“?õ J@µ^•?»“K@'s”?®Q@.ö“? K@R”?¾|I@¯U”?I,C@—”?¶„=@Ž”?^@@ ”?KdH@iã“?»þM@$U’?õºO@’?wL@F;š?ÊX5@²¾˜?’3@Þr—?íÏ0@=d–?uE-@z;–?¾0@¬c–?“Å2@æž•?Œ¦*@ V–?÷g'@ät–?#*@²…—? ý2@ ”™?q“8@Ùî˜?‘pB@•e–?—†A@‚;“?1C@þ“?ò?@“?\]C@Uª“?’!K@‰ï”?tWM@>´•?*Q@®•?º±Q@Å“?$]O@¦v”?¶êH@–æ”?ŒáE@2Û”?‰²?@ø”?á>@\‘“?1C@rî“?,tK@Úú“?ѬQ@¸ã‘?áÎN@ ™?¼…7@’±˜?íì7@:Y—?+G4@^5–?B§2@ó –?G˜4@·‰•?M6@„$–?­f/@ °•?‚b(@)¢•?~”,@P¦—?6!7@™?xR?@D—?óD@?Z•?À E@LÖ“?KDD@UÜ“?ýÌE@{”?ªtK@1•?â]O@§r•?ÁR@O$–?}ÍQ@rñ”?É.Q@ãü”?-~K@oþ”?G@6=•? ¸D@1”?Jj@@®U“?C@uñ“?g×I@ü•?©2O@Þe“?ŒðQ@ò—?îÐ2@ç}—?u8@¡—?Iw3@Îâ–?x8@I|–?o’7@~Ù”?’7@”8•?óh2@â,”?O.@ –?òo2@J'™?#>@7Ø?žOG@¾i–?‘´I@ú¨”?—yF@ÓZ”?Q©I@jî”?^ÂL@Q•?­ON@‹É•?Z1O@ƒ–?]žQ@–?@¯;”? 9C@tI—?Ø–0@ƒ,–?ê_2@„s•?kC6@=·”?P>-@á”?l,@¹•?V-@1Ý•?í.@C˜?Ç8@òoš?rB@øg™?2K@ùÀ–?°ëJ@Áù”?gvI@k•?àÜM@¿0•?ñêI@ÌÊ”?í¨N@ñª•?‹ÙQ@¦:–?ŠS@W7—?¸S@ÉG—?H(Q@ø—? 0M@¹s—?Î+I@ B–?\öD@ar•?†ÞA@Úç”?æA?@W —?-@7|–?¼í7@Yê•?ž87@-g•?•ã4@°”?ë•2@€Ä”?­.@\–?Ï‹5@» ™?­þ<@Zf™?®½E@!—?§ØH@;¾•?ùG@DO•?ŒIK@m•?K@&•??K@Åé•?RóN@§€–?AãR@ò—?8\U@A†—?׿V@Ód—?œáR@6€—?!gP@j—?+„H@Ë–?Ú“B@²•?2™@@­E—?vž0@ y—?ð 7@C~–? Ø7@C—•?£:@ÞR•?O:@²"–?åº7@˜¥—?.e;@JЙ?âpE@(›˜?¤zP@Üö•?êM@Ò$•?ßI@FÊ•?íJ@°•?òµH@AE–?¡óI@`—?ÿNQ@ôq—?7ºU@AÆ—?^“Y@°˜? )W@ßM˜?íT@Óì—?zEM@Û/—?ótF@Ü?–?ÚãB@ï©—?`H/@Dc—?‚1@‰©–?ÿØ;@ޱ–?Ä›=@×6–?õµ=@WŒ–?Ê=@´R™?¶ÛD@*š?ôQ@Õ˜?è\U@Q–?‚æN@ÈR–?21L@j–? ;L@vþ•?X†I@¾«—?ócP@ªè—?ÆR@Ãû—?KÞY@.ï—?ƒ}Z@Äæ—?ÉôU@Ç—?AFQ@íY—?—ÈN@ÐG—?7,I@ ™?4@)p˜?Î,:@¹‚–?¦>@ê –?QÇ?@7F–?QS?@ܸ–?ô¸?@N™?î>G@FÍ™?=´R@$f—?òìW@>—?ë—P@a"—?¸ëM@²ë–?ÀáL@…Ж?¼±M@Õ—?Ì…R@õ˜?ýS@ô ˜?þrV@k|˜?ÓU@¬ù—?ÜOT@6X—?W&S@d—?¬P@îö˜?Fj7@¤q˜?ã8@Ç–?Ç<@ÿO–?§ @@‘7—?wC@C:˜?Q›B@õ8š?1ÚI@?¼™?öV@A‡—?8[S@’ —?p™M@`“—?çûN@õΗ?òÿP@ç˜?ŒN@Z˜?!ÂP@ÐÖ˜?S@Àz˜?†ßS@»x˜?ìYV@ %˜?¸öW@ሗ?Ù0T@ ï—?Ý6@æ—?0™9@ïÊ–?ƒ/7@Êý–?µ):@j˜?ˆúA@ç™?ûG@u›?WNO@jþ™? V@Ÿ…—?LõP@÷‘—?×O@ÇF˜?{¨P@vá˜?¢vN@s–˜?]P@V™?•cQ@F°˜?¨T@ió˜?æZ@õ„™?S¯^@ÜϘ?ˆí]@(2–?–º4@JQ–?VÒ6@«=—?,û2@0m˜?D:9@w*™?߀B@ô§š?#I@¦r›?ðQ@é˜?gyU@ŒØ–?àðR@üž—?{]Q@vU™?FN@ó¶™?j¥Q@ë®™? T@@™?üúS@Ôü™?ÌÊV@Çsš?{Ì_@|š?Nb@—?¥}6@šú—?±9@xD˜?Ù:@©œ™?æv<@cgš?[¼D@Oß›?ÚO@¹›?w©V@¡2˜?èU@¦W—?aQ@QU˜?QãM@®–™?ÄíN@¡¨™?ßS@Š™?³ðV@k™? a\@Ùç™?+f`@ÒYš?„ˆ[@Ý‹˜?‰<@*¾˜?–êA@‘¨˜?8{C@ªß™?¾$H@.d›?¹ÓL@ø7œ?±ßT@R5š?SíT@Ôµ˜?ŠâP@ÃP˜?”Q@ür™?KS@Bj™?ôV@¨Z™?6Y@F™?ér^@ˆÅ™?f«^@¼bš?Þ•Z@ÊÆ˜?¢LB@z4˜?“µG@ª˜?Æ×K@€Vš?–uM@ùœ?pŒQ@!\›?øiT@eÜ™?пP@<Þ˜?O@F}™?ÙØO@t5š?ĺT@“:š?ëbW@Ã!š?¶åW@h²š? U@踚?ߊU@ýt™? âG@±˜?uæH@ºP™?½(J@X ›?íªL@lw›?âS@X¡š?‘S@ÞQ™?´SR@Ö<š??ÕM@’š?:—P@÷¸š?äÙR@1›?¶ÃQ@'Л?§SN@c™›?@ÇN@ã™?¡_M@»U˜?B#K@ /™?8L@'š?þP@›Cš?ñ­S@¦’™?MPR@¥Ó™?«ÓQ@‡0š?ó4R@:¶š?DÈS@d›?T~R@àŒœ?ž£P@†Î›? åM@Ÿó—?»ïH@(¨˜?ñ*K@™?Ñ”N@>†š?K±S@]Uš?”´X@€Ö™?bxY@À™?cRU@ó%š?H4T@‹Þš?LR@€/›? #P@¡r›? $Q@:x˜?"½I@)™?6µM@÷ך?×Q@Šé›?u‘[@{›?a“]@Eò™?ÐëW@%¬™?w3S@Õ.š?èP@½,›?E(L@›?.€J@¯õ˜?·¡I@: š?¾qN@ëbœ?¾¾S@œ?‚ýZ@‹;š?hÄX@þ˜™?×YR@ý,š?¸N@Ôš?€K@3þš?k¨H@Ò6™?;çI@žÿš?6K@„œ?0ÉR@ÖW›?I·T@*î™?DQ@Üò™?ÿ™I@n¥™?òýE@÷š?ò3E@më™?&SE@Û›?j@H@Û?&Q@\kš?i•P@(ô˜?ÇjK@ð«™?°G@YÒ™?ª J@ÂÖš?=äA@››?ãMI@Ÿ±š?²ŸQ@'ö™?tO@Ã{™?5¤P@°Ÿš?ë R@®¼›?™qH@³H@¸ ™?8|E@†–™?²A@‚…š?í[G@ç›?‘F@½¬›?žG@'ù›?ù?@´Wœ?‡2D@¤·˜?+È"@€˜?&@T1š?ðP,@P)œ? ì,@^gž?ŸÈ2@¢ž?¿¢5@àü?V&8@Ãëš?¶68@¬Š˜?Bë-@ò4—?ë_*@>‡—?mð*@ò{˜?E+@J±™?Ú³)@4ìš?˜Y*@ý<š?ÈG/@Á—›?å.@T ›?ÿ,1@Kš?ög1@ﺙ?’.@[ö™?0'@ z™?¥%@Õñ˜?€(&@µš˜?Ç"@ËŠ™?+„(@¡˜?„(-@QJ˜?²á,@¡‰—?»y1@Àm–? .@7„–?úü*@}–?Ô,@¿ð–?BK-@‡´—?Ú:+@¥º—?¥º*@wÅ—?¸\.@Ž™?1‚3@á&š?)C8@vÜ™?G—8@Q€™?â6@(™?˜ 2@Î`™?m´3@Zjš?TH6@oH›??0=@…›?ø×C@Jv™?¢ G@6²™?8wF@öÕ™?¶kH@6â™?LG@®‡™?Q D@;w™?²íE@¯š?„F@À[š?‘'F@y+š?Œâ@@Ÿ‚š?zv=@û\›?#A@>µ˜?›Å%@ŒÜ˜?Ô%@5ƒš?Û4)@ ›?¯²-@ ?©ƒ4@±’ž?ûn6@vÝœ?Bó6@1ùš?†w7@¥©™?J½1@س–?„Ô+@>Å–?Œ*@ã™?D*@ú™?Ÿe*@©5š?e/+@¶cš?ºÜ+@àК?uâ0@&Àš?{4@È™?ýÎ2@8“™?>'.@‚Q™?')@ƒ š?ÊÞ&@@I™? Z'@ñ‚™?›Í+@¦{˜?Ú˜/@Ö‡—?)2@ì˜?¡s3@<—?}82@´<—?J†1@‘…—?!Ô1@aŒ—?D—.@“^˜?®ç+@ïÀ—?$¦,@š˜?~ó/@[|™?ç5@Àh™?ÿ36@'L™?Û›5@S«š?vf1@5Ëš?b¾/@°ã™?^u/@ Ü™?rÿ3@ j›?lj9@Ñù›?9'>@lL›?g&B@T›? úC@ˆÛš?×ÝF@Ÿkš?ðyD@¦ š?ñ€C@•>š?ß­F@o™š?ѲH@å&š?¿,D@·Ì™?’}?@âÍ™?Æ>@R<š?+YC@pU›?o#@x›?Õ @‚¸™?‘é#@xŽ™?],(@Tœ?ª¹/@l÷›?Ú6@{œ?_4@Èò›?”Ø4@í–š?Ða-@H´˜?´T(@×?ÑD,@¬s˜?uÿ,@{ý˜?#,@™?Á,@íË™?ëG/@˜?›?YJ2@r›?kK5@ôø™?е3@â™?'^-@g™?Ó*@Å|™?F+@\„™?·C,@&¹—?á.@¢­–?8§/@‡a˜?Ö3@'Ì—?ôê3@¼'—?þ2@±ˆ–?o>1@y~—?Mä0@Œ—?·Õ/@*‡—?¿2.@jô—?n-@A‹˜?ÿ_5@ðЙ?³,7@¡î™?F“4@tš?9_0@áš?5+@¿Hš?ZY+@of™?&¸/@—›?Hð6@ Uœ?õ9@`œ?{^;@µœ?A@V³›?*´A@#›?i!A@,*›?xA@ÚX›?„E@¡òš?‘ŒH@õqš?ÁD@&š?[C@ôš?#B@â\š?#¥D@>,œ?‚%@L—š?pK"@Ë™?=W#@Ba™?à*-@`Ìš?þÎ5@ѽš?,q6@››œ?%¦6@À¾›?3@€„›?Ë<1@j5™?›¿.@>š˜?«0@ª¥™?®Ž/@Gµ˜?bÒ/@ʵ˜?*@jš?b,@ôãš?^ 5@Å”š?k‚6@c~™?Þy0@1™?Ù,@Æ•™?@·*@ØCš?pO*@– ˜?ŸË/@ý—?„ò.@r=˜?Ú»1@XŽ˜?•54@§f˜?Ž>2@s"˜?=Ñ0@oÉ—?ëg2@ìΗ?pL5@¯u˜?:13@óW˜?t*-@w˜?Œå1@ñ ™?;ä4@Î)š?D3@+›?)<-@$æš?×*@4Jš?ÞÇ+@ɱ™?>.@.Šš?C2@:›?›ú4@œ?Û6@n¾œ?"H<@Ë‘œ?üù<@´ì›?ÚÑ=@Èdœ?±/A@+£œ?G@EC›?>›G@àþš?_èC@„í™?'°F@qš?YgI@«š?0’G@¯›?®¦(@ß>š?ù“'@ø›?pò#@hš?i.@hË›?æØ4@ªáœ?£Õ9@œœ?ê=:@À!›?tŽ5@Éé™?ß1@¾˜?6@D!™?€ä1@0™?|3@ÍŒ™?5/@{‹™?)»0@¼&š?,S2@ jš?ÝÞ5@Q½š?}1@“¢™?ÌØ.@Ýg™?.@¢úš?³'*@Ÿk˜?ÿš.@KƘ?© 0@蜘?µ÷0@N™?++/@Êw™?‹ø1@¤ä™?´h1@×¼˜?*b4@DϘ?Í4@ìÿ˜?¨7@°˜?­B1@.™?k²0@t¯™?¸f3@hÍ™?H+1@S*›?-”+@â—›?R`*@•ëš?cN*@ß›?¨Ì-@=$›?L`0@^›?Ù+4@”#›?5s3@@1œ?õ4@œ?n7@]œ?[R:@íøœ?õû@@X#?°F@‹Þ›?jáH@L›?8ÓC@3”š?€H@‹¨š?«GG@¡ š?7¾G@Mè›?²(@w¯š?Æ¥&@y\™?Ùw(@š?ŽL,@`?*l2@˜u?>9@Þš?<1;@xu™?5@ÞÁ™?^82@J„™?Þ".@c™?e¯*@²™?q,@Òš?*/@x›?KA1@Ó›?=‰3@+Vš?–ä2@š?^„/@œ™?Äì,@)]š? ‡/@ê™??µ-@"™?ñš/@Ô™?ô@/@>™?Y0@%·™?-m2@’™?À›1@Çü˜?+ë2@€<™?è¨2@#¡™?Ó7@ š?YF6@ š?þy4@úô™?^ù3@R9š?Æñ.@G¤›?vv-@— œ?‹«,@k­›?€x+@ªÑ›??ø,@Ùè›?Ù²0@GH›?« 7@8ù›?‘d5@Hè›?.'1@õ=œ?1’1@?)3@–¾?vÖ:@ÇO?x F@ÝÍœ?ÕAG@燛?W*E@>R›?*mE@É•›?G@Èš?¸SF@†œ?q(@$š?è±&@+ã™?\Ä(@ ›?wš,@Yל?À$8@厛?ø1:@…'š?b¦7@Ìm™?Ý4@h½˜?¡F.@Q™?ëp+@jþ™?íd+@ý.š?íô-@"B›?•Ø1@ °›?¤L4@}«š?‹6@¾™?æ 2@Õ¨™?i©-@Ùùš?ÒÔ.@]Í™?tS0@À³˜?`m2@ߘ?£Ë.@Þª˜?ɘ1@j~˜?.5@N™?65@1ý™?G®4@kš?È 3@<<š?÷8@óš?Q:@„ƒš?»6@.š?6n4@rŽš?àü-@éÅš?^Í,@sq›?ÖØ.@ÑÀ›?yÚ-@«›?…+@œ?£ð1@㛜?x‘5@ຜ?FÈ3@"?hÏ/@`‰œ?êò-@i–œ?k"0@Gž?LÀ6@¯Ÿ?×ÊA@lž?fõE@£Œ? D@žxœ?|†F@Š]œ?™I@3d›?ÞD@a¿›?ëÝ(@‹™?æw'@fkš?Ì*@¬8?™u1@?ó?tG:@¶:›?ùë8@¼Ã›?Qº8@Äš?‚ò0@'Í™?ï¹0@hš?¿á,@ûÌ›?ð$,@Ÿûš?¢ï,@V³š?}*@[[š?³$/@æ™?qå0@{¬™?<9.@k#š?äÄ.@M™?4ê/@ã˜?5w1@<-˜?ù0@da˜?@Þ1@Q—˜?ãè7@œm™?ëŸ6@Њ™? \6@9Sš?+7@Qæ™?;Ã8@ùfš?d·>@'›?¼Ë;@ͺš?ÛÃ3@›š?´Œ0@™Šš?øù/@#›?/1@uüš?ù*.@ï=›?P~,@Ñ»›?[Q3@v ?d1@6C?KÙ.@cC?ë¯-@¦Ùœ?ÖU-@ÚGœ?åj-@ú·?à0@h°ž?¬I7@âž?ø D@wFž?žG@Úk?ÛH@Aל?gL@'œ? 8I@Ù@œ?%@ š?üâ%@þ7›?}K.@B ž?¤6@Ñœ?}ö:@ÉO›?ã{9@Dô›?D–5@—µš?I>1@Ž™?£½/@°Êš? 0@öŠš?éG,@~·š?—¯)@©™?œJ+@ªå™?ø·-@¶™?QÞ.@]š?+=-@D—™?h.@ma™? ´1@&T™?Õ».@Í(™?s·4@ˆú˜?ð’8@¨[™?Ù5@;™?Q§5@9¿™?sŒ6@Õdš?|:@V›?Ñ >@þ›?+=>@æ›?Vc8@¼Òš?˜=4@ŒÅš? 1@ ˆ›?8J3@xÞ›?å/@ç?›?Í-@ÀÛ›?WÎ0@ˆ?<ý/@pÉ?‚‰-@?ž?ò?,@|>ž?Ù.@4?è.@pž?àH/@ûÓž?"0@Ê4Ÿ?ÕZ9@‰ž?3G@éž?÷H@;â?_]M@›?G‚M@îvœ?•è&@¿­œ?žf,@#yž?‹€2@œÎ?;‘=@µ)œ?Û=@`À›?í´:@¥ß›?”š6@7"š?Èd2@›=š?pa/@º›?Hý,@GFš?¿˜)@#š?Œ)*@Fš?£;*@€™?×],@?š?g.@Æjš?ÜW0@p™?3@u ™?¹~3@šz™?N¾3@Ö™?¦†2@ÙÏ™?en4@rš?²ª3@=Úš?{F3@ ›?V5@8*›?x:@‹*œ?CW<@Í›?w <@:½›?±L;@Ày›?'@5@Pwœ?aé3@œ?éµ1@ý™›?ž/1@R<œ?q0@ÔÑœ?‰?0@Ìì?Ù`/@0éž?ʾ,@~Ÿ?ÏŒ.@p¢ž?Xî0@#_Ÿ?^x1@’Sž?]ô1@g$ž?œm3@¾ž?ÓÆ9@až?ZÁA@h›ž?™E@tž?yÐH@Ruœ?z*(@K¡?kÎ2@úž?^3<@š™?‘IA@pœ?°?@»-›?±í<@¢š?µ÷2@)0š?Ï_-@nÙš?c+@A9š?í)@^'š?Ÿð*@=Uš?,>,@ô¥š?¸*@»÷™?„´,@1 ›?”Ð/@÷3š?Ë3@5†™?—°4@'¨™?4W6@ Ÿ™?@Â5@ÊÇ™?•J4@wcš?×V4@5›?c6@€—š?»v5@Óš? 9@ë œ?ºj9@î›?DN9@€wœ?uŒ;@œ?,8@蘜?#…7@Cƒœ?#à8@SHœ?h 6@36œ?Í5@MÚœ?î2@X ž?ò«0@´wž?÷Ð.@sôž?Ž´1@x}Ÿ?ÛÅ4@]“Ÿ?Á+4@ù?‡é1@©+ž?æ„0@FRž?Û36@;µž?ê)<@àž?VÀ?@¼Üž?B@5üœ?@$1@˜ˆž?Z:@6!Ÿ?øY>@p?³¸=@x>›?{‡9@Ôžš?‡•5@šš?Ïg/@¾Ëš?>ï-@?Šš?Ò,@•nš? +/@Léš?;ž/@š?[À,@7{š?×°.@kÛš?Ú‘/@–~š?‚1@X™?Ñ1@Dj™?W.2@Åý˜?øÃ0@àš?Äm5@Ĉ™?õœ5@‰7š?‰-7@N§š?§f6@›pš?G9@S{›?,+9@{~œ?^Á5@Ù*?Œ26@S!?“8@&ºœ?Ñè<@WÝœ?yâ=@ÚJ?ã;@Ò¤œ?9@Ëc?²¡3@÷¥ž?Ñ1@dRŸ?3@ñ´ž?ko4@áGŸ?“[4@YŸ?p‘3@ ?ž?mc3@¬Iž?¦M1@/kž?O6@Z'ž?ð•<@–ó?k:@þAž?Çß;@´Zž?>Ü4@’ž?x©>@)“?%(:@÷Éš?Ëê7@ÇÙ?_c4@åÛ™?í.0@Yš?î1@¿…›?2Ü/@ùZ›?x¤/@¨0œ?8…0@\,œ?x40@¼0›?Žÿ/@@ýš?Ë–3@>*š?ãh2@ñü™?T62@ñ¢š?Aö2@›?sz*@̲™?‡².@™?«:4@Æ™?o#8@¬3š?­V7@N‹š?{7@ ¶›?™[4@ñœ?Áç4@Á|?›®3@?z8@ÍS?þ>@¬?¾D@æû?ßÙ?@¬®?2™<@°÷? 9@§wž?`Õ4@€Ož?Q×6@êrž?"o7@¶ãž?v5@Фž?ú˜3@A.Ÿ?d?1@[æž? q3@»ž?kÔ7@‰Ož?X²:@<÷?;@¡Ìž?-À5@¿æŸ?YY5@TÚž?ÊŽ;@ú¿œ?D×7@oæš?'8@2§š?õ6@uÀš?áï5@裛?|÷0@mŒ›?H”0@‰›?0@5œ?P /@ôœ?Â2@ ›?¿,2@U ›?Â3@;eš?«u1@s¸š?+5@ “›?«0@±™?Q/@Ne™?Z2@¸^š?#Û2@sMš?±‹3@oš?ùÖ4@°£›?¬ì5@Ìíœ?ƒ7@Sh?¥™3@ }?KQ4@†&?¥]<@plž?r¬A@ǯž?HÇB@u…ž?-7A@ÞEž?›í?@ûŸ?µ<@xÖž?U<@´šž?ãÃ<@M-Ÿ?ù>9@f½ž?}÷3@CŸ?6@B›Ÿ?ëÓ6@ãž?á7@höž?ݤ7@ Sž?)Ë6@Ó°ž?»6@\ ?xˆ9@Ù8ž?ûÄ5@6Žœ?7R6@¼\œ?•69@Çó›?™;@À;œ? €8@Paœ?1Ú0@§Ðœ?‘0@ßDœ?0@ëÕ›?a2@E›? 7/@ß+›?ËX0@Ç…š?G†2@’„š?ƒ1@"b›?‰?1@Íš?«1@šš?,2@ôš?p2@—c›?–É0@•ˆ›?©2@È_›?²‘6@Ùœ?|h8@¦¯œ?¹‹4@±Úœ?ðÁ2@\Êœ?Ö‰9@üÍ?4l=@ÔEž?Ž@@Ϊž?½Ü@@kYž?[3D@šÑŸ?!âD@ÎíŸ?jtC@¯ËŸ?ÜíB@tçŸ?šh=@°£Ÿ?å¸8@YŸ?‰8@oNŸ?=Ê9@rŸ?åÄ:@‘õž?CÊ7@aŸ?šN6@†Ÿ?ð…5@ç ?ÅÞ6@ËÍž?fˆ3@uÝ?6@Up?D8@ÿ‘?}:@Ä‹? I4@Œ?u2@ÒËœ?qo3@h›? ‚3@»¬š?®q0@ÂG›?ûr2@`ñš?­0@Í™š?‘-@?œ:.@’–›?…1@Í!›?^ã4@Ÿš?S«4@| ›?¡£0@xã›?‹Û3@"É›?3@ˆ±›?%´3@Ÿhœ?Õœ5@¶‚œ?ôÌ4@-h?øq7@wž?¥t7@°ž?f7@MŸ?C†<@g>Ÿ?ÞƒB@†\ ?ƒíE@ô6¡?ÌCE@¡?ƒÂD@=‹ ?àBC@(I ?VA@-|Ÿ?Øì>@Cøž?Â>@µrŸ?`”>@à“Ÿ?í9@4ÑŸ?ì—5@œŸ?Tø2@kã¡?›7@0£Ÿ?f9@‹š?Ü‹9@¸À?j«6@ ¹?Ó4@F$?˱3@y?‚4@ò­œ?ïÑ4@>gœ?dz4@bå›?Ãæ4@ži›? W3@E›?«#1@åN›?¥k.@r±š?¶8.@àœ?où2@Jœ?Wç4@ž›?63@\N›?µ×0@‘õ›?ØÖ0@P›?¶g/@u½œ?z3@ò‰œ?Þ46@ǹ?¨O5@£ž?JÑ2@ö§Ÿ?(4@4ûŸ?hó5@;ÿŸ?ûÏ:@6 ?IÍ?@R¡?iÆA@„¡? C@L‡¡?3¹D@k¡?œD@$Ë ?ðB@bV ?†­A@(\ ?)¡B@åÙŸ??[=@ —Ÿ?§u7@¤ñŸ?õ»1@lÕ¢?—Š8@se¡?&è:@µ Ÿ?†|=@Úž?Á;@k?«™1@÷ž? -@˜?÷-@8íœ?U[2@Ÿ*?‹±1@§S?1@»Wœ?×21@®¡›?0@µkš?+Z.@+èš?ï.@ZŠ›?º1@Ùzš?þæ2@°¹š?Eâ.@0ôš?ˆ{/@ÉË›?i,0@ \œ?­s0@.K?5§6@pmž?<6@ã}ž?I4@¨¨Ÿ?4@*ÄŸ?}À6@±4 ?ŒK8@–šŸ?!8@ØD ?^@<@5¡?_Ò=@Rš¡? ´A@c­¡?òÚE@hª¡?E@ ·¡?¥rG@‘“¡?,YI@e‰ ?ü0B@s¨Ÿ?·6:@)ŸŸ?(53@õ¤£?e8@Ñ£?µ =@†Ï ?ÛT?@,ž?×a7@Ûñ?Ûh.@`~ž?Ö\,@VY?ü40@©n?0Ô/@žŸ?Ž×/@ ?sÓ2@€Í›?ÈÜ/@Ž|›?[ù/@HO›?pP.@6Ôœ?xé2@žœ?®¤0@€¥š?²-@acš?PQ0@4:›?ˆ¬4@z0œ?e­3@òØœ?è‡9@FÇ?Ê7@’nž? À4@à.Ÿ?žy5@®Ÿ?ñ5@T7 ?KY7@ ¥Ÿ?F¬7@¯¡ ?Ù5@C¡?šá7@]@¡?vz:@‰6¡?ôc=@‚¡?<”A@‡Ö¡?QÑE@Êã¡?oMI@¤ž¡?„vE@Gð ?WÌ@@ñ ?Î;@FG¤?.é9@C¨£?Ñ>@’¡?[C=@}Ÿ?w7@~hž?8Š/@(b? ä/@‚Íœ?=0@6œ?j1@锜?ÙS3@âAœ?gç0@wí›?iª0@)Úœ?%2@ˆÏ?N·3@yž?0”2@äQœ?Õà1@3›?º3@úÍ›?‰:@„B?C<=@ªL?Q¢;@Ô„ž?A§;@"6ž?Ž7@xמ?2¹8@é|Ÿ?ëà6@÷àŸ?µî4@` ?êS4@: ¡?ME2@Ö‹¡?2#7@ìe¡?;`6@DÅ ?M67@Q¡?¯:@4¡?î @@ØŒ¡?zzC@ ¢?PÅD@š¢?MF@ ¡?™ÒC@¢‰£?‘Â8@ŸJ£?Ø~;@"¢?@ª9@M ?üf7@ >ž?`¯4@øüœ?¹ù2@‡¿›?í¶2@}›? $2@¾wœ?7Ù3@oœ?ÓÓ6@抛?…í1@ôœ?J2@Lž?+U7@¥C?ðë6@ƒœ?8ù8@µËœ?¹"?@îOž?lÖ<@Æž?1ï<@xž?Nó<@%„ž?À‰9@yMž?ðg<@ÝlŸ?´?9@{  ?“&5@A¡ ?'X4@†¡?=A3@þ$¢?*»5@ŒY¡?ÓÀ3@R˜ ?D¸1@ÝE ?‘3@ì ?Á39@~3 ?¿ =@Jס?Qg?@Ó•¢?”?F@lR¢?+ÅF@ú)£?ÐÌ4@H£?üí2@¼¡?2ƒ7@ ¶ ?8O8@O‚ž?»z7@h¹?‚™5@êýœ?'4@¦¶?ÒS5@™‚?Ê)9@î’œ?¤9@gÜ?ʾ6@¯˜?¬¢9@²r?º(7@~3ž?Öú:@4Ã?R >@^^ž?òú<@ÂÏž?`À>@™Hž?ø¿=@¤iž?<-?@´.ž?ƒn>@‘ߟ?¸À<@(³ ?4Ê5@áÍ¡?ø¯2@Ò¢?p82@^€¢?ǹ4@Xt¡?^í3@¡?r‹/@‚ ?-1@."Ÿ?.!5@ØSŸ?§v7@öò¡?Ç×8@t[¢?6T?@­ª¢?P¢B@žH¢?ÃÀ0@ù¹¡?‚/@ž“¡?ߥ3@+t ?ÄÓ5@uŸ?G.5@ÞDŸ?’ï6@ƒµ?tÊ8@V¦?l¾:@€1?Iª<@Žêœ?²ê:@³˜?¸8:@ˆÖ?õ”:@“Mž?+ê;@7Ÿ?¨Ò=@MÀž?u>=@]Ìž?±™@@füž?‰É@@3ž?æ“C@OBŸ?Û4?@d7 ?÷Š<@ø¡? S7@Íf¡?i4@ï¢?*ª2@!å¡?€*4@³œ¡?£C4@Ô£ ?~·2@óÚŸ?¦3@û2 ?:Œ1@Cä ?ü#2@Èt¢?¹n2@zx¢?·©7@E£?=@¢?ª&/@\¢¡? 1@@ ?ºs0@ü ?ýÊ-@ž ?Þ»/@“Ýž?ã 7@uZž?,ø6@æÎ?!ç6@:™?i¦7@9Í?á…6@¬Ñ?%68@¹ž?‡9@Ò®ž?ŒÓ;@CÓž?K…<@ùŸ?8@@zñž?ýÓD@8—ž?(CC@¿®Ÿ?³WD@†´Ÿ?Nš>@æa ?8ý8@G¡?b8@x¡?Æó3@wþ ?§3@åi¡?­Á4@P(¡?íþ4@¢_¡?y¤1@Y.¡?«J/@8˜¡?Þ©1@ŸN¢?;ò1@> £?¡5@§ ¤?Žõ6@ß¡?Ù™.@Ú0¡?G.@¿6¡?^M-@²¡?|1@Ww ?+¤3@œž?íã1@ªÍ?–ä2@UV?g¸0@“Ÿ?4“1@ÚÉ?²'2@üâ?1:2@Iž?uØ8@\6ž?ÝD:@­ž?Q­<@6BŸ?>B@A/Ÿ?™»G@kÝŸ?„öF@«òŸ?¤ù@@Ä"¡?ÇN<@?¨¡?+G7@­#¡?uP6@‡¼ ?r‚4@ÚE¡?v¦5@^¤¡?þ4@Ö›¢?X¼.@€§¡?S¥/@ë¢?íz0@H£?|4@z†¤?­¶3@J{¤?t>4@Ìg¢?{Ï.@8¢?E£-@ä«¡?H'2@øï ?'W3@ŽÓ ?ÕÓ/@];Ÿ?œ3@ÿmž?Bä2@Wž?\1@ds?`/@õ?Ð=/@Wíœ?%5@íO?ŸC:@¤ñ?ˆ¿;@èZŸ?¬Î?@¼œŸ?ÊE@UÒŸ?¾H@.áŸ?a÷D@â‹¡?×+?@P¢?ðo8@ }¡?ž26@'8¡?\í5@í¡?…“6@"p¢?Q(5@¾N£?H˜/@uç¢?+e0@GÇ£?Æþ2@£C¤?Aê5@r&¥?õ3@Yf¥?07@+£?Mç1@;²¡?/!3@Ãl¡? ÿ1@ ?£1@|¢ ?àÈ.@ÛŸ?–b1@ÿìž?Ç0@êÑ?›Â.@Æl?Å/@¨‡?4q0@ÅB?eé4@`Jž?#N;@™ðž?® =@ §Ÿ?J;@@>' ?óMD@©¡?¨I@mî¡?;JD@wÉ¢?±•>@Ú£?ÏI=@ïg¢?DQ<@”s¢?þ–9@£?¥–5@ù+¤?úÔ4@„£?Ò6@ü‹¤?Q~5@F½¤?ß 6@TS¦?u94@K¦?ß"7@¿÷£?’›3@’¢?Åä2@t ¢?õ{0@Vá¡?zG-@ç}¡?úô+@?ÈŸ?+Ð+@¼Ÿ?UÎ+@ó\Ÿ?ðe.@Ÿ?".1@]˜ž?>)4@– ž?Ÿô6@äŸ?&8;@ºÖŸ?8@4_¤?¡¤7@î?¥?o­4@º¸¦?r6@O§?­Ÿ8@?o¤?”«5@,å£? v6@¢£?€ý/@4¢?c.@q¢¡?D/@9½¡?øh+@ÎÜ¡?†;,@·…¡?ª.@Û¡?^±3@·I ?šù7@g“ ?Ê>@i¡?,QB@à<¡?”ŸH@Áˆ¡?,L@ŒØ¡?ž†J@÷†£?ÿáH@aפ?-YD@g¿¤?¬1@@5q¤?”›<@"ë¤?*“=@­¥?äú=@¥?S:;@h|¤?÷y6@CH¥?k4@ò ¦?³9@õ˜§?%î<@=1¥?—V8@‰¥?·a5@g¤?Ä¥1@ ¢?Åù/@\ƒ¡?/7,@… ¡?õ’-@R~¡?Í.@¥¿¡?½È1@ÔU¡? ’5@#¢?b9@߆¢?!?@`*¢?kG@ ¢?8&L@™[¢?ŸK@D¯£?âÎJ@!¥?nãF@'"¥?&KC@Xh¥?‘â?@ÐN¥?µ C@½{¥?ɹC@HX¥?D§>@.¥?T8@›t¥?°¢6@Z±¦?f'<@¢§?ÑŒ>@˜¦?ˆ‹8@…t¥?¯7@¤?“‚3@‹¢?t‹/@—›¢?½±/@Wk¡?O9.@£o¡?ã¼-@¬š¡?kW5@ o¢?«7@âh£?½s<@‘¯£?Ó&E@§â£?¦ñJ@Fª£?"M@L¾¤?_pI@Öp¥?(ùG@0U¥?[ŠH@õ€¥?î!D@Š¥?MÊD@n°¥?E@\Å¥?ÇF?@æ«¥?¤Ã=@To¦?eì=@Ù¦?LU=@€‰§?j?@×m¦?µ:@5Ä¥?¨ó8@2¦£?8l4@=Æ£? ?3@ò£? Â/@"q¡?Ú%/@ ¢?ÉÕ/@³M¢?Aå2@±P£?ü“7@Ô[¤?¬A@OÖ¤?aZK@ꉥ?ïBK@È,¥?F@|ò¤?0F@»Â¤?ýsI@2¥?±ØF@Û7¥?›6F@€8¦?ŽÀD@q¦?©¿D@Û™¦?ag?@ï§?‡O@@Òe§?°-@@»W¨?V%A@åC¦?…B9@ìk¥?uw6@0'¤?ëô4@³Ç£?ë72@&:£?ƒ.0@`"£?Ë?1@Q ¤?Õ¦1@Ž™£?Re5@–k¤?ô}9@Íh¥?)>@æñ¥?CšA@£X¦?ÉmA@gS¦?-eB@ý¥?H@Õʤ?bãK@õX¥?I@;^¦?ÊÀG@³§?ñŸD@ÿ¨?k]A@nШ?Á@@™¨?UË@@õl©?sBD@Ê&§?°;9@Z‰¥?®6@n,@ÇÊ¥?d!*@ö§?eI)@­¦?Ñ+@ß%¦?Ð=/@T ¥?‘l3@‹¥?º°9@ཤ?’øA@D¥?­F@—U§?¥>H@V½¨?uÁH@Ÿc©?¤¢D@‘‡©?)œB@u2ª?ÔC>@«?=A@š§?û.9@/¹¦?Ãn8@ù)¦?Ó(8@‰¦?Ô¿2@ŽB¥?5˜-@ªc¥?NB*@}¥?•¡'@:®¥?'@óy¦?jý%@ÃÞ£?¦'@¹;£?Ðs-@w£?)À5@¬%¤?ã¸>@-k¦?¥D@¤¢¨?DéH@c1ª?oãF@·oª?²C@,„«?Qç<@æÉ¬?ËŽ>@t¨?"›>@]ö§?‰,9@KF§?üã7@„*¦?Ÿ3@ÙH¥?R).@'¤?Ć*@¦å¤?í '@Äþ¤?V%@©l£?ª«"@]>¢?ô,&@‘!£?è‘.@ï‚£?òx8@×¥?¢±@@àˆ¨?ƒ¶F@±¸ª?áÏD@Mëª?Ìâ@@›–«?x;@Ýû¬?à;@/Ê©?„;@¼¨¨?Cˆ;@Dn§?KÉ7@ƒÎ¥?Œ2@¥?4 /@÷ɤ?6í,@UU¤?çs&@ªô£? Õ!@»‡¢?­Ö%@O5¢?;Ù*@7H£?‚V6@æÝ¤?L]A@Nõ§?‘G@Ý.ª?IB@º±©?Áb=@<1«?;@K­?n9@ [©?&¡=@[©?ÊD9@Íë§?4F6@¦?Ù>5@—Ø¥?Ûy5@=f¥?ê.@>s¤?‡W'@~$£?o°&@º_¢?WÁ)@Ûm£?ÙZ4@ú¬¤?üæ?@!6§?’ùC@Umª?Tå?@tš©?æ<@¨Ôª?¨Â8@\z¬?ßò7@[ª?À%:@aY©?+77@×›¨?Æã7@^~§?^¾6@dC¦?g33@—b¥?;à,@ʧ£?¢*@W<£?R)@ïò£?‘‚2@É=¦?tü:@„¦?ËØA@â–©?4ý=@`ª?–Š=@‚ª?g08@Ø ¬?t 5@õ‹©? ¦7@Àï¨?œœ9@}f¨?Éz7@äå¦?à6@ºö¥?DŸ2@õȤ?à¬.@lÈ£? K,@ai¤?Q2@ͧ¦?Y£8@ìÖ¦?YÚ?@sO¨?©ø=@û+ª?†=@xª?Q*7@ö¬?h¨2@4ê¨?à7@®¨?ò8@i§?Va7@á¥?Þ¡3@éÑ¥?&£0@éò¤?%¡.@  ¤?„/@~>¦?QÌ5@v §?•Ý;@èx§?ò|@@ŠÖ©?^@@|Úª?Ó<@©«?5ä5@¸Ö§?Û@6@K^§?*Ñ4@^r¦??ü2@ùM¦?^A0@á5¦?,-@&¥?¯±.@¸¦?D4@:§?»l:@C4§?ëœ?@Ù[©?Ó±@@8åª?Õ>@´ëª?/”8@Û¦?IÞ1@©å¥?s0@…¦?*‹/@–þ¦?…¼-@_s¦?.I0@mѦ? Ž5@4ù¦?^1:@ô§?ä…=@‹©?ŸA@Iª?¼vA@{!ª?ãm8@Ip¦?ì’-@ [¦?§/.@¾ï¦?_/@9Ʀ? r0@…'§?@5@Œ«§?«}8@Îv¨?á%@@ºC©?ÜA@«8ª?þwB@ÂD©?T;@Üg¦?7L-@8§?õ-@H¦?di/@5ê¦?6@ÐC¨?Qð;@Ô¨?ÏA@Jò¨?°5E@ÆÞ©?®UB@Ë©?Cê:@`1¦?*ç,@uY¦?Ùk0@Œš¦?Õ?6@¸ê§?á :@W1¨?%?@Jب?ì C@Å©?¨@@Yí¨?ø‰8@A ¦?‡O1@®¦?§¥3@7Ó§?¤¸:@™Ö§?~ó;@`©¨?È?@º®¨?ÔÑ<@&ͨ?á´9@fݦ?b:@Uß§?B =@%¨?ò=@£"©?«ëA@ó0©?8DB@OD©?j=@]s¨?sF@³ ©?ÀÿC@œ•©?ßfB@"©?+ÖF@깪?¥4C@[÷©?‚G@|ª?µE@@I«?=J@²@¬?µ#I@è«?J@I@<­?øL@‘®?%‡M@¤A®?•ºH@E|¯?õ©J@W¬±?8tK@ÞÏ‹?ed@9Œ?Jug@cŒ?ÒÕf@~?¤‹a@èJ?‰ëY@$§Œ?ÈõN@"AŒ?ïB@K?TÌ:@:&?Å©7@Çp?¡õ6@Á?!Ò1@•Ž?Jà0@Zº?Iþ4@¹6‘?5Ö6@`:’?‘‡7@Γ?ƒ7@9g”?\\7@‰”?¡D8@MG•?ÆA8@/ú•?Äå9@À–?è;@Pð–?^<@~–?cá?@ÕÇ–?;·>@$ —?®ö=@9—?QS=@å—? ÿ<@µ˜?H=@òI™?i;@æÉ™?>J:@©Žš?ù¿7@j›?ºÐ6@B·›?„í6@Ítœ?¾B9@’·?LÕ;@Þß?¼KB@猢?#íK@¤?ËR@÷B¥?.©P@Ìk¦?BK@.ª¨?Z‹E@·àª? ¤<@R­?üƒ6@oƒ°?ÖÙ2@š2²?Áô0@uϳ?d3@´?. 6@o¼³?¢6@´?dÛ7@Å´?_*8@ô µ?Ðÿ7@›@¶?W 6@&‡·?Û­.@¯¯·?Q˜'@ܸ·?ý%@nð‰?òZ@/Š?„ÈZ@…)Š?E[@rU‹?!{W@T“‹?;œS@ï§‹?/“K@YµŠ?¢?D@ökŠ?t;@¾U‹?þ4@ù¤Œ?’Q/@†ˆ?‰Ç-@»FŽ?/+@­!?ÝÎ*@tŒ?›J-@ƒ‹‘?ÔN-@éÙ‘?}Ò-@L’?ë«,@&Ñ’?D&,@/'“?é-@ý¨“?÷l-@¦>•?|•-@ŠH–?÷/@Á–?Åð1@0ô–?m|1@Ñ¡—?áÃ0@üX˜?Õ 1@(™?w1@ƒÂš?S©1@£›? 71@•—œ?{0@£??¡.@ÝË?'l-@ ¡ž?;Ï,@‰mŸ?óD-@S‚ ?¿.@¢?†0@_\£?•‡3@1¥?|š8@ò¦?£ý9@â7©?á:@ëª? #6@K­?¼i0@ʯ?«(@5 ²?z¡#@U0³?-"@ò‡³?kŒ$@³»³?¢a'@ å³?ò™'@µ?Ö'-@²§¶?3@(¸?H€6@D¹?þ4@€Ä¹?È-@À>º?gþ'@Ÿ‰?„`Z@õùˆ?7@X@ŽÔˆ?ž»W@Y]‰?Ï@Y@^ô‰?Q›R@!Ò‰?ž¢M@Í™‰?¢C@°‰?¸£?@kˆ‰?Ö‰;@X‹?Q÷1@š?«n*@U†Ž?~)@Œ±?å“&@$Å?ì3$@˜í‘?ž–#@僒?%.&@âÎ’?ªG$@“?ÞÀ$@4u“?ú '@ç+“?¸e'@¼Ì“?õ'@ùZ•?,ó&@&E–?©U&@´¸–? q%@ÉN—?`+&@½+˜?¢'@Yd™?Û'@\J›?€'@2»œ?•-(@äø?Є'@ð9Ÿ?5ô%@¶- ?^&@>õ ?„k%@Ý¡?}Ï%@Èm£?ð~&@æm¤?*±&@¨Š¥?|4(@Ð/§?ˆ£(@ Ç©?¯z(@3Þ«?™(@Õy­?Sº'@«Ò®?èy%@¦ü°?œ>"@‰³?ÞC@Ô´?÷¦@ ´?á”@ ‘´?P³!@·¶?©?)@3Ÿ·?€ï1@©×¹?þç8@ÚP»?Z/9@uV¼? ¸4@öZ¼?^_.@R›ˆ?îZ@&ˆ?ÝÏW@æ‡?³ÌW@N™ˆ?+IY@ýúˆ?–X@³¼ˆ?~áY@+ˆ?àíR@œ©‡?ú)L@ôZˆ?ŠòG@¶¹‰?ZW=@„G‹?Þb2@g?œó,@4Ž?ëï*@çÌ?;À$@'‘?­ @_ ’?¤¿@e.“?},@‰`”?¥@…Ý•?} @)Ò–?ôa!@Mé–?!M$@Û—?+##@€˜?,ÿ @²3™?/@ôu™?Y÷@5š?žö @<›š?D­!@‡@œ?_·#@¼Û?¦#@X˜Ÿ?æ @Ü%¡?øŠ @?®¢?Œ@ߤ?ªk@f¥?<Ò@‘å¦?Gm@ƒ¼§?ÆY@…»¨?Ì @a%ª?¶\ @Š­?`§@ûk¯?0«#@œà°?©Ñ%@ë÷²?5‡(@º:µ?U™*@Va·?Ö*@à€¸?÷©)@Ë‹¹?“A.@±¥º?­L4@|л?Ù<@Îv½?ÞXA@Ûð¾?¢÷A@Ê€¿?ûÊ;@;¤¿?Ä•3@_%‰?sF`@`£ˆ?þlZ@ˆZˆ?Ù°‘?ȃ&@2â“?Öø"@±$•?%=!@ G–?Œ @T¿—?ö@„œ™??º@“¸š?ª€@`›?s‘@]¤œ?Ä@³£œ?µ@&4?ß@au?ê´@uÑž?E@2ª ?f@Ü¢?‘@–m£?ø @œT¥?JI@=i§?Žˆ@šê©?~4@‘‹¬?k¬@Œ­?ë€@Z@®?c«@7¯?“Ö@ æ±?ïL@´?E"@< ·?Äã*@¡Ž¹?LÀ2@Ùÿ»?ôb7@¦š¾?ÄŸ:@ÿö¿?žÀ>@/ÝÀ?'|C@¤qÁ?°WG@ÍzÂ?:I@½ Ã?„G@¨•Ä?®´@@úÕÄ?ô·6@lXŒ?ÿfc@‹?z&a@释?Á‘^@‚›Š?­ú_@8‡Š?½a@éÇŠ?ëBc@(‹?ymd@“½‹?pÊi@‚‹?À]d@nÚŠ?¤9]@þŠ?ëúV@•lj?`êM@òÔŠ?ž@@NåŒ?):@{ ?Ít8@¤Û‘?^53@Ü•“?Ñ-@ë–?£¿)@ó—?»æ&@ ¿˜?«"@ëÄš? ü@r‰œ?*˜@€¦?Nq@¤ž?¼Í@<> ?P@þ­ ?§@¥y¡?f@Š3£?µ@´¤?ÌÒ@óF¦?¼.@×§?Mã@¥©?Í*@æí«?sÝ@Y®?ôà@ýܱ?~Œ@î³?°g@ô?÷ @^ĵ?ƒ@-¡·?ŽÀ@q¯¹?'@´Ó»?Y 1@³Q¾?#”8@àÁ?{í:@´lÃ?GÜ?@RkÄ?ð9D@@¤Å?¾H@tŒÆ?i/G@ìÇ?éD@‹ Ê?nÿ=@<Ë?è6@4Ž?(ea@:t?¥Lb@EZŒ?'¤`@ÊÝŒ?¯5c@z?bîd@äÿŒ?Ùd@Á¾?žúe@Ç­?p6l@ɧ?ƒh@ŸÉ?Ó£f@ñ’?øia@ u?Ö»]@B?oS@€?JjH@ÖÏŽ?¤è@@˜™‘?´ø>@ T”?øß:@1f–?„ê6@ï˜?r¡2@Ájš?Ñ50@Æ4œ?G+@¢åž?‰{%@D¼ ?%@ù¡?Ï%@ùæ¢?ç:$@¤?o£@ðª¤?ª@÷e¥?ã@패?&Y@oª?»S@2|«?’¿@\­?—Ã@ù¯?k(@¼¿²?@.µ?O@@P·?“i@ð’¹?ë¢@pk»?ÏÓ!@6Ò¼?->(@¸Õ½?yq-@®‚¿?«1@k‘Â?ïk2@¼Æ?µ¸4@=¤È?’«4@NÉ?’5@)ÐÊ?ò4@·ÙÌ?ž™2@WŠÎ?Þ™0@¢•Ð?Ì-@Éd?Fyc@]»Ž?óPc@j„?h:`@ðQŽ?[öe@áZŽ?¯Vg@ªQŽ?[g@eL?DŸf@ëŽ?Óçi@-?1 g@m»?ÿ-i@íµ?Mœf@¬Ô?­c@_‚?;ÿ^@JÐ?aCX@&ô?ÍÒK@åf’?RwG@¾”?¢ A@éÏ–?3X?@&í—?k?@õÊ™?ìJ>@”[œ? Ô:@ûŒž?–6@ò¡?]1@ZŠ£?¼Á-@£¢¤?>á+@×¾¥?Ëœ*@™¦?æ&@ï§?Æ)#@ÎȨ?`A%@ó²«?Œ#@þ ®?à#@t†°?’@'@–B³?ê'@謶?I))@º?«º+@ÂÖ¼?yr*@mÀ¿?Á–)@¬sÀ?ŠÈ+@šîÁ?Qm,@€ðÃ?+¾,@F‚Æ?fß*@AçÉ?÷a*@ƒtÌ?¸£)@(IÎ?V…+@Ò‰Ð?ÝK.@¥uÒ?)Ž*@ƒÔ?8'@Ä‘Õ?­ç"@¤Ÿ?…¼f@F?Í`@B?jZ`@G ?~–c@Ž?­Êd@W‹Ž?€Mc@“Q?uÞb@—:?²¯e@i”?k&c@³Ž?†Sh@õ?€g@N‘?Wëf@’?¸¢d@µ “? ùa@ˆù“?8¨W@”?é§Q@›8”?ãK@ÿu•?–zC@ÃT—? k>@,[™?Wõ>@Ô"›?/=@ú?ûÂ<@øŸ?t8@Ùü¢?‹4@\ô¥?1@u5§?eB.@óp¨?–0@üñ©?$'/@¯«?BU.@u®?í/@ª³±?÷ú0@b4´?hš2@Ã%¸?·¡6@IÖ»?…—6@¢¦¾?2Š3@BDÁ?á-@ÜÄ?ˆ"(@ÊõÆ??$@žWÉ?œ´"@ÒÍË?×!@‘ûÎ?­î@nºÐ?* !@Ÿ¯Ò?Ï×"@0Õ? F#@Âb×??þ!@5?Ø?_ƒ @ÒÙØ?¢Ü @û]?¸Ÿk@C?b@¸ôŽ?|¡_@ÃhŽ?¨^@xª?Í4]@à°?etZ@Ø…Ž?ýY@xN?¾u_@‚?œß_@ŠQ?ä²c@yû?í-d@tˆ‘?Ðg@WÅ’?^ g@Ì ”?^Ðd@Fæ”?Vb@6•?ì\@Ï™•?q²U@y•?Ê O@ܱ•?p D@ t–?æe<@J™?¿t9@‘V›?Õc9@ ž?5r6@Ùµ¢?Ã5@Gs¦?‚4@`Õ©?å1@ ­¬?¨}/@5£­?Fd4@L¯?³{4@Wª±?'_6@Nb´?àá9@&;¸?^9@,°¼?BÔ5@×ÿÀ?eï.@ŸrÄ?÷ˆ*@Q#É?88$@Ö_Ë?qâ@¤$Í?bß@š˜Î?¯@ØñÏ?@läÑ?ƒ]@èNÕ?*@ÝÄ×?Î@þ¥Ø?­°@ìÙ?œ$!@QkØ?Ä$@CÍŽ? ¤l@1ƒ?Ò’e@ÝnŽ?-T_@hG?„hW@c!Œ?sT@Ïp‹?"ŠN@‹?kP@pŽ?ŠÒX@Î*?¹ \@8?µ…_@а?6b@£˜‘? ·d@©“?šØc@ø®”?ÔEb@ÆŠ•? g@bJ–?©ûb@S3—?›_@–—?ÈiW@â—?©ðL@u­—?BóA@Ô­˜?;@›š?Ñ9@Ÿ²›?Àû6@½Åž?>Z8@Jì£?`¢3@k¨?‚3@Ú@¬? ’3@e¯?Gï5@U3²?õž5@YRµ?U‹6@Øw¸?o 7@/„¼?Þ1@å%Á?ŠL+@³Å?$@ÞÈ?%!!@^]Ê?/3@$}Ì?+£@*úÍ?@©¸Ï? @í(Ñ?ðü@R|Ó?g£ @¡hÕ?Þ?#@c×?Ú'@Ù?îú$@£W×?8ö&@Ô>Ž?Çj@1±?Og@hâŒ?Ǽ_@"ôŠ?ý4S@aU‰?D¦L@pB‰?±E@]‹?O¹G@?¯sQ@ÇÓŽ?crV@0*?ÈX@`¼?[@Õ’?sq^@‹²“?']@1"•?ü\]@ ¬•?ÕÓa@^¥–?žJb@- ˜?·`@°™??\@1ò™?SU@¬?š?‰sK@a›?”?@K‹?ÕòE@€ÁŒ?–àK@ÊŽ?ÿãP@º“?¸ÊJ@%Z?9æK@°‘?ÉQ@ò#“?Q@R@² •?«W@Ói•?XK[@;–?5½X@dt—?íHW@÷z˜? W@Íš?DDV@Z¥›?ÐìU@Ñ/?ê¾T@±“ž?9P@ ¹ ?¶÷N@,Ø¢?žI@á.¤?AŽA@aq§?oé9@³/©?„½5@粬?Hþ4@ÓL°?Wª6@2-³?§Œ7@8¸?p•9@‚ã¼?õN5@ÆÁ?šú2@ÍÅ? a1@ŽÉ?¶®/@nTÌ?¸s,@c!Í?j%,@¾;Ì? k1@SÌ?‚ì3@0§Ì?®¬8@±©Ì?ÞÉ:@|µË?¡ä;@X½?¤PX@èÐŽ?N[@FEŽ?¹[@nõ‹?ž^V@Iß‹?E×L@…ZŒ?kPJ@”øŒ?=ûN@1„Œ?¨WJ@ Ž?sßC@-?8=@&"‘?B¢C@ É?_G@šú’?J@iß”?8ÚP@dC–?ùóV@kÛ–?-åU@£z—?¢:U@g}˜?ž’R@Åo™?.pQ@E!›?ûQO@?lûN@dQŸ?ðL@Ò!¢?S¼M@,¤?LœN@!¹¦?Q4I@º‘©?B@õV«?¢¶>@¸*­?šM:@$ů?àö;@χ²?‡:@ñŶ?H<@¶»?—=@ƒñ¾?Kh;@ÃüÁ?0ˆ;@®¿Ä?-:@ÓÆ?ž 7@O>Æ?±3@ÊÆ?§5@[mÈ?Xô9@¨É?E½:@ÚÈ?Æ?@ʾŽ?ÅÀS@³=?·ÃX@n?`âY@ÝŽ?K Y@Ó•?ˆ S@ìÀŽ?YSQ@”ÄŽ?ôT@܉?²FH@‚®Ž?T%;@¨Ë‘?%ž5@J’?.=@Bð‘?ž>@Ûb“?¥€=@’V•?|C@c)–?ÕpM@2&–?í2R@·¾–?¶ÎR@7í—?ÄvO@J™?6rN@­ ›?u~K@~?P-J@EåŸ?"çI@.ì¢?ÞšK@0a¥?o"N@®C¨?ƒL@I%«?b)H@MÒ¬?-E@‘­?²$?@D²¯?0a<@Þ²?W}:@Kµ?÷ö:@x©¸?Ky9@»?• 9@ p¾?ì18@âëÀ?†5@«ÒÀ?sD1@êoÁ?I.@ð¶Â?í/@MÐÄ?Žl3@[aÅ?Õ‹6@ò´?¶TT@ ‘?í¬X@cò?w‰Y@S2?WFX@È?WQ@m?ÅŠU@Qä?þR@Ií?k‹G@ôE?> 9@`˜’?69@âÜ’?cg9@׌“?K7@”?ò¸5@;•?¦:@£i•?þ#B@ •?á}H@h –?ÁºL@vÀ–?çÜK@Ø?QM@¹ÿš?´K@Tpž?àM@ò ?Å(M@þj£?-TK@èd¦?Ù˜K@5,©?h‡L@ô}«?Š,K@Š­?›–J@÷Ô®?m¡C@›¯?­p?@g‡²?%Q<@ *´?—º8@¸©¶?Mq5@þG¹?Ú÷/@´;»?S›1@7˼?·o.@ã¾?£ &@ãaÀ?O6'@ðÁ?2G+@mÅÃ? â0@PG?X W@‘‘?{–U@Çà‘?ÆšZ@1’?!]@&‘?´ÃS@¢Ù?¼òS@>ö? ‡N@—‘?RŽG@Ž’?Í6@@(“?o›<@Ô_“?©4@ô“?±A-@Ì”?˜0@zý”?Ñ—2@ƒq•?ãW8@‰É•?Ü=@©,–?;WD@ꜗ?å4H@}]™?30I@¨›?´ R@°fž?(‘S@D¡?xeO@ç£?5¨N@–Ÿ¦?ÆoK@AÙ©?1kH@`Z¬?˜=I@™d®?T³G@àŸ¯?ïkF@6/±?ŸOE@ñ´?P>@ÿµ?«û8@s,·?Ó{3@g¹?š-.@º?„Í.@ ¼?»4*@§ÙÀ?P%@’[Á?šÄ*@dðÁ?¬]2@X ?­ŽS@ò%‘?LU@П’?S][@Ø~“?€Â\@ñ’?zÂW@ø ’?„^R@¦‘?¢=N@ 1’?ë"H@#¦“?ü·B@p§”?´=;@©½“?K=1@êe”? -*@hÊ”?'™,@?A•?@3@oŒ–?PJ7@4—?÷Ð9@ ›—?©q?@ ™?W°?@*Kš?»†D@¦<›?ÂsK@Qd?ˆO@õß?6€P@Ùr£?R¶N@x§?–ŸM@z©?x©H@ y«?aˆG@™%®?c¡D@m°?<5E@ýe²? oF@ä‚´?¬À@@)¥µ?Ù<@ÌI¸?ó43@hLº?Ýâ.@¢Ù¹?u1@N@¼?¤é,@¤•¿?•]+@£ÚÀ?ñ.@‰?ÑÕN@.J‘?7¼T@F“?Ô[@¿”?Ôš^@¸ç“?ž!^@æ“?ÍV@pE’?ýiN@(ç’?mG@œ@•?ÌFA@bî•?Žs:@j¾”?¼·4@åQ”?Ô—/@éÏ”?á/@}C•?C+3@æ–?W*6@2f˜? J4@ôÚ˜? Â8@,u™?°„7@âTš?}L=@Qj›?‚¸D@ªœ?¸öJ@íŸ?ÀP@ú¢?QÅK@…¿¥?|M@ ¨?Ë\K@­°«?G@Â]®? ÂA@X°?"µB@“ò±?F@¡º³?1¢C@ ý´?û°>@$•·?/w7@MUº?’J4@ Wº?$3@^³»?øé1@§g½?Ád3@`A?É€M@|’?³òR@xÄ“?„­\@ÇË”?L5a@,S•?ïe@û[”?ªœ\@{Y“?~¨R@}y”?^E@ÐW–?/<@ñ@–?sÙ7@Åë”?y 9@º”?ÂV4@íÓ”?ÃÜ/@À•?Ü6/@>3—?k3@tV™?ç1@9s™?Ä36@™?X6@^š?†9@”›?èˆ@@=Dœ?…/E@f@ž?8ãI@w’ ? J@§s£?ø2M@i€§?CK@F«? J@Ü=®?öB@•°?”A@Os±?ãC@ÃH³?‚—B@“´?N_@@C8¶?ëK<@n¸??9;@¿ƒ¹?y×8@¶º?CÑ9@9³?zðK@ñ‘?+U@‡“?“‹[@¥ù“?ôc@^•?‘[e@ÅG•?;Db@Ät•?wU@Gø”?î•B@ÈU–?‘28@£…–?°¹8@ÿ–?|`;@3ã•?ƒ:@æv•?å…1@}¶•?£¦.@\u—?¦ý0@~o˜?u~1@Ö˜?%2@fñ˜?Ñê4@qš?²ê9@m›?fT?@­¨œ?,=C@‡xž?¨F@kŸ?ï„F@Œ¡?QðG@Ç>¦?;@˜+—?S’7@>ê•?¬3@€â–?0 0@ž —?øÏ2@µ˜?ܰ2@º}š?¸W4@ÑŸ›?ˆâ:@Àœ?¢ŽA@r¯œ?pýA@8ž?ýlD@ Ÿ?£ºG@±3¡?ZH@ZǤ?ÄsG@Mب?ò$H@Œ‹«?ÎJ@U¢®?5þK@£Æ°?3êI@òr±?‡ûF@ŒÊ±?¦«D@‡¦³?ÁÝB@fµ?V¿E@8²?†“G@Bì?rjS@rÏ‘?²C^@(z“?C_@!£”?X:_@§Ú•?ÅÄd@r—?ÐÂT@Õ’”?©?@ÍF–?°¤2@÷$˜?óŸ0@¾o™?3ª6@ìÜ™?~Œ<@Ò˜?l›>@‹ª–?…9@ [–?o%2@xy–?ø2@AX˜?O5@ïKš?õ<7@C#œ?©<;@ –œ?·s@@Ø?t@@@¾ ž?ŒG@ŽÖŸ? ‘H@¡?QGF@³Å£?žÜC@½„¦?6PE@79©?+âH@hµ«?Ý|M@hû­?4L@Sͯ?¿žI@v6±?ÑI@s³?yùF@Ö?„ˆB@±š?QDN@HÓ‘? ½\@“.“?_R\@Δ?$Ä[@O–?ÏÏb@âï–?-ÎS@Ëì•?ïL=@¿€–?yØ1@H ™?ùW,@”z™?V1@‡™?øT<@™õ˜?ÃæC@f×?'î<@A –?NÊ7@Èì–?n3@Éj˜?Ee5@'š?*É8@_+œ?I…:@ªªœ?ê>@Ùè?Â"B@cšž?ËÖD@  ?(D@6¡?^C@c£?bC@þ™¥?›ù@@âx§?ÔC@;Ý©?*G@G¬?zUH@†a®?ž K@s%°?¨O@D ?Yb?@è?ûQP@9Ï‘?z˜[@ì“?‹ÛX@a˜”?DõY@O^–?¾D`@¨—?¡ïQ@¼‡–?Å?@‚–?8 1@žN˜?üÁ)@g8™?-@‚™?ž¿;@‹™?±A@™#˜?¼6B@3<—?À<@ëK—?§$7@¦p˜?'T5@Úš?ˆ7@Öt›?Áà:@7??ö‰?@§ž?ûqC@bŸ??A@^¼ ?´žA@†¯¡?¯tF@8¤?kE@¥?ƒù@@³#§?6ž@@s©©?UC@Þ©ª?yUG@µ­?„.M@–Ï?Ô>@Þ~?-iM@ÉÅ‘?¸*Z@~Ç’??\V@¿”?á¡Z@oý–?·î^@a˜—?8ËN@n–?Â<@c—?Gt1@£®˜? +@ /™?q .@‰ž˜?³è5@,K™?•¥?@ý™?€&D@¬š˜?Ây@@”¦˜? L9@¢™?ëz5@Cš?p[7@±ˆœ? É8@>ž?d@@a›ž?£ËB@φŸ?FC@ ¡?BFD@©’¢?ö8J@r¤?¾yH@/J¦?îŸB@‡Ä¨?×Ý=@Äa©?hëB@I+ª?F I@Í>?ë=@Ñ?Õ9O@âà‘?‘­X@ÍŽ’?‚kX@›•?/^]@GЗ?µZ@!—?g"K@Mµ–?Y¡:@G‘˜?Ó¼3@v@˜?—ò-@%˜?øW/@Þ;™?‰5@ÃRš?Ò$=@™š?mYB@ËŠ™?á«@@OÌ™?H<@¬™?£ 7@d ›?Ìr5@*?bž7@ŠN?+Ì?@ëž?GuA@3ˆ ?ĶB@¶ƒ¡?·D@dê¢?ñsG@[Z¤?}ÖE@Ê\§?îæ>@ÓÆ¨?sÓ@@ý~¨?ò$A@ë+‘?ÙB@ÀË‘?éïQ@â=’?¥]@´Ô“?>¾V@­—?g^@=˜?¢$Y@ï…—?¸ŽH@¡Ý—?$M=@¨\™?6@Ûf˜?&ï1@sª˜?€01@½Î™?Ͷ2@÷›?f£:@G@›?XEA@›?ÐŽB@%К?"C?@@]š?¥a9@ ¾›?Äý4@íIœ?§ã6@Gž?Iî<@’ÅŸ?üÙ>@Nc¡?²A@Ë®¢?OôA@ó¤?åÆD@“Ä¥?™@@µn§?<Ä@@€R¨?· A@üã’?I4I@Àz’?~ÿW@Jæ“?ܧ\@W,•?‹TV@}Ò—?\%[@Gɘ?VöV@^`˜?j+H@O`˜? »<@!ö˜?ÖÊ5@e°™?t‹1@Ù™?^ 1@Fºš?æ3@tÆ›?ë*:@Íœ?T›@@·œ?±¶B@œ?>iA@÷ë›?À¿=@»0œ?­a7@ ?,Ý5@ófŸ?²:@ñÑ ?¦{=@¶D¢?,7>@Å ¤?¹º?@óP¥?A@r|¦?A¥@@­æ¦?ÁC@¥S“?ÛiP@º}“?KÖ^@YÞ”?øç]@ío•?O»R@߀˜?¨[@ò¾™?ùôS@`U˜?â“H@å¹—?x’;@Ù1™?ë<3@‰Dš?fy1@é[š?< 4@¼š?dD4@fñ›?›µ7@_±œ?$Ò;@H^?¤á?@Úî?×ED@ûé?ÄJA@ß«?ð¢:@þŠž? F7@hK ?Ï<@pN¢?ØÔ<@ ç£?õû:@šþ¤?=@û¦?¶@@µ˜¦?iÑA@ÁΓ?`CV@ด?ÈNb@ë¶”?0[@>`–?ƆT@¥B™?o^@%“š?ôTT@a6˜?ÓªA@Š%™?(‹6@Eš?ßA2@fš?+Ï4@¾ š?ý›3@)R›?6_3@dLœ?´¢1@R?Ö4@¯¡ž?f>=@ø+Ÿ?^·D@Î/Ÿ?׊D@Ÿ?¶ç=@»ëŸ?HY8@ å ?D:@m¸¢?>Ô9@é¤?Ò;@Q}¥?_œ?@à3¦?¦B@?e”?òÞU@0É”?83a@‰I”?žZ@sK–?ލX@6'™?îv]@´‹™?'jP@šr—?&>@ ˜?¢Ý3@f©™?M+2@dš?½ù3@™›?fÏ5@|œ?Ûâ1@êìœ?.@¨?ÑÉ1@ß‹ž?ãá8@ØŸ?“•C@®y ?ÒÑE@%‰ ?Ê„?@N° ?;@锡?¯ 8@¶Û¢?1i7@פ?¸ ;@Àd¥?WA@…Å”?»Z@tl”?¤a@ÏД?ž¢W@îX–?ü‚V@$‹˜?hÈ[@¿)™?ŠsL@æØ–?mi<@µä—?ñ2@Ê‚™?Á®2@Þˆš?»(8@mæ›?ür9@H?”Å4@0?ä .@Êù?ÿ.@.ž?>9@´ ?qUA@‚6¡?PÍC@'_¡?kñA@Ö¡?É4=@»á¡?49@¾Ô¢?§5@¸’¤?1š8@2•?ÿF`@}+•?§@b@Uq•?øiW@+™–?ü©W@2’˜?гZ@¯l™?uèK@¤n˜?ñÿ>@ÒŘ?®:@U²š?Á:@Õ¡›?Ï=@·‹œ?»‹;@Cê?\Û3@¿õ?ëK/@+v?µ2@o´ž?–7@~‰ ?Ù<@½ ¡?ýB@Cj¢?D D@¿™¢?pB@@||¢? ]:@ Ù£?ÿ4@?ú•?´‡c@'½•?|_@†Y–? %V@Q—?sU@Hð˜?Z@6š?wêR@dd™?RD@#°˜?8O@@Ér›?ÄÐ=@Wœ?Lå>@Q ?C=@ª;ž?bË6@{9ž?H5@V)ž?™µ3@õfŸ?ø95@¯o¡?–¡;@¹ä¢?ÀC@ï³£?ÕHF@…ë£?æâB@¯Õ£?@g8@×É•?=}d@9Ç•?Jß`@µ8–?ûÃY@F˜?šV@)å™?«}\@š?X†S@µÅ™?ßÉC@»˜??µ?@ò›? ÃB@ó'?RƒB@¥ö?( >@ž?×û:@Y°ž?çë6@›Ÿ?õB6@6(¡?¸~7@w¨¢?ßâ<@ؤ?xÄE@¸¥?¾I@§¦?DÏA@¨™•?{]_@ãÁ•?’_@’E–?¬†W@s¨˜?NV@š?yX@šàš?¥êN@¿™?´»B@û™?\B@”œ?4rE@—o?×F@"Ÿ?ë’A@-ÙŸ?ì=@a ?&‡>@>š¡?T<@£L£?Ë@=@Õ£?—ˆA@y£¥?ÆG@÷Ħ?ɇH@GÆ•?òW@×þ•?Ü\@ò–?zBY@h‰˜?¿S@/ð™?Í…T@]_š?ÄsM@%É™?°G@ä™?ßtF@œ›?LE@Qw?/ŸG@J¹ž?æ“G@Ü4 ?#ºD@d¡? XF@æï¢?ºGE@Õ2£?øcB@Gü¤?ÙyE@N@5¤?±õM@-£š?œGW@‡Ðš?È!\@L¹›?_Y@¤›œ?*‹V@‰tœ?ÖÞ[@lE?!IU@SÉœ?#öH@Õ ?®G@ì&Ÿ?¯zJ@ ¶ ?ML@?¢?­%L@X›?³”T@aœ?Ì\@™4œ?¤‡X@_²œ?=²V@wœ?Ã@Z@ÅE?Á¬M@V¦?D±D@ˆ?ËâG@š<Ÿ?&³K@µ¶ ?ÇßL@žuœ?rQ@ׯœ?PRZ@}¤œ?þãU@ uœ?pMS@´œ?76T@¾@ž?CJ@Tž?% G@ïô?DMI@Õ½Ÿ?ÖsK@Ìð›?†MU@ Šœ?8ù[@Z™œ?AlS@Ἔ?¹V@Fž?IæS@ïzŸ?×§J@£œž?·ãJ@mŸ?KL@ pœ?x¼Y@ñŠœ?n/\@ç ?¤VT@û?ÛŸY@úgŸ?ä”U@ÍŸ?ÑP@O¸ž?±PQ@?6?ÑUS@1q?›³X@ªž?¥GX@Ôž? ã[@SŸ?~ØZ@BUž?*ÿR@Qž?BFO@Èá?ß‹Y@Åž?Z@lž?Z/\@ž?†dY@Í.ž?àïK@µì?CðX@͸?ñ…X@t?Ô²V@kž?3ôS@ó2?+iY@9Úœ?áY@?T?\T@ Ýœ?˜É]@ñ˜œ?'W@CiftiLib-1.6.0/example/data/Conte69.MyelinAndCorrThickness.32k_fs_LR.ptseries.nii000066400000000000000000004200001373715117300274040ustar00rootroot00000000000000n+2   6ð?ð?ð?ð?ð?ð?ð?Pð? ¼ ConnParcelSries0 ParentProvenance Conte69.MyelinAndCorrThickness.32k_fs_LR.ptseries.nii: c7c_dev -cifti-parcellate Conte69.MyelinAndCorrThickness.32k_fs_LR.dtseries.nii Conte69.parcellations_VGD11b.32k_fs_LR.dlabel.nii COLUMN Conte69.MyelinAndCorrThickness.32k_fs_LR.ptseries.nii ProgramProvenance Workbench Version: Beta 0.84 Qt Compiled Version: 4.8.3 Qt Runtime Version: 4.8.3 commit: 8c4ad1f790c1b5e0e912891e37e272118613b9c6 commit date: 2014-02-28 15:32:58 -0600 Compiled Debug: YES Operating System: Linux Provenance c7c_dev -cifti-convert -version-convert Conte69.MyelinAndCorrThickness.32k_fs_LR.ptseries.nii 2 cifti-2_test_data/Conte69.MyelinAndCorrThickness.32k_fs_LR.ptseries.nii WorkingDirectory /mnt/myelin/tim/cifti2reference 20 21 22 23 24 25 26 27 28 188 189 190 191 192 193 194 195 242 243 244 245 246 247 248 296 297 298 299 300 301 348 349 350 351 352 353 400 401 402 403 404 450 451 452 453 454 455 500 501 502 503 504 549 550 551 552 596 597 598 599 600 643 644 645 646 689 690 691 692 734 735 736 737 778 779 780 781 822 823 824 864 865 866 905 906 907 908 945 946 947 948 984 985 986 987 988 989 990 991 992 993 994 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1097 1098 1099 1100 1101 1102 1103 1104 1105 1133 1134 1135 1136 1137 1138 1139 1140 1141 1168 1169 1170 1171 1172 1173 1174 1175 1201 1202 1203 1204 1205 1206 1207 1208 1234 1235 1236 1237 1238 1239 1240 1241 1265 1266 1267 1268 1269 1270 1271 1272 1296 1297 1298 1299 1300 1301 1302 1325 1326 1327 1328 1329 1330 1331 1354 1355 1356 1357 1358 1382 1383 1384 1385 1409 1410 1435 1459 1815 1816 1817 2291 2292 2337 2338 2339 2382 2383 2384 2385 2386 2426 2427 2428 2429 2430 2431 2432 2469 2470 2471 2472 2473 2474 2475 2476 2477 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2676 2677 2678 2679 2680 2681 2682 2715 2716 2717 2718 2719 2720 2753 2754 2755 2756 2789 2790 2791 2792 2823 2824 2825 2826 2857 2858 2859 2860 2889 2890 2891 2920 2921 2922 2951 2952 2953 2980 2981 2982 3009 3010 3036 3037 3062 3063 3087 3088 3111 3112 3113 3134 3135 3156 3157 3158 3177 3178 3197 3198 3216 3217 3234 3235 3251 19833 19834 19839 19840 19841 19842 19843 19859 19860 19862 19863 19864 19865 19866 19867 19868 19869 19870 19871 19872 19873 19874 19875 19876 19877 19878 19879 19880 19881 19882 19883 19884 19885 19886 20206 20254 20255 20302 20303 20349 20350 20395 20396 20440 20441 20484 20485 20527 20528 20569 20570 20611 20651 20690 20728 20765 20801 20836 20870 20903 20935 20966 21420 21421 21424 21425 21427 21428 21429 21430 26447 26493 26497 26498 26499 26500 26501 26541 26542 26543 26544 26545 26546 26547 26548 26549 26550 26551 26552 26553 26591 26592 26593 26594 26595 26596 26597 26598 26599 26600 26601 26602 26603 26604 26640 26641 26642 26643 26644 26645 26646 26647 26648 26649 26650 26651 26652 26653 26654 26655 26688 26689 26690 26691 26692 26693 26694 26695 26696 26697 26698 26699 26700 26701 26702 26703 26735 26736 26737 26738 26739 26740 26741 26742 26743 26744 26745 26746 26747 26748 26749 26781 26782 26783 26784 26785 26786 26787 26788 26789 26790 26791 26792 26793 26794 26795 26826 26827 26828 26829 26830 26831 26832 26833 26834 26835 26836 26837 26838 26839 26870 26871 26872 26873 26874 26875 26876 26877 26878 26879 26880 26881 26882 26883 26884 26913 26914 26915 26916 26917 26918 26919 26920 26921 26922 26923 26924 26925 26926 26927 26928 26929 26955 26956 26957 26958 26959 26960 26961 26962 26963 26964 26965 26966 26967 26968 26969 26970 26973 26996 26997 26998 26999 27000 27001 27002 27003 27004 27005 27006 27007 27008 27009 27010 27036 27037 27038 27039 27040 27041 27042 27043 27044 27045 27046 27047 27048 27049 27050 27051 27075 27076 27077 27078 27079 27080 27081 27082 27083 27084 27086 27087 27113 27114 27115 27116 27117 27118 27119 27120 27121 27122 27150 27151 27152 27153 27154 27155 27156 27157 27158 27186 27187 27188 27189 27190 27192 27221 27222 27223 27224 27255 27256 27257 27258 27288 27289 27290 27320 27321 27322 27351 27352 27353 27381 27382 27383 27410 27411 27412 27438 27439 27440 27465 27466 27467 27491 27492 27493 27516 27517 27540 27541 27563 27564 27585 27586 27606 27607 27626 27627 27645 27646 27663 27664 27680 27681 27726 27739 27751 27761 27762 27771 27772 27780 27788 27923 27924 27925 27978 27979 28031 28083 28134 28135 28184 28185 28233 28234 28281 28282 28328 28329 28374 28375 28419 28420 28464 28507 28508 28550 21 22 23 24 25 26 27 28 160 189 190 191 192 193 194 243 244 245 246 247 248 296 297 298 299 300 301 348 349 350 351 352 353 400 401 402 403 404 451 452 453 454 455 500 501 502 503 504 549 550 551 552 597 598 599 600 643 644 645 646 647 689 690 691 692 693 734 735 736 737 738 778 779 780 781 782 821 822 823 824 825 864 865 866 867 905 906 907 908 909 945 946 947 948 949 985 986 987 988 989 1024 1025 1026 1027 1028 1029 1030 1031 1032 1062 1063 1064 1065 1066 1067 1068 1069 1098 1099 1100 1101 1102 1103 1104 1105 1134 1135 1136 1137 1138 1139 1140 1168 1169 1170 1171 1172 1173 1174 1202 1203 1204 1205 1206 1207 1234 1235 1236 1237 1238 1239 1240 1265 1266 1267 1268 1269 1270 1271 1296 1297 1298 1299 1300 1301 1326 1327 1328 1329 1330 1355 1356 1357 1358 1359 1382 1383 1384 1385 1409 1410 1411 1435 1459 1482 1483 1505 1527 1547 1548 1815 1816 1817 1818 2337 2338 2339 2382 2383 2384 2385 2426 2427 2428 2429 2430 2431 2469 2470 2471 2472 2473 2474 2475 2476 2477 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2632 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2714 2715 2716 2717 2718 2719 2751 2752 2753 2754 2755 2756 2787 2788 2789 2790 2791 2822 2823 2824 2825 2826 2856 2857 2858 2859 2888 2889 2890 2891 2920 2921 2922 2950 2951 2952 2953 2979 2980 2981 2982 3007 3008 3009 3010 3034 3035 3036 3037 3061 3062 3063 3064 3086 3087 3088 3089 3110 3111 3112 3113 3133 3134 3135 3155 3156 3157 3158 3176 3177 3178 3196 3197 3198 3215 3216 3217 3233 3234 3235 3250 3251 3266 19840 19841 19842 19843 19862 19863 19864 19865 19866 19867 19868 19869 19870 19871 19872 19873 19874 19875 19876 19877 19878 19879 19880 19881 19882 19883 19884 19885 19886 20206 20254 20255 20301 20302 20303 20348 20349 20350 20394 20395 20396 20439 20440 20441 20484 20485 20527 20528 20568 20569 20570 20610 20611 20650 20651 20689 20690 20727 20728 20765 20801 20835 20836 20870 20903 20935 20966 20996 21410 21416 21420 21421 21424 21425 21427 26493 26495 26496 26497 26498 26499 26500 26501 26541 26542 26543 26544 26545 26546 26547 26548 26549 26550 26551 26552 26553 26591 26592 26593 26594 26595 26596 26597 26598 26599 26600 26601 26602 26603 26640 26641 26642 26643 26644 26645 26646 26647 26648 26649 26650 26651 26652 26653 26654 26655 26688 26689 26690 26691 26692 26693 26694 26695 26696 26697 26698 26699 26700 26701 26702 26703 26735 26736 26737 26738 26739 26740 26741 26742 26743 26744 26745 26746 26747 26748 26749 26781 26782 26783 26784 26785 26786 26787 26788 26789 26790 26791 26792 26793 26794 26795 26826 26827 26828 26829 26830 26831 26832 26833 26834 26835 26836 26837 26838 26839 26840 26870 26871 26872 26873 26874 26875 26876 26877 26878 26879 26880 26881 26882 26883 26884 26885 26913 26914 26915 26916 26917 26918 26919 26920 26921 26922 26923 26924 26925 26926 26927 26928 26929 26955 26956 26957 26958 26959 26960 26961 26962 26963 26964 26965 26966 26967 26968 26969 26970 26971 26972 26973 26974 26996 26997 26998 26999 27000 27001 27002 27003 27004 27005 27006 27007 27008 27009 27010 27011 27012 27013 27014 27015 27016 27017 27018 27019 27020 27021 27036 27037 27038 27039 27040 27041 27042 27043 27044 27045 27046 27047 27048 27049 27050 27051 27052 27053 27054 27056 27061 27075 27076 27077 27078 27079 27080 27081 27082 27083 27084 27085 27086 27087 27088 27089 27090 27091 27092 27093 27104 27105 27106 27107 27113 27114 27115 27116 27117 27118 27119 27120 27121 27122 27123 27124 27125 27126 27127 27128 27129 27130 27131 27132 27145 27146 27147 27148 27149 27150 27151 27152 27153 27154 27155 27156 27157 27158 27159 27160 27161 27162 27163 27164 27165 27166 27167 27168 27169 27170 27171 27184 27185 27186 27187 27188 27189 27190 27191 27192 27193 27194 27195 27204 27205 27221 27222 27223 27224 27225 27255 27256 27257 27258 27259 27288 27289 27290 27291 27320 27321 27322 27323 27351 27352 27353 27354 27381 27382 27383 27384 27410 27411 27412 27438 27439 27440 27465 27466 27467 27491 27492 27493 27517 27518 27541 27542 27564 27565 27585 27586 27587 27607 27608 27627 27628 27645 27646 27647 27663 27664 27665 27681 27682 27697 27698 27712 27713 27726 27727 27739 27740 27751 27752 27761 27762 27771 27772 27780 27788 28280 28327 28374 28419 28420 28464 28465 28507 28508 28550 28591 28631 6757 6758 6759 6760 6761 6762 6763 6764 6765 6954 6955 6956 7005 7006 7007 7008 7009 7010 7011 7012 7013 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7885 7886 7887 7888 7889 7890 7891 7892 7916 7917 7918 7919 7920 7921 7945 7946 7947 7948 7949 7974 7975 7976 8002 17623 17624 17625 17626 17627 17628 17656 17657 17658 17659 17660 17661 17662 17665 17666 17667 17688 17689 17690 17691 17692 17693 17694 17695 17696 17697 17698 17699 17700 17719 17720 17721 17722 17723 17724 17725 17726 17727 17728 17729 17730 17749 17750 17751 17752 17753 17754 17755 17756 17757 17758 17759 17778 17779 17780 17781 17782 17783 17784 17785 17786 17787 17806 17807 17808 17809 17810 17811 17812 17813 17814 17833 17834 17835 17836 17837 17838 17839 17840 17859 17860 17861 17862 17863 17864 17885 17886 17887 17888 6757 6758 6759 6760 6761 6762 6763 6764 6765 6959 6960 7009 7010 7011 7012 7013 7014 7015 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7854 7855 7856 7857 7858 7859 7860 7861 7862 7886 7887 7888 7889 7890 7891 7892 7917 7918 7919 7920 7921 7946 7947 7948 7949 7974 7975 7976 8002 17623 17624 17625 17626 17627 17628 17629 17630 17631 17632 17656 17657 17658 17659 17660 17661 17662 17663 17664 17665 17666 17667 17688 17689 17690 17691 17692 17693 17694 17695 17696 17697 17698 17699 17719 17720 17721 17722 17723 17724 17725 17726 17727 17728 17729 17749 17750 17751 17752 17753 17754 17755 17756 17757 17758 17759 17778 17779 17780 17781 17782 17783 17784 17785 17786 17787 17806 17807 17808 17809 17810 17811 17812 17813 17814 17833 17834 17835 17836 17837 17838 17839 17840 17859 17860 17861 17862 17863 17864 17885 17886 17887 5029 5030 5031 5032 5033 5140 5141 5142 5143 5194 5195 5196 5248 6752 6753 6754 6755 6756 7200 7247 7248 7249 7293 7294 7295 7296 7297 7298 7338 7339 7340 7341 7342 7343 7384 7385 7386 7387 7388 7430 7431 7432 7473 7474 7475 7514 7515 7516 7555 7556 7557 7594 7595 7596 7597 7633 7634 7635 7636 7670 7671 7672 7673 7674 7675 7676 7707 7708 7709 7710 7711 7712 7713 7714 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7935 7936 7937 7938 7939 7940 7941 7942 7943 7944 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7991 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8043 8044 8045 8046 8047 8048 8049 8050 8051 8068 8069 8070 8071 8072 8073 8074 8094 8095 8096 8116 8117 17884 17908 17909 17910 17911 17931 17932 17933 17953 17954 17955 17974 3433 3434 5031 5032 5033 5034 5035 5142 5143 5144 5145 5195 5196 5197 5198 5199 5248 5249 5250 5251 5300 5301 5302 5303 5350 5351 5352 5353 5401 5402 5451 6753 6754 6755 6756 7200 7201 7202 7203 7247 7248 7249 7250 7251 7293 7294 7295 7296 7297 7338 7339 7340 7341 7342 7343 7384 7385 7386 7387 7388 7430 7431 7473 7474 7514 7515 7555 7556 7594 7595 7596 7597 7633 7634 7635 7636 7637 7638 7639 7640 7641 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7779 7780 7781 7782 7783 7784 7785 7786 7787 7813 7814 7815 7816 7817 7818 7819 7820 7845 7846 7847 7848 7849 7850 7851 7852 7853 7877 7878 7879 7880 7881 7882 7883 7884 7885 7908 7909 7910 7911 7912 7913 7914 7915 7916 7937 7938 7939 7940 7941 7942 7943 7944 7945 7966 7967 7968 7969 7970 7971 7972 7973 7994 7995 7996 7997 7998 7999 8000 8001 8020 8021 8022 8023 8024 8025 8026 8027 8046 8047 8048 8049 8050 8051 8071 8072 8073 8074 8094 8095 8096 8116 8117 17884 17908 17909 17910 17911 17931 17932 17933 17934 3436 3437 3438 3439 3440 3988 4033 4077 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5353 5354 5355 5356 5357 5358 5359 5360 5361 5403 5404 5405 5406 5407 5408 5409 5410 5452 5453 5454 5455 5456 5457 5458 5459 5500 5501 5502 5503 5504 5505 5506 5548 5549 5550 5551 5552 5595 5596 5597 5598 5641 5642 5686 6746 6747 6748 6749 6750 6751 7382 7383 7425 7426 7427 7428 7467 7468 7469 7470 7471 7472 7508 7509 7510 7511 7512 7513 7548 7549 7550 7551 7552 7553 7554 7587 7588 7589 7590 7591 7592 7593 7625 7626 7627 7628 7629 7630 7631 7632 7662 7663 7664 7665 7666 7667 7668 7669 7698 7699 7700 7701 7702 7703 7704 7705 7706 7733 7734 7735 7736 7737 7738 7739 7740 7741 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7834 7835 7836 7837 7838 7839 7840 7841 7842 7866 7867 7868 7869 7870 7871 7872 7873 7874 7897 7898 7899 7900 7901 7902 7903 7904 7927 7928 7929 7930 7931 7932 7933 7934 7956 7957 7958 7959 7960 7961 7962 7984 7985 7986 7987 7988 7989 7990 8011 8012 8013 8014 8015 8016 8036 8037 8038 8039 8040 8041 8042 8061 8062 8063 8064 8065 8066 8067 8085 8086 8087 8088 8089 8090 8091 8092 8093 8107 8108 8109 8110 8111 8112 8113 8114 8115 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8148 8149 8150 8151 8152 8153 8154 8155 8156 8168 8169 8170 8171 8172 8173 8174 8186 8187 8188 8189 8190 8191 8204 8205 8206 8207 8221 8222 8236 17821 17822 17826 17827 17828 17847 17848 17849 17850 17851 17852 17853 17854 17869 17870 17871 17872 17873 17874 17875 17876 17877 17878 17879 17892 17893 17894 17895 17896 17897 17898 17899 17900 17901 17902 17903 17904 17915 17916 17917 17918 17919 17920 17921 17922 17923 17924 17925 17926 17937 17938 17939 17940 17941 17942 17943 17944 17945 17946 17947 17957 17958 17959 17960 17961 17962 17963 17964 17965 17966 17967 17968 17976 17977 17978 17979 17980 17981 17982 17983 17984 17985 17986 17987 17994 17995 17996 17997 17998 17999 18000 18001 18002 18003 18004 18013 18014 18015 18016 18017 18018 18019 18020 18021 18022 18031 18032 18033 18034 18035 18036 18037 18038 18048 18049 18050 18051 18052 18053 18064 18065 3436 3437 3438 3439 3987 3988 4031 4032 4033 4077 5036 5037 5038 5039 5040 5041 5146 5147 5148 5149 5150 5151 5200 5201 5202 5203 5204 5205 5252 5253 5254 5255 5256 5257 5258 5304 5305 5306 5307 5308 5309 5354 5355 5356 5357 5358 5359 5360 5404 5405 5406 5407 5408 5409 5410 5453 5454 5455 5456 5457 5458 5501 5502 5503 5504 5505 5548 5549 5550 5551 5552 5595 5596 5597 5641 6746 6747 6748 6749 6750 6751 6752 7382 7383 7425 7426 7427 7428 7429 7467 7468 7469 7470 7471 7472 7508 7509 7510 7511 7512 7513 7548 7549 7550 7551 7552 7553 7554 7587 7588 7589 7590 7591 7592 7593 7625 7626 7627 7628 7629 7630 7631 7632 7663 7664 7665 7666 7667 7668 7669 7700 7701 7702 7703 7704 7705 7736 7737 7738 7739 7740 7741 7770 7771 7772 7773 7774 7775 7776 7777 7778 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7836 7837 7838 7839 7840 7841 7842 7843 7844 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 8011 8012 8013 8014 8015 8016 8017 8018 8019 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8085 8086 8087 8088 8089 8090 8091 8092 8093 8107 8108 8109 8110 8111 8112 8113 8114 8115 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8148 8149 8150 8151 8152 8153 8154 8155 8156 8168 8169 8170 8171 8172 8173 8174 8186 8187 8188 8189 8190 8191 8204 8205 8206 8207 8221 8222 8236 17853 17869 17870 17871 17872 17873 17874 17875 17876 17877 17878 17892 17893 17894 17895 17896 17897 17898 17899 17900 17901 17915 17916 17917 17918 17919 17920 17921 17922 17937 17938 17939 17940 17941 17942 17943 17944 17953 17954 17955 17956 17957 17958 17959 17960 17961 17962 17963 17964 17965 17974 17975 17976 17977 17978 17979 17980 17981 17982 17983 17984 17994 17995 17996 17997 17998 17999 18000 18001 18002 18003 18013 18014 18015 18016 18017 18018 18019 18020 18031 18032 18033 18034 18035 18036 18048 18049 18050 18064 18065 3445 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5734 5735 5736 5737 5738 5739 5740 5741 5776 5777 5778 5779 5780 5781 5817 5818 5819 5820 5821 5857 5858 5859 5860 5896 5897 5898 6737 6738 6739 6740 7977 8003 8004 8028 8029 8052 8053 8054 8075 8076 8077 8097 8098 8099 8118 8119 8120 8121 8138 8139 8140 8141 8157 8158 8159 8160 8175 8176 8177 8178 8192 8193 8194 8195 8196 8208 8209 8210 8211 8212 8223 8224 8225 8226 8227 8228 8237 8238 8239 8240 8241 8242 8243 8250 8251 8252 8253 8254 8255 8256 8262 8263 8264 8265 8266 8267 8268 8269 8274 8275 8276 8277 8278 8279 8280 8281 8284 8285 8286 8287 8288 8289 8290 8291 8293 8294 8295 8296 8297 8298 8299 8302 8303 8304 8305 8306 8309 8310 8311 8312 8316 8317 18010 18028 18029 18044 18045 18046 18060 18061 18074 18075 18076 18088 18089 18090 18100 18101 18102 18103 18112 18113 18114 18115 18122 18123 18124 18125 18126 18132 18133 18134 18135 18136 18141 18142 18143 18144 18145 18148 18149 18150 18151 18152 18153 18156 18157 18158 18159 18160 18163 18164 3443 3444 3445 4242 4243 4281 4282 4320 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5512 5513 5514 5515 5516 5517 5518 5519 5520 5559 5560 5561 5562 5563 5564 5603 5604 5605 5606 5607 5608 5609 5647 5648 5649 5650 5651 5652 5653 5691 5692 5693 5694 5695 5696 5697 5733 5734 5735 5736 5737 5738 5739 5774 5775 5776 5777 5778 5779 5780 5815 5816 5817 5818 5819 5820 5856 5857 5858 5859 5860 5896 5897 5898 6735 6736 6737 6738 6739 6740 7950 7977 8003 8004 8028 8029 8052 8053 8054 8075 8076 8077 8097 8098 8099 8118 8119 8120 8121 8138 8139 8140 8141 8157 8158 8159 8160 8175 8176 8177 8178 8192 8193 8194 8195 8196 8208 8209 8210 8211 8212 8223 8224 8225 8226 8227 8228 8237 8238 8239 8240 8241 8242 8243 8250 8251 8252 8253 8254 8255 8256 8257 8262 8263 8264 8265 8266 8267 8268 8269 8273 8274 8275 8276 8277 8278 8279 8280 8281 8284 8285 8286 8287 8288 8289 8290 8291 8293 8294 8295 8296 8297 8298 8299 8301 8302 8303 8304 8305 8306 8308 8309 8310 8311 8312 8314 8315 8316 8317 8319 8320 8321 18028 18029 18043 18044 18045 18046 18058 18059 18060 18061 18062 18073 18074 18075 18076 18077 18087 18088 18089 18090 18091 18100 18101 18102 18103 18104 18112 18113 18114 18115 18123 18124 18125 18126 18132 18133 18134 18135 18136 18141 18142 18143 18144 18145 18148 18149 18150 18151 18152 18153 18156 18157 18158 18159 18160 18163 18164 18165 18166 18169 18170 18171 18174 18175 3441 3442 3443 3444 4118 4119 4160 4161 4162 4201 4202 4203 4242 4243 5046 5047 5048 5049 5050 5051 5052 5156 5157 5158 5159 5160 5161 5162 5208 5209 5210 5211 5212 5213 5214 5215 5260 5261 5262 5263 5264 5265 5266 5267 5312 5313 5314 5315 5316 5317 5362 5363 5364 5365 5366 5411 5412 5413 5414 5415 5460 5461 5462 5463 5464 5507 5508 5509 5510 5511 5553 5554 5555 5556 5557 5558 5599 5600 5601 5602 5643 5644 5645 5646 5647 5687 5688 5689 5690 5730 5731 5732 5733 5773 5774 5775 5815 5816 5856 6741 6742 6743 6744 6745 7800 7832 7833 7863 7864 7865 7893 7894 7895 7896 7922 7923 7924 7925 7926 7950 7951 7952 7953 7954 7955 7978 7979 7980 7981 7982 7983 8005 8006 8007 8008 8009 8010 8030 8031 8032 8033 8034 8035 8055 8056 8057 8058 8059 8060 8078 8079 8080 8081 8082 8083 8084 8100 8101 8102 8103 8104 8105 8106 8122 8123 8124 8125 8126 8127 8142 8143 8144 8145 8146 8147 8161 8162 8163 8164 8165 8166 8167 8179 8180 8181 8182 8183 8184 8185 8197 8198 8199 8200 8201 8202 8203 8213 8214 8215 8216 8217 8218 8219 8220 8229 8230 8231 8232 8233 8234 8235 8244 8245 8246 8247 8248 8249 8257 8258 8259 8260 8261 8270 8271 8272 8282 17969 17988 17989 17990 18005 18006 18007 18008 18009 18023 18024 18025 18026 18027 18039 18040 18041 18042 18043 18054 18055 18056 18057 18058 18059 18066 18067 18068 18069 18070 18071 18072 18073 18079 18080 18081 18082 18083 18084 18085 18086 18087 18093 18094 18095 18096 18097 18098 18099 18106 18107 18108 18109 18110 18111 18118 18119 18120 18121 18129 18130 18131 18139 18140 3440 3441 3442 4118 4119 4120 4160 4161 4162 4203 5042 5043 5044 5045 5046 5047 5048 5152 5153 5154 5155 5156 5157 5158 5206 5207 5208 5209 5210 5211 5259 5260 5261 5262 5263 5264 5310 5311 5312 5313 5314 5315 5361 5362 5363 5364 5365 5366 5411 5412 5413 5414 5415 5459 5460 5461 5462 5463 5506 5507 5508 5509 5510 5511 5553 5554 5555 5556 5557 5558 5598 5599 5600 5601 5602 5642 5643 5644 5645 5646 5686 5687 5688 5689 5690 5730 5731 5732 5773 6741 6742 6743 6744 6745 7662 7698 7699 7733 7734 7735 7767 7768 7769 7800 7801 7802 7832 7833 7834 7835 7863 7864 7865 7866 7893 7894 7895 7896 7922 7923 7924 7925 7926 7951 7952 7953 7954 7955 7978 7979 7980 7981 7982 7983 8005 8006 8007 8008 8009 8010 8030 8031 8032 8033 8034 8035 8055 8056 8057 8058 8059 8060 8078 8079 8080 8081 8082 8083 8084 8100 8101 8102 8103 8104 8105 8106 8122 8123 8124 8125 8126 8127 8142 8143 8144 8145 8146 8147 8161 8162 8163 8164 8165 8166 8167 8179 8180 8181 8182 8183 8184 8185 8197 8198 8199 8200 8201 8202 8203 8213 8214 8215 8216 8217 8218 8219 8220 8229 8230 8231 8232 8233 8234 8235 8244 8245 8246 8247 8248 8249 8258 8259 8260 8261 8270 8271 8272 8282 17988 18004 18005 18006 18007 18021 18022 18023 18024 18025 18037 18038 18039 18040 18041 18042 18051 18052 18053 18054 18055 18056 18057 18066 18067 18068 18069 18070 18071 18072 18079 18080 18081 18082 18083 18084 18085 18086 18093 18094 18095 18096 18097 18098 18099 18106 18107 18108 18109 18110 18111 18118 18119 18120 18121 18122 18129 18130 18131 18139 18140 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 4269 4270 4272 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4692 4693 4694 4695 4696 4697 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5330 5331 5332 5333 5334 5335 5339 5340 5341 5381 5382 5383 5384 5385 5431 5432 5433 5434 5479 5480 5481 5526 5527 5528 5571 5572 5573 5574 5575 5615 5616 5617 5618 5619 5620 5621 5658 5659 5660 5661 5662 5663 5664 5665 5666 5701 5702 5703 5704 5705 5706 5707 5742 5743 5744 5745 5746 5747 5782 5783 5784 5785 5786 5787 5788 5789 5822 5823 5824 5825 5826 5827 5828 5829 5861 5862 5863 5864 5865 5866 5867 5868 5869 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 6010 6011 6012 6013 6014 6015 6016 6017 6018 6046 6047 6048 6049 6050 6051 6052 6053 6081 6082 6083 6084 6085 6086 6087 6115 6116 6117 6118 6119 6120 6148 6149 6150 6151 6180 6181 6182 6211 6212 6241 6242 6270 6734 6735 6736 8273 8283 8292 8300 8301 8307 8308 8313 8314 8315 8318 8319 8320 8321 8322 8323 8324 8326 16595 16596 16597 16598 16599 18116 18117 18127 18128 18137 18138 18146 18147 18154 18155 18161 18162 18165 18166 18167 18168 18169 18170 18171 18172 18173 18174 18175 18176 18177 18178 18179 18181 3446 3447 3448 3449 3450 3451 3452 3453 4270 4272 4278 4279 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4631 4632 4633 4634 4635 4636 4637 4638 4639 4660 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5379 5380 5381 5382 5383 5384 5385 5428 5429 5430 5431 5432 5433 5434 5475 5476 5477 5478 5479 5480 5481 5482 5521 5522 5523 5524 5525 5526 5527 5528 5529 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5698 5699 5700 5701 5702 5703 5704 5705 5706 5740 5741 5742 5743 5744 5745 5746 5747 5748 5781 5782 5783 5784 5785 5786 5787 5788 5789 5821 5822 5823 5824 5825 5826 5827 5828 5829 5861 5862 5863 5864 5865 5866 5867 5868 5899 5900 5901 5902 5903 5904 5905 5906 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5973 5974 5975 5976 5977 5978 5979 5980 5981 6010 6011 6012 6013 6014 6015 6016 6017 6046 6047 6048 6049 6050 6051 6052 6081 6082 6083 6084 6085 6086 6115 6116 6117 6118 6119 6148 6149 6150 6151 6180 6181 6211 6732 6733 6734 8283 8292 8300 8307 8313 8318 8322 8323 8324 8325 8326 8327 16588 16589 16590 16591 16592 16593 16594 16595 16596 16597 16598 16599 16600 16601 18092 18105 18116 18117 18127 18128 18137 18138 18146 18147 18154 18155 18161 18162 18167 18168 18172 18173 18176 18177 18178 18179 18180 18181 18182 18183 19752 19759 2 3 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 2034 2035 2037 2038 2039 2040 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 4628 4654 4655 4656 4657 4658 4659 4660 4661 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4698 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5135 5187 5188 5189 5190 5240 5241 5242 5243 5244 5293 5294 5295 5296 5297 5336 5337 5338 5342 5343 5344 5345 5346 5347 5348 5349 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6571 6572 6573 6574 6575 6576 6577 6578 6579 6585 6586 6587 6588 6589 6590 6591 6592 6598 6599 6600 6601 6602 6603 6604 6610 6611 6612 6613 6614 6621 6622 6623 6624 6631 6632 6633 6634 6640 6641 6642 6648 6649 6650 6655 6656 6657 6661 6662 6666 6667 6670 6671 6673 6675 6732 6733 8325 8327 16588 16589 16590 16591 16592 16593 16594 18180 18182 18183 18184 18185 18186 18187 19507 19508 19509 19529 19530 19531 19532 19551 19552 19553 19554 19571 19572 19573 19574 19575 19591 19592 19593 19594 19595 19610 19611 19612 19613 19628 19629 19630 19631 19645 19646 19647 19648 19660 19661 19662 19663 19664 19675 19676 19677 19678 19679 19680 19689 19690 19691 19692 19693 19694 19702 19703 19704 19705 19706 19714 19715 19716 19717 19718 19725 19726 19727 19728 19735 19736 19737 19738 19744 19745 19746 19752 19753 19754 19759 19760 19761 19765 19766 19767 19770 19771 19772 19774 19775 19776 19777 19778 19779 27816 30860 30872 30873 30882 30883 30884 30885 30893 30894 30895 30896 30903 30904 30905 30906 30912 30913 30914 30915 30920 30921 30922 30923 30927 30928 30929 30930 30934 30935 30936 30939 30940 30941 30943 30944 30945 30946 30947 30948 30949 30950 30951 2 3 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1922 1923 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1981 1982 1983 1984 1988 1989 1990 1991 2034 2035 2041 2085 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 4613 4614 4615 4616 4617 4640 4641 4642 4643 4644 4645 4656 4657 4658 4659 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5080 5081 5082 5083 5084 5085 5086 5087 5088 5190 5240 5241 5242 5243 5244 5290 5291 5292 5293 5294 5295 5296 5297 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6610 6611 6612 6613 6614 6615 6616 6617 6618 6621 6622 6623 6624 6625 6626 6627 6628 6629 6631 6632 6633 6634 6635 6636 6637 6638 6640 6641 6642 6643 6644 6645 6646 6648 6649 6650 6651 6652 6655 6656 6657 6658 6661 6662 6663 6664 6666 6667 6668 6670 6671 6673 6675 18184 18185 18186 18187 18188 19571 19572 19573 19574 19591 19592 19593 19594 19610 19611 19612 19613 19627 19628 19629 19630 19631 19644 19645 19646 19647 19648 19660 19661 19662 19663 19664 19665 19675 19676 19677 19678 19679 19680 19689 19690 19691 19692 19693 19694 19702 19703 19704 19705 19706 19707 19708 19714 19715 19716 19717 19718 19719 19720 19725 19726 19727 19728 19729 19730 19731 19735 19736 19737 19738 19739 19740 19744 19745 19746 19747 19748 19749 19753 19754 19755 19756 19757 19760 19761 19762 19763 19765 19766 19767 19768 19769 19770 19771 19772 19773 19774 19775 19776 19777 19778 19779 30923 30928 30929 30930 30933 30934 30935 30936 30937 30938 30939 30940 30941 30942 30943 30944 30945 30946 30947 30948 30949 30950 30951 23155 23156 23157 23158 23159 23160 23161 23162 23163 23164 23165 23166 23167 23168 23169 23170 23171 23172 23173 23827 23828 23866 23867 23868 23869 23870 23871 23872 23873 23907 23908 23909 23910 23911 23912 23913 23914 23915 23947 23948 23949 23950 23951 23952 23953 23954 23955 23986 23987 23988 23989 23990 23991 23992 23993 23994 24025 24026 24027 24028 24029 24030 24031 24032 24062 24063 24064 24065 24066 24067 24068 24069 24099 24100 24101 24102 24103 24104 24105 24134 24135 24136 24137 24138 24139 24140 24169 24170 24171 24172 24173 24174 24202 24203 24204 24205 24206 24207 24235 24236 24237 24238 24239 24266 24267 24268 24269 24270 24297 24298 24299 24300 24326 24327 24328 24329 24355 24356 24357 24382 24383 24384 24409 24410 24435 24459 24757 24758 24759 24760 24761 24762 24763 24764 24765 24766 24767 24768 24769 24770 24771 24772 24773 24774 24775 24776 24810 24811 24812 24813 24814 24815 24816 24817 24818 24819 24820 24821 24822 24823 24824 24825 24826 24827 24828 24829 24830 24863 24864 24865 24866 24867 24868 24869 24870 24871 24872 24873 24874 24875 24876 24877 24878 24879 24880 24881 24882 24883 24915 24916 24917 24918 24919 24920 24921 24922 24923 24924 24925 24926 24927 24928 24929 24930 24931 24932 24933 24934 24935 24966 24967 24968 24969 24970 24971 24972 24973 24974 24975 24976 24977 24978 24979 24980 24981 24982 24983 24984 24985 24986 24987 25015 25016 25017 25018 25019 25020 25021 25022 25023 25024 25025 25026 25027 25028 25029 25030 25031 25032 25033 25034 25035 25036 25037 25065 25066 25067 25068 25069 25070 25071 25072 25073 25074 25075 25076 25077 25078 25079 25080 25081 25082 25083 25084 25085 25086 25113 25114 25115 25116 25117 25118 25119 25120 25121 25122 25123 25124 25125 25126 25127 25128 25129 25130 25131 25132 25133 25160 25161 25162 25163 25164 25165 25166 25167 25168 25169 25170 25171 25172 25173 25174 25175 25176 25177 25178 25179 25180 25205 25206 25207 25208 25209 25210 25211 25212 25213 25214 25215 25216 25217 25218 25219 25220 25221 25222 25223 25224 25225 25250 25251 25252 25253 25254 25255 25256 25257 25258 25259 25260 25261 25262 25263 25264 25265 25266 25267 25268 25269 25270 25293 25294 25295 25296 25297 25298 25299 25300 25301 25302 25303 25304 25305 25306 25307 25308 25309 25310 25311 25312 25313 25314 25334 25335 25336 25337 25338 25339 25340 25341 25342 25343 25344 25345 25346 25347 25348 25349 25350 25351 25352 25353 25354 25355 25356 25357 25376 25377 25378 25379 25380 25381 25382 25383 25384 25385 25386 25387 25388 25389 25390 25391 25392 25393 25394 25395 25396 25397 25398 25399 25416 25417 25418 25419 25420 25421 25422 25423 25424 25425 25426 25427 25428 25429 25430 25431 25432 25433 25434 25435 25436 25437 25438 25439 25440 25456 25457 25458 25459 25460 25461 25462 25463 25464 25465 25466 25467 25468 25469 25470 25471 25472 25473 25474 25475 25476 25477 25478 25479 25480 25496 25497 25498 25499 25500 25501 25502 25503 25504 25505 25506 25507 25508 25509 25510 25511 25512 25513 25514 25515 25516 25517 25518 25519 25535 25536 25537 25538 25539 25540 25541 25542 25543 25544 25545 25546 25547 25548 25549 25550 25551 25552 25553 25554 25555 25556 25557 25573 25574 25575 25576 25577 25578 25579 25580 25581 25582 25583 25584 25585 25586 25587 25588 25589 25590 25591 25592 25593 25610 25611 25612 25613 25614 25615 25616 25617 25618 25619 25620 25621 25622 25623 25624 25625 25626 25627 25628 25629 25646 25647 25648 25649 25650 25651 25652 25653 25654 25655 25656 25657 25658 25659 25660 25661 25662 25663 25681 25682 25683 25684 25685 25686 25687 25688 25689 25690 25691 25692 25693 25694 25695 25696 25697 25715 25716 25717 25718 25719 25720 25721 25722 25723 25724 25725 25726 25727 25728 25729 25750 25751 25752 25753 25754 25755 25756 25757 25758 25759 25785 23155 23156 23157 23158 23159 23160 23161 23162 23163 23164 23165 23166 23167 23168 23169 23170 23171 23172 23173 23782 23783 23823 23824 23825 23826 23827 23828 23864 23865 23866 23867 23868 23869 23870 23871 23872 23873 23905 23906 23907 23908 23909 23910 23911 23912 23913 23914 23915 23945 23946 23947 23948 23949 23950 23951 23952 23953 23954 23955 23985 23986 23987 23988 23989 23990 23991 23992 23993 23994 24023 24024 24025 24026 24027 24028 24029 24030 24031 24032 24061 24062 24063 24064 24065 24066 24067 24068 24069 24097 24098 24099 24100 24101 24102 24103 24104 24105 24133 24134 24135 24136 24137 24138 24139 24140 24167 24168 24169 24170 24171 24172 24173 24174 24201 24202 24203 24204 24205 24206 24207 24233 24234 24235 24236 24237 24238 24239 24265 24266 24267 24268 24269 24270 24296 24297 24298 24299 24300 24326 24327 24328 24329 24355 24356 24357 24382 24383 24384 24409 24410 24434 24435 24459 24757 24758 24759 24760 24761 24762 24763 24764 24765 24766 24767 24768 24769 24770 24771 24772 24773 24774 24775 24776 24811 24812 24813 24814 24815 24816 24817 24818 24819 24820 24821 24822 24823 24824 24825 24826 24827 24828 24829 24830 24864 24865 24866 24867 24868 24869 24870 24871 24872 24873 24874 24875 24876 24877 24878 24879 24880 24881 24882 24883 24916 24917 24918 24919 24920 24921 24922 24923 24924 24925 24926 24927 24928 24929 24930 24931 24932 24933 24934 24935 24966 24967 24968 24969 24970 24971 24972 24973 24974 24975 24976 24977 24978 24979 24980 24981 24982 24983 24984 24985 25016 25017 25018 25019 25020 25021 25022 25023 25024 25025 25026 25027 25028 25029 25030 25031 25032 25033 25034 25035 25065 25066 25067 25068 25069 25070 25071 25072 25073 25074 25075 25076 25077 25078 25079 25080 25081 25082 25083 25084 25112 25113 25114 25115 25116 25117 25118 25119 25120 25121 25122 25123 25124 25125 25126 25127 25128 25129 25130 25131 25132 25158 25159 25160 25161 25162 25163 25164 25165 25166 25167 25168 25169 25170 25171 25172 25173 25174 25175 25176 25177 25178 25179 25204 25205 25206 25207 25208 25209 25210 25211 25212 25213 25214 25215 25216 25217 25218 25219 25220 25221 25222 25223 25224 25225 25248 25249 25250 25251 25252 25253 25254 25255 25256 25257 25258 25259 25260 25261 25262 25263 25264 25265 25266 25267 25268 25269 25270 25291 25292 25293 25294 25295 25296 25297 25298 25299 25300 25301 25302 25303 25304 25305 25306 25307 25308 25309 25310 25311 25312 25313 25314 25332 25333 25334 25335 25336 25337 25338 25339 25340 25341 25342 25343 25344 25345 25346 25347 25348 25349 25350 25351 25352 25353 25354 25355 25356 25357 25374 25375 25376 25377 25378 25379 25380 25381 25382 25383 25384 25385 25386 25387 25388 25389 25390 25391 25392 25393 25394 25395 25396 25397 25398 25399 25415 25416 25417 25418 25419 25420 25421 25422 25423 25424 25425 25426 25427 25428 25429 25430 25431 25432 25433 25434 25435 25436 25437 25438 25439 25440 25456 25457 25458 25459 25460 25461 25462 25463 25464 25465 25466 25467 25468 25469 25470 25471 25472 25473 25474 25475 25476 25477 25478 25479 25480 25496 25497 25498 25499 25500 25501 25502 25503 25504 25505 25506 25507 25508 25509 25510 25511 25512 25513 25514 25515 25516 25517 25518 25519 25535 25536 25537 25538 25539 25540 25541 25542 25543 25544 25545 25546 25547 25548 25549 25550 25551 25552 25553 25554 25555 25556 25557 25573 25574 25575 25576 25577 25578 25579 25580 25581 25582 25583 25584 25585 25586 25587 25588 25589 25590 25591 25592 25593 25611 25612 25613 25614 25615 25616 25617 25618 25619 25620 25621 25622 25623 25624 25625 25626 25627 25628 25629 25649 25650 25651 25652 25653 25654 25655 25656 25657 25658 25659 25660 25661 25662 25663 25685 25686 25687 25688 25689 25690 25691 25692 25693 25694 25695 25696 25697 25721 25722 25723 25724 25725 25726 25727 25728 25756 25757 25758 25759 10100 10101 10102 10103 10104 10105 10106 10107 10108 10109 10110 10111 10112 10113 10114 10115 10116 10117 11394 11395 11396 11397 11398 11419 11420 11421 11422 11423 11424 11444 11445 11446 11447 11448 11449 11468 11469 11470 11471 11472 11473 11491 11492 11493 11494 11495 11496 11513 11514 11515 11516 11517 11518 11534 11535 11536 11537 11538 11539 11540 11554 11555 11556 11557 11558 11559 11560 11561 11573 11574 11575 11576 11577 11578 11579 11580 11591 11592 11593 11594 11595 11596 11597 11598 11608 11609 11610 11611 11612 11613 11614 11615 11624 11625 11626 11627 11628 11629 11630 11631 11639 11640 11641 11642 11643 11644 11645 11653 11654 11655 11656 11657 11658 11659 11666 11667 11668 11669 11670 11671 11678 11679 11680 11681 11682 11689 11690 11691 11692 11699 11700 11701 11708 11709 18270 18271 18272 18273 18274 18275 18276 18277 18278 18279 18280 18281 18282 18283 18284 18285 18286 18325 18326 18327 18328 18329 18330 18331 18332 18333 18334 18335 18336 18337 18338 18339 18379 18380 18381 18382 18383 18384 18385 18386 18387 18388 18389 18390 18391 18392 18432 18433 18434 18435 18436 18437 18438 18439 18440 18441 18442 18443 18444 18483 18484 18485 18486 18487 18488 18489 18490 18491 18492 18493 18494 18534 18535 18536 18537 18538 18539 18540 18541 18542 18543 18544 18584 18585 18586 18587 18588 18589 18590 18591 18592 18633 18634 18635 18636 18637 18638 18639 18640 18680 18681 18682 18683 18684 18685 18727 18728 18729 18730 18773 18774 10103 10104 10105 10106 10107 10108 10109 10110 10111 10112 11534 11535 11536 11554 11555 11556 11557 11573 11574 11575 11576 11591 11592 11593 11594 11595 11608 11609 11610 11611 11612 11624 11625 11626 11627 11628 11639 11640 11641 11642 11653 11654 11655 11656 11666 11667 18272 18273 18274 18275 18276 18277 18278 18279 18280 18281 18282 18283 18325 18326 18327 18328 18329 18330 18331 18332 18333 18334 18335 18336 18337 18338 18377 18378 18379 18380 18381 18382 18383 18384 18385 18386 18387 18388 18389 18390 18391 18392 18430 18431 18432 18433 18434 18435 18436 18437 18438 18439 18440 18441 18442 18443 18444 18481 18482 18483 18484 18485 18486 18487 18488 18489 18490 18491 18492 18493 18494 18495 18532 18533 18534 18535 18536 18537 18538 18539 18540 18541 18542 18543 18544 18545 18582 18583 18584 18585 18586 18587 18588 18589 18590 18591 18592 18593 18594 18595 18631 18632 18633 18634 18635 18636 18637 18638 18639 18640 18641 18642 18643 18678 18679 18680 18681 18682 18683 18684 18685 18686 18687 18688 18689 18690 18725 18726 18727 18728 18729 18730 18731 18732 18733 18734 18735 18736 18771 18772 18773 18774 18775 18776 18777 18778 18779 18780 18781 18817 18818 18819 18820 18821 18822 18823 18824 18861 18862 18863 18864 18865 18866 18867 18904 18905 18906 18907 10118 10119 10120 10121 11309 11338 18265 18266 18267 18268 18269 18319 18320 18321 18322 18323 18324 18370 18371 18372 18373 18374 18375 18376 18377 18378 18422 18423 18424 18425 18426 18427 18428 18429 18430 18431 18473 18474 18475 18476 18477 18478 18479 18480 18481 18482 18523 18524 18525 18526 18527 18528 18529 18530 18531 18532 18533 18572 18573 18574 18575 18576 18577 18578 18579 18580 18581 18582 18583 18621 18622 18623 18624 18625 18626 18627 18628 18629 18630 18631 18632 18668 18669 18670 18671 18672 18673 18674 18675 18676 18677 18678 18679 18715 18716 18717 18718 18719 18720 18721 18722 18723 18724 18725 18726 18761 18762 18763 18764 18765 18766 18767 18768 18769 18770 18771 18772 18805 18806 18807 18808 18809 18810 18811 18812 18813 18814 18815 18816 18817 18849 18850 18851 18852 18853 18854 18855 18856 18857 18858 18859 18860 18861 18892 18893 18894 18895 18896 18897 18898 18899 18900 18901 18902 18903 18934 18935 18936 18937 18938 18939 18940 18941 18942 18943 18944 18945 18975 18976 18977 18978 18979 18980 18981 18982 18983 18984 18985 19016 19017 19018 19019 19020 19021 19022 19023 19024 19055 19056 19057 19058 19059 19060 19061 19062 19063 19093 19094 19095 19096 19097 19098 19099 19100 19130 19131 19132 19133 19134 19135 19136 19137 19167 19168 19169 19170 19171 19172 19173 19203 19204 19205 19206 19207 19239 19240 10119 10120 10121 10122 10123 11250 11251 11279 11280 11281 11309 11310 11338 18263 18264 18265 18266 18267 18318 18319 18320 18321 18322 18371 18372 18373 18374 18375 18376 18423 18424 18425 18426 18427 18428 18429 18474 18475 18476 18477 18478 18479 18480 18525 18526 18527 18528 18529 18530 18531 18574 18575 18576 18577 18578 18579 18580 18581 18622 18623 18624 18625 18626 18627 18628 18629 18630 18669 18670 18671 18672 18673 18674 18675 18676 18677 18715 18716 18717 18718 18719 18720 18721 18722 18723 18724 18760 18761 18762 18763 18764 18765 18766 18767 18768 18769 18770 18804 18805 18806 18807 18808 18809 18810 18811 18812 18813 18814 18815 18816 18846 18847 18848 18849 18850 18851 18852 18853 18854 18855 18856 18857 18858 18859 18860 18889 18890 18891 18892 18893 18894 18895 18896 18897 18898 18899 18900 18901 18902 18903 18930 18931 18932 18933 18934 18935 18936 18937 18938 18939 18940 18941 18942 18943 18944 18945 18946 18970 18971 18972 18973 18974 18975 18976 18977 18978 18979 18980 18981 18982 18983 18984 18985 18986 18987 19010 19011 19012 19013 19014 19015 19016 19017 19018 19019 19020 19021 19022 19023 19024 19025 19026 19049 19050 19051 19052 19053 19054 19055 19056 19057 19058 19059 19060 19061 19062 19063 19064 19065 19066 19086 19087 19088 19089 19090 19091 19092 19093 19094 19095 19096 19097 19098 19099 19100 19101 19102 19103 19123 19124 19125 19126 19127 19128 19129 19130 19131 19132 19133 19134 19135 19136 19137 19138 19159 19160 19161 19162 19163 19164 19165 19166 19167 19168 19169 19170 19171 19172 19198 19199 19200 19201 19202 19203 19204 19205 19206 19235 19236 19237 19238 19239 19270 15019 15020 15021 15022 15023 15024 15025 15026 15075 15076 15077 15078 15079 15080 15081 15082 15129 15130 15131 15132 15133 15134 15135 15136 15137 15183 15184 15185 15186 15187 15188 15189 15190 15191 15236 15237 15238 15239 15240 15241 15242 15243 15287 15288 15289 15290 15291 15292 15293 15294 15295 15338 15339 15340 15341 15342 15343 15344 15345 15388 15389 15390 15391 15392 15393 15394 15395 15437 15438 15439 15440 15441 15442 15443 15485 15486 15487 15488 15489 15490 15531 15532 15533 15534 15535 15536 15577 15578 15579 15580 15623 15624 23218 23219 23220 23221 23222 23223 23274 23275 23276 23277 23278 23329 15023 15024 15025 15026 15027 15028 15078 15079 15080 15081 15082 15083 15084 15132 15133 15134 15135 15136 15137 15138 15185 15186 15187 15188 15189 15190 15191 15192 15238 15239 15240 15241 15242 15243 15289 15290 15291 15292 15293 15294 15295 15340 15341 15342 15343 15344 15345 15390 15391 15392 15393 15394 15438 15439 15440 15441 15442 15485 15486 15487 15488 15489 15532 15533 15534 15535 15577 15578 15579 23215 23216 23217 23218 23219 23269 23270 23271 23323 23324 23376 95 96 97 98 99 100 101 102 103 105 106 107 108 109 110 111 112 1369 1370 1395 1396 1420 1421 1422 1444 1445 1446 1467 1468 1469 1489 1490 1491 1492 1510 1511 1512 1513 1514 1530 1531 1532 1533 1534 1549 1550 1551 1552 1553 1567 1568 1569 1570 1571 1584 1585 1586 1587 1600 1601 1615 1616 1629 23146 23147 23148 23149 23150 23151 23152 23153 23154 23174 23175 23176 23177 23178 23179 23180 23181 23182 23548 23549 23550 23551 23552 23553 23554 23555 23595 23596 23597 23598 23599 23600 23601 23602 23603 23604 23605 23606 23607 23641 23642 23643 23644 23645 23646 23647 23648 23649 23650 23651 23652 23653 23654 23687 23688 23689 23690 23691 23692 23693 23694 23695 23696 23697 23698 23699 23700 23732 23733 23734 23735 23736 23737 23738 23739 23740 23741 23742 23743 23744 23745 23776 23777 23778 23779 23780 23781 23782 23783 23784 23785 23786 23787 23788 23789 23818 23819 23820 23821 23822 23823 23824 23825 23826 23829 23830 23831 23832 23861 23862 23863 23864 23865 23874 23902 23903 23904 23905 23906 23943 23944 23945 23946 23982 23983 23984 23985 24020 24021 24022 24023 24024 24058 24059 24060 24061 24093 24094 24095 24096 24097 24098 24128 24129 24130 24131 24132 24133 24162 24163 24164 24165 24166 24167 24168 24196 24197 24198 24199 24200 24201 24228 24229 24230 24231 24232 24233 24234 24260 24261 24262 24263 24264 24265 24290 24291 24292 24293 24294 24295 24296 24319 24320 24321 24322 24323 24324 24325 24348 24349 24350 24351 24352 24353 24354 24375 24376 24377 24378 24379 24380 24381 24402 24403 24404 24405 24406 24407 24408 24427 24428 24429 24430 24431 24432 24433 24434 24452 24453 24454 24455 24456 24457 24458 24475 24476 24477 24478 24479 24480 24481 24482 24498 24499 24500 24501 24502 24503 24504 24521 24522 24523 24524 24525 24541 24542 24543 24544 24545 24561 24562 24563 24564 24580 24581 24582 24598 24599 24614 24615 24630 24747 24748 24749 24750 24751 24752 24753 24754 24755 24756 24777 24778 24779 24780 24781 24782 24783 24784 24785 24801 24802 24803 24804 24805 24806 24807 24808 24809 24831 24832 24833 24834 24835 24836 24837 24838 24839 24840 24853 24854 24855 24856 24857 24858 24859 24860 24861 24862 24884 24885 24886 24887 24888 24889 24890 24891 24892 24893 24894 24905 24906 24907 24908 24909 24910 24911 24912 24913 24914 24936 24937 24938 24939 24940 24941 24942 24943 24944 24945 24946 24956 24957 24958 24959 24960 24961 24962 24963 24964 24965 24988 24989 24990 24991 24992 24993 24994 24995 24996 24997 25005 25006 25007 25008 25009 25010 25011 25012 25013 25014 25038 25039 25040 25041 25042 25043 25044 25045 25046 25047 25054 25055 25056 25057 25058 25059 25060 25061 25062 25063 25064 25087 25088 25089 25090 25091 25092 25093 25094 25095 25096 25102 25103 25104 25105 25106 25107 25108 25109 25110 25111 25112 25134 25135 25136 25137 25138 25139 25140 25141 25142 25143 25150 25151 25152 25153 25154 25155 25156 25157 25158 25159 25181 25182 25183 25184 25185 25186 25187 25188 25189 25190 25196 25197 25198 25199 25200 25201 25202 25203 25204 25226 25227 25228 25229 25230 25231 25232 25233 25234 25235 25241 25242 25243 25244 25245 25246 25247 25248 25249 25271 25272 25273 25274 25275 25276 25277 25278 25279 25280 25286 25287 25288 25289 25290 25291 25292 25315 25316 25317 25318 25319 25320 25321 25322 25323 25330 25331 25332 25333 25358 25359 25360 25361 25362 25363 25364 25365 25366 25373 25374 25375 25400 25401 25402 25403 25404 25405 25406 25407 25415 25441 25442 25443 25444 25445 25446 25447 25481 25482 25483 25484 25485 25486 25487 25520 25521 25522 25523 25524 25525 25558 25559 25560 25561 25562 25563 25594 25595 25596 25597 25598 25599 25600 25630 25631 25632 25633 25634 25635 25664 25665 25666 25667 25668 25669 25698 25699 25700 25701 25702 25703 25730 25731 25732 25733 25734 25735 25736 25748 25749 25760 25761 25762 25763 25764 25765 25766 25767 25768 25780 25781 25782 25783 25784 25786 25787 25788 25789 25790 25791 25792 25793 25794 25795 25796 25797 25798 25811 25812 25813 25814 25815 25816 25817 25818 25819 25820 25821 25822 25841 25842 25843 25844 25845 25846 25847 25870 25871 25872 25873 25874 25875 25898 25899 25900 25901 25902 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 1444 1467 1489 1490 1510 1511 1530 1531 1549 1550 1567 1568 1584 1600 1601 1615 1629 1642 1654 23147 23148 23149 23150 23151 23152 23153 23154 23174 23175 23176 23177 23178 23179 23180 23181 23182 23183 23452 23502 23503 23504 23505 23506 23507 23549 23550 23551 23552 23553 23554 23555 23556 23557 23558 23559 23595 23596 23597 23598 23599 23600 23601 23602 23603 23604 23605 23606 23607 23639 23640 23641 23642 23643 23644 23645 23646 23647 23648 23649 23650 23651 23652 23653 23654 23685 23686 23687 23688 23689 23690 23691 23692 23693 23694 23695 23696 23697 23698 23699 23700 23730 23731 23732 23733 23734 23735 23736 23737 23738 23739 23740 23741 23742 23743 23744 23745 23774 23775 23776 23777 23778 23779 23780 23781 23784 23785 23786 23787 23788 23789 23818 23819 23820 23821 23822 23829 23830 23831 23832 23860 23861 23862 23863 23874 23902 23903 23904 23943 23944 23981 23982 23983 23984 24020 24021 24022 24058 24059 24060 24094 24095 24096 24129 24130 24131 24132 24163 24164 24165 24166 24197 24198 24199 24200 24229 24230 24231 24232 24261 24262 24263 24264 24291 24292 24293 24294 24295 24321 24322 24323 24324 24325 24350 24351 24352 24353 24354 24377 24378 24379 24380 24381 24404 24405 24406 24407 24408 24429 24430 24431 24432 24433 24453 24454 24455 24456 24457 24458 24477 24478 24479 24480 24481 24482 24500 24501 24502 24503 24504 24521 24522 24523 24524 24525 24542 24543 24544 24545 24561 24562 24563 24564 24580 24581 24582 24597 24598 24599 24614 24615 24629 24630 24644 24747 24748 24749 24750 24751 24752 24753 24754 24755 24756 24777 24778 24779 24780 24781 24782 24783 24784 24801 24802 24803 24804 24805 24806 24807 24808 24809 24810 24831 24832 24833 24834 24835 24836 24837 24838 24854 24855 24856 24857 24858 24859 24860 24861 24862 24863 24884 24885 24886 24887 24888 24889 24890 24891 24906 24907 24908 24909 24910 24911 24912 24913 24914 24915 24936 24937 24938 24939 24940 24941 24942 24957 24958 24959 24960 24961 24962 24963 24964 24965 24986 24987 24988 24989 24990 24991 24992 24993 25007 25008 25009 25010 25011 25012 25013 25014 25015 25036 25037 25038 25039 25040 25041 25042 25043 25056 25057 25058 25059 25060 25061 25062 25063 25064 25085 25086 25087 25088 25089 25090 25091 25092 25104 25105 25106 25107 25108 25109 25110 25111 25133 25134 25135 25136 25137 25138 25139 25140 25141 25150 25151 25152 25153 25154 25155 25156 25157 25180 25181 25182 25183 25184 25185 25186 25187 25188 25189 25195 25196 25197 25198 25199 25200 25201 25202 25203 25226 25227 25228 25229 25230 25231 25232 25233 25234 25235 25241 25242 25243 25244 25245 25246 25247 25271 25272 25273 25274 25275 25276 25277 25278 25279 25280 25286 25287 25288 25289 25290 25315 25316 25317 25318 25319 25320 25321 25322 25323 25324 25330 25331 25358 25359 25360 25361 25362 25363 25364 25365 25366 25367 25373 25400 25401 25402 25403 25404 25405 25406 25407 25408 25409 25441 25442 25443 25444 25445 25446 25447 25448 25449 25481 25482 25483 25484 25485 25486 25487 25488 25520 25521 25522 25523 25524 25525 25526 25527 25558 25559 25560 25561 25562 25563 25564 25594 25595 25596 25597 25598 25599 25600 25601 25610 25630 25631 25632 25633 25634 25635 25636 25646 25647 25648 25664 25665 25666 25667 25668 25669 25670 25671 25681 25682 25683 25684 25698 25699 25700 25701 25702 25703 25704 25715 25716 25717 25718 25719 25720 25729 25730 25731 25732 25733 25734 25735 25736 25748 25749 25750 25751 25752 25753 25754 25755 25760 25761 25762 25763 25764 25765 25780 25781 25782 25783 25784 25785 25786 25787 25788 25789 25790 25791 25792 25793 25794 25795 25811 25812 25813 25814 25815 25816 25817 25818 25819 25820 25821 25822 25823 25824 25842 25843 25844 25845 25846 25847 25848 25849 25850 25851 25852 25871 25872 25873 25874 25875 25876 25877 25878 25900 25901 25902 25903 4 11794 11795 11796 11797 11798 11799 11850 11851 11852 11853 11854 11855 11856 11857 11858 11859 11860 11911 11912 11913 11914 11915 11916 11965 11966 11967 11968 11969 12018 12019 12020 12021 12022 12023 12070 12071 12072 12073 12074 12075 12121 12122 12123 12124 12125 12126 12171 12172 12173 12174 12175 12176 12224 12225 13396 13452 13453 13507 13508 13509 13561 13562 13614 13615 13666 14992 23140 23141 23142 23250 23357 24789 24790 24842 24843 24844 24896 24897 24949 25000 25050 4 11794 11795 11796 11797 11798 11799 11850 11851 11852 11853 11854 11855 11856 11857 11858 11859 11860 11911 11912 11913 11914 11915 11916 11965 11966 11967 11968 11969 12018 12019 12020 12021 12022 12023 12070 12071 12072 12073 12074 12075 12121 12122 12123 12124 12125 12126 12171 12172 12173 12174 12175 12176 12224 12225 13396 13452 13453 13507 13508 13509 13561 13562 13614 13615 13666 14992 23140 23141 23142 23250 23357 24789 24790 24842 24843 24844 24896 24897 24949 25000 25050 13398 13399 13400 13455 14993 14994 14995 14996 14997 14998 14999 15000 15049 15050 15051 15052 15053 15054 15055 15056 15057 15103 15104 15105 15106 15107 15108 15109 15110 15111 15112 15157 15158 15159 15160 15161 15162 15163 15164 15165 15166 15210 15211 15212 15213 15214 15215 15216 15217 15218 15219 15262 15263 15264 15265 15266 15267 15268 15269 15270 15271 15313 15314 15315 15316 15317 15318 15319 15320 15321 15322 15323 15364 15365 15366 15367 15368 15369 15370 15371 15372 15373 15413 15414 15415 15416 15417 15418 15419 15420 15421 15462 15463 15464 15465 15466 15467 15468 15469 15508 15509 15510 15511 15512 15513 15514 15555 15556 15557 15558 15559 15601 23244 23245 23246 23247 23248 23300 23301 23302 23303 13398 13399 13400 13455 14993 14994 14995 14996 14997 14998 14999 15000 15049 15050 15051 15052 15053 15054 15055 15056 15057 15103 15104 15105 15106 15107 15108 15109 15110 15111 15112 15157 15158 15159 15160 15161 15162 15163 15164 15165 15166 15210 15211 15212 15213 15214 15215 15216 15217 15218 15219 15262 15263 15264 15265 15266 15267 15268 15269 15270 15271 15313 15314 15315 15316 15317 15318 15319 15320 15321 15322 15323 15364 15365 15366 15367 15368 15369 15370 15371 15372 15373 15413 15414 15415 15416 15417 15418 15419 15420 15421 15462 15463 15464 15465 15466 15467 15468 15469 15508 15509 15510 15511 15512 15513 15514 15555 15556 15557 15558 15559 15601 23244 23245 23246 23247 23248 23300 23301 23302 23303 15007 15008 15009 15010 15011 15012 15062 15063 15064 15065 15066 15067 15068 15117 15118 15119 15120 15121 15122 15172 15173 15174 15175 15176 15225 15226 15227 15228 15229 15279 15280 23231 23232 23233 23234 23235 23285 23286 23287 23288 23289 23339 23340 23341 23342 23391 23392 23393 23443 23444 23445 23493 23494 23543 15007 15008 15009 15010 15011 15012 15062 15063 15064 15065 15066 15067 15068 15117 15118 15119 15120 15121 15122 15172 15173 15174 15175 15176 15225 15226 15227 15228 15229 15279 15280 23231 23232 23233 23234 23235 23285 23286 23287 23288 23289 23339 23340 23341 23342 23391 23392 23393 23443 23444 23445 23493 23494 23543 15013 15014 15015 15016 15069 15070 15071 15072 15123 15124 15125 15126 15127 15177 15178 15179 15180 15181 15230 15231 15232 15233 15234 15281 15282 15283 15284 15285 15332 15333 15334 15335 15382 15383 15384 15432 15433 23225 23226 23227 23228 23229 23230 23280 23281 23282 23283 23284 23334 23335 23336 23337 23338 23386 23387 23388 23389 23390 23438 23439 23440 23441 23442 23489 23490 23491 23492 23538 23539 23540 23541 23542 23587 23588 23589 23590 23634 23635 23636 15013 15014 15015 15016 15069 15070 15071 15072 15123 15124 15125 15126 15127 15177 15178 15179 15180 15181 15230 15231 15232 15233 15234 15281 15282 15283 15284 15285 15332 15333 15334 15335 15382 15383 15384 15432 15433 23225 23226 23227 23228 23229 23230 23280 23281 23282 23283 23284 23334 23335 23336 23337 23338 23386 23387 23388 23389 23390 23438 23439 23440 23441 23442 23489 23490 23491 23492 23538 23539 23540 23541 23542 23587 23588 23589 23590 23634 23635 23636 15018 15073 15074 23224 23279 23328 23330 23331 23332 23333 23380 23381 23382 23383 23384 23385 23432 23433 23434 23435 23436 23437 23482 23483 23484 23485 23486 23487 23488 23532 23533 23534 23535 23536 23537 23581 23582 23583 23584 23585 23586 23628 23629 23630 23631 23632 23633 23679 23680 23681 23725 23726 23769 15018 15019 15020 15021 15022 15073 15074 23221 23222 23223 23224 23275 23276 23277 23278 23279 23328 23329 23330 23331 23332 23333 23380 23381 23382 23383 23384 23385 23432 23433 23434 23435 23436 23437 23482 23483 23484 23485 23486 23487 23488 23532 23533 23534 23535 23536 23537 23581 23582 23583 23584 23585 23586 23628 23629 23630 23631 23632 23633 23679 23680 23681 23725 23726 23769 23480 23481 23529 23530 23531 23578 23579 23580 23625 23626 23627 23671 23672 23673 23674 23675 23676 23677 23678 23717 23718 23719 23720 23721 23722 23723 23724 23761 23762 23763 23764 23765 23766 23767 23768 23804 23805 23806 23807 23808 23809 23810 23811 23812 23847 23848 23849 23850 23851 23852 23853 23854 23889 23890 23891 23892 23893 23894 23895 23896 23929 23930 23931 23932 23933 23934 23935 23970 23971 23972 23973 23974 23480 23481 23529 23530 23531 23578 23579 23580 23625 23626 23627 23671 23672 23673 23674 23675 23676 23677 23678 23717 23718 23719 23720 23721 23722 23723 23724 23761 23762 23763 23764 23765 23766 23767 23768 23804 23805 23806 23807 23808 23809 23810 23811 23812 23847 23848 23849 23850 23851 23852 23853 23854 23889 23890 23891 23892 23893 23894 23895 23896 23929 23930 23931 23932 23933 23934 23935 23970 23971 23972 23973 23974 8421 8422 8423 8424 8425 8426 8427 8428 8429 8430 8431 9865 9883 9884 9900 9916 9931 9945 9958 9970 16624 16626 16627 16629 16630 16631 16632 16633 16634 16677 16678 16679 16680 16681 16682 16683 16684 16685 16686 16687 16688 16689 16690 16691 16730 16731 16732 16733 16734 16735 16736 16737 16738 16739 16740 16741 16742 16743 16744 16745 16783 16784 16785 16786 16787 16788 16789 16790 16791 16792 16793 16794 16795 16796 16797 16798 16799 16800 16833 16834 16835 16836 16837 16838 16839 16840 16841 16842 16843 16844 16845 16846 16847 16848 16849 16850 16851 16852 16853 16883 16884 16885 16886 16887 16888 16889 16890 16891 16892 16893 16894 16895 16896 16897 16898 16899 16900 16901 16902 16903 16904 16905 16934 16935 16936 16937 16938 16939 16940 16941 16942 16943 16944 16945 16946 16947 16948 16949 16950 16951 16952 16953 16954 16955 16956 16981 16982 16983 16984 16985 16986 16987 16988 16989 16990 16991 16992 16993 16994 16995 16996 16997 16998 16999 17000 17001 17002 17003 17004 17005 17006 17027 17028 17029 17030 17031 17032 17033 17034 17035 17036 17037 17038 17039 17040 17041 17042 17043 17044 17045 17046 17047 17048 17049 17050 17051 17052 17053 17054 17055 17074 17075 17076 17077 17078 17079 17080 17081 17082 17083 17084 17085 17086 17087 17088 17089 17090 17091 17092 17093 17094 17095 17096 17097 17098 17099 17100 17101 17102 17121 17122 17123 17124 17125 17126 17127 17128 17129 17130 17131 17132 17133 17134 17135 17136 17137 17138 17139 17140 17141 17142 17143 17144 17145 17146 17147 17148 17167 17168 17169 17170 17171 17172 17173 17174 17175 17176 17177 17178 17179 17180 17181 17182 17183 17184 17185 17186 17187 17188 17189 17190 17191 17192 17193 17212 17213 17214 17215 17216 17217 17218 17219 17220 17221 17222 17223 17224 17225 17226 17227 17228 17229 17230 17231 17232 17233 17234 17235 17236 17237 17258 17259 17260 17261 17262 17263 17264 17265 17266 17267 17268 17269 17270 17271 17272 17273 17274 17275 17276 17277 17278 17279 17280 17303 17304 17305 17306 17307 17308 17309 17310 17311 17312 17313 17314 17315 17316 17317 17318 17319 17320 17321 17322 17345 17346 17347 17348 17349 17350 17351 17352 17353 17354 17355 17356 17357 17358 17359 17360 17361 17362 17363 17385 17386 17387 17388 17389 17390 17391 17392 17393 17394 17395 17396 17397 17398 17399 17400 17401 17402 17403 17426 17427 17428 17429 17430 17431 17432 17433 17434 17435 17436 17437 17438 17439 17440 17441 17442 17465 17466 17467 17468 17469 17470 17471 17472 17473 17474 17475 17476 17477 17478 17479 17480 17503 17504 17505 17506 17507 17508 17509 17510 17511 17512 17513 17514 17515 17516 17517 17542 17543 17544 17545 17546 17547 17548 17549 17550 17551 17552 17553 17580 17581 17582 17583 17584 17585 17586 17587 17588 17616 17617 17618 17619 17620 17621 17652 17653 17654 18790 8421 8422 8423 8424 8425 8426 8427 8428 8429 8430 8431 9865 9883 9884 9900 9916 9931 9945 9958 9970 16624 16626 16627 16629 16630 16631 16632 16633 16634 16677 16678 16679 16680 16681 16682 16683 16684 16685 16686 16687 16688 16689 16690 16691 16730 16731 16732 16733 16734 16735 16736 16737 16738 16739 16740 16741 16742 16743 16744 16745 16783 16784 16785 16786 16787 16788 16789 16790 16791 16792 16793 16794 16795 16796 16797 16798 16799 16800 16833 16834 16835 16836 16837 16838 16839 16840 16841 16842 16843 16844 16845 16846 16847 16848 16849 16850 16851 16852 16853 16883 16884 16885 16886 16887 16888 16889 16890 16891 16892 16893 16894 16895 16896 16897 16898 16899 16900 16901 16902 16903 16904 16905 16934 16935 16936 16937 16938 16939 16940 16941 16942 16943 16944 16945 16946 16947 16948 16949 16950 16951 16952 16953 16954 16955 16956 16981 16982 16983 16984 16985 16986 16987 16988 16989 16990 16991 16992 16993 16994 16995 16996 16997 16998 16999 17000 17001 17002 17003 17004 17005 17006 17027 17028 17029 17030 17031 17032 17033 17034 17035 17036 17037 17038 17039 17040 17041 17042 17043 17044 17045 17046 17047 17048 17049 17050 17051 17052 17053 17054 17055 17074 17075 17076 17077 17078 17079 17080 17081 17082 17083 17084 17085 17086 17087 17088 17089 17090 17091 17092 17093 17094 17095 17096 17097 17098 17099 17100 17101 17102 17121 17122 17123 17124 17125 17126 17127 17128 17129 17130 17131 17132 17133 17134 17135 17136 17137 17138 17139 17140 17141 17142 17143 17144 17145 17146 17147 17148 17167 17168 17169 17170 17171 17172 17173 17174 17175 17176 17177 17178 17179 17180 17181 17182 17183 17184 17185 17186 17187 17188 17189 17190 17191 17192 17193 17212 17213 17214 17215 17216 17217 17218 17219 17220 17221 17222 17223 17224 17225 17226 17227 17228 17229 17230 17231 17232 17233 17234 17235 17236 17237 17258 17259 17260 17261 17262 17263 17264 17265 17266 17267 17268 17269 17270 17271 17272 17273 17274 17275 17276 17277 17278 17279 17280 17303 17304 17305 17306 17307 17308 17309 17310 17311 17312 17313 17314 17315 17316 17317 17318 17319 17320 17321 17322 17345 17346 17347 17348 17349 17350 17351 17352 17353 17354 17355 17356 17357 17358 17359 17360 17361 17362 17363 17385 17386 17387 17388 17389 17390 17391 17392 17393 17394 17395 17396 17397 17398 17399 17400 17401 17402 17403 17426 17427 17428 17429 17430 17431 17432 17433 17434 17435 17436 17437 17438 17439 17440 17441 17442 17465 17466 17467 17468 17469 17470 17471 17472 17473 17474 17475 17476 17477 17478 17479 17480 17503 17504 17505 17506 17507 17508 17509 17510 17511 17512 17513 17514 17515 17516 17517 17542 17543 17544 17545 17546 17547 17548 17549 17550 17551 17552 17553 17580 17581 17582 17583 17584 17585 17586 17587 17588 17616 17617 17618 17619 17620 17621 17652 17653 17654 18790 10 8433 8434 8435 8436 8437 8438 8439 8493 8494 8495 10026 10027 10030 10031 10033 10034 10035 10036 10037 10038 10039 10040 10146 10147 10204 10205 10206 10207 10259 10261 16641 16642 16643 16692 16693 16694 16695 16696 16697 16698 16747 16748 16749 16750 16751 16752 16801 16802 16803 16804 16805 16854 16855 16856 16857 16906 16907 16908 16957 18240 18295 31004 31005 31006 31058 31060 10 8433 8434 8435 8436 8437 8438 8439 8493 8494 8495 10026 10027 10030 10031 10033 10034 10035 10036 10037 10038 10039 10040 10146 10147 10204 10205 10206 10207 10259 10261 16641 16642 16643 16692 16693 16694 16695 16696 16697 16698 16747 16748 16749 16750 16751 16752 16801 16802 16803 16804 16805 16854 16855 16856 16857 16906 16907 16908 16957 18240 18295 31004 31005 31006 31058 31060 10137 10138 10139 10140 10141 10142 10143 10144 10145 10262 10313 10314 10315 10316 10366 10367 10368 10369 10370 10418 10419 10420 10421 10422 10423 10469 10470 10471 10472 10473 10474 10519 10520 10521 10522 10523 10524 10568 10569 10570 10571 10572 10573 10616 10617 10618 10619 10620 10663 10664 10665 10666 10709 16635 16636 16637 16638 16639 16640 18242 18243 18244 18245 18246 18247 18248 18249 18250 18296 18297 18298 18299 18300 18301 18302 18303 18304 18350 18351 18352 18353 18354 18355 18356 18357 18358 18402 18403 18404 18405 18406 18407 18408 18409 18410 18411 18454 18455 18456 18457 18458 18459 18460 18461 18462 18463 18505 18506 18507 18508 18509 18510 18511 18512 18555 18556 18560 18604 18652 10137 10138 10139 10140 10141 10142 10143 10144 10145 10262 10313 10314 10315 10316 10366 10367 10368 10369 10370 10418 10419 10420 10421 10422 10423 10469 10470 10471 10472 10473 10474 10519 10520 10521 10522 10523 10524 10568 10569 10570 10571 10572 10573 10616 10617 10618 10619 10620 10663 10664 10665 10666 10709 16635 16636 16637 16638 16639 16640 18242 18243 18244 18245 18246 18247 18248 18249 18250 18296 18297 18298 18299 18300 18301 18302 18303 18304 18350 18351 18352 18353 18354 18355 18356 18357 18358 18402 18403 18404 18405 18406 18407 18408 18409 18410 18411 18454 18455 18456 18457 18458 18459 18460 18461 18462 18463 18505 18506 18507 18508 18509 18510 18511 18512 18555 18556 18560 18604 18652 16613 16614 16615 16616 16617 16618 16619 16620 16621 16622 16623 16625 16628 17577 17578 17579 17611 17612 17613 17614 17615 17622 17645 17646 17647 17648 17649 17650 17651 17655 17679 17680 17681 17682 17683 17684 17685 17686 17687 17714 17716 17717 17718 17747 17748 17776 17777 17803 17804 17805 17829 17830 17831 17832 17855 17856 17857 17858 17881 17882 17883 17907 18557 18561 18562 18605 18606 18607 18608 18609 18610 18611 18612 18653 18654 18655 18656 18657 18658 18659 18660 18700 18701 18702 18703 18704 18705 18706 18707 18708 18746 18747 18748 18749 18750 18751 18752 18753 18754 18791 18792 18793 18794 18795 18796 18797 18798 18834 18835 18836 18837 18838 18839 18840 18841 18877 18878 18879 18880 18881 18882 18883 18884 18919 18920 18921 18922 18923 18924 18925 18960 18961 18962 18963 18964 18965 18966 19000 19001 19002 19003 19004 19005 19039 19040 19041 19042 19043 19044 19077 19078 19079 19080 19081 19082 19114 19115 19116 19117 19118 19119 19150 19151 19152 19153 19154 19185 19186 19187 19188 19189 19219 19220 19221 19222 19223 19252 19253 19254 19255 19284 19285 19286 19315 19316 19317 19345 19346 19374 19402 19429 16613 16614 16615 16616 16617 16618 16619 16620 16621 16622 16623 16625 16628 17577 17578 17579 17611 17612 17613 17614 17615 17622 17645 17646 17647 17648 17649 17650 17651 17655 17679 17680 17681 17682 17683 17684 17685 17686 17687 17714 17716 17717 17718 17747 17748 17776 17777 17803 17804 17805 17829 17830 17831 17832 17854 17855 17856 17857 17858 17881 17882 17883 17907 18557 18561 18562 18605 18606 18607 18608 18609 18610 18611 18612 18653 18654 18655 18656 18657 18658 18659 18660 18700 18701 18702 18703 18704 18705 18706 18707 18708 18746 18747 18748 18749 18750 18751 18752 18753 18754 18791 18792 18793 18794 18795 18796 18797 18798 18834 18835 18836 18837 18838 18839 18840 18841 18877 18878 18879 18880 18881 18882 18883 18884 18919 18920 18921 18922 18923 18924 18925 18960 18961 18962 18963 18964 18965 18966 19000 19001 19002 19003 19004 19005 19039 19040 19041 19042 19043 19044 19077 19078 19079 19080 19081 19082 19114 19115 19116 19117 19118 19119 19150 19151 19152 19153 19154 19185 19186 19187 19188 19189 19219 19220 19221 19222 19223 19252 19253 19254 19255 19284 19285 19286 19315 19316 19317 19345 19346 19374 19402 19429 11775 11776 11777 11877 11878 11879 11880 11931 11932 11933 11934 11986 11987 12038 12039 12040 12089 12090 12091 12140 12141 12142 12190 12191 12237 12238 12239 12240 12285 12286 12331 12332 12376 12377 12420 12421 14364 14365 14368 14398 14399 14400 14401 14402 14403 14431 14432 14433 14434 14435 14464 14465 14466 14496 11775 11776 11777 11877 11878 11879 11880 11931 11932 11933 11934 11986 11987 12038 12039 12040 12089 12090 12091 12140 12141 12142 12190 12191 12237 12238 12239 12240 12285 12286 12331 12332 12376 12377 12420 12421 14364 14365 14368 14398 14399 14400 14401 14402 14403 14431 14432 14433 14434 14435 14464 14465 14466 14496 11771 11772 11773 11774 11881 11882 11883 11936 11937 11938 11989 11990 11991 11992 12041 12042 12043 12044 12092 12093 12094 12095 12143 12144 12145 12146 12192 12193 12194 12195 12196 12241 12242 12243 12244 12289 12290 12291 12336 12337 12338 12382 12383 12426 12427 12469 12470 12513 12595 14371 14437 14438 14467 14468 14469 14470 14498 14499 14500 14501 14527 14528 14529 14530 14531 14557 14558 14559 14560 14586 14587 11771 11772 11773 11774 11881 11882 11883 11936 11937 11938 11989 11990 11991 11992 12041 12042 12043 12044 12092 12093 12094 12095 12143 12144 12145 12146 12192 12193 12194 12195 12196 12241 12242 12243 12244 12289 12290 12291 12336 12337 12338 12382 12383 12426 12427 12469 12470 12513 12595 14371 14437 14438 14467 14468 14469 14470 14498 14499 14500 14501 14527 14528 14529 14530 14531 14557 14558 14559 14560 14586 14587 11764 11765 11766 11767 11768 11769 11884 11885 11886 11887 11888 11889 11890 11939 11940 11941 11942 11943 11944 11945 11993 11994 11995 11996 11997 12045 12046 12047 12048 12049 12050 12097 12098 12099 12100 12101 12147 12148 12149 12150 12151 12152 12197 12198 12199 12200 12201 12245 12246 12247 12248 12292 12293 12294 12295 12296 12339 12340 12341 12384 12385 12386 12428 12429 12471 14532 14533 14561 14562 14563 14588 14589 14590 14591 14592 14615 14616 14617 14618 14619 14620 14641 14642 14643 14644 14645 14646 14667 14668 14669 14670 14671 14672 14673 14692 14693 14694 14695 14696 14697 14716 14717 14718 14719 14720 14739 14740 14741 14742 14761 14762 14763 14782 14783 11764 11765 11766 11767 11768 11769 11884 11885 11886 11887 11888 11889 11890 11939 11940 11941 11942 11943 11944 11945 11993 11994 11995 11996 11997 12045 12046 12047 12048 12049 12050 12097 12098 12099 12100 12101 12147 12148 12149 12150 12151 12152 12197 12198 12199 12200 12201 12245 12246 12247 12248 12292 12293 12294 12295 12296 12339 12340 12341 12384 12385 12386 12428 12429 12471 14532 14533 14561 14562 14563 14588 14589 14590 14591 14592 14615 14616 14617 14618 14619 14620 14641 14642 14643 14644 14645 14646 14667 14668 14669 14670 14671 14672 14673 14692 14693 14694 14695 14696 14697 14716 14717 14718 14719 14720 14739 14740 14741 14742 14761 14762 14763 14782 14783 11891 11946 11947 11999 12000 12051 12052 12053 12054 12102 12103 12104 12105 12106 12153 12154 12155 12156 12157 12202 12203 12204 12205 12206 12207 12250 12251 12252 12253 12254 12255 12256 12297 12298 12299 12300 12301 12302 12303 12304 12344 12345 12346 12347 12348 12349 12350 12351 12352 12391 12392 12393 12394 12395 12396 12397 12398 12399 12400 12436 12437 12438 12439 12440 12441 12442 12443 12444 12445 12446 12480 12481 12482 12483 12484 12485 12486 12487 12488 12489 12490 12525 12526 12527 12528 12529 12530 12531 12532 12569 12570 12571 12572 12573 12574 12610 12611 12612 12613 12614 12653 11891 11946 11947 11999 12000 12051 12052 12053 12054 12102 12103 12104 12105 12106 12153 12154 12155 12156 12157 12202 12203 12204 12205 12206 12207 12250 12251 12252 12253 12254 12255 12256 12297 12298 12299 12300 12301 12302 12303 12304 12344 12345 12346 12347 12348 12349 12350 12351 12352 12391 12392 12393 12394 12395 12396 12397 12398 12399 12400 12436 12437 12438 12439 12440 12441 12442 12443 12444 12445 12446 12480 12481 12482 12483 12484 12485 12486 12487 12488 12489 12490 12525 12526 12527 12528 12529 12530 12531 12532 12569 12570 12571 12572 12573 12574 12610 12611 12612 12613 12614 12653 11779 11780 11781 11782 11785 11786 11787 11788 11789 11790 11791 11792 11793 11862 11863 11864 11865 11866 11867 11868 11869 11870 11871 11872 11873 11874 11875 11876 11917 11918 11919 11920 11921 11922 11923 11924 11925 11926 11927 11928 11929 11930 11970 11971 11972 11973 11974 11975 11976 11977 11978 11979 11980 11981 11982 11983 11984 11985 12024 12025 12026 12027 12028 12029 12030 12031 12032 12033 12034 12035 12036 12037 12076 12077 12078 12079 12080 12081 12082 12083 12084 12085 12086 12087 12088 12128 12129 12130 12131 12132 12133 12134 12135 12136 12137 12138 12139 12178 12179 12180 12181 12182 12183 12184 12185 12186 12187 12188 12189 12228 12229 12230 12231 12232 12234 12235 12236 12282 12283 12329 12330 12374 12419 12462 12504 13667 13668 13717 13718 13767 13768 13816 13817 13818 13864 13865 13911 13912 13957 14002 11779 11780 11781 11782 11785 11786 11787 11788 11789 11790 11791 11792 11793 11862 11863 11864 11865 11866 11867 11868 11869 11870 11871 11872 11873 11874 11875 11876 11917 11918 11919 11920 11921 11922 11923 11924 11925 11926 11927 11928 11929 11930 11970 11971 11972 11973 11974 11975 11976 11977 11978 11979 11980 11981 11982 11983 11984 11985 12024 12025 12026 12027 12028 12029 12030 12031 12032 12033 12034 12035 12036 12037 12076 12077 12078 12079 12080 12081 12082 12083 12084 12085 12086 12087 12088 12128 12129 12130 12131 12132 12133 12134 12135 12136 12137 12138 12139 12178 12179 12180 12181 12182 12183 12184 12185 12186 12187 12188 12189 12228 12229 12230 12231 12232 12234 12235 12236 12282 12283 12329 12330 12374 12419 12462 12504 13667 13668 13717 13718 13767 13768 13816 13817 13818 13864 13865 13911 13912 13957 14002 23815 23816 23858 23859 23899 23900 23901 23939 23940 23941 23942 23978 23979 23980 24016 24017 24018 24019 24054 24055 24056 24057 24090 24091 24092 24126 24127 24160 24161 24193 24194 24195 24225 24226 24227 24256 24257 24258 24259 24286 24287 24288 24289 24316 24317 24318 24345 24346 24347 24372 24373 24374 24399 24400 24401 24424 24425 24426 24449 24450 24451 24472 24473 24474 24493 24494 24495 24496 24497 24514 24515 24516 24517 24518 24535 24536 24537 24538 24555 24556 24557 23815 23816 23858 23859 23899 23900 23901 23939 23940 23941 23942 23978 23979 23980 24016 24017 24018 24019 24054 24055 24056 24057 24090 24091 24092 24093 24126 24127 24128 24160 24161 24162 24193 24194 24195 24196 24225 24226 24227 24228 24256 24257 24258 24259 24286 24287 24288 24289 24290 24316 24317 24318 24319 24345 24346 24347 24348 24372 24373 24374 24375 24399 24400 24401 24424 24425 24426 24449 24450 24451 24472 24473 24474 24493 24494 24495 24496 24497 24514 24515 24516 24517 24518 24535 24536 24537 24538 24555 24556 24557 23143 23144 23145 23240 23241 23242 23243 23290 23291 23292 23293 23294 23295 23296 23297 23298 23299 23343 23344 23345 23346 23347 23348 23349 23350 23351 23352 23353 23354 23355 23356 23394 23395 23396 23397 23398 23399 23400 23401 23402 23403 23404 23405 23406 23407 23408 23409 23446 23447 23448 23449 23451 23453 23454 23455 23456 23457 23458 23459 23460 23495 23496 23497 23498 23508 23509 23510 23544 23545 23546 23547 23592 23593 23594 24786 24787 24788 24841 24895 24947 24948 24998 24999 25048 25049 25097 25144 25145 25191 25192 23143 23144 23145 23146 23240 23241 23242 23243 23290 23291 23292 23293 23294 23295 23296 23297 23298 23299 23343 23344 23345 23346 23347 23348 23349 23350 23351 23352 23353 23354 23355 23356 23394 23395 23396 23397 23398 23399 23400 23401 23402 23403 23404 23405 23406 23407 23408 23409 23446 23447 23448 23449 23451 23453 23454 23455 23456 23457 23458 23459 23460 23495 23496 23497 23498 23508 23509 23510 23544 23545 23546 23547 23592 23593 23594 24785 24786 24787 24788 24839 24840 24841 24892 24893 24894 24895 24943 24944 24945 24946 24947 24948 24994 24995 24996 24997 24998 24999 25044 25045 25046 25047 25048 25049 25093 25094 25095 25096 25097 25142 25143 25144 25145 25191 25192 19851 19852 19853 19854 19855 19856 19857 19858 21155 21177 21178 21199 21200 21220 21221 21240 21241 21260 21278 21294 21295 21311 19851 19852 19853 19854 19855 19856 19857 19858 21155 21177 21178 21199 21200 21220 21221 21240 21241 21260 21278 21294 21295 21311 20963 20964 20965 20994 20995 21022 21023 21024 21050 21051 21052 21053 21078 21079 21080 21105 21106 21130 21131 21154 20963 20964 20965 20994 20995 21022 21023 21024 21050 21051 21052 21053 21078 21079 21080 21105 21106 21130 21131 21154 10182 10183 10184 10185 10186 10187 10963 11001 11002 11037 11038 11039 11040 11074 11075 11076 11077 11107 11108 11109 11110 11111 11112 11113 11142 11143 11144 11145 11146 11147 11148 11168 11170 11172 11173 11174 11175 11176 11177 11178 11179 11180 11181 11182 11200 11201 11202 11203 11204 11205 11206 11207 11208 11209 11210 11211 11212 11213 11214 11215 11231 11232 11233 11234 11235 11236 11237 11238 11239 11240 11241 11242 11243 11244 11245 11246 11261 11262 11263 11264 11265 11266 11267 11268 11269 11270 11271 11272 11273 11274 11275 11276 11277 11292 11293 11294 11295 11296 11297 11298 11299 11300 11301 11302 11303 11304 11305 11306 11307 11321 11322 11323 11324 11325 11326 11327 11328 11329 11330 11331 11332 11333 11334 11335 11350 11351 11352 11353 11354 11355 11356 11357 11358 11359 11360 11362 11378 11379 11380 11381 11382 11383 11384 11385 11386 11404 11405 11406 11407 11408 11409 11410 11411 11430 11431 11432 11433 11434 11435 11436 11454 11455 11456 11457 11460 19926 19927 19928 19929 19930 19931 19981 19982 19983 19984 19985 19986 20035 20036 20037 20038 20039 20040 20088 20089 20090 20091 20092 20093 20094 20140 20141 20142 20143 20144 20145 20146 20147 20192 20193 20194 20195 20196 20197 20198 20246 20247 20248 20295 20296 20343 10182 10183 10184 10185 10186 10187 10963 11001 11002 11037 11038 11039 11040 11074 11075 11076 11077 11107 11108 11109 11110 11111 11112 11113 11142 11143 11144 11145 11146 11147 11148 11168 11170 11172 11173 11174 11175 11176 11177 11178 11179 11180 11181 11182 11200 11201 11202 11203 11204 11205 11206 11207 11208 11209 11210 11211 11212 11213 11214 11215 11231 11232 11233 11234 11235 11236 11237 11238 11239 11240 11241 11242 11243 11244 11245 11246 11261 11262 11263 11264 11265 11266 11267 11268 11269 11270 11271 11272 11273 11274 11275 11276 11277 11292 11293 11294 11295 11296 11297 11298 11299 11300 11301 11302 11303 11304 11305 11306 11307 11321 11322 11323 11324 11325 11326 11327 11328 11329 11330 11331 11332 11333 11334 11335 11350 11351 11352 11353 11354 11355 11356 11357 11358 11359 11360 11362 11378 11379 11380 11381 11382 11383 11384 11385 11386 11404 11405 11406 11407 11408 11409 11410 11411 11430 11431 11432 11433 11434 11435 11436 11454 11455 11456 11457 11460 19926 19927 19928 19929 19930 19931 19981 19982 19983 19984 19985 19986 20035 20036 20037 20038 20039 20040 20088 20089 20090 20091 20092 20093 20094 20140 20141 20142 20143 20144 20145 20146 20147 20192 20193 20194 20195 20196 20197 20198 20246 20247 20248 20295 20296 20343 21187 21189 21197 21198 21209 21210 21211 21212 21213 21214 21217 21218 21219 21230 21231 21232 21233 21234 21235 21236 21237 21238 21239 21250 21251 21252 21253 21254 21255 21256 21257 21258 21259 21269 21270 21271 21272 21273 21274 21275 21276 21277 21288 21289 21290 21291 21292 21293 21306 21307 21308 21309 21323 21324 21187 21189 21197 21198 21209 21210 21211 21212 21213 21214 21217 21218 21219 21230 21231 21232 21233 21234 21235 21236 21237 21238 21239 21250 21251 21252 21253 21254 21255 21256 21257 21258 21259 21269 21270 21271 21272 21273 21274 21275 21276 21277 21288 21289 21290 21291 21292 21293 21306 21307 21308 21309 21323 21324 20721 20722 20723 20724 20755 20756 20757 20758 20759 20760 20761 20790 20791 20792 20793 20794 20795 20796 20797 20822 20823 20824 20825 20826 20827 20828 20829 20830 20831 20832 20833 20855 20856 20857 20858 20859 20860 20861 20862 20863 20864 20865 20866 20867 20888 20889 20890 20891 20892 20893 20894 20895 20896 20897 20898 20899 20900 20921 20922 20923 20924 20925 20926 20927 20928 20929 20930 20931 20932 20952 20953 20954 20955 20956 20957 20958 20959 20960 20961 20962 20983 20984 20985 20986 20987 20988 20989 20990 20991 20992 21012 21013 21014 21015 21016 21018 21019 21020 21021 21047 21048 21049 21075 20721 20722 20723 20724 20755 20756 20757 20758 20759 20760 20761 20790 20791 20792 20793 20794 20795 20796 20797 20822 20823 20824 20825 20826 20827 20828 20829 20830 20831 20832 20833 20855 20856 20857 20858 20859 20860 20861 20862 20863 20864 20865 20866 20867 20888 20889 20890 20891 20892 20893 20894 20895 20896 20897 20898 20899 20900 20921 20922 20923 20924 20925 20926 20927 20928 20929 20930 20931 20932 20952 20953 20954 20955 20956 20957 20958 20959 20960 20961 20962 20983 20984 20985 20986 20987 20988 20989 20990 20991 20992 21012 21013 21014 21015 21016 21018 21019 21020 21021 21047 21048 21049 21075 20466 20467 20468 20470 20474 20475 20476 20509 20510 20511 20512 20513 20514 20516 20517 20518 20519 20520 20521 20523 20551 20552 20553 20554 20555 20556 20557 20558 20559 20560 20561 20562 20563 20564 20565 20566 20593 20594 20595 20596 20597 20598 20599 20600 20601 20602 20603 20604 20605 20606 20607 20633 20634 20635 20636 20637 20638 20639 20640 20641 20642 20643 20644 20645 20646 20647 20673 20674 20675 20676 20677 20678 20679 20680 20681 20682 20683 20684 20685 20686 20711 20712 20713 20714 20715 20716 20717 20718 20719 20720 20749 20750 20751 20752 20753 20754 20785 20786 20787 20788 20789 20466 20467 20468 20470 20474 20475 20476 20509 20510 20511 20512 20513 20514 20516 20517 20518 20519 20520 20521 20523 20551 20552 20553 20554 20555 20556 20557 20558 20559 20560 20561 20562 20563 20564 20565 20566 20593 20594 20595 20596 20597 20598 20599 20600 20601 20602 20603 20604 20605 20606 20607 20633 20634 20635 20636 20637 20638 20639 20640 20641 20642 20643 20644 20645 20646 20647 20673 20674 20675 20676 20677 20678 20679 20680 20681 20682 20683 20684 20685 20686 20711 20712 20713 20714 20715 20716 20717 20718 20719 20720 20749 20750 20751 20752 20753 20754 20785 20786 20787 20788 20789 19847 19848 19849 19850 21326 21340 21353 21365 21376 21386 21395 21402 21403 21409 19847 19848 19849 19850 21326 21340 21353 21365 21376 21386 21395 21402 21403 21409 19844 19845 19846 27696 27711 27725 27738 27750 19844 19845 19846 27696 27711 27725 27738 27750 10174 10175 10176 10177 10178 10179 10180 10181 11247 11278 11308 11336 11337 11365 11392 19917 19918 19919 19920 19921 19922 19923 19924 19925 19970 19971 19972 19973 19974 19975 19976 19977 19978 19979 19980 20022 20023 20024 20025 20026 20027 20028 20029 20030 20031 20032 20033 20034 20074 20075 20076 20077 20078 20079 20080 20081 20082 20083 20084 20085 20086 20087 20126 20127 20128 20129 20130 20131 20132 20133 20134 20135 20136 20137 20138 20139 20177 20178 20179 20180 20181 20182 20183 20184 20185 20186 20187 20188 20189 20227 20228 20229 20230 20231 20232 20233 20234 20235 20236 20237 20238 20239 20240 20241 20242 20243 20244 20245 20277 20278 20279 20280 20281 20282 20283 20284 20285 20286 20287 20288 20289 20290 20291 20292 20293 20294 20325 20326 20327 20328 20329 20330 20331 20332 20333 20334 20335 20336 20337 20338 20339 20340 20341 20342 20344 20371 20372 20373 20374 20375 20376 20377 20378 20379 20380 20381 20382 20383 20384 20385 20386 20387 20388 20389 20390 20417 20418 20419 20420 20421 20422 20423 20424 20425 20426 20427 20428 20429 20430 20431 20432 20433 20434 20435 20436 20462 20463 20464 20465 20469 20471 20472 20473 20477 20478 20479 20480 20507 20515 20522 10174 10175 10176 10177 10178 10179 10180 10181 11247 11278 11308 11336 11337 11365 11392 19917 19918 19919 19920 19921 19922 19923 19924 19925 19970 19971 19972 19973 19974 19975 19976 19977 19978 19979 19980 20022 20023 20024 20025 20026 20027 20028 20029 20030 20031 20032 20033 20034 20074 20075 20076 20077 20078 20079 20080 20081 20082 20083 20084 20085 20086 20087 20126 20127 20128 20129 20130 20131 20132 20133 20134 20135 20136 20137 20138 20139 20177 20178 20179 20180 20181 20182 20183 20184 20185 20186 20187 20188 20189 20227 20228 20229 20230 20231 20232 20233 20234 20235 20236 20237 20238 20239 20240 20241 20242 20243 20244 20245 20277 20278 20279 20280 20281 20282 20283 20284 20285 20286 20287 20288 20289 20290 20291 20292 20293 20294 20325 20326 20327 20328 20329 20330 20331 20332 20333 20334 20335 20336 20337 20338 20339 20340 20341 20342 20344 20371 20372 20373 20374 20375 20376 20377 20378 20379 20380 20381 20382 20383 20384 20385 20386 20387 20388 20389 20390 20417 20418 20419 20420 20421 20422 20423 20424 20425 20426 20427 20428 20429 20430 20431 20432 20433 20434 20435 20436 20462 20463 20464 20465 20469 20471 20472 20473 20477 20478 20479 20480 20507 20515 20522 10164 10165 10166 10167 10168 10169 10170 10171 10172 10173 11361 11363 11364 11388 11389 11390 11391 11412 11413 11414 11415 11416 11417 11418 11437 11438 11439 11440 11441 11442 11443 11458 11461 11462 11463 11464 11465 11466 11467 11479 11480 11481 11482 11483 11484 11485 11486 11487 11488 11489 11490 11499 11500 11501 11502 11503 11504 11505 11506 11507 11508 11509 11510 11511 11512 11519 11520 11521 11522 11523 11524 11525 11526 11527 11528 11529 11530 11531 11532 11533 11541 11542 11543 11544 11545 11546 11547 11548 11549 11550 11551 11552 11553 11562 11563 11564 11565 11566 11567 11568 11569 11570 11571 11572 11581 11582 11583 11584 11585 11586 11587 11588 11589 11590 11599 11600 11601 11602 11603 11604 11605 11606 11607 11616 11617 11618 11619 11620 11621 11632 11633 11634 11635 11646 11647 11648 19912 19914 19915 19916 19968 19969 10164 10165 10166 10167 10168 10169 10170 10171 10172 10173 11361 11363 11364 11388 11389 11390 11391 11412 11413 11414 11415 11416 11417 11418 11437 11438 11439 11440 11441 11442 11443 11458 11461 11462 11463 11464 11465 11466 11467 11479 11480 11481 11482 11483 11484 11485 11486 11487 11488 11489 11490 11499 11500 11501 11502 11503 11504 11505 11506 11507 11508 11509 11510 11511 11512 11519 11520 11521 11522 11523 11524 11525 11526 11527 11528 11529 11530 11531 11532 11533 11539 11540 11541 11542 11543 11544 11545 11546 11547 11548 11549 11550 11551 11552 11553 11558 11559 11560 11561 11562 11563 11564 11565 11566 11567 11568 11569 11570 11571 11572 11577 11578 11579 11580 11581 11582 11583 11584 11585 11586 11587 11588 11589 11590 11596 11597 11598 11599 11600 11601 11602 11603 11604 11605 11606 11607 11613 11614 11615 11616 11617 11618 11619 11620 11621 11630 11631 11632 11633 11634 11635 11646 11647 11648 19912 19914 19915 19916 19968 19969 10188 10189 10190 10191 10192 10193 10753 10792 10793 10794 10795 10796 10797 10833 10834 10835 10836 10837 10838 10839 10840 10874 10875 10876 10877 10878 10879 10880 10881 10882 10914 10915 10916 10917 10918 10919 10920 10921 10922 10923 10951 10952 10953 10954 10955 10956 10957 10958 10959 10960 10961 10962 10989 10990 10991 10992 10993 10994 10995 10996 10997 10998 10999 11000 11024 11025 11026 11027 11028 11029 11030 11031 11032 11033 11034 11035 11036 11061 11062 11063 11064 11065 11066 11067 11068 11069 11070 11071 11072 11094 11095 11096 11097 11098 11099 11100 11101 11102 11103 11104 11105 11106 11129 11130 11131 11132 11133 11134 11135 11136 11137 11138 11139 11140 11141 11163 11164 11165 11166 11167 11169 11171 11197 11198 11199 19932 19933 19934 19935 19936 19937 19938 19987 19988 19989 19990 19991 19992 20041 20042 20043 20044 20045 20046 20095 20096 20097 20098 20099 20148 20149 20150 20199 10188 10189 10190 10191 10192 10193 10753 10792 10793 10794 10795 10796 10797 10833 10834 10835 10836 10837 10838 10839 10840 10874 10875 10876 10877 10878 10879 10880 10881 10882 10914 10915 10916 10917 10918 10919 10920 10921 10922 10923 10951 10952 10953 10954 10955 10956 10957 10958 10959 10960 10961 10962 10989 10990 10991 10992 10993 10994 10995 10996 10997 10998 10999 11000 11024 11025 11026 11027 11028 11029 11030 11031 11032 11033 11034 11035 11036 11061 11062 11063 11064 11065 11066 11067 11068 11069 11070 11071 11072 11094 11095 11096 11097 11098 11099 11100 11101 11102 11103 11104 11105 11106 11129 11130 11131 11132 11133 11134 11135 11136 11137 11138 11139 11140 11141 11163 11164 11165 11166 11167 11169 11171 11197 11198 11199 19932 19933 19934 19935 19936 19937 19938 19987 19988 19989 19990 19991 19992 20041 20042 20043 20044 20045 20046 20095 20096 20097 20098 20099 20148 20149 20150 20199 19811 19812 19813 19814 19815 19816 19817 19818 19819 19820 19821 19822 19823 19824 21111 21132 21133 21134 21135 21136 21137 21138 21156 21157 21158 21159 21160 21161 21179 21180 21181 21182 21183 21184 21185 21201 21202 21203 21204 21205 21206 21207 21222 21223 21224 21225 21226 21227 21242 21243 21244 21245 21246 21247 21261 21262 21263 21264 21265 21279 21280 21281 21282 21296 21297 21298 21299 21312 21313 21314 21327 21328 21341 21342 21354 27902 27903 27904 27905 27906 27907 27908 27909 27910 27911 27912 27913 27914 27915 27916 27958 27959 27960 27961 27962 27963 27964 27965 27966 27967 27968 27969 27970 28012 28013 28014 28015 28016 28017 28018 28019 28020 28021 28065 28066 28067 28068 28069 28070 28071 28072 28116 28117 28118 28119 28120 28121 28122 28168 28169 28170 28171 28172 28218 28219 28220 28221 28267 19811 19812 19813 19814 19815 19816 19817 19818 19819 19820 19821 19822 19823 19824 21111 21132 21133 21134 21135 21136 21137 21138 21156 21157 21158 21159 21160 21161 21179 21180 21181 21182 21183 21184 21185 21201 21202 21203 21204 21205 21206 21207 21222 21223 21224 21225 21226 21227 21242 21243 21244 21245 21246 21247 21261 21262 21263 21264 21265 21279 21280 21281 21282 21296 21297 21298 21299 21312 21313 21314 21327 21328 21341 21342 21354 27902 27903 27904 27905 27906 27907 27908 27909 27910 27911 27912 27913 27914 27915 27916 27958 27959 27960 27961 27962 27963 27964 27965 27966 27967 27968 27969 27970 28012 28013 28014 28015 28016 28017 28018 28019 28020 28021 28065 28066 28067 28068 28069 28070 28071 28072 28116 28117 28118 28119 28120 28121 28122 28168 28169 28170 28171 28172 28218 28219 28220 28221 28267 20850 20851 20852 20882 20883 20884 20885 20886 20887 20913 20914 20915 20916 20917 20918 20919 20944 20945 20946 20947 20948 20949 20950 20951 20974 20975 20976 20977 20978 20979 20980 20981 20982 21002 21003 21004 21005 21006 21007 21008 21009 21010 21011 21030 21031 21032 21033 21034 21035 21036 21037 21038 21039 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21082 21083 21084 21085 21086 21087 21088 21089 21090 21091 21092 21108 21109 21110 21112 21113 21114 21115 21116 21117 21139 21140 21141 21142 21162 21163 21164 21165 20850 20851 20852 20882 20883 20884 20885 20886 20887 20913 20914 20915 20916 20917 20918 20919 20944 20945 20946 20947 20948 20949 20950 20951 20974 20975 20976 20977 20978 20979 20980 20981 20982 21002 21003 21004 21005 21006 21007 21008 21009 21010 21011 21030 21031 21032 21033 21034 21035 21036 21037 21038 21039 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21082 21083 21084 21085 21086 21087 21088 21089 21090 21091 21092 21108 21109 21110 21112 21113 21114 21115 21116 21117 21139 21140 21141 21142 21162 21163 21164 21165 20275 20276 20317 20318 20319 20320 20321 20322 20323 20324 20364 20365 20366 20367 20368 20369 20370 20408 20409 20410 20411 20412 20413 20414 20415 20416 20451 20452 20453 20454 20455 20456 20457 20458 20459 20460 20461 20494 20495 20496 20497 20498 20499 20500 20501 20502 20503 20504 20505 20506 20536 20537 20538 20539 20540 20541 20542 20543 20544 20545 20546 20547 20548 20549 20577 20578 20579 20580 20581 20582 20583 20584 20585 20586 20587 20588 20589 20590 20591 20617 20618 20619 20620 20621 20622 20623 20624 20625 20626 20627 20628 20629 20630 20631 20632 20657 20658 20659 20660 20661 20662 20663 20664 20665 20666 20667 20668 20669 20670 20671 20672 20696 20697 20698 20699 20700 20701 20702 20703 20704 20705 20706 20707 20708 20709 20710 20734 20735 20736 20737 20738 20739 20740 20741 20742 20743 20744 20745 20746 20747 20748 20771 20772 20773 20774 20775 20776 20777 20778 20779 20780 20781 20782 20783 20784 20807 20808 20809 20810 20811 20812 20813 20814 20815 20816 20817 20818 20819 20820 20842 20843 20844 20845 20846 20847 20848 20849 20853 20854 20876 20877 20878 20879 20880 20881 20908 20909 20910 20911 20912 20940 20941 20942 20943 20971 20972 20973 21000 21001 21029 20275 20276 20317 20318 20319 20320 20321 20322 20323 20324 20364 20365 20366 20367 20368 20369 20370 20408 20409 20410 20411 20412 20413 20414 20415 20416 20451 20452 20453 20454 20455 20456 20457 20458 20459 20460 20461 20494 20495 20496 20497 20498 20499 20500 20501 20502 20503 20504 20505 20506 20536 20537 20538 20539 20540 20541 20542 20543 20544 20545 20546 20547 20548 20549 20577 20578 20579 20580 20581 20582 20583 20584 20585 20586 20587 20588 20589 20590 20591 20617 20618 20619 20620 20621 20622 20623 20624 20625 20626 20627 20628 20629 20630 20631 20632 20657 20658 20659 20660 20661 20662 20663 20664 20665 20666 20667 20668 20669 20670 20671 20672 20696 20697 20698 20699 20700 20701 20702 20703 20704 20705 20706 20707 20708 20709 20710 20734 20735 20736 20737 20738 20739 20740 20741 20742 20743 20744 20745 20746 20747 20748 20771 20772 20773 20774 20775 20776 20777 20778 20779 20780 20781 20782 20783 20784 20807 20808 20809 20810 20811 20812 20813 20814 20815 20816 20817 20818 20819 20820 20842 20843 20844 20845 20846 20847 20848 20849 20853 20854 20876 20877 20878 20879 20880 20881 20908 20909 20910 20911 20912 20940 20941 20942 20943 20971 20972 20973 21000 21001 21029 10094 10095 10151 10152 10153 10154 10155 10156 10157 10158 10159 10160 10161 10162 10163 11622 11623 11636 11637 11638 11649 11650 11651 11652 11660 11662 11663 11664 11665 11672 11673 11674 11675 11676 11677 11683 11684 11685 11686 11687 11688 11693 11694 11695 11696 11697 11698 11703 11704 11705 11706 11707 11710 11711 11712 11713 11714 11715 11718 11719 11720 11721 11722 11724 11725 11726 11727 11728 11729 11730 11731 11732 11733 11734 11735 11736 11737 11738 11739 11740 11741 11742 19894 19895 19896 19897 19898 19899 19900 19901 19902 19903 19904 19905 19906 19907 19908 19909 19910 19911 19913 19949 19950 19951 19952 19953 19954 19955 19956 19957 19958 19959 19960 19961 19962 19963 19964 19965 19966 19967 20003 20004 20005 20006 20007 20008 20009 20010 20011 20012 20013 20014 20015 20016 20017 20018 20019 20020 20021 20055 20056 20057 20058 20059 20060 20061 20062 20063 20064 20065 20066 20067 20068 20069 20070 20071 20072 20073 20107 20108 20109 20110 20111 20112 20113 20114 20115 20116 20117 20118 20119 20120 20121 20122 20123 20124 20125 20158 20159 20160 20161 20162 20163 20164 20165 20166 20167 20168 20169 20170 20171 20172 20173 20174 20175 20176 20209 20210 20211 20212 20213 20214 20215 20216 20217 20218 20219 20220 20221 20222 20223 20224 20225 20226 20259 20260 20261 20262 20263 20264 20265 20266 20267 20268 20269 20270 20271 20272 20273 20274 20307 20308 20309 20310 20311 20312 20313 20314 20315 20316 20355 20356 20357 20358 20359 20360 20361 20362 20363 20403 20404 20405 20406 20407 20448 20449 20450 20493 20535 10094 10095 10151 10152 10153 10154 10155 10156 10157 10158 10159 10160 10161 10162 10163 11622 11623 11636 11637 11638 11649 11650 11651 11652 11660 11662 11663 11664 11665 11672 11673 11674 11675 11676 11677 11683 11684 11685 11686 11687 11688 11693 11694 11695 11696 11697 11698 11703 11704 11705 11706 11707 11710 11711 11712 11713 11714 11715 11718 11719 11720 11721 11722 11724 11725 11726 11727 11728 11729 11730 11731 11732 11733 11734 11735 11736 11737 11738 11739 11740 11741 11742 19894 19895 19896 19897 19898 19899 19900 19901 19902 19903 19904 19905 19906 19907 19908 19909 19910 19911 19913 19949 19950 19951 19952 19953 19954 19955 19956 19957 19958 19959 19960 19961 19962 19963 19964 19965 19966 19967 20003 20004 20005 20006 20007 20008 20009 20010 20011 20012 20013 20014 20015 20016 20017 20018 20019 20020 20021 20055 20056 20057 20058 20059 20060 20061 20062 20063 20064 20065 20066 20067 20068 20069 20070 20071 20072 20073 20107 20108 20109 20110 20111 20112 20113 20114 20115 20116 20117 20118 20119 20120 20121 20122 20123 20124 20125 20158 20159 20160 20161 20162 20163 20164 20165 20166 20167 20168 20169 20170 20171 20172 20173 20174 20175 20176 20209 20210 20211 20212 20213 20214 20215 20216 20217 20218 20219 20220 20221 20222 20223 20224 20225 20226 20259 20260 20261 20262 20263 20264 20265 20266 20267 20268 20269 20270 20271 20272 20273 20274 20307 20308 20309 20310 20311 20312 20313 20314 20315 20316 20355 20356 20357 20358 20359 20360 20361 20362 20363 20403 20404 20405 20406 20407 20448 20449 20450 20493 20535 19825 19826 19827 19828 19829 21208 21228 21229 21248 21266 21267 21268 21283 21284 21285 21286 21287 21300 21301 21302 21303 21304 21305 21315 21316 21317 21318 21319 21320 21321 21322 21325 21329 21330 21331 21332 21333 21334 21335 21336 21337 21338 21339 21343 21344 21345 21346 21347 21348 21349 21350 21351 21352 21355 21356 21357 21358 21359 21360 21361 21362 21363 21364 21366 21367 21368 21369 21370 21371 21372 21373 21374 21375 21377 21378 21379 21380 21381 21382 21383 21384 21385 21387 21388 21389 21390 21391 21392 21393 21394 21396 21397 21398 21399 21400 21401 21404 21405 21406 21407 21408 21411 19825 19826 19827 19828 19829 21208 21228 21229 21248 21266 21267 21268 21283 21284 21285 21286 21287 21300 21301 21302 21303 21304 21305 21315 21316 21317 21318 21319 21320 21321 21322 21325 21329 21330 21331 21332 21333 21334 21335 21336 21337 21338 21339 21343 21344 21345 21346 21347 21348 21349 21350 21351 21352 21355 21356 21357 21358 21359 21360 21361 21362 21363 21364 21366 21367 21368 21369 21370 21371 21372 21373 21374 21375 21377 21378 21379 21380 21381 21382 21383 21384 21385 21387 21388 21389 21390 21391 21392 21393 21394 21396 21397 21398 21399 21400 21401 21404 21405 21406 21407 21408 21411 20346 20347 20391 20392 20393 20437 20438 20481 20482 20483 20524 20525 20526 20567 20608 20346 20347 20391 20392 20393 20437 20438 20481 20482 20483 20524 20525 20526 20567 20608 10194 10701 10702 10703 10704 10705 10706 10707 10708 10743 10744 10745 10746 10747 10748 10749 10750 10751 10752 10785 10786 10787 10788 10789 10790 10791 10826 10827 10828 10829 10830 10831 10832 10866 10867 10868 10869 10870 10871 10872 10873 10905 10906 10907 10908 10909 10910 10911 10912 10913 10942 10943 10944 10945 10946 10947 10948 10949 10950 10979 10980 10981 10982 10983 10984 10985 10986 10987 10988 11017 11018 11019 11020 11021 11022 11023 11054 11055 11056 11057 11058 11059 11060 11090 11091 11092 11093 11127 11128 10194 10701 10702 10703 10704 10705 10706 10707 10708 10743 10744 10745 10746 10747 10748 10749 10750 10751 10752 10785 10786 10787 10788 10789 10790 10791 10826 10827 10828 10829 10830 10831 10832 10866 10867 10868 10869 10870 10871 10872 10873 10905 10906 10907 10908 10909 10910 10911 10912 10913 10942 10943 10944 10945 10946 10947 10948 10949 10950 10979 10980 10981 10982 10983 10984 10985 10986 10987 10988 11017 11018 11019 11020 11021 11022 11023 11054 11055 11056 11057 11058 11059 11060 11090 11091 11092 11093 11127 11128 19830 19831 19832 21412 21413 21414 21415 21417 21418 21419 21422 21423 21426 27919 27920 27921 27922 27973 27974 27975 27976 27977 28026 28027 28028 28029 28030 28078 28079 28080 28081 28130 28131 28132 28181 28182 28230 28231 28279 19830 19831 21412 21413 21414 21415 21417 21418 21419 21422 21423 21426 27919 27920 27921 27922 27973 27974 27975 27976 28026 28027 28028 28029 28078 28079 28080 28081 28130 28131 28132 28181 28182 28230 28231 28279 20200 20201 20249 20250 20297 20298 20299 20200 20201 20249 20250 20297 20298 20299 19780 19781 19782 19783 19784 19785 19786 19787 19788 19789 19790 19791 19792 19793 19794 19795 19796 19797 19798 19799 19800 19801 19802 19803 19804 19805 19806 19807 19808 19809 19810 19947 20001 20054 20106 20157 20207 20208 20256 20257 20258 20304 20305 20306 20351 20352 20353 20354 20397 20398 20399 20400 20401 20402 20442 20443 20444 20445 20446 20447 20486 20487 20488 20489 20490 20491 20492 20529 20530 20531 20532 20533 20534 20571 20572 20573 20574 20575 20612 20613 20614 20615 20616 20652 20653 20654 20655 20656 20691 20692 20693 20694 20695 20729 20730 20731 20732 20733 20766 20767 20768 20769 20770 20802 20803 20804 20805 20806 20837 20838 20839 20840 20841 20871 20872 20873 20874 20875 20904 20905 20906 20907 20936 20937 20938 20939 20967 20968 20969 20970 20997 20998 20999 21026 21027 21028 21054 21055 27868 27869 27872 27873 27874 27875 27876 27877 27878 27879 27880 27881 27882 27883 27884 27885 27886 27887 27888 27889 27890 27891 27892 27893 27894 27895 27896 27897 27898 27899 27900 27901 27927 27928 27929 27930 27931 27932 27933 27934 27935 27936 27937 27938 27939 27940 27941 27942 27943 27944 27945 27946 27947 27948 27949 27950 27951 27952 27953 27954 27955 27956 27957 27981 27982 27983 27984 27985 27986 27987 27988 27989 27990 27991 27992 27993 27994 27995 27996 27997 27998 27999 28000 28001 28002 28003 28004 28005 28006 28007 28008 28009 28010 28011 28034 28035 28036 28037 28038 28039 28040 28041 28042 28043 28044 28045 28046 28047 28048 28049 28050 28051 28052 28053 28054 28055 28056 28057 28058 28059 28060 28061 28062 28063 28064 28086 28087 28088 28089 28090 28091 28092 28093 28094 28095 28096 28097 28098 28099 28100 28101 28102 28103 28104 28105 28106 28107 28108 28109 28110 28111 28112 28113 28114 28115 28137 28138 28139 28140 28141 28142 28143 28144 28145 28146 28147 28148 28149 28150 28151 28152 28153 28154 28155 28156 28157 28158 28159 28160 28161 28162 28163 28164 28165 28166 28167 28187 28188 28189 28190 28191 28192 28193 28194 28195 28196 28197 28198 28199 28200 28201 28202 28203 28204 28205 28206 28207 28208 28209 28210 28211 28212 28213 28214 28215 28216 28217 28236 28237 28238 28239 28240 28241 28242 28243 28244 28245 28246 28247 28248 28249 28250 28251 28252 28253 28254 28255 28256 28257 28258 28259 28260 28261 28262 28263 28284 28285 28286 28287 28288 28289 28290 28291 28292 28293 28294 28295 28296 28297 28298 28299 28300 28301 28302 28304 28305 28331 28332 28333 28334 28335 28336 28337 28338 28339 28340 28341 28342 28343 28344 28345 28346 28378 28379 28380 28381 28382 28383 28384 28385 28386 28387 28388 28389 28390 28424 28425 28426 28427 28428 28429 28430 28431 28432 28433 28434 28468 28469 28470 28471 28472 28473 28474 28475 28476 28477 28511 28512 28513 28514 28515 28516 28517 28518 28519 28520 28555 28556 28557 28558 28559 28560 28561 28597 28598 28599 28600 28601 28637 28638 28639 28640 19780 19781 19782 19783 19784 19785 19786 19787 19788 19789 19790 19791 19792 19793 19794 19795 19796 19797 19798 19799 19800 19801 19802 19803 19804 19805 19806 19807 19808 19809 19810 19947 20001 20054 20106 20157 20207 20208 20256 20257 20258 20304 20305 20306 20351 20352 20353 20354 20397 20398 20399 20400 20401 20402 20442 20443 20444 20445 20446 20447 20486 20487 20488 20489 20490 20491 20492 20529 20530 20531 20532 20533 20534 20571 20572 20573 20574 20575 20612 20613 20614 20615 20616 20652 20653 20654 20655 20656 20691 20692 20693 20694 20695 20729 20730 20731 20732 20733 20766 20767 20768 20769 20770 20802 20803 20804 20805 20806 20837 20838 20839 20840 20841 20871 20872 20873 20874 20875 20904 20905 20906 20907 20936 20937 20938 20939 20967 20968 20969 20970 20997 20998 20999 21026 21027 21028 21054 21055 27868 27869 27872 27873 27874 27875 27876 27877 27878 27879 27880 27881 27882 27883 27884 27885 27886 27887 27888 27889 27890 27891 27892 27893 27894 27895 27896 27897 27898 27899 27900 27901 27927 27928 27929 27930 27931 27932 27933 27934 27935 27936 27937 27938 27939 27940 27941 27942 27943 27944 27945 27946 27947 27948 27949 27950 27951 27952 27953 27954 27955 27956 27957 27981 27982 27983 27984 27985 27986 27987 27988 27989 27990 27991 27992 27993 27994 27995 27996 27997 27998 27999 28000 28001 28002 28003 28004 28005 28006 28007 28008 28009 28010 28011 28034 28035 28036 28037 28038 28039 28040 28041 28042 28043 28044 28045 28046 28047 28048 28049 28050 28051 28052 28053 28054 28055 28056 28057 28058 28059 28060 28061 28062 28063 28064 28086 28087 28088 28089 28090 28091 28092 28093 28094 28095 28096 28097 28098 28099 28100 28101 28102 28103 28104 28105 28106 28107 28108 28109 28110 28111 28112 28113 28114 28115 28137 28138 28139 28140 28141 28142 28143 28144 28145 28146 28147 28148 28149 28150 28151 28152 28153 28154 28155 28156 28157 28158 28159 28160 28161 28162 28163 28164 28165 28166 28167 28187 28188 28189 28190 28191 28192 28193 28194 28195 28196 28197 28198 28199 28200 28201 28202 28203 28204 28205 28206 28207 28208 28209 28210 28211 28212 28213 28214 28215 28216 28217 28236 28237 28238 28239 28240 28241 28242 28243 28244 28245 28246 28247 28248 28249 28250 28251 28252 28253 28254 28255 28256 28257 28258 28259 28260 28261 28262 28263 28284 28285 28286 28287 28288 28289 28290 28291 28292 28293 28294 28295 28296 28297 28298 28299 28300 28301 28302 28304 28305 28331 28332 28333 28334 28335 28336 28337 28338 28339 28340 28341 28342 28343 28344 28345 28346 28378 28379 28380 28381 28382 28383 28384 28385 28386 28387 28388 28389 28390 28424 28425 28426 28427 28428 28429 28430 28431 28432 28433 28434 28468 28469 28470 28471 28472 28473 28474 28475 28476 28477 28511 28512 28513 28514 28515 28516 28517 28518 28519 28520 28555 28556 28557 28558 28559 28560 28561 28597 28598 28599 28600 28601 28637 28638 28639 28640 12233 12278 12279 12280 12281 12325 12326 12327 12328 12370 12371 12372 12373 12414 12415 12416 12417 12418 12458 12459 12460 12461 12499 12500 12501 12502 12503 12540 12541 12542 12543 12544 12545 12580 12581 12582 12583 12584 12585 12620 12621 12622 12623 12624 12658 12659 12660 12661 12662 12696 12697 12698 12699 12732 12733 12734 12735 12736 12767 12768 12769 12770 12771 12801 12802 12803 12804 12835 12836 12837 12868 12869 12233 12278 12279 12280 12281 12325 12326 12327 12328 12370 12371 12372 12373 12414 12415 12416 12417 12418 12458 12459 12460 12461 12499 12500 12501 12502 12503 12540 12541 12542 12543 12544 12545 12580 12581 12582 12583 12584 12585 12620 12621 12622 12623 12624 12658 12659 12660 12661 12662 12696 12697 12698 12699 12732 12733 12734 12735 12736 12767 12768 12769 12770 12771 12801 12802 12803 12804 12835 12836 12837 12868 12869 21514 21515 21516 21517 21518 21519 21520 21521 21522 21523 21524 21525 21526 21527 21528 21529 22279 22320 22360 22399 22400 22437 22438 22474 22475 22510 22511 22545 22546 22579 22612 22644 22675 26288 26289 26290 26291 26292 26293 26294 26295 26296 26297 26298 26299 26300 26301 26302 26303 26304 26305 26306 26307 26344 26345 26346 26347 26348 26349 26350 26351 26352 26353 26354 26355 26356 26357 26358 26359 26360 26361 26362 26363 26364 26402 26403 26404 26405 26406 26407 26408 26409 26410 26411 26412 26413 26414 26415 26416 26417 26418 26419 26460 26461 26462 26463 26464 26465 26466 26467 26468 26469 26470 21514 21515 21516 21517 21518 21519 21520 21521 21522 21523 21524 21525 21526 21527 21528 21529 22279 22320 22360 22399 22400 22437 22438 22474 22475 22510 22511 22545 22546 22579 22612 22644 22675 26288 26289 26290 26291 26292 26293 26294 26295 26296 26297 26298 26299 26300 26301 26302 26303 26304 26305 26306 26307 26344 26345 26346 26347 26348 26349 26350 26351 26352 26353 26354 26355 26356 26357 26358 26359 26360 26361 26362 26363 26364 26402 26403 26404 26405 26406 26407 26408 26409 26410 26411 26412 26413 26414 26415 26416 26417 26418 26419 26460 26461 26462 26463 26464 26465 26466 26467 26468 26469 26470 21042 21043 21044 21045 21046 21067 21068 21069 21070 21071 21072 21073 21074 21094 21095 21096 21097 21098 21099 21100 21101 21102 21103 21104 21118 21119 21120 21121 21122 21123 21124 21125 21126 21127 21128 21129 21143 21144 21145 21146 21147 21148 21149 21150 21151 21152 21153 21166 21167 21168 21169 21170 21171 21172 21173 21190 21191 21192 21193 21194 21040 21041 21042 21043 21044 21045 21046 21067 21068 21069 21070 21071 21072 21073 21074 21077 21093 21094 21095 21096 21097 21098 21099 21100 21101 21102 21103 21104 21118 21119 21120 21121 21122 21123 21124 21125 21126 21127 21128 21129 21143 21144 21145 21146 21147 21148 21149 21150 21151 21152 21153 21166 21167 21168 21169 21170 21171 21172 21173 21174 21175 21176 21190 21191 21192 21193 21194 21195 21196 21215 21216 i+·?ÿý @Œ>²?g¹@غÂ?ÃÛ @Ú¾¿?‡›×?24Ï?@Ê)@ nÁ?—¹@.2É?°æ/@®¬?÷"<@UîÅ?ü±ï?øÐ¢?nµ2@)Ÿ?¶=8@Y·?Œ)@J¦Â?Ê@¸¼?Â%@†¹?ùh!@(ݶ?‰º@ï¶?V(@‡1·?Y¹1@Š$µ?;h1@lýª?üu;@‹Øµ?C;@—«?T‹?@ö{§?€Ï5@ÀÛ¬?UÑ@ø”«?³x@²ª?³@±O¤?¨œ'@yò´?à@Vý¾?6‘@˜?À?@ ¨?âM9@~ •?†òP@k2ž?ú1D@6*¤?ÎÂ@¿ž?⨠@GΛ?qÎC@Ö —?|óQ@;ä™?šC]@Ú ?oÅB@Bôž?ä28@ã—?kSe@ ”?XÔ-@¿BŸ?(š@ZC™?.*9@­Tš?àÀ1@÷k“?ñxB@Í7©?GÖW@W+“?µ:f@šê’?[žM@"š?2$N@„š?Á)@ãðµ?Pk@Nè¡?}áD@,D—?ŠÔ@CiftiLib-1.6.0/example/data/Conte69.parcellations_VGD11b.32k_fs_LR.dlabel.nii000066400000000000000000043760201373715117300262730ustar00rootroot00000000000000n+2   Øýð?ð?ð?ð?ð?ð?ð?ðð? ¿ ConnDenseLabelÐ ParentProvenance Conte69.parcellations_VGD11b.32k_fs_LR.dlabel.nii: /home/brainmappers/workbench/fetchdir/wb_command.8836 -cifti-create-label fsaverage_LR32k/Conte69.parcellations_VGD11b.32k_fs_LR.dlabel.nii -left-label fsaverage_LR32k/Conte69.L.parcellations_VGD11b.32k_fs_LR.label.gii -right-label fsaverage_LR32k/Conte69.R.parcellations_VGD11b.32k_fs_LR.label.gii ProgramProvenance Workbench Version: Beta 0.84 Qt Compiled Version: 4.8.3 Qt Runtime Version: 4.8.3 commit: 8c4ad1f790c1b5e0e912891e37e272118613b9c6 commit date: 2014-02-28 15:32:58 -0600 Compiled Debug: YES Operating System: Linux Provenance c7c_dev -cifti-convert -version-convert Conte69.parcellations_VGD11b.32k_fs_LR.dlabel.nii 2 cifti-2_test_data/Conte69.parcellations_VGD11b.32k_fs_LR.dlabel.nii WorkingDirectory /mnt/myelin/tim/cifti2reference Composite Parcellation-lh (FRB08_OFP03_retinotopic) Brodmann lh (from colin.R via pals_R-to-fs_LR) MEDIAL WALL lh (fs_LR) 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 7940 7941 7942 7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8028 8029 8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 8077 8078 8079 8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109 8110 8111 8112 8113 8114 8115 8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233 8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260 8261 8262 8263 8264 8265 8266 8267 8268 8269 8270 8271 8272 8273 8274 8275 8276 8277 8278 8279 8280 8281 8282 8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 8345 8346 8347 8348 8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 8361 8362 8363 8364 8365 8366 8367 8368 8369 8370 8371 8372 8373 8374 8375 8376 8377 8378 8379 8380 8381 8382 8383 8384 8385 8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398 8399 8400 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 8411 8412 8413 8414 8415 8416 8417 8418 8419 8420 8421 8422 8423 8424 8425 8426 8427 8428 8429 8430 8431 8432 8433 8434 8435 8436 8437 8438 8439 8440 8441 8442 8443 8444 8445 8446 8447 8448 8449 8450 8451 8452 8453 8454 8455 8456 8457 8458 8459 8460 8461 8462 8463 8464 8465 8466 8467 8468 8469 8470 8471 8472 8473 8474 8475 8476 8477 8478 8479 8480 8481 8482 8483 8484 8485 8486 8487 8488 8489 8490 8491 8492 8493 8494 8495 8496 8497 8498 8499 8500 8501 8502 8503 8504 8505 8506 8507 8508 8509 8510 8511 8512 8513 8514 8515 8516 8517 8518 8519 8520 8521 8522 8523 8524 8525 8526 8527 8528 8529 8530 8531 8532 8533 8534 8535 8536 8537 8538 8539 8540 8541 8542 8543 8544 8545 8546 8547 8548 8549 8550 8551 8552 8553 8554 8555 8556 8557 8558 8559 8560 8561 8562 8563 8564 8565 8566 8567 8568 8569 8570 8571 8572 8573 8574 8575 8576 8577 8578 8579 8580 8581 8582 8583 8584 8585 8586 8587 8588 8589 8590 8591 8592 8593 8594 8595 8596 8597 8598 8599 8600 8601 8602 8603 8604 8605 8606 8607 8608 8609 8610 8611 8612 8613 8614 8615 8616 8617 8618 8619 8620 8621 8622 8623 8624 8625 8626 8627 8628 8629 8630 8631 8632 8633 8634 8635 8636 8637 8638 8639 8640 8641 8642 8643 8644 8645 8646 8647 8648 8649 8650 8651 8652 8653 8654 8655 8656 8657 8658 8659 8660 8661 8662 8663 8664 8665 8666 8667 8668 8669 8670 8671 8672 8673 8674 8675 8676 8677 8678 8679 8680 8681 8682 8683 8684 8685 8686 8687 8688 8689 8690 8691 8692 8693 8694 8695 8696 8697 8698 8699 8700 8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 8732 8733 8734 8735 8736 8737 8738 8739 8740 8741 8742 8743 8744 8745 8746 8747 8748 8749 8750 8751 8752 8753 8754 8755 8756 8757 8758 8759 8760 8761 8762 8763 8764 8765 8766 8767 8768 8769 8770 8771 8772 8773 8774 8775 8776 8777 8778 8779 8780 8781 8782 8783 8784 8785 8786 8787 8788 8789 8790 8791 8792 8793 8794 8795 8796 8797 8798 8799 8800 8801 8802 8803 8804 8805 8806 8807 8808 8809 8810 8811 8812 8813 8814 8815 8816 8817 8818 8819 8820 8821 8822 8823 8824 8825 8826 8827 8828 8829 8830 8831 8832 8833 8834 8835 8836 8837 8838 8839 8840 8841 8842 8843 8844 8845 8846 8847 8848 8849 8850 8851 8852 8853 8854 8855 8856 8857 8858 8859 8860 8861 8862 8863 8864 8865 8866 8867 8868 8869 8870 8871 8872 8873 8874 8875 8876 8877 8878 8879 8880 8881 8882 8883 8884 8885 8886 8887 8888 8889 8890 8891 8892 8893 8894 8895 8896 8897 8898 8899 8900 8901 8902 8903 8904 8905 8906 8907 8908 8909 8910 8911 8912 8913 8914 8915 8916 8917 8918 8919 8920 8921 8922 8923 8924 8925 8926 8927 8928 8929 8930 8931 8932 8933 8934 8935 8936 8937 8938 8939 8940 8941 8942 8943 8944 8945 8946 8947 8948 8949 8950 8951 8952 8953 8954 8955 8956 8957 8958 8959 8960 8961 8962 8963 8964 8965 8966 8967 8968 8969 8970 8971 8972 8973 8974 8975 8976 8977 8978 8979 8980 8981 8982 8983 8984 8985 8986 8987 8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 9015 9016 9017 9018 9019 9020 9021 9022 9023 9024 9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 9052 9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 9100 9101 9102 9103 9104 9105 9106 9107 9108 9109 9110 9111 9112 9113 9114 9115 9116 9117 9118 9119 9120 9121 9122 9123 9124 9125 9126 9127 9128 9129 9130 9131 9132 9133 9134 9135 9136 9137 9138 9139 9140 9141 9142 9143 9144 9145 9146 9147 9148 9149 9150 9151 9152 9153 9154 9155 9156 9157 9158 9159 9160 9161 9162 9163 9164 9165 9166 9167 9168 9169 9170 9171 9172 9173 9174 9175 9176 9177 9178 9179 9180 9181 9182 9183 9184 9185 9186 9187 9188 9189 9190 9191 9192 9193 9194 9195 9196 9197 9198 9199 9200 9201 9202 9203 9204 9205 9206 9207 9208 9209 9210 9211 9212 9213 9214 9215 9216 9217 9218 9219 9220 9221 9222 9223 9224 9225 9226 9227 9228 9229 9230 9231 9232 9233 9234 9235 9236 9237 9238 9239 9240 9241 9242 9243 9244 9245 9246 9247 9248 9249 9250 9251 9252 9253 9254 9255 9256 9257 9258 9259 9260 9261 9262 9263 9264 9265 9266 9267 9268 9269 9270 9271 9272 9273 9274 9275 9276 9277 9278 9279 9280 9281 9282 9283 9284 9285 9286 9287 9288 9289 9290 9291 9292 9293 9294 9295 9296 9297 9298 9299 9300 9301 9302 9303 9304 9305 9306 9307 9308 9309 9310 9311 9312 9313 9314 9315 9316 9317 9318 9319 9320 9321 9322 9323 9324 9325 9326 9327 9328 9329 9330 9331 9332 9333 9334 9335 9336 9337 9338 9339 9340 9341 9342 9343 9344 9345 9346 9347 9348 9349 9350 9351 9352 9353 9354 9355 9356 9357 9358 9359 9360 9361 9362 9363 9364 9365 9366 9367 9368 9369 9370 9371 9372 9373 9374 9375 9376 9377 9378 9379 9380 9381 9382 9383 9384 9385 9386 9387 9388 9389 9390 9391 9392 9393 9394 9395 9396 9397 9398 9399 9400 9401 9402 9403 9404 9405 9406 9407 9408 9409 9410 9411 9412 9413 9414 9415 9416 9417 9418 9419 9420 9421 9422 9423 9424 9425 9426 9427 9428 9429 9430 9431 9432 9433 9434 9435 9436 9437 9438 9439 9440 9441 9442 9443 9444 9445 9446 9447 9448 9449 9450 9451 9452 9453 9454 9455 9456 9457 9458 9459 9460 9461 9462 9463 9464 9465 9466 9467 9468 9469 9470 9471 9472 9473 9474 9475 9476 9477 9478 9479 9480 9481 9482 9483 9484 9485 9486 9487 9488 9489 9490 9491 9492 9493 9494 9495 9496 9497 9498 9499 9500 9501 9502 9503 9504 9505 9506 9507 9508 9509 9510 9511 9512 9513 9514 9515 9516 9517 9518 9519 9520 9521 9522 9523 9524 9525 9526 9527 9528 9529 9530 9531 9532 9533 9534 9535 9536 9537 9538 9539 9540 9541 9542 9543 9544 9545 9546 9547 9548 9549 9550 9551 9552 9553 9554 9555 9556 9557 9558 9559 9560 9561 9562 9563 9564 9565 9566 9567 9568 9569 9570 9571 9572 9573 9574 9575 9576 9577 9578 9579 9580 9581 9582 9583 9584 9585 9586 9587 9588 9589 9590 9591 9592 9593 9594 9595 9596 9597 9598 9599 9600 9601 9602 9603 9604 9605 9606 9607 9608 9609 9610 9611 9612 9613 9614 9615 9616 9617 9618 9619 9620 9621 9622 9623 9624 9625 9626 9627 9628 9629 9630 9631 9632 9633 9634 9635 9636 9637 9638 9639 9640 9641 9642 9643 9644 9645 9646 9647 9648 9649 9650 9651 9652 9653 9654 9655 9656 9657 9658 9659 9660 9661 9662 9663 9664 9665 9666 9667 9668 9669 9670 9671 9672 9673 9674 9675 9676 9677 9678 9679 9680 9681 9682 9683 9684 9685 9686 9687 9688 9689 9690 9691 9692 9693 9694 9695 9696 9697 9698 9699 9700 9701 9702 9703 9704 9705 9706 9707 9708 9709 9710 9711 9712 9713 9714 9715 9716 9717 9718 9719 9720 9721 9722 9723 9724 9725 9726 9727 9728 9729 9730 9731 9732 9733 9734 9735 9736 9737 9738 9739 9740 9741 9742 9743 9744 9745 9746 9747 9748 9749 9750 9751 9752 9753 9754 9755 9756 9757 9758 9759 9760 9761 9762 9763 9764 9765 9766 9767 9768 9769 9770 9771 9772 9773 9774 9775 9776 9777 9778 9779 9780 9781 9782 9783 9784 9785 9786 9787 9788 9789 9790 9791 9792 9793 9794 9795 9796 9797 9798 9799 9800 9801 9802 9803 9804 9805 9806 9807 9808 9809 9810 9811 9812 9813 9814 9815 9816 9817 9818 9819 9820 9821 9822 9823 9824 9825 9826 9827 9828 9829 9830 9831 9832 9833 9834 9835 9836 9837 9838 9839 9840 9841 9842 9843 9844 9845 9846 9847 9848 9849 9850 9851 9852 9853 9854 9855 9856 9857 9858 9859 9860 9861 9862 9863 9864 9865 9866 9867 9868 9869 9870 9871 9872 9873 9874 9875 9876 9877 9878 9879 9880 9881 9882 9883 9884 9885 9886 9887 9888 9889 9890 9891 9892 9893 9894 9895 9896 9897 9898 9899 9900 9901 9902 9903 9904 9905 9906 9907 9908 9909 9910 9911 9912 9913 9914 9915 9916 9917 9918 9919 9920 9921 9922 9923 9924 9925 9926 9927 9928 9929 9930 9931 9932 9933 9934 9935 9936 9937 9938 9939 9940 9941 9942 9943 9944 9945 9946 9947 9948 9949 9950 9951 9952 9953 9954 9955 9956 9957 9958 9959 9960 9961 9962 9963 9964 9965 9966 9967 9968 9969 9970 9971 9972 9973 9974 9975 9976 9977 9978 9979 9980 9981 9982 9983 9984 9985 9986 9987 9988 9989 9990 9991 9992 9993 9994 9995 9996 9997 9998 9999 10000 10001 10002 10003 10004 10005 10006 10007 10008 10009 10010 10011 10012 10013 10014 10015 10016 10017 10018 10019 10020 10021 10022 10023 10024 10025 10026 10027 10028 10029 10030 10031 10032 10033 10034 10035 10036 10037 10038 10039 10040 10041 10042 10043 10044 10045 10046 10047 10048 10049 10050 10051 10052 10053 10054 10055 10056 10057 10058 10059 10060 10061 10062 10063 10064 10065 10066 10067 10068 10069 10070 10071 10072 10073 10074 10075 10076 10077 10078 10079 10080 10081 10082 10083 10084 10085 10086 10087 10088 10089 10090 10091 10092 10093 10094 10095 10096 10097 10098 10099 10100 10101 10102 10103 10104 10105 10106 10107 10108 10109 10110 10111 10112 10113 10114 10115 10116 10117 10118 10119 10120 10121 10122 10123 10124 10125 10126 10127 10128 10129 10130 10131 10132 10133 10134 10135 10136 10137 10138 10139 10140 10141 10142 10143 10144 10145 10146 10147 10148 10149 10150 10151 10152 10153 10154 10155 10156 10157 10158 10159 10160 10161 10162 10163 10164 10165 10166 10167 10168 10169 10170 10171 10172 10173 10174 10175 10176 10177 10178 10179 10180 10181 10182 10183 10184 10185 10186 10187 10188 10189 10190 10191 10192 10193 10194 10195 10196 10197 10198 10199 10200 10201 10202 10203 10204 10205 10206 10207 10208 10209 10210 10211 10212 10213 10214 10215 10216 10217 10218 10219 10220 10221 10222 10223 10224 10225 10226 10227 10228 10229 10230 10231 10232 10233 10234 10235 10236 10237 10238 10239 10240 10241 10242 10243 10244 10245 10246 10247 10248 10249 10250 10251 10252 10253 10254 10255 10256 10257 10258 10259 10260 10261 10262 10263 10264 10265 10266 10267 10268 10269 10270 10271 10272 10273 10274 10275 10276 10277 10278 10279 10280 10281 10282 10283 10284 10285 10286 10287 10288 10289 10290 10291 10292 10293 10294 10295 10296 10297 10298 10299 10300 10301 10302 10303 10304 10305 10306 10307 10308 10309 10310 10311 10312 10313 10314 10315 10316 10317 10318 10319 10320 10321 10322 10323 10324 10325 10326 10327 10328 10329 10330 10331 10332 10333 10334 10335 10336 10337 10338 10339 10340 10341 10342 10343 10344 10345 10346 10347 10348 10349 10350 10351 10352 10353 10354 10355 10356 10357 10358 10359 10360 10361 10362 10363 10364 10365 10366 10367 10368 10369 10370 10371 10372 10373 10374 10375 10376 10377 10378 10379 10380 10381 10382 10383 10384 10385 10386 10387 10388 10389 10390 10391 10392 10393 10394 10395 10396 10397 10398 10399 10400 10401 10402 10403 10404 10405 10406 10407 10408 10409 10410 10411 10412 10413 10414 10415 10416 10417 10418 10419 10420 10421 10422 10423 10424 10425 10426 10427 10428 10429 10430 10431 10432 10433 10434 10435 10436 10437 10438 10439 10440 10441 10442 10443 10444 10445 10446 10447 10448 10449 10450 10451 10452 10453 10454 10455 10456 10457 10458 10459 10460 10461 10462 10463 10464 10465 10466 10467 10468 10469 10470 10471 10472 10473 10474 10475 10476 10477 10478 10479 10480 10481 10482 10483 10484 10485 10486 10487 10488 10489 10490 10491 10492 10493 10494 10495 10496 10497 10498 10499 10500 10501 10502 10503 10504 10505 10506 10507 10508 10509 10510 10511 10512 10513 10514 10515 10516 10517 10518 10519 10520 10521 10522 10523 10524 10525 10526 10527 10528 10529 10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 10548 10549 10550 10551 10552 10553 10554 10555 10556 10557 10558 10559 10560 10561 10562 10563 10564 10565 10566 10567 10568 10569 10570 10571 10572 10573 10574 10575 10576 10577 10578 10579 10580 10581 10582 10583 10584 10585 10586 10587 10588 10589 10590 10591 10592 10593 10594 10595 10596 10597 10598 10599 10600 10601 10602 10603 10604 10605 10606 10607 10608 10609 10610 10611 10612 10613 10614 10615 10616 10617 10618 10619 10620 10621 10622 10623 10624 10625 10626 10627 10628 10629 10630 10631 10632 10633 10634 10635 10636 10637 10638 10639 10640 10641 10642 10643 10644 10645 10646 10647 10648 10649 10650 10651 10652 10653 10654 10655 10656 10657 10658 10659 10660 10661 10662 10663 10664 10665 10666 10667 10668 10669 10670 10671 10672 10673 10674 10675 10676 10677 10678 10679 10680 10681 10682 10683 10684 10685 10686 10687 10688 10689 10690 10691 10692 10693 10694 10695 10696 10697 10698 10699 10700 10701 10702 10703 10704 10705 10706 10707 10708 10709 10710 10711 10712 10713 10714 10715 10716 10717 10718 10719 10720 10721 10722 10723 10724 10725 10726 10727 10728 10729 10730 10731 10732 10733 10734 10735 10736 10737 10738 10739 10740 10741 10742 10743 10744 10745 10746 10747 10748 10749 10750 10751 10752 10753 10754 10755 10756 10757 10758 10759 10760 10761 10762 10763 10764 10765 10766 10767 10768 10769 10770 10771 10772 10773 10774 10775 10776 10777 10778 10779 10780 10781 10782 10783 10784 10785 10786 10787 10788 10789 10790 10791 10792 10793 10794 10795 10796 10797 10798 10799 10800 10801 10802 10803 10804 10805 10806 10807 10808 10809 10810 10811 10812 10813 10814 10815 10816 10817 10818 10819 10820 10821 10822 10823 10824 10825 10826 10827 10828 10829 10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 10879 10880 10881 10882 10883 10884 10885 10886 10887 10888 10889 10890 10891 10892 10893 10894 10895 10896 10897 10898 10899 10900 10901 10902 10903 10904 10905 10906 10907 10908 10909 10910 10911 10912 10913 10914 10915 10916 10917 10918 10919 10920 10921 10922 10923 10924 10925 10926 10927 10928 10929 10930 10931 10932 10933 10934 10935 10936 10937 10938 10939 10940 10941 10942 10943 10944 10945 10946 10947 10948 10949 10950 10951 10952 10953 10954 10955 10956 10957 10958 10959 10960 10961 10962 10963 10964 10965 10966 10967 10968 10969 10970 10971 10972 10973 10974 10975 10976 10977 10978 10979 10980 10981 10982 10983 10984 10985 10986 10987 10988 10989 10990 10991 10992 10993 10994 10995 10996 10997 10998 10999 11000 11001 11002 11003 11004 11005 11006 11007 11008 11009 11010 11011 11012 11013 11014 11015 11016 11017 11018 11019 11020 11021 11022 11023 11024 11025 11026 11027 11028 11029 11030 11031 11032 11033 11034 11035 11036 11037 11038 11039 11040 11041 11042 11043 11044 11045 11046 11047 11048 11049 11050 11051 11052 11053 11054 11055 11056 11057 11058 11059 11060 11061 11062 11063 11064 11065 11066 11067 11068 11069 11070 11071 11072 11073 11074 11075 11076 11077 11078 11079 11080 11081 11082 11083 11084 11085 11086 11087 11088 11089 11090 11091 11092 11093 11094 11095 11096 11097 11098 11099 11100 11101 11102 11103 11104 11105 11106 11107 11108 11109 11110 11111 11112 11113 11114 11115 11116 11117 11118 11119 11120 11121 11122 11123 11124 11125 11126 11127 11128 11129 11130 11131 11132 11133 11134 11135 11136 11137 11138 11139 11140 11141 11142 11143 11144 11145 11146 11147 11148 11149 11150 11151 11152 11153 11154 11155 11156 11157 11158 11159 11160 11161 11162 11163 11164 11165 11166 11167 11168 11169 11170 11171 11172 11173 11174 11175 11176 11177 11178 11179 11180 11181 11182 11183 11184 11185 11186 11187 11188 11189 11190 11191 11192 11193 11194 11195 11196 11197 11198 11199 11200 11201 11202 11203 11204 11205 11206 11207 11208 11209 11210 11211 11212 11213 11214 11215 11216 11217 11218 11219 11220 11221 11222 11223 11224 11225 11226 11227 11228 11229 11230 11231 11232 11233 11234 11235 11236 11237 11238 11239 11240 11241 11242 11243 11244 11245 11246 11247 11248 11249 11250 11251 11252 11253 11254 11255 11256 11257 11258 11259 11260 11261 11262 11263 11264 11265 11266 11267 11268 11269 11270 11271 11272 11273 11274 11275 11276 11277 11278 11279 11280 11281 11282 11283 11284 11285 11286 11287 11288 11289 11290 11291 11292 11293 11294 11295 11296 11297 11298 11299 11300 11301 11302 11303 11304 11305 11306 11307 11308 11309 11310 11311 11312 11313 11314 11315 11316 11317 11318 11319 11320 11321 11322 11323 11324 11325 11326 11327 11328 11329 11330 11331 11332 11333 11334 11335 11336 11337 11338 11339 11340 11341 11342 11343 11344 11345 11346 11347 11348 11349 11350 11351 11352 11353 11354 11355 11356 11357 11358 11359 11360 11361 11362 11363 11364 11365 11366 11367 11368 11369 11370 11371 11372 11373 11374 11375 11376 11377 11378 11379 11380 11381 11382 11383 11384 11385 11386 11387 11388 11389 11390 11391 11392 11393 11394 11395 11396 11397 11398 11399 11400 11401 11402 11403 11404 11405 11406 11407 11408 11409 11410 11411 11412 11413 11414 11415 11416 11417 11418 11419 11420 11421 11422 11423 11424 11425 11426 11427 11428 11429 11430 11431 11432 11433 11434 11435 11436 11437 11438 11439 11440 11441 11442 11443 11444 11445 11446 11447 11448 11449 11450 11451 11452 11453 11454 11455 11456 11457 11458 11459 11460 11461 11462 11463 11464 11465 11466 11467 11468 11469 11470 11471 11472 11473 11474 11475 11476 11477 11478 11479 11480 11481 11482 11483 11484 11485 11486 11487 11488 11489 11490 11491 11492 11493 11494 11495 11496 11497 11498 11499 11500 11501 11502 11503 11504 11505 11506 11507 11508 11509 11510 11511 11512 11513 11514 11515 11516 11517 11518 11519 11520 11521 11522 11523 11524 11525 11526 11527 11528 11529 11530 11531 11532 11533 11534 11535 11536 11537 11538 11539 11540 11541 11542 11543 11544 11545 11546 11547 11548 11549 11550 11551 11552 11553 11554 11555 11556 11557 11558 11559 11560 11561 11562 11563 11564 11565 11566 11567 11568 11569 11570 11571 11572 11573 11574 11575 11576 11577 11578 11579 11580 11581 11582 11583 11584 11585 11586 11587 11588 11589 11590 11591 11592 11593 11594 11595 11596 11597 11598 11599 11600 11601 11602 11603 11604 11605 11606 11607 11608 11609 11610 11611 11612 11613 11614 11615 11616 11617 11618 11619 11620 11621 11622 11623 11624 11625 11626 11627 11628 11629 11630 11631 11632 11633 11634 11635 11636 11637 11638 11639 11640 11641 11642 11643 11644 11645 11646 11647 11648 11649 11650 11651 11652 11653 11654 11655 11656 11657 11658 11659 11660 11661 11662 11663 11664 11665 11666 11667 11668 11669 11670 11671 11672 11673 11674 11675 11676 11677 11678 11679 11680 11681 11682 11683 11684 11685 11686 11687 11688 11689 11690 11691 11692 11693 11694 11695 11696 11697 11698 11699 11700 11701 11702 11703 11704 11705 11706 11707 11708 11709 11710 11711 11712 11713 11714 11715 11716 11717 11718 11719 11720 11721 11722 11723 11724 11725 11726 11727 11728 11729 11730 11731 11732 11733 11734 11735 11736 11737 11738 11739 11740 11741 11742 11743 11744 11745 11746 11747 11748 11749 11750 11751 11752 11753 11754 11755 11756 11757 11758 11759 11760 11761 11762 11763 11764 11765 11766 11767 11768 11769 11770 11771 11772 11773 11774 11775 11776 11777 11778 11779 11780 11781 11782 11783 11784 11785 11786 11787 11788 11789 11790 11791 11792 11793 11794 11795 11796 11797 11798 11799 11800 11801 11802 11803 11804 11805 11806 11807 11808 11809 11810 11811 11812 11813 11814 11815 11816 11817 11818 11819 11820 11821 11822 11823 11824 11825 11826 11827 11828 11829 11830 11831 11832 11833 11834 11835 11836 11837 11838 11839 11840 11841 11842 11843 11844 11845 11846 11847 11848 11849 11850 11851 11852 11853 11854 11855 11856 11857 11858 11859 11860 11861 11862 11863 11864 11865 11866 11867 11868 11869 11870 11871 11872 11873 11874 11875 11876 11877 11878 11879 11880 11881 11882 11883 11884 11885 11886 11887 11888 11889 11890 11891 11892 11893 11894 11895 11896 11897 11898 11899 11900 11901 11902 11903 11904 11905 11906 11907 11908 11909 11910 11911 11912 11913 11914 11915 11916 11917 11918 11919 11920 11921 11922 11923 11924 11925 11926 11927 11928 11929 11930 11931 11932 11933 11934 11935 11936 11937 11938 11939 11940 11941 11942 11943 11944 11945 11946 11947 11948 11949 11950 11951 11952 11953 11954 11955 11956 11957 11958 11959 11960 11961 11962 11963 11964 11965 11966 11967 11968 11969 11970 11971 11972 11973 11974 11975 11976 11977 11978 11979 11980 11981 11982 11983 11984 11985 11986 11987 11988 11989 11990 11991 11992 11993 11994 11995 11996 11997 11998 11999 12000 12001 12002 12003 12004 12005 12006 12007 12008 12009 12010 12011 12012 12013 12014 12015 12016 12017 12018 12019 12020 12021 12022 12023 12024 12025 12026 12027 12028 12029 12030 12031 12032 12033 12034 12035 12036 12037 12038 12039 12040 12041 12042 12043 12044 12045 12046 12047 12048 12049 12050 12051 12052 12053 12054 12055 12056 12057 12058 12059 12060 12061 12062 12063 12064 12065 12066 12067 12068 12069 12070 12071 12072 12073 12074 12075 12076 12077 12078 12079 12080 12081 12082 12083 12084 12085 12086 12087 12088 12089 12090 12091 12092 12093 12094 12095 12096 12097 12098 12099 12100 12101 12102 12103 12104 12105 12106 12107 12108 12109 12110 12111 12112 12113 12114 12115 12116 12117 12118 12119 12120 12121 12122 12123 12124 12125 12126 12127 12128 12129 12130 12131 12132 12133 12134 12135 12136 12137 12138 12139 12140 12141 12142 12143 12144 12145 12146 12147 12148 12149 12150 12151 12152 12153 12154 12155 12156 12157 12158 12159 12160 12161 12162 12163 12164 12165 12166 12167 12168 12169 12170 12171 12172 12173 12174 12175 12176 12177 12178 12179 12180 12181 12182 12183 12184 12185 12186 12187 12188 12189 12190 12191 12192 12193 12194 12195 12196 12197 12198 12199 12200 12201 12202 12203 12204 12205 12206 12207 12208 12209 12210 12211 12212 12213 12214 12215 12216 12217 12218 12219 12220 12221 12222 12223 12224 12225 12226 12227 12228 12229 12230 12231 12232 12233 12234 12235 12236 12237 12238 12239 12240 12241 12242 12243 12244 12245 12246 12247 12248 12249 12250 12251 12252 12253 12254 12255 12256 12257 12258 12259 12260 12261 12262 12263 12264 12265 12266 12267 12268 12269 12270 12271 12272 12273 12274 12275 12276 12277 12278 12279 12280 12281 12282 12283 12284 12285 12286 12287 12288 12289 12290 12291 12292 12293 12294 12295 12296 12297 12298 12299 12300 12301 12302 12303 12304 12305 12306 12307 12308 12309 12310 12311 12312 12313 12314 12315 12316 12317 12318 12319 12320 12321 12322 12323 12324 12325 12326 12327 12328 12329 12330 12331 12332 12333 12334 12335 12336 12337 12338 12339 12340 12341 12342 12343 12344 12345 12346 12347 12348 12349 12350 12351 12352 12353 12354 12355 12356 12357 12358 12359 12360 12361 12362 12363 12364 12365 12366 12367 12368 12369 12370 12371 12372 12373 12374 12375 12376 12377 12378 12379 12380 12381 12382 12383 12384 12385 12386 12387 12388 12389 12390 12391 12392 12393 12394 12395 12396 12397 12398 12399 12400 12401 12402 12403 12404 12405 12406 12407 12408 12409 12410 12411 12412 12413 12414 12415 12416 12417 12418 12419 12420 12421 12422 12423 12424 12425 12426 12427 12428 12429 12430 12431 12432 12433 12434 12435 12436 12437 12438 12439 12440 12441 12442 12443 12444 12445 12446 12447 12448 12449 12450 12451 12452 12453 12454 12455 12456 12457 12458 12459 12460 12461 12462 12463 12464 12465 12466 12467 12468 12469 12470 12471 12472 12473 12474 12475 12476 12477 12478 12479 12480 12481 12482 12483 12484 12485 12486 12487 12488 12489 12490 12491 12492 12493 12494 12495 12496 12497 12498 12499 12500 12501 12502 12503 12504 12505 12506 12507 12508 12509 12510 12511 12512 12513 12514 12515 12516 12517 12518 12519 12520 12521 12522 12523 12524 12525 12526 12527 12528 12529 12530 12531 12532 12533 12534 12535 12536 12537 12538 12539 12540 12541 12542 12543 12544 12545 12546 12547 12548 12549 12550 12551 12552 12553 12554 12555 12556 12557 12558 12559 12560 12561 12562 12563 12564 12565 12566 12567 12568 12569 12570 12571 12572 12573 12574 12575 12576 12577 12578 12579 12580 12581 12582 12583 12584 12585 12586 12587 12588 12589 12590 12591 12592 12593 12594 12595 12596 12597 12598 12599 12600 12601 12602 12603 12604 12605 12606 12607 12608 12609 12610 12611 12612 12613 12614 12615 12616 12617 12618 12619 12620 12621 12622 12623 12624 12625 12626 12627 12628 12629 12630 12631 12632 12633 12634 12635 12636 12637 12638 12639 12640 12641 12642 12643 12644 12645 12646 12647 12648 12649 12650 12651 12652 12653 12654 12655 12656 12657 12658 12659 12660 12661 12662 12663 12664 12665 12666 12667 12668 12669 12670 12671 12672 12673 12674 12675 12676 12677 12678 12679 12680 12681 12682 12683 12684 12685 12686 12687 12688 12689 12690 12691 12692 12693 12694 12695 12696 12697 12698 12699 12700 12701 12702 12703 12704 12705 12706 12707 12708 12709 12710 12711 12712 12713 12714 12715 12716 12717 12718 12719 12720 12721 12722 12723 12724 12725 12726 12727 12728 12729 12730 12731 12732 12733 12734 12735 12736 12737 12738 12739 12740 12741 12742 12743 12744 12745 12746 12747 12748 12749 12750 12751 12752 12753 12754 12755 12756 12757 12758 12759 12760 12761 12762 12763 12764 12765 12766 12767 12768 12769 12770 12771 12772 12773 12774 12775 12776 12777 12778 12779 12780 12781 12782 12783 12784 12785 12786 12787 12788 12789 12790 12791 12792 12793 12794 12795 12796 12797 12798 12799 12800 12801 12802 12803 12804 12805 12806 12807 12808 12809 12810 12811 12812 12813 12814 12815 12816 12817 12818 12819 12820 12821 12822 12823 12824 12825 12826 12827 12828 12829 12830 12831 12832 12833 12834 12835 12836 12837 12838 12839 12840 12841 12842 12843 12844 12845 12846 12847 12848 12849 12850 12851 12852 12853 12854 12855 12856 12857 12858 12859 12860 12861 12862 12863 12864 12865 12866 12867 12868 12869 12870 12871 12872 12873 12874 12875 12876 12877 12878 12879 12880 12881 12882 12883 12884 12885 12886 12887 12888 12889 12890 12891 12892 12893 12894 12895 12896 12897 12898 12899 12900 12901 12902 12903 12904 12905 12906 12907 12908 12909 12910 12911 12912 12913 12914 12915 12916 12917 12918 12919 12920 12921 12922 12923 12924 12925 12926 12927 12928 12929 12930 12931 12932 12933 12934 12935 12936 12937 12938 12939 12940 12941 12942 12943 12944 12945 12946 12947 12948 12949 12950 12951 12952 12953 12954 12955 12956 12957 12958 12959 12960 12961 12962 12963 12964 12965 12966 12967 12968 12969 12970 12971 12972 12973 12974 12975 12976 12977 12978 12979 12980 12981 12982 12983 12984 12985 12986 12987 12988 12989 12990 12991 12992 12993 12994 12995 12996 12997 12998 12999 13000 13001 13002 13003 13004 13005 13006 13007 13008 13009 13010 13011 13012 13013 13014 13015 13016 13017 13018 13019 13020 13021 13022 13023 13024 13025 13026 13027 13028 13029 13030 13031 13032 13033 13034 13035 13036 13037 13038 13039 13040 13041 13042 13043 13044 13045 13046 13047 13048 13049 13050 13051 13052 13053 13054 13055 13056 13057 13058 13059 13060 13061 13062 13063 13064 13065 13066 13067 13068 13069 13070 13071 13072 13073 13074 13075 13076 13077 13078 13079 13080 13081 13082 13083 13084 13085 13086 13087 13088 13089 13090 13091 13092 13093 13094 13095 13096 13097 13098 13099 13100 13101 13102 13103 13104 13105 13106 13107 13108 13109 13110 13111 13112 13113 13114 13115 13116 13117 13118 13119 13120 13121 13122 13123 13124 13125 13126 13127 13128 13129 13130 13131 13132 13133 13134 13135 13136 13137 13138 13139 13140 13141 13142 13143 13144 13145 13146 13147 13148 13149 13150 13151 13152 13153 13154 13155 13156 13157 13158 13159 13160 13161 13162 13163 13164 13165 13166 13167 13168 13169 13170 13171 13172 13173 13174 13175 13176 13177 13178 13179 13180 13181 13182 13183 13184 13185 13186 13187 13188 13189 13190 13191 13192 13193 13194 13195 13196 13197 13198 13199 13200 13201 13202 13203 13204 13205 13206 13207 13208 13209 13210 13211 13212 13213 13214 13215 13216 13217 13218 13219 13220 13221 13222 13223 13224 13225 13226 13227 13228 13229 13230 13231 13232 13233 13234 13235 13236 13237 13238 13239 13240 13241 13242 13243 13244 13245 13246 13247 13248 13249 13250 13251 13252 13253 13254 13255 13256 13257 13258 13259 13260 13261 13262 13263 13264 13265 13266 13267 13268 13269 13270 13271 13272 13273 13274 13275 13276 13277 13278 13279 13280 13281 13282 13283 13284 13285 13286 13287 13288 13289 13290 13291 13292 13293 13294 13295 13296 13297 13298 13299 13300 13301 13302 13303 13304 13305 13306 13307 13308 13309 13310 13311 13312 13313 13314 13315 13316 13317 13318 13319 13320 13321 13322 13323 13324 13325 13326 13327 13328 13329 13330 13331 13332 13333 13334 13335 13336 13337 13338 13339 13340 13341 13342 13343 13344 13345 13346 13347 13348 13349 13350 13351 13352 13353 13354 13355 13356 13357 13358 13359 13360 13361 13362 13363 13364 13365 13366 13367 13368 13369 13370 13371 13372 13373 13374 13375 13376 13377 13378 13379 13380 13381 13382 13383 13384 13385 13386 13387 13388 13389 13390 13391 13392 13393 13394 13395 13396 13397 13398 13399 13400 13401 13402 13403 13404 13405 13406 13407 13408 13409 13410 13411 13412 13413 13414 13415 13416 13417 13418 13419 13420 13421 13422 13423 13424 13425 13426 13427 13428 13429 13430 13431 13432 13433 13434 13435 13436 13437 13438 13439 13440 13441 13442 13443 13444 13445 13446 13447 13448 13449 13450 13451 13452 13453 13454 13455 13456 13457 13458 13459 13460 13461 13462 13463 13464 13465 13466 13467 13468 13469 13470 13471 13472 13473 13474 13475 13476 13477 13478 13479 13480 13481 13482 13483 13484 13485 13486 13487 13488 13489 13490 13491 13492 13493 13494 13495 13496 13497 13498 13499 13500 13501 13502 13503 13504 13505 13506 13507 13508 13509 13510 13511 13512 13513 13514 13515 13516 13517 13518 13519 13520 13521 13522 13523 13524 13525 13526 13527 13528 13529 13530 13531 13532 13533 13534 13535 13536 13537 13538 13539 13540 13541 13542 13543 13544 13545 13546 13547 13548 13549 13550 13551 13552 13553 13554 13555 13556 13557 13558 13559 13560 13561 13562 13563 13564 13565 13566 13567 13568 13569 13570 13571 13572 13573 13574 13575 13576 13577 13578 13579 13580 13581 13582 13583 13584 13585 13586 13587 13588 13589 13590 13591 13592 13593 13594 13595 13596 13597 13598 13599 13600 13601 13602 13603 13604 13605 13606 13607 13608 13609 13610 13611 13612 13613 13614 13615 13616 13617 13618 13619 13620 13621 13622 13623 13624 13625 13626 13627 13628 13629 13630 13631 13632 13633 13634 13635 13636 13637 13638 13639 13640 13641 13642 13643 13644 13645 13646 13647 13648 13649 13650 13651 13652 13653 13654 13655 13656 13657 13658 13659 13660 13661 13662 13663 13664 13665 13666 13667 13668 13669 13670 13671 13672 13673 13674 13675 13676 13677 13678 13679 13680 13681 13682 13683 13684 13685 13686 13687 13688 13689 13690 13691 13692 13693 13694 13695 13696 13697 13698 13699 13700 13701 13702 13703 13704 13705 13706 13707 13708 13709 13710 13711 13712 13713 13714 13715 13716 13717 13718 13719 13720 13721 13722 13723 13724 13725 13726 13727 13728 13729 13730 13731 13732 13733 13734 13735 13736 13737 13738 13739 13740 13741 13742 13743 13744 13745 13746 13747 13748 13749 13750 13751 13752 13753 13754 13755 13756 13757 13758 13759 13760 13761 13762 13763 13764 13765 13766 13767 13768 13769 13770 13771 13772 13773 13774 13775 13776 13777 13778 13779 13780 13781 13782 13783 13784 13785 13786 13787 13788 13789 13790 13791 13792 13793 13794 13795 13796 13797 13798 13799 13800 13801 13802 13803 13804 13805 13806 13807 13808 13809 13810 13811 13812 13813 13814 13815 13816 13817 13818 13819 13820 13821 13822 13823 13824 13825 13826 13827 13828 13829 13830 13831 13832 13833 13834 13835 13836 13837 13838 13839 13840 13841 13842 13843 13844 13845 13846 13847 13848 13849 13850 13851 13852 13853 13854 13855 13856 13857 13858 13859 13860 13861 13862 13863 13864 13865 13866 13867 13868 13869 13870 13871 13872 13873 13874 13875 13876 13877 13878 13879 13880 13881 13882 13883 13884 13885 13886 13887 13888 13889 13890 13891 13892 13893 13894 13895 13896 13897 13898 13899 13900 13901 13902 13903 13904 13905 13906 13907 13908 13909 13910 13911 13912 13913 13914 13915 13916 13917 13918 13919 13920 13921 13922 13923 13924 13925 13926 13927 13928 13929 13930 13931 13932 13933 13934 13935 13936 13937 13938 13939 13940 13941 13942 13943 13944 13945 13946 13947 13948 13949 13950 13951 13952 13953 13954 13955 13956 13957 13958 13959 13960 13961 13962 13963 13964 13965 13966 13967 13968 13969 13970 13971 13972 13973 13974 13975 13976 13977 13978 13979 13980 13981 13982 13983 13984 13985 13986 13987 13988 13989 13990 13991 13992 13993 13994 13995 13996 13997 13998 13999 14000 14001 14002 14003 14004 14005 14006 14007 14008 14009 14010 14011 14012 14013 14014 14015 14016 14017 14018 14019 14020 14021 14022 14023 14024 14025 14026 14027 14028 14029 14030 14031 14032 14033 14034 14035 14036 14037 14038 14039 14040 14041 14042 14043 14044 14045 14046 14047 14048 14049 14050 14051 14052 14053 14054 14055 14056 14057 14058 14059 14060 14061 14062 14063 14064 14065 14066 14067 14068 14069 14070 14071 14072 14073 14074 14075 14076 14077 14078 14079 14080 14081 14082 14083 14084 14085 14086 14087 14088 14089 14090 14091 14092 14093 14094 14095 14096 14097 14098 14099 14100 14101 14102 14103 14104 14105 14106 14107 14108 14109 14110 14111 14112 14113 14114 14115 14116 14117 14118 14119 14120 14121 14122 14123 14124 14125 14126 14127 14128 14129 14130 14131 14132 14133 14134 14135 14136 14137 14138 14139 14140 14141 14142 14143 14144 14145 14146 14147 14148 14149 14150 14151 14152 14153 14154 14155 14156 14157 14158 14159 14160 14161 14162 14163 14164 14165 14166 14167 14168 14169 14170 14171 14172 14173 14174 14175 14176 14177 14178 14179 14180 14181 14182 14183 14184 14185 14186 14187 14188 14189 14190 14191 14192 14193 14194 14195 14196 14197 14198 14199 14200 14201 14202 14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 14230 14231 14232 14233 14234 14235 14236 14237 14238 14239 14240 14241 14242 14243 14244 14245 14246 14247 14248 14249 14250 14251 14252 14253 14254 14255 14256 14257 14258 14259 14260 14261 14262 14263 14264 14265 14266 14267 14268 14269 14270 14271 14272 14273 14274 14275 14276 14277 14278 14279 14280 14281 14282 14283 14284 14285 14286 14287 14288 14289 14290 14291 14292 14293 14294 14295 14296 14297 14298 14299 14300 14301 14302 14303 14304 14305 14306 14307 14308 14309 14310 14311 14312 14313 14314 14315 14316 14317 14318 14319 14320 14321 14322 14323 14324 14325 14326 14327 14328 14329 14330 14331 14332 14333 14334 14335 14336 14337 14338 14339 14340 14341 14342 14343 14344 14345 14346 14347 14348 14349 14350 14351 14352 14353 14354 14355 14356 14357 14358 14359 14360 14361 14362 14363 14364 14365 14366 14367 14368 14369 14370 14371 14372 14373 14374 14375 14376 14377 14378 14379 14380 14381 14382 14383 14384 14385 14386 14387 14388 14389 14390 14391 14392 14393 14394 14395 14396 14397 14398 14399 14400 14401 14402 14403 14404 14405 14406 14407 14408 14409 14410 14411 14412 14413 14414 14415 14416 14417 14418 14419 14420 14421 14422 14423 14424 14425 14426 14427 14428 14429 14430 14431 14432 14433 14434 14435 14436 14437 14438 14439 14440 14441 14442 14443 14444 14445 14446 14447 14448 14449 14450 14451 14452 14453 14454 14455 14456 14457 14458 14459 14460 14461 14462 14463 14464 14465 14466 14467 14468 14469 14470 14471 14472 14473 14474 14475 14476 14477 14478 14479 14480 14481 14482 14483 14484 14485 14486 14487 14488 14489 14490 14491 14492 14493 14494 14495 14496 14497 14498 14499 14500 14501 14502 14503 14504 14505 14506 14507 14508 14509 14510 14511 14512 14513 14514 14515 14516 14517 14518 14519 14520 14521 14522 14523 14524 14525 14526 14527 14528 14529 14530 14531 14532 14533 14534 14535 14536 14537 14538 14539 14540 14541 14542 14543 14544 14545 14546 14547 14548 14549 14550 14551 14552 14553 14554 14555 14556 14557 14558 14559 14560 14561 14562 14563 14564 14565 14566 14567 14568 14569 14570 14571 14572 14573 14574 14575 14576 14577 14578 14579 14580 14581 14582 14583 14584 14585 14586 14587 14588 14589 14590 14591 14592 14593 14594 14595 14596 14597 14598 14599 14600 14601 14602 14603 14604 14605 14606 14607 14608 14609 14610 14611 14612 14613 14614 14615 14616 14617 14618 14619 14620 14621 14622 14623 14624 14625 14626 14627 14628 14629 14630 14631 14632 14633 14634 14635 14636 14637 14638 14639 14640 14641 14642 14643 14644 14645 14646 14647 14648 14649 14650 14651 14652 14653 14654 14655 14656 14657 14658 14659 14660 14661 14662 14663 14664 14665 14666 14667 14668 14669 14670 14671 14672 14673 14674 14675 14676 14677 14678 14679 14680 14681 14682 14683 14684 14685 14686 14687 14688 14689 14690 14691 14692 14693 14694 14695 14696 14697 14698 14699 14700 14701 14702 14703 14704 14705 14706 14707 14708 14709 14710 14711 14712 14713 14714 14715 14716 14717 14718 14719 14720 14721 14722 14723 14724 14725 14726 14727 14728 14729 14730 14731 14732 14733 14734 14735 14736 14737 14738 14739 14740 14741 14742 14743 14744 14745 14746 14747 14748 14749 14750 14751 14752 14753 14754 14755 14756 14757 14758 14759 14760 14761 14762 14763 14764 14765 14766 14767 14768 14769 14770 14771 14772 14773 14774 14775 14776 14777 14778 14779 14780 14781 14782 14783 14784 14785 14786 14787 14788 14789 14790 14791 14792 14793 14794 14795 14796 14797 14798 14799 14800 14801 14802 14803 14804 14805 14806 14807 14808 14809 14810 14811 14812 14813 14814 14815 14816 14817 14818 14819 14820 14821 14822 14823 14824 14825 14826 14827 14828 14829 14830 14831 14832 14833 14834 14835 14836 14837 14838 14839 14840 14841 14842 14843 14844 14845 14846 14847 14848 14849 14850 14851 14852 14853 14854 14855 14856 14857 14858 14859 14860 14861 14862 14863 14864 14865 14866 14867 14868 14869 14870 14871 14872 14873 14874 14875 14876 14877 14878 14879 14880 14881 14882 14883 14884 14885 14886 14887 14888 14889 14890 14891 14892 14893 14894 14895 14896 14897 14898 14899 14900 14901 14902 14903 14904 14905 14906 14907 14908 14909 14910 14911 14912 14913 14914 14915 14916 14917 14918 14919 14920 14921 14922 14923 14924 14925 14926 14927 14928 14929 14930 14931 14932 14933 14934 14935 14936 14937 14938 14939 14940 14941 14942 14943 14944 14945 14946 14947 14948 14949 14950 14951 14952 14953 14954 14955 14956 14957 14958 14959 14960 14961 14962 14963 14964 14965 14966 14967 14968 14969 14970 14971 14972 14973 14974 14975 14976 14977 14978 14979 14980 14981 14982 14983 14984 14985 14986 14987 14988 14989 14990 14991 14992 14993 14994 14995 14996 14997 14998 14999 15000 15001 15002 15003 15004 15005 15006 15007 15008 15009 15010 15011 15012 15013 15014 15015 15016 15017 15018 15019 15020 15021 15022 15023 15024 15025 15026 15027 15028 15029 15030 15031 15032 15033 15034 15035 15036 15037 15038 15039 15040 15041 15042 15043 15044 15045 15046 15047 15048 15049 15050 15051 15052 15053 15054 15055 15056 15057 15058 15059 15060 15061 15062 15063 15064 15065 15066 15067 15068 15069 15070 15071 15072 15073 15074 15075 15076 15077 15078 15079 15080 15081 15082 15083 15084 15085 15086 15087 15088 15089 15090 15091 15092 15093 15094 15095 15096 15097 15098 15099 15100 15101 15102 15103 15104 15105 15106 15107 15108 15109 15110 15111 15112 15113 15114 15115 15116 15117 15118 15119 15120 15121 15122 15123 15124 15125 15126 15127 15128 15129 15130 15131 15132 15133 15134 15135 15136 15137 15138 15139 15140 15141 15142 15143 15144 15145 15146 15147 15148 15149 15150 15151 15152 15153 15154 15155 15156 15157 15158 15159 15160 15161 15162 15163 15164 15165 15166 15167 15168 15169 15170 15171 15172 15173 15174 15175 15176 15177 15178 15179 15180 15181 15182 15183 15184 15185 15186 15187 15188 15189 15190 15191 15192 15193 15194 15195 15196 15197 15198 15199 15200 15201 15202 15203 15204 15205 15206 15207 15208 15209 15210 15211 15212 15213 15214 15215 15216 15217 15218 15219 15220 15221 15222 15223 15224 15225 15226 15227 15228 15229 15230 15231 15232 15233 15234 15235 15236 15237 15238 15239 15240 15241 15242 15243 15244 15245 15246 15247 15248 15249 15250 15251 15252 15253 15254 15255 15256 15257 15258 15259 15260 15261 15262 15263 15264 15265 15266 15267 15268 15269 15270 15271 15272 15273 15274 15275 15276 15277 15278 15279 15280 15281 15282 15283 15284 15285 15286 15287 15288 15289 15290 15291 15292 15293 15294 15295 15296 15297 15298 15299 15300 15301 15302 15303 15304 15305 15306 15307 15308 15309 15310 15311 15312 15313 15314 15315 15316 15317 15318 15319 15320 15321 15322 15323 15324 15325 15326 15327 15328 15329 15330 15331 15332 15333 15334 15335 15336 15337 15338 15339 15340 15341 15342 15343 15344 15345 15346 15347 15348 15349 15350 15351 15352 15353 15354 15355 15356 15357 15358 15359 15360 15361 15362 15363 15364 15365 15366 15367 15368 15369 15370 15371 15372 15373 15374 15375 15376 15377 15378 15379 15380 15381 15382 15383 15384 15385 15386 15387 15388 15389 15390 15391 15392 15393 15394 15395 15396 15397 15398 15399 15400 15401 15402 15403 15404 15405 15406 15407 15408 15409 15410 15411 15412 15413 15414 15415 15416 15417 15418 15419 15420 15421 15422 15423 15424 15425 15426 15427 15428 15429 15430 15431 15432 15433 15434 15435 15436 15437 15438 15439 15440 15441 15442 15443 15444 15445 15446 15447 15448 15449 15450 15451 15452 15453 15454 15455 15456 15457 15458 15459 15460 15461 15462 15463 15464 15465 15466 15467 15468 15469 15470 15471 15472 15473 15474 15475 15476 15477 15478 15479 15480 15481 15482 15483 15484 15485 15486 15487 15488 15489 15490 15491 15492 15493 15494 15495 15496 15497 15498 15499 15500 15501 15502 15503 15504 15505 15506 15507 15508 15509 15510 15511 15512 15513 15514 15515 15516 15517 15518 15519 15520 15521 15522 15523 15524 15525 15526 15527 15528 15529 15530 15531 15532 15533 15534 15535 15536 15537 15538 15539 15540 15541 15542 15543 15544 15545 15546 15547 15548 15549 15550 15551 15552 15553 15554 15555 15556 15557 15558 15559 15560 15561 15562 15563 15564 15565 15566 15567 15568 15569 15570 15571 15572 15573 15574 15575 15576 15577 15578 15579 15580 15581 15582 15583 15584 15585 15586 15587 15588 15589 15590 15591 15592 15593 15594 15595 15596 15597 15598 15599 15600 15601 15602 15603 15604 15605 15606 15607 15608 15609 15610 15611 15612 15613 15614 15615 15616 15617 15618 15619 15620 15621 15622 15623 15624 15625 15626 15627 15628 15629 15630 15631 15632 15633 15634 15635 15636 15637 15638 15639 15640 15641 15642 15643 15644 15645 15646 15647 15648 15649 15650 15651 15652 15653 15654 15655 15656 15657 15658 15659 15660 15661 15662 15663 15664 15665 15666 15667 15668 15669 15670 15671 15672 15673 15674 15675 15676 15677 15678 15679 15680 15681 15682 15683 15684 15685 15686 15687 15688 15689 15690 15691 15692 15693 15694 15695 15696 15697 15698 15699 15700 15701 15702 15703 15704 15705 15706 15707 15708 15709 15710 15711 15712 15713 15714 15715 15716 15717 15718 15719 15720 15721 15722 15723 15724 15725 15726 15727 15728 15729 15730 15731 15732 15733 15734 15735 15736 15737 15738 15739 15740 15741 15742 15743 15744 15745 15746 15747 15748 15749 15750 15751 15752 15753 15754 15755 15756 15757 15758 15759 15760 15761 15762 15763 15764 15765 15766 15767 15768 15769 15770 15771 15772 15773 15774 15775 15776 15777 15778 15779 15780 15781 15782 15783 15784 15785 15786 15787 15788 15789 15790 15791 15792 15793 15794 15795 15796 15797 15798 15799 15800 15801 15802 15803 15804 15805 15806 15807 15808 15809 15810 15811 15812 15813 15814 15815 15816 15817 15818 15819 15820 15821 15822 15823 15824 15825 15826 15827 15828 15829 15830 15831 15832 15833 15834 15835 15836 15837 15838 15839 15840 15841 15842 15843 15844 15845 15846 15847 15848 15849 15850 15851 15852 15853 15854 15855 15856 15857 15858 15859 15860 15861 15862 15863 15864 15865 15866 15867 15868 15869 15870 15871 15872 15873 15874 15875 15876 15877 15878 15879 15880 15881 15882 15883 15884 15885 15886 15887 15888 15889 15890 15891 15892 15893 15894 15895 15896 15897 15898 15899 15900 15901 15902 15903 15904 15905 15906 15907 15908 15909 15910 15911 15912 15913 15914 15915 15916 15917 15918 15919 15920 15921 15922 15923 15924 15925 15926 15927 15928 15929 15930 15931 15932 15933 15934 15935 15936 15937 15938 15939 15940 15941 15942 15943 15944 15945 15946 15947 15948 15949 15950 15951 15952 15953 15954 15955 15956 15957 15958 15959 15960 15961 15962 15963 15964 15965 15966 15967 15968 15969 15970 15971 15972 15973 15974 15975 15976 15977 15978 15979 15980 15981 15982 15983 15984 15985 15986 15987 15988 15989 15990 15991 15992 15993 15994 15995 15996 15997 15998 15999 16000 16001 16002 16003 16004 16005 16006 16007 16008 16009 16010 16011 16012 16013 16014 16015 16016 16017 16018 16019 16020 16021 16022 16023 16024 16025 16026 16027 16028 16029 16030 16031 16032 16033 16034 16035 16036 16037 16038 16039 16040 16041 16042 16043 16044 16045 16046 16047 16048 16049 16050 16051 16052 16053 16054 16055 16056 16057 16058 16059 16060 16061 16062 16063 16064 16065 16066 16067 16068 16069 16070 16071 16072 16073 16074 16075 16076 16077 16078 16079 16080 16081 16082 16083 16084 16085 16086 16087 16088 16089 16090 16091 16092 16093 16094 16095 16096 16097 16098 16099 16100 16101 16102 16103 16104 16105 16106 16107 16108 16109 16110 16111 16112 16113 16114 16115 16116 16117 16118 16119 16120 16121 16122 16123 16124 16125 16126 16127 16128 16129 16130 16131 16132 16133 16134 16135 16136 16137 16138 16139 16140 16141 16142 16143 16144 16145 16146 16147 16148 16149 16150 16151 16152 16153 16154 16155 16156 16157 16158 16159 16160 16161 16162 16163 16164 16165 16166 16167 16168 16169 16170 16171 16172 16173 16174 16175 16176 16177 16178 16179 16180 16181 16182 16183 16184 16185 16186 16187 16188 16189 16190 16191 16192 16193 16194 16195 16196 16197 16198 16199 16200 16201 16202 16203 16204 16205 16206 16207 16208 16209 16210 16211 16212 16213 16214 16215 16216 16217 16218 16219 16220 16221 16222 16223 16224 16225 16226 16227 16228 16229 16230 16231 16232 16233 16234 16235 16236 16237 16238 16239 16240 16241 16242 16243 16244 16245 16246 16247 16248 16249 16250 16251 16252 16253 16254 16255 16256 16257 16258 16259 16260 16261 16262 16263 16264 16265 16266 16267 16268 16269 16270 16271 16272 16273 16274 16275 16276 16277 16278 16279 16280 16281 16282 16283 16284 16285 16286 16287 16288 16289 16290 16291 16292 16293 16294 16295 16296 16297 16298 16299 16300 16301 16302 16303 16304 16305 16306 16307 16308 16309 16310 16311 16312 16313 16314 16315 16316 16317 16318 16319 16320 16321 16322 16323 16324 16325 16326 16327 16328 16329 16330 16331 16332 16333 16334 16335 16336 16337 16338 16339 16340 16341 16342 16343 16344 16345 16346 16347 16348 16349 16350 16351 16352 16353 16354 16355 16356 16357 16358 16359 16360 16361 16362 16363 16364 16365 16366 16367 16368 16369 16370 16371 16372 16373 16374 16375 16376 16377 16378 16379 16380 16381 16382 16383 16384 16385 16386 16387 16388 16389 16390 16391 16392 16393 16394 16395 16396 16397 16398 16399 16400 16401 16402 16403 16404 16405 16406 16407 16408 16409 16410 16411 16412 16413 16414 16415 16416 16417 16418 16419 16420 16421 16422 16423 16424 16425 16426 16427 16428 16429 16430 16431 16432 16433 16434 16435 16436 16437 16438 16439 16440 16441 16442 16443 16444 16445 16446 16447 16448 16449 16450 16451 16452 16453 16454 16455 16456 16457 16458 16459 16460 16461 16462 16463 16464 16465 16466 16467 16468 16469 16470 16471 16472 16473 16474 16475 16476 16477 16478 16479 16480 16481 16482 16483 16484 16485 16486 16487 16488 16489 16490 16491 16492 16493 16494 16495 16496 16497 16498 16499 16500 16501 16502 16503 16504 16505 16506 16507 16508 16509 16510 16511 16512 16513 16514 16515 16516 16517 16518 16519 16520 16521 16522 16523 16524 16525 16526 16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 16558 16559 16560 16561 16562 16563 16564 16565 16566 16567 16568 16569 16570 16571 16572 16573 16574 16575 16576 16577 16578 16579 16580 16581 16582 16583 16584 16585 16586 16587 16588 16589 16590 16591 16592 16593 16594 16595 16596 16597 16598 16599 16600 16601 16602 16603 16604 16605 16606 16607 16608 16609 16610 16611 16612 16613 16614 16615 16616 16617 16618 16619 16620 16621 16622 16623 16624 16625 16626 16627 16628 16629 16630 16631 16632 16633 16634 16635 16636 16637 16638 16639 16640 16641 16642 16643 16644 16645 16646 16647 16648 16649 16650 16651 16652 16653 16654 16655 16656 16657 16658 16659 16660 16661 16662 16663 16664 16665 16666 16667 16668 16669 16670 16671 16672 16673 16674 16675 16676 16677 16678 16679 16680 16681 16682 16683 16684 16685 16686 16687 16688 16689 16690 16691 16692 16693 16694 16695 16696 16697 16698 16699 16700 16701 16702 16703 16704 16705 16706 16707 16708 16709 16710 16711 16712 16713 16714 16715 16716 16717 16718 16719 16720 16721 16722 16723 16724 16725 16726 16727 16728 16729 16730 16731 16732 16733 16734 16735 16736 16737 16738 16739 16740 16741 16742 16743 16744 16745 16746 16747 16748 16749 16750 16751 16752 16753 16754 16755 16756 16757 16758 16759 16760 16761 16762 16763 16764 16765 16766 16767 16768 16769 16770 16771 16772 16773 16774 16775 16776 16777 16778 16779 16780 16781 16782 16783 16784 16785 16786 16787 16788 16789 16790 16791 16792 16793 16794 16795 16796 16797 16798 16799 16800 16801 16802 16803 16804 16805 16806 16807 16808 16809 16810 16811 16812 16813 16814 16815 16816 16817 16818 16819 16820 16821 16822 16823 16824 16825 16826 16827 16828 16829 16830 16831 16832 16833 16834 16835 16836 16837 16838 16839 16840 16841 16842 16843 16844 16845 16846 16847 16848 16849 16850 16851 16852 16853 16854 16855 16856 16857 16858 16859 16860 16861 16862 16863 16864 16865 16866 16867 16868 16869 16870 16871 16872 16873 16874 16875 16876 16877 16878 16879 16880 16881 16882 16883 16884 16885 16886 16887 16888 16889 16890 16891 16892 16893 16894 16895 16896 16897 16898 16899 16900 16901 16902 16903 16904 16905 16906 16907 16908 16909 16910 16911 16912 16913 16914 16915 16916 16917 16918 16919 16920 16921 16922 16923 16924 16925 16926 16927 16928 16929 16930 16931 16932 16933 16934 16935 16936 16937 16938 16939 16940 16941 16942 16943 16944 16945 16946 16947 16948 16949 16950 16951 16952 16953 16954 16955 16956 16957 16958 16959 16960 16961 16962 16963 16964 16965 16966 16967 16968 16969 16970 16971 16972 16973 16974 16975 16976 16977 16978 16979 16980 16981 16982 16983 16984 16985 16986 16987 16988 16989 16990 16991 16992 16993 16994 16995 16996 16997 16998 16999 17000 17001 17002 17003 17004 17005 17006 17007 17008 17009 17010 17011 17012 17013 17014 17015 17016 17017 17018 17019 17020 17021 17022 17023 17024 17025 17026 17027 17028 17029 17030 17031 17032 17033 17034 17035 17036 17037 17038 17039 17040 17041 17042 17043 17044 17045 17046 17047 17048 17049 17050 17051 17052 17053 17054 17055 17056 17057 17058 17059 17060 17061 17062 17063 17064 17065 17066 17067 17068 17069 17070 17071 17072 17073 17074 17075 17076 17077 17078 17079 17080 17081 17082 17083 17084 17085 17086 17087 17088 17089 17090 17091 17092 17093 17094 17095 17096 17097 17098 17099 17100 17101 17102 17103 17104 17105 17106 17107 17108 17109 17110 17111 17112 17113 17114 17115 17116 17117 17118 17119 17120 17121 17122 17123 17124 17125 17126 17127 17128 17129 17130 17131 17132 17133 17134 17135 17136 17137 17138 17139 17140 17141 17142 17143 17144 17145 17146 17147 17148 17149 17150 17151 17152 17153 17154 17155 17156 17157 17158 17159 17160 17161 17162 17163 17164 17165 17166 17167 17168 17169 17170 17171 17172 17173 17174 17175 17176 17177 17178 17179 17180 17181 17182 17183 17184 17185 17186 17187 17188 17189 17190 17191 17192 17193 17194 17195 17196 17197 17198 17199 17200 17201 17202 17203 17204 17205 17206 17207 17208 17209 17210 17211 17212 17213 17214 17215 17216 17217 17218 17219 17220 17221 17222 17223 17224 17225 17226 17227 17228 17229 17230 17231 17232 17233 17234 17235 17236 17237 17238 17239 17240 17241 17242 17243 17244 17245 17246 17247 17248 17249 17250 17251 17252 17253 17254 17255 17256 17257 17258 17259 17260 17261 17262 17263 17264 17265 17266 17267 17268 17269 17270 17271 17272 17273 17274 17275 17276 17277 17278 17279 17280 17281 17282 17283 17284 17285 17286 17287 17288 17289 17290 17291 17292 17293 17294 17295 17296 17297 17298 17299 17300 17301 17302 17303 17304 17305 17306 17307 17308 17309 17310 17311 17312 17313 17314 17315 17316 17317 17318 17319 17320 17321 17322 17323 17324 17325 17326 17327 17328 17329 17330 17331 17332 17333 17334 17335 17336 17337 17338 17339 17340 17341 17342 17343 17344 17345 17346 17347 17348 17349 17350 17351 17352 17353 17354 17355 17356 17357 17358 17359 17360 17361 17362 17363 17364 17365 17366 17367 17368 17369 17370 17371 17372 17373 17374 17375 17376 17377 17378 17379 17380 17381 17382 17383 17384 17385 17386 17387 17388 17389 17390 17391 17392 17393 17394 17395 17396 17397 17398 17399 17400 17401 17402 17403 17404 17405 17406 17407 17408 17409 17410 17411 17412 17413 17414 17415 17416 17417 17418 17419 17420 17421 17422 17423 17424 17425 17426 17427 17428 17429 17430 17431 17432 17433 17434 17435 17436 17437 17438 17439 17440 17441 17442 17443 17444 17445 17446 17447 17448 17449 17450 17451 17452 17453 17454 17455 17456 17457 17458 17459 17460 17461 17462 17463 17464 17465 17466 17467 17468 17469 17470 17471 17472 17473 17474 17475 17476 17477 17478 17479 17480 17481 17482 17483 17484 17485 17486 17487 17488 17489 17490 17491 17492 17493 17494 17495 17496 17497 17498 17499 17500 17501 17502 17503 17504 17505 17506 17507 17508 17509 17510 17511 17512 17513 17514 17515 17516 17517 17518 17519 17520 17521 17522 17523 17524 17525 17526 17527 17528 17529 17530 17531 17532 17533 17534 17535 17536 17537 17538 17539 17540 17541 17542 17543 17544 17545 17546 17547 17548 17549 17550 17551 17552 17553 17554 17555 17556 17557 17558 17559 17560 17561 17562 17563 17564 17565 17566 17567 17568 17569 17570 17571 17572 17573 17574 17575 17576 17577 17578 17579 17580 17581 17582 17583 17584 17585 17586 17587 17588 17589 17590 17591 17592 17593 17594 17595 17596 17597 17598 17599 17600 17601 17602 17603 17604 17605 17606 17607 17608 17609 17610 17611 17612 17613 17614 17615 17616 17617 17618 17619 17620 17621 17622 17623 17624 17625 17626 17627 17628 17629 17630 17631 17632 17633 17634 17635 17636 17637 17638 17639 17640 17641 17642 17643 17644 17645 17646 17647 17648 17649 17650 17651 17652 17653 17654 17655 17656 17657 17658 17659 17660 17661 17662 17663 17664 17665 17666 17667 17668 17669 17670 17671 17672 17673 17674 17675 17676 17677 17678 17679 17680 17681 17682 17683 17684 17685 17686 17687 17688 17689 17690 17691 17692 17693 17694 17695 17696 17697 17698 17699 17700 17701 17702 17703 17704 17705 17706 17707 17708 17709 17710 17711 17712 17713 17714 17715 17716 17717 17718 17719 17720 17721 17722 17723 17724 17725 17726 17727 17728 17729 17730 17731 17732 17733 17734 17735 17736 17737 17738 17739 17740 17741 17742 17743 17744 17745 17746 17747 17748 17749 17750 17751 17752 17753 17754 17755 17756 17757 17758 17759 17760 17761 17762 17763 17764 17765 17766 17767 17768 17769 17770 17771 17772 17773 17774 17775 17776 17777 17778 17779 17780 17781 17782 17783 17784 17785 17786 17787 17788 17789 17790 17791 17792 17793 17794 17795 17796 17797 17798 17799 17800 17801 17802 17803 17804 17805 17806 17807 17808 17809 17810 17811 17812 17813 17814 17815 17816 17817 17818 17819 17820 17821 17822 17823 17824 17825 17826 17827 17828 17829 17830 17831 17832 17833 17834 17835 17836 17837 17838 17839 17840 17841 17842 17843 17844 17845 17846 17847 17848 17849 17850 17851 17852 17853 17854 17855 17856 17857 17858 17859 17860 17861 17862 17863 17864 17865 17866 17867 17868 17869 17870 17871 17872 17873 17874 17875 17876 17877 17878 17879 17880 17881 17882 17883 17884 17885 17886 17887 17888 17889 17890 17891 17892 17893 17894 17895 17896 17897 17898 17899 17900 17901 17902 17903 17904 17905 17906 17907 17908 17909 17910 17911 17912 17913 17914 17915 17916 17917 17918 17919 17920 17921 17922 17923 17924 17925 17926 17927 17928 17929 17930 17931 17932 17933 17934 17935 17936 17937 17938 17939 17940 17941 17942 17943 17944 17945 17946 17947 17948 17949 17950 17951 17952 17953 17954 17955 17956 17957 17958 17959 17960 17961 17962 17963 17964 17965 17966 17967 17968 17969 17970 17971 17972 17973 17974 17975 17976 17977 17978 17979 17980 17981 17982 17983 17984 17985 17986 17987 17988 17989 17990 17991 17992 17993 17994 17995 17996 17997 17998 17999 18000 18001 18002 18003 18004 18005 18006 18007 18008 18009 18010 18011 18012 18013 18014 18015 18016 18017 18018 18019 18020 18021 18022 18023 18024 18025 18026 18027 18028 18029 18030 18031 18032 18033 18034 18035 18036 18037 18038 18039 18040 18041 18042 18043 18044 18045 18046 18047 18048 18049 18050 18051 18052 18053 18054 18055 18056 18057 18058 18059 18060 18061 18062 18063 18064 18065 18066 18067 18068 18069 18070 18071 18072 18073 18074 18075 18076 18077 18078 18079 18080 18081 18082 18083 18084 18085 18086 18087 18088 18089 18090 18091 18092 18093 18094 18095 18096 18097 18098 18099 18100 18101 18102 18103 18104 18105 18106 18107 18108 18109 18110 18111 18112 18113 18114 18115 18116 18117 18118 18119 18120 18121 18122 18123 18124 18125 18126 18127 18128 18129 18130 18131 18132 18133 18134 18135 18136 18137 18138 18139 18140 18141 18142 18143 18144 18145 18146 18147 18148 18149 18150 18151 18152 18153 18154 18155 18156 18157 18158 18159 18160 18161 18162 18163 18164 18165 18166 18167 18168 18169 18170 18171 18172 18173 18174 18175 18176 18177 18178 18179 18180 18181 18182 18183 18184 18185 18186 18187 18188 18189 18190 18191 18192 18193 18194 18195 18196 18197 18198 18199 18200 18201 18202 18203 18204 18205 18206 18207 18208 18209 18210 18211 18212 18213 18214 18215 18216 18217 18218 18219 18220 18221 18222 18223 18224 18225 18226 18227 18228 18229 18230 18231 18232 18233 18234 18235 18236 18237 18238 18239 18240 18241 18242 18243 18244 18245 18246 18247 18248 18249 18250 18251 18252 18253 18254 18255 18256 18257 18258 18259 18260 18261 18262 18263 18264 18265 18266 18267 18268 18269 18270 18271 18272 18273 18274 18275 18276 18277 18278 18279 18280 18281 18282 18283 18284 18285 18286 18287 18288 18289 18290 18291 18292 18293 18294 18295 18296 18297 18298 18299 18300 18301 18302 18303 18304 18305 18306 18307 18308 18309 18310 18311 18312 18313 18314 18315 18316 18317 18318 18319 18320 18321 18322 18323 18324 18325 18326 18327 18328 18329 18330 18331 18332 18333 18334 18335 18336 18337 18338 18339 18340 18341 18342 18343 18344 18345 18346 18347 18348 18349 18350 18351 18352 18353 18354 18355 18356 18357 18358 18359 18360 18361 18362 18363 18364 18365 18366 18367 18368 18369 18370 18371 18372 18373 18374 18375 18376 18377 18378 18379 18380 18381 18382 18383 18384 18385 18386 18387 18388 18389 18390 18391 18392 18393 18394 18395 18396 18397 18398 18399 18400 18401 18402 18403 18404 18405 18406 18407 18408 18409 18410 18411 18412 18413 18414 18415 18416 18417 18418 18419 18420 18421 18422 18423 18424 18425 18426 18427 18428 18429 18430 18431 18432 18433 18434 18435 18436 18437 18438 18439 18440 18441 18442 18443 18444 18445 18446 18447 18448 18449 18450 18451 18452 18453 18454 18455 18456 18457 18458 18459 18460 18461 18462 18463 18464 18465 18466 18467 18468 18469 18470 18471 18472 18473 18474 18475 18476 18477 18478 18479 18480 18481 18482 18483 18484 18485 18486 18487 18488 18489 18490 18491 18492 18493 18494 18495 18496 18497 18498 18499 18500 18501 18502 18503 18504 18505 18506 18507 18508 18509 18510 18511 18512 18513 18514 18515 18516 18517 18518 18519 18520 18521 18522 18523 18524 18525 18526 18527 18528 18529 18530 18531 18532 18533 18534 18535 18536 18537 18538 18539 18540 18541 18542 18543 18544 18545 18546 18547 18548 18549 18550 18551 18552 18553 18554 18555 18556 18557 18558 18559 18560 18561 18562 18563 18564 18565 18566 18567 18568 18569 18570 18571 18572 18573 18574 18575 18576 18577 18578 18579 18580 18581 18582 18583 18584 18585 18586 18587 18588 18589 18590 18591 18592 18593 18594 18595 18596 18597 18598 18599 18600 18601 18602 18603 18604 18605 18606 18607 18608 18609 18610 18611 18612 18613 18614 18615 18616 18617 18618 18619 18620 18621 18622 18623 18624 18625 18626 18627 18628 18629 18630 18631 18632 18633 18634 18635 18636 18637 18638 18639 18640 18641 18642 18643 18644 18645 18646 18647 18648 18649 18650 18651 18652 18653 18654 18655 18656 18657 18658 18659 18660 18661 18662 18663 18664 18665 18666 18667 18668 18669 18670 18671 18672 18673 18674 18675 18676 18677 18678 18679 18680 18681 18682 18683 18684 18685 18686 18687 18688 18689 18690 18691 18692 18693 18694 18695 18696 18697 18698 18699 18700 18701 18702 18703 18704 18705 18706 18707 18708 18709 18710 18711 18712 18713 18714 18715 18716 18717 18718 18719 18720 18721 18722 18723 18724 18725 18726 18727 18728 18729 18730 18731 18732 18733 18734 18735 18736 18737 18738 18739 18740 18741 18742 18743 18744 18745 18746 18747 18748 18749 18750 18751 18752 18753 18754 18755 18756 18757 18758 18759 18760 18761 18762 18763 18764 18765 18766 18767 18768 18769 18770 18771 18772 18773 18774 18775 18776 18777 18778 18779 18780 18781 18782 18783 18784 18785 18786 18787 18788 18789 18790 18791 18792 18793 18794 18795 18796 18797 18798 18799 18800 18801 18802 18803 18804 18805 18806 18807 18808 18809 18810 18811 18812 18813 18814 18815 18816 18817 18818 18819 18820 18821 18822 18823 18824 18825 18826 18827 18828 18829 18830 18831 18832 18833 18834 18835 18836 18837 18838 18839 18840 18841 18842 18843 18844 18845 18846 18847 18848 18849 18850 18851 18852 18853 18854 18855 18856 18857 18858 18859 18860 18861 18862 18863 18864 18865 18866 18867 18868 18869 18870 18871 18872 18873 18874 18875 18876 18877 18878 18879 18880 18881 18882 18883 18884 18885 18886 18887 18888 18889 18890 18891 18892 18893 18894 18895 18896 18897 18898 18899 18900 18901 18902 18903 18904 18905 18906 18907 18908 18909 18910 18911 18912 18913 18914 18915 18916 18917 18918 18919 18920 18921 18922 18923 18924 18925 18926 18927 18928 18929 18930 18931 18932 18933 18934 18935 18936 18937 18938 18939 18940 18941 18942 18943 18944 18945 18946 18947 18948 18949 18950 18951 18952 18953 18954 18955 18956 18957 18958 18959 18960 18961 18962 18963 18964 18965 18966 18967 18968 18969 18970 18971 18972 18973 18974 18975 18976 18977 18978 18979 18980 18981 18982 18983 18984 18985 18986 18987 18988 18989 18990 18991 18992 18993 18994 18995 18996 18997 18998 18999 19000 19001 19002 19003 19004 19005 19006 19007 19008 19009 19010 19011 19012 19013 19014 19015 19016 19017 19018 19019 19020 19021 19022 19023 19024 19025 19026 19027 19028 19029 19030 19031 19032 19033 19034 19035 19036 19037 19038 19039 19040 19041 19042 19043 19044 19045 19046 19047 19048 19049 19050 19051 19052 19053 19054 19055 19056 19057 19058 19059 19060 19061 19062 19063 19064 19065 19066 19067 19068 19069 19070 19071 19072 19073 19074 19075 19076 19077 19078 19079 19080 19081 19082 19083 19084 19085 19086 19087 19088 19089 19090 19091 19092 19093 19094 19095 19096 19097 19098 19099 19100 19101 19102 19103 19104 19105 19106 19107 19108 19109 19110 19111 19112 19113 19114 19115 19116 19117 19118 19119 19120 19121 19122 19123 19124 19125 19126 19127 19128 19129 19130 19131 19132 19133 19134 19135 19136 19137 19138 19139 19140 19141 19142 19143 19144 19145 19146 19147 19148 19149 19150 19151 19152 19153 19154 19155 19156 19157 19158 19159 19160 19161 19162 19163 19164 19165 19166 19167 19168 19169 19170 19171 19172 19173 19174 19175 19176 19177 19178 19179 19180 19181 19182 19183 19184 19185 19186 19187 19188 19189 19190 19191 19192 19193 19194 19195 19196 19197 19198 19199 19200 19201 19202 19203 19204 19205 19206 19207 19208 19209 19210 19211 19212 19213 19214 19215 19216 19217 19218 19219 19220 19221 19222 19223 19224 19225 19226 19227 19228 19229 19230 19231 19232 19233 19234 19235 19236 19237 19238 19239 19240 19241 19242 19243 19244 19245 19246 19247 19248 19249 19250 19251 19252 19253 19254 19255 19256 19257 19258 19259 19260 19261 19262 19263 19264 19265 19266 19267 19268 19269 19270 19271 19272 19273 19274 19275 19276 19277 19278 19279 19280 19281 19282 19283 19284 19285 19286 19287 19288 19289 19290 19291 19292 19293 19294 19295 19296 19297 19298 19299 19300 19301 19302 19303 19304 19305 19306 19307 19308 19309 19310 19311 19312 19313 19314 19315 19316 19317 19318 19319 19320 19321 19322 19323 19324 19325 19326 19327 19328 19329 19330 19331 19332 19333 19334 19335 19336 19337 19338 19339 19340 19341 19342 19343 19344 19345 19346 19347 19348 19349 19350 19351 19352 19353 19354 19355 19356 19357 19358 19359 19360 19361 19362 19363 19364 19365 19366 19367 19368 19369 19370 19371 19372 19373 19374 19375 19376 19377 19378 19379 19380 19381 19382 19383 19384 19385 19386 19387 19388 19389 19390 19391 19392 19393 19394 19395 19396 19397 19398 19399 19400 19401 19402 19403 19404 19405 19406 19407 19408 19409 19410 19411 19412 19413 19414 19415 19416 19417 19418 19419 19420 19421 19422 19423 19424 19425 19426 19427 19428 19429 19430 19431 19432 19433 19434 19435 19436 19437 19438 19439 19440 19441 19442 19443 19444 19445 19446 19447 19448 19449 19450 19451 19452 19453 19454 19455 19456 19457 19458 19459 19460 19461 19462 19463 19464 19465 19466 19467 19468 19469 19470 19471 19472 19473 19474 19475 19476 19477 19478 19479 19480 19481 19482 19483 19484 19485 19486 19487 19488 19489 19490 19491 19492 19493 19494 19495 19496 19497 19498 19499 19500 19501 19502 19503 19504 19505 19506 19507 19508 19509 19510 19511 19512 19513 19514 19515 19516 19517 19518 19519 19520 19521 19522 19523 19524 19525 19526 19527 19528 19529 19530 19531 19532 19533 19534 19535 19536 19537 19538 19539 19540 19541 19542 19543 19544 19545 19546 19547 19548 19549 19550 19551 19552 19553 19554 19555 19556 19557 19558 19559 19560 19561 19562 19563 19564 19565 19566 19567 19568 19569 19570 19571 19572 19573 19574 19575 19576 19577 19578 19579 19580 19581 19582 19583 19584 19585 19586 19587 19588 19589 19590 19591 19592 19593 19594 19595 19596 19597 19598 19599 19600 19601 19602 19603 19604 19605 19606 19607 19608 19609 19610 19611 19612 19613 19614 19615 19616 19617 19618 19619 19620 19621 19622 19623 19624 19625 19626 19627 19628 19629 19630 19631 19632 19633 19634 19635 19636 19637 19638 19639 19640 19641 19642 19643 19644 19645 19646 19647 19648 19649 19650 19651 19652 19653 19654 19655 19656 19657 19658 19659 19660 19661 19662 19663 19664 19665 19666 19667 19668 19669 19670 19671 19672 19673 19674 19675 19676 19677 19678 19679 19680 19681 19682 19683 19684 19685 19686 19687 19688 19689 19690 19691 19692 19693 19694 19695 19696 19697 19698 19699 19700 19701 19702 19703 19704 19705 19706 19707 19708 19709 19710 19711 19712 19713 19714 19715 19716 19717 19718 19719 19720 19721 19722 19723 19724 19725 19726 19727 19728 19729 19730 19731 19732 19733 19734 19735 19736 19737 19738 19739 19740 19741 19742 19743 19744 19745 19746 19747 19748 19749 19750 19751 19752 19753 19754 19755 19756 19757 19758 19759 19760 19761 19762 19763 19764 19765 19766 19767 19768 19769 19770 19771 19772 19773 19774 19775 19776 19777 19778 19779 19780 19781 19782 19783 19784 19785 19786 19787 19788 19789 19790 19791 19792 19793 19794 19795 19796 19797 19798 19799 19800 19801 19802 19803 19804 19805 19806 19807 19808 19809 19810 19811 19812 19813 19814 19815 19816 19817 19818 19819 19820 19821 19822 19823 19824 19825 19826 19827 19828 19829 19830 19831 19832 19833 19834 19835 19836 19837 19838 19839 19840 19841 19842 19843 19844 19845 19846 19847 19848 19849 19850 19851 19852 19853 19854 19855 19856 19857 19858 19859 19860 19861 19862 19863 19864 19865 19866 19867 19868 19869 19870 19871 19872 19873 19874 19875 19876 19877 19878 19879 19880 19881 19882 19883 19884 19885 19886 19887 19888 19889 19890 19891 19892 19893 19894 19895 19896 19897 19898 19899 19900 19901 19902 19903 19904 19905 19906 19907 19908 19909 19910 19911 19912 19913 19914 19915 19916 19917 19918 19919 19920 19921 19922 19923 19924 19925 19926 19927 19928 19929 19930 19931 19932 19933 19934 19935 19936 19937 19938 19939 19940 19941 19942 19943 19944 19945 19946 19947 19948 19949 19950 19951 19952 19953 19954 19955 19956 19957 19958 19959 19960 19961 19962 19963 19964 19965 19966 19967 19968 19969 19970 19971 19972 19973 19974 19975 19976 19977 19978 19979 19980 19981 19982 19983 19984 19985 19986 19987 19988 19989 19990 19991 19992 19993 19994 19995 19996 19997 19998 19999 20000 20001 20002 20003 20004 20005 20006 20007 20008 20009 20010 20011 20012 20013 20014 20015 20016 20017 20018 20019 20020 20021 20022 20023 20024 20025 20026 20027 20028 20029 20030 20031 20032 20033 20034 20035 20036 20037 20038 20039 20040 20041 20042 20043 20044 20045 20046 20047 20048 20049 20050 20051 20052 20053 20054 20055 20056 20057 20058 20059 20060 20061 20062 20063 20064 20065 20066 20067 20068 20069 20070 20071 20072 20073 20074 20075 20076 20077 20078 20079 20080 20081 20082 20083 20084 20085 20086 20087 20088 20089 20090 20091 20092 20093 20094 20095 20096 20097 20098 20099 20100 20101 20102 20103 20104 20105 20106 20107 20108 20109 20110 20111 20112 20113 20114 20115 20116 20117 20118 20119 20120 20121 20122 20123 20124 20125 20126 20127 20128 20129 20130 20131 20132 20133 20134 20135 20136 20137 20138 20139 20140 20141 20142 20143 20144 20145 20146 20147 20148 20149 20150 20151 20152 20153 20154 20155 20156 20157 20158 20159 20160 20161 20162 20163 20164 20165 20166 20167 20168 20169 20170 20171 20172 20173 20174 20175 20176 20177 20178 20179 20180 20181 20182 20183 20184 20185 20186 20187 20188 20189 20190 20191 20192 20193 20194 20195 20196 20197 20198 20199 20200 20201 20202 20203 20204 20205 20206 20207 20208 20209 20210 20211 20212 20213 20214 20215 20216 20217 20218 20219 20220 20221 20222 20223 20224 20225 20226 20227 20228 20229 20230 20231 20232 20233 20234 20235 20236 20237 20238 20239 20240 20241 20242 20243 20244 20245 20246 20247 20248 20249 20250 20251 20252 20253 20254 20255 20256 20257 20258 20259 20260 20261 20262 20263 20264 20265 20266 20267 20268 20269 20270 20271 20272 20273 20274 20275 20276 20277 20278 20279 20280 20281 20282 20283 20284 20285 20286 20287 20288 20289 20290 20291 20292 20293 20294 20295 20296 20297 20298 20299 20300 20301 20302 20303 20304 20305 20306 20307 20308 20309 20310 20311 20312 20313 20314 20315 20316 20317 20318 20319 20320 20321 20322 20323 20324 20325 20326 20327 20328 20329 20330 20331 20332 20333 20334 20335 20336 20337 20338 20339 20340 20341 20342 20343 20344 20345 20346 20347 20348 20349 20350 20351 20352 20353 20354 20355 20356 20357 20358 20359 20360 20361 20362 20363 20364 20365 20366 20367 20368 20369 20370 20371 20372 20373 20374 20375 20376 20377 20378 20379 20380 20381 20382 20383 20384 20385 20386 20387 20388 20389 20390 20391 20392 20393 20394 20395 20396 20397 20398 20399 20400 20401 20402 20403 20404 20405 20406 20407 20408 20409 20410 20411 20412 20413 20414 20415 20416 20417 20418 20419 20420 20421 20422 20423 20424 20425 20426 20427 20428 20429 20430 20431 20432 20433 20434 20435 20436 20437 20438 20439 20440 20441 20442 20443 20444 20445 20446 20447 20448 20449 20450 20451 20452 20453 20454 20455 20456 20457 20458 20459 20460 20461 20462 20463 20464 20465 20466 20467 20468 20469 20470 20471 20472 20473 20474 20475 20476 20477 20478 20479 20480 20481 20482 20483 20484 20485 20486 20487 20488 20489 20490 20491 20492 20493 20494 20495 20496 20497 20498 20499 20500 20501 20502 20503 20504 20505 20506 20507 20508 20509 20510 20511 20512 20513 20514 20515 20516 20517 20518 20519 20520 20521 20522 20523 20524 20525 20526 20527 20528 20529 20530 20531 20532 20533 20534 20535 20536 20537 20538 20539 20540 20541 20542 20543 20544 20545 20546 20547 20548 20549 20550 20551 20552 20553 20554 20555 20556 20557 20558 20559 20560 20561 20562 20563 20564 20565 20566 20567 20568 20569 20570 20571 20572 20573 20574 20575 20576 20577 20578 20579 20580 20581 20582 20583 20584 20585 20586 20587 20588 20589 20590 20591 20592 20593 20594 20595 20596 20597 20598 20599 20600 20601 20602 20603 20604 20605 20606 20607 20608 20609 20610 20611 20612 20613 20614 20615 20616 20617 20618 20619 20620 20621 20622 20623 20624 20625 20626 20627 20628 20629 20630 20631 20632 20633 20634 20635 20636 20637 20638 20639 20640 20641 20642 20643 20644 20645 20646 20647 20648 20649 20650 20651 20652 20653 20654 20655 20656 20657 20658 20659 20660 20661 20662 20663 20664 20665 20666 20667 20668 20669 20670 20671 20672 20673 20674 20675 20676 20677 20678 20679 20680 20681 20682 20683 20684 20685 20686 20687 20688 20689 20690 20691 20692 20693 20694 20695 20696 20697 20698 20699 20700 20701 20702 20703 20704 20705 20706 20707 20708 20709 20710 20711 20712 20713 20714 20715 20716 20717 20718 20719 20720 20721 20722 20723 20724 20725 20726 20727 20728 20729 20730 20731 20732 20733 20734 20735 20736 20737 20738 20739 20740 20741 20742 20743 20744 20745 20746 20747 20748 20749 20750 20751 20752 20753 20754 20755 20756 20757 20758 20759 20760 20761 20762 20763 20764 20765 20766 20767 20768 20769 20770 20771 20772 20773 20774 20775 20776 20777 20778 20779 20780 20781 20782 20783 20784 20785 20786 20787 20788 20789 20790 20791 20792 20793 20794 20795 20796 20797 20798 20799 20800 20801 20802 20803 20804 20805 20806 20807 20808 20809 20810 20811 20812 20813 20814 20815 20816 20817 20818 20819 20820 20821 20822 20823 20824 20825 20826 20827 20828 20829 20830 20831 20832 20833 20834 20835 20836 20837 20838 20839 20840 20841 20842 20843 20844 20845 20846 20847 20848 20849 20850 20851 20852 20853 20854 20855 20856 20857 20858 20859 20860 20861 20862 20863 20864 20865 20866 20867 20868 20869 20870 20871 20872 20873 20874 20875 20876 20877 20878 20879 20880 20881 20882 20883 20884 20885 20886 20887 20888 20889 20890 20891 20892 20893 20894 20895 20896 20897 20898 20899 20900 20901 20902 20903 20904 20905 20906 20907 20908 20909 20910 20911 20912 20913 20914 20915 20916 20917 20918 20919 20920 20921 20922 20923 20924 20925 20926 20927 20928 20929 20930 20931 20932 20933 20934 20935 20936 20937 20938 20939 20940 20941 20942 20943 20944 20945 20946 20947 20948 20949 20950 20951 20952 20953 20954 20955 20956 20957 20958 20959 20960 20961 20962 20963 20964 20965 20966 20967 20968 20969 20970 20971 20972 20973 20974 20975 20976 20977 20978 20979 20980 20981 20982 20983 20984 20985 20986 20987 20988 20989 20990 20991 20992 20993 20994 20995 20996 20997 20998 20999 21000 21001 21002 21003 21004 21005 21006 21007 21008 21009 21010 21011 21012 21013 21014 21015 21016 21017 21018 21019 21020 21021 21022 21023 21024 21025 21026 21027 21028 21029 21030 21031 21032 21033 21034 21035 21036 21037 21038 21039 21040 21041 21042 21043 21044 21045 21046 21047 21048 21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 21089 21090 21091 21092 21093 21094 21095 21096 21097 21098 21099 21100 21101 21102 21103 21104 21105 21106 21107 21108 21109 21110 21111 21112 21113 21114 21115 21116 21117 21118 21119 21120 21121 21122 21123 21124 21125 21126 21127 21128 21129 21130 21131 21132 21133 21134 21135 21136 21137 21138 21139 21140 21141 21142 21143 21144 21145 21146 21147 21148 21149 21150 21151 21152 21153 21154 21155 21156 21157 21158 21159 21160 21161 21162 21163 21164 21165 21166 21167 21168 21169 21170 21171 21172 21173 21174 21175 21176 21177 21178 21179 21180 21181 21182 21183 21184 21185 21186 21187 21188 21189 21190 21191 21192 21193 21194 21195 21196 21197 21198 21199 21200 21201 21202 21203 21204 21205 21206 21207 21208 21209 21210 21211 21212 21213 21214 21215 21216 21217 21218 21219 21220 21221 21222 21223 21224 21225 21226 21227 21228 21229 21230 21231 21232 21233 21234 21235 21236 21237 21238 21239 21240 21241 21242 21243 21244 21245 21246 21247 21248 21249 21250 21251 21252 21253 21254 21255 21256 21257 21258 21259 21260 21261 21262 21263 21264 21265 21266 21267 21268 21269 21270 21271 21272 21273 21274 21275 21276 21277 21278 21279 21280 21281 21282 21283 21284 21285 21286 21287 21288 21289 21290 21291 21292 21293 21294 21295 21296 21297 21298 21299 21300 21301 21302 21303 21304 21305 21306 21307 21308 21309 21310 21311 21312 21313 21314 21315 21316 21317 21318 21319 21320 21321 21322 21323 21324 21325 21326 21327 21328 21329 21330 21331 21332 21333 21334 21335 21336 21337 21338 21339 21340 21341 21342 21343 21344 21345 21346 21347 21348 21349 21350 21351 21352 21353 21354 21355 21356 21357 21358 21359 21360 21361 21362 21363 21364 21365 21366 21367 21368 21369 21370 21371 21372 21373 21374 21375 21376 21377 21378 21379 21380 21381 21382 21383 21384 21385 21386 21387 21388 21389 21390 21391 21392 21393 21394 21395 21396 21397 21398 21399 21400 21401 21402 21403 21404 21405 21406 21407 21408 21409 21410 21411 21412 21413 21414 21415 21416 21417 21418 21419 21420 21421 21422 21423 21424 21425 21426 21427 21428 21429 21430 21431 21432 21433 21434 21435 21436 21437 21438 21439 21440 21441 21442 21443 21444 21445 21446 21447 21448 21449 21450 21451 21452 21453 21454 21455 21456 21457 21458 21459 21460 21461 21462 21463 21464 21465 21466 21467 21468 21469 21470 21471 21472 21473 21474 21475 21476 21477 21478 21479 21480 21481 21482 21483 21484 21485 21486 21487 21488 21489 21490 21491 21492 21493 21494 21495 21496 21497 21498 21499 21500 21501 21502 21503 21504 21505 21506 21507 21508 21509 21510 21511 21512 21513 21514 21515 21516 21517 21518 21519 21520 21521 21522 21523 21524 21525 21526 21527 21528 21529 21530 21531 21532 21533 21534 21535 21536 21537 21538 21539 21540 21541 21542 21543 21544 21545 21546 21547 21548 21549 21550 21551 21552 21553 21554 21555 21556 21557 21558 21559 21560 21561 21562 21563 21564 21565 21566 21567 21568 21569 21570 21571 21572 21573 21574 21575 21576 21577 21578 21579 21580 21581 21582 21583 21584 21585 21586 21587 21588 21589 21590 21591 21592 21593 21594 21595 21596 21597 21598 21599 21600 21601 21602 21603 21604 21605 21606 21607 21608 21609 21610 21611 21612 21613 21614 21615 21616 21617 21618 21619 21620 21621 21622 21623 21624 21625 21626 21627 21628 21629 21630 21631 21632 21633 21634 21635 21636 21637 21638 21639 21640 21641 21642 21643 21644 21645 21646 21647 21648 21649 21650 21651 21652 21653 21654 21655 21656 21657 21658 21659 21660 21661 21662 21663 21664 21665 21666 21667 21668 21669 21670 21671 21672 21673 21674 21675 21676 21677 21678 21679 21680 21681 21682 21683 21684 21685 21686 21687 21688 21689 21690 21691 21692 21693 21694 21695 21696 21697 21698 21699 21700 21701 21702 21703 21704 21705 21706 21707 21708 21709 21710 21711 21712 21713 21714 21715 21716 21717 21718 21719 21720 21721 21722 21723 21724 21725 21726 21727 21728 21729 21730 21731 21732 21733 21734 21735 21736 21737 21738 21739 21740 21741 21742 21743 21744 21745 21746 21747 21748 21749 21750 21751 21752 21753 21754 21755 21756 21757 21758 21759 21760 21761 21762 21763 21764 21765 21766 21767 21768 21769 21770 21771 21772 21773 21774 21775 21776 21777 21778 21779 21780 21781 21782 21783 21784 21785 21786 21787 21788 21789 21790 21791 21792 21793 21794 21795 21796 21797 21798 21799 21800 21801 21802 21803 21804 21805 21806 21807 21808 21809 21810 21811 21812 21813 21814 21815 21816 21817 21818 21819 21820 21821 21822 21823 21824 21825 21826 21827 21828 21829 21830 21831 21832 21833 21834 21835 21836 21837 21838 21839 21840 21841 21842 21843 21844 21845 21846 21847 21848 21849 21850 21851 21852 21853 21854 21855 21856 21857 21858 21859 21860 21861 21862 21863 21864 21865 21866 21867 21868 21869 21870 21871 21872 21873 21874 21875 21876 21877 21878 21879 21880 21881 21882 21883 21884 21885 21886 21887 21888 21889 21890 21891 21892 21893 21894 21895 21896 21897 21898 21899 21900 21901 21902 21903 21904 21905 21906 21907 21908 21909 21910 21911 21912 21913 21914 21915 21916 21917 21918 21919 21920 21921 21922 21923 21924 21925 21926 21927 21928 21929 21930 21931 21932 21933 21934 21935 21936 21937 21938 21939 21940 21941 21942 21943 21944 21945 21946 21947 21948 21949 21950 21951 21952 21953 21954 21955 21956 21957 21958 21959 21960 21961 21962 21963 21964 21965 21966 21967 21968 21969 21970 21971 21972 21973 21974 21975 21976 21977 21978 21979 21980 21981 21982 21983 21984 21985 21986 21987 21988 21989 21990 21991 21992 21993 21994 21995 21996 21997 21998 21999 22000 22001 22002 22003 22004 22005 22006 22007 22008 22009 22010 22011 22012 22013 22014 22015 22016 22017 22018 22019 22020 22021 22022 22023 22024 22025 22026 22027 22028 22029 22030 22031 22032 22033 22034 22035 22036 22037 22038 22039 22040 22041 22042 22043 22044 22045 22046 22047 22048 22049 22050 22051 22052 22053 22054 22055 22056 22057 22058 22059 22060 22061 22062 22063 22064 22065 22066 22067 22068 22069 22070 22071 22072 22073 22074 22075 22076 22077 22078 22079 22080 22081 22082 22083 22084 22085 22086 22087 22088 22089 22090 22091 22092 22093 22094 22095 22096 22097 22098 22099 22100 22101 22102 22103 22104 22105 22106 22107 22108 22109 22110 22111 22112 22113 22114 22115 22116 22117 22118 22119 22120 22121 22122 22123 22124 22125 22126 22127 22128 22129 22130 22131 22132 22133 22134 22135 22136 22137 22138 22139 22140 22141 22142 22143 22144 22145 22146 22147 22148 22149 22150 22151 22152 22153 22154 22155 22156 22157 22158 22159 22160 22161 22162 22163 22164 22165 22166 22167 22168 22169 22170 22171 22172 22173 22174 22175 22176 22177 22178 22179 22180 22181 22182 22183 22184 22185 22186 22187 22188 22189 22190 22191 22192 22193 22194 22195 22196 22197 22198 22199 22200 22201 22202 22203 22204 22205 22206 22207 22208 22209 22210 22211 22212 22213 22214 22215 22216 22217 22218 22219 22220 22221 22222 22223 22224 22225 22226 22227 22228 22229 22230 22231 22232 22233 22234 22235 22236 22237 22238 22239 22240 22241 22242 22243 22244 22245 22246 22247 22248 22249 22250 22251 22252 22253 22254 22255 22256 22257 22258 22259 22260 22261 22262 22263 22264 22265 22266 22267 22268 22269 22270 22271 22272 22273 22274 22275 22276 22277 22278 22279 22280 22281 22282 22283 22284 22285 22286 22287 22288 22289 22290 22291 22292 22293 22294 22295 22296 22297 22298 22299 22300 22301 22302 22303 22304 22305 22306 22307 22308 22309 22310 22311 22312 22313 22314 22315 22316 22317 22318 22319 22320 22321 22322 22323 22324 22325 22326 22327 22328 22329 22330 22331 22332 22333 22334 22335 22336 22337 22338 22339 22340 22341 22342 22343 22344 22345 22346 22347 22348 22349 22350 22351 22352 22353 22354 22355 22356 22357 22358 22359 22360 22361 22362 22363 22364 22365 22366 22367 22368 22369 22370 22371 22372 22373 22374 22375 22376 22377 22378 22379 22380 22381 22382 22383 22384 22385 22386 22387 22388 22389 22390 22391 22392 22393 22394 22395 22396 22397 22398 22399 22400 22401 22402 22403 22404 22405 22406 22407 22408 22409 22410 22411 22412 22413 22414 22415 22416 22417 22418 22419 22420 22421 22422 22423 22424 22425 22426 22427 22428 22429 22430 22431 22432 22433 22434 22435 22436 22437 22438 22439 22440 22441 22442 22443 22444 22445 22446 22447 22448 22449 22450 22451 22452 22453 22454 22455 22456 22457 22458 22459 22460 22461 22462 22463 22464 22465 22466 22467 22468 22469 22470 22471 22472 22473 22474 22475 22476 22477 22478 22479 22480 22481 22482 22483 22484 22485 22486 22487 22488 22489 22490 22491 22492 22493 22494 22495 22496 22497 22498 22499 22500 22501 22502 22503 22504 22505 22506 22507 22508 22509 22510 22511 22512 22513 22514 22515 22516 22517 22518 22519 22520 22521 22522 22523 22524 22525 22526 22527 22528 22529 22530 22531 22532 22533 22534 22535 22536 22537 22538 22539 22540 22541 22542 22543 22544 22545 22546 22547 22548 22549 22550 22551 22552 22553 22554 22555 22556 22557 22558 22559 22560 22561 22562 22563 22564 22565 22566 22567 22568 22569 22570 22571 22572 22573 22574 22575 22576 22577 22578 22579 22580 22581 22582 22583 22584 22585 22586 22587 22588 22589 22590 22591 22592 22593 22594 22595 22596 22597 22598 22599 22600 22601 22602 22603 22604 22605 22606 22607 22608 22609 22610 22611 22612 22613 22614 22615 22616 22617 22618 22619 22620 22621 22622 22623 22624 22625 22626 22627 22628 22629 22630 22631 22632 22633 22634 22635 22636 22637 22638 22639 22640 22641 22642 22643 22644 22645 22646 22647 22648 22649 22650 22651 22652 22653 22654 22655 22656 22657 22658 22659 22660 22661 22662 22663 22664 22665 22666 22667 22668 22669 22670 22671 22672 22673 22674 22675 22676 22677 22678 22679 22680 22681 22682 22683 22684 22685 22686 22687 22688 22689 22690 22691 22692 22693 22694 22695 22696 22697 22698 22699 22700 22701 22702 22703 22704 22705 22706 22707 22708 22709 22710 22711 22712 22713 22714 22715 22716 22717 22718 22719 22720 22721 22722 22723 22724 22725 22726 22727 22728 22729 22730 22731 22732 22733 22734 22735 22736 22737 22738 22739 22740 22741 22742 22743 22744 22745 22746 22747 22748 22749 22750 22751 22752 22753 22754 22755 22756 22757 22758 22759 22760 22761 22762 22763 22764 22765 22766 22767 22768 22769 22770 22771 22772 22773 22774 22775 22776 22777 22778 22779 22780 22781 22782 22783 22784 22785 22786 22787 22788 22789 22790 22791 22792 22793 22794 22795 22796 22797 22798 22799 22800 22801 22802 22803 22804 22805 22806 22807 22808 22809 22810 22811 22812 22813 22814 22815 22816 22817 22818 22819 22820 22821 22822 22823 22824 22825 22826 22827 22828 22829 22830 22831 22832 22833 22834 22835 22836 22837 22838 22839 22840 22841 22842 22843 22844 22845 22846 22847 22848 22849 22850 22851 22852 22853 22854 22855 22856 22857 22858 22859 22860 22861 22862 22863 22864 22865 22866 22867 22868 22869 22870 22871 22872 22873 22874 22875 22876 22877 22878 22879 22880 22881 22882 22883 22884 22885 22886 22887 22888 22889 22890 22891 22892 22893 22894 22895 22896 22897 22898 22899 22900 22901 22902 22903 22904 22905 22906 22907 22908 22909 22910 22911 22912 22913 22914 22915 22916 22917 22918 22919 22920 22921 22922 22923 22924 22925 22926 22927 22928 22929 22930 22931 22932 22933 22934 22935 22936 22937 22938 22939 22940 22941 22942 22943 22944 22945 22946 22947 22948 22949 22950 22951 22952 22953 22954 22955 22956 22957 22958 22959 22960 22961 22962 22963 22964 22965 22966 22967 22968 22969 22970 22971 22972 22973 22974 22975 22976 22977 22978 22979 22980 22981 22982 22983 22984 22985 22986 22987 22988 22989 22990 22991 22992 22993 22994 22995 22996 22997 22998 22999 23000 23001 23002 23003 23004 23005 23006 23007 23008 23009 23010 23011 23012 23013 23014 23015 23016 23017 23018 23019 23020 23021 23022 23023 23024 23025 23026 23027 23028 23029 23030 23031 23032 23033 23034 23035 23036 23037 23038 23039 23040 23041 23042 23043 23044 23045 23046 23047 23048 23049 23050 23051 23052 23053 23054 23055 23056 23057 23058 23059 23060 23061 23062 23063 23064 23065 23066 23067 23068 23069 23070 23071 23072 23073 23074 23075 23076 23077 23078 23079 23080 23081 23082 23083 23084 23085 23086 23087 23088 23089 23090 23091 23092 23093 23094 23095 23096 23097 23098 23099 23100 23101 23102 23103 23104 23105 23106 23107 23108 23109 23110 23111 23112 23113 23114 23115 23116 23117 23118 23119 23120 23121 23122 23123 23124 23125 23126 23127 23128 23129 23130 23131 23132 23133 23134 23135 23136 23137 23138 23139 23140 23141 23142 23143 23144 23145 23146 23147 23148 23149 23150 23151 23152 23153 23154 23155 23156 23157 23158 23159 23160 23161 23162 23163 23164 23165 23166 23167 23168 23169 23170 23171 23172 23173 23174 23175 23176 23177 23178 23179 23180 23181 23182 23183 23184 23185 23186 23187 23188 23189 23190 23191 23192 23193 23194 23195 23196 23197 23198 23199 23200 23201 23202 23203 23204 23205 23206 23207 23208 23209 23210 23211 23212 23213 23214 23215 23216 23217 23218 23219 23220 23221 23222 23223 23224 23225 23226 23227 23228 23229 23230 23231 23232 23233 23234 23235 23236 23237 23238 23239 23240 23241 23242 23243 23244 23245 23246 23247 23248 23249 23250 23251 23252 23253 23254 23255 23256 23257 23258 23259 23260 23261 23262 23263 23264 23265 23266 23267 23268 23269 23270 23271 23272 23273 23274 23275 23276 23277 23278 23279 23280 23281 23282 23283 23284 23285 23286 23287 23288 23289 23290 23291 23292 23293 23294 23295 23296 23297 23298 23299 23300 23301 23302 23303 23304 23305 23306 23307 23308 23309 23310 23311 23312 23313 23314 23315 23316 23317 23318 23319 23320 23321 23322 23323 23324 23325 23326 23327 23328 23329 23330 23331 23332 23333 23334 23335 23336 23337 23338 23339 23340 23341 23342 23343 23344 23345 23346 23347 23348 23349 23350 23351 23352 23353 23354 23355 23356 23357 23358 23359 23360 23361 23362 23363 23364 23365 23366 23367 23368 23369 23370 23371 23372 23373 23374 23375 23376 23377 23378 23379 23380 23381 23382 23383 23384 23385 23386 23387 23388 23389 23390 23391 23392 23393 23394 23395 23396 23397 23398 23399 23400 23401 23402 23403 23404 23405 23406 23407 23408 23409 23410 23411 23412 23413 23414 23415 23416 23417 23418 23419 23420 23421 23422 23423 23424 23425 23426 23427 23428 23429 23430 23431 23432 23433 23434 23435 23436 23437 23438 23439 23440 23441 23442 23443 23444 23445 23446 23447 23448 23449 23450 23451 23452 23453 23454 23455 23456 23457 23458 23459 23460 23461 23462 23463 23464 23465 23466 23467 23468 23469 23470 23471 23472 23473 23474 23475 23476 23477 23478 23479 23480 23481 23482 23483 23484 23485 23486 23487 23488 23489 23490 23491 23492 23493 23494 23495 23496 23497 23498 23499 23500 23501 23502 23503 23504 23505 23506 23507 23508 23509 23510 23511 23512 23513 23514 23515 23516 23517 23518 23519 23520 23521 23522 23523 23524 23525 23526 23527 23528 23529 23530 23531 23532 23533 23534 23535 23536 23537 23538 23539 23540 23541 23542 23543 23544 23545 23546 23547 23548 23549 23550 23551 23552 23553 23554 23555 23556 23557 23558 23559 23560 23561 23562 23563 23564 23565 23566 23567 23568 23569 23570 23571 23572 23573 23574 23575 23576 23577 23578 23579 23580 23581 23582 23583 23584 23585 23586 23587 23588 23589 23590 23591 23592 23593 23594 23595 23596 23597 23598 23599 23600 23601 23602 23603 23604 23605 23606 23607 23608 23609 23610 23611 23612 23613 23614 23615 23616 23617 23618 23619 23620 23621 23622 23623 23624 23625 23626 23627 23628 23629 23630 23631 23632 23633 23634 23635 23636 23637 23638 23639 23640 23641 23642 23643 23644 23645 23646 23647 23648 23649 23650 23651 23652 23653 23654 23655 23656 23657 23658 23659 23660 23661 23662 23663 23664 23665 23666 23667 23668 23669 23670 23671 23672 23673 23674 23675 23676 23677 23678 23679 23680 23681 23682 23683 23684 23685 23686 23687 23688 23689 23690 23691 23692 23693 23694 23695 23696 23697 23698 23699 23700 23701 23702 23703 23704 23705 23706 23707 23708 23709 23710 23711 23712 23713 23714 23715 23716 23717 23718 23719 23720 23721 23722 23723 23724 23725 23726 23727 23728 23729 23730 23731 23732 23733 23734 23735 23736 23737 23738 23739 23740 23741 23742 23743 23744 23745 23746 23747 23748 23749 23750 23751 23752 23753 23754 23755 23756 23757 23758 23759 23760 23761 23762 23763 23764 23765 23766 23767 23768 23769 23770 23771 23772 23773 23774 23775 23776 23777 23778 23779 23780 23781 23782 23783 23784 23785 23786 23787 23788 23789 23790 23791 23792 23793 23794 23795 23796 23797 23798 23799 23800 23801 23802 23803 23804 23805 23806 23807 23808 23809 23810 23811 23812 23813 23814 23815 23816 23817 23818 23819 23820 23821 23822 23823 23824 23825 23826 23827 23828 23829 23830 23831 23832 23833 23834 23835 23836 23837 23838 23839 23840 23841 23842 23843 23844 23845 23846 23847 23848 23849 23850 23851 23852 23853 23854 23855 23856 23857 23858 23859 23860 23861 23862 23863 23864 23865 23866 23867 23868 23869 23870 23871 23872 23873 23874 23875 23876 23877 23878 23879 23880 23881 23882 23883 23884 23885 23886 23887 23888 23889 23890 23891 23892 23893 23894 23895 23896 23897 23898 23899 23900 23901 23902 23903 23904 23905 23906 23907 23908 23909 23910 23911 23912 23913 23914 23915 23916 23917 23918 23919 23920 23921 23922 23923 23924 23925 23926 23927 23928 23929 23930 23931 23932 23933 23934 23935 23936 23937 23938 23939 23940 23941 23942 23943 23944 23945 23946 23947 23948 23949 23950 23951 23952 23953 23954 23955 23956 23957 23958 23959 23960 23961 23962 23963 23964 23965 23966 23967 23968 23969 23970 23971 23972 23973 23974 23975 23976 23977 23978 23979 23980 23981 23982 23983 23984 23985 23986 23987 23988 23989 23990 23991 23992 23993 23994 23995 23996 23997 23998 23999 24000 24001 24002 24003 24004 24005 24006 24007 24008 24009 24010 24011 24012 24013 24014 24015 24016 24017 24018 24019 24020 24021 24022 24023 24024 24025 24026 24027 24028 24029 24030 24031 24032 24033 24034 24035 24036 24037 24038 24039 24040 24041 24042 24043 24044 24045 24046 24047 24048 24049 24050 24051 24052 24053 24054 24055 24056 24057 24058 24059 24060 24061 24062 24063 24064 24065 24066 24067 24068 24069 24070 24071 24072 24073 24074 24075 24076 24077 24078 24079 24080 24081 24082 24083 24084 24085 24086 24087 24088 24089 24090 24091 24092 24093 24094 24095 24096 24097 24098 24099 24100 24101 24102 24103 24104 24105 24106 24107 24108 24109 24110 24111 24112 24113 24114 24115 24116 24117 24118 24119 24120 24121 24122 24123 24124 24125 24126 24127 24128 24129 24130 24131 24132 24133 24134 24135 24136 24137 24138 24139 24140 24141 24142 24143 24144 24145 24146 24147 24148 24149 24150 24151 24152 24153 24154 24155 24156 24157 24158 24159 24160 24161 24162 24163 24164 24165 24166 24167 24168 24169 24170 24171 24172 24173 24174 24175 24176 24177 24178 24179 24180 24181 24182 24183 24184 24185 24186 24187 24188 24189 24190 24191 24192 24193 24194 24195 24196 24197 24198 24199 24200 24201 24202 24203 24204 24205 24206 24207 24208 24209 24210 24211 24212 24213 24214 24215 24216 24217 24218 24219 24220 24221 24222 24223 24224 24225 24226 24227 24228 24229 24230 24231 24232 24233 24234 24235 24236 24237 24238 24239 24240 24241 24242 24243 24244 24245 24246 24247 24248 24249 24250 24251 24252 24253 24254 24255 24256 24257 24258 24259 24260 24261 24262 24263 24264 24265 24266 24267 24268 24269 24270 24271 24272 24273 24274 24275 24276 24277 24278 24279 24280 24281 24282 24283 24284 24285 24286 24287 24288 24289 24290 24291 24292 24293 24294 24295 24296 24297 24298 24299 24300 24301 24302 24303 24304 24305 24306 24307 24308 24309 24310 24311 24312 24313 24314 24315 24316 24317 24318 24319 24320 24321 24322 24323 24324 24325 24326 24327 24328 24329 24330 24331 24332 24333 24334 24335 24336 24337 24338 24339 24340 24341 24342 24343 24344 24345 24346 24347 24348 24349 24350 24351 24352 24353 24354 24355 24356 24357 24358 24359 24360 24361 24362 24363 24364 24365 24366 24367 24368 24369 24370 24371 24372 24373 24374 24375 24376 24377 24378 24379 24380 24381 24382 24383 24384 24385 24386 24387 24388 24389 24390 24391 24392 24393 24394 24395 24396 24397 24398 24399 24400 24401 24402 24403 24404 24405 24406 24407 24408 24409 24410 24411 24412 24413 24414 24415 24416 24417 24418 24419 24420 24421 24422 24423 24424 24425 24426 24427 24428 24429 24430 24431 24432 24433 24434 24435 24436 24437 24438 24439 24440 24441 24442 24443 24444 24445 24446 24447 24448 24449 24450 24451 24452 24453 24454 24455 24456 24457 24458 24459 24460 24461 24462 24463 24464 24465 24466 24467 24468 24469 24470 24471 24472 24473 24474 24475 24476 24477 24478 24479 24480 24481 24482 24483 24484 24485 24486 24487 24488 24489 24490 24491 24492 24493 24494 24495 24496 24497 24498 24499 24500 24501 24502 24503 24504 24505 24506 24507 24508 24509 24510 24511 24512 24513 24514 24515 24516 24517 24518 24519 24520 24521 24522 24523 24524 24525 24526 24527 24528 24529 24530 24531 24532 24533 24534 24535 24536 24537 24538 24539 24540 24541 24542 24543 24544 24545 24546 24547 24548 24549 24550 24551 24552 24553 24554 24555 24556 24557 24558 24559 24560 24561 24562 24563 24564 24565 24566 24567 24568 24569 24570 24571 24572 24573 24574 24575 24576 24577 24578 24579 24580 24581 24582 24583 24584 24585 24586 24587 24588 24589 24590 24591 24592 24593 24594 24595 24596 24597 24598 24599 24600 24601 24602 24603 24604 24605 24606 24607 24608 24609 24610 24611 24612 24613 24614 24615 24616 24617 24618 24619 24620 24621 24622 24623 24624 24625 24626 24627 24628 24629 24630 24631 24632 24633 24634 24635 24636 24637 24638 24639 24640 24641 24642 24643 24644 24645 24646 24647 24648 24649 24650 24651 24652 24653 24654 24655 24656 24657 24658 24659 24660 24661 24662 24663 24664 24665 24666 24667 24668 24669 24670 24671 24672 24673 24674 24675 24676 24677 24678 24679 24680 24681 24682 24683 24684 24685 24686 24687 24688 24689 24690 24691 24692 24693 24694 24695 24696 24697 24698 24699 24700 24701 24702 24703 24704 24705 24706 24707 24708 24709 24710 24711 24712 24713 24714 24715 24716 24717 24718 24719 24720 24721 24722 24723 24724 24725 24726 24727 24728 24729 24730 24731 24732 24733 24734 24735 24736 24737 24738 24739 24740 24741 24742 24743 24744 24745 24746 24747 24748 24749 24750 24751 24752 24753 24754 24755 24756 24757 24758 24759 24760 24761 24762 24763 24764 24765 24766 24767 24768 24769 24770 24771 24772 24773 24774 24775 24776 24777 24778 24779 24780 24781 24782 24783 24784 24785 24786 24787 24788 24789 24790 24791 24792 24793 24794 24795 24796 24797 24798 24799 24800 24801 24802 24803 24804 24805 24806 24807 24808 24809 24810 24811 24812 24813 24814 24815 24816 24817 24818 24819 24820 24821 24822 24823 24824 24825 24826 24827 24828 24829 24830 24831 24832 24833 24834 24835 24836 24837 24838 24839 24840 24841 24842 24843 24844 24845 24846 24847 24848 24849 24850 24851 24852 24853 24854 24855 24856 24857 24858 24859 24860 24861 24862 24863 24864 24865 24866 24867 24868 24869 24870 24871 24872 24873 24874 24875 24876 24877 24878 24879 24880 24881 24882 24883 24884 24885 24886 24887 24888 24889 24890 24891 24892 24893 24894 24895 24896 24897 24898 24899 24900 24901 24902 24903 24904 24905 24906 24907 24908 24909 24910 24911 24912 24913 24914 24915 24916 24917 24918 24919 24920 24921 24922 24923 24924 24925 24926 24927 24928 24929 24930 24931 24932 24933 24934 24935 24936 24937 24938 24939 24940 24941 24942 24943 24944 24945 24946 24947 24948 24949 24950 24951 24952 24953 24954 24955 24956 24957 24958 24959 24960 24961 24962 24963 24964 24965 24966 24967 24968 24969 24970 24971 24972 24973 24974 24975 24976 24977 24978 24979 24980 24981 24982 24983 24984 24985 24986 24987 24988 24989 24990 24991 24992 24993 24994 24995 24996 24997 24998 24999 25000 25001 25002 25003 25004 25005 25006 25007 25008 25009 25010 25011 25012 25013 25014 25015 25016 25017 25018 25019 25020 25021 25022 25023 25024 25025 25026 25027 25028 25029 25030 25031 25032 25033 25034 25035 25036 25037 25038 25039 25040 25041 25042 25043 25044 25045 25046 25047 25048 25049 25050 25051 25052 25053 25054 25055 25056 25057 25058 25059 25060 25061 25062 25063 25064 25065 25066 25067 25068 25069 25070 25071 25072 25073 25074 25075 25076 25077 25078 25079 25080 25081 25082 25083 25084 25085 25086 25087 25088 25089 25090 25091 25092 25093 25094 25095 25096 25097 25098 25099 25100 25101 25102 25103 25104 25105 25106 25107 25108 25109 25110 25111 25112 25113 25114 25115 25116 25117 25118 25119 25120 25121 25122 25123 25124 25125 25126 25127 25128 25129 25130 25131 25132 25133 25134 25135 25136 25137 25138 25139 25140 25141 25142 25143 25144 25145 25146 25147 25148 25149 25150 25151 25152 25153 25154 25155 25156 25157 25158 25159 25160 25161 25162 25163 25164 25165 25166 25167 25168 25169 25170 25171 25172 25173 25174 25175 25176 25177 25178 25179 25180 25181 25182 25183 25184 25185 25186 25187 25188 25189 25190 25191 25192 25193 25194 25195 25196 25197 25198 25199 25200 25201 25202 25203 25204 25205 25206 25207 25208 25209 25210 25211 25212 25213 25214 25215 25216 25217 25218 25219 25220 25221 25222 25223 25224 25225 25226 25227 25228 25229 25230 25231 25232 25233 25234 25235 25236 25237 25238 25239 25240 25241 25242 25243 25244 25245 25246 25247 25248 25249 25250 25251 25252 25253 25254 25255 25256 25257 25258 25259 25260 25261 25262 25263 25264 25265 25266 25267 25268 25269 25270 25271 25272 25273 25274 25275 25276 25277 25278 25279 25280 25281 25282 25283 25284 25285 25286 25287 25288 25289 25290 25291 25292 25293 25294 25295 25296 25297 25298 25299 25300 25301 25302 25303 25304 25305 25306 25307 25308 25309 25310 25311 25312 25313 25314 25315 25316 25317 25318 25319 25320 25321 25322 25323 25324 25325 25326 25327 25328 25329 25330 25331 25332 25333 25334 25335 25336 25337 25338 25339 25340 25341 25342 25343 25344 25345 25346 25347 25348 25349 25350 25351 25352 25353 25354 25355 25356 25357 25358 25359 25360 25361 25362 25363 25364 25365 25366 25367 25368 25369 25370 25371 25372 25373 25374 25375 25376 25377 25378 25379 25380 25381 25382 25383 25384 25385 25386 25387 25388 25389 25390 25391 25392 25393 25394 25395 25396 25397 25398 25399 25400 25401 25402 25403 25404 25405 25406 25407 25408 25409 25410 25411 25412 25413 25414 25415 25416 25417 25418 25419 25420 25421 25422 25423 25424 25425 25426 25427 25428 25429 25430 25431 25432 25433 25434 25435 25436 25437 25438 25439 25440 25441 25442 25443 25444 25445 25446 25447 25448 25449 25450 25451 25452 25453 25454 25455 25456 25457 25458 25459 25460 25461 25462 25463 25464 25465 25466 25467 25468 25469 25470 25471 25472 25473 25474 25475 25476 25477 25478 25479 25480 25481 25482 25483 25484 25485 25486 25487 25488 25489 25490 25491 25492 25493 25494 25495 25496 25497 25498 25499 25500 25501 25502 25503 25504 25505 25506 25507 25508 25509 25510 25511 25512 25513 25514 25515 25516 25517 25518 25519 25520 25521 25522 25523 25524 25525 25526 25527 25528 25529 25530 25531 25532 25533 25534 25535 25536 25537 25538 25539 25540 25541 25542 25543 25544 25545 25546 25547 25548 25549 25550 25551 25552 25553 25554 25555 25556 25557 25558 25559 25560 25561 25562 25563 25564 25565 25566 25567 25568 25569 25570 25571 25572 25573 25574 25575 25576 25577 25578 25579 25580 25581 25582 25583 25584 25585 25586 25587 25588 25589 25590 25591 25592 25593 25594 25595 25596 25597 25598 25599 25600 25601 25602 25603 25604 25605 25606 25607 25608 25609 25610 25611 25612 25613 25614 25615 25616 25617 25618 25619 25620 25621 25622 25623 25624 25625 25626 25627 25628 25629 25630 25631 25632 25633 25634 25635 25636 25637 25638 25639 25640 25641 25642 25643 25644 25645 25646 25647 25648 25649 25650 25651 25652 25653 25654 25655 25656 25657 25658 25659 25660 25661 25662 25663 25664 25665 25666 25667 25668 25669 25670 25671 25672 25673 25674 25675 25676 25677 25678 25679 25680 25681 25682 25683 25684 25685 25686 25687 25688 25689 25690 25691 25692 25693 25694 25695 25696 25697 25698 25699 25700 25701 25702 25703 25704 25705 25706 25707 25708 25709 25710 25711 25712 25713 25714 25715 25716 25717 25718 25719 25720 25721 25722 25723 25724 25725 25726 25727 25728 25729 25730 25731 25732 25733 25734 25735 25736 25737 25738 25739 25740 25741 25742 25743 25744 25745 25746 25747 25748 25749 25750 25751 25752 25753 25754 25755 25756 25757 25758 25759 25760 25761 25762 25763 25764 25765 25766 25767 25768 25769 25770 25771 25772 25773 25774 25775 25776 25777 25778 25779 25780 25781 25782 25783 25784 25785 25786 25787 25788 25789 25790 25791 25792 25793 25794 25795 25796 25797 25798 25799 25800 25801 25802 25803 25804 25805 25806 25807 25808 25809 25810 25811 25812 25813 25814 25815 25816 25817 25818 25819 25820 25821 25822 25823 25824 25825 25826 25827 25828 25829 25830 25831 25832 25833 25834 25835 25836 25837 25838 25839 25840 25841 25842 25843 25844 25845 25846 25847 25848 25849 25850 25851 25852 25853 25854 25855 25856 25857 25858 25859 25860 25861 25862 25863 25864 25865 25866 25867 25868 25869 25870 25871 25872 25873 25874 25875 25876 25877 25878 25879 25880 25881 25882 25883 25884 25885 25886 25887 25888 25889 25890 25891 25892 25893 25894 25895 25896 25897 25898 25899 25900 25901 25902 25903 25904 25905 25906 25907 25908 25909 25910 25911 25912 25913 25914 25915 25916 25917 25918 25919 25920 25921 25922 25923 25924 25925 25926 25927 25928 25929 25930 25931 25932 25933 25934 25935 25936 25937 25938 25939 25940 25941 25942 25943 25944 25945 25946 25947 25948 25949 25950 25951 25952 25953 25954 25955 25956 25957 25958 25959 25960 25961 25962 25963 25964 25965 25966 25967 25968 25969 25970 25971 25972 25973 25974 25975 25976 25977 25978 25979 25980 25981 25982 25983 25984 25985 25986 25987 25988 25989 25990 25991 25992 25993 25994 25995 25996 25997 25998 25999 26000 26001 26002 26003 26004 26005 26006 26007 26008 26009 26010 26011 26012 26013 26014 26015 26016 26017 26018 26019 26020 26021 26022 26023 26024 26025 26026 26027 26028 26029 26030 26031 26032 26033 26034 26035 26036 26037 26038 26039 26040 26041 26042 26043 26044 26045 26046 26047 26048 26049 26050 26051 26052 26053 26054 26055 26056 26057 26058 26059 26060 26061 26062 26063 26064 26065 26066 26067 26068 26069 26070 26071 26072 26073 26074 26075 26076 26077 26078 26079 26080 26081 26082 26083 26084 26085 26086 26087 26088 26089 26090 26091 26092 26093 26094 26095 26096 26097 26098 26099 26100 26101 26102 26103 26104 26105 26106 26107 26108 26109 26110 26111 26112 26113 26114 26115 26116 26117 26118 26119 26120 26121 26122 26123 26124 26125 26126 26127 26128 26129 26130 26131 26132 26133 26134 26135 26136 26137 26138 26139 26140 26141 26142 26143 26144 26145 26146 26147 26148 26149 26150 26151 26152 26153 26154 26155 26156 26157 26158 26159 26160 26161 26162 26163 26164 26165 26166 26167 26168 26169 26170 26171 26172 26173 26174 26175 26176 26177 26178 26179 26180 26181 26182 26183 26184 26185 26186 26187 26188 26189 26190 26191 26192 26193 26194 26195 26196 26197 26198 26199 26200 26201 26202 26203 26204 26205 26206 26207 26208 26209 26210 26211 26212 26213 26214 26215 26216 26217 26218 26219 26220 26221 26222 26223 26224 26225 26226 26227 26228 26229 26230 26231 26232 26233 26234 26235 26236 26237 26238 26239 26240 26241 26242 26243 26244 26245 26246 26247 26248 26249 26250 26251 26252 26253 26254 26255 26256 26257 26258 26259 26260 26261 26262 26263 26264 26265 26266 26267 26268 26269 26270 26271 26272 26273 26274 26275 26276 26277 26278 26279 26280 26281 26282 26283 26284 26285 26286 26287 26288 26289 26290 26291 26292 26293 26294 26295 26296 26297 26298 26299 26300 26301 26302 26303 26304 26305 26306 26307 26308 26309 26310 26311 26312 26313 26314 26315 26316 26317 26318 26319 26320 26321 26322 26323 26324 26325 26326 26327 26328 26329 26330 26331 26332 26333 26334 26335 26336 26337 26338 26339 26340 26341 26342 26343 26344 26345 26346 26347 26348 26349 26350 26351 26352 26353 26354 26355 26356 26357 26358 26359 26360 26361 26362 26363 26364 26365 26366 26367 26368 26369 26370 26371 26372 26373 26374 26375 26376 26377 26378 26379 26380 26381 26382 26383 26384 26385 26386 26387 26388 26389 26390 26391 26392 26393 26394 26395 26396 26397 26398 26399 26400 26401 26402 26403 26404 26405 26406 26407 26408 26409 26410 26411 26412 26413 26414 26415 26416 26417 26418 26419 26420 26421 26422 26423 26424 26425 26426 26427 26428 26429 26430 26431 26432 26433 26434 26435 26436 26437 26438 26439 26440 26441 26442 26443 26444 26445 26446 26447 26448 26449 26450 26451 26452 26453 26454 26455 26456 26457 26458 26459 26460 26461 26462 26463 26464 26465 26466 26467 26468 26469 26470 26471 26472 26473 26474 26475 26476 26477 26478 26479 26480 26481 26482 26483 26484 26485 26486 26487 26488 26489 26490 26491 26492 26493 26494 26495 26496 26497 26498 26499 26500 26501 26502 26503 26504 26505 26506 26507 26508 26509 26510 26511 26512 26513 26514 26515 26516 26517 26518 26519 26520 26521 26522 26523 26524 26525 26526 26527 26528 26529 26530 26531 26532 26533 26534 26535 26536 26537 26538 26539 26540 26541 26542 26543 26544 26545 26546 26547 26548 26549 26550 26551 26552 26553 26554 26555 26556 26557 26558 26559 26560 26561 26562 26563 26564 26565 26566 26567 26568 26569 26570 26571 26572 26573 26574 26575 26576 26577 26578 26579 26580 26581 26582 26583 26584 26585 26586 26587 26588 26589 26590 26591 26592 26593 26594 26595 26596 26597 26598 26599 26600 26601 26602 26603 26604 26605 26606 26607 26608 26609 26610 26611 26612 26613 26614 26615 26616 26617 26618 26619 26620 26621 26622 26623 26624 26625 26626 26627 26628 26629 26630 26631 26632 26633 26634 26635 26636 26637 26638 26639 26640 26641 26642 26643 26644 26645 26646 26647 26648 26649 26650 26651 26652 26653 26654 26655 26656 26657 26658 26659 26660 26661 26662 26663 26664 26665 26666 26667 26668 26669 26670 26671 26672 26673 26674 26675 26676 26677 26678 26679 26680 26681 26682 26683 26684 26685 26686 26687 26688 26689 26690 26691 26692 26693 26694 26695 26696 26697 26698 26699 26700 26701 26702 26703 26704 26705 26706 26707 26708 26709 26710 26711 26712 26713 26714 26715 26716 26717 26718 26719 26720 26721 26722 26723 26724 26725 26726 26727 26728 26729 26730 26731 26732 26733 26734 26735 26736 26737 26738 26739 26740 26741 26742 26743 26744 26745 26746 26747 26748 26749 26750 26751 26752 26753 26754 26755 26756 26757 26758 26759 26760 26761 26762 26763 26764 26765 26766 26767 26768 26769 26770 26771 26772 26773 26774 26775 26776 26777 26778 26779 26780 26781 26782 26783 26784 26785 26786 26787 26788 26789 26790 26791 26792 26793 26794 26795 26796 26797 26798 26799 26800 26801 26802 26803 26804 26805 26806 26807 26808 26809 26810 26811 26812 26813 26814 26815 26816 26817 26818 26819 26820 26821 26822 26823 26824 26825 26826 26827 26828 26829 26830 26831 26832 26833 26834 26835 26836 26837 26838 26839 26840 26841 26842 26843 26844 26845 26846 26847 26848 26849 26850 26851 26852 26853 26854 26855 26856 26857 26858 26859 26860 26861 26862 26863 26864 26865 26866 26867 26868 26869 26870 26871 26872 26873 26874 26875 26876 26877 26878 26879 26880 26881 26882 26883 26884 26885 26886 26887 26888 26889 26890 26891 26892 26893 26894 26895 26896 26897 26898 26899 26900 26901 26902 26903 26904 26905 26906 26907 26908 26909 26910 26911 26912 26913 26914 26915 26916 26917 26918 26919 26920 26921 26922 26923 26924 26925 26926 26927 26928 26929 26930 26931 26932 26933 26934 26935 26936 26937 26938 26939 26940 26941 26942 26943 26944 26945 26946 26947 26948 26949 26950 26951 26952 26953 26954 26955 26956 26957 26958 26959 26960 26961 26962 26963 26964 26965 26966 26967 26968 26969 26970 26971 26972 26973 26974 26975 26976 26977 26978 26979 26980 26981 26982 26983 26984 26985 26986 26987 26988 26989 26990 26991 26992 26993 26994 26995 26996 26997 26998 26999 27000 27001 27002 27003 27004 27005 27006 27007 27008 27009 27010 27011 27012 27013 27014 27015 27016 27017 27018 27019 27020 27021 27022 27023 27024 27025 27026 27027 27028 27029 27030 27031 27032 27033 27034 27035 27036 27037 27038 27039 27040 27041 27042 27043 27044 27045 27046 27047 27048 27049 27050 27051 27052 27053 27054 27055 27056 27057 27058 27059 27060 27061 27062 27063 27064 27065 27066 27067 27068 27069 27070 27071 27072 27073 27074 27075 27076 27077 27078 27079 27080 27081 27082 27083 27084 27085 27086 27087 27088 27089 27090 27091 27092 27093 27094 27095 27096 27097 27098 27099 27100 27101 27102 27103 27104 27105 27106 27107 27108 27109 27110 27111 27112 27113 27114 27115 27116 27117 27118 27119 27120 27121 27122 27123 27124 27125 27126 27127 27128 27129 27130 27131 27132 27133 27134 27135 27136 27137 27138 27139 27140 27141 27142 27143 27144 27145 27146 27147 27148 27149 27150 27151 27152 27153 27154 27155 27156 27157 27158 27159 27160 27161 27162 27163 27164 27165 27166 27167 27168 27169 27170 27171 27172 27173 27174 27175 27176 27177 27178 27179 27180 27181 27182 27183 27184 27185 27186 27187 27188 27189 27190 27191 27192 27193 27194 27195 27196 27197 27198 27199 27200 27201 27202 27203 27204 27205 27206 27207 27208 27209 27210 27211 27212 27213 27214 27215 27216 27217 27218 27219 27220 27221 27222 27223 27224 27225 27226 27227 27228 27229 27230 27231 27232 27233 27234 27235 27236 27237 27238 27239 27240 27241 27242 27243 27244 27245 27246 27247 27248 27249 27250 27251 27252 27253 27254 27255 27256 27257 27258 27259 27260 27261 27262 27263 27264 27265 27266 27267 27268 27269 27270 27271 27272 27273 27274 27275 27276 27277 27278 27279 27280 27281 27282 27283 27284 27285 27286 27287 27288 27289 27290 27291 27292 27293 27294 27295 27296 27297 27298 27299 27300 27301 27302 27303 27304 27305 27306 27307 27308 27309 27310 27311 27312 27313 27314 27315 27316 27317 27318 27319 27320 27321 27322 27323 27324 27325 27326 27327 27328 27329 27330 27331 27332 27333 27334 27335 27336 27337 27338 27339 27340 27341 27342 27343 27344 27345 27346 27347 27348 27349 27350 27351 27352 27353 27354 27355 27356 27357 27358 27359 27360 27361 27362 27363 27364 27365 27366 27367 27368 27369 27370 27371 27372 27373 27374 27375 27376 27377 27378 27379 27380 27381 27382 27383 27384 27385 27386 27387 27388 27389 27390 27391 27392 27393 27394 27395 27396 27397 27398 27399 27400 27401 27402 27403 27404 27405 27406 27407 27408 27409 27410 27411 27412 27413 27414 27415 27416 27417 27418 27419 27420 27421 27422 27423 27424 27425 27426 27427 27428 27429 27430 27431 27432 27433 27434 27435 27436 27437 27438 27439 27440 27441 27442 27443 27444 27445 27446 27447 27448 27449 27450 27451 27452 27453 27454 27455 27456 27457 27458 27459 27460 27461 27462 27463 27464 27465 27466 27467 27468 27469 27470 27471 27472 27473 27474 27475 27476 27477 27478 27479 27480 27481 27482 27483 27484 27485 27486 27487 27488 27489 27490 27491 27492 27493 27494 27495 27496 27497 27498 27499 27500 27501 27502 27503 27504 27505 27506 27507 27508 27509 27510 27511 27512 27513 27514 27515 27516 27517 27518 27519 27520 27521 27522 27523 27524 27525 27526 27527 27528 27529 27530 27531 27532 27533 27534 27535 27536 27537 27538 27539 27540 27541 27542 27543 27544 27545 27546 27547 27548 27549 27550 27551 27552 27553 27554 27555 27556 27557 27558 27559 27560 27561 27562 27563 27564 27565 27566 27567 27568 27569 27570 27571 27572 27573 27574 27575 27576 27577 27578 27579 27580 27581 27582 27583 27584 27585 27586 27587 27588 27589 27590 27591 27592 27593 27594 27595 27596 27597 27598 27599 27600 27601 27602 27603 27604 27605 27606 27607 27608 27609 27610 27611 27612 27613 27614 27615 27616 27617 27618 27619 27620 27621 27622 27623 27624 27625 27626 27627 27628 27629 27630 27631 27632 27633 27634 27635 27636 27637 27638 27639 27640 27641 27642 27643 27644 27645 27646 27647 27648 27649 27650 27651 27652 27653 27654 27655 27656 27657 27658 27659 27660 27661 27662 27663 27664 27665 27666 27667 27668 27669 27670 27671 27672 27673 27674 27675 27676 27677 27678 27679 27680 27681 27682 27683 27684 27685 27686 27687 27688 27689 27690 27691 27692 27693 27694 27695 27696 27697 27698 27699 27700 27701 27702 27703 27704 27705 27706 27707 27708 27709 27710 27711 27712 27713 27714 27715 27716 27717 27718 27719 27720 27721 27722 27723 27724 27725 27726 27727 27728 27729 27730 27731 27732 27733 27734 27735 27736 27737 27738 27739 27740 27741 27742 27743 27744 27745 27746 27747 27748 27749 27750 27751 27752 27753 27754 27755 27756 27757 27758 27759 27760 27761 27762 27763 27764 27765 27766 27767 27768 27769 27770 27771 27772 27773 27774 27775 27776 27777 27778 27779 27780 27781 27782 27783 27784 27785 27786 27787 27788 27789 27790 27791 27792 27793 27794 27795 27796 27797 27798 27799 27800 27801 27802 27803 27804 27805 27806 27807 27808 27809 27810 27811 27812 27813 27814 27815 27816 27817 27818 27819 27820 27821 27822 27823 27824 27825 27826 27827 27828 27829 27830 27831 27832 27833 27834 27835 27836 27837 27838 27839 27840 27841 27842 27843 27844 27845 27846 27847 27848 27849 27850 27851 27852 27853 27854 27855 27856 27857 27858 27859 27860 27861 27862 27863 27864 27865 27866 27867 27868 27869 27870 27871 27872 27873 27874 27875 27876 27877 27878 27879 27880 27881 27882 27883 27884 27885 27886 27887 27888 27889 27890 27891 27892 27893 27894 27895 27896 27897 27898 27899 27900 27901 27902 27903 27904 27905 27906 27907 27908 27909 27910 27911 27912 27913 27914 27915 27916 27917 27918 27919 27920 27921 27922 27923 27924 27925 27926 27927 27928 27929 27930 27931 27932 27933 27934 27935 27936 27937 27938 27939 27940 27941 27942 27943 27944 27945 27946 27947 27948 27949 27950 27951 27952 27953 27954 27955 27956 27957 27958 27959 27960 27961 27962 27963 27964 27965 27966 27967 27968 27969 27970 27971 27972 27973 27974 27975 27976 27977 27978 27979 27980 27981 27982 27983 27984 27985 27986 27987 27988 27989 27990 27991 27992 27993 27994 27995 27996 27997 27998 27999 28000 28001 28002 28003 28004 28005 28006 28007 28008 28009 28010 28011 28012 28013 28014 28015 28016 28017 28018 28019 28020 28021 28022 28023 28024 28025 28026 28027 28028 28029 28030 28031 28032 28033 28034 28035 28036 28037 28038 28039 28040 28041 28042 28043 28044 28045 28046 28047 28048 28049 28050 28051 28052 28053 28054 28055 28056 28057 28058 28059 28060 28061 28062 28063 28064 28065 28066 28067 28068 28069 28070 28071 28072 28073 28074 28075 28076 28077 28078 28079 28080 28081 28082 28083 28084 28085 28086 28087 28088 28089 28090 28091 28092 28093 28094 28095 28096 28097 28098 28099 28100 28101 28102 28103 28104 28105 28106 28107 28108 28109 28110 28111 28112 28113 28114 28115 28116 28117 28118 28119 28120 28121 28122 28123 28124 28125 28126 28127 28128 28129 28130 28131 28132 28133 28134 28135 28136 28137 28138 28139 28140 28141 28142 28143 28144 28145 28146 28147 28148 28149 28150 28151 28152 28153 28154 28155 28156 28157 28158 28159 28160 28161 28162 28163 28164 28165 28166 28167 28168 28169 28170 28171 28172 28173 28174 28175 28176 28177 28178 28179 28180 28181 28182 28183 28184 28185 28186 28187 28188 28189 28190 28191 28192 28193 28194 28195 28196 28197 28198 28199 28200 28201 28202 28203 28204 28205 28206 28207 28208 28209 28210 28211 28212 28213 28214 28215 28216 28217 28218 28219 28220 28221 28222 28223 28224 28225 28226 28227 28228 28229 28230 28231 28232 28233 28234 28235 28236 28237 28238 28239 28240 28241 28242 28243 28244 28245 28246 28247 28248 28249 28250 28251 28252 28253 28254 28255 28256 28257 28258 28259 28260 28261 28262 28263 28264 28265 28266 28267 28268 28269 28270 28271 28272 28273 28274 28275 28276 28277 28278 28279 28280 28281 28282 28283 28284 28285 28286 28287 28288 28289 28290 28291 28292 28293 28294 28295 28296 28297 28298 28299 28300 28301 28302 28303 28304 28305 28306 28307 28308 28309 28310 28311 28312 28313 28314 28315 28316 28317 28318 28319 28320 28321 28322 28323 28324 28325 28326 28327 28328 28329 28330 28331 28332 28333 28334 28335 28336 28337 28338 28339 28340 28341 28342 28343 28344 28345 28346 28347 28348 28349 28350 28351 28352 28353 28354 28355 28356 28357 28358 28359 28360 28361 28362 28363 28364 28365 28366 28367 28368 28369 28370 28371 28372 28373 28374 28375 28376 28377 28378 28379 28380 28381 28382 28383 28384 28385 28386 28387 28388 28389 28390 28391 28392 28393 28394 28395 28396 28397 28398 28399 28400 28401 28402 28403 28404 28405 28406 28407 28408 28409 28410 28411 28412 28413 28414 28415 28416 28417 28418 28419 28420 28421 28422 28423 28424 28425 28426 28427 28428 28429 28430 28431 28432 28433 28434 28435 28436 28437 28438 28439 28440 28441 28442 28443 28444 28445 28446 28447 28448 28449 28450 28451 28452 28453 28454 28455 28456 28457 28458 28459 28460 28461 28462 28463 28464 28465 28466 28467 28468 28469 28470 28471 28472 28473 28474 28475 28476 28477 28478 28479 28480 28481 28482 28483 28484 28485 28486 28487 28488 28489 28490 28491 28492 28493 28494 28495 28496 28497 28498 28499 28500 28501 28502 28503 28504 28505 28506 28507 28508 28509 28510 28511 28512 28513 28514 28515 28516 28517 28518 28519 28520 28521 28522 28523 28524 28525 28526 28527 28528 28529 28530 28531 28532 28533 28534 28535 28536 28537 28538 28539 28540 28541 28542 28543 28544 28545 28546 28547 28548 28549 28550 28551 28552 28553 28554 28555 28556 28557 28558 28559 28560 28561 28562 28563 28564 28565 28566 28567 28568 28569 28570 28571 28572 28573 28574 28575 28576 28577 28578 28579 28580 28581 28582 28583 28584 28585 28586 28587 28588 28589 28590 28591 28592 28593 28594 28595 28596 28597 28598 28599 28600 28601 28602 28603 28604 28605 28606 28607 28608 28609 28610 28611 28612 28613 28614 28615 28616 28617 28618 28619 28620 28621 28622 28623 28624 28625 28626 28627 28628 28629 28630 28631 28632 28633 28634 28635 28636 28637 28638 28639 28640 28641 28642 28643 28644 28645 28646 28647 28648 28649 28650 28651 28652 28653 28654 28655 28656 28657 28658 28659 28660 28661 28662 28663 28664 28665 28666 28667 28668 28669 28670 28671 28672 28673 28674 28675 28676 28677 28678 28679 28680 28681 28682 28683 28684 28685 28686 28687 28688 28689 28690 28691 28692 28693 28694 28695 28696 28697 28698 28699 28700 28701 28702 28703 28704 28705 28706 28707 28708 28709 28710 28711 28712 28713 28714 28715 28716 28717 28718 28719 28720 28721 28722 28723 28724 28725 28726 28727 28728 28729 28730 28731 28732 28733 28734 28735 28736 28737 28738 28739 28740 28741 28742 28743 28744 28745 28746 28747 28748 28749 28750 28751 28752 28753 28754 28755 28756 28757 28758 28759 28760 28761 28762 28763 28764 28765 28766 28767 28768 28769 28770 28771 28772 28773 28774 28775 28776 28777 28778 28779 28780 28781 28782 28783 28784 28785 28786 28787 28788 28789 28790 28791 28792 28793 28794 28795 28796 28797 28798 28799 28800 28801 28802 28803 28804 28805 28806 28807 28808 28809 28810 28811 28812 28813 28814 28815 28816 28817 28818 28819 28820 28821 28822 28823 28824 28825 28826 28827 28828 28829 28830 28831 28832 28833 28834 28835 28836 28837 28838 28839 28840 28841 28842 28843 28844 28845 28846 28847 28848 28849 28850 28851 28852 28853 28854 28855 28856 28857 28858 28859 28860 28861 28862 28863 28864 28865 28866 28867 28868 28869 28870 28871 28872 28873 28874 28875 28876 28877 28878 28879 28880 28881 28882 28883 28884 28885 28886 28887 28888 28889 28890 28891 28892 28893 28894 28895 28896 28897 28898 28899 28900 28901 28902 28903 28904 28905 28906 28907 28908 28909 28910 28911 28912 28913 28914 28915 28916 28917 28918 28919 28920 28921 28922 28923 28924 28925 28926 28927 28928 28929 28930 28931 28932 28933 28934 28935 28936 28937 28938 28939 28940 28941 28942 28943 28944 28945 28946 28947 28948 28949 28950 28951 28952 28953 28954 28955 28956 28957 28958 28959 28960 28961 28962 28963 28964 28965 28966 28967 28968 28969 28970 28971 28972 28973 28974 28975 28976 28977 28978 28979 28980 28981 28982 28983 28984 28985 28986 28987 28988 28989 28990 28991 28992 28993 28994 28995 28996 28997 28998 28999 29000 29001 29002 29003 29004 29005 29006 29007 29008 29009 29010 29011 29012 29013 29014 29015 29016 29017 29018 29019 29020 29021 29022 29023 29024 29025 29026 29027 29028 29029 29030 29031 29032 29033 29034 29035 29036 29037 29038 29039 29040 29041 29042 29043 29044 29045 29046 29047 29048 29049 29050 29051 29052 29053 29054 29055 29056 29057 29058 29059 29060 29061 29062 29063 29064 29065 29066 29067 29068 29069 29070 29071 29072 29073 29074 29075 29076 29077 29078 29079 29080 29081 29082 29083 29084 29085 29086 29087 29088 29089 29090 29091 29092 29093 29094 29095 29096 29097 29098 29099 29100 29101 29102 29103 29104 29105 29106 29107 29108 29109 29110 29111 29112 29113 29114 29115 29116 29117 29118 29119 29120 29121 29122 29123 29124 29125 29126 29127 29128 29129 29130 29131 29132 29133 29134 29135 29136 29137 29138 29139 29140 29141 29142 29143 29144 29145 29146 29147 29148 29149 29150 29151 29152 29153 29154 29155 29156 29157 29158 29159 29160 29161 29162 29163 29164 29165 29166 29167 29168 29169 29170 29171 29172 29173 29174 29175 29176 29177 29178 29179 29180 29181 29182 29183 29184 29185 29186 29187 29188 29189 29190 29191 29192 29193 29194 29195 29196 29197 29198 29199 29200 29201 29202 29203 29204 29205 29206 29207 29208 29209 29210 29211 29212 29213 29214 29215 29216 29217 29218 29219 29220 29221 29222 29223 29224 29225 29226 29227 29228 29229 29230 29231 29232 29233 29234 29235 29236 29237 29238 29239 29240 29241 29242 29243 29244 29245 29246 29247 29248 29249 29250 29251 29252 29253 29254 29255 29256 29257 29258 29259 29260 29261 29262 29263 29264 29265 29266 29267 29268 29269 29270 29271 29272 29273 29274 29275 29276 29277 29278 29279 29280 29281 29282 29283 29284 29285 29286 29287 29288 29289 29290 29291 29292 29293 29294 29295 29296 29297 29298 29299 29300 29301 29302 29303 29304 29305 29306 29307 29308 29309 29310 29311 29312 29313 29314 29315 29316 29317 29318 29319 29320 29321 29322 29323 29324 29325 29326 29327 29328 29329 29330 29331 29332 29333 29334 29335 29336 29337 29338 29339 29340 29341 29342 29343 29344 29345 29346 29347 29348 29349 29350 29351 29352 29353 29354 29355 29356 29357 29358 29359 29360 29361 29362 29363 29364 29365 29366 29367 29368 29369 29370 29371 29372 29373 29374 29375 29376 29377 29378 29379 29380 29381 29382 29383 29384 29385 29386 29387 29388 29389 29390 29391 29392 29393 29394 29395 29396 29397 29398 29399 29400 29401 29402 29403 29404 29405 29406 29407 29408 29409 29410 29411 29412 29413 29414 29415 29416 29417 29418 29419 29420 29421 29422 29423 29424 29425 29426 29427 29428 29429 29430 29431 29432 29433 29434 29435 29436 29437 29438 29439 29440 29441 29442 29443 29444 29445 29446 29447 29448 29449 29450 29451 29452 29453 29454 29455 29456 29457 29458 29459 29460 29461 29462 29463 29464 29465 29466 29467 29468 29469 29470 29471 29472 29473 29474 29475 29476 29477 29478 29479 29480 29481 29482 29483 29484 29485 29486 29487 29488 29489 29490 29491 29492 29493 29494 29495 29496 29497 29498 29499 29500 29501 29502 29503 29504 29505 29506 29507 29508 29509 29510 29511 29512 29513 29514 29515 29516 29517 29518 29519 29520 29521 29522 29523 29524 29525 29526 29527 29528 29529 29530 29531 29532 29533 29534 29535 29536 29537 29538 29539 29540 29541 29542 29543 29544 29545 29546 29547 29548 29549 29550 29551 29552 29553 29554 29555 29556 29557 29558 29559 29560 29561 29562 29563 29564 29565 29566 29567 29568 29569 29570 29571 29572 29573 29574 29575 29576 29577 29578 29579 29580 29581 29582 29583 29584 29585 29586 29587 29588 29589 29590 29591 29592 29593 29594 29595 29596 29597 29598 29599 29600 29601 29602 29603 29604 29605 29606 29607 29608 29609 29610 29611 29612 29613 29614 29615 29616 29617 29618 29619 29620 29621 29622 29623 29624 29625 29626 29627 29628 29629 29630 29631 29632 29633 29634 29635 29636 29637 29638 29639 29640 29641 29642 29643 29644 29645 29646 29647 29648 29649 29650 29651 29652 29653 29654 29655 29656 29657 29658 29659 29660 29661 29662 29663 29664 29665 29666 29667 29668 29669 29670 29671 29672 29673 29674 29675 29676 29677 29678 29679 29680 29681 29682 29683 29684 29685 29686 29687 29688 29689 29690 29691 29692 29693 29694 29695 29696 29697 29698 29699 29700 29701 29702 29703 29704 29705 29706 29707 29708 29709 29710 29711 29712 29713 29714 29715 29716 29717 29718 29719 29720 29721 29722 29723 29724 29725 29726 29727 29728 29729 29730 29731 29732 29733 29734 29735 29736 29737 29738 29739 29740 29741 29742 29743 29744 29745 29746 29747 29748 29749 29750 29751 29752 29753 29754 29755 29756 29757 29758 29759 29760 29761 29762 29763 29764 29765 29766 29767 29768 29769 29770 29771 29772 29773 29774 29775 29776 29777 29778 29779 29780 29781 29782 29783 29784 29785 29786 29787 29788 29789 29790 29791 29792 29793 29794 29795 29796 29797 29798 29799 29800 29801 29802 29803 29804 29805 29806 29807 29808 29809 29810 29811 29812 29813 29814 29815 29816 29817 29818 29819 29820 29821 29822 29823 29824 29825 29826 29827 29828 29829 29830 29831 29832 29833 29834 29835 29836 29837 29838 29839 29840 29841 29842 29843 29844 29845 29846 29847 29848 29849 29850 29851 29852 29853 29854 29855 29856 29857 29858 29859 29860 29861 29862 29863 29864 29865 29866 29867 29868 29869 29870 29871 29872 29873 29874 29875 29876 29877 29878 29879 29880 29881 29882 29883 29884 29885 29886 29887 29888 29889 29890 29891 29892 29893 29894 29895 29896 29897 29898 29899 29900 29901 29902 29903 29904 29905 29906 29907 29908 29909 29910 29911 29912 29913 29914 29915 29916 29917 29918 29919 29920 29921 29922 29923 29924 29925 29926 29927 29928 29929 29930 29931 29932 29933 29934 29935 29936 29937 29938 29939 29940 29941 29942 29943 29944 29945 29946 29947 29948 29949 29950 29951 29952 29953 29954 29955 29956 29957 29958 29959 29960 29961 29962 29963 29964 29965 29966 29967 29968 29969 29970 29971 29972 29973 29974 29975 29976 29977 29978 29979 29980 29981 29982 29983 29984 29985 29986 29987 29988 29989 29990 29991 29992 29993 29994 29995 29996 29997 29998 29999 30000 30001 30002 30003 30004 30005 30006 30007 30008 30009 30010 30011 30012 30013 30014 30015 30016 30017 30018 30019 30020 30021 30022 30023 30024 30025 30026 30027 30028 30029 30030 30031 30032 30033 30034 30035 30036 30037 30038 30039 30040 30041 30042 30043 30044 30045 30046 30047 30048 30049 30050 30051 30052 30053 30054 30055 30056 30057 30058 30059 30060 30061 30062 30063 30064 30065 30066 30067 30068 30069 30070 30071 30072 30073 30074 30075 30076 30077 30078 30079 30080 30081 30082 30083 30084 30085 30086 30087 30088 30089 30090 30091 30092 30093 30094 30095 30096 30097 30098 30099 30100 30101 30102 30103 30104 30105 30106 30107 30108 30109 30110 30111 30112 30113 30114 30115 30116 30117 30118 30119 30120 30121 30122 30123 30124 30125 30126 30127 30128 30129 30130 30131 30132 30133 30134 30135 30136 30137 30138 30139 30140 30141 30142 30143 30144 30145 30146 30147 30148 30149 30150 30151 30152 30153 30154 30155 30156 30157 30158 30159 30160 30161 30162 30163 30164 30165 30166 30167 30168 30169 30170 30171 30172 30173 30174 30175 30176 30177 30178 30179 30180 30181 30182 30183 30184 30185 30186 30187 30188 30189 30190 30191 30192 30193 30194 30195 30196 30197 30198 30199 30200 30201 30202 30203 30204 30205 30206 30207 30208 30209 30210 30211 30212 30213 30214 30215 30216 30217 30218 30219 30220 30221 30222 30223 30224 30225 30226 30227 30228 30229 30230 30231 30232 30233 30234 30235 30236 30237 30238 30239 30240 30241 30242 30243 30244 30245 30246 30247 30248 30249 30250 30251 30252 30253 30254 30255 30256 30257 30258 30259 30260 30261 30262 30263 30264 30265 30266 30267 30268 30269 30270 30271 30272 30273 30274 30275 30276 30277 30278 30279 30280 30281 30282 30283 30284 30285 30286 30287 30288 30289 30290 30291 30292 30293 30294 30295 30296 30297 30298 30299 30300 30301 30302 30303 30304 30305 30306 30307 30308 30309 30310 30311 30312 30313 30314 30315 30316 30317 30318 30319 30320 30321 30322 30323 30324 30325 30326 30327 30328 30329 30330 30331 30332 30333 30334 30335 30336 30337 30338 30339 30340 30341 30342 30343 30344 30345 30346 30347 30348 30349 30350 30351 30352 30353 30354 30355 30356 30357 30358 30359 30360 30361 30362 30363 30364 30365 30366 30367 30368 30369 30370 30371 30372 30373 30374 30375 30376 30377 30378 30379 30380 30381 30382 30383 30384 30385 30386 30387 30388 30389 30390 30391 30392 30393 30394 30395 30396 30397 30398 30399 30400 30401 30402 30403 30404 30405 30406 30407 30408 30409 30410 30411 30412 30413 30414 30415 30416 30417 30418 30419 30420 30421 30422 30423 30424 30425 30426 30427 30428 30429 30430 30431 30432 30433 30434 30435 30436 30437 30438 30439 30440 30441 30442 30443 30444 30445 30446 30447 30448 30449 30450 30451 30452 30453 30454 30455 30456 30457 30458 30459 30460 30461 30462 30463 30464 30465 30466 30467 30468 30469 30470 30471 30472 30473 30474 30475 30476 30477 30478 30479 30480 30481 30482 30483 30484 30485 30486 30487 30488 30489 30490 30491 30492 30493 30494 30495 30496 30497 30498 30499 30500 30501 30502 30503 30504 30505 30506 30507 30508 30509 30510 30511 30512 30513 30514 30515 30516 30517 30518 30519 30520 30521 30522 30523 30524 30525 30526 30527 30528 30529 30530 30531 30532 30533 30534 30535 30536 30537 30538 30539 30540 30541 30542 30543 30544 30545 30546 30547 30548 30549 30550 30551 30552 30553 30554 30555 30556 30557 30558 30559 30560 30561 30562 30563 30564 30565 30566 30567 30568 30569 30570 30571 30572 30573 30574 30575 30576 30577 30578 30579 30580 30581 30582 30583 30584 30585 30586 30587 30588 30589 30590 30591 30592 30593 30594 30595 30596 30597 30598 30599 30600 30601 30602 30603 30604 30605 30606 30607 30608 30609 30610 30611 30612 30613 30614 30615 30616 30617 30618 30619 30620 30621 30622 30623 30624 30625 30626 30627 30628 30629 30630 30631 30632 30633 30634 30635 30636 30637 30638 30639 30640 30641 30642 30643 30644 30645 30646 30647 30648 30649 30650 30651 30652 30653 30654 30655 30656 30657 30658 30659 30660 30661 30662 30663 30664 30665 30666 30667 30668 30669 30670 30671 30672 30673 30674 30675 30676 30677 30678 30679 30680 30681 30682 30683 30684 30685 30686 30687 30688 30689 30690 30691 30692 30693 30694 30695 30696 30697 30698 30699 30700 30701 30702 30703 30704 30705 30706 30707 30708 30709 30710 30711 30712 30713 30714 30715 30716 30717 30718 30719 30720 30721 30722 30723 30724 30725 30726 30727 30728 30729 30730 30731 30732 30733 30734 30735 30736 30737 30738 30739 30740 30741 30742 30743 30744 30745 30746 30747 30748 30749 30750 30751 30752 30753 30754 30755 30756 30757 30758 30759 30760 30761 30762 30763 30764 30765 30766 30767 30768 30769 30770 30771 30772 30773 30774 30775 30776 30777 30778 30779 30780 30781 30782 30783 30784 30785 30786 30787 30788 30789 30790 30791 30792 30793 30794 30795 30796 30797 30798 30799 30800 30801 30802 30803 30804 30805 30806 30807 30808 30809 30810 30811 30812 30813 30814 30815 30816 30817 30818 30819 30820 30821 30822 30823 30824 30825 30826 30827 30828 30829 30830 30831 30832 30833 30834 30835 30836 30837 30838 30839 30840 30841 30842 30843 30844 30845 30846 30847 30848 30849 30850 30851 30852 30853 30854 30855 30856 30857 30858 30859 30860 30861 30862 30863 30864 30865 30866 30867 30868 30869 30870 30871 30872 30873 30874 30875 30876 30877 30878 30879 30880 30881 30882 30883 30884 30885 30886 30887 30888 30889 30890 30891 30892 30893 30894 30895 30896 30897 30898 30899 30900 30901 30902 30903 30904 30905 30906 30907 30908 30909 30910 30911 30912 30913 30914 30915 30916 30917 30918 30919 30920 30921 30922 30923 30924 30925 30926 30927 30928 30929 30930 30931 30932 30933 30934 30935 30936 30937 30938 30939 30940 30941 30942 30943 30944 30945 30946 30947 30948 30949 30950 30951 30952 30953 30954 30955 30956 30957 30958 30959 30960 30961 30962 30963 30964 30965 30966 30967 30968 30969 30970 30971 30972 30973 30974 30975 30976 30977 30978 30979 30980 30981 30982 30983 30984 30985 30986 30987 30988 30989 30990 30991 30992 30993 30994 30995 30996 30997 30998 30999 31000 31001 31002 31003 31004 31005 31006 31007 31008 31009 31010 31011 31012 31013 31014 31015 31016 31017 31018 31019 31020 31021 31022 31023 31024 31025 31026 31027 31028 31029 31030 31031 31032 31033 31034 31035 31036 31037 31038 31039 31040 31041 31042 31043 31044 31045 31046 31047 31048 31049 31050 31051 31052 31053 31054 31055 31056 31057 31058 31059 31060 31061 31062 31063 31064 31065 31066 31067 31068 31069 31070 31071 31072 31073 31074 31075 31076 31077 31078 31079 31080 31081 31082 31083 31084 31085 31086 31087 31088 31089 31090 31091 31092 31093 31094 31095 31096 31097 31098 31099 31100 31101 31102 31103 31104 31105 31106 31107 31108 31109 31110 31111 31112 31113 31114 31115 31116 31117 31118 31119 31120 31121 31122 31123 31124 31125 31126 31127 31128 31129 31130 31131 31132 31133 31134 31135 31136 31137 31138 31139 31140 31141 31142 31143 31144 31145 31146 31147 31148 31149 31150 31151 31152 31153 31154 31155 31156 31157 31158 31159 31160 31161 31162 31163 31164 31165 31166 31167 31168 31169 31170 31171 31172 31173 31174 31175 31176 31177 31178 31179 31180 31181 31182 31183 31184 31185 31186 31187 31188 31189 31190 31191 31192 31193 31194 31195 31196 31197 31198 31199 31200 31201 31202 31203 31204 31205 31206 31207 31208 31209 31210 31211 31212 31213 31214 31215 31216 31217 31218 31219 31220 31221 31222 31223 31224 31225 31226 31227 31228 31229 31230 31231 31232 31233 31234 31235 31236 31237 31238 31239 31240 31241 31242 31243 31244 31245 31246 31247 31248 31249 31250 31251 31252 31253 31254 31255 31256 31257 31258 31259 31260 31261 31262 31263 31264 31265 31266 31267 31268 31269 31270 31271 31272 31273 31274 31275 31276 31277 31278 31279 31280 31281 31282 31283 31284 31285 31286 31287 31288 31289 31290 31291 31292 31293 31294 31295 31296 31297 31298 31299 31300 31301 31302 31303 31304 31305 31306 31307 31308 31309 31310 31311 31312 31313 31314 31315 31316 31317 31318 31319 31320 31321 31322 31323 31324 31325 31326 31327 31328 31329 31330 31331 31332 31333 31334 31335 31336 31337 31338 31339 31340 31341 31342 31343 31344 31345 31346 31347 31348 31349 31350 31351 31352 31353 31354 31355 31356 31357 31358 31359 31360 31361 31362 31363 31364 31365 31366 31367 31368 31369 31370 31371 31372 31373 31374 31375 31376 31377 31378 31379 31380 31381 31382 31383 31384 31385 31386 31387 31388 31389 31390 31391 31392 31393 31394 31395 31396 31397 31398 31399 31400 31401 31402 31403 31404 31405 31406 31407 31408 31409 31410 31411 31412 31413 31414 31415 31416 31417 31418 31419 31420 31421 31422 31423 31424 31425 31426 31427 31428 31429 31430 31431 31432 31433 31434 31435 31436 31437 31438 31439 31440 31441 31442 31443 31444 31445 31446 31447 31448 31449 31450 31451 31452 31453 31454 31455 31456 31457 31458 31459 31460 31461 31462 31463 31464 31465 31466 31467 31468 31469 31470 31471 31472 31473 31474 31475 31476 31477 31478 31479 31480 31481 31482 31483 31484 31485 31486 31487 31488 31489 31490 31491 31492 31493 31494 31495 31496 31497 31498 31499 31500 31501 31502 31503 31504 31505 31506 31507 31508 31509 31510 31511 31512 31513 31514 31515 31516 31517 31518 31519 31520 31521 31522 31523 31524 31525 31526 31527 31528 31529 31530 31531 31532 31533 31534 31535 31536 31537 31538 31539 31540 31541 31542 31543 31544 31545 31546 31547 31548 31549 31550 31551 31552 31553 31554 31555 31556 31557 31558 31559 31560 31561 31562 31563 31564 31565 31566 31567 31568 31569 31570 31571 31572 31573 31574 31575 31576 31577 31578 31579 31580 31581 31582 31583 31584 31585 31586 31587 31588 31589 31590 31591 31592 31593 31594 31595 31596 31597 31598 31599 31600 31601 31602 31603 31604 31605 31606 31607 31608 31609 31610 31611 31612 31613 31614 31615 31616 31617 31618 31619 31620 31621 31622 31623 31624 31625 31626 31627 31628 31629 31630 31631 31632 31633 31634 31635 31636 31637 31638 31639 31640 31641 31642 31643 31644 31645 31646 31647 31648 31649 31650 31651 31652 31653 31654 31655 31656 31657 31658 31659 31660 31661 31662 31663 31664 31665 31666 31667 31668 31669 31670 31671 31672 31673 31674 31675 31676 31677 31678 31679 31680 31681 31682 31683 31684 31685 31686 31687 31688 31689 31690 31691 31692 31693 31694 31695 31696 31697 31698 31699 31700 31701 31702 31703 31704 31705 31706 31707 31708 31709 31710 31711 31712 31713 31714 31715 31716 31717 31718 31719 31720 31721 31722 31723 31724 31725 31726 31727 31728 31729 31730 31731 31732 31733 31734 31735 31736 31737 31738 31739 31740 31741 31742 31743 31744 31745 31746 31747 31748 31749 31750 31751 31752 31753 31754 31755 31756 31757 31758 31759 31760 31761 31762 31763 31764 31765 31766 31767 31768 31769 31770 31771 31772 31773 31774 31775 31776 31777 31778 31779 31780 31781 31782 31783 31784 31785 31786 31787 31788 31789 31790 31791 31792 31793 31794 31795 31796 31797 31798 31799 31800 31801 31802 31803 31804 31805 31806 31807 31808 31809 31810 31811 31812 31813 31814 31815 31816 31817 31818 31819 31820 31821 31822 31823 31824 31825 31826 31827 31828 31829 31830 31831 31832 31833 31834 31835 31836 31837 31838 31839 31840 31841 31842 31843 31844 31845 31846 31847 31848 31849 31850 31851 31852 31853 31854 31855 31856 31857 31858 31859 31860 31861 31862 31863 31864 31865 31866 31867 31868 31869 31870 31871 31872 31873 31874 31875 31876 31877 31878 31879 31880 31881 31882 31883 31884 31885 31886 31887 31888 31889 31890 31891 31892 31893 31894 31895 31896 31897 31898 31899 31900 31901 31902 31903 31904 31905 31906 31907 31908 31909 31910 31911 31912 31913 31914 31915 31916 31917 31918 31919 31920 31921 31922 31923 31924 31925 31926 31927 31928 31929 31930 31931 31932 31933 31934 31935 31936 31937 31938 31939 31940 31941 31942 31943 31944 31945 31946 31947 31948 31949 31950 31951 31952 31953 31954 31955 31956 31957 31958 31959 31960 31961 31962 31963 31964 31965 31966 31967 31968 31969 31970 31971 31972 31973 31974 31975 31976 31977 31978 31979 31980 31981 31982 31983 31984 31985 31986 31987 31988 31989 31990 31991 31992 31993 31994 31995 31996 31997 31998 31999 32000 32001 32002 32003 32004 32005 32006 32007 32008 32009 32010 32011 32012 32013 32014 32015 32016 32017 32018 32019 32020 32021 32022 32023 32024 32025 32026 32027 32028 32029 32030 32031 32032 32033 32034 32035 32036 32037 32038 32039 32040 32041 32042 32043 32044 32045 32046 32047 32048 32049 32050 32051 32052 32053 32054 32055 32056 32057 32058 32059 32060 32061 32062 32063 32064 32065 32066 32067 32068 32069 32070 32071 32072 32073 32074 32075 32076 32077 32078 32079 32080 32081 32082 32083 32084 32085 32086 32087 32088 32089 32090 32091 32092 32093 32094 32095 32096 32097 32098 32099 32100 32101 32102 32103 32104 32105 32106 32107 32108 32109 32110 32111 32112 32113 32114 32115 32116 32117 32118 32119 32120 32121 32122 32123 32124 32125 32126 32127 32128 32129 32130 32131 32132 32133 32134 32135 32136 32137 32138 32139 32140 32141 32142 32143 32144 32145 32146 32147 32148 32149 32150 32151 32152 32153 32154 32155 32156 32157 32158 32159 32160 32161 32162 32163 32164 32165 32166 32167 32168 32169 32170 32171 32172 32173 32174 32175 32176 32177 32178 32179 32180 32181 32182 32183 32184 32185 32186 32187 32188 32189 32190 32191 32192 32193 32194 32195 32196 32197 32198 32199 32200 32201 32202 32203 32204 32205 32206 32207 32208 32209 32210 32211 32212 32213 32214 32215 32216 32217 32218 32219 32220 32221 32222 32223 32224 32225 32226 32227 32228 32229 32230 32231 32232 32233 32234 32235 32236 32237 32238 32239 32240 32241 32242 32243 32244 32245 32246 32247 32248 32249 32250 32251 32252 32253 32254 32255 32256 32257 32258 32259 32260 32261 32262 32263 32264 32265 32266 32267 32268 32269 32270 32271 32272 32273 32274 32275 32276 32277 32278 32279 32280 32281 32282 32283 32284 32285 32286 32287 32288 32289 32290 32291 32292 32293 32294 32295 32296 32297 32298 32299 32300 32301 32302 32303 32304 32305 32306 32307 32308 32309 32310 32311 32312 32313 32314 32315 32316 32317 32318 32319 32320 32321 32322 32323 32324 32325 32326 32327 32328 32329 32330 32331 32332 32333 32334 32335 32336 32337 32338 32339 32340 32341 32342 32343 32344 32345 32346 32347 32348 32349 32350 32351 32352 32353 32354 32355 32356 32357 32358 32359 32360 32361 32362 32363 32364 32365 32366 32367 32368 32369 32370 32371 32372 32373 32374 32375 32376 32377 32378 32379 32380 32381 32382 32383 32384 32385 32386 32387 32388 32389 32390 32391 32392 32393 32394 32395 32396 32397 32398 32399 32400 32401 32402 32403 32404 32405 32406 32407 32408 32409 32410 32411 32412 32413 32414 32415 32416 32417 32418 32419 32420 32421 32422 32423 32424 32425 32426 32427 32428 32429 32430 32431 32432 32433 32434 32435 32436 32437 32438 32439 32440 32441 32442 32443 32444 32445 32446 32447 32448 32449 32450 32451 32452 32453 32454 32455 32456 32457 32458 32459 32460 32461 32462 32463 32464 32465 32466 32467 32468 32469 32470 32471 32472 32473 32474 32475 32476 32477 32478 32479 32480 32481 32482 32483 32484 32485 32486 32487 32488 32489 32490 32491 0 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 7940 7941 7942 7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8028 8029 8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 8077 8078 8079 8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109 8110 8111 8112 8113 8114 8115 8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233 8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260 8261 8262 8263 8264 8265 8266 8267 8268 8269 8270 8271 8272 8273 8274 8275 8276 8277 8278 8279 8280 8281 8282 8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 8345 8346 8347 8348 8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 8361 8362 8363 8364 8365 8366 8367 8368 8369 8370 8371 8372 8373 8374 8375 8376 8377 8378 8379 8380 8381 8382 8383 8384 8385 8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398 8399 8400 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 8411 8412 8413 8414 8415 8416 8417 8418 8419 8420 8421 8422 8423 8424 8425 8426 8427 8428 8429 8430 8431 8432 8433 8434 8435 8436 8437 8438 8439 8440 8441 8442 8443 8444 8445 8446 8447 8448 8449 8450 8451 8452 8453 8454 8455 8456 8457 8458 8459 8460 8461 8462 8463 8464 8465 8466 8467 8468 8469 8470 8471 8472 8473 8474 8475 8476 8477 8478 8479 8480 8481 8482 8483 8484 8485 8486 8487 8488 8489 8490 8491 8492 8493 8494 8495 8496 8497 8498 8499 8500 8501 8502 8503 8504 8505 8506 8507 8508 8509 8510 8511 8512 8513 8514 8515 8516 8517 8518 8519 8520 8521 8522 8523 8524 8525 8526 8527 8528 8529 8530 8531 8532 8533 8534 8535 8536 8537 8538 8539 8540 8541 8542 8543 8544 8545 8546 8547 8548 8549 8550 8551 8552 8553 8554 8555 8556 8557 8558 8559 8560 8561 8562 8563 8564 8565 8566 8567 8568 8569 8570 8571 8572 8573 8574 8575 8576 8577 8578 8579 8580 8581 8582 8583 8584 8585 8586 8587 8588 8589 8590 8591 8592 8593 8594 8595 8596 8597 8598 8599 8600 8601 8602 8603 8604 8605 8606 8607 8608 8609 8610 8611 8612 8613 8614 8615 8616 8617 8618 8619 8620 8621 8622 8623 8624 8625 8626 8627 8628 8629 8630 8631 8632 8633 8634 8635 8636 8637 8638 8639 8640 8641 8642 8643 8644 8645 8646 8647 8648 8649 8650 8651 8652 8653 8654 8655 8656 8657 8658 8659 8660 8661 8662 8663 8664 8665 8666 8667 8668 8669 8670 8671 8672 8673 8674 8675 8676 8677 8678 8679 8680 8681 8682 8683 8684 8685 8686 8687 8688 8689 8690 8691 8692 8693 8694 8695 8696 8697 8698 8699 8700 8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 8732 8733 8734 8735 8736 8737 8738 8739 8740 8741 8742 8743 8744 8745 8746 8747 8748 8749 8750 8751 8752 8753 8754 8755 8756 8757 8758 8759 8760 8761 8762 8763 8764 8765 8766 8767 8768 8769 8770 8771 8772 8773 8774 8775 8776 8777 8778 8779 8780 8781 8782 8783 8784 8785 8786 8787 8788 8789 8790 8791 8792 8793 8794 8795 8796 8797 8798 8799 8800 8801 8802 8803 8804 8805 8806 8807 8808 8809 8810 8811 8812 8813 8814 8815 8816 8817 8818 8819 8820 8821 8822 8823 8824 8825 8826 8827 8828 8829 8830 8831 8832 8833 8834 8835 8836 8837 8838 8839 8840 8841 8842 8843 8844 8845 8846 8847 8848 8849 8850 8851 8852 8853 8854 8855 8856 8857 8858 8859 8860 8861 8862 8863 8864 8865 8866 8867 8868 8869 8870 8871 8872 8873 8874 8875 8876 8877 8878 8879 8880 8881 8882 8883 8884 8885 8886 8887 8888 8889 8890 8891 8892 8893 8894 8895 8896 8897 8898 8899 8900 8901 8902 8903 8904 8905 8906 8907 8908 8909 8910 8911 8912 8913 8914 8915 8916 8917 8918 8919 8920 8921 8922 8923 8924 8925 8926 8927 8928 8929 8930 8931 8932 8933 8934 8935 8936 8937 8938 8939 8940 8941 8942 8943 8944 8945 8946 8947 8948 8949 8950 8951 8952 8953 8954 8955 8956 8957 8958 8959 8960 8961 8962 8963 8964 8965 8966 8967 8968 8969 8970 8971 8972 8973 8974 8975 8976 8977 8978 8979 8980 8981 8982 8983 8984 8985 8986 8987 8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 9015 9016 9017 9018 9019 9020 9021 9022 9023 9024 9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 9052 9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 9100 9101 9102 9103 9104 9105 9106 9107 9108 9109 9110 9111 9112 9113 9114 9115 9116 9117 9118 9119 9120 9121 9122 9123 9124 9125 9126 9127 9128 9129 9130 9131 9132 9133 9134 9135 9136 9137 9138 9139 9140 9141 9142 9143 9144 9145 9146 9147 9148 9149 9150 9151 9152 9153 9154 9155 9156 9157 9158 9159 9160 9161 9162 9163 9164 9165 9166 9167 9168 9169 9170 9171 9172 9173 9174 9175 9176 9177 9178 9179 9180 9181 9182 9183 9184 9185 9186 9187 9188 9189 9190 9191 9192 9193 9194 9195 9196 9197 9198 9199 9200 9201 9202 9203 9204 9205 9206 9207 9208 9209 9210 9211 9212 9213 9214 9215 9216 9217 9218 9219 9220 9221 9222 9223 9224 9225 9226 9227 9228 9229 9230 9231 9232 9233 9234 9235 9236 9237 9238 9239 9240 9241 9242 9243 9244 9245 9246 9247 9248 9249 9250 9251 9252 9253 9254 9255 9256 9257 9258 9259 9260 9261 9262 9263 9264 9265 9266 9267 9268 9269 9270 9271 9272 9273 9274 9275 9276 9277 9278 9279 9280 9281 9282 9283 9284 9285 9286 9287 9288 9289 9290 9291 9292 9293 9294 9295 9296 9297 9298 9299 9300 9301 9302 9303 9304 9305 9306 9307 9308 9309 9310 9311 9312 9313 9314 9315 9316 9317 9318 9319 9320 9321 9322 9323 9324 9325 9326 9327 9328 9329 9330 9331 9332 9333 9334 9335 9336 9337 9338 9339 9340 9341 9342 9343 9344 9345 9346 9347 9348 9349 9350 9351 9352 9353 9354 9355 9356 9357 9358 9359 9360 9361 9362 9363 9364 9365 9366 9367 9368 9369 9370 9371 9372 9373 9374 9375 9376 9377 9378 9379 9380 9381 9382 9383 9384 9385 9386 9387 9388 9389 9390 9391 9392 9393 9394 9395 9396 9397 9398 9399 9400 9401 9402 9403 9404 9405 9406 9407 9408 9409 9410 9411 9412 9413 9414 9415 9416 9417 9418 9419 9420 9421 9422 9423 9424 9425 9426 9427 9428 9429 9430 9431 9432 9433 9434 9435 9436 9437 9438 9439 9440 9441 9442 9443 9444 9445 9446 9447 9448 9449 9450 9451 9452 9453 9454 9455 9456 9457 9458 9459 9460 9461 9462 9463 9464 9465 9466 9467 9468 9469 9470 9471 9472 9473 9474 9475 9476 9477 9478 9479 9480 9481 9482 9483 9484 9485 9486 9487 9488 9489 9490 9491 9492 9493 9494 9495 9496 9497 9498 9499 9500 9501 9502 9503 9504 9505 9506 9507 9508 9509 9510 9511 9512 9513 9514 9515 9516 9517 9518 9519 9520 9521 9522 9523 9524 9525 9526 9527 9528 9529 9530 9531 9532 9533 9534 9535 9536 9537 9538 9539 9540 9541 9542 9543 9544 9545 9546 9547 9548 9549 9550 9551 9552 9553 9554 9555 9556 9557 9558 9559 9560 9561 9562 9563 9564 9565 9566 9567 9568 9569 9570 9571 9572 9573 9574 9575 9576 9577 9578 9579 9580 9581 9582 9583 9584 9585 9586 9587 9588 9589 9590 9591 9592 9593 9594 9595 9596 9597 9598 9599 9600 9601 9602 9603 9604 9605 9606 9607 9608 9609 9610 9611 9612 9613 9614 9615 9616 9617 9618 9619 9620 9621 9622 9623 9624 9625 9626 9627 9628 9629 9630 9631 9632 9633 9634 9635 9636 9637 9638 9639 9640 9641 9642 9643 9644 9645 9646 9647 9648 9649 9650 9651 9652 9653 9654 9655 9656 9657 9658 9659 9660 9661 9662 9663 9664 9665 9666 9667 9668 9669 9670 9671 9672 9673 9674 9675 9676 9677 9678 9679 9680 9681 9682 9683 9684 9685 9686 9687 9688 9689 9690 9691 9692 9693 9694 9695 9696 9697 9698 9699 9700 9701 9702 9703 9704 9705 9706 9707 9708 9709 9710 9711 9712 9713 9714 9715 9716 9717 9718 9719 9720 9721 9722 9723 9724 9725 9726 9727 9728 9729 9730 9731 9732 9733 9734 9735 9736 9737 9738 9739 9740 9741 9742 9743 9744 9745 9746 9747 9748 9749 9750 9751 9752 9753 9754 9755 9756 9757 9758 9759 9760 9761 9762 9763 9764 9765 9766 9767 9768 9769 9770 9771 9772 9773 9774 9775 9776 9777 9778 9779 9780 9781 9782 9783 9784 9785 9786 9787 9788 9789 9790 9791 9792 9793 9794 9795 9796 9797 9798 9799 9800 9801 9802 9803 9804 9805 9806 9807 9808 9809 9810 9811 9812 9813 9814 9815 9816 9817 9818 9819 9820 9821 9822 9823 9824 9825 9826 9827 9828 9829 9830 9831 9832 9833 9834 9835 9836 9837 9838 9839 9840 9841 9842 9843 9844 9845 9846 9847 9848 9849 9850 9851 9852 9853 9854 9855 9856 9857 9858 9859 9860 9861 9862 9863 9864 9865 9866 9867 9868 9869 9870 9871 9872 9873 9874 9875 9876 9877 9878 9879 9880 9881 9882 9883 9884 9885 9886 9887 9888 9889 9890 9891 9892 9893 9894 9895 9896 9897 9898 9899 9900 9901 9902 9903 9904 9905 9906 9907 9908 9909 9910 9911 9912 9913 9914 9915 9916 9917 9918 9919 9920 9921 9922 9923 9924 9925 9926 9927 9928 9929 9930 9931 9932 9933 9934 9935 9936 9937 9938 9939 9940 9941 9942 9943 9944 9945 9946 9947 9948 9949 9950 9951 9952 9953 9954 9955 9956 9957 9958 9959 9960 9961 9962 9963 9964 9965 9966 9967 9968 9969 9970 9971 9972 9973 9974 9975 9976 9977 9978 9979 9980 9981 9982 9983 9984 9985 9986 9987 9988 9989 9990 9991 9992 9993 9994 9995 9996 9997 9998 9999 10000 10001 10002 10003 10004 10005 10006 10007 10008 10009 10010 10011 10012 10013 10014 10015 10016 10017 10018 10019 10020 10021 10022 10023 10024 10025 10026 10027 10028 10029 10030 10031 10032 10033 10034 10035 10036 10037 10038 10039 10040 10041 10042 10043 10044 10045 10046 10047 10048 10049 10050 10051 10052 10053 10054 10055 10056 10057 10058 10059 10060 10061 10062 10063 10064 10065 10066 10067 10068 10069 10070 10071 10072 10073 10074 10075 10076 10077 10078 10079 10080 10081 10082 10083 10084 10085 10086 10087 10088 10089 10090 10091 10092 10093 10094 10095 10096 10097 10098 10099 10100 10101 10102 10103 10104 10105 10106 10107 10108 10109 10110 10111 10112 10113 10114 10115 10116 10117 10118 10119 10120 10121 10122 10123 10124 10125 10126 10127 10128 10129 10130 10131 10132 10133 10134 10135 10136 10137 10138 10139 10140 10141 10142 10143 10144 10145 10146 10147 10148 10149 10150 10151 10152 10153 10154 10155 10156 10157 10158 10159 10160 10161 10162 10163 10164 10165 10166 10167 10168 10169 10170 10171 10172 10173 10174 10175 10176 10177 10178 10179 10180 10181 10182 10183 10184 10185 10186 10187 10188 10189 10190 10191 10192 10193 10194 10195 10196 10197 10198 10199 10200 10201 10202 10203 10204 10205 10206 10207 10208 10209 10210 10211 10212 10213 10214 10215 10216 10217 10218 10219 10220 10221 10222 10223 10224 10225 10226 10227 10228 10229 10230 10231 10232 10233 10234 10235 10236 10237 10238 10239 10240 10241 10242 10243 10244 10245 10246 10247 10248 10249 10250 10251 10252 10253 10254 10255 10256 10257 10258 10259 10260 10261 10262 10263 10264 10265 10266 10267 10268 10269 10270 10271 10272 10273 10274 10275 10276 10277 10278 10279 10280 10281 10282 10283 10284 10285 10286 10287 10288 10289 10290 10291 10292 10293 10294 10295 10296 10297 10298 10299 10300 10301 10302 10303 10304 10305 10306 10307 10308 10309 10310 10311 10312 10313 10314 10315 10316 10317 10318 10319 10320 10321 10322 10323 10324 10325 10326 10327 10328 10329 10330 10331 10332 10333 10334 10335 10336 10337 10338 10339 10340 10341 10342 10343 10344 10345 10346 10347 10348 10349 10350 10351 10352 10353 10354 10355 10356 10357 10358 10359 10360 10361 10362 10363 10364 10365 10366 10367 10368 10369 10370 10371 10372 10373 10374 10375 10376 10377 10378 10379 10380 10381 10382 10383 10384 10385 10386 10387 10388 10389 10390 10391 10392 10393 10394 10395 10396 10397 10398 10399 10400 10401 10402 10403 10404 10405 10406 10407 10408 10409 10410 10411 10412 10413 10414 10415 10416 10417 10418 10419 10420 10421 10422 10423 10424 10425 10426 10427 10428 10429 10430 10431 10432 10433 10434 10435 10436 10437 10438 10439 10440 10441 10442 10443 10444 10445 10446 10447 10448 10449 10450 10451 10452 10453 10454 10455 10456 10457 10458 10459 10460 10461 10462 10463 10464 10465 10466 10467 10468 10469 10470 10471 10472 10473 10474 10475 10476 10477 10478 10479 10480 10481 10482 10483 10484 10485 10486 10487 10488 10489 10490 10491 10492 10493 10494 10495 10496 10497 10498 10499 10500 10501 10502 10503 10504 10505 10506 10507 10508 10509 10510 10511 10512 10513 10514 10515 10516 10517 10518 10519 10520 10521 10522 10523 10524 10525 10526 10527 10528 10529 10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 10548 10549 10550 10551 10552 10553 10554 10555 10556 10557 10558 10559 10560 10561 10562 10563 10564 10565 10566 10567 10568 10569 10570 10571 10572 10573 10574 10575 10576 10577 10578 10579 10580 10581 10582 10583 10584 10585 10586 10587 10588 10589 10590 10591 10592 10593 10594 10595 10596 10597 10598 10599 10600 10601 10602 10603 10604 10605 10606 10607 10608 10609 10610 10611 10612 10613 10614 10615 10616 10617 10618 10619 10620 10621 10622 10623 10624 10625 10626 10627 10628 10629 10630 10631 10632 10633 10634 10635 10636 10637 10638 10639 10640 10641 10642 10643 10644 10645 10646 10647 10648 10649 10650 10651 10652 10653 10654 10655 10656 10657 10658 10659 10660 10661 10662 10663 10664 10665 10666 10667 10668 10669 10670 10671 10672 10673 10674 10675 10676 10677 10678 10679 10680 10681 10682 10683 10684 10685 10686 10687 10688 10689 10690 10691 10692 10693 10694 10695 10696 10697 10698 10699 10700 10701 10702 10703 10704 10705 10706 10707 10708 10709 10710 10711 10712 10713 10714 10715 10716 10717 10718 10719 10720 10721 10722 10723 10724 10725 10726 10727 10728 10729 10730 10731 10732 10733 10734 10735 10736 10737 10738 10739 10740 10741 10742 10743 10744 10745 10746 10747 10748 10749 10750 10751 10752 10753 10754 10755 10756 10757 10758 10759 10760 10761 10762 10763 10764 10765 10766 10767 10768 10769 10770 10771 10772 10773 10774 10775 10776 10777 10778 10779 10780 10781 10782 10783 10784 10785 10786 10787 10788 10789 10790 10791 10792 10793 10794 10795 10796 10797 10798 10799 10800 10801 10802 10803 10804 10805 10806 10807 10808 10809 10810 10811 10812 10813 10814 10815 10816 10817 10818 10819 10820 10821 10822 10823 10824 10825 10826 10827 10828 10829 10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 10879 10880 10881 10882 10883 10884 10885 10886 10887 10888 10889 10890 10891 10892 10893 10894 10895 10896 10897 10898 10899 10900 10901 10902 10903 10904 10905 10906 10907 10908 10909 10910 10911 10912 10913 10914 10915 10916 10917 10918 10919 10920 10921 10922 10923 10924 10925 10926 10927 10928 10929 10930 10931 10932 10933 10934 10935 10936 10937 10938 10939 10940 10941 10942 10943 10944 10945 10946 10947 10948 10949 10950 10951 10952 10953 10954 10955 10956 10957 10958 10959 10960 10961 10962 10963 10964 10965 10966 10967 10968 10969 10970 10971 10972 10973 10974 10975 10976 10977 10978 10979 10980 10981 10982 10983 10984 10985 10986 10987 10988 10989 10990 10991 10992 10993 10994 10995 10996 10997 10998 10999 11000 11001 11002 11003 11004 11005 11006 11007 11008 11009 11010 11011 11012 11013 11014 11015 11016 11017 11018 11019 11020 11021 11022 11023 11024 11025 11026 11027 11028 11029 11030 11031 11032 11033 11034 11035 11036 11037 11038 11039 11040 11041 11042 11043 11044 11045 11046 11047 11048 11049 11050 11051 11052 11053 11054 11055 11056 11057 11058 11059 11060 11061 11062 11063 11064 11065 11066 11067 11068 11069 11070 11071 11072 11073 11074 11075 11076 11077 11078 11079 11080 11081 11082 11083 11084 11085 11086 11087 11088 11089 11090 11091 11092 11093 11094 11095 11096 11097 11098 11099 11100 11101 11102 11103 11104 11105 11106 11107 11108 11109 11110 11111 11112 11113 11114 11115 11116 11117 11118 11119 11120 11121 11122 11123 11124 11125 11126 11127 11128 11129 11130 11131 11132 11133 11134 11135 11136 11137 11138 11139 11140 11141 11142 11143 11144 11145 11146 11147 11148 11149 11150 11151 11152 11153 11154 11155 11156 11157 11158 11159 11160 11161 11162 11163 11164 11165 11166 11167 11168 11169 11170 11171 11172 11173 11174 11175 11176 11177 11178 11179 11180 11181 11182 11183 11184 11185 11186 11187 11188 11189 11190 11191 11192 11193 11194 11195 11196 11197 11198 11199 11200 11201 11202 11203 11204 11205 11206 11207 11208 11209 11210 11211 11212 11213 11214 11215 11216 11217 11218 11219 11220 11221 11222 11223 11224 11225 11226 11227 11228 11229 11230 11231 11232 11233 11234 11235 11236 11237 11238 11239 11240 11241 11242 11243 11244 11245 11246 11247 11248 11249 11250 11251 11252 11253 11254 11255 11256 11257 11258 11259 11260 11261 11262 11263 11264 11265 11266 11267 11268 11269 11270 11271 11272 11273 11274 11275 11276 11277 11278 11279 11280 11281 11282 11283 11284 11285 11286 11287 11288 11289 11290 11291 11292 11293 11294 11295 11296 11297 11298 11299 11300 11301 11302 11303 11304 11305 11306 11307 11308 11309 11310 11311 11312 11313 11314 11315 11316 11317 11318 11319 11320 11321 11322 11323 11324 11325 11326 11327 11328 11329 11330 11331 11332 11333 11334 11335 11336 11337 11338 11339 11340 11341 11342 11343 11344 11345 11346 11347 11348 11349 11350 11351 11352 11353 11354 11355 11356 11357 11358 11359 11360 11361 11362 11363 11364 11365 11366 11367 11368 11369 11370 11371 11372 11373 11374 11375 11376 11377 11378 11379 11380 11381 11382 11383 11384 11385 11386 11387 11388 11389 11390 11391 11392 11393 11394 11395 11396 11397 11398 11399 11400 11401 11402 11403 11404 11405 11406 11407 11408 11409 11410 11411 11412 11413 11414 11415 11416 11417 11418 11419 11420 11421 11422 11423 11424 11425 11426 11427 11428 11429 11430 11431 11432 11433 11434 11435 11436 11437 11438 11439 11440 11441 11442 11443 11444 11445 11446 11447 11448 11449 11450 11451 11452 11453 11454 11455 11456 11457 11458 11459 11460 11461 11462 11463 11464 11465 11466 11467 11468 11469 11470 11471 11472 11473 11474 11475 11476 11477 11478 11479 11480 11481 11482 11483 11484 11485 11486 11487 11488 11489 11490 11491 11492 11493 11494 11495 11496 11497 11498 11499 11500 11501 11502 11503 11504 11505 11506 11507 11508 11509 11510 11511 11512 11513 11514 11515 11516 11517 11518 11519 11520 11521 11522 11523 11524 11525 11526 11527 11528 11529 11530 11531 11532 11533 11534 11535 11536 11537 11538 11539 11540 11541 11542 11543 11544 11545 11546 11547 11548 11549 11550 11551 11552 11553 11554 11555 11556 11557 11558 11559 11560 11561 11562 11563 11564 11565 11566 11567 11568 11569 11570 11571 11572 11573 11574 11575 11576 11577 11578 11579 11580 11581 11582 11583 11584 11585 11586 11587 11588 11589 11590 11591 11592 11593 11594 11595 11596 11597 11598 11599 11600 11601 11602 11603 11604 11605 11606 11607 11608 11609 11610 11611 11612 11613 11614 11615 11616 11617 11618 11619 11620 11621 11622 11623 11624 11625 11626 11627 11628 11629 11630 11631 11632 11633 11634 11635 11636 11637 11638 11639 11640 11641 11642 11643 11644 11645 11646 11647 11648 11649 11650 11651 11652 11653 11654 11655 11656 11657 11658 11659 11660 11661 11662 11663 11664 11665 11666 11667 11668 11669 11670 11671 11672 11673 11674 11675 11676 11677 11678 11679 11680 11681 11682 11683 11684 11685 11686 11687 11688 11689 11690 11691 11692 11693 11694 11695 11696 11697 11698 11699 11700 11701 11702 11703 11704 11705 11706 11707 11708 11709 11710 11711 11712 11713 11714 11715 11716 11717 11718 11719 11720 11721 11722 11723 11724 11725 11726 11727 11728 11729 11730 11731 11732 11733 11734 11735 11736 11737 11738 11739 11740 11741 11742 11743 11744 11745 11746 11747 11748 11749 11750 11751 11752 11753 11754 11755 11756 11757 11758 11759 11760 11761 11762 11763 11764 11765 11766 11767 11768 11769 11770 11771 11772 11773 11774 11775 11776 11777 11778 11779 11780 11781 11782 11783 11784 11785 11786 11787 11788 11789 11790 11791 11792 11793 11794 11795 11796 11797 11798 11799 11800 11801 11802 11803 11804 11805 11806 11807 11808 11809 11810 11811 11812 11813 11814 11815 11816 11817 11818 11819 11820 11821 11822 11823 11824 11825 11826 11827 11828 11829 11830 11831 11832 11833 11834 11835 11836 11837 11838 11839 11840 11841 11842 11843 11844 11845 11846 11847 11848 11849 11850 11851 11852 11853 11854 11855 11856 11857 11858 11859 11860 11861 11862 11863 11864 11865 11866 11867 11868 11869 11870 11871 11872 11873 11874 11875 11876 11877 11878 11879 11880 11881 11882 11883 11884 11885 11886 11887 11888 11889 11890 11891 11892 11893 11894 11895 11896 11897 11898 11899 11900 11901 11902 11903 11904 11905 11906 11907 11908 11909 11910 11911 11912 11913 11914 11915 11916 11917 11918 11919 11920 11921 11922 11923 11924 11925 11926 11927 11928 11929 11930 11931 11932 11933 11934 11935 11936 11937 11938 11939 11940 11941 11942 11943 11944 11945 11946 11947 11948 11949 11950 11951 11952 11953 11954 11955 11956 11957 11958 11959 11960 11961 11962 11963 11964 11965 11966 11967 11968 11969 11970 11971 11972 11973 11974 11975 11976 11977 11978 11979 11980 11981 11982 11983 11984 11985 11986 11987 11988 11989 11990 11991 11992 11993 11994 11995 11996 11997 11998 11999 12000 12001 12002 12003 12004 12005 12006 12007 12008 12009 12010 12011 12012 12013 12014 12015 12016 12017 12018 12019 12020 12021 12022 12023 12024 12025 12026 12027 12028 12029 12030 12031 12032 12033 12034 12035 12036 12037 12038 12039 12040 12041 12042 12043 12044 12045 12046 12047 12048 12049 12050 12051 12052 12053 12054 12055 12056 12057 12058 12059 12060 12061 12062 12063 12064 12065 12066 12067 12068 12069 12070 12071 12072 12073 12074 12075 12076 12077 12078 12079 12080 12081 12082 12083 12084 12085 12086 12087 12088 12089 12090 12091 12092 12093 12094 12095 12096 12097 12098 12099 12100 12101 12102 12103 12104 12105 12106 12107 12108 12109 12110 12111 12112 12113 12114 12115 12116 12117 12118 12119 12120 12121 12122 12123 12124 12125 12126 12127 12128 12129 12130 12131 12132 12133 12134 12135 12136 12137 12138 12139 12140 12141 12142 12143 12144 12145 12146 12147 12148 12149 12150 12151 12152 12153 12154 12155 12156 12157 12158 12159 12160 12161 12162 12163 12164 12165 12166 12167 12168 12169 12170 12171 12172 12173 12174 12175 12176 12177 12178 12179 12180 12181 12182 12183 12184 12185 12186 12187 12188 12189 12190 12191 12192 12193 12194 12195 12196 12197 12198 12199 12200 12201 12202 12203 12204 12205 12206 12207 12208 12209 12210 12211 12212 12213 12214 12215 12216 12217 12218 12219 12220 12221 12222 12223 12224 12225 12226 12227 12228 12229 12230 12231 12232 12233 12234 12235 12236 12237 12238 12239 12240 12241 12242 12243 12244 12245 12246 12247 12248 12249 12250 12251 12252 12253 12254 12255 12256 12257 12258 12259 12260 12261 12262 12263 12264 12265 12266 12267 12268 12269 12270 12271 12272 12273 12274 12275 12276 12277 12278 12279 12280 12281 12282 12283 12284 12285 12286 12287 12288 12289 12290 12291 12292 12293 12294 12295 12296 12297 12298 12299 12300 12301 12302 12303 12304 12305 12306 12307 12308 12309 12310 12311 12312 12313 12314 12315 12316 12317 12318 12319 12320 12321 12322 12323 12324 12325 12326 12327 12328 12329 12330 12331 12332 12333 12334 12335 12336 12337 12338 12339 12340 12341 12342 12343 12344 12345 12346 12347 12348 12349 12350 12351 12352 12353 12354 12355 12356 12357 12358 12359 12360 12361 12362 12363 12364 12365 12366 12367 12368 12369 12370 12371 12372 12373 12374 12375 12376 12377 12378 12379 12380 12381 12382 12383 12384 12385 12386 12387 12388 12389 12390 12391 12392 12393 12394 12395 12396 12397 12398 12399 12400 12401 12402 12403 12404 12405 12406 12407 12408 12409 12410 12411 12412 12413 12414 12415 12416 12417 12418 12419 12420 12421 12422 12423 12424 12425 12426 12427 12428 12429 12430 12431 12432 12433 12434 12435 12436 12437 12438 12439 12440 12441 12442 12443 12444 12445 12446 12447 12448 12449 12450 12451 12452 12453 12454 12455 12456 12457 12458 12459 12460 12461 12462 12463 12464 12465 12466 12467 12468 12469 12470 12471 12472 12473 12474 12475 12476 12477 12478 12479 12480 12481 12482 12483 12484 12485 12486 12487 12488 12489 12490 12491 12492 12493 12494 12495 12496 12497 12498 12499 12500 12501 12502 12503 12504 12505 12506 12507 12508 12509 12510 12511 12512 12513 12514 12515 12516 12517 12518 12519 12520 12521 12522 12523 12524 12525 12526 12527 12528 12529 12530 12531 12532 12533 12534 12535 12536 12537 12538 12539 12540 12541 12542 12543 12544 12545 12546 12547 12548 12549 12550 12551 12552 12553 12554 12555 12556 12557 12558 12559 12560 12561 12562 12563 12564 12565 12566 12567 12568 12569 12570 12571 12572 12573 12574 12575 12576 12577 12578 12579 12580 12581 12582 12583 12584 12585 12586 12587 12588 12589 12590 12591 12592 12593 12594 12595 12596 12597 12598 12599 12600 12601 12602 12603 12604 12605 12606 12607 12608 12609 12610 12611 12612 12613 12614 12615 12616 12617 12618 12619 12620 12621 12622 12623 12624 12625 12626 12627 12628 12629 12630 12631 12632 12633 12634 12635 12636 12637 12638 12639 12640 12641 12642 12643 12644 12645 12646 12647 12648 12649 12650 12651 12652 12653 12654 12655 12656 12657 12658 12659 12660 12661 12662 12663 12664 12665 12666 12667 12668 12669 12670 12671 12672 12673 12674 12675 12676 12677 12678 12679 12680 12681 12682 12683 12684 12685 12686 12687 12688 12689 12690 12691 12692 12693 12694 12695 12696 12697 12698 12699 12700 12701 12702 12703 12704 12705 12706 12707 12708 12709 12710 12711 12712 12713 12714 12715 12716 12717 12718 12719 12720 12721 12722 12723 12724 12725 12726 12727 12728 12729 12730 12731 12732 12733 12734 12735 12736 12737 12738 12739 12740 12741 12742 12743 12744 12745 12746 12747 12748 12749 12750 12751 12752 12753 12754 12755 12756 12757 12758 12759 12760 12761 12762 12763 12764 12765 12766 12767 12768 12769 12770 12771 12772 12773 12774 12775 12776 12777 12778 12779 12780 12781 12782 12783 12784 12785 12786 12787 12788 12789 12790 12791 12792 12793 12794 12795 12796 12797 12798 12799 12800 12801 12802 12803 12804 12805 12806 12807 12808 12809 12810 12811 12812 12813 12814 12815 12816 12817 12818 12819 12820 12821 12822 12823 12824 12825 12826 12827 12828 12829 12830 12831 12832 12833 12834 12835 12836 12837 12838 12839 12840 12841 12842 12843 12844 12845 12846 12847 12848 12849 12850 12851 12852 12853 12854 12855 12856 12857 12858 12859 12860 12861 12862 12863 12864 12865 12866 12867 12868 12869 12870 12871 12872 12873 12874 12875 12876 12877 12878 12879 12880 12881 12882 12883 12884 12885 12886 12887 12888 12889 12890 12891 12892 12893 12894 12895 12896 12897 12898 12899 12900 12901 12902 12903 12904 12905 12906 12907 12908 12909 12910 12911 12912 12913 12914 12915 12916 12917 12918 12919 12920 12921 12922 12923 12924 12925 12926 12927 12928 12929 12930 12931 12932 12933 12934 12935 12936 12937 12938 12939 12940 12941 12942 12943 12944 12945 12946 12947 12948 12949 12950 12951 12952 12953 12954 12955 12956 12957 12958 12959 12960 12961 12962 12963 12964 12965 12966 12967 12968 12969 12970 12971 12972 12973 12974 12975 12976 12977 12978 12979 12980 12981 12982 12983 12984 12985 12986 12987 12988 12989 12990 12991 12992 12993 12994 12995 12996 12997 12998 12999 13000 13001 13002 13003 13004 13005 13006 13007 13008 13009 13010 13011 13012 13013 13014 13015 13016 13017 13018 13019 13020 13021 13022 13023 13024 13025 13026 13027 13028 13029 13030 13031 13032 13033 13034 13035 13036 13037 13038 13039 13040 13041 13042 13043 13044 13045 13046 13047 13048 13049 13050 13051 13052 13053 13054 13055 13056 13057 13058 13059 13060 13061 13062 13063 13064 13065 13066 13067 13068 13069 13070 13071 13072 13073 13074 13075 13076 13077 13078 13079 13080 13081 13082 13083 13084 13085 13086 13087 13088 13089 13090 13091 13092 13093 13094 13095 13096 13097 13098 13099 13100 13101 13102 13103 13104 13105 13106 13107 13108 13109 13110 13111 13112 13113 13114 13115 13116 13117 13118 13119 13120 13121 13122 13123 13124 13125 13126 13127 13128 13129 13130 13131 13132 13133 13134 13135 13136 13137 13138 13139 13140 13141 13142 13143 13144 13145 13146 13147 13148 13149 13150 13151 13152 13153 13154 13155 13156 13157 13158 13159 13160 13161 13162 13163 13164 13165 13166 13167 13168 13169 13170 13171 13172 13173 13174 13175 13176 13177 13178 13179 13180 13181 13182 13183 13184 13185 13186 13187 13188 13189 13190 13191 13192 13193 13194 13195 13196 13197 13198 13199 13200 13201 13202 13203 13204 13205 13206 13207 13208 13209 13210 13211 13212 13213 13214 13215 13216 13217 13218 13219 13220 13221 13222 13223 13224 13225 13226 13227 13228 13229 13230 13231 13232 13233 13234 13235 13236 13237 13238 13239 13240 13241 13242 13243 13244 13245 13246 13247 13248 13249 13250 13251 13252 13253 13254 13255 13256 13257 13258 13259 13260 13261 13262 13263 13264 13265 13266 13267 13268 13269 13270 13271 13272 13273 13274 13275 13276 13277 13278 13279 13280 13281 13282 13283 13284 13285 13286 13287 13288 13289 13290 13291 13292 13293 13294 13295 13296 13297 13298 13299 13300 13301 13302 13303 13304 13305 13306 13307 13308 13309 13310 13311 13312 13313 13314 13315 13316 13317 13318 13319 13320 13321 13322 13323 13324 13325 13326 13327 13328 13329 13330 13331 13332 13333 13334 13335 13336 13337 13338 13339 13340 13341 13342 13343 13344 13345 13346 13347 13348 13349 13350 13351 13352 13353 13354 13355 13356 13357 13358 13359 13360 13361 13362 13363 13364 13365 13366 13367 13368 13369 13370 13371 13372 13373 13374 13375 13376 13377 13378 13379 13380 13381 13382 13383 13384 13385 13386 13387 13388 13389 13390 13391 13392 13393 13394 13395 13396 13397 13398 13399 13400 13401 13402 13403 13404 13405 13406 13407 13408 13409 13410 13411 13412 13413 13414 13415 13416 13417 13418 13419 13420 13421 13422 13423 13424 13425 13426 13427 13428 13429 13430 13431 13432 13433 13434 13435 13436 13437 13438 13439 13440 13441 13442 13443 13444 13445 13446 13447 13448 13449 13450 13451 13452 13453 13454 13455 13456 13457 13458 13459 13460 13461 13462 13463 13464 13465 13466 13467 13468 13469 13470 13471 13472 13473 13474 13475 13476 13477 13478 13479 13480 13481 13482 13483 13484 13485 13486 13487 13488 13489 13490 13491 13492 13493 13494 13495 13496 13497 13498 13499 13500 13501 13502 13503 13504 13505 13506 13507 13508 13509 13510 13511 13512 13513 13514 13515 13516 13517 13518 13519 13520 13521 13522 13523 13524 13525 13526 13527 13528 13529 13530 13531 13532 13533 13534 13535 13536 13537 13538 13539 13540 13541 13542 13543 13544 13545 13546 13547 13548 13549 13550 13551 13552 13553 13554 13555 13556 13557 13558 13559 13560 13561 13562 13563 13564 13565 13566 13567 13568 13569 13570 13571 13572 13573 13574 13575 13576 13577 13578 13579 13580 13581 13582 13583 13584 13585 13586 13587 13588 13589 13590 13591 13592 13593 13594 13595 13596 13597 13598 13599 13600 13601 13602 13603 13604 13605 13606 13607 13608 13609 13610 13611 13612 13613 13614 13615 13616 13617 13618 13619 13620 13621 13622 13623 13624 13625 13626 13627 13628 13629 13630 13631 13632 13633 13634 13635 13636 13637 13638 13639 13640 13641 13642 13643 13644 13645 13646 13647 13648 13649 13650 13651 13652 13653 13654 13655 13656 13657 13658 13659 13660 13661 13662 13663 13664 13665 13666 13667 13668 13669 13670 13671 13672 13673 13674 13675 13676 13677 13678 13679 13680 13681 13682 13683 13684 13685 13686 13687 13688 13689 13690 13691 13692 13693 13694 13695 13696 13697 13698 13699 13700 13701 13702 13703 13704 13705 13706 13707 13708 13709 13710 13711 13712 13713 13714 13715 13716 13717 13718 13719 13720 13721 13722 13723 13724 13725 13726 13727 13728 13729 13730 13731 13732 13733 13734 13735 13736 13737 13738 13739 13740 13741 13742 13743 13744 13745 13746 13747 13748 13749 13750 13751 13752 13753 13754 13755 13756 13757 13758 13759 13760 13761 13762 13763 13764 13765 13766 13767 13768 13769 13770 13771 13772 13773 13774 13775 13776 13777 13778 13779 13780 13781 13782 13783 13784 13785 13786 13787 13788 13789 13790 13791 13792 13793 13794 13795 13796 13797 13798 13799 13800 13801 13802 13803 13804 13805 13806 13807 13808 13809 13810 13811 13812 13813 13814 13815 13816 13817 13818 13819 13820 13821 13822 13823 13824 13825 13826 13827 13828 13829 13830 13831 13832 13833 13834 13835 13836 13837 13838 13839 13840 13841 13842 13843 13844 13845 13846 13847 13848 13849 13850 13851 13852 13853 13854 13855 13856 13857 13858 13859 13860 13861 13862 13863 13864 13865 13866 13867 13868 13869 13870 13871 13872 13873 13874 13875 13876 13877 13878 13879 13880 13881 13882 13883 13884 13885 13886 13887 13888 13889 13890 13891 13892 13893 13894 13895 13896 13897 13898 13899 13900 13901 13902 13903 13904 13905 13906 13907 13908 13909 13910 13911 13912 13913 13914 13915 13916 13917 13918 13919 13920 13921 13922 13923 13924 13925 13926 13927 13928 13929 13930 13931 13932 13933 13934 13935 13936 13937 13938 13939 13940 13941 13942 13943 13944 13945 13946 13947 13948 13949 13950 13951 13952 13953 13954 13955 13956 13957 13958 13959 13960 13961 13962 13963 13964 13965 13966 13967 13968 13969 13970 13971 13972 13973 13974 13975 13976 13977 13978 13979 13980 13981 13982 13983 13984 13985 13986 13987 13988 13989 13990 13991 13992 13993 13994 13995 13996 13997 13998 13999 14000 14001 14002 14003 14004 14005 14006 14007 14008 14009 14010 14011 14012 14013 14014 14015 14016 14017 14018 14019 14020 14021 14022 14023 14024 14025 14026 14027 14028 14029 14030 14031 14032 14033 14034 14035 14036 14037 14038 14039 14040 14041 14042 14043 14044 14045 14046 14047 14048 14049 14050 14051 14052 14053 14054 14055 14056 14057 14058 14059 14060 14061 14062 14063 14064 14065 14066 14067 14068 14069 14070 14071 14072 14073 14074 14075 14076 14077 14078 14079 14080 14081 14082 14083 14084 14085 14086 14087 14088 14089 14090 14091 14092 14093 14094 14095 14096 14097 14098 14099 14100 14101 14102 14103 14104 14105 14106 14107 14108 14109 14110 14111 14112 14113 14114 14115 14116 14117 14118 14119 14120 14121 14122 14123 14124 14125 14126 14127 14128 14129 14130 14131 14132 14133 14134 14135 14136 14137 14138 14139 14140 14141 14142 14143 14144 14145 14146 14147 14148 14149 14150 14151 14152 14153 14154 14155 14156 14157 14158 14159 14160 14161 14162 14163 14164 14165 14166 14167 14168 14169 14170 14171 14172 14173 14174 14175 14176 14177 14178 14179 14180 14181 14182 14183 14184 14185 14186 14187 14188 14189 14190 14191 14192 14193 14194 14195 14196 14197 14198 14199 14200 14201 14202 14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 14230 14231 14232 14233 14234 14235 14236 14237 14238 14239 14240 14241 14242 14243 14244 14245 14246 14247 14248 14249 14250 14251 14252 14253 14254 14255 14256 14257 14258 14259 14260 14261 14262 14263 14264 14265 14266 14267 14268 14269 14270 14271 14272 14273 14274 14275 14276 14277 14278 14279 14280 14281 14282 14283 14284 14285 14286 14287 14288 14289 14290 14291 14292 14293 14294 14295 14296 14297 14298 14299 14300 14301 14302 14303 14304 14305 14306 14307 14308 14309 14310 14311 14312 14313 14314 14315 14316 14317 14318 14319 14320 14321 14322 14323 14324 14325 14326 14327 14328 14329 14330 14331 14332 14333 14334 14335 14336 14337 14338 14339 14340 14341 14342 14343 14344 14345 14346 14347 14348 14349 14350 14351 14352 14353 14354 14355 14356 14357 14358 14359 14360 14361 14362 14363 14364 14365 14366 14367 14368 14369 14370 14371 14372 14373 14374 14375 14376 14377 14378 14379 14380 14381 14382 14383 14384 14385 14386 14387 14388 14389 14390 14391 14392 14393 14394 14395 14396 14397 14398 14399 14400 14401 14402 14403 14404 14405 14406 14407 14408 14409 14410 14411 14412 14413 14414 14415 14416 14417 14418 14419 14420 14421 14422 14423 14424 14425 14426 14427 14428 14429 14430 14431 14432 14433 14434 14435 14436 14437 14438 14439 14440 14441 14442 14443 14444 14445 14446 14447 14448 14449 14450 14451 14452 14453 14454 14455 14456 14457 14458 14459 14460 14461 14462 14463 14464 14465 14466 14467 14468 14469 14470 14471 14472 14473 14474 14475 14476 14477 14478 14479 14480 14481 14482 14483 14484 14485 14486 14487 14488 14489 14490 14491 14492 14493 14494 14495 14496 14497 14498 14499 14500 14501 14502 14503 14504 14505 14506 14507 14508 14509 14510 14511 14512 14513 14514 14515 14516 14517 14518 14519 14520 14521 14522 14523 14524 14525 14526 14527 14528 14529 14530 14531 14532 14533 14534 14535 14536 14537 14538 14539 14540 14541 14542 14543 14544 14545 14546 14547 14548 14549 14550 14551 14552 14553 14554 14555 14556 14557 14558 14559 14560 14561 14562 14563 14564 14565 14566 14567 14568 14569 14570 14571 14572 14573 14574 14575 14576 14577 14578 14579 14580 14581 14582 14583 14584 14585 14586 14587 14588 14589 14590 14591 14592 14593 14594 14595 14596 14597 14598 14599 14600 14601 14602 14603 14604 14605 14606 14607 14608 14609 14610 14611 14612 14613 14614 14615 14616 14617 14618 14619 14620 14621 14622 14623 14624 14625 14626 14627 14628 14629 14630 14631 14632 14633 14634 14635 14636 14637 14638 14639 14640 14641 14642 14643 14644 14645 14646 14647 14648 14649 14650 14651 14652 14653 14654 14655 14656 14657 14658 14659 14660 14661 14662 14663 14664 14665 14666 14667 14668 14669 14670 14671 14672 14673 14674 14675 14676 14677 14678 14679 14680 14681 14682 14683 14684 14685 14686 14687 14688 14689 14690 14691 14692 14693 14694 14695 14696 14697 14698 14699 14700 14701 14702 14703 14704 14705 14706 14707 14708 14709 14710 14711 14712 14713 14714 14715 14716 14717 14718 14719 14720 14721 14722 14723 14724 14725 14726 14727 14728 14729 14730 14731 14732 14733 14734 14735 14736 14737 14738 14739 14740 14741 14742 14743 14744 14745 14746 14747 14748 14749 14750 14751 14752 14753 14754 14755 14756 14757 14758 14759 14760 14761 14762 14763 14764 14765 14766 14767 14768 14769 14770 14771 14772 14773 14774 14775 14776 14777 14778 14779 14780 14781 14782 14783 14784 14785 14786 14787 14788 14789 14790 14791 14792 14793 14794 14795 14796 14797 14798 14799 14800 14801 14802 14803 14804 14805 14806 14807 14808 14809 14810 14811 14812 14813 14814 14815 14816 14817 14818 14819 14820 14821 14822 14823 14824 14825 14826 14827 14828 14829 14830 14831 14832 14833 14834 14835 14836 14837 14838 14839 14840 14841 14842 14843 14844 14845 14846 14847 14848 14849 14850 14851 14852 14853 14854 14855 14856 14857 14858 14859 14860 14861 14862 14863 14864 14865 14866 14867 14868 14869 14870 14871 14872 14873 14874 14875 14876 14877 14878 14879 14880 14881 14882 14883 14884 14885 14886 14887 14888 14889 14890 14891 14892 14893 14894 14895 14896 14897 14898 14899 14900 14901 14902 14903 14904 14905 14906 14907 14908 14909 14910 14911 14912 14913 14914 14915 14916 14917 14918 14919 14920 14921 14922 14923 14924 14925 14926 14927 14928 14929 14930 14931 14932 14933 14934 14935 14936 14937 14938 14939 14940 14941 14942 14943 14944 14945 14946 14947 14948 14949 14950 14951 14952 14953 14954 14955 14956 14957 14958 14959 14960 14961 14962 14963 14964 14965 14966 14967 14968 14969 14970 14971 14972 14973 14974 14975 14976 14977 14978 14979 14980 14981 14982 14983 14984 14985 14986 14987 14988 14989 14990 14991 14992 14993 14994 14995 14996 14997 14998 14999 15000 15001 15002 15003 15004 15005 15006 15007 15008 15009 15010 15011 15012 15013 15014 15015 15016 15017 15018 15019 15020 15021 15022 15023 15024 15025 15026 15027 15028 15029 15030 15031 15032 15033 15034 15035 15036 15037 15038 15039 15040 15041 15042 15043 15044 15045 15046 15047 15048 15049 15050 15051 15052 15053 15054 15055 15056 15057 15058 15059 15060 15061 15062 15063 15064 15065 15066 15067 15068 15069 15070 15071 15072 15073 15074 15075 15076 15077 15078 15079 15080 15081 15082 15083 15084 15085 15086 15087 15088 15089 15090 15091 15092 15093 15094 15095 15096 15097 15098 15099 15100 15101 15102 15103 15104 15105 15106 15107 15108 15109 15110 15111 15112 15113 15114 15115 15116 15117 15118 15119 15120 15121 15122 15123 15124 15125 15126 15127 15128 15129 15130 15131 15132 15133 15134 15135 15136 15137 15138 15139 15140 15141 15142 15143 15144 15145 15146 15147 15148 15149 15150 15151 15152 15153 15154 15155 15156 15157 15158 15159 15160 15161 15162 15163 15164 15165 15166 15167 15168 15169 15170 15171 15172 15173 15174 15175 15176 15177 15178 15179 15180 15181 15182 15183 15184 15185 15186 15187 15188 15189 15190 15191 15192 15193 15194 15195 15196 15197 15198 15199 15200 15201 15202 15203 15204 15205 15206 15207 15208 15209 15210 15211 15212 15213 15214 15215 15216 15217 15218 15219 15220 15221 15222 15223 15224 15225 15226 15227 15228 15229 15230 15231 15232 15233 15234 15235 15236 15237 15238 15239 15240 15241 15242 15243 15244 15245 15246 15247 15248 15249 15250 15251 15252 15253 15254 15255 15256 15257 15258 15259 15260 15261 15262 15263 15264 15265 15266 15267 15268 15269 15270 15271 15272 15273 15274 15275 15276 15277 15278 15279 15280 15281 15282 15283 15284 15285 15286 15287 15288 15289 15290 15291 15292 15293 15294 15295 15296 15297 15298 15299 15300 15301 15302 15303 15304 15305 15306 15307 15308 15309 15310 15311 15312 15313 15314 15315 15316 15317 15318 15319 15320 15321 15322 15323 15324 15325 15326 15327 15328 15329 15330 15331 15332 15333 15334 15335 15336 15337 15338 15339 15340 15341 15342 15343 15344 15345 15346 15347 15348 15349 15350 15351 15352 15353 15354 15355 15356 15357 15358 15359 15360 15361 15362 15363 15364 15365 15366 15367 15368 15369 15370 15371 15372 15373 15374 15375 15376 15377 15378 15379 15380 15381 15382 15383 15384 15385 15386 15387 15388 15389 15390 15391 15392 15393 15394 15395 15396 15397 15398 15399 15400 15401 15402 15403 15404 15405 15406 15407 15408 15409 15410 15411 15412 15413 15414 15415 15416 15417 15418 15419 15420 15421 15422 15423 15424 15425 15426 15427 15428 15429 15430 15431 15432 15433 15434 15435 15436 15437 15438 15439 15440 15441 15442 15443 15444 15445 15446 15447 15448 15449 15450 15451 15452 15453 15454 15455 15456 15457 15458 15459 15460 15461 15462 15463 15464 15465 15466 15467 15468 15469 15470 15471 15472 15473 15474 15475 15476 15477 15478 15479 15480 15481 15482 15483 15484 15485 15486 15487 15488 15489 15490 15491 15492 15493 15494 15495 15496 15497 15498 15499 15500 15501 15502 15503 15504 15505 15506 15507 15508 15509 15510 15511 15512 15513 15514 15515 15516 15517 15518 15519 15520 15521 15522 15523 15524 15525 15526 15527 15528 15529 15530 15531 15532 15533 15534 15535 15536 15537 15538 15539 15540 15541 15542 15543 15544 15545 15546 15547 15548 15549 15550 15551 15552 15553 15554 15555 15556 15557 15558 15559 15560 15561 15562 15563 15564 15565 15566 15567 15568 15569 15570 15571 15572 15573 15574 15575 15576 15577 15578 15579 15580 15581 15582 15583 15584 15585 15586 15587 15588 15589 15590 15591 15592 15593 15594 15595 15596 15597 15598 15599 15600 15601 15602 15603 15604 15605 15606 15607 15608 15609 15610 15611 15612 15613 15614 15615 15616 15617 15618 15619 15620 15621 15622 15623 15624 15625 15626 15627 15628 15629 15630 15631 15632 15633 15634 15635 15636 15637 15638 15639 15640 15641 15642 15643 15644 15645 15646 15647 15648 15649 15650 15651 15652 15653 15654 15655 15656 15657 15658 15659 15660 15661 15662 15663 15664 15665 15666 15667 15668 15669 15670 15671 15672 15673 15674 15675 15676 15677 15678 15679 15680 15681 15682 15683 15684 15685 15686 15687 15688 15689 15690 15691 15692 15693 15694 15695 15696 15697 15698 15699 15700 15701 15702 15703 15704 15705 15706 15707 15708 15709 15710 15711 15712 15713 15714 15715 15716 15717 15718 15719 15720 15721 15722 15723 15724 15725 15726 15727 15728 15729 15730 15731 15732 15733 15734 15735 15736 15737 15738 15739 15740 15741 15742 15743 15744 15745 15746 15747 15748 15749 15750 15751 15752 15753 15754 15755 15756 15757 15758 15759 15760 15761 15762 15763 15764 15765 15766 15767 15768 15769 15770 15771 15772 15773 15774 15775 15776 15777 15778 15779 15780 15781 15782 15783 15784 15785 15786 15787 15788 15789 15790 15791 15792 15793 15794 15795 15796 15797 15798 15799 15800 15801 15802 15803 15804 15805 15806 15807 15808 15809 15810 15811 15812 15813 15814 15815 15816 15817 15818 15819 15820 15821 15822 15823 15824 15825 15826 15827 15828 15829 15830 15831 15832 15833 15834 15835 15836 15837 15838 15839 15840 15841 15842 15843 15844 15845 15846 15847 15848 15849 15850 15851 15852 15853 15854 15855 15856 15857 15858 15859 15860 15861 15862 15863 15864 15865 15866 15867 15868 15869 15870 15871 15872 15873 15874 15875 15876 15877 15878 15879 15880 15881 15882 15883 15884 15885 15886 15887 15888 15889 15890 15891 15892 15893 15894 15895 15896 15897 15898 15899 15900 15901 15902 15903 15904 15905 15906 15907 15908 15909 15910 15911 15912 15913 15914 15915 15916 15917 15918 15919 15920 15921 15922 15923 15924 15925 15926 15927 15928 15929 15930 15931 15932 15933 15934 15935 15936 15937 15938 15939 15940 15941 15942 15943 15944 15945 15946 15947 15948 15949 15950 15951 15952 15953 15954 15955 15956 15957 15958 15959 15960 15961 15962 15963 15964 15965 15966 15967 15968 15969 15970 15971 15972 15973 15974 15975 15976 15977 15978 15979 15980 15981 15982 15983 15984 15985 15986 15987 15988 15989 15990 15991 15992 15993 15994 15995 15996 15997 15998 15999 16000 16001 16002 16003 16004 16005 16006 16007 16008 16009 16010 16011 16012 16013 16014 16015 16016 16017 16018 16019 16020 16021 16022 16023 16024 16025 16026 16027 16028 16029 16030 16031 16032 16033 16034 16035 16036 16037 16038 16039 16040 16041 16042 16043 16044 16045 16046 16047 16048 16049 16050 16051 16052 16053 16054 16055 16056 16057 16058 16059 16060 16061 16062 16063 16064 16065 16066 16067 16068 16069 16070 16071 16072 16073 16074 16075 16076 16077 16078 16079 16080 16081 16082 16083 16084 16085 16086 16087 16088 16089 16090 16091 16092 16093 16094 16095 16096 16097 16098 16099 16100 16101 16102 16103 16104 16105 16106 16107 16108 16109 16110 16111 16112 16113 16114 16115 16116 16117 16118 16119 16120 16121 16122 16123 16124 16125 16126 16127 16128 16129 16130 16131 16132 16133 16134 16135 16136 16137 16138 16139 16140 16141 16142 16143 16144 16145 16146 16147 16148 16149 16150 16151 16152 16153 16154 16155 16156 16157 16158 16159 16160 16161 16162 16163 16164 16165 16166 16167 16168 16169 16170 16171 16172 16173 16174 16175 16176 16177 16178 16179 16180 16181 16182 16183 16184 16185 16186 16187 16188 16189 16190 16191 16192 16193 16194 16195 16196 16197 16198 16199 16200 16201 16202 16203 16204 16205 16206 16207 16208 16209 16210 16211 16212 16213 16214 16215 16216 16217 16218 16219 16220 16221 16222 16223 16224 16225 16226 16227 16228 16229 16230 16231 16232 16233 16234 16235 16236 16237 16238 16239 16240 16241 16242 16243 16244 16245 16246 16247 16248 16249 16250 16251 16252 16253 16254 16255 16256 16257 16258 16259 16260 16261 16262 16263 16264 16265 16266 16267 16268 16269 16270 16271 16272 16273 16274 16275 16276 16277 16278 16279 16280 16281 16282 16283 16284 16285 16286 16287 16288 16289 16290 16291 16292 16293 16294 16295 16296 16297 16298 16299 16300 16301 16302 16303 16304 16305 16306 16307 16308 16309 16310 16311 16312 16313 16314 16315 16316 16317 16318 16319 16320 16321 16322 16323 16324 16325 16326 16327 16328 16329 16330 16331 16332 16333 16334 16335 16336 16337 16338 16339 16340 16341 16342 16343 16344 16345 16346 16347 16348 16349 16350 16351 16352 16353 16354 16355 16356 16357 16358 16359 16360 16361 16362 16363 16364 16365 16366 16367 16368 16369 16370 16371 16372 16373 16374 16375 16376 16377 16378 16379 16380 16381 16382 16383 16384 16385 16386 16387 16388 16389 16390 16391 16392 16393 16394 16395 16396 16397 16398 16399 16400 16401 16402 16403 16404 16405 16406 16407 16408 16409 16410 16411 16412 16413 16414 16415 16416 16417 16418 16419 16420 16421 16422 16423 16424 16425 16426 16427 16428 16429 16430 16431 16432 16433 16434 16435 16436 16437 16438 16439 16440 16441 16442 16443 16444 16445 16446 16447 16448 16449 16450 16451 16452 16453 16454 16455 16456 16457 16458 16459 16460 16461 16462 16463 16464 16465 16466 16467 16468 16469 16470 16471 16472 16473 16474 16475 16476 16477 16478 16479 16480 16481 16482 16483 16484 16485 16486 16487 16488 16489 16490 16491 16492 16493 16494 16495 16496 16497 16498 16499 16500 16501 16502 16503 16504 16505 16506 16507 16508 16509 16510 16511 16512 16513 16514 16515 16516 16517 16518 16519 16520 16521 16522 16523 16524 16525 16526 16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 16558 16559 16560 16561 16562 16563 16564 16565 16566 16567 16568 16569 16570 16571 16572 16573 16574 16575 16576 16577 16578 16579 16580 16581 16582 16583 16584 16585 16586 16587 16588 16589 16590 16591 16592 16593 16594 16595 16596 16597 16598 16599 16600 16601 16602 16603 16604 16605 16606 16607 16608 16609 16610 16611 16612 16613 16614 16615 16616 16617 16618 16619 16620 16621 16622 16623 16624 16625 16626 16627 16628 16629 16630 16631 16632 16633 16634 16635 16636 16637 16638 16639 16640 16641 16642 16643 16644 16645 16646 16647 16648 16649 16650 16651 16652 16653 16654 16655 16656 16657 16658 16659 16660 16661 16662 16663 16664 16665 16666 16667 16668 16669 16670 16671 16672 16673 16674 16675 16676 16677 16678 16679 16680 16681 16682 16683 16684 16685 16686 16687 16688 16689 16690 16691 16692 16693 16694 16695 16696 16697 16698 16699 16700 16701 16702 16703 16704 16705 16706 16707 16708 16709 16710 16711 16712 16713 16714 16715 16716 16717 16718 16719 16720 16721 16722 16723 16724 16725 16726 16727 16728 16729 16730 16731 16732 16733 16734 16735 16736 16737 16738 16739 16740 16741 16742 16743 16744 16745 16746 16747 16748 16749 16750 16751 16752 16753 16754 16755 16756 16757 16758 16759 16760 16761 16762 16763 16764 16765 16766 16767 16768 16769 16770 16771 16772 16773 16774 16775 16776 16777 16778 16779 16780 16781 16782 16783 16784 16785 16786 16787 16788 16789 16790 16791 16792 16793 16794 16795 16796 16797 16798 16799 16800 16801 16802 16803 16804 16805 16806 16807 16808 16809 16810 16811 16812 16813 16814 16815 16816 16817 16818 16819 16820 16821 16822 16823 16824 16825 16826 16827 16828 16829 16830 16831 16832 16833 16834 16835 16836 16837 16838 16839 16840 16841 16842 16843 16844 16845 16846 16847 16848 16849 16850 16851 16852 16853 16854 16855 16856 16857 16858 16859 16860 16861 16862 16863 16864 16865 16866 16867 16868 16869 16870 16871 16872 16873 16874 16875 16876 16877 16878 16879 16880 16881 16882 16883 16884 16885 16886 16887 16888 16889 16890 16891 16892 16893 16894 16895 16896 16897 16898 16899 16900 16901 16902 16903 16904 16905 16906 16907 16908 16909 16910 16911 16912 16913 16914 16915 16916 16917 16918 16919 16920 16921 16922 16923 16924 16925 16926 16927 16928 16929 16930 16931 16932 16933 16934 16935 16936 16937 16938 16939 16940 16941 16942 16943 16944 16945 16946 16947 16948 16949 16950 16951 16952 16953 16954 16955 16956 16957 16958 16959 16960 16961 16962 16963 16964 16965 16966 16967 16968 16969 16970 16971 16972 16973 16974 16975 16976 16977 16978 16979 16980 16981 16982 16983 16984 16985 16986 16987 16988 16989 16990 16991 16992 16993 16994 16995 16996 16997 16998 16999 17000 17001 17002 17003 17004 17005 17006 17007 17008 17009 17010 17011 17012 17013 17014 17015 17016 17017 17018 17019 17020 17021 17022 17023 17024 17025 17026 17027 17028 17029 17030 17031 17032 17033 17034 17035 17036 17037 17038 17039 17040 17041 17042 17043 17044 17045 17046 17047 17048 17049 17050 17051 17052 17053 17054 17055 17056 17057 17058 17059 17060 17061 17062 17063 17064 17065 17066 17067 17068 17069 17070 17071 17072 17073 17074 17075 17076 17077 17078 17079 17080 17081 17082 17083 17084 17085 17086 17087 17088 17089 17090 17091 17092 17093 17094 17095 17096 17097 17098 17099 17100 17101 17102 17103 17104 17105 17106 17107 17108 17109 17110 17111 17112 17113 17114 17115 17116 17117 17118 17119 17120 17121 17122 17123 17124 17125 17126 17127 17128 17129 17130 17131 17132 17133 17134 17135 17136 17137 17138 17139 17140 17141 17142 17143 17144 17145 17146 17147 17148 17149 17150 17151 17152 17153 17154 17155 17156 17157 17158 17159 17160 17161 17162 17163 17164 17165 17166 17167 17168 17169 17170 17171 17172 17173 17174 17175 17176 17177 17178 17179 17180 17181 17182 17183 17184 17185 17186 17187 17188 17189 17190 17191 17192 17193 17194 17195 17196 17197 17198 17199 17200 17201 17202 17203 17204 17205 17206 17207 17208 17209 17210 17211 17212 17213 17214 17215 17216 17217 17218 17219 17220 17221 17222 17223 17224 17225 17226 17227 17228 17229 17230 17231 17232 17233 17234 17235 17236 17237 17238 17239 17240 17241 17242 17243 17244 17245 17246 17247 17248 17249 17250 17251 17252 17253 17254 17255 17256 17257 17258 17259 17260 17261 17262 17263 17264 17265 17266 17267 17268 17269 17270 17271 17272 17273 17274 17275 17276 17277 17278 17279 17280 17281 17282 17283 17284 17285 17286 17287 17288 17289 17290 17291 17292 17293 17294 17295 17296 17297 17298 17299 17300 17301 17302 17303 17304 17305 17306 17307 17308 17309 17310 17311 17312 17313 17314 17315 17316 17317 17318 17319 17320 17321 17322 17323 17324 17325 17326 17327 17328 17329 17330 17331 17332 17333 17334 17335 17336 17337 17338 17339 17340 17341 17342 17343 17344 17345 17346 17347 17348 17349 17350 17351 17352 17353 17354 17355 17356 17357 17358 17359 17360 17361 17362 17363 17364 17365 17366 17367 17368 17369 17370 17371 17372 17373 17374 17375 17376 17377 17378 17379 17380 17381 17382 17383 17384 17385 17386 17387 17388 17389 17390 17391 17392 17393 17394 17395 17396 17397 17398 17399 17400 17401 17402 17403 17404 17405 17406 17407 17408 17409 17410 17411 17412 17413 17414 17415 17416 17417 17418 17419 17420 17421 17422 17423 17424 17425 17426 17427 17428 17429 17430 17431 17432 17433 17434 17435 17436 17437 17438 17439 17440 17441 17442 17443 17444 17445 17446 17447 17448 17449 17450 17451 17452 17453 17454 17455 17456 17457 17458 17459 17460 17461 17462 17463 17464 17465 17466 17467 17468 17469 17470 17471 17472 17473 17474 17475 17476 17477 17478 17479 17480 17481 17482 17483 17484 17485 17486 17487 17488 17489 17490 17491 17492 17493 17494 17495 17496 17497 17498 17499 17500 17501 17502 17503 17504 17505 17506 17507 17508 17509 17510 17511 17512 17513 17514 17515 17516 17517 17518 17519 17520 17521 17522 17523 17524 17525 17526 17527 17528 17529 17530 17531 17532 17533 17534 17535 17536 17537 17538 17539 17540 17541 17542 17543 17544 17545 17546 17547 17548 17549 17550 17551 17552 17553 17554 17555 17556 17557 17558 17559 17560 17561 17562 17563 17564 17565 17566 17567 17568 17569 17570 17571 17572 17573 17574 17575 17576 17577 17578 17579 17580 17581 17582 17583 17584 17585 17586 17587 17588 17589 17590 17591 17592 17593 17594 17595 17596 17597 17598 17599 17600 17601 17602 17603 17604 17605 17606 17607 17608 17609 17610 17611 17612 17613 17614 17615 17616 17617 17618 17619 17620 17621 17622 17623 17624 17625 17626 17627 17628 17629 17630 17631 17632 17633 17634 17635 17636 17637 17638 17639 17640 17641 17642 17643 17644 17645 17646 17647 17648 17649 17650 17651 17652 17653 17654 17655 17656 17657 17658 17659 17660 17661 17662 17663 17664 17665 17666 17667 17668 17669 17670 17671 17672 17673 17674 17675 17676 17677 17678 17679 17680 17681 17682 17683 17684 17685 17686 17687 17688 17689 17690 17691 17692 17693 17694 17695 17696 17697 17698 17699 17700 17701 17702 17703 17704 17705 17706 17707 17708 17709 17710 17711 17712 17713 17714 17715 17716 17717 17718 17719 17720 17721 17722 17723 17724 17725 17726 17727 17728 17729 17730 17731 17732 17733 17734 17735 17736 17737 17738 17739 17740 17741 17742 17743 17744 17745 17746 17747 17748 17749 17750 17751 17752 17753 17754 17755 17756 17757 17758 17759 17760 17761 17762 17763 17764 17765 17766 17767 17768 17769 17770 17771 17772 17773 17774 17775 17776 17777 17778 17779 17780 17781 17782 17783 17784 17785 17786 17787 17788 17789 17790 17791 17792 17793 17794 17795 17796 17797 17798 17799 17800 17801 17802 17803 17804 17805 17806 17807 17808 17809 17810 17811 17812 17813 17814 17815 17816 17817 17818 17819 17820 17821 17822 17823 17824 17825 17826 17827 17828 17829 17830 17831 17832 17833 17834 17835 17836 17837 17838 17839 17840 17841 17842 17843 17844 17845 17846 17847 17848 17849 17850 17851 17852 17853 17854 17855 17856 17857 17858 17859 17860 17861 17862 17863 17864 17865 17866 17867 17868 17869 17870 17871 17872 17873 17874 17875 17876 17877 17878 17879 17880 17881 17882 17883 17884 17885 17886 17887 17888 17889 17890 17891 17892 17893 17894 17895 17896 17897 17898 17899 17900 17901 17902 17903 17904 17905 17906 17907 17908 17909 17910 17911 17912 17913 17914 17915 17916 17917 17918 17919 17920 17921 17922 17923 17924 17925 17926 17927 17928 17929 17930 17931 17932 17933 17934 17935 17936 17937 17938 17939 17940 17941 17942 17943 17944 17945 17946 17947 17948 17949 17950 17951 17952 17953 17954 17955 17956 17957 17958 17959 17960 17961 17962 17963 17964 17965 17966 17967 17968 17969 17970 17971 17972 17973 17974 17975 17976 17977 17978 17979 17980 17981 17982 17983 17984 17985 17986 17987 17988 17989 17990 17991 17992 17993 17994 17995 17996 17997 17998 17999 18000 18001 18002 18003 18004 18005 18006 18007 18008 18009 18010 18011 18012 18013 18014 18015 18016 18017 18018 18019 18020 18021 18022 18023 18024 18025 18026 18027 18028 18029 18030 18031 18032 18033 18034 18035 18036 18037 18038 18039 18040 18041 18042 18043 18044 18045 18046 18047 18048 18049 18050 18051 18052 18053 18054 18055 18056 18057 18058 18059 18060 18061 18062 18063 18064 18065 18066 18067 18068 18069 18070 18071 18072 18073 18074 18075 18076 18077 18078 18079 18080 18081 18082 18083 18084 18085 18086 18087 18088 18089 18090 18091 18092 18093 18094 18095 18096 18097 18098 18099 18100 18101 18102 18103 18104 18105 18106 18107 18108 18109 18110 18111 18112 18113 18114 18115 18116 18117 18118 18119 18120 18121 18122 18123 18124 18125 18126 18127 18128 18129 18130 18131 18132 18133 18134 18135 18136 18137 18138 18139 18140 18141 18142 18143 18144 18145 18146 18147 18148 18149 18150 18151 18152 18153 18154 18155 18156 18157 18158 18159 18160 18161 18162 18163 18164 18165 18166 18167 18168 18169 18170 18171 18172 18173 18174 18175 18176 18177 18178 18179 18180 18181 18182 18183 18184 18185 18186 18187 18188 18189 18190 18191 18192 18193 18194 18195 18196 18197 18198 18199 18200 18201 18202 18203 18204 18205 18206 18207 18208 18209 18210 18211 18212 18213 18214 18215 18216 18217 18218 18219 18220 18221 18222 18223 18224 18225 18226 18227 18228 18229 18230 18231 18232 18233 18234 18235 18236 18237 18238 18239 18240 18241 18242 18243 18244 18245 18246 18247 18248 18249 18250 18251 18252 18253 18254 18255 18256 18257 18258 18259 18260 18261 18262 18263 18264 18265 18266 18267 18268 18269 18270 18271 18272 18273 18274 18275 18276 18277 18278 18279 18280 18281 18282 18283 18284 18285 18286 18287 18288 18289 18290 18291 18292 18293 18294 18295 18296 18297 18298 18299 18300 18301 18302 18303 18304 18305 18306 18307 18308 18309 18310 18311 18312 18313 18314 18315 18316 18317 18318 18319 18320 18321 18322 18323 18324 18325 18326 18327 18328 18329 18330 18331 18332 18333 18334 18335 18336 18337 18338 18339 18340 18341 18342 18343 18344 18345 18346 18347 18348 18349 18350 18351 18352 18353 18354 18355 18356 18357 18358 18359 18360 18361 18362 18363 18364 18365 18366 18367 18368 18369 18370 18371 18372 18373 18374 18375 18376 18377 18378 18379 18380 18381 18382 18383 18384 18385 18386 18387 18388 18389 18390 18391 18392 18393 18394 18395 18396 18397 18398 18399 18400 18401 18402 18403 18404 18405 18406 18407 18408 18409 18410 18411 18412 18413 18414 18415 18416 18417 18418 18419 18420 18421 18422 18423 18424 18425 18426 18427 18428 18429 18430 18431 18432 18433 18434 18435 18436 18437 18438 18439 18440 18441 18442 18443 18444 18445 18446 18447 18448 18449 18450 18451 18452 18453 18454 18455 18456 18457 18458 18459 18460 18461 18462 18463 18464 18465 18466 18467 18468 18469 18470 18471 18472 18473 18474 18475 18476 18477 18478 18479 18480 18481 18482 18483 18484 18485 18486 18487 18488 18489 18490 18491 18492 18493 18494 18495 18496 18497 18498 18499 18500 18501 18502 18503 18504 18505 18506 18507 18508 18509 18510 18511 18512 18513 18514 18515 18516 18517 18518 18519 18520 18521 18522 18523 18524 18525 18526 18527 18528 18529 18530 18531 18532 18533 18534 18535 18536 18537 18538 18539 18540 18541 18542 18543 18544 18545 18546 18547 18548 18549 18550 18551 18552 18553 18554 18555 18556 18557 18558 18559 18560 18561 18562 18563 18564 18565 18566 18567 18568 18569 18570 18571 18572 18573 18574 18575 18576 18577 18578 18579 18580 18581 18582 18583 18584 18585 18586 18587 18588 18589 18590 18591 18592 18593 18594 18595 18596 18597 18598 18599 18600 18601 18602 18603 18604 18605 18606 18607 18608 18609 18610 18611 18612 18613 18614 18615 18616 18617 18618 18619 18620 18621 18622 18623 18624 18625 18626 18627 18628 18629 18630 18631 18632 18633 18634 18635 18636 18637 18638 18639 18640 18641 18642 18643 18644 18645 18646 18647 18648 18649 18650 18651 18652 18653 18654 18655 18656 18657 18658 18659 18660 18661 18662 18663 18664 18665 18666 18667 18668 18669 18670 18671 18672 18673 18674 18675 18676 18677 18678 18679 18680 18681 18682 18683 18684 18685 18686 18687 18688 18689 18690 18691 18692 18693 18694 18695 18696 18697 18698 18699 18700 18701 18702 18703 18704 18705 18706 18707 18708 18709 18710 18711 18712 18713 18714 18715 18716 18717 18718 18719 18720 18721 18722 18723 18724 18725 18726 18727 18728 18729 18730 18731 18732 18733 18734 18735 18736 18737 18738 18739 18740 18741 18742 18743 18744 18745 18746 18747 18748 18749 18750 18751 18752 18753 18754 18755 18756 18757 18758 18759 18760 18761 18762 18763 18764 18765 18766 18767 18768 18769 18770 18771 18772 18773 18774 18775 18776 18777 18778 18779 18780 18781 18782 18783 18784 18785 18786 18787 18788 18789 18790 18791 18792 18793 18794 18795 18796 18797 18798 18799 18800 18801 18802 18803 18804 18805 18806 18807 18808 18809 18810 18811 18812 18813 18814 18815 18816 18817 18818 18819 18820 18821 18822 18823 18824 18825 18826 18827 18828 18829 18830 18831 18832 18833 18834 18835 18836 18837 18838 18839 18840 18841 18842 18843 18844 18845 18846 18847 18848 18849 18850 18851 18852 18853 18854 18855 18856 18857 18858 18859 18860 18861 18862 18863 18864 18865 18866 18867 18868 18869 18870 18871 18872 18873 18874 18875 18876 18877 18878 18879 18880 18881 18882 18883 18884 18885 18886 18887 18888 18889 18890 18891 18892 18893 18894 18895 18896 18897 18898 18899 18900 18901 18902 18903 18904 18905 18906 18907 18908 18909 18910 18911 18912 18913 18914 18915 18916 18917 18918 18919 18920 18921 18922 18923 18924 18925 18926 18927 18928 18929 18930 18931 18932 18933 18934 18935 18936 18937 18938 18939 18940 18941 18942 18943 18944 18945 18946 18947 18948 18949 18950 18951 18952 18953 18954 18955 18956 18957 18958 18959 18960 18961 18962 18963 18964 18965 18966 18967 18968 18969 18970 18971 18972 18973 18974 18975 18976 18977 18978 18979 18980 18981 18982 18983 18984 18985 18986 18987 18988 18989 18990 18991 18992 18993 18994 18995 18996 18997 18998 18999 19000 19001 19002 19003 19004 19005 19006 19007 19008 19009 19010 19011 19012 19013 19014 19015 19016 19017 19018 19019 19020 19021 19022 19023 19024 19025 19026 19027 19028 19029 19030 19031 19032 19033 19034 19035 19036 19037 19038 19039 19040 19041 19042 19043 19044 19045 19046 19047 19048 19049 19050 19051 19052 19053 19054 19055 19056 19057 19058 19059 19060 19061 19062 19063 19064 19065 19066 19067 19068 19069 19070 19071 19072 19073 19074 19075 19076 19077 19078 19079 19080 19081 19082 19083 19084 19085 19086 19087 19088 19089 19090 19091 19092 19093 19094 19095 19096 19097 19098 19099 19100 19101 19102 19103 19104 19105 19106 19107 19108 19109 19110 19111 19112 19113 19114 19115 19116 19117 19118 19119 19120 19121 19122 19123 19124 19125 19126 19127 19128 19129 19130 19131 19132 19133 19134 19135 19136 19137 19138 19139 19140 19141 19142 19143 19144 19145 19146 19147 19148 19149 19150 19151 19152 19153 19154 19155 19156 19157 19158 19159 19160 19161 19162 19163 19164 19165 19166 19167 19168 19169 19170 19171 19172 19173 19174 19175 19176 19177 19178 19179 19180 19181 19182 19183 19184 19185 19186 19187 19188 19189 19190 19191 19192 19193 19194 19195 19196 19197 19198 19199 19200 19201 19202 19203 19204 19205 19206 19207 19208 19209 19210 19211 19212 19213 19214 19215 19216 19217 19218 19219 19220 19221 19222 19223 19224 19225 19226 19227 19228 19229 19230 19231 19232 19233 19234 19235 19236 19237 19238 19239 19240 19241 19242 19243 19244 19245 19246 19247 19248 19249 19250 19251 19252 19253 19254 19255 19256 19257 19258 19259 19260 19261 19262 19263 19264 19265 19266 19267 19268 19269 19270 19271 19272 19273 19274 19275 19276 19277 19278 19279 19280 19281 19282 19283 19284 19285 19286 19287 19288 19289 19290 19291 19292 19293 19294 19295 19296 19297 19298 19299 19300 19301 19302 19303 19304 19305 19306 19307 19308 19309 19310 19311 19312 19313 19314 19315 19316 19317 19318 19319 19320 19321 19322 19323 19324 19325 19326 19327 19328 19329 19330 19331 19332 19333 19334 19335 19336 19337 19338 19339 19340 19341 19342 19343 19344 19345 19346 19347 19348 19349 19350 19351 19352 19353 19354 19355 19356 19357 19358 19359 19360 19361 19362 19363 19364 19365 19366 19367 19368 19369 19370 19371 19372 19373 19374 19375 19376 19377 19378 19379 19380 19381 19382 19383 19384 19385 19386 19387 19388 19389 19390 19391 19392 19393 19394 19395 19396 19397 19398 19399 19400 19401 19402 19403 19404 19405 19406 19407 19408 19409 19410 19411 19412 19413 19414 19415 19416 19417 19418 19419 19420 19421 19422 19423 19424 19425 19426 19427 19428 19429 19430 19431 19432 19433 19434 19435 19436 19437 19438 19439 19440 19441 19442 19443 19444 19445 19446 19447 19448 19449 19450 19451 19452 19453 19454 19455 19456 19457 19458 19459 19460 19461 19462 19463 19464 19465 19466 19467 19468 19469 19470 19471 19472 19473 19474 19475 19476 19477 19478 19479 19480 19481 19482 19483 19484 19485 19486 19487 19488 19489 19490 19491 19492 19493 19494 19495 19496 19497 19498 19499 19500 19501 19502 19503 19504 19505 19506 19507 19508 19509 19510 19511 19512 19513 19514 19515 19516 19517 19518 19519 19520 19521 19522 19523 19524 19525 19526 19527 19528 19529 19530 19531 19532 19533 19534 19535 19536 19537 19538 19539 19540 19541 19542 19543 19544 19545 19546 19547 19548 19549 19550 19551 19552 19553 19554 19555 19556 19557 19558 19559 19560 19561 19562 19563 19564 19565 19566 19567 19568 19569 19570 19571 19572 19573 19574 19575 19576 19577 19578 19579 19580 19581 19582 19583 19584 19585 19586 19587 19588 19589 19590 19591 19592 19593 19594 19595 19596 19597 19598 19599 19600 19601 19602 19603 19604 19605 19606 19607 19608 19609 19610 19611 19612 19613 19614 19615 19616 19617 19618 19619 19620 19621 19622 19623 19624 19625 19626 19627 19628 19629 19630 19631 19632 19633 19634 19635 19636 19637 19638 19639 19640 19641 19642 19643 19644 19645 19646 19647 19648 19649 19650 19651 19652 19653 19654 19655 19656 19657 19658 19659 19660 19661 19662 19663 19664 19665 19666 19667 19668 19669 19670 19671 19672 19673 19674 19675 19676 19677 19678 19679 19680 19681 19682 19683 19684 19685 19686 19687 19688 19689 19690 19691 19692 19693 19694 19695 19696 19697 19698 19699 19700 19701 19702 19703 19704 19705 19706 19707 19708 19709 19710 19711 19712 19713 19714 19715 19716 19717 19718 19719 19720 19721 19722 19723 19724 19725 19726 19727 19728 19729 19730 19731 19732 19733 19734 19735 19736 19737 19738 19739 19740 19741 19742 19743 19744 19745 19746 19747 19748 19749 19750 19751 19752 19753 19754 19755 19756 19757 19758 19759 19760 19761 19762 19763 19764 19765 19766 19767 19768 19769 19770 19771 19772 19773 19774 19775 19776 19777 19778 19779 19780 19781 19782 19783 19784 19785 19786 19787 19788 19789 19790 19791 19792 19793 19794 19795 19796 19797 19798 19799 19800 19801 19802 19803 19804 19805 19806 19807 19808 19809 19810 19811 19812 19813 19814 19815 19816 19817 19818 19819 19820 19821 19822 19823 19824 19825 19826 19827 19828 19829 19830 19831 19832 19833 19834 19835 19836 19837 19838 19839 19840 19841 19842 19843 19844 19845 19846 19847 19848 19849 19850 19851 19852 19853 19854 19855 19856 19857 19858 19859 19860 19861 19862 19863 19864 19865 19866 19867 19868 19869 19870 19871 19872 19873 19874 19875 19876 19877 19878 19879 19880 19881 19882 19883 19884 19885 19886 19887 19888 19889 19890 19891 19892 19893 19894 19895 19896 19897 19898 19899 19900 19901 19902 19903 19904 19905 19906 19907 19908 19909 19910 19911 19912 19913 19914 19915 19916 19917 19918 19919 19920 19921 19922 19923 19924 19925 19926 19927 19928 19929 19930 19931 19932 19933 19934 19935 19936 19937 19938 19939 19940 19941 19942 19943 19944 19945 19946 19947 19948 19949 19950 19951 19952 19953 19954 19955 19956 19957 19958 19959 19960 19961 19962 19963 19964 19965 19966 19967 19968 19969 19970 19971 19972 19973 19974 19975 19976 19977 19978 19979 19980 19981 19982 19983 19984 19985 19986 19987 19988 19989 19990 19991 19992 19993 19994 19995 19996 19997 19998 19999 20000 20001 20002 20003 20004 20005 20006 20007 20008 20009 20010 20011 20012 20013 20014 20015 20016 20017 20018 20019 20020 20021 20022 20023 20024 20025 20026 20027 20028 20029 20030 20031 20032 20033 20034 20035 20036 20037 20038 20039 20040 20041 20042 20043 20044 20045 20046 20047 20048 20049 20050 20051 20052 20053 20054 20055 20056 20057 20058 20059 20060 20061 20062 20063 20064 20065 20066 20067 20068 20069 20070 20071 20072 20073 20074 20075 20076 20077 20078 20079 20080 20081 20082 20083 20084 20085 20086 20087 20088 20089 20090 20091 20092 20093 20094 20095 20096 20097 20098 20099 20100 20101 20102 20103 20104 20105 20106 20107 20108 20109 20110 20111 20112 20113 20114 20115 20116 20117 20118 20119 20120 20121 20122 20123 20124 20125 20126 20127 20128 20129 20130 20131 20132 20133 20134 20135 20136 20137 20138 20139 20140 20141 20142 20143 20144 20145 20146 20147 20148 20149 20150 20151 20152 20153 20154 20155 20156 20157 20158 20159 20160 20161 20162 20163 20164 20165 20166 20167 20168 20169 20170 20171 20172 20173 20174 20175 20176 20177 20178 20179 20180 20181 20182 20183 20184 20185 20186 20187 20188 20189 20190 20191 20192 20193 20194 20195 20196 20197 20198 20199 20200 20201 20202 20203 20204 20205 20206 20207 20208 20209 20210 20211 20212 20213 20214 20215 20216 20217 20218 20219 20220 20221 20222 20223 20224 20225 20226 20227 20228 20229 20230 20231 20232 20233 20234 20235 20236 20237 20238 20239 20240 20241 20242 20243 20244 20245 20246 20247 20248 20249 20250 20251 20252 20253 20254 20255 20256 20257 20258 20259 20260 20261 20262 20263 20264 20265 20266 20267 20268 20269 20270 20271 20272 20273 20274 20275 20276 20277 20278 20279 20280 20281 20282 20283 20284 20285 20286 20287 20288 20289 20290 20291 20292 20293 20294 20295 20296 20297 20298 20299 20300 20301 20302 20303 20304 20305 20306 20307 20308 20309 20310 20311 20312 20313 20314 20315 20316 20317 20318 20319 20320 20321 20322 20323 20324 20325 20326 20327 20328 20329 20330 20331 20332 20333 20334 20335 20336 20337 20338 20339 20340 20341 20342 20343 20344 20345 20346 20347 20348 20349 20350 20351 20352 20353 20354 20355 20356 20357 20358 20359 20360 20361 20362 20363 20364 20365 20366 20367 20368 20369 20370 20371 20372 20373 20374 20375 20376 20377 20378 20379 20380 20381 20382 20383 20384 20385 20386 20387 20388 20389 20390 20391 20392 20393 20394 20395 20396 20397 20398 20399 20400 20401 20402 20403 20404 20405 20406 20407 20408 20409 20410 20411 20412 20413 20414 20415 20416 20417 20418 20419 20420 20421 20422 20423 20424 20425 20426 20427 20428 20429 20430 20431 20432 20433 20434 20435 20436 20437 20438 20439 20440 20441 20442 20443 20444 20445 20446 20447 20448 20449 20450 20451 20452 20453 20454 20455 20456 20457 20458 20459 20460 20461 20462 20463 20464 20465 20466 20467 20468 20469 20470 20471 20472 20473 20474 20475 20476 20477 20478 20479 20480 20481 20482 20483 20484 20485 20486 20487 20488 20489 20490 20491 20492 20493 20494 20495 20496 20497 20498 20499 20500 20501 20502 20503 20504 20505 20506 20507 20508 20509 20510 20511 20512 20513 20514 20515 20516 20517 20518 20519 20520 20521 20522 20523 20524 20525 20526 20527 20528 20529 20530 20531 20532 20533 20534 20535 20536 20537 20538 20539 20540 20541 20542 20543 20544 20545 20546 20547 20548 20549 20550 20551 20552 20553 20554 20555 20556 20557 20558 20559 20560 20561 20562 20563 20564 20565 20566 20567 20568 20569 20570 20571 20572 20573 20574 20575 20576 20577 20578 20579 20580 20581 20582 20583 20584 20585 20586 20587 20588 20589 20590 20591 20592 20593 20594 20595 20596 20597 20598 20599 20600 20601 20602 20603 20604 20605 20606 20607 20608 20609 20610 20611 20612 20613 20614 20615 20616 20617 20618 20619 20620 20621 20622 20623 20624 20625 20626 20627 20628 20629 20630 20631 20632 20633 20634 20635 20636 20637 20638 20639 20640 20641 20642 20643 20644 20645 20646 20647 20648 20649 20650 20651 20652 20653 20654 20655 20656 20657 20658 20659 20660 20661 20662 20663 20664 20665 20666 20667 20668 20669 20670 20671 20672 20673 20674 20675 20676 20677 20678 20679 20680 20681 20682 20683 20684 20685 20686 20687 20688 20689 20690 20691 20692 20693 20694 20695 20696 20697 20698 20699 20700 20701 20702 20703 20704 20705 20706 20707 20708 20709 20710 20711 20712 20713 20714 20715 20716 20717 20718 20719 20720 20721 20722 20723 20724 20725 20726 20727 20728 20729 20730 20731 20732 20733 20734 20735 20736 20737 20738 20739 20740 20741 20742 20743 20744 20745 20746 20747 20748 20749 20750 20751 20752 20753 20754 20755 20756 20757 20758 20759 20760 20761 20762 20763 20764 20765 20766 20767 20768 20769 20770 20771 20772 20773 20774 20775 20776 20777 20778 20779 20780 20781 20782 20783 20784 20785 20786 20787 20788 20789 20790 20791 20792 20793 20794 20795 20796 20797 20798 20799 20800 20801 20802 20803 20804 20805 20806 20807 20808 20809 20810 20811 20812 20813 20814 20815 20816 20817 20818 20819 20820 20821 20822 20823 20824 20825 20826 20827 20828 20829 20830 20831 20832 20833 20834 20835 20836 20837 20838 20839 20840 20841 20842 20843 20844 20845 20846 20847 20848 20849 20850 20851 20852 20853 20854 20855 20856 20857 20858 20859 20860 20861 20862 20863 20864 20865 20866 20867 20868 20869 20870 20871 20872 20873 20874 20875 20876 20877 20878 20879 20880 20881 20882 20883 20884 20885 20886 20887 20888 20889 20890 20891 20892 20893 20894 20895 20896 20897 20898 20899 20900 20901 20902 20903 20904 20905 20906 20907 20908 20909 20910 20911 20912 20913 20914 20915 20916 20917 20918 20919 20920 20921 20922 20923 20924 20925 20926 20927 20928 20929 20930 20931 20932 20933 20934 20935 20936 20937 20938 20939 20940 20941 20942 20943 20944 20945 20946 20947 20948 20949 20950 20951 20952 20953 20954 20955 20956 20957 20958 20959 20960 20961 20962 20963 20964 20965 20966 20967 20968 20969 20970 20971 20972 20973 20974 20975 20976 20977 20978 20979 20980 20981 20982 20983 20984 20985 20986 20987 20988 20989 20990 20991 20992 20993 20994 20995 20996 20997 20998 20999 21000 21001 21002 21003 21004 21005 21006 21007 21008 21009 21010 21011 21012 21013 21014 21015 21016 21017 21018 21019 21020 21021 21022 21023 21024 21025 21026 21027 21028 21029 21030 21031 21032 21033 21034 21035 21036 21037 21038 21039 21040 21041 21042 21043 21044 21045 21046 21047 21048 21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 21089 21090 21091 21092 21093 21094 21095 21096 21097 21098 21099 21100 21101 21102 21103 21104 21105 21106 21107 21108 21109 21110 21111 21112 21113 21114 21115 21116 21117 21118 21119 21120 21121 21122 21123 21124 21125 21126 21127 21128 21129 21130 21131 21132 21133 21134 21135 21136 21137 21138 21139 21140 21141 21142 21143 21144 21145 21146 21147 21148 21149 21150 21151 21152 21153 21154 21155 21156 21157 21158 21159 21160 21161 21162 21163 21164 21165 21166 21167 21168 21169 21170 21171 21172 21173 21174 21175 21176 21177 21178 21179 21180 21181 21182 21183 21184 21185 21186 21187 21188 21189 21190 21191 21192 21193 21194 21195 21196 21197 21198 21199 21200 21201 21202 21203 21204 21205 21206 21207 21208 21209 21210 21211 21212 21213 21214 21215 21216 21217 21218 21219 21220 21221 21222 21223 21224 21225 21226 21227 21228 21229 21230 21231 21232 21233 21234 21235 21236 21237 21238 21239 21240 21241 21242 21243 21244 21245 21246 21247 21248 21249 21250 21251 21252 21253 21254 21255 21256 21257 21258 21259 21260 21261 21262 21263 21264 21265 21266 21267 21268 21269 21270 21271 21272 21273 21274 21275 21276 21277 21278 21279 21280 21281 21282 21283 21284 21285 21286 21287 21288 21289 21290 21291 21292 21293 21294 21295 21296 21297 21298 21299 21300 21301 21302 21303 21304 21305 21306 21307 21308 21309 21310 21311 21312 21313 21314 21315 21316 21317 21318 21319 21320 21321 21322 21323 21324 21325 21326 21327 21328 21329 21330 21331 21332 21333 21334 21335 21336 21337 21338 21339 21340 21341 21342 21343 21344 21345 21346 21347 21348 21349 21350 21351 21352 21353 21354 21355 21356 21357 21358 21359 21360 21361 21362 21363 21364 21365 21366 21367 21368 21369 21370 21371 21372 21373 21374 21375 21376 21377 21378 21379 21380 21381 21382 21383 21384 21385 21386 21387 21388 21389 21390 21391 21392 21393 21394 21395 21396 21397 21398 21399 21400 21401 21402 21403 21404 21405 21406 21407 21408 21409 21410 21411 21412 21413 21414 21415 21416 21417 21418 21419 21420 21421 21422 21423 21424 21425 21426 21427 21428 21429 21430 21431 21432 21433 21434 21435 21436 21437 21438 21439 21440 21441 21442 21443 21444 21445 21446 21447 21448 21449 21450 21451 21452 21453 21454 21455 21456 21457 21458 21459 21460 21461 21462 21463 21464 21465 21466 21467 21468 21469 21470 21471 21472 21473 21474 21475 21476 21477 21478 21479 21480 21481 21482 21483 21484 21485 21486 21487 21488 21489 21490 21491 21492 21493 21494 21495 21496 21497 21498 21499 21500 21501 21502 21503 21504 21505 21506 21507 21508 21509 21510 21511 21512 21513 21514 21515 21516 21517 21518 21519 21520 21521 21522 21523 21524 21525 21526 21527 21528 21529 21530 21531 21532 21533 21534 21535 21536 21537 21538 21539 21540 21541 21542 21543 21544 21545 21546 21547 21548 21549 21550 21551 21552 21553 21554 21555 21556 21557 21558 21559 21560 21561 21562 21563 21564 21565 21566 21567 21568 21569 21570 21571 21572 21573 21574 21575 21576 21577 21578 21579 21580 21581 21582 21583 21584 21585 21586 21587 21588 21589 21590 21591 21592 21593 21594 21595 21596 21597 21598 21599 21600 21601 21602 21603 21604 21605 21606 21607 21608 21609 21610 21611 21612 21613 21614 21615 21616 21617 21618 21619 21620 21621 21622 21623 21624 21625 21626 21627 21628 21629 21630 21631 21632 21633 21634 21635 21636 21637 21638 21639 21640 21641 21642 21643 21644 21645 21646 21647 21648 21649 21650 21651 21652 21653 21654 21655 21656 21657 21658 21659 21660 21661 21662 21663 21664 21665 21666 21667 21668 21669 21670 21671 21672 21673 21674 21675 21676 21677 21678 21679 21680 21681 21682 21683 21684 21685 21686 21687 21688 21689 21690 21691 21692 21693 21694 21695 21696 21697 21698 21699 21700 21701 21702 21703 21704 21705 21706 21707 21708 21709 21710 21711 21712 21713 21714 21715 21716 21717 21718 21719 21720 21721 21722 21723 21724 21725 21726 21727 21728 21729 21730 21731 21732 21733 21734 21735 21736 21737 21738 21739 21740 21741 21742 21743 21744 21745 21746 21747 21748 21749 21750 21751 21752 21753 21754 21755 21756 21757 21758 21759 21760 21761 21762 21763 21764 21765 21766 21767 21768 21769 21770 21771 21772 21773 21774 21775 21776 21777 21778 21779 21780 21781 21782 21783 21784 21785 21786 21787 21788 21789 21790 21791 21792 21793 21794 21795 21796 21797 21798 21799 21800 21801 21802 21803 21804 21805 21806 21807 21808 21809 21810 21811 21812 21813 21814 21815 21816 21817 21818 21819 21820 21821 21822 21823 21824 21825 21826 21827 21828 21829 21830 21831 21832 21833 21834 21835 21836 21837 21838 21839 21840 21841 21842 21843 21844 21845 21846 21847 21848 21849 21850 21851 21852 21853 21854 21855 21856 21857 21858 21859 21860 21861 21862 21863 21864 21865 21866 21867 21868 21869 21870 21871 21872 21873 21874 21875 21876 21877 21878 21879 21880 21881 21882 21883 21884 21885 21886 21887 21888 21889 21890 21891 21892 21893 21894 21895 21896 21897 21898 21899 21900 21901 21902 21903 21904 21905 21906 21907 21908 21909 21910 21911 21912 21913 21914 21915 21916 21917 21918 21919 21920 21921 21922 21923 21924 21925 21926 21927 21928 21929 21930 21931 21932 21933 21934 21935 21936 21937 21938 21939 21940 21941 21942 21943 21944 21945 21946 21947 21948 21949 21950 21951 21952 21953 21954 21955 21956 21957 21958 21959 21960 21961 21962 21963 21964 21965 21966 21967 21968 21969 21970 21971 21972 21973 21974 21975 21976 21977 21978 21979 21980 21981 21982 21983 21984 21985 21986 21987 21988 21989 21990 21991 21992 21993 21994 21995 21996 21997 21998 21999 22000 22001 22002 22003 22004 22005 22006 22007 22008 22009 22010 22011 22012 22013 22014 22015 22016 22017 22018 22019 22020 22021 22022 22023 22024 22025 22026 22027 22028 22029 22030 22031 22032 22033 22034 22035 22036 22037 22038 22039 22040 22041 22042 22043 22044 22045 22046 22047 22048 22049 22050 22051 22052 22053 22054 22055 22056 22057 22058 22059 22060 22061 22062 22063 22064 22065 22066 22067 22068 22069 22070 22071 22072 22073 22074 22075 22076 22077 22078 22079 22080 22081 22082 22083 22084 22085 22086 22087 22088 22089 22090 22091 22092 22093 22094 22095 22096 22097 22098 22099 22100 22101 22102 22103 22104 22105 22106 22107 22108 22109 22110 22111 22112 22113 22114 22115 22116 22117 22118 22119 22120 22121 22122 22123 22124 22125 22126 22127 22128 22129 22130 22131 22132 22133 22134 22135 22136 22137 22138 22139 22140 22141 22142 22143 22144 22145 22146 22147 22148 22149 22150 22151 22152 22153 22154 22155 22156 22157 22158 22159 22160 22161 22162 22163 22164 22165 22166 22167 22168 22169 22170 22171 22172 22173 22174 22175 22176 22177 22178 22179 22180 22181 22182 22183 22184 22185 22186 22187 22188 22189 22190 22191 22192 22193 22194 22195 22196 22197 22198 22199 22200 22201 22202 22203 22204 22205 22206 22207 22208 22209 22210 22211 22212 22213 22214 22215 22216 22217 22218 22219 22220 22221 22222 22223 22224 22225 22226 22227 22228 22229 22230 22231 22232 22233 22234 22235 22236 22237 22238 22239 22240 22241 22242 22243 22244 22245 22246 22247 22248 22249 22250 22251 22252 22253 22254 22255 22256 22257 22258 22259 22260 22261 22262 22263 22264 22265 22266 22267 22268 22269 22270 22271 22272 22273 22274 22275 22276 22277 22278 22279 22280 22281 22282 22283 22284 22285 22286 22287 22288 22289 22290 22291 22292 22293 22294 22295 22296 22297 22298 22299 22300 22301 22302 22303 22304 22305 22306 22307 22308 22309 22310 22311 22312 22313 22314 22315 22316 22317 22318 22319 22320 22321 22322 22323 22324 22325 22326 22327 22328 22329 22330 22331 22332 22333 22334 22335 22336 22337 22338 22339 22340 22341 22342 22343 22344 22345 22346 22347 22348 22349 22350 22351 22352 22353 22354 22355 22356 22357 22358 22359 22360 22361 22362 22363 22364 22365 22366 22367 22368 22369 22370 22371 22372 22373 22374 22375 22376 22377 22378 22379 22380 22381 22382 22383 22384 22385 22386 22387 22388 22389 22390 22391 22392 22393 22394 22395 22396 22397 22398 22399 22400 22401 22402 22403 22404 22405 22406 22407 22408 22409 22410 22411 22412 22413 22414 22415 22416 22417 22418 22419 22420 22421 22422 22423 22424 22425 22426 22427 22428 22429 22430 22431 22432 22433 22434 22435 22436 22437 22438 22439 22440 22441 22442 22443 22444 22445 22446 22447 22448 22449 22450 22451 22452 22453 22454 22455 22456 22457 22458 22459 22460 22461 22462 22463 22464 22465 22466 22467 22468 22469 22470 22471 22472 22473 22474 22475 22476 22477 22478 22479 22480 22481 22482 22483 22484 22485 22486 22487 22488 22489 22490 22491 22492 22493 22494 22495 22496 22497 22498 22499 22500 22501 22502 22503 22504 22505 22506 22507 22508 22509 22510 22511 22512 22513 22514 22515 22516 22517 22518 22519 22520 22521 22522 22523 22524 22525 22526 22527 22528 22529 22530 22531 22532 22533 22534 22535 22536 22537 22538 22539 22540 22541 22542 22543 22544 22545 22546 22547 22548 22549 22550 22551 22552 22553 22554 22555 22556 22557 22558 22559 22560 22561 22562 22563 22564 22565 22566 22567 22568 22569 22570 22571 22572 22573 22574 22575 22576 22577 22578 22579 22580 22581 22582 22583 22584 22585 22586 22587 22588 22589 22590 22591 22592 22593 22594 22595 22596 22597 22598 22599 22600 22601 22602 22603 22604 22605 22606 22607 22608 22609 22610 22611 22612 22613 22614 22615 22616 22617 22618 22619 22620 22621 22622 22623 22624 22625 22626 22627 22628 22629 22630 22631 22632 22633 22634 22635 22636 22637 22638 22639 22640 22641 22642 22643 22644 22645 22646 22647 22648 22649 22650 22651 22652 22653 22654 22655 22656 22657 22658 22659 22660 22661 22662 22663 22664 22665 22666 22667 22668 22669 22670 22671 22672 22673 22674 22675 22676 22677 22678 22679 22680 22681 22682 22683 22684 22685 22686 22687 22688 22689 22690 22691 22692 22693 22694 22695 22696 22697 22698 22699 22700 22701 22702 22703 22704 22705 22706 22707 22708 22709 22710 22711 22712 22713 22714 22715 22716 22717 22718 22719 22720 22721 22722 22723 22724 22725 22726 22727 22728 22729 22730 22731 22732 22733 22734 22735 22736 22737 22738 22739 22740 22741 22742 22743 22744 22745 22746 22747 22748 22749 22750 22751 22752 22753 22754 22755 22756 22757 22758 22759 22760 22761 22762 22763 22764 22765 22766 22767 22768 22769 22770 22771 22772 22773 22774 22775 22776 22777 22778 22779 22780 22781 22782 22783 22784 22785 22786 22787 22788 22789 22790 22791 22792 22793 22794 22795 22796 22797 22798 22799 22800 22801 22802 22803 22804 22805 22806 22807 22808 22809 22810 22811 22812 22813 22814 22815 22816 22817 22818 22819 22820 22821 22822 22823 22824 22825 22826 22827 22828 22829 22830 22831 22832 22833 22834 22835 22836 22837 22838 22839 22840 22841 22842 22843 22844 22845 22846 22847 22848 22849 22850 22851 22852 22853 22854 22855 22856 22857 22858 22859 22860 22861 22862 22863 22864 22865 22866 22867 22868 22869 22870 22871 22872 22873 22874 22875 22876 22877 22878 22879 22880 22881 22882 22883 22884 22885 22886 22887 22888 22889 22890 22891 22892 22893 22894 22895 22896 22897 22898 22899 22900 22901 22902 22903 22904 22905 22906 22907 22908 22909 22910 22911 22912 22913 22914 22915 22916 22917 22918 22919 22920 22921 22922 22923 22924 22925 22926 22927 22928 22929 22930 22931 22932 22933 22934 22935 22936 22937 22938 22939 22940 22941 22942 22943 22944 22945 22946 22947 22948 22949 22950 22951 22952 22953 22954 22955 22956 22957 22958 22959 22960 22961 22962 22963 22964 22965 22966 22967 22968 22969 22970 22971 22972 22973 22974 22975 22976 22977 22978 22979 22980 22981 22982 22983 22984 22985 22986 22987 22988 22989 22990 22991 22992 22993 22994 22995 22996 22997 22998 22999 23000 23001 23002 23003 23004 23005 23006 23007 23008 23009 23010 23011 23012 23013 23014 23015 23016 23017 23018 23019 23020 23021 23022 23023 23024 23025 23026 23027 23028 23029 23030 23031 23032 23033 23034 23035 23036 23037 23038 23039 23040 23041 23042 23043 23044 23045 23046 23047 23048 23049 23050 23051 23052 23053 23054 23055 23056 23057 23058 23059 23060 23061 23062 23063 23064 23065 23066 23067 23068 23069 23070 23071 23072 23073 23074 23075 23076 23077 23078 23079 23080 23081 23082 23083 23084 23085 23086 23087 23088 23089 23090 23091 23092 23093 23094 23095 23096 23097 23098 23099 23100 23101 23102 23103 23104 23105 23106 23107 23108 23109 23110 23111 23112 23113 23114 23115 23116 23117 23118 23119 23120 23121 23122 23123 23124 23125 23126 23127 23128 23129 23130 23131 23132 23133 23134 23135 23136 23137 23138 23139 23140 23141 23142 23143 23144 23145 23146 23147 23148 23149 23150 23151 23152 23153 23154 23155 23156 23157 23158 23159 23160 23161 23162 23163 23164 23165 23166 23167 23168 23169 23170 23171 23172 23173 23174 23175 23176 23177 23178 23179 23180 23181 23182 23183 23184 23185 23186 23187 23188 23189 23190 23191 23192 23193 23194 23195 23196 23197 23198 23199 23200 23201 23202 23203 23204 23205 23206 23207 23208 23209 23210 23211 23212 23213 23214 23215 23216 23217 23218 23219 23220 23221 23222 23223 23224 23225 23226 23227 23228 23229 23230 23231 23232 23233 23234 23235 23236 23237 23238 23239 23240 23241 23242 23243 23244 23245 23246 23247 23248 23249 23250 23251 23252 23253 23254 23255 23256 23257 23258 23259 23260 23261 23262 23263 23264 23265 23266 23267 23268 23269 23270 23271 23272 23273 23274 23275 23276 23277 23278 23279 23280 23281 23282 23283 23284 23285 23286 23287 23288 23289 23290 23291 23292 23293 23294 23295 23296 23297 23298 23299 23300 23301 23302 23303 23304 23305 23306 23307 23308 23309 23310 23311 23312 23313 23314 23315 23316 23317 23318 23319 23320 23321 23322 23323 23324 23325 23326 23327 23328 23329 23330 23331 23332 23333 23334 23335 23336 23337 23338 23339 23340 23341 23342 23343 23344 23345 23346 23347 23348 23349 23350 23351 23352 23353 23354 23355 23356 23357 23358 23359 23360 23361 23362 23363 23364 23365 23366 23367 23368 23369 23370 23371 23372 23373 23374 23375 23376 23377 23378 23379 23380 23381 23382 23383 23384 23385 23386 23387 23388 23389 23390 23391 23392 23393 23394 23395 23396 23397 23398 23399 23400 23401 23402 23403 23404 23405 23406 23407 23408 23409 23410 23411 23412 23413 23414 23415 23416 23417 23418 23419 23420 23421 23422 23423 23424 23425 23426 23427 23428 23429 23430 23431 23432 23433 23434 23435 23436 23437 23438 23439 23440 23441 23442 23443 23444 23445 23446 23447 23448 23449 23450 23451 23452 23453 23454 23455 23456 23457 23458 23459 23460 23461 23462 23463 23464 23465 23466 23467 23468 23469 23470 23471 23472 23473 23474 23475 23476 23477 23478 23479 23480 23481 23482 23483 23484 23485 23486 23487 23488 23489 23490 23491 23492 23493 23494 23495 23496 23497 23498 23499 23500 23501 23502 23503 23504 23505 23506 23507 23508 23509 23510 23511 23512 23513 23514 23515 23516 23517 23518 23519 23520 23521 23522 23523 23524 23525 23526 23527 23528 23529 23530 23531 23532 23533 23534 23535 23536 23537 23538 23539 23540 23541 23542 23543 23544 23545 23546 23547 23548 23549 23550 23551 23552 23553 23554 23555 23556 23557 23558 23559 23560 23561 23562 23563 23564 23565 23566 23567 23568 23569 23570 23571 23572 23573 23574 23575 23576 23577 23578 23579 23580 23581 23582 23583 23584 23585 23586 23587 23588 23589 23590 23591 23592 23593 23594 23595 23596 23597 23598 23599 23600 23601 23602 23603 23604 23605 23606 23607 23608 23609 23610 23611 23612 23613 23614 23615 23616 23617 23618 23619 23620 23621 23622 23623 23624 23625 23626 23627 23628 23629 23630 23631 23632 23633 23634 23635 23636 23637 23638 23639 23640 23641 23642 23643 23644 23645 23646 23647 23648 23649 23650 23651 23652 23653 23654 23655 23656 23657 23658 23659 23660 23661 23662 23663 23664 23665 23666 23667 23668 23669 23670 23671 23672 23673 23674 23675 23676 23677 23678 23679 23680 23681 23682 23683 23684 23685 23686 23687 23688 23689 23690 23691 23692 23693 23694 23695 23696 23697 23698 23699 23700 23701 23702 23703 23704 23705 23706 23707 23708 23709 23710 23711 23712 23713 23714 23715 23716 23717 23718 23719 23720 23721 23722 23723 23724 23725 23726 23727 23728 23729 23730 23731 23732 23733 23734 23735 23736 23737 23738 23739 23740 23741 23742 23743 23744 23745 23746 23747 23748 23749 23750 23751 23752 23753 23754 23755 23756 23757 23758 23759 23760 23761 23762 23763 23764 23765 23766 23767 23768 23769 23770 23771 23772 23773 23774 23775 23776 23777 23778 23779 23780 23781 23782 23783 23784 23785 23786 23787 23788 23789 23790 23791 23792 23793 23794 23795 23796 23797 23798 23799 23800 23801 23802 23803 23804 23805 23806 23807 23808 23809 23810 23811 23812 23813 23814 23815 23816 23817 23818 23819 23820 23821 23822 23823 23824 23825 23826 23827 23828 23829 23830 23831 23832 23833 23834 23835 23836 23837 23838 23839 23840 23841 23842 23843 23844 23845 23846 23847 23848 23849 23850 23851 23852 23853 23854 23855 23856 23857 23858 23859 23860 23861 23862 23863 23864 23865 23866 23867 23868 23869 23870 23871 23872 23873 23874 23875 23876 23877 23878 23879 23880 23881 23882 23883 23884 23885 23886 23887 23888 23889 23890 23891 23892 23893 23894 23895 23896 23897 23898 23899 23900 23901 23902 23903 23904 23905 23906 23907 23908 23909 23910 23911 23912 23913 23914 23915 23916 23917 23918 23919 23920 23921 23922 23923 23924 23925 23926 23927 23928 23929 23930 23931 23932 23933 23934 23935 23936 23937 23938 23939 23940 23941 23942 23943 23944 23945 23946 23947 23948 23949 23950 23951 23952 23953 23954 23955 23956 23957 23958 23959 23960 23961 23962 23963 23964 23965 23966 23967 23968 23969 23970 23971 23972 23973 23974 23975 23976 23977 23978 23979 23980 23981 23982 23983 23984 23985 23986 23987 23988 23989 23990 23991 23992 23993 23994 23995 23996 23997 23998 23999 24000 24001 24002 24003 24004 24005 24006 24007 24008 24009 24010 24011 24012 24013 24014 24015 24016 24017 24018 24019 24020 24021 24022 24023 24024 24025 24026 24027 24028 24029 24030 24031 24032 24033 24034 24035 24036 24037 24038 24039 24040 24041 24042 24043 24044 24045 24046 24047 24048 24049 24050 24051 24052 24053 24054 24055 24056 24057 24058 24059 24060 24061 24062 24063 24064 24065 24066 24067 24068 24069 24070 24071 24072 24073 24074 24075 24076 24077 24078 24079 24080 24081 24082 24083 24084 24085 24086 24087 24088 24089 24090 24091 24092 24093 24094 24095 24096 24097 24098 24099 24100 24101 24102 24103 24104 24105 24106 24107 24108 24109 24110 24111 24112 24113 24114 24115 24116 24117 24118 24119 24120 24121 24122 24123 24124 24125 24126 24127 24128 24129 24130 24131 24132 24133 24134 24135 24136 24137 24138 24139 24140 24141 24142 24143 24144 24145 24146 24147 24148 24149 24150 24151 24152 24153 24154 24155 24156 24157 24158 24159 24160 24161 24162 24163 24164 24165 24166 24167 24168 24169 24170 24171 24172 24173 24174 24175 24176 24177 24178 24179 24180 24181 24182 24183 24184 24185 24186 24187 24188 24189 24190 24191 24192 24193 24194 24195 24196 24197 24198 24199 24200 24201 24202 24203 24204 24205 24206 24207 24208 24209 24210 24211 24212 24213 24214 24215 24216 24217 24218 24219 24220 24221 24222 24223 24224 24225 24226 24227 24228 24229 24230 24231 24232 24233 24234 24235 24236 24237 24238 24239 24240 24241 24242 24243 24244 24245 24246 24247 24248 24249 24250 24251 24252 24253 24254 24255 24256 24257 24258 24259 24260 24261 24262 24263 24264 24265 24266 24267 24268 24269 24270 24271 24272 24273 24274 24275 24276 24277 24278 24279 24280 24281 24282 24283 24284 24285 24286 24287 24288 24289 24290 24291 24292 24293 24294 24295 24296 24297 24298 24299 24300 24301 24302 24303 24304 24305 24306 24307 24308 24309 24310 24311 24312 24313 24314 24315 24316 24317 24318 24319 24320 24321 24322 24323 24324 24325 24326 24327 24328 24329 24330 24331 24332 24333 24334 24335 24336 24337 24338 24339 24340 24341 24342 24343 24344 24345 24346 24347 24348 24349 24350 24351 24352 24353 24354 24355 24356 24357 24358 24359 24360 24361 24362 24363 24364 24365 24366 24367 24368 24369 24370 24371 24372 24373 24374 24375 24376 24377 24378 24379 24380 24381 24382 24383 24384 24385 24386 24387 24388 24389 24390 24391 24392 24393 24394 24395 24396 24397 24398 24399 24400 24401 24402 24403 24404 24405 24406 24407 24408 24409 24410 24411 24412 24413 24414 24415 24416 24417 24418 24419 24420 24421 24422 24423 24424 24425 24426 24427 24428 24429 24430 24431 24432 24433 24434 24435 24436 24437 24438 24439 24440 24441 24442 24443 24444 24445 24446 24447 24448 24449 24450 24451 24452 24453 24454 24455 24456 24457 24458 24459 24460 24461 24462 24463 24464 24465 24466 24467 24468 24469 24470 24471 24472 24473 24474 24475 24476 24477 24478 24479 24480 24481 24482 24483 24484 24485 24486 24487 24488 24489 24490 24491 24492 24493 24494 24495 24496 24497 24498 24499 24500 24501 24502 24503 24504 24505 24506 24507 24508 24509 24510 24511 24512 24513 24514 24515 24516 24517 24518 24519 24520 24521 24522 24523 24524 24525 24526 24527 24528 24529 24530 24531 24532 24533 24534 24535 24536 24537 24538 24539 24540 24541 24542 24543 24544 24545 24546 24547 24548 24549 24550 24551 24552 24553 24554 24555 24556 24557 24558 24559 24560 24561 24562 24563 24564 24565 24566 24567 24568 24569 24570 24571 24572 24573 24574 24575 24576 24577 24578 24579 24580 24581 24582 24583 24584 24585 24586 24587 24588 24589 24590 24591 24592 24593 24594 24595 24596 24597 24598 24599 24600 24601 24602 24603 24604 24605 24606 24607 24608 24609 24610 24611 24612 24613 24614 24615 24616 24617 24618 24619 24620 24621 24622 24623 24624 24625 24626 24627 24628 24629 24630 24631 24632 24633 24634 24635 24636 24637 24638 24639 24640 24641 24642 24643 24644 24645 24646 24647 24648 24649 24650 24651 24652 24653 24654 24655 24656 24657 24658 24659 24660 24661 24662 24663 24664 24665 24666 24667 24668 24669 24670 24671 24672 24673 24674 24675 24676 24677 24678 24679 24680 24681 24682 24683 24684 24685 24686 24687 24688 24689 24690 24691 24692 24693 24694 24695 24696 24697 24698 24699 24700 24701 24702 24703 24704 24705 24706 24707 24708 24709 24710 24711 24712 24713 24714 24715 24716 24717 24718 24719 24720 24721 24722 24723 24724 24725 24726 24727 24728 24729 24730 24731 24732 24733 24734 24735 24736 24737 24738 24739 24740 24741 24742 24743 24744 24745 24746 24747 24748 24749 24750 24751 24752 24753 24754 24755 24756 24757 24758 24759 24760 24761 24762 24763 24764 24765 24766 24767 24768 24769 24770 24771 24772 24773 24774 24775 24776 24777 24778 24779 24780 24781 24782 24783 24784 24785 24786 24787 24788 24789 24790 24791 24792 24793 24794 24795 24796 24797 24798 24799 24800 24801 24802 24803 24804 24805 24806 24807 24808 24809 24810 24811 24812 24813 24814 24815 24816 24817 24818 24819 24820 24821 24822 24823 24824 24825 24826 24827 24828 24829 24830 24831 24832 24833 24834 24835 24836 24837 24838 24839 24840 24841 24842 24843 24844 24845 24846 24847 24848 24849 24850 24851 24852 24853 24854 24855 24856 24857 24858 24859 24860 24861 24862 24863 24864 24865 24866 24867 24868 24869 24870 24871 24872 24873 24874 24875 24876 24877 24878 24879 24880 24881 24882 24883 24884 24885 24886 24887 24888 24889 24890 24891 24892 24893 24894 24895 24896 24897 24898 24899 24900 24901 24902 24903 24904 24905 24906 24907 24908 24909 24910 24911 24912 24913 24914 24915 24916 24917 24918 24919 24920 24921 24922 24923 24924 24925 24926 24927 24928 24929 24930 24931 24932 24933 24934 24935 24936 24937 24938 24939 24940 24941 24942 24943 24944 24945 24946 24947 24948 24949 24950 24951 24952 24953 24954 24955 24956 24957 24958 24959 24960 24961 24962 24963 24964 24965 24966 24967 24968 24969 24970 24971 24972 24973 24974 24975 24976 24977 24978 24979 24980 24981 24982 24983 24984 24985 24986 24987 24988 24989 24990 24991 24992 24993 24994 24995 24996 24997 24998 24999 25000 25001 25002 25003 25004 25005 25006 25007 25008 25009 25010 25011 25012 25013 25014 25015 25016 25017 25018 25019 25020 25021 25022 25023 25024 25025 25026 25027 25028 25029 25030 25031 25032 25033 25034 25035 25036 25037 25038 25039 25040 25041 25042 25043 25044 25045 25046 25047 25048 25049 25050 25051 25052 25053 25054 25055 25056 25057 25058 25059 25060 25061 25062 25063 25064 25065 25066 25067 25068 25069 25070 25071 25072 25073 25074 25075 25076 25077 25078 25079 25080 25081 25082 25083 25084 25085 25086 25087 25088 25089 25090 25091 25092 25093 25094 25095 25096 25097 25098 25099 25100 25101 25102 25103 25104 25105 25106 25107 25108 25109 25110 25111 25112 25113 25114 25115 25116 25117 25118 25119 25120 25121 25122 25123 25124 25125 25126 25127 25128 25129 25130 25131 25132 25133 25134 25135 25136 25137 25138 25139 25140 25141 25142 25143 25144 25145 25146 25147 25148 25149 25150 25151 25152 25153 25154 25155 25156 25157 25158 25159 25160 25161 25162 25163 25164 25165 25166 25167 25168 25169 25170 25171 25172 25173 25174 25175 25176 25177 25178 25179 25180 25181 25182 25183 25184 25185 25186 25187 25188 25189 25190 25191 25192 25193 25194 25195 25196 25197 25198 25199 25200 25201 25202 25203 25204 25205 25206 25207 25208 25209 25210 25211 25212 25213 25214 25215 25216 25217 25218 25219 25220 25221 25222 25223 25224 25225 25226 25227 25228 25229 25230 25231 25232 25233 25234 25235 25236 25237 25238 25239 25240 25241 25242 25243 25244 25245 25246 25247 25248 25249 25250 25251 25252 25253 25254 25255 25256 25257 25258 25259 25260 25261 25262 25263 25264 25265 25266 25267 25268 25269 25270 25271 25272 25273 25274 25275 25276 25277 25278 25279 25280 25281 25282 25283 25284 25285 25286 25287 25288 25289 25290 25291 25292 25293 25294 25295 25296 25297 25298 25299 25300 25301 25302 25303 25304 25305 25306 25307 25308 25309 25310 25311 25312 25313 25314 25315 25316 25317 25318 25319 25320 25321 25322 25323 25324 25325 25326 25327 25328 25329 25330 25331 25332 25333 25334 25335 25336 25337 25338 25339 25340 25341 25342 25343 25344 25345 25346 25347 25348 25349 25350 25351 25352 25353 25354 25355 25356 25357 25358 25359 25360 25361 25362 25363 25364 25365 25366 25367 25368 25369 25370 25371 25372 25373 25374 25375 25376 25377 25378 25379 25380 25381 25382 25383 25384 25385 25386 25387 25388 25389 25390 25391 25392 25393 25394 25395 25396 25397 25398 25399 25400 25401 25402 25403 25404 25405 25406 25407 25408 25409 25410 25411 25412 25413 25414 25415 25416 25417 25418 25419 25420 25421 25422 25423 25424 25425 25426 25427 25428 25429 25430 25431 25432 25433 25434 25435 25436 25437 25438 25439 25440 25441 25442 25443 25444 25445 25446 25447 25448 25449 25450 25451 25452 25453 25454 25455 25456 25457 25458 25459 25460 25461 25462 25463 25464 25465 25466 25467 25468 25469 25470 25471 25472 25473 25474 25475 25476 25477 25478 25479 25480 25481 25482 25483 25484 25485 25486 25487 25488 25489 25490 25491 25492 25493 25494 25495 25496 25497 25498 25499 25500 25501 25502 25503 25504 25505 25506 25507 25508 25509 25510 25511 25512 25513 25514 25515 25516 25517 25518 25519 25520 25521 25522 25523 25524 25525 25526 25527 25528 25529 25530 25531 25532 25533 25534 25535 25536 25537 25538 25539 25540 25541 25542 25543 25544 25545 25546 25547 25548 25549 25550 25551 25552 25553 25554 25555 25556 25557 25558 25559 25560 25561 25562 25563 25564 25565 25566 25567 25568 25569 25570 25571 25572 25573 25574 25575 25576 25577 25578 25579 25580 25581 25582 25583 25584 25585 25586 25587 25588 25589 25590 25591 25592 25593 25594 25595 25596 25597 25598 25599 25600 25601 25602 25603 25604 25605 25606 25607 25608 25609 25610 25611 25612 25613 25614 25615 25616 25617 25618 25619 25620 25621 25622 25623 25624 25625 25626 25627 25628 25629 25630 25631 25632 25633 25634 25635 25636 25637 25638 25639 25640 25641 25642 25643 25644 25645 25646 25647 25648 25649 25650 25651 25652 25653 25654 25655 25656 25657 25658 25659 25660 25661 25662 25663 25664 25665 25666 25667 25668 25669 25670 25671 25672 25673 25674 25675 25676 25677 25678 25679 25680 25681 25682 25683 25684 25685 25686 25687 25688 25689 25690 25691 25692 25693 25694 25695 25696 25697 25698 25699 25700 25701 25702 25703 25704 25705 25706 25707 25708 25709 25710 25711 25712 25713 25714 25715 25716 25717 25718 25719 25720 25721 25722 25723 25724 25725 25726 25727 25728 25729 25730 25731 25732 25733 25734 25735 25736 25737 25738 25739 25740 25741 25742 25743 25744 25745 25746 25747 25748 25749 25750 25751 25752 25753 25754 25755 25756 25757 25758 25759 25760 25761 25762 25763 25764 25765 25766 25767 25768 25769 25770 25771 25772 25773 25774 25775 25776 25777 25778 25779 25780 25781 25782 25783 25784 25785 25786 25787 25788 25789 25790 25791 25792 25793 25794 25795 25796 25797 25798 25799 25800 25801 25802 25803 25804 25805 25806 25807 25808 25809 25810 25811 25812 25813 25814 25815 25816 25817 25818 25819 25820 25821 25822 25823 25824 25825 25826 25827 25828 25829 25830 25831 25832 25833 25834 25835 25836 25837 25838 25839 25840 25841 25842 25843 25844 25845 25846 25847 25848 25849 25850 25851 25852 25853 25854 25855 25856 25857 25858 25859 25860 25861 25862 25863 25864 25865 25866 25867 25868 25869 25870 25871 25872 25873 25874 25875 25876 25877 25878 25879 25880 25881 25882 25883 25884 25885 25886 25887 25888 25889 25890 25891 25892 25893 25894 25895 25896 25897 25898 25899 25900 25901 25902 25903 25904 25905 25906 25907 25908 25909 25910 25911 25912 25913 25914 25915 25916 25917 25918 25919 25920 25921 25922 25923 25924 25925 25926 25927 25928 25929 25930 25931 25932 25933 25934 25935 25936 25937 25938 25939 25940 25941 25942 25943 25944 25945 25946 25947 25948 25949 25950 25951 25952 25953 25954 25955 25956 25957 25958 25959 25960 25961 25962 25963 25964 25965 25966 25967 25968 25969 25970 25971 25972 25973 25974 25975 25976 25977 25978 25979 25980 25981 25982 25983 25984 25985 25986 25987 25988 25989 25990 25991 25992 25993 25994 25995 25996 25997 25998 25999 26000 26001 26002 26003 26004 26005 26006 26007 26008 26009 26010 26011 26012 26013 26014 26015 26016 26017 26018 26019 26020 26021 26022 26023 26024 26025 26026 26027 26028 26029 26030 26031 26032 26033 26034 26035 26036 26037 26038 26039 26040 26041 26042 26043 26044 26045 26046 26047 26048 26049 26050 26051 26052 26053 26054 26055 26056 26057 26058 26059 26060 26061 26062 26063 26064 26065 26066 26067 26068 26069 26070 26071 26072 26073 26074 26075 26076 26077 26078 26079 26080 26081 26082 26083 26084 26085 26086 26087 26088 26089 26090 26091 26092 26093 26094 26095 26096 26097 26098 26099 26100 26101 26102 26103 26104 26105 26106 26107 26108 26109 26110 26111 26112 26113 26114 26115 26116 26117 26118 26119 26120 26121 26122 26123 26124 26125 26126 26127 26128 26129 26130 26131 26132 26133 26134 26135 26136 26137 26138 26139 26140 26141 26142 26143 26144 26145 26146 26147 26148 26149 26150 26151 26152 26153 26154 26155 26156 26157 26158 26159 26160 26161 26162 26163 26164 26165 26166 26167 26168 26169 26170 26171 26172 26173 26174 26175 26176 26177 26178 26179 26180 26181 26182 26183 26184 26185 26186 26187 26188 26189 26190 26191 26192 26193 26194 26195 26196 26197 26198 26199 26200 26201 26202 26203 26204 26205 26206 26207 26208 26209 26210 26211 26212 26213 26214 26215 26216 26217 26218 26219 26220 26221 26222 26223 26224 26225 26226 26227 26228 26229 26230 26231 26232 26233 26234 26235 26236 26237 26238 26239 26240 26241 26242 26243 26244 26245 26246 26247 26248 26249 26250 26251 26252 26253 26254 26255 26256 26257 26258 26259 26260 26261 26262 26263 26264 26265 26266 26267 26268 26269 26270 26271 26272 26273 26274 26275 26276 26277 26278 26279 26280 26281 26282 26283 26284 26285 26286 26287 26288 26289 26290 26291 26292 26293 26294 26295 26296 26297 26298 26299 26300 26301 26302 26303 26304 26305 26306 26307 26308 26309 26310 26311 26312 26313 26314 26315 26316 26317 26318 26319 26320 26321 26322 26323 26324 26325 26326 26327 26328 26329 26330 26331 26332 26333 26334 26335 26336 26337 26338 26339 26340 26341 26342 26343 26344 26345 26346 26347 26348 26349 26350 26351 26352 26353 26354 26355 26356 26357 26358 26359 26360 26361 26362 26363 26364 26365 26366 26367 26368 26369 26370 26371 26372 26373 26374 26375 26376 26377 26378 26379 26380 26381 26382 26383 26384 26385 26386 26387 26388 26389 26390 26391 26392 26393 26394 26395 26396 26397 26398 26399 26400 26401 26402 26403 26404 26405 26406 26407 26408 26409 26410 26411 26412 26413 26414 26415 26416 26417 26418 26419 26420 26421 26422 26423 26424 26425 26426 26427 26428 26429 26430 26431 26432 26433 26434 26435 26436 26437 26438 26439 26440 26441 26442 26443 26444 26445 26446 26447 26448 26449 26450 26451 26452 26453 26454 26455 26456 26457 26458 26459 26460 26461 26462 26463 26464 26465 26466 26467 26468 26469 26470 26471 26472 26473 26474 26475 26476 26477 26478 26479 26480 26481 26482 26483 26484 26485 26486 26487 26488 26489 26490 26491 26492 26493 26494 26495 26496 26497 26498 26499 26500 26501 26502 26503 26504 26505 26506 26507 26508 26509 26510 26511 26512 26513 26514 26515 26516 26517 26518 26519 26520 26521 26522 26523 26524 26525 26526 26527 26528 26529 26530 26531 26532 26533 26534 26535 26536 26537 26538 26539 26540 26541 26542 26543 26544 26545 26546 26547 26548 26549 26550 26551 26552 26553 26554 26555 26556 26557 26558 26559 26560 26561 26562 26563 26564 26565 26566 26567 26568 26569 26570 26571 26572 26573 26574 26575 26576 26577 26578 26579 26580 26581 26582 26583 26584 26585 26586 26587 26588 26589 26590 26591 26592 26593 26594 26595 26596 26597 26598 26599 26600 26601 26602 26603 26604 26605 26606 26607 26608 26609 26610 26611 26612 26613 26614 26615 26616 26617 26618 26619 26620 26621 26622 26623 26624 26625 26626 26627 26628 26629 26630 26631 26632 26633 26634 26635 26636 26637 26638 26639 26640 26641 26642 26643 26644 26645 26646 26647 26648 26649 26650 26651 26652 26653 26654 26655 26656 26657 26658 26659 26660 26661 26662 26663 26664 26665 26666 26667 26668 26669 26670 26671 26672 26673 26674 26675 26676 26677 26678 26679 26680 26681 26682 26683 26684 26685 26686 26687 26688 26689 26690 26691 26692 26693 26694 26695 26696 26697 26698 26699 26700 26701 26702 26703 26704 26705 26706 26707 26708 26709 26710 26711 26712 26713 26714 26715 26716 26717 26718 26719 26720 26721 26722 26723 26724 26725 26726 26727 26728 26729 26730 26731 26732 26733 26734 26735 26736 26737 26738 26739 26740 26741 26742 26743 26744 26745 26746 26747 26748 26749 26750 26751 26752 26753 26754 26755 26756 26757 26758 26759 26760 26761 26762 26763 26764 26765 26766 26767 26768 26769 26770 26771 26772 26773 26774 26775 26776 26777 26778 26779 26780 26781 26782 26783 26784 26785 26786 26787 26788 26789 26790 26791 26792 26793 26794 26795 26796 26797 26798 26799 26800 26801 26802 26803 26804 26805 26806 26807 26808 26809 26810 26811 26812 26813 26814 26815 26816 26817 26818 26819 26820 26821 26822 26823 26824 26825 26826 26827 26828 26829 26830 26831 26832 26833 26834 26835 26836 26837 26838 26839 26840 26841 26842 26843 26844 26845 26846 26847 26848 26849 26850 26851 26852 26853 26854 26855 26856 26857 26858 26859 26860 26861 26862 26863 26864 26865 26866 26867 26868 26869 26870 26871 26872 26873 26874 26875 26876 26877 26878 26879 26880 26881 26882 26883 26884 26885 26886 26887 26888 26889 26890 26891 26892 26893 26894 26895 26896 26897 26898 26899 26900 26901 26902 26903 26904 26905 26906 26907 26908 26909 26910 26911 26912 26913 26914 26915 26916 26917 26918 26919 26920 26921 26922 26923 26924 26925 26926 26927 26928 26929 26930 26931 26932 26933 26934 26935 26936 26937 26938 26939 26940 26941 26942 26943 26944 26945 26946 26947 26948 26949 26950 26951 26952 26953 26954 26955 26956 26957 26958 26959 26960 26961 26962 26963 26964 26965 26966 26967 26968 26969 26970 26971 26972 26973 26974 26975 26976 26977 26978 26979 26980 26981 26982 26983 26984 26985 26986 26987 26988 26989 26990 26991 26992 26993 26994 26995 26996 26997 26998 26999 27000 27001 27002 27003 27004 27005 27006 27007 27008 27009 27010 27011 27012 27013 27014 27015 27016 27017 27018 27019 27020 27021 27022 27023 27024 27025 27026 27027 27028 27029 27030 27031 27032 27033 27034 27035 27036 27037 27038 27039 27040 27041 27042 27043 27044 27045 27046 27047 27048 27049 27050 27051 27052 27053 27054 27055 27056 27057 27058 27059 27060 27061 27062 27063 27064 27065 27066 27067 27068 27069 27070 27071 27072 27073 27074 27075 27076 27077 27078 27079 27080 27081 27082 27083 27084 27085 27086 27087 27088 27089 27090 27091 27092 27093 27094 27095 27096 27097 27098 27099 27100 27101 27102 27103 27104 27105 27106 27107 27108 27109 27110 27111 27112 27113 27114 27115 27116 27117 27118 27119 27120 27121 27122 27123 27124 27125 27126 27127 27128 27129 27130 27131 27132 27133 27134 27135 27136 27137 27138 27139 27140 27141 27142 27143 27144 27145 27146 27147 27148 27149 27150 27151 27152 27153 27154 27155 27156 27157 27158 27159 27160 27161 27162 27163 27164 27165 27166 27167 27168 27169 27170 27171 27172 27173 27174 27175 27176 27177 27178 27179 27180 27181 27182 27183 27184 27185 27186 27187 27188 27189 27190 27191 27192 27193 27194 27195 27196 27197 27198 27199 27200 27201 27202 27203 27204 27205 27206 27207 27208 27209 27210 27211 27212 27213 27214 27215 27216 27217 27218 27219 27220 27221 27222 27223 27224 27225 27226 27227 27228 27229 27230 27231 27232 27233 27234 27235 27236 27237 27238 27239 27240 27241 27242 27243 27244 27245 27246 27247 27248 27249 27250 27251 27252 27253 27254 27255 27256 27257 27258 27259 27260 27261 27262 27263 27264 27265 27266 27267 27268 27269 27270 27271 27272 27273 27274 27275 27276 27277 27278 27279 27280 27281 27282 27283 27284 27285 27286 27287 27288 27289 27290 27291 27292 27293 27294 27295 27296 27297 27298 27299 27300 27301 27302 27303 27304 27305 27306 27307 27308 27309 27310 27311 27312 27313 27314 27315 27316 27317 27318 27319 27320 27321 27322 27323 27324 27325 27326 27327 27328 27329 27330 27331 27332 27333 27334 27335 27336 27337 27338 27339 27340 27341 27342 27343 27344 27345 27346 27347 27348 27349 27350 27351 27352 27353 27354 27355 27356 27357 27358 27359 27360 27361 27362 27363 27364 27365 27366 27367 27368 27369 27370 27371 27372 27373 27374 27375 27376 27377 27378 27379 27380 27381 27382 27383 27384 27385 27386 27387 27388 27389 27390 27391 27392 27393 27394 27395 27396 27397 27398 27399 27400 27401 27402 27403 27404 27405 27406 27407 27408 27409 27410 27411 27412 27413 27414 27415 27416 27417 27418 27419 27420 27421 27422 27423 27424 27425 27426 27427 27428 27429 27430 27431 27432 27433 27434 27435 27436 27437 27438 27439 27440 27441 27442 27443 27444 27445 27446 27447 27448 27449 27450 27451 27452 27453 27454 27455 27456 27457 27458 27459 27460 27461 27462 27463 27464 27465 27466 27467 27468 27469 27470 27471 27472 27473 27474 27475 27476 27477 27478 27479 27480 27481 27482 27483 27484 27485 27486 27487 27488 27489 27490 27491 27492 27493 27494 27495 27496 27497 27498 27499 27500 27501 27502 27503 27504 27505 27506 27507 27508 27509 27510 27511 27512 27513 27514 27515 27516 27517 27518 27519 27520 27521 27522 27523 27524 27525 27526 27527 27528 27529 27530 27531 27532 27533 27534 27535 27536 27537 27538 27539 27540 27541 27542 27543 27544 27545 27546 27547 27548 27549 27550 27551 27552 27553 27554 27555 27556 27557 27558 27559 27560 27561 27562 27563 27564 27565 27566 27567 27568 27569 27570 27571 27572 27573 27574 27575 27576 27577 27578 27579 27580 27581 27582 27583 27584 27585 27586 27587 27588 27589 27590 27591 27592 27593 27594 27595 27596 27597 27598 27599 27600 27601 27602 27603 27604 27605 27606 27607 27608 27609 27610 27611 27612 27613 27614 27615 27616 27617 27618 27619 27620 27621 27622 27623 27624 27625 27626 27627 27628 27629 27630 27631 27632 27633 27634 27635 27636 27637 27638 27639 27640 27641 27642 27643 27644 27645 27646 27647 27648 27649 27650 27651 27652 27653 27654 27655 27656 27657 27658 27659 27660 27661 27662 27663 27664 27665 27666 27667 27668 27669 27670 27671 27672 27673 27674 27675 27676 27677 27678 27679 27680 27681 27682 27683 27684 27685 27686 27687 27688 27689 27690 27691 27692 27693 27694 27695 27696 27697 27698 27699 27700 27701 27702 27703 27704 27705 27706 27707 27708 27709 27710 27711 27712 27713 27714 27715 27716 27717 27718 27719 27720 27721 27722 27723 27724 27725 27726 27727 27728 27729 27730 27731 27732 27733 27734 27735 27736 27737 27738 27739 27740 27741 27742 27743 27744 27745 27746 27747 27748 27749 27750 27751 27752 27753 27754 27755 27756 27757 27758 27759 27760 27761 27762 27763 27764 27765 27766 27767 27768 27769 27770 27771 27772 27773 27774 27775 27776 27777 27778 27779 27780 27781 27782 27783 27784 27785 27786 27787 27788 27789 27790 27791 27792 27793 27794 27795 27796 27797 27798 27799 27800 27801 27802 27803 27804 27805 27806 27807 27808 27809 27810 27811 27812 27813 27814 27815 27816 27817 27818 27819 27820 27821 27822 27823 27824 27825 27826 27827 27828 27829 27830 27831 27832 27833 27834 27835 27836 27837 27838 27839 27840 27841 27842 27843 27844 27845 27846 27847 27848 27849 27850 27851 27852 27853 27854 27855 27856 27857 27858 27859 27860 27861 27862 27863 27864 27865 27866 27867 27868 27869 27870 27871 27872 27873 27874 27875 27876 27877 27878 27879 27880 27881 27882 27883 27884 27885 27886 27887 27888 27889 27890 27891 27892 27893 27894 27895 27896 27897 27898 27899 27900 27901 27902 27903 27904 27905 27906 27907 27908 27909 27910 27911 27912 27913 27914 27915 27916 27917 27918 27919 27920 27921 27922 27923 27924 27925 27926 27927 27928 27929 27930 27931 27932 27933 27934 27935 27936 27937 27938 27939 27940 27941 27942 27943 27944 27945 27946 27947 27948 27949 27950 27951 27952 27953 27954 27955 27956 27957 27958 27959 27960 27961 27962 27963 27964 27965 27966 27967 27968 27969 27970 27971 27972 27973 27974 27975 27976 27977 27978 27979 27980 27981 27982 27983 27984 27985 27986 27987 27988 27989 27990 27991 27992 27993 27994 27995 27996 27997 27998 27999 28000 28001 28002 28003 28004 28005 28006 28007 28008 28009 28010 28011 28012 28013 28014 28015 28016 28017 28018 28019 28020 28021 28022 28023 28024 28025 28026 28027 28028 28029 28030 28031 28032 28033 28034 28035 28036 28037 28038 28039 28040 28041 28042 28043 28044 28045 28046 28047 28048 28049 28050 28051 28052 28053 28054 28055 28056 28057 28058 28059 28060 28061 28062 28063 28064 28065 28066 28067 28068 28069 28070 28071 28072 28073 28074 28075 28076 28077 28078 28079 28080 28081 28082 28083 28084 28085 28086 28087 28088 28089 28090 28091 28092 28093 28094 28095 28096 28097 28098 28099 28100 28101 28102 28103 28104 28105 28106 28107 28108 28109 28110 28111 28112 28113 28114 28115 28116 28117 28118 28119 28120 28121 28122 28123 28124 28125 28126 28127 28128 28129 28130 28131 28132 28133 28134 28135 28136 28137 28138 28139 28140 28141 28142 28143 28144 28145 28146 28147 28148 28149 28150 28151 28152 28153 28154 28155 28156 28157 28158 28159 28160 28161 28162 28163 28164 28165 28166 28167 28168 28169 28170 28171 28172 28173 28174 28175 28176 28177 28178 28179 28180 28181 28182 28183 28184 28185 28186 28187 28188 28189 28190 28191 28192 28193 28194 28195 28196 28197 28198 28199 28200 28201 28202 28203 28204 28205 28206 28207 28208 28209 28210 28211 28212 28213 28214 28215 28216 28217 28218 28219 28220 28221 28222 28223 28224 28225 28226 28227 28228 28229 28230 28231 28232 28233 28234 28235 28236 28237 28238 28239 28240 28241 28242 28243 28244 28245 28246 28247 28248 28249 28250 28251 28252 28253 28254 28255 28256 28257 28258 28259 28260 28261 28262 28263 28264 28265 28266 28267 28268 28269 28270 28271 28272 28273 28274 28275 28276 28277 28278 28279 28280 28281 28282 28283 28284 28285 28286 28287 28288 28289 28290 28291 28292 28293 28294 28295 28296 28297 28298 28299 28300 28301 28302 28303 28304 28305 28306 28307 28308 28309 28310 28311 28312 28313 28314 28315 28316 28317 28318 28319 28320 28321 28322 28323 28324 28325 28326 28327 28328 28329 28330 28331 28332 28333 28334 28335 28336 28337 28338 28339 28340 28341 28342 28343 28344 28345 28346 28347 28348 28349 28350 28351 28352 28353 28354 28355 28356 28357 28358 28359 28360 28361 28362 28363 28364 28365 28366 28367 28368 28369 28370 28371 28372 28373 28374 28375 28376 28377 28378 28379 28380 28381 28382 28383 28384 28385 28386 28387 28388 28389 28390 28391 28392 28393 28394 28395 28396 28397 28398 28399 28400 28401 28402 28403 28404 28405 28406 28407 28408 28409 28410 28411 28412 28413 28414 28415 28416 28417 28418 28419 28420 28421 28422 28423 28424 28425 28426 28427 28428 28429 28430 28431 28432 28433 28434 28435 28436 28437 28438 28439 28440 28441 28442 28443 28444 28445 28446 28447 28448 28449 28450 28451 28452 28453 28454 28455 28456 28457 28458 28459 28460 28461 28462 28463 28464 28465 28466 28467 28468 28469 28470 28471 28472 28473 28474 28475 28476 28477 28478 28479 28480 28481 28482 28483 28484 28485 28486 28487 28488 28489 28490 28491 28492 28493 28494 28495 28496 28497 28498 28499 28500 28501 28502 28503 28504 28505 28506 28507 28508 28509 28510 28511 28512 28513 28514 28515 28516 28517 28518 28519 28520 28521 28522 28523 28524 28525 28526 28527 28528 28529 28530 28531 28532 28533 28534 28535 28536 28537 28538 28539 28540 28541 28542 28543 28544 28545 28546 28547 28548 28549 28550 28551 28552 28553 28554 28555 28556 28557 28558 28559 28560 28561 28562 28563 28564 28565 28566 28567 28568 28569 28570 28571 28572 28573 28574 28575 28576 28577 28578 28579 28580 28581 28582 28583 28584 28585 28586 28587 28588 28589 28590 28591 28592 28593 28594 28595 28596 28597 28598 28599 28600 28601 28602 28603 28604 28605 28606 28607 28608 28609 28610 28611 28612 28613 28614 28615 28616 28617 28618 28619 28620 28621 28622 28623 28624 28625 28626 28627 28628 28629 28630 28631 28632 28633 28634 28635 28636 28637 28638 28639 28640 28641 28642 28643 28644 28645 28646 28647 28648 28649 28650 28651 28652 28653 28654 28655 28656 28657 28658 28659 28660 28661 28662 28663 28664 28665 28666 28667 28668 28669 28670 28671 28672 28673 28674 28675 28676 28677 28678 28679 28680 28681 28682 28683 28684 28685 28686 28687 28688 28689 28690 28691 28692 28693 28694 28695 28696 28697 28698 28699 28700 28701 28702 28703 28704 28705 28706 28707 28708 28709 28710 28711 28712 28713 28714 28715 28716 28717 28718 28719 28720 28721 28722 28723 28724 28725 28726 28727 28728 28729 28730 28731 28732 28733 28734 28735 28736 28737 28738 28739 28740 28741 28742 28743 28744 28745 28746 28747 28748 28749 28750 28751 28752 28753 28754 28755 28756 28757 28758 28759 28760 28761 28762 28763 28764 28765 28766 28767 28768 28769 28770 28771 28772 28773 28774 28775 28776 28777 28778 28779 28780 28781 28782 28783 28784 28785 28786 28787 28788 28789 28790 28791 28792 28793 28794 28795 28796 28797 28798 28799 28800 28801 28802 28803 28804 28805 28806 28807 28808 28809 28810 28811 28812 28813 28814 28815 28816 28817 28818 28819 28820 28821 28822 28823 28824 28825 28826 28827 28828 28829 28830 28831 28832 28833 28834 28835 28836 28837 28838 28839 28840 28841 28842 28843 28844 28845 28846 28847 28848 28849 28850 28851 28852 28853 28854 28855 28856 28857 28858 28859 28860 28861 28862 28863 28864 28865 28866 28867 28868 28869 28870 28871 28872 28873 28874 28875 28876 28877 28878 28879 28880 28881 28882 28883 28884 28885 28886 28887 28888 28889 28890 28891 28892 28893 28894 28895 28896 28897 28898 28899 28900 28901 28902 28903 28904 28905 28906 28907 28908 28909 28910 28911 28912 28913 28914 28915 28916 28917 28918 28919 28920 28921 28922 28923 28924 28925 28926 28927 28928 28929 28930 28931 28932 28933 28934 28935 28936 28937 28938 28939 28940 28941 28942 28943 28944 28945 28946 28947 28948 28949 28950 28951 28952 28953 28954 28955 28956 28957 28958 28959 28960 28961 28962 28963 28964 28965 28966 28967 28968 28969 28970 28971 28972 28973 28974 28975 28976 28977 28978 28979 28980 28981 28982 28983 28984 28985 28986 28987 28988 28989 28990 28991 28992 28993 28994 28995 28996 28997 28998 28999 29000 29001 29002 29003 29004 29005 29006 29007 29008 29009 29010 29011 29012 29013 29014 29015 29016 29017 29018 29019 29020 29021 29022 29023 29024 29025 29026 29027 29028 29029 29030 29031 29032 29033 29034 29035 29036 29037 29038 29039 29040 29041 29042 29043 29044 29045 29046 29047 29048 29049 29050 29051 29052 29053 29054 29055 29056 29057 29058 29059 29060 29061 29062 29063 29064 29065 29066 29067 29068 29069 29070 29071 29072 29073 29074 29075 29076 29077 29078 29079 29080 29081 29082 29083 29084 29085 29086 29087 29088 29089 29090 29091 29092 29093 29094 29095 29096 29097 29098 29099 29100 29101 29102 29103 29104 29105 29106 29107 29108 29109 29110 29111 29112 29113 29114 29115 29116 29117 29118 29119 29120 29121 29122 29123 29124 29125 29126 29127 29128 29129 29130 29131 29132 29133 29134 29135 29136 29137 29138 29139 29140 29141 29142 29143 29144 29145 29146 29147 29148 29149 29150 29151 29152 29153 29154 29155 29156 29157 29158 29159 29160 29161 29162 29163 29164 29165 29166 29167 29168 29169 29170 29171 29172 29173 29174 29175 29176 29177 29178 29179 29180 29181 29182 29183 29184 29185 29186 29187 29188 29189 29190 29191 29192 29193 29194 29195 29196 29197 29198 29199 29200 29201 29202 29203 29204 29205 29206 29207 29208 29209 29210 29211 29212 29213 29214 29215 29216 29217 29218 29219 29220 29221 29222 29223 29224 29225 29226 29227 29228 29229 29230 29231 29232 29233 29234 29235 29236 29237 29238 29239 29240 29241 29242 29243 29244 29245 29246 29247 29248 29249 29250 29251 29252 29253 29254 29255 29256 29257 29258 29259 29260 29261 29262 29263 29264 29265 29266 29267 29268 29269 29270 29271 29272 29273 29274 29275 29276 29277 29278 29279 29280 29281 29282 29283 29284 29285 29286 29287 29288 29289 29290 29291 29292 29293 29294 29295 29296 29297 29298 29299 29300 29301 29302 29303 29304 29305 29306 29307 29308 29309 29310 29311 29312 29313 29314 29315 29316 29317 29318 29319 29320 29321 29322 29323 29324 29325 29326 29327 29328 29329 29330 29331 29332 29333 29334 29335 29336 29337 29338 29339 29340 29341 29342 29343 29344 29345 29346 29347 29348 29349 29350 29351 29352 29353 29354 29355 29356 29357 29358 29359 29360 29361 29362 29363 29364 29365 29366 29367 29368 29369 29370 29371 29372 29373 29374 29375 29376 29377 29378 29379 29380 29381 29382 29383 29384 29385 29386 29387 29388 29389 29390 29391 29392 29393 29394 29395 29396 29397 29398 29399 29400 29401 29402 29403 29404 29405 29406 29407 29408 29409 29410 29411 29412 29413 29414 29415 29416 29417 29418 29419 29420 29421 29422 29423 29424 29425 29426 29427 29428 29429 29430 29431 29432 29433 29434 29435 29436 29437 29438 29439 29440 29441 29442 29443 29444 29445 29446 29447 29448 29449 29450 29451 29452 29453 29454 29455 29456 29457 29458 29459 29460 29461 29462 29463 29464 29465 29466 29467 29468 29469 29470 29471 29472 29473 29474 29475 29476 29477 29478 29479 29480 29481 29482 29483 29484 29485 29486 29487 29488 29489 29490 29491 29492 29493 29494 29495 29496 29497 29498 29499 29500 29501 29502 29503 29504 29505 29506 29507 29508 29509 29510 29511 29512 29513 29514 29515 29516 29517 29518 29519 29520 29521 29522 29523 29524 29525 29526 29527 29528 29529 29530 29531 29532 29533 29534 29535 29536 29537 29538 29539 29540 29541 29542 29543 29544 29545 29546 29547 29548 29549 29550 29551 29552 29553 29554 29555 29556 29557 29558 29559 29560 29561 29562 29563 29564 29565 29566 29567 29568 29569 29570 29571 29572 29573 29574 29575 29576 29577 29578 29579 29580 29581 29582 29583 29584 29585 29586 29587 29588 29589 29590 29591 29592 29593 29594 29595 29596 29597 29598 29599 29600 29601 29602 29603 29604 29605 29606 29607 29608 29609 29610 29611 29612 29613 29614 29615 29616 29617 29618 29619 29620 29621 29622 29623 29624 29625 29626 29627 29628 29629 29630 29631 29632 29633 29634 29635 29636 29637 29638 29639 29640 29641 29642 29643 29644 29645 29646 29647 29648 29649 29650 29651 29652 29653 29654 29655 29656 29657 29658 29659 29660 29661 29662 29663 29664 29665 29666 29667 29668 29669 29670 29671 29672 29673 29674 29675 29676 29677 29678 29679 29680 29681 29682 29683 29684 29685 29686 29687 29688 29689 29690 29691 29692 29693 29694 29695 29696 29697 29698 29699 29700 29701 29702 29703 29704 29705 29706 29707 29708 29709 29710 29711 29712 29713 29714 29715 29716 29717 29718 29719 29720 29721 29722 29723 29724 29725 29726 29727 29728 29729 29730 29731 29732 29733 29734 29735 29736 29737 29738 29739 29740 29741 29742 29743 29744 29745 29746 29747 29748 29749 29750 29751 29752 29753 29754 29755 29756 29757 29758 29759 29760 29761 29762 29763 29764 29765 29766 29767 29768 29769 29770 29771 29772 29773 29774 29775 29776 29777 29778 29779 29780 29781 29782 29783 29784 29785 29786 29787 29788 29789 29790 29791 29792 29793 29794 29795 29796 29797 29798 29799 29800 29801 29802 29803 29804 29805 29806 29807 29808 29809 29810 29811 29812 29813 29814 29815 29816 29817 29818 29819 29820 29821 29822 29823 29824 29825 29826 29827 29828 29829 29830 29831 29832 29833 29834 29835 29836 29837 29838 29839 29840 29841 29842 29843 29844 29845 29846 29847 29848 29849 29850 29851 29852 29853 29854 29855 29856 29857 29858 29859 29860 29861 29862 29863 29864 29865 29866 29867 29868 29869 29870 29871 29872 29873 29874 29875 29876 29877 29878 29879 29880 29881 29882 29883 29884 29885 29886 29887 29888 29889 29890 29891 29892 29893 29894 29895 29896 29897 29898 29899 29900 29901 29902 29903 29904 29905 29906 29907 29908 29909 29910 29911 29912 29913 29914 29915 29916 29917 29918 29919 29920 29921 29922 29923 29924 29925 29926 29927 29928 29929 29930 29931 29932 29933 29934 29935 29936 29937 29938 29939 29940 29941 29942 29943 29944 29945 29946 29947 29948 29949 29950 29951 29952 29953 29954 29955 29956 29957 29958 29959 29960 29961 29962 29963 29964 29965 29966 29967 29968 29969 29970 29971 29972 29973 29974 29975 29976 29977 29978 29979 29980 29981 29982 29983 29984 29985 29986 29987 29988 29989 29990 29991 29992 29993 29994 29995 29996 29997 29998 29999 30000 30001 30002 30003 30004 30005 30006 30007 30008 30009 30010 30011 30012 30013 30014 30015 30016 30017 30018 30019 30020 30021 30022 30023 30024 30025 30026 30027 30028 30029 30030 30031 30032 30033 30034 30035 30036 30037 30038 30039 30040 30041 30042 30043 30044 30045 30046 30047 30048 30049 30050 30051 30052 30053 30054 30055 30056 30057 30058 30059 30060 30061 30062 30063 30064 30065 30066 30067 30068 30069 30070 30071 30072 30073 30074 30075 30076 30077 30078 30079 30080 30081 30082 30083 30084 30085 30086 30087 30088 30089 30090 30091 30092 30093 30094 30095 30096 30097 30098 30099 30100 30101 30102 30103 30104 30105 30106 30107 30108 30109 30110 30111 30112 30113 30114 30115 30116 30117 30118 30119 30120 30121 30122 30123 30124 30125 30126 30127 30128 30129 30130 30131 30132 30133 30134 30135 30136 30137 30138 30139 30140 30141 30142 30143 30144 30145 30146 30147 30148 30149 30150 30151 30152 30153 30154 30155 30156 30157 30158 30159 30160 30161 30162 30163 30164 30165 30166 30167 30168 30169 30170 30171 30172 30173 30174 30175 30176 30177 30178 30179 30180 30181 30182 30183 30184 30185 30186 30187 30188 30189 30190 30191 30192 30193 30194 30195 30196 30197 30198 30199 30200 30201 30202 30203 30204 30205 30206 30207 30208 30209 30210 30211 30212 30213 30214 30215 30216 30217 30218 30219 30220 30221 30222 30223 30224 30225 30226 30227 30228 30229 30230 30231 30232 30233 30234 30235 30236 30237 30238 30239 30240 30241 30242 30243 30244 30245 30246 30247 30248 30249 30250 30251 30252 30253 30254 30255 30256 30257 30258 30259 30260 30261 30262 30263 30264 30265 30266 30267 30268 30269 30270 30271 30272 30273 30274 30275 30276 30277 30278 30279 30280 30281 30282 30283 30284 30285 30286 30287 30288 30289 30290 30291 30292 30293 30294 30295 30296 30297 30298 30299 30300 30301 30302 30303 30304 30305 30306 30307 30308 30309 30310 30311 30312 30313 30314 30315 30316 30317 30318 30319 30320 30321 30322 30323 30324 30325 30326 30327 30328 30329 30330 30331 30332 30333 30334 30335 30336 30337 30338 30339 30340 30341 30342 30343 30344 30345 30346 30347 30348 30349 30350 30351 30352 30353 30354 30355 30356 30357 30358 30359 30360 30361 30362 30363 30364 30365 30366 30367 30368 30369 30370 30371 30372 30373 30374 30375 30376 30377 30378 30379 30380 30381 30382 30383 30384 30385 30386 30387 30388 30389 30390 30391 30392 30393 30394 30395 30396 30397 30398 30399 30400 30401 30402 30403 30404 30405 30406 30407 30408 30409 30410 30411 30412 30413 30414 30415 30416 30417 30418 30419 30420 30421 30422 30423 30424 30425 30426 30427 30428 30429 30430 30431 30432 30433 30434 30435 30436 30437 30438 30439 30440 30441 30442 30443 30444 30445 30446 30447 30448 30449 30450 30451 30452 30453 30454 30455 30456 30457 30458 30459 30460 30461 30462 30463 30464 30465 30466 30467 30468 30469 30470 30471 30472 30473 30474 30475 30476 30477 30478 30479 30480 30481 30482 30483 30484 30485 30486 30487 30488 30489 30490 30491 30492 30493 30494 30495 30496 30497 30498 30499 30500 30501 30502 30503 30504 30505 30506 30507 30508 30509 30510 30511 30512 30513 30514 30515 30516 30517 30518 30519 30520 30521 30522 30523 30524 30525 30526 30527 30528 30529 30530 30531 30532 30533 30534 30535 30536 30537 30538 30539 30540 30541 30542 30543 30544 30545 30546 30547 30548 30549 30550 30551 30552 30553 30554 30555 30556 30557 30558 30559 30560 30561 30562 30563 30564 30565 30566 30567 30568 30569 30570 30571 30572 30573 30574 30575 30576 30577 30578 30579 30580 30581 30582 30583 30584 30585 30586 30587 30588 30589 30590 30591 30592 30593 30594 30595 30596 30597 30598 30599 30600 30601 30602 30603 30604 30605 30606 30607 30608 30609 30610 30611 30612 30613 30614 30615 30616 30617 30618 30619 30620 30621 30622 30623 30624 30625 30626 30627 30628 30629 30630 30631 30632 30633 30634 30635 30636 30637 30638 30639 30640 30641 30642 30643 30644 30645 30646 30647 30648 30649 30650 30651 30652 30653 30654 30655 30656 30657 30658 30659 30660 30661 30662 30663 30664 30665 30666 30667 30668 30669 30670 30671 30672 30673 30674 30675 30676 30677 30678 30679 30680 30681 30682 30683 30684 30685 30686 30687 30688 30689 30690 30691 30692 30693 30694 30695 30696 30697 30698 30699 30700 30701 30702 30703 30704 30705 30706 30707 30708 30709 30710 30711 30712 30713 30714 30715 30716 30717 30718 30719 30720 30721 30722 30723 30724 30725 30726 30727 30728 30729 30730 30731 30732 30733 30734 30735 30736 30737 30738 30739 30740 30741 30742 30743 30744 30745 30746 30747 30748 30749 30750 30751 30752 30753 30754 30755 30756 30757 30758 30759 30760 30761 30762 30763 30764 30765 30766 30767 30768 30769 30770 30771 30772 30773 30774 30775 30776 30777 30778 30779 30780 30781 30782 30783 30784 30785 30786 30787 30788 30789 30790 30791 30792 30793 30794 30795 30796 30797 30798 30799 30800 30801 30802 30803 30804 30805 30806 30807 30808 30809 30810 30811 30812 30813 30814 30815 30816 30817 30818 30819 30820 30821 30822 30823 30824 30825 30826 30827 30828 30829 30830 30831 30832 30833 30834 30835 30836 30837 30838 30839 30840 30841 30842 30843 30844 30845 30846 30847 30848 30849 30850 30851 30852 30853 30854 30855 30856 30857 30858 30859 30860 30861 30862 30863 30864 30865 30866 30867 30868 30869 30870 30871 30872 30873 30874 30875 30876 30877 30878 30879 30880 30881 30882 30883 30884 30885 30886 30887 30888 30889 30890 30891 30892 30893 30894 30895 30896 30897 30898 30899 30900 30901 30902 30903 30904 30905 30906 30907 30908 30909 30910 30911 30912 30913 30914 30915 30916 30917 30918 30919 30920 30921 30922 30923 30924 30925 30926 30927 30928 30929 30930 30931 30932 30933 30934 30935 30936 30937 30938 30939 30940 30941 30942 30943 30944 30945 30946 30947 30948 30949 30950 30951 30952 30953 30954 30955 30956 30957 30958 30959 30960 30961 30962 30963 30964 30965 30966 30967 30968 30969 30970 30971 30972 30973 30974 30975 30976 30977 30978 30979 30980 30981 30982 30983 30984 30985 30986 30987 30988 30989 30990 30991 30992 30993 30994 30995 30996 30997 30998 30999 31000 31001 31002 31003 31004 31005 31006 31007 31008 31009 31010 31011 31012 31013 31014 31015 31016 31017 31018 31019 31020 31021 31022 31023 31024 31025 31026 31027 31028 31029 31030 31031 31032 31033 31034 31035 31036 31037 31038 31039 31040 31041 31042 31043 31044 31045 31046 31047 31048 31049 31050 31051 31052 31053 31054 31055 31056 31057 31058 31059 31060 31061 31062 31063 31064 31065 31066 31067 31068 31069 31070 31071 31072 31073 31074 31075 31076 31077 31078 31079 31080 31081 31082 31083 31084 31085 31086 31087 31088 31089 31090 31091 31092 31093 31094 31095 31096 31097 31098 31099 31100 31101 31102 31103 31104 31105 31106 31107 31108 31109 31110 31111 31112 31113 31114 31115 31116 31117 31118 31119 31120 31121 31122 31123 31124 31125 31126 31127 31128 31129 31130 31131 31132 31133 31134 31135 31136 31137 31138 31139 31140 31141 31142 31143 31144 31145 31146 31147 31148 31149 31150 31151 31152 31153 31154 31155 31156 31157 31158 31159 31160 31161 31162 31163 31164 31165 31166 31167 31168 31169 31170 31171 31172 31173 31174 31175 31176 31177 31178 31179 31180 31181 31182 31183 31184 31185 31186 31187 31188 31189 31190 31191 31192 31193 31194 31195 31196 31197 31198 31199 31200 31201 31202 31203 31204 31205 31206 31207 31208 31209 31210 31211 31212 31213 31214 31215 31216 31217 31218 31219 31220 31221 31222 31223 31224 31225 31226 31227 31228 31229 31230 31231 31232 31233 31234 31235 31236 31237 31238 31239 31240 31241 31242 31243 31244 31245 31246 31247 31248 31249 31250 31251 31252 31253 31254 31255 31256 31257 31258 31259 31260 31261 31262 31263 31264 31265 31266 31267 31268 31269 31270 31271 31272 31273 31274 31275 31276 31277 31278 31279 31280 31281 31282 31283 31284 31285 31286 31287 31288 31289 31290 31291 31292 31293 31294 31295 31296 31297 31298 31299 31300 31301 31302 31303 31304 31305 31306 31307 31308 31309 31310 31311 31312 31313 31314 31315 31316 31317 31318 31319 31320 31321 31322 31323 31324 31325 31326 31327 31328 31329 31330 31331 31332 31333 31334 31335 31336 31337 31338 31339 31340 31341 31342 31343 31344 31345 31346 31347 31348 31349 31350 31351 31352 31353 31354 31355 31356 31357 31358 31359 31360 31361 31362 31363 31364 31365 31366 31367 31368 31369 31370 31371 31372 31373 31374 31375 31376 31377 31378 31379 31380 31381 31382 31383 31384 31385 31386 31387 31388 31389 31390 31391 31392 31393 31394 31395 31396 31397 31398 31399 31400 31401 31402 31403 31404 31405 31406 31407 31408 31409 31410 31411 31412 31413 31414 31415 31416 31417 31418 31419 31420 31421 31422 31423 31424 31425 31426 31427 31428 31429 31430 31431 31432 31433 31434 31435 31436 31437 31438 31439 31440 31441 31442 31443 31444 31445 31446 31447 31448 31449 31450 31451 31452 31453 31454 31455 31456 31457 31458 31459 31460 31461 31462 31463 31464 31465 31466 31467 31468 31469 31470 31471 31472 31473 31474 31475 31476 31477 31478 31479 31480 31481 31482 31483 31484 31485 31486 31487 31488 31489 31490 31491 31492 31493 31494 31495 31496 31497 31498 31499 31500 31501 31502 31503 31504 31505 31506 31507 31508 31509 31510 31511 31512 31513 31514 31515 31516 31517 31518 31519 31520 31521 31522 31523 31524 31525 31526 31527 31528 31529 31530 31531 31532 31533 31534 31535 31536 31537 31538 31539 31540 31541 31542 31543 31544 31545 31546 31547 31548 31549 31550 31551 31552 31553 31554 31555 31556 31557 31558 31559 31560 31561 31562 31563 31564 31565 31566 31567 31568 31569 31570 31571 31572 31573 31574 31575 31576 31577 31578 31579 31580 31581 31582 31583 31584 31585 31586 31587 31588 31589 31590 31591 31592 31593 31594 31595 31596 31597 31598 31599 31600 31601 31602 31603 31604 31605 31606 31607 31608 31609 31610 31611 31612 31613 31614 31615 31616 31617 31618 31619 31620 31621 31622 31623 31624 31625 31626 31627 31628 31629 31630 31631 31632 31633 31634 31635 31636 31637 31638 31639 31640 31641 31642 31643 31644 31645 31646 31647 31648 31649 31650 31651 31652 31653 31654 31655 31656 31657 31658 31659 31660 31661 31662 31663 31664 31665 31666 31667 31668 31669 31670 31671 31672 31673 31674 31675 31676 31677 31678 31679 31680 31681 31682 31683 31684 31685 31686 31687 31688 31689 31690 31691 31692 31693 31694 31695 31696 31697 31698 31699 31700 31701 31702 31703 31704 31705 31706 31707 31708 31709 31710 31711 31712 31713 31714 31715 31716 31717 31718 31719 31720 31721 31722 31723 31724 31725 31726 31727 31728 31729 31730 31731 31732 31733 31734 31735 31736 31737 31738 31739 31740 31741 31742 31743 31744 31745 31746 31747 31748 31749 31750 31751 31752 31753 31754 31755 31756 31757 31758 31759 31760 31761 31762 31763 31764 31765 31766 31767 31768 31769 31770 31771 31772 31773 31774 31775 31776 31777 31778 31779 31780 31781 31782 31783 31784 31785 31786 31787 31788 31789 31790 31791 31792 31793 31794 31795 31796 31797 31798 31799 31800 31801 31802 31803 31804 31805 31806 31807 31808 31809 31810 31811 31812 31813 31814 31815 31816 31817 31818 31819 31820 31821 31822 31823 31824 31825 31826 31827 31828 31829 31830 31831 31832 31833 31834 31835 31836 31837 31838 31839 31840 31841 31842 31843 31844 31845 31846 31847 31848 31849 31850 31851 31852 31853 31854 31855 31856 31857 31858 31859 31860 31861 31862 31863 31864 31865 31866 31867 31868 31869 31870 31871 31872 31873 31874 31875 31876 31877 31878 31879 31880 31881 31882 31883 31884 31885 31886 31887 31888 31889 31890 31891 31892 31893 31894 31895 31896 31897 31898 31899 31900 31901 31902 31903 31904 31905 31906 31907 31908 31909 31910 31911 31912 31913 31914 31915 31916 31917 31918 31919 31920 31921 31922 31923 31924 31925 31926 31927 31928 31929 31930 31931 31932 31933 31934 31935 31936 31937 31938 31939 31940 31941 31942 31943 31944 31945 31946 31947 31948 31949 31950 31951 31952 31953 31954 31955 31956 31957 31958 31959 31960 31961 31962 31963 31964 31965 31966 31967 31968 31969 31970 31971 31972 31973 31974 31975 31976 31977 31978 31979 31980 31981 31982 31983 31984 31985 31986 31987 31988 31989 31990 31991 31992 31993 31994 31995 31996 31997 31998 31999 32000 32001 32002 32003 32004 32005 32006 32007 32008 32009 32010 32011 32012 32013 32014 32015 32016 32017 32018 32019 32020 32021 32022 32023 32024 32025 32026 32027 32028 32029 32030 32031 32032 32033 32034 32035 32036 32037 32038 32039 32040 32041 32042 32043 32044 32045 32046 32047 32048 32049 32050 32051 32052 32053 32054 32055 32056 32057 32058 32059 32060 32061 32062 32063 32064 32065 32066 32067 32068 32069 32070 32071 32072 32073 32074 32075 32076 32077 32078 32079 32080 32081 32082 32083 32084 32085 32086 32087 32088 32089 32090 32091 32092 32093 32094 32095 32096 32097 32098 32099 32100 32101 32102 32103 32104 32105 32106 32107 32108 32109 32110 32111 32112 32113 32114 32115 32116 32117 32118 32119 32120 32121 32122 32123 32124 32125 32126 32127 32128 32129 32130 32131 32132 32133 32134 32135 32136 32137 32138 32139 32140 32141 32142 32143 32144 32145 32146 32147 32148 32149 32150 32151 32152 32153 32154 32155 32156 32157 32158 32159 32160 32161 32162 32163 32164 32165 32166 32167 32168 32169 32170 32171 32172 32173 32174 32175 32176 32177 32178 32179 32180 32181 32182 32183 32184 32185 32186 32187 32188 32189 32190 32191 32192 32193 32194 32195 32196 32197 32198 32199 32200 32201 32202 32203 32204 32205 32206 32207 32208 32209 32210 32211 32212 32213 32214 32215 32216 32217 32218 32219 32220 32221 32222 32223 32224 32225 32226 32227 32228 32229 32230 32231 32232 32233 32234 32235 32236 32237 32238 32239 32240 32241 32242 32243 32244 32245 32246 32247 32248 32249 32250 32251 32252 32253 32254 32255 32256 32257 32258 32259 32260 32261 32262 32263 32264 32265 32266 32267 32268 32269 32270 32271 32272 32273 32274 32275 32276 32277 32278 32279 32280 32281 32282 32283 32284 32285 32286 32287 32288 32289 32290 32291 32292 32293 32294 32295 32296 32297 32298 32299 32300 32301 32302 32303 32304 32305 32306 32307 32308 32309 32310 32311 32312 32313 32314 32315 32316 32317 32318 32319 32320 32321 32322 32323 32324 32325 32326 32327 32328 32329 32330 32331 32332 32333 32334 32335 32336 32337 32338 32339 32340 32341 32342 32343 32344 32345 32346 32347 32348 32349 32350 32351 32352 32353 32354 32355 32356 32357 32358 32359 32360 32361 32362 32363 32364 32365 32366 32367 32368 32369 32370 32371 32372 32373 32374 32375 32376 32377 32378 32379 32380 32381 32382 32383 32384 32385 32386 32387 32388 32389 32390 32391 32392 32393 32394 32395 32396 32397 32398 32399 32400 32401 32402 32403 32404 32405 32406 32407 32408 32409 32410 32411 32412 32413 32414 32415 32416 32417 32418 32419 32420 32421 32422 32423 32424 32425 32426 32427 32428 32429 32430 32431 32432 32433 32434 32435 32436 32437 32438 32439 32440 32441 32442 32443 32444 32445 32446 32447 32448 32449 32450 32451 32452 32453 32454 32455 32456 32457 32458 32459 32460 32461 32462 32463 32464 32465 32466 32467 32468 32469 32470 32471 32472 32473 32474 32475 32476 32477 32478 32479 32480 32481 32482 32483 32484 32485 32486 32487 32488 32489 32490 32491 †BlBA`BAXB`A®B€B¤B€?€?€?žB˜B¨ABšB†B†B†B†B†B†B†B†B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?†B†B†B†B†B†B†B†B†B†B†B†B†B¸B¸B¸B’B’B’B’B’B’B’BŒBŒBPAŒBPAŒBPAŒBPAŒBPA®BPA¬BPA¬BPA¬BPA¬B¬BPA®BPA®BPA®BPA®BPA®BPA®BPA®BPAŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBžBžB€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?´B´B´BžBžBžBžBžB†B†B†B†B†B†B†B†B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?†B†B†B†B†B†B†B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?†B†B†B†B†B†B†B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?†B†B†B†B†B†B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?†B†B†B†B†B†B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?†B†B†B†B†B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?†B†B†B†B†B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?†B†B†B†B†B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?†B†B†B†B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?†B†B†B†B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?†B†B†B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?†B†B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?ºBºBºB€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?ºBºB€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?¸BºBºB€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?¸B¸B¸B¸BºB€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?¸B¸B¸B¸B¸B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?’B¸B¸B¸B¸BºB€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?’B’B¸B¸B¸B¸B¸B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?’B’B’B’B¸B¸B¸B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?’B’B’B’B’B¸B¸B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?’B’B’B’B’B’B¸B¸B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?’B’B’B’B’B’B’B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?’B’B’B’B’B’B’B’B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?ŒBŒBŒB’B’B’B’B’B´B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?ŒBŒBŒBŒB’B’B´B´B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?ŒBŒBŒBŒBŒBŒB´B´B´B´B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?ŒBŒBŒBŒBŒB´B´B´B´B°B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?PAŒBPAŒBŒBŒBŒBŒB´B´B´B´B´B°B°B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?PAŒBPAŒBŒBŒBŒBŒB´B´B´B´B´B´B´B°B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?PAŒBPAŒBPAŒBŒBŒBŒB´B´B´B´B´B´B°B°B°B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?PAŒBPAŒBPAŒBŒBŒBŒB´B´B´B´B´B°B´B°B°B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?PA¬BPA®BPAŒBŒBŒB´B´B´B´B´B´B°B°B°B°B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?PA¬BPA®BPA®BPA®BŒB´B´B´B´B´B´B´B´B°B°B°B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?PA¬BPA®BPA®BPA®BPAŒB´BŒB´B´B´B´B´B´B°B°B°B°B€?€?€?€?€?€?€?€?€?PA®BPA®BPA®BPA®BPAŒBŒBŒB´BŒB´B´B´B°B°B°B°B°B€?€?€?PA®BPA®BPA®BPAŒBPAŒBŒBŒBŒBŒB´B´B´B°B°BPA®BPA®BPAŒBPAŒBPAŒBŒB°B°B°B´B°B°BPA®BPA®BPAŒBPAŒBŒBŒB°B°B°B°B°B°B°BPA®BPA®BŒBŒBŒBŒB°B°B°B°B°B°B°B°BPA®BPAŒBŒBŒBŒB°B°B°B°B°B°B°B°BPAŒBŒBŒBŒBŒB°B°B°B°B°B°B°BŒBŒBŒBŒB°B°B°B°B°B°B°BŒBŒBŒBŒB°B°B°B°B°B°B°BŒBŒBŒB°B°B´B°B°B°B°BŒBŒB´B´B´B´B´B°B°BŒBŒB´B´B´B´B´B´BŒB´B´B´B´B´B´BŒB´B´B´B´B´BŒB´B´B´B´B´B´BžBžBžBžBžBžBžBžB†B†B†B†B†B†B†B†B†B†B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B\B\B\B\B\B\B\B\B\B\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BAXBAXBAXBAXBAXBAXBAXBXBXBXBXBXBXBXBXBXBXBXBXBXBXB B B B B B B B B B B B B B B B¢B¢B¢B¢B¢B¢B¢B¢B¢B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?†B†B†B†B†B†B†B†B†B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B\B\B\B\B\B\B\B\B\B\BA\BA\BA\BA\BA\BA\BA\BA\BA\BAXBA\BAXBAXBAXBAXBAXBAXBAXB†B†B†B†B†B†B†B†B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B\B\B\B\B\B\B\B\B\B\B\B\BA\BA\BA\BA\BA\BA\BAXBAXBAXBAXBAXBAXBAXBAXBAXBAXB†B†B†B†B†B†B†B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B\B\B\B\B\B\B\B\B\B\B\BA\BA\BAXBAXBAXBAXBAXBAXBAXBAXBAXBAXBXBXB†B†B†B†B†B†B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B\B\B\B\B\B\B\B\B\BXBXBAXBAXBXBAXBAXBAXBAXBXBXBXBXBXB†B†B†B†B†B†B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B\B\B\B\B\B\B\BXBXBXBXBXBXBXBXBXBXBXBXBXBXB†B†B†B†B†B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B B B BXB BXBXBXBXBXBXBXBXBXBXBXBXBXB†B†B†B†B†B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B B B B B B B BXBXBXBXBXBXBXBXBXBXBXBXB†B†B†B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B B B B B B B B B BXBXBXBXBXBXBXBXBXBXB†B†B†B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B B B B B B B B BXBXBXBXBXBXBXBXBXB€?€?€?€?€?€?¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B B B B B B B B BXBXBXBXBXBXBXBXB€?€?€?€?€?€?€?€?€?¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B B B B B B B B B BXBXBXBXBXBXB€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B B B B B B B B B B BXBXBXBXBXB€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B B B B B B B B BXB BXBXBXB€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B B B B B B B B B B BXBXB€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B B B B B B B B B B BXB€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B B B B B B B B B B B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B B B B B B B B B B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B B B B B B B B B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B B B B B B B B B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B B B B B B B B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B B B B B B B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B B B B B B B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B B B B B B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B B B B B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B B B B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B¢B B B B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?¢B¼B¢B¢B¢B¢B¢B¢B¢B¢B B B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?¼B¼B¢B¢B¢B¢B¢B¢B¢B¢B B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?¼B¼B¢B¢B¢B¢B¢B¢B¢B B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?¼B¼B¢B¢B¢B¢B¢B¢B¢B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?¼B¼B¢B¢B¢B¢B¢B¢B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?¼B¢B¢B¢B¢B¢B¢B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?¼B¢B¢B¢B¢B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?¼B¼B¢B¢B¢B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?¢B¢B¢B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?¼B¢B¢B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?¼B¢B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?¢B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?†B†B†B†B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|BpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBxBxBxBxBxBxBxBxBlBlBlBlBlBlBlBlB€@hB€@hB€@hB€@hB€@hBÀ@`BÀ@`BÀ@`BÀ@`B @`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BAXB†B†B†B†B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|BpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBxBxBxBxBxBxBxBxBxBxB†B†B†B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|BpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBxBxBxBxBxBxBxBxBxBxBlBlB†B†B†B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|BpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBxBxBxBxBxBxBxBxBxBxBlBlBlB†B†B†B†B|B|B|B|B|B|B|B|B|B|B|B|B|B|BpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBxBpBxBxBxBxBxBxBxBxBxBlBlBlBlBlBlB†B†B†B†B|B|B|B|B|B|B|B|B|B|B|B|B|BpBpBpBpBpBpBpBpBpBpBpBpBpBpBpBxBpBxBxBxBxBxBxBxBxBlBlBlBlBlBlBlBlBlB†B†B†B†B†B|B|B|B|B|B|B|B|B|B|B|B|BpBpBpBpBpBpBpBpBpBpBpBpBxBxBxBxBxBxBxBxBlBlBlBlBlBlBlBlBlBlBlBlBlB†B†B†B†B|B|B|B|B|B|B|B|B|B|B|B|B|BpBpBpBpBpBpBpBpBpBpBxBxBxBxBlBxBlBlBlBlBlBlBlBlBlBlBlBlBlBlBlBlB†B†B†B|B|B|B|B|B|B|B|B|B|B|B|B|BpBpBpBpBpBpBpBpBpBpBxBxBxBlBhBlBhBlBlBlBlBlBlBlBlBlBlBlBlBlB†B†B†B|B|B|B|B|B|B|B|B|B|B|B|B|B|BpBpBpBpBpBpBpBpBpB`B`B`B`B`B`B`BhB`BhBhBhBhBlBlBhBlBlBhBhBhB|B†B|B|B|B|B|B|B|B|B|B|B|B|B|BpBpB`BpB`B`B`B`B`B`B`B`B`B`B`B`B`BhBhBhBhBhBhBhBhBhBhB€@hB|B†B|B|B|B|B|B|B|B|B|B|B|B|B|B|BpB`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`BhBhBhBhBhBhBhBhBhB€@hB|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`BhBhBhBhBhB€@hB|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`BhBÀ@hBÀ@hBhB|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`BÀ@`BÀ@`BÀ@`B|B|B|B|B|B|B|B|B|B|B|B|B|B|B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`BÀ@`BÀ@`BÀ@`B¢B|B|B|B|B|B|B|B|B|B|B|B|B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`B`BÀ@`BÀ@`B¢B¢B|B|B|B|B|B|B|B|B|B`B`B`B`B`B`B`B`B`B`B`B`B`Bà@`Bà@`B`Bà@`B`B`B`B`B`B`B`B`B`B`B¢B¢B¢B¢B|B|B|B|B|B|B\B`B`B`B`B`B`B`B`B`B`B`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`B`B`B¢B¢B¢B¢B¢B¢B|B|B\B\B`B`B`B`B`B`B`B`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`B¢B¢B¢B¢B¢B¢B¢B\B\B\B\B`B`B`B`B`B`B`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`B¢B¢B¢B¢B¢B¢B¢B\B\B\B\B\B`B`B`B`B`B`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`B¢B¢B¢B¢B¢B\B\B\B\B\B\B`B`B`B`B`B`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`B¢B¢B¢B¢B\B\B\B\B\B\B\B`B`B`B`B`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`B¢B¢B¢B\B\B\B\B\B\B\B`B`B`B`B`B`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`B¢B\B\B\B\B\B\B\B\B\B\B\B`B`B`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`B\B\B\B\B\B\B\B\B\B\B\B`B`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`B\B\B\B\B\B\B\B\B\B\B\B\Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`B\B\B\B\B\B\B\B\B\B\BA\B\B`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`B\B\B\B\B\B\B\B\BA\BA\BA\BA\BA\BA`BA`BA`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`B\B\B\B\B\B\B\B\BA\BA\BA\BA\BA\BA`BA`BA`BA`BA`BA`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`BA`B\B\B\B\B\B\BA\BA\BA\BA\BA\BA\BA\BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`B\B\B\B\B\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA`BA`BA`BA`BA`BA`BA`BA`BA`B\B\B\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA`BA`BA`BA`BA`BA`BA`BA`BA`B\B\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA`BA`BA`BA`BA`BA`B\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA`BA\BA`BA`BA`BA`BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA`BA`BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA`BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BAXBA\BAXBlBlBlBlBlB@@lB@@lB@@lB@@lB@@lB€@hB€@hB€@hB€@hB€@hB€@hB€@hB€@hB€@hB€@hB€@hB€@hBÀ@hBÀ@hBÀ@`BÀ@`BÀ@`BÀ@`BÀ@`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`BA`BA`BA`BA`BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\B\B\B\B\B\B\B\B\B\B\B\B\B\B\B\B\B\B\B\B\B\B\B\B\B\B\B\B\B\B\BXBXB\BXBXBXBXBXBXBAXBlBlBlBlB@@lB@@lB@@lB@@lB€@lB€@hB€@hB€@hB€@hB€@hB€@hB€@hB€@hB€@hB€@hB€@hBÀ@`BÀ@`BÀ@`BÀ@`BÀ@`BÀ@`BÀ@`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`BA`BA`BA`BA`BlBlBlB@@lB@@lB@@lBlB€@lB€@hB€@hB€@hB€@hB€@hB€@hB€@hB€@hB€@hBÀ@hBÀ@hBÀ@`BÀ@`BÀ@`BÀ@`BÀ@`BÀ@`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`BA`BA`BA`BA`BA`BlBlBlB@@lBlB€@lB€@hB€@hB€@hB€@hB€@hB€@hB€@hB€@hB€@hBÀ@hBÀ@hBÀ@hBÀ@`BÀ@`BÀ@`BÀ@`BÀ@`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`BA`BA`BA`BA\BA\BlBlBlBlB€@lB€@lB€@hB€@hB€@hB€@hB€@hB€@hB€@hB€@hBÀ@hBÀ@`BÀ@`BÀ@`BÀ@`BÀ@`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`BA`BA`BA`Bà@`Bà@`Bà@`BA`BA`BA`BA`BA`BA\BA\BA\BlBlBlB€@lB€@lB€@hB€@hB€@hB€@hB€@hB€@hB€@hBÀ@hBÀ@hBÀ@hBÀ@`BÀ@`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`Bà@`Bà@`Bà@`Bà@`Bà@`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA\BA\BA\BlBlB€@hB€@hB€@hB€@hB€@hB€@hB€@hB€@hBÀ@hBÀ@hBÀ@hBÀ@hBÀ@`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`Bà@`Bà@`Bà@`Bà@`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA\BA\BA\BA\BA\BlB€@hB€@lB€@hB€@hB€@hB€@hB€@hB€@hBÀ@hBÀ@`BÀ@`BÀ@`BÀ@`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`Bà@`Bà@`Bà@`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA\BA\BA\BA\B€@hB€@hB€@hB€@hB€@hB€@hB€@hBÀ@hBÀ@hBÀ@hBÀ@`BÀ@`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`Bà@`Bà@`Bà@`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA\BA\BA\BA\BA\B€@hB€@hB€@hB€@hB€@hBÀ@hBÀ@`BÀ@`BÀ@`BÀ@`BÀ@`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`Bà@`Bà@`Bà@`Bà@`Bà@`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA\BA\BA\BA\BA\B€@hB€@hB€@hB€@hBÀ@hBÀ@`BÀ@`BÀ@`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA\BA\BA\BA\BA\B€@hB€@hBÀ@hBÀ@`BÀ@`BÀ@`BÀ@`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA\BA\BA\BA\BA\B€@hBÀ@hBÀ@`BÀ@`BÀ@`B @`B @`B @`B @`B @`B @`B @`B @`B @`B @`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA\BA\BA\BA\BA\BA\BÀ@hBÀ@`BÀ@`BÀ@`B @`B @`B @`B @`B @`B @`B @`B @`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`B`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA\BA\BA\BA\BA\BA\BÀ@`BÀ@`BÀ@`B @`B @`B @`B @`B @`B @`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA\BA\BA\BA\BA\BA\BÀ@`BÀ@`B @`B @`B @`B @`B @`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA\BA\BA\BA\BA\BA\BÀ@`B @`B @`B @`B @`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA\BA\BA\BA\BA\BA\BA\BA\B @`B @`B @`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA\BA\BA\BA\BA\BA\BA\BA\Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\B\Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\B\Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\B\Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\B\Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\B\B\Bà@`Bà@`Bà@`Bà@`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\B\B\Bà@`Bà@`Bà@`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\B\B\Bà@`Bà@`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\B\B\Bà@`Bà@`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\B\B\Bà@`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\B\B\B\BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\B\B\B\BA`BA`BA`BA`BA`BA`BA`BA`BA`BA`BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\B\B\B\BA`BA`BA`BA`BA`BA`BA`BA`BA`BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\B\B\B\B\BA`BA`BA`BA`BA`BA`BA`BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\B\B\B\B\BA`BA`BA`BA`BA`BA`BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\B\B\B\B\BA`BA`BA`BA`BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\B\B\B\B\BA`BA`BA`BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\B\B\B\B\BA`BA`BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\B\B\B\B\BA`BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\B\B\B\B\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\B\B\B\B\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\B\B\B\B\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\B\B\B\B\B\BA\BA\BA\BA\BA\BA\BA\BA\BA\BA\B\B\B\B\B\BA\BA\BA\BA\BA\BA\BA\BA\BA\B\B\B\B\B\BA\BA\BA\BA\BA\BA\BA\BA\B\B\B\B\B\BA\BA\BA\BA\BA\BA\BA\B\B\B\B\B\BA\BA\BA\BA\BA\B\B\B\B\B\B\BA\BA\BA\BA\B\B\B\B\B\B\BA\BA\BA\BA\B\B\B\B\B\BA\BA\BA\B\B\B\B\B\BA\BA\BA\B\B\B\B\BA\BA\BA\B\B\B\BA\BA\B\B\BXBA\BA\B\B\BA\BA\B\BA\BXBAXBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBA`BA`Bà@`Bà@`Bà@`B @`B @`B @`B @`BÀ@`BÀ@hBÀ@hBÀ@hBÀ@hB€@hB€@hB€@hB€@lB€@lB€@lB@@lB@@lB@@lB@@lB@@lB@xB@xB@xB@xB@xB@xB@xB@xB@xBxBxBxBxBxBxBxBxBtBtBtBtBtBtBtBtBtBtBtBtBtB€BlBlBlBxBlBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBlBlBlBlBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBlBlBlBlBlBlBlBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBlBlBlBlB@lB@lB@lBlBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBlBlBlB@lB@lB@lB@lB@xB@xB@xB@xB@xBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBtBtBtBtBtBtBtBtBtBtBtBtBtBlBlB@lB@lB@lB@lB@lB@lB@lB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBtBtBtBtBtBtBtBtBtBtBtBtB@lB@lB@lB@lB@lB@lB@lB@lB@lB@lB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBtBtBtBtBtBtBtBtBtBtB@lB@lB@lB@lB@lB@lB@lB@lB@lB@lB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBtBtBtBtBtBtBtBtB@@lB@lB@lB@lB@lB@lB@lB@lB@lB@lB@lB@lB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBtBtBtBtBtBtB@@lB@@lB@@lB@lB@lB@lB@lB@lB@lB@lB@lB@lB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBtBtBtBtBtB@@hB@@lB@@lB@@lB@@lB@@lB@lB@lB@lB@lB@lB@lB@lB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBtBtBtBtB@@hB@@lB@@lB@@lB@@lB@@lB@lB@lB@lB@lB@lB@lB@lB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xBxBxBxBxBxBxBxBxBxBxBxBxBxBxBtBtBtB€@hB€@hB@@lB@@lB@@lB@@lB@@lB@lB@lB@lB@lB@lB@lB@lB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xBxBxBxBxBxBxBxBxBxBxBxBxBxBxBtB€@hB€@hB€@hB€@hBlB@@lB@@lB@@lB@lB@lB@lB@lB@lB@lB@lB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xBxBxBxBxBxBxBxBxBxBxBxBxBtB€@hB€@hB€@hB€@hB€@lB€@lB@@lB@@lB@@lB@lB@lB@lB@lB@lB@lB@lB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xBxBxBxBxBxBxBxBxBxBxBxBxB€@hB€@hB€@hB€@hB€@hB€@lB@@lB@@lB@@lB@lB@lB@lB@lB@lB@lB@lB@lB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xBxBxBxBxBxBxBxBxBxBxB€@hB€@hB€@hB€@hB€@hB€@hB€@lB@@lB@@lB@@lB@lB@lB@lB@lB@lB@lB@lB@lB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xBxBxBxBxBxBxBxB€@hB€@hB€@hB€@hB€@hB€@hB€@hB@@lB@@lB@@lB@@lB@lB@lB@lB@lB@lB@lB@lB@lB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xBxBxBxBxBxBxB€@hB€@hB€@hB€@hB€@hB€@hB€@lB€@lB@@lB@@lB@@lB@@lB@lB@lB@lB@lB@lB@lB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xBxBxBxBxB€@hB€@hB€@hB€@hB€@hB€@hB€@hB€@hB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@lB@lB@lB@lB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xBxBxBxB€@hB€@hB€@hB€@hB€@hB€@hB€@hB€@hB€@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@lB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xBxBxB€@hB€@hB€@hB€@hB€@hB€@hB€@hB€@hB€@hB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@lB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xBxB€@hB€@hB€@hB€@hB€@hB€@hB€@hB€@hB€@lB€@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xBÀ@hB€@hB€@hB€@hB€@hB€@hB€@hB€@hB€@hB€@lB€@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xBÀ@hBÀ@hB€@hB€@hB€@hB€@hB€@hB€@hB€@lB€@lB€@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@lB@xB@xB@xB@xB@xB@xB@xB@xB@xBÀ@hBÀ@hBÀ@hB€@hB€@hB€@hB€@hB€@hB€@hB€@lB€@lB€@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@@xB@xB@xB@xB@xB@xB@xB@xB@xBÀ@hBÀ@hBÀ@hBÀ@hB€@hB€@hB€@hB€@hB€@hB€@lB€@lB€@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@@xB@xB@xB@xB@xB@xB@xBÀ@`BÀ@`BÀ@hBÀ@hBÀ@hB€@hB€@hB€@hB€@hB€@hB€@lB€@lB€@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@xB@xB@xB@xB@xBÀ@`BÀ@hBÀ@hBÀ@hBÀ@hBÀ@hB€@hB€@hB€@hB€@hB€@lB€@lB€@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@@xB@xB@xB@xB @`BÀ@`BÀ@hBÀ@hBÀ@hBÀ@hBÀ@hB€@hB€@hB€@hB€@hB€@lB€@lB€@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@@xB@@xB@xB @`B @`BÀ@hBÀ@hBÀ@hBÀ@hBÀ@hBÀ@hB€@hB€@hB€@hB€@lB€@lB€@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB @`B @`BÀ@`BÀ@hBÀ@hBÀ@hBÀ@hBÀ@hB€@hB€@hB€@hB€@lB€@lB€@lB€@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB @`B @`B @`BÀ@hBÀ@hBÀ@hBÀ@hBÀ@hBÀ@hB€@hB€@hB€@hB€@lB€@lB€@lB€@lB@@lB@@lB@@lB@@lB@@lB@@lB@@lB @`B @`B @`BÀ@`BÀ@hBÀ@hBÀ@hBÀ@hBÀ@hBÀ@hB€@hB€@hB€@hB€@lB€@lB€@lB€@lB€@lB€@lB@@lB@@lB@@lB @`B @`B @`BÀ@`BÀ@hBÀ@hBÀ@hBÀ@hBÀ@hBÀ@hB€@hB€@hB€@hB€@lB€@lB€@lB€@lB€@lB€@lB@@lB@@lB @`B @`B @`B @`BÀ@hBÀ@hBÀ@hBÀ@hBÀ@hBÀ@hB€@hB€@hB€@hB€@hB€@hB€@lB€@lB€@lB€@lB€@lB @`B @`B @`B @`BÀ@`BÀ@hBÀ@hBÀ@hBÀ@hBÀ@hB€@hB€@hB€@hB€@hB€@hB€@lB€@lB€@lB€@lB @`B @`B @`B @`BÀ@`BÀ@hBÀ@hBÀ@hBÀ@hBÀ@hBÀ@hB€@hB€@hB€@hB€@hB€@hB€@lB€@lB @`B @`B @`B @`BÀ@`BÀ@`BÀ@hBÀ@hBÀ@hBÀ@hBÀ@hB€@hB€@hB€@hB€@hB€@hB€@lB @`B @`B @`B @`B @`BÀ@hBÀ@hBÀ@hBÀ@hBÀ@hBÀ@hBÀ@hB€@hB€@hB€@hB€@hB @`B @`B @`B @`B @`BÀ@`BÀ@`BÀ@hBÀ@hBÀ@hBÀ@hBÀ@hBÀ@hB€@hB€@hB @`B @`B @`B @`B @`B @`BÀ@`BÀ@`BÀ@hBÀ@hBÀ@hBÀ@hBÀ@hB€@hB @`B @`B @`B @`B @`B @`B @`BÀ@`BÀ@hBÀ@hBÀ@hBÀ@hBÀ@hB @`B @`B @`B @`B @`B @`B @`BÀ@`BÀ@`BÀ@`BÀ@hBÀ@hB @`B @`B @`B @`B @`B @`B @`B @`BÀ@`BÀ@`BÀ@hBà@`B @`B @`B @`B @`B @`B @`B @`B @`BÀ@`Bà@`B @`B @`B @`B @`B @`B @`B @`B @`Bà@`B @`B @`B @`B @`B @`B @`B @`Bà@`Bà@`B @`B @`B @`B @`B @`Bà@`Bà@`B @`B @`B @`B @`Bà@`Bà@`Bà@`B @`B @`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`BA`Bà@`BA`B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€BˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆB”B”B”B”B”B”B”B”B”B”B”B”BœB”BœBœBœBœBœBœB€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€BBBBBBB AB AB AB AB AB AB AB AB AB AB ABB¨AB¨AB¨AB¨AB¨AB¨AB¨AB˜B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B–B–B–B–B–B–B–B–B–B–B–B–B–B–B¨AB¨AB¨AB€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€BˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆB”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”BœB˜B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€BˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆB”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€BˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆB”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€BˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆB”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€BˆBˆBˆBˆBˆBˆBˆBˆBˆB”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€BˆBˆBˆBˆBˆBˆBˆB”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€BˆBˆB”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B€B€B€B€B€B€B€B€B€B€B€B€B€B€B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B€B€B€B€B€B€B€B€B€B€B€B€B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B€B€B€B€B€B€B€B€B€B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B€B€B€B€B€B€B€B€B–B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B€B€B€B€B€B€B€B–B–B–B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B€B€B€B€B€B€B–B–B–B–B–B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B€B€B€B€B€B€B–B–B–B–B–B–B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B€B€B€B€B€B–B–B–B–B–B–B–B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B€B€B€B€B€B–B–B–B–B–B–B–B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B€B€B€B€B–B–B–B–B–B–B–B–B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B€B€B€B€B–B–B–B–B–B–B–B–B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B€B€B€B–B–B–B–B–B–B–B–B–B–B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B€B€B€B–B–B–B–B–B–B–B–B–B–B–B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B€B€B€B–B–B–B–B–B–B–B–B–B–B–B”B”B”B”B”B”B”B”B”B”B”B”B”B”B”B€B€B€B–B–B–B–B–B–B–B–B–B–B–B–B”B”B”B”B”B”B”B”B”B”B”B”B”B€B€B–B–B–B–B–B–B–B–B–B–B–B–B–B”B”B”B”B”B”B”B”B”B”B”B”B–B–B–B–B–B–B–B–B–B–B–B–B–B–B”B”B”B”B”B”B”B”B”B”B”B–B–B–B–B–B–B–B–B–B–B–B–B–B–B”B”B”B”B”B”B”B”B”B”B–B–B–B–B–B–B–B–B–B–B–B–B–B–B–B”B”B”B”B”B”B”B”BB–B–B–B–B–B–B–B–B–B–B–B–B–B–B”B”B”B”B”B”B”B”B–B–B–B–B–B–B–B–B–B–B–B–B–B–B–B–B–B”B”B”B”B”BB–B–B–B–B–B–B–B–B–B–B–B–B–B–B–B–B”B”B”B”BB–B–B–B–B–B–B–B–B–B–B–B–B–B–B–B–B”B”B”B–B–B–B–B–B–B–B–B–B–B–B–B–B–B–B–B”B”B AB–B–B–B–B–B–B–B–B–B–B–B–B–B–B–B–B”B A–B A–B–B–B–B–B–B–B–B–B–B–B–B–B–B–B–B AB–B–B–B–B–B–B–B–B–B–B–B–B–B–B–B A–B–B–B–B–B–B–B–B–B–B–B–B–B–B–B AB–B–B–B–B–B–B–B–B–B–B–B–B–B AB–B–B–B–B–B–B–B–B–B–B–B–B AB–B–B–B–B–B–B–B–B–B–B–B ABB–B–B–B–B–B–B–B–B–BBB–B–B–B–B–B–B–B–BB–B–B–B–B–B–B–B–BBB–B–B–B–B–B–BB–B–B–B–B–B–BBB–B–B–B–BBB–B–B–B¨AB¨ABB¨AB¨AB¨AB¨AB¨AB¨AB¨AB¨AB¨A¨AšBšBšBšBšBšBšBšBšBšBšBšBšBšBšBšBšB¤BªB4BªB4BªBªBªBªBªB AªB AªB AªB A„B A„B A„B A„B A„B A„B A„B A„B A„B A„B A„B A„B A„B A„B A„B0A„B0A‚B0A‚B0A‚B°A°A°A°A°A°A°A°A°A¨A¨AB¤B¤B¤B4B¤B4B¤B4BªB4BªB4BŽB4BŽB4BŽB4BŽB4BŽB4BŽB4BŽB4B¨B4B¨B B¨B B¨B B¨B B¨B B¨B B¨B B¨B B¨B B¨B B¨BB¨BB¨BB¨BB¨BBBBBBBBBBB$B$B$B$B$B$B@BšBšBšBšB¨A¨A¨A¨AšBšBšBšBšBšBšBšBšBšBšBšBšBšB¨A¨A°AšBšBšBšBšBšBšBšBšBšBšBšBšB°A°A°A°AšBšBšBšBšBšBšBšBšB°A°A°A°A°AšBšBšBšBšB°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A°A@B@B@B@B@B@B@B@B°A@B@B@B@B@B@B@B@B@B@B$B@B@B@B@B@B@B@B$B$B$B$B$B$B@B@B@B@B@B@B@B$B$B$B$B$B$B$B$B@B@B@B@B@B@B@B@B$B$B$B$B$B$B$B$B$B@B@B@B@B@B@B@B@B@B$B$B$B$B$B$B$B$B$B$B@B@B@B@B@B@B@B@B@B$B$B$B$B$B$B$B$B$B$B$B$BB@B@B@B@B@B@B@B@B@B@B$B$B$B$B$B$B$B$B$B$B$B$BBB@B@B@B@B@B@B@B$B$B$B$B$B$B$B$B$B$B$B$B$BBBBB@B@B@B@B@B@B@B$B$B$B$B$B$B$B$B$B$B$B$BBBBB@B@B@B@B$B$B$B$B$B$B$B$B$B$B$B$B$BBBBBBBB@B@B$B$B$B$B$B$B$B$B$B$B$B$B$BBBBBBBB$B$B$B$B$BB$BB$BBBBBBBBBBBB$B$B$BBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBB0ABBBBBBBBBBBBBBBBB0A‚BBBBBBBBBBBB BB B BB¨B„B„B„BBBBBBBBBB B B B¨B B¨BB¨B„B A„B A„B A„B A„B ABBBBBBBB B B B B B¨B B¨B B¨B A„B A„B A„B A„B A„B ABBBBŽBBŽBBŽBB B B B B¨B B¨B B¨B B¨B A„B A„B A„B A„B A„B A„BBBBBŽB BŽBŽBBŽB BŽB BŽB B B¨B B¨B B¨B B¨B A„B A„B A„B A„B A„B A„B„BŽB BŽB BŽB BŽB BŽB BŽB BŽB BŽB B¨B B¨B B¨B B¨B B¨B A„B A„B A„B A„B A„B A„B„B„B BŽB BŽB BŽB BŽB BŽB BŽB BŽB BŽB BŽB BŽB B¨B B¨B B¨B B¨B A„B A„B A„B A„B A„B A„B BŽB BŽB BŽB BŽB BŽB BŽB BŽB BŽB BŽB BŽB BŽB B¨B B¨B B¨B B¨B A„B A„B A„B A„B A„B AŽB AŽB BŽB BŽB BŽB BŽB BŽB BŽB BŽB BŽB BŽB BŽB BŽB B¨B B¨B A„B A„B A„B A„B AŽB AŽB AŽB AŽB BŽB BŽB BŽB BŽB BŽB BŽB BŽB BŽB BŽB B¨B B¨B A„B A„B A„B AŽB AŽB AŽB AŽB AŽB BŽB BŽB BŽB BŽB BŽB BŽB BŽB BŽB B¨B B¨B A„B A„B A„B AŽB AŽB AŽB AŽB AŽB BŽB BŽB BŽB BŽB BŽB BŽB BŽB BŽB B¨B A„B A„B A„B AŽB AŽB AŽB AŽB AŽB BŽB BŽB BŽB BŽB BŽB BŽB4BŽB4B¨B A„B A„B A„B AŽB AŽB AŽB AŽB AŽB BŽB BŽB BŽB BŽB4BŽB4BŽB4BŽB A„B A„B A„B AŽB AŽB AŽB AŽB BŽB BŽB BŽB4BŽB4BŽB4BŽB4BŽB A„B A„B AŽB AŽB AŽB AŽB AŽB4BŽBŽB4BŽB4BŽB4BŽB4BŽB A„B AŽB AªB AŽB AŽB AŽB4BŽB4BŽB4BŽB4BŽB4BŽB4BŽB AªB AªB AªB AªB AªB4BŽB4BŽB4BŽB4BŽB4BŽB4BŽB AªB AªB AªB AªB4BªB4BªB4BŽB4BŽB4BŽB4BŽB AªB AªB AªBªB4BªB4BªB4BŽB4BŽB4BŽB AªB AªB4BªB4BªB4BªB4BªB4BŽB4BŽBªBªB4BªB4BªB4BªB4BªB4BªBªB4BªB4BªB4BªB4BªB4BªB4BªB4BªB4BªB4BªB4BªB4BªB4BªB4BªB4BªB4BªB4B¤B4B¤B4BªB4B¤B¤BxBxBxBxBxBxBxBpBpBpBpBpBpBpBtBtBtBtBtBtBÐAtBÐAtBÐAtBÐAtBÐAtBÐAtBtBÈAtBÈAtBÈAtBÈAtBÀAtBÀAtBÀAtBtBàAtBàAtBàAŒBàAŒBŒBŒBàAŒBàAŒBàAŒBàAŒBàAŒBàAŒBàAŒBàAŒBàAŒB`AŒB`A®B`A®B`A®B`A®B`A®B†B†B†B†B†B†B†B†B†B†B|B†B|B|B|B|B|B|B|B|B|B|B|B|B|BŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒB®B®B®B®B®B®B®B®B®B®B®B®B®B®B`A®B`A®B`A®B`A®B`A®B`A®B`A®B`A®B`A®B`A®B`A®BŒBàAŒBàAŒBàAŒBàAŒBàAŒBàAŒBàAŒBàAŒBàAŒBàAŒBàAŒBàAŒBàAtBàAtBàAtBÀAtBÀAtBÀAtBÀAtBÈAtBÈAtBÈAtBÐAtBÐAtBÐAtBÐAtBÐAtBÐAtBÐAtBØAtBtBtBtBtBtBpBpBpBpBpBpBpBpBxBxBxBxBxBxB`A®B`A®B`A®B`A®B`A®B`A®BàA®BàAŒBàAŒBàAŒBàAŒBàAŒBàAŒBàAŒBàAŒBàAŒBàAŒBàAtBàAtBàAtBÀAtBÀAtBÀAtBÀAtBtBÈAtBÈAtBÈAtBÐAtBÐAtBÐAtBÐAtBÐAtBÐAtBÐAtBØAtBØAtBtBtBtBtBpBpBpBpBpBpBpBxBxBxBxBxBxB`A®B`A®B`A®B`A®B`A®BàA®BàA®BàAŒBàAŒBàAŒBàAŒBàAŒBàAŒBàAŒBàAŒBàAŒBàAŒBàAtBàAtBàAtBàAtBÀAtBÀAtBtBÈAtBÈAtBÈAtBÈAtBÐAtBÐAtBÐAtBÐAtBÐAtBtBØAtBØAtBtBtBtBtBpBpBpBpBpBpBpBpBpBxBxBxBxB`A®B`A®B`A®B`A®B`A®B`A®BàA®BàAŒBàAŒBàAŒBàAŒBàAŒBàAŒBàAŒBàAŒBàAŒBàAtBàAtBàAtBàAtBÀAtBÀAtBÀAtBÈAtBÈAtBÈAtBÈAtBÐAtBÐAtBÐAtBÐAtBÐAtBÐAtBØAtBØAtBØAtBØAtBtBtBpBpBpBpBpBpBpBpBpBxBxBxBxB`A®B`A®B`A®B`A®B`A®B`A®BàA®BàAŒBàAŒBàAŒBàAŒBàAŒBàAŒBàAŒBàAŒBàAtBàAtBàAtBàAtBÀAtBÀAtBÀAtBÈAtBÈAtBÈAtBÈAtBtBÐAtBÐAtBÐAtBÐAtBÐAtBØAtBØAtBØAtBØAtBØAtBtBpBpBpBpBpBpBpBpBpBxBxBxBxB`A®B`A®B`A®B`A®B`A®B`A®B®BàAŒBàAŒBàAŒBàAŒBàAŒBàAŒBàAŒBàAŒBàAtBàAtBàAtBàAtBÀAtBÀAtBÀAtBÈAtBÈAtBÈAtBÈAtBÐAtBÐAtBÐAtBÐAtBÐAtBÐAtBØAtBØAtBØAtBØAtBØAtBtBpBpBpBpBpBpBpBpBpBpBpBxB`A®B`A®B`A®B`A®B`A®B`A®BŒBàAŒBàAŒBàAŒBàAŒBàAŒBàAŒBàAŒBàAŒBàAtBàAtBàAtBàAtBÀAtBÀAtBÈAtBÈAtBÈAtBÈAtBÈAtBÐAtBÐAtBÐAtBÐAtBÐAtBØAtBØAtBØAtBØAtBØAtBØAtBpBpBpBpBpBpBpBpBpBpBpBxB®B®B®B®B`A®B`A®BŒBŒBàAŒBàAŒBàAŒBàAŒBàAŒBPBŒBàAtBàAtBàAtBÀAtBÀAtBÀAtBÀAtBÈAtBÈAtBÈAtBÈAtBÐAtBÐAtBÐAtBÐAtBtBØAtBØAtBØAtBØAtBØAtBØAtBØAtBpBpBpBpBpBpBpBpBpBpBpB®B®B®B®B®BŒBŒBŒBŒBŒBPBŒBPBŒBPBŒBPBŒBàAtBàAtBtBÀAtBÀAtBtBtBÈAtBÈAtBÈAtBÐAtBÐAtBÐAtBÐAtBÐAtBØAtBØAtBØAtBØAtBØAtBØAtBØAtBØApBpBpBpBpBpBpBpBpBpBpB®B®B®B®B®BŒBŒBŒBŒBŒBPBŒBPBŒBPBtBPBtBàAtBàAtBÀAtBÀAtBtBtBtBÈAtBÈAtBÈAtBÐAtBÐAtBÐAtBtBtBØAtBØAtBØAtBØAtBØAtBØAtBØAtBØApBØApBpBpBpBpBpBpBpBpB®B®B®B®B®BŒBŒBŒBŒBPBŒBPBŒBPBŒBPBtBàAtBtBÀAtBÀAtBtBtBtBtBÈAtBÈAtBÐAtBÐAtBÐAtBtBtBtBtBØAtBØAtBØAtBØAtBØAtBØApBØApBØApBØApBØApBpBpBpBpBpB®B®B®B®B®BŒBŒBŒBPBŒBPBŒBPBŒBPBŒBPBtBàAtBÀAtBÀAtBtBtBtBtBÈAtBÈAtBÐAtBÐAtBtBtBtBtBtBtBØAtBØAtBØAtBØAtBØAtBØApBØApBØApBØApBØApBØApBpBpBpB®B®B®B®B®BŒBŒBŒBPBŒBPBŒBPBŒBPBtBàAtBtBtBtBtBtBtBÈAtBÈAtBÐAtBtBtBtBtBtBtBtBtBØAtBØAtBØAtBØAtBØAtBØApBØApBØApBØApBØApBØApBpBpB®B®B®B®BŒBŒBPBŒBPBŒBPBŒBPBŒBPBtBàAtBtBtBtBtBtBtBtBtBÈAtBtBtBtBtBtBtBtBtBtBtBtBØAtBØAtBØApBØApBØApBØApBØApBØApBpBpB®B®B®B®BŒBPBŒBPBŒBPBŒBPBŒBPBŒBPBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBØApBØApBØApBØApBØApBØApBpB®B®B®BŒBPBŒBPBŒBPBŒBPBŒBPBŒBPBtBtBtBtBtBtBtBtBtBtBÈAtBtBtBtBtBtBtBtBtBtBtBtBtBtBpBØApBØApBØApBØApBØApBpB®B®BŒBŒBPBŒBPBŒBPBŒBPBŒBPBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBpBpBpBpBØApBpB®BŒBŒBPBŒBPBŒBPBŒBPBŒBPBŒBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBpBpBpBpBpBpBŒBŒBŒBPBŒBPBŒBPBŒBPBŒBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBpBpBpBpBpBŒBŒBPBŒBPBŒBPBŒBPBŒBPBŒBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBpBpBpBpBpBŒBPBŒBPBŒBPBŒBPBŒBPBŒBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBpBpBpBpBpBPBŒBPBŒBPBŒBPBŒBŒBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBpBpBpBpBPBŒBPBŒBPBŒBŒBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBpBpBpBpBPBŒBPBŒBŒBŒBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBpBpBpBpBŒBŒBŒBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBpBpBpBpBŒBŒBtBtBtBtBtB|B|BtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBpBpBpBpBŒBŒB|BtB|B|B|B|B|B|B|BtB|BtBtBtBtBtBtBtBtBtBtBtBtBpBpBpBpBŒB|B|B|B|B|B|B|B|B|B|B|B|B|B|BtB|BtBtBtBtBtBtBtBpBpBpBpBŒB|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|BtBtBtBtBtBtBpBpBpBŒB|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|BtB|BtBtBtBpBpBpB|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|BpBpBpB|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|BpBpBpB|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|BpBpB|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|BpBpB|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|BpB|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B|B†B†B|B†B|B|B|B|B|B†B†B†B|B|B|B|B|B†B†B†B|B|B|B|B†B†B†B|B|B|B†B†B†B†B|B†B†B†B†B†B†B†B†B†B†B`A®B®BpAŒBpAŒBpAŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆB€BtBtB€BtB€B€B€B€B`A®B`AŒBŒBpAŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBˆBˆBˆBˆBˆBˆBˆBˆBtBˆBˆBˆBˆBˆBˆBtBˆBˆBtBtBtBtBtBtBtBtBtB€B`A®B`A®B`AŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBˆBˆBˆBtBˆBtBtBtBtBtBˆBtBˆBtBtBtBtBtBtBtBtBtBtBtBtBtBtB`A®B`AŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBˆBˆBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtB`AŒB`AŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBtBˆBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtB`AŒBàAŒBàAŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBàAŒBàAŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBàAŒBàAŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBàAŒBàAŒBàAŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBàAŒBàAŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBàAŒBàAŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBàAŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBàAŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBŒBŒBŒBŒBŒBŒBŒBŒBŒBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBŒBŒBŒBŒBŒBŒBŒBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBŒBŒBŒBŒBŒBŒBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBŒBŒBŒBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBŒBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBÀAtBÀAtBtBtBÀAtBtBtBÈAtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBÀAtBÀAtBÀAtBÀAtBÀAtBÀAtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBÀAtBÀAtBÀAtBÀAtBÀAtBtBÈAtBÈAtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBÀAtBÀAtBÀAtBÈAtBÈAtBÈAtBÈAtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBÀAtBtBÈAtBÈAtBÈAtBÈAtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBÈAtBÈAtBÈAtBÈAtBÈAtBÐAtBÐAtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBÈAtBÈAtBÈAtBÈAtBÐAtBÐAtBÐAtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBÈAtBÈAtBÐAtBÐAtBÐAtBÐAtBÐAtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBÐAtBÐAtBÐAtBÐAtBÐAtBÐAtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBÐAtBÐAtBÐAtBÐAtBÐAtBÐAtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBxBÐAtBÐAtBÐAtBÐAtBÐAtBÐAtBÐAtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBxBÐAtBÐAtBÐAtBÐAtBÐAtBÐAtBtBtBtBtBtBtBtBtBtBtBtBtBtBtBpBpBtBxBÐAtBÐAtBÐAtBÐAtBÐAtBtBtBtBtBtBtBtBtBtBtBtBtBtBpBpBpBtBxBÐAtBÐAtBÐAtBÐAtBtBtBtBtBtBtBtBtBtBtBtBpBpBpBpBpBtBxBÐAtBÐAtBÐAtBtBtBtBtBtBtBtBtBtBtBtBpBpBpBpBpBxBxBÐAtBÐAtBtBtBtBtBtBtBtBtBtBtBpBpBpBpBpBxBxBxBtBtBtBtBtBtBtBtBpBpBpBpBpBpBpBpBxBxBxBtBtBtBtBtBtBtBpBpBpBpBpBpBpBxBxBxBxBtBtBtBtBtBpBpBpBpBpBpBpBpBxBxBxBxBtBtBtBpBpBpBpBpBpBpBpBxBxBxBxBxBtBpBpBpBpBpBpBpBpBpBxBxBxBxBxBpBpBpBpBpBpBpBpBxBxBxBxBxBxBpBpBpBpBpBpBpBpBxBxBxBxBxBpBpBpBpBpBpBxBxBxBxBxBxBpBpBpBpBpBpBxBxBxBxBxBpBpBpBxBxBxBxBxBxBxBpBpBxBxBxBxBxBxBxBpBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxB`A®BpA®BpA®BpA®BpA®BpA®BpA®BpA®BpAŒBŒBŒBŒBŒBŒBŒB€AŒB€AŒB€AŒB€AŒB€AŒB€AŒBˆAŒBˆAŒBˆAŒBˆAŒBŒBAŒB@AŒB@AŒB@AŒB@AŒB@AŒB@AŒB@AŒB@AŒBŒBœBœBœBœBœBœBœBœBœBœBœBœBœBœBœBœBœBœBœB®BpA®BpA®BpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBŒBŒBŒBŒB€AŒB€AŒB€AŒB€AŒB€AŒB€AŒB€AŒBˆAŒBˆAŒBˆAŒBˆAŒBAŒBAŒB@AŒB@AŒB@AŒB@AŒB@AŒB@AŒB@AŒB@AŒBŒBŒBœBœBœBœBœBœBœBœBœBœBœBœBœBœBœBœBœBœBpA®BpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBŒBŒBŒBŒB€AŒB€AŒB€AŒB€AŒB€AŒB€AŒBˆAŒBˆAŒBˆAŒBˆAŒBˆAŒBŒB@AŒB@AŒB@AŒB@AŒB@AŒB@AŒB@AŒB@AŒB@AŒBŒBŒBœBœBœBœBœBœBœBœBœBœBœBœBœBœBœBœBœBpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBŒBŒBŒBŒBŒB€AŒB€AŒB€AŒB€AŒB€AŒBˆAŒBˆAŒBˆAŒBˆAŒBˆAŒBŒB@AŒB@AŒB@AŒB@AŒB@AŒB@AŒB@AŒB@AŒB@AŒBŒBœBœBœBœBœBœBœBœBœBœBœBœBœBœBœBœBœBpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBŒBŒBŒBŒBŒB€AŒB€AŒB€AŒB€AŒB€AŒBˆAŒBˆAŒBˆAŒBˆAŒBˆAŒBŒB@AŒB@AŒB@AŒB@AŒB@AŒB@AŒB@AŒB@AŒBŒBœBœBœBœBœBœBœBœBœBœBœBœBœBœBœBœBpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBŒBŒBŒBŒBŒBŒBŒB€AŒB€AŒBˆAŒBˆAŒBˆAŒBˆAŒBˆAŒBŒB@AŒB@AŒB@AŒB@AŒB@AŒB@AŒB@AŒB@AŒB@AŒBœBœBœBœBœBœBœBœBœBœBœBœBœBœBœBœBpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBŒBŒBŒBŒBŒBŒBŒBŒBˆAŒBˆAŒBˆAŒBˆAŒBŒBŒB@AŒB@AŒB@AŒB@AŒB@AŒB@AŒB@AŒB@AŒBŒBœBœBœBœBœBœBœBœBœBœBœBœBœBœBŒBpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBŒBŒBŒBŒBŒBŒBŒBŒBˆAŒBˆAŒBˆAŒBŒBŒBŒB@AŒB@AŒB@AŒB@AŒB@AˆB@AŒB@AŒB@AˆBœBœBœBœBœBœBœBœBœBœBœBœBŒBpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBˆAŒBˆAŒBŒBŒBŒB@AŒB@AŒB@AŒB@AˆB@AˆB@AˆB@AˆBˆBˆBœBœBœBœBœBœBœBœBœBœBœBŒBŒBpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBˆB@AŒB@AˆB@AˆB@AˆB@AˆB@AˆBˆBˆBˆBˆBˆBœBœBœBœBœBœBœBœB”BŒBpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBpAŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒB@AˆB@AˆB@AˆB@AˆB@AˆB@AˆBˆBˆBˆBˆBˆBˆBˆBˆBœBœBœBœBœBœB”BŒBŒBpAŒBpAŒBpAŒBpAŒBpAŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBˆBˆB@AˆB@AˆB@AˆB@AˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBœBœBœBœB”B”BŒBŒBŒBpAŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBˆBˆBˆBˆB@AˆB@AˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆB”B”BŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆB”B”B”BŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆB”B”BŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆB”B”BŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆB”B”B”BŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆB”B”BŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆB”BŒBŒBŒBŒBŒBŒBŒBŒBŒBŒBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆB”BŒBŒBŒBŒBŒBŒBŒBŒBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBŒBŒBŒBŒBŒBŒBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBŒBŒBŒBŒBŒBŒBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBŒBŒBŒBŒBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBŒBŒBŒBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBŒBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆB€BˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆB€B€B€BˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆBˆB€B€B€B€BˆBˆBˆBˆBˆBˆBˆBˆBˆBˆB€B€B€B€B€BˆBˆBˆBˆBˆBˆBˆBˆBˆB€B€B€B€B€BˆBˆBˆBˆBˆBˆBˆBˆB€B€B€B€B€BˆBˆBˆBˆBˆBˆBˆB€B€B€B€B€BˆBˆBˆBˆBˆB€B€B€B€B€B€BˆBˆBˆBˆB€B€B€B€B€B€BˆBˆB€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€BA`BA`BA`BA`BA`BA`BA`Bà@`Bà@`Bà@`Bà@`Bà@`B`B`B`B`B`B`B`B`BlBlBxBŠB¸AŠB¸AŠB¸AŠB¸AŠB¸AŠB¸AŠB¸AŠB¸AŠB¸AŠB¸AŠB¸AŠB AŠB¸AŠB AŠB AŠB¸AŠB A A AB AB AB AB°AB°AB°AB°AB°AB°AB¨AB¨AB¨AB€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€BBBBB AB AB AB AB AB AB AB AB AB AB AB AB AB AB AB¨AB¨AB¨AB¨AB¨AB¨AB¨AB€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€BB AB AB AB AB AB AB AB AB AB AB AB AB AB AB AB ABB¨AB¨AB¨AB¨AB¨AB¨ABtB€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B AB AB AB AB AB AB AB AB AB AB AB AB AB AB AB AB AB AB¨AB¨AB¨AB¨AB¨ABtBtBtB€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B A€B A€B A€B AB AB AB AB AB AB AB AB AB AB AB AB AB AB AB AB AB AB¨AB¨AB¨AB¨ABtBtBtBtB€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B A€B A€B A€B A€B A€B AB AB AB AB AB AB AB AB AB AB AB AB AB AB AB AB AB AB¨AB¨AB¨ABtBtBtBtBtB€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B A€B A€B A€B A€B A€B A€B AB AB AB AB AB AB AB AB AB AB AB AB AB AB AB AB AB¨ABBtBtBtBtBtB€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B A€B A€B A€B A€B A€B A€B A€B A€B AB AB AB AB AB AB AB AB AB AB AB AB AB AB AB AB AB ABBtBtBtBtBtB€B€B€B€B€B€B€B€B€B€B€B€B€B€B A€B A€B A€B A€B A€B A€B A€B A€B A€B A€B A€B A€B AB AB AB AB AB AB AB AB AB AB AB AB AB AB AB AB ABtBtBtBtBtBtB€B€B€B€B€B€B€B€B€B€B€B€B A€B A€B A€B A€B A€B A€B A€B A€B A€B A€B A€B A€B AB AB AB AB AB AB AB AB AB AB AB AB AB AB AB AB ABtBtBtBtBtBtB€B€B€B€B€B€B€B€B€B€B€B€B A€B A€B A€B A€B A€B A€B A€B A€B A€B A€B A€B A AB AB AB AB AB AB AB AB AB AB AB AB AB AB AB ABtBtBtBtBtBtB€B€B€B€B€B€B€B€B€B€B€B€B A€B A€B A€B A€B A€B A€B A€B A€B A€B A€B A€B A€B A AB AB AB AB AB AB AB AB AB AB AB AB AB ABtBtBtBtBtBtB€B€B€B€B€B€B€B€B€B€B€B€B A€B A€B A€B A€B A€B A€B A€B A€B A€B A€B A€B A AŠB AB AB AB AB AB AB AB AB AB AB AB AB ABtBtBtBtBtBtBtB€B€B€B€B€B€B€B€B€B€B€B€B€B A€B A€B A€B A€B A€B A€B A€B A€B A€B AŠB AŠB A A A AB AB AB AB AB AB AB AB ABtBtBtBtBtBtBtB€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B A€B A€B A€B A€B A€B AŠB AŠB AŠB AŠB AŠB AŠB AB AB AB AB AB AB AB AB ABtBtBtBtBtBtB€B€B€B€B€B€B€B€B€B€B€B€B€B€B€B A€B A€B A€B A€B AŠB AŠB AŠB AŠB AŠB AŠB AŠB AB AB AB AB AB AB A AxBxBxBxBtBtBxB€B€B€B€B€B€B€B€B€B€B€B€B A€B A€B A€B A€B A€B AŠB AŠB AŠB AŠB AŠB AŠB AŠB AŠB AB AŠB AB AŠB AŠB AŠBxBxBxBxBxBxBxBxBxB€B€B€B€B€B€B€B€B€B€B€B A€B A€B A€B AŠB AŠB AŠB AŠB AŠB AŠB AŠB AŠB AŠB AŠB AŠB AŠB AŠB AŠBxBxBxBxBxBxBxBxBxBxBxBxB€BxB€B€B€B€B€B€B€B€B A€B A€B AŠB AŠB AŠB AŠB AŠB AŠB AŠB AŠB AŠB AŠB AŠB AŠB AŠB AŠBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxB€B€B€B€B€B€B A€B AŠB AŠB AŠB AŠB AŠB AŠB AŠB AŠB AŠB AŠB AŠB AŠB AŠB AŠBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxB€B€B€BŠBŠB AŠB AŠB AŠB AŠB AŠB AŠB AŠB AŠB AŠB AŠB AŠB AŠBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBŠBŠB¸AŠB¸AŠB¸AŠB AŠB AŠB AŠB AŠB AŠB AŠB AŠB AŠB AŠBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxBxB¸AŠB¸AŠB¸AŠB¸AŠB¸AŠB AŠB AŠB AŠB AŠB AŠB AŠB¸AŠB@xB@xB@xB@xB@xB@xBxBxBxBxBxBxBxBxBxBxBxBxBxBxBŠB¸AŠB¸AŠB¸AŠB¸AŠB¸AŠB¸AŠB¸AŠB AŠB AŠB AŠB¸AŠB@xB@xB@xB@xB@xB@xB@xBxBxB@xB@xB@xBxBxBxBxBxBxBxBxBxBŠBŠB¸AŠB¸AŠB¸AŠB¸AŠB¸AŠB¸AŠB¸AŠB¸AŠB¸AŠB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xBxBxBxBxBxBxBxBxBŠBŠBŠBŠB¸AŠBŠB¸AŠB¸AŠB¸AŠB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xBxBxBxBxBxBxBxBxBxBŠBŠBŠBŠBŠBŠBŠB¸AŠB¸AŠB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xBxBxBxBxBxBxBxBxBxBxBxBŠBŠBŠBŠBŠB¸AŠB¸AŠB@xB@xB@xB@xB@xB@xB@xB@xB@xB@xBxBxBxBxBxBxBxBxBxBxBxBxBŠBŠBŠB¸AŠB¸AŠB¸AŠB@xB@xB@xB@xB@xB@xB@xB@xB@xBxBlBlBlBlBxB€@lB€@xBxBxBxB€@xB€@xB€@ŠB¸AŠB¸AŠB¸AŠB¸AŠB@xB@xB@xB@xB@xB@lB@lB@lBlBlBlBlBlBlB€@lB€@lB€@xB€@xB€@xB€@xB€@xB€@xB¸AxB¸AŠB¸AŠB¸AŠB@xB@xB@lB@xB@lB@lBlBlBlBlB€@lB€@lB€@lB€@lB€@lB€@lB€@xB€@lB€@xB€@xB€@xBxB¸AxB¸AŠB¸AŠB@@lB@lB@lB@lB@lBlBlBlB€@lB€@lB€@lB€@lB€@lB€@lB€@lB€@lB€@lB€@xB€@xB€@xB€@xBxBxB¸AŠB@@lB@@lB@@lB@@lBlBlBlB€@lB€@lB€@lB€@lB€@lB€@lB€@lB€@lB€@lB€@lB€@xB€@xBxBxBxBxB@@lB@@lB@@lBlBlBlB€@lB€@lB€@lB€@lB€@lB€@lB€@lB€@lB€@lB€@lB€@lBlBxBxBxBxB@@lB@@lB@@lBlB€@lB€@lB€@lB€@lB€@lB€@lB€@lB€@lB€@lB€@lB€@lB€@lBÀ@lBlBlBlBlB@@lBlB€@lB€@lB€@lB€@lB€@lB€@lB€@lB€@lB€@lB€@lB€@lB€@lBÀ@lBÀ@lBÀ@lBlBlBlB€@lB€@lB€@lB€@lB€@hB€@lB€@lB€@lB€@lB€@hB€@lBÀ@hBÀ@hBÀ@hBÀ@hBÀ@hB @hBlBlB€@lB€@lB€@lB€@lB€@hB€@hB€@hB€@hB€@hB€@hBÀ@hBÀ@hBÀ@hBÀ@hBÀ@hB @hB @`B`B€@lB€@hB€@hB€@hB€@hB€@hB€@hB€@hBÀ@hBÀ@hBÀ@hBÀ@hBÀ@hB @`B @`B @`B`B€@hB€@hB€@hB€@hB€@hB€@hBÀ@hBÀ@hBÀ@hBÀ@hBÀ@hBÀ@hB @`B @`B`B`B€@hB€@hBÀ@hBÀ@hBÀ@hBÀ@hBÀ@hBÀ@hBÀ@hBÀ@`B @`B @`B @`B`B`BÀ@hBÀ@hBÀ@hBÀ@hBÀ@hBÀ@hBÀ@hBÀ@hBÀ@`B @`B @`B @`B`B`BÀ@hBÀ@hBÀ@hBÀ@hBÀ@hBÀ@hBÀ@hB @`B @`B @`B @`B`B`BÀ@hBÀ@hBÀ@hBÀ@hBÀ@`BÀ@`B @`B @`B @`B @`Bà@`Bà@`BÀ@hBÀ@hBÀ@hBÀ@`B @`B @`B @`B @`B @`Bà@`Bà@`BÀ@hBÀ@`BÀ@`B @`B @`B @`B @`B @`Bà@`Bà@`BÀ@`BÀ@`B @`B @`B @`B @`B @`Bà@`Bà@`B @`B @`B @`B @`B @`B @`Bà@`Bà@`B @`B @`B @`B @`B @`Bà@`Bà@`B @`B @`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`Bà@`BA`Bà@`BA`BA`BA\BA\BA\BA\B\B\B\B\B\B\B\B\B\B\B\BdB‚B‚B‚B‚B‚B‚B‚B‚B‚B‚B‚B‚B‚B‚BªBªBªBªBªBªBªBªBªBªBªBªBªBªBªBªBªBªBªBªBªBªBªB¤B¤B¤B¨AB°A°A°A°A°A°A°A°A°A0A0A‚B0A‚B0A„B0A„B A„B A„B A„B A„B A„B A„B A„B A„B A„B A„B A„B A„B A„B A„B A„B AªB AªBªBªBªBªBªBªBªB¤B¨AB°A°A°A°A°A°A°A°A°A0A‚B0A‚B0A‚B0A‚B0A‚B0A„B A„B A„B A„B A„B A„B A„B A„B A„B A„B A„B A„B A„B A„B AªB AªBªBªBªBªBªBªBªBªBªBB°A°A°A°A°A°A°A°A°A0A0A0A‚B0A‚B0A‚B0A‚B0A‚B0A„B0A„B A„B A„B A„B A„B A„B A„B A„B A„B A„B A„B A„B A„B A„B AªBªBªBªBªBªBªBªBªBªB°AB°A°A°A°A°A°A°A°A°A0A0A0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A„B0A„B A„B A„B A„B A„B A„B A„B A„B A„B A„B A„B A„B A„B AªBªBªBªBªBªBªBªBªBªB°AB°A°A°A°A°A°A°A°A°A0A0A0A0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A„B A„B A„B A„B A„B A„B A„B A„B A„B A„B A„B A„B A„BªBªBªBªBªBªBªBªBªBªB°AB°A°A°A°A°A°A°A0A0A0A0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A„B A„B A„B A„B A„B A„B A„B A„B A„B A„B A„B A„BªBªBªBªBªBªBªBªBªBªB°AB°AB¸A°A¸A¸A0A0A0A0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A„B A„B A„B A„B A„B A„B A„B A„B A„B A„B„BªBªBªBªBªBªBªBªBªBªB°AB¸A¸A¸A¸A¸A¸A¸A¸A0A0A0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A„B A„B A„B A„B A„B A„B A„B A„B A„B„B„BªBªBªBªBªBªBªBªBªB°AB¸A¸A¸A¸A¸A¸A¸A¸A0A0A0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B A‚B A„B A„B A„B A„B A„B„B„B„B„B„BªBªBªBªBªBªBªBªBB¸A¸A¸A¸A¸A¸A¸A¸A¸A0A0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B A‚B A„B A„B A„B„B„B„B„B„B„B„BªBªBªBªBªBªBªB¸A¸A¸A¸A¸A¸A¸A¸A¸A0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B A‚B A„B„B„B„B„B„B„B„B„B„BªBªBªBªBªBªB A¸A¸A¸A¸A¸A¸A¸A¸A0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B‚B„B„B„B„B„B„B„B„B„BªBªBªBªBªBªB¸A¸A¸A¸A¸A¸A¸A¸A0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B‚B‚B„B„B„B„B„B„B„BªBªBªBªBªBªB¸A¸A¸A¸A¸A¸A¸A¸A0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B‚B‚B‚B„B„B„B„B„B„BªBªBªBªBªBªB¸A¸A¸A¸A¸A¸A¸A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B‚B‚B‚B„B„B„B„BªBªBªBªBªBªBªB¸A¸A¸A¸A¸A¸A¸A‚B‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B‚B‚B‚B‚B‚B„B„BªBªBªBªBªBªBªB¸AŠB¸AŠB¸AŠB¸AŠB¸AŠB¸AŠBŠBŠBŠB\B\B‚B‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B‚B‚B‚B‚B‚B‚BªBªBªBªBªBªBªB¸AŠB¸AŠB¸AŠB¸AŠB¸AŠB¸AŠBŠBŠBŠBŠB\B\B\B\B\B‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B‚B‚B‚B‚B‚B‚BªBªBªBªBªBªBªB¸AŠB¸AŠB¸AŠB¸AŠB¸AŠB¸AŠBŠBŠBŠBŠB\B\B\B\B\B‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B‚B‚B‚B‚B‚B‚BªBªBªBªBªBªBªB¸AŠB¸AŠB¸AŠB¸AŠB¸AŠB¸AŠBŠBŠBŠB\B\B\B\B\B\B\B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B‚B‚B‚B‚B‚B‚BªBªBªBªBªBªB¸AŠB¸AŠB¸AŠB¸AŠB¸AŠBŠBŠBŠBŠB\B\B\B\B\B\B‚B‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B0A‚B‚B‚B‚B‚B‚B‚BªBªBªBªBªB¸AŠB¸AŠB¸AŠB¸AŠB¸AŠBŠBŠBŠBŠB\B\B\B\B\B\B‚B‚B‚B0A‚B0A‚B0A‚B0A‚B0A‚B‚B‚B‚B‚B‚B‚B‚BªBªBªBªB¸AŠB¸AŠB¸AŠB¸AŠB¸AŠBŠBŠBŠB\B\B\B\B\B\B\B\B‚B‚B‚B‚B0A‚B0A‚B‚B‚B‚B‚B‚B‚B‚B‚BªBªBªB¸AŠB¸AŠB¸AŠB¸AŠBŠBŠBŠBŠB\B\B\B\B\B\B\B‚B‚B‚B‚B‚B‚B‚B‚B‚B‚B‚B‚B‚B‚B‚BªBªB¸AŠB¸AŠB¸AŠBŠBŠBŠBŠB\B\B\B\B\B\B\B\B‚B‚B‚B‚B‚B‚B‚B‚B‚B‚B‚B‚B‚B‚B‚BªB¸AŠB¸AŠB¸AŠBŠBŠBŠB\B\B\B\B\B\B\B\B\B‚B‚B‚B‚B‚B‚B‚B‚B‚B‚B‚B‚B‚B‚BªB¸AŠB¸AŠBŠBŠBŠB`B\B\B\B\B\B\B\B\B\B‚B‚B‚B‚B‚B‚B‚B‚B‚B‚B‚B‚B‚B‚B¸AŠBŠBŠBŠB`B`B\B\B\B\B\B\B\B\B\B‚B‚B‚B‚B‚B‚B‚B‚B‚B‚B‚B‚B‚B¸AŠBŠBŠBŠB`B`B\B\B\B\B\B\B\B\B\B‚B‚B‚B‚B‚B‚B‚B‚B‚B‚B‚B‚B¸AŠBŠBŠB`B`B`B\B\B\B\B\B\B\B\B\B‚B‚B‚B‚B‚B‚B‚B‚B‚B‚B‚BŠBŠB`B`B`B`B\B\B\B\B\B\B\B\B‚B‚B‚B‚B‚B‚B‚B‚B‚B‚B‚BlB`B`B`B`B\B\B\B\B\B\B\B\B‚B‚B‚B‚B‚B‚B‚B‚B‚B‚BlB`BA`BA`BA`B\B\B\B\B\B\B\B\B‚B‚B‚B‚B‚B‚B‚B‚B‚BlBlBA`BA`BA`BA\B\B\B\B\B\B\B\B\B\B‚B‚B‚B‚B‚B‚B‚BlB`BA`BA`BA`BA\B\B\B\B\B\B\B\B\B‚B‚B‚B‚B‚B‚B‚B`BA`BA`BA`BA`BA\B\B\B\B\B\B\B\B\B‚B‚B‚B‚B‚B‚B`BA`BA`BA`BA`BA\B\B\B\B\B\B\B\B\B\B‚B‚B‚B‚B`BA`BA`BA`BA`B\B\B\B\B\B\B\B\B\B\B‚B‚B‚B`BA`BA`BA`BA`B\B\B\B\B\B\B\B\B\B\B‚B‚B`BA`BA`BA`BA`B\B\B\B\B\B\B\B\B\B\B\BA`BA`BA`BA`BA\B\B\B\B\B\B\B\B\B\B\BA`BA`BA`BA`BA\BA\B\B\B\B\B\B\B\B\BA`BA`BA`BA\BA\BA\B\B\B\B\B\B\B\BA`BA`BA`BA\BA\B\B\B\B\B\B\B\BA`BA`BA`BA\BA\B\B\B\B\B\B\BA`BA`BA\BA\B\B\B\B\B\B\BA`BA\BA\BA\B\B\B\B\B\BA`BA\BA\B\B\B\B\B\BA`BA\BA\B\B\B\B\BA`BA\BA\B\B\B\BA\BA\BA\B\B\BA\BA\BA\B\BA\BA\BA\BA\BA\BA\BLB¤BLB¤BLB¤BLB¤BLB¤BLB¤BLB¤BLB¤BLB¨BLB¨BLB¨BLB¨BLB¨BLB¨BLB¨BLB¨BLB¤BLB¤BLB¨BLB¨BLB¨BLB¨BLB¨BLB¨BLB¨BLB¨BLB¨BLB¨BLB¨BLB¤BLB¤B(B¤B(B¤B(B¤B(B¤B(B¤B(B¤B(B¤B(B¤B(B¤B(B B(B B(B B(B B(B¢B8B¢B8B¢B8B¢B8B¢B8B¢BDB¼BDB¼BDB€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?B€?€?B¦BB€?€?B€?€?B¦BB¦BB¦BøA¦BøA¦BøA¦BøA¦BøA¦BøA¦BøA¦BøA¦B€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?²BšBšBšBšB¤B¤B4B¤B4B¤B4B¤B4B¤B4B¤B4B¤B4BŽB4BŽB4BŽB4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B B¨B4B¨B B¨B B¨B B¨BB¨BB¨BB¨BB¨BB¨BBBBBBBBBBB$B$B$B$B$B$B$BšBšBšBšBLB¤B¤B4B¤B4B¤B4B¤B4B¤B4B¤B4B¤B4BŽB4BŽB4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B B¨B B¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BBBBBBBBBBB$B$B$B$B$B$BšBšBšBLB¤B¤B4B¤B4B¤B4B¤B4B¤B4B¤B4B¤B4B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BBBBBBBBBB$B$B$B$B$B$BšBšBLB¤B4B¤B4B¤B4B¤B4B¤B4B¤B4B¤B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BBBBBBBBBBBB$B$B$B$B$B²B²BLB¤B4B¤B4B¤B4B¤B4B¤B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BBBBBBBBBBBB$B$B$B²B²B²BLB¤B4B¤B4B¤B4B¤B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BBBBBBBBB$BHBHB²B²B€?€?€?LB¤BLB¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BBBBBBBBBBHBHB€?€?€?€?€?€?LB¨BLB¨BLB¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B0B¨B0B¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BBBBBBBBBHBHBHB€?€?€?€?€?€?LB¨BLB¨BLB¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B4B¨B0B¨B0B¨B0B¨B0B¨B0B¨B0B¨B0B¨B0B¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BB¨BBBBBBB ParentProvenance ones.dscalar.nii: c7c_dev -cifti-math 1 ones.dscalar.nii -var x template.dscalar.nii ProgramProvenance Workbench Version: Beta 0.84 Qt Compiled Version: 4.8.3 Qt Runtime Version: 4.8.3 commit: 8c4ad1f790c1b5e0e912891e37e272118613b9c6 commit date: 2014-02-28 15:32:58 -0600 Compiled Debug: YES Operating System: Linux Provenance c7c_dev -cifti-convert -version-convert ones.dscalar.nii 2 cifti-2_test_data/ones.dscalar.nii WorkingDirectory /mnt/myelin/tim/cifti2reference ones -2.0000000000 0.0000000000 0.0000000000 90.0000000000 0.0000000000 2.0000000000 0.0000000000 -126.0000000000 0.0000000000 0.0000000000 2.0000000000 -72.0000000000 0.0000000000 0.0000000000 0.0000000000 1.0000000000 0 1 2 3 4 5 6 8 9 10 11 12 13 14 15 16 17 18 19 20 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 235 236 237 238 239 240 241 289 290 291 292 293 294 295 342 343 344 345 346 347 348 394 395 396 397 398 399 445 446 447 448 449 495 496 497 498 499 544 545 546 547 548 592 593 594 595 639 640 641 642 685 686 687 688 730 731 732 733 734 774 775 776 777 817 818 819 820 859 860 861 862 863 900 901 902 903 904 940 941 942 943 944 979 980 981 982 983 1017 1018 1019 1020 1021 1022 1054 1055 1056 1057 1058 1059 1060 1090 1091 1092 1093 1094 1095 1096 1125 1126 1127 1128 1129 1130 1131 1132 1159 1160 1161 1162 1163 1164 1165 1166 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1224 1225 1226 1227 1228 1229 1230 1231 1232 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3038 3039 3040 3041 3042 3043 3044 3045 3046 3064 3065 3066 3067 3068 3069 3070 3071 3089 3090 3091 3092 3093 3094 3095 3113 3114 3115 3116 3117 3118 3136 3137 3138 3139 3140 3159 3160 3161 3179 3180 3181 3199 3200 3218 3235 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 7940 7941 7942 7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8028 8029 8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 8077 8078 8079 8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109 8110 8111 8112 8113 8114 8115 8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233 8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260 8261 8262 8263 8264 8265 8266 8267 8268 8269 8270 8271 8272 8273 8274 8275 8276 8277 8278 8279 8280 8281 8282 8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 8345 8346 8347 8348 8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 8361 8362 8363 8364 8365 8366 8367 8368 8369 8370 8371 8372 8373 8374 8375 8376 8377 8378 8379 8380 8381 8382 8383 8384 8385 8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398 8399 8400 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 8411 8412 8413 8414 8415 8416 8417 8418 8419 8420 8421 8422 8423 8424 8425 8426 8427 8428 8429 8430 8431 8432 8433 8434 8435 8436 8437 8438 8439 8440 8441 8442 8443 8444 8445 8446 8447 8448 8449 8450 8451 8452 8453 8454 8455 8456 8457 8458 8459 8460 8461 8462 8463 8464 8465 8466 8467 8468 8469 8470 8471 8472 8473 8474 8475 8476 8477 8478 8479 8480 8481 8482 8483 8484 8485 8486 8487 8488 8489 8490 8491 8492 8493 8494 8495 8496 8497 8498 8499 8500 8501 8502 8503 8504 8505 8506 8507 8508 8509 8510 8511 8512 8513 8514 8515 8516 8517 8518 8519 8520 8521 8522 8523 8524 8525 8526 8527 8528 8529 8530 8531 8532 8533 8534 8535 8536 8537 8538 8539 8540 8541 8542 8543 8544 8545 8546 8547 8548 8549 8550 8551 8552 8553 8554 8555 8556 8557 8558 8559 8560 8561 8562 8563 8564 8565 8566 8567 8568 8569 8570 8571 8572 8573 8574 8575 8576 8577 8578 8579 8580 8581 8582 8583 8584 8585 8586 8587 8588 8589 8590 8591 8592 8593 8594 8595 8596 8597 8598 8599 8600 8601 8602 8603 8604 8605 8606 8607 8608 8609 8610 8611 8612 8613 8614 8615 8616 8617 8618 8619 8620 8621 8622 8623 8624 8625 8626 8627 8628 8629 8630 8631 8632 8633 8634 8635 8636 8637 8638 8639 8640 8641 8642 8643 8644 8645 8646 8647 8648 8649 8650 8651 8652 8653 8654 8655 8656 8657 8658 8659 8660 8661 8662 8663 8664 8665 8666 8667 8668 8669 8670 8671 8672 8673 8674 8675 8676 8677 8678 8679 8680 8681 8682 8683 8684 8685 8686 8687 8688 8689 8690 8691 8692 8693 8694 8695 8696 8697 8698 8699 8700 8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 8732 8733 8734 8735 8736 8737 8738 8739 8740 8741 8742 8743 8744 8745 8746 8747 8748 8749 8750 8751 8752 8753 8754 8755 8756 8757 8758 8759 8760 8761 8762 8763 8764 8765 8766 8767 8768 8769 8770 8771 8772 8773 8774 8775 8776 8777 8778 8779 8780 8781 8782 8783 8784 8785 8786 8787 8788 8789 8790 8791 8792 8793 8794 8795 8796 8797 8798 8799 8800 8801 8802 8803 8804 8805 8806 8807 8808 8809 8810 8811 8812 8813 8814 8815 8816 8817 8818 8819 8820 8821 8822 8823 8824 8825 8826 8827 8828 8829 8830 8831 8832 8833 8834 8835 8836 8837 8838 8839 8840 8841 8842 8843 8844 8845 8846 8847 8848 8849 8850 8851 8852 8853 8854 8855 8856 8857 8858 8859 8860 8861 8862 8863 8864 8865 8866 8867 8868 8869 8870 8871 8872 8873 8874 8875 8876 8877 8878 8879 8880 8881 8882 8883 8884 8885 8886 8887 8888 8889 8890 8891 8892 8893 8894 8895 8896 8897 8898 8899 8900 8901 8902 8903 8904 8905 8906 8907 8908 8909 8910 8911 8912 8913 8914 8915 8916 8917 8918 8919 8920 8921 8922 8923 8924 8925 8926 8927 8928 8929 8930 8931 8932 8933 8934 8935 8936 8937 8938 8939 8940 8941 8942 8943 8944 8945 8946 8947 8948 8949 8950 8951 8952 8953 8954 8955 8956 8957 8958 8959 8960 8961 8962 8963 8964 8965 8966 8967 8968 8969 8970 8971 8972 8973 8974 8975 8976 8977 8978 8979 8980 8981 8982 8983 8984 8985 8986 8987 8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 9015 9016 9017 9018 9019 9020 9021 9022 9023 9024 9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 9052 9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 9100 9101 9102 9103 9104 9105 9106 9107 9108 9109 9110 9111 9112 9113 9114 9115 9116 9117 9118 9119 9120 9121 9122 9123 9124 9125 9126 9127 9128 9129 9130 9131 9132 9133 9134 9135 9136 9137 9138 9139 9140 9141 9142 9143 9144 9145 9146 9147 9148 9149 9150 9151 9152 9153 9154 9155 9156 9157 9158 9159 9160 9161 9162 9163 9164 9165 9166 9167 9168 9169 9170 9171 9172 9173 9174 9175 9176 9177 9178 9179 9180 9181 9182 9183 9184 9185 9186 9187 9188 9189 9190 9191 9192 9193 9194 9195 9196 9197 9198 9199 9200 9201 9202 9203 9204 9205 9206 9207 9208 9209 9210 9211 9212 9213 9214 9215 9216 9217 9218 9219 9220 9221 9222 9223 9224 9225 9226 9227 9228 9229 9230 9231 9232 9233 9234 9235 9236 9237 9238 9239 9240 9241 9242 9243 9244 9245 9246 9247 9248 9249 9250 9251 9252 9253 9254 9255 9256 9257 9258 9259 9260 9261 9262 9263 9264 9265 9266 9267 9268 9269 9270 9271 9272 9273 9274 9275 9276 9277 9278 9279 9280 9281 9282 9283 9284 9285 9286 9287 9288 9289 9290 9291 9292 9293 9294 9295 9296 9297 9298 9299 9300 9301 9302 9303 9304 9305 9306 9307 9308 9309 9310 9311 9312 9313 9314 9315 9316 9317 9318 9319 9320 9321 9322 9323 9324 9325 9326 9327 9328 9329 9330 9331 9332 9333 9334 9335 9336 9337 9338 9339 9340 9341 9342 9343 9344 9345 9346 9347 9348 9349 9350 9351 9352 9353 9354 9355 9356 9357 9358 9359 9360 9361 9362 9363 9364 9365 9366 9367 9368 9369 9370 9371 9372 9373 9374 9375 9376 9377 9378 9379 9380 9381 9382 9383 9384 9385 9386 9387 9388 9389 9390 9391 9392 9393 9394 9395 9396 9397 9398 9399 9400 9401 9402 9403 9404 9405 9406 9407 9408 9409 9410 9411 9412 9413 9414 9415 9416 9417 9418 9419 9420 9421 9422 9423 9424 9425 9426 9427 9428 9429 9430 9431 9432 9433 9434 9435 9436 9437 9438 9439 9440 9441 9442 9443 9444 9445 9446 9447 9448 9449 9450 9451 9452 9453 9454 9455 9456 9457 9458 9459 9460 9461 9462 9463 9464 9465 9466 9467 9468 9469 9470 9471 9472 9473 9474 9475 9476 9477 9478 9479 9480 9481 9482 9483 9484 9485 9486 9487 9488 9489 9490 9491 9492 9493 9494 9495 9496 9497 9498 9499 9500 9501 9502 9503 9504 9505 9506 9507 9508 9509 9510 9511 9512 9513 9514 9515 9516 9517 9518 9519 9520 9521 9522 9523 9524 9525 9526 9527 9528 9529 9530 9531 9532 9533 9534 9535 9536 9537 9538 9539 9540 9541 9542 9543 9544 9545 9546 9547 9548 9549 9550 9551 9552 9553 9554 9555 9556 9557 9558 9559 9560 9561 9562 9563 9564 9565 9566 9567 9568 9569 9570 9571 9572 9573 9574 9575 9576 9577 9578 9579 9580 9581 9582 9583 9584 9585 9586 9587 9588 9589 9590 9591 9592 9593 9594 9595 9596 9597 9598 9599 9600 9601 9602 9603 9604 9605 9606 9607 9608 9609 9610 9611 9612 9613 9614 9615 9616 9617 9618 9619 9620 9621 9622 9623 9624 9625 9626 9627 9628 9629 9630 9631 9632 9633 9634 9635 9636 9637 9638 9639 9640 9641 9642 9643 9644 9645 9646 9647 9648 9649 9650 9651 9652 9653 9654 9655 9656 9657 9658 9659 9660 9661 9662 9663 9664 9665 9666 9667 9668 9669 9670 9671 9672 9673 9674 9675 9676 9677 9678 9679 9680 9681 9682 9683 9684 9685 9686 9687 9688 9689 9690 9691 9692 9693 9694 9695 9696 9697 9698 9699 9700 9701 9702 9703 9704 9705 9706 9707 9708 9709 9710 9711 9712 9713 9714 9715 9716 9717 9718 9719 9720 9721 9722 9723 9724 9725 9726 9727 9728 9729 9730 9731 9732 9733 9734 9735 9736 9737 9738 9739 9740 9741 9742 9743 9744 9745 9746 9747 9748 9749 9750 9751 9752 9753 9754 9755 9756 9757 9758 9759 9760 9761 9762 9763 9764 9765 9766 9767 9768 9769 9770 9771 9772 9773 9774 9775 9776 9777 9778 9779 9780 9781 9782 9783 9784 9785 9786 9787 9788 9789 9790 9791 9792 9793 9794 9795 9796 9797 9798 9799 9800 9801 9802 9803 9804 9805 9806 9807 9808 9809 9810 9811 9812 9813 9814 9815 9816 9817 9818 9819 9820 9821 9822 9823 9824 9825 9826 9827 9828 9829 9830 9831 9832 9833 9834 9835 9836 9837 9838 9839 9840 9841 9842 9843 9844 9845 9846 9847 9848 9849 9850 9851 9852 9853 9854 9855 9856 9857 9858 9859 9860 9861 9862 9863 9864 9865 9866 9867 9868 9869 9870 9871 9872 9873 9874 9875 9876 9877 9878 9879 9880 9881 9882 9883 9884 9885 9886 9887 9888 9889 9890 9891 9892 9893 9894 9895 9896 9897 9898 9899 9900 9901 9902 9903 9904 9905 9906 9907 9908 9909 9910 9911 9912 9913 9914 9915 9916 9917 9918 9919 9920 9921 9922 9923 9924 9925 9926 9927 9928 9929 9930 9931 9932 9933 9934 9935 9936 9937 9938 9939 9940 9941 9942 9943 9944 9945 9946 9947 9948 9949 9950 9951 9952 9953 9954 9955 9956 9957 9958 9959 9960 9961 9962 9963 9964 9965 9966 9967 9968 9969 9970 9971 9972 9973 9974 9975 9976 9977 9978 9979 9980 9981 9982 9983 9984 9985 9986 9987 9988 9989 9990 9991 9992 9993 9994 9995 9996 9997 9998 9999 10000 10001 10002 10003 10004 10005 10006 10007 10008 10009 10010 10011 10012 10013 10014 10015 10016 10017 10018 10019 10020 10021 10022 10023 10024 10025 10026 10027 10028 10029 10030 10031 10032 10033 10034 10035 10036 10037 10038 10039 10040 10041 10042 10043 10044 10045 10046 10047 10048 10049 10050 10051 10052 10053 10054 10055 10056 10057 10058 10059 10060 10061 10062 10063 10064 10065 10066 10067 10068 10069 10070 10071 10072 10073 10074 10075 10076 10077 10078 10079 10080 10081 10082 10083 10084 10085 10086 10087 10088 10089 10090 10091 10092 10093 10094 10095 10096 10097 10098 10099 10100 10101 10102 10103 10104 10105 10106 10107 10108 10109 10110 10111 10112 10113 10114 10115 10116 10117 10118 10119 10120 10121 10122 10123 10124 10125 10126 10127 10128 10129 10130 10131 10132 10133 10134 10135 10136 10137 10138 10139 10140 10141 10142 10143 10144 10145 10146 10147 10148 10149 10150 10151 10152 10153 10154 10155 10156 10157 10158 10159 10160 10161 10162 10163 10164 10165 10166 10167 10168 10169 10170 10171 10172 10173 10174 10175 10176 10177 10178 10179 10180 10181 10182 10183 10184 10185 10186 10187 10188 10189 10190 10191 10192 10193 10194 10195 10196 10197 10198 10199 10200 10201 10202 10203 10204 10205 10206 10207 10208 10209 10210 10211 10212 10213 10214 10215 10216 10217 10218 10219 10220 10221 10222 10223 10224 10225 10226 10227 10228 10229 10230 10231 10232 10233 10234 10235 10236 10237 10238 10239 10240 10241 10242 10243 10244 10245 10246 10247 10248 10249 10250 10251 10252 10253 10254 10255 10256 10257 10258 10259 10260 10261 10262 10263 10264 10265 10266 10267 10268 10269 10270 10271 10272 10273 10274 10275 10276 10277 10278 10279 10280 10281 10282 10283 10284 10285 10286 10287 10288 10289 10290 10291 10292 10293 10294 10295 10296 10297 10298 10299 10300 10301 10302 10303 10304 10305 10306 10307 10308 10309 10310 10311 10312 10313 10314 10315 10316 10317 10318 10319 10320 10321 10322 10323 10324 10325 10326 10327 10328 10329 10330 10331 10332 10333 10334 10335 10336 10337 10338 10339 10340 10341 10342 10343 10344 10345 10346 10347 10348 10349 10350 10351 10352 10353 10354 10355 10356 10357 10358 10359 10360 10361 10362 10363 10364 10365 10366 10367 10368 10369 10370 10371 10372 10373 10374 10375 10376 10377 10378 10379 10380 10381 10382 10383 10384 10385 10386 10387 10388 10389 10390 10391 10392 10393 10394 10395 10396 10397 10398 10399 10400 10401 10402 10403 10404 10405 10406 10407 10408 10409 10410 10411 10412 10413 10414 10415 10416 10417 10418 10419 10420 10421 10422 10423 10424 10425 10426 10427 10428 10429 10430 10431 10432 10433 10434 10435 10436 10437 10438 10439 10440 10441 10442 10443 10444 10445 10446 10447 10448 10449 10450 10451 10452 10453 10454 10455 10456 10457 10458 10459 10460 10461 10462 10463 10464 10465 10466 10467 10468 10469 10470 10471 10472 10473 10474 10475 10476 10477 10478 10479 10480 10481 10482 10483 10484 10485 10486 10487 10488 10489 10490 10491 10492 10493 10494 10495 10496 10497 10498 10499 10500 10501 10502 10503 10504 10505 10506 10507 10508 10509 10510 10511 10512 10513 10514 10515 10516 10517 10518 10519 10520 10521 10522 10523 10524 10525 10526 10527 10528 10529 10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 10548 10549 10550 10551 10552 10553 10554 10555 10556 10557 10558 10559 10560 10561 10562 10563 10564 10565 10566 10567 10568 10569 10570 10571 10572 10573 10574 10575 10576 10577 10578 10579 10580 10581 10582 10583 10584 10585 10586 10587 10588 10589 10590 10591 10592 10593 10594 10595 10596 10597 10598 10599 10600 10601 10602 10603 10604 10605 10606 10607 10608 10609 10610 10611 10612 10613 10614 10615 10616 10617 10618 10619 10620 10621 10622 10623 10624 10625 10626 10627 10628 10629 10630 10631 10632 10633 10634 10635 10636 10637 10638 10639 10640 10641 10642 10643 10644 10645 10646 10647 10648 10649 10650 10651 10652 10653 10654 10655 10656 10657 10658 10659 10660 10661 10662 10663 10664 10665 10666 10667 10668 10669 10670 10671 10672 10673 10674 10675 10676 10677 10678 10679 10680 10681 10682 10683 10684 10685 10686 10687 10688 10689 10690 10691 10692 10693 10694 10695 10696 10697 10698 10699 10700 10701 10702 10703 10704 10705 10706 10707 10708 10709 10710 10711 10712 10713 10714 10715 10716 10717 10718 10719 10720 10721 10722 10723 10724 10725 10726 10727 10728 10729 10730 10731 10732 10733 10734 10735 10736 10737 10738 10739 10740 10741 10742 10743 10744 10745 10746 10747 10748 10749 10750 10751 10752 10753 10754 10755 10756 10757 10758 10759 10760 10761 10762 10763 10764 10765 10766 10767 10768 10769 10770 10771 10772 10773 10774 10775 10776 10777 10778 10779 10780 10781 10782 10783 10784 10785 10786 10787 10788 10789 10790 10791 10792 10793 10794 10795 10796 10797 10798 10799 10800 10801 10802 10803 10804 10805 10806 10807 10808 10809 10810 10811 10812 10813 10814 10815 10816 10817 10818 10819 10820 10821 10822 10823 10824 10825 10826 10827 10828 10829 10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 10879 10880 10881 10882 10883 10884 10885 10886 10887 10888 10889 10890 10891 10892 10893 10894 10895 10896 10897 10898 10899 10900 10901 10902 10903 10904 10905 10906 10907 10908 10909 10910 10911 10912 10913 10914 10915 10916 10917 10918 10919 10920 10921 10922 10923 10924 10925 10926 10927 10928 10929 10930 10931 10932 10933 10934 10935 10936 10937 10938 10939 10940 10941 10942 10943 10944 10945 10946 10947 10948 10949 10950 10951 10952 10953 10954 10955 10956 10957 10958 10959 10960 10961 10962 10963 10964 10965 10966 10967 10968 10969 10970 10971 10972 10973 10974 10975 10976 10977 10978 10979 10980 10981 10982 10983 10984 10985 10986 10987 10988 10989 10990 10991 10992 10993 10994 10995 10996 10997 10998 10999 11000 11001 11002 11003 11004 11005 11006 11007 11008 11009 11010 11011 11012 11013 11014 11015 11016 11017 11018 11019 11020 11021 11022 11023 11024 11025 11026 11027 11028 11029 11030 11031 11032 11033 11034 11035 11036 11037 11038 11039 11040 11041 11042 11043 11044 11045 11046 11047 11048 11049 11050 11051 11052 11053 11054 11055 11056 11057 11058 11059 11060 11061 11062 11063 11064 11065 11066 11067 11068 11069 11070 11071 11072 11073 11074 11075 11076 11077 11078 11079 11080 11081 11082 11083 11084 11085 11086 11087 11088 11089 11090 11091 11092 11093 11094 11095 11096 11097 11098 11099 11100 11101 11102 11103 11104 11105 11106 11107 11108 11109 11110 11111 11112 11113 11114 11115 11116 11117 11118 11119 11120 11121 11122 11123 11124 11125 11126 11127 11128 11129 11130 11131 11132 11133 11134 11135 11136 11137 11138 11139 11140 11141 11142 11143 11144 11145 11146 11147 11148 11149 11150 11151 11152 11153 11154 11155 11156 11157 11158 11159 11160 11161 11162 11163 11164 11165 11166 11167 11168 11169 11170 11171 11172 11173 11174 11175 11176 11177 11178 11179 11180 11181 11182 11183 11184 11185 11186 11187 11188 11189 11190 11191 11192 11193 11194 11195 11196 11197 11198 11199 11200 11201 11202 11203 11204 11205 11206 11207 11208 11209 11210 11211 11212 11213 11214 11215 11216 11217 11218 11219 11220 11221 11222 11223 11224 11225 11226 11227 11228 11229 11230 11231 11232 11233 11234 11235 11236 11237 11238 11239 11240 11241 11242 11243 11244 11245 11246 11247 11248 11249 11250 11251 11252 11253 11254 11255 11256 11257 11258 11259 11260 11261 11262 11263 11264 11265 11266 11267 11268 11269 11270 11271 11272 11273 11274 11275 11276 11277 11278 11279 11280 11281 11282 11283 11284 11285 11286 11287 11288 11289 11290 11291 11292 11293 11294 11295 11296 11297 11298 11299 11300 11301 11302 11303 11304 11305 11306 11307 11308 11309 11310 11311 11312 11313 11314 11315 11316 11317 11318 11319 11320 11321 11322 11323 11324 11325 11326 11327 11328 11329 11330 11331 11332 11333 11334 11335 11336 11337 11338 11339 11340 11341 11342 11343 11344 11345 11346 11347 11348 11349 11350 11351 11352 11353 11354 11355 11356 11357 11358 11359 11360 11361 11362 11363 11364 11365 11366 11367 11368 11369 11370 11371 11372 11373 11374 11375 11376 11377 11378 11379 11380 11381 11382 11383 11384 11385 11386 11387 11388 11389 11390 11391 11392 11393 11394 11395 11396 11397 11398 11399 11400 11401 11402 11403 11404 11405 11406 11407 11408 11409 11410 11411 11412 11413 11414 11415 11416 11417 11418 11419 11420 11421 11422 11423 11424 11425 11426 11427 11428 11429 11430 11431 11432 11433 11434 11435 11436 11437 11438 11439 11440 11441 11442 11443 11444 11445 11446 11447 11448 11449 11450 11451 11452 11453 11454 11455 11456 11457 11458 11459 11460 11461 11462 11463 11464 11465 11466 11467 11468 11469 11470 11471 11472 11473 11474 11475 11476 11477 11478 11479 11480 11481 11482 11483 11484 11485 11486 11487 11488 11489 11490 11491 11492 11493 11494 11495 11496 11497 11498 11499 11500 11501 11502 11503 11504 11505 11506 11507 11508 11509 11510 11511 11512 11513 11514 11515 11516 11517 11518 11519 11520 11521 11522 11523 11524 11525 11526 11527 11528 11529 11530 11531 11532 11533 11534 11535 11536 11537 11538 11539 11540 11541 11542 11543 11544 11545 11546 11547 11548 11549 11550 11551 11552 11553 11554 11555 11556 11557 11558 11559 11560 11561 11562 11563 11564 11565 11566 11567 11568 11569 11570 11571 11572 11573 11574 11575 11576 11577 11578 11579 11580 11581 11582 11583 11584 11585 11586 11587 11588 11589 11590 11591 11592 11593 11594 11595 11596 11597 11598 11599 11600 11601 11602 11603 11604 11605 11606 11607 11608 11609 11610 11611 11612 11613 11614 11615 11616 11617 11618 11619 11620 11621 11622 11623 11624 11625 11626 11627 11628 11629 11630 11631 11632 11633 11634 11635 11636 11637 11638 11639 11640 11641 11642 11643 11644 11645 11646 11647 11648 11649 11650 11651 11652 11653 11654 11655 11656 11657 11658 11659 11660 11661 11662 11663 11664 11665 11666 11667 11668 11669 11670 11671 11672 11673 11674 11675 11676 11677 11678 11679 11680 11681 11682 11683 11684 11685 11686 11687 11688 11689 11690 11691 11692 11693 11694 11695 11696 11697 11698 11699 11700 11701 11702 11703 11704 11705 11706 11707 11708 11709 11710 11711 11712 11713 11714 11715 11716 11717 11718 11719 11720 11721 11722 11723 11724 11725 11726 11727 11728 11729 11730 11731 11732 11733 11734 11735 11736 11737 11738 11739 11740 11741 11742 11743 11744 11745 11746 11747 11748 11749 11750 11751 11752 11753 11754 11755 11756 11757 11758 11759 11760 11761 11762 11763 11764 11765 11766 11767 11768 11769 11770 11771 11772 11773 11774 11775 11776 11777 11778 11779 11780 11781 11782 11783 11784 11785 11786 11787 11788 11789 11790 11791 11792 11793 11794 11795 11796 11797 11798 11799 11800 11801 11802 11803 11804 11805 11806 11807 11808 11809 11810 11811 11812 11813 11814 11815 11816 11817 11818 11819 11820 11821 11822 11823 11824 11825 11826 11827 11828 11829 11830 11831 11832 11833 11834 11835 11836 11837 11838 11839 11840 11841 11842 11843 11844 11845 11846 11847 11848 11849 11850 11851 11852 11853 11854 11855 11856 11857 11858 11859 11860 11861 11862 11863 11864 11865 11866 11867 11868 11869 11870 11871 11872 11873 11874 11875 11876 11877 11878 11879 11880 11881 11882 11883 11884 11885 11886 11887 11888 11889 11890 11891 11892 11893 11894 11895 11896 11897 11898 11899 11900 11901 11902 11903 11904 11905 11906 11907 11908 11909 11910 11911 11912 11913 11914 11915 11916 11917 11918 11919 11920 11921 11922 11923 11924 11925 11926 11927 11928 11929 11930 11931 11932 11933 11934 11935 11936 11937 11938 11939 11940 11941 11942 11943 11944 11945 11946 11947 11948 11949 11950 11951 11952 11953 11954 11955 11956 11957 11958 11959 11960 11961 11962 11963 11964 11965 11966 11967 11968 11969 11970 11971 11972 11973 11974 11975 11976 11977 11978 11979 11980 11981 11982 11983 11984 11985 11986 11987 11988 11989 11990 11991 11992 11993 11994 11995 11996 11997 11998 11999 12000 12001 12002 12003 12004 12005 12006 12007 12008 12009 12010 12011 12012 12013 12014 12015 12016 12017 12018 12019 12020 12021 12022 12023 12024 12025 12026 12027 12028 12029 12030 12031 12032 12033 12034 12035 12036 12037 12038 12039 12040 12041 12042 12043 12044 12045 12046 12047 12048 12049 12050 12051 12052 12053 12054 12055 12056 12057 12058 12059 12060 12061 12062 12063 12064 12065 12066 12067 12068 12069 12070 12071 12072 12073 12074 12075 12076 12077 12078 12079 12080 12081 12082 12083 12084 12085 12086 12087 12088 12089 12090 12091 12092 12093 12094 12095 12096 12097 12098 12099 12100 12101 12102 12103 12104 12105 12106 12107 12108 12109 12110 12111 12112 12113 12114 12115 12116 12117 12118 12119 12120 12121 12122 12123 12124 12125 12126 12127 12128 12129 12130 12131 12132 12133 12134 12135 12136 12137 12138 12139 12140 12141 12142 12143 12144 12145 12146 12147 12148 12149 12150 12151 12152 12153 12154 12155 12156 12157 12158 12159 12160 12161 12162 12163 12164 12165 12166 12167 12168 12169 12170 12171 12172 12173 12174 12175 12176 12177 12178 12179 12180 12181 12182 12183 12184 12185 12186 12187 12188 12189 12190 12191 12192 12193 12194 12195 12196 12197 12198 12199 12200 12201 12202 12203 12204 12205 12206 12207 12208 12209 12210 12211 12212 12213 12214 12215 12216 12217 12218 12219 12220 12221 12222 12223 12224 12225 12226 12227 12228 12229 12230 12231 12232 12233 12234 12235 12236 12237 12238 12239 12240 12241 12242 12243 12244 12245 12246 12247 12248 12249 12250 12251 12252 12253 12254 12255 12256 12257 12258 12259 12260 12261 12262 12263 12264 12265 12266 12267 12268 12269 12270 12271 12272 12273 12274 12275 12276 12277 12278 12279 12280 12281 12282 12283 12284 12285 12286 12287 12288 12289 12290 12291 12292 12293 12294 12295 12296 12297 12298 12299 12300 12301 12302 12303 12304 12305 12306 12307 12308 12309 12310 12311 12312 12313 12314 12315 12316 12317 12318 12319 12320 12321 12322 12323 12324 12325 12326 12327 12328 12329 12330 12331 12332 12333 12334 12335 12336 12337 12338 12339 12340 12341 12342 12343 12344 12345 12346 12347 12348 12349 12350 12351 12352 12353 12354 12355 12356 12357 12358 12359 12360 12361 12362 12363 12364 12365 12366 12367 12368 12369 12370 12371 12372 12373 12374 12375 12376 12377 12378 12379 12380 12381 12382 12383 12384 12385 12386 12387 12388 12389 12390 12391 12392 12393 12394 12395 12396 12397 12398 12399 12400 12401 12402 12403 12404 12405 12406 12407 12408 12409 12410 12411 12412 12413 12414 12415 12416 12417 12418 12419 12420 12421 12422 12423 12424 12425 12426 12427 12428 12429 12430 12431 12432 12433 12434 12435 12436 12437 12438 12439 12440 12441 12442 12443 12444 12445 12446 12447 12448 12449 12450 12451 12452 12453 12454 12455 12456 12457 12458 12459 12460 12461 12462 12463 12464 12465 12466 12467 12468 12469 12470 12471 12472 12473 12474 12475 12476 12477 12478 12479 12480 12481 12482 12483 12484 12485 12486 12487 12488 12489 12490 12491 12492 12493 12494 12495 12496 12497 12498 12499 12500 12501 12502 12503 12504 12505 12506 12507 12508 12509 12510 12511 12512 12513 12514 12515 12516 12517 12518 12519 12520 12521 12522 12523 12524 12525 12526 12527 12528 12529 12530 12531 12532 12533 12534 12535 12536 12537 12538 12539 12540 12541 12542 12543 12544 12545 12546 12547 12548 12549 12550 12551 12552 12553 12554 12555 12556 12557 12558 12559 12560 12561 12562 12563 12564 12565 12566 12567 12568 12569 12570 12571 12572 12573 12574 12575 12576 12577 12578 12579 12580 12581 12582 12583 12584 12585 12586 12587 12588 12589 12590 12591 12592 12593 12594 12595 12596 12597 12598 12599 12600 12601 12602 12603 12604 12605 12606 12607 12608 12609 12610 12611 12612 12613 12614 12615 12616 12617 12618 12619 12620 12621 12622 12623 12624 12625 12626 12627 12628 12629 12630 12631 12632 12633 12634 12635 12636 12637 12638 12639 12640 12641 12642 12643 12644 12645 12646 12647 12648 12649 12650 12651 12652 12653 12654 12655 12656 12657 12658 12659 12660 12661 12662 12663 12664 12665 12666 12667 12668 12669 12670 12671 12672 12673 12674 12675 12676 12677 12678 12679 12680 12681 12682 12683 12684 12685 12686 12687 12688 12689 12690 12691 12692 12693 12694 12695 12696 12697 12698 12699 12700 12701 12702 12703 12704 12705 12706 12707 12708 12709 12710 12711 12712 12713 12714 12715 12716 12717 12718 12719 12720 12721 12722 12723 12724 12725 12726 12727 12728 12729 12730 12731 12732 12733 12734 12735 12736 12737 12738 12739 12740 12741 12742 12743 12744 12745 12746 12747 12748 12749 12750 12751 12752 12753 12754 12755 12756 12757 12758 12759 12760 12761 12762 12763 12764 12765 12766 12767 12768 12769 12770 12771 12772 12773 12774 12775 12776 12777 12778 12779 12780 12781 12782 12783 12784 12785 12786 12787 12788 12789 12790 12791 12792 12793 12794 12795 12796 12797 12798 12799 12800 12801 12802 12803 12804 12805 12806 12807 12808 12809 12810 12811 12812 12813 12814 12815 12816 12817 12818 12819 12820 12821 12822 12823 12824 12825 12826 12827 12828 12829 12830 12831 12832 12833 12834 12835 12836 12837 12838 12839 12840 12841 12842 12843 12844 12845 12846 12847 12848 12849 12850 12851 12852 12853 12854 12855 12856 12857 12858 12859 12860 12861 12862 12863 12864 12865 12866 12867 12868 12869 12870 12871 12872 12873 12874 12875 12876 12877 12878 12879 12880 12881 12882 12883 12884 12885 12886 12887 12888 12889 12890 12891 12892 12893 12894 12895 12896 12897 12898 12899 12900 12901 12902 12903 12904 12905 12906 12907 12908 12909 12910 12911 12912 12913 12914 12915 12916 12917 12918 12919 12920 12921 12922 12923 12924 12925 12926 12927 12928 12929 12930 12931 12932 12933 12934 12935 12936 12937 12938 12939 12940 12941 12942 12943 12944 12945 12946 12947 12948 12949 12950 12951 12952 12953 12954 12955 12956 12957 12958 12959 12960 12961 12962 12963 12964 12965 12966 12967 12968 12969 12970 12971 12972 12973 12974 12975 12976 12977 12978 12979 12980 12981 12982 12983 12984 12985 12986 12987 12988 12989 12990 12991 12992 12993 12994 12995 12996 12997 12998 12999 13000 13001 13002 13003 13004 13005 13006 13007 13008 13009 13010 13011 13012 13013 13014 13015 13016 13017 13018 13019 13020 13021 13022 13023 13024 13025 13026 13027 13028 13029 13030 13031 13032 13033 13034 13035 13036 13037 13038 13039 13040 13041 13042 13043 13044 13045 13046 13047 13048 13049 13050 13051 13052 13053 13054 13055 13056 13057 13058 13059 13060 13061 13062 13063 13064 13065 13066 13067 13068 13069 13070 13071 13072 13073 13074 13075 13076 13077 13078 13079 13080 13081 13082 13083 13084 13085 13086 13087 13088 13089 13090 13091 13092 13093 13094 13095 13096 13097 13098 13099 13100 13101 13102 13103 13104 13105 13106 13107 13108 13109 13110 13111 13112 13113 13114 13115 13116 13117 13118 13119 13120 13121 13122 13123 13124 13125 13126 13127 13128 13129 13130 13131 13132 13133 13134 13135 13136 13137 13138 13139 13140 13141 13142 13143 13144 13145 13146 13147 13148 13149 13150 13151 13152 13153 13154 13155 13156 13157 13158 13159 13160 13161 13162 13163 13164 13165 13166 13167 13168 13169 13170 13171 13172 13173 13174 13175 13176 13177 13178 13179 13180 13181 13182 13183 13184 13185 13186 13187 13188 13189 13190 13191 13192 13193 13194 13195 13196 13197 13198 13199 13200 13201 13202 13203 13204 13205 13206 13207 13208 13209 13210 13211 13212 13213 13214 13215 13216 13217 13218 13219 13220 13221 13222 13223 13224 13225 13226 13227 13228 13229 13230 13231 13232 13233 13234 13235 13236 13237 13238 13239 13240 13241 13242 13243 13244 13245 13246 13247 13248 13249 13250 13251 13252 13253 13254 13255 13256 13257 13258 13259 13260 13261 13262 13263 13264 13265 13266 13267 13268 13269 13270 13271 13272 13273 13274 13275 13276 13277 13278 13279 13280 13281 13282 13283 13284 13285 13286 13287 13288 13289 13290 13291 13292 13293 13294 13295 13296 13297 13298 13299 13300 13301 13302 13303 13304 13305 13306 13307 13308 13309 13310 13311 13312 13313 13314 13315 13316 13317 13318 13319 13320 13321 13322 13323 13324 13325 13326 13327 13328 13329 13330 13331 13332 13333 13334 13335 13336 13337 13338 13339 13340 13341 13342 13343 13344 13345 13346 13347 13348 13349 13350 13351 13352 13353 13354 13355 13356 13357 13358 13359 13360 13361 13362 13363 13364 13365 13366 13367 13368 13369 13370 13371 13372 13373 13374 13375 13376 13377 13378 13379 13380 13381 13382 13383 13384 13385 13386 13387 13388 13389 13390 13391 13392 13393 13394 13395 13396 13397 13398 13399 13400 13401 13402 13403 13404 13405 13406 13407 13408 13409 13410 13411 13412 13413 13414 13415 13416 13417 13418 13419 13420 13421 13422 13423 13424 13425 13426 13427 13428 13429 13430 13431 13432 13433 13434 13435 13436 13437 13438 13439 13440 13441 13442 13443 13444 13445 13446 13447 13448 13449 13450 13451 13452 13453 13454 13455 13456 13457 13458 13459 13460 13461 13462 13463 13464 13465 13466 13467 13468 13469 13470 13471 13472 13473 13474 13475 13476 13477 13478 13479 13480 13481 13482 13483 13484 13485 13486 13487 13488 13489 13490 13491 13492 13493 13494 13495 13496 13497 13498 13499 13500 13501 13502 13503 13504 13505 13506 13507 13508 13509 13510 13511 13512 13513 13514 13515 13516 13517 13518 13519 13520 13521 13522 13523 13524 13525 13526 13527 13528 13529 13530 13531 13532 13533 13534 13535 13536 13537 13538 13539 13540 13541 13542 13543 13544 13545 13546 13547 13548 13549 13550 13551 13552 13553 13554 13555 13556 13557 13558 13559 13560 13561 13562 13563 13564 13565 13566 13567 13568 13569 13570 13571 13572 13573 13574 13575 13576 13577 13578 13579 13580 13581 13582 13583 13584 13585 13586 13587 13588 13589 13590 13591 13592 13593 13594 13595 13596 13597 13598 13599 13600 13601 13602 13603 13604 13605 13606 13607 13608 13609 13610 13611 13612 13613 13614 13615 13616 13617 13618 13619 13620 13621 13622 13623 13624 13625 13626 13627 13628 13629 13630 13631 13632 13633 13634 13635 13636 13637 13638 13639 13640 13641 13642 13643 13644 13645 13646 13647 13648 13649 13650 13651 13652 13653 13654 13655 13656 13657 13658 13659 13660 13661 13662 13663 13664 13665 13666 13667 13668 13669 13670 13671 13672 13673 13674 13675 13676 13677 13678 13679 13680 13681 13682 13683 13684 13685 13686 13687 13688 13689 13690 13691 13692 13693 13694 13695 13696 13697 13698 13699 13700 13701 13702 13703 13704 13705 13706 13707 13708 13709 13710 13711 13712 13713 13714 13715 13716 13717 13718 13719 13720 13721 13722 13723 13724 13725 13726 13727 13728 13729 13730 13731 13732 13733 13734 13735 13736 13737 13738 13739 13740 13741 13742 13743 13744 13745 13746 13747 13748 13749 13750 13751 13752 13753 13754 13755 13756 13757 13758 13759 13760 13761 13762 13763 13764 13765 13766 13767 13768 13769 13770 13771 13772 13773 13774 13775 13776 13777 13778 13779 13780 13781 13782 13783 13784 13785 13786 13787 13788 13789 13790 13791 13792 13793 13794 13795 13796 13797 13798 13799 13800 13801 13802 13803 13804 13805 13806 13807 13808 13809 13810 13811 13812 13813 13814 13815 13816 13817 13818 13819 13820 13821 13822 13823 13824 13825 13826 13827 13828 13829 13830 13831 13832 13833 13834 13835 13836 13837 13838 13839 13840 13841 13842 13843 13844 13845 13846 13847 13848 13849 13850 13851 13852 13853 13854 13855 13856 13857 13858 13859 13860 13861 13862 13863 13864 13865 13866 13867 13868 13869 13870 13871 13872 13873 13874 13875 13876 13877 13878 13879 13880 13881 13882 13883 13884 13885 13886 13887 13888 13889 13890 13891 13892 13893 13894 13895 13896 13897 13898 13899 13900 13901 13902 13903 13904 13905 13906 13907 13908 13909 13910 13911 13912 13913 13914 13915 13916 13917 13918 13919 13920 13921 13922 13923 13924 13925 13926 13927 13928 13929 13930 13931 13932 13933 13934 13935 13936 13937 13938 13939 13940 13941 13942 13943 13944 13945 13946 13947 13948 13949 13950 13951 13952 13953 13954 13955 13956 13957 13958 13959 13960 13961 13962 13963 13964 13965 13966 13967 13968 13969 13970 13971 13972 13973 13974 13975 13976 13977 13978 13979 13980 13981 13982 13983 13984 13985 13986 13987 13988 13989 13990 13991 13992 13993 13994 13995 13996 13997 13998 13999 14000 14001 14002 14003 14004 14005 14006 14007 14008 14009 14010 14011 14012 14013 14014 14015 14016 14017 14018 14019 14020 14021 14022 14023 14024 14025 14026 14027 14028 14029 14030 14031 14032 14033 14034 14035 14036 14037 14038 14039 14040 14041 14042 14043 14044 14045 14046 14047 14048 14049 14050 14051 14052 14053 14054 14055 14056 14057 14058 14059 14060 14061 14062 14063 14064 14065 14066 14067 14068 14069 14070 14071 14072 14073 14074 14075 14076 14077 14078 14079 14080 14081 14082 14083 14084 14085 14086 14087 14088 14089 14090 14091 14092 14093 14094 14095 14096 14097 14098 14099 14100 14101 14102 14103 14104 14105 14106 14107 14108 14109 14110 14111 14112 14113 14114 14115 14116 14117 14118 14119 14120 14121 14122 14123 14124 14125 14126 14127 14128 14129 14130 14131 14132 14133 14134 14135 14136 14137 14138 14139 14140 14141 14142 14143 14144 14145 14146 14147 14148 14149 14150 14151 14152 14153 14154 14155 14156 14157 14158 14159 14160 14161 14162 14163 14164 14165 14166 14167 14168 14169 14170 14171 14172 14173 14174 14175 14176 14177 14178 14179 14180 14181 14182 14183 14184 14185 14186 14187 14188 14189 14190 14191 14192 14193 14194 14195 14196 14197 14198 14199 14200 14201 14202 14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 14230 14231 14232 14233 14234 14235 14236 14237 14238 14239 14240 14241 14242 14243 14244 14245 14246 14247 14248 14249 14250 14251 14252 14253 14254 14255 14256 14257 14258 14259 14260 14261 14262 14263 14264 14265 14266 14267 14268 14269 14270 14271 14272 14273 14274 14275 14276 14277 14278 14279 14280 14281 14282 14283 14284 14285 14286 14287 14288 14289 14290 14291 14292 14293 14294 14295 14296 14297 14298 14299 14300 14301 14302 14303 14304 14305 14306 14307 14308 14309 14310 14311 14312 14313 14314 14315 14316 14317 14318 14319 14320 14321 14322 14323 14324 14325 14326 14327 14328 14329 14330 14331 14332 14333 14334 14335 14336 14337 14338 14339 14340 14341 14342 14343 14344 14345 14346 14347 14348 14349 14350 14351 14352 14353 14354 14355 14356 14357 14358 14359 14360 14361 14362 14363 14364 14365 14366 14367 14368 14369 14370 14371 14372 14373 14374 14375 14376 14377 14378 14379 14380 14381 14382 14383 14384 14385 14386 14387 14388 14389 14390 14391 14392 14393 14394 14395 14396 14397 14398 14399 14400 14401 14402 14403 14404 14405 14406 14407 14408 14409 14410 14411 14412 14413 14414 14415 14416 14417 14418 14419 14420 14421 14422 14423 14424 14425 14426 14427 14428 14429 14430 14431 14432 14433 14434 14435 14436 14437 14438 14439 14440 14441 14442 14443 14444 14445 14446 14447 14448 14449 14450 14451 14452 14453 14454 14455 14456 14457 14458 14459 14460 14461 14462 14463 14464 14465 14466 14467 14468 14469 14470 14471 14472 14473 14474 14475 14476 14477 14478 14479 14480 14481 14482 14483 14484 14485 14486 14487 14488 14489 14490 14491 14492 14493 14494 14495 14496 14497 14498 14499 14500 14501 14502 14503 14504 14505 14506 14507 14508 14509 14510 14511 14512 14513 14514 14515 14516 14517 14518 14519 14520 14521 14522 14523 14524 14525 14526 14527 14528 14529 14530 14531 14532 14533 14534 14535 14536 14537 14538 14539 14540 14541 14542 14543 14544 14545 14546 14547 14548 14549 14550 14551 14552 14553 14554 14555 14556 14557 14558 14559 14560 14561 14562 14563 14564 14565 14566 14567 14568 14569 14570 14571 14572 14573 14574 14575 14576 14577 14578 14579 14580 14581 14582 14583 14584 14585 14586 14587 14588 14589 14590 14591 14592 14593 14594 14595 14596 14597 14598 14599 14600 14601 14602 14603 14604 14605 14606 14607 14608 14609 14610 14611 14612 14613 14614 14615 14616 14617 14618 14619 14620 14621 14622 14623 14624 14625 14626 14627 14628 14629 14630 14631 14632 14633 14634 14635 14636 14637 14638 14639 14640 14641 14642 14643 14644 14645 14646 14647 14648 14649 14650 14651 14652 14653 14654 14655 14656 14657 14658 14659 14660 14661 14662 14663 14664 14665 14666 14667 14668 14669 14670 14671 14672 14673 14674 14675 14676 14677 14678 14679 14680 14681 14682 14683 14684 14685 14686 14687 14688 14689 14690 14691 14692 14693 14694 14695 14696 14697 14698 14699 14700 14701 14702 14703 14704 14705 14706 14707 14708 14709 14710 14711 14712 14713 14714 14715 14716 14717 14718 14719 14720 14721 14722 14723 14724 14725 14726 14727 14728 14729 14730 14731 14732 14733 14734 14735 14736 14737 14738 14739 14740 14741 14742 14743 14744 14745 14746 14747 14748 14749 14750 14751 14752 14753 14754 14755 14756 14757 14758 14759 14760 14761 14762 14763 14764 14765 14766 14767 14768 14769 14770 14771 14772 14773 14774 14775 14776 14777 14778 14779 14780 14781 14782 14783 14784 14785 14786 14787 14788 14789 14790 14791 14792 14793 14794 14795 14796 14797 14798 14799 14800 14801 14802 14803 14804 14805 14806 14807 14808 14809 14810 14811 14812 14813 14814 14815 14816 14817 14818 14819 14820 14821 14822 14823 14824 14825 14826 14827 14828 14829 14830 14831 14832 14833 14834 14835 14836 14837 14838 14839 14840 14841 14842 14843 14844 14845 14846 14847 14848 14849 14850 14851 14852 14853 14854 14855 14856 14857 14858 14859 14860 14861 14862 14863 14864 14865 14866 14867 14868 14869 14870 14871 14872 14873 14874 14875 14876 14877 14878 14879 14880 14881 14882 14883 14884 14885 14886 14887 14888 14889 14890 14891 14892 14893 14894 14895 14896 14897 14898 14899 14900 14901 14902 14903 14904 14905 14906 14907 14908 14909 14910 14911 14912 14913 14914 14915 14916 14917 14918 14919 14920 14921 14922 14923 14924 14925 14926 14927 14928 14929 14930 14931 14932 14933 14934 14935 14936 14937 14938 14939 14940 14941 14942 14943 14944 14945 14946 14947 14948 14949 14950 14951 14952 14953 14954 14955 14956 14957 14958 14959 14960 14961 14962 14963 14964 14965 14966 14967 14968 14969 14970 14971 14972 14973 14974 14975 14976 14977 14978 14979 14980 14981 14982 14983 14984 14985 14986 14987 14988 14989 14990 14991 14992 14993 14994 14995 14996 14997 14998 14999 15000 15001 15002 15003 15004 15005 15006 15007 15008 15009 15010 15011 15012 15013 15014 15015 15016 15017 15018 15019 15020 15021 15022 15023 15024 15025 15026 15027 15028 15029 15030 15031 15032 15033 15034 15035 15036 15037 15038 15039 15040 15041 15042 15043 15044 15045 15046 15047 15048 15049 15050 15051 15052 15053 15054 15055 15056 15057 15058 15059 15060 15061 15062 15063 15064 15065 15066 15067 15068 15069 15070 15071 15072 15073 15074 15075 15076 15077 15078 15079 15080 15081 15082 15083 15084 15085 15086 15087 15088 15089 15090 15091 15092 15093 15094 15095 15096 15097 15098 15099 15100 15101 15102 15103 15104 15105 15106 15107 15108 15109 15110 15111 15112 15113 15114 15115 15116 15117 15118 15119 15120 15121 15122 15123 15124 15125 15126 15127 15128 15129 15130 15131 15132 15133 15134 15135 15136 15137 15138 15139 15140 15141 15142 15143 15144 15145 15146 15147 15148 15149 15150 15151 15152 15153 15154 15155 15156 15157 15158 15159 15160 15161 15162 15163 15164 15165 15166 15167 15168 15169 15170 15171 15172 15173 15174 15175 15176 15177 15178 15179 15180 15181 15182 15183 15184 15185 15186 15187 15188 15189 15190 15191 15192 15193 15194 15195 15196 15197 15198 15199 15200 15201 15202 15203 15204 15205 15206 15207 15208 15209 15210 15211 15212 15213 15214 15215 15216 15217 15218 15219 15220 15221 15222 15223 15224 15225 15226 15227 15228 15229 15230 15231 15232 15233 15234 15235 15236 15237 15238 15239 15240 15241 15242 15243 15244 15245 15246 15247 15248 15249 15250 15251 15252 15253 15254 15255 15256 15257 15258 15259 15260 15261 15262 15263 15264 15265 15266 15267 15268 15269 15270 15271 15272 15273 15274 15275 15276 15277 15278 15279 15280 15281 15282 15283 15284 15285 15286 15287 15288 15289 15290 15291 15292 15293 15294 15295 15296 15297 15298 15299 15300 15301 15302 15303 15304 15305 15306 15307 15308 15309 15310 15311 15312 15313 15314 15315 15316 15317 15318 15319 15320 15321 15322 15323 15324 15325 15326 15327 15328 15329 15330 15331 15332 15333 15334 15335 15336 15337 15338 15339 15340 15341 15342 15343 15344 15345 15346 15347 15348 15349 15350 15351 15352 15353 15354 15355 15356 15357 15358 15359 15360 15361 15362 15363 15364 15365 15366 15367 15368 15369 15370 15371 15372 15373 15374 15375 15376 15377 15378 15379 15380 15381 15382 15383 15384 15385 15386 15387 15388 15389 15390 15391 15392 15393 15394 15395 15396 15397 15398 15399 15400 15401 15402 15403 15404 15405 15406 15407 15408 15409 15410 15411 15412 15413 15414 15415 15416 15417 15418 15419 15420 15421 15422 15423 15424 15425 15426 15427 15428 15429 15430 15431 15432 15433 15434 15435 15436 15437 15438 15439 15440 15441 15442 15443 15444 15445 15446 15447 15448 15449 15450 15451 15452 15453 15454 15455 15456 15457 15458 15459 15460 15461 15462 15463 15464 15465 15466 15467 15468 15469 15470 15471 15472 15473 15474 15475 15476 15477 15478 15479 15480 15481 15482 15483 15484 15485 15486 15487 15488 15489 15490 15491 15492 15493 15494 15495 15496 15497 15498 15499 15500 15501 15502 15503 15504 15505 15506 15507 15508 15509 15510 15511 15512 15513 15514 15515 15516 15517 15518 15519 15520 15521 15522 15523 15524 15525 15526 15527 15528 15529 15530 15531 15532 15533 15534 15535 15536 15537 15538 15539 15540 15541 15542 15543 15544 15545 15546 15547 15548 15549 15550 15551 15552 15553 15554 15555 15556 15557 15558 15559 15560 15561 15562 15563 15564 15565 15566 15567 15568 15569 15570 15571 15572 15573 15574 15575 15576 15577 15578 15579 15580 15581 15582 15583 15584 15585 15586 15587 15588 15589 15590 15591 15592 15593 15594 15595 15596 15597 15598 15599 15600 15601 15602 15603 15604 15605 15606 15607 15608 15609 15610 15611 15612 15613 15614 15615 15616 15617 15618 15619 15620 15621 15622 15623 15624 15625 15626 15627 15628 15629 15630 15631 15632 15633 15634 15635 15636 15637 15638 15639 15640 15641 15642 15643 15644 15645 15646 15647 15648 15649 15650 15651 15652 15653 15654 15655 15656 15657 15658 15659 15660 15661 15662 15663 15664 15665 15666 15667 15668 15669 15670 15671 15672 15673 15674 15675 15676 15677 15678 15679 15680 15681 15682 15683 15684 15685 15686 15687 15688 15689 15690 15691 15692 15693 15694 15695 15696 15697 15698 15699 15700 15701 15702 15703 15704 15705 15706 15707 15708 15709 15710 15711 15712 15713 15714 15715 15716 15717 15718 15719 15720 15721 15722 15723 15724 15725 15726 15727 15728 15729 15730 15731 15732 15733 15734 15735 15736 15737 15738 15739 15740 15741 15742 15743 15744 15745 15746 15747 15748 15749 15750 15751 15752 15753 15754 15755 15756 15757 15758 15759 15760 15761 15762 15763 15764 15765 15766 15767 15768 15769 15770 15771 15772 15773 15774 15775 15776 15777 15778 15779 15780 15781 15782 15783 15784 15785 15786 15787 15788 15789 15790 15791 15792 15793 15794 15795 15796 15797 15798 15799 15800 15801 15802 15803 15804 15805 15806 15807 15808 15809 15810 15811 15812 15813 15814 15815 15816 15817 15818 15819 15820 15821 15822 15823 15824 15825 15826 15827 15828 15829 15830 15831 15832 15833 15834 15835 15836 15837 15838 15839 15840 15841 15842 15843 15844 15845 15846 15847 15848 15849 15850 15851 15852 15853 15854 15855 15856 15857 15858 15859 15860 15861 15862 15863 15864 15865 15866 15867 15868 15869 15870 15871 15872 15873 15874 15875 15876 15877 15878 15879 15880 15881 15882 15883 15884 15885 15886 15887 15888 15889 15890 15891 15892 15893 15894 15895 15896 15897 15898 15899 15900 15901 15902 15903 15904 15905 15906 15907 15908 15909 15910 15911 15912 15913 15914 15915 15916 15917 15918 15919 15920 15921 15922 15923 15924 15925 15926 15927 15928 15929 15930 15931 15932 15933 15934 15935 15936 15937 15938 15939 15940 15941 15942 15943 15944 15945 15946 15947 15948 15949 15950 15951 15952 15953 15954 15955 15956 15957 15958 15959 15960 15961 15962 15963 15964 15965 15966 15967 15968 15969 15970 15971 15972 15973 15974 15975 15976 15977 15978 15979 15980 15981 15982 15983 15984 15985 15986 15987 15988 15989 15990 15991 15992 15993 15994 15995 15996 15997 15998 15999 16000 16001 16002 16003 16004 16005 16006 16007 16008 16009 16010 16011 16012 16013 16014 16015 16016 16017 16018 16019 16020 16021 16022 16023 16024 16025 16026 16027 16028 16029 16030 16031 16032 16033 16034 16035 16036 16037 16038 16039 16040 16041 16042 16043 16044 16045 16046 16047 16048 16049 16050 16051 16052 16053 16054 16055 16056 16057 16058 16059 16060 16061 16062 16063 16064 16065 16066 16067 16068 16069 16070 16071 16072 16073 16074 16075 16076 16077 16078 16079 16080 16081 16082 16083 16084 16085 16086 16087 16088 16089 16090 16091 16092 16093 16094 16095 16096 16097 16098 16099 16100 16101 16102 16103 16104 16105 16106 16107 16108 16109 16110 16111 16112 16113 16114 16115 16116 16117 16118 16119 16120 16121 16122 16123 16124 16125 16126 16127 16128 16129 16130 16131 16132 16133 16134 16135 16136 16137 16138 16139 16140 16141 16142 16143 16144 16145 16146 16147 16148 16149 16150 16151 16152 16153 16154 16155 16156 16157 16158 16159 16160 16161 16162 16163 16164 16165 16166 16167 16168 16169 16170 16171 16172 16173 16174 16175 16176 16177 16178 16179 16180 16181 16182 16183 16184 16185 16186 16187 16188 16189 16190 16191 16192 16193 16194 16195 16196 16197 16198 16199 16200 16201 16202 16203 16204 16205 16206 16207 16208 16209 16210 16211 16212 16213 16214 16215 16216 16217 16218 16219 16220 16221 16222 16223 16224 16225 16226 16227 16228 16229 16230 16231 16232 16233 16234 16235 16236 16237 16238 16239 16240 16241 16242 16243 16244 16245 16246 16247 16248 16249 16250 16251 16252 16253 16254 16255 16256 16257 16258 16259 16260 16261 16262 16263 16264 16265 16266 16267 16268 16269 16270 16271 16272 16273 16274 16275 16276 16277 16278 16279 16280 16281 16282 16283 16284 16285 16286 16287 16288 16289 16290 16291 16292 16293 16294 16295 16296 16297 16298 16299 16300 16301 16302 16303 16304 16305 16306 16307 16308 16309 16310 16311 16312 16313 16314 16315 16316 16317 16318 16319 16320 16321 16322 16323 16324 16325 16326 16327 16328 16329 16330 16331 16332 16333 16334 16335 16336 16337 16338 16339 16340 16341 16342 16343 16344 16345 16346 16347 16348 16349 16350 16351 16352 16353 16354 16355 16356 16357 16358 16359 16360 16361 16362 16363 16364 16365 16366 16367 16368 16369 16370 16371 16372 16373 16374 16375 16376 16377 16378 16379 16380 16381 16382 16383 16384 16385 16386 16387 16388 16389 16390 16391 16392 16393 16394 16395 16396 16397 16398 16399 16400 16401 16402 16403 16404 16405 16406 16407 16408 16409 16410 16411 16412 16413 16414 16415 16416 16417 16418 16419 16420 16421 16422 16423 16424 16425 16426 16427 16428 16429 16430 16431 16432 16433 16434 16435 16436 16437 16438 16439 16440 16441 16442 16443 16444 16445 16446 16447 16448 16449 16450 16451 16452 16453 16454 16455 16456 16457 16458 16459 16460 16461 16462 16463 16464 16465 16466 16467 16468 16469 16470 16471 16472 16473 16474 16475 16476 16477 16478 16479 16480 16481 16482 16483 16484 16485 16486 16487 16488 16489 16490 16491 16492 16493 16494 16495 16496 16497 16498 16499 16500 16501 16502 16503 16504 16505 16506 16507 16508 16509 16510 16511 16512 16513 16514 16515 16516 16517 16518 16519 16520 16521 16522 16523 16524 16525 16526 16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 16558 16559 16560 16561 16562 16563 16564 16565 16566 16567 16568 16569 16570 16571 16572 16573 16574 16575 16576 16577 16578 16579 16580 16581 16582 16583 16584 16585 16586 16587 16588 16589 16590 16591 16592 16593 16594 16595 16596 16597 16598 16599 16600 16601 16602 16603 16604 16605 16606 16607 16608 16609 16610 16611 16612 16613 16614 16615 16616 16617 16618 16619 16620 16621 16622 16623 16624 16625 16626 16627 16628 16629 16630 16631 16632 16633 16634 16635 16636 16637 16638 16639 16640 16641 16642 16643 16644 16645 16646 16647 16648 16649 16650 16651 16652 16653 16654 16655 16656 16657 16658 16659 16660 16661 16662 16663 16664 16665 16666 16667 16668 16669 16670 16671 16672 16673 16674 16675 16676 16677 16678 16679 16680 16681 16682 16683 16684 16685 16686 16687 16688 16689 16690 16691 16692 16693 16694 16695 16696 16697 16698 16699 16700 16701 16702 16703 16704 16705 16706 16707 16708 16709 16710 16711 16712 16713 16714 16715 16716 16717 16718 16719 16720 16721 16722 16723 16724 16725 16726 16727 16728 16729 16730 16731 16732 16733 16734 16735 16736 16737 16738 16739 16740 16741 16742 16743 16744 16745 16746 16747 16748 16749 16750 16751 16752 16753 16754 16755 16756 16757 16758 16759 16760 16761 16762 16763 16764 16765 16766 16767 16768 16769 16770 16771 16772 16773 16774 16775 16776 16777 16778 16779 16780 16781 16782 16783 16784 16785 16786 16787 16788 16789 16790 16791 16792 16793 16794 16795 16796 16797 16798 16799 16800 16801 16802 16803 16804 16805 16806 16807 16808 16809 16810 16811 16812 16813 16814 16815 16816 16817 16818 16819 16820 16821 16822 16823 16824 16825 16826 16827 16828 16829 16830 16831 16832 16833 16834 16835 16836 16837 16838 16839 16840 16841 16842 16843 16844 16845 16846 16847 16848 16849 16850 16851 16852 16853 16854 16855 16856 16857 16858 16859 16860 16861 16862 16863 16864 16865 16866 16867 16868 16869 16870 16871 16872 16873 16874 16875 16876 16877 16878 16879 16880 16881 16882 16883 16884 16885 16886 16887 16888 16889 16890 16891 16892 16893 16894 16895 16896 16897 16898 16899 16900 16901 16902 16903 16904 16905 16906 16907 16908 16909 16910 16911 16912 16913 16914 16915 16916 16917 16918 16919 16920 16921 16922 16923 16924 16925 16926 16927 16928 16929 16930 16931 16932 16933 16934 16935 16936 16937 16938 16939 16940 16941 16942 16943 16944 16945 16946 16947 16948 16949 16950 16951 16952 16953 16954 16955 16956 16957 16958 16959 16960 16961 16962 16963 16964 16965 16966 16967 16968 16969 16970 16971 16972 16973 16974 16975 16976 16977 16978 16979 16980 16981 16982 16983 16984 16985 16986 16987 16988 16989 16990 16991 16992 16993 16994 16995 16996 16997 16998 16999 17000 17001 17002 17003 17004 17005 17006 17007 17008 17009 17010 17011 17012 17013 17014 17015 17016 17017 17018 17019 17020 17021 17022 17023 17024 17025 17026 17027 17028 17029 17030 17031 17032 17033 17034 17035 17036 17037 17038 17039 17040 17041 17042 17043 17044 17045 17046 17047 17048 17049 17050 17051 17052 17053 17054 17055 17056 17057 17058 17059 17060 17061 17062 17063 17064 17065 17066 17067 17068 17069 17070 17071 17072 17073 17074 17075 17076 17077 17078 17079 17080 17081 17082 17083 17084 17085 17086 17087 17088 17089 17090 17091 17092 17093 17094 17095 17096 17097 17098 17099 17100 17101 17102 17103 17104 17105 17106 17107 17108 17109 17110 17111 17112 17113 17114 17115 17116 17117 17118 17119 17120 17121 17122 17123 17124 17125 17126 17127 17128 17129 17130 17131 17132 17133 17134 17135 17136 17137 17138 17139 17140 17141 17142 17143 17144 17145 17146 17147 17148 17149 17150 17151 17152 17153 17154 17155 17156 17157 17158 17159 17160 17161 17162 17163 17164 17165 17166 17167 17168 17169 17170 17171 17172 17173 17174 17175 17176 17177 17178 17179 17180 17181 17182 17183 17184 17185 17186 17187 17188 17189 17190 17191 17192 17193 17194 17195 17196 17197 17198 17199 17200 17201 17202 17203 17204 17205 17206 17207 17208 17209 17210 17211 17212 17213 17214 17215 17216 17217 17218 17219 17220 17221 17222 17223 17224 17225 17226 17227 17228 17229 17230 17231 17232 17233 17234 17235 17236 17237 17238 17239 17240 17241 17242 17243 17244 17245 17246 17247 17248 17249 17250 17251 17252 17253 17254 17255 17256 17257 17258 17259 17260 17261 17262 17263 17264 17265 17266 17267 17268 17269 17270 17271 17272 17273 17274 17275 17276 17277 17278 17279 17280 17281 17282 17283 17284 17285 17286 17287 17288 17289 17290 17291 17292 17293 17294 17295 17296 17297 17298 17299 17300 17301 17302 17303 17304 17305 17306 17307 17308 17309 17310 17311 17312 17313 17314 17315 17316 17317 17318 17319 17320 17321 17322 17323 17324 17325 17326 17327 17328 17329 17330 17331 17332 17333 17334 17335 17336 17337 17338 17339 17340 17341 17342 17343 17344 17345 17346 17347 17348 17349 17350 17351 17352 17353 17354 17355 17356 17357 17358 17359 17360 17361 17362 17363 17364 17365 17366 17367 17368 17369 17370 17371 17372 17373 17374 17375 17376 17377 17378 17379 17380 17381 17382 17383 17384 17385 17386 17387 17388 17389 17390 17391 17392 17393 17394 17395 17396 17397 17398 17399 17400 17401 17402 17403 17404 17405 17406 17407 17408 17409 17410 17411 17412 17413 17414 17415 17416 17417 17418 17419 17420 17421 17422 17423 17424 17425 17426 17427 17428 17429 17430 17431 17432 17433 17434 17435 17436 17437 17438 17439 17440 17441 17442 17443 17444 17445 17446 17447 17448 17449 17450 17451 17452 17453 17454 17455 17456 17457 17458 17459 17460 17461 17462 17463 17464 17465 17466 17467 17468 17469 17470 17471 17472 17473 17474 17475 17476 17477 17478 17479 17480 17481 17482 17483 17484 17485 17486 17487 17488 17489 17490 17491 17492 17493 17494 17495 17496 17497 17498 17499 17500 17501 17502 17503 17504 17505 17506 17507 17508 17509 17510 17511 17512 17513 17514 17515 17516 17517 17518 17519 17520 17521 17522 17523 17524 17525 17526 17527 17528 17529 17530 17531 17532 17533 17534 17535 17536 17537 17538 17539 17540 17541 17542 17543 17544 17545 17546 17547 17548 17549 17550 17551 17552 17553 17554 17555 17556 17557 17558 17559 17560 17561 17562 17563 17564 17565 17566 17567 17568 17569 17570 17571 17572 17573 17574 17575 17576 17577 17578 17579 17580 17581 17582 17583 17584 17585 17586 17587 17588 17589 17590 17591 17592 17593 17594 17595 17596 17597 17598 17599 17600 17601 17602 17603 17604 17605 17606 17607 17608 17609 17610 17611 17612 17613 17614 17615 17616 17617 17618 17619 17620 17621 17622 17623 17624 17625 17626 17627 17628 17629 17630 17631 17632 17633 17634 17635 17636 17637 17638 17639 17640 17641 17642 17643 17644 17645 17646 17647 17648 17649 17650 17651 17652 17653 17654 17655 17656 17657 17658 17659 17660 17661 17662 17663 17664 17665 17666 17667 17668 17669 17670 17671 17672 17673 17674 17675 17676 17677 17678 17679 17680 17681 17682 17683 17684 17685 17686 17687 17688 17689 17690 17691 17692 17693 17694 17695 17696 17697 17698 17699 17700 17701 17702 17703 17704 17705 17706 17707 17708 17709 17710 17711 17712 17713 17714 17715 17716 17717 17718 17719 17720 17721 17722 17723 17724 17725 17726 17727 17728 17729 17730 17731 17732 17733 17734 17735 17736 17737 17738 17739 17740 17741 17742 17743 17744 17745 17746 17747 17748 17749 17750 17751 17752 17753 17754 17755 17756 17757 17758 17759 17760 17761 17762 17763 17764 17765 17766 17767 17768 17769 17770 17771 17772 17773 17774 17775 17776 17777 17778 17779 17780 17781 17782 17783 17784 17785 17786 17787 17788 17789 17790 17791 17792 17793 17794 17795 17796 17797 17798 17799 17800 17801 17802 17803 17804 17805 17806 17807 17808 17809 17810 17811 17812 17813 17814 17815 17816 17817 17818 17819 17820 17821 17822 17823 17824 17825 17826 17827 17828 17829 17830 17831 17832 17833 17834 17835 17836 17837 17838 17839 17840 17841 17842 17843 17844 17845 17846 17847 17848 17849 17850 17851 17852 17853 17854 17855 17856 17857 17858 17859 17860 17861 17862 17863 17864 17865 17866 17867 17868 17869 17870 17871 17872 17873 17874 17875 17876 17877 17878 17879 17880 17881 17882 17883 17884 17885 17886 17887 17888 17889 17890 17891 17892 17893 17894 17895 17896 17897 17898 17899 17900 17901 17902 17903 17904 17905 17906 17907 17908 17909 17910 17911 17912 17913 17914 17915 17916 17917 17918 17919 17920 17921 17922 17923 17924 17925 17926 17927 17928 17929 17930 17931 17932 17933 17934 17935 17936 17937 17938 17939 17940 17941 17942 17943 17944 17945 17946 17947 17948 17949 17950 17951 17952 17953 17954 17955 17956 17957 17958 17959 17960 17961 17962 17963 17964 17965 17966 17967 17968 17969 17970 17971 17972 17973 17974 17975 17976 17977 17978 17979 17980 17981 17982 17983 17984 17985 17986 17987 17988 17989 17990 17991 17992 17993 17994 17995 17996 17997 17998 17999 18000 18001 18002 18003 18004 18005 18006 18007 18008 18009 18010 18011 18012 18013 18014 18015 18016 18017 18018 18019 18020 18021 18022 18023 18024 18025 18026 18027 18028 18029 18030 18031 18032 18033 18034 18035 18036 18037 18038 18039 18040 18041 18042 18043 18044 18045 18046 18047 18048 18049 18050 18051 18052 18053 18054 18055 18056 18057 18058 18059 18060 18061 18062 18063 18064 18065 18066 18067 18068 18069 18070 18071 18072 18073 18074 18075 18076 18077 18078 18079 18080 18081 18082 18083 18084 18085 18086 18087 18088 18089 18090 18091 18092 18093 18094 18095 18096 18097 18098 18099 18100 18101 18102 18103 18104 18105 18106 18107 18108 18109 18110 18111 18112 18113 18114 18115 18116 18117 18118 18119 18120 18121 18122 18123 18124 18125 18126 18127 18128 18129 18130 18131 18132 18133 18134 18135 18136 18137 18138 18139 18140 18141 18142 18143 18144 18145 18146 18147 18148 18149 18150 18151 18152 18153 18154 18155 18156 18157 18158 18159 18160 18161 18162 18163 18164 18165 18166 18167 18168 18169 18170 18171 18172 18173 18174 18175 18176 18177 18178 18179 18180 18181 18182 18183 18184 18185 18186 18187 18188 18189 18190 18191 18192 18193 18194 18195 18196 18197 18198 18199 18200 18201 18202 18203 18204 18205 18206 18207 18208 18209 18210 18211 18212 18213 18214 18215 18216 18217 18218 18219 18220 18221 18222 18223 18224 18225 18226 18227 18228 18229 18230 18231 18232 18233 18234 18235 18236 18237 18238 18239 18240 18241 18242 18243 18244 18245 18246 18247 18248 18249 18250 18251 18252 18253 18254 18255 18256 18257 18258 18259 18260 18261 18262 18263 18264 18265 18266 18267 18268 18269 18270 18271 18272 18273 18274 18275 18276 18277 18278 18279 18280 18281 18282 18283 18284 18285 18286 18287 18288 18289 18290 18291 18292 18293 18294 18295 18296 18297 18298 18299 18300 18301 18302 18303 18304 18305 18306 18307 18308 18309 18310 18311 18312 18313 18314 18315 18316 18317 18318 18319 18320 18321 18322 18323 18324 18325 18326 18327 18328 18329 18330 18331 18332 18333 18334 18335 18336 18337 18338 18339 18340 18341 18342 18343 18344 18345 18346 18347 18348 18349 18350 18351 18352 18353 18354 18355 18356 18357 18358 18359 18360 18361 18362 18363 18364 18365 18366 18367 18368 18369 18370 18371 18372 18373 18374 18375 18376 18377 18378 18379 18380 18381 18382 18383 18384 18385 18386 18387 18388 18389 18390 18391 18392 18393 18394 18395 18396 18397 18398 18399 18400 18401 18402 18403 18404 18405 18406 18407 18408 18409 18410 18411 18412 18413 18414 18415 18416 18417 18418 18419 18420 18421 18422 18423 18424 18425 18426 18427 18428 18429 18430 18431 18432 18433 18434 18435 18436 18437 18438 18439 18440 18441 18442 18443 18444 18445 18446 18447 18448 18449 18450 18451 18452 18453 18454 18455 18456 18457 18458 18459 18460 18461 18462 18463 18464 18465 18466 18467 18468 18469 18470 18471 18472 18473 18474 18475 18476 18477 18478 18479 18480 18481 18482 18483 18484 18485 18486 18487 18488 18489 18490 18491 18492 18493 18494 18495 18496 18497 18498 18499 18500 18501 18502 18503 18504 18505 18506 18507 18508 18509 18510 18511 18512 18513 18514 18515 18516 18517 18518 18519 18520 18521 18522 18523 18524 18525 18526 18527 18528 18529 18530 18531 18532 18533 18534 18535 18536 18537 18538 18539 18540 18541 18542 18543 18544 18545 18546 18547 18548 18549 18550 18551 18552 18553 18554 18555 18556 18557 18558 18559 18560 18561 18562 18563 18564 18565 18566 18567 18568 18569 18570 18571 18572 18573 18574 18575 18576 18577 18578 18579 18580 18581 18582 18583 18584 18585 18586 18587 18588 18589 18590 18591 18592 18593 18594 18595 18596 18597 18598 18599 18600 18601 18602 18603 18604 18605 18606 18607 18608 18609 18610 18611 18612 18613 18614 18615 18616 18617 18618 18619 18620 18621 18622 18623 18624 18625 18626 18627 18628 18629 18630 18631 18632 18633 18634 18635 18636 18637 18638 18639 18640 18641 18642 18643 18644 18645 18646 18647 18648 18649 18650 18651 18652 18653 18654 18655 18656 18657 18658 18659 18660 18661 18662 18663 18664 18665 18666 18667 18668 18669 18670 18671 18672 18673 18674 18675 18676 18677 18678 18679 18680 18681 18682 18683 18684 18685 18686 18687 18688 18689 18690 18691 18692 18693 18694 18695 18696 18697 18698 18699 18700 18701 18702 18703 18704 18705 18706 18707 18708 18709 18710 18711 18712 18713 18714 18715 18716 18717 18718 18719 18720 18721 18722 18723 18724 18725 18726 18727 18728 18729 18730 18731 18732 18733 18734 18735 18736 18737 18738 18739 18740 18741 18742 18743 18744 18745 18746 18747 18748 18749 18750 18751 18752 18753 18754 18755 18756 18757 18758 18759 18760 18761 18762 18763 18764 18765 18766 18767 18768 18769 18770 18771 18772 18773 18774 18775 18776 18777 18778 18779 18780 18781 18782 18783 18784 18785 18786 18787 18788 18789 18790 18791 18792 18793 18794 18795 18796 18797 18798 18799 18800 18801 18802 18803 18804 18805 18806 18807 18808 18809 18810 18811 18812 18813 18814 18815 18816 18817 18818 18819 18820 18821 18822 18823 18824 18825 18826 18827 18828 18829 18830 18831 18832 18833 18834 18835 18836 18837 18838 18839 18840 18841 18842 18843 18844 18845 18846 18847 18848 18849 18850 18851 18852 18853 18854 18855 18856 18857 18858 18859 18860 18861 18862 18863 18864 18865 18866 18867 18868 18869 18870 18871 18872 18873 18874 18875 18876 18877 18878 18879 18880 18881 18882 18883 18884 18885 18886 18887 18888 18889 18890 18891 18892 18893 18894 18895 18896 18897 18898 18899 18900 18901 18902 18903 18904 18905 18906 18907 18908 18909 18910 18911 18912 18913 18914 18915 18916 18917 18918 18919 18920 18921 18922 18923 18924 18925 18926 18927 18928 18929 18930 18931 18932 18933 18934 18935 18936 18937 18938 18939 18940 18941 18942 18943 18944 18945 18946 18947 18948 18949 18950 18951 18952 18953 18954 18955 18956 18957 18958 18959 18960 18961 18962 18963 18964 18965 18966 18967 18968 18969 18970 18971 18972 18973 18974 18975 18976 18977 18978 18979 18980 18981 18982 18983 18984 18985 18986 18987 18988 18989 18990 18991 18992 18993 18994 18995 18996 18997 18998 18999 19000 19001 19002 19003 19004 19005 19006 19007 19008 19009 19010 19011 19012 19013 19014 19015 19016 19017 19018 19019 19020 19021 19022 19023 19024 19025 19026 19027 19028 19029 19030 19031 19032 19033 19034 19035 19036 19037 19038 19039 19040 19041 19042 19043 19044 19045 19046 19047 19048 19049 19050 19051 19052 19053 19054 19055 19056 19057 19058 19059 19060 19061 19062 19063 19064 19065 19066 19067 19068 19069 19070 19071 19072 19073 19074 19075 19076 19077 19078 19079 19080 19081 19082 19083 19084 19085 19086 19087 19088 19089 19090 19091 19092 19093 19094 19095 19096 19097 19098 19099 19100 19101 19102 19103 19104 19105 19106 19107 19108 19109 19110 19111 19112 19113 19114 19115 19116 19117 19118 19119 19120 19121 19122 19123 19124 19125 19126 19127 19128 19129 19130 19131 19132 19133 19134 19135 19136 19137 19138 19139 19140 19141 19142 19143 19144 19145 19146 19147 19148 19149 19150 19151 19152 19153 19154 19155 19156 19157 19158 19159 19160 19161 19162 19163 19164 19165 19166 19167 19168 19169 19170 19171 19172 19173 19174 19175 19176 19177 19178 19179 19180 19181 19182 19183 19184 19185 19186 19187 19188 19189 19190 19191 19192 19193 19194 19195 19196 19197 19198 19199 19200 19201 19202 19203 19204 19205 19206 19207 19208 19209 19210 19211 19212 19213 19214 19215 19216 19217 19218 19219 19220 19221 19222 19223 19224 19225 19226 19227 19228 19229 19230 19231 19232 19233 19234 19235 19236 19237 19238 19239 19240 19241 19242 19243 19244 19245 19246 19247 19248 19249 19250 19251 19252 19253 19254 19255 19256 19257 19258 19259 19260 19261 19262 19263 19264 19265 19266 19267 19268 19269 19270 19271 19272 19273 19274 19275 19276 19277 19278 19279 19280 19281 19282 19283 19284 19285 19286 19287 19288 19289 19290 19291 19292 19293 19294 19295 19296 19297 19298 19299 19300 19301 19302 19303 19304 19305 19306 19307 19308 19309 19310 19311 19312 19313 19314 19315 19316 19317 19318 19319 19320 19321 19322 19323 19324 19325 19326 19327 19328 19329 19330 19331 19332 19333 19334 19335 19336 19337 19338 19339 19340 19341 19342 19343 19344 19345 19346 19347 19348 19349 19350 19351 19352 19353 19354 19355 19356 19357 19358 19359 19360 19361 19362 19363 19364 19365 19366 19367 19368 19369 19370 19371 19372 19373 19374 19375 19376 19377 19378 19379 19380 19381 19382 19383 19384 19385 19386 19387 19388 19389 19390 19391 19392 19393 19394 19395 19396 19397 19398 19399 19400 19401 19402 19403 19404 19405 19406 19407 19408 19409 19410 19411 19412 19413 19414 19415 19416 19417 19418 19419 19420 19421 19422 19423 19424 19425 19426 19427 19428 19429 19430 19431 19432 19433 19434 19435 19436 19437 19438 19439 19440 19441 19442 19443 19444 19445 19446 19447 19448 19449 19450 19451 19452 19453 19454 19455 19456 19457 19458 19459 19460 19461 19462 19463 19464 19465 19466 19467 19468 19469 19470 19471 19472 19473 19474 19475 19476 19477 19478 19479 19480 19481 19482 19483 19484 19485 19486 19487 19488 19489 19490 19491 19492 19493 19494 19495 19496 19497 19498 19499 19500 19501 19502 19503 19504 19505 19506 19507 19508 19509 19510 19511 19512 19513 19514 19515 19516 19517 19518 19519 19520 19521 19522 19523 19524 19525 19526 19527 19528 19529 19530 19531 19532 19533 19534 19535 19536 19537 19538 19539 19540 19541 19542 19543 19544 19545 19546 19547 19548 19549 19550 19551 19552 19553 19554 19555 19556 19557 19558 19559 19560 19561 19562 19563 19564 19565 19566 19567 19568 19569 19570 19571 19572 19573 19574 19575 19576 19577 19578 19579 19580 19581 19582 19583 19584 19585 19586 19587 19588 19589 19590 19591 19592 19593 19594 19595 19596 19597 19598 19599 19600 19601 19602 19603 19604 19605 19606 19607 19608 19609 19610 19611 19612 19613 19614 19615 19616 19617 19618 19619 19620 19621 19622 19623 19624 19625 19626 19627 19628 19629 19630 19631 19632 19633 19634 19635 19636 19637 19638 19639 19640 19641 19642 19643 19644 19645 19646 19647 19648 19649 19650 19651 19652 19653 19654 19655 19656 19657 19658 19659 19660 19661 19662 19663 19664 19665 19666 19667 19668 19669 19670 19671 19672 19673 19674 19675 19676 19677 19678 19679 19680 19681 19682 19683 19684 19685 19686 19687 19688 19689 19690 19691 19692 19693 19694 19695 19696 19697 19698 19699 19700 19701 19702 19703 19704 19705 19706 19707 19708 19709 19710 19711 19712 19713 19714 19715 19716 19717 19718 19719 19720 19721 19722 19723 19724 19725 19726 19727 19728 19729 19730 19731 19732 19733 19734 19735 19736 19737 19738 19739 19740 19741 19742 19743 19744 19745 19746 19747 19748 19749 19750 19751 19752 19753 19754 19755 19756 19757 19758 19759 19760 19761 19762 19763 19764 19765 19766 19767 19768 19769 19770 19771 19772 19773 19774 19775 19776 19777 19778 19779 19780 19781 19782 19783 19784 19785 19786 19787 19788 19789 19790 19791 19792 19793 19794 19795 19796 19797 19798 19799 19800 19801 19802 19803 19804 19805 19806 19807 19808 19809 19810 19811 19812 19813 19814 19815 19816 19817 19818 19819 19820 19821 19822 19823 19824 19825 19826 19827 19828 19829 19830 19831 19847 19849 19850 19851 19852 19853 19854 19855 19856 19857 19887 19888 19889 19890 19891 19892 19893 19894 19895 19896 19897 19898 19899 19900 19901 19902 19903 19904 19905 19906 19907 19908 19909 19910 19911 19912 19913 19914 19915 19916 19917 19918 19919 19920 19921 19922 19923 19924 19925 19926 19927 19928 19929 19930 19931 19932 19933 19934 19935 19936 19937 19938 19939 19940 19941 19942 19943 19944 19945 19946 19947 19948 19949 19950 19951 19952 19953 19954 19955 19956 19957 19958 19959 19960 19961 19962 19963 19964 19965 19966 19967 19968 19969 19970 19971 19972 19973 19974 19975 19976 19977 19978 19979 19980 19981 19982 19983 19984 19985 19986 19987 19988 19989 19990 19991 19992 19993 19994 19995 19996 19997 19998 19999 20000 20001 20002 20003 20004 20005 20006 20007 20008 20009 20010 20011 20012 20013 20014 20015 20016 20017 20018 20019 20020 20021 20022 20023 20024 20025 20026 20027 20028 20029 20030 20031 20032 20033 20034 20035 20036 20037 20038 20039 20040 20041 20042 20043 20044 20045 20046 20047 20048 20049 20050 20051 20052 20053 20054 20055 20056 20057 20058 20059 20060 20061 20062 20063 20064 20065 20066 20067 20068 20069 20070 20071 20072 20073 20074 20075 20076 20077 20078 20079 20080 20081 20082 20083 20084 20085 20086 20087 20088 20089 20090 20091 20092 20093 20094 20095 20096 20097 20098 20099 20100 20101 20102 20103 20104 20105 20106 20107 20108 20109 20110 20111 20112 20113 20114 20115 20116 20117 20118 20119 20120 20121 20122 20123 20124 20125 20126 20127 20128 20129 20130 20131 20132 20133 20134 20135 20136 20137 20138 20139 20140 20141 20142 20143 20144 20145 20146 20147 20148 20149 20150 20151 20152 20153 20154 20155 20156 20157 20158 20159 20160 20161 20162 20163 20164 20165 20166 20167 20168 20169 20170 20171 20172 20173 20174 20175 20176 20177 20178 20179 20180 20181 20182 20183 20184 20185 20186 20187 20188 20189 20190 20191 20192 20193 20194 20195 20196 20197 20198 20199 20200 20201 20202 20203 20204 20207 20208 20209 20210 20211 20212 20213 20214 20215 20216 20217 20218 20219 20220 20221 20222 20223 20224 20225 20226 20227 20228 20229 20230 20231 20232 20233 20234 20235 20236 20237 20238 20239 20240 20241 20242 20243 20244 20245 20246 20247 20248 20249 20250 20251 20252 20256 20257 20258 20259 20260 20261 20262 20263 20264 20265 20266 20267 20268 20269 20270 20271 20272 20273 20274 20275 20276 20277 20278 20279 20280 20281 20282 20283 20284 20285 20286 20287 20288 20289 20290 20291 20292 20293 20294 20295 20296 20297 20298 20299 20300 20301 20304 20305 20306 20307 20308 20309 20310 20311 20312 20313 20314 20315 20316 20317 20318 20319 20320 20321 20322 20323 20324 20325 20326 20327 20328 20329 20330 20331 20332 20333 20334 20335 20336 20337 20338 20339 20340 20341 20342 20343 20344 20345 20346 20347 20348 20351 20352 20353 20354 20355 20356 20357 20358 20359 20360 20361 20362 20363 20364 20365 20366 20367 20368 20369 20370 20371 20372 20373 20374 20375 20376 20377 20378 20379 20380 20381 20382 20383 20384 20385 20386 20387 20388 20389 20390 20391 20392 20393 20394 20397 20398 20399 20400 20401 20402 20403 20404 20405 20406 20407 20408 20409 20410 20411 20412 20413 20414 20415 20416 20417 20418 20419 20420 20421 20422 20423 20424 20425 20426 20427 20428 20429 20430 20431 20432 20433 20434 20435 20436 20437 20438 20439 20442 20443 20444 20445 20446 20447 20448 20449 20450 20451 20452 20453 20454 20455 20456 20457 20458 20459 20460 20461 20462 20463 20464 20465 20466 20467 20468 20469 20470 20471 20472 20473 20474 20475 20476 20477 20478 20479 20480 20481 20482 20483 20486 20487 20488 20489 20490 20491 20492 20493 20494 20495 20496 20497 20498 20499 20500 20501 20502 20503 20504 20505 20506 20507 20508 20509 20510 20511 20512 20513 20514 20515 20516 20517 20518 20519 20520 20521 20522 20523 20524 20525 20526 20529 20530 20531 20532 20533 20534 20535 20536 20537 20538 20539 20540 20541 20542 20543 20544 20545 20546 20547 20548 20549 20550 20551 20552 20553 20554 20555 20556 20557 20558 20559 20560 20561 20562 20563 20564 20565 20566 20567 20568 20569 20571 20572 20573 20574 20575 20576 20577 20578 20579 20580 20581 20582 20583 20584 20585 20586 20587 20588 20589 20590 20591 20592 20593 20594 20595 20596 20597 20598 20599 20600 20601 20602 20603 20604 20605 20606 20607 20608 20609 20610 20612 20613 20614 20615 20616 20617 20618 20619 20620 20621 20622 20623 20624 20625 20626 20627 20628 20629 20630 20631 20632 20633 20634 20635 20636 20637 20638 20639 20640 20641 20642 20643 20644 20645 20646 20647 20648 20649 20652 20653 20654 20655 20656 20657 20658 20659 20660 20661 20662 20663 20664 20665 20666 20667 20668 20669 20670 20671 20672 20673 20674 20675 20676 20677 20678 20679 20680 20681 20682 20683 20684 20685 20686 20687 20688 20689 20691 20692 20693 20694 20695 20696 20697 20698 20699 20700 20701 20702 20703 20704 20705 20706 20707 20708 20709 20710 20711 20712 20713 20714 20715 20716 20717 20718 20719 20720 20721 20722 20723 20724 20725 20726 20727 20729 20730 20731 20732 20733 20734 20735 20736 20737 20738 20739 20740 20741 20742 20743 20744 20745 20746 20747 20748 20749 20750 20751 20752 20753 20754 20755 20756 20757 20758 20759 20760 20761 20762 20763 20766 20767 20768 20769 20770 20771 20772 20773 20774 20775 20776 20777 20778 20779 20780 20781 20782 20783 20784 20785 20786 20787 20788 20789 20790 20791 20792 20793 20794 20795 20796 20797 20798 20799 20800 20802 20803 20804 20805 20806 20807 20808 20809 20810 20811 20812 20813 20814 20815 20816 20817 20818 20819 20820 20821 20822 20823 20824 20825 20826 20827 20828 20829 20830 20831 20832 20833 20834 20835 20837 20838 20839 20840 20841 20842 20843 20844 20845 20846 20847 20848 20849 20850 20851 20852 20853 20854 20855 20856 20857 20858 20859 20860 20861 20862 20863 20864 20865 20866 20867 20868 20869 20871 20872 20873 20874 20875 20876 20877 20878 20879 20880 20881 20882 20883 20884 20885 20886 20887 20888 20889 20890 20891 20892 20893 20894 20895 20896 20897 20898 20899 20900 20901 20902 20904 20905 20906 20907 20908 20909 20910 20911 20912 20913 20914 20915 20916 20917 20918 20919 20920 20921 20922 20923 20924 20925 20926 20927 20928 20929 20930 20931 20932 20933 20934 20936 20937 20938 20939 20940 20941 20942 20943 20944 20945 20946 20947 20948 20949 20950 20951 20952 20953 20954 20955 20956 20957 20958 20959 20960 20961 20962 20963 20964 20965 20967 20968 20969 20970 20971 20972 20973 20974 20975 20976 20977 20978 20979 20980 20981 20982 20983 20984 20985 20986 20987 20988 20989 20990 20991 20992 20993 20994 20995 20997 20998 20999 21000 21001 21002 21003 21004 21005 21006 21007 21008 21009 21010 21011 21012 21013 21014 21015 21016 21017 21018 21019 21020 21021 21022 21023 21024 21026 21027 21028 21029 21030 21031 21032 21033 21034 21035 21036 21037 21038 21039 21040 21041 21042 21043 21044 21045 21046 21047 21048 21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 21089 21090 21091 21092 21093 21094 21095 21096 21097 21098 21099 21100 21101 21102 21103 21104 21105 21106 21107 21108 21109 21110 21111 21112 21113 21114 21115 21116 21117 21118 21119 21120 21121 21122 21123 21124 21125 21126 21127 21128 21129 21130 21131 21132 21133 21134 21135 21136 21137 21138 21139 21140 21141 21142 21143 21144 21145 21146 21147 21148 21149 21150 21151 21152 21153 21154 21155 21156 21157 21158 21159 21160 21161 21162 21163 21164 21165 21166 21167 21168 21169 21170 21171 21172 21173 21174 21175 21176 21177 21178 21179 21180 21181 21182 21183 21184 21185 21186 21187 21188 21189 21190 21191 21192 21193 21194 21195 21196 21197 21198 21199 21200 21201 21202 21203 21204 21205 21206 21207 21208 21209 21210 21211 21212 21213 21214 21215 21216 21217 21218 21219 21220 21221 21222 21223 21224 21225 21226 21227 21228 21229 21230 21231 21232 21233 21234 21235 21236 21237 21238 21239 21240 21241 21242 21243 21244 21245 21246 21247 21248 21249 21250 21251 21252 21253 21254 21255 21256 21257 21258 21259 21260 21261 21262 21263 21264 21265 21266 21267 21268 21269 21270 21271 21272 21273 21274 21275 21276 21277 21278 21279 21280 21281 21282 21283 21284 21285 21286 21287 21288 21289 21290 21291 21292 21293 21294 21295 21296 21297 21298 21299 21300 21301 21302 21303 21304 21305 21306 21307 21308 21309 21310 21311 21312 21313 21314 21315 21316 21317 21318 21319 21320 21321 21322 21323 21324 21325 21326 21327 21328 21329 21330 21331 21332 21333 21334 21335 21336 21337 21338 21339 21340 21341 21342 21343 21344 21345 21346 21347 21348 21349 21350 21351 21352 21353 21354 21355 21356 21357 21358 21359 21360 21361 21362 21363 21364 21365 21366 21367 21368 21369 21370 21371 21372 21373 21374 21375 21376 21377 21378 21379 21380 21381 21382 21383 21384 21385 21386 21387 21388 21389 21390 21391 21392 21393 21394 21395 21396 21397 21398 21399 21400 21401 21402 21403 21404 21405 21406 21407 21408 21409 21411 21412 21413 21414 21415 21417 21418 21419 21422 21432 21433 21434 21435 21436 21437 21438 21439 21440 21441 21442 21443 21444 21445 21446 21447 21448 21449 21450 21451 21452 21453 21454 21455 21456 21457 21458 21459 21460 21461 21462 21463 21464 21465 21466 21467 21468 21469 21470 21471 21472 21473 21474 21475 21476 21477 21478 21479 21480 21481 21482 21483 21484 21485 21486 21487 21488 21489 21490 21491 21492 21493 21494 21495 21496 21497 21498 21499 21500 21501 21502 21503 21504 21505 21506 21507 21508 21509 21510 21511 21512 21513 21514 21515 21516 21517 21518 21519 21520 21521 21522 21523 21524 21525 21526 21527 21528 21529 21530 21531 21532 21533 21534 21535 21536 21537 21538 21539 21540 21541 21542 21543 21544 21545 21546 21547 21548 21549 21550 21551 21552 21553 21554 21555 21556 21557 21558 21559 21560 21561 21562 21563 21564 21565 21566 21567 21568 21569 21570 21571 21572 21573 21574 21575 21576 21577 21578 21579 21580 21581 21582 21583 21584 21585 21586 21587 21588 21589 21590 21591 21592 21593 21594 21595 21596 21597 21598 21599 21600 21601 21602 21603 21604 21605 21606 21607 21608 21609 21610 21611 21612 21613 21614 21615 21616 21617 21618 21619 21620 21621 21622 21623 21624 21625 21626 21627 21628 21629 21630 21631 21632 21633 21634 21635 21636 21637 21638 21639 21640 21641 21642 21643 21644 21645 21646 21647 21648 21649 21650 21651 21652 21653 21654 21655 21656 21657 21658 21659 21660 21661 21662 21663 21664 21665 21666 21667 21668 21669 21670 21671 21672 21673 21674 21675 21676 21677 21678 21679 21680 21681 21682 21683 21684 21685 21686 21687 21688 21689 21690 21691 21692 21693 21694 21695 21696 21697 21698 21699 21700 21701 21702 21703 21704 21705 21706 21707 21708 21709 21710 21711 21712 21713 21714 21715 21716 21717 21718 21719 21720 21721 21722 21723 21724 21725 21726 21727 21728 21729 21730 21731 21732 21733 21734 21735 21736 21737 21738 21739 21740 21741 21742 21743 21744 21745 21746 21747 21748 21749 21750 21751 21752 21753 21754 21755 21756 21757 21758 21759 21760 21761 21762 21763 21764 21765 21766 21767 21768 21769 21770 21771 21772 21773 21774 21775 21776 21777 21778 21779 21780 21781 21782 21783 21784 21785 21786 21787 21788 21789 21790 21791 21792 21793 21794 21795 21796 21797 21798 21799 21800 21801 21802 21803 21804 21805 21806 21807 21808 21809 21810 21811 21812 21813 21814 21815 21816 21817 21818 21819 21820 21821 21822 21823 21824 21825 21826 21827 21828 21829 21830 21831 21832 21833 21834 21835 21836 21837 21838 21839 21840 21841 21842 21843 21844 21845 21846 21847 21848 21849 21850 21851 21852 21853 21854 21855 21856 21857 21858 21859 21860 21861 21862 21863 21864 21865 21866 21867 21868 21869 21870 21871 21872 21873 21874 21875 21876 21877 21878 21879 21880 21881 21882 21883 21884 21885 21886 21887 21888 21889 21890 21891 21892 21893 21894 21895 21896 21897 21898 21899 21900 21901 21902 21903 21904 21905 21906 21907 21908 21909 21910 21911 21912 21913 21914 21915 21916 21917 21918 21919 21920 21921 21922 21923 21924 21925 21926 21927 21928 21929 21930 21931 21932 21933 21934 21935 21936 21937 21938 21939 21940 21941 21942 21943 21944 21945 21946 21947 21948 21949 21950 21951 21952 21953 21954 21955 21956 21957 21958 21959 21960 21961 21962 21963 21964 21965 21966 21967 21968 21969 21970 21971 21972 21973 21974 21975 21976 21977 21978 21979 21980 21981 21982 21983 21984 21985 21986 21987 21988 21989 21990 21991 21992 21993 21994 21995 21996 21997 21998 21999 22000 22001 22002 22003 22004 22005 22006 22007 22008 22009 22010 22011 22012 22013 22014 22015 22016 22017 22018 22019 22020 22021 22022 22023 22024 22025 22026 22027 22028 22029 22030 22031 22032 22033 22034 22035 22036 22037 22038 22039 22040 22041 22042 22043 22044 22045 22046 22047 22048 22049 22050 22051 22052 22053 22054 22055 22056 22057 22058 22059 22060 22061 22062 22063 22064 22065 22066 22067 22068 22069 22070 22071 22072 22073 22074 22075 22076 22077 22078 22079 22080 22081 22082 22083 22084 22085 22086 22087 22088 22089 22090 22091 22092 22093 22094 22095 22096 22097 22098 22099 22100 22101 22102 22103 22104 22105 22106 22107 22108 22109 22110 22111 22112 22113 22114 22115 22116 22117 22118 22119 22120 22121 22122 22123 22124 22125 22126 22127 22128 22129 22130 22131 22132 22133 22134 22135 22136 22137 22138 22139 22140 22141 22142 22143 22144 22145 22146 22147 22148 22149 22150 22151 22152 22153 22154 22155 22156 22157 22158 22159 22160 22161 22162 22163 22164 22165 22166 22167 22168 22169 22170 22171 22172 22173 22174 22175 22176 22177 22178 22179 22180 22181 22182 22183 22184 22185 22186 22187 22188 22189 22190 22191 22192 22193 22194 22195 22196 22197 22198 22199 22200 22201 22202 22203 22204 22205 22206 22207 22208 22209 22210 22211 22212 22213 22214 22215 22216 22217 22218 22219 22220 22221 22222 22223 22224 22225 22226 22227 22228 22229 22230 22231 22232 22233 22234 22235 22236 22237 22238 22239 22240 22241 22242 22243 22244 22245 22246 22247 22248 22249 22250 22251 22252 22253 22254 22255 22256 22257 22258 22259 22260 22261 22262 22263 22264 22265 22266 22267 22268 22269 22270 22271 22272 22273 22274 22275 22276 22277 22278 22279 22280 22281 22282 22283 22284 22285 22286 22287 22288 22289 22290 22291 22292 22293 22294 22295 22296 22297 22298 22299 22300 22301 22302 22303 22304 22305 22306 22307 22308 22309 22310 22311 22312 22313 22314 22315 22316 22317 22318 22319 22320 22321 22322 22323 22324 22325 22326 22327 22328 22329 22330 22331 22332 22333 22334 22335 22336 22337 22338 22339 22340 22341 22342 22343 22344 22345 22346 22347 22348 22349 22350 22351 22352 22353 22354 22355 22356 22357 22358 22359 22360 22361 22362 22363 22364 22365 22366 22367 22368 22369 22370 22371 22372 22373 22374 22375 22376 22377 22378 22379 22380 22381 22382 22383 22384 22385 22386 22387 22388 22389 22390 22391 22392 22393 22394 22395 22396 22397 22398 22399 22400 22401 22402 22403 22404 22405 22406 22407 22408 22409 22410 22411 22412 22413 22414 22415 22416 22417 22418 22419 22420 22421 22422 22423 22424 22425 22426 22427 22428 22429 22430 22431 22432 22433 22434 22435 22436 22437 22438 22439 22440 22441 22442 22443 22444 22445 22446 22447 22448 22449 22450 22451 22452 22453 22454 22455 22456 22457 22458 22459 22460 22461 22462 22463 22464 22465 22466 22467 22468 22469 22470 22471 22472 22473 22474 22475 22476 22477 22478 22479 22480 22481 22482 22483 22484 22485 22486 22487 22488 22489 22490 22491 22492 22493 22494 22495 22496 22497 22498 22499 22500 22501 22502 22503 22504 22505 22506 22507 22508 22509 22510 22511 22512 22513 22514 22515 22516 22517 22518 22519 22520 22521 22522 22523 22524 22525 22526 22527 22528 22529 22530 22531 22532 22533 22534 22535 22536 22537 22538 22539 22540 22541 22542 22543 22544 22545 22546 22547 22548 22549 22550 22551 22552 22553 22554 22555 22556 22557 22558 22559 22560 22561 22562 22563 22564 22565 22566 22567 22568 22569 22570 22571 22572 22573 22574 22575 22576 22577 22578 22579 22580 22581 22582 22583 22584 22585 22586 22587 22588 22589 22590 22591 22592 22593 22594 22595 22596 22597 22598 22599 22600 22601 22602 22603 22604 22605 22606 22607 22608 22609 22610 22611 22612 22613 22614 22615 22616 22617 22618 22619 22620 22621 22622 22623 22624 22625 22626 22627 22628 22629 22630 22631 22632 22633 22634 22635 22636 22637 22638 22639 22640 22641 22642 22643 22644 22645 22646 22647 22648 22649 22650 22651 22652 22653 22654 22655 22656 22657 22658 22659 22660 22661 22662 22663 22664 22665 22666 22667 22668 22669 22670 22671 22672 22673 22674 22675 22676 22677 22678 22679 22680 22681 22682 22683 22684 22685 22686 22687 22688 22689 22690 22691 22692 22693 22694 22695 22696 22697 22698 22699 22700 22701 22702 22703 22704 22705 22706 22707 22708 22709 22710 22711 22712 22713 22714 22715 22716 22717 22718 22719 22720 22721 22722 22723 22724 22725 22726 22727 22728 22729 22730 22731 22732 22733 22734 22735 22736 22737 22738 22739 22740 22741 22742 22743 22744 22745 22746 22747 22748 22749 22750 22751 22752 22753 22754 22755 22756 22757 22758 22759 22760 22761 22762 22763 22764 22765 22766 22767 22768 22769 22770 22771 22772 22773 22774 22775 22776 22777 22778 22779 22780 22781 22782 22783 22784 22785 22786 22787 22788 22789 22790 22791 22792 22793 22794 22795 22796 22797 22798 22799 22800 22801 22802 22803 22804 22805 22806 22807 22808 22809 22810 22811 22812 22813 22814 22815 22816 22817 22818 22819 22820 22821 22822 22823 22824 22825 22826 22827 22828 22829 22830 22831 22832 22833 22834 22835 22836 22837 22838 22839 22840 22841 22842 22843 22844 22845 22846 22847 22848 22849 22850 22851 22852 22853 22854 22855 22856 22857 22858 22859 22860 22861 22862 22863 22864 22865 22866 22867 22868 22869 22870 22871 22872 22873 22874 22875 22876 22877 22878 22879 22880 22881 22882 22883 22884 22885 22886 22887 22888 22889 22890 22891 22892 22893 22894 22895 22896 22897 22898 22899 22900 22901 22902 22903 22904 22905 22906 22907 22908 22909 22910 22911 22912 22913 22914 22915 22916 22917 22918 22919 22920 22921 22922 22923 22924 22925 22926 22927 22928 22929 22930 22931 22932 22933 22934 22935 22936 22937 22938 22939 22940 22941 22942 22943 22944 22945 22946 22947 22948 22949 22950 22951 22952 22953 22954 22955 22956 22957 22958 22959 22960 22961 22962 22963 22964 22965 22966 22967 22968 22969 22970 22971 22972 22973 22974 22975 22976 22977 22978 22979 22980 22981 22982 22983 22984 22985 22986 22987 22988 22989 22990 22991 22992 22993 22994 22995 22996 22997 22998 22999 23000 23001 23002 23003 23004 23005 23006 23007 23008 23009 23010 23011 23012 23013 23014 23015 23016 23017 23018 23019 23020 23021 23022 23023 23024 23025 23026 23027 23028 23029 23030 23031 23032 23033 23034 23035 23036 23037 23038 23039 23040 23041 23042 23043 23044 23045 23046 23047 23048 23049 23050 23051 23052 23053 23054 23055 23056 23057 23058 23059 23060 23061 23062 23063 23064 23065 23066 23067 23068 23069 23070 23071 23072 23073 23074 23075 23076 23077 23078 23079 23080 23081 23082 23083 23084 23085 23086 23087 23088 23089 23090 23091 23092 23093 23094 23095 23096 23097 23098 23099 23100 23101 23102 23103 23104 23105 23106 23107 23108 23109 23110 23111 23112 23113 23114 23115 23116 23117 23118 23119 23120 23121 23122 23123 23124 23125 23126 23127 23128 23129 23130 23131 23132 23133 23134 23135 23136 23137 23138 23139 23140 23141 23142 23143 23144 23145 23146 23147 23148 23149 23150 23151 23152 23153 23154 23155 23156 23157 23158 23159 23160 23161 23162 23163 23164 23165 23166 23167 23168 23169 23170 23171 23172 23173 23174 23175 23176 23177 23178 23179 23180 23181 23182 23183 23184 23185 23186 23187 23188 23189 23190 23191 23192 23193 23194 23195 23196 23197 23198 23199 23200 23201 23202 23203 23204 23205 23206 23207 23208 23209 23210 23211 23212 23213 23214 23215 23216 23217 23218 23219 23220 23221 23222 23223 23224 23225 23226 23227 23228 23229 23230 23231 23232 23233 23234 23235 23236 23237 23238 23239 23240 23241 23242 23243 23244 23245 23246 23247 23248 23249 23250 23251 23252 23253 23254 23255 23256 23257 23258 23259 23260 23261 23262 23263 23264 23265 23266 23267 23268 23269 23270 23271 23272 23273 23274 23275 23276 23277 23278 23279 23280 23281 23282 23283 23284 23285 23286 23287 23288 23289 23290 23291 23292 23293 23294 23295 23296 23297 23298 23299 23300 23301 23302 23303 23304 23305 23306 23307 23308 23309 23310 23311 23312 23313 23314 23315 23316 23317 23318 23319 23320 23321 23322 23323 23324 23325 23326 23327 23328 23329 23330 23331 23332 23333 23334 23335 23336 23337 23338 23339 23340 23341 23342 23343 23344 23345 23346 23347 23348 23349 23350 23351 23352 23353 23354 23355 23356 23357 23358 23359 23360 23361 23362 23363 23364 23365 23366 23367 23368 23369 23370 23371 23372 23373 23374 23375 23376 23377 23378 23379 23380 23381 23382 23383 23384 23385 23386 23387 23388 23389 23390 23391 23392 23393 23394 23395 23396 23397 23398 23399 23400 23401 23402 23403 23404 23405 23406 23407 23408 23409 23410 23411 23412 23413 23414 23415 23416 23417 23418 23419 23420 23421 23422 23423 23424 23425 23426 23427 23428 23429 23430 23431 23432 23433 23434 23435 23436 23437 23438 23439 23440 23441 23442 23443 23444 23445 23446 23447 23448 23449 23450 23451 23452 23453 23454 23455 23456 23457 23458 23459 23460 23461 23462 23463 23464 23465 23466 23467 23468 23469 23470 23471 23472 23473 23474 23475 23476 23477 23478 23479 23480 23481 23482 23483 23484 23485 23486 23487 23488 23489 23490 23491 23492 23493 23494 23495 23496 23497 23498 23499 23500 23501 23502 23503 23504 23505 23506 23507 23508 23509 23510 23511 23512 23513 23514 23515 23516 23517 23518 23519 23520 23521 23522 23523 23524 23525 23526 23527 23528 23529 23530 23531 23532 23533 23534 23535 23536 23537 23538 23539 23540 23541 23542 23543 23544 23545 23546 23547 23548 23549 23550 23551 23552 23553 23554 23555 23556 23557 23558 23559 23560 23561 23562 23563 23564 23565 23566 23567 23568 23569 23570 23571 23572 23573 23574 23575 23576 23577 23578 23579 23580 23581 23582 23583 23584 23585 23586 23587 23588 23589 23590 23591 23592 23593 23594 23595 23596 23597 23598 23599 23600 23601 23602 23603 23604 23605 23606 23607 23608 23609 23610 23611 23612 23613 23614 23615 23616 23617 23618 23619 23620 23621 23622 23623 23624 23625 23626 23627 23628 23629 23630 23631 23632 23633 23634 23635 23636 23637 23638 23639 23640 23641 23642 23643 23644 23645 23646 23647 23648 23649 23650 23651 23652 23653 23654 23655 23656 23657 23658 23659 23660 23661 23662 23663 23664 23665 23666 23667 23668 23669 23670 23671 23672 23673 23674 23675 23676 23677 23678 23679 23680 23681 23682 23683 23684 23685 23686 23687 23688 23689 23690 23691 23692 23693 23694 23695 23696 23697 23698 23699 23700 23701 23702 23703 23704 23705 23706 23707 23708 23709 23710 23711 23712 23713 23714 23715 23716 23717 23718 23719 23720 23721 23722 23723 23724 23725 23726 23727 23728 23729 23730 23731 23732 23733 23734 23735 23736 23737 23738 23739 23740 23741 23742 23743 23744 23745 23746 23747 23748 23749 23750 23751 23752 23753 23754 23755 23756 23757 23758 23759 23760 23761 23762 23763 23764 23765 23766 23767 23768 23769 23770 23771 23772 23773 23774 23775 23776 23777 23778 23779 23780 23781 23782 23783 23784 23785 23786 23787 23788 23789 23790 23791 23792 23793 23794 23795 23796 23797 23798 23799 23800 23801 23802 23803 23804 23805 23806 23807 23808 23809 23810 23811 23812 23813 23814 23815 23816 23817 23818 23819 23820 23821 23822 23823 23824 23825 23826 23827 23828 23829 23830 23831 23832 23833 23834 23835 23836 23837 23838 23839 23840 23841 23842 23843 23844 23845 23846 23847 23848 23849 23850 23851 23852 23853 23854 23855 23856 23857 23858 23859 23860 23861 23862 23863 23864 23865 23866 23867 23868 23869 23870 23871 23872 23873 23874 23875 23876 23877 23878 23879 23880 23881 23882 23883 23884 23885 23886 23887 23888 23889 23890 23891 23892 23893 23894 23895 23896 23897 23898 23899 23900 23901 23902 23903 23904 23905 23906 23907 23908 23909 23910 23911 23912 23913 23914 23915 23916 23917 23918 23919 23920 23921 23922 23923 23924 23925 23926 23927 23928 23929 23930 23931 23932 23933 23934 23935 23936 23937 23938 23939 23940 23941 23942 23943 23944 23945 23946 23947 23948 23949 23950 23951 23952 23953 23954 23955 23956 23957 23958 23959 23960 23961 23962 23963 23964 23965 23966 23967 23968 23969 23970 23971 23972 23973 23974 23975 23976 23977 23978 23979 23980 23981 23982 23983 23984 23985 23986 23987 23988 23989 23990 23991 23992 23993 23994 23995 23996 23997 23998 23999 24000 24001 24002 24003 24004 24005 24006 24007 24008 24009 24010 24011 24012 24013 24014 24015 24016 24017 24018 24019 24020 24021 24022 24023 24024 24025 24026 24027 24028 24029 24030 24031 24032 24033 24034 24035 24036 24037 24038 24039 24040 24041 24042 24043 24044 24045 24046 24047 24048 24049 24050 24051 24052 24053 24054 24055 24056 24057 24058 24059 24060 24061 24062 24063 24064 24065 24066 24067 24068 24069 24070 24071 24072 24073 24074 24075 24076 24077 24078 24079 24080 24081 24082 24083 24084 24085 24086 24087 24088 24089 24090 24091 24092 24093 24094 24095 24096 24097 24098 24099 24100 24101 24102 24103 24104 24105 24106 24107 24108 24109 24110 24111 24112 24113 24114 24115 24116 24117 24118 24119 24120 24121 24122 24123 24124 24125 24126 24127 24128 24129 24130 24131 24132 24133 24134 24135 24136 24137 24138 24139 24140 24141 24142 24143 24144 24145 24146 24147 24148 24149 24150 24151 24152 24153 24154 24155 24156 24157 24158 24159 24160 24161 24162 24163 24164 24165 24166 24167 24168 24169 24170 24171 24172 24173 24174 24175 24176 24177 24178 24179 24180 24181 24182 24183 24184 24185 24186 24187 24188 24189 24190 24191 24192 24193 24194 24195 24196 24197 24198 24199 24200 24201 24202 24203 24204 24205 24206 24207 24208 24209 24210 24211 24212 24213 24214 24215 24216 24217 24218 24219 24220 24221 24222 24223 24224 24225 24226 24227 24228 24229 24230 24231 24232 24233 24234 24235 24236 24237 24238 24239 24240 24241 24242 24243 24244 24245 24246 24247 24248 24249 24250 24251 24252 24253 24254 24255 24256 24257 24258 24259 24260 24261 24262 24263 24264 24265 24266 24267 24268 24269 24270 24271 24272 24273 24274 24275 24276 24277 24278 24279 24280 24281 24282 24283 24284 24285 24286 24287 24288 24289 24290 24291 24292 24293 24294 24295 24296 24297 24298 24299 24300 24301 24302 24303 24304 24305 24306 24307 24308 24309 24310 24311 24312 24313 24314 24315 24316 24317 24318 24319 24320 24321 24322 24323 24324 24325 24326 24327 24328 24329 24330 24331 24332 24333 24334 24335 24336 24337 24338 24339 24340 24341 24342 24343 24344 24345 24346 24347 24348 24349 24350 24351 24352 24353 24354 24355 24356 24357 24358 24359 24360 24361 24362 24363 24364 24365 24366 24367 24368 24369 24370 24371 24372 24373 24374 24375 24376 24377 24378 24379 24380 24381 24382 24383 24384 24385 24386 24387 24388 24389 24390 24391 24392 24393 24394 24395 24396 24397 24398 24399 24400 24401 24402 24403 24404 24405 24406 24407 24408 24409 24410 24411 24412 24413 24414 24415 24416 24417 24418 24419 24420 24421 24422 24423 24424 24425 24426 24427 24428 24429 24430 24431 24432 24433 24434 24435 24436 24437 24438 24439 24440 24441 24442 24443 24444 24445 24446 24447 24448 24449 24450 24451 24452 24453 24454 24455 24456 24457 24458 24459 24460 24461 24462 24463 24464 24465 24466 24467 24468 24469 24470 24471 24472 24473 24474 24475 24476 24477 24478 24479 24480 24481 24482 24483 24484 24485 24486 24487 24488 24489 24490 24491 24492 24493 24494 24495 24496 24497 24498 24499 24500 24501 24502 24503 24504 24505 24506 24507 24508 24509 24510 24511 24512 24513 24514 24515 24516 24517 24518 24519 24520 24521 24522 24523 24524 24525 24526 24527 24528 24529 24530 24531 24532 24533 24534 24535 24536 24537 24538 24539 24540 24541 24542 24543 24544 24545 24546 24547 24548 24549 24550 24551 24552 24553 24554 24555 24556 24557 24558 24559 24560 24561 24562 24563 24564 24565 24566 24567 24568 24569 24570 24571 24572 24573 24574 24575 24576 24577 24578 24579 24580 24581 24582 24583 24584 24585 24586 24587 24588 24589 24590 24591 24592 24593 24594 24595 24596 24597 24598 24599 24600 24601 24602 24603 24604 24605 24606 24607 24608 24609 24610 24611 24612 24613 24614 24615 24616 24617 24618 24619 24620 24621 24622 24623 24624 24625 24626 24627 24628 24629 24630 24631 24632 24633 24634 24635 24636 24637 24638 24639 24640 24641 24642 24643 24644 24645 24646 24647 24648 24649 24650 24651 24652 24653 24654 24655 24656 24657 24658 24659 24660 24661 24662 24663 24664 24665 24666 24667 24668 24669 24670 24671 24672 24673 24674 24675 24676 24677 24678 24679 24680 24681 24682 24683 24684 24685 24686 24687 24688 24689 24690 24691 24692 24693 24694 24695 24696 24697 24698 24699 24700 24701 24702 24703 24704 24705 24706 24707 24708 24709 24710 24711 24712 24713 24714 24715 24716 24717 24718 24719 24720 24721 24722 24723 24724 24725 24726 24727 24728 24729 24730 24731 24732 24733 24734 24735 24736 24737 24738 24739 24740 24741 24742 24743 24744 24745 24746 24747 24748 24749 24750 24751 24752 24753 24754 24755 24756 24757 24758 24759 24760 24761 24762 24763 24764 24765 24766 24767 24768 24769 24770 24771 24772 24773 24774 24775 24776 24777 24778 24779 24780 24781 24782 24783 24784 24785 24786 24787 24788 24789 24790 24791 24792 24793 24794 24795 24796 24797 24798 24799 24800 24801 24802 24803 24804 24805 24806 24807 24808 24809 24810 24811 24812 24813 24814 24815 24816 24817 24818 24819 24820 24821 24822 24823 24824 24825 24826 24827 24828 24829 24830 24831 24832 24833 24834 24835 24836 24837 24838 24839 24840 24841 24842 24843 24844 24845 24846 24847 24848 24849 24850 24851 24852 24853 24854 24855 24856 24857 24858 24859 24860 24861 24862 24863 24864 24865 24866 24867 24868 24869 24870 24871 24872 24873 24874 24875 24876 24877 24878 24879 24880 24881 24882 24883 24884 24885 24886 24887 24888 24889 24890 24891 24892 24893 24894 24895 24896 24897 24898 24899 24900 24901 24902 24903 24904 24905 24906 24907 24908 24909 24910 24911 24912 24913 24914 24915 24916 24917 24918 24919 24920 24921 24922 24923 24924 24925 24926 24927 24928 24929 24930 24931 24932 24933 24934 24935 24936 24937 24938 24939 24940 24941 24942 24943 24944 24945 24946 24947 24948 24949 24950 24951 24952 24953 24954 24955 24956 24957 24958 24959 24960 24961 24962 24963 24964 24965 24966 24967 24968 24969 24970 24971 24972 24973 24974 24975 24976 24977 24978 24979 24980 24981 24982 24983 24984 24985 24986 24987 24988 24989 24990 24991 24992 24993 24994 24995 24996 24997 24998 24999 25000 25001 25002 25003 25004 25005 25006 25007 25008 25009 25010 25011 25012 25013 25014 25015 25016 25017 25018 25019 25020 25021 25022 25023 25024 25025 25026 25027 25028 25029 25030 25031 25032 25033 25034 25035 25036 25037 25038 25039 25040 25041 25042 25043 25044 25045 25046 25047 25048 25049 25050 25051 25052 25053 25054 25055 25056 25057 25058 25059 25060 25061 25062 25063 25064 25065 25066 25067 25068 25069 25070 25071 25072 25073 25074 25075 25076 25077 25078 25079 25080 25081 25082 25083 25084 25085 25086 25087 25088 25089 25090 25091 25092 25093 25094 25095 25096 25097 25098 25099 25100 25101 25102 25103 25104 25105 25106 25107 25108 25109 25110 25111 25112 25113 25114 25115 25116 25117 25118 25119 25120 25121 25122 25123 25124 25125 25126 25127 25128 25129 25130 25131 25132 25133 25134 25135 25136 25137 25138 25139 25140 25141 25142 25143 25144 25145 25146 25147 25148 25149 25150 25151 25152 25153 25154 25155 25156 25157 25158 25159 25160 25161 25162 25163 25164 25165 25166 25167 25168 25169 25170 25171 25172 25173 25174 25175 25176 25177 25178 25179 25180 25181 25182 25183 25184 25185 25186 25187 25188 25189 25190 25191 25192 25193 25194 25195 25196 25197 25198 25199 25200 25201 25202 25203 25204 25205 25206 25207 25208 25209 25210 25211 25212 25213 25214 25215 25216 25217 25218 25219 25220 25221 25222 25223 25224 25225 25226 25227 25228 25229 25230 25231 25232 25233 25234 25235 25236 25237 25238 25239 25240 25241 25242 25243 25244 25245 25246 25247 25248 25249 25250 25251 25252 25253 25254 25255 25256 25257 25258 25259 25260 25261 25262 25263 25264 25265 25266 25267 25268 25269 25270 25271 25272 25273 25274 25275 25276 25277 25278 25279 25280 25281 25282 25283 25284 25285 25286 25287 25288 25289 25290 25291 25292 25293 25294 25295 25296 25297 25298 25299 25300 25301 25302 25303 25304 25305 25306 25307 25308 25309 25310 25311 25312 25313 25314 25315 25316 25317 25318 25319 25320 25321 25322 25323 25324 25325 25326 25327 25328 25329 25330 25331 25332 25333 25334 25335 25336 25337 25338 25339 25340 25341 25342 25343 25344 25345 25346 25347 25348 25349 25350 25351 25352 25353 25354 25355 25356 25357 25358 25359 25360 25361 25362 25363 25364 25365 25366 25367 25368 25369 25370 25371 25372 25373 25374 25375 25376 25377 25378 25379 25380 25381 25382 25383 25384 25385 25386 25387 25388 25389 25390 25391 25392 25393 25394 25395 25396 25397 25398 25399 25400 25401 25402 25403 25404 25405 25406 25407 25408 25409 25410 25411 25412 25413 25414 25415 25416 25417 25418 25419 25420 25421 25422 25423 25424 25425 25426 25427 25428 25429 25430 25431 25432 25433 25434 25435 25436 25437 25438 25439 25440 25441 25442 25443 25444 25445 25446 25447 25448 25449 25450 25451 25452 25453 25454 25455 25456 25457 25458 25459 25460 25461 25462 25463 25464 25465 25466 25467 25468 25469 25470 25471 25472 25473 25474 25475 25476 25477 25478 25479 25480 25481 25482 25483 25484 25485 25486 25487 25488 25489 25490 25491 25492 25493 25494 25495 25496 25497 25498 25499 25500 25501 25502 25503 25504 25505 25506 25507 25508 25509 25510 25511 25512 25513 25514 25515 25516 25517 25518 25519 25520 25521 25522 25523 25524 25525 25526 25527 25528 25529 25530 25531 25532 25533 25534 25535 25536 25537 25538 25539 25540 25541 25542 25543 25544 25545 25546 25547 25548 25549 25550 25551 25552 25553 25554 25555 25556 25557 25558 25559 25560 25561 25562 25563 25564 25565 25566 25567 25568 25569 25570 25571 25572 25573 25574 25575 25576 25577 25578 25579 25580 25581 25582 25583 25584 25585 25586 25587 25588 25589 25590 25591 25592 25593 25594 25595 25596 25597 25598 25599 25600 25601 25602 25603 25604 25605 25606 25607 25608 25609 25610 25611 25612 25613 25614 25615 25616 25617 25618 25619 25620 25621 25622 25623 25624 25625 25626 25627 25628 25629 25630 25631 25632 25633 25634 25635 25636 25637 25638 25639 25640 25641 25642 25643 25644 25645 25646 25647 25648 25649 25650 25651 25652 25653 25654 25655 25656 25657 25658 25659 25660 25661 25662 25663 25664 25665 25666 25667 25668 25669 25670 25671 25672 25673 25674 25675 25676 25677 25678 25679 25680 25681 25682 25683 25684 25685 25686 25687 25688 25689 25690 25691 25692 25693 25694 25695 25696 25697 25698 25699 25700 25701 25702 25703 25704 25705 25706 25707 25708 25709 25710 25711 25712 25713 25714 25715 25716 25717 25718 25719 25720 25721 25722 25723 25724 25725 25726 25727 25728 25729 25730 25731 25732 25733 25734 25735 25736 25737 25738 25739 25740 25741 25742 25743 25744 25745 25746 25747 25748 25749 25750 25751 25752 25753 25754 25755 25756 25757 25758 25759 25760 25761 25762 25763 25764 25765 25766 25767 25768 25769 25770 25771 25772 25773 25774 25775 25776 25777 25778 25779 25780 25781 25782 25783 25784 25785 25786 25787 25788 25789 25790 25791 25792 25793 25794 25795 25796 25797 25798 25799 25800 25801 25802 25803 25804 25805 25806 25807 25808 25809 25810 25811 25812 25813 25814 25815 25816 25817 25818 25819 25820 25821 25822 25823 25824 25825 25826 25827 25828 25829 25830 25831 25832 25833 25834 25835 25836 25837 25838 25839 25840 25841 25842 25843 25844 25845 25846 25847 25848 25849 25850 25851 25852 25853 25854 25855 25856 25857 25858 25859 25860 25861 25862 25863 25864 25865 25866 25867 25868 25869 25870 25871 25872 25873 25874 25875 25876 25877 25878 25879 25880 25881 25882 25883 25884 25885 25886 25887 25888 25889 25890 25891 25892 25893 25894 25895 25896 25897 25898 25899 25900 25901 25902 25903 25904 25905 25906 25907 25908 25909 25910 25911 25912 25913 25914 25915 25916 25917 25918 25919 25920 25921 25922 25923 25924 25925 25926 25927 25928 25929 25930 25931 25932 25933 25934 25935 25936 25937 25938 25939 25940 25941 25942 25943 25944 25945 25946 25947 25948 25949 25950 25951 25952 25953 25954 25955 25956 25957 25958 25959 25960 25961 25962 25963 25964 25965 25966 25967 25968 25969 25970 25971 25972 25973 25974 25975 25976 25977 25978 25979 25980 25981 25982 25983 25984 25985 25986 25987 25988 25989 25990 25991 25992 25993 25994 25995 25996 25997 25998 25999 26000 26001 26002 26003 26004 26005 26006 26007 26008 26009 26010 26011 26012 26013 26014 26015 26016 26017 26018 26019 26020 26021 26022 26023 26024 26025 26026 26027 26028 26029 26030 26031 26032 26033 26034 26035 26036 26037 26038 26039 26040 26041 26042 26043 26044 26045 26046 26047 26048 26049 26050 26051 26052 26053 26054 26055 26056 26057 26058 26059 26060 26061 26062 26063 26064 26065 26066 26067 26068 26069 26070 26071 26072 26073 26074 26075 26076 26077 26078 26079 26080 26081 26082 26083 26084 26085 26086 26087 26088 26089 26090 26091 26092 26093 26094 26095 26096 26097 26098 26099 26100 26101 26102 26103 26104 26105 26106 26107 26108 26109 26110 26111 26112 26113 26114 26115 26116 26117 26118 26119 26120 26121 26122 26123 26124 26125 26126 26127 26128 26129 26130 26131 26132 26133 26134 26135 26136 26137 26138 26139 26140 26141 26142 26143 26144 26145 26146 26147 26148 26149 26150 26151 26152 26153 26154 26155 26156 26157 26158 26159 26160 26161 26162 26163 26164 26165 26166 26167 26168 26169 26170 26171 26172 26173 26174 26175 26176 26177 26178 26179 26180 26181 26182 26183 26184 26185 26186 26187 26188 26189 26190 26191 26192 26193 26194 26195 26196 26197 26198 26199 26200 26201 26202 26203 26204 26205 26206 26207 26208 26209 26210 26211 26212 26213 26214 26215 26216 26217 26218 26219 26220 26221 26222 26223 26224 26225 26226 26227 26228 26229 26230 26231 26232 26233 26234 26235 26236 26237 26238 26239 26240 26241 26242 26243 26244 26245 26246 26247 26248 26249 26250 26251 26252 26253 26254 26255 26256 26257 26258 26259 26260 26261 26262 26263 26264 26265 26266 26267 26268 26269 26270 26271 26272 26273 26274 26275 26276 26277 26278 26279 26280 26281 26282 26283 26284 26285 26286 26287 26288 26289 26290 26291 26292 26293 26294 26295 26296 26297 26298 26299 26300 26301 26302 26303 26304 26305 26306 26307 26308 26309 26310 26311 26312 26313 26314 26315 26316 26317 26318 26319 26320 26321 26322 26323 26324 26325 26326 26327 26328 26329 26330 26331 26332 26333 26334 26335 26336 26337 26338 26339 26340 26341 26342 26343 26344 26345 26346 26347 26348 26349 26350 26351 26352 26353 26354 26355 26356 26357 26358 26359 26360 26361 26362 26363 26364 26365 26366 26367 26368 26369 26370 26371 26372 26373 26374 26375 26376 26377 26378 26379 26380 26381 26382 26383 26384 26385 26386 26387 26388 26389 26390 26391 26392 26393 26394 26395 26396 26397 26398 26399 26400 26401 26402 26403 26404 26405 26406 26407 26408 26409 26410 26411 26412 26413 26414 26415 26416 26417 26418 26419 26420 26421 26422 26423 26424 26425 26426 26427 26428 26429 26430 26431 26432 26433 26434 26435 26436 26437 26438 26439 26440 26441 26442 26443 26444 26445 26446 26448 26449 26450 26451 26452 26453 26454 26455 26456 26457 26458 26459 26460 26461 26462 26463 26464 26465 26466 26467 26468 26469 26470 26471 26472 26473 26474 26475 26476 26477 26478 26479 26480 26481 26482 26483 26484 26485 26486 26487 26488 26489 26490 26491 26493 26494 26495 26502 26503 26504 26505 26506 26507 26508 26509 26510 26511 26512 26513 26514 26515 26516 26517 26518 26519 26520 26521 26522 26523 26524 26525 26526 26527 26528 26529 26530 26531 26532 26533 26534 26535 26536 26537 26538 26539 26540 26554 26555 26556 26557 26558 26559 26560 26561 26562 26563 26564 26565 26566 26567 26568 26569 26570 26571 26572 26573 26574 26575 26576 26577 26578 26579 26580 26581 26582 26583 26584 26585 26586 26587 26588 26589 26590 26605 26606 26607 26608 26609 26610 26611 26612 26613 26614 26615 26616 26617 26618 26619 26620 26621 26622 26623 26624 26625 26626 26627 26628 26629 26630 26631 26632 26633 26634 26635 26636 26637 26638 26639 26656 26657 26658 26659 26660 26661 26662 26663 26664 26665 26666 26667 26668 26669 26670 26671 26672 26673 26674 26675 26676 26677 26678 26679 26680 26681 26682 26683 26684 26685 26686 26687 26704 26705 26706 26707 26708 26709 26710 26711 26712 26713 26714 26715 26716 26717 26718 26719 26720 26721 26722 26723 26724 26725 26726 26727 26728 26729 26730 26731 26732 26733 26734 26750 26751 26752 26753 26754 26755 26756 26757 26758 26759 26760 26761 26762 26763 26764 26765 26766 26767 26768 26769 26770 26771 26772 26773 26774 26775 26776 26777 26778 26779 26780 26796 26797 26798 26799 26800 26801 26802 26803 26804 26805 26806 26807 26808 26809 26810 26811 26812 26813 26814 26815 26816 26817 26818 26819 26820 26821 26822 26823 26824 26825 26840 26841 26842 26843 26844 26845 26846 26847 26848 26849 26850 26851 26852 26853 26854 26855 26856 26857 26858 26859 26860 26861 26862 26863 26864 26865 26866 26867 26868 26869 26886 26887 26888 26889 26890 26891 26892 26893 26894 26895 26896 26897 26898 26899 26900 26901 26902 26903 26904 26905 26906 26907 26908 26909 26910 26911 26912 26931 26932 26933 26934 26935 26936 26937 26938 26939 26940 26941 26942 26943 26944 26945 26946 26947 26948 26949 26950 26951 26952 26953 26954 26974 26975 26976 26977 26978 26979 26980 26981 26982 26983 26984 26985 26986 26987 26988 26989 26990 26991 26992 26993 26994 26995 27023 27024 27025 27026 27027 27028 27029 27030 27031 27032 27033 27034 27035 27064 27065 27066 27067 27068 27069 27070 27071 27072 27073 27074 27107 27108 27109 27110 27111 27112 27149 27816 27817 27818 27819 27820 27821 27822 27823 27824 27825 27826 27827 27828 27829 27830 27831 27832 27833 27834 27835 27836 27837 27838 27839 27840 27841 27842 27843 27844 27845 27846 27847 27848 27849 27850 27851 27852 27853 27854 27855 27856 27857 27858 27859 27860 27861 27862 27863 27864 27865 27866 27867 27868 27869 27870 27871 27872 27873 27874 27875 27876 27877 27878 27879 27880 27881 27882 27883 27884 27885 27886 27887 27888 27889 27890 27891 27892 27893 27894 27895 27896 27897 27898 27899 27900 27901 27902 27903 27904 27905 27906 27907 27908 27909 27910 27911 27912 27913 27914 27915 27916 27917 27918 27919 27920 27921 27922 27927 27928 27929 27930 27931 27932 27933 27934 27935 27936 27937 27938 27939 27940 27941 27942 27943 27944 27945 27946 27947 27948 27949 27950 27951 27952 27953 27954 27955 27956 27957 27958 27959 27960 27961 27962 27963 27964 27965 27966 27967 27968 27969 27970 27971 27972 27973 27974 27975 27976 27977 27981 27982 27983 27984 27985 27986 27987 27988 27989 27990 27991 27992 27993 27994 27995 27996 27997 27998 27999 28000 28001 28002 28003 28004 28005 28006 28007 28008 28009 28010 28011 28012 28013 28014 28015 28016 28017 28018 28019 28020 28021 28022 28023 28024 28025 28026 28027 28028 28029 28030 28034 28035 28036 28037 28038 28039 28040 28041 28042 28043 28044 28045 28046 28047 28048 28049 28050 28051 28052 28053 28054 28055 28056 28057 28058 28059 28060 28061 28062 28063 28064 28065 28066 28067 28068 28069 28070 28071 28072 28073 28074 28075 28076 28077 28078 28079 28080 28081 28082 28086 28087 28088 28089 28090 28091 28092 28093 28094 28095 28096 28097 28098 28099 28100 28101 28102 28103 28104 28105 28106 28107 28108 28109 28110 28111 28112 28113 28114 28115 28116 28117 28118 28119 28120 28121 28122 28123 28124 28125 28126 28127 28128 28129 28130 28131 28132 28137 28138 28139 28140 28141 28142 28143 28144 28145 28146 28147 28148 28149 28150 28151 28152 28153 28154 28155 28156 28157 28158 28159 28160 28161 28162 28163 28164 28165 28166 28167 28168 28169 28170 28171 28172 28173 28174 28175 28176 28177 28178 28179 28180 28181 28182 28183 28187 28188 28189 28190 28191 28192 28193 28194 28195 28196 28197 28198 28199 28200 28201 28202 28203 28204 28205 28206 28207 28208 28209 28210 28211 28212 28213 28214 28215 28216 28217 28218 28219 28220 28221 28222 28223 28224 28225 28226 28227 28228 28229 28230 28231 28232 28236 28237 28238 28239 28240 28241 28242 28243 28244 28245 28246 28247 28248 28249 28250 28251 28252 28253 28254 28255 28256 28257 28258 28259 28260 28261 28262 28263 28264 28265 28266 28267 28268 28269 28270 28271 28272 28273 28274 28275 28276 28277 28278 28279 28280 28284 28285 28286 28287 28288 28289 28290 28291 28292 28293 28294 28295 28296 28297 28298 28299 28300 28301 28302 28303 28304 28305 28306 28307 28308 28309 28310 28311 28312 28313 28314 28315 28316 28317 28318 28319 28320 28321 28322 28323 28324 28325 28326 28327 28331 28332 28333 28334 28335 28336 28337 28338 28339 28340 28341 28342 28343 28344 28345 28346 28347 28348 28349 28350 28351 28352 28353 28354 28355 28356 28357 28358 28359 28360 28361 28362 28363 28364 28365 28366 28367 28368 28369 28370 28371 28372 28373 28377 28378 28379 28380 28381 28382 28383 28384 28385 28386 28387 28388 28389 28390 28391 28392 28393 28394 28395 28396 28397 28398 28399 28400 28401 28402 28403 28404 28405 28406 28407 28408 28409 28410 28411 28412 28413 28414 28415 28416 28417 28418 28422 28423 28424 28425 28426 28427 28428 28429 28430 28431 28432 28433 28434 28435 28436 28437 28438 28439 28440 28441 28442 28443 28444 28445 28446 28447 28448 28449 28450 28451 28452 28453 28454 28455 28456 28457 28458 28459 28460 28461 28462 28466 28467 28468 28469 28470 28471 28472 28473 28474 28475 28476 28477 28478 28479 28480 28481 28482 28483 28484 28485 28486 28487 28488 28489 28490 28491 28492 28493 28494 28495 28496 28497 28498 28499 28500 28501 28502 28503 28504 28505 28506 28509 28510 28511 28512 28513 28514 28515 28516 28517 28518 28519 28520 28521 28522 28523 28524 28525 28526 28527 28528 28529 28530 28531 28532 28533 28534 28535 28536 28537 28538 28539 28540 28541 28542 28543 28544 28545 28546 28547 28548 28549 28551 28552 28553 28554 28555 28556 28557 28558 28559 28560 28561 28562 28563 28564 28565 28566 28567 28568 28569 28570 28571 28572 28573 28574 28575 28576 28577 28578 28579 28580 28581 28582 28583 28584 28585 28586 28587 28588 28589 28590 28592 28593 28594 28595 28596 28597 28598 28599 28600 28601 28602 28603 28604 28605 28606 28607 28608 28609 28610 28611 28612 28613 28614 28615 28616 28617 28618 28619 28620 28621 28622 28623 28624 28625 28626 28627 28628 28629 28630 28631 28632 28633 28634 28635 28636 28637 28638 28639 28640 28641 28642 28643 28644 28645 28646 28647 28648 28649 28650 28651 28652 28653 28654 28655 28656 28657 28658 28659 28660 28661 28662 28663 28664 28665 28666 28667 28668 28669 28670 28671 28672 28673 28674 28675 28676 28677 28678 28679 28680 28681 28682 28683 28684 28685 28686 28687 28688 28689 28690 28691 28692 28693 28694 28695 28696 28697 28698 28699 28700 28701 28702 28703 28704 28705 28706 28707 28708 28709 28710 28711 28712 28713 28714 28715 28716 28717 28718 28719 28720 28721 28722 28723 28724 28725 28726 28727 28728 28729 28730 28731 28732 28733 28734 28735 28736 28737 28738 28739 28740 28741 28742 28743 28744 28745 28746 28747 28748 28749 28750 28751 28752 28753 28754 28755 28756 28757 28758 28759 28760 28761 28762 28763 28764 28765 28766 28767 28768 28769 28770 28771 28772 28773 28774 28775 28776 28777 28778 28779 28780 28781 28782 28783 28784 28785 28786 28787 28788 28789 28790 28791 28792 28793 28794 28795 28796 28797 28798 28799 28800 28801 28802 28803 28804 28805 28806 28807 28808 28809 28810 28811 28812 28813 28814 28815 28816 28817 28818 28819 28820 28821 28822 28823 28824 28825 28826 28827 28828 28829 28830 28831 28832 28833 28834 28835 28836 28837 28838 28839 28840 28841 28842 28843 28844 28845 28846 28847 28848 28849 28850 28851 28852 28853 28854 28855 28856 28857 28858 28859 28860 28861 28862 28863 28864 28865 28866 28867 28868 28869 28870 28871 28872 28873 28874 28875 28876 28877 28878 28879 28880 28881 28882 28883 28884 28885 28886 28887 28888 28889 28890 28891 28892 28893 28894 28895 28896 28897 28898 28899 28900 28901 28902 28903 28904 28905 28906 28907 28908 28909 28910 28911 28912 28913 28914 28915 28916 28917 28918 28919 28920 28921 28922 28923 28924 28925 28926 28927 28928 28929 28930 28931 28932 28933 28934 28935 28936 28937 28938 28939 28940 28941 28942 28943 28944 28945 28946 28947 28948 28949 28950 28951 28952 28953 28954 28955 28956 28957 28958 28959 28960 28961 28962 28963 28964 28965 28966 28967 28968 28969 28970 28971 28972 28973 28974 28975 28976 28977 28978 28979 28980 28981 28982 28983 28984 28985 28986 28987 28988 28989 28990 28991 28992 28993 28994 28995 28996 28997 28998 28999 29000 29001 29002 29003 29004 29005 29006 29007 29008 29009 29010 29011 29012 29013 29014 29015 29016 29017 29018 29019 29020 29021 29022 29023 29024 29025 29026 29027 29028 29029 29030 29031 29032 29033 29034 29035 29036 29037 29038 29039 29040 29041 29042 29043 29044 29045 29046 29047 29048 29049 29050 29051 29052 29053 29054 29055 29056 29057 29058 29059 29060 29061 29062 29063 29064 29065 29066 29067 29068 29069 29070 29071 29072 29073 29074 29075 29076 29077 29078 29079 29080 29081 29082 29083 29084 29085 29086 29087 29088 29089 29090 29091 29092 29093 29094 29095 29096 29097 29098 29099 29100 29101 29102 29103 29104 29105 29106 29107 29108 29109 29110 29111 29112 29113 29114 29115 29116 29117 29118 29119 29120 29121 29122 29123 29124 29125 29126 29127 29128 29129 29130 29131 29132 29133 29134 29135 29136 29137 29138 29139 29140 29141 29142 29143 29144 29145 29146 29147 29148 29149 29150 29151 29152 29153 29154 29155 29156 29157 29158 29159 29160 29161 29162 29163 29164 29165 29166 29167 29168 29169 29170 29171 29172 29173 29174 29175 29176 29177 29178 29179 29180 29181 29182 29183 29184 29185 29186 29187 29188 29189 29190 29191 29192 29193 29194 29195 29196 29197 29198 29199 29200 29201 29202 29203 29204 29205 29206 29207 29208 29209 29210 29211 29212 29213 29214 29215 29216 29217 29218 29219 29220 29221 29222 29223 29224 29225 29226 29227 29228 29229 29230 29231 29232 29233 29234 29235 29236 29237 29238 29239 29240 29241 29242 29243 29244 29245 29246 29247 29248 29249 29250 29251 29252 29253 29254 29255 29256 29257 29258 29259 29260 29261 29262 29263 29264 29265 29266 29267 29268 29269 29270 29271 29272 29273 29274 29275 29276 29277 29278 29279 29280 29281 29282 29283 29284 29285 29286 29287 29288 29289 29290 29291 29292 29293 29294 29295 29296 29297 29298 29299 29300 29301 29302 29303 29304 29305 29306 29307 29308 29309 29310 29311 29312 29313 29314 29315 29316 29317 29318 29319 29320 29321 29322 29323 29324 29325 29326 29327 29328 29329 29330 29331 29332 29333 29334 29335 29336 29337 29338 29339 29340 29341 29342 29343 29344 29345 29346 29347 29348 29349 29350 29351 29352 29353 29354 29355 29356 29357 29358 29359 29360 29361 29362 29363 29364 29365 29366 29367 29368 29369 29370 29371 29372 29373 29374 29375 29376 29377 29378 29379 29380 29381 29382 29383 29384 29385 29386 29387 29388 29389 29390 29391 29392 29393 29394 29395 29396 29397 29398 29399 29400 29401 29402 29403 29404 29405 29406 29407 29408 29409 29410 29411 29412 29413 29414 29415 29416 29417 29418 29419 29420 29421 29422 29423 29424 29425 29426 29427 29428 29429 29430 29431 29432 29433 29434 29435 29436 29437 29438 29439 29440 29441 29442 29443 29444 29445 29446 29447 29448 29449 29450 29451 29452 29453 29454 29455 29456 29457 29458 29459 29460 29461 29462 29463 29464 29465 29466 29467 29468 29469 29470 29471 29472 29473 29474 29475 29476 29477 29478 29479 29480 29481 29482 29483 29484 29485 29486 29487 29488 29489 29490 29491 29492 29493 29494 29495 29496 29497 29498 29499 29500 29501 29502 29503 29504 29505 29506 29507 29508 29509 29510 29511 29512 29513 29514 29515 29516 29517 29518 29519 29520 29521 29522 29523 29524 29525 29526 29527 29528 29529 29530 29531 29532 29533 29534 29535 29536 29537 29538 29539 29540 29541 29542 29543 29544 29545 29546 29547 29548 29549 29550 29551 29552 29553 29554 29555 29556 29557 29558 29559 29560 29561 29562 29563 29564 29565 29566 29567 29568 29569 29570 29571 29572 29573 29574 29575 29576 29577 29578 29579 29580 29581 29582 29583 29584 29585 29586 29587 29588 29589 29590 29591 29592 29593 29594 29595 29596 29597 29598 29599 29600 29601 29602 29603 29604 29605 29606 29607 29608 29609 29610 29611 29612 29613 29614 29615 29616 29617 29618 29619 29620 29621 29622 29623 29624 29625 29626 29627 29628 29629 29630 29631 29632 29633 29634 29635 29636 29637 29638 29639 29640 29641 29642 29643 29644 29645 29646 29647 29648 29649 29650 29651 29652 29653 29654 29655 29656 29657 29658 29659 29660 29661 29662 29663 29664 29665 29666 29667 29668 29669 29670 29671 29672 29673 29674 29675 29676 29677 29678 29679 29680 29681 29682 29683 29684 29685 29686 29687 29688 29689 29690 29691 29692 29693 29694 29695 29696 29697 29698 29699 29700 29701 29702 29703 29704 29705 29706 29707 29708 29709 29710 29711 29712 29713 29714 29715 29716 29717 29718 29719 29720 29721 29722 29723 29724 29725 29726 29727 29728 29729 29730 29731 29732 29733 29734 29735 29736 29737 29738 29739 29740 29741 29742 29743 29744 29745 29746 29747 29748 29749 29750 29751 29752 29753 29754 29755 29756 29757 29758 29759 29760 29761 29762 29763 29764 29765 29766 29767 29768 29769 29770 29771 29772 29773 29774 29775 29776 29777 29778 29779 29780 29781 29782 29783 29784 29785 29786 29787 29788 29789 29790 29791 29792 29793 29794 29795 29796 29797 29798 29799 29800 29801 29802 29803 29804 29805 29806 29807 29808 29809 29810 29811 29812 29813 29814 29815 29816 29817 29818 29819 29820 29821 29822 29823 29824 29825 29826 29827 29828 29829 29830 29831 29832 29833 29834 29835 29836 29837 29838 29839 29840 29841 29842 29843 29844 29845 29846 29847 29848 29849 29850 29851 29852 29853 29854 29855 29856 29857 29858 29859 29860 29861 29862 29863 29864 29865 29866 29867 29868 29869 29870 29871 29872 29873 29874 29875 29876 29877 29878 29879 29880 29881 29882 29883 29884 29885 29886 29887 29888 29889 29890 29891 29892 29893 29894 29895 29896 29897 29898 29899 29900 29901 29902 29903 29904 29905 29906 29907 29908 29909 29910 29911 29912 29913 29914 29915 29916 29917 29918 29919 29920 29921 29922 29923 29924 29925 29926 29927 29928 29929 29930 29931 29932 29933 29934 29935 29936 29937 29938 29939 29940 29941 29942 29943 29944 29945 29946 29947 29948 29949 29950 29951 29952 29953 29954 29955 29956 29957 29958 29959 29960 29961 29962 29963 29964 29965 29966 29967 29968 29969 29970 29971 29972 29973 29974 29975 29976 29977 29978 29979 29980 29981 29982 29983 29984 29985 29986 29987 29988 29989 29990 29991 29992 29993 29994 29995 29996 29997 29998 29999 30000 30001 30002 30003 30004 30005 30006 30007 30008 30009 30010 30011 30012 30013 30014 30015 30016 30017 30018 30019 30020 30021 30022 30023 30024 30025 30026 30027 30028 30029 30030 30031 30032 30033 30034 30035 30036 30037 30038 30039 30040 30041 30042 30043 30044 30045 30046 30047 30048 30049 30050 30051 30052 30053 30054 30055 30056 30057 30058 30059 30060 30061 30062 30063 30064 30065 30066 30067 30068 30069 30070 30071 30072 30073 30074 30075 30076 30077 30078 30079 30080 30081 30082 30083 30084 30085 30086 30087 30088 30089 30090 30091 30092 30093 30094 30095 30096 30097 30098 30099 30100 30101 30102 30103 30104 30105 30106 30107 30108 30109 30110 30111 30112 30113 30114 30115 30116 30117 30118 30119 30120 30121 30122 30123 30124 30125 30126 30127 30128 30129 30130 30131 30132 30133 30134 30135 30136 30137 30138 30139 30140 30141 30142 30143 30144 30145 30146 30147 30148 30149 30150 30151 30152 30153 30154 30155 30156 30157 30158 30159 30160 30161 30162 30163 30164 30165 30166 30167 30168 30169 30170 30171 30172 30173 30174 30175 30176 30177 30178 30179 30180 30181 30182 30183 30184 30185 30186 30187 30188 30189 30190 30191 30192 30193 30194 30195 30196 30197 30198 30199 30200 30201 30202 30203 30204 30205 30206 30207 30208 30209 30210 30211 30212 30213 30214 30215 30216 30217 30218 30219 30220 30221 30222 30223 30224 30225 30226 30227 30228 30229 30230 30231 30232 30233 30234 30235 30236 30237 30238 30239 30240 30241 30242 30243 30244 30245 30246 30247 30248 30249 30250 30251 30252 30253 30254 30255 30256 30257 30258 30259 30260 30261 30262 30263 30264 30265 30266 30267 30268 30269 30270 30271 30272 30273 30274 30275 30276 30277 30278 30279 30280 30281 30282 30283 30284 30285 30286 30287 30288 30289 30290 30291 30292 30293 30294 30295 30296 30297 30298 30299 30300 30301 30302 30303 30304 30305 30306 30307 30308 30309 30310 30311 30312 30313 30314 30315 30316 30317 30318 30319 30320 30321 30322 30323 30324 30325 30326 30327 30328 30329 30330 30331 30332 30333 30334 30335 30336 30337 30338 30339 30340 30341 30342 30343 30344 30345 30346 30347 30348 30349 30350 30351 30352 30353 30354 30355 30356 30357 30358 30359 30360 30361 30362 30363 30364 30365 30366 30367 30368 30369 30370 30371 30372 30373 30374 30375 30376 30377 30378 30379 30380 30381 30382 30383 30384 30385 30386 30387 30388 30389 30390 30391 30392 30393 30394 30395 30396 30397 30398 30399 30400 30401 30402 30403 30404 30405 30406 30407 30408 30409 30410 30411 30412 30413 30414 30415 30416 30417 30418 30419 30420 30421 30422 30423 30424 30425 30426 30427 30428 30429 30430 30431 30432 30433 30434 30435 30436 30437 30438 30439 30440 30441 30442 30443 30444 30445 30446 30447 30448 30449 30450 30451 30452 30453 30454 30455 30456 30457 30458 30459 30460 30461 30462 30463 30464 30465 30466 30467 30468 30469 30470 30471 30472 30473 30474 30475 30476 30477 30478 30479 30480 30481 30482 30483 30484 30485 30486 30487 30488 30489 30490 30491 30492 30493 30494 30495 30496 30497 30498 30499 30500 30501 30502 30503 30504 30505 30506 30507 30508 30509 30510 30511 30512 30513 30514 30515 30516 30517 30518 30519 30520 30521 30522 30523 30524 30525 30526 30527 30528 30529 30530 30531 30532 30533 30534 30535 30536 30537 30538 30539 30540 30541 30542 30543 30544 30545 30546 30547 30548 30549 30550 30551 30552 30553 30554 30555 30556 30557 30558 30559 30560 30561 30562 30563 30564 30565 30566 30567 30568 30569 30570 30571 30572 30573 30574 30575 30576 30577 30578 30579 30580 30581 30582 30583 30584 30585 30586 30587 30588 30589 30590 30591 30592 30593 30594 30595 30596 30597 30598 30599 30600 30601 30602 30603 30604 30605 30606 30607 30608 30609 30610 30611 30612 30613 30614 30615 30616 30617 30618 30619 30620 30621 30622 30623 30624 30625 30626 30627 30628 30629 30630 30631 30632 30633 30634 30635 30636 30637 30638 30639 30640 30641 30642 30643 30644 30645 30646 30647 30648 30649 30650 30651 30652 30653 30654 30655 30656 30657 30658 30659 30660 30661 30662 30663 30664 30665 30666 30667 30668 30669 30670 30671 30672 30673 30674 30675 30676 30677 30678 30679 30680 30681 30682 30683 30684 30685 30686 30687 30688 30689 30690 30691 30692 30693 30694 30695 30696 30697 30698 30699 30700 30701 30702 30703 30704 30705 30706 30707 30708 30709 30710 30711 30712 30713 30714 30715 30716 30717 30718 30719 30720 30721 30722 30723 30724 30725 30726 30727 30728 30729 30730 30731 30732 30733 30734 30735 30736 30737 30738 30739 30740 30741 30742 30743 30744 30745 30746 30747 30748 30749 30750 30751 30752 30753 30754 30755 30756 30757 30758 30759 30760 30761 30762 30763 30764 30765 30766 30767 30768 30769 30770 30771 30772 30773 30774 30775 30776 30777 30778 30779 30780 30781 30782 30783 30784 30785 30786 30787 30788 30789 30790 30791 30792 30793 30794 30795 30796 30797 30798 30799 30800 30801 30802 30803 30804 30805 30806 30807 30808 30809 30810 30811 30812 30813 30814 30815 30816 30817 30818 30819 30820 30821 30822 30823 30824 30825 30826 30827 30828 30829 30830 30831 30832 30833 30834 30835 30836 30837 30838 30839 30840 30841 30842 30843 30844 30845 30846 30847 30848 30849 30850 30851 30852 30853 30854 30855 30856 30857 30858 30859 30860 30861 30862 30863 30864 30865 30866 30867 30868 30869 30870 30871 30872 30873 30874 30875 30876 30877 30878 30879 30880 30881 30882 30883 30884 30885 30886 30887 30888 30889 30890 30891 30892 30893 30894 30895 30896 30897 30898 30899 30900 30901 30902 30903 30904 30905 30906 30907 30908 30909 30910 30911 30912 30913 30914 30915 30916 30917 30918 30919 30920 30921 30922 30923 30924 30925 30926 30927 30928 30929 30930 30931 30932 30933 30934 30935 30936 30937 30938 30939 30940 30941 30942 30943 30944 30945 30946 30947 30948 30949 30950 30951 30952 30953 30954 30955 30956 30957 30958 30959 30960 30961 30962 30963 30964 30965 30966 30967 30968 30969 30970 30971 30972 30973 30974 30975 30976 30977 30978 30979 30980 30981 30982 30983 30984 30985 30986 30987 30988 30989 30990 30991 30992 30993 30994 30995 30996 30997 30998 30999 31000 31001 31002 31003 31004 31005 31006 31007 31008 31009 31010 31011 31012 31013 31014 31015 31016 31017 31018 31019 31020 31021 31022 31023 31024 31025 31026 31027 31028 31029 31030 31031 31032 31033 31034 31035 31036 31037 31038 31039 31040 31041 31042 31043 31044 31045 31046 31047 31048 31049 31050 31051 31052 31053 31054 31055 31056 31057 31058 31059 31060 31061 31062 31063 31064 31065 31066 31067 31068 31069 31070 31071 31072 31073 31074 31075 31076 31077 31078 31079 31080 31081 31082 31083 31084 31085 31086 31087 31088 31089 31090 31091 31092 31093 31094 31095 31096 31097 31098 31099 31100 31101 31102 31103 31104 31105 31106 31107 31108 31109 31110 31111 31112 31113 31114 31115 31116 31117 31118 31119 31120 31121 31122 31123 31124 31125 31126 31127 31128 31129 31130 31131 31132 31133 31134 31135 31136 31137 31138 31139 31140 31141 31142 31143 31144 31145 31146 31147 31148 31149 31150 31151 31152 31153 31154 31155 31156 31157 31158 31159 31160 31161 31162 31163 31164 31165 31166 31167 31168 31169 31170 31171 31172 31173 31174 31175 31176 31177 31178 31179 31180 31181 31182 31183 31184 31185 31186 31187 31188 31189 31190 31191 31192 31193 31194 31195 31196 31197 31198 31199 31200 31201 31202 31203 31204 31205 31206 31207 31208 31209 31210 31211 31212 31213 31214 31215 31216 31217 31218 31219 31220 31221 31222 31223 31224 31225 31226 31227 31228 31229 31230 31231 31232 31233 31234 31235 31236 31237 31238 31239 31240 31241 31242 31243 31244 31245 31246 31247 31248 31249 31250 31251 31252 31253 31254 31255 31256 31257 31258 31259 31260 31261 31262 31263 31264 31265 31266 31267 31268 31269 31270 31271 31272 31273 31274 31275 31276 31277 31278 31279 31280 31281 31282 31283 31284 31285 31286 31287 31288 31289 31290 31291 31292 31293 31294 31295 31296 31297 31298 31299 31300 31301 31302 31303 31304 31305 31306 31307 31308 31309 31310 31311 31312 31313 31314 31315 31316 31317 31318 31319 31320 31321 31322 31323 31324 31325 31326 31327 31328 31329 31330 31331 31332 31333 31334 31335 31336 31337 31338 31339 31340 31341 31342 31343 31344 31345 31346 31347 31348 31349 31350 31351 31352 31353 31354 31355 31356 31357 31358 31359 31360 31361 31362 31363 31364 31365 31366 31367 31368 31369 31370 31371 31372 31373 31374 31375 31376 31377 31378 31379 31380 31381 31382 31383 31384 31385 31386 31387 31388 31389 31390 31391 31392 31393 31394 31395 31396 31397 31398 31399 31400 31401 31402 31403 31404 31405 31406 31407 31408 31409 31410 31411 31412 31413 31414 31415 31416 31417 31418 31419 31420 31421 31422 31423 31424 31425 31426 31427 31428 31429 31430 31431 31432 31433 31434 31435 31436 31437 31438 31439 31440 31441 31442 31443 31444 31445 31446 31447 31448 31449 31450 31451 31452 31453 31454 31455 31456 31457 31458 31459 31460 31461 31462 31463 31464 31465 31466 31467 31468 31469 31470 31471 31472 31473 31474 31475 31476 31477 31478 31479 31480 31481 31482 31483 31484 31485 31486 31487 31488 31489 31490 31491 31492 31493 31494 31495 31496 31497 31498 31499 31500 31501 31502 31503 31504 31505 31506 31507 31508 31509 31510 31511 31512 31513 31514 31515 31516 31517 31518 31519 31520 31521 31522 31523 31524 31525 31526 31527 31528 31529 31530 31531 31532 31533 31534 31535 31536 31537 31538 31539 31540 31541 31542 31543 31544 31545 31546 31547 31548 31549 31550 31551 31552 31553 31554 31555 31556 31557 31558 31559 31560 31561 31562 31563 31564 31565 31566 31567 31568 31569 31570 31571 31572 31573 31574 31575 31576 31577 31578 31579 31580 31581 31582 31583 31584 31585 31586 31587 31588 31589 31590 31591 31592 31593 31594 31595 31596 31597 31598 31599 31600 31601 31602 31603 31604 31605 31606 31607 31608 31609 31610 31611 31612 31613 31614 31615 31616 31617 31618 31619 31620 31621 31622 31623 31624 31625 31626 31627 31628 31629 31630 31631 31632 31633 31634 31635 31636 31637 31638 31639 31640 31641 31642 31643 31644 31645 31646 31647 31648 31649 31650 31651 31652 31653 31654 31655 31656 31657 31658 31659 31660 31661 31662 31663 31664 31665 31666 31667 31668 31669 31670 31671 31672 31673 31674 31675 31676 31677 31678 31679 31680 31681 31682 31683 31684 31685 31686 31687 31688 31689 31690 31691 31692 31693 31694 31695 31696 31697 31698 31699 31700 31701 31702 31703 31704 31705 31706 31707 31708 31709 31710 31711 31712 31713 31714 31715 31716 31717 31718 31719 31720 31721 31722 31723 31724 31725 31726 31727 31728 31729 31730 31731 31732 31733 31734 31735 31736 31737 31738 31739 31740 31741 31742 31743 31744 31745 31746 31747 31748 31749 31750 31751 31752 31753 31754 31755 31756 31757 31758 31759 31760 31761 31762 31763 31764 31765 31766 31767 31768 31769 31770 31771 31772 31773 31774 31775 31776 31777 31778 31779 31780 31781 31782 31783 31784 31785 31786 31787 31788 31789 31790 31791 31792 31793 31794 31795 31796 31797 31798 31799 31800 31801 31802 31803 31804 31805 31806 31807 31808 31809 31810 31811 31812 31813 31814 31815 31816 31817 31818 31819 31820 31821 31822 31823 31824 31825 31826 31827 31828 31829 31830 31831 31832 31833 31834 31835 31836 31837 31838 31839 31840 31841 31842 31843 31844 31845 31846 31847 31848 31849 31850 31851 31852 31853 31854 31855 31856 31857 31858 31859 31860 31861 31862 31863 31864 31865 31866 31867 31868 31869 31870 31871 31872 31873 31874 31875 31876 31877 31878 31879 31880 31881 31882 31883 31884 31885 31886 31887 31888 31889 31890 31891 31892 31893 31894 31895 31896 31897 31898 31899 31900 31901 31902 31903 31904 31905 31906 31907 31908 31909 31910 31911 31912 31913 31914 31915 31916 31917 31918 31919 31920 31921 31922 31923 31924 31925 31926 31927 31928 31929 31930 31931 31932 31933 31934 31935 31936 31937 31938 31939 31940 31941 31942 31943 31944 31945 31946 31947 31948 31949 31950 31951 31952 31953 31954 31955 31956 31957 31958 31959 31960 31961 31962 31963 31964 31965 31966 31967 31968 31969 31970 31971 31972 31973 31974 31975 31976 31977 31978 31979 31980 31981 31982 31983 31984 31985 31986 31987 31988 31989 31990 31991 31992 31993 31994 31995 31996 31997 31998 31999 32000 32001 32002 32003 32004 32005 32006 32007 32008 32009 32010 32011 32012 32013 32014 32015 32016 32017 32018 32019 32020 32021 32022 32023 32024 32025 32026 32027 32028 32029 32030 32031 32032 32033 32034 32035 32036 32037 32038 32039 32040 32041 32042 32043 32044 32045 32046 32047 32048 32049 32050 32051 32052 32053 32054 32055 32056 32057 32058 32059 32060 32061 32062 32063 32064 32065 32066 32067 32068 32069 32070 32071 32072 32073 32074 32075 32076 32077 32078 32079 32080 32081 32082 32083 32084 32085 32086 32087 32088 32089 32090 32091 32092 32093 32094 32095 32096 32097 32098 32099 32100 32101 32102 32103 32104 32105 32106 32107 32108 32109 32110 32111 32112 32113 32114 32115 32116 32117 32118 32119 32120 32121 32122 32123 32124 32125 32126 32127 32128 32129 32130 32131 32132 32133 32134 32135 32136 32137 32138 32139 32140 32141 32142 32143 32144 32145 32146 32147 32148 32149 32150 32151 32152 32153 32154 32155 32156 32157 32158 32159 32160 32161 32162 32163 32164 32165 32166 32167 32168 32169 32170 32171 32172 32173 32174 32175 32176 32177 32178 32179 32180 32181 32182 32183 32184 32185 32186 32187 32188 32189 32190 32191 32192 32193 32194 32195 32196 32197 32198 32199 32200 32201 32202 32203 32204 32205 32206 32207 32208 32209 32210 32211 32212 32213 32214 32215 32216 32217 32218 32219 32220 32221 32222 32223 32224 32225 32226 32227 32228 32229 32230 32231 32232 32233 32234 32235 32236 32237 32238 32239 32240 32241 32242 32243 32244 32245 32246 32247 32248 32249 32250 32251 32252 32253 32254 32255 32256 32257 32258 32259 32260 32261 32262 32263 32264 32265 32266 32267 32268 32269 32270 32271 32272 32273 32274 32275 32276 32277 32278 32279 32280 32281 32282 32283 32284 32285 32286 32287 32288 32289 32290 32291 32292 32293 32294 32295 32296 32297 32298 32299 32300 32301 32302 32303 32304 32305 32306 32307 32308 32309 32310 32311 32312 32313 32314 32315 32316 32317 32318 32319 32320 32321 32322 32323 32324 32325 32326 32327 32328 32329 32330 32331 32332 32333 32334 32335 32336 32337 32338 32339 32340 32341 32342 32343 32344 32345 32346 32347 32348 32349 32350 32351 32352 32353 32354 32355 32356 32357 32358 32359 32360 32361 32362 32363 32364 32365 32366 32367 32368 32369 32370 32371 32372 32373 32374 32375 32376 32377 32378 32379 32380 32381 32382 32383 32384 32385 32386 32387 32388 32389 32390 32391 32392 32393 32394 32395 32396 32397 32398 32399 32400 32401 32402 32403 32404 32405 32406 32407 32408 32409 32410 32411 32412 32413 32414 32415 32416 32417 32418 32419 32420 32421 32422 32423 32424 32425 32426 32427 32428 32429 32430 32431 32432 32433 32434 32435 32436 32437 32438 32439 32440 32441 32442 32443 32444 32445 32446 32447 32448 32449 32450 32451 32452 32453 32454 32455 32456 32457 32458 32459 32460 32461 32462 32463 32464 32465 32466 32467 32468 32469 32470 32471 32472 32473 32474 32475 32476 32477 32478 32479 32480 32481 32482 32483 32484 32485 32486 32487 32488 32489 32490 32491 0 1 2 3 4 5 6 8 9 10 11 12 13 14 15 16 17 18 19 20 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 235 236 237 238 239 240 241 242 289 290 291 292 293 294 295 296 342 343 344 345 346 347 348 394 395 396 397 398 399 445 446 447 448 449 450 495 496 497 498 499 544 545 546 547 548 592 593 594 595 596 639 640 641 642 685 686 687 688 730 731 732 733 774 775 776 777 778 817 818 819 820 859 860 861 862 863 900 901 902 903 904 940 941 942 943 944 979 980 981 982 983 984 1017 1018 1019 1020 1021 1022 1023 1054 1055 1056 1057 1058 1059 1060 1061 1090 1091 1092 1093 1094 1095 1096 1097 1125 1126 1127 1128 1129 1130 1131 1132 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2339 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2431 2432 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3039 3040 3041 3042 3043 3044 3045 3046 3065 3066 3067 3068 3069 3070 3071 3090 3091 3092 3093 3094 3095 3114 3115 3116 3117 3118 3137 3138 3139 3140 3158 3159 3160 3161 3179 3180 3181 3199 3200 3217 3218 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 7940 7941 7942 7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8028 8029 8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 8077 8078 8079 8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109 8110 8111 8112 8113 8114 8115 8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233 8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260 8261 8262 8263 8264 8265 8266 8267 8268 8269 8270 8271 8272 8273 8274 8275 8276 8277 8278 8279 8280 8281 8282 8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 8345 8346 8347 8348 8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 8361 8362 8363 8364 8365 8366 8367 8368 8369 8370 8371 8372 8373 8374 8375 8376 8377 8378 8379 8380 8381 8382 8383 8384 8385 8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398 8399 8400 8401 8402 8403 8404 8405 8406 8407 8408 8409 8410 8411 8412 8413 8414 8415 8416 8417 8418 8419 8420 8421 8422 8423 8424 8425 8426 8427 8428 8429 8430 8431 8432 8433 8434 8435 8436 8437 8438 8439 8440 8441 8442 8443 8444 8445 8446 8447 8448 8449 8450 8451 8452 8453 8454 8455 8456 8457 8458 8459 8460 8461 8462 8463 8464 8465 8466 8467 8468 8469 8470 8471 8472 8473 8474 8475 8476 8477 8478 8479 8480 8481 8482 8483 8484 8485 8486 8487 8488 8489 8490 8491 8492 8493 8494 8495 8496 8497 8498 8499 8500 8501 8502 8503 8504 8505 8506 8507 8508 8509 8510 8511 8512 8513 8514 8515 8516 8517 8518 8519 8520 8521 8522 8523 8524 8525 8526 8527 8528 8529 8530 8531 8532 8533 8534 8535 8536 8537 8538 8539 8540 8541 8542 8543 8544 8545 8546 8547 8548 8549 8550 8551 8552 8553 8554 8555 8556 8557 8558 8559 8560 8561 8562 8563 8564 8565 8566 8567 8568 8569 8570 8571 8572 8573 8574 8575 8576 8577 8578 8579 8580 8581 8582 8583 8584 8585 8586 8587 8588 8589 8590 8591 8592 8593 8594 8595 8596 8597 8598 8599 8600 8601 8602 8603 8604 8605 8606 8607 8608 8609 8610 8611 8612 8613 8614 8615 8616 8617 8618 8619 8620 8621 8622 8623 8624 8625 8626 8627 8628 8629 8630 8631 8632 8633 8634 8635 8636 8637 8638 8639 8640 8641 8642 8643 8644 8645 8646 8647 8648 8649 8650 8651 8652 8653 8654 8655 8656 8657 8658 8659 8660 8661 8662 8663 8664 8665 8666 8667 8668 8669 8670 8671 8672 8673 8674 8675 8676 8677 8678 8679 8680 8681 8682 8683 8684 8685 8686 8687 8688 8689 8690 8691 8692 8693 8694 8695 8696 8697 8698 8699 8700 8701 8702 8703 8704 8705 8706 8707 8708 8709 8710 8711 8712 8713 8714 8715 8716 8717 8718 8719 8720 8721 8722 8723 8724 8725 8726 8727 8728 8729 8730 8731 8732 8733 8734 8735 8736 8737 8738 8739 8740 8741 8742 8743 8744 8745 8746 8747 8748 8749 8750 8751 8752 8753 8754 8755 8756 8757 8758 8759 8760 8761 8762 8763 8764 8765 8766 8767 8768 8769 8770 8771 8772 8773 8774 8775 8776 8777 8778 8779 8780 8781 8782 8783 8784 8785 8786 8787 8788 8789 8790 8791 8792 8793 8794 8795 8796 8797 8798 8799 8800 8801 8802 8803 8804 8805 8806 8807 8808 8809 8810 8811 8812 8813 8814 8815 8816 8817 8818 8819 8820 8821 8822 8823 8824 8825 8826 8827 8828 8829 8830 8831 8832 8833 8834 8835 8836 8837 8838 8839 8840 8841 8842 8843 8844 8845 8846 8847 8848 8849 8850 8851 8852 8853 8854 8855 8856 8857 8858 8859 8860 8861 8862 8863 8864 8865 8866 8867 8868 8869 8870 8871 8872 8873 8874 8875 8876 8877 8878 8879 8880 8881 8882 8883 8884 8885 8886 8887 8888 8889 8890 8891 8892 8893 8894 8895 8896 8897 8898 8899 8900 8901 8902 8903 8904 8905 8906 8907 8908 8909 8910 8911 8912 8913 8914 8915 8916 8917 8918 8919 8920 8921 8922 8923 8924 8925 8926 8927 8928 8929 8930 8931 8932 8933 8934 8935 8936 8937 8938 8939 8940 8941 8942 8943 8944 8945 8946 8947 8948 8949 8950 8951 8952 8953 8954 8955 8956 8957 8958 8959 8960 8961 8962 8963 8964 8965 8966 8967 8968 8969 8970 8971 8972 8973 8974 8975 8976 8977 8978 8979 8980 8981 8982 8983 8984 8985 8986 8987 8988 8989 8990 8991 8992 8993 8994 8995 8996 8997 8998 8999 9000 9001 9002 9003 9004 9005 9006 9007 9008 9009 9010 9011 9012 9013 9014 9015 9016 9017 9018 9019 9020 9021 9022 9023 9024 9025 9026 9027 9028 9029 9030 9031 9032 9033 9034 9035 9036 9037 9038 9039 9040 9041 9042 9043 9044 9045 9046 9047 9048 9049 9050 9051 9052 9053 9054 9055 9056 9057 9058 9059 9060 9061 9062 9063 9064 9065 9066 9067 9068 9069 9070 9071 9072 9073 9074 9075 9076 9077 9078 9079 9080 9081 9082 9083 9084 9085 9086 9087 9088 9089 9090 9091 9092 9093 9094 9095 9096 9097 9098 9099 9100 9101 9102 9103 9104 9105 9106 9107 9108 9109 9110 9111 9112 9113 9114 9115 9116 9117 9118 9119 9120 9121 9122 9123 9124 9125 9126 9127 9128 9129 9130 9131 9132 9133 9134 9135 9136 9137 9138 9139 9140 9141 9142 9143 9144 9145 9146 9147 9148 9149 9150 9151 9152 9153 9154 9155 9156 9157 9158 9159 9160 9161 9162 9163 9164 9165 9166 9167 9168 9169 9170 9171 9172 9173 9174 9175 9176 9177 9178 9179 9180 9181 9182 9183 9184 9185 9186 9187 9188 9189 9190 9191 9192 9193 9194 9195 9196 9197 9198 9199 9200 9201 9202 9203 9204 9205 9206 9207 9208 9209 9210 9211 9212 9213 9214 9215 9216 9217 9218 9219 9220 9221 9222 9223 9224 9225 9226 9227 9228 9229 9230 9231 9232 9233 9234 9235 9236 9237 9238 9239 9240 9241 9242 9243 9244 9245 9246 9247 9248 9249 9250 9251 9252 9253 9254 9255 9256 9257 9258 9259 9260 9261 9262 9263 9264 9265 9266 9267 9268 9269 9270 9271 9272 9273 9274 9275 9276 9277 9278 9279 9280 9281 9282 9283 9284 9285 9286 9287 9288 9289 9290 9291 9292 9293 9294 9295 9296 9297 9298 9299 9300 9301 9302 9303 9304 9305 9306 9307 9308 9309 9310 9311 9312 9313 9314 9315 9316 9317 9318 9319 9320 9321 9322 9323 9324 9325 9326 9327 9328 9329 9330 9331 9332 9333 9334 9335 9336 9337 9338 9339 9340 9341 9342 9343 9344 9345 9346 9347 9348 9349 9350 9351 9352 9353 9354 9355 9356 9357 9358 9359 9360 9361 9362 9363 9364 9365 9366 9367 9368 9369 9370 9371 9372 9373 9374 9375 9376 9377 9378 9379 9380 9381 9382 9383 9384 9385 9386 9387 9388 9389 9390 9391 9392 9393 9394 9395 9396 9397 9398 9399 9400 9401 9402 9403 9404 9405 9406 9407 9408 9409 9410 9411 9412 9413 9414 9415 9416 9417 9418 9419 9420 9421 9422 9423 9424 9425 9426 9427 9428 9429 9430 9431 9432 9433 9434 9435 9436 9437 9438 9439 9440 9441 9442 9443 9444 9445 9446 9447 9448 9449 9450 9451 9452 9453 9454 9455 9456 9457 9458 9459 9460 9461 9462 9463 9464 9465 9466 9467 9468 9469 9470 9471 9472 9473 9474 9475 9476 9477 9478 9479 9480 9481 9482 9483 9484 9485 9486 9487 9488 9489 9490 9491 9492 9493 9494 9495 9496 9497 9498 9499 9500 9501 9502 9503 9504 9505 9506 9507 9508 9509 9510 9511 9512 9513 9514 9515 9516 9517 9518 9519 9520 9521 9522 9523 9524 9525 9526 9527 9528 9529 9530 9531 9532 9533 9534 9535 9536 9537 9538 9539 9540 9541 9542 9543 9544 9545 9546 9547 9548 9549 9550 9551 9552 9553 9554 9555 9556 9557 9558 9559 9560 9561 9562 9563 9564 9565 9566 9567 9568 9569 9570 9571 9572 9573 9574 9575 9576 9577 9578 9579 9580 9581 9582 9583 9584 9585 9586 9587 9588 9589 9590 9591 9592 9593 9594 9595 9596 9597 9598 9599 9600 9601 9602 9603 9604 9605 9606 9607 9608 9609 9610 9611 9612 9613 9614 9615 9616 9617 9618 9619 9620 9621 9622 9623 9624 9625 9626 9627 9628 9629 9630 9631 9632 9633 9634 9635 9636 9637 9638 9639 9640 9641 9642 9643 9644 9645 9646 9647 9648 9649 9650 9651 9652 9653 9654 9655 9656 9657 9658 9659 9660 9661 9662 9663 9664 9665 9666 9667 9668 9669 9670 9671 9672 9673 9674 9675 9676 9677 9678 9679 9680 9681 9682 9683 9684 9685 9686 9687 9688 9689 9690 9691 9692 9693 9694 9695 9696 9697 9698 9699 9700 9701 9702 9703 9704 9705 9706 9707 9708 9709 9710 9711 9712 9713 9714 9715 9716 9717 9718 9719 9720 9721 9722 9723 9724 9725 9726 9727 9728 9729 9730 9731 9732 9733 9734 9735 9736 9737 9738 9739 9740 9741 9742 9743 9744 9745 9746 9747 9748 9749 9750 9751 9752 9753 9754 9755 9756 9757 9758 9759 9760 9761 9762 9763 9764 9765 9766 9767 9768 9769 9770 9771 9772 9773 9774 9775 9776 9777 9778 9779 9780 9781 9782 9783 9784 9785 9786 9787 9788 9789 9790 9791 9792 9793 9794 9795 9796 9797 9798 9799 9800 9801 9802 9803 9804 9805 9806 9807 9808 9809 9810 9811 9812 9813 9814 9815 9816 9817 9818 9819 9820 9821 9822 9823 9824 9825 9826 9827 9828 9829 9830 9831 9832 9833 9834 9835 9836 9837 9838 9839 9840 9841 9842 9843 9844 9845 9846 9847 9848 9849 9850 9851 9852 9853 9854 9855 9856 9857 9858 9859 9860 9861 9862 9863 9864 9865 9866 9867 9868 9869 9870 9871 9872 9873 9874 9875 9876 9877 9878 9879 9880 9881 9882 9883 9884 9885 9886 9887 9888 9889 9890 9891 9892 9893 9894 9895 9896 9897 9898 9899 9900 9901 9902 9903 9904 9905 9906 9907 9908 9909 9910 9911 9912 9913 9914 9915 9916 9917 9918 9919 9920 9921 9922 9923 9924 9925 9926 9927 9928 9929 9930 9931 9932 9933 9934 9935 9936 9937 9938 9939 9940 9941 9942 9943 9944 9945 9946 9947 9948 9949 9950 9951 9952 9953 9954 9955 9956 9957 9958 9959 9960 9961 9962 9963 9964 9965 9966 9967 9968 9969 9970 9971 9972 9973 9974 9975 9976 9977 9978 9979 9980 9981 9982 9983 9984 9985 9986 9987 9988 9989 9990 9991 9992 9993 9994 9995 9996 9997 9998 9999 10000 10001 10002 10003 10004 10005 10006 10007 10008 10009 10010 10011 10012 10013 10014 10015 10016 10017 10018 10019 10020 10021 10022 10023 10024 10025 10026 10027 10028 10029 10030 10031 10032 10033 10034 10035 10036 10037 10038 10039 10040 10041 10042 10043 10044 10045 10046 10047 10048 10049 10050 10051 10052 10053 10054 10055 10056 10057 10058 10059 10060 10061 10062 10063 10064 10065 10066 10067 10068 10069 10070 10071 10072 10073 10074 10075 10076 10077 10078 10079 10080 10081 10082 10083 10084 10085 10086 10087 10088 10089 10090 10091 10092 10093 10094 10095 10096 10097 10098 10099 10100 10101 10102 10103 10104 10105 10106 10107 10108 10109 10110 10111 10112 10113 10114 10115 10116 10117 10118 10119 10120 10121 10122 10123 10124 10125 10126 10127 10128 10129 10130 10131 10132 10133 10134 10135 10136 10137 10138 10139 10140 10141 10142 10143 10144 10145 10146 10147 10148 10149 10150 10151 10152 10153 10154 10155 10156 10157 10158 10159 10160 10161 10162 10163 10164 10165 10166 10167 10168 10169 10170 10171 10172 10173 10174 10175 10176 10177 10178 10179 10180 10181 10182 10183 10184 10185 10186 10187 10188 10189 10190 10191 10192 10193 10194 10195 10196 10197 10198 10199 10200 10201 10202 10203 10204 10205 10206 10207 10208 10209 10210 10211 10212 10213 10214 10215 10216 10217 10218 10219 10220 10221 10222 10223 10224 10225 10226 10227 10228 10229 10230 10231 10232 10233 10234 10235 10236 10237 10238 10239 10240 10241 10242 10243 10244 10245 10246 10247 10248 10249 10250 10251 10252 10253 10254 10255 10256 10257 10258 10259 10260 10261 10262 10263 10264 10265 10266 10267 10268 10269 10270 10271 10272 10273 10274 10275 10276 10277 10278 10279 10280 10281 10282 10283 10284 10285 10286 10287 10288 10289 10290 10291 10292 10293 10294 10295 10296 10297 10298 10299 10300 10301 10302 10303 10304 10305 10306 10307 10308 10309 10310 10311 10312 10313 10314 10315 10316 10317 10318 10319 10320 10321 10322 10323 10324 10325 10326 10327 10328 10329 10330 10331 10332 10333 10334 10335 10336 10337 10338 10339 10340 10341 10342 10343 10344 10345 10346 10347 10348 10349 10350 10351 10352 10353 10354 10355 10356 10357 10358 10359 10360 10361 10362 10363 10364 10365 10366 10367 10368 10369 10370 10371 10372 10373 10374 10375 10376 10377 10378 10379 10380 10381 10382 10383 10384 10385 10386 10387 10388 10389 10390 10391 10392 10393 10394 10395 10396 10397 10398 10399 10400 10401 10402 10403 10404 10405 10406 10407 10408 10409 10410 10411 10412 10413 10414 10415 10416 10417 10418 10419 10420 10421 10422 10423 10424 10425 10426 10427 10428 10429 10430 10431 10432 10433 10434 10435 10436 10437 10438 10439 10440 10441 10442 10443 10444 10445 10446 10447 10448 10449 10450 10451 10452 10453 10454 10455 10456 10457 10458 10459 10460 10461 10462 10463 10464 10465 10466 10467 10468 10469 10470 10471 10472 10473 10474 10475 10476 10477 10478 10479 10480 10481 10482 10483 10484 10485 10486 10487 10488 10489 10490 10491 10492 10493 10494 10495 10496 10497 10498 10499 10500 10501 10502 10503 10504 10505 10506 10507 10508 10509 10510 10511 10512 10513 10514 10515 10516 10517 10518 10519 10520 10521 10522 10523 10524 10525 10526 10527 10528 10529 10530 10531 10532 10533 10534 10535 10536 10537 10538 10539 10540 10541 10542 10543 10544 10545 10546 10547 10548 10549 10550 10551 10552 10553 10554 10555 10556 10557 10558 10559 10560 10561 10562 10563 10564 10565 10566 10567 10568 10569 10570 10571 10572 10573 10574 10575 10576 10577 10578 10579 10580 10581 10582 10583 10584 10585 10586 10587 10588 10589 10590 10591 10592 10593 10594 10595 10596 10597 10598 10599 10600 10601 10602 10603 10604 10605 10606 10607 10608 10609 10610 10611 10612 10613 10614 10615 10616 10617 10618 10619 10620 10621 10622 10623 10624 10625 10626 10627 10628 10629 10630 10631 10632 10633 10634 10635 10636 10637 10638 10639 10640 10641 10642 10643 10644 10645 10646 10647 10648 10649 10650 10651 10652 10653 10654 10655 10656 10657 10658 10659 10660 10661 10662 10663 10664 10665 10666 10667 10668 10669 10670 10671 10672 10673 10674 10675 10676 10677 10678 10679 10680 10681 10682 10683 10684 10685 10686 10687 10688 10689 10690 10691 10692 10693 10694 10695 10696 10697 10698 10699 10700 10701 10702 10703 10704 10705 10706 10707 10708 10709 10710 10711 10712 10713 10714 10715 10716 10717 10718 10719 10720 10721 10722 10723 10724 10725 10726 10727 10728 10729 10730 10731 10732 10733 10734 10735 10736 10737 10738 10739 10740 10741 10742 10743 10744 10745 10746 10747 10748 10749 10750 10751 10752 10753 10754 10755 10756 10757 10758 10759 10760 10761 10762 10763 10764 10765 10766 10767 10768 10769 10770 10771 10772 10773 10774 10775 10776 10777 10778 10779 10780 10781 10782 10783 10784 10785 10786 10787 10788 10789 10790 10791 10792 10793 10794 10795 10796 10797 10798 10799 10800 10801 10802 10803 10804 10805 10806 10807 10808 10809 10810 10811 10812 10813 10814 10815 10816 10817 10818 10819 10820 10821 10822 10823 10824 10825 10826 10827 10828 10829 10830 10831 10832 10833 10834 10835 10836 10837 10838 10839 10840 10841 10842 10843 10844 10845 10846 10847 10848 10849 10850 10851 10852 10853 10854 10855 10856 10857 10858 10859 10860 10861 10862 10863 10864 10865 10866 10867 10868 10869 10870 10871 10872 10873 10874 10875 10876 10877 10878 10879 10880 10881 10882 10883 10884 10885 10886 10887 10888 10889 10890 10891 10892 10893 10894 10895 10896 10897 10898 10899 10900 10901 10902 10903 10904 10905 10906 10907 10908 10909 10910 10911 10912 10913 10914 10915 10916 10917 10918 10919 10920 10921 10922 10923 10924 10925 10926 10927 10928 10929 10930 10931 10932 10933 10934 10935 10936 10937 10938 10939 10940 10941 10942 10943 10944 10945 10946 10947 10948 10949 10950 10951 10952 10953 10954 10955 10956 10957 10958 10959 10960 10961 10962 10963 10964 10965 10966 10967 10968 10969 10970 10971 10972 10973 10974 10975 10976 10977 10978 10979 10980 10981 10982 10983 10984 10985 10986 10987 10988 10989 10990 10991 10992 10993 10994 10995 10996 10997 10998 10999 11000 11001 11002 11003 11004 11005 11006 11007 11008 11009 11010 11011 11012 11013 11014 11015 11016 11017 11018 11019 11020 11021 11022 11023 11024 11025 11026 11027 11028 11029 11030 11031 11032 11033 11034 11035 11036 11037 11038 11039 11040 11041 11042 11043 11044 11045 11046 11047 11048 11049 11050 11051 11052 11053 11054 11055 11056 11057 11058 11059 11060 11061 11062 11063 11064 11065 11066 11067 11068 11069 11070 11071 11072 11073 11074 11075 11076 11077 11078 11079 11080 11081 11082 11083 11084 11085 11086 11087 11088 11089 11090 11091 11092 11093 11094 11095 11096 11097 11098 11099 11100 11101 11102 11103 11104 11105 11106 11107 11108 11109 11110 11111 11112 11113 11114 11115 11116 11117 11118 11119 11120 11121 11122 11123 11124 11125 11126 11127 11128 11129 11130 11131 11132 11133 11134 11135 11136 11137 11138 11139 11140 11141 11142 11143 11144 11145 11146 11147 11148 11149 11150 11151 11152 11153 11154 11155 11156 11157 11158 11159 11160 11161 11162 11163 11164 11165 11166 11167 11168 11169 11170 11171 11172 11173 11174 11175 11176 11177 11178 11179 11180 11181 11182 11183 11184 11185 11186 11187 11188 11189 11190 11191 11192 11193 11194 11195 11196 11197 11198 11199 11200 11201 11202 11203 11204 11205 11206 11207 11208 11209 11210 11211 11212 11213 11214 11215 11216 11217 11218 11219 11220 11221 11222 11223 11224 11225 11226 11227 11228 11229 11230 11231 11232 11233 11234 11235 11236 11237 11238 11239 11240 11241 11242 11243 11244 11245 11246 11247 11248 11249 11250 11251 11252 11253 11254 11255 11256 11257 11258 11259 11260 11261 11262 11263 11264 11265 11266 11267 11268 11269 11270 11271 11272 11273 11274 11275 11276 11277 11278 11279 11280 11281 11282 11283 11284 11285 11286 11287 11288 11289 11290 11291 11292 11293 11294 11295 11296 11297 11298 11299 11300 11301 11302 11303 11304 11305 11306 11307 11308 11309 11310 11311 11312 11313 11314 11315 11316 11317 11318 11319 11320 11321 11322 11323 11324 11325 11326 11327 11328 11329 11330 11331 11332 11333 11334 11335 11336 11337 11338 11339 11340 11341 11342 11343 11344 11345 11346 11347 11348 11349 11350 11351 11352 11353 11354 11355 11356 11357 11358 11359 11360 11361 11362 11363 11364 11365 11366 11367 11368 11369 11370 11371 11372 11373 11374 11375 11376 11377 11378 11379 11380 11381 11382 11383 11384 11385 11386 11387 11388 11389 11390 11391 11392 11393 11394 11395 11396 11397 11398 11399 11400 11401 11402 11403 11404 11405 11406 11407 11408 11409 11410 11411 11412 11413 11414 11415 11416 11417 11418 11419 11420 11421 11422 11423 11424 11425 11426 11427 11428 11429 11430 11431 11432 11433 11434 11435 11436 11437 11438 11439 11440 11441 11442 11443 11444 11445 11446 11447 11448 11449 11450 11451 11452 11453 11454 11455 11456 11457 11458 11459 11460 11461 11462 11463 11464 11465 11466 11467 11468 11469 11470 11471 11472 11473 11474 11475 11476 11477 11478 11479 11480 11481 11482 11483 11484 11485 11486 11487 11488 11489 11490 11491 11492 11493 11494 11495 11496 11497 11498 11499 11500 11501 11502 11503 11504 11505 11506 11507 11508 11509 11510 11511 11512 11513 11514 11515 11516 11517 11518 11519 11520 11521 11522 11523 11524 11525 11526 11527 11528 11529 11530 11531 11532 11533 11534 11535 11536 11537 11538 11539 11540 11541 11542 11543 11544 11545 11546 11547 11548 11549 11550 11551 11552 11553 11554 11555 11556 11557 11558 11559 11560 11561 11562 11563 11564 11565 11566 11567 11568 11569 11570 11571 11572 11573 11574 11575 11576 11577 11578 11579 11580 11581 11582 11583 11584 11585 11586 11587 11588 11589 11590 11591 11592 11593 11594 11595 11596 11597 11598 11599 11600 11601 11602 11603 11604 11605 11606 11607 11608 11609 11610 11611 11612 11613 11614 11615 11616 11617 11618 11619 11620 11621 11622 11623 11624 11625 11626 11627 11628 11629 11630 11631 11632 11633 11634 11635 11636 11637 11638 11639 11640 11641 11642 11643 11644 11645 11646 11647 11648 11649 11650 11651 11652 11653 11654 11655 11656 11657 11658 11659 11660 11661 11662 11663 11664 11665 11666 11667 11668 11669 11670 11671 11672 11673 11674 11675 11676 11677 11678 11679 11680 11681 11682 11683 11684 11685 11686 11687 11688 11689 11690 11691 11692 11693 11694 11695 11696 11697 11698 11699 11700 11701 11702 11703 11704 11705 11706 11707 11708 11709 11710 11711 11712 11713 11714 11715 11716 11717 11718 11719 11720 11721 11722 11723 11724 11725 11726 11727 11728 11729 11730 11731 11732 11733 11734 11735 11736 11737 11738 11739 11740 11741 11742 11743 11744 11745 11746 11747 11748 11749 11750 11751 11752 11753 11754 11755 11756 11757 11758 11759 11760 11761 11762 11763 11764 11765 11766 11767 11768 11769 11770 11771 11772 11773 11774 11775 11776 11777 11778 11779 11780 11781 11782 11783 11784 11785 11786 11787 11788 11789 11790 11791 11792 11793 11794 11795 11796 11797 11798 11799 11800 11801 11802 11803 11804 11805 11806 11807 11808 11809 11810 11811 11812 11813 11814 11815 11816 11817 11818 11819 11820 11821 11822 11823 11824 11825 11826 11827 11828 11829 11830 11831 11832 11833 11834 11835 11836 11837 11838 11839 11840 11841 11842 11843 11844 11845 11846 11847 11848 11849 11850 11851 11852 11853 11854 11855 11856 11857 11858 11859 11860 11861 11862 11863 11864 11865 11866 11867 11868 11869 11870 11871 11872 11873 11874 11875 11876 11877 11878 11879 11880 11881 11882 11883 11884 11885 11886 11887 11888 11889 11890 11891 11892 11893 11894 11895 11896 11897 11898 11899 11900 11901 11902 11903 11904 11905 11906 11907 11908 11909 11910 11911 11912 11913 11914 11915 11916 11917 11918 11919 11920 11921 11922 11923 11924 11925 11926 11927 11928 11929 11930 11931 11932 11933 11934 11935 11936 11937 11938 11939 11940 11941 11942 11943 11944 11945 11946 11947 11948 11949 11950 11951 11952 11953 11954 11955 11956 11957 11958 11959 11960 11961 11962 11963 11964 11965 11966 11967 11968 11969 11970 11971 11972 11973 11974 11975 11976 11977 11978 11979 11980 11981 11982 11983 11984 11985 11986 11987 11988 11989 11990 11991 11992 11993 11994 11995 11996 11997 11998 11999 12000 12001 12002 12003 12004 12005 12006 12007 12008 12009 12010 12011 12012 12013 12014 12015 12016 12017 12018 12019 12020 12021 12022 12023 12024 12025 12026 12027 12028 12029 12030 12031 12032 12033 12034 12035 12036 12037 12038 12039 12040 12041 12042 12043 12044 12045 12046 12047 12048 12049 12050 12051 12052 12053 12054 12055 12056 12057 12058 12059 12060 12061 12062 12063 12064 12065 12066 12067 12068 12069 12070 12071 12072 12073 12074 12075 12076 12077 12078 12079 12080 12081 12082 12083 12084 12085 12086 12087 12088 12089 12090 12091 12092 12093 12094 12095 12096 12097 12098 12099 12100 12101 12102 12103 12104 12105 12106 12107 12108 12109 12110 12111 12112 12113 12114 12115 12116 12117 12118 12119 12120 12121 12122 12123 12124 12125 12126 12127 12128 12129 12130 12131 12132 12133 12134 12135 12136 12137 12138 12139 12140 12141 12142 12143 12144 12145 12146 12147 12148 12149 12150 12151 12152 12153 12154 12155 12156 12157 12158 12159 12160 12161 12162 12163 12164 12165 12166 12167 12168 12169 12170 12171 12172 12173 12174 12175 12176 12177 12178 12179 12180 12181 12182 12183 12184 12185 12186 12187 12188 12189 12190 12191 12192 12193 12194 12195 12196 12197 12198 12199 12200 12201 12202 12203 12204 12205 12206 12207 12208 12209 12210 12211 12212 12213 12214 12215 12216 12217 12218 12219 12220 12221 12222 12223 12224 12225 12226 12227 12228 12229 12230 12231 12232 12233 12234 12235 12236 12237 12238 12239 12240 12241 12242 12243 12244 12245 12246 12247 12248 12249 12250 12251 12252 12253 12254 12255 12256 12257 12258 12259 12260 12261 12262 12263 12264 12265 12266 12267 12268 12269 12270 12271 12272 12273 12274 12275 12276 12277 12278 12279 12280 12281 12282 12283 12284 12285 12286 12287 12288 12289 12290 12291 12292 12293 12294 12295 12296 12297 12298 12299 12300 12301 12302 12303 12304 12305 12306 12307 12308 12309 12310 12311 12312 12313 12314 12315 12316 12317 12318 12319 12320 12321 12322 12323 12324 12325 12326 12327 12328 12329 12330 12331 12332 12333 12334 12335 12336 12337 12338 12339 12340 12341 12342 12343 12344 12345 12346 12347 12348 12349 12350 12351 12352 12353 12354 12355 12356 12357 12358 12359 12360 12361 12362 12363 12364 12365 12366 12367 12368 12369 12370 12371 12372 12373 12374 12375 12376 12377 12378 12379 12380 12381 12382 12383 12384 12385 12386 12387 12388 12389 12390 12391 12392 12393 12394 12395 12396 12397 12398 12399 12400 12401 12402 12403 12404 12405 12406 12407 12408 12409 12410 12411 12412 12413 12414 12415 12416 12417 12418 12419 12420 12421 12422 12423 12424 12425 12426 12427 12428 12429 12430 12431 12432 12433 12434 12435 12436 12437 12438 12439 12440 12441 12442 12443 12444 12445 12446 12447 12448 12449 12450 12451 12452 12453 12454 12455 12456 12457 12458 12459 12460 12461 12462 12463 12464 12465 12466 12467 12468 12469 12470 12471 12472 12473 12474 12475 12476 12477 12478 12479 12480 12481 12482 12483 12484 12485 12486 12487 12488 12489 12490 12491 12492 12493 12494 12495 12496 12497 12498 12499 12500 12501 12502 12503 12504 12505 12506 12507 12508 12509 12510 12511 12512 12513 12514 12515 12516 12517 12518 12519 12520 12521 12522 12523 12524 12525 12526 12527 12528 12529 12530 12531 12532 12533 12534 12535 12536 12537 12538 12539 12540 12541 12542 12543 12544 12545 12546 12547 12548 12549 12550 12551 12552 12553 12554 12555 12556 12557 12558 12559 12560 12561 12562 12563 12564 12565 12566 12567 12568 12569 12570 12571 12572 12573 12574 12575 12576 12577 12578 12579 12580 12581 12582 12583 12584 12585 12586 12587 12588 12589 12590 12591 12592 12593 12594 12595 12596 12597 12598 12599 12600 12601 12602 12603 12604 12605 12606 12607 12608 12609 12610 12611 12612 12613 12614 12615 12616 12617 12618 12619 12620 12621 12622 12623 12624 12625 12626 12627 12628 12629 12630 12631 12632 12633 12634 12635 12636 12637 12638 12639 12640 12641 12642 12643 12644 12645 12646 12647 12648 12649 12650 12651 12652 12653 12654 12655 12656 12657 12658 12659 12660 12661 12662 12663 12664 12665 12666 12667 12668 12669 12670 12671 12672 12673 12674 12675 12676 12677 12678 12679 12680 12681 12682 12683 12684 12685 12686 12687 12688 12689 12690 12691 12692 12693 12694 12695 12696 12697 12698 12699 12700 12701 12702 12703 12704 12705 12706 12707 12708 12709 12710 12711 12712 12713 12714 12715 12716 12717 12718 12719 12720 12721 12722 12723 12724 12725 12726 12727 12728 12729 12730 12731 12732 12733 12734 12735 12736 12737 12738 12739 12740 12741 12742 12743 12744 12745 12746 12747 12748 12749 12750 12751 12752 12753 12754 12755 12756 12757 12758 12759 12760 12761 12762 12763 12764 12765 12766 12767 12768 12769 12770 12771 12772 12773 12774 12775 12776 12777 12778 12779 12780 12781 12782 12783 12784 12785 12786 12787 12788 12789 12790 12791 12792 12793 12794 12795 12796 12797 12798 12799 12800 12801 12802 12803 12804 12805 12806 12807 12808 12809 12810 12811 12812 12813 12814 12815 12816 12817 12818 12819 12820 12821 12822 12823 12824 12825 12826 12827 12828 12829 12830 12831 12832 12833 12834 12835 12836 12837 12838 12839 12840 12841 12842 12843 12844 12845 12846 12847 12848 12849 12850 12851 12852 12853 12854 12855 12856 12857 12858 12859 12860 12861 12862 12863 12864 12865 12866 12867 12868 12869 12870 12871 12872 12873 12874 12875 12876 12877 12878 12879 12880 12881 12882 12883 12884 12885 12886 12887 12888 12889 12890 12891 12892 12893 12894 12895 12896 12897 12898 12899 12900 12901 12902 12903 12904 12905 12906 12907 12908 12909 12910 12911 12912 12913 12914 12915 12916 12917 12918 12919 12920 12921 12922 12923 12924 12925 12926 12927 12928 12929 12930 12931 12932 12933 12934 12935 12936 12937 12938 12939 12940 12941 12942 12943 12944 12945 12946 12947 12948 12949 12950 12951 12952 12953 12954 12955 12956 12957 12958 12959 12960 12961 12962 12963 12964 12965 12966 12967 12968 12969 12970 12971 12972 12973 12974 12975 12976 12977 12978 12979 12980 12981 12982 12983 12984 12985 12986 12987 12988 12989 12990 12991 12992 12993 12994 12995 12996 12997 12998 12999 13000 13001 13002 13003 13004 13005 13006 13007 13008 13009 13010 13011 13012 13013 13014 13015 13016 13017 13018 13019 13020 13021 13022 13023 13024 13025 13026 13027 13028 13029 13030 13031 13032 13033 13034 13035 13036 13037 13038 13039 13040 13041 13042 13043 13044 13045 13046 13047 13048 13049 13050 13051 13052 13053 13054 13055 13056 13057 13058 13059 13060 13061 13062 13063 13064 13065 13066 13067 13068 13069 13070 13071 13072 13073 13074 13075 13076 13077 13078 13079 13080 13081 13082 13083 13084 13085 13086 13087 13088 13089 13090 13091 13092 13093 13094 13095 13096 13097 13098 13099 13100 13101 13102 13103 13104 13105 13106 13107 13108 13109 13110 13111 13112 13113 13114 13115 13116 13117 13118 13119 13120 13121 13122 13123 13124 13125 13126 13127 13128 13129 13130 13131 13132 13133 13134 13135 13136 13137 13138 13139 13140 13141 13142 13143 13144 13145 13146 13147 13148 13149 13150 13151 13152 13153 13154 13155 13156 13157 13158 13159 13160 13161 13162 13163 13164 13165 13166 13167 13168 13169 13170 13171 13172 13173 13174 13175 13176 13177 13178 13179 13180 13181 13182 13183 13184 13185 13186 13187 13188 13189 13190 13191 13192 13193 13194 13195 13196 13197 13198 13199 13200 13201 13202 13203 13204 13205 13206 13207 13208 13209 13210 13211 13212 13213 13214 13215 13216 13217 13218 13219 13220 13221 13222 13223 13224 13225 13226 13227 13228 13229 13230 13231 13232 13233 13234 13235 13236 13237 13238 13239 13240 13241 13242 13243 13244 13245 13246 13247 13248 13249 13250 13251 13252 13253 13254 13255 13256 13257 13258 13259 13260 13261 13262 13263 13264 13265 13266 13267 13268 13269 13270 13271 13272 13273 13274 13275 13276 13277 13278 13279 13280 13281 13282 13283 13284 13285 13286 13287 13288 13289 13290 13291 13292 13293 13294 13295 13296 13297 13298 13299 13300 13301 13302 13303 13304 13305 13306 13307 13308 13309 13310 13311 13312 13313 13314 13315 13316 13317 13318 13319 13320 13321 13322 13323 13324 13325 13326 13327 13328 13329 13330 13331 13332 13333 13334 13335 13336 13337 13338 13339 13340 13341 13342 13343 13344 13345 13346 13347 13348 13349 13350 13351 13352 13353 13354 13355 13356 13357 13358 13359 13360 13361 13362 13363 13364 13365 13366 13367 13368 13369 13370 13371 13372 13373 13374 13375 13376 13377 13378 13379 13380 13381 13382 13383 13384 13385 13386 13387 13388 13389 13390 13391 13392 13393 13394 13395 13396 13397 13398 13399 13400 13401 13402 13403 13404 13405 13406 13407 13408 13409 13410 13411 13412 13413 13414 13415 13416 13417 13418 13419 13420 13421 13422 13423 13424 13425 13426 13427 13428 13429 13430 13431 13432 13433 13434 13435 13436 13437 13438 13439 13440 13441 13442 13443 13444 13445 13446 13447 13448 13449 13450 13451 13452 13453 13454 13455 13456 13457 13458 13459 13460 13461 13462 13463 13464 13465 13466 13467 13468 13469 13470 13471 13472 13473 13474 13475 13476 13477 13478 13479 13480 13481 13482 13483 13484 13485 13486 13487 13488 13489 13490 13491 13492 13493 13494 13495 13496 13497 13498 13499 13500 13501 13502 13503 13504 13505 13506 13507 13508 13509 13510 13511 13512 13513 13514 13515 13516 13517 13518 13519 13520 13521 13522 13523 13524 13525 13526 13527 13528 13529 13530 13531 13532 13533 13534 13535 13536 13537 13538 13539 13540 13541 13542 13543 13544 13545 13546 13547 13548 13549 13550 13551 13552 13553 13554 13555 13556 13557 13558 13559 13560 13561 13562 13563 13564 13565 13566 13567 13568 13569 13570 13571 13572 13573 13574 13575 13576 13577 13578 13579 13580 13581 13582 13583 13584 13585 13586 13587 13588 13589 13590 13591 13592 13593 13594 13595 13596 13597 13598 13599 13600 13601 13602 13603 13604 13605 13606 13607 13608 13609 13610 13611 13612 13613 13614 13615 13616 13617 13618 13619 13620 13621 13622 13623 13624 13625 13626 13627 13628 13629 13630 13631 13632 13633 13634 13635 13636 13637 13638 13639 13640 13641 13642 13643 13644 13645 13646 13647 13648 13649 13650 13651 13652 13653 13654 13655 13656 13657 13658 13659 13660 13661 13662 13663 13664 13665 13666 13667 13668 13669 13670 13671 13672 13673 13674 13675 13676 13677 13678 13679 13680 13681 13682 13683 13684 13685 13686 13687 13688 13689 13690 13691 13692 13693 13694 13695 13696 13697 13698 13699 13700 13701 13702 13703 13704 13705 13706 13707 13708 13709 13710 13711 13712 13713 13714 13715 13716 13717 13718 13719 13720 13721 13722 13723 13724 13725 13726 13727 13728 13729 13730 13731 13732 13733 13734 13735 13736 13737 13738 13739 13740 13741 13742 13743 13744 13745 13746 13747 13748 13749 13750 13751 13752 13753 13754 13755 13756 13757 13758 13759 13760 13761 13762 13763 13764 13765 13766 13767 13768 13769 13770 13771 13772 13773 13774 13775 13776 13777 13778 13779 13780 13781 13782 13783 13784 13785 13786 13787 13788 13789 13790 13791 13792 13793 13794 13795 13796 13797 13798 13799 13800 13801 13802 13803 13804 13805 13806 13807 13808 13809 13810 13811 13812 13813 13814 13815 13816 13817 13818 13819 13820 13821 13822 13823 13824 13825 13826 13827 13828 13829 13830 13831 13832 13833 13834 13835 13836 13837 13838 13839 13840 13841 13842 13843 13844 13845 13846 13847 13848 13849 13850 13851 13852 13853 13854 13855 13856 13857 13858 13859 13860 13861 13862 13863 13864 13865 13866 13867 13868 13869 13870 13871 13872 13873 13874 13875 13876 13877 13878 13879 13880 13881 13882 13883 13884 13885 13886 13887 13888 13889 13890 13891 13892 13893 13894 13895 13896 13897 13898 13899 13900 13901 13902 13903 13904 13905 13906 13907 13908 13909 13910 13911 13912 13913 13914 13915 13916 13917 13918 13919 13920 13921 13922 13923 13924 13925 13926 13927 13928 13929 13930 13931 13932 13933 13934 13935 13936 13937 13938 13939 13940 13941 13942 13943 13944 13945 13946 13947 13948 13949 13950 13951 13952 13953 13954 13955 13956 13957 13958 13959 13960 13961 13962 13963 13964 13965 13966 13967 13968 13969 13970 13971 13972 13973 13974 13975 13976 13977 13978 13979 13980 13981 13982 13983 13984 13985 13986 13987 13988 13989 13990 13991 13992 13993 13994 13995 13996 13997 13998 13999 14000 14001 14002 14003 14004 14005 14006 14007 14008 14009 14010 14011 14012 14013 14014 14015 14016 14017 14018 14019 14020 14021 14022 14023 14024 14025 14026 14027 14028 14029 14030 14031 14032 14033 14034 14035 14036 14037 14038 14039 14040 14041 14042 14043 14044 14045 14046 14047 14048 14049 14050 14051 14052 14053 14054 14055 14056 14057 14058 14059 14060 14061 14062 14063 14064 14065 14066 14067 14068 14069 14070 14071 14072 14073 14074 14075 14076 14077 14078 14079 14080 14081 14082 14083 14084 14085 14086 14087 14088 14089 14090 14091 14092 14093 14094 14095 14096 14097 14098 14099 14100 14101 14102 14103 14104 14105 14106 14107 14108 14109 14110 14111 14112 14113 14114 14115 14116 14117 14118 14119 14120 14121 14122 14123 14124 14125 14126 14127 14128 14129 14130 14131 14132 14133 14134 14135 14136 14137 14138 14139 14140 14141 14142 14143 14144 14145 14146 14147 14148 14149 14150 14151 14152 14153 14154 14155 14156 14157 14158 14159 14160 14161 14162 14163 14164 14165 14166 14167 14168 14169 14170 14171 14172 14173 14174 14175 14176 14177 14178 14179 14180 14181 14182 14183 14184 14185 14186 14187 14188 14189 14190 14191 14192 14193 14194 14195 14196 14197 14198 14199 14200 14201 14202 14203 14204 14205 14206 14207 14208 14209 14210 14211 14212 14213 14214 14215 14216 14217 14218 14219 14220 14221 14222 14223 14224 14225 14226 14227 14228 14229 14230 14231 14232 14233 14234 14235 14236 14237 14238 14239 14240 14241 14242 14243 14244 14245 14246 14247 14248 14249 14250 14251 14252 14253 14254 14255 14256 14257 14258 14259 14260 14261 14262 14263 14264 14265 14266 14267 14268 14269 14270 14271 14272 14273 14274 14275 14276 14277 14278 14279 14280 14281 14282 14283 14284 14285 14286 14287 14288 14289 14290 14291 14292 14293 14294 14295 14296 14297 14298 14299 14300 14301 14302 14303 14304 14305 14306 14307 14308 14309 14310 14311 14312 14313 14314 14315 14316 14317 14318 14319 14320 14321 14322 14323 14324 14325 14326 14327 14328 14329 14330 14331 14332 14333 14334 14335 14336 14337 14338 14339 14340 14341 14342 14343 14344 14345 14346 14347 14348 14349 14350 14351 14352 14353 14354 14355 14356 14357 14358 14359 14360 14361 14362 14363 14364 14365 14366 14367 14368 14369 14370 14371 14372 14373 14374 14375 14376 14377 14378 14379 14380 14381 14382 14383 14384 14385 14386 14387 14388 14389 14390 14391 14392 14393 14394 14395 14396 14397 14398 14399 14400 14401 14402 14403 14404 14405 14406 14407 14408 14409 14410 14411 14412 14413 14414 14415 14416 14417 14418 14419 14420 14421 14422 14423 14424 14425 14426 14427 14428 14429 14430 14431 14432 14433 14434 14435 14436 14437 14438 14439 14440 14441 14442 14443 14444 14445 14446 14447 14448 14449 14450 14451 14452 14453 14454 14455 14456 14457 14458 14459 14460 14461 14462 14463 14464 14465 14466 14467 14468 14469 14470 14471 14472 14473 14474 14475 14476 14477 14478 14479 14480 14481 14482 14483 14484 14485 14486 14487 14488 14489 14490 14491 14492 14493 14494 14495 14496 14497 14498 14499 14500 14501 14502 14503 14504 14505 14506 14507 14508 14509 14510 14511 14512 14513 14514 14515 14516 14517 14518 14519 14520 14521 14522 14523 14524 14525 14526 14527 14528 14529 14530 14531 14532 14533 14534 14535 14536 14537 14538 14539 14540 14541 14542 14543 14544 14545 14546 14547 14548 14549 14550 14551 14552 14553 14554 14555 14556 14557 14558 14559 14560 14561 14562 14563 14564 14565 14566 14567 14568 14569 14570 14571 14572 14573 14574 14575 14576 14577 14578 14579 14580 14581 14582 14583 14584 14585 14586 14587 14588 14589 14590 14591 14592 14593 14594 14595 14596 14597 14598 14599 14600 14601 14602 14603 14604 14605 14606 14607 14608 14609 14610 14611 14612 14613 14614 14615 14616 14617 14618 14619 14620 14621 14622 14623 14624 14625 14626 14627 14628 14629 14630 14631 14632 14633 14634 14635 14636 14637 14638 14639 14640 14641 14642 14643 14644 14645 14646 14647 14648 14649 14650 14651 14652 14653 14654 14655 14656 14657 14658 14659 14660 14661 14662 14663 14664 14665 14666 14667 14668 14669 14670 14671 14672 14673 14674 14675 14676 14677 14678 14679 14680 14681 14682 14683 14684 14685 14686 14687 14688 14689 14690 14691 14692 14693 14694 14695 14696 14697 14698 14699 14700 14701 14702 14703 14704 14705 14706 14707 14708 14709 14710 14711 14712 14713 14714 14715 14716 14717 14718 14719 14720 14721 14722 14723 14724 14725 14726 14727 14728 14729 14730 14731 14732 14733 14734 14735 14736 14737 14738 14739 14740 14741 14742 14743 14744 14745 14746 14747 14748 14749 14750 14751 14752 14753 14754 14755 14756 14757 14758 14759 14760 14761 14762 14763 14764 14765 14766 14767 14768 14769 14770 14771 14772 14773 14774 14775 14776 14777 14778 14779 14780 14781 14782 14783 14784 14785 14786 14787 14788 14789 14790 14791 14792 14793 14794 14795 14796 14797 14798 14799 14800 14801 14802 14803 14804 14805 14806 14807 14808 14809 14810 14811 14812 14813 14814 14815 14816 14817 14818 14819 14820 14821 14822 14823 14824 14825 14826 14827 14828 14829 14830 14831 14832 14833 14834 14835 14836 14837 14838 14839 14840 14841 14842 14843 14844 14845 14846 14847 14848 14849 14850 14851 14852 14853 14854 14855 14856 14857 14858 14859 14860 14861 14862 14863 14864 14865 14866 14867 14868 14869 14870 14871 14872 14873 14874 14875 14876 14877 14878 14879 14880 14881 14882 14883 14884 14885 14886 14887 14888 14889 14890 14891 14892 14893 14894 14895 14896 14897 14898 14899 14900 14901 14902 14903 14904 14905 14906 14907 14908 14909 14910 14911 14912 14913 14914 14915 14916 14917 14918 14919 14920 14921 14922 14923 14924 14925 14926 14927 14928 14929 14930 14931 14932 14933 14934 14935 14936 14937 14938 14939 14940 14941 14942 14943 14944 14945 14946 14947 14948 14949 14950 14951 14952 14953 14954 14955 14956 14957 14958 14959 14960 14961 14962 14963 14964 14965 14966 14967 14968 14969 14970 14971 14972 14973 14974 14975 14976 14977 14978 14979 14980 14981 14982 14983 14984 14985 14986 14987 14988 14989 14990 14991 14992 14993 14994 14995 14996 14997 14998 14999 15000 15001 15002 15003 15004 15005 15006 15007 15008 15009 15010 15011 15012 15013 15014 15015 15016 15017 15018 15019 15020 15021 15022 15023 15024 15025 15026 15027 15028 15029 15030 15031 15032 15033 15034 15035 15036 15037 15038 15039 15040 15041 15042 15043 15044 15045 15046 15047 15048 15049 15050 15051 15052 15053 15054 15055 15056 15057 15058 15059 15060 15061 15062 15063 15064 15065 15066 15067 15068 15069 15070 15071 15072 15073 15074 15075 15076 15077 15078 15079 15080 15081 15082 15083 15084 15085 15086 15087 15088 15089 15090 15091 15092 15093 15094 15095 15096 15097 15098 15099 15100 15101 15102 15103 15104 15105 15106 15107 15108 15109 15110 15111 15112 15113 15114 15115 15116 15117 15118 15119 15120 15121 15122 15123 15124 15125 15126 15127 15128 15129 15130 15131 15132 15133 15134 15135 15136 15137 15138 15139 15140 15141 15142 15143 15144 15145 15146 15147 15148 15149 15150 15151 15152 15153 15154 15155 15156 15157 15158 15159 15160 15161 15162 15163 15164 15165 15166 15167 15168 15169 15170 15171 15172 15173 15174 15175 15176 15177 15178 15179 15180 15181 15182 15183 15184 15185 15186 15187 15188 15189 15190 15191 15192 15193 15194 15195 15196 15197 15198 15199 15200 15201 15202 15203 15204 15205 15206 15207 15208 15209 15210 15211 15212 15213 15214 15215 15216 15217 15218 15219 15220 15221 15222 15223 15224 15225 15226 15227 15228 15229 15230 15231 15232 15233 15234 15235 15236 15237 15238 15239 15240 15241 15242 15243 15244 15245 15246 15247 15248 15249 15250 15251 15252 15253 15254 15255 15256 15257 15258 15259 15260 15261 15262 15263 15264 15265 15266 15267 15268 15269 15270 15271 15272 15273 15274 15275 15276 15277 15278 15279 15280 15281 15282 15283 15284 15285 15286 15287 15288 15289 15290 15291 15292 15293 15294 15295 15296 15297 15298 15299 15300 15301 15302 15303 15304 15305 15306 15307 15308 15309 15310 15311 15312 15313 15314 15315 15316 15317 15318 15319 15320 15321 15322 15323 15324 15325 15326 15327 15328 15329 15330 15331 15332 15333 15334 15335 15336 15337 15338 15339 15340 15341 15342 15343 15344 15345 15346 15347 15348 15349 15350 15351 15352 15353 15354 15355 15356 15357 15358 15359 15360 15361 15362 15363 15364 15365 15366 15367 15368 15369 15370 15371 15372 15373 15374 15375 15376 15377 15378 15379 15380 15381 15382 15383 15384 15385 15386 15387 15388 15389 15390 15391 15392 15393 15394 15395 15396 15397 15398 15399 15400 15401 15402 15403 15404 15405 15406 15407 15408 15409 15410 15411 15412 15413 15414 15415 15416 15417 15418 15419 15420 15421 15422 15423 15424 15425 15426 15427 15428 15429 15430 15431 15432 15433 15434 15435 15436 15437 15438 15439 15440 15441 15442 15443 15444 15445 15446 15447 15448 15449 15450 15451 15452 15453 15454 15455 15456 15457 15458 15459 15460 15461 15462 15463 15464 15465 15466 15467 15468 15469 15470 15471 15472 15473 15474 15475 15476 15477 15478 15479 15480 15481 15482 15483 15484 15485 15486 15487 15488 15489 15490 15491 15492 15493 15494 15495 15496 15497 15498 15499 15500 15501 15502 15503 15504 15505 15506 15507 15508 15509 15510 15511 15512 15513 15514 15515 15516 15517 15518 15519 15520 15521 15522 15523 15524 15525 15526 15527 15528 15529 15530 15531 15532 15533 15534 15535 15536 15537 15538 15539 15540 15541 15542 15543 15544 15545 15546 15547 15548 15549 15550 15551 15552 15553 15554 15555 15556 15557 15558 15559 15560 15561 15562 15563 15564 15565 15566 15567 15568 15569 15570 15571 15572 15573 15574 15575 15576 15577 15578 15579 15580 15581 15582 15583 15584 15585 15586 15587 15588 15589 15590 15591 15592 15593 15594 15595 15596 15597 15598 15599 15600 15601 15602 15603 15604 15605 15606 15607 15608 15609 15610 15611 15612 15613 15614 15615 15616 15617 15618 15619 15620 15621 15622 15623 15624 15625 15626 15627 15628 15629 15630 15631 15632 15633 15634 15635 15636 15637 15638 15639 15640 15641 15642 15643 15644 15645 15646 15647 15648 15649 15650 15651 15652 15653 15654 15655 15656 15657 15658 15659 15660 15661 15662 15663 15664 15665 15666 15667 15668 15669 15670 15671 15672 15673 15674 15675 15676 15677 15678 15679 15680 15681 15682 15683 15684 15685 15686 15687 15688 15689 15690 15691 15692 15693 15694 15695 15696 15697 15698 15699 15700 15701 15702 15703 15704 15705 15706 15707 15708 15709 15710 15711 15712 15713 15714 15715 15716 15717 15718 15719 15720 15721 15722 15723 15724 15725 15726 15727 15728 15729 15730 15731 15732 15733 15734 15735 15736 15737 15738 15739 15740 15741 15742 15743 15744 15745 15746 15747 15748 15749 15750 15751 15752 15753 15754 15755 15756 15757 15758 15759 15760 15761 15762 15763 15764 15765 15766 15767 15768 15769 15770 15771 15772 15773 15774 15775 15776 15777 15778 15779 15780 15781 15782 15783 15784 15785 15786 15787 15788 15789 15790 15791 15792 15793 15794 15795 15796 15797 15798 15799 15800 15801 15802 15803 15804 15805 15806 15807 15808 15809 15810 15811 15812 15813 15814 15815 15816 15817 15818 15819 15820 15821 15822 15823 15824 15825 15826 15827 15828 15829 15830 15831 15832 15833 15834 15835 15836 15837 15838 15839 15840 15841 15842 15843 15844 15845 15846 15847 15848 15849 15850 15851 15852 15853 15854 15855 15856 15857 15858 15859 15860 15861 15862 15863 15864 15865 15866 15867 15868 15869 15870 15871 15872 15873 15874 15875 15876 15877 15878 15879 15880 15881 15882 15883 15884 15885 15886 15887 15888 15889 15890 15891 15892 15893 15894 15895 15896 15897 15898 15899 15900 15901 15902 15903 15904 15905 15906 15907 15908 15909 15910 15911 15912 15913 15914 15915 15916 15917 15918 15919 15920 15921 15922 15923 15924 15925 15926 15927 15928 15929 15930 15931 15932 15933 15934 15935 15936 15937 15938 15939 15940 15941 15942 15943 15944 15945 15946 15947 15948 15949 15950 15951 15952 15953 15954 15955 15956 15957 15958 15959 15960 15961 15962 15963 15964 15965 15966 15967 15968 15969 15970 15971 15972 15973 15974 15975 15976 15977 15978 15979 15980 15981 15982 15983 15984 15985 15986 15987 15988 15989 15990 15991 15992 15993 15994 15995 15996 15997 15998 15999 16000 16001 16002 16003 16004 16005 16006 16007 16008 16009 16010 16011 16012 16013 16014 16015 16016 16017 16018 16019 16020 16021 16022 16023 16024 16025 16026 16027 16028 16029 16030 16031 16032 16033 16034 16035 16036 16037 16038 16039 16040 16041 16042 16043 16044 16045 16046 16047 16048 16049 16050 16051 16052 16053 16054 16055 16056 16057 16058 16059 16060 16061 16062 16063 16064 16065 16066 16067 16068 16069 16070 16071 16072 16073 16074 16075 16076 16077 16078 16079 16080 16081 16082 16083 16084 16085 16086 16087 16088 16089 16090 16091 16092 16093 16094 16095 16096 16097 16098 16099 16100 16101 16102 16103 16104 16105 16106 16107 16108 16109 16110 16111 16112 16113 16114 16115 16116 16117 16118 16119 16120 16121 16122 16123 16124 16125 16126 16127 16128 16129 16130 16131 16132 16133 16134 16135 16136 16137 16138 16139 16140 16141 16142 16143 16144 16145 16146 16147 16148 16149 16150 16151 16152 16153 16154 16155 16156 16157 16158 16159 16160 16161 16162 16163 16164 16165 16166 16167 16168 16169 16170 16171 16172 16173 16174 16175 16176 16177 16178 16179 16180 16181 16182 16183 16184 16185 16186 16187 16188 16189 16190 16191 16192 16193 16194 16195 16196 16197 16198 16199 16200 16201 16202 16203 16204 16205 16206 16207 16208 16209 16210 16211 16212 16213 16214 16215 16216 16217 16218 16219 16220 16221 16222 16223 16224 16225 16226 16227 16228 16229 16230 16231 16232 16233 16234 16235 16236 16237 16238 16239 16240 16241 16242 16243 16244 16245 16246 16247 16248 16249 16250 16251 16252 16253 16254 16255 16256 16257 16258 16259 16260 16261 16262 16263 16264 16265 16266 16267 16268 16269 16270 16271 16272 16273 16274 16275 16276 16277 16278 16279 16280 16281 16282 16283 16284 16285 16286 16287 16288 16289 16290 16291 16292 16293 16294 16295 16296 16297 16298 16299 16300 16301 16302 16303 16304 16305 16306 16307 16308 16309 16310 16311 16312 16313 16314 16315 16316 16317 16318 16319 16320 16321 16322 16323 16324 16325 16326 16327 16328 16329 16330 16331 16332 16333 16334 16335 16336 16337 16338 16339 16340 16341 16342 16343 16344 16345 16346 16347 16348 16349 16350 16351 16352 16353 16354 16355 16356 16357 16358 16359 16360 16361 16362 16363 16364 16365 16366 16367 16368 16369 16370 16371 16372 16373 16374 16375 16376 16377 16378 16379 16380 16381 16382 16383 16384 16385 16386 16387 16388 16389 16390 16391 16392 16393 16394 16395 16396 16397 16398 16399 16400 16401 16402 16403 16404 16405 16406 16407 16408 16409 16410 16411 16412 16413 16414 16415 16416 16417 16418 16419 16420 16421 16422 16423 16424 16425 16426 16427 16428 16429 16430 16431 16432 16433 16434 16435 16436 16437 16438 16439 16440 16441 16442 16443 16444 16445 16446 16447 16448 16449 16450 16451 16452 16453 16454 16455 16456 16457 16458 16459 16460 16461 16462 16463 16464 16465 16466 16467 16468 16469 16470 16471 16472 16473 16474 16475 16476 16477 16478 16479 16480 16481 16482 16483 16484 16485 16486 16487 16488 16489 16490 16491 16492 16493 16494 16495 16496 16497 16498 16499 16500 16501 16502 16503 16504 16505 16506 16507 16508 16509 16510 16511 16512 16513 16514 16515 16516 16517 16518 16519 16520 16521 16522 16523 16524 16525 16526 16527 16528 16529 16530 16531 16532 16533 16534 16535 16536 16537 16538 16539 16540 16541 16542 16543 16544 16545 16546 16547 16548 16549 16550 16551 16552 16553 16554 16555 16556 16557 16558 16559 16560 16561 16562 16563 16564 16565 16566 16567 16568 16569 16570 16571 16572 16573 16574 16575 16576 16577 16578 16579 16580 16581 16582 16583 16584 16585 16586 16587 16588 16589 16590 16591 16592 16593 16594 16595 16596 16597 16598 16599 16600 16601 16602 16603 16604 16605 16606 16607 16608 16609 16610 16611 16612 16613 16614 16615 16616 16617 16618 16619 16620 16621 16622 16623 16624 16625 16626 16627 16628 16629 16630 16631 16632 16633 16634 16635 16636 16637 16638 16639 16640 16641 16642 16643 16644 16645 16646 16647 16648 16649 16650 16651 16652 16653 16654 16655 16656 16657 16658 16659 16660 16661 16662 16663 16664 16665 16666 16667 16668 16669 16670 16671 16672 16673 16674 16675 16676 16677 16678 16679 16680 16681 16682 16683 16684 16685 16686 16687 16688 16689 16690 16691 16692 16693 16694 16695 16696 16697 16698 16699 16700 16701 16702 16703 16704 16705 16706 16707 16708 16709 16710 16711 16712 16713 16714 16715 16716 16717 16718 16719 16720 16721 16722 16723 16724 16725 16726 16727 16728 16729 16730 16731 16732 16733 16734 16735 16736 16737 16738 16739 16740 16741 16742 16743 16744 16745 16746 16747 16748 16749 16750 16751 16752 16753 16754 16755 16756 16757 16758 16759 16760 16761 16762 16763 16764 16765 16766 16767 16768 16769 16770 16771 16772 16773 16774 16775 16776 16777 16778 16779 16780 16781 16782 16783 16784 16785 16786 16787 16788 16789 16790 16791 16792 16793 16794 16795 16796 16797 16798 16799 16800 16801 16802 16803 16804 16805 16806 16807 16808 16809 16810 16811 16812 16813 16814 16815 16816 16817 16818 16819 16820 16821 16822 16823 16824 16825 16826 16827 16828 16829 16830 16831 16832 16833 16834 16835 16836 16837 16838 16839 16840 16841 16842 16843 16844 16845 16846 16847 16848 16849 16850 16851 16852 16853 16854 16855 16856 16857 16858 16859 16860 16861 16862 16863 16864 16865 16866 16867 16868 16869 16870 16871 16872 16873 16874 16875 16876 16877 16878 16879 16880 16881 16882 16883 16884 16885 16886 16887 16888 16889 16890 16891 16892 16893 16894 16895 16896 16897 16898 16899 16900 16901 16902 16903 16904 16905 16906 16907 16908 16909 16910 16911 16912 16913 16914 16915 16916 16917 16918 16919 16920 16921 16922 16923 16924 16925 16926 16927 16928 16929 16930 16931 16932 16933 16934 16935 16936 16937 16938 16939 16940 16941 16942 16943 16944 16945 16946 16947 16948 16949 16950 16951 16952 16953 16954 16955 16956 16957 16958 16959 16960 16961 16962 16963 16964 16965 16966 16967 16968 16969 16970 16971 16972 16973 16974 16975 16976 16977 16978 16979 16980 16981 16982 16983 16984 16985 16986 16987 16988 16989 16990 16991 16992 16993 16994 16995 16996 16997 16998 16999 17000 17001 17002 17003 17004 17005 17006 17007 17008 17009 17010 17011 17012 17013 17014 17015 17016 17017 17018 17019 17020 17021 17022 17023 17024 17025 17026 17027 17028 17029 17030 17031 17032 17033 17034 17035 17036 17037 17038 17039 17040 17041 17042 17043 17044 17045 17046 17047 17048 17049 17050 17051 17052 17053 17054 17055 17056 17057 17058 17059 17060 17061 17062 17063 17064 17065 17066 17067 17068 17069 17070 17071 17072 17073 17074 17075 17076 17077 17078 17079 17080 17081 17082 17083 17084 17085 17086 17087 17088 17089 17090 17091 17092 17093 17094 17095 17096 17097 17098 17099 17100 17101 17102 17103 17104 17105 17106 17107 17108 17109 17110 17111 17112 17113 17114 17115 17116 17117 17118 17119 17120 17121 17122 17123 17124 17125 17126 17127 17128 17129 17130 17131 17132 17133 17134 17135 17136 17137 17138 17139 17140 17141 17142 17143 17144 17145 17146 17147 17148 17149 17150 17151 17152 17153 17154 17155 17156 17157 17158 17159 17160 17161 17162 17163 17164 17165 17166 17167 17168 17169 17170 17171 17172 17173 17174 17175 17176 17177 17178 17179 17180 17181 17182 17183 17184 17185 17186 17187 17188 17189 17190 17191 17192 17193 17194 17195 17196 17197 17198 17199 17200 17201 17202 17203 17204 17205 17206 17207 17208 17209 17210 17211 17212 17213 17214 17215 17216 17217 17218 17219 17220 17221 17222 17223 17224 17225 17226 17227 17228 17229 17230 17231 17232 17233 17234 17235 17236 17237 17238 17239 17240 17241 17242 17243 17244 17245 17246 17247 17248 17249 17250 17251 17252 17253 17254 17255 17256 17257 17258 17259 17260 17261 17262 17263 17264 17265 17266 17267 17268 17269 17270 17271 17272 17273 17274 17275 17276 17277 17278 17279 17280 17281 17282 17283 17284 17285 17286 17287 17288 17289 17290 17291 17292 17293 17294 17295 17296 17297 17298 17299 17300 17301 17302 17303 17304 17305 17306 17307 17308 17309 17310 17311 17312 17313 17314 17315 17316 17317 17318 17319 17320 17321 17322 17323 17324 17325 17326 17327 17328 17329 17330 17331 17332 17333 17334 17335 17336 17337 17338 17339 17340 17341 17342 17343 17344 17345 17346 17347 17348 17349 17350 17351 17352 17353 17354 17355 17356 17357 17358 17359 17360 17361 17362 17363 17364 17365 17366 17367 17368 17369 17370 17371 17372 17373 17374 17375 17376 17377 17378 17379 17380 17381 17382 17383 17384 17385 17386 17387 17388 17389 17390 17391 17392 17393 17394 17395 17396 17397 17398 17399 17400 17401 17402 17403 17404 17405 17406 17407 17408 17409 17410 17411 17412 17413 17414 17415 17416 17417 17418 17419 17420 17421 17422 17423 17424 17425 17426 17427 17428 17429 17430 17431 17432 17433 17434 17435 17436 17437 17438 17439 17440 17441 17442 17443 17444 17445 17446 17447 17448 17449 17450 17451 17452 17453 17454 17455 17456 17457 17458 17459 17460 17461 17462 17463 17464 17465 17466 17467 17468 17469 17470 17471 17472 17473 17474 17475 17476 17477 17478 17479 17480 17481 17482 17483 17484 17485 17486 17487 17488 17489 17490 17491 17492 17493 17494 17495 17496 17497 17498 17499 17500 17501 17502 17503 17504 17505 17506 17507 17508 17509 17510 17511 17512 17513 17514 17515 17516 17517 17518 17519 17520 17521 17522 17523 17524 17525 17526 17527 17528 17529 17530 17531 17532 17533 17534 17535 17536 17537 17538 17539 17540 17541 17542 17543 17544 17545 17546 17547 17548 17549 17550 17551 17552 17553 17554 17555 17556 17557 17558 17559 17560 17561 17562 17563 17564 17565 17566 17567 17568 17569 17570 17571 17572 17573 17574 17575 17576 17577 17578 17579 17580 17581 17582 17583 17584 17585 17586 17587 17588 17589 17590 17591 17592 17593 17594 17595 17596 17597 17598 17599 17600 17601 17602 17603 17604 17605 17606 17607 17608 17609 17610 17611 17612 17613 17614 17615 17616 17617 17618 17619 17620 17621 17622 17623 17624 17625 17626 17627 17628 17629 17630 17631 17632 17633 17634 17635 17636 17637 17638 17639 17640 17641 17642 17643 17644 17645 17646 17647 17648 17649 17650 17651 17652 17653 17654 17655 17656 17657 17658 17659 17660 17661 17662 17663 17664 17665 17666 17667 17668 17669 17670 17671 17672 17673 17674 17675 17676 17677 17678 17679 17680 17681 17682 17683 17684 17685 17686 17687 17688 17689 17690 17691 17692 17693 17694 17695 17696 17697 17698 17699 17700 17701 17702 17703 17704 17705 17706 17707 17708 17709 17710 17711 17712 17713 17714 17715 17716 17717 17718 17719 17720 17721 17722 17723 17724 17725 17726 17727 17728 17729 17730 17731 17732 17733 17734 17735 17736 17737 17738 17739 17740 17741 17742 17743 17744 17745 17746 17747 17748 17749 17750 17751 17752 17753 17754 17755 17756 17757 17758 17759 17760 17761 17762 17763 17764 17765 17766 17767 17768 17769 17770 17771 17772 17773 17774 17775 17776 17777 17778 17779 17780 17781 17782 17783 17784 17785 17786 17787 17788 17789 17790 17791 17792 17793 17794 17795 17796 17797 17798 17799 17800 17801 17802 17803 17804 17805 17806 17807 17808 17809 17810 17811 17812 17813 17814 17815 17816 17817 17818 17819 17820 17821 17822 17823 17824 17825 17826 17827 17828 17829 17830 17831 17832 17833 17834 17835 17836 17837 17838 17839 17840 17841 17842 17843 17844 17845 17846 17847 17848 17849 17850 17851 17852 17853 17854 17855 17856 17857 17858 17859 17860 17861 17862 17863 17864 17865 17866 17867 17868 17869 17870 17871 17872 17873 17874 17875 17876 17877 17878 17879 17880 17881 17882 17883 17884 17885 17886 17887 17888 17889 17890 17891 17892 17893 17894 17895 17896 17897 17898 17899 17900 17901 17902 17903 17904 17905 17906 17907 17908 17909 17910 17911 17912 17913 17914 17915 17916 17917 17918 17919 17920 17921 17922 17923 17924 17925 17926 17927 17928 17929 17930 17931 17932 17933 17934 17935 17936 17937 17938 17939 17940 17941 17942 17943 17944 17945 17946 17947 17948 17949 17950 17951 17952 17953 17954 17955 17956 17957 17958 17959 17960 17961 17962 17963 17964 17965 17966 17967 17968 17969 17970 17971 17972 17973 17974 17975 17976 17977 17978 17979 17980 17981 17982 17983 17984 17985 17986 17987 17988 17989 17990 17991 17992 17993 17994 17995 17996 17997 17998 17999 18000 18001 18002 18003 18004 18005 18006 18007 18008 18009 18010 18011 18012 18013 18014 18015 18016 18017 18018 18019 18020 18021 18022 18023 18024 18025 18026 18027 18028 18029 18030 18031 18032 18033 18034 18035 18036 18037 18038 18039 18040 18041 18042 18043 18044 18045 18046 18047 18048 18049 18050 18051 18052 18053 18054 18055 18056 18057 18058 18059 18060 18061 18062 18063 18064 18065 18066 18067 18068 18069 18070 18071 18072 18073 18074 18075 18076 18077 18078 18079 18080 18081 18082 18083 18084 18085 18086 18087 18088 18089 18090 18091 18092 18093 18094 18095 18096 18097 18098 18099 18100 18101 18102 18103 18104 18105 18106 18107 18108 18109 18110 18111 18112 18113 18114 18115 18116 18117 18118 18119 18120 18121 18122 18123 18124 18125 18126 18127 18128 18129 18130 18131 18132 18133 18134 18135 18136 18137 18138 18139 18140 18141 18142 18143 18144 18145 18146 18147 18148 18149 18150 18151 18152 18153 18154 18155 18156 18157 18158 18159 18160 18161 18162 18163 18164 18165 18166 18167 18168 18169 18170 18171 18172 18173 18174 18175 18176 18177 18178 18179 18180 18181 18182 18183 18184 18185 18186 18187 18188 18189 18190 18191 18192 18193 18194 18195 18196 18197 18198 18199 18200 18201 18202 18203 18204 18205 18206 18207 18208 18209 18210 18211 18212 18213 18214 18215 18216 18217 18218 18219 18220 18221 18222 18223 18224 18225 18226 18227 18228 18229 18230 18231 18232 18233 18234 18235 18236 18237 18238 18239 18240 18241 18242 18243 18244 18245 18246 18247 18248 18249 18250 18251 18252 18253 18254 18255 18256 18257 18258 18259 18260 18261 18262 18263 18264 18265 18266 18267 18268 18269 18270 18271 18272 18273 18274 18275 18276 18277 18278 18279 18280 18281 18282 18283 18284 18285 18286 18287 18288 18289 18290 18291 18292 18293 18294 18295 18296 18297 18298 18299 18300 18301 18302 18303 18304 18305 18306 18307 18308 18309 18310 18311 18312 18313 18314 18315 18316 18317 18318 18319 18320 18321 18322 18323 18324 18325 18326 18327 18328 18329 18330 18331 18332 18333 18334 18335 18336 18337 18338 18339 18340 18341 18342 18343 18344 18345 18346 18347 18348 18349 18350 18351 18352 18353 18354 18355 18356 18357 18358 18359 18360 18361 18362 18363 18364 18365 18366 18367 18368 18369 18370 18371 18372 18373 18374 18375 18376 18377 18378 18379 18380 18381 18382 18383 18384 18385 18386 18387 18388 18389 18390 18391 18392 18393 18394 18395 18396 18397 18398 18399 18400 18401 18402 18403 18404 18405 18406 18407 18408 18409 18410 18411 18412 18413 18414 18415 18416 18417 18418 18419 18420 18421 18422 18423 18424 18425 18426 18427 18428 18429 18430 18431 18432 18433 18434 18435 18436 18437 18438 18439 18440 18441 18442 18443 18444 18445 18446 18447 18448 18449 18450 18451 18452 18453 18454 18455 18456 18457 18458 18459 18460 18461 18462 18463 18464 18465 18466 18467 18468 18469 18470 18471 18472 18473 18474 18475 18476 18477 18478 18479 18480 18481 18482 18483 18484 18485 18486 18487 18488 18489 18490 18491 18492 18493 18494 18495 18496 18497 18498 18499 18500 18501 18502 18503 18504 18505 18506 18507 18508 18509 18510 18511 18512 18513 18514 18515 18516 18517 18518 18519 18520 18521 18522 18523 18524 18525 18526 18527 18528 18529 18530 18531 18532 18533 18534 18535 18536 18537 18538 18539 18540 18541 18542 18543 18544 18545 18546 18547 18548 18549 18550 18551 18552 18553 18554 18555 18556 18557 18558 18559 18560 18561 18562 18563 18564 18565 18566 18567 18568 18569 18570 18571 18572 18573 18574 18575 18576 18577 18578 18579 18580 18581 18582 18583 18584 18585 18586 18587 18588 18589 18590 18591 18592 18593 18594 18595 18596 18597 18598 18599 18600 18601 18602 18603 18604 18605 18606 18607 18608 18609 18610 18611 18612 18613 18614 18615 18616 18617 18618 18619 18620 18621 18622 18623 18624 18625 18626 18627 18628 18629 18630 18631 18632 18633 18634 18635 18636 18637 18638 18639 18640 18641 18642 18643 18644 18645 18646 18647 18648 18649 18650 18651 18652 18653 18654 18655 18656 18657 18658 18659 18660 18661 18662 18663 18664 18665 18666 18667 18668 18669 18670 18671 18672 18673 18674 18675 18676 18677 18678 18679 18680 18681 18682 18683 18684 18685 18686 18687 18688 18689 18690 18691 18692 18693 18694 18695 18696 18697 18698 18699 18700 18701 18702 18703 18704 18705 18706 18707 18708 18709 18710 18711 18712 18713 18714 18715 18716 18717 18718 18719 18720 18721 18722 18723 18724 18725 18726 18727 18728 18729 18730 18731 18732 18733 18734 18735 18736 18737 18738 18739 18740 18741 18742 18743 18744 18745 18746 18747 18748 18749 18750 18751 18752 18753 18754 18755 18756 18757 18758 18759 18760 18761 18762 18763 18764 18765 18766 18767 18768 18769 18770 18771 18772 18773 18774 18775 18776 18777 18778 18779 18780 18781 18782 18783 18784 18785 18786 18787 18788 18789 18790 18791 18792 18793 18794 18795 18796 18797 18798 18799 18800 18801 18802 18803 18804 18805 18806 18807 18808 18809 18810 18811 18812 18813 18814 18815 18816 18817 18818 18819 18820 18821 18822 18823 18824 18825 18826 18827 18828 18829 18830 18831 18832 18833 18834 18835 18836 18837 18838 18839 18840 18841 18842 18843 18844 18845 18846 18847 18848 18849 18850 18851 18852 18853 18854 18855 18856 18857 18858 18859 18860 18861 18862 18863 18864 18865 18866 18867 18868 18869 18870 18871 18872 18873 18874 18875 18876 18877 18878 18879 18880 18881 18882 18883 18884 18885 18886 18887 18888 18889 18890 18891 18892 18893 18894 18895 18896 18897 18898 18899 18900 18901 18902 18903 18904 18905 18906 18907 18908 18909 18910 18911 18912 18913 18914 18915 18916 18917 18918 18919 18920 18921 18922 18923 18924 18925 18926 18927 18928 18929 18930 18931 18932 18933 18934 18935 18936 18937 18938 18939 18940 18941 18942 18943 18944 18945 18946 18947 18948 18949 18950 18951 18952 18953 18954 18955 18956 18957 18958 18959 18960 18961 18962 18963 18964 18965 18966 18967 18968 18969 18970 18971 18972 18973 18974 18975 18976 18977 18978 18979 18980 18981 18982 18983 18984 18985 18986 18987 18988 18989 18990 18991 18992 18993 18994 18995 18996 18997 18998 18999 19000 19001 19002 19003 19004 19005 19006 19007 19008 19009 19010 19011 19012 19013 19014 19015 19016 19017 19018 19019 19020 19021 19022 19023 19024 19025 19026 19027 19028 19029 19030 19031 19032 19033 19034 19035 19036 19037 19038 19039 19040 19041 19042 19043 19044 19045 19046 19047 19048 19049 19050 19051 19052 19053 19054 19055 19056 19057 19058 19059 19060 19061 19062 19063 19064 19065 19066 19067 19068 19069 19070 19071 19072 19073 19074 19075 19076 19077 19078 19079 19080 19081 19082 19083 19084 19085 19086 19087 19088 19089 19090 19091 19092 19093 19094 19095 19096 19097 19098 19099 19100 19101 19102 19103 19104 19105 19106 19107 19108 19109 19110 19111 19112 19113 19114 19115 19116 19117 19118 19119 19120 19121 19122 19123 19124 19125 19126 19127 19128 19129 19130 19131 19132 19133 19134 19135 19136 19137 19138 19139 19140 19141 19142 19143 19144 19145 19146 19147 19148 19149 19150 19151 19152 19153 19154 19155 19156 19157 19158 19159 19160 19161 19162 19163 19164 19165 19166 19167 19168 19169 19170 19171 19172 19173 19174 19175 19176 19177 19178 19179 19180 19181 19182 19183 19184 19185 19186 19187 19188 19189 19190 19191 19192 19193 19194 19195 19196 19197 19198 19199 19200 19201 19202 19203 19204 19205 19206 19207 19208 19209 19210 19211 19212 19213 19214 19215 19216 19217 19218 19219 19220 19221 19222 19223 19224 19225 19226 19227 19228 19229 19230 19231 19232 19233 19234 19235 19236 19237 19238 19239 19240 19241 19242 19243 19244 19245 19246 19247 19248 19249 19250 19251 19252 19253 19254 19255 19256 19257 19258 19259 19260 19261 19262 19263 19264 19265 19266 19267 19268 19269 19270 19271 19272 19273 19274 19275 19276 19277 19278 19279 19280 19281 19282 19283 19284 19285 19286 19287 19288 19289 19290 19291 19292 19293 19294 19295 19296 19297 19298 19299 19300 19301 19302 19303 19304 19305 19306 19307 19308 19309 19310 19311 19312 19313 19314 19315 19316 19317 19318 19319 19320 19321 19322 19323 19324 19325 19326 19327 19328 19329 19330 19331 19332 19333 19334 19335 19336 19337 19338 19339 19340 19341 19342 19343 19344 19345 19346 19347 19348 19349 19350 19351 19352 19353 19354 19355 19356 19357 19358 19359 19360 19361 19362 19363 19364 19365 19366 19367 19368 19369 19370 19371 19372 19373 19374 19375 19376 19377 19378 19379 19380 19381 19382 19383 19384 19385 19386 19387 19388 19389 19390 19391 19392 19393 19394 19395 19396 19397 19398 19399 19400 19401 19402 19403 19404 19405 19406 19407 19408 19409 19410 19411 19412 19413 19414 19415 19416 19417 19418 19419 19420 19421 19422 19423 19424 19425 19426 19427 19428 19429 19430 19431 19432 19433 19434 19435 19436 19437 19438 19439 19440 19441 19442 19443 19444 19445 19446 19447 19448 19449 19450 19451 19452 19453 19454 19455 19456 19457 19458 19459 19460 19461 19462 19463 19464 19465 19466 19467 19468 19469 19470 19471 19472 19473 19474 19475 19476 19477 19478 19479 19480 19481 19482 19483 19484 19485 19486 19487 19488 19489 19490 19491 19492 19493 19494 19495 19496 19497 19498 19499 19500 19501 19502 19503 19504 19505 19506 19507 19508 19509 19510 19511 19512 19513 19514 19515 19516 19517 19518 19519 19520 19521 19522 19523 19524 19525 19526 19527 19528 19529 19530 19531 19532 19533 19534 19535 19536 19537 19538 19539 19540 19541 19542 19543 19544 19545 19546 19547 19548 19549 19550 19551 19552 19553 19554 19555 19556 19557 19558 19559 19560 19561 19562 19563 19564 19565 19566 19567 19568 19569 19570 19571 19572 19573 19574 19575 19576 19577 19578 19579 19580 19581 19582 19583 19584 19585 19586 19587 19588 19589 19590 19591 19592 19593 19594 19595 19596 19597 19598 19599 19600 19601 19602 19603 19604 19605 19606 19607 19608 19609 19610 19611 19612 19613 19614 19615 19616 19617 19618 19619 19620 19621 19622 19623 19624 19625 19626 19627 19628 19629 19630 19631 19632 19633 19634 19635 19636 19637 19638 19639 19640 19641 19642 19643 19644 19645 19646 19647 19648 19649 19650 19651 19652 19653 19654 19655 19656 19657 19658 19659 19660 19661 19662 19663 19664 19665 19666 19667 19668 19669 19670 19671 19672 19673 19674 19675 19676 19677 19678 19679 19680 19681 19682 19683 19684 19685 19686 19687 19688 19689 19690 19691 19692 19693 19694 19695 19696 19697 19698 19699 19700 19701 19702 19703 19704 19705 19706 19707 19708 19709 19710 19711 19712 19713 19714 19715 19716 19717 19718 19719 19720 19721 19722 19723 19724 19725 19726 19727 19728 19729 19730 19731 19732 19733 19734 19735 19736 19737 19738 19739 19740 19741 19742 19743 19744 19745 19746 19747 19748 19749 19750 19751 19752 19753 19754 19755 19756 19757 19758 19759 19760 19761 19762 19763 19764 19765 19766 19767 19768 19769 19770 19771 19772 19773 19774 19775 19776 19777 19778 19779 19780 19781 19782 19783 19784 19785 19786 19787 19788 19789 19790 19791 19792 19793 19794 19795 19796 19797 19798 19799 19800 19801 19802 19803 19804 19805 19806 19807 19808 19809 19810 19811 19812 19813 19814 19815 19816 19817 19818 19819 19820 19821 19822 19823 19824 19825 19826 19827 19828 19829 19830 19831 19844 19845 19846 19847 19848 19849 19850 19851 19852 19853 19854 19855 19856 19857 19858 19859 19860 19861 19862 19887 19888 19889 19890 19891 19892 19893 19894 19895 19896 19897 19898 19899 19900 19901 19902 19903 19904 19905 19906 19907 19908 19909 19910 19911 19912 19913 19914 19915 19916 19917 19918 19919 19920 19921 19922 19923 19924 19925 19926 19927 19928 19929 19930 19931 19932 19933 19934 19935 19936 19937 19938 19939 19940 19941 19942 19943 19944 19945 19946 19947 19948 19949 19950 19951 19952 19953 19954 19955 19956 19957 19958 19959 19960 19961 19962 19963 19964 19965 19966 19967 19968 19969 19970 19971 19972 19973 19974 19975 19976 19977 19978 19979 19980 19981 19982 19983 19984 19985 19986 19987 19988 19989 19990 19991 19992 19993 19994 19995 19996 19997 19998 19999 20000 20001 20002 20003 20004 20005 20006 20007 20008 20009 20010 20011 20012 20013 20014 20015 20016 20017 20018 20019 20020 20021 20022 20023 20024 20025 20026 20027 20028 20029 20030 20031 20032 20033 20034 20035 20036 20037 20038 20039 20040 20041 20042 20043 20044 20045 20046 20047 20048 20049 20050 20051 20052 20053 20054 20055 20056 20057 20058 20059 20060 20061 20062 20063 20064 20065 20066 20067 20068 20069 20070 20071 20072 20073 20074 20075 20076 20077 20078 20079 20080 20081 20082 20083 20084 20085 20086 20087 20088 20089 20090 20091 20092 20093 20094 20095 20096 20097 20098 20099 20100 20101 20102 20103 20104 20105 20106 20107 20108 20109 20110 20111 20112 20113 20114 20115 20116 20117 20118 20119 20120 20121 20122 20123 20124 20125 20126 20127 20128 20129 20130 20131 20132 20133 20134 20135 20136 20137 20138 20139 20140 20141 20142 20143 20144 20145 20146 20147 20148 20149 20150 20151 20152 20153 20154 20155 20156 20157 20158 20159 20160 20161 20162 20163 20164 20165 20166 20167 20168 20169 20170 20171 20172 20173 20174 20175 20176 20177 20178 20179 20180 20181 20182 20183 20184 20185 20186 20187 20188 20189 20190 20191 20192 20193 20194 20195 20196 20197 20198 20199 20200 20201 20202 20203 20204 20205 20207 20208 20209 20210 20211 20212 20213 20214 20215 20216 20217 20218 20219 20220 20221 20222 20223 20224 20225 20226 20227 20228 20229 20230 20231 20232 20233 20234 20235 20236 20237 20238 20239 20240 20241 20242 20243 20244 20245 20246 20247 20248 20249 20250 20251 20252 20253 20256 20257 20258 20259 20260 20261 20262 20263 20264 20265 20266 20267 20268 20269 20270 20271 20272 20273 20274 20275 20276 20277 20278 20279 20280 20281 20282 20283 20284 20285 20286 20287 20288 20289 20290 20291 20292 20293 20294 20295 20296 20297 20298 20299 20300 20304 20305 20306 20307 20308 20309 20310 20311 20312 20313 20314 20315 20316 20317 20318 20319 20320 20321 20322 20323 20324 20325 20326 20327 20328 20329 20330 20331 20332 20333 20334 20335 20336 20337 20338 20339 20340 20341 20342 20343 20344 20345 20346 20347 20351 20352 20353 20354 20355 20356 20357 20358 20359 20360 20361 20362 20363 20364 20365 20366 20367 20368 20369 20370 20371 20372 20373 20374 20375 20376 20377 20378 20379 20380 20381 20382 20383 20384 20385 20386 20387 20388 20389 20390 20391 20392 20393 20397 20398 20399 20400 20401 20402 20403 20404 20405 20406 20407 20408 20409 20410 20411 20412 20413 20414 20415 20416 20417 20418 20419 20420 20421 20422 20423 20424 20425 20426 20427 20428 20429 20430 20431 20432 20433 20434 20435 20436 20437 20438 20439 20442 20443 20444 20445 20446 20447 20448 20449 20450 20451 20452 20453 20454 20455 20456 20457 20458 20459 20460 20461 20462 20463 20464 20465 20466 20467 20468 20469 20470 20471 20472 20473 20474 20475 20476 20477 20478 20479 20480 20481 20482 20486 20487 20488 20489 20490 20491 20492 20493 20494 20495 20496 20497 20498 20499 20500 20501 20502 20503 20504 20505 20506 20507 20508 20509 20510 20511 20512 20513 20514 20515 20516 20517 20518 20519 20520 20521 20522 20523 20524 20525 20529 20530 20531 20532 20533 20534 20535 20536 20537 20538 20539 20540 20541 20542 20543 20544 20545 20546 20547 20548 20549 20550 20551 20552 20553 20554 20555 20556 20557 20558 20559 20560 20561 20562 20563 20564 20565 20566 20567 20568 20571 20572 20573 20574 20575 20576 20577 20578 20579 20580 20581 20582 20583 20584 20585 20586 20587 20588 20589 20590 20591 20592 20593 20594 20595 20596 20597 20598 20599 20600 20601 20602 20603 20604 20605 20606 20607 20608 20609 20612 20613 20614 20615 20616 20617 20618 20619 20620 20621 20622 20623 20624 20625 20626 20627 20628 20629 20630 20631 20632 20633 20634 20635 20636 20637 20638 20639 20640 20641 20642 20643 20644 20645 20646 20647 20648 20649 20652 20653 20654 20655 20656 20657 20658 20659 20660 20661 20662 20663 20664 20665 20666 20667 20668 20669 20670 20671 20672 20673 20674 20675 20676 20677 20678 20679 20680 20681 20682 20683 20684 20685 20686 20687 20688 20691 20692 20693 20694 20695 20696 20697 20698 20699 20700 20701 20702 20703 20704 20705 20706 20707 20708 20709 20710 20711 20712 20713 20714 20715 20716 20717 20718 20719 20720 20721 20722 20723 20724 20725 20726 20729 20730 20731 20732 20733 20734 20735 20736 20737 20738 20739 20740 20741 20742 20743 20744 20745 20746 20747 20748 20749 20750 20751 20752 20753 20754 20755 20756 20757 20758 20759 20760 20761 20762 20763 20764 20766 20767 20768 20769 20770 20771 20772 20773 20774 20775 20776 20777 20778 20779 20780 20781 20782 20783 20784 20785 20786 20787 20788 20789 20790 20791 20792 20793 20794 20795 20796 20797 20798 20799 20800 20802 20803 20804 20805 20806 20807 20808 20809 20810 20811 20812 20813 20814 20815 20816 20817 20818 20819 20820 20821 20822 20823 20824 20825 20826 20827 20828 20829 20830 20831 20832 20833 20834 20835 20837 20838 20839 20840 20841 20842 20843 20844 20845 20846 20847 20848 20849 20850 20851 20852 20853 20854 20855 20856 20857 20858 20859 20860 20861 20862 20863 20864 20865 20866 20867 20868 20869 20871 20872 20873 20874 20875 20876 20877 20878 20879 20880 20881 20882 20883 20884 20885 20886 20887 20888 20889 20890 20891 20892 20893 20894 20895 20896 20897 20898 20899 20900 20901 20902 20904 20905 20906 20907 20908 20909 20910 20911 20912 20913 20914 20915 20916 20917 20918 20919 20920 20921 20922 20923 20924 20925 20926 20927 20928 20929 20930 20931 20932 20933 20934 20935 20936 20937 20938 20939 20940 20941 20942 20943 20944 20945 20946 20947 20948 20949 20950 20951 20952 20953 20954 20955 20956 20957 20958 20959 20960 20961 20962 20963 20964 20965 20966 20967 20968 20969 20970 20971 20972 20973 20974 20975 20976 20977 20978 20979 20980 20981 20982 20983 20984 20985 20986 20987 20988 20989 20990 20991 20992 20993 20994 20995 20997 20998 20999 21000 21001 21002 21003 21004 21005 21006 21007 21008 21009 21010 21011 21012 21013 21014 21015 21016 21017 21018 21019 21020 21021 21022 21023 21024 21025 21026 21027 21028 21029 21030 21031 21032 21033 21034 21035 21036 21037 21038 21039 21040 21041 21042 21043 21044 21045 21046 21047 21048 21049 21050 21051 21052 21053 21054 21055 21056 21057 21058 21059 21060 21061 21062 21063 21064 21065 21066 21067 21068 21069 21070 21071 21072 21073 21074 21075 21076 21077 21078 21079 21080 21081 21082 21083 21084 21085 21086 21087 21088 21089 21090 21091 21092 21093 21094 21095 21096 21097 21098 21099 21100 21101 21102 21103 21104 21105 21106 21107 21108 21109 21110 21111 21112 21113 21114 21115 21116 21117 21118 21119 21120 21121 21122 21123 21124 21125 21126 21127 21128 21129 21130 21131 21132 21133 21134 21135 21136 21137 21138 21139 21140 21141 21142 21143 21144 21145 21146 21147 21148 21149 21150 21151 21152 21153 21154 21155 21156 21157 21158 21159 21160 21161 21162 21163 21164 21165 21166 21167 21168 21169 21170 21171 21172 21173 21174 21175 21176 21177 21178 21179 21180 21181 21182 21183 21184 21185 21186 21187 21188 21189 21190 21191 21192 21193 21194 21195 21196 21197 21198 21199 21200 21201 21202 21203 21204 21205 21206 21207 21208 21209 21210 21211 21212 21213 21214 21215 21216 21217 21218 21219 21220 21221 21222 21223 21224 21225 21226 21227 21228 21229 21230 21231 21232 21233 21234 21235 21236 21237 21238 21239 21240 21241 21242 21243 21244 21245 21246 21247 21248 21249 21250 21251 21252 21253 21254 21255 21256 21257 21258 21259 21260 21261 21262 21263 21264 21265 21266 21267 21268 21269 21270 21271 21272 21273 21274 21275 21276 21277 21278 21279 21280 21281 21282 21283 21284 21285 21286 21287 21288 21289 21290 21291 21292 21293 21294 21295 21296 21297 21298 21299 21300 21301 21302 21303 21304 21305 21306 21307 21308 21309 21310 21311 21312 21313 21314 21315 21316 21317 21318 21319 21320 21321 21322 21323 21324 21325 21326 21327 21328 21329 21330 21331 21332 21333 21334 21335 21336 21337 21338 21339 21340 21341 21342 21343 21344 21345 21346 21347 21348 21349 21350 21351 21352 21353 21354 21355 21356 21357 21358 21359 21360 21361 21362 21363 21364 21365 21366 21367 21368 21369 21370 21371 21372 21373 21374 21375 21376 21377 21378 21379 21380 21381 21382 21383 21384 21385 21386 21387 21388 21389 21390 21391 21392 21393 21394 21395 21396 21397 21398 21399 21400 21401 21402 21403 21404 21405 21406 21407 21408 21409 21411 21412 21413 21414 21417 21418 21419 21432 21433 21434 21435 21436 21437 21438 21439 21440 21441 21442 21443 21444 21445 21446 21447 21448 21449 21450 21451 21452 21453 21454 21455 21456 21457 21458 21459 21460 21461 21462 21463 21464 21465 21466 21467 21468 21469 21470 21471 21472 21473 21474 21475 21476 21477 21478 21479 21480 21481 21482 21483 21484 21485 21486 21487 21488 21489 21490 21491 21492 21493 21494 21495 21496 21497 21498 21499 21500 21501 21502 21503 21504 21505 21506 21507 21508 21509 21510 21511 21512 21513 21514 21515 21516 21517 21518 21519 21520 21521 21522 21523 21524 21525 21526 21527 21528 21529 21530 21531 21532 21533 21534 21535 21536 21537 21538 21539 21540 21541 21542 21543 21544 21545 21546 21547 21548 21549 21550 21551 21552 21553 21554 21555 21556 21557 21558 21559 21560 21561 21562 21563 21564 21565 21566 21567 21568 21569 21570 21571 21572 21573 21574 21575 21576 21577 21578 21579 21580 21581 21582 21583 21584 21585 21586 21587 21588 21589 21590 21591 21592 21593 21594 21595 21596 21597 21598 21599 21600 21601 21602 21603 21604 21605 21606 21607 21608 21609 21610 21611 21612 21613 21614 21615 21616 21617 21618 21619 21620 21621 21622 21623 21624 21625 21626 21627 21628 21629 21630 21631 21632 21633 21634 21635 21636 21637 21638 21639 21640 21641 21642 21643 21644 21645 21646 21647 21648 21649 21650 21651 21652 21653 21654 21655 21656 21657 21658 21659 21660 21661 21662 21663 21664 21665 21666 21667 21668 21669 21670 21671 21672 21673 21674 21675 21676 21677 21678 21679 21680 21681 21682 21683 21684 21685 21686 21687 21688 21689 21690 21691 21692 21693 21694 21695 21696 21697 21698 21699 21700 21701 21702 21703 21704 21705 21706 21707 21708 21709 21710 21711 21712 21713 21714 21715 21716 21717 21718 21719 21720 21721 21722 21723 21724 21725 21726 21727 21728 21729 21730 21731 21732 21733 21734 21735 21736 21737 21738 21739 21740 21741 21742 21743 21744 21745 21746 21747 21748 21749 21750 21751 21752 21753 21754 21755 21756 21757 21758 21759 21760 21761 21762 21763 21764 21765 21766 21767 21768 21769 21770 21771 21772 21773 21774 21775 21776 21777 21778 21779 21780 21781 21782 21783 21784 21785 21786 21787 21788 21789 21790 21791 21792 21793 21794 21795 21796 21797 21798 21799 21800 21801 21802 21803 21804 21805 21806 21807 21808 21809 21810 21811 21812 21813 21814 21815 21816 21817 21818 21819 21820 21821 21822 21823 21824 21825 21826 21827 21828 21829 21830 21831 21832 21833 21834 21835 21836 21837 21838 21839 21840 21841 21842 21843 21844 21845 21846 21847 21848 21849 21850 21851 21852 21853 21854 21855 21856 21857 21858 21859 21860 21861 21862 21863 21864 21865 21866 21867 21868 21869 21870 21871 21872 21873 21874 21875 21876 21877 21878 21879 21880 21881 21882 21883 21884 21885 21886 21887 21888 21889 21890 21891 21892 21893 21894 21895 21896 21897 21898 21899 21900 21901 21902 21903 21904 21905 21906 21907 21908 21909 21910 21911 21912 21913 21914 21915 21916 21917 21918 21919 21920 21921 21922 21923 21924 21925 21926 21927 21928 21929 21930 21931 21932 21933 21934 21935 21936 21937 21938 21939 21940 21941 21942 21943 21944 21945 21946 21947 21948 21949 21950 21951 21952 21953 21954 21955 21956 21957 21958 21959 21960 21961 21962 21963 21964 21965 21966 21967 21968 21969 21970 21971 21972 21973 21974 21975 21976 21977 21978 21979 21980 21981 21982 21983 21984 21985 21986 21987 21988 21989 21990 21991 21992 21993 21994 21995 21996 21997 21998 21999 22000 22001 22002 22003 22004 22005 22006 22007 22008 22009 22010 22011 22012 22013 22014 22015 22016 22017 22018 22019 22020 22021 22022 22023 22024 22025 22026 22027 22028 22029 22030 22031 22032 22033 22034 22035 22036 22037 22038 22039 22040 22041 22042 22043 22044 22045 22046 22047 22048 22049 22050 22051 22052 22053 22054 22055 22056 22057 22058 22059 22060 22061 22062 22063 22064 22065 22066 22067 22068 22069 22070 22071 22072 22073 22074 22075 22076 22077 22078 22079 22080 22081 22082 22083 22084 22085 22086 22087 22088 22089 22090 22091 22092 22093 22094 22095 22096 22097 22098 22099 22100 22101 22102 22103 22104 22105 22106 22107 22108 22109 22110 22111 22112 22113 22114 22115 22116 22117 22118 22119 22120 22121 22122 22123 22124 22125 22126 22127 22128 22129 22130 22131 22132 22133 22134 22135 22136 22137 22138 22139 22140 22141 22142 22143 22144 22145 22146 22147 22148 22149 22150 22151 22152 22153 22154 22155 22156 22157 22158 22159 22160 22161 22162 22163 22164 22165 22166 22167 22168 22169 22170 22171 22172 22173 22174 22175 22176 22177 22178 22179 22180 22181 22182 22183 22184 22185 22186 22187 22188 22189 22190 22191 22192 22193 22194 22195 22196 22197 22198 22199 22200 22201 22202 22203 22204 22205 22206 22207 22208 22209 22210 22211 22212 22213 22214 22215 22216 22217 22218 22219 22220 22221 22222 22223 22224 22225 22226 22227 22228 22229 22230 22231 22232 22233 22234 22235 22236 22237 22238 22239 22240 22241 22242 22243 22244 22245 22246 22247 22248 22249 22250 22251 22252 22253 22254 22255 22256 22257 22258 22259 22260 22261 22262 22263 22264 22265 22266 22267 22268 22269 22270 22271 22272 22273 22274 22275 22276 22277 22278 22279 22280 22281 22282 22283 22284 22285 22286 22287 22288 22289 22290 22291 22292 22293 22294 22295 22296 22297 22298 22299 22300 22301 22302 22303 22304 22305 22306 22307 22308 22309 22310 22311 22312 22313 22314 22315 22316 22317 22318 22319 22320 22321 22322 22323 22324 22325 22326 22327 22328 22329 22330 22331 22332 22333 22334 22335 22336 22337 22338 22339 22340 22341 22342 22343 22344 22345 22346 22347 22348 22349 22350 22351 22352 22353 22354 22355 22356 22357 22358 22359 22360 22361 22362 22363 22364 22365 22366 22367 22368 22369 22370 22371 22372 22373 22374 22375 22376 22377 22378 22379 22380 22381 22382 22383 22384 22385 22386 22387 22388 22389 22390 22391 22392 22393 22394 22395 22396 22397 22398 22399 22400 22401 22402 22403 22404 22405 22406 22407 22408 22409 22410 22411 22412 22413 22414 22415 22416 22417 22418 22419 22420 22421 22422 22423 22424 22425 22426 22427 22428 22429 22430 22431 22432 22433 22434 22435 22436 22437 22438 22439 22440 22441 22442 22443 22444 22445 22446 22447 22448 22449 22450 22451 22452 22453 22454 22455 22456 22457 22458 22459 22460 22461 22462 22463 22464 22465 22466 22467 22468 22469 22470 22471 22472 22473 22474 22475 22476 22477 22478 22479 22480 22481 22482 22483 22484 22485 22486 22487 22488 22489 22490 22491 22492 22493 22494 22495 22496 22497 22498 22499 22500 22501 22502 22503 22504 22505 22506 22507 22508 22509 22510 22511 22512 22513 22514 22515 22516 22517 22518 22519 22520 22521 22522 22523 22524 22525 22526 22527 22528 22529 22530 22531 22532 22533 22534 22535 22536 22537 22538 22539 22540 22541 22542 22543 22544 22545 22546 22547 22548 22549 22550 22551 22552 22553 22554 22555 22556 22557 22558 22559 22560 22561 22562 22563 22564 22565 22566 22567 22568 22569 22570 22571 22572 22573 22574 22575 22576 22577 22578 22579 22580 22581 22582 22583 22584 22585 22586 22587 22588 22589 22590 22591 22592 22593 22594 22595 22596 22597 22598 22599 22600 22601 22602 22603 22604 22605 22606 22607 22608 22609 22610 22611 22612 22613 22614 22615 22616 22617 22618 22619 22620 22621 22622 22623 22624 22625 22626 22627 22628 22629 22630 22631 22632 22633 22634 22635 22636 22637 22638 22639 22640 22641 22642 22643 22644 22645 22646 22647 22648 22649 22650 22651 22652 22653 22654 22655 22656 22657 22658 22659 22660 22661 22662 22663 22664 22665 22666 22667 22668 22669 22670 22671 22672 22673 22674 22675 22676 22677 22678 22679 22680 22681 22682 22683 22684 22685 22686 22687 22688 22689 22690 22691 22692 22693 22694 22695 22696 22697 22698 22699 22700 22701 22702 22703 22704 22705 22706 22707 22708 22709 22710 22711 22712 22713 22714 22715 22716 22717 22718 22719 22720 22721 22722 22723 22724 22725 22726 22727 22728 22729 22730 22731 22732 22733 22734 22735 22736 22737 22738 22739 22740 22741 22742 22743 22744 22745 22746 22747 22748 22749 22750 22751 22752 22753 22754 22755 22756 22757 22758 22759 22760 22761 22762 22763 22764 22765 22766 22767 22768 22769 22770 22771 22772 22773 22774 22775 22776 22777 22778 22779 22780 22781 22782 22783 22784 22785 22786 22787 22788 22789 22790 22791 22792 22793 22794 22795 22796 22797 22798 22799 22800 22801 22802 22803 22804 22805 22806 22807 22808 22809 22810 22811 22812 22813 22814 22815 22816 22817 22818 22819 22820 22821 22822 22823 22824 22825 22826 22827 22828 22829 22830 22831 22832 22833 22834 22835 22836 22837 22838 22839 22840 22841 22842 22843 22844 22845 22846 22847 22848 22849 22850 22851 22852 22853 22854 22855 22856 22857 22858 22859 22860 22861 22862 22863 22864 22865 22866 22867 22868 22869 22870 22871 22872 22873 22874 22875 22876 22877 22878 22879 22880 22881 22882 22883 22884 22885 22886 22887 22888 22889 22890 22891 22892 22893 22894 22895 22896 22897 22898 22899 22900 22901 22902 22903 22904 22905 22906 22907 22908 22909 22910 22911 22912 22913 22914 22915 22916 22917 22918 22919 22920 22921 22922 22923 22924 22925 22926 22927 22928 22929 22930 22931 22932 22933 22934 22935 22936 22937 22938 22939 22940 22941 22942 22943 22944 22945 22946 22947 22948 22949 22950 22951 22952 22953 22954 22955 22956 22957 22958 22959 22960 22961 22962 22963 22964 22965 22966 22967 22968 22969 22970 22971 22972 22973 22974 22975 22976 22977 22978 22979 22980 22981 22982 22983 22984 22985 22986 22987 22988 22989 22990 22991 22992 22993 22994 22995 22996 22997 22998 22999 23000 23001 23002 23003 23004 23005 23006 23007 23008 23009 23010 23011 23012 23013 23014 23015 23016 23017 23018 23019 23020 23021 23022 23023 23024 23025 23026 23027 23028 23029 23030 23031 23032 23033 23034 23035 23036 23037 23038 23039 23040 23041 23042 23043 23044 23045 23046 23047 23048 23049 23050 23051 23052 23053 23054 23055 23056 23057 23058 23059 23060 23061 23062 23063 23064 23065 23066 23067 23068 23069 23070 23071 23072 23073 23074 23075 23076 23077 23078 23079 23080 23081 23082 23083 23084 23085 23086 23087 23088 23089 23090 23091 23092 23093 23094 23095 23096 23097 23098 23099 23100 23101 23102 23103 23104 23105 23106 23107 23108 23109 23110 23111 23112 23113 23114 23115 23116 23117 23118 23119 23120 23121 23122 23123 23124 23125 23126 23127 23128 23129 23130 23131 23132 23133 23134 23135 23136 23137 23138 23139 23140 23141 23142 23143 23144 23145 23146 23147 23148 23149 23150 23151 23152 23153 23154 23155 23156 23157 23158 23159 23160 23161 23162 23163 23164 23165 23166 23167 23168 23169 23170 23171 23172 23173 23174 23175 23176 23177 23178 23179 23180 23181 23182 23183 23184 23185 23186 23187 23188 23189 23190 23191 23192 23193 23194 23195 23196 23197 23198 23199 23200 23201 23202 23203 23204 23205 23206 23207 23208 23209 23210 23211 23212 23213 23214 23215 23216 23217 23218 23219 23220 23221 23222 23223 23224 23225 23226 23227 23228 23229 23230 23231 23232 23233 23234 23235 23236 23237 23238 23239 23240 23241 23242 23243 23244 23245 23246 23247 23248 23249 23250 23251 23252 23253 23254 23255 23256 23257 23258 23259 23260 23261 23262 23263 23264 23265 23266 23267 23268 23269 23270 23271 23272 23273 23274 23275 23276 23277 23278 23279 23280 23281 23282 23283 23284 23285 23286 23287 23288 23289 23290 23291 23292 23293 23294 23295 23296 23297 23298 23299 23300 23301 23302 23303 23304 23305 23306 23307 23308 23309 23310 23311 23312 23313 23314 23315 23316 23317 23318 23319 23320 23321 23322 23323 23324 23325 23326 23327 23328 23329 23330 23331 23332 23333 23334 23335 23336 23337 23338 23339 23340 23341 23342 23343 23344 23345 23346 23347 23348 23349 23350 23351 23352 23353 23354 23355 23356 23357 23358 23359 23360 23361 23362 23363 23364 23365 23366 23367 23368 23369 23370 23371 23372 23373 23374 23375 23376 23377 23378 23379 23380 23381 23382 23383 23384 23385 23386 23387 23388 23389 23390 23391 23392 23393 23394 23395 23396 23397 23398 23399 23400 23401 23402 23403 23404 23405 23406 23407 23408 23409 23410 23411 23412 23413 23414 23415 23416 23417 23418 23419 23420 23421 23422 23423 23424 23425 23426 23427 23428 23429 23430 23431 23432 23433 23434 23435 23436 23437 23438 23439 23440 23441 23442 23443 23444 23445 23446 23447 23448 23449 23450 23451 23452 23453 23454 23455 23456 23457 23458 23459 23460 23461 23462 23463 23464 23465 23466 23467 23468 23469 23470 23471 23472 23473 23474 23475 23476 23477 23478 23479 23480 23481 23482 23483 23484 23485 23486 23487 23488 23489 23490 23491 23492 23493 23494 23495 23496 23497 23498 23499 23500 23501 23502 23503 23504 23505 23506 23507 23508 23509 23510 23511 23512 23513 23514 23515 23516 23517 23518 23519 23520 23521 23522 23523 23524 23525 23526 23527 23528 23529 23530 23531 23532 23533 23534 23535 23536 23537 23538 23539 23540 23541 23542 23543 23544 23545 23546 23547 23548 23549 23550 23551 23552 23553 23554 23555 23556 23557 23558 23559 23560 23561 23562 23563 23564 23565 23566 23567 23568 23569 23570 23571 23572 23573 23574 23575 23576 23577 23578 23579 23580 23581 23582 23583 23584 23585 23586 23587 23588 23589 23590 23591 23592 23593 23594 23595 23596 23597 23598 23599 23600 23601 23602 23603 23604 23605 23606 23607 23608 23609 23610 23611 23612 23613 23614 23615 23616 23617 23618 23619 23620 23621 23622 23623 23624 23625 23626 23627 23628 23629 23630 23631 23632 23633 23634 23635 23636 23637 23638 23639 23640 23641 23642 23643 23644 23645 23646 23647 23648 23649 23650 23651 23652 23653 23654 23655 23656 23657 23658 23659 23660 23661 23662 23663 23664 23665 23666 23667 23668 23669 23670 23671 23672 23673 23674 23675 23676 23677 23678 23679 23680 23681 23682 23683 23684 23685 23686 23687 23688 23689 23690 23691 23692 23693 23694 23695 23696 23697 23698 23699 23700 23701 23702 23703 23704 23705 23706 23707 23708 23709 23710 23711 23712 23713 23714 23715 23716 23717 23718 23719 23720 23721 23722 23723 23724 23725 23726 23727 23728 23729 23730 23731 23732 23733 23734 23735 23736 23737 23738 23739 23740 23741 23742 23743 23744 23745 23746 23747 23748 23749 23750 23751 23752 23753 23754 23755 23756 23757 23758 23759 23760 23761 23762 23763 23764 23765 23766 23767 23768 23769 23770 23771 23772 23773 23774 23775 23776 23777 23778 23779 23780 23781 23782 23783 23784 23785 23786 23787 23788 23789 23790 23791 23792 23793 23794 23795 23796 23797 23798 23799 23800 23801 23802 23803 23804 23805 23806 23807 23808 23809 23810 23811 23812 23813 23814 23815 23816 23817 23818 23819 23820 23821 23822 23823 23824 23825 23826 23827 23828 23829 23830 23831 23832 23833 23834 23835 23836 23837 23838 23839 23840 23841 23842 23843 23844 23845 23846 23847 23848 23849 23850 23851 23852 23853 23854 23855 23856 23857 23858 23859 23860 23861 23862 23863 23864 23865 23866 23867 23868 23869 23870 23871 23872 23873 23874 23875 23876 23877 23878 23879 23880 23881 23882 23883 23884 23885 23886 23887 23888 23889 23890 23891 23892 23893 23894 23895 23896 23897 23898 23899 23900 23901 23902 23903 23904 23905 23906 23907 23908 23909 23910 23911 23912 23913 23914 23915 23916 23917 23918 23919 23920 23921 23922 23923 23924 23925 23926 23927 23928 23929 23930 23931 23932 23933 23934 23935 23936 23937 23938 23939 23940 23941 23942 23943 23944 23945 23946 23947 23948 23949 23950 23951 23952 23953 23954 23955 23956 23957 23958 23959 23960 23961 23962 23963 23964 23965 23966 23967 23968 23969 23970 23971 23972 23973 23974 23975 23976 23977 23978 23979 23980 23981 23982 23983 23984 23985 23986 23987 23988 23989 23990 23991 23992 23993 23994 23995 23996 23997 23998 23999 24000 24001 24002 24003 24004 24005 24006 24007 24008 24009 24010 24011 24012 24013 24014 24015 24016 24017 24018 24019 24020 24021 24022 24023 24024 24025 24026 24027 24028 24029 24030 24031 24032 24033 24034 24035 24036 24037 24038 24039 24040 24041 24042 24043 24044 24045 24046 24047 24048 24049 24050 24051 24052 24053 24054 24055 24056 24057 24058 24059 24060 24061 24062 24063 24064 24065 24066 24067 24068 24069 24070 24071 24072 24073 24074 24075 24076 24077 24078 24079 24080 24081 24082 24083 24084 24085 24086 24087 24088 24089 24090 24091 24092 24093 24094 24095 24096 24097 24098 24099 24100 24101 24102 24103 24104 24105 24106 24107 24108 24109 24110 24111 24112 24113 24114 24115 24116 24117 24118 24119 24120 24121 24122 24123 24124 24125 24126 24127 24128 24129 24130 24131 24132 24133 24134 24135 24136 24137 24138 24139 24140 24141 24142 24143 24144 24145 24146 24147 24148 24149 24150 24151 24152 24153 24154 24155 24156 24157 24158 24159 24160 24161 24162 24163 24164 24165 24166 24167 24168 24169 24170 24171 24172 24173 24174 24175 24176 24177 24178 24179 24180 24181 24182 24183 24184 24185 24186 24187 24188 24189 24190 24191 24192 24193 24194 24195 24196 24197 24198 24199 24200 24201 24202 24203 24204 24205 24206 24207 24208 24209 24210 24211 24212 24213 24214 24215 24216 24217 24218 24219 24220 24221 24222 24223 24224 24225 24226 24227 24228 24229 24230 24231 24232 24233 24234 24235 24236 24237 24238 24239 24240 24241 24242 24243 24244 24245 24246 24247 24248 24249 24250 24251 24252 24253 24254 24255 24256 24257 24258 24259 24260 24261 24262 24263 24264 24265 24266 24267 24268 24269 24270 24271 24272 24273 24274 24275 24276 24277 24278 24279 24280 24281 24282 24283 24284 24285 24286 24287 24288 24289 24290 24291 24292 24293 24294 24295 24296 24297 24298 24299 24300 24301 24302 24303 24304 24305 24306 24307 24308 24309 24310 24311 24312 24313 24314 24315 24316 24317 24318 24319 24320 24321 24322 24323 24324 24325 24326 24327 24328 24329 24330 24331 24332 24333 24334 24335 24336 24337 24338 24339 24340 24341 24342 24343 24344 24345 24346 24347 24348 24349 24350 24351 24352 24353 24354 24355 24356 24357 24358 24359 24360 24361 24362 24363 24364 24365 24366 24367 24368 24369 24370 24371 24372 24373 24374 24375 24376 24377 24378 24379 24380 24381 24382 24383 24384 24385 24386 24387 24388 24389 24390 24391 24392 24393 24394 24395 24396 24397 24398 24399 24400 24401 24402 24403 24404 24405 24406 24407 24408 24409 24410 24411 24412 24413 24414 24415 24416 24417 24418 24419 24420 24421 24422 24423 24424 24425 24426 24427 24428 24429 24430 24431 24432 24433 24434 24435 24436 24437 24438 24439 24440 24441 24442 24443 24444 24445 24446 24447 24448 24449 24450 24451 24452 24453 24454 24455 24456 24457 24458 24459 24460 24461 24462 24463 24464 24465 24466 24467 24468 24469 24470 24471 24472 24473 24474 24475 24476 24477 24478 24479 24480 24481 24482 24483 24484 24485 24486 24487 24488 24489 24490 24491 24492 24493 24494 24495 24496 24497 24498 24499 24500 24501 24502 24503 24504 24505 24506 24507 24508 24509 24510 24511 24512 24513 24514 24515 24516 24517 24518 24519 24520 24521 24522 24523 24524 24525 24526 24527 24528 24529 24530 24531 24532 24533 24534 24535 24536 24537 24538 24539 24540 24541 24542 24543 24544 24545 24546 24547 24548 24549 24550 24551 24552 24553 24554 24555 24556 24557 24558 24559 24560 24561 24562 24563 24564 24565 24566 24567 24568 24569 24570 24571 24572 24573 24574 24575 24576 24577 24578 24579 24580 24581 24582 24583 24584 24585 24586 24587 24588 24589 24590 24591 24592 24593 24594 24595 24596 24597 24598 24599 24600 24601 24602 24603 24604 24605 24606 24607 24608 24609 24610 24611 24612 24613 24614 24615 24616 24617 24618 24619 24620 24621 24622 24623 24624 24625 24626 24627 24628 24629 24630 24631 24632 24633 24634 24635 24636 24637 24638 24639 24640 24641 24642 24643 24644 24645 24646 24647 24648 24649 24650 24651 24652 24653 24654 24655 24656 24657 24658 24659 24660 24661 24662 24663 24664 24665 24666 24667 24668 24669 24670 24671 24672 24673 24674 24675 24676 24677 24678 24679 24680 24681 24682 24683 24684 24685 24686 24687 24688 24689 24690 24691 24692 24693 24694 24695 24696 24697 24698 24699 24700 24701 24702 24703 24704 24705 24706 24707 24708 24709 24710 24711 24712 24713 24714 24715 24716 24717 24718 24719 24720 24721 24722 24723 24724 24725 24726 24727 24728 24729 24730 24731 24732 24733 24734 24735 24736 24737 24738 24739 24740 24741 24742 24743 24744 24745 24746 24747 24748 24749 24750 24751 24752 24753 24754 24755 24756 24757 24758 24759 24760 24761 24762 24763 24764 24765 24766 24767 24768 24769 24770 24771 24772 24773 24774 24775 24776 24777 24778 24779 24780 24781 24782 24783 24784 24785 24786 24787 24788 24789 24790 24791 24792 24793 24794 24795 24796 24797 24798 24799 24800 24801 24802 24803 24804 24805 24806 24807 24808 24809 24810 24811 24812 24813 24814 24815 24816 24817 24818 24819 24820 24821 24822 24823 24824 24825 24826 24827 24828 24829 24830 24831 24832 24833 24834 24835 24836 24837 24838 24839 24840 24841 24842 24843 24844 24845 24846 24847 24848 24849 24850 24851 24852 24853 24854 24855 24856 24857 24858 24859 24860 24861 24862 24863 24864 24865 24866 24867 24868 24869 24870 24871 24872 24873 24874 24875 24876 24877 24878 24879 24880 24881 24882 24883 24884 24885 24886 24887 24888 24889 24890 24891 24892 24893 24894 24895 24896 24897 24898 24899 24900 24901 24902 24903 24904 24905 24906 24907 24908 24909 24910 24911 24912 24913 24914 24915 24916 24917 24918 24919 24920 24921 24922 24923 24924 24925 24926 24927 24928 24929 24930 24931 24932 24933 24934 24935 24936 24937 24938 24939 24940 24941 24942 24943 24944 24945 24946 24947 24948 24949 24950 24951 24952 24953 24954 24955 24956 24957 24958 24959 24960 24961 24962 24963 24964 24965 24966 24967 24968 24969 24970 24971 24972 24973 24974 24975 24976 24977 24978 24979 24980 24981 24982 24983 24984 24985 24986 24987 24988 24989 24990 24991 24992 24993 24994 24995 24996 24997 24998 24999 25000 25001 25002 25003 25004 25005 25006 25007 25008 25009 25010 25011 25012 25013 25014 25015 25016 25017 25018 25019 25020 25021 25022 25023 25024 25025 25026 25027 25028 25029 25030 25031 25032 25033 25034 25035 25036 25037 25038 25039 25040 25041 25042 25043 25044 25045 25046 25047 25048 25049 25050 25051 25052 25053 25054 25055 25056 25057 25058 25059 25060 25061 25062 25063 25064 25065 25066 25067 25068 25069 25070 25071 25072 25073 25074 25075 25076 25077 25078 25079 25080 25081 25082 25083 25084 25085 25086 25087 25088 25089 25090 25091 25092 25093 25094 25095 25096 25097 25098 25099 25100 25101 25102 25103 25104 25105 25106 25107 25108 25109 25110 25111 25112 25113 25114 25115 25116 25117 25118 25119 25120 25121 25122 25123 25124 25125 25126 25127 25128 25129 25130 25131 25132 25133 25134 25135 25136 25137 25138 25139 25140 25141 25142 25143 25144 25145 25146 25147 25148 25149 25150 25151 25152 25153 25154 25155 25156 25157 25158 25159 25160 25161 25162 25163 25164 25165 25166 25167 25168 25169 25170 25171 25172 25173 25174 25175 25176 25177 25178 25179 25180 25181 25182 25183 25184 25185 25186 25187 25188 25189 25190 25191 25192 25193 25194 25195 25196 25197 25198 25199 25200 25201 25202 25203 25204 25205 25206 25207 25208 25209 25210 25211 25212 25213 25214 25215 25216 25217 25218 25219 25220 25221 25222 25223 25224 25225 25226 25227 25228 25229 25230 25231 25232 25233 25234 25235 25236 25237 25238 25239 25240 25241 25242 25243 25244 25245 25246 25247 25248 25249 25250 25251 25252 25253 25254 25255 25256 25257 25258 25259 25260 25261 25262 25263 25264 25265 25266 25267 25268 25269 25270 25271 25272 25273 25274 25275 25276 25277 25278 25279 25280 25281 25282 25283 25284 25285 25286 25287 25288 25289 25290 25291 25292 25293 25294 25295 25296 25297 25298 25299 25300 25301 25302 25303 25304 25305 25306 25307 25308 25309 25310 25311 25312 25313 25314 25315 25316 25317 25318 25319 25320 25321 25322 25323 25324 25325 25326 25327 25328 25329 25330 25331 25332 25333 25334 25335 25336 25337 25338 25339 25340 25341 25342 25343 25344 25345 25346 25347 25348 25349 25350 25351 25352 25353 25354 25355 25356 25357 25358 25359 25360 25361 25362 25363 25364 25365 25366 25367 25368 25369 25370 25371 25372 25373 25374 25375 25376 25377 25378 25379 25380 25381 25382 25383 25384 25385 25386 25387 25388 25389 25390 25391 25392 25393 25394 25395 25396 25397 25398 25399 25400 25401 25402 25403 25404 25405 25406 25407 25408 25409 25410 25411 25412 25413 25414 25415 25416 25417 25418 25419 25420 25421 25422 25423 25424 25425 25426 25427 25428 25429 25430 25431 25432 25433 25434 25435 25436 25437 25438 25439 25440 25441 25442 25443 25444 25445 25446 25447 25448 25449 25450 25451 25452 25453 25454 25455 25456 25457 25458 25459 25460 25461 25462 25463 25464 25465 25466 25467 25468 25469 25470 25471 25472 25473 25474 25475 25476 25477 25478 25479 25480 25481 25482 25483 25484 25485 25486 25487 25488 25489 25490 25491 25492 25493 25494 25495 25496 25497 25498 25499 25500 25501 25502 25503 25504 25505 25506 25507 25508 25509 25510 25511 25512 25513 25514 25515 25516 25517 25518 25519 25520 25521 25522 25523 25524 25525 25526 25527 25528 25529 25530 25531 25532 25533 25534 25535 25536 25537 25538 25539 25540 25541 25542 25543 25544 25545 25546 25547 25548 25549 25550 25551 25552 25553 25554 25555 25556 25557 25558 25559 25560 25561 25562 25563 25564 25565 25566 25567 25568 25569 25570 25571 25572 25573 25574 25575 25576 25577 25578 25579 25580 25581 25582 25583 25584 25585 25586 25587 25588 25589 25590 25591 25592 25593 25594 25595 25596 25597 25598 25599 25600 25601 25602 25603 25604 25605 25606 25607 25608 25609 25610 25611 25612 25613 25614 25615 25616 25617 25618 25619 25620 25621 25622 25623 25624 25625 25626 25627 25628 25629 25630 25631 25632 25633 25634 25635 25636 25637 25638 25639 25640 25641 25642 25643 25644 25645 25646 25647 25648 25649 25650 25651 25652 25653 25654 25655 25656 25657 25658 25659 25660 25661 25662 25663 25664 25665 25666 25667 25668 25669 25670 25671 25672 25673 25674 25675 25676 25677 25678 25679 25680 25681 25682 25683 25684 25685 25686 25687 25688 25689 25690 25691 25692 25693 25694 25695 25696 25697 25698 25699 25700 25701 25702 25703 25704 25705 25706 25707 25708 25709 25710 25711 25712 25713 25714 25715 25716 25717 25718 25719 25720 25721 25722 25723 25724 25725 25726 25727 25728 25729 25730 25731 25732 25733 25734 25735 25736 25737 25738 25739 25740 25741 25742 25743 25744 25745 25746 25747 25748 25749 25750 25751 25752 25753 25754 25755 25756 25757 25758 25759 25760 25761 25762 25763 25764 25765 25766 25767 25768 25769 25770 25771 25772 25773 25774 25775 25776 25777 25778 25779 25780 25781 25782 25783 25784 25785 25786 25787 25788 25789 25790 25791 25792 25793 25794 25795 25796 25797 25798 25799 25800 25801 25802 25803 25804 25805 25806 25807 25808 25809 25810 25811 25812 25813 25814 25815 25816 25817 25818 25819 25820 25821 25822 25823 25824 25825 25826 25827 25828 25829 25830 25831 25832 25833 25834 25835 25836 25837 25838 25839 25840 25841 25842 25843 25844 25845 25846 25847 25848 25849 25850 25851 25852 25853 25854 25855 25856 25857 25858 25859 25860 25861 25862 25863 25864 25865 25866 25867 25868 25869 25870 25871 25872 25873 25874 25875 25876 25877 25878 25879 25880 25881 25882 25883 25884 25885 25886 25887 25888 25889 25890 25891 25892 25893 25894 25895 25896 25897 25898 25899 25900 25901 25902 25903 25904 25905 25906 25907 25908 25909 25910 25911 25912 25913 25914 25915 25916 25917 25918 25919 25920 25921 25922 25923 25924 25925 25926 25927 25928 25929 25930 25931 25932 25933 25934 25935 25936 25937 25938 25939 25940 25941 25942 25943 25944 25945 25946 25947 25948 25949 25950 25951 25952 25953 25954 25955 25956 25957 25958 25959 25960 25961 25962 25963 25964 25965 25966 25967 25968 25969 25970 25971 25972 25973 25974 25975 25976 25977 25978 25979 25980 25981 25982 25983 25984 25985 25986 25987 25988 25989 25990 25991 25992 25993 25994 25995 25996 25997 25998 25999 26000 26001 26002 26003 26004 26005 26006 26007 26008 26009 26010 26011 26012 26013 26014 26015 26016 26017 26018 26019 26020 26021 26022 26023 26024 26025 26026 26027 26028 26029 26030 26031 26032 26033 26034 26035 26036 26037 26038 26039 26040 26041 26042 26043 26044 26045 26046 26047 26048 26049 26050 26051 26052 26053 26054 26055 26056 26057 26058 26059 26060 26061 26062 26063 26064 26065 26066 26067 26068 26069 26070 26071 26072 26073 26074 26075 26076 26077 26078 26079 26080 26081 26082 26083 26084 26085 26086 26087 26088 26089 26090 26091 26092 26093 26094 26095 26096 26097 26098 26099 26100 26101 26102 26103 26104 26105 26106 26107 26108 26109 26110 26111 26112 26113 26114 26115 26116 26117 26118 26119 26120 26121 26122 26123 26124 26125 26126 26127 26128 26129 26130 26131 26132 26133 26134 26135 26136 26137 26138 26139 26140 26141 26142 26143 26144 26145 26146 26147 26148 26149 26150 26151 26152 26153 26154 26155 26156 26157 26158 26159 26160 26161 26162 26163 26164 26165 26166 26167 26168 26169 26170 26171 26172 26173 26174 26175 26176 26177 26178 26179 26180 26181 26182 26183 26184 26185 26186 26187 26188 26189 26190 26191 26192 26193 26194 26195 26196 26197 26198 26199 26200 26201 26202 26203 26204 26205 26206 26207 26208 26209 26210 26211 26212 26213 26214 26215 26216 26217 26218 26219 26220 26221 26222 26223 26224 26225 26226 26227 26228 26229 26230 26231 26232 26233 26234 26235 26236 26237 26238 26239 26240 26241 26242 26243 26244 26245 26246 26247 26248 26249 26250 26251 26252 26253 26254 26255 26256 26257 26258 26259 26260 26261 26262 26263 26264 26265 26266 26267 26268 26269 26270 26271 26272 26273 26274 26275 26276 26277 26278 26279 26280 26281 26282 26283 26284 26285 26286 26287 26288 26289 26290 26291 26292 26293 26294 26295 26296 26297 26298 26299 26300 26301 26302 26303 26304 26305 26306 26307 26308 26309 26310 26311 26312 26313 26314 26315 26316 26317 26318 26319 26320 26321 26322 26323 26324 26325 26326 26327 26328 26329 26330 26331 26332 26333 26334 26335 26336 26337 26338 26339 26340 26341 26342 26343 26344 26345 26346 26347 26348 26349 26350 26351 26352 26353 26354 26355 26356 26357 26358 26359 26360 26361 26362 26363 26364 26365 26366 26367 26368 26369 26370 26371 26372 26373 26374 26375 26376 26377 26378 26379 26380 26381 26382 26383 26384 26385 26386 26387 26388 26389 26390 26391 26392 26393 26394 26395 26396 26397 26398 26399 26400 26401 26402 26403 26404 26405 26406 26407 26408 26409 26410 26411 26412 26413 26414 26415 26416 26417 26418 26419 26420 26421 26422 26423 26424 26425 26426 26427 26428 26429 26430 26431 26432 26433 26434 26435 26436 26437 26438 26439 26440 26441 26442 26443 26444 26445 26446 26448 26449 26450 26451 26452 26453 26454 26455 26456 26457 26458 26459 26460 26461 26462 26463 26464 26465 26466 26467 26468 26469 26470 26471 26472 26473 26474 26475 26476 26477 26478 26479 26480 26481 26482 26483 26484 26485 26486 26487 26488 26489 26490 26491 26492 26502 26503 26504 26505 26506 26507 26508 26509 26510 26511 26512 26513 26514 26515 26516 26517 26518 26519 26520 26521 26522 26523 26524 26525 26526 26527 26528 26529 26530 26531 26532 26533 26534 26535 26536 26537 26538 26539 26540 26554 26555 26556 26557 26558 26559 26560 26561 26562 26563 26564 26565 26566 26567 26568 26569 26570 26571 26572 26573 26574 26575 26576 26577 26578 26579 26580 26581 26582 26583 26584 26585 26586 26587 26588 26589 26590 26606 26607 26608 26609 26610 26611 26612 26613 26614 26615 26616 26617 26618 26619 26620 26621 26622 26623 26624 26625 26626 26627 26628 26629 26630 26631 26632 26633 26634 26635 26636 26637 26638 26639 26656 26657 26658 26659 26660 26661 26662 26663 26664 26665 26666 26667 26668 26669 26670 26671 26672 26673 26674 26675 26676 26677 26678 26679 26680 26681 26682 26683 26684 26685 26686 26687 26704 26705 26706 26707 26708 26709 26710 26711 26712 26713 26714 26715 26716 26717 26718 26719 26720 26721 26722 26723 26724 26725 26726 26727 26728 26729 26730 26731 26732 26733 26734 26751 26752 26753 26754 26755 26756 26757 26758 26759 26760 26761 26762 26763 26764 26765 26766 26767 26768 26769 26770 26771 26772 26773 26774 26775 26776 26777 26778 26779 26780 26796 26797 26798 26799 26800 26801 26802 26803 26804 26805 26806 26807 26808 26809 26810 26811 26812 26813 26814 26815 26816 26817 26818 26819 26820 26821 26822 26823 26824 26825 26841 26842 26843 26844 26845 26846 26847 26848 26849 26850 26851 26852 26853 26854 26855 26856 26857 26858 26859 26860 26861 26862 26863 26864 26865 26866 26867 26868 26869 26886 26887 26888 26889 26890 26891 26892 26893 26894 26895 26896 26897 26898 26899 26900 26901 26902 26903 26904 26905 26906 26907 26908 26909 26910 26911 26912 26931 26932 26933 26934 26935 26936 26937 26938 26939 26940 26941 26942 26943 26944 26945 26946 26947 26948 26949 26950 26951 26952 26953 26954 26974 26975 26976 26977 26978 26979 26980 26981 26982 26983 26984 26985 26986 26987 26988 26989 26990 26991 26992 26993 26994 26995 27018 27022 27024 27025 27026 27027 27028 27029 27030 27031 27032 27033 27034 27035 27065 27067 27068 27069 27070 27071 27072 27073 27074 27108 27109 27110 27111 27112 27516 27540 27563 27585 27606 27626 27645 27663 27680 27696 27711 27725 27738 27816 27817 27818 27819 27820 27821 27822 27823 27824 27825 27826 27827 27828 27829 27830 27831 27832 27833 27834 27835 27836 27837 27838 27839 27840 27841 27842 27843 27844 27845 27846 27847 27848 27849 27850 27851 27852 27853 27854 27855 27856 27857 27858 27859 27860 27861 27862 27863 27864 27865 27866 27867 27868 27869 27870 27871 27872 27873 27874 27875 27876 27877 27878 27879 27880 27881 27882 27883 27884 27885 27886 27887 27888 27889 27890 27891 27892 27893 27894 27895 27896 27897 27898 27899 27900 27901 27902 27903 27904 27905 27906 27907 27908 27909 27910 27911 27912 27913 27914 27915 27916 27917 27918 27919 27920 27921 27922 27927 27928 27929 27930 27931 27932 27933 27934 27935 27936 27937 27938 27939 27940 27941 27942 27943 27944 27945 27946 27947 27948 27949 27950 27951 27952 27953 27954 27955 27956 27957 27958 27959 27960 27961 27962 27963 27964 27965 27966 27967 27968 27969 27970 27971 27972 27973 27974 27975 27976 27981 27982 27983 27984 27985 27986 27987 27988 27989 27990 27991 27992 27993 27994 27995 27996 27997 27998 27999 28000 28001 28002 28003 28004 28005 28006 28007 28008 28009 28010 28011 28012 28013 28014 28015 28016 28017 28018 28019 28020 28021 28022 28023 28024 28025 28026 28027 28028 28029 28034 28035 28036 28037 28038 28039 28040 28041 28042 28043 28044 28045 28046 28047 28048 28049 28050 28051 28052 28053 28054 28055 28056 28057 28058 28059 28060 28061 28062 28063 28064 28065 28066 28067 28068 28069 28070 28071 28072 28073 28074 28075 28076 28077 28078 28079 28080 28081 28086 28087 28088 28089 28090 28091 28092 28093 28094 28095 28096 28097 28098 28099 28100 28101 28102 28103 28104 28105 28106 28107 28108 28109 28110 28111 28112 28113 28114 28115 28116 28117 28118 28119 28120 28121 28122 28123 28124 28125 28126 28127 28128 28129 28130 28131 28137 28138 28139 28140 28141 28142 28143 28144 28145 28146 28147 28148 28149 28150 28151 28152 28153 28154 28155 28156 28157 28158 28159 28160 28161 28162 28163 28164 28165 28166 28167 28168 28169 28170 28171 28172 28173 28174 28175 28176 28177 28178 28179 28180 28181 28182 28187 28188 28189 28190 28191 28192 28193 28194 28195 28196 28197 28198 28199 28200 28201 28202 28203 28204 28205 28206 28207 28208 28209 28210 28211 28212 28213 28214 28215 28216 28217 28218 28219 28220 28221 28222 28223 28224 28225 28226 28227 28228 28229 28230 28231 28236 28237 28238 28239 28240 28241 28242 28243 28244 28245 28246 28247 28248 28249 28250 28251 28252 28253 28254 28255 28256 28257 28258 28259 28260 28261 28262 28263 28264 28265 28266 28267 28268 28269 28270 28271 28272 28273 28274 28275 28276 28277 28278 28279 28284 28285 28286 28287 28288 28289 28290 28291 28292 28293 28294 28295 28296 28297 28298 28299 28300 28301 28302 28303 28304 28305 28306 28307 28308 28309 28310 28311 28312 28313 28314 28315 28316 28317 28318 28319 28320 28321 28322 28323 28324 28325 28326 28331 28332 28333 28334 28335 28336 28337 28338 28339 28340 28341 28342 28343 28344 28345 28346 28347 28348 28349 28350 28351 28352 28353 28354 28355 28356 28357 28358 28359 28360 28361 28362 28363 28364 28365 28366 28367 28368 28369 28370 28371 28372 28373 28377 28378 28379 28380 28381 28382 28383 28384 28385 28386 28387 28388 28389 28390 28391 28392 28393 28394 28395 28396 28397 28398 28399 28400 28401 28402 28403 28404 28405 28406 28407 28408 28409 28410 28411 28412 28413 28414 28415 28416 28417 28418 28422 28423 28424 28425 28426 28427 28428 28429 28430 28431 28432 28433 28434 28435 28436 28437 28438 28439 28440 28441 28442 28443 28444 28445 28446 28447 28448 28449 28450 28451 28452 28453 28454 28455 28456 28457 28458 28459 28460 28461 28462 28463 28466 28467 28468 28469 28470 28471 28472 28473 28474 28475 28476 28477 28478 28479 28480 28481 28482 28483 28484 28485 28486 28487 28488 28489 28490 28491 28492 28493 28494 28495 28496 28497 28498 28499 28500 28501 28502 28503 28504 28505 28506 28509 28510 28511 28512 28513 28514 28515 28516 28517 28518 28519 28520 28521 28522 28523 28524 28525 28526 28527 28528 28529 28530 28531 28532 28533 28534 28535 28536 28537 28538 28539 28540 28541 28542 28543 28544 28545 28546 28547 28548 28549 28551 28552 28553 28554 28555 28556 28557 28558 28559 28560 28561 28562 28563 28564 28565 28566 28567 28568 28569 28570 28571 28572 28573 28574 28575 28576 28577 28578 28579 28580 28581 28582 28583 28584 28585 28586 28587 28588 28589 28590 28592 28593 28594 28595 28596 28597 28598 28599 28600 28601 28602 28603 28604 28605 28606 28607 28608 28609 28610 28611 28612 28613 28614 28615 28616 28617 28618 28619 28620 28621 28622 28623 28624 28625 28626 28627 28628 28629 28630 28631 28632 28633 28634 28635 28636 28637 28638 28639 28640 28641 28642 28643 28644 28645 28646 28647 28648 28649 28650 28651 28652 28653 28654 28655 28656 28657 28658 28659 28660 28661 28662 28663 28664 28665 28666 28667 28668 28669 28670 28671 28672 28673 28674 28675 28676 28677 28678 28679 28680 28681 28682 28683 28684 28685 28686 28687 28688 28689 28690 28691 28692 28693 28694 28695 28696 28697 28698 28699 28700 28701 28702 28703 28704 28705 28706 28707 28708 28709 28710 28711 28712 28713 28714 28715 28716 28717 28718 28719 28720 28721 28722 28723 28724 28725 28726 28727 28728 28729 28730 28731 28732 28733 28734 28735 28736 28737 28738 28739 28740 28741 28742 28743 28744 28745 28746 28747 28748 28749 28750 28751 28752 28753 28754 28755 28756 28757 28758 28759 28760 28761 28762 28763 28764 28765 28766 28767 28768 28769 28770 28771 28772 28773 28774 28775 28776 28777 28778 28779 28780 28781 28782 28783 28784 28785 28786 28787 28788 28789 28790 28791 28792 28793 28794 28795 28796 28797 28798 28799 28800 28801 28802 28803 28804 28805 28806 28807 28808 28809 28810 28811 28812 28813 28814 28815 28816 28817 28818 28819 28820 28821 28822 28823 28824 28825 28826 28827 28828 28829 28830 28831 28832 28833 28834 28835 28836 28837 28838 28839 28840 28841 28842 28843 28844 28845 28846 28847 28848 28849 28850 28851 28852 28853 28854 28855 28856 28857 28858 28859 28860 28861 28862 28863 28864 28865 28866 28867 28868 28869 28870 28871 28872 28873 28874 28875 28876 28877 28878 28879 28880 28881 28882 28883 28884 28885 28886 28887 28888 28889 28890 28891 28892 28893 28894 28895 28896 28897 28898 28899 28900 28901 28902 28903 28904 28905 28906 28907 28908 28909 28910 28911 28912 28913 28914 28915 28916 28917 28918 28919 28920 28921 28922 28923 28924 28925 28926 28927 28928 28929 28930 28931 28932 28933 28934 28935 28936 28937 28938 28939 28940 28941 28942 28943 28944 28945 28946 28947 28948 28949 28950 28951 28952 28953 28954 28955 28956 28957 28958 28959 28960 28961 28962 28963 28964 28965 28966 28967 28968 28969 28970 28971 28972 28973 28974 28975 28976 28977 28978 28979 28980 28981 28982 28983 28984 28985 28986 28987 28988 28989 28990 28991 28992 28993 28994 28995 28996 28997 28998 28999 29000 29001 29002 29003 29004 29005 29006 29007 29008 29009 29010 29011 29012 29013 29014 29015 29016 29017 29018 29019 29020 29021 29022 29023 29024 29025 29026 29027 29028 29029 29030 29031 29032 29033 29034 29035 29036 29037 29038 29039 29040 29041 29042 29043 29044 29045 29046 29047 29048 29049 29050 29051 29052 29053 29054 29055 29056 29057 29058 29059 29060 29061 29062 29063 29064 29065 29066 29067 29068 29069 29070 29071 29072 29073 29074 29075 29076 29077 29078 29079 29080 29081 29082 29083 29084 29085 29086 29087 29088 29089 29090 29091 29092 29093 29094 29095 29096 29097 29098 29099 29100 29101 29102 29103 29104 29105 29106 29107 29108 29109 29110 29111 29112 29113 29114 29115 29116 29117 29118 29119 29120 29121 29122 29123 29124 29125 29126 29127 29128 29129 29130 29131 29132 29133 29134 29135 29136 29137 29138 29139 29140 29141 29142 29143 29144 29145 29146 29147 29148 29149 29150 29151 29152 29153 29154 29155 29156 29157 29158 29159 29160 29161 29162 29163 29164 29165 29166 29167 29168 29169 29170 29171 29172 29173 29174 29175 29176 29177 29178 29179 29180 29181 29182 29183 29184 29185 29186 29187 29188 29189 29190 29191 29192 29193 29194 29195 29196 29197 29198 29199 29200 29201 29202 29203 29204 29205 29206 29207 29208 29209 29210 29211 29212 29213 29214 29215 29216 29217 29218 29219 29220 29221 29222 29223 29224 29225 29226 29227 29228 29229 29230 29231 29232 29233 29234 29235 29236 29237 29238 29239 29240 29241 29242 29243 29244 29245 29246 29247 29248 29249 29250 29251 29252 29253 29254 29255 29256 29257 29258 29259 29260 29261 29262 29263 29264 29265 29266 29267 29268 29269 29270 29271 29272 29273 29274 29275 29276 29277 29278 29279 29280 29281 29282 29283 29284 29285 29286 29287 29288 29289 29290 29291 29292 29293 29294 29295 29296 29297 29298 29299 29300 29301 29302 29303 29304 29305 29306 29307 29308 29309 29310 29311 29312 29313 29314 29315 29316 29317 29318 29319 29320 29321 29322 29323 29324 29325 29326 29327 29328 29329 29330 29331 29332 29333 29334 29335 29336 29337 29338 29339 29340 29341 29342 29343 29344 29345 29346 29347 29348 29349 29350 29351 29352 29353 29354 29355 29356 29357 29358 29359 29360 29361 29362 29363 29364 29365 29366 29367 29368 29369 29370 29371 29372 29373 29374 29375 29376 29377 29378 29379 29380 29381 29382 29383 29384 29385 29386 29387 29388 29389 29390 29391 29392 29393 29394 29395 29396 29397 29398 29399 29400 29401 29402 29403 29404 29405 29406 29407 29408 29409 29410 29411 29412 29413 29414 29415 29416 29417 29418 29419 29420 29421 29422 29423 29424 29425 29426 29427 29428 29429 29430 29431 29432 29433 29434 29435 29436 29437 29438 29439 29440 29441 29442 29443 29444 29445 29446 29447 29448 29449 29450 29451 29452 29453 29454 29455 29456 29457 29458 29459 29460 29461 29462 29463 29464 29465 29466 29467 29468 29469 29470 29471 29472 29473 29474 29475 29476 29477 29478 29479 29480 29481 29482 29483 29484 29485 29486 29487 29488 29489 29490 29491 29492 29493 29494 29495 29496 29497 29498 29499 29500 29501 29502 29503 29504 29505 29506 29507 29508 29509 29510 29511 29512 29513 29514 29515 29516 29517 29518 29519 29520 29521 29522 29523 29524 29525 29526 29527 29528 29529 29530 29531 29532 29533 29534 29535 29536 29537 29538 29539 29540 29541 29542 29543 29544 29545 29546 29547 29548 29549 29550 29551 29552 29553 29554 29555 29556 29557 29558 29559 29560 29561 29562 29563 29564 29565 29566 29567 29568 29569 29570 29571 29572 29573 29574 29575 29576 29577 29578 29579 29580 29581 29582 29583 29584 29585 29586 29587 29588 29589 29590 29591 29592 29593 29594 29595 29596 29597 29598 29599 29600 29601 29602 29603 29604 29605 29606 29607 29608 29609 29610 29611 29612 29613 29614 29615 29616 29617 29618 29619 29620 29621 29622 29623 29624 29625 29626 29627 29628 29629 29630 29631 29632 29633 29634 29635 29636 29637 29638 29639 29640 29641 29642 29643 29644 29645 29646 29647 29648 29649 29650 29651 29652 29653 29654 29655 29656 29657 29658 29659 29660 29661 29662 29663 29664 29665 29666 29667 29668 29669 29670 29671 29672 29673 29674 29675 29676 29677 29678 29679 29680 29681 29682 29683 29684 29685 29686 29687 29688 29689 29690 29691 29692 29693 29694 29695 29696 29697 29698 29699 29700 29701 29702 29703 29704 29705 29706 29707 29708 29709 29710 29711 29712 29713 29714 29715 29716 29717 29718 29719 29720 29721 29722 29723 29724 29725 29726 29727 29728 29729 29730 29731 29732 29733 29734 29735 29736 29737 29738 29739 29740 29741 29742 29743 29744 29745 29746 29747 29748 29749 29750 29751 29752 29753 29754 29755 29756 29757 29758 29759 29760 29761 29762 29763 29764 29765 29766 29767 29768 29769 29770 29771 29772 29773 29774 29775 29776 29777 29778 29779 29780 29781 29782 29783 29784 29785 29786 29787 29788 29789 29790 29791 29792 29793 29794 29795 29796 29797 29798 29799 29800 29801 29802 29803 29804 29805 29806 29807 29808 29809 29810 29811 29812 29813 29814 29815 29816 29817 29818 29819 29820 29821 29822 29823 29824 29825 29826 29827 29828 29829 29830 29831 29832 29833 29834 29835 29836 29837 29838 29839 29840 29841 29842 29843 29844 29845 29846 29847 29848 29849 29850 29851 29852 29853 29854 29855 29856 29857 29858 29859 29860 29861 29862 29863 29864 29865 29866 29867 29868 29869 29870 29871 29872 29873 29874 29875 29876 29877 29878 29879 29880 29881 29882 29883 29884 29885 29886 29887 29888 29889 29890 29891 29892 29893 29894 29895 29896 29897 29898 29899 29900 29901 29902 29903 29904 29905 29906 29907 29908 29909 29910 29911 29912 29913 29914 29915 29916 29917 29918 29919 29920 29921 29922 29923 29924 29925 29926 29927 29928 29929 29930 29931 29932 29933 29934 29935 29936 29937 29938 29939 29940 29941 29942 29943 29944 29945 29946 29947 29948 29949 29950 29951 29952 29953 29954 29955 29956 29957 29958 29959 29960 29961 29962 29963 29964 29965 29966 29967 29968 29969 29970 29971 29972 29973 29974 29975 29976 29977 29978 29979 29980 29981 29982 29983 29984 29985 29986 29987 29988 29989 29990 29991 29992 29993 29994 29995 29996 29997 29998 29999 30000 30001 30002 30003 30004 30005 30006 30007 30008 30009 30010 30011 30012 30013 30014 30015 30016 30017 30018 30019 30020 30021 30022 30023 30024 30025 30026 30027 30028 30029 30030 30031 30032 30033 30034 30035 30036 30037 30038 30039 30040 30041 30042 30043 30044 30045 30046 30047 30048 30049 30050 30051 30052 30053 30054 30055 30056 30057 30058 30059 30060 30061 30062 30063 30064 30065 30066 30067 30068 30069 30070 30071 30072 30073 30074 30075 30076 30077 30078 30079 30080 30081 30082 30083 30084 30085 30086 30087 30088 30089 30090 30091 30092 30093 30094 30095 30096 30097 30098 30099 30100 30101 30102 30103 30104 30105 30106 30107 30108 30109 30110 30111 30112 30113 30114 30115 30116 30117 30118 30119 30120 30121 30122 30123 30124 30125 30126 30127 30128 30129 30130 30131 30132 30133 30134 30135 30136 30137 30138 30139 30140 30141 30142 30143 30144 30145 30146 30147 30148 30149 30150 30151 30152 30153 30154 30155 30156 30157 30158 30159 30160 30161 30162 30163 30164 30165 30166 30167 30168 30169 30170 30171 30172 30173 30174 30175 30176 30177 30178 30179 30180 30181 30182 30183 30184 30185 30186 30187 30188 30189 30190 30191 30192 30193 30194 30195 30196 30197 30198 30199 30200 30201 30202 30203 30204 30205 30206 30207 30208 30209 30210 30211 30212 30213 30214 30215 30216 30217 30218 30219 30220 30221 30222 30223 30224 30225 30226 30227 30228 30229 30230 30231 30232 30233 30234 30235 30236 30237 30238 30239 30240 30241 30242 30243 30244 30245 30246 30247 30248 30249 30250 30251 30252 30253 30254 30255 30256 30257 30258 30259 30260 30261 30262 30263 30264 30265 30266 30267 30268 30269 30270 30271 30272 30273 30274 30275 30276 30277 30278 30279 30280 30281 30282 30283 30284 30285 30286 30287 30288 30289 30290 30291 30292 30293 30294 30295 30296 30297 30298 30299 30300 30301 30302 30303 30304 30305 30306 30307 30308 30309 30310 30311 30312 30313 30314 30315 30316 30317 30318 30319 30320 30321 30322 30323 30324 30325 30326 30327 30328 30329 30330 30331 30332 30333 30334 30335 30336 30337 30338 30339 30340 30341 30342 30343 30344 30345 30346 30347 30348 30349 30350 30351 30352 30353 30354 30355 30356 30357 30358 30359 30360 30361 30362 30363 30364 30365 30366 30367 30368 30369 30370 30371 30372 30373 30374 30375 30376 30377 30378 30379 30380 30381 30382 30383 30384 30385 30386 30387 30388 30389 30390 30391 30392 30393 30394 30395 30396 30397 30398 30399 30400 30401 30402 30403 30404 30405 30406 30407 30408 30409 30410 30411 30412 30413 30414 30415 30416 30417 30418 30419 30420 30421 30422 30423 30424 30425 30426 30427 30428 30429 30430 30431 30432 30433 30434 30435 30436 30437 30438 30439 30440 30441 30442 30443 30444 30445 30446 30447 30448 30449 30450 30451 30452 30453 30454 30455 30456 30457 30458 30459 30460 30461 30462 30463 30464 30465 30466 30467 30468 30469 30470 30471 30472 30473 30474 30475 30476 30477 30478 30479 30480 30481 30482 30483 30484 30485 30486 30487 30488 30489 30490 30491 30492 30493 30494 30495 30496 30497 30498 30499 30500 30501 30502 30503 30504 30505 30506 30507 30508 30509 30510 30511 30512 30513 30514 30515 30516 30517 30518 30519 30520 30521 30522 30523 30524 30525 30526 30527 30528 30529 30530 30531 30532 30533 30534 30535 30536 30537 30538 30539 30540 30541 30542 30543 30544 30545 30546 30547 30548 30549 30550 30551 30552 30553 30554 30555 30556 30557 30558 30559 30560 30561 30562 30563 30564 30565 30566 30567 30568 30569 30570 30571 30572 30573 30574 30575 30576 30577 30578 30579 30580 30581 30582 30583 30584 30585 30586 30587 30588 30589 30590 30591 30592 30593 30594 30595 30596 30597 30598 30599 30600 30601 30602 30603 30604 30605 30606 30607 30608 30609 30610 30611 30612 30613 30614 30615 30616 30617 30618 30619 30620 30621 30622 30623 30624 30625 30626 30627 30628 30629 30630 30631 30632 30633 30634 30635 30636 30637 30638 30639 30640 30641 30642 30643 30644 30645 30646 30647 30648 30649 30650 30651 30652 30653 30654 30655 30656 30657 30658 30659 30660 30661 30662 30663 30664 30665 30666 30667 30668 30669 30670 30671 30672 30673 30674 30675 30676 30677 30678 30679 30680 30681 30682 30683 30684 30685 30686 30687 30688 30689 30690 30691 30692 30693 30694 30695 30696 30697 30698 30699 30700 30701 30702 30703 30704 30705 30706 30707 30708 30709 30710 30711 30712 30713 30714 30715 30716 30717 30718 30719 30720 30721 30722 30723 30724 30725 30726 30727 30728 30729 30730 30731 30732 30733 30734 30735 30736 30737 30738 30739 30740 30741 30742 30743 30744 30745 30746 30747 30748 30749 30750 30751 30752 30753 30754 30755 30756 30757 30758 30759 30760 30761 30762 30763 30764 30765 30766 30767 30768 30769 30770 30771 30772 30773 30774 30775 30776 30777 30778 30779 30780 30781 30782 30783 30784 30785 30786 30787 30788 30789 30790 30791 30792 30793 30794 30795 30796 30797 30798 30799 30800 30801 30802 30803 30804 30805 30806 30807 30808 30809 30810 30811 30812 30813 30814 30815 30816 30817 30818 30819 30820 30821 30822 30823 30824 30825 30826 30827 30828 30829 30830 30831 30832 30833 30834 30835 30836 30837 30838 30839 30840 30841 30842 30843 30844 30845 30846 30847 30848 30849 30850 30851 30852 30853 30854 30855 30856 30857 30858 30859 30860 30861 30862 30863 30864 30865 30866 30867 30868 30869 30870 30871 30872 30873 30874 30875 30876 30877 30878 30879 30880 30881 30882 30883 30884 30885 30886 30887 30888 30889 30890 30891 30892 30893 30894 30895 30896 30897 30898 30899 30900 30901 30902 30903 30904 30905 30906 30907 30908 30909 30910 30911 30912 30913 30914 30915 30916 30917 30918 30919 30920 30921 30922 30923 30924 30925 30926 30927 30928 30929 30930 30931 30932 30933 30934 30935 30936 30937 30938 30939 30940 30941 30942 30943 30944 30945 30946 30947 30948 30949 30950 30951 30952 30953 30954 30955 30956 30957 30958 30959 30960 30961 30962 30963 30964 30965 30966 30967 30968 30969 30970 30971 30972 30973 30974 30975 30976 30977 30978 30979 30980 30981 30982 30983 30984 30985 30986 30987 30988 30989 30990 30991 30992 30993 30994 30995 30996 30997 30998 30999 31000 31001 31002 31003 31004 31005 31006 31007 31008 31009 31010 31011 31012 31013 31014 31015 31016 31017 31018 31019 31020 31021 31022 31023 31024 31025 31026 31027 31028 31029 31030 31031 31032 31033 31034 31035 31036 31037 31038 31039 31040 31041 31042 31043 31044 31045 31046 31047 31048 31049 31050 31051 31052 31053 31054 31055 31056 31057 31058 31059 31060 31061 31062 31063 31064 31065 31066 31067 31068 31069 31070 31071 31072 31073 31074 31075 31076 31077 31078 31079 31080 31081 31082 31083 31084 31085 31086 31087 31088 31089 31090 31091 31092 31093 31094 31095 31096 31097 31098 31099 31100 31101 31102 31103 31104 31105 31106 31107 31108 31109 31110 31111 31112 31113 31114 31115 31116 31117 31118 31119 31120 31121 31122 31123 31124 31125 31126 31127 31128 31129 31130 31131 31132 31133 31134 31135 31136 31137 31138 31139 31140 31141 31142 31143 31144 31145 31146 31147 31148 31149 31150 31151 31152 31153 31154 31155 31156 31157 31158 31159 31160 31161 31162 31163 31164 31165 31166 31167 31168 31169 31170 31171 31172 31173 31174 31175 31176 31177 31178 31179 31180 31181 31182 31183 31184 31185 31186 31187 31188 31189 31190 31191 31192 31193 31194 31195 31196 31197 31198 31199 31200 31201 31202 31203 31204 31205 31206 31207 31208 31209 31210 31211 31212 31213 31214 31215 31216 31217 31218 31219 31220 31221 31222 31223 31224 31225 31226 31227 31228 31229 31230 31231 31232 31233 31234 31235 31236 31237 31238 31239 31240 31241 31242 31243 31244 31245 31246 31247 31248 31249 31250 31251 31252 31253 31254 31255 31256 31257 31258 31259 31260 31261 31262 31263 31264 31265 31266 31267 31268 31269 31270 31271 31272 31273 31274 31275 31276 31277 31278 31279 31280 31281 31282 31283 31284 31285 31286 31287 31288 31289 31290 31291 31292 31293 31294 31295 31296 31297 31298 31299 31300 31301 31302 31303 31304 31305 31306 31307 31308 31309 31310 31311 31312 31313 31314 31315 31316 31317 31318 31319 31320 31321 31322 31323 31324 31325 31326 31327 31328 31329 31330 31331 31332 31333 31334 31335 31336 31337 31338 31339 31340 31341 31342 31343 31344 31345 31346 31347 31348 31349 31350 31351 31352 31353 31354 31355 31356 31357 31358 31359 31360 31361 31362 31363 31364 31365 31366 31367 31368 31369 31370 31371 31372 31373 31374 31375 31376 31377 31378 31379 31380 31381 31382 31383 31384 31385 31386 31387 31388 31389 31390 31391 31392 31393 31394 31395 31396 31397 31398 31399 31400 31401 31402 31403 31404 31405 31406 31407 31408 31409 31410 31411 31412 31413 31414 31415 31416 31417 31418 31419 31420 31421 31422 31423 31424 31425 31426 31427 31428 31429 31430 31431 31432 31433 31434 31435 31436 31437 31438 31439 31440 31441 31442 31443 31444 31445 31446 31447 31448 31449 31450 31451 31452 31453 31454 31455 31456 31457 31458 31459 31460 31461 31462 31463 31464 31465 31466 31467 31468 31469 31470 31471 31472 31473 31474 31475 31476 31477 31478 31479 31480 31481 31482 31483 31484 31485 31486 31487 31488 31489 31490 31491 31492 31493 31494 31495 31496 31497 31498 31499 31500 31501 31502 31503 31504 31505 31506 31507 31508 31509 31510 31511 31512 31513 31514 31515 31516 31517 31518 31519 31520 31521 31522 31523 31524 31525 31526 31527 31528 31529 31530 31531 31532 31533 31534 31535 31536 31537 31538 31539 31540 31541 31542 31543 31544 31545 31546 31547 31548 31549 31550 31551 31552 31553 31554 31555 31556 31557 31558 31559 31560 31561 31562 31563 31564 31565 31566 31567 31568 31569 31570 31571 31572 31573 31574 31575 31576 31577 31578 31579 31580 31581 31582 31583 31584 31585 31586 31587 31588 31589 31590 31591 31592 31593 31594 31595 31596 31597 31598 31599 31600 31601 31602 31603 31604 31605 31606 31607 31608 31609 31610 31611 31612 31613 31614 31615 31616 31617 31618 31619 31620 31621 31622 31623 31624 31625 31626 31627 31628 31629 31630 31631 31632 31633 31634 31635 31636 31637 31638 31639 31640 31641 31642 31643 31644 31645 31646 31647 31648 31649 31650 31651 31652 31653 31654 31655 31656 31657 31658 31659 31660 31661 31662 31663 31664 31665 31666 31667 31668 31669 31670 31671 31672 31673 31674 31675 31676 31677 31678 31679 31680 31681 31682 31683 31684 31685 31686 31687 31688 31689 31690 31691 31692 31693 31694 31695 31696 31697 31698 31699 31700 31701 31702 31703 31704 31705 31706 31707 31708 31709 31710 31711 31712 31713 31714 31715 31716 31717 31718 31719 31720 31721 31722 31723 31724 31725 31726 31727 31728 31729 31730 31731 31732 31733 31734 31735 31736 31737 31738 31739 31740 31741 31742 31743 31744 31745 31746 31747 31748 31749 31750 31751 31752 31753 31754 31755 31756 31757 31758 31759 31760 31761 31762 31763 31764 31765 31766 31767 31768 31769 31770 31771 31772 31773 31774 31775 31776 31777 31778 31779 31780 31781 31782 31783 31784 31785 31786 31787 31788 31789 31790 31791 31792 31793 31794 31795 31796 31797 31798 31799 31800 31801 31802 31803 31804 31805 31806 31807 31808 31809 31810 31811 31812 31813 31814 31815 31816 31817 31818 31819 31820 31821 31822 31823 31824 31825 31826 31827 31828 31829 31830 31831 31832 31833 31834 31835 31836 31837 31838 31839 31840 31841 31842 31843 31844 31845 31846 31847 31848 31849 31850 31851 31852 31853 31854 31855 31856 31857 31858 31859 31860 31861 31862 31863 31864 31865 31866 31867 31868 31869 31870 31871 31872 31873 31874 31875 31876 31877 31878 31879 31880 31881 31882 31883 31884 31885 31886 31887 31888 31889 31890 31891 31892 31893 31894 31895 31896 31897 31898 31899 31900 31901 31902 31903 31904 31905 31906 31907 31908 31909 31910 31911 31912 31913 31914 31915 31916 31917 31918 31919 31920 31921 31922 31923 31924 31925 31926 31927 31928 31929 31930 31931 31932 31933 31934 31935 31936 31937 31938 31939 31940 31941 31942 31943 31944 31945 31946 31947 31948 31949 31950 31951 31952 31953 31954 31955 31956 31957 31958 31959 31960 31961 31962 31963 31964 31965 31966 31967 31968 31969 31970 31971 31972 31973 31974 31975 31976 31977 31978 31979 31980 31981 31982 31983 31984 31985 31986 31987 31988 31989 31990 31991 31992 31993 31994 31995 31996 31997 31998 31999 32000 32001 32002 32003 32004 32005 32006 32007 32008 32009 32010 32011 32012 32013 32014 32015 32016 32017 32018 32019 32020 32021 32022 32023 32024 32025 32026 32027 32028 32029 32030 32031 32032 32033 32034 32035 32036 32037 32038 32039 32040 32041 32042 32043 32044 32045 32046 32047 32048 32049 32050 32051 32052 32053 32054 32055 32056 32057 32058 32059 32060 32061 32062 32063 32064 32065 32066 32067 32068 32069 32070 32071 32072 32073 32074 32075 32076 32077 32078 32079 32080 32081 32082 32083 32084 32085 32086 32087 32088 32089 32090 32091 32092 32093 32094 32095 32096 32097 32098 32099 32100 32101 32102 32103 32104 32105 32106 32107 32108 32109 32110 32111 32112 32113 32114 32115 32116 32117 32118 32119 32120 32121 32122 32123 32124 32125 32126 32127 32128 32129 32130 32131 32132 32133 32134 32135 32136 32137 32138 32139 32140 32141 32142 32143 32144 32145 32146 32147 32148 32149 32150 32151 32152 32153 32154 32155 32156 32157 32158 32159 32160 32161 32162 32163 32164 32165 32166 32167 32168 32169 32170 32171 32172 32173 32174 32175 32176 32177 32178 32179 32180 32181 32182 32183 32184 32185 32186 32187 32188 32189 32190 32191 32192 32193 32194 32195 32196 32197 32198 32199 32200 32201 32202 32203 32204 32205 32206 32207 32208 32209 32210 32211 32212 32213 32214 32215 32216 32217 32218 32219 32220 32221 32222 32223 32224 32225 32226 32227 32228 32229 32230 32231 32232 32233 32234 32235 32236 32237 32238 32239 32240 32241 32242 32243 32244 32245 32246 32247 32248 32249 32250 32251 32252 32253 32254 32255 32256 32257 32258 32259 32260 32261 32262 32263 32264 32265 32266 32267 32268 32269 32270 32271 32272 32273 32274 32275 32276 32277 32278 32279 32280 32281 32282 32283 32284 32285 32286 32287 32288 32289 32290 32291 32292 32293 32294 32295 32296 32297 32298 32299 32300 32301 32302 32303 32304 32305 32306 32307 32308 32309 32310 32311 32312 32313 32314 32315 32316 32317 32318 32319 32320 32321 32322 32323 32324 32325 32326 32327 32328 32329 32330 32331 32332 32333 32334 32335 32336 32337 32338 32339 32340 32341 32342 32343 32344 32345 32346 32347 32348 32349 32350 32351 32352 32353 32354 32355 32356 32357 32358 32359 32360 32361 32362 32363 32364 32365 32366 32367 32368 32369 32370 32371 32372 32373 32374 32375 32376 32377 32378 32379 32380 32381 32382 32383 32384 32385 32386 32387 32388 32389 32390 32391 32392 32393 32394 32395 32396 32397 32398 32399 32400 32401 32402 32403 32404 32405 32406 32407 32408 32409 32410 32411 32412 32413 32414 32415 32416 32417 32418 32419 32420 32421 32422 32423 32424 32425 32426 32427 32428 32429 32430 32431 32432 32433 32434 32435 32436 32437 32438 32439 32440 32441 32442 32443 32444 32445 32446 32447 32448 32449 32450 32451 32452 32453 32454 32455 32456 32457 32458 32459 32460 32461 32462 32463 32464 32465 32466 32467 32468 32469 32470 32471 32472 32473 32474 32475 32476 32477 32478 32479 32480 32481 32482 32483 32484 32485 32486 32487 32488 32489 32490 32491 49 66 28 50 66 28 48 67 28 49 67 28 50 67 28 48 65 29 49 65 29 50 65 29 48 66 29 49 66 29 50 66 29 48 67 29 49 67 29 50 67 29 50 64 30 47 65 30 48 65 30 49 65 30 50 65 30 47 66 30 48 66 30 49 66 30 50 66 30 47 67 30 48 67 30 49 67 30 50 67 30 48 68 30 49 68 30 50 68 30 51 68 30 50 69 30 51 69 30 47 65 31 48 65 31 49 65 31 50 65 31 47 66 31 48 66 31 49 66 31 50 66 31 47 67 31 48 67 31 49 67 31 50 67 31 47 68 31 48 68 31 49 68 31 50 68 31 51 68 31 48 69 31 49 69 31 50 69 31 51 69 31 49 70 31 50 70 31 51 70 31 52 70 31 50 71 31 51 71 31 52 71 31 47 65 32 48 65 32 49 65 32 47 66 32 48 66 32 49 66 32 50 66 32 47 67 32 48 67 32 49 67 32 50 67 32 47 68 32 48 68 32 49 68 32 50 68 32 48 69 32 49 69 32 50 69 32 51 69 32 48 70 32 49 70 32 50 70 32 51 70 32 52 70 32 49 71 32 50 71 32 51 71 32 52 71 32 47 65 33 48 65 33 47 66 33 48 66 33 46 67 33 47 67 33 48 67 33 47 68 33 48 68 33 47 69 33 48 69 33 48 70 33 49 70 33 49 71 33 50 71 33 49 72 33 50 72 33 47 65 34 48 65 34 46 66 34 47 66 34 48 66 34 46 67 34 47 67 34 48 67 34 46 68 34 47 68 34 48 68 34 47 69 34 48 69 34 48 70 34 48 71 34 49 71 34 50 71 34 49 72 34 50 72 34 47 65 35 46 66 35 47 66 35 46 67 35 47 67 35 47 68 35 47 69 35 47 70 35 48 71 35 48 72 35 40 66 29 41 66 29 39 67 29 40 67 29 41 67 29 42 67 29 39 68 29 40 68 29 41 68 29 40 65 30 41 65 30 42 65 30 40 66 30 41 66 30 42 66 30 39 67 30 40 67 30 41 67 30 42 67 30 39 68 30 40 68 30 41 68 30 42 68 30 39 69 30 40 69 30 41 69 30 40 65 31 41 65 31 42 65 31 43 65 31 40 66 31 41 66 31 42 66 31 43 66 31 39 67 31 40 67 31 41 67 31 42 67 31 43 67 31 39 68 31 40 68 31 41 68 31 42 68 31 43 68 31 39 69 31 40 69 31 41 69 31 42 69 31 38 70 31 39 70 31 40 70 31 41 70 31 38 71 31 39 71 31 40 71 31 40 65 32 41 65 32 42 65 32 43 65 32 40 66 32 41 66 32 42 66 32 43 66 32 39 67 32 40 67 32 41 67 32 42 67 32 43 67 32 39 68 32 40 68 32 41 68 32 42 68 32 43 68 32 39 69 32 40 69 32 41 69 32 42 69 32 38 70 32 39 70 32 40 70 32 41 70 32 42 70 32 38 71 32 39 71 32 40 71 32 41 71 32 38 72 32 39 72 32 40 72 32 38 73 32 39 73 32 42 65 33 43 65 33 41 66 33 42 66 33 43 66 33 40 67 33 41 67 33 42 67 33 43 67 33 42 68 33 43 68 33 42 69 33 43 69 33 41 70 33 42 70 33 40 71 33 41 71 33 39 72 33 40 72 33 41 72 33 38 73 33 39 73 33 40 73 33 43 65 34 42 66 34 43 66 34 42 67 34 43 67 34 42 68 34 43 68 34 42 69 34 43 69 34 42 70 34 43 70 34 41 71 34 42 71 34 40 72 34 41 72 34 40 73 34 41 73 34 43 65 35 43 66 35 43 67 35 43 69 35 43 70 35 42 71 35 42 72 35 43 65 36 43 66 36 55 61 21 56 61 21 57 61 21 58 61 21 55 62 21 56 62 21 57 62 21 56 63 21 58 60 22 59 60 22 53 61 22 54 61 22 55 61 22 56 61 22 57 61 22 58 61 22 59 61 22 60 61 22 53 62 22 54 62 22 55 62 22 56 62 22 57 62 22 58 62 22 59 62 22 55 63 22 56 63 22 57 63 22 58 63 22 58 60 23 59 60 23 60 60 23 61 60 23 52 61 23 53 61 23 54 61 23 55 61 23 56 61 23 57 61 23 58 61 23 59 61 23 60 61 23 61 61 23 52 62 23 53 62 23 54 62 23 55 62 23 56 62 23 57 62 23 58 62 23 59 62 23 60 62 23 54 63 23 55 63 23 56 63 23 57 63 23 58 63 23 59 63 23 60 63 23 57 64 23 58 64 23 57 60 24 58 60 24 59 60 24 60 60 24 61 60 24 52 61 24 53 61 24 54 61 24 55 61 24 56 61 24 57 61 24 58 61 24 59 61 24 60 61 24 61 61 24 52 62 24 53 62 24 54 62 24 55 62 24 56 62 24 57 62 24 58 62 24 59 62 24 60 62 24 61 62 24 53 63 24 54 63 24 55 63 24 56 63 24 57 63 24 58 63 24 59 63 24 60 63 24 59 59 25 60 59 25 56 60 25 57 60 25 58 60 25 59 60 25 60 60 25 61 60 25 51 61 25 52 61 25 53 61 25 54 61 25 55 61 25 56 61 25 57 61 25 58 61 25 59 61 25 60 61 25 61 61 25 52 62 25 53 62 25 54 62 25 55 62 25 56 62 25 57 62 25 58 62 25 59 62 25 60 62 25 61 62 25 53 63 25 54 63 25 55 63 25 56 63 25 57 63 25 58 63 25 59 63 25 60 63 25 55 59 26 56 59 26 57 59 26 58 59 26 59 59 26 60 59 26 61 59 26 54 60 26 55 60 26 56 60 26 57 60 26 58 60 26 59 60 26 60 60 26 61 60 26 51 61 26 52 61 26 53 61 26 54 61 26 55 61 26 56 61 26 57 61 26 58 61 26 59 61 26 60 61 26 61 61 26 52 62 26 53 62 26 54 62 26 55 62 26 56 62 26 57 62 26 58 62 26 59 62 26 60 62 26 61 62 26 54 63 26 55 63 26 56 63 26 57 63 26 58 63 26 59 63 26 55 58 27 56 58 27 57 58 27 58 58 27 53 59 27 54 59 27 55 59 27 56 59 27 57 59 27 58 59 27 59 59 27 60 59 27 51 60 27 52 60 27 53 60 27 54 60 27 55 60 27 56 60 27 57 60 27 58 60 27 59 60 27 60 60 27 52 61 27 53 61 27 54 61 27 55 61 27 56 61 27 57 61 27 58 61 27 59 61 27 60 61 27 61 61 27 52 62 27 53 62 27 54 62 27 55 62 27 56 62 27 57 62 27 58 62 27 59 62 27 60 62 27 61 62 27 56 63 27 57 63 27 58 63 27 54 58 28 55 58 28 56 58 28 57 58 28 58 58 28 59 58 28 60 58 28 52 59 28 53 59 28 54 59 28 55 59 28 56 59 28 57 59 28 58 59 28 59 59 28 60 59 28 52 60 28 53 60 28 54 60 28 55 60 28 56 60 28 57 60 28 58 60 28 59 60 28 52 61 28 53 61 28 54 61 28 55 61 28 56 61 28 57 61 28 58 61 28 59 61 28 60 61 28 53 62 28 54 62 28 55 62 28 56 62 28 57 62 28 58 62 28 59 62 28 60 62 28 56 57 29 57 57 29 58 57 29 59 57 29 53 58 29 54 58 29 55 58 29 56 58 29 57 58 29 58 58 29 59 58 29 53 59 29 54 59 29 55 59 29 56 59 29 57 59 29 58 59 29 59 59 29 60 59 29 53 60 29 54 60 29 55 60 29 56 60 29 57 60 29 58 60 29 54 61 29 55 61 29 56 61 29 57 61 29 58 61 29 55 62 29 56 62 29 57 62 29 57 56 30 58 56 30 56 57 30 57 57 30 58 57 30 54 58 30 55 58 30 56 58 30 57 58 30 58 58 30 54 59 30 55 59 30 56 59 30 57 59 30 58 59 30 54 60 30 55 60 30 56 60 30 57 60 30 54 61 30 55 61 30 56 61 30 56 58 31 34 62 20 32 61 21 33 61 21 34 61 21 35 61 21 32 62 21 33 62 21 34 62 21 35 62 21 32 63 21 33 63 21 34 63 21 29 61 22 30 61 22 31 61 22 32 61 22 33 61 22 34 61 22 35 61 22 30 62 22 31 62 22 32 62 22 33 62 22 34 62 22 35 62 22 36 62 22 30 63 22 31 63 22 32 63 22 33 63 22 34 63 22 35 63 22 31 64 22 32 64 22 33 64 22 34 64 22 28 61 23 29 61 23 30 61 23 31 61 23 32 61 23 33 61 23 34 61 23 35 61 23 36 61 23 37 61 23 29 62 23 30 62 23 31 62 23 32 62 23 33 62 23 34 62 23 35 62 23 36 62 23 37 62 23 30 63 23 31 63 23 32 63 23 33 63 23 34 63 23 35 63 23 36 63 23 30 64 23 31 64 23 32 64 23 33 64 23 34 64 23 29 60 24 28 61 24 29 61 24 30 61 24 31 61 24 32 61 24 33 61 24 34 61 24 35 61 24 36 61 24 37 61 24 38 61 24 29 62 24 30 62 24 31 62 24 32 62 24 33 62 24 34 62 24 35 62 24 36 62 24 37 62 24 29 63 24 30 63 24 31 63 24 32 63 24 33 63 24 34 63 24 35 63 24 36 63 24 30 64 24 31 64 24 32 64 24 33 64 24 34 64 24 28 60 25 29 60 25 30 60 25 31 60 25 32 60 25 28 61 25 29 61 25 30 61 25 31 61 25 32 61 25 33 61 25 34 61 25 35 61 25 36 61 25 37 61 25 38 61 25 28 62 25 29 62 25 30 62 25 31 62 25 32 62 25 33 62 25 34 62 25 35 62 25 36 62 25 37 62 25 38 62 25 29 63 25 30 63 25 31 63 25 32 63 25 33 63 25 34 63 25 35 63 25 36 63 25 37 63 25 30 64 25 31 64 25 32 64 25 33 64 25 34 64 25 32 59 26 29 60 26 30 60 26 31 60 26 32 60 26 33 60 26 34 60 26 28 61 26 29 61 26 30 61 26 31 61 26 32 61 26 33 61 26 34 61 26 35 61 26 36 61 26 37 61 26 38 61 26 28 62 26 29 62 26 30 62 26 31 62 26 32 62 26 33 62 26 34 62 26 35 62 26 36 62 26 37 62 26 38 62 26 29 63 26 30 63 26 31 63 26 32 63 26 33 63 26 34 63 26 35 63 26 36 63 26 37 63 26 32 64 26 33 64 26 34 64 26 31 59 27 32 59 27 33 59 27 34 59 27 35 59 27 36 59 27 29 60 27 30 60 27 31 60 27 32 60 27 33 60 27 34 60 27 35 60 27 36 60 27 37 60 27 38 60 27 39 60 27 29 61 27 30 61 27 31 61 27 32 61 27 33 61 27 34 61 27 35 61 27 36 61 27 37 61 27 38 61 27 29 62 27 30 62 27 31 62 27 32 62 27 33 62 27 34 62 27 35 62 27 36 62 27 37 62 27 29 63 27 30 63 27 31 63 27 32 63 27 33 63 27 34 63 27 35 63 27 36 63 27 34 58 28 35 58 28 29 59 28 30 59 28 31 59 28 32 59 28 33 59 28 34 59 28 35 59 28 36 59 28 37 59 28 30 60 28 31 60 28 32 60 28 33 60 28 34 60 28 35 60 28 36 60 28 37 60 28 38 60 28 30 61 28 31 61 28 32 61 28 33 61 28 34 61 28 35 61 28 36 61 28 37 61 28 38 61 28 30 62 28 31 62 28 32 62 28 33 62 28 34 62 28 35 62 28 36 62 28 37 62 28 32 63 28 33 63 28 34 63 28 35 63 28 30 58 29 31 58 29 32 58 29 33 58 29 34 58 29 35 58 29 30 59 29 31 59 29 32 59 29 33 59 29 34 59 29 35 59 29 36 59 29 37 59 29 31 60 29 32 60 29 33 60 29 34 60 29 35 60 29 36 60 29 37 60 29 32 61 29 33 61 29 34 61 29 35 61 29 36 61 29 37 61 29 32 62 29 33 62 29 34 62 29 35 62 29 31 57 30 32 57 30 33 57 30 31 58 30 32 58 30 33 58 30 34 58 30 35 58 30 36 58 30 31 59 30 32 59 30 33 59 30 34 59 30 35 59 30 36 59 30 32 60 30 33 60 30 34 60 30 35 60 30 36 60 30 32 61 30 33 61 30 34 61 30 35 61 30 36 61 30 32 57 31 33 57 31 33 58 31 33 59 31 34 59 31 34 60 31 35 60 31 36 61 31 42 41 0 43 41 0 44 41 0 45 41 0 46 41 0 47 41 0 43 42 0 44 42 0 45 42 0 46 42 0 47 42 0 42 41 1 43 41 1 44 41 1 45 41 1 46 41 1 47 41 1 43 42 1 44 42 1 45 42 1 46 42 1 47 42 1 43 43 1 44 43 1 45 43 1 46 43 1 47 40 2 42 41 2 43 41 2 44 41 2 45 41 2 46 41 2 47 41 2 43 42 2 44 42 2 45 42 2 46 42 2 47 42 2 43 43 2 44 43 2 45 43 2 46 43 2 43 39 3 44 39 3 42 40 3 43 40 3 47 40 3 42 41 3 43 41 3 44 41 3 45 41 3 46 41 3 47 41 3 48 41 3 42 42 3 43 42 3 44 42 3 45 42 3 46 42 3 47 42 3 43 43 3 44 43 3 45 43 3 46 43 3 47 43 3 43 44 3 44 44 3 46 44 3 43 39 4 44 39 4 45 39 4 46 39 4 42 40 4 43 40 4 44 40 4 46 40 4 47 40 4 48 40 4 42 41 4 43 41 4 44 41 4 45 41 4 46 41 4 47 41 4 48 41 4 42 42 4 43 42 4 44 42 4 45 42 4 46 42 4 47 42 4 43 43 4 44 43 4 45 43 4 46 43 4 47 43 4 43 44 4 44 44 4 45 44 4 46 44 4 47 44 4 43 39 5 44 39 5 45 39 5 46 39 5 47 39 5 42 40 5 43 40 5 44 40 5 46 40 5 47 40 5 48 40 5 42 41 5 43 41 5 44 41 5 45 41 5 46 41 5 47 41 5 48 41 5 42 42 5 43 42 5 44 42 5 45 42 5 46 42 5 47 42 5 48 42 5 42 43 5 43 43 5 44 43 5 45 43 5 46 43 5 47 43 5 48 43 5 42 44 5 43 44 5 44 44 5 45 44 5 46 44 5 47 44 5 43 45 5 44 45 5 45 45 5 46 45 5 47 45 5 43 39 6 44 39 6 45 39 6 46 39 6 47 39 6 42 40 6 43 40 6 44 40 6 46 40 6 47 40 6 48 40 6 41 41 6 42 41 6 43 41 6 44 41 6 45 41 6 46 41 6 47 41 6 48 41 6 41 42 6 42 42 6 43 42 6 44 42 6 45 42 6 46 42 6 47 42 6 48 42 6 42 43 6 43 43 6 44 43 6 45 43 6 46 43 6 47 43 6 48 43 6 42 44 6 43 44 6 44 44 6 45 44 6 46 44 6 47 44 6 48 44 6 42 45 6 43 45 6 44 45 6 45 45 6 46 45 6 47 45 6 48 45 6 43 46 6 44 46 6 43 39 7 44 39 7 45 39 7 46 39 7 47 39 7 42 40 7 43 40 7 44 40 7 46 40 7 47 40 7 48 40 7 41 41 7 42 41 7 43 41 7 44 41 7 45 41 7 46 41 7 47 41 7 48 41 7 41 42 7 42 42 7 43 42 7 44 42 7 45 42 7 46 42 7 47 42 7 48 42 7 41 43 7 42 43 7 43 43 7 44 43 7 45 43 7 46 43 7 47 43 7 48 43 7 49 43 7 41 44 7 42 44 7 43 44 7 44 44 7 45 44 7 46 44 7 47 44 7 48 44 7 49 44 7 41 45 7 42 45 7 43 45 7 44 45 7 45 45 7 46 45 7 47 45 7 48 45 7 42 46 7 43 46 7 44 46 7 45 46 7 46 46 7 47 46 7 46 39 8 42 40 8 43 40 8 44 40 8 46 40 8 47 40 8 48 40 8 41 41 8 42 41 8 43 41 8 44 41 8 45 41 8 46 41 8 47 41 8 48 41 8 49 41 8 41 42 8 42 42 8 43 42 8 44 42 8 45 42 8 46 42 8 47 42 8 48 42 8 49 42 8 41 43 8 42 43 8 43 43 8 44 43 8 45 43 8 46 43 8 47 43 8 48 43 8 49 43 8 41 44 8 42 44 8 43 44 8 44 44 8 45 44 8 46 44 8 47 44 8 48 44 8 49 44 8 41 45 8 42 45 8 43 45 8 44 45 8 45 45 8 46 45 8 47 45 8 48 45 8 49 45 8 42 46 8 43 46 8 44 46 8 45 46 8 46 46 8 47 46 8 48 46 8 42 47 8 43 47 8 44 47 8 46 47 8 47 47 8 42 40 9 43 40 9 46 40 9 47 40 9 48 40 9 41 41 9 42 41 9 43 41 9 44 41 9 45 41 9 46 41 9 47 41 9 48 41 9 49 41 9 41 42 9 42 42 9 43 42 9 44 42 9 45 42 9 46 42 9 47 42 9 48 42 9 49 42 9 41 43 9 42 43 9 43 43 9 44 43 9 45 43 9 46 43 9 47 43 9 48 43 9 49 43 9 41 44 9 42 44 9 43 44 9 44 44 9 45 44 9 46 44 9 47 44 9 48 44 9 49 44 9 41 45 9 42 45 9 43 45 9 44 45 9 45 45 9 46 45 9 47 45 9 48 45 9 49 45 9 41 46 9 42 46 9 43 46 9 44 46 9 45 46 9 46 46 9 47 46 9 48 46 9 49 46 9 42 47 9 43 47 9 44 47 9 46 47 9 47 47 9 48 47 9 42 40 10 43 40 10 47 40 10 48 40 10 41 41 10 42 41 10 43 41 10 44 41 10 45 41 10 46 41 10 47 41 10 48 41 10 49 41 10 40 42 10 41 42 10 42 42 10 43 42 10 44 42 10 45 42 10 46 42 10 47 42 10 48 42 10 49 42 10 40 43 10 41 43 10 42 43 10 43 43 10 44 43 10 45 43 10 46 43 10 47 43 10 48 43 10 49 43 10 41 44 10 42 44 10 43 44 10 44 44 10 45 44 10 46 44 10 47 44 10 48 44 10 49 44 10 41 45 10 42 45 10 43 45 10 44 45 10 45 45 10 46 45 10 47 45 10 48 45 10 49 45 10 41 46 10 42 46 10 43 46 10 44 46 10 45 46 10 46 46 10 47 46 10 48 46 10 49 46 10 42 47 10 43 47 10 44 47 10 45 47 10 46 47 10 47 47 10 48 47 10 43 48 10 47 40 11 48 40 11 40 41 11 41 41 11 42 41 11 43 41 11 44 41 11 45 41 11 46 41 11 47 41 11 48 41 11 49 41 11 40 42 11 41 42 11 42 42 11 43 42 11 44 42 11 45 42 11 46 42 11 47 42 11 48 42 11 49 42 11 40 43 11 41 43 11 42 43 11 43 43 11 44 43 11 45 43 11 46 43 11 47 43 11 48 43 11 49 43 11 41 44 11 42 44 11 43 44 11 44 44 11 45 44 11 46 44 11 47 44 11 48 44 11 49 44 11 41 45 11 42 45 11 43 45 11 44 45 11 45 45 11 46 45 11 47 45 11 48 45 11 49 45 11 41 46 11 42 46 11 43 46 11 44 46 11 45 46 11 46 46 11 47 46 11 48 46 11 49 46 11 42 47 11 43 47 11 44 47 11 45 47 11 46 47 11 47 47 11 48 47 11 43 48 11 46 48 11 47 48 11 40 41 12 41 41 12 42 41 12 43 41 12 46 41 12 47 41 12 48 41 12 49 41 12 40 42 12 41 42 12 42 42 12 43 42 12 44 42 12 45 42 12 46 42 12 47 42 12 48 42 12 49 42 12 50 42 12 39 43 12 40 43 12 41 43 12 42 43 12 43 43 12 44 43 12 45 43 12 46 43 12 47 43 12 48 43 12 49 43 12 50 43 12 40 44 12 41 44 12 42 44 12 43 44 12 44 44 12 45 44 12 46 44 12 47 44 12 48 44 12 49 44 12 41 45 12 42 45 12 43 45 12 44 45 12 45 45 12 46 45 12 47 45 12 48 45 12 49 45 12 41 46 12 42 46 12 43 46 12 44 46 12 45 46 12 46 46 12 47 46 12 48 46 12 42 47 12 43 47 12 44 47 12 46 47 12 47 47 12 48 47 12 42 48 12 43 48 12 46 48 12 47 48 12 48 48 12 41 49 12 42 49 12 43 49 12 44 49 12 46 49 12 47 49 12 48 49 12 41 50 12 42 50 12 43 50 12 44 50 12 45 50 12 46 50 12 47 50 12 48 50 12 42 51 12 43 51 12 44 51 12 46 51 12 47 51 12 48 51 12 40 41 13 41 41 13 42 41 13 43 41 13 47 41 13 48 41 13 49 41 13 39 42 13 40 42 13 41 42 13 42 42 13 43 42 13 44 42 13 45 42 13 46 42 13 47 42 13 48 42 13 49 42 13 50 42 13 39 43 13 40 43 13 41 43 13 42 43 13 43 43 13 44 43 13 45 43 13 46 43 13 47 43 13 48 43 13 49 43 13 50 43 13 39 44 13 40 44 13 41 44 13 42 44 13 43 44 13 44 44 13 45 44 13 46 44 13 47 44 13 48 44 13 49 44 13 41 45 13 42 45 13 43 45 13 44 45 13 45 45 13 46 45 13 47 45 13 48 45 13 42 46 13 43 46 13 44 46 13 45 46 13 46 46 13 47 46 13 48 46 13 41 47 13 42 47 13 43 47 13 44 47 13 46 47 13 47 47 13 48 47 13 41 48 13 42 48 13 43 48 13 44 48 13 45 48 13 46 48 13 47 48 13 48 48 13 49 48 13 50 48 13 40 49 13 41 49 13 42 49 13 43 49 13 44 49 13 45 49 13 46 49 13 47 49 13 48 49 13 49 49 13 50 49 13 40 50 13 41 50 13 42 50 13 43 50 13 44 50 13 45 50 13 46 50 13 47 50 13 48 50 13 49 50 13 41 51 13 42 51 13 43 51 13 44 51 13 45 51 13 46 51 13 47 51 13 48 51 13 49 51 13 42 52 13 43 52 13 44 52 13 45 52 13 46 52 13 47 52 13 48 52 13 41 41 14 42 41 14 47 41 14 48 41 14 49 41 14 39 42 14 40 42 14 41 42 14 42 42 14 43 42 14 44 42 14 45 42 14 46 42 14 47 42 14 48 42 14 49 42 14 50 42 14 39 43 14 40 43 14 41 43 14 42 43 14 43 43 14 44 43 14 45 43 14 46 43 14 47 43 14 48 43 14 49 43 14 50 43 14 39 44 14 40 44 14 41 44 14 42 44 14 43 44 14 44 44 14 45 44 14 46 44 14 47 44 14 48 44 14 49 44 14 41 45 14 42 45 14 43 45 14 44 45 14 45 45 14 46 45 14 47 45 14 48 45 14 49 45 14 41 46 14 42 46 14 43 46 14 44 46 14 45 46 14 46 46 14 47 46 14 48 46 14 41 47 14 42 47 14 43 47 14 44 47 14 45 47 14 46 47 14 47 47 14 48 47 14 49 47 14 41 48 14 42 48 14 43 48 14 44 48 14 45 48 14 46 48 14 47 48 14 48 48 14 49 48 14 50 48 14 39 49 14 40 49 14 41 49 14 42 49 14 43 49 14 44 49 14 45 49 14 46 49 14 47 49 14 48 49 14 49 49 14 50 49 14 51 49 14 39 50 14 40 50 14 41 50 14 42 50 14 43 50 14 44 50 14 45 50 14 46 50 14 47 50 14 48 50 14 49 50 14 50 50 14 40 51 14 41 51 14 42 51 14 43 51 14 44 51 14 45 51 14 46 51 14 47 51 14 48 51 14 49 51 14 50 51 14 40 52 14 41 52 14 42 52 14 43 52 14 44 52 14 45 52 14 46 52 14 47 52 14 48 52 14 49 52 14 42 53 14 43 53 14 44 53 14 45 53 14 46 53 14 47 53 14 48 53 14 40 41 15 47 41 15 48 41 15 49 41 15 50 41 15 39 42 15 40 42 15 41 42 15 42 42 15 43 42 15 44 42 15 45 42 15 46 42 15 47 42 15 48 42 15 49 42 15 50 42 15 39 43 15 40 43 15 41 43 15 42 43 15 43 43 15 44 43 15 45 43 15 46 43 15 47 43 15 48 43 15 49 43 15 50 43 15 39 44 15 40 44 15 41 44 15 42 44 15 43 44 15 44 44 15 45 44 15 46 44 15 47 44 15 48 44 15 49 44 15 40 45 15 41 45 15 42 45 15 43 45 15 44 45 15 45 45 15 46 45 15 47 45 15 48 45 15 49 45 15 41 46 15 42 46 15 43 46 15 44 46 15 45 46 15 46 46 15 47 46 15 48 46 15 41 47 15 42 47 15 43 47 15 44 47 15 45 47 15 46 47 15 47 47 15 48 47 15 49 47 15 41 48 15 42 48 15 43 48 15 44 48 15 45 48 15 46 48 15 47 48 15 48 48 15 49 48 15 50 48 15 39 49 15 40 49 15 41 49 15 42 49 15 43 49 15 44 49 15 45 49 15 46 49 15 47 49 15 48 49 15 49 49 15 50 49 15 51 49 15 52 49 15 38 50 15 39 50 15 40 50 15 41 50 15 42 50 15 43 50 15 44 50 15 45 50 15 46 50 15 47 50 15 48 50 15 49 50 15 50 50 15 51 50 15 39 51 15 40 51 15 41 51 15 42 51 15 43 51 15 44 51 15 45 51 15 46 51 15 47 51 15 48 51 15 49 51 15 50 51 15 51 51 15 40 52 15 41 52 15 42 52 15 43 52 15 44 52 15 45 52 15 46 52 15 47 52 15 48 52 15 49 52 15 50 52 15 40 53 15 41 53 15 42 53 15 43 53 15 44 53 15 45 53 15 46 53 15 47 53 15 48 53 15 49 53 15 42 54 15 43 54 15 44 54 15 46 54 15 47 54 15 48 54 15 40 41 16 49 41 16 39 42 16 40 42 16 41 42 16 42 42 16 43 42 16 44 42 16 46 42 16 47 42 16 48 42 16 49 42 16 39 43 16 40 43 16 41 43 16 42 43 16 43 43 16 44 43 16 45 43 16 46 43 16 47 43 16 48 43 16 49 43 16 50 43 16 39 44 16 40 44 16 41 44 16 42 44 16 43 44 16 44 44 16 45 44 16 46 44 16 47 44 16 48 44 16 49 44 16 50 44 16 40 45 16 41 45 16 42 45 16 43 45 16 44 45 16 45 45 16 46 45 16 47 45 16 48 45 16 49 45 16 50 45 16 41 46 16 42 46 16 43 46 16 44 46 16 45 46 16 46 46 16 47 46 16 48 46 16 49 46 16 41 47 16 42 47 16 43 47 16 44 47 16 45 47 16 46 47 16 47 47 16 48 47 16 49 47 16 41 48 16 42 48 16 43 48 16 44 48 16 45 48 16 46 48 16 47 48 16 48 48 16 49 48 16 50 48 16 40 49 16 41 49 16 42 49 16 43 49 16 44 49 16 45 49 16 46 49 16 47 49 16 48 49 16 49 49 16 50 49 16 51 49 16 37 50 16 38 50 16 39 50 16 40 50 16 41 50 16 42 50 16 43 50 16 44 50 16 45 50 16 46 50 16 47 50 16 48 50 16 49 50 16 50 50 16 51 50 16 52 50 16 38 51 16 39 51 16 40 51 16 41 51 16 42 51 16 43 51 16 44 51 16 45 51 16 46 51 16 47 51 16 48 51 16 49 51 16 50 51 16 51 51 16 52 51 16 39 52 16 40 52 16 41 52 16 42 52 16 43 52 16 44 52 16 45 52 16 46 52 16 47 52 16 48 52 16 49 52 16 50 52 16 51 52 16 40 53 16 41 53 16 42 53 16 43 53 16 44 53 16 45 53 16 46 53 16 47 53 16 48 53 16 49 53 16 50 53 16 41 54 16 42 54 16 43 54 16 44 54 16 45 54 16 46 54 16 47 54 16 48 54 16 49 54 16 40 41 17 49 41 17 39 42 17 40 42 17 41 42 17 42 42 17 43 42 17 46 42 17 47 42 17 48 42 17 49 42 17 50 42 17 39 43 17 40 43 17 41 43 17 42 43 17 43 43 17 44 43 17 45 43 17 46 43 17 47 43 17 48 43 17 49 43 17 50 43 17 39 44 17 40 44 17 41 44 17 42 44 17 43 44 17 44 44 17 45 44 17 46 44 17 47 44 17 48 44 17 49 44 17 50 44 17 40 45 17 41 45 17 42 45 17 43 45 17 44 45 17 45 45 17 46 45 17 47 45 17 48 45 17 49 45 17 50 45 17 40 46 17 41 46 17 42 46 17 43 46 17 44 46 17 45 46 17 46 46 17 47 46 17 48 46 17 49 46 17 50 46 17 41 47 17 42 47 17 43 47 17 44 47 17 45 47 17 46 47 17 47 47 17 48 47 17 49 47 17 40 48 17 41 48 17 42 48 17 43 48 17 44 48 17 45 48 17 46 48 17 47 48 17 48 48 17 49 48 17 50 48 17 40 49 17 41 49 17 42 49 17 43 49 17 44 49 17 45 49 17 46 49 17 47 49 17 48 49 17 49 49 17 50 49 17 37 50 17 38 50 17 39 50 17 40 50 17 41 50 17 42 50 17 43 50 17 44 50 17 45 50 17 46 50 17 47 50 17 48 50 17 49 50 17 50 50 17 51 50 17 52 50 17 53 50 17 37 51 17 38 51 17 39 51 17 40 51 17 41 51 17 42 51 17 43 51 17 44 51 17 45 51 17 46 51 17 47 51 17 48 51 17 49 51 17 50 51 17 51 51 17 52 51 17 53 51 17 38 52 17 39 52 17 40 52 17 41 52 17 42 52 17 43 52 17 44 52 17 45 52 17 46 52 17 47 52 17 48 52 17 49 52 17 50 52 17 51 52 17 52 52 17 39 53 17 40 53 17 41 53 17 42 53 17 43 53 17 44 53 17 45 53 17 46 53 17 47 53 17 48 53 17 49 53 17 50 53 17 51 53 17 40 54 17 41 54 17 42 54 17 43 54 17 44 54 17 45 54 17 46 54 17 47 54 17 48 54 17 49 54 17 50 54 17 41 55 17 42 55 17 43 55 17 44 55 17 46 55 17 47 55 17 48 55 17 40 41 18 41 41 18 49 41 18 40 42 18 41 42 18 48 42 18 49 42 18 50 42 18 40 43 18 41 43 18 42 43 18 43 43 18 44 43 18 45 43 18 46 43 18 47 43 18 48 43 18 49 43 18 50 43 18 39 44 18 40 44 18 41 44 18 42 44 18 43 44 18 44 44 18 45 44 18 46 44 18 47 44 18 48 44 18 49 44 18 50 44 18 39 45 18 40 45 18 41 45 18 42 45 18 43 45 18 44 45 18 45 45 18 46 45 18 47 45 18 48 45 18 49 45 18 50 45 18 40 46 18 41 46 18 42 46 18 43 46 18 44 46 18 45 46 18 46 46 18 47 46 18 48 46 18 49 46 18 50 46 18 40 47 18 41 47 18 42 47 18 43 47 18 44 47 18 45 47 18 46 47 18 47 47 18 48 47 18 49 47 18 50 47 18 40 48 18 41 48 18 42 48 18 43 48 18 44 48 18 45 48 18 46 48 18 47 48 18 48 48 18 49 48 18 50 48 18 40 49 18 41 49 18 42 49 18 43 49 18 44 49 18 45 49 18 46 49 18 47 49 18 48 49 18 49 49 18 50 49 18 38 50 18 39 50 18 40 50 18 41 50 18 42 50 18 43 50 18 44 50 18 45 50 18 46 50 18 47 50 18 48 50 18 49 50 18 50 50 18 51 50 18 52 50 18 53 50 18 37 51 18 38 51 18 39 51 18 40 51 18 41 51 18 42 51 18 43 51 18 44 51 18 45 51 18 46 51 18 47 51 18 48 51 18 49 51 18 50 51 18 51 51 18 52 51 18 53 51 18 37 52 18 38 52 18 39 52 18 40 52 18 41 52 18 42 52 18 43 52 18 44 52 18 45 52 18 46 52 18 47 52 18 48 52 18 49 52 18 50 52 18 51 52 18 52 52 18 38 53 18 39 53 18 40 53 18 41 53 18 42 53 18 43 53 18 44 53 18 45 53 18 46 53 18 47 53 18 48 53 18 49 53 18 50 53 18 51 53 18 52 53 18 39 54 18 40 54 18 41 54 18 42 54 18 43 54 18 44 54 18 45 54 18 46 54 18 47 54 18 48 54 18 49 54 18 50 54 18 51 54 18 40 55 18 41 55 18 42 55 18 43 55 18 44 55 18 45 55 18 46 55 18 47 55 18 48 55 18 49 55 18 41 41 19 49 41 19 50 41 19 40 42 19 41 42 19 48 42 19 49 42 19 50 42 19 40 43 19 41 43 19 42 43 19 43 43 19 44 43 19 46 43 19 47 43 19 48 43 19 49 43 19 50 43 19 40 44 19 41 44 19 42 44 19 43 44 19 44 44 19 45 44 19 46 44 19 47 44 19 48 44 19 49 44 19 50 44 19 39 45 19 40 45 19 41 45 19 42 45 19 43 45 19 44 45 19 45 45 19 46 45 19 47 45 19 48 45 19 49 45 19 50 45 19 40 46 19 41 46 19 42 46 19 43 46 19 44 46 19 45 46 19 46 46 19 47 46 19 48 46 19 49 46 19 50 46 19 40 47 19 41 47 19 42 47 19 43 47 19 44 47 19 45 47 19 46 47 19 47 47 19 48 47 19 49 47 19 50 47 19 40 48 19 41 48 19 42 48 19 43 48 19 44 48 19 45 48 19 46 48 19 47 48 19 48 48 19 49 48 19 50 48 19 40 49 19 41 49 19 42 49 19 43 49 19 44 49 19 45 49 19 46 49 19 47 49 19 48 49 19 49 49 19 50 49 19 38 50 19 39 50 19 40 50 19 41 50 19 42 50 19 43 50 19 44 50 19 45 50 19 46 50 19 47 50 19 48 50 19 49 50 19 50 50 19 51 50 19 52 50 19 36 51 19 37 51 19 38 51 19 39 51 19 40 51 19 41 51 19 42 51 19 43 51 19 44 51 19 45 51 19 46 51 19 47 51 19 48 51 19 49 51 19 50 51 19 51 51 19 52 51 19 53 51 19 54 51 19 37 52 19 38 52 19 39 52 19 40 52 19 41 52 19 42 52 19 43 52 19 44 52 19 45 52 19 46 52 19 47 52 19 48 52 19 49 52 19 50 52 19 51 52 19 52 52 19 38 53 19 39 53 19 40 53 19 41 53 19 42 53 19 43 53 19 44 53 19 45 53 19 46 53 19 47 53 19 48 53 19 49 53 19 50 53 19 51 53 19 52 53 19 39 54 19 40 54 19 41 54 19 42 54 19 43 54 19 44 54 19 45 54 19 46 54 19 47 54 19 48 54 19 49 54 19 50 54 19 51 54 19 40 55 19 41 55 19 42 55 19 43 55 19 44 55 19 45 55 19 46 55 19 47 55 19 48 55 19 49 55 19 50 55 19 41 56 19 42 56 19 43 56 19 46 56 19 47 56 19 48 56 19 49 56 19 49 41 20 50 41 20 40 42 20 41 42 20 48 42 20 49 42 20 50 42 20 40 43 20 41 43 20 42 43 20 47 43 20 48 43 20 49 43 20 50 43 20 40 44 20 41 44 20 42 44 20 43 44 20 44 44 20 45 44 20 46 44 20 47 44 20 48 44 20 49 44 20 50 44 20 40 45 20 41 45 20 42 45 20 43 45 20 44 45 20 45 45 20 46 45 20 47 45 20 48 45 20 49 45 20 50 45 20 39 46 20 40 46 20 41 46 20 42 46 20 43 46 20 44 46 20 45 46 20 46 46 20 47 46 20 48 46 20 49 46 20 50 46 20 39 47 20 40 47 20 41 47 20 42 47 20 43 47 20 44 47 20 45 47 20 46 47 20 47 47 20 48 47 20 49 47 20 50 47 20 39 48 20 40 48 20 41 48 20 42 48 20 43 48 20 44 48 20 45 48 20 46 48 20 47 48 20 48 48 20 49 48 20 50 48 20 39 49 20 40 49 20 41 49 20 42 49 20 43 49 20 44 49 20 45 49 20 46 49 20 47 49 20 48 49 20 49 49 20 50 49 20 38 50 20 39 50 20 40 50 20 41 50 20 42 50 20 43 50 20 44 50 20 45 50 20 46 50 20 47 50 20 48 50 20 49 50 20 50 50 20 51 50 20 52 50 20 36 51 20 37 51 20 38 51 20 39 51 20 40 51 20 41 51 20 42 51 20 43 51 20 44 51 20 45 51 20 46 51 20 47 51 20 48 51 20 49 51 20 50 51 20 51 51 20 52 51 20 53 51 20 37 52 20 38 52 20 39 52 20 40 52 20 41 52 20 42 52 20 43 52 20 44 52 20 45 52 20 46 52 20 47 52 20 48 52 20 49 52 20 50 52 20 51 52 20 52 52 20 53 52 20 38 53 20 39 53 20 40 53 20 41 53 20 42 53 20 43 53 20 44 53 20 45 53 20 46 53 20 47 53 20 48 53 20 49 53 20 50 53 20 51 53 20 52 53 20 38 54 20 39 54 20 40 54 20 41 54 20 42 54 20 43 54 20 44 54 20 45 54 20 46 54 20 47 54 20 48 54 20 49 54 20 50 54 20 51 54 20 52 54 20 39 55 20 40 55 20 41 55 20 42 55 20 43 55 20 44 55 20 45 55 20 46 55 20 47 55 20 48 55 20 49 55 20 50 55 20 51 55 20 40 56 20 41 56 20 42 56 20 43 56 20 44 56 20 45 56 20 46 56 20 47 56 20 48 56 20 49 56 20 50 56 20 40 42 21 41 42 21 48 42 21 49 42 21 41 43 21 42 43 21 48 43 21 49 43 21 40 44 21 41 44 21 42 44 21 43 44 21 44 44 21 45 44 21 46 44 21 47 44 21 48 44 21 49 44 21 50 44 21 40 45 21 41 45 21 42 45 21 43 45 21 44 45 21 45 45 21 46 45 21 47 45 21 48 45 21 49 45 21 50 45 21 39 46 21 40 46 21 41 46 21 42 46 21 43 46 21 44 46 21 45 46 21 46 46 21 47 46 21 48 46 21 49 46 21 50 46 21 39 47 21 40 47 21 41 47 21 42 47 21 43 47 21 44 47 21 45 47 21 46 47 21 47 47 21 48 47 21 49 47 21 50 47 21 39 48 21 40 48 21 41 48 21 42 48 21 43 48 21 44 48 21 45 48 21 46 48 21 47 48 21 48 48 21 49 48 21 50 48 21 39 49 21 40 49 21 41 49 21 42 49 21 43 49 21 44 49 21 45 49 21 46 49 21 47 49 21 48 49 21 49 49 21 50 49 21 39 50 21 40 50 21 41 50 21 42 50 21 43 50 21 44 50 21 45 50 21 46 50 21 47 50 21 48 50 21 49 50 21 50 50 21 51 50 21 37 51 21 38 51 21 39 51 21 40 51 21 41 51 21 42 51 21 43 51 21 44 51 21 45 51 21 46 51 21 47 51 21 48 51 21 49 51 21 50 51 21 51 51 21 52 51 21 53 51 21 37 52 21 38 52 21 39 52 21 40 52 21 41 52 21 42 52 21 43 52 21 44 52 21 45 52 21 46 52 21 47 52 21 48 52 21 49 52 21 50 52 21 51 52 21 52 52 21 37 53 21 38 53 21 39 53 21 40 53 21 41 53 21 42 53 21 43 53 21 44 53 21 45 53 21 46 53 21 47 53 21 48 53 21 49 53 21 50 53 21 51 53 21 52 53 21 38 54 21 39 54 21 40 54 21 41 54 21 42 54 21 43 54 21 44 54 21 45 54 21 46 54 21 47 54 21 48 54 21 49 54 21 50 54 21 51 54 21 52 54 21 39 55 21 40 55 21 41 55 21 42 55 21 43 55 21 44 55 21 45 55 21 46 55 21 47 55 21 48 55 21 49 55 21 50 55 21 51 55 21 40 56 21 41 56 21 42 56 21 43 56 21 44 56 21 45 56 21 46 56 21 47 56 21 48 56 21 49 56 21 50 56 21 41 42 22 42 42 22 48 42 22 49 42 22 41 43 22 42 43 22 48 43 22 49 43 22 41 44 22 42 44 22 43 44 22 44 44 22 45 44 22 46 44 22 47 44 22 48 44 22 49 44 22 40 45 22 41 45 22 42 45 22 43 45 22 44 45 22 45 45 22 46 45 22 47 45 22 48 45 22 49 45 22 39 46 22 40 46 22 41 46 22 42 46 22 43 46 22 44 46 22 45 46 22 46 46 22 47 46 22 48 46 22 49 46 22 50 46 22 39 47 22 40 47 22 41 47 22 42 47 22 43 47 22 44 47 22 45 47 22 46 47 22 47 47 22 48 47 22 49 47 22 50 47 22 39 48 22 40 48 22 41 48 22 42 48 22 43 48 22 44 48 22 45 48 22 46 48 22 47 48 22 48 48 22 49 48 22 50 48 22 39 49 22 40 49 22 41 49 22 42 49 22 43 49 22 44 49 22 45 49 22 46 49 22 47 49 22 48 49 22 49 49 22 50 49 22 39 50 22 40 50 22 41 50 22 42 50 22 43 50 22 44 50 22 45 50 22 46 50 22 47 50 22 48 50 22 49 50 22 50 50 22 51 50 22 37 51 22 38 51 22 39 51 22 40 51 22 41 51 22 42 51 22 43 51 22 44 51 22 45 51 22 46 51 22 47 51 22 48 51 22 49 51 22 50 51 22 51 51 22 52 51 22 37 52 22 38 52 22 39 52 22 40 52 22 41 52 22 42 52 22 43 52 22 44 52 22 45 52 22 46 52 22 47 52 22 48 52 22 49 52 22 50 52 22 51 52 22 52 52 22 37 53 22 38 53 22 39 53 22 40 53 22 41 53 22 42 53 22 43 53 22 44 53 22 45 53 22 46 53 22 47 53 22 48 53 22 49 53 22 50 53 22 51 53 22 52 53 22 38 54 22 39 54 22 40 54 22 41 54 22 42 54 22 43 54 22 44 54 22 45 54 22 46 54 22 47 54 22 48 54 22 49 54 22 50 54 22 51 54 22 52 54 22 39 55 22 40 55 22 41 55 22 42 55 22 43 55 22 44 55 22 45 55 22 46 55 22 47 55 22 48 55 22 49 55 22 50 55 22 51 55 22 40 56 22 41 56 22 42 56 22 43 56 22 44 56 22 45 56 22 46 56 22 47 56 22 48 56 22 49 56 22 50 56 22 41 42 23 42 42 23 47 42 23 48 42 23 41 43 23 42 43 23 48 43 23 41 44 23 42 44 23 43 44 23 46 44 23 47 44 23 48 44 23 49 44 23 40 45 23 41 45 23 42 45 23 43 45 23 44 45 23 45 45 23 46 45 23 47 45 23 48 45 23 49 45 23 39 46 23 40 46 23 41 46 23 42 46 23 43 46 23 44 46 23 45 46 23 46 46 23 47 46 23 48 46 23 49 46 23 50 46 23 39 47 23 40 47 23 41 47 23 42 47 23 43 47 23 44 47 23 45 47 23 46 47 23 47 47 23 48 47 23 49 47 23 50 47 23 39 48 23 40 48 23 41 48 23 42 48 23 43 48 23 44 48 23 45 48 23 46 48 23 47 48 23 48 48 23 49 48 23 50 48 23 39 49 23 40 49 23 41 49 23 42 49 23 43 49 23 44 49 23 45 49 23 46 49 23 47 49 23 48 49 23 49 49 23 50 49 23 39 50 23 40 50 23 41 50 23 42 50 23 43 50 23 44 50 23 45 50 23 46 50 23 47 50 23 48 50 23 49 50 23 50 50 23 51 50 23 52 50 23 37 51 23 38 51 23 39 51 23 40 51 23 41 51 23 42 51 23 43 51 23 44 51 23 45 51 23 46 51 23 47 51 23 48 51 23 49 51 23 50 51 23 51 51 23 52 51 23 37 52 23 38 52 23 39 52 23 40 52 23 41 52 23 42 52 23 43 52 23 44 52 23 45 52 23 46 52 23 47 52 23 48 52 23 49 52 23 50 52 23 51 52 23 52 52 23 38 53 23 39 53 23 40 53 23 41 53 23 42 53 23 43 53 23 44 53 23 45 53 23 46 53 23 47 53 23 48 53 23 49 53 23 50 53 23 51 53 23 52 53 23 38 54 23 39 54 23 40 54 23 41 54 23 42 54 23 43 54 23 44 54 23 45 54 23 46 54 23 47 54 23 48 54 23 49 54 23 50 54 23 51 54 23 52 54 23 39 55 23 40 55 23 41 55 23 42 55 23 43 55 23 44 55 23 45 55 23 46 55 23 47 55 23 48 55 23 49 55 23 50 55 23 51 55 23 40 56 23 41 56 23 42 56 23 43 56 23 44 56 23 45 56 23 46 56 23 47 56 23 48 56 23 49 56 23 50 56 23 42 42 24 43 42 24 45 42 24 46 42 24 47 42 24 48 42 24 41 43 24 42 43 24 47 43 24 48 43 24 41 44 24 42 44 24 43 44 24 46 44 24 47 44 24 48 44 24 49 44 24 40 45 24 41 45 24 42 45 24 43 45 24 44 45 24 45 45 24 46 45 24 47 45 24 48 45 24 49 45 24 40 46 24 41 46 24 42 46 24 43 46 24 44 46 24 45 46 24 46 46 24 47 46 24 48 46 24 49 46 24 50 46 24 39 47 24 40 47 24 41 47 24 42 47 24 43 47 24 44 47 24 45 47 24 46 47 24 47 47 24 48 47 24 49 47 24 50 47 24 39 48 24 40 48 24 41 48 24 42 48 24 43 48 24 44 48 24 45 48 24 46 48 24 47 48 24 48 48 24 49 48 24 50 48 24 39 49 24 40 49 24 41 49 24 42 49 24 43 49 24 44 49 24 45 49 24 46 49 24 47 49 24 48 49 24 49 49 24 50 49 24 51 49 24 39 50 24 40 50 24 41 50 24 42 50 24 43 50 24 44 50 24 45 50 24 46 50 24 47 50 24 48 50 24 49 50 24 50 50 24 51 50 24 52 50 24 38 51 24 39 51 24 40 51 24 41 51 24 42 51 24 43 51 24 44 51 24 45 51 24 46 51 24 47 51 24 48 51 24 49 51 24 50 51 24 51 51 24 52 51 24 38 52 24 39 52 24 40 52 24 41 52 24 42 52 24 43 52 24 44 52 24 45 52 24 46 52 24 47 52 24 48 52 24 49 52 24 50 52 24 51 52 24 52 52 24 38 53 24 39 53 24 40 53 24 41 53 24 42 53 24 43 53 24 44 53 24 45 53 24 46 53 24 47 53 24 48 53 24 49 53 24 50 53 24 51 53 24 52 53 24 39 54 24 40 54 24 41 54 24 42 54 24 43 54 24 44 54 24 45 54 24 46 54 24 47 54 24 48 54 24 49 54 24 50 54 24 51 54 24 39 55 24 40 55 24 41 55 24 42 55 24 43 55 24 44 55 24 45 55 24 46 55 24 47 55 24 48 55 24 49 55 24 50 55 24 41 56 24 42 56 24 43 56 24 44 56 24 46 56 24 47 56 24 48 56 24 49 56 24 47 42 25 42 43 25 43 43 25 47 43 25 48 43 25 41 44 25 42 44 25 43 44 25 47 44 25 48 44 25 40 45 25 41 45 25 42 45 25 43 45 25 44 45 25 45 45 25 46 45 25 47 45 25 48 45 25 49 45 25 40 46 25 41 46 25 42 46 25 43 46 25 44 46 25 45 46 25 46 46 25 47 46 25 48 46 25 49 46 25 40 47 25 41 47 25 42 47 25 43 47 25 44 47 25 45 47 25 46 47 25 47 47 25 48 47 25 49 47 25 50 47 25 39 48 25 40 48 25 41 48 25 42 48 25 43 48 25 44 48 25 45 48 25 46 48 25 47 48 25 48 48 25 49 48 25 50 48 25 39 49 25 40 49 25 41 49 25 42 49 25 43 49 25 44 49 25 45 49 25 46 49 25 47 49 25 48 49 25 49 49 25 50 49 25 51 49 25 38 50 25 39 50 25 40 50 25 41 50 25 42 50 25 43 50 25 44 50 25 45 50 25 46 50 25 47 50 25 48 50 25 49 50 25 50 50 25 51 50 25 38 51 25 39 51 25 40 51 25 41 51 25 42 51 25 43 51 25 44 51 25 45 51 25 46 51 25 47 51 25 48 51 25 49 51 25 50 51 25 51 51 25 52 51 25 38 52 25 39 52 25 40 52 25 41 52 25 42 52 25 43 52 25 44 52 25 45 52 25 46 52 25 47 52 25 48 52 25 49 52 25 50 52 25 51 52 25 52 52 25 38 53 25 39 53 25 40 53 25 41 53 25 42 53 25 43 53 25 44 53 25 45 53 25 46 53 25 47 53 25 48 53 25 49 53 25 50 53 25 51 53 25 39 54 25 40 54 25 41 54 25 42 54 25 43 54 25 44 54 25 45 54 25 46 54 25 47 54 25 48 54 25 49 54 25 50 54 25 51 54 25 39 55 25 40 55 25 41 55 25 42 55 25 43 55 25 44 55 25 45 55 25 46 55 25 47 55 25 48 55 25 49 55 25 50 55 25 41 56 25 42 56 25 47 56 25 48 56 25 49 56 25 43 43 26 46 43 26 47 43 26 42 44 26 43 44 26 46 44 26 47 44 26 48 44 26 41 45 26 42 45 26 43 45 26 44 45 26 45 45 26 46 45 26 47 45 26 48 45 26 49 45 26 40 46 26 41 46 26 42 46 26 43 46 26 44 46 26 45 46 26 46 46 26 47 46 26 48 46 26 49 46 26 40 47 26 41 47 26 42 47 26 43 47 26 44 47 26 45 47 26 46 47 26 47 47 26 48 47 26 49 47 26 50 47 26 40 48 26 41 48 26 42 48 26 43 48 26 44 48 26 45 48 26 46 48 26 47 48 26 48 48 26 49 48 26 50 48 26 39 49 26 40 49 26 41 49 26 42 49 26 43 49 26 44 49 26 45 49 26 46 49 26 47 49 26 48 49 26 49 49 26 50 49 26 51 49 26 38 50 26 39 50 26 40 50 26 41 50 26 42 50 26 43 50 26 44 50 26 45 50 26 46 50 26 47 50 26 48 50 26 49 50 26 50 50 26 51 50 26 52 50 26 38 51 26 39 51 26 40 51 26 41 51 26 42 51 26 43 51 26 44 51 26 45 51 26 46 51 26 47 51 26 48 51 26 49 51 26 50 51 26 51 51 26 52 51 26 38 52 26 39 52 26 40 52 26 41 52 26 42 52 26 43 52 26 46 52 26 47 52 26 48 52 26 49 52 26 50 52 26 51 52 26 52 52 26 38 53 26 39 53 26 40 53 26 41 53 26 42 53 26 43 53 26 46 53 26 47 53 26 48 53 26 49 53 26 50 53 26 51 53 26 42 54 26 43 54 26 47 54 26 42 44 27 43 44 27 46 44 27 47 44 27 41 45 27 42 45 27 43 45 27 44 45 27 46 45 27 47 45 27 48 45 27 49 45 27 40 46 27 41 46 27 42 46 27 43 46 27 44 46 27 45 46 27 46 46 27 47 46 27 48 46 27 49 46 27 40 47 27 41 47 27 42 47 27 43 47 27 44 47 27 45 47 27 46 47 27 47 47 27 48 47 27 49 47 27 50 47 27 40 48 27 41 48 27 42 48 27 43 48 27 44 48 27 45 48 27 46 48 27 47 48 27 48 48 27 49 48 27 50 48 27 39 49 27 40 49 27 41 49 27 42 49 27 43 49 27 44 49 27 45 49 27 46 49 27 47 49 27 48 49 27 49 49 27 50 49 27 51 49 27 38 50 27 39 50 27 40 50 27 41 50 27 42 50 27 43 50 27 44 50 27 45 50 27 46 50 27 47 50 27 48 50 27 49 50 27 50 50 27 51 50 27 52 50 27 38 51 27 39 51 27 40 51 27 41 51 27 42 51 27 43 51 27 44 51 27 45 51 27 46 51 27 47 51 27 48 51 27 49 51 27 50 51 27 51 51 27 52 51 27 39 52 27 40 52 27 41 52 27 42 52 27 43 52 27 44 52 27 45 52 27 46 52 27 47 52 27 48 52 27 49 52 27 41 45 28 42 45 28 43 45 28 46 45 28 47 45 28 48 45 28 41 46 28 42 46 28 43 46 28 44 46 28 45 46 28 46 46 28 47 46 28 48 46 28 49 46 28 40 47 28 41 47 28 42 47 28 43 47 28 44 47 28 45 47 28 46 47 28 47 47 28 48 47 28 49 47 28 40 48 28 41 48 28 42 48 28 43 48 28 44 48 28 45 48 28 46 48 28 47 48 28 48 48 28 49 48 28 50 48 28 39 49 28 40 49 28 41 49 28 42 49 28 43 49 28 44 49 28 45 49 28 46 49 28 47 49 28 48 49 28 49 49 28 50 49 28 51 49 28 38 50 28 39 50 28 40 50 28 41 50 28 42 50 28 43 50 28 44 50 28 45 50 28 46 50 28 47 50 28 48 50 28 49 50 28 50 50 28 51 50 28 52 50 28 37 51 28 38 51 28 39 51 28 40 51 28 41 51 28 42 51 28 43 51 28 44 51 28 45 51 28 46 51 28 47 51 28 48 51 28 49 51 28 50 51 28 51 51 28 52 51 28 39 52 28 40 52 28 41 52 28 42 52 28 43 52 28 44 52 28 45 52 28 46 52 28 47 52 28 48 52 28 45 44 29 41 45 29 42 45 29 43 45 29 46 45 29 47 45 29 48 45 29 41 46 29 42 46 29 43 46 29 44 46 29 46 46 29 47 46 29 48 46 29 49 46 29 40 47 29 41 47 29 42 47 29 43 47 29 44 47 29 45 47 29 46 47 29 47 47 29 48 47 29 49 47 29 40 48 29 41 48 29 42 48 29 43 48 29 44 48 29 45 48 29 46 48 29 47 48 29 48 48 29 49 48 29 50 48 29 39 49 29 40 49 29 41 49 29 42 49 29 43 49 29 44 49 29 45 49 29 46 49 29 47 49 29 48 49 29 49 49 29 50 49 29 51 49 29 38 50 29 39 50 29 40 50 29 41 50 29 42 50 29 43 50 29 44 50 29 45 50 29 46 50 29 47 50 29 48 50 29 49 50 29 50 50 29 51 50 29 52 50 29 37 51 29 38 51 29 39 51 29 40 51 29 41 51 29 42 51 29 43 51 29 44 51 29 45 51 29 46 51 29 47 51 29 48 51 29 49 51 29 50 51 29 51 51 29 52 51 29 38 52 29 39 52 29 40 52 29 42 44 30 43 44 30 44 44 30 45 44 30 46 44 30 47 44 30 48 44 30 41 45 30 42 45 30 43 45 30 44 45 30 45 45 30 46 45 30 47 45 30 48 45 30 41 46 30 42 46 30 43 46 30 44 46 30 46 46 30 47 46 30 48 46 30 49 46 30 40 47 30 41 47 30 42 47 30 43 47 30 44 47 30 45 47 30 46 47 30 47 47 30 48 47 30 49 47 30 40 48 30 41 48 30 42 48 30 43 48 30 44 48 30 45 48 30 46 48 30 47 48 30 48 48 30 49 48 30 50 48 30 39 49 30 40 49 30 41 49 30 42 49 30 43 49 30 44 49 30 45 49 30 46 49 30 47 49 30 48 49 30 49 49 30 50 49 30 38 50 30 39 50 30 40 50 30 41 50 30 42 50 30 43 50 30 44 50 30 45 50 30 46 50 30 47 50 30 48 50 30 49 50 30 50 50 30 51 50 30 52 50 30 37 51 30 38 51 30 39 51 30 40 51 30 41 51 30 42 51 30 43 51 30 44 51 30 45 51 30 46 51 30 47 51 30 49 51 30 50 51 30 51 51 30 38 52 30 39 52 30 42 44 31 43 44 31 44 44 31 45 44 31 46 44 31 47 44 31 48 44 31 41 45 31 42 45 31 43 45 31 44 45 31 45 45 31 46 45 31 47 45 31 48 45 31 41 46 31 42 46 31 43 46 31 44 46 31 46 46 31 47 46 31 48 46 31 49 46 31 40 47 31 41 47 31 42 47 31 43 47 31 44 47 31 46 47 31 47 47 31 48 47 31 49 47 31 40 48 31 41 48 31 42 48 31 43 48 31 44 48 31 45 48 31 46 48 31 47 48 31 48 48 31 49 48 31 50 48 31 39 49 31 40 49 31 41 49 31 42 49 31 43 49 31 44 49 31 45 49 31 46 49 31 47 49 31 48 49 31 49 49 31 50 49 31 51 49 31 38 50 31 39 50 31 40 50 31 41 50 31 42 50 31 43 50 31 44 50 31 45 50 31 46 50 31 47 50 31 48 50 31 49 50 31 50 50 31 51 50 31 52 50 31 36 51 31 37 51 31 38 51 31 39 51 31 40 51 31 45 51 31 51 51 31 42 44 32 43 44 32 44 44 32 45 44 32 46 44 32 47 44 32 42 45 32 43 45 32 44 45 32 45 45 32 46 45 32 47 45 32 48 45 32 41 46 32 42 46 32 43 46 32 44 46 32 45 46 32 46 46 32 47 46 32 48 46 32 40 47 32 41 47 32 42 47 32 43 47 32 44 47 32 46 47 32 47 47 32 48 47 32 49 47 32 40 48 32 41 48 32 42 48 32 43 48 32 44 48 32 46 48 32 47 48 32 48 48 32 49 48 32 50 48 32 39 49 32 40 49 32 41 49 32 42 49 32 43 49 32 44 49 32 45 49 32 46 49 32 47 49 32 48 49 32 49 49 32 50 49 32 39 50 32 40 50 32 41 50 32 42 50 32 43 50 32 44 50 32 45 50 32 46 50 32 47 50 32 48 50 32 49 50 32 50 50 32 51 50 32 45 51 32 42 45 33 43 45 33 44 45 33 45 45 33 46 45 33 47 45 33 41 46 33 42 46 33 43 46 33 44 46 33 45 46 33 46 46 33 47 46 33 48 46 33 41 47 33 42 47 33 43 47 33 44 47 33 45 47 33 46 47 33 47 47 33 48 47 33 49 47 33 40 48 33 41 48 33 42 48 33 43 48 33 44 48 33 46 48 33 47 48 33 48 48 33 49 48 33 50 48 33 39 49 33 40 49 33 41 49 33 42 49 33 43 49 33 44 49 33 46 49 33 47 49 33 48 49 33 49 49 33 50 49 33 39 50 33 40 50 33 41 50 33 42 50 33 43 50 33 44 50 33 45 50 33 46 50 33 47 50 33 48 50 33 49 50 33 50 50 33 45 51 33 42 46 34 43 46 34 44 46 34 46 46 34 47 46 34 48 46 34 41 47 34 42 47 34 43 47 34 44 47 34 45 47 34 46 47 34 47 47 34 48 47 34 40 48 34 41 48 34 42 48 34 43 48 34 44 48 34 45 48 34 46 48 34 47 48 34 48 48 34 49 48 34 50 48 34 39 49 34 40 49 34 41 49 34 42 49 34 43 49 34 44 49 34 45 49 34 46 49 34 47 49 34 48 49 34 49 49 34 50 49 34 39 50 34 40 50 34 41 50 34 42 50 34 43 50 34 44 50 34 45 50 34 46 50 34 47 50 34 48 50 34 49 50 34 50 50 34 42 47 35 43 47 35 46 47 35 47 47 35 48 47 35 40 48 35 41 48 35 42 48 35 43 48 35 44 48 35 46 48 35 47 48 35 48 48 35 49 48 35 40 49 35 41 49 35 42 49 35 43 49 35 44 49 35 45 49 35 46 49 35 47 49 35 48 49 35 49 49 35 40 50 35 41 50 35 42 50 35 43 50 35 44 50 35 45 50 35 46 50 35 47 50 35 48 50 35 49 50 35 43 51 35 42 50 36 43 50 36 44 50 36 45 50 36 46 50 36 50 72 32 51 72 32 52 72 32 53 72 32 51 73 32 52 73 32 53 73 32 49 66 33 49 67 33 50 67 33 49 68 33 50 68 33 49 69 33 50 69 33 51 69 33 50 70 33 51 70 33 52 70 33 51 71 33 52 71 33 51 72 33 52 72 33 53 72 33 50 73 33 51 73 33 52 73 33 53 73 33 54 73 33 51 74 33 52 74 33 53 74 33 52 75 33 49 66 34 49 67 34 49 68 34 50 68 34 49 69 34 50 69 34 51 69 34 49 70 34 50 70 34 51 70 34 52 70 34 51 71 34 52 71 34 51 72 34 52 72 34 53 72 34 50 73 34 51 73 34 52 73 34 53 73 34 54 73 34 51 74 34 52 74 34 53 74 34 54 74 34 51 75 34 52 75 34 53 75 34 48 65 35 48 66 35 48 67 35 49 67 35 48 68 35 49 68 35 50 68 35 48 69 35 49 69 35 50 69 35 51 69 35 48 70 35 49 70 35 50 70 35 51 70 35 52 70 35 49 71 35 50 71 35 51 71 35 52 71 35 49 72 35 50 72 35 51 72 35 52 72 35 53 72 35 49 73 35 50 73 35 51 73 35 52 73 35 53 73 35 54 73 35 50 74 35 51 74 35 52 74 35 53 74 35 54 74 35 51 75 35 52 75 35 53 75 35 48 64 36 47 65 36 48 65 36 48 66 36 48 67 36 49 67 36 48 68 36 49 68 36 50 68 36 47 69 36 48 69 36 49 69 36 50 69 36 51 69 36 47 70 36 48 70 36 49 70 36 50 70 36 51 70 36 52 70 36 48 71 36 49 71 36 50 71 36 51 71 36 52 71 36 48 72 36 49 72 36 50 72 36 51 72 36 52 72 36 53 72 36 48 73 36 49 73 36 50 73 36 51 73 36 52 73 36 53 73 36 54 73 36 49 74 36 50 74 36 51 74 36 52 74 36 53 74 36 54 74 36 52 75 36 53 75 36 54 75 36 48 64 37 48 65 37 49 65 37 48 66 37 49 66 37 48 67 37 49 67 37 48 68 37 49 68 37 50 68 37 48 69 37 49 69 37 50 69 37 51 69 37 48 70 37 49 70 37 50 70 37 51 70 37 52 70 37 48 71 37 49 71 37 50 71 37 51 71 37 52 71 37 48 72 37 49 72 37 50 72 37 51 72 37 52 72 37 53 72 37 54 72 37 49 73 37 50 73 37 51 73 37 52 73 37 53 73 37 54 73 37 50 74 37 51 74 37 52 74 37 53 74 37 54 74 37 52 75 37 53 75 37 54 75 37 48 64 38 49 65 38 48 66 38 49 66 38 48 67 38 49 67 38 48 68 38 49 68 38 50 68 38 48 69 38 49 69 38 50 69 38 51 69 38 48 70 38 49 70 38 50 70 38 51 70 38 52 70 38 48 71 38 49 71 38 50 71 38 51 71 38 52 71 38 53 71 38 48 72 38 49 72 38 50 72 38 51 72 38 52 72 38 53 72 38 54 72 38 49 73 38 50 73 38 51 73 38 52 73 38 53 73 38 54 73 38 50 74 38 51 74 38 52 74 38 53 74 38 54 74 38 52 75 38 53 75 38 48 64 39 49 64 39 49 65 39 48 66 39 49 66 39 48 67 39 49 67 39 50 67 39 48 68 39 49 68 39 50 68 39 51 68 39 48 69 39 49 69 39 50 69 39 51 69 39 52 69 39 48 70 39 49 70 39 50 70 39 51 70 39 52 70 39 53 70 39 48 71 39 49 71 39 50 71 39 51 71 39 52 71 39 53 71 39 49 72 39 50 72 39 51 72 39 52 72 39 53 72 39 54 72 39 49 73 39 50 73 39 51 73 39 52 73 39 53 73 39 54 73 39 51 74 39 52 74 39 53 74 39 54 74 39 53 75 39 49 64 40 49 65 40 50 65 40 48 66 40 49 66 40 50 66 40 48 67 40 49 67 40 50 67 40 51 67 40 48 68 40 49 68 40 50 68 40 51 68 40 52 68 40 48 69 40 49 69 40 50 69 40 51 69 40 52 69 40 48 70 40 49 70 40 50 70 40 51 70 40 52 70 40 53 70 40 48 71 40 49 71 40 50 71 40 51 71 40 52 71 40 53 71 40 54 71 40 49 72 40 50 72 40 51 72 40 52 72 40 53 72 40 54 72 40 50 73 40 51 73 40 52 73 40 53 73 40 54 73 40 52 74 40 53 74 40 54 74 40 53 75 40 49 63 41 50 63 41 49 64 41 50 64 41 49 65 41 50 65 41 49 66 41 50 66 41 51 66 41 48 67 41 49 67 41 50 67 41 51 67 41 52 67 41 48 68 41 49 68 41 50 68 41 51 68 41 52 68 41 48 69 41 49 69 41 50 69 41 51 69 41 52 69 41 53 69 41 48 70 41 49 70 41 50 70 41 51 70 41 52 70 41 53 70 41 54 70 41 49 71 41 50 71 41 51 71 41 52 71 41 53 71 41 54 71 41 50 72 41 51 72 41 52 72 41 53 72 41 54 72 41 51 73 41 52 73 41 53 73 41 54 73 41 53 74 41 50 62 42 49 63 42 50 63 42 49 64 42 50 64 42 51 64 42 49 65 42 50 65 42 51 65 42 49 66 42 50 66 42 51 66 42 52 66 42 48 67 42 49 67 42 50 67 42 51 67 42 52 67 42 48 68 42 49 68 42 50 68 42 51 68 42 52 68 42 53 68 42 49 69 42 50 69 42 51 69 42 52 69 42 53 69 42 54 69 42 49 70 42 50 70 42 51 70 42 52 70 42 53 70 42 54 70 42 49 71 42 50 71 42 51 71 42 52 71 42 53 71 42 54 71 42 50 72 42 51 72 42 52 72 42 53 72 42 54 72 42 52 73 42 53 73 42 50 62 43 51 62 43 50 63 43 51 63 43 49 64 43 50 64 43 51 64 43 52 64 43 49 65 43 50 65 43 51 65 43 52 65 43 49 66 43 50 66 43 51 66 43 52 66 43 53 66 43 49 67 43 50 67 43 51 67 43 52 67 43 53 67 43 54 67 43 49 68 43 50 68 43 51 68 43 52 68 43 53 68 43 54 68 43 49 69 43 50 69 43 51 69 43 52 69 43 53 69 43 54 69 43 50 70 43 51 70 43 52 70 43 53 70 43 54 70 43 50 71 43 51 71 43 52 71 43 53 71 43 54 71 43 51 72 43 52 72 43 53 72 43 50 60 44 51 60 44 50 61 44 51 61 44 52 61 44 50 62 44 51 62 44 52 62 44 50 63 44 51 63 44 52 63 44 49 64 44 50 64 44 51 64 44 52 64 44 53 64 44 49 65 44 50 65 44 51 65 44 52 65 44 53 65 44 49 66 44 50 66 44 51 66 44 52 66 44 53 66 44 49 67 44 50 67 44 51 67 44 52 67 44 53 67 44 54 67 44 50 68 44 51 68 44 52 68 44 53 68 44 54 68 44 50 69 44 51 69 44 52 69 44 53 69 44 54 69 44 51 70 44 52 70 44 53 70 44 54 70 44 52 71 44 53 71 44 55 48 45 54 49 45 55 49 45 54 50 45 50 59 45 51 59 45 52 59 45 50 60 45 51 60 45 52 60 45 50 61 45 51 61 45 52 61 45 53 61 45 50 62 45 51 62 45 52 62 45 53 62 45 50 63 45 51 63 45 52 63 45 53 63 45 50 64 45 51 64 45 52 64 45 53 64 45 54 64 45 50 65 45 51 65 45 52 65 45 53 65 45 54 65 45 50 66 45 51 66 45 52 66 45 53 66 45 54 66 45 50 67 45 51 67 45 52 67 45 53 67 45 54 67 45 51 68 45 52 68 45 53 68 45 54 68 45 51 69 45 52 69 45 53 69 45 54 69 45 52 70 45 53 70 45 55 48 46 55 49 46 54 50 46 55 50 46 54 51 46 53 52 46 54 52 46 53 53 46 54 53 46 52 54 46 53 54 46 54 54 46 52 55 46 53 55 46 51 56 46 52 56 46 53 56 46 51 57 46 52 57 46 53 57 46 51 58 46 52 58 46 53 58 46 51 59 46 52 59 46 53 59 46 51 60 46 52 60 46 53 60 46 51 61 46 52 61 46 53 61 46 50 62 46 51 62 46 52 62 46 53 62 46 54 62 46 50 63 46 51 63 46 52 63 46 53 63 46 54 63 46 50 64 46 51 64 46 52 64 46 53 64 46 54 64 46 50 65 46 51 65 46 52 65 46 53 65 46 54 65 46 51 66 46 52 66 46 53 66 46 54 66 46 51 67 46 52 67 46 53 67 46 54 67 46 52 68 46 53 68 46 53 69 46 55 49 47 54 50 47 55 50 47 54 51 47 55 51 47 53 52 47 54 52 47 53 53 47 54 53 47 53 54 47 54 54 47 53 55 47 54 55 47 52 56 47 53 56 47 54 56 47 52 57 47 53 57 47 54 57 47 52 58 47 53 58 47 54 58 47 51 59 47 52 59 47 53 59 47 54 59 47 51 60 47 52 60 47 53 60 47 54 60 47 51 61 47 52 61 47 53 61 47 54 61 47 51 62 47 52 62 47 53 62 47 54 62 47 51 63 47 52 63 47 53 63 47 54 63 47 51 64 47 52 64 47 53 64 47 54 64 47 52 65 47 53 65 47 54 65 47 52 66 47 53 66 47 55 50 48 54 52 48 54 53 48 53 54 48 54 54 48 53 55 48 54 55 48 53 56 48 54 56 48 52 57 48 53 57 48 54 57 48 52 58 48 53 58 48 54 58 48 52 59 48 53 59 48 54 59 48 52 60 48 53 60 48 54 60 48 52 61 48 53 61 48 54 61 48 52 62 48 53 62 48 53 63 48 53 64 48 54 53 49 54 54 49 54 55 49 53 56 49 54 56 49 53 57 49 54 57 49 53 58 49 54 58 49 53 59 49 54 59 49 53 60 49 40 68 33 41 68 33 39 69 33 40 69 33 41 69 33 39 70 33 40 70 33 38 71 33 39 71 33 37 72 33 38 72 33 37 73 33 37 74 33 38 74 33 39 74 33 37 75 33 38 75 33 41 66 34 40 67 34 41 67 34 40 68 34 41 68 34 39 69 34 40 69 34 41 69 34 39 70 34 40 70 34 41 70 34 38 71 34 39 71 34 40 71 34 37 72 34 38 72 34 39 72 34 37 73 34 38 73 34 39 73 34 36 74 34 37 74 34 38 74 34 39 74 34 40 74 34 36 75 34 37 75 34 38 75 34 39 75 34 37 76 34 38 76 34 42 65 35 41 66 35 42 66 35 41 67 35 42 67 35 40 68 35 41 68 35 42 68 35 39 69 35 40 69 35 41 69 35 42 69 35 39 70 35 40 70 35 41 70 35 42 70 35 38 71 35 39 71 35 40 71 35 41 71 35 37 72 35 38 72 35 39 72 35 40 72 35 41 72 35 36 73 35 37 73 35 38 73 35 39 73 35 40 73 35 41 73 35 36 74 35 37 74 35 38 74 35 39 74 35 40 74 35 41 74 35 36 75 35 37 75 35 38 75 35 39 75 35 40 75 35 37 76 35 42 64 36 42 65 36 41 66 36 41 67 36 40 68 36 41 68 36 42 68 36 39 69 36 40 69 36 41 69 36 42 69 36 38 70 36 39 70 36 40 70 36 41 70 36 42 70 36 38 71 36 39 71 36 40 71 36 41 71 36 42 71 36 37 72 36 38 72 36 39 72 36 40 72 36 41 72 36 42 72 36 36 73 36 37 73 36 38 73 36 39 73 36 40 73 36 41 73 36 36 74 36 37 74 36 38 74 36 39 74 36 40 74 36 41 74 36 36 75 36 37 75 36 38 75 36 39 75 36 40 75 36 37 76 36 42 64 37 41 65 37 42 65 37 41 66 37 41 67 37 40 68 37 41 68 37 42 68 37 39 69 37 40 69 37 41 69 37 42 69 37 38 70 37 39 70 37 40 70 37 41 70 37 42 70 37 37 71 37 38 71 37 39 71 37 40 71 37 41 71 37 42 71 37 36 72 37 37 72 37 38 72 37 39 72 37 40 72 37 41 72 37 42 72 37 36 73 37 37 73 37 38 73 37 39 73 37 40 73 37 41 73 37 35 74 37 36 74 37 37 74 37 38 74 37 39 74 37 40 74 37 35 75 37 36 75 37 37 75 37 38 75 37 39 75 37 36 76 37 42 64 38 41 65 38 41 66 38 40 67 38 41 67 38 40 68 38 41 68 38 42 68 38 39 69 38 40 69 38 41 69 38 42 69 38 38 70 38 39 70 38 40 70 38 41 70 38 42 70 38 37 71 38 38 71 38 39 71 38 40 71 38 41 71 38 42 71 38 36 72 38 37 72 38 38 72 38 39 72 38 40 72 38 41 72 38 35 73 38 36 73 38 37 73 38 38 73 38 39 73 38 40 73 38 41 73 38 35 74 38 36 74 38 37 74 38 38 74 38 39 74 38 40 74 38 35 75 38 36 75 38 37 75 38 38 75 38 39 75 38 36 76 38 41 64 39 40 65 39 41 65 39 40 66 39 41 66 39 40 67 39 41 67 39 39 68 39 40 68 39 41 68 39 42 68 39 38 69 39 39 69 39 40 69 39 41 69 39 42 69 39 37 70 39 38 70 39 39 70 39 40 70 39 41 70 39 42 70 39 36 71 39 37 71 39 38 71 39 39 71 39 40 71 39 41 71 39 42 71 39 36 72 39 37 72 39 38 72 39 39 72 39 40 72 39 41 72 39 35 73 39 36 73 39 37 73 39 38 73 39 39 73 39 40 73 39 41 73 39 35 74 39 36 74 39 37 74 39 38 74 39 39 74 39 40 74 39 36 75 39 37 75 39 38 75 39 36 76 39 40 64 40 41 64 40 40 65 40 41 65 40 40 66 40 41 66 40 39 67 40 40 67 40 41 67 40 38 68 40 39 68 40 40 68 40 41 68 40 42 68 40 37 69 40 38 69 40 39 69 40 40 69 40 41 69 40 42 69 40 37 70 40 38 70 40 39 70 40 40 70 40 41 70 40 42 70 40 36 71 40 37 71 40 38 71 40 39 71 40 40 71 40 41 71 40 35 72 40 36 72 40 37 72 40 38 72 40 39 72 40 40 72 40 41 72 40 35 73 40 36 73 40 37 73 40 38 73 40 39 73 40 40 73 40 35 74 40 36 74 40 37 74 40 38 74 40 39 74 40 36 75 40 37 75 40 40 64 41 41 64 41 39 65 41 40 65 41 41 65 41 39 66 41 40 66 41 41 66 41 38 67 41 39 67 41 40 67 41 41 67 41 37 68 41 38 68 41 39 68 41 40 68 41 41 68 41 37 69 41 38 69 41 39 69 41 40 69 41 41 69 41 36 70 41 37 70 41 38 70 41 39 70 41 40 70 41 41 70 41 35 71 41 36 71 41 37 71 41 38 71 41 39 71 41 40 71 41 41 71 41 35 72 41 36 72 41 37 72 41 38 72 41 39 72 41 40 72 41 35 73 41 36 73 41 37 73 41 38 73 41 39 73 41 40 73 41 35 74 41 36 74 41 37 74 41 38 74 41 36 75 41 39 63 42 40 63 42 41 63 42 39 64 42 40 64 42 38 65 42 39 65 42 40 65 42 41 65 42 38 66 42 39 66 42 40 66 42 41 66 42 37 67 42 38 67 42 39 67 42 40 67 42 41 67 42 37 68 42 38 68 42 39 68 42 40 68 42 41 68 42 36 69 42 37 69 42 38 69 42 39 69 42 40 69 42 41 69 42 36 70 42 37 70 42 38 70 42 39 70 42 40 70 42 41 70 42 35 71 42 36 71 42 37 71 42 38 71 42 39 71 42 40 71 42 35 72 42 36 72 42 37 72 42 38 72 42 39 72 42 40 72 42 36 73 42 37 73 42 38 73 42 39 73 42 36 74 42 37 74 42 39 62 43 40 62 43 38 63 43 39 63 43 40 63 43 38 64 43 39 64 43 40 64 43 38 65 43 39 65 43 40 65 43 37 66 43 38 66 43 39 66 43 40 66 43 41 66 43 36 67 43 37 67 43 38 67 43 39 67 43 40 67 43 41 67 43 36 68 43 37 68 43 38 68 43 39 68 43 40 68 43 41 68 43 36 69 43 37 69 43 38 69 43 39 69 43 40 69 43 41 69 43 35 70 43 36 70 43 37 70 43 38 70 43 39 70 43 40 70 43 35 71 43 36 71 43 37 71 43 38 71 43 39 71 43 40 71 43 36 72 43 37 72 43 38 72 43 39 72 43 36 73 43 37 73 43 34 48 44 38 61 44 39 61 44 40 61 44 38 62 44 39 62 44 40 62 44 37 63 44 38 63 44 39 63 44 40 63 44 37 64 44 38 64 44 39 64 44 40 64 44 36 65 44 37 65 44 38 65 44 39 65 44 40 65 44 36 66 44 37 66 44 38 66 44 39 66 44 40 66 44 36 67 44 37 67 44 38 67 44 39 67 44 40 67 44 36 68 44 37 68 44 38 68 44 39 68 44 40 68 44 35 69 44 36 69 44 37 69 44 38 69 44 39 69 44 40 69 44 35 70 44 36 70 44 37 70 44 38 70 44 39 70 44 36 71 44 37 71 44 38 71 44 39 71 44 36 72 44 37 72 44 38 72 44 34 48 45 34 49 45 35 49 45 35 50 45 36 50 45 36 51 45 38 59 45 39 59 45 38 60 45 39 60 45 37 61 45 38 61 45 39 61 45 37 62 45 38 62 45 39 62 45 36 63 45 37 63 45 38 63 45 39 63 45 40 63 45 36 64 45 37 64 45 38 64 45 39 64 45 40 64 45 36 65 45 37 65 45 38 65 45 39 65 45 40 65 45 36 66 45 37 66 45 38 66 45 39 66 45 40 66 45 36 67 45 37 67 45 38 67 45 39 67 45 40 67 45 36 68 45 37 68 45 38 68 45 39 68 45 40 68 45 36 69 45 37 69 45 38 69 45 39 69 45 36 70 45 37 70 45 38 70 45 37 71 45 34 48 46 34 49 46 35 50 46 35 51 46 36 51 46 36 52 46 37 52 46 36 53 46 37 53 46 36 54 46 37 54 46 36 55 46 37 55 46 37 56 46 38 56 46 37 57 46 38 57 46 39 57 46 37 58 46 38 58 46 39 58 46 37 59 46 38 59 46 39 59 46 36 60 46 37 60 46 38 60 46 39 60 46 36 61 46 37 61 46 38 61 46 39 61 46 36 62 46 37 62 46 38 62 46 39 62 46 36 63 46 37 63 46 38 63 46 39 63 46 36 64 46 37 64 46 38 64 46 39 64 46 36 65 46 37 65 46 38 65 46 39 65 46 36 66 46 37 66 46 38 66 46 39 66 46 36 67 46 37 67 46 38 67 46 39 67 46 36 68 46 37 68 46 38 68 46 39 68 46 36 69 46 37 69 46 38 69 46 34 49 47 35 50 47 35 51 47 35 52 47 36 52 47 35 53 47 36 53 47 35 54 47 36 54 47 37 54 47 36 55 47 37 55 47 36 56 47 37 56 47 36 57 47 37 57 47 36 58 47 37 58 47 38 58 47 36 59 47 37 59 47 38 59 47 36 60 47 37 60 47 38 60 47 36 61 47 37 61 47 38 61 47 36 62 47 37 62 47 38 62 47 39 62 47 36 63 47 37 63 47 38 63 47 39 63 47 36 64 47 37 64 47 38 64 47 39 64 47 36 65 47 37 65 47 38 65 47 36 66 47 37 66 47 38 66 47 36 67 47 37 67 47 38 67 47 35 51 48 35 52 48 35 53 48 36 53 48 35 54 48 36 54 48 35 55 48 36 55 48 37 55 48 36 56 48 37 56 48 36 57 48 37 57 48 36 58 48 37 58 48 36 59 48 37 59 48 38 59 48 36 60 48 37 60 48 38 60 48 36 61 48 37 61 48 38 61 48 36 62 48 37 62 48 38 62 48 36 63 48 37 63 48 38 63 48 36 64 48 37 64 48 37 65 48 36 55 49 36 56 49 36 57 49 36 58 49 36 59 49 36 60 49 37 60 49 36 61 49 37 61 49 37 62 49 49 35 4 49 36 4 50 36 4 49 37 4 50 37 4 51 37 4 52 37 4 50 38 4 51 38 4 52 38 4 51 39 4 52 39 4 53 39 4 47 34 5 48 34 5 49 34 5 50 34 5 51 34 5 47 35 5 48 35 5 49 35 5 50 35 5 51 35 5 52 35 5 47 36 5 48 36 5 49 36 5 50 36 5 51 36 5 52 36 5 53 36 5 48 37 5 49 37 5 50 37 5 51 37 5 52 37 5 53 37 5 49 38 5 50 38 5 51 38 5 52 38 5 53 38 5 49 39 5 50 39 5 51 39 5 52 39 5 53 39 5 50 40 5 51 40 5 52 40 5 53 40 5 51 41 5 52 41 5 56 29 6 57 29 6 58 29 6 59 29 6 60 29 6 61 29 6 55 30 6 56 30 6 57 30 6 58 30 6 59 30 6 60 30 6 61 30 6 62 30 6 55 31 6 56 31 6 57 31 6 58 31 6 59 31 6 60 31 6 61 31 6 62 31 6 63 31 6 64 31 6 48 32 6 55 32 6 56 32 6 57 32 6 58 32 6 59 32 6 60 32 6 61 32 6 62 32 6 63 32 6 64 32 6 47 33 6 48 33 6 49 33 6 50 33 6 55 33 6 56 33 6 57 33 6 58 33 6 59 33 6 60 33 6 61 33 6 62 33 6 63 33 6 64 33 6 46 34 6 47 34 6 48 34 6 49 34 6 50 34 6 51 34 6 52 34 6 53 34 6 54 34 6 55 34 6 56 34 6 57 34 6 58 34 6 59 34 6 60 34 6 61 34 6 62 34 6 63 34 6 64 34 6 46 35 6 47 35 6 48 35 6 49 35 6 50 35 6 51 35 6 52 35 6 53 35 6 54 35 6 55 35 6 56 35 6 57 35 6 58 35 6 59 35 6 60 35 6 61 35 6 62 35 6 63 35 6 64 35 6 47 36 6 48 36 6 49 36 6 50 36 6 51 36 6 52 36 6 53 36 6 54 36 6 55 36 6 56 36 6 57 36 6 58 36 6 59 36 6 60 36 6 61 36 6 62 36 6 63 36 6 47 37 6 48 37 6 49 37 6 50 37 6 51 37 6 52 37 6 53 37 6 54 37 6 55 37 6 60 37 6 61 37 6 48 38 6 49 38 6 50 38 6 51 38 6 52 38 6 53 38 6 54 38 6 55 38 6 49 39 6 50 39 6 51 39 6 52 39 6 53 39 6 54 39 6 55 39 6 50 40 6 51 40 6 52 40 6 53 40 6 54 40 6 50 41 6 51 41 6 52 41 6 53 41 6 54 41 6 52 42 6 53 42 6 57 27 7 58 27 7 59 27 7 60 27 7 54 28 7 55 28 7 56 28 7 57 28 7 58 28 7 59 28 7 60 28 7 61 28 7 62 28 7 53 29 7 54 29 7 55 29 7 56 29 7 57 29 7 58 29 7 59 29 7 60 29 7 61 29 7 62 29 7 63 29 7 64 29 7 53 30 7 54 30 7 55 30 7 56 30 7 57 30 7 58 30 7 59 30 7 60 30 7 61 30 7 62 30 7 63 30 7 64 30 7 53 31 7 54 31 7 55 31 7 56 31 7 57 31 7 58 31 7 59 31 7 60 31 7 61 31 7 62 31 7 63 31 7 64 31 7 65 31 7 47 32 7 48 32 7 49 32 7 50 32 7 52 32 7 53 32 7 54 32 7 55 32 7 56 32 7 57 32 7 58 32 7 59 32 7 60 32 7 61 32 7 62 32 7 63 32 7 64 32 7 65 32 7 46 33 7 47 33 7 48 33 7 49 33 7 50 33 7 51 33 7 52 33 7 53 33 7 54 33 7 55 33 7 56 33 7 57 33 7 58 33 7 59 33 7 60 33 7 61 33 7 62 33 7 63 33 7 64 33 7 65 33 7 46 34 7 47 34 7 48 34 7 49 34 7 50 34 7 51 34 7 52 34 7 53 34 7 54 34 7 55 34 7 56 34 7 57 34 7 58 34 7 59 34 7 60 34 7 61 34 7 62 34 7 63 34 7 64 34 7 65 34 7 46 35 7 47 35 7 48 35 7 49 35 7 50 35 7 51 35 7 52 35 7 53 35 7 54 35 7 55 35 7 56 35 7 57 35 7 58 35 7 59 35 7 60 35 7 61 35 7 62 35 7 63 35 7 64 35 7 65 35 7 46 36 7 47 36 7 48 36 7 49 36 7 50 36 7 51 36 7 52 36 7 53 36 7 54 36 7 55 36 7 56 36 7 57 36 7 58 36 7 59 36 7 60 36 7 61 36 7 62 36 7 63 36 7 64 36 7 47 37 7 48 37 7 49 37 7 50 37 7 51 37 7 52 37 7 53 37 7 54 37 7 55 37 7 56 37 7 57 37 7 58 37 7 59 37 7 60 37 7 61 37 7 62 37 7 63 37 7 64 37 7 48 38 7 49 38 7 50 38 7 51 38 7 52 38 7 53 38 7 54 38 7 55 38 7 56 38 7 57 38 7 58 38 7 59 38 7 60 38 7 61 38 7 62 38 7 63 38 7 48 39 7 49 39 7 50 39 7 51 39 7 52 39 7 53 39 7 54 39 7 55 39 7 56 39 7 57 39 7 58 39 7 59 39 7 60 39 7 61 39 7 62 39 7 50 40 7 51 40 7 52 40 7 53 40 7 54 40 7 55 40 7 56 40 7 57 40 7 58 40 7 59 40 7 50 41 7 51 41 7 52 41 7 53 41 7 54 41 7 55 41 7 56 41 7 51 42 7 52 42 7 53 42 7 54 42 7 52 43 7 55 25 8 56 25 8 57 25 8 58 25 8 59 25 8 60 25 8 54 26 8 55 26 8 56 26 8 57 26 8 58 26 8 59 26 8 60 26 8 61 26 8 62 26 8 52 27 8 53 27 8 54 27 8 55 27 8 56 27 8 57 27 8 58 27 8 59 27 8 60 27 8 61 27 8 62 27 8 63 27 8 51 28 8 52 28 8 53 28 8 54 28 8 55 28 8 56 28 8 57 28 8 58 28 8 59 28 8 60 28 8 61 28 8 62 28 8 63 28 8 64 28 8 51 29 8 52 29 8 53 29 8 54 29 8 55 29 8 56 29 8 57 29 8 58 29 8 59 29 8 60 29 8 61 29 8 62 29 8 63 29 8 64 29 8 65 29 8 51 30 8 52 30 8 53 30 8 54 30 8 55 30 8 56 30 8 57 30 8 58 30 8 59 30 8 60 30 8 61 30 8 62 30 8 63 30 8 64 30 8 65 30 8 66 30 8 47 31 8 48 31 8 50 31 8 51 31 8 52 31 8 53 31 8 54 31 8 55 31 8 56 31 8 57 31 8 58 31 8 59 31 8 60 31 8 61 31 8 62 31 8 63 31 8 64 31 8 65 31 8 66 31 8 46 32 8 47 32 8 48 32 8 49 32 8 50 32 8 51 32 8 52 32 8 53 32 8 54 32 8 55 32 8 56 32 8 57 32 8 58 32 8 59 32 8 60 32 8 61 32 8 62 32 8 63 32 8 64 32 8 65 32 8 66 32 8 46 33 8 47 33 8 48 33 8 49 33 8 50 33 8 51 33 8 52 33 8 53 33 8 54 33 8 55 33 8 56 33 8 57 33 8 58 33 8 59 33 8 60 33 8 61 33 8 62 33 8 63 33 8 64 33 8 65 33 8 66 33 8 67 33 8 46 34 8 47 34 8 48 34 8 49 34 8 50 34 8 51 34 8 52 34 8 53 34 8 54 34 8 55 34 8 56 34 8 57 34 8 58 34 8 59 34 8 60 34 8 61 34 8 62 34 8 63 34 8 64 34 8 65 34 8 66 34 8 67 34 8 46 35 8 47 35 8 48 35 8 49 35 8 50 35 8 51 35 8 52 35 8 53 35 8 54 35 8 55 35 8 56 35 8 57 35 8 58 35 8 59 35 8 60 35 8 61 35 8 62 35 8 63 35 8 64 35 8 65 35 8 66 35 8 67 35 8 46 36 8 47 36 8 48 36 8 49 36 8 50 36 8 51 36 8 52 36 8 53 36 8 54 36 8 55 36 8 56 36 8 57 36 8 58 36 8 59 36 8 60 36 8 61 36 8 62 36 8 63 36 8 64 36 8 65 36 8 66 36 8 67 36 8 46 37 8 47 37 8 48 37 8 49 37 8 50 37 8 51 37 8 52 37 8 53 37 8 54 37 8 55 37 8 56 37 8 57 37 8 58 37 8 59 37 8 60 37 8 61 37 8 62 37 8 63 37 8 64 37 8 65 37 8 66 37 8 47 38 8 48 38 8 49 38 8 50 38 8 51 38 8 52 38 8 53 38 8 54 38 8 55 38 8 56 38 8 57 38 8 58 38 8 59 38 8 60 38 8 61 38 8 62 38 8 63 38 8 64 38 8 65 38 8 48 39 8 49 39 8 50 39 8 51 39 8 52 39 8 53 39 8 54 39 8 55 39 8 56 39 8 57 39 8 58 39 8 59 39 8 60 39 8 61 39 8 62 39 8 63 39 8 64 39 8 50 40 8 51 40 8 52 40 8 53 40 8 54 40 8 55 40 8 56 40 8 57 40 8 58 40 8 59 40 8 60 40 8 61 40 8 62 40 8 63 40 8 50 41 8 51 41 8 52 41 8 53 41 8 54 41 8 55 41 8 56 41 8 57 41 8 58 41 8 59 41 8 60 41 8 61 41 8 51 42 8 52 42 8 53 42 8 54 42 8 55 42 8 56 42 8 57 42 8 52 43 8 53 43 8 54 43 8 55 43 8 56 43 8 53 24 9 54 24 9 55 24 9 56 24 9 57 24 9 58 24 9 59 24 9 60 24 9 52 25 9 53 25 9 54 25 9 55 25 9 56 25 9 57 25 9 58 25 9 59 25 9 60 25 9 61 25 9 62 25 9 51 26 9 52 26 9 53 26 9 54 26 9 55 26 9 56 26 9 57 26 9 58 26 9 59 26 9 60 26 9 61 26 9 62 26 9 63 26 9 51 27 9 52 27 9 53 27 9 54 27 9 55 27 9 56 27 9 57 27 9 58 27 9 59 27 9 60 27 9 61 27 9 62 27 9 63 27 9 64 27 9 50 28 9 51 28 9 52 28 9 53 28 9 54 28 9 55 28 9 56 28 9 57 28 9 58 28 9 59 28 9 60 28 9 61 28 9 62 28 9 63 28 9 64 28 9 65 28 9 50 29 9 51 29 9 52 29 9 53 29 9 54 29 9 55 29 9 56 29 9 57 29 9 58 29 9 59 29 9 60 29 9 61 29 9 62 29 9 63 29 9 64 29 9 65 29 9 66 29 9 50 30 9 51 30 9 52 30 9 53 30 9 54 30 9 55 30 9 56 30 9 57 30 9 58 30 9 59 30 9 60 30 9 61 30 9 62 30 9 63 30 9 64 30 9 65 30 9 66 30 9 47 31 9 48 31 9 49 31 9 50 31 9 51 31 9 52 31 9 53 31 9 54 31 9 55 31 9 56 31 9 57 31 9 58 31 9 59 31 9 60 31 9 61 31 9 62 31 9 63 31 9 64 31 9 65 31 9 66 31 9 67 31 9 46 32 9 47 32 9 48 32 9 49 32 9 50 32 9 51 32 9 52 32 9 53 32 9 54 32 9 55 32 9 56 32 9 57 32 9 58 32 9 59 32 9 60 32 9 61 32 9 62 32 9 63 32 9 64 32 9 65 32 9 66 32 9 67 32 9 46 33 9 47 33 9 48 33 9 49 33 9 50 33 9 51 33 9 52 33 9 53 33 9 54 33 9 55 33 9 56 33 9 57 33 9 58 33 9 59 33 9 60 33 9 61 33 9 62 33 9 63 33 9 64 33 9 65 33 9 66 33 9 67 33 9 68 33 9 46 34 9 47 34 9 48 34 9 49 34 9 50 34 9 51 34 9 52 34 9 53 34 9 54 34 9 55 34 9 56 34 9 57 34 9 58 34 9 59 34 9 60 34 9 61 34 9 62 34 9 63 34 9 64 34 9 65 34 9 66 34 9 67 34 9 68 34 9 46 35 9 47 35 9 48 35 9 49 35 9 50 35 9 51 35 9 52 35 9 53 35 9 54 35 9 55 35 9 56 35 9 57 35 9 58 35 9 59 35 9 60 35 9 61 35 9 62 35 9 63 35 9 64 35 9 65 35 9 66 35 9 67 35 9 68 35 9 46 36 9 47 36 9 48 36 9 49 36 9 50 36 9 51 36 9 52 36 9 53 36 9 54 36 9 55 36 9 56 36 9 57 36 9 58 36 9 59 36 9 60 36 9 61 36 9 62 36 9 63 36 9 64 36 9 65 36 9 66 36 9 67 36 9 46 37 9 47 37 9 48 37 9 49 37 9 50 37 9 51 37 9 52 37 9 53 37 9 54 37 9 55 37 9 56 37 9 57 37 9 58 37 9 59 37 9 60 37 9 61 37 9 62 37 9 63 37 9 64 37 9 65 37 9 66 37 9 47 38 9 48 38 9 49 38 9 50 38 9 51 38 9 52 38 9 53 38 9 54 38 9 55 38 9 56 38 9 57 38 9 58 38 9 59 38 9 60 38 9 61 38 9 62 38 9 63 38 9 64 38 9 65 38 9 48 39 9 49 39 9 50 39 9 51 39 9 52 39 9 53 39 9 54 39 9 55 39 9 56 39 9 57 39 9 58 39 9 59 39 9 60 39 9 61 39 9 62 39 9 63 39 9 64 39 9 65 39 9 50 40 9 51 40 9 52 40 9 53 40 9 54 40 9 55 40 9 56 40 9 57 40 9 58 40 9 59 40 9 60 40 9 61 40 9 62 40 9 63 40 9 64 40 9 50 41 9 51 41 9 52 41 9 53 41 9 54 41 9 55 41 9 56 41 9 57 41 9 58 41 9 59 41 9 60 41 9 61 41 9 62 41 9 63 41 9 51 42 9 52 42 9 53 42 9 54 42 9 55 42 9 56 42 9 57 42 9 58 42 9 59 42 9 60 42 9 61 42 9 62 42 9 52 43 9 53 43 9 54 43 9 55 43 9 56 43 9 57 43 9 58 43 9 59 43 9 60 43 9 53 44 9 54 44 9 55 44 9 53 23 10 54 23 10 55 23 10 56 23 10 57 23 10 58 23 10 59 23 10 51 24 10 52 24 10 53 24 10 54 24 10 55 24 10 56 24 10 57 24 10 58 24 10 59 24 10 60 24 10 61 24 10 50 25 10 51 25 10 52 25 10 53 25 10 54 25 10 55 25 10 56 25 10 57 25 10 58 25 10 59 25 10 60 25 10 61 25 10 62 25 10 63 25 10 49 26 10 50 26 10 51 26 10 52 26 10 53 26 10 54 26 10 55 26 10 56 26 10 57 26 10 58 26 10 59 26 10 60 26 10 61 26 10 62 26 10 63 26 10 64 26 10 65 26 10 49 27 10 50 27 10 51 27 10 52 27 10 53 27 10 54 27 10 55 27 10 56 27 10 57 27 10 58 27 10 59 27 10 60 27 10 61 27 10 62 27 10 63 27 10 64 27 10 65 27 10 66 27 10 49 28 10 50 28 10 51 28 10 52 28 10 53 28 10 54 28 10 55 28 10 56 28 10 57 28 10 58 28 10 59 28 10 60 28 10 61 28 10 62 28 10 63 28 10 64 28 10 65 28 10 66 28 10 49 29 10 50 29 10 51 29 10 52 29 10 53 29 10 54 29 10 55 29 10 56 29 10 57 29 10 58 29 10 59 29 10 60 29 10 61 29 10 62 29 10 63 29 10 64 29 10 65 29 10 66 29 10 67 29 10 49 30 10 50 30 10 51 30 10 52 30 10 53 30 10 54 30 10 55 30 10 56 30 10 57 30 10 58 30 10 59 30 10 60 30 10 61 30 10 62 30 10 63 30 10 64 30 10 65 30 10 66 30 10 67 30 10 47 31 10 48 31 10 49 31 10 50 31 10 51 31 10 52 31 10 53 31 10 54 31 10 55 31 10 56 31 10 57 31 10 58 31 10 59 31 10 60 31 10 61 31 10 62 31 10 63 31 10 64 31 10 65 31 10 66 31 10 67 31 10 68 31 10 46 32 10 47 32 10 48 32 10 49 32 10 50 32 10 51 32 10 52 32 10 53 32 10 54 32 10 55 32 10 56 32 10 57 32 10 58 32 10 59 32 10 60 32 10 61 32 10 62 32 10 63 32 10 64 32 10 65 32 10 66 32 10 67 32 10 68 32 10 46 33 10 47 33 10 48 33 10 49 33 10 50 33 10 51 33 10 52 33 10 53 33 10 54 33 10 55 33 10 56 33 10 57 33 10 58 33 10 59 33 10 60 33 10 61 33 10 62 33 10 63 33 10 64 33 10 65 33 10 66 33 10 67 33 10 68 33 10 69 33 10 46 34 10 47 34 10 48 34 10 49 34 10 50 34 10 51 34 10 52 34 10 53 34 10 54 34 10 55 34 10 56 34 10 57 34 10 58 34 10 59 34 10 60 34 10 61 34 10 62 34 10 63 34 10 64 34 10 65 34 10 66 34 10 67 34 10 68 34 10 69 34 10 46 35 10 47 35 10 48 35 10 50 35 10 51 35 10 52 35 10 53 35 10 54 35 10 55 35 10 56 35 10 57 35 10 58 35 10 59 35 10 60 35 10 61 35 10 62 35 10 63 35 10 64 35 10 65 35 10 66 35 10 67 35 10 68 35 10 69 35 10 46 36 10 47 36 10 48 36 10 50 36 10 51 36 10 52 36 10 53 36 10 55 36 10 56 36 10 57 36 10 58 36 10 59 36 10 60 36 10 61 36 10 62 36 10 63 36 10 64 36 10 65 36 10 66 36 10 67 36 10 68 36 10 69 36 10 46 37 10 47 37 10 48 37 10 49 37 10 50 37 10 51 37 10 52 37 10 53 37 10 54 37 10 55 37 10 56 37 10 57 37 10 58 37 10 59 37 10 60 37 10 61 37 10 62 37 10 63 37 10 64 37 10 65 37 10 66 37 10 67 37 10 46 38 10 47 38 10 48 38 10 49 38 10 50 38 10 51 38 10 52 38 10 53 38 10 55 38 10 56 38 10 57 38 10 58 38 10 59 38 10 60 38 10 61 38 10 62 38 10 63 38 10 64 38 10 65 38 10 66 38 10 67 38 10 47 39 10 48 39 10 49 39 10 50 39 10 51 39 10 52 39 10 53 39 10 54 39 10 55 39 10 56 39 10 57 39 10 58 39 10 59 39 10 60 39 10 61 39 10 62 39 10 63 39 10 64 39 10 65 39 10 66 39 10 50 40 10 51 40 10 52 40 10 53 40 10 54 40 10 55 40 10 56 40 10 57 40 10 58 40 10 59 40 10 60 40 10 61 40 10 62 40 10 63 40 10 64 40 10 65 40 10 50 41 10 51 41 10 52 41 10 53 41 10 54 41 10 55 41 10 56 41 10 57 41 10 58 41 10 59 41 10 60 41 10 61 41 10 62 41 10 63 41 10 64 41 10 65 41 10 51 42 10 52 42 10 53 42 10 54 42 10 55 42 10 56 42 10 57 42 10 58 42 10 59 42 10 60 42 10 61 42 10 62 42 10 63 42 10 64 42 10 52 43 10 53 43 10 54 43 10 55 43 10 56 43 10 57 43 10 58 43 10 59 43 10 60 43 10 61 43 10 53 44 10 54 44 10 55 44 10 56 44 10 57 44 10 58 44 10 52 22 11 53 22 11 54 22 11 55 22 11 56 22 11 57 22 11 58 22 11 59 22 11 50 23 11 51 23 11 52 23 11 53 23 11 54 23 11 55 23 11 56 23 11 57 23 11 58 23 11 59 23 11 60 23 11 61 23 11 49 24 11 50 24 11 51 24 11 52 24 11 53 24 11 54 24 11 55 24 11 56 24 11 57 24 11 58 24 11 59 24 11 60 24 11 61 24 11 62 24 11 63 24 11 49 25 11 50 25 11 51 25 11 52 25 11 53 25 11 54 25 11 55 25 11 56 25 11 57 25 11 58 25 11 59 25 11 60 25 11 61 25 11 62 25 11 63 25 11 64 25 11 65 25 11 49 26 11 50 26 11 51 26 11 52 26 11 53 26 11 54 26 11 55 26 11 56 26 11 57 26 11 58 26 11 59 26 11 60 26 11 61 26 11 62 26 11 63 26 11 64 26 11 65 26 11 49 27 11 50 27 11 51 27 11 52 27 11 53 27 11 54 27 11 55 27 11 56 27 11 57 27 11 58 27 11 59 27 11 60 27 11 61 27 11 62 27 11 63 27 11 64 27 11 65 27 11 66 27 11 49 28 11 50 28 11 51 28 11 52 28 11 53 28 11 54 28 11 55 28 11 56 28 11 57 28 11 58 28 11 59 28 11 60 28 11 61 28 11 62 28 11 63 28 11 64 28 11 65 28 11 66 28 11 67 28 11 49 29 11 50 29 11 51 29 11 52 29 11 53 29 11 54 29 11 55 29 11 56 29 11 57 29 11 58 29 11 59 29 11 60 29 11 61 29 11 62 29 11 63 29 11 64 29 11 65 29 11 66 29 11 67 29 11 68 29 11 49 30 11 50 30 11 51 30 11 52 30 11 53 30 11 54 30 11 55 30 11 56 30 11 57 30 11 58 30 11 59 30 11 60 30 11 61 30 11 62 30 11 63 30 11 64 30 11 65 30 11 66 30 11 67 30 11 68 30 11 47 31 11 48 31 11 49 31 11 50 31 11 51 31 11 52 31 11 53 31 11 54 31 11 55 31 11 56 31 11 57 31 11 58 31 11 59 31 11 60 31 11 61 31 11 62 31 11 63 31 11 64 31 11 65 31 11 66 31 11 67 31 11 68 31 11 46 32 11 47 32 11 48 32 11 49 32 11 50 32 11 51 32 11 52 32 11 53 32 11 54 32 11 55 32 11 56 32 11 57 32 11 58 32 11 59 32 11 60 32 11 61 32 11 62 32 11 63 32 11 64 32 11 65 32 11 66 32 11 67 32 11 68 32 11 69 32 11 46 33 11 47 33 11 48 33 11 49 33 11 50 33 11 51 33 11 52 33 11 53 33 11 54 33 11 55 33 11 56 33 11 57 33 11 58 33 11 59 33 11 60 33 11 61 33 11 62 33 11 63 33 11 64 33 11 65 33 11 66 33 11 67 33 11 68 33 11 69 33 11 46 34 11 47 34 11 48 34 11 50 34 11 51 34 11 52 34 11 53 34 11 54 34 11 55 34 11 56 34 11 57 34 11 58 34 11 59 34 11 60 34 11 61 34 11 62 34 11 63 34 11 64 34 11 65 34 11 66 34 11 67 34 11 68 34 11 69 34 11 46 35 11 47 35 11 48 35 11 50 35 11 51 35 11 52 35 11 53 35 11 55 35 11 56 35 11 57 35 11 58 35 11 59 35 11 60 35 11 61 35 11 62 35 11 63 35 11 64 35 11 65 35 11 66 35 11 67 35 11 68 35 11 69 35 11 46 36 11 47 36 11 48 36 11 50 36 11 51 36 11 52 36 11 53 36 11 54 36 11 56 36 11 57 36 11 58 36 11 59 36 11 60 36 11 61 36 11 62 36 11 63 36 11 64 36 11 65 36 11 66 36 11 67 36 11 68 36 11 69 36 11 46 37 11 47 37 11 48 37 11 51 37 11 52 37 11 53 37 11 54 37 11 56 37 11 57 37 11 58 37 11 59 37 11 60 37 11 61 37 11 62 37 11 63 37 11 64 37 11 65 37 11 66 37 11 67 37 11 68 37 11 46 38 11 47 38 11 48 38 11 49 38 11 50 38 11 51 38 11 52 38 11 53 38 11 54 38 11 57 38 11 58 38 11 59 38 11 60 38 11 61 38 11 62 38 11 63 38 11 64 38 11 65 38 11 66 38 11 67 38 11 47 39 11 48 39 11 49 39 11 50 39 11 51 39 11 52 39 11 53 39 11 54 39 11 55 39 11 56 39 11 57 39 11 58 39 11 59 39 11 60 39 11 61 39 11 62 39 11 63 39 11 64 39 11 65 39 11 66 39 11 67 39 11 49 40 11 50 40 11 51 40 11 52 40 11 53 40 11 54 40 11 55 40 11 56 40 11 57 40 11 58 40 11 59 40 11 60 40 11 61 40 11 62 40 11 63 40 11 64 40 11 65 40 11 66 40 11 50 41 11 51 41 11 52 41 11 53 41 11 54 41 11 55 41 11 56 41 11 57 41 11 58 41 11 59 41 11 60 41 11 61 41 11 62 41 11 63 41 11 64 41 11 65 41 11 66 41 11 52 42 11 53 42 11 54 42 11 55 42 11 56 42 11 57 42 11 58 42 11 59 42 11 60 42 11 61 42 11 62 42 11 63 42 11 64 42 11 65 42 11 52 43 11 53 43 11 54 43 11 55 43 11 56 43 11 57 43 11 58 43 11 59 43 11 60 43 11 61 43 11 62 43 11 53 44 11 54 44 11 55 44 11 56 44 11 57 44 11 58 44 11 59 44 11 60 44 11 61 44 11 52 21 12 53 21 12 54 21 12 55 21 12 56 21 12 49 22 12 50 22 12 51 22 12 52 22 12 53 22 12 54 22 12 55 22 12 56 22 12 57 22 12 58 22 12 59 22 12 60 22 12 61 22 12 49 23 12 50 23 12 51 23 12 52 23 12 53 23 12 54 23 12 55 23 12 56 23 12 57 23 12 58 23 12 59 23 12 60 23 12 61 23 12 62 23 12 63 23 12 49 24 12 50 24 12 51 24 12 52 24 12 53 24 12 54 24 12 55 24 12 56 24 12 57 24 12 58 24 12 59 24 12 60 24 12 61 24 12 62 24 12 63 24 12 64 24 12 48 25 12 49 25 12 50 25 12 51 25 12 52 25 12 53 25 12 54 25 12 55 25 12 56 25 12 57 25 12 58 25 12 59 25 12 60 25 12 61 25 12 62 25 12 63 25 12 64 25 12 65 25 12 48 26 12 49 26 12 50 26 12 51 26 12 52 26 12 53 26 12 54 26 12 55 26 12 56 26 12 57 26 12 58 26 12 59 26 12 60 26 12 61 26 12 62 26 12 63 26 12 64 26 12 65 26 12 66 26 12 48 27 12 49 27 12 50 27 12 51 27 12 52 27 12 53 27 12 54 27 12 55 27 12 56 27 12 57 27 12 58 27 12 59 27 12 60 27 12 61 27 12 62 27 12 63 27 12 64 27 12 65 27 12 66 27 12 67 27 12 48 28 12 49 28 12 50 28 12 51 28 12 52 28 12 53 28 12 54 28 12 55 28 12 56 28 12 57 28 12 58 28 12 59 28 12 60 28 12 61 28 12 62 28 12 63 28 12 64 28 12 65 28 12 66 28 12 67 28 12 49 29 12 50 29 12 51 29 12 52 29 12 53 29 12 54 29 12 55 29 12 56 29 12 57 29 12 58 29 12 59 29 12 60 29 12 61 29 12 62 29 12 63 29 12 64 29 12 65 29 12 66 29 12 67 29 12 68 29 12 46 30 12 49 30 12 50 30 12 51 30 12 52 30 12 53 30 12 54 30 12 55 30 12 56 30 12 57 30 12 58 30 12 59 30 12 60 30 12 61 30 12 62 30 12 63 30 12 64 30 12 65 30 12 66 30 12 67 30 12 68 30 12 50 31 12 51 31 12 52 31 12 53 31 12 54 31 12 55 31 12 56 31 12 57 31 12 58 31 12 59 31 12 60 31 12 61 31 12 62 31 12 63 31 12 64 31 12 65 31 12 66 31 12 67 31 12 68 31 12 69 31 12 46 32 12 47 32 12 48 32 12 49 32 12 50 32 12 51 32 12 52 32 12 53 32 12 54 32 12 55 32 12 56 32 12 57 32 12 58 32 12 59 32 12 60 32 12 61 32 12 62 32 12 63 32 12 64 32 12 65 32 12 66 32 12 67 32 12 68 32 12 69 32 12 46 33 12 47 33 12 48 33 12 49 33 12 50 33 12 51 33 12 52 33 12 53 33 12 54 33 12 55 33 12 56 33 12 57 33 12 58 33 12 59 33 12 60 33 12 61 33 12 62 33 12 63 33 12 64 33 12 65 33 12 66 33 12 67 33 12 68 33 12 69 33 12 70 33 12 46 34 12 47 34 12 48 34 12 49 34 12 51 34 12 52 34 12 53 34 12 54 34 12 55 34 12 56 34 12 57 34 12 58 34 12 59 34 12 60 34 12 61 34 12 62 34 12 63 34 12 64 34 12 65 34 12 66 34 12 67 34 12 68 34 12 69 34 12 70 34 12 46 35 12 47 35 12 48 35 12 51 35 12 52 35 12 53 35 12 55 35 12 56 35 12 57 35 12 58 35 12 59 35 12 60 35 12 61 35 12 62 35 12 63 35 12 64 35 12 65 35 12 66 35 12 67 35 12 68 35 12 69 35 12 70 35 12 46 36 12 47 36 12 48 36 12 49 36 12 51 36 12 52 36 12 53 36 12 54 36 12 56 36 12 57 36 12 58 36 12 59 36 12 60 36 12 61 36 12 62 36 12 63 36 12 64 36 12 65 36 12 66 36 12 67 36 12 68 36 12 69 36 12 70 36 12 46 37 12 47 37 12 48 37 12 49 37 12 51 37 12 52 37 12 53 37 12 54 37 12 56 37 12 57 37 12 58 37 12 59 37 12 60 37 12 61 37 12 62 37 12 63 37 12 64 37 12 65 37 12 66 37 12 67 37 12 68 37 12 69 37 12 46 38 12 47 38 12 48 38 12 49 38 12 51 38 12 52 38 12 53 38 12 54 38 12 57 38 12 58 38 12 59 38 12 60 38 12 61 38 12 62 38 12 63 38 12 64 38 12 65 38 12 66 38 12 67 38 12 68 38 12 69 38 12 47 39 12 48 39 12 49 39 12 50 39 12 51 39 12 52 39 12 53 39 12 54 39 12 57 39 12 58 39 12 59 39 12 60 39 12 61 39 12 62 39 12 63 39 12 64 39 12 65 39 12 66 39 12 67 39 12 68 39 12 47 40 12 48 40 12 49 40 12 50 40 12 51 40 12 52 40 12 53 40 12 54 40 12 55 40 12 56 40 12 57 40 12 58 40 12 59 40 12 60 40 12 61 40 12 62 40 12 63 40 12 64 40 12 65 40 12 66 40 12 67 40 12 68 40 12 50 41 12 51 41 12 52 41 12 53 41 12 54 41 12 55 41 12 56 41 12 57 41 12 58 41 12 59 41 12 60 41 12 61 41 12 62 41 12 63 41 12 64 41 12 65 41 12 66 41 12 67 41 12 53 42 12 54 42 12 55 42 12 56 42 12 57 42 12 58 42 12 59 42 12 60 42 12 61 42 12 62 42 12 63 42 12 64 42 12 65 42 12 66 42 12 53 43 12 54 43 12 55 43 12 56 43 12 57 43 12 58 43 12 59 43 12 60 43 12 61 43 12 62 43 12 63 43 12 53 44 12 54 44 12 55 44 12 56 44 12 57 44 12 58 44 12 59 44 12 60 44 12 61 44 12 62 44 12 53 45 12 54 45 12 55 45 12 56 45 12 57 45 12 58 45 12 59 45 12 54 46 12 55 46 12 56 46 12 53 20 13 54 20 13 50 21 13 51 21 13 52 21 13 53 21 13 54 21 13 55 21 13 56 21 13 57 21 13 58 21 13 59 21 13 49 22 13 50 22 13 51 22 13 52 22 13 53 22 13 54 22 13 55 22 13 56 22 13 57 22 13 58 22 13 59 22 13 60 22 13 61 22 13 62 22 13 48 23 13 49 23 13 50 23 13 51 23 13 52 23 13 53 23 13 54 23 13 55 23 13 56 23 13 57 23 13 58 23 13 59 23 13 60 23 13 61 23 13 62 23 13 63 23 13 64 23 13 47 24 13 48 24 13 49 24 13 50 24 13 51 24 13 52 24 13 53 24 13 54 24 13 55 24 13 56 24 13 57 24 13 58 24 13 59 24 13 60 24 13 61 24 13 62 24 13 63 24 13 64 24 13 65 24 13 47 25 13 48 25 13 49 25 13 50 25 13 51 25 13 52 25 13 53 25 13 54 25 13 55 25 13 56 25 13 57 25 13 58 25 13 59 25 13 60 25 13 61 25 13 62 25 13 63 25 13 64 25 13 65 25 13 66 25 13 47 26 13 48 26 13 49 26 13 50 26 13 51 26 13 52 26 13 53 26 13 54 26 13 55 26 13 56 26 13 57 26 13 58 26 13 59 26 13 60 26 13 61 26 13 62 26 13 63 26 13 64 26 13 65 26 13 66 26 13 67 26 13 48 27 13 49 27 13 50 27 13 51 27 13 52 27 13 53 27 13 54 27 13 55 27 13 56 27 13 57 27 13 58 27 13 59 27 13 60 27 13 61 27 13 62 27 13 63 27 13 64 27 13 65 27 13 66 27 13 67 27 13 46 28 13 47 28 13 48 28 13 49 28 13 50 28 13 51 28 13 52 28 13 53 28 13 54 28 13 55 28 13 56 28 13 57 28 13 58 28 13 59 28 13 60 28 13 61 28 13 62 28 13 63 28 13 64 28 13 65 28 13 66 28 13 67 28 13 68 28 13 46 29 13 47 29 13 48 29 13 49 29 13 50 29 13 51 29 13 52 29 13 53 29 13 54 29 13 55 29 13 56 29 13 57 29 13 58 29 13 59 29 13 60 29 13 61 29 13 62 29 13 63 29 13 64 29 13 65 29 13 66 29 13 67 29 13 68 29 13 46 30 13 47 30 13 48 30 13 49 30 13 50 30 13 51 30 13 52 30 13 53 30 13 54 30 13 55 30 13 56 30 13 57 30 13 58 30 13 59 30 13 60 30 13 61 30 13 63 30 13 64 30 13 65 30 13 66 30 13 67 30 13 68 30 13 69 30 13 46 31 13 50 31 13 51 31 13 52 31 13 53 31 13 54 31 13 55 31 13 56 31 13 57 31 13 58 31 13 59 31 13 60 31 13 63 31 13 64 31 13 65 31 13 66 31 13 67 31 13 68 31 13 69 31 13 46 32 13 47 32 13 48 32 13 49 32 13 50 32 13 51 32 13 52 32 13 53 32 13 54 32 13 55 32 13 56 32 13 57 32 13 58 32 13 59 32 13 60 32 13 64 32 13 65 32 13 66 32 13 67 32 13 68 32 13 69 32 13 46 33 13 47 33 13 48 33 13 49 33 13 50 33 13 51 33 13 52 33 13 53 33 13 54 33 13 55 33 13 56 33 13 57 33 13 58 33 13 59 33 13 60 33 13 64 33 13 65 33 13 66 33 13 67 33 13 68 33 13 69 33 13 70 33 13 46 34 13 47 34 13 48 34 13 49 34 13 51 34 13 52 34 13 53 34 13 54 34 13 55 34 13 56 34 13 57 34 13 59 34 13 60 34 13 64 34 13 65 34 13 66 34 13 67 34 13 68 34 13 69 34 13 70 34 13 46 35 13 47 35 13 48 35 13 49 35 13 51 35 13 52 35 13 53 35 13 56 35 13 57 35 13 58 35 13 60 35 13 61 35 13 64 35 13 65 35 13 66 35 13 67 35 13 68 35 13 69 35 13 70 35 13 46 36 13 47 36 13 48 36 13 49 36 13 52 36 13 53 36 13 54 36 13 57 36 13 58 36 13 60 36 13 61 36 13 64 36 13 65 36 13 66 36 13 67 36 13 68 36 13 69 36 13 70 36 13 46 37 13 47 37 13 48 37 13 49 37 13 53 37 13 54 37 13 57 37 13 58 37 13 60 37 13 61 37 13 62 37 13 64 37 13 65 37 13 66 37 13 67 37 13 68 37 13 69 37 13 70 37 13 46 38 13 47 38 13 48 38 13 49 38 13 50 38 13 53 38 13 58 38 13 59 38 13 60 38 13 61 38 13 62 38 13 63 38 13 64 38 13 65 38 13 66 38 13 67 38 13 68 38 13 69 38 13 46 39 13 47 39 13 48 39 13 49 39 13 50 39 13 58 39 13 59 39 13 60 39 13 61 39 13 62 39 13 63 39 13 64 39 13 65 39 13 66 39 13 67 39 13 68 39 13 69 39 13 47 40 13 48 40 13 49 40 13 50 40 13 51 40 13 52 40 13 58 40 13 59 40 13 60 40 13 61 40 13 62 40 13 63 40 13 64 40 13 65 40 13 66 40 13 67 40 13 68 40 13 69 40 13 50 41 13 51 41 13 52 41 13 53 41 13 54 41 13 58 41 13 59 41 13 60 41 13 61 41 13 62 41 13 63 41 13 64 41 13 65 41 13 66 41 13 67 41 13 68 41 13 69 41 13 52 42 13 53 42 13 54 42 13 55 42 13 56 42 13 57 42 13 58 42 13 59 42 13 60 42 13 61 42 13 62 42 13 63 42 13 64 42 13 65 42 13 66 42 13 67 42 13 52 43 13 53 43 13 54 43 13 55 43 13 56 43 13 57 43 13 58 43 13 59 43 13 60 43 13 61 43 13 62 43 13 63 43 13 64 43 13 65 43 13 53 44 13 54 44 13 55 44 13 56 44 13 57 44 13 58 44 13 59 44 13 60 44 13 61 44 13 62 44 13 63 44 13 53 45 13 54 45 13 55 45 13 56 45 13 57 45 13 58 45 13 59 45 13 53 46 13 54 46 13 55 46 13 56 46 13 57 46 13 58 46 13 55 47 13 56 47 13 57 47 13 50 20 14 51 20 14 52 20 14 53 20 14 54 20 14 55 20 14 56 20 14 57 20 14 58 20 14 59 20 14 49 21 14 50 21 14 51 21 14 52 21 14 53 21 14 54 21 14 55 21 14 56 21 14 57 21 14 58 21 14 59 21 14 60 21 14 61 21 14 47 22 14 48 22 14 49 22 14 50 22 14 51 22 14 52 22 14 53 22 14 54 22 14 55 22 14 56 22 14 57 22 14 58 22 14 59 22 14 60 22 14 61 22 14 62 22 14 63 22 14 47 23 14 48 23 14 49 23 14 50 23 14 51 23 14 52 23 14 53 23 14 54 23 14 55 23 14 56 23 14 57 23 14 58 23 14 59 23 14 60 23 14 61 23 14 62 23 14 63 23 14 64 23 14 47 24 14 48 24 14 49 24 14 50 24 14 51 24 14 52 24 14 53 24 14 54 24 14 55 24 14 56 24 14 57 24 14 58 24 14 59 24 14 60 24 14 61 24 14 62 24 14 63 24 14 64 24 14 65 24 14 47 25 14 48 25 14 49 25 14 50 25 14 51 25 14 52 25 14 53 25 14 54 25 14 55 25 14 56 25 14 57 25 14 58 25 14 59 25 14 60 25 14 61 25 14 62 25 14 63 25 14 64 25 14 65 25 14 66 25 14 47 26 14 48 26 14 49 26 14 50 26 14 51 26 14 52 26 14 53 26 14 54 26 14 55 26 14 56 26 14 57 26 14 58 26 14 60 26 14 61 26 14 62 26 14 63 26 14 64 26 14 65 26 14 66 26 14 67 26 14 46 27 14 47 27 14 48 27 14 49 27 14 50 27 14 51 27 14 52 27 14 53 27 14 54 27 14 55 27 14 56 27 14 57 27 14 61 27 14 62 27 14 63 27 14 64 27 14 65 27 14 66 27 14 67 27 14 46 28 14 47 28 14 48 28 14 49 28 14 50 28 14 51 28 14 52 28 14 53 28 14 54 28 14 55 28 14 56 28 14 57 28 14 61 28 14 62 28 14 63 28 14 64 28 14 65 28 14 66 28 14 67 28 14 68 28 14 46 29 14 47 29 14 48 29 14 49 29 14 50 29 14 51 29 14 52 29 14 53 29 14 54 29 14 55 29 14 56 29 14 61 29 14 62 29 14 63 29 14 64 29 14 65 29 14 66 29 14 67 29 14 68 29 14 46 30 14 47 30 14 48 30 14 49 30 14 50 30 14 51 30 14 52 30 14 53 30 14 54 30 14 55 30 14 56 30 14 61 30 14 62 30 14 63 30 14 64 30 14 65 30 14 66 30 14 67 30 14 68 30 14 69 30 14 46 31 14 47 31 14 48 31 14 49 31 14 50 31 14 51 31 14 52 31 14 53 31 14 54 31 14 55 31 14 56 31 14 57 31 14 61 31 14 62 31 14 63 31 14 64 31 14 65 31 14 66 31 14 67 31 14 68 31 14 69 31 14 46 32 14 47 32 14 48 32 14 49 32 14 50 32 14 51 32 14 52 32 14 53 32 14 54 32 14 62 32 14 63 32 14 64 32 14 65 32 14 66 32 14 67 32 14 68 32 14 69 32 14 46 33 14 47 33 14 48 33 14 49 33 14 50 33 14 51 33 14 52 33 14 53 33 14 54 33 14 62 33 14 63 33 14 64 33 14 65 33 14 66 33 14 67 33 14 68 33 14 69 33 14 46 34 14 47 34 14 48 34 14 49 34 14 52 34 14 62 34 14 63 34 14 64 34 14 65 34 14 66 34 14 67 34 14 46 35 14 47 35 14 48 35 14 49 35 14 62 35 14 63 35 14 64 35 14 65 35 14 66 35 14 67 35 14 70 35 14 46 36 14 47 36 14 48 36 14 49 36 14 63 36 14 64 36 14 65 36 14 66 36 14 46 37 14 47 37 14 48 37 14 49 37 14 63 37 14 64 37 14 65 37 14 66 37 14 69 37 14 70 37 14 46 38 14 47 38 14 48 38 14 49 38 14 50 38 14 63 38 14 64 38 14 65 38 14 66 38 14 67 38 14 68 38 14 46 39 14 47 39 14 48 39 14 49 39 14 50 39 14 51 39 14 63 39 14 64 39 14 65 39 14 66 39 14 67 39 14 68 39 14 69 39 14 48 40 14 49 40 14 50 40 14 51 40 14 52 40 14 63 40 14 64 40 14 65 40 14 66 40 14 67 40 14 68 40 14 50 41 14 51 41 14 52 41 14 53 41 14 61 41 14 62 41 14 63 41 14 64 41 14 65 41 14 66 41 14 67 41 14 68 41 14 52 42 14 53 42 14 54 42 14 55 42 14 56 42 14 57 42 14 58 42 14 59 42 14 60 42 14 61 42 14 62 42 14 63 42 14 64 42 14 65 42 14 66 42 14 67 42 14 68 42 14 52 43 14 53 43 14 54 43 14 55 43 14 56 43 14 57 43 14 58 43 14 59 43 14 60 43 14 61 43 14 62 43 14 63 43 14 64 43 14 65 43 14 66 43 14 52 44 14 53 44 14 54 44 14 55 44 14 56 44 14 57 44 14 58 44 14 60 44 14 61 44 14 62 44 14 63 44 14 53 45 14 54 45 14 55 45 14 56 45 14 57 45 14 58 45 14 59 45 14 52 46 14 53 46 14 54 46 14 55 46 14 56 46 14 57 46 14 58 46 14 59 46 14 55 47 14 56 47 14 57 47 14 58 47 14 51 19 15 52 19 15 53 19 15 54 19 15 55 19 15 56 19 15 49 20 15 50 20 15 51 20 15 52 20 15 53 20 15 54 20 15 55 20 15 56 20 15 57 20 15 58 20 15 59 20 15 60 20 15 48 21 15 49 21 15 50 21 15 51 21 15 52 21 15 53 21 15 54 21 15 55 21 15 56 21 15 57 21 15 58 21 15 59 21 15 60 21 15 61 21 15 62 21 15 47 22 15 48 22 15 49 22 15 50 22 15 51 22 15 52 22 15 53 22 15 54 22 15 55 22 15 56 22 15 57 22 15 58 22 15 59 22 15 60 22 15 61 22 15 62 22 15 63 22 15 47 23 15 48 23 15 49 23 15 50 23 15 51 23 15 52 23 15 53 23 15 54 23 15 55 23 15 56 23 15 57 23 15 58 23 15 59 23 15 60 23 15 61 23 15 62 23 15 63 23 15 64 23 15 47 24 15 48 24 15 49 24 15 50 24 15 51 24 15 52 24 15 53 24 15 54 24 15 55 24 15 59 24 15 60 24 15 61 24 15 62 24 15 63 24 15 64 24 15 65 24 15 47 25 15 48 25 15 49 25 15 50 25 15 51 25 15 52 25 15 53 25 15 54 25 15 59 25 15 60 25 15 61 25 15 62 25 15 63 25 15 64 25 15 65 25 15 66 25 15 47 26 15 48 26 15 49 26 15 50 26 15 51 26 15 52 26 15 53 26 15 54 26 15 58 26 15 59 26 15 60 26 15 61 26 15 62 26 15 63 26 15 64 26 15 65 26 15 66 26 15 46 27 15 47 27 15 48 27 15 49 27 15 50 27 15 51 27 15 52 27 15 53 27 15 54 27 15 58 27 15 59 27 15 60 27 15 61 27 15 62 27 15 63 27 15 64 27 15 65 27 15 66 27 15 67 27 15 46 28 15 47 28 15 48 28 15 49 28 15 50 28 15 51 28 15 52 28 15 53 28 15 54 28 15 59 28 15 60 28 15 61 28 15 62 28 15 63 28 15 64 28 15 65 28 15 66 28 15 67 28 15 46 29 15 47 29 15 48 29 15 49 29 15 50 29 15 51 29 15 52 29 15 53 29 15 59 29 15 60 29 15 61 29 15 62 29 15 63 29 15 64 29 15 65 29 15 66 29 15 46 30 15 47 30 15 48 30 15 49 30 15 50 30 15 51 30 15 52 30 15 53 30 15 60 30 15 61 30 15 62 30 15 63 30 15 64 30 15 65 30 15 68 30 15 69 30 15 46 31 15 47 31 15 48 31 15 49 31 15 50 31 15 51 31 15 52 31 15 60 31 15 61 31 15 62 31 15 63 31 15 64 31 15 65 31 15 66 31 15 68 31 15 69 31 15 70 31 15 46 32 15 47 32 15 48 32 15 49 32 15 50 32 15 51 32 15 61 32 15 62 32 15 63 32 15 64 32 15 65 32 15 66 32 15 67 32 15 68 32 15 69 32 15 70 32 15 71 32 15 46 33 15 47 33 15 48 33 15 49 33 15 50 33 15 51 33 15 61 33 15 62 33 15 63 33 15 64 33 15 65 33 15 66 33 15 67 33 15 68 33 15 69 33 15 70 33 15 71 33 15 46 34 15 47 34 15 48 34 15 49 34 15 61 34 15 62 34 15 63 34 15 64 34 15 65 34 15 66 34 15 67 34 15 68 34 15 69 34 15 70 34 15 71 34 15 46 35 15 47 35 15 48 35 15 49 35 15 62 35 15 63 35 15 64 35 15 65 35 15 66 35 15 67 35 15 68 35 15 69 35 15 70 35 15 71 35 15 46 36 15 47 36 15 48 36 15 49 36 15 62 36 15 63 36 15 64 36 15 65 36 15 66 36 15 67 36 15 68 36 15 69 36 15 70 36 15 71 36 15 46 37 15 47 37 15 48 37 15 49 37 15 62 37 15 63 37 15 64 37 15 65 37 15 66 37 15 67 37 15 68 37 15 69 37 15 70 37 15 46 38 15 47 38 15 48 38 15 49 38 15 50 38 15 51 38 15 62 38 15 63 38 15 64 38 15 65 38 15 66 38 15 67 38 15 68 38 15 69 38 15 70 38 15 46 39 15 47 39 15 48 39 15 49 39 15 50 39 15 51 39 15 63 39 15 64 39 15 65 39 15 66 39 15 67 39 15 68 39 15 69 39 15 47 40 15 48 40 15 49 40 15 50 40 15 51 40 15 63 40 15 64 40 15 65 40 15 68 40 15 51 41 15 62 41 15 63 41 15 64 41 15 65 41 15 66 41 15 67 41 15 68 41 15 59 42 15 60 42 15 61 42 15 62 42 15 63 42 15 64 42 15 65 42 15 66 42 15 67 42 15 58 43 15 62 43 15 63 43 15 64 43 15 65 43 15 57 44 15 58 44 15 57 45 15 58 45 15 59 45 15 55 46 15 56 46 15 57 46 15 58 46 15 59 46 15 55 47 15 56 47 15 57 47 15 58 47 15 56 48 15 57 48 15 58 49 15 59 49 15 49 19 16 50 19 16 51 19 16 52 19 16 53 19 16 54 19 16 55 19 16 56 19 16 57 19 16 58 19 16 48 20 16 49 20 16 50 20 16 51 20 16 52 20 16 53 20 16 54 20 16 55 20 16 56 20 16 57 20 16 58 20 16 59 20 16 60 20 16 61 20 16 47 21 16 48 21 16 49 21 16 50 21 16 51 21 16 52 21 16 53 21 16 54 21 16 55 21 16 56 21 16 57 21 16 58 21 16 59 21 16 60 21 16 61 21 16 62 21 16 47 22 16 48 22 16 49 22 16 50 22 16 51 22 16 52 22 16 53 22 16 54 22 16 55 22 16 56 22 16 57 22 16 58 22 16 59 22 16 60 22 16 61 22 16 62 22 16 63 22 16 47 23 16 48 23 16 49 23 16 50 23 16 51 23 16 52 23 16 53 23 16 55 23 16 56 23 16 57 23 16 58 23 16 59 23 16 60 23 16 61 23 16 62 23 16 63 23 16 64 23 16 47 24 16 48 24 16 49 24 16 50 24 16 51 24 16 52 24 16 55 24 16 56 24 16 57 24 16 58 24 16 59 24 16 60 24 16 61 24 16 62 24 16 63 24 16 64 24 16 47 25 16 48 25 16 49 25 16 50 25 16 51 25 16 55 25 16 56 25 16 57 25 16 58 25 16 59 25 16 60 25 16 61 25 16 62 25 16 63 25 16 64 25 16 47 26 16 48 26 16 49 26 16 50 26 16 51 26 16 55 26 16 56 26 16 57 26 16 58 26 16 59 26 16 60 26 16 61 26 16 62 26 16 63 26 16 46 27 16 47 27 16 48 27 16 49 27 16 50 27 16 51 27 16 56 27 16 57 27 16 58 27 16 59 27 16 60 27 16 61 27 16 62 27 16 63 27 16 67 27 16 68 27 16 46 28 16 47 28 16 48 28 16 49 28 16 50 28 16 56 28 16 57 28 16 58 28 16 59 28 16 60 28 16 61 28 16 62 28 16 63 28 16 66 28 16 67 28 16 68 28 16 69 28 16 46 29 16 47 29 16 48 29 16 49 29 16 50 29 16 51 29 16 57 29 16 58 29 16 59 29 16 60 29 16 61 29 16 62 29 16 63 29 16 64 29 16 65 29 16 66 29 16 67 29 16 68 29 16 69 29 16 70 29 16 46 30 16 47 30 16 48 30 16 49 30 16 50 30 16 51 30 16 58 30 16 59 30 16 60 30 16 61 30 16 62 30 16 63 30 16 64 30 16 65 30 16 66 30 16 67 30 16 68 30 16 69 30 16 70 30 16 46 31 16 47 31 16 48 31 16 49 31 16 50 31 16 59 31 16 60 31 16 61 31 16 62 31 16 63 31 16 64 31 16 65 31 16 66 31 16 67 31 16 68 31 16 69 31 16 70 31 16 71 31 16 46 32 16 47 32 16 48 32 16 49 32 16 50 32 16 60 32 16 61 32 16 62 32 16 63 32 16 64 32 16 65 32 16 66 32 16 67 32 16 68 32 16 69 32 16 70 32 16 71 32 16 46 33 16 47 33 16 48 33 16 49 33 16 50 33 16 61 33 16 62 33 16 63 33 16 64 33 16 65 33 16 66 33 16 67 33 16 68 33 16 69 33 16 70 33 16 71 33 16 72 33 16 46 34 16 47 34 16 48 34 16 49 34 16 50 34 16 62 34 16 63 34 16 64 34 16 65 34 16 66 34 16 67 34 16 68 34 16 69 34 16 70 34 16 71 34 16 46 35 16 47 35 16 48 35 16 49 35 16 50 35 16 62 35 16 63 35 16 64 35 16 65 35 16 66 35 16 67 35 16 68 35 16 69 35 16 70 35 16 71 35 16 46 36 16 47 36 16 48 36 16 49 36 16 50 36 16 63 36 16 64 36 16 65 36 16 66 36 16 67 36 16 68 36 16 69 36 16 70 36 16 71 36 16 46 37 16 47 37 16 48 37 16 49 37 16 50 37 16 51 37 16 64 37 16 65 37 16 66 37 16 67 37 16 68 37 16 69 37 16 70 37 16 46 38 16 47 38 16 48 38 16 49 38 16 50 38 16 64 38 16 65 38 16 66 38 16 67 38 16 68 38 16 69 38 16 70 38 16 46 39 16 47 39 16 48 39 16 49 39 16 50 39 16 65 39 16 66 39 16 67 39 16 68 39 16 69 39 16 70 39 16 47 40 16 48 40 16 49 40 16 63 40 16 64 40 16 65 40 16 66 40 16 67 40 16 68 40 16 48 41 16 61 41 16 62 41 16 63 41 16 64 41 16 65 41 16 66 41 16 67 41 16 68 41 16 65 42 16 66 42 16 67 42 16 60 44 16 61 44 16 62 44 16 57 45 16 60 45 16 61 45 16 62 45 16 56 46 16 55 47 16 51 18 17 52 18 17 53 18 17 54 18 17 55 18 17 56 18 17 48 19 17 49 19 17 50 19 17 51 19 17 52 19 17 53 19 17 54 19 17 55 19 17 56 19 17 57 19 17 58 19 17 59 19 17 47 20 17 48 20 17 49 20 17 50 20 17 51 20 17 52 20 17 53 20 17 54 20 17 55 20 17 56 20 17 57 20 17 58 20 17 59 20 17 60 20 17 61 20 17 47 21 17 48 21 17 49 21 17 50 21 17 51 21 17 52 21 17 53 21 17 54 21 17 55 21 17 56 21 17 57 21 17 58 21 17 59 21 17 60 21 17 61 21 17 62 21 17 46 22 17 47 22 17 48 22 17 49 22 17 50 22 17 51 22 17 53 22 17 54 22 17 55 22 17 56 22 17 57 22 17 58 22 17 59 22 17 60 22 17 61 22 17 62 22 17 47 23 17 48 23 17 49 23 17 50 23 17 53 23 17 54 23 17 55 23 17 56 23 17 57 23 17 58 23 17 59 23 17 60 23 17 61 23 17 62 23 17 46 24 17 47 24 17 48 24 17 49 24 17 50 24 17 53 24 17 54 24 17 55 24 17 56 24 17 57 24 17 58 24 17 59 24 17 60 24 17 61 24 17 65 24 17 66 24 17 47 25 17 48 25 17 49 25 17 50 25 17 53 25 17 54 25 17 55 25 17 56 25 17 57 25 17 58 25 17 59 25 17 60 25 17 61 25 17 62 25 17 65 25 17 66 25 17 67 25 17 47 26 17 48 26 17 49 26 17 50 26 17 53 26 17 54 26 17 55 26 17 56 26 17 57 26 17 58 26 17 59 26 17 60 26 17 61 26 17 62 26 17 63 26 17 64 26 17 65 26 17 66 26 17 67 26 17 68 26 17 46 27 17 47 27 17 48 27 17 49 27 17 54 27 17 55 27 17 56 27 17 57 27 17 58 27 17 59 27 17 60 27 17 61 27 17 62 27 17 63 27 17 64 27 17 65 27 17 66 27 17 67 27 17 68 27 17 69 27 17 46 28 17 47 28 17 48 28 17 49 28 17 50 28 17 54 28 17 55 28 17 56 28 17 57 28 17 58 28 17 59 28 17 60 28 17 61 28 17 62 28 17 63 28 17 64 28 17 65 28 17 66 28 17 67 28 17 68 28 17 69 28 17 70 28 17 46 29 17 47 29 17 48 29 17 49 29 17 50 29 17 56 29 17 57 29 17 58 29 17 59 29 17 60 29 17 61 29 17 62 29 17 63 29 17 64 29 17 65 29 17 66 29 17 67 29 17 68 29 17 69 29 17 70 29 17 46 30 17 47 30 17 48 30 17 49 30 17 50 30 17 58 30 17 59 30 17 60 30 17 61 30 17 62 30 17 63 30 17 64 30 17 65 30 17 66 30 17 67 30 17 68 30 17 69 30 17 70 30 17 71 30 17 46 31 17 47 31 17 48 31 17 49 31 17 50 31 17 61 31 17 62 31 17 63 31 17 64 31 17 65 31 17 66 31 17 67 31 17 68 31 17 69 31 17 70 31 17 71 31 17 46 32 17 47 32 17 48 32 17 49 32 17 62 32 17 63 32 17 64 32 17 65 32 17 66 32 17 67 32 17 68 32 17 69 32 17 70 32 17 71 32 17 46 33 17 47 33 17 48 33 17 49 33 17 65 33 17 66 33 17 67 33 17 68 33 17 69 33 17 70 33 17 71 33 17 46 34 17 47 34 17 48 34 17 49 34 17 50 34 17 67 34 17 68 34 17 69 34 17 70 34 17 71 34 17 46 35 17 47 35 17 48 35 17 49 35 17 50 35 17 67 35 17 68 35 17 69 35 17 70 35 17 71 35 17 46 36 17 47 36 17 48 36 17 49 36 17 50 36 17 51 36 17 67 36 17 68 36 17 69 36 17 70 36 17 46 37 17 47 37 17 48 37 17 49 37 17 50 37 17 66 37 17 67 37 17 68 37 17 69 37 17 70 37 17 46 38 17 47 38 17 48 38 17 49 38 17 50 38 17 65 38 17 66 38 17 67 38 17 68 38 17 69 38 17 70 38 17 46 39 17 47 39 17 48 39 17 49 39 17 64 39 17 65 39 17 66 39 17 67 39 17 68 39 17 69 39 17 70 39 17 46 40 17 48 40 17 61 40 17 62 40 17 63 40 17 64 40 17 65 40 17 66 40 17 67 40 17 68 40 17 69 40 17 61 41 17 62 41 17 63 41 17 64 41 17 65 41 17 66 41 17 67 41 17 68 41 17 69 41 17 60 42 17 61 42 17 62 42 17 63 42 17 64 42 17 65 42 17 66 42 17 67 42 17 68 42 17 60 43 17 61 43 17 62 43 17 63 43 17 65 43 17 66 43 17 59 44 17 60 44 17 61 44 17 62 44 17 63 44 17 64 44 17 58 45 17 59 45 17 60 45 17 61 45 17 62 45 17 63 45 17 58 46 17 59 46 17 60 46 17 61 46 17 62 46 17 49 18 18 50 18 18 51 18 18 52 18 18 53 18 18 54 18 18 55 18 18 56 18 18 57 18 18 48 19 18 49 19 18 50 19 18 51 19 18 52 19 18 53 19 18 54 19 18 55 19 18 56 19 18 57 19 18 58 19 18 59 19 18 47 20 18 48 20 18 49 20 18 50 20 18 51 20 18 52 20 18 53 20 18 54 20 18 55 20 18 56 20 18 57 20 18 58 20 18 59 20 18 60 20 18 47 21 18 48 21 18 49 21 18 50 21 18 51 21 18 52 21 18 53 21 18 54 21 18 55 21 18 56 21 18 57 21 18 58 21 18 59 21 18 60 21 18 61 21 18 46 22 18 47 22 18 48 22 18 49 22 18 50 22 18 52 22 18 53 22 18 54 22 18 55 22 18 56 22 18 57 22 18 58 22 18 59 22 18 62 22 18 63 22 18 64 22 18 65 22 18 46 23 18 47 23 18 48 23 18 49 23 18 51 23 18 52 23 18 53 23 18 54 23 18 55 23 18 56 23 18 57 23 18 58 23 18 59 23 18 60 23 18 61 23 18 62 23 18 63 23 18 64 23 18 65 23 18 66 23 18 46 24 18 47 24 18 48 24 18 49 24 18 51 24 18 52 24 18 53 24 18 54 24 18 55 24 18 56 24 18 57 24 18 58 24 18 59 24 18 60 24 18 61 24 18 62 24 18 63 24 18 64 24 18 65 24 18 66 24 18 67 24 18 46 25 18 47 25 18 48 25 18 49 25 18 51 25 18 52 25 18 53 25 18 54 25 18 55 25 18 56 25 18 57 25 18 58 25 18 59 25 18 60 25 18 61 25 18 62 25 18 63 25 18 64 25 18 65 25 18 66 25 18 67 25 18 68 25 18 46 26 18 47 26 18 48 26 18 49 26 18 51 26 18 52 26 18 53 26 18 54 26 18 55 26 18 56 26 18 57 26 18 58 26 18 59 26 18 60 26 18 61 26 18 62 26 18 63 26 18 64 26 18 65 26 18 66 26 18 67 26 18 68 26 18 69 26 18 46 27 18 47 27 18 48 27 18 49 27 18 52 27 18 53 27 18 54 27 18 55 27 18 56 27 18 57 27 18 58 27 18 59 27 18 60 27 18 61 27 18 62 27 18 63 27 18 64 27 18 65 27 18 66 27 18 67 27 18 68 27 18 69 27 18 70 27 18 46 28 18 47 28 18 48 28 18 49 28 18 53 28 18 54 28 18 55 28 18 56 28 18 57 28 18 58 28 18 59 28 18 60 28 18 61 28 18 62 28 18 63 28 18 64 28 18 65 28 18 66 28 18 67 28 18 68 28 18 69 28 18 70 28 18 46 29 18 47 29 18 48 29 18 49 29 18 60 29 18 61 29 18 62 29 18 63 29 18 64 29 18 65 29 18 66 29 18 67 29 18 68 29 18 69 29 18 70 29 18 46 30 18 47 30 18 48 30 18 49 30 18 64 30 18 65 30 18 66 30 18 67 30 18 68 30 18 69 30 18 70 30 18 71 30 18 47 31 18 48 31 18 49 31 18 67 31 18 68 31 18 69 31 18 70 31 18 71 31 18 46 32 18 67 32 18 68 32 18 69 32 18 70 32 18 71 32 18 46 33 18 47 33 18 48 33 18 66 33 18 67 33 18 68 33 18 69 33 18 70 33 18 71 33 18 72 33 18 46 34 18 47 34 18 48 34 18 49 34 18 50 34 18 60 34 18 61 34 18 65 34 18 66 34 18 67 34 18 68 34 18 69 34 18 70 34 18 71 34 18 46 35 18 47 35 18 48 35 18 49 35 18 50 35 18 60 35 18 61 35 18 62 35 18 64 35 18 65 35 18 66 35 18 67 35 18 68 35 18 69 35 18 70 35 18 71 35 18 46 36 18 47 36 18 48 36 18 49 36 18 50 36 18 60 36 18 61 36 18 62 36 18 63 36 18 64 36 18 65 36 18 66 36 18 67 36 18 68 36 18 69 36 18 70 36 18 46 37 18 47 37 18 48 37 18 49 37 18 50 37 18 60 37 18 61 37 18 62 37 18 63 37 18 64 37 18 65 37 18 66 37 18 67 37 18 68 37 18 69 37 18 70 37 18 46 38 18 47 38 18 48 38 18 49 38 18 60 38 18 61 38 18 62 38 18 63 38 18 64 38 18 65 38 18 66 38 18 67 38 18 68 38 18 69 38 18 70 38 18 46 39 18 47 39 18 48 39 18 49 39 18 60 39 18 61 39 18 62 39 18 63 39 18 64 39 18 65 39 18 66 39 18 67 39 18 68 39 18 69 39 18 70 39 18 46 40 18 49 40 18 60 40 18 61 40 18 62 40 18 63 40 18 64 40 18 65 40 18 66 40 18 67 40 18 68 40 18 69 40 18 60 41 18 61 41 18 62 41 18 63 41 18 64 41 18 65 41 18 66 41 18 67 41 18 68 41 18 69 41 18 60 42 18 61 42 18 62 42 18 63 42 18 64 42 18 65 42 18 66 42 18 67 42 18 68 42 18 61 43 18 62 43 18 63 43 18 64 43 18 65 43 18 66 43 18 59 44 18 60 44 18 61 44 18 62 44 18 63 44 18 64 44 18 58 45 18 59 45 18 60 45 18 61 45 18 62 45 18 63 45 18 57 46 18 58 46 18 59 46 18 60 46 18 61 46 18 62 46 18 56 47 18 58 47 18 59 47 18 60 47 18 61 47 18 53 17 19 49 18 19 50 18 19 51 18 19 52 18 19 53 18 19 54 18 19 55 18 19 56 18 19 57 18 19 48 19 19 49 19 19 50 19 19 51 19 19 52 19 19 53 19 19 54 19 19 55 19 19 56 19 19 57 19 19 58 19 19 47 20 19 48 20 19 49 20 19 50 20 19 51 20 19 52 20 19 53 20 19 54 20 19 55 20 19 56 20 19 57 20 19 59 20 19 60 20 19 61 20 19 62 20 19 46 21 19 47 21 19 48 21 19 49 21 19 50 21 19 51 21 19 52 21 19 53 21 19 54 21 19 55 21 19 56 21 19 57 21 19 58 21 19 59 21 19 60 21 19 61 21 19 62 21 19 63 21 19 46 22 19 47 22 19 48 22 19 50 22 19 51 22 19 52 22 19 53 22 19 54 22 19 55 22 19 56 22 19 57 22 19 58 22 19 59 22 19 60 22 19 61 22 19 62 22 19 63 22 19 64 22 19 65 22 19 46 23 19 47 23 19 48 23 19 50 23 19 51 23 19 52 23 19 53 23 19 54 23 19 55 23 19 56 23 19 57 23 19 58 23 19 59 23 19 60 23 19 61 23 19 62 23 19 63 23 19 64 23 19 65 23 19 66 23 19 46 24 19 47 24 19 48 24 19 50 24 19 51 24 19 52 24 19 53 24 19 54 24 19 55 24 19 56 24 19 57 24 19 58 24 19 59 24 19 60 24 19 61 24 19 62 24 19 63 24 19 64 24 19 65 24 19 66 24 19 67 24 19 46 25 19 47 25 19 48 25 19 50 25 19 51 25 19 52 25 19 53 25 19 54 25 19 55 25 19 56 25 19 57 25 19 58 25 19 59 25 19 60 25 19 61 25 19 62 25 19 63 25 19 64 25 19 65 25 19 66 25 19 67 25 19 68 25 19 45 26 19 46 26 19 47 26 19 48 26 19 50 26 19 51 26 19 52 26 19 53 26 19 54 26 19 55 26 19 56 26 19 57 26 19 58 26 19 59 26 19 60 26 19 61 26 19 62 26 19 63 26 19 64 26 19 65 26 19 66 26 19 67 26 19 68 26 19 69 26 19 45 27 19 46 27 19 47 27 19 48 27 19 51 27 19 52 27 19 53 27 19 54 27 19 55 27 19 61 27 19 62 27 19 63 27 19 64 27 19 66 27 19 67 27 19 68 27 19 69 27 19 70 27 19 46 28 19 47 28 19 48 28 19 66 28 19 67 28 19 68 28 19 69 28 19 70 28 19 46 29 19 47 29 19 48 29 19 49 29 19 56 29 19 57 29 19 66 29 19 67 29 19 68 29 19 69 29 19 70 29 19 46 30 19 47 30 19 48 30 19 49 30 19 55 30 19 56 30 19 57 30 19 58 30 19 59 30 19 60 30 19 61 30 19 65 30 19 66 30 19 67 30 19 68 30 19 69 30 19 70 30 19 71 30 19 46 31 19 47 31 19 48 31 19 56 31 19 57 31 19 58 31 19 59 31 19 60 31 19 61 31 19 62 31 19 63 31 19 64 31 19 65 31 19 66 31 19 67 31 19 68 31 19 69 31 19 70 31 19 71 31 19 48 32 19 57 32 19 58 32 19 59 32 19 60 32 19 61 32 19 62 32 19 63 32 19 64 32 19 65 32 19 66 32 19 67 32 19 68 32 19 69 32 19 70 32 19 71 32 19 46 33 19 47 33 19 57 33 19 58 33 19 59 33 19 60 33 19 61 33 19 62 33 19 63 33 19 64 33 19 65 33 19 66 33 19 67 33 19 68 33 19 69 33 19 70 33 19 71 33 19 46 34 19 47 34 19 58 34 19 59 34 19 60 34 19 61 34 19 62 34 19 63 34 19 64 34 19 65 34 19 66 34 19 67 34 19 68 34 19 69 34 19 70 34 19 71 34 19 46 35 19 48 35 19 49 35 19 50 35 19 58 35 19 59 35 19 60 35 19 61 35 19 62 35 19 63 35 19 64 35 19 65 35 19 66 35 19 67 35 19 68 35 19 69 35 19 70 35 19 71 35 19 46 36 19 47 36 19 48 36 19 49 36 19 50 36 19 59 36 19 60 36 19 61 36 19 62 36 19 63 36 19 64 36 19 65 36 19 66 36 19 67 36 19 68 36 19 69 36 19 70 36 19 71 36 19 46 37 19 47 37 19 50 37 19 59 37 19 60 37 19 61 37 19 62 37 19 63 37 19 64 37 19 65 37 19 66 37 19 67 37 19 68 37 19 69 37 19 70 37 19 46 38 19 47 38 19 59 38 19 60 38 19 61 38 19 62 38 19 63 38 19 64 38 19 65 38 19 66 38 19 67 38 19 68 38 19 69 38 19 70 38 19 46 39 19 49 39 19 59 39 19 60 39 19 61 39 19 62 39 19 63 39 19 64 39 19 65 39 19 66 39 19 67 39 19 68 39 19 69 39 19 60 40 19 61 40 19 62 40 19 63 40 19 64 40 19 65 40 19 66 40 19 67 40 19 68 40 19 69 40 19 60 41 19 61 41 19 62 41 19 63 41 19 64 41 19 65 41 19 66 41 19 67 41 19 68 41 19 69 41 19 61 42 19 62 42 19 63 42 19 64 42 19 65 42 19 66 42 19 67 42 19 68 42 19 59 43 19 60 43 19 61 43 19 62 43 19 63 43 19 64 43 19 65 43 19 59 44 19 60 44 19 61 44 19 62 44 19 63 44 19 64 44 19 58 45 19 59 45 19 60 45 19 61 45 19 62 45 19 63 45 19 64 45 19 57 46 19 58 46 19 59 46 19 60 46 19 61 46 19 62 46 19 56 47 19 57 47 19 58 47 19 59 47 19 60 47 19 61 47 19 51 17 20 52 17 20 53 17 20 49 18 20 50 18 20 51 18 20 52 18 20 53 18 20 54 18 20 55 18 20 56 18 20 47 19 20 48 19 20 49 19 20 50 19 20 51 19 20 52 19 20 53 19 20 54 19 20 55 19 20 56 19 20 57 19 20 58 19 20 59 19 20 60 19 20 47 20 20 48 20 20 49 20 20 50 20 20 51 20 20 52 20 20 53 20 20 54 20 20 55 20 20 56 20 20 57 20 20 58 20 20 59 20 20 60 20 20 61 20 20 62 20 20 46 21 20 47 21 20 48 21 20 49 21 20 50 21 20 51 21 20 52 21 20 53 21 20 54 21 20 55 21 20 56 21 20 57 21 20 58 21 20 59 21 20 60 21 20 61 21 20 62 21 20 63 21 20 64 21 20 46 22 20 47 22 20 48 22 20 49 22 20 50 22 20 51 22 20 52 22 20 53 22 20 54 22 20 55 22 20 56 22 20 57 22 20 58 22 20 59 22 20 60 22 20 61 22 20 62 22 20 63 22 20 64 22 20 65 22 20 47 23 20 48 23 20 49 23 20 50 23 20 51 23 20 52 23 20 53 23 20 54 23 20 55 23 20 56 23 20 57 23 20 58 23 20 59 23 20 60 23 20 61 23 20 62 23 20 63 23 20 64 23 20 65 23 20 66 23 20 46 24 20 47 24 20 48 24 20 49 24 20 50 24 20 51 24 20 52 24 20 53 24 20 54 24 20 55 24 20 56 24 20 57 24 20 58 24 20 59 24 20 60 24 20 61 24 20 62 24 20 63 24 20 64 24 20 65 24 20 66 24 20 67 24 20 45 25 20 46 25 20 47 25 20 48 25 20 49 25 20 50 25 20 51 25 20 52 25 20 53 25 20 54 25 20 55 25 20 56 25 20 57 25 20 58 25 20 59 25 20 60 25 20 63 25 20 64 25 20 65 25 20 66 25 20 67 25 20 68 25 20 45 26 20 46 26 20 47 26 20 49 26 20 50 26 20 51 26 20 52 26 20 64 26 20 65 26 20 66 26 20 67 26 20 68 26 20 69 26 20 45 27 20 46 27 20 47 27 20 63 27 20 64 27 20 65 27 20 66 27 20 67 27 20 68 27 20 69 27 20 70 27 20 46 28 20 47 28 20 48 28 20 52 28 20 53 28 20 54 28 20 55 28 20 56 28 20 57 28 20 58 28 20 59 28 20 60 28 20 61 28 20 62 28 20 63 28 20 64 28 20 65 28 20 66 28 20 67 28 20 68 28 20 69 28 20 70 28 20 46 29 20 47 29 20 48 29 20 52 29 20 53 29 20 54 29 20 55 29 20 56 29 20 57 29 20 58 29 20 59 29 20 60 29 20 61 29 20 62 29 20 63 29 20 64 29 20 65 29 20 66 29 20 67 29 20 68 29 20 69 29 20 70 29 20 46 30 20 47 30 20 48 30 20 53 30 20 54 30 20 55 30 20 56 30 20 57 30 20 58 30 20 59 30 20 60 30 20 61 30 20 62 30 20 63 30 20 64 30 20 65 30 20 66 30 20 67 30 20 68 30 20 69 30 20 70 30 20 71 30 20 46 31 20 47 31 20 48 31 20 55 31 20 56 31 20 57 31 20 58 31 20 59 31 20 60 31 20 61 31 20 62 31 20 63 31 20 64 31 20 65 31 20 66 31 20 67 31 20 68 31 20 69 31 20 70 31 20 71 31 20 46 32 20 47 32 20 48 32 20 56 32 20 57 32 20 58 32 20 59 32 20 60 32 20 61 32 20 62 32 20 63 32 20 64 32 20 65 32 20 66 32 20 67 32 20 68 32 20 69 32 20 70 32 20 71 32 20 72 32 20 57 33 20 58 33 20 59 33 20 60 33 20 61 33 20 62 33 20 63 33 20 64 33 20 65 33 20 66 33 20 67 33 20 68 33 20 69 33 20 70 33 20 71 33 20 72 33 20 46 34 20 57 34 20 58 34 20 59 34 20 60 34 20 61 34 20 62 34 20 63 34 20 64 34 20 65 34 20 66 34 20 67 34 20 68 34 20 69 34 20 70 34 20 71 34 20 46 35 20 58 35 20 59 35 20 60 35 20 61 35 20 62 35 20 63 35 20 64 35 20 65 35 20 66 35 20 67 35 20 68 35 20 69 35 20 70 35 20 71 35 20 46 36 20 47 36 20 48 36 20 58 36 20 59 36 20 60 36 20 61 36 20 62 36 20 63 36 20 64 36 20 65 36 20 66 36 20 67 36 20 68 36 20 69 36 20 70 36 20 71 36 20 46 37 20 47 37 20 59 37 20 60 37 20 61 37 20 62 37 20 63 37 20 64 37 20 65 37 20 66 37 20 67 37 20 68 37 20 69 37 20 70 37 20 46 38 20 59 38 20 60 38 20 61 38 20 62 38 20 63 38 20 64 38 20 65 38 20 66 38 20 67 38 20 68 38 20 69 38 20 46 39 20 60 39 20 61 39 20 62 39 20 63 39 20 64 39 20 65 39 20 66 39 20 67 39 20 68 39 20 69 39 20 61 40 20 62 40 20 63 40 20 64 40 20 65 40 20 66 40 20 67 40 20 68 40 20 69 40 20 58 41 20 59 41 20 60 41 20 61 41 20 62 41 20 63 41 20 64 41 20 65 41 20 66 41 20 67 41 20 58 42 20 59 42 20 60 42 20 61 42 20 62 42 20 63 42 20 64 42 20 65 42 20 66 42 20 67 42 20 58 43 20 59 43 20 60 43 20 61 43 20 62 43 20 63 43 20 64 43 20 65 43 20 58 44 20 59 44 20 60 44 20 61 44 20 62 44 20 63 44 20 64 44 20 58 45 20 59 45 20 60 45 20 61 45 20 62 45 20 63 45 20 56 46 20 57 46 20 58 46 20 59 46 20 60 46 20 61 46 20 62 46 20 56 47 20 57 47 20 58 47 20 59 47 20 60 47 20 61 47 20 57 48 20 58 48 20 59 48 20 48 18 21 49 18 21 50 18 21 51 18 21 52 18 21 53 18 21 54 18 21 56 18 21 57 18 21 58 18 21 47 19 21 48 19 21 49 19 21 50 19 21 51 19 21 52 19 21 53 19 21 54 19 21 55 19 21 56 19 21 57 19 21 58 19 21 59 19 21 60 19 21 47 20 21 48 20 21 49 20 21 50 20 21 51 20 21 52 20 21 53 20 21 54 20 21 55 20 21 56 20 21 57 20 21 58 20 21 59 20 21 60 20 21 61 20 21 62 20 21 63 20 21 47 21 21 48 21 21 49 21 21 50 21 21 51 21 21 52 21 21 53 21 21 54 21 21 55 21 21 56 21 21 57 21 21 58 21 21 59 21 21 60 21 21 61 21 21 62 21 21 63 21 21 64 21 21 47 22 21 48 22 21 49 22 21 50 22 21 51 22 21 52 22 21 53 22 21 54 22 21 55 22 21 56 22 21 57 22 21 58 22 21 59 22 21 60 22 21 61 22 21 62 22 21 63 22 21 64 22 21 65 22 21 47 23 21 48 23 21 49 23 21 50 23 21 51 23 21 52 23 21 53 23 21 54 23 21 55 23 21 56 23 21 57 23 21 58 23 21 61 23 21 62 23 21 63 23 21 64 23 21 65 23 21 66 23 21 45 24 21 46 24 21 47 24 21 48 24 21 49 24 21 50 24 21 51 24 21 52 24 21 53 24 21 54 24 21 55 24 21 61 24 21 62 24 21 63 24 21 64 24 21 65 24 21 66 24 21 67 24 21 45 25 21 46 25 21 47 25 21 48 25 21 49 25 21 50 25 21 51 25 21 60 25 21 61 25 21 62 25 21 63 25 21 64 25 21 65 25 21 66 25 21 67 25 21 68 25 21 45 26 21 46 26 21 47 26 21 48 26 21 54 26 21 55 26 21 56 26 21 57 26 21 58 26 21 59 26 21 60 26 21 61 26 21 62 26 21 63 26 21 64 26 21 65 26 21 66 26 21 67 26 21 68 26 21 45 27 21 46 27 21 48 27 21 49 27 21 50 27 21 51 27 21 52 27 21 53 27 21 54 27 21 55 27 21 56 27 21 57 27 21 58 27 21 59 27 21 60 27 21 61 27 21 62 27 21 63 27 21 64 27 21 65 27 21 66 27 21 67 27 21 68 27 21 69 27 21 46 28 21 47 28 21 49 28 21 50 28 21 51 28 21 52 28 21 53 28 21 54 28 21 55 28 21 56 28 21 57 28 21 58 28 21 59 28 21 60 28 21 61 28 21 62 28 21 63 28 21 64 28 21 65 28 21 66 28 21 67 28 21 68 28 21 69 28 21 46 29 21 47 29 21 50 29 21 51 29 21 52 29 21 53 29 21 54 29 21 55 29 21 56 29 21 57 29 21 58 29 21 59 29 21 60 29 21 61 29 21 62 29 21 63 29 21 64 29 21 65 29 21 66 29 21 67 29 21 68 29 21 69 29 21 70 29 21 46 30 21 47 30 21 48 30 21 52 30 21 53 30 21 54 30 21 55 30 21 56 30 21 57 30 21 58 30 21 59 30 21 60 30 21 61 30 21 62 30 21 63 30 21 64 30 21 65 30 21 66 30 21 67 30 21 68 30 21 69 30 21 70 30 21 46 31 21 47 31 21 48 31 21 54 31 21 55 31 21 56 31 21 57 31 21 58 31 21 59 31 21 60 31 21 61 31 21 62 31 21 63 31 21 64 31 21 65 31 21 66 31 21 67 31 21 68 31 21 69 31 21 70 31 21 46 32 21 47 32 21 56 32 21 57 32 21 58 32 21 59 32 21 60 32 21 61 32 21 62 32 21 63 32 21 64 32 21 65 32 21 66 32 21 67 32 21 68 32 21 69 32 21 70 32 21 71 32 21 46 33 21 57 33 21 58 33 21 59 33 21 60 33 21 61 33 21 62 33 21 63 33 21 64 33 21 65 33 21 66 33 21 67 33 21 68 33 21 69 33 21 70 33 21 58 34 21 59 34 21 60 34 21 61 34 21 62 34 21 63 34 21 64 34 21 65 34 21 66 34 21 67 34 21 68 34 21 69 34 21 70 34 21 59 35 21 60 35 21 61 35 21 62 35 21 63 35 21 64 35 21 65 35 21 66 35 21 67 35 21 68 35 21 69 35 21 70 35 21 57 36 21 59 36 21 60 36 21 61 36 21 62 36 21 63 36 21 64 36 21 65 36 21 66 36 21 67 36 21 68 36 21 69 36 21 70 36 21 46 37 21 57 37 21 58 37 21 60 37 21 61 37 21 62 37 21 63 37 21 64 37 21 65 37 21 66 37 21 67 37 21 68 37 21 69 37 21 70 37 21 57 38 21 58 38 21 59 38 21 61 38 21 62 38 21 63 38 21 64 38 21 65 38 21 66 38 21 67 38 21 68 38 21 69 38 21 57 39 21 58 39 21 59 39 21 60 39 21 61 39 21 62 39 21 63 39 21 64 39 21 65 39 21 66 39 21 67 39 21 68 39 21 57 40 21 58 40 21 59 40 21 60 40 21 61 40 21 62 40 21 63 40 21 64 40 21 65 40 21 66 40 21 67 40 21 57 41 21 58 41 21 59 41 21 60 41 21 61 41 21 62 41 21 63 41 21 64 41 21 65 41 21 50 42 21 57 42 21 58 42 21 59 42 21 60 42 21 61 42 21 62 42 21 63 42 21 64 42 21 65 42 21 50 43 21 57 43 21 58 43 21 59 43 21 60 43 21 61 43 21 62 43 21 63 43 21 64 43 21 57 44 21 58 44 21 59 44 21 60 44 21 61 44 21 62 44 21 63 44 21 64 44 21 56 45 21 57 45 21 58 45 21 59 45 21 60 45 21 61 45 21 62 45 21 55 46 21 56 46 21 57 46 21 58 46 21 59 46 21 60 46 21 61 46 21 55 47 21 56 47 21 57 47 21 58 47 21 59 47 21 60 47 21 56 48 21 57 48 21 58 48 21 49 18 22 50 18 22 51 18 22 53 18 22 54 18 22 55 18 22 56 18 22 57 18 22 47 19 22 48 19 22 49 19 22 50 19 22 51 19 22 52 19 22 53 19 22 54 19 22 55 19 22 56 19 22 57 19 22 58 19 22 59 19 22 47 20 22 48 20 22 49 20 22 50 20 22 51 20 22 52 20 22 53 20 22 54 20 22 55 20 22 56 20 22 57 20 22 58 20 22 59 20 22 60 20 22 61 20 22 62 20 22 47 21 22 48 21 22 49 21 22 50 21 22 51 21 22 52 21 22 53 21 22 54 21 22 55 21 22 56 21 22 57 21 22 58 21 22 59 21 22 60 21 22 61 21 22 62 21 22 63 21 22 47 22 22 48 22 22 49 22 22 50 22 22 51 22 22 52 22 22 53 22 22 54 22 22 55 22 22 56 22 22 57 22 22 58 22 22 59 22 22 60 22 22 61 22 22 62 22 22 63 22 22 64 22 22 65 22 22 47 23 22 48 23 22 49 23 22 50 23 22 51 23 22 52 23 22 53 23 22 58 23 22 59 23 22 60 23 22 61 23 22 62 23 22 63 23 22 64 23 22 65 23 22 45 24 22 46 24 22 47 24 22 48 24 22 49 24 22 50 24 22 55 24 22 56 24 22 57 24 22 58 24 22 59 24 22 60 24 22 61 24 22 62 24 22 63 24 22 64 24 22 65 24 22 66 24 22 45 25 22 46 25 22 47 25 22 48 25 22 49 25 22 50 25 22 51 25 22 52 25 22 53 25 22 54 25 22 55 25 22 56 25 22 57 25 22 58 25 22 59 25 22 60 25 22 61 25 22 62 25 22 63 25 22 64 25 22 65 25 22 66 25 22 67 25 22 45 26 22 46 26 22 47 26 22 48 26 22 49 26 22 50 26 22 51 26 22 52 26 22 53 26 22 54 26 22 55 26 22 56 26 22 57 26 22 58 26 22 59 26 22 60 26 22 61 26 22 62 26 22 63 26 22 64 26 22 65 26 22 66 26 22 67 26 22 68 26 22 45 27 22 46 27 22 47 27 22 48 27 22 49 27 22 50 27 22 51 27 22 52 27 22 53 27 22 54 27 22 55 27 22 56 27 22 57 27 22 58 27 22 59 27 22 60 27 22 61 27 22 62 27 22 63 27 22 64 27 22 65 27 22 66 27 22 67 27 22 68 27 22 69 27 22 48 28 22 49 28 22 50 28 22 51 28 22 52 28 22 53 28 22 54 28 22 55 28 22 56 28 22 57 28 22 58 28 22 59 28 22 60 28 22 61 28 22 62 28 22 63 28 22 64 28 22 65 28 22 66 28 22 67 28 22 68 28 22 69 28 22 50 29 22 51 29 22 52 29 22 53 29 22 54 29 22 55 29 22 56 29 22 57 29 22 58 29 22 59 29 22 60 29 22 61 29 22 62 29 22 63 29 22 64 29 22 65 29 22 66 29 22 67 29 22 68 29 22 69 29 22 53 30 22 54 30 22 55 30 22 56 30 22 57 30 22 58 30 22 59 30 22 60 30 22 61 30 22 62 30 22 63 30 22 64 30 22 65 30 22 66 30 22 67 30 22 68 30 22 69 30 22 56 31 22 57 31 22 58 31 22 59 31 22 60 31 22 61 31 22 62 31 22 63 31 22 64 31 22 65 31 22 66 31 22 67 31 22 68 31 22 69 31 22 70 31 22 54 32 22 57 32 22 58 32 22 59 32 22 60 32 22 61 32 22 62 32 22 63 32 22 64 32 22 65 32 22 66 32 22 67 32 22 68 32 22 69 32 22 54 33 22 55 33 22 56 33 22 58 33 22 59 33 22 60 33 22 61 33 22 62 33 22 63 33 22 64 33 22 65 33 22 66 33 22 67 33 22 68 33 22 69 33 22 70 33 22 54 34 22 55 34 22 56 34 22 57 34 22 59 34 22 60 34 22 61 34 22 62 34 22 63 34 22 64 34 22 65 34 22 66 34 22 67 34 22 68 34 22 69 34 22 55 35 22 56 35 22 57 35 22 58 35 22 60 35 22 61 35 22 62 35 22 63 35 22 64 35 22 65 35 22 66 35 22 67 35 22 68 35 22 69 35 22 55 36 22 56 36 22 57 36 22 58 36 22 59 36 22 60 36 22 61 36 22 62 36 22 63 36 22 64 36 22 65 36 22 66 36 22 67 36 22 68 36 22 69 36 22 55 37 22 56 37 22 57 37 22 58 37 22 59 37 22 60 37 22 61 37 22 62 37 22 63 37 22 64 37 22 65 37 22 66 37 22 67 37 22 68 37 22 55 38 22 56 38 22 57 38 22 58 38 22 59 38 22 60 38 22 61 38 22 62 38 22 63 38 22 64 38 22 65 38 22 66 38 22 56 39 22 57 39 22 58 39 22 59 39 22 60 39 22 61 39 22 62 39 22 63 39 22 64 39 22 65 39 22 56 40 22 57 40 22 58 40 22 59 40 22 60 40 22 61 40 22 62 40 22 63 40 22 64 40 22 55 41 22 56 41 22 57 41 22 58 41 22 59 41 22 60 41 22 61 41 22 62 41 22 63 41 22 64 41 22 50 42 22 55 42 22 56 42 22 57 42 22 58 42 22 59 42 22 60 42 22 61 42 22 62 42 22 63 42 22 50 43 22 51 43 22 55 43 22 56 43 22 57 43 22 58 43 22 59 43 22 60 43 22 61 43 22 62 43 22 51 44 22 52 44 22 55 44 22 56 44 22 57 44 22 58 44 22 59 44 22 60 44 22 61 44 22 50 45 22 51 45 22 52 45 22 53 45 22 54 45 22 55 45 22 56 45 22 57 45 22 58 45 22 59 45 22 60 45 22 61 45 22 53 46 22 54 46 22 55 46 22 56 46 22 57 46 22 58 46 22 59 46 22 54 47 22 55 47 22 56 47 22 57 47 22 58 47 22 55 48 22 56 48 22 57 48 22 53 18 23 54 18 23 48 19 23 49 19 23 50 19 23 51 19 23 52 19 23 53 19 23 54 19 23 55 19 23 56 19 23 57 19 23 58 19 23 48 20 23 49 20 23 50 20 23 51 20 23 52 20 23 53 20 23 54 20 23 55 20 23 56 20 23 57 20 23 58 20 23 59 20 23 60 20 23 61 20 23 48 21 23 49 21 23 50 21 23 51 21 23 52 21 23 53 21 23 54 21 23 55 21 23 56 21 23 57 21 23 58 21 23 59 21 23 60 21 23 61 21 23 62 21 23 48 22 23 49 22 23 50 22 23 51 22 23 52 22 23 53 22 23 54 22 23 55 22 23 56 22 23 57 22 23 58 22 23 59 22 23 60 22 23 61 22 23 62 22 23 63 22 23 64 22 23 47 23 23 48 23 23 49 23 23 50 23 23 51 23 23 52 23 23 53 23 23 54 23 23 55 23 23 56 23 23 57 23 23 58 23 23 59 23 23 60 23 23 61 23 23 62 23 23 63 23 23 64 23 23 45 24 23 46 24 23 47 24 23 48 24 23 49 24 23 50 24 23 51 24 23 52 24 23 53 24 23 54 24 23 55 24 23 56 24 23 57 24 23 58 24 23 59 24 23 60 24 23 61 24 23 62 24 23 63 24 23 64 24 23 65 24 23 45 25 23 46 25 23 47 25 23 49 25 23 50 25 23 51 25 23 52 25 23 53 25 23 54 25 23 55 25 23 56 25 23 57 25 23 58 25 23 59 25 23 60 25 23 61 25 23 62 25 23 63 25 23 64 25 23 65 25 23 66 25 23 45 26 23 46 26 23 47 26 23 48 26 23 49 26 23 50 26 23 51 26 23 52 26 23 53 26 23 54 26 23 55 26 23 56 26 23 57 26 23 58 26 23 59 26 23 60 26 23 61 26 23 62 26 23 63 26 23 64 26 23 65 26 23 66 26 23 67 26 23 45 27 23 46 27 23 47 27 23 48 27 23 49 27 23 50 27 23 51 27 23 52 27 23 53 27 23 54 27 23 55 27 23 56 27 23 57 27 23 58 27 23 59 27 23 60 27 23 61 27 23 62 27 23 63 27 23 64 27 23 65 27 23 66 27 23 67 27 23 68 27 23 47 28 23 50 28 23 51 28 23 52 28 23 53 28 23 54 28 23 55 28 23 56 28 23 57 28 23 58 28 23 59 28 23 60 28 23 61 28 23 62 28 23 63 28 23 64 28 23 65 28 23 66 28 23 67 28 23 68 28 23 53 29 23 54 29 23 55 29 23 56 29 23 57 29 23 58 29 23 59 29 23 60 29 23 61 29 23 62 29 23 63 29 23 64 29 23 65 29 23 66 29 23 67 29 23 68 29 23 46 30 23 50 30 23 51 30 23 57 30 23 58 30 23 59 30 23 60 30 23 61 30 23 62 30 23 63 30 23 64 30 23 65 30 23 66 30 23 67 30 23 68 30 23 69 30 23 46 31 23 47 31 23 51 31 23 52 31 23 53 31 23 54 31 23 55 31 23 58 31 23 59 31 23 60 31 23 61 31 23 62 31 23 63 31 23 64 31 23 65 31 23 66 31 23 67 31 23 68 31 23 69 31 23 46 32 23 47 32 23 48 32 23 52 32 23 53 32 23 54 32 23 55 32 23 56 32 23 59 32 23 60 32 23 61 32 23 62 32 23 63 32 23 64 32 23 65 32 23 66 32 23 67 32 23 68 32 23 69 32 23 46 33 23 47 33 23 52 33 23 53 33 23 54 33 23 55 33 23 56 33 23 57 33 23 58 33 23 60 33 23 61 33 23 62 33 23 63 33 23 64 33 23 65 33 23 66 33 23 67 33 23 68 33 23 69 33 23 45 34 23 46 34 23 52 34 23 53 34 23 54 34 23 55 34 23 56 34 23 57 34 23 58 34 23 59 34 23 60 34 23 61 34 23 62 34 23 63 34 23 64 34 23 65 34 23 66 34 23 67 34 23 68 34 23 69 34 23 46 35 23 53 35 23 54 35 23 55 35 23 56 35 23 57 35 23 58 35 23 59 35 23 60 35 23 61 35 23 62 35 23 63 35 23 64 35 23 65 35 23 66 35 23 67 35 23 54 36 23 55 36 23 56 36 23 57 36 23 58 36 23 59 36 23 60 36 23 61 36 23 62 36 23 63 36 23 64 36 23 65 36 23 66 36 23 54 37 23 55 37 23 56 37 23 57 37 23 58 37 23 59 37 23 60 37 23 61 37 23 62 37 23 63 37 23 64 37 23 65 37 23 54 38 23 55 38 23 56 38 23 57 38 23 58 38 23 59 38 23 60 38 23 61 38 23 62 38 23 63 38 23 64 38 23 54 39 23 55 39 23 56 39 23 57 39 23 58 39 23 59 39 23 60 39 23 61 39 23 62 39 23 63 39 23 64 39 23 54 40 23 55 40 23 56 40 23 57 40 23 58 40 23 59 40 23 60 40 23 61 40 23 62 40 23 63 40 23 49 41 23 54 41 23 55 41 23 56 41 23 57 41 23 58 41 23 59 41 23 60 41 23 61 41 23 62 41 23 49 42 23 50 42 23 54 42 23 55 42 23 56 42 23 57 42 23 58 42 23 59 42 23 60 42 23 61 42 23 49 43 23 50 43 23 54 43 23 55 43 23 56 43 23 57 43 23 58 43 23 59 43 23 60 43 23 61 43 23 50 44 23 51 44 23 52 44 23 54 44 23 55 44 23 56 44 23 57 44 23 58 44 23 59 44 23 60 44 23 51 45 23 52 45 23 53 45 23 54 45 23 55 45 23 56 45 23 57 45 23 58 45 23 59 45 23 60 45 23 52 46 23 53 46 23 54 46 23 55 46 23 56 46 23 57 46 23 58 46 23 59 46 23 53 47 23 54 47 23 55 47 23 56 47 23 57 47 23 58 47 23 54 48 23 55 48 23 56 48 23 57 48 23 51 19 24 52 19 24 53 19 24 54 19 24 55 19 24 49 20 24 50 20 24 51 20 24 52 20 24 53 20 24 54 20 24 55 20 24 56 20 24 57 20 24 58 20 24 48 21 24 49 21 24 50 21 24 51 21 24 52 21 24 53 21 24 54 21 24 55 21 24 56 21 24 57 21 24 58 21 24 59 21 24 48 22 24 49 22 24 50 22 24 51 22 24 52 22 24 53 22 24 54 22 24 55 22 24 56 22 24 57 22 24 58 22 24 59 22 24 60 22 24 61 22 24 62 22 24 48 23 24 49 23 24 50 23 24 51 23 24 52 23 24 53 23 24 54 23 24 55 23 24 56 23 24 57 23 24 58 23 24 59 23 24 60 23 24 61 23 24 62 23 24 63 23 24 45 24 24 46 24 24 47 24 24 49 24 24 50 24 24 51 24 24 52 24 24 53 24 24 54 24 24 55 24 24 56 24 24 57 24 24 58 24 24 59 24 24 60 24 24 61 24 24 62 24 24 63 24 24 64 24 24 65 24 24 45 25 24 46 25 24 47 25 24 48 25 24 49 25 24 50 25 24 51 25 24 52 25 24 53 25 24 54 25 24 55 25 24 56 25 24 57 25 24 58 25 24 59 25 24 60 25 24 61 25 24 62 25 24 63 25 24 64 25 24 65 25 24 45 26 24 46 26 24 47 26 24 48 26 24 49 26 24 50 26 24 51 26 24 52 26 24 53 26 24 54 26 24 55 26 24 56 26 24 57 26 24 58 26 24 59 26 24 60 26 24 61 26 24 62 26 24 63 26 24 64 26 24 65 26 24 66 26 24 45 27 24 46 27 24 47 27 24 48 27 24 50 27 24 51 27 24 52 27 24 53 27 24 54 27 24 55 27 24 56 27 24 57 27 24 58 27 24 59 27 24 60 27 24 61 27 24 62 27 24 63 27 24 64 27 24 65 27 24 66 27 24 47 28 24 48 28 24 54 28 24 55 28 24 56 28 24 57 28 24 58 28 24 59 28 24 60 28 24 61 28 24 62 28 24 63 28 24 64 28 24 65 28 24 66 28 24 46 29 24 48 29 24 49 29 24 50 29 24 51 29 24 57 29 24 58 29 24 59 29 24 60 29 24 61 29 24 62 29 24 63 29 24 64 29 24 65 29 24 66 29 24 67 29 24 46 30 24 47 30 24 49 30 24 50 30 24 51 30 24 52 30 24 53 30 24 54 30 24 55 30 24 56 30 24 57 30 24 58 30 24 59 30 24 60 30 24 61 30 24 62 30 24 63 30 24 64 30 24 65 30 24 66 30 24 67 30 24 46 31 24 47 31 24 48 31 24 49 31 24 50 31 24 51 31 24 52 31 24 53 31 24 54 31 24 55 31 24 56 31 24 57 31 24 58 31 24 59 31 24 60 31 24 61 31 24 62 31 24 63 31 24 64 31 24 65 31 24 66 31 24 67 31 24 46 32 24 47 32 24 48 32 24 49 32 24 50 32 24 51 32 24 52 32 24 53 32 24 54 32 24 55 32 24 56 32 24 57 32 24 58 32 24 59 32 24 60 32 24 61 32 24 62 32 24 63 32 24 64 32 24 65 32 24 66 32 24 45 33 24 46 33 24 47 33 24 48 33 24 49 33 24 50 33 24 51 33 24 52 33 24 53 33 24 54 33 24 55 33 24 56 33 24 57 33 24 58 33 24 59 33 24 60 33 24 61 33 24 62 33 24 63 33 24 64 33 24 65 33 24 45 34 24 46 34 24 47 34 24 50 34 24 51 34 24 52 34 24 53 34 24 54 34 24 55 34 24 56 34 24 57 34 24 58 34 24 59 34 24 60 34 24 61 34 24 62 34 24 63 34 24 64 34 24 45 35 24 51 35 24 52 35 24 53 35 24 54 35 24 55 35 24 56 35 24 57 35 24 58 35 24 59 35 24 60 35 24 61 35 24 62 35 24 63 35 24 64 35 24 52 36 24 53 36 24 54 36 24 55 36 24 56 36 24 57 36 24 58 36 24 59 36 24 60 36 24 61 36 24 62 36 24 63 36 24 52 37 24 53 37 24 54 37 24 55 37 24 56 37 24 57 37 24 58 37 24 59 37 24 60 37 24 61 37 24 62 37 24 63 37 24 46 38 24 52 38 24 53 38 24 54 38 24 55 38 24 56 38 24 57 38 24 58 38 24 59 38 24 60 38 24 61 38 24 62 38 24 52 39 24 53 39 24 54 39 24 55 39 24 56 39 24 57 39 24 58 39 24 59 39 24 60 39 24 61 39 24 46 40 24 47 40 24 48 40 24 49 40 24 52 40 24 53 40 24 54 40 24 55 40 24 56 40 24 57 40 24 58 40 24 59 40 24 60 40 24 61 40 24 48 41 24 49 41 24 52 41 24 53 41 24 54 41 24 55 41 24 56 41 24 57 41 24 58 41 24 59 41 24 60 41 24 49 42 24 50 42 24 53 42 24 54 42 24 55 42 24 56 42 24 57 42 24 58 42 24 59 42 24 49 43 24 50 43 24 51 43 24 52 43 24 54 43 24 55 43 24 56 43 24 57 43 24 58 43 24 59 43 24 50 44 24 51 44 24 52 44 24 53 44 24 54 44 24 55 44 24 56 44 24 57 44 24 51 45 24 52 45 24 53 45 24 54 45 24 55 45 24 56 45 24 57 45 24 52 46 24 53 46 24 54 46 24 55 46 24 56 46 24 57 46 24 53 47 24 54 47 24 55 47 24 54 48 24 55 48 24 51 20 25 52 20 25 53 20 25 54 20 25 49 21 25 50 21 25 51 21 25 52 21 25 53 21 25 54 21 25 55 21 25 56 21 25 57 21 25 48 22 25 49 22 25 50 22 25 51 22 25 52 22 25 53 22 25 54 22 25 55 22 25 56 22 25 57 22 25 58 22 25 59 22 25 48 23 25 49 23 25 50 23 25 51 23 25 52 23 25 53 23 25 54 23 25 55 23 25 56 23 25 57 23 25 58 23 25 59 23 25 60 23 25 45 24 25 46 24 25 47 24 25 48 24 25 49 24 25 50 24 25 51 24 25 52 24 25 53 24 25 54 24 25 55 24 25 56 24 25 57 24 25 58 24 25 59 24 25 60 24 25 61 24 25 45 25 25 46 25 25 47 25 25 48 25 25 49 25 25 50 25 25 51 25 25 52 25 25 53 25 25 54 25 25 55 25 25 56 25 25 57 25 25 58 25 25 59 25 25 60 25 25 61 25 25 62 25 25 45 26 25 46 26 25 47 26 25 48 26 25 50 26 25 51 26 25 52 26 25 53 26 25 54 26 25 55 26 25 56 26 25 57 26 25 58 26 25 59 26 25 60 26 25 61 26 25 62 26 25 63 26 25 45 27 25 46 27 25 47 27 25 48 27 25 49 27 25 50 27 25 53 27 25 54 27 25 55 27 25 56 27 25 57 27 25 58 27 25 59 27 25 60 27 25 61 27 25 62 27 25 63 27 25 45 28 25 46 28 25 47 28 25 48 28 25 49 28 25 50 28 25 51 28 25 52 28 25 53 28 25 54 28 25 55 28 25 56 28 25 57 28 25 58 28 25 59 28 25 60 28 25 61 28 25 62 28 25 63 28 25 64 28 25 46 29 25 47 29 25 49 29 25 50 29 25 51 29 25 52 29 25 53 29 25 54 29 25 55 29 25 56 29 25 57 29 25 58 29 25 59 29 25 60 29 25 61 29 25 62 29 25 63 29 25 46 30 25 47 30 25 48 30 25 50 30 25 51 30 25 52 30 25 53 30 25 54 30 25 55 30 25 56 30 25 57 30 25 58 30 25 59 30 25 60 30 25 61 30 25 62 30 25 46 31 25 47 31 25 48 31 25 49 31 25 50 31 25 51 31 25 52 31 25 53 31 25 54 31 25 55 31 25 56 31 25 57 31 25 58 31 25 59 31 25 60 31 25 61 31 25 62 31 25 63 31 25 45 32 25 46 32 25 47 32 25 48 32 25 49 32 25 50 32 25 51 32 25 52 32 25 53 32 25 54 32 25 55 32 25 56 32 25 57 32 25 58 32 25 59 32 25 60 32 25 61 32 25 62 32 25 63 32 25 45 33 25 46 33 25 47 33 25 48 33 25 49 33 25 50 33 25 51 33 25 52 33 25 53 33 25 54 33 25 55 33 25 56 33 25 57 33 25 58 33 25 59 33 25 60 33 25 61 33 25 62 33 25 63 33 25 45 34 25 46 34 25 50 34 25 51 34 25 52 34 25 53 34 25 54 34 25 55 34 25 56 34 25 57 34 25 58 34 25 59 34 25 60 34 25 61 34 25 62 34 25 63 34 25 50 35 25 51 35 25 52 35 25 53 35 25 54 35 25 55 35 25 56 35 25 57 35 25 58 35 25 59 35 25 60 35 25 61 35 25 62 35 25 63 35 25 51 36 25 52 36 25 53 36 25 54 36 25 55 36 25 56 36 25 57 36 25 58 36 25 59 36 25 60 36 25 61 36 25 62 36 25 46 37 25 51 37 25 52 37 25 53 37 25 54 37 25 55 37 25 56 37 25 57 37 25 58 37 25 59 37 25 60 37 25 61 37 25 46 38 25 51 38 25 52 38 25 53 38 25 54 38 25 55 38 25 56 38 25 57 38 25 58 38 25 59 38 25 60 38 25 61 38 25 51 39 25 52 39 25 53 39 25 54 39 25 55 39 25 56 39 25 57 39 25 58 39 25 59 39 25 60 39 25 46 40 25 47 40 25 48 40 25 49 40 25 52 40 25 53 40 25 54 40 25 55 40 25 56 40 25 57 40 25 58 40 25 59 40 25 46 41 25 47 41 25 48 41 25 50 41 25 52 41 25 53 41 25 54 41 25 55 41 25 56 41 25 57 41 25 58 41 25 59 41 25 45 42 25 46 42 25 48 42 25 49 42 25 50 42 25 52 42 25 53 42 25 54 42 25 55 42 25 56 42 25 57 42 25 58 42 25 49 43 25 50 43 25 51 43 25 52 43 25 53 43 25 54 43 25 55 43 25 56 43 25 57 43 25 49 44 25 50 44 25 52 44 25 53 44 25 54 44 25 55 44 25 56 44 25 57 44 25 51 45 25 52 45 25 53 45 25 54 45 25 55 45 25 56 45 25 57 45 25 51 46 25 52 46 25 53 46 25 54 46 25 55 46 25 52 47 25 53 47 25 54 47 25 50 22 26 51 22 26 52 22 26 48 23 26 49 23 26 50 23 26 51 23 26 52 23 26 53 23 26 54 23 26 45 24 26 46 24 26 47 24 26 48 24 26 49 24 26 50 24 26 51 24 26 52 24 26 53 24 26 54 24 26 55 24 26 56 24 26 45 25 26 46 25 26 47 25 26 48 25 26 49 25 26 50 25 26 51 25 26 52 25 26 53 25 26 54 25 26 55 25 26 56 25 26 57 25 26 45 26 26 46 26 26 47 26 26 48 26 26 49 26 26 50 26 26 51 26 26 52 26 26 53 26 26 54 26 26 55 26 26 56 26 26 57 26 26 58 26 26 59 26 26 45 27 26 46 27 26 47 27 26 48 27 26 49 27 26 50 27 26 51 27 26 52 27 26 53 27 26 54 27 26 55 27 26 56 27 26 57 27 26 58 27 26 59 27 26 60 27 26 47 28 26 48 28 26 49 28 26 50 28 26 51 28 26 52 28 26 53 28 26 54 28 26 55 28 26 56 28 26 57 28 26 58 28 26 59 28 26 60 28 26 46 29 26 47 29 26 49 29 26 50 29 26 51 29 26 52 29 26 53 29 26 54 29 26 55 29 26 56 29 26 57 29 26 58 29 26 59 29 26 60 29 26 61 29 26 46 30 26 47 30 26 48 30 26 50 30 26 51 30 26 52 30 26 53 30 26 54 30 26 55 30 26 56 30 26 57 30 26 58 30 26 59 30 26 60 30 26 61 30 26 46 31 26 47 31 26 48 31 26 49 31 26 50 31 26 51 31 26 52 31 26 53 31 26 54 31 26 55 31 26 56 31 26 57 31 26 58 31 26 59 31 26 60 31 26 61 31 26 45 32 26 46 32 26 47 32 26 48 32 26 49 32 26 50 32 26 51 32 26 52 32 26 53 32 26 54 32 26 55 32 26 56 32 26 57 32 26 58 32 26 59 32 26 60 32 26 61 32 26 45 33 26 46 33 26 47 33 26 48 33 26 49 33 26 50 33 26 51 33 26 52 33 26 53 33 26 54 33 26 55 33 26 56 33 26 57 33 26 58 33 26 59 33 26 60 33 26 61 33 26 45 34 26 49 34 26 50 34 26 51 34 26 52 34 26 53 34 26 54 34 26 55 34 26 56 34 26 57 34 26 58 34 26 59 34 26 60 34 26 61 34 26 49 35 26 50 35 26 51 35 26 52 35 26 53 35 26 54 35 26 55 35 26 56 35 26 57 35 26 58 35 26 59 35 26 60 35 26 50 36 26 51 36 26 52 36 26 53 36 26 54 36 26 55 36 26 56 36 26 57 36 26 58 36 26 59 36 26 60 36 26 46 37 26 50 37 26 51 37 26 52 37 26 53 37 26 54 37 26 55 37 26 56 37 26 57 37 26 58 37 26 59 37 26 46 38 26 47 38 26 50 38 26 51 38 26 52 38 26 53 38 26 54 38 26 55 38 26 56 38 26 57 38 26 58 38 26 51 39 26 52 39 26 53 39 26 54 39 26 55 39 26 56 39 26 57 39 26 58 39 26 49 40 26 51 40 26 52 40 26 53 40 26 54 40 26 55 40 26 56 40 26 57 40 26 46 41 26 47 41 26 48 41 26 49 41 26 50 41 26 52 41 26 53 41 26 54 41 26 55 41 26 56 41 26 57 41 26 45 42 26 46 42 26 47 42 26 48 42 26 49 42 26 50 42 26 52 42 26 53 42 26 54 42 26 55 42 26 56 42 26 48 43 26 49 43 26 50 43 26 51 43 26 52 43 26 53 43 26 54 43 26 55 43 26 49 44 26 50 44 26 51 44 26 52 44 26 53 44 26 54 44 26 55 44 26 51 45 26 52 45 26 53 45 26 54 45 26 51 46 26 52 46 26 53 46 26 47 24 27 48 24 27 49 24 27 50 24 27 51 24 27 52 24 27 53 24 27 45 25 27 46 25 27 47 25 27 48 25 27 49 25 27 50 25 27 51 25 27 52 25 27 53 25 27 54 25 27 55 25 27 45 26 27 46 26 27 47 26 27 48 26 27 49 26 27 50 26 27 51 26 27 52 26 27 53 26 27 54 26 27 55 26 27 56 26 27 45 27 27 46 27 27 47 27 27 48 27 27 49 27 27 50 27 27 51 27 27 52 27 27 53 27 27 54 27 27 55 27 27 56 27 27 57 27 27 45 28 27 46 28 27 47 28 27 48 28 27 49 28 27 50 28 27 51 28 27 52 28 27 53 28 27 54 28 27 55 28 27 56 28 27 57 28 27 46 29 27 47 29 27 49 29 27 50 29 27 51 29 27 52 29 27 53 29 27 54 29 27 55 29 27 56 29 27 57 29 27 46 30 27 47 30 27 48 30 27 49 30 27 50 30 27 51 30 27 52 30 27 53 30 27 54 30 27 55 30 27 56 30 27 57 30 27 58 30 27 46 31 27 47 31 27 48 31 27 49 31 27 50 31 27 51 31 27 52 31 27 53 31 27 54 31 27 55 31 27 56 31 27 57 31 27 58 31 27 45 32 27 46 32 27 47 32 27 48 32 27 49 32 27 50 32 27 51 32 27 52 32 27 53 32 27 54 32 27 55 32 27 56 32 27 57 32 27 58 32 27 45 33 27 46 33 27 47 33 27 48 33 27 49 33 27 50 33 27 51 33 27 52 33 27 53 33 27 54 33 27 55 33 27 56 33 27 57 33 27 58 33 27 45 34 27 49 34 27 50 34 27 51 34 27 52 34 27 53 34 27 54 34 27 55 34 27 56 34 27 57 34 27 58 34 27 49 35 27 50 35 27 51 35 27 52 35 27 53 35 27 54 35 27 55 35 27 56 35 27 57 35 27 58 35 27 45 36 27 46 36 27 49 36 27 50 36 27 51 36 27 52 36 27 53 36 27 54 36 27 55 36 27 56 36 27 57 36 27 58 36 27 49 37 27 50 37 27 51 37 27 52 37 27 53 37 27 54 37 27 55 37 27 56 37 27 57 37 27 46 38 27 47 38 27 50 38 27 51 38 27 52 38 27 53 38 27 54 38 27 55 38 27 56 38 27 57 38 27 47 39 27 48 39 27 50 39 27 51 39 27 52 39 27 53 39 27 54 39 27 55 39 27 56 39 27 57 39 27 48 40 27 49 40 27 51 40 27 52 40 27 53 40 27 54 40 27 55 40 27 56 40 27 46 41 27 47 41 27 48 41 27 49 41 27 52 41 27 53 41 27 54 41 27 55 41 27 56 41 27 45 42 27 46 42 27 47 42 27 48 42 27 49 42 27 50 42 27 52 42 27 53 42 27 54 42 27 55 42 27 48 43 27 49 43 27 50 43 27 51 43 27 52 43 27 53 43 27 54 43 27 55 43 27 49 44 27 50 44 27 51 44 27 52 44 27 53 44 27 54 44 27 50 45 27 51 45 27 52 45 27 53 45 27 52 46 27 49 24 28 45 25 28 46 25 28 47 25 28 48 25 28 49 25 28 50 25 28 51 25 28 45 26 28 46 26 28 47 26 28 48 26 28 49 26 28 50 26 28 51 26 28 52 26 28 53 26 28 45 27 28 46 27 28 47 27 28 48 27 28 49 27 28 50 27 28 51 27 28 52 27 28 53 27 28 54 27 28 45 28 28 46 28 28 47 28 28 48 28 28 49 28 28 50 28 28 51 28 28 52 28 28 53 28 28 54 28 28 55 28 28 46 29 28 47 29 28 48 29 28 49 29 28 50 29 28 51 29 28 52 29 28 53 29 28 54 29 28 55 29 28 47 30 28 48 30 28 49 30 28 50 30 28 51 30 28 52 30 28 53 30 28 54 30 28 55 30 28 46 31 28 47 31 28 48 31 28 49 31 28 50 31 28 51 31 28 52 31 28 53 31 28 54 31 28 55 31 28 56 31 28 46 32 28 47 32 28 48 32 28 49 32 28 50 32 28 51 32 28 52 32 28 53 32 28 54 32 28 55 32 28 56 32 28 46 33 28 48 33 28 49 33 28 50 33 28 51 33 28 52 33 28 53 33 28 54 33 28 55 33 28 56 33 28 48 34 28 49 34 28 50 34 28 51 34 28 52 34 28 53 34 28 54 34 28 55 34 28 56 34 28 48 35 28 49 35 28 50 35 28 51 35 28 52 35 28 53 35 28 54 35 28 55 35 28 56 35 28 45 36 28 46 36 28 48 36 28 49 36 28 50 36 28 51 36 28 52 36 28 53 36 28 54 36 28 55 36 28 56 36 28 49 37 28 50 37 28 51 37 28 52 37 28 53 37 28 54 37 28 55 37 28 56 37 28 46 38 28 47 38 28 50 38 28 51 38 28 52 38 28 53 38 28 54 38 28 55 38 28 45 39 28 46 39 28 47 39 28 48 39 28 50 39 28 51 39 28 52 39 28 53 39 28 54 39 28 55 39 28 48 40 28 51 40 28 52 40 28 53 40 28 54 40 28 46 41 28 47 41 28 48 41 28 49 41 28 51 41 28 52 41 28 53 41 28 54 41 28 45 42 28 46 42 28 47 42 28 48 42 28 49 42 28 50 42 28 51 42 28 52 42 28 53 42 28 54 42 28 48 43 28 49 43 28 50 43 28 51 43 28 52 43 28 53 43 28 49 44 28 50 44 28 51 44 28 52 44 28 51 45 28 45 26 29 46 26 29 47 26 29 48 26 29 49 26 29 45 27 29 46 27 29 47 27 29 48 27 29 49 27 29 50 27 29 45 28 29 46 28 29 47 28 29 48 28 29 49 28 29 50 28 29 51 28 29 52 28 29 47 29 29 48 29 29 49 29 29 50 29 29 51 29 29 52 29 29 53 29 29 47 30 29 48 30 29 49 30 29 50 30 29 51 30 29 52 30 29 53 30 29 45 31 29 46 31 29 47 31 29 48 31 29 49 31 29 50 31 29 51 31 29 52 31 29 53 31 29 46 32 29 47 32 29 48 32 29 49 32 29 50 32 29 51 32 29 52 32 29 53 32 29 48 33 29 49 33 29 50 33 29 51 33 29 52 33 29 53 33 29 54 33 29 48 34 29 49 34 29 50 34 29 51 34 29 52 34 29 53 34 29 54 34 29 48 35 29 49 35 29 50 35 29 51 35 29 52 35 29 53 35 29 54 35 29 55 35 29 45 36 29 46 36 29 48 36 29 49 36 29 50 36 29 51 36 29 52 36 29 53 36 29 54 36 29 49 37 29 50 37 29 51 37 29 52 37 29 53 37 29 54 37 29 50 38 29 51 38 29 52 38 29 53 38 29 54 38 29 45 39 29 46 39 29 47 39 29 48 39 29 50 39 29 51 39 29 52 39 29 53 39 29 46 40 29 47 40 29 48 40 29 51 40 29 52 40 29 53 40 29 47 41 29 48 41 29 49 41 29 51 41 29 52 41 29 53 41 29 46 42 29 47 42 29 48 42 29 49 42 29 50 42 29 51 42 29 52 42 29 48 43 29 49 43 29 50 43 29 51 43 29 50 44 29 51 44 29 45 26 30 45 27 30 46 27 30 47 27 30 48 27 30 45 28 30 46 28 30 47 28 30 48 28 30 49 28 30 47 29 30 48 29 30 49 29 30 50 29 30 45 30 30 46 30 30 47 30 30 48 30 30 49 30 30 50 30 30 51 30 30 45 31 30 46 31 30 47 31 30 48 31 30 49 31 30 50 31 30 51 31 30 52 31 30 48 32 30 49 32 30 50 32 30 51 32 30 48 33 30 49 33 30 50 33 30 51 33 30 52 33 30 47 34 30 48 34 30 49 34 30 50 34 30 51 34 30 52 34 30 47 35 30 48 35 30 49 35 30 50 35 30 51 35 30 52 35 30 48 36 30 49 36 30 50 36 30 51 36 30 52 36 30 53 36 30 46 37 30 49 37 30 50 37 30 51 37 30 52 37 30 53 37 30 47 38 30 49 38 30 50 38 30 51 38 30 52 38 30 53 38 30 45 39 30 46 39 30 47 39 30 48 39 30 50 39 30 51 39 30 52 39 30 45 40 30 46 40 30 47 40 30 48 40 30 49 40 30 50 40 30 51 40 30 47 41 30 48 41 30 49 41 30 50 41 30 51 41 30 46 42 30 47 42 30 48 42 30 49 42 30 50 42 30 51 42 30 49 43 30 50 43 30 48 29 31 45 30 31 46 30 31 47 30 31 48 30 31 49 30 31 45 31 31 46 31 31 47 31 31 48 31 31 49 31 31 47 32 31 48 32 31 49 32 31 50 32 31 46 33 31 47 33 31 48 33 31 49 33 31 50 33 31 51 33 31 45 34 31 46 34 31 47 34 31 48 34 31 49 34 31 50 34 31 51 34 31 46 35 31 47 35 31 48 35 31 49 35 31 50 35 31 51 35 31 48 36 31 49 36 31 50 36 31 51 36 31 46 37 31 48 37 31 49 37 31 50 37 31 51 37 31 47 38 31 49 38 31 50 38 31 51 38 31 47 39 31 48 39 31 49 39 31 50 39 31 51 39 31 45 40 31 46 40 31 47 40 31 48 40 31 49 40 31 50 40 31 46 41 31 47 41 31 48 41 31 49 41 31 50 41 31 47 42 31 48 42 31 49 42 31 50 42 31 45 30 32 46 30 32 47 30 32 45 31 32 46 31 32 47 31 32 48 31 32 45 32 32 46 32 32 47 32 32 48 32 32 49 32 32 46 33 32 47 33 32 48 33 32 49 33 32 45 34 32 46 34 32 47 34 32 48 34 32 49 34 32 45 35 32 46 35 32 47 35 32 48 35 32 49 35 32 50 35 32 47 36 32 48 36 32 49 36 32 50 36 32 46 37 32 48 37 32 49 37 32 50 37 32 51 37 32 46 38 32 47 38 32 48 38 32 49 38 32 50 38 32 46 39 32 47 39 32 48 39 32 49 39 32 50 39 32 46 40 32 47 40 32 48 40 32 49 40 32 50 40 32 46 41 32 47 41 32 48 41 32 49 41 32 48 42 32 49 42 32 45 30 33 45 31 33 46 31 33 47 31 33 45 32 33 46 32 33 47 32 33 45 33 33 46 33 33 47 33 33 48 33 33 46 34 33 47 34 33 48 34 33 49 34 33 46 35 33 47 35 33 48 35 33 49 35 33 47 36 33 48 36 33 49 36 33 47 37 33 48 37 33 49 37 33 46 38 33 47 38 33 48 38 33 49 38 33 46 39 33 47 39 33 48 39 33 49 39 33 46 40 33 47 40 33 48 40 33 49 40 33 48 41 33 45 31 34 46 31 34 45 32 34 46 32 34 47 32 34 45 33 34 46 33 34 47 33 34 46 34 34 47 34 34 46 35 34 47 35 34 48 35 34 47 36 34 48 36 34 45 37 34 46 37 34 47 37 34 48 37 34 46 38 34 47 38 34 48 38 34 46 39 34 47 39 34 48 39 34 46 40 34 47 40 34 48 40 34 45 32 35 45 33 35 46 33 35 45 34 35 46 34 35 46 35 35 47 35 35 46 36 35 47 36 35 45 37 35 46 37 35 47 37 35 46 38 35 47 38 35 46 39 35 47 39 35 46 34 36 46 35 36 46 36 36 46 37 36 46 38 36 46 37 37 38 35 4 39 35 4 40 35 4 41 35 4 42 35 4 38 36 4 39 36 4 40 36 4 41 36 4 42 36 4 37 37 4 38 37 4 39 37 4 40 37 4 41 37 4 37 38 4 38 38 4 39 38 4 40 38 4 41 38 4 37 39 4 38 39 4 39 39 4 40 39 4 42 33 5 38 34 5 39 34 5 40 34 5 41 34 5 42 34 5 43 34 5 38 35 5 39 35 5 40 35 5 41 35 5 42 35 5 43 35 5 37 36 5 38 36 5 39 36 5 40 36 5 41 36 5 42 36 5 43 36 5 37 37 5 38 37 5 39 37 5 40 37 5 41 37 5 42 37 5 37 38 5 38 38 5 39 38 5 40 38 5 41 38 5 36 39 5 37 39 5 38 39 5 39 39 5 40 39 5 41 39 5 37 40 5 38 40 5 39 40 5 40 40 5 37 41 5 38 41 5 33 28 6 29 29 6 30 29 6 31 29 6 32 29 6 33 29 6 34 29 6 28 30 6 29 30 6 30 30 6 31 30 6 32 30 6 33 30 6 34 30 6 35 30 6 27 31 6 28 31 6 29 31 6 30 31 6 31 31 6 32 31 6 33 31 6 34 31 6 35 31 6 27 32 6 28 32 6 29 32 6 30 32 6 31 32 6 32 32 6 33 32 6 34 32 6 35 32 6 36 32 6 37 32 6 40 32 6 41 32 6 42 32 6 43 32 6 26 33 6 27 33 6 28 33 6 29 33 6 30 33 6 31 33 6 32 33 6 33 33 6 34 33 6 35 33 6 36 33 6 37 33 6 38 33 6 39 33 6 40 33 6 41 33 6 42 33 6 43 33 6 44 33 6 26 34 6 27 34 6 28 34 6 29 34 6 30 34 6 31 34 6 32 34 6 33 34 6 34 34 6 35 34 6 36 34 6 37 34 6 38 34 6 39 34 6 40 34 6 41 34 6 42 34 6 43 34 6 44 34 6 27 35 6 28 35 6 29 35 6 30 35 6 31 35 6 32 35 6 33 35 6 34 35 6 35 35 6 36 35 6 37 35 6 38 35 6 39 35 6 40 35 6 41 35 6 42 35 6 43 35 6 44 35 6 27 36 6 28 36 6 29 36 6 30 36 6 31 36 6 32 36 6 33 36 6 34 36 6 35 36 6 36 36 6 37 36 6 38 36 6 39 36 6 40 36 6 41 36 6 42 36 6 43 36 6 44 36 6 32 37 6 33 37 6 34 37 6 35 37 6 36 37 6 37 37 6 38 37 6 39 37 6 40 37 6 41 37 6 42 37 6 43 37 6 34 38 6 35 38 6 36 38 6 37 38 6 38 38 6 39 38 6 40 38 6 41 38 6 42 38 6 35 39 6 36 39 6 37 39 6 38 39 6 39 39 6 40 39 6 41 39 6 42 39 6 35 40 6 36 40 6 37 40 6 38 40 6 39 40 6 40 40 6 36 41 6 37 41 6 38 41 6 39 41 6 40 41 6 38 42 6 29 27 7 30 27 7 31 27 7 32 27 7 33 27 7 34 27 7 35 27 7 36 27 7 27 28 7 28 28 7 29 28 7 30 28 7 31 28 7 32 28 7 33 28 7 34 28 7 35 28 7 36 28 7 37 28 7 26 29 7 27 29 7 28 29 7 29 29 7 30 29 7 31 29 7 32 29 7 33 29 7 34 29 7 35 29 7 36 29 7 37 29 7 26 30 7 27 30 7 28 30 7 29 30 7 30 30 7 31 30 7 32 30 7 33 30 7 34 30 7 35 30 7 36 30 7 37 30 7 38 30 7 25 31 7 26 31 7 27 31 7 28 31 7 29 31 7 30 31 7 31 31 7 32 31 7 33 31 7 34 31 7 35 31 7 36 31 7 37 31 7 38 31 7 39 31 7 25 32 7 26 32 7 27 32 7 28 32 7 29 32 7 30 32 7 31 32 7 32 32 7 33 32 7 34 32 7 35 32 7 36 32 7 37 32 7 38 32 7 39 32 7 40 32 7 41 32 7 42 32 7 43 32 7 24 33 7 25 33 7 26 33 7 27 33 7 28 33 7 29 33 7 30 33 7 31 33 7 32 33 7 33 33 7 34 33 7 35 33 7 36 33 7 37 33 7 38 33 7 39 33 7 40 33 7 41 33 7 42 33 7 43 33 7 44 33 7 24 34 7 25 34 7 26 34 7 27 34 7 28 34 7 29 34 7 30 34 7 31 34 7 32 34 7 33 34 7 34 34 7 35 34 7 36 34 7 37 34 7 38 34 7 39 34 7 40 34 7 41 34 7 42 34 7 43 34 7 44 34 7 24 35 7 25 35 7 26 35 7 27 35 7 28 35 7 29 35 7 30 35 7 31 35 7 32 35 7 33 35 7 34 35 7 35 35 7 36 35 7 37 35 7 38 35 7 39 35 7 40 35 7 41 35 7 42 35 7 43 35 7 44 35 7 25 36 7 26 36 7 27 36 7 28 36 7 29 36 7 30 36 7 31 36 7 32 36 7 33 36 7 34 36 7 35 36 7 36 36 7 37 36 7 38 36 7 39 36 7 40 36 7 41 36 7 42 36 7 43 36 7 44 36 7 26 37 7 27 37 7 28 37 7 29 37 7 30 37 7 31 37 7 32 37 7 33 37 7 34 37 7 35 37 7 36 37 7 37 37 7 38 37 7 39 37 7 40 37 7 41 37 7 42 37 7 43 37 7 44 37 7 27 38 7 28 38 7 29 38 7 30 38 7 31 38 7 32 38 7 33 38 7 34 38 7 35 38 7 36 38 7 37 38 7 38 38 7 39 38 7 40 38 7 41 38 7 42 38 7 31 39 7 32 39 7 33 39 7 34 39 7 35 39 7 36 39 7 37 39 7 38 39 7 39 39 7 40 39 7 41 39 7 42 39 7 33 40 7 34 40 7 35 40 7 36 40 7 37 40 7 38 40 7 39 40 7 40 40 7 34 41 7 35 41 7 36 41 7 37 41 7 38 41 7 39 41 7 40 41 7 36 42 7 37 42 7 38 42 7 39 42 7 31 25 8 32 25 8 33 25 8 34 25 8 35 25 8 28 26 8 29 26 8 30 26 8 31 26 8 32 26 8 33 26 8 34 26 8 35 26 8 36 26 8 37 26 8 27 27 8 28 27 8 29 27 8 30 27 8 31 27 8 32 27 8 33 27 8 34 27 8 35 27 8 36 27 8 37 27 8 38 27 8 26 28 8 27 28 8 28 28 8 29 28 8 30 28 8 31 28 8 32 28 8 33 28 8 34 28 8 35 28 8 36 28 8 37 28 8 38 28 8 39 28 8 25 29 8 26 29 8 27 29 8 28 29 8 29 29 8 30 29 8 31 29 8 32 29 8 33 29 8 34 29 8 35 29 8 36 29 8 37 29 8 38 29 8 39 29 8 40 29 8 24 30 8 25 30 8 26 30 8 27 30 8 28 30 8 29 30 8 30 30 8 31 30 8 32 30 8 33 30 8 34 30 8 35 30 8 36 30 8 37 30 8 38 30 8 39 30 8 40 30 8 24 31 8 25 31 8 26 31 8 27 31 8 28 31 8 29 31 8 30 31 8 31 31 8 32 31 8 33 31 8 34 31 8 35 31 8 36 31 8 37 31 8 38 31 8 39 31 8 40 31 8 41 31 8 42 31 8 23 32 8 24 32 8 25 32 8 26 32 8 27 32 8 28 32 8 29 32 8 30 32 8 31 32 8 32 32 8 33 32 8 34 32 8 35 32 8 36 32 8 37 32 8 38 32 8 39 32 8 40 32 8 41 32 8 42 32 8 43 32 8 44 32 8 23 33 8 24 33 8 25 33 8 26 33 8 27 33 8 28 33 8 29 33 8 30 33 8 31 33 8 32 33 8 33 33 8 34 33 8 35 33 8 36 33 8 37 33 8 38 33 8 39 33 8 40 33 8 41 33 8 42 33 8 43 33 8 44 33 8 23 34 8 24 34 8 25 34 8 26 34 8 27 34 8 28 34 8 29 34 8 30 34 8 31 34 8 32 34 8 33 34 8 34 34 8 35 34 8 36 34 8 37 34 8 38 34 8 39 34 8 40 34 8 41 34 8 42 34 8 43 34 8 44 34 8 23 35 8 24 35 8 25 35 8 26 35 8 27 35 8 28 35 8 29 35 8 30 35 8 31 35 8 32 35 8 33 35 8 34 35 8 35 35 8 36 35 8 37 35 8 38 35 8 39 35 8 40 35 8 41 35 8 42 35 8 43 35 8 44 35 8 24 36 8 25 36 8 26 36 8 27 36 8 28 36 8 29 36 8 30 36 8 31 36 8 32 36 8 33 36 8 34 36 8 35 36 8 36 36 8 37 36 8 38 36 8 39 36 8 40 36 8 41 36 8 42 36 8 43 36 8 44 36 8 25 37 8 26 37 8 27 37 8 28 37 8 29 37 8 30 37 8 31 37 8 32 37 8 33 37 8 34 37 8 35 37 8 36 37 8 37 37 8 38 37 8 39 37 8 40 37 8 41 37 8 42 37 8 43 37 8 44 37 8 26 38 8 27 38 8 28 38 8 29 38 8 30 38 8 31 38 8 32 38 8 33 38 8 34 38 8 35 38 8 36 38 8 37 38 8 38 38 8 39 38 8 40 38 8 41 38 8 42 38 8 43 38 8 27 39 8 28 39 8 29 39 8 30 39 8 31 39 8 32 39 8 33 39 8 34 39 8 35 39 8 36 39 8 37 39 8 38 39 8 39 39 8 40 39 8 41 39 8 42 39 8 43 39 8 27 40 8 28 40 8 29 40 8 30 40 8 31 40 8 32 40 8 33 40 8 34 40 8 35 40 8 36 40 8 37 40 8 38 40 8 39 40 8 40 40 8 41 40 8 30 41 8 31 41 8 32 41 8 33 41 8 34 41 8 35 41 8 36 41 8 37 41 8 38 41 8 39 41 8 40 41 8 34 42 8 35 42 8 36 42 8 37 42 8 38 42 8 39 42 8 36 43 8 37 43 8 30 24 9 31 24 9 32 24 9 33 24 9 34 24 9 35 24 9 36 24 9 28 25 9 29 25 9 30 25 9 31 25 9 32 25 9 33 25 9 34 25 9 35 25 9 36 25 9 37 25 9 38 25 9 27 26 9 28 26 9 29 26 9 30 26 9 31 26 9 32 26 9 33 26 9 34 26 9 35 26 9 36 26 9 37 26 9 38 26 9 39 26 9 25 27 9 26 27 9 27 27 9 28 27 9 29 27 9 30 27 9 31 27 9 32 27 9 33 27 9 34 27 9 35 27 9 36 27 9 37 27 9 38 27 9 39 27 9 40 27 9 25 28 9 26 28 9 27 28 9 28 28 9 29 28 9 30 28 9 31 28 9 32 28 9 33 28 9 34 28 9 35 28 9 36 28 9 37 28 9 38 28 9 39 28 9 40 28 9 24 29 9 25 29 9 26 29 9 27 29 9 28 29 9 29 29 9 30 29 9 31 29 9 32 29 9 33 29 9 34 29 9 35 29 9 36 29 9 37 29 9 38 29 9 39 29 9 40 29 9 41 29 9 23 30 9 24 30 9 25 30 9 26 30 9 27 30 9 28 30 9 29 30 9 30 30 9 31 30 9 32 30 9 33 30 9 34 30 9 35 30 9 36 30 9 37 30 9 38 30 9 39 30 9 40 30 9 41 30 9 23 31 9 24 31 9 25 31 9 26 31 9 27 31 9 28 31 9 29 31 9 30 31 9 31 31 9 32 31 9 33 31 9 34 31 9 35 31 9 36 31 9 37 31 9 38 31 9 39 31 9 40 31 9 41 31 9 42 31 9 43 31 9 22 32 9 23 32 9 24 32 9 25 32 9 26 32 9 27 32 9 28 32 9 29 32 9 30 32 9 31 32 9 32 32 9 33 32 9 34 32 9 35 32 9 36 32 9 37 32 9 38 32 9 39 32 9 40 32 9 41 32 9 42 32 9 43 32 9 44 32 9 22 33 9 23 33 9 24 33 9 25 33 9 26 33 9 27 33 9 28 33 9 29 33 9 30 33 9 31 33 9 32 33 9 33 33 9 34 33 9 35 33 9 36 33 9 37 33 9 38 33 9 39 33 9 40 33 9 41 33 9 42 33 9 43 33 9 44 33 9 22 34 9 23 34 9 24 34 9 25 34 9 26 34 9 27 34 9 28 34 9 29 34 9 30 34 9 31 34 9 32 34 9 33 34 9 34 34 9 35 34 9 36 34 9 37 34 9 38 34 9 39 34 9 40 34 9 41 34 9 42 34 9 43 34 9 44 34 9 22 35 9 23 35 9 24 35 9 25 35 9 26 35 9 27 35 9 28 35 9 29 35 9 30 35 9 31 35 9 32 35 9 33 35 9 34 35 9 35 35 9 36 35 9 37 35 9 38 35 9 39 35 9 40 35 9 41 35 9 42 35 9 43 35 9 44 35 9 45 35 9 22 36 9 23 36 9 24 36 9 25 36 9 26 36 9 27 36 9 28 36 9 29 36 9 30 36 9 31 36 9 32 36 9 33 36 9 34 36 9 35 36 9 36 36 9 37 36 9 38 36 9 39 36 9 40 36 9 41 36 9 42 36 9 43 36 9 44 36 9 45 36 9 23 37 9 24 37 9 25 37 9 26 37 9 27 37 9 28 37 9 29 37 9 30 37 9 31 37 9 32 37 9 33 37 9 34 37 9 35 37 9 36 37 9 37 37 9 38 37 9 39 37 9 40 37 9 41 37 9 42 37 9 43 37 9 44 37 9 24 38 9 25 38 9 26 38 9 27 38 9 28 38 9 29 38 9 30 38 9 31 38 9 32 38 9 33 38 9 34 38 9 35 38 9 36 38 9 37 38 9 38 38 9 39 38 9 40 38 9 41 38 9 42 38 9 43 38 9 44 38 9 25 39 9 26 39 9 27 39 9 28 39 9 29 39 9 30 39 9 31 39 9 32 39 9 33 39 9 34 39 9 35 39 9 36 39 9 37 39 9 38 39 9 39 39 9 40 39 9 41 39 9 42 39 9 43 39 9 26 40 9 27 40 9 28 40 9 29 40 9 30 40 9 31 40 9 32 40 9 33 40 9 34 40 9 35 40 9 36 40 9 37 40 9 38 40 9 39 40 9 40 40 9 41 40 9 27 41 9 28 41 9 29 41 9 30 41 9 31 41 9 32 41 9 33 41 9 34 41 9 35 41 9 36 41 9 37 41 9 38 41 9 39 41 9 40 41 9 28 42 9 29 42 9 30 42 9 31 42 9 32 42 9 33 42 9 34 42 9 35 42 9 36 42 9 37 42 9 38 42 9 39 42 9 30 43 9 31 43 9 32 43 9 33 43 9 34 43 9 35 43 9 36 43 9 37 43 9 31 23 10 32 23 10 33 23 10 34 23 10 35 23 10 36 23 10 37 23 10 38 23 10 28 24 10 29 24 10 30 24 10 31 24 10 32 24 10 33 24 10 34 24 10 35 24 10 36 24 10 37 24 10 38 24 10 39 24 10 27 25 10 28 25 10 29 25 10 30 25 10 31 25 10 32 25 10 33 25 10 34 25 10 35 25 10 36 25 10 37 25 10 38 25 10 39 25 10 40 25 10 26 26 10 27 26 10 28 26 10 29 26 10 30 26 10 31 26 10 32 26 10 33 26 10 34 26 10 35 26 10 36 26 10 37 26 10 38 26 10 39 26 10 40 26 10 24 27 10 25 27 10 26 27 10 27 27 10 28 27 10 29 27 10 30 27 10 31 27 10 32 27 10 33 27 10 34 27 10 35 27 10 36 27 10 37 27 10 38 27 10 39 27 10 40 27 10 41 27 10 24 28 10 25 28 10 26 28 10 27 28 10 28 28 10 29 28 10 30 28 10 31 28 10 32 28 10 33 28 10 34 28 10 35 28 10 36 28 10 37 28 10 38 28 10 39 28 10 40 28 10 41 28 10 23 29 10 24 29 10 25 29 10 26 29 10 27 29 10 28 29 10 29 29 10 30 29 10 31 29 10 32 29 10 33 29 10 34 29 10 35 29 10 36 29 10 37 29 10 38 29 10 39 29 10 40 29 10 41 29 10 22 30 10 23 30 10 24 30 10 25 30 10 26 30 10 27 30 10 28 30 10 29 30 10 30 30 10 31 30 10 32 30 10 33 30 10 34 30 10 35 30 10 36 30 10 37 30 10 38 30 10 39 30 10 40 30 10 41 30 10 22 31 10 23 31 10 24 31 10 25 31 10 26 31 10 27 31 10 28 31 10 29 31 10 30 31 10 31 31 10 32 31 10 33 31 10 34 31 10 35 31 10 36 31 10 37 31 10 38 31 10 39 31 10 40 31 10 41 31 10 42 31 10 43 31 10 21 32 10 22 32 10 23 32 10 24 32 10 25 32 10 26 32 10 27 32 10 28 32 10 29 32 10 30 32 10 31 32 10 32 32 10 33 32 10 34 32 10 35 32 10 36 32 10 37 32 10 38 32 10 39 32 10 40 32 10 41 32 10 42 32 10 43 32 10 44 32 10 21 33 10 22 33 10 23 33 10 24 33 10 25 33 10 26 33 10 27 33 10 28 33 10 29 33 10 30 33 10 31 33 10 32 33 10 33 33 10 34 33 10 35 33 10 36 33 10 37 33 10 38 33 10 39 33 10 40 33 10 41 33 10 42 33 10 43 33 10 44 33 10 21 34 10 22 34 10 23 34 10 24 34 10 25 34 10 26 34 10 27 34 10 28 34 10 29 34 10 30 34 10 31 34 10 32 34 10 33 34 10 34 34 10 35 34 10 36 34 10 37 34 10 38 34 10 39 34 10 40 34 10 41 34 10 42 34 10 43 34 10 44 34 10 21 35 10 22 35 10 23 35 10 24 35 10 25 35 10 26 35 10 27 35 10 28 35 10 29 35 10 30 35 10 31 35 10 32 35 10 33 35 10 34 35 10 35 35 10 37 35 10 38 35 10 39 35 10 40 35 10 41 35 10 42 35 10 43 35 10 44 35 10 45 35 10 21 36 10 22 36 10 23 36 10 24 36 10 25 36 10 26 36 10 27 36 10 28 36 10 29 36 10 30 36 10 31 36 10 32 36 10 33 36 10 34 36 10 35 36 10 37 36 10 38 36 10 39 36 10 40 36 10 42 36 10 43 36 10 44 36 10 45 36 10 22 37 10 23 37 10 24 37 10 25 37 10 26 37 10 27 37 10 28 37 10 29 37 10 30 37 10 31 37 10 32 37 10 33 37 10 34 37 10 35 37 10 36 37 10 37 37 10 38 37 10 39 37 10 40 37 10 41 37 10 42 37 10 43 37 10 44 37 10 22 38 10 23 38 10 24 38 10 25 38 10 26 38 10 27 38 10 28 38 10 29 38 10 30 38 10 31 38 10 32 38 10 33 38 10 34 38 10 35 38 10 36 38 10 37 38 10 38 38 10 39 38 10 40 38 10 41 38 10 42 38 10 43 38 10 44 38 10 23 39 10 24 39 10 25 39 10 26 39 10 27 39 10 28 39 10 29 39 10 30 39 10 31 39 10 32 39 10 33 39 10 34 39 10 35 39 10 36 39 10 37 39 10 38 39 10 39 39 10 40 39 10 41 39 10 42 39 10 43 39 10 24 40 10 25 40 10 26 40 10 27 40 10 28 40 10 29 40 10 30 40 10 31 40 10 32 40 10 33 40 10 34 40 10 35 40 10 36 40 10 37 40 10 38 40 10 39 40 10 40 40 10 41 40 10 25 41 10 26 41 10 27 41 10 28 41 10 29 41 10 30 41 10 31 41 10 32 41 10 33 41 10 34 41 10 35 41 10 36 41 10 37 41 10 38 41 10 39 41 10 40 41 10 27 42 10 28 42 10 29 42 10 30 42 10 31 42 10 32 42 10 33 42 10 34 42 10 35 42 10 36 42 10 37 42 10 38 42 10 28 43 10 29 43 10 30 43 10 31 43 10 32 43 10 33 43 10 34 43 10 35 43 10 36 43 10 37 43 10 29 44 10 30 44 10 31 22 11 32 22 11 33 22 11 34 22 11 35 22 11 36 22 11 37 22 11 38 22 11 29 23 11 30 23 11 31 23 11 32 23 11 33 23 11 34 23 11 35 23 11 36 23 11 37 23 11 38 23 11 39 23 11 40 23 11 27 24 11 28 24 11 29 24 11 30 24 11 31 24 11 32 24 11 33 24 11 34 24 11 35 24 11 36 24 11 37 24 11 38 24 11 39 24 11 40 24 11 25 25 11 26 25 11 27 25 11 28 25 11 29 25 11 30 25 11 31 25 11 32 25 11 33 25 11 34 25 11 35 25 11 36 25 11 37 25 11 38 25 11 39 25 11 40 25 11 41 25 11 24 26 11 25 26 11 26 26 11 27 26 11 28 26 11 29 26 11 30 26 11 31 26 11 32 26 11 33 26 11 34 26 11 35 26 11 36 26 11 37 26 11 38 26 11 39 26 11 40 26 11 41 26 11 23 27 11 24 27 11 25 27 11 26 27 11 27 27 11 28 27 11 29 27 11 30 27 11 31 27 11 32 27 11 33 27 11 34 27 11 35 27 11 36 27 11 37 27 11 38 27 11 39 27 11 40 27 11 41 27 11 23 28 11 24 28 11 25 28 11 26 28 11 27 28 11 28 28 11 29 28 11 30 28 11 31 28 11 32 28 11 33 28 11 34 28 11 35 28 11 36 28 11 37 28 11 38 28 11 39 28 11 40 28 11 41 28 11 22 29 11 23 29 11 24 29 11 25 29 11 26 29 11 27 29 11 28 29 11 29 29 11 30 29 11 31 29 11 32 29 11 33 29 11 34 29 11 35 29 11 36 29 11 37 29 11 38 29 11 39 29 11 40 29 11 41 29 11 22 30 11 23 30 11 24 30 11 25 30 11 26 30 11 27 30 11 28 30 11 29 30 11 30 30 11 31 30 11 32 30 11 33 30 11 34 30 11 35 30 11 36 30 11 37 30 11 38 30 11 39 30 11 40 30 11 41 30 11 42 30 11 21 31 11 22 31 11 23 31 11 24 31 11 25 31 11 26 31 11 27 31 11 28 31 11 29 31 11 30 31 11 31 31 11 32 31 11 33 31 11 34 31 11 35 31 11 36 31 11 37 31 11 38 31 11 39 31 11 40 31 11 41 31 11 42 31 11 21 32 11 22 32 11 23 32 11 24 32 11 25 32 11 26 32 11 27 32 11 28 32 11 29 32 11 30 32 11 31 32 11 32 32 11 33 32 11 34 32 11 35 32 11 36 32 11 37 32 11 38 32 11 39 32 11 40 32 11 41 32 11 42 32 11 43 32 11 44 32 11 21 33 11 22 33 11 23 33 11 24 33 11 25 33 11 26 33 11 27 33 11 28 33 11 29 33 11 30 33 11 31 33 11 32 33 11 33 33 11 34 33 11 35 33 11 36 33 11 37 33 11 38 33 11 39 33 11 40 33 11 41 33 11 42 33 11 43 33 11 44 33 11 20 34 11 21 34 11 22 34 11 23 34 11 24 34 11 25 34 11 26 34 11 27 34 11 28 34 11 29 34 11 30 34 11 31 34 11 32 34 11 33 34 11 34 34 11 35 34 11 37 34 11 38 34 11 39 34 11 40 34 11 41 34 11 42 34 11 43 34 11 44 34 11 20 35 11 21 35 11 22 35 11 23 35 11 24 35 11 25 35 11 26 35 11 27 35 11 28 35 11 29 35 11 30 35 11 31 35 11 32 35 11 33 35 11 34 35 11 37 35 11 38 35 11 39 35 11 40 35 11 42 35 11 43 35 11 44 35 11 20 36 11 21 36 11 22 36 11 23 36 11 24 36 11 25 36 11 26 36 11 27 36 11 28 36 11 29 36 11 30 36 11 31 36 11 32 36 11 33 36 11 34 36 11 36 36 11 37 36 11 38 36 11 39 36 11 40 36 11 42 36 11 43 36 11 44 36 11 45 36 11 21 37 11 22 37 11 23 37 11 24 37 11 25 37 11 26 37 11 27 37 11 28 37 11 29 37 11 30 37 11 31 37 11 32 37 11 33 37 11 34 37 11 36 37 11 37 37 11 38 37 11 39 37 11 42 37 11 43 37 11 44 37 11 22 38 11 23 38 11 24 38 11 25 38 11 26 38 11 27 38 11 28 38 11 29 38 11 30 38 11 31 38 11 32 38 11 33 38 11 34 38 11 36 38 11 37 38 11 38 38 11 39 38 11 40 38 11 41 38 11 42 38 11 43 38 11 44 38 11 22 39 11 23 39 11 24 39 11 25 39 11 26 39 11 27 39 11 28 39 11 29 39 11 30 39 11 31 39 11 32 39 11 33 39 11 34 39 11 36 39 11 37 39 11 38 39 11 39 39 11 40 39 11 41 39 11 42 39 11 43 39 11 44 39 11 23 40 11 24 40 11 25 40 11 26 40 11 27 40 11 28 40 11 29 40 11 30 40 11 31 40 11 32 40 11 33 40 11 34 40 11 35 40 11 36 40 11 37 40 11 38 40 11 39 40 11 40 40 11 41 40 11 42 40 11 43 40 11 24 41 11 25 41 11 26 41 11 27 41 11 28 41 11 29 41 11 30 41 11 31 41 11 32 41 11 33 41 11 34 41 11 35 41 11 36 41 11 37 41 11 38 41 11 39 41 11 25 42 11 26 42 11 27 42 11 28 42 11 29 42 11 30 42 11 31 42 11 32 42 11 33 42 11 34 42 11 35 42 11 36 42 11 37 42 11 38 42 11 27 43 11 28 43 11 29 43 11 30 43 11 31 43 11 32 43 11 33 43 11 34 43 11 35 43 11 36 43 11 37 43 11 28 44 11 29 44 11 30 44 11 31 44 11 32 44 11 36 44 11 37 44 11 35 45 11 36 45 11 33 21 12 34 21 12 35 21 12 36 21 12 37 21 12 29 22 12 30 22 12 31 22 12 32 22 12 33 22 12 34 22 12 35 22 12 36 22 12 37 22 12 38 22 12 39 22 12 40 22 12 27 23 12 28 23 12 29 23 12 30 23 12 31 23 12 32 23 12 33 23 12 34 23 12 35 23 12 36 23 12 37 23 12 38 23 12 39 23 12 40 23 12 41 23 12 26 24 12 27 24 12 28 24 12 29 24 12 30 24 12 31 24 12 32 24 12 33 24 12 34 24 12 35 24 12 36 24 12 37 24 12 38 24 12 39 24 12 40 24 12 41 24 12 24 25 12 25 25 12 26 25 12 27 25 12 28 25 12 29 25 12 30 25 12 31 25 12 32 25 12 33 25 12 34 25 12 35 25 12 36 25 12 37 25 12 38 25 12 39 25 12 40 25 12 41 25 12 42 25 12 23 26 12 24 26 12 25 26 12 26 26 12 27 26 12 28 26 12 29 26 12 30 26 12 31 26 12 32 26 12 33 26 12 34 26 12 35 26 12 36 26 12 37 26 12 38 26 12 39 26 12 40 26 12 41 26 12 42 26 12 23 27 12 24 27 12 25 27 12 26 27 12 27 27 12 28 27 12 29 27 12 30 27 12 31 27 12 32 27 12 33 27 12 34 27 12 35 27 12 36 27 12 37 27 12 38 27 12 39 27 12 40 27 12 41 27 12 42 27 12 22 28 12 23 28 12 24 28 12 25 28 12 26 28 12 27 28 12 28 28 12 29 28 12 30 28 12 31 28 12 32 28 12 33 28 12 34 28 12 35 28 12 36 28 12 37 28 12 38 28 12 39 28 12 40 28 12 41 28 12 42 28 12 21 29 12 22 29 12 23 29 12 24 29 12 25 29 12 26 29 12 27 29 12 28 29 12 29 29 12 30 29 12 31 29 12 32 29 12 33 29 12 34 29 12 35 29 12 36 29 12 37 29 12 38 29 12 39 29 12 40 29 12 41 29 12 42 29 12 44 29 12 45 29 12 21 30 12 22 30 12 23 30 12 24 30 12 25 30 12 26 30 12 27 30 12 28 30 12 29 30 12 30 30 12 31 30 12 32 30 12 33 30 12 34 30 12 35 30 12 36 30 12 37 30 12 38 30 12 39 30 12 40 30 12 41 30 12 44 30 12 45 30 12 21 31 12 22 31 12 23 31 12 24 31 12 25 31 12 26 31 12 27 31 12 28 31 12 29 31 12 30 31 12 31 31 12 32 31 12 33 31 12 34 31 12 35 31 12 36 31 12 37 31 12 38 31 12 39 31 12 40 31 12 41 31 12 44 31 12 45 31 12 20 32 12 21 32 12 22 32 12 23 32 12 24 32 12 25 32 12 26 32 12 27 32 12 28 32 12 29 32 12 30 32 12 31 32 12 33 32 12 34 32 12 35 32 12 36 32 12 37 32 12 38 32 12 39 32 12 40 32 12 41 32 12 42 32 12 43 32 12 44 32 12 45 32 12 20 33 12 21 33 12 22 33 12 23 33 12 24 33 12 25 33 12 26 33 12 27 33 12 28 33 12 29 33 12 30 33 12 31 33 12 32 33 12 33 33 12 34 33 12 35 33 12 36 33 12 37 33 12 38 33 12 39 33 12 40 33 12 41 33 12 42 33 12 43 33 12 44 33 12 45 33 12 20 34 12 21 34 12 22 34 12 23 34 12 24 34 12 25 34 12 26 34 12 27 34 12 28 34 12 29 34 12 30 34 12 31 34 12 32 34 12 33 34 12 34 34 12 35 34 12 37 34 12 38 34 12 39 34 12 40 34 12 42 34 12 43 34 12 44 34 12 45 34 12 20 35 12 21 35 12 22 35 12 23 35 12 24 35 12 25 35 12 26 35 12 27 35 12 28 35 12 29 35 12 30 35 12 31 35 12 32 35 12 33 35 12 34 35 12 36 35 12 37 35 12 38 35 12 39 35 12 40 35 12 42 35 12 43 35 12 44 35 12 45 35 12 20 36 12 21 36 12 22 36 12 23 36 12 24 36 12 25 36 12 26 36 12 27 36 12 28 36 12 29 36 12 30 36 12 31 36 12 32 36 12 33 36 12 34 36 12 36 36 12 37 36 12 38 36 12 39 36 12 42 36 12 43 36 12 44 36 12 45 36 12 20 37 12 21 37 12 22 37 12 23 37 12 24 37 12 25 37 12 26 37 12 27 37 12 28 37 12 29 37 12 30 37 12 31 37 12 32 37 12 33 37 12 36 37 12 37 37 12 38 37 12 39 37 12 41 37 12 42 37 12 43 37 12 44 37 12 45 37 12 21 38 12 22 38 12 23 38 12 24 38 12 25 38 12 26 38 12 27 38 12 28 38 12 29 38 12 30 38 12 31 38 12 32 38 12 33 38 12 36 38 12 37 38 12 38 38 12 41 38 12 42 38 12 43 38 12 44 38 12 21 39 12 22 39 12 23 39 12 24 39 12 25 39 12 26 39 12 27 39 12 28 39 12 29 39 12 30 39 12 31 39 12 32 39 12 33 39 12 36 39 12 37 39 12 38 39 12 39 39 12 40 39 12 41 39 12 42 39 12 43 39 12 44 39 12 22 40 12 23 40 12 24 40 12 25 40 12 26 40 12 27 40 12 28 40 12 29 40 12 30 40 12 31 40 12 32 40 12 33 40 12 34 40 12 36 40 12 37 40 12 38 40 12 39 40 12 40 40 12 41 40 12 42 40 12 43 40 12 22 41 12 23 41 12 24 41 12 25 41 12 26 41 12 27 41 12 28 41 12 29 41 12 30 41 12 31 41 12 32 41 12 33 41 12 34 41 12 35 41 12 36 41 12 37 41 12 38 41 12 39 41 12 23 42 12 24 42 12 25 42 12 26 42 12 27 42 12 28 42 12 29 42 12 30 42 12 31 42 12 32 42 12 33 42 12 34 42 12 35 42 12 36 42 12 38 42 12 39 42 12 25 43 12 26 43 12 27 43 12 28 43 12 29 43 12 30 43 12 31 43 12 32 43 12 33 43 12 34 43 12 35 43 12 36 43 12 37 43 12 38 43 12 28 44 12 29 44 12 30 44 12 31 44 12 32 44 12 33 44 12 34 44 12 35 44 12 36 44 12 37 44 12 33 45 12 34 45 12 35 45 12 36 45 12 34 46 12 35 46 12 36 46 12 36 20 13 37 20 13 30 21 13 31 21 13 32 21 13 33 21 13 34 21 13 35 21 13 36 21 13 37 21 13 38 21 13 39 21 13 28 22 13 29 22 13 30 22 13 31 22 13 32 22 13 33 22 13 34 22 13 35 22 13 36 22 13 37 22 13 38 22 13 39 22 13 40 22 13 41 22 13 26 23 13 27 23 13 28 23 13 29 23 13 30 23 13 31 23 13 32 23 13 33 23 13 34 23 13 35 23 13 36 23 13 37 23 13 38 23 13 39 23 13 40 23 13 41 23 13 25 24 13 26 24 13 27 24 13 28 24 13 29 24 13 30 24 13 31 24 13 32 24 13 33 24 13 34 24 13 35 24 13 36 24 13 37 24 13 38 24 13 39 24 13 40 24 13 41 24 13 42 24 13 24 25 13 25 25 13 26 25 13 27 25 13 28 25 13 29 25 13 30 25 13 31 25 13 32 25 13 33 25 13 34 25 13 35 25 13 36 25 13 37 25 13 38 25 13 39 25 13 40 25 13 41 25 13 42 25 13 23 26 13 24 26 13 25 26 13 26 26 13 27 26 13 28 26 13 29 26 13 30 26 13 31 26 13 32 26 13 33 26 13 34 26 13 35 26 13 36 26 13 37 26 13 38 26 13 39 26 13 40 26 13 41 26 13 42 26 13 22 27 13 23 27 13 24 27 13 25 27 13 26 27 13 27 27 13 28 27 13 29 27 13 30 27 13 31 27 13 32 27 13 33 27 13 34 27 13 35 27 13 36 27 13 37 27 13 38 27 13 39 27 13 40 27 13 41 27 13 42 27 13 22 28 13 23 28 13 24 28 13 25 28 13 26 28 13 27 28 13 28 28 13 29 28 13 30 28 13 31 28 13 32 28 13 33 28 13 34 28 13 35 28 13 36 28 13 37 28 13 38 28 13 39 28 13 40 28 13 41 28 13 42 28 13 44 28 13 45 28 13 21 29 13 22 29 13 23 29 13 24 29 13 25 29 13 26 29 13 27 29 13 28 29 13 29 29 13 30 29 13 31 29 13 32 29 13 33 29 13 34 29 13 35 29 13 36 29 13 37 29 13 38 29 13 39 29 13 40 29 13 41 29 13 42 29 13 43 29 13 44 29 13 45 29 13 21 30 13 22 30 13 23 30 13 24 30 13 25 30 13 26 30 13 27 30 13 29 30 13 30 30 13 31 30 13 32 30 13 33 30 13 34 30 13 35 30 13 36 30 13 37 30 13 38 30 13 39 30 13 40 30 13 41 30 13 42 30 13 43 30 13 44 30 13 45 30 13 20 31 13 21 31 13 22 31 13 23 31 13 24 31 13 25 31 13 26 31 13 27 31 13 30 31 13 31 31 13 32 31 13 33 31 13 35 31 13 36 31 13 37 31 13 38 31 13 39 31 13 40 31 13 41 31 13 43 31 13 44 31 13 45 31 13 20 32 13 21 32 13 22 32 13 23 32 13 24 32 13 25 32 13 26 32 13 30 32 13 31 32 13 32 32 13 33 32 13 34 32 13 35 32 13 36 32 13 37 32 13 38 32 13 39 32 13 40 32 13 41 32 13 42 32 13 43 32 13 44 32 13 45 32 13 20 33 13 21 33 13 22 33 13 23 33 13 24 33 13 25 33 13 26 33 13 29 33 13 30 33 13 31 33 13 33 33 13 34 33 13 35 33 13 36 33 13 37 33 13 38 33 13 39 33 13 40 33 13 41 33 13 42 33 13 43 33 13 44 33 13 45 33 13 20 34 13 21 34 13 22 34 13 23 34 13 24 34 13 25 34 13 26 34 13 29 34 13 30 34 13 32 34 13 33 34 13 34 34 13 35 34 13 37 34 13 38 34 13 39 34 13 42 34 13 43 34 13 44 34 13 45 34 13 20 35 13 21 35 13 22 35 13 23 35 13 24 35 13 25 35 13 26 35 13 29 35 13 30 35 13 32 35 13 33 35 13 34 35 13 36 35 13 37 35 13 38 35 13 39 35 13 42 35 13 43 35 13 44 35 13 45 35 13 20 36 13 21 36 13 22 36 13 23 36 13 24 36 13 25 36 13 26 36 13 28 36 13 29 36 13 30 36 13 32 36 13 33 36 13 36 36 13 37 36 13 38 36 13 42 36 13 43 36 13 44 36 13 45 36 13 20 37 13 21 37 13 22 37 13 23 37 13 24 37 13 25 37 13 27 37 13 28 37 13 29 37 13 36 37 13 37 37 13 38 37 13 41 37 13 42 37 13 43 37 13 44 37 13 20 38 13 21 38 13 22 38 13 23 38 13 24 38 13 25 38 13 26 38 13 27 38 13 28 38 13 29 38 13 37 38 13 40 38 13 41 38 13 42 38 13 43 38 13 44 38 13 21 39 13 22 39 13 23 39 13 24 39 13 25 39 13 26 39 13 27 39 13 28 39 13 29 39 13 39 39 13 40 39 13 41 39 13 42 39 13 43 39 13 44 39 13 21 40 13 22 40 13 23 40 13 24 40 13 25 40 13 26 40 13 27 40 13 28 40 13 29 40 13 31 40 13 37 40 13 38 40 13 39 40 13 40 40 13 41 40 13 42 40 13 43 40 13 44 40 13 21 41 13 22 41 13 23 41 13 24 41 13 25 41 13 26 41 13 27 41 13 28 41 13 29 41 13 30 41 13 31 41 13 32 41 13 33 41 13 34 41 13 35 41 13 36 41 13 37 41 13 38 41 13 39 41 13 22 42 13 23 42 13 24 42 13 25 42 13 26 42 13 27 42 13 28 42 13 29 42 13 30 42 13 31 42 13 32 42 13 33 42 13 34 42 13 35 42 13 36 42 13 37 42 13 38 42 13 24 43 13 25 43 13 26 43 13 27 43 13 28 43 13 29 43 13 30 43 13 31 43 13 32 43 13 33 43 13 34 43 13 35 43 13 36 43 13 37 43 13 38 43 13 27 44 13 28 44 13 29 44 13 30 44 13 31 44 13 32 44 13 33 44 13 34 44 13 35 44 13 36 44 13 37 44 13 31 45 13 32 45 13 33 45 13 34 45 13 35 45 13 36 45 13 37 45 13 31 46 13 32 46 13 33 46 13 34 46 13 35 46 13 36 46 13 32 47 13 33 47 13 34 47 13 31 20 14 32 20 14 33 20 14 34 20 14 35 20 14 36 20 14 37 20 14 38 20 14 39 20 14 40 20 14 29 21 14 30 21 14 31 21 14 32 21 14 33 21 14 34 21 14 35 21 14 36 21 14 37 21 14 38 21 14 39 21 14 40 21 14 41 21 14 27 22 14 28 22 14 29 22 14 30 22 14 31 22 14 32 22 14 33 22 14 34 22 14 35 22 14 36 22 14 37 22 14 38 22 14 39 22 14 40 22 14 41 22 14 42 22 14 26 23 14 27 23 14 28 23 14 29 23 14 30 23 14 31 23 14 32 23 14 33 23 14 34 23 14 35 23 14 36 23 14 37 23 14 38 23 14 39 23 14 40 23 14 41 23 14 42 23 14 24 24 14 25 24 14 26 24 14 27 24 14 28 24 14 29 24 14 30 24 14 31 24 14 32 24 14 33 24 14 34 24 14 35 24 14 36 24 14 37 24 14 38 24 14 39 24 14 40 24 14 41 24 14 42 24 14 23 25 14 24 25 14 25 25 14 26 25 14 27 25 14 28 25 14 29 25 14 30 25 14 31 25 14 32 25 14 33 25 14 34 25 14 35 25 14 36 25 14 37 25 14 38 25 14 39 25 14 40 25 14 41 25 14 42 25 14 43 25 14 23 26 14 24 26 14 25 26 14 26 26 14 27 26 14 28 26 14 29 26 14 30 26 14 31 26 14 32 26 14 33 26 14 34 26 14 35 26 14 36 26 14 37 26 14 38 26 14 39 26 14 40 26 14 41 26 14 42 26 14 22 27 14 23 27 14 24 27 14 25 27 14 26 27 14 27 27 14 28 27 14 32 27 14 33 27 14 34 27 14 35 27 14 36 27 14 37 27 14 38 27 14 39 27 14 40 27 14 41 27 14 42 27 14 44 27 14 45 27 14 22 28 14 23 28 14 24 28 14 25 28 14 26 28 14 27 28 14 28 28 14 32 28 14 33 28 14 34 28 14 35 28 14 36 28 14 37 28 14 38 28 14 39 28 14 40 28 14 41 28 14 42 28 14 43 28 14 44 28 14 45 28 14 21 29 14 22 29 14 23 29 14 24 29 14 25 29 14 26 29 14 27 29 14 28 29 14 33 29 14 34 29 14 35 29 14 36 29 14 37 29 14 38 29 14 39 29 14 40 29 14 41 29 14 42 29 14 43 29 14 44 29 14 45 29 14 21 30 14 22 30 14 23 30 14 24 30 14 25 30 14 26 30 14 27 30 14 28 30 14 33 30 14 34 30 14 35 30 14 36 30 14 37 30 14 38 30 14 39 30 14 40 30 14 41 30 14 42 30 14 43 30 14 44 30 14 45 30 14 21 31 14 22 31 14 23 31 14 24 31 14 25 31 14 26 31 14 27 31 14 28 31 14 35 31 14 36 31 14 37 31 14 38 31 14 39 31 14 40 31 14 41 31 14 42 31 14 43 31 14 44 31 14 45 31 14 20 32 14 21 32 14 22 32 14 23 32 14 24 32 14 25 32 14 26 32 14 27 32 14 28 32 14 35 32 14 36 32 14 37 32 14 38 32 14 39 32 14 40 32 14 43 32 14 44 32 14 45 32 14 19 33 14 20 33 14 21 33 14 22 33 14 23 33 14 24 33 14 25 33 14 26 33 14 27 33 14 28 33 14 35 33 14 36 33 14 37 33 14 38 33 14 39 33 14 40 33 14 41 33 14 42 33 14 43 33 14 44 33 14 45 33 14 19 34 14 20 34 14 21 34 14 22 34 14 23 34 14 24 34 14 25 34 14 26 34 14 27 34 14 37 34 14 38 34 14 39 34 14 41 34 14 42 34 14 43 34 14 44 34 14 45 34 14 19 35 14 20 35 14 21 35 14 22 35 14 23 35 14 24 35 14 25 35 14 26 35 14 27 35 14 37 35 14 38 35 14 42 35 14 43 35 14 44 35 14 45 35 14 18 36 14 19 36 14 20 36 14 21 36 14 22 36 14 23 36 14 24 36 14 25 36 14 26 36 14 27 36 14 41 36 14 42 36 14 43 36 14 44 36 14 45 36 14 19 37 14 20 37 14 21 37 14 22 37 14 23 37 14 24 37 14 25 37 14 26 37 14 27 37 14 41 37 14 42 37 14 43 37 14 44 37 14 45 37 14 20 38 14 21 38 14 22 38 14 23 38 14 24 38 14 25 38 14 26 38 14 40 38 14 41 38 14 42 38 14 43 38 14 44 38 14 45 38 14 20 39 14 21 39 14 22 39 14 23 39 14 24 39 14 25 39 14 26 39 14 39 39 14 40 39 14 41 39 14 42 39 14 43 39 14 44 39 14 21 40 14 22 40 14 23 40 14 24 40 14 25 40 14 26 40 14 27 40 14 28 40 14 38 40 14 39 40 14 40 40 14 41 40 14 42 40 14 43 40 14 44 40 14 21 41 14 22 41 14 23 41 14 24 41 14 25 41 14 26 41 14 27 41 14 28 41 14 29 41 14 37 41 14 38 41 14 39 41 14 40 41 14 43 41 14 22 42 14 23 42 14 24 42 14 25 42 14 26 42 14 27 42 14 28 42 14 29 42 14 30 42 14 31 42 14 32 42 14 33 42 14 34 42 14 35 42 14 36 42 14 37 42 14 38 42 14 23 43 14 24 43 14 25 43 14 26 43 14 27 43 14 28 43 14 29 43 14 31 43 14 32 43 14 33 43 14 34 43 14 35 43 14 36 43 14 26 44 14 27 44 14 28 44 14 31 44 14 32 44 14 33 44 14 34 44 14 35 44 14 30 45 14 31 45 14 32 45 14 33 45 14 34 45 14 35 45 14 36 45 14 30 46 14 31 46 14 32 46 14 33 46 14 34 46 14 35 46 14 36 46 14 37 46 14 31 47 14 32 47 14 33 47 14 34 47 14 35 47 14 36 47 14 34 19 15 35 19 15 36 19 15 37 19 15 38 19 15 39 19 15 30 20 15 31 20 15 32 20 15 33 20 15 34 20 15 35 20 15 36 20 15 37 20 15 38 20 15 39 20 15 40 20 15 41 20 15 28 21 15 29 21 15 30 21 15 31 21 15 32 21 15 33 21 15 34 21 15 35 21 15 36 21 15 37 21 15 38 21 15 39 21 15 40 21 15 41 21 15 26 22 15 27 22 15 28 22 15 29 22 15 30 22 15 31 22 15 32 22 15 33 22 15 34 22 15 35 22 15 36 22 15 37 22 15 38 22 15 39 22 15 40 22 15 41 22 15 42 22 15 25 23 15 26 23 15 27 23 15 28 23 15 29 23 15 30 23 15 31 23 15 32 23 15 33 23 15 34 23 15 35 23 15 36 23 15 37 23 15 38 23 15 39 23 15 40 23 15 41 23 15 42 23 15 43 23 15 24 24 15 25 24 15 26 24 15 27 24 15 28 24 15 29 24 15 30 24 15 31 24 15 32 24 15 33 24 15 34 24 15 35 24 15 36 24 15 37 24 15 38 24 15 39 24 15 40 24 15 41 24 15 42 24 15 43 24 15 23 25 15 24 25 15 25 25 15 26 25 15 27 25 15 28 25 15 29 25 15 30 25 15 34 25 15 35 25 15 36 25 15 37 25 15 38 25 15 39 25 15 40 25 15 41 25 15 42 25 15 43 25 15 23 26 15 24 26 15 25 26 15 26 26 15 27 26 15 28 26 15 29 26 15 30 26 15 31 26 15 34 26 15 35 26 15 36 26 15 37 26 15 38 26 15 39 26 15 40 26 15 41 26 15 42 26 15 22 27 15 23 27 15 24 27 15 25 27 15 26 27 15 27 27 15 28 27 15 29 27 15 30 27 15 31 27 15 35 27 15 36 27 15 37 27 15 38 27 15 39 27 15 40 27 15 41 27 15 42 27 15 43 27 15 44 27 15 45 27 15 22 28 15 23 28 15 24 28 15 25 28 15 26 28 15 27 28 15 28 28 15 29 28 15 30 28 15 31 28 15 36 28 15 37 28 15 38 28 15 39 28 15 40 28 15 41 28 15 42 28 15 43 28 15 44 28 15 45 28 15 21 29 15 22 29 15 23 29 15 24 29 15 25 29 15 26 29 15 27 29 15 28 29 15 29 29 15 30 29 15 31 29 15 36 29 15 37 29 15 38 29 15 39 29 15 40 29 15 41 29 15 42 29 15 43 29 15 44 29 15 45 29 15 20 30 15 21 30 15 22 30 15 23 30 15 24 30 15 25 30 15 26 30 15 27 30 15 28 30 15 29 30 15 30 30 15 38 30 15 39 30 15 40 30 15 41 30 15 42 30 15 43 30 15 44 30 15 45 30 15 19 31 15 20 31 15 21 31 15 22 31 15 23 31 15 24 31 15 25 31 15 26 31 15 27 31 15 28 31 15 29 31 15 30 31 15 37 31 15 38 31 15 39 31 15 40 31 15 41 31 15 42 31 15 43 31 15 44 31 15 45 31 15 19 32 15 20 32 15 21 32 15 22 32 15 23 32 15 24 32 15 25 32 15 26 32 15 27 32 15 28 32 15 29 32 15 38 32 15 39 32 15 40 32 15 42 32 15 43 32 15 44 32 15 45 32 15 19 33 15 20 33 15 21 33 15 22 33 15 23 33 15 24 33 15 25 33 15 26 33 15 27 33 15 28 33 15 29 33 15 40 33 15 41 33 15 43 33 15 44 33 15 45 33 15 18 34 15 19 34 15 20 34 15 21 34 15 22 34 15 23 34 15 24 34 15 25 34 15 26 34 15 27 34 15 28 34 15 41 34 15 42 34 15 43 34 15 44 34 15 45 34 15 18 35 15 19 35 15 20 35 15 21 35 15 22 35 15 23 35 15 24 35 15 25 35 15 26 35 15 27 35 15 28 35 15 41 35 15 42 35 15 43 35 15 44 35 15 45 35 15 18 36 15 19 36 15 20 36 15 21 36 15 22 36 15 23 36 15 24 36 15 25 36 15 26 36 15 27 36 15 42 36 15 43 36 15 44 36 15 45 36 15 19 37 15 20 37 15 21 37 15 22 37 15 23 37 15 24 37 15 25 37 15 26 37 15 27 37 15 41 37 15 42 37 15 43 37 15 44 37 15 45 37 15 19 38 15 20 38 15 21 38 15 22 38 15 23 38 15 24 38 15 25 38 15 26 38 15 27 38 15 39 38 15 40 38 15 41 38 15 42 38 15 43 38 15 44 38 15 45 38 15 20 39 15 21 39 15 22 39 15 23 39 15 24 39 15 25 39 15 26 39 15 27 39 15 39 39 15 40 39 15 41 39 15 42 39 15 43 39 15 44 39 15 45 39 15 20 40 15 21 40 15 22 40 15 23 40 15 24 40 15 25 40 15 26 40 15 27 40 15 38 40 15 39 40 15 40 40 15 41 40 15 42 40 15 43 40 15 44 40 15 21 41 15 22 41 15 23 41 15 24 41 15 25 41 15 26 41 15 27 41 15 28 41 15 38 41 15 39 41 15 41 41 15 42 41 15 43 41 15 21 42 15 22 42 15 23 42 15 24 42 15 25 42 15 26 42 15 27 42 15 28 42 15 23 43 15 24 43 15 25 43 15 26 43 15 27 43 15 32 43 15 32 44 15 33 44 15 31 45 15 32 45 15 33 45 15 30 46 15 31 46 15 32 46 15 33 46 15 34 46 15 35 46 15 32 47 15 33 47 15 34 47 15 35 47 15 36 47 15 32 48 15 33 48 15 31 49 15 37 18 16 32 19 16 33 19 16 34 19 16 35 19 16 36 19 16 37 19 16 38 19 16 39 19 16 40 19 16 29 20 16 30 20 16 31 20 16 32 20 16 33 20 16 34 20 16 35 20 16 36 20 16 37 20 16 38 20 16 39 20 16 40 20 16 41 20 16 28 21 16 29 21 16 30 21 16 31 21 16 32 21 16 33 21 16 34 21 16 35 21 16 36 21 16 37 21 16 38 21 16 39 21 16 40 21 16 41 21 16 42 21 16 26 22 16 27 22 16 28 22 16 29 22 16 30 22 16 31 22 16 32 22 16 33 22 16 34 22 16 35 22 16 36 22 16 37 22 16 38 22 16 39 22 16 40 22 16 41 22 16 42 22 16 25 23 16 26 23 16 27 23 16 28 23 16 29 23 16 30 23 16 31 23 16 32 23 16 33 23 16 35 23 16 36 23 16 37 23 16 38 23 16 39 23 16 40 23 16 41 23 16 42 23 16 43 23 16 24 24 16 25 24 16 26 24 16 27 24 16 28 24 16 29 24 16 30 24 16 31 24 16 32 24 16 33 24 16 37 24 16 38 24 16 39 24 16 40 24 16 41 24 16 42 24 16 43 24 16 23 25 16 24 25 16 25 25 16 26 25 16 27 25 16 28 25 16 29 25 16 30 25 16 31 25 16 32 25 16 33 25 16 38 25 16 39 25 16 40 25 16 41 25 16 42 25 16 43 25 16 22 26 16 23 26 16 24 26 16 25 26 16 26 26 16 27 26 16 28 26 16 29 26 16 30 26 16 31 26 16 32 26 16 33 26 16 38 26 16 39 26 16 40 26 16 41 26 16 42 26 16 43 26 16 21 27 16 22 27 16 23 27 16 24 27 16 26 27 16 27 27 16 28 27 16 29 27 16 30 27 16 31 27 16 32 27 16 33 27 16 38 27 16 39 27 16 40 27 16 41 27 16 42 27 16 43 27 16 44 27 16 45 27 16 20 28 16 21 28 16 22 28 16 23 28 16 24 28 16 25 28 16 26 28 16 27 28 16 28 28 16 29 28 16 30 28 16 31 28 16 32 28 16 33 28 16 39 28 16 40 28 16 41 28 16 42 28 16 43 28 16 44 28 16 45 28 16 20 29 16 21 29 16 22 29 16 23 29 16 24 29 16 25 29 16 26 29 16 27 29 16 28 29 16 29 29 16 30 29 16 31 29 16 32 29 16 39 29 16 40 29 16 41 29 16 42 29 16 43 29 16 44 29 16 45 29 16 19 30 16 20 30 16 21 30 16 22 30 16 23 30 16 24 30 16 25 30 16 26 30 16 27 30 16 28 30 16 29 30 16 30 30 16 31 30 16 32 30 16 39 30 16 40 30 16 41 30 16 42 30 16 43 30 16 44 30 16 45 30 16 19 31 16 20 31 16 21 31 16 22 31 16 23 31 16 24 31 16 25 31 16 26 31 16 27 31 16 28 31 16 29 31 16 30 31 16 39 31 16 40 31 16 41 31 16 42 31 16 43 31 16 44 31 16 45 31 16 18 32 16 19 32 16 20 32 16 21 32 16 22 32 16 23 32 16 24 32 16 25 32 16 26 32 16 27 32 16 28 32 16 29 32 16 40 32 16 41 32 16 42 32 16 43 32 16 44 32 16 45 32 16 18 33 16 19 33 16 20 33 16 21 33 16 22 33 16 23 33 16 24 33 16 25 33 16 26 33 16 27 33 16 28 33 16 29 33 16 40 33 16 41 33 16 42 33 16 43 33 16 44 33 16 45 33 16 18 34 16 19 34 16 20 34 16 21 34 16 22 34 16 23 34 16 24 34 16 25 34 16 26 34 16 27 34 16 40 34 16 41 34 16 42 34 16 43 34 16 44 34 16 45 34 16 18 35 16 19 35 16 20 35 16 21 35 16 22 35 16 23 35 16 24 35 16 25 35 16 26 35 16 40 35 16 41 35 16 42 35 16 43 35 16 44 35 16 45 35 16 18 36 16 19 36 16 20 36 16 21 36 16 22 36 16 23 36 16 24 36 16 25 36 16 40 36 16 41 36 16 42 36 16 43 36 16 44 36 16 45 36 16 18 37 16 19 37 16 20 37 16 21 37 16 22 37 16 23 37 16 24 37 16 25 37 16 39 37 16 40 37 16 41 37 16 42 37 16 43 37 16 44 37 16 45 37 16 19 38 16 20 38 16 21 38 16 22 38 16 23 38 16 24 38 16 39 38 16 40 38 16 41 38 16 42 38 16 43 38 16 44 38 16 45 38 16 19 39 16 20 39 16 21 39 16 22 39 16 23 39 16 24 39 16 39 39 16 40 39 16 41 39 16 42 39 16 43 39 16 44 39 16 45 39 16 20 40 16 21 40 16 22 40 16 23 40 16 24 40 16 25 40 16 26 40 16 39 40 16 40 40 16 41 40 16 42 40 16 43 40 16 20 41 16 21 41 16 22 41 16 23 41 16 24 41 16 25 41 16 26 41 16 27 41 16 28 41 16 41 41 16 42 41 16 21 42 16 22 42 16 23 42 16 24 42 16 25 42 16 28 42 16 29 42 16 30 42 16 22 43 16 23 43 16 24 43 16 29 43 16 31 43 16 27 44 16 28 44 16 29 44 16 30 44 16 27 45 16 28 45 16 29 45 16 30 45 16 28 46 16 29 46 16 30 46 16 34 46 16 34 18 17 35 18 17 36 18 17 37 18 17 38 18 17 39 18 17 31 19 17 32 19 17 33 19 17 34 19 17 35 19 17 36 19 17 37 19 17 38 19 17 39 19 17 40 19 17 29 20 17 30 20 17 31 20 17 32 20 17 33 20 17 34 20 17 35 20 17 36 20 17 37 20 17 38 20 17 39 20 17 40 20 17 41 20 17 42 20 17 28 21 17 29 21 17 30 21 17 31 21 17 32 21 17 33 21 17 34 21 17 35 21 17 36 21 17 37 21 17 38 21 17 39 21 17 40 21 17 41 21 17 42 21 17 27 22 17 28 22 17 29 22 17 30 22 17 31 22 17 32 22 17 33 22 17 34 22 17 35 22 17 37 22 17 38 22 17 39 22 17 40 22 17 41 22 17 42 22 17 43 22 17 25 23 17 26 23 17 27 23 17 28 23 17 29 23 17 30 23 17 31 23 17 32 23 17 33 23 17 34 23 17 35 23 17 38 23 17 39 23 17 40 23 17 41 23 17 42 23 17 43 23 17 23 24 17 24 24 17 25 24 17 26 24 17 28 24 17 29 24 17 30 24 17 31 24 17 32 24 17 33 24 17 34 24 17 35 24 17 36 24 17 39 24 17 40 24 17 41 24 17 42 24 17 43 24 17 22 25 17 23 25 17 24 25 17 25 25 17 26 25 17 29 25 17 30 25 17 31 25 17 32 25 17 33 25 17 34 25 17 35 25 17 36 25 17 39 25 17 40 25 17 41 25 17 42 25 17 43 25 17 21 26 17 22 26 17 23 26 17 24 26 17 25 26 17 26 26 17 27 26 17 28 26 17 29 26 17 30 26 17 31 26 17 32 26 17 33 26 17 34 26 17 35 26 17 36 26 17 39 26 17 40 26 17 41 26 17 42 26 17 43 26 17 21 27 17 22 27 17 23 27 17 24 27 17 25 27 17 26 27 17 27 27 17 28 27 17 29 27 17 30 27 17 31 27 17 32 27 17 33 27 17 34 27 17 35 27 17 36 27 17 40 27 17 41 27 17 42 27 17 43 27 17 44 27 17 45 27 17 20 28 17 21 28 17 22 28 17 23 28 17 24 28 17 25 28 17 26 28 17 27 28 17 28 28 17 29 28 17 30 28 17 31 28 17 32 28 17 33 28 17 34 28 17 35 28 17 40 28 17 41 28 17 42 28 17 43 28 17 44 28 17 45 28 17 19 29 17 20 29 17 21 29 17 22 29 17 23 29 17 24 29 17 25 29 17 26 29 17 27 29 17 28 29 17 29 29 17 30 29 17 31 29 17 32 29 17 33 29 17 40 29 17 41 29 17 42 29 17 43 29 17 44 29 17 45 29 17 19 30 17 20 30 17 21 30 17 22 30 17 23 30 17 24 30 17 25 30 17 26 30 17 27 30 17 28 30 17 29 30 17 30 30 17 31 30 17 32 30 17 40 30 17 41 30 17 42 30 17 43 30 17 44 30 17 45 30 17 19 31 17 20 31 17 21 31 17 22 31 17 23 31 17 24 31 17 25 31 17 26 31 17 27 31 17 28 31 17 29 31 17 40 31 17 41 31 17 42 31 17 43 31 17 44 31 17 45 31 17 18 32 17 19 32 17 20 32 17 21 32 17 22 32 17 23 32 17 24 32 17 25 32 17 26 32 17 27 32 17 41 32 17 42 32 17 43 32 17 44 32 17 45 32 17 18 33 17 19 33 17 20 33 17 21 33 17 22 33 17 23 33 17 24 33 17 41 33 17 42 33 17 43 33 17 44 33 17 45 33 17 18 34 17 19 34 17 20 34 17 21 34 17 22 34 17 40 34 17 41 34 17 42 34 17 43 34 17 44 34 17 45 34 17 18 35 17 19 35 17 20 35 17 21 35 17 22 35 17 40 35 17 41 35 17 42 35 17 43 35 17 44 35 17 45 35 17 18 36 17 19 36 17 20 36 17 21 36 17 22 36 17 23 36 17 39 36 17 40 36 17 41 36 17 42 36 17 43 36 17 44 36 17 45 36 17 18 37 17 19 37 17 20 37 17 21 37 17 22 37 17 23 37 17 24 37 17 39 37 17 40 37 17 41 37 17 42 37 17 43 37 17 44 37 17 45 37 17 19 38 17 20 38 17 21 38 17 22 38 17 23 38 17 24 38 17 40 38 17 41 38 17 42 38 17 43 38 17 44 38 17 45 38 17 19 39 17 20 39 17 21 39 17 22 39 17 23 39 17 24 39 17 25 39 17 40 39 17 41 39 17 42 39 17 43 39 17 44 39 17 45 39 17 19 40 17 20 40 17 21 40 17 22 40 17 23 40 17 24 40 17 25 40 17 26 40 17 27 40 17 28 40 17 41 40 17 42 40 17 43 40 17 44 40 17 45 40 17 20 41 17 21 41 17 22 41 17 23 41 17 24 41 17 25 41 17 26 41 17 27 41 17 28 41 17 29 41 17 41 41 17 20 42 17 21 42 17 22 42 17 23 42 17 24 42 17 25 42 17 26 42 17 27 42 17 28 42 17 29 42 17 22 43 17 23 43 17 24 43 17 25 43 17 26 43 17 27 43 17 28 43 17 29 43 17 30 43 17 24 44 17 25 44 17 26 44 17 27 44 17 28 44 17 29 44 17 30 44 17 26 45 17 27 45 17 28 45 17 29 45 17 30 45 17 31 45 17 32 45 17 27 46 17 28 46 17 29 46 17 30 46 17 31 46 17 33 46 17 30 47 17 33 18 18 34 18 18 35 18 18 36 18 18 37 18 18 38 18 18 39 18 18 40 18 18 31 19 18 32 19 18 33 19 18 34 19 18 35 19 18 36 19 18 37 19 18 38 19 18 39 19 18 40 19 18 41 19 18 29 20 18 30 20 18 31 20 18 32 20 18 33 20 18 34 20 18 35 20 18 36 20 18 37 20 18 38 20 18 39 20 18 40 20 18 41 20 18 42 20 18 28 21 18 29 21 18 30 21 18 31 21 18 32 21 18 33 21 18 34 21 18 35 21 18 36 21 18 37 21 18 38 21 18 39 21 18 40 21 18 41 21 18 42 21 18 43 21 18 25 22 18 26 22 18 27 22 18 28 22 18 29 22 18 30 22 18 31 22 18 32 22 18 33 22 18 34 22 18 35 22 18 36 22 18 37 22 18 39 22 18 40 22 18 41 22 18 42 22 18 43 22 18 24 23 18 25 23 18 26 23 18 27 23 18 28 23 18 31 23 18 32 23 18 33 23 18 34 23 18 35 23 18 36 23 18 37 23 18 40 23 18 41 23 18 42 23 18 43 23 18 23 24 18 24 24 18 25 24 18 26 24 18 27 24 18 28 24 18 29 24 18 30 24 18 31 24 18 32 24 18 33 24 18 34 24 18 35 24 18 36 24 18 37 24 18 38 24 18 41 24 18 42 24 18 43 24 18 21 25 18 22 25 18 23 25 18 24 25 18 25 25 18 26 25 18 27 25 18 28 25 18 29 25 18 30 25 18 31 25 18 32 25 18 33 25 18 34 25 18 35 25 18 36 25 18 37 25 18 38 25 18 41 25 18 42 25 18 43 25 18 21 26 18 22 26 18 23 26 18 24 26 18 25 26 18 26 26 18 27 26 18 28 26 18 29 26 18 30 26 18 31 26 18 32 26 18 33 26 18 34 26 18 35 26 18 36 26 18 37 26 18 38 26 18 41 26 18 42 26 18 43 26 18 44 26 18 20 27 18 21 27 18 22 27 18 23 27 18 24 27 18 25 27 18 26 27 18 27 27 18 28 27 18 29 27 18 30 27 18 31 27 18 32 27 18 33 27 18 34 27 18 35 27 18 36 27 18 37 27 18 41 27 18 42 27 18 43 27 18 44 27 18 19 28 18 20 28 18 21 28 18 22 28 18 23 28 18 24 28 18 25 28 18 26 28 18 27 28 18 28 28 18 29 28 18 30 28 18 31 28 18 32 28 18 33 28 18 34 28 18 35 28 18 36 28 18 40 28 18 41 28 18 42 28 18 43 28 18 44 28 18 45 28 18 19 29 18 20 29 18 21 29 18 22 29 18 23 29 18 24 29 18 25 29 18 26 29 18 27 29 18 28 29 18 29 29 18 30 29 18 40 29 18 41 29 18 42 29 18 43 29 18 44 29 18 45 29 18 19 30 18 20 30 18 21 30 18 22 30 18 23 30 18 25 30 18 26 30 18 40 30 18 41 30 18 42 30 18 43 30 18 44 30 18 45 30 18 18 31 18 19 31 18 20 31 18 21 31 18 22 31 18 41 31 18 42 31 18 43 31 18 45 31 18 18 32 18 19 32 18 20 32 18 21 32 18 22 32 18 41 32 18 42 32 18 44 32 18 45 32 18 18 33 18 19 33 18 20 33 18 21 33 18 22 33 18 23 33 18 24 33 18 42 33 18 43 33 18 44 33 18 45 33 18 18 34 18 19 34 18 20 34 18 21 34 18 22 34 18 23 34 18 24 34 18 29 34 18 30 34 18 40 34 18 41 34 18 42 34 18 43 34 18 44 34 18 45 34 18 18 35 18 19 35 18 20 35 18 21 35 18 22 35 18 23 35 18 24 35 18 25 35 18 26 35 18 27 35 18 28 35 18 29 35 18 30 35 18 40 35 18 41 35 18 42 35 18 43 35 18 44 35 18 45 35 18 18 36 18 19 36 18 20 36 18 21 36 18 22 36 18 23 36 18 24 36 18 25 36 18 26 36 18 27 36 18 28 36 18 29 36 18 39 36 18 40 36 18 41 36 18 42 36 18 43 36 18 44 36 18 45 36 18 18 37 18 19 37 18 20 37 18 21 37 18 22 37 18 23 37 18 24 37 18 25 37 18 26 37 18 27 37 18 28 37 18 29 37 18 40 37 18 41 37 18 42 37 18 43 37 18 44 37 18 45 37 18 19 38 18 20 38 18 21 38 18 22 38 18 23 38 18 24 38 18 25 38 18 26 38 18 27 38 18 28 38 18 29 38 18 40 38 18 41 38 18 42 38 18 43 38 18 44 38 18 45 38 18 19 39 18 20 39 18 21 39 18 22 39 18 23 39 18 24 39 18 25 39 18 26 39 18 27 39 18 28 39 18 29 39 18 41 39 18 42 39 18 43 39 18 44 39 18 45 39 18 19 40 18 20 40 18 21 40 18 22 40 18 23 40 18 24 40 18 25 40 18 26 40 18 27 40 18 28 40 18 29 40 18 41 40 18 42 40 18 43 40 18 44 40 18 45 40 18 20 41 18 21 41 18 22 41 18 23 41 18 24 41 18 25 41 18 26 41 18 27 41 18 28 41 18 29 41 18 21 42 18 22 42 18 23 42 18 24 42 18 25 42 18 26 42 18 27 42 18 28 42 18 29 42 18 22 43 18 23 43 18 24 43 18 25 43 18 26 43 18 27 43 18 28 43 18 29 43 18 30 43 18 24 44 18 25 44 18 26 44 18 27 44 18 28 44 18 29 44 18 30 44 18 26 45 18 27 45 18 28 45 18 29 45 18 30 45 18 31 45 18 27 46 18 28 46 18 29 46 18 30 46 18 31 46 18 32 46 18 28 47 18 29 47 18 30 47 18 31 47 18 32 47 18 32 18 19 33 18 19 34 18 19 35 18 19 36 18 19 37 18 19 38 18 19 39 18 19 40 18 19 41 18 19 31 19 19 32 19 19 33 19 19 34 19 19 35 19 19 36 19 19 37 19 19 38 19 19 39 19 19 40 19 19 41 19 19 42 19 19 28 20 19 29 20 19 30 20 19 31 20 19 32 20 19 33 20 19 34 20 19 35 20 19 36 20 19 37 20 19 38 20 19 39 20 19 40 20 19 41 20 19 42 20 19 26 21 19 27 21 19 28 21 19 29 21 19 30 21 19 32 21 19 33 21 19 34 21 19 35 21 19 36 21 19 37 21 19 38 21 19 39 21 19 40 21 19 41 21 19 42 21 19 43 21 19 24 22 19 25 22 19 26 22 19 27 22 19 28 22 19 29 22 19 30 22 19 31 22 19 33 22 19 34 22 19 35 22 19 36 22 19 37 22 19 38 22 19 39 22 19 41 22 19 42 22 19 43 22 19 23 23 19 24 23 19 25 23 19 26 23 19 27 23 19 28 23 19 29 23 19 30 23 19 31 23 19 32 23 19 33 23 19 34 23 19 35 23 19 36 23 19 37 23 19 38 23 19 39 23 19 41 23 19 42 23 19 43 23 19 22 24 19 23 24 19 24 24 19 25 24 19 26 24 19 27 24 19 28 24 19 29 24 19 30 24 19 31 24 19 32 24 19 33 24 19 34 24 19 35 24 19 36 24 19 37 24 19 38 24 19 39 24 19 42 24 19 43 24 19 21 25 19 22 25 19 23 25 19 24 25 19 25 25 19 26 25 19 27 25 19 28 25 19 29 25 19 30 25 19 31 25 19 32 25 19 33 25 19 34 25 19 35 25 19 36 25 19 37 25 19 38 25 19 39 25 19 42 25 19 43 25 19 44 25 19 21 26 19 22 26 19 23 26 19 24 26 19 25 26 19 26 26 19 27 26 19 28 26 19 29 26 19 30 26 19 31 26 19 32 26 19 33 26 19 34 26 19 35 26 19 36 26 19 37 26 19 38 26 19 39 26 19 41 26 19 42 26 19 43 26 19 44 26 19 20 27 19 21 27 19 22 27 19 23 27 19 24 27 19 26 27 19 27 27 19 28 27 19 29 27 19 30 27 19 31 27 19 32 27 19 33 27 19 34 27 19 35 27 19 36 27 19 37 27 19 38 27 19 41 27 19 42 27 19 43 27 19 44 27 19 19 28 19 20 28 19 21 28 19 22 28 19 23 28 19 41 28 19 42 28 19 43 28 19 44 28 19 19 29 19 20 29 19 21 29 19 22 29 19 23 29 19 41 29 19 42 29 19 43 29 19 44 29 19 45 29 19 19 30 19 20 30 19 21 30 19 22 30 19 23 30 19 24 30 19 25 30 19 29 30 19 30 30 19 31 30 19 32 30 19 33 30 19 34 30 19 41 30 19 42 30 19 43 30 19 44 30 19 45 30 19 18 31 19 19 31 19 20 31 19 21 31 19 22 31 19 23 31 19 24 31 19 25 31 19 26 31 19 27 31 19 28 31 19 29 31 19 30 31 19 31 31 19 32 31 19 33 31 19 34 31 19 41 31 19 42 31 19 43 31 19 44 31 19 45 31 19 18 32 19 19 32 19 20 32 19 21 32 19 22 32 19 23 32 19 24 32 19 25 32 19 26 32 19 27 32 19 28 32 19 29 32 19 30 32 19 31 32 19 32 32 19 33 32 19 42 32 19 45 32 19 18 33 19 19 33 19 20 33 19 21 33 19 22 33 19 23 33 19 24 33 19 25 33 19 26 33 19 27 33 19 28 33 19 29 33 19 30 33 19 31 33 19 32 33 19 44 33 19 45 33 19 18 34 19 19 34 19 20 34 19 21 34 19 22 34 19 23 34 19 24 34 19 25 34 19 26 34 19 27 34 19 28 34 19 29 34 19 30 34 19 31 34 19 32 34 19 43 34 19 44 34 19 45 34 19 18 35 19 19 35 19 20 35 19 21 35 19 22 35 19 23 35 19 24 35 19 25 35 19 26 35 19 27 35 19 28 35 19 29 35 19 30 35 19 31 35 19 40 35 19 41 35 19 42 35 19 43 35 19 44 35 19 45 35 19 18 36 19 19 36 19 20 36 19 21 36 19 22 36 19 23 36 19 24 36 19 25 36 19 26 36 19 27 36 19 28 36 19 29 36 19 30 36 19 31 36 19 40 36 19 41 36 19 42 36 19 43 36 19 44 36 19 45 36 19 18 37 19 19 37 19 20 37 19 21 37 19 22 37 19 23 37 19 24 37 19 25 37 19 26 37 19 27 37 19 28 37 19 29 37 19 30 37 19 31 37 19 40 37 19 41 37 19 42 37 19 43 37 19 44 37 19 45 37 19 19 38 19 20 38 19 21 38 19 22 38 19 23 38 19 24 38 19 25 38 19 26 38 19 27 38 19 28 38 19 29 38 19 30 38 19 40 38 19 41 38 19 42 38 19 43 38 19 44 38 19 45 38 19 19 39 19 20 39 19 21 39 19 22 39 19 23 39 19 24 39 19 25 39 19 26 39 19 27 39 19 28 39 19 29 39 19 30 39 19 42 39 19 43 39 19 44 39 19 45 39 19 19 40 19 20 40 19 21 40 19 22 40 19 23 40 19 24 40 19 25 40 19 26 40 19 27 40 19 28 40 19 29 40 19 41 40 19 44 40 19 45 40 19 20 41 19 21 41 19 22 41 19 23 41 19 24 41 19 25 41 19 26 41 19 27 41 19 28 41 19 29 41 19 21 42 19 22 42 19 23 42 19 24 42 19 25 42 19 26 42 19 27 42 19 28 42 19 29 42 19 30 42 19 23 43 19 24 43 19 25 43 19 26 43 19 27 43 19 28 43 19 29 43 19 30 43 19 31 43 19 24 44 19 25 44 19 26 44 19 27 44 19 28 44 19 29 44 19 30 44 19 31 44 19 26 45 19 27 45 19 28 45 19 29 45 19 30 45 19 31 45 19 27 46 19 28 46 19 29 46 19 30 46 19 31 46 19 32 46 19 28 47 19 29 47 19 30 47 19 31 47 19 32 47 19 33 47 19 31 48 19 32 48 19 33 18 20 34 18 20 35 18 20 36 18 20 37 18 20 38 18 20 39 18 20 40 18 20 41 18 20 30 19 20 31 19 20 32 19 20 33 19 20 34 19 20 35 19 20 36 19 20 37 19 20 38 19 20 39 19 20 40 19 20 41 19 20 42 19 20 27 20 20 28 20 20 29 20 20 30 20 20 31 20 20 32 20 20 33 20 20 34 20 20 35 20 20 36 20 20 37 20 20 38 20 20 39 20 20 40 20 20 41 20 20 42 20 20 26 21 20 27 21 20 28 21 20 29 21 20 30 21 20 31 21 20 32 21 20 33 21 20 34 21 20 35 21 20 36 21 20 37 21 20 38 21 20 39 21 20 40 21 20 41 21 20 42 21 20 43 21 20 24 22 20 25 22 20 26 22 20 27 22 20 28 22 20 29 22 20 30 22 20 31 22 20 32 22 20 33 22 20 34 22 20 35 22 20 36 22 20 37 22 20 38 22 20 39 22 20 40 22 20 41 22 20 42 22 20 43 22 20 23 23 20 24 23 20 25 23 20 26 23 20 27 23 20 28 23 20 29 23 20 30 23 20 31 23 20 32 23 20 33 23 20 34 23 20 35 23 20 36 23 20 37 23 20 38 23 20 39 23 20 40 23 20 42 23 20 43 23 20 22 24 20 23 24 20 24 24 20 25 24 20 26 24 20 27 24 20 28 24 20 29 24 20 30 24 20 31 24 20 32 24 20 33 24 20 34 24 20 35 24 20 36 24 20 37 24 20 38 24 20 39 24 20 40 24 20 41 24 20 42 24 20 43 24 20 22 25 20 23 25 20 24 25 20 25 25 20 26 25 20 28 25 20 29 25 20 30 25 20 31 25 20 32 25 20 33 25 20 34 25 20 35 25 20 36 25 20 37 25 20 38 25 20 39 25 20 40 25 20 42 25 20 43 25 20 44 25 20 21 26 20 22 26 20 23 26 20 24 26 20 25 26 20 36 26 20 37 26 20 38 26 20 39 26 20 40 26 20 42 26 20 43 26 20 44 26 20 20 27 20 21 27 20 22 27 20 23 27 20 24 27 20 25 27 20 26 27 20 42 27 20 43 27 20 44 27 20 19 28 20 20 28 20 21 28 20 22 28 20 23 28 20 24 28 20 25 28 20 26 28 20 27 28 20 29 28 20 30 28 20 31 28 20 32 28 20 33 28 20 34 28 20 35 28 20 36 28 20 42 28 20 43 28 20 44 28 20 45 28 20 19 29 20 20 29 20 21 29 20 22 29 20 23 29 20 24 29 20 25 29 20 26 29 20 27 29 20 28 29 20 29 29 20 30 29 20 31 29 20 32 29 20 33 29 20 34 29 20 35 29 20 36 29 20 37 29 20 41 29 20 42 29 20 43 29 20 44 29 20 45 29 20 19 30 20 20 30 20 21 30 20 22 30 20 23 30 20 24 30 20 25 30 20 26 30 20 27 30 20 28 30 20 29 30 20 30 30 20 31 30 20 32 30 20 33 30 20 34 30 20 35 30 20 36 30 20 41 30 20 42 30 20 43 30 20 44 30 20 45 30 20 19 31 20 20 31 20 21 31 20 22 31 20 23 31 20 24 31 20 25 31 20 26 31 20 27 31 20 28 31 20 29 31 20 30 31 20 31 31 20 32 31 20 33 31 20 34 31 20 35 31 20 42 31 20 43 31 20 44 31 20 45 31 20 18 32 20 19 32 20 20 32 20 21 32 20 22 32 20 23 32 20 24 32 20 25 32 20 26 32 20 27 32 20 28 32 20 29 32 20 30 32 20 31 32 20 32 32 20 33 32 20 34 32 20 42 32 20 43 32 20 44 32 20 45 32 20 18 33 20 19 33 20 20 33 20 21 33 20 22 33 20 23 33 20 24 33 20 25 33 20 26 33 20 27 33 20 28 33 20 29 33 20 30 33 20 31 33 20 32 33 20 33 33 20 45 33 20 18 34 20 19 34 20 20 34 20 21 34 20 22 34 20 23 34 20 24 34 20 25 34 20 26 34 20 27 34 20 28 34 20 29 34 20 30 34 20 31 34 20 32 34 20 44 34 20 45 34 20 18 35 20 19 35 20 20 35 20 21 35 20 22 35 20 23 35 20 24 35 20 25 35 20 26 35 20 27 35 20 28 35 20 29 35 20 30 35 20 31 35 20 44 35 20 45 35 20 18 36 20 19 36 20 20 36 20 21 36 20 22 36 20 23 36 20 24 36 20 25 36 20 26 36 20 27 36 20 28 36 20 29 36 20 30 36 20 31 36 20 41 36 20 42 36 20 43 36 20 44 36 20 45 36 20 19 37 20 20 37 20 21 37 20 22 37 20 23 37 20 24 37 20 25 37 20 26 37 20 27 37 20 28 37 20 29 37 20 30 37 20 41 37 20 43 37 20 44 37 20 45 37 20 19 38 20 20 38 20 21 38 20 22 38 20 23 38 20 24 38 20 25 38 20 26 38 20 27 38 20 28 38 20 29 38 20 30 38 20 41 38 20 43 38 20 44 38 20 45 38 20 20 39 20 21 39 20 22 39 20 23 39 20 24 39 20 25 39 20 26 39 20 27 39 20 28 39 20 29 39 20 41 39 20 44 39 20 45 39 20 20 40 20 21 40 20 22 40 20 23 40 20 24 40 20 25 40 20 26 40 20 27 40 20 28 40 20 29 40 20 30 40 20 31 40 20 21 41 20 22 41 20 23 41 20 24 41 20 25 41 20 26 41 20 27 41 20 28 41 20 29 41 20 30 41 20 31 41 20 22 42 20 23 42 20 24 42 20 25 42 20 26 42 20 27 42 20 28 42 20 29 42 20 30 42 20 31 42 20 24 43 20 25 43 20 26 43 20 27 43 20 28 43 20 29 43 20 30 43 20 31 43 20 25 44 20 26 44 20 27 44 20 28 44 20 29 44 20 30 44 20 31 44 20 32 44 20 26 45 20 27 45 20 28 45 20 29 45 20 30 45 20 31 45 20 32 45 20 27 46 20 28 46 20 29 46 20 30 46 20 31 46 20 32 46 20 33 46 20 29 47 20 30 47 20 31 47 20 32 47 20 33 47 20 34 47 20 30 48 20 31 48 20 32 48 20 33 48 20 32 18 21 33 18 21 34 18 21 35 18 21 36 18 21 37 18 21 38 18 21 39 18 21 40 18 21 41 18 21 29 19 21 30 19 21 31 19 21 32 19 21 33 19 21 34 19 21 35 19 21 36 19 21 37 19 21 38 19 21 39 19 21 40 19 21 41 19 21 42 19 21 27 20 21 28 20 21 29 20 21 30 20 21 31 20 21 32 20 21 33 20 21 34 20 21 35 20 21 36 20 21 37 20 21 38 20 21 39 20 21 40 20 21 41 20 21 42 20 21 26 21 21 27 21 21 28 21 21 29 21 21 30 21 21 31 21 21 32 21 21 33 21 21 34 21 21 35 21 21 36 21 21 37 21 21 38 21 21 39 21 21 40 21 21 41 21 21 42 21 21 43 21 21 24 22 21 25 22 21 26 22 21 27 22 21 28 22 21 29 22 21 30 22 21 31 22 21 32 22 21 33 22 21 34 22 21 35 22 21 36 22 21 37 22 21 38 22 21 39 22 21 40 22 21 41 22 21 42 22 21 43 22 21 24 23 21 25 23 21 26 23 21 27 23 21 28 23 21 30 23 21 31 23 21 32 23 21 33 23 21 34 23 21 35 23 21 36 23 21 37 23 21 38 23 21 39 23 21 40 23 21 41 23 21 42 23 21 23 24 21 24 24 21 25 24 21 26 24 21 27 24 21 28 24 21 33 24 21 34 24 21 35 24 21 36 24 21 37 24 21 38 24 21 39 24 21 40 24 21 41 24 21 42 24 21 43 24 21 22 25 21 23 25 21 24 25 21 25 25 21 26 25 21 27 25 21 28 25 21 29 25 21 37 25 21 38 25 21 39 25 21 40 25 21 41 25 21 42 25 21 43 25 21 44 25 21 21 26 21 22 26 21 23 26 21 24 26 21 25 26 21 26 26 21 27 26 21 28 26 21 29 26 21 30 26 21 31 26 21 32 26 21 33 26 21 42 26 21 43 26 21 44 26 21 20 27 21 21 27 21 22 27 21 23 27 21 24 27 21 25 27 21 26 27 21 27 27 21 28 27 21 29 27 21 30 27 21 31 27 21 32 27 21 33 27 21 34 27 21 35 27 21 36 27 21 37 27 21 38 27 21 40 27 21 43 27 21 44 27 21 19 28 21 20 28 21 21 28 21 22 28 21 23 28 21 24 28 21 25 28 21 26 28 21 27 28 21 28 28 21 29 28 21 30 28 21 31 28 21 32 28 21 33 28 21 34 28 21 35 28 21 36 28 21 37 28 21 38 28 21 39 28 21 40 28 21 43 28 21 44 28 21 45 28 21 19 29 21 20 29 21 21 29 21 22 29 21 23 29 21 24 29 21 25 29 21 26 29 21 27 29 21 28 29 21 29 29 21 30 29 21 31 29 21 32 29 21 33 29 21 34 29 21 35 29 21 36 29 21 37 29 21 38 29 21 39 29 21 42 29 21 43 29 21 44 29 21 45 29 21 19 30 21 20 30 21 21 30 21 22 30 21 23 30 21 24 30 21 25 30 21 26 30 21 27 30 21 28 30 21 29 30 21 30 30 21 31 30 21 32 30 21 33 30 21 34 30 21 35 30 21 36 30 21 37 30 21 38 30 21 42 30 21 43 30 21 44 30 21 45 30 21 19 31 21 20 31 21 21 31 21 22 31 21 23 31 21 24 31 21 25 31 21 26 31 21 27 31 21 28 31 21 29 31 21 30 31 21 31 31 21 32 31 21 33 31 21 34 31 21 35 31 21 36 31 21 42 31 21 43 31 21 44 31 21 45 31 21 19 32 21 20 32 21 21 32 21 22 32 21 23 32 21 24 32 21 25 32 21 26 32 21 27 32 21 28 32 21 29 32 21 30 32 21 31 32 21 32 32 21 33 32 21 34 32 21 42 32 21 43 32 21 44 32 21 45 32 21 19 33 21 20 33 21 21 33 21 22 33 21 23 33 21 24 33 21 25 33 21 26 33 21 27 33 21 28 33 21 29 33 21 30 33 21 31 33 21 32 33 21 44 33 21 45 33 21 19 34 21 20 34 21 21 34 21 22 34 21 23 34 21 24 34 21 25 34 21 26 34 21 27 34 21 28 34 21 29 34 21 30 34 21 31 34 21 19 35 21 20 35 21 21 35 21 22 35 21 23 35 21 24 35 21 25 35 21 26 35 21 27 35 21 28 35 21 29 35 21 30 35 21 33 35 21 19 36 21 20 36 21 21 36 21 22 36 21 23 36 21 24 36 21 25 36 21 26 36 21 27 36 21 28 36 21 29 36 21 30 36 21 32 36 21 33 36 21 45 36 21 20 37 21 21 37 21 22 37 21 23 37 21 24 37 21 25 37 21 26 37 21 27 37 21 28 37 21 29 37 21 30 37 21 31 37 21 32 37 21 33 37 21 44 37 21 45 37 21 20 38 21 21 38 21 22 38 21 23 38 21 24 38 21 25 38 21 26 38 21 27 38 21 28 38 21 29 38 21 30 38 21 31 38 21 32 38 21 33 38 21 44 38 21 45 38 21 20 39 21 21 39 21 22 39 21 23 39 21 24 39 21 25 39 21 26 39 21 27 39 21 28 39 21 29 39 21 30 39 21 31 39 21 32 39 21 22 40 21 23 40 21 24 40 21 25 40 21 26 40 21 27 40 21 28 40 21 29 40 21 30 40 21 31 40 21 32 40 21 24 41 21 25 41 21 26 41 21 27 41 21 28 41 21 29 41 21 30 41 21 31 41 21 32 41 21 33 41 21 24 42 21 25 42 21 26 42 21 27 42 21 28 42 21 29 42 21 30 42 21 31 42 21 32 42 21 33 42 21 39 42 21 25 43 21 26 43 21 27 43 21 28 43 21 29 43 21 30 43 21 31 43 21 32 43 21 33 43 21 39 43 21 40 43 21 26 44 21 27 44 21 28 44 21 29 44 21 30 44 21 31 44 21 32 44 21 33 44 21 39 44 21 28 45 21 29 45 21 30 45 21 31 45 21 32 45 21 33 45 21 29 46 21 30 46 21 31 46 21 32 46 21 33 46 21 34 46 21 30 47 21 31 47 21 32 47 21 33 47 21 34 47 21 35 47 21 31 48 21 32 48 21 33 48 21 34 48 21 35 48 21 32 18 22 33 18 22 34 18 22 35 18 22 36 18 22 37 18 22 38 18 22 39 18 22 40 18 22 41 18 22 29 19 22 30 19 22 31 19 22 32 19 22 33 19 22 34 19 22 35 19 22 36 19 22 37 19 22 38 19 22 39 19 22 40 19 22 41 19 22 42 19 22 27 20 22 28 20 22 29 20 22 30 20 22 31 20 22 32 20 22 33 20 22 34 20 22 35 20 22 36 20 22 37 20 22 38 20 22 39 20 22 40 20 22 41 20 22 42 20 22 26 21 22 27 21 22 28 21 22 29 21 22 30 21 22 31 21 22 32 21 22 33 21 22 34 21 22 35 21 22 36 21 22 37 21 22 38 21 22 39 21 22 40 21 22 41 21 22 42 21 22 43 21 22 25 22 22 26 22 22 27 22 22 28 22 22 29 22 22 30 22 22 31 22 22 32 22 22 33 22 22 34 22 22 35 22 22 36 22 22 37 22 22 38 22 22 39 22 22 40 22 22 41 22 22 42 22 22 24 23 22 25 23 22 26 23 22 27 23 22 28 23 22 29 23 22 30 23 22 31 23 22 35 23 22 36 23 22 37 23 22 38 23 22 39 23 22 40 23 22 41 23 22 42 23 22 23 24 22 24 24 22 25 24 22 26 24 22 27 24 22 28 24 22 29 24 22 30 24 22 31 24 22 32 24 22 38 24 22 39 24 22 40 24 22 41 24 22 42 24 22 43 24 22 22 25 22 23 25 22 24 25 22 25 25 22 26 25 22 27 25 22 28 25 22 29 25 22 30 25 22 31 25 22 32 25 22 33 25 22 34 25 22 35 25 22 36 25 22 41 25 22 42 25 22 43 25 22 44 25 22 21 26 22 22 26 22 23 26 22 24 26 22 25 26 22 26 26 22 27 26 22 28 26 22 29 26 22 30 26 22 31 26 22 32 26 22 33 26 22 34 26 22 35 26 22 36 26 22 37 26 22 38 26 22 39 26 22 40 26 22 41 26 22 42 26 22 43 26 22 44 26 22 21 27 22 22 27 22 23 27 22 24 27 22 25 27 22 26 27 22 27 27 22 28 27 22 29 27 22 30 27 22 31 27 22 32 27 22 33 27 22 34 27 22 35 27 22 36 27 22 37 27 22 38 27 22 39 27 22 40 27 22 41 27 22 42 27 22 43 27 22 44 27 22 20 28 22 21 28 22 22 28 22 23 28 22 24 28 22 25 28 22 26 28 22 27 28 22 28 28 22 29 28 22 30 28 22 31 28 22 32 28 22 33 28 22 34 28 22 35 28 22 36 28 22 37 28 22 38 28 22 39 28 22 40 28 22 41 28 22 42 28 22 44 28 22 45 28 22 20 29 22 21 29 22 22 29 22 23 29 22 24 29 22 25 29 22 26 29 22 27 29 22 28 29 22 29 29 22 30 29 22 31 29 22 32 29 22 33 29 22 34 29 22 35 29 22 36 29 22 37 29 22 38 29 22 39 29 22 40 29 22 44 29 22 45 29 22 20 30 22 21 30 22 22 30 22 23 30 22 24 30 22 25 30 22 26 30 22 27 30 22 28 30 22 29 30 22 30 30 22 31 30 22 32 30 22 33 30 22 34 30 22 35 30 22 36 30 22 37 30 22 45 30 22 20 31 22 21 31 22 22 31 22 23 31 22 24 31 22 25 31 22 26 31 22 27 31 22 28 31 22 29 31 22 30 31 22 31 31 22 32 31 22 33 31 22 34 31 22 19 32 22 20 32 22 21 32 22 22 32 22 23 32 22 24 32 22 25 32 22 26 32 22 27 32 22 28 32 22 29 32 22 30 32 22 31 32 22 32 32 22 19 33 22 20 33 22 21 33 22 22 33 22 23 33 22 24 33 22 25 33 22 26 33 22 27 33 22 28 33 22 29 33 22 30 33 22 31 33 22 34 33 22 35 33 22 19 34 22 20 34 22 21 34 22 22 34 22 23 34 22 24 34 22 25 34 22 26 34 22 27 34 22 28 34 22 29 34 22 30 34 22 33 34 22 34 34 22 35 34 22 20 35 22 21 35 22 22 35 22 23 35 22 24 35 22 25 35 22 26 35 22 27 35 22 28 35 22 29 35 22 31 35 22 32 35 22 33 35 22 34 35 22 35 35 22 20 36 22 21 36 22 22 36 22 23 36 22 24 36 22 25 36 22 26 36 22 27 36 22 28 36 22 29 36 22 30 36 22 31 36 22 32 36 22 33 36 22 34 36 22 35 36 22 21 37 22 22 37 22 23 37 22 24 37 22 25 37 22 26 37 22 27 37 22 28 37 22 29 37 22 30 37 22 31 37 22 32 37 22 33 37 22 34 37 22 22 38 22 23 38 22 24 38 22 25 38 22 26 38 22 27 38 22 28 38 22 29 38 22 30 38 22 31 38 22 32 38 22 33 38 22 34 38 22 23 39 22 24 39 22 25 39 22 26 39 22 27 39 22 28 39 22 29 39 22 30 39 22 31 39 22 32 39 22 33 39 22 34 39 22 24 40 22 25 40 22 26 40 22 27 40 22 28 40 22 29 40 22 30 40 22 31 40 22 32 40 22 33 40 22 34 40 22 25 41 22 26 41 22 27 41 22 28 41 22 29 41 22 30 41 22 31 41 22 32 41 22 33 41 22 34 41 22 35 41 22 26 42 22 27 42 22 28 42 22 29 42 22 30 42 22 31 42 22 32 42 22 33 42 22 34 42 22 35 42 22 39 42 22 40 42 22 27 43 22 28 43 22 29 43 22 30 43 22 31 43 22 32 43 22 33 43 22 34 43 22 39 43 22 40 43 22 28 44 22 29 44 22 30 44 22 31 44 22 32 44 22 33 44 22 34 44 22 37 44 22 38 44 22 39 44 22 29 45 22 30 45 22 31 45 22 32 45 22 33 45 22 34 45 22 35 45 22 36 45 22 37 45 22 38 45 22 39 45 22 30 46 22 31 46 22 32 46 22 33 46 22 34 46 22 35 46 22 36 46 22 31 47 22 32 47 22 33 47 22 34 47 22 35 47 22 36 47 22 32 48 22 33 48 22 34 48 22 35 48 22 33 18 23 34 18 23 35 18 23 36 18 23 37 18 23 38 18 23 39 18 23 40 18 23 31 19 23 32 19 23 33 19 23 34 19 23 35 19 23 36 19 23 37 19 23 38 19 23 39 19 23 40 19 23 41 19 23 29 20 23 30 20 23 31 20 23 32 20 23 33 20 23 34 20 23 35 20 23 36 20 23 37 20 23 38 20 23 39 20 23 40 20 23 41 20 23 42 20 23 27 21 23 28 21 23 29 21 23 30 21 23 31 21 23 32 21 23 33 21 23 34 21 23 35 21 23 36 21 23 37 21 23 38 21 23 39 21 23 40 21 23 41 21 23 42 21 23 26 22 23 27 22 23 28 22 23 29 22 23 30 22 23 31 22 23 32 22 23 33 22 23 34 22 23 35 22 23 36 22 23 37 22 23 38 22 23 39 22 23 40 22 23 41 22 23 25 23 23 26 23 23 27 23 23 28 23 23 29 23 23 30 23 23 31 23 23 32 23 23 33 23 23 34 23 23 35 23 23 39 23 23 40 23 23 41 23 23 42 23 23 24 24 23 25 24 23 26 24 23 27 24 23 28 24 23 29 24 23 30 24 23 31 24 23 32 24 23 33 24 23 34 24 23 35 24 23 36 24 23 37 24 23 38 24 23 39 24 23 40 24 23 41 24 23 42 24 23 43 24 23 23 25 23 24 25 23 25 25 23 26 25 23 27 25 23 28 25 23 29 25 23 30 25 23 31 25 23 32 25 23 33 25 23 34 25 23 35 25 23 36 25 23 37 25 23 38 25 23 39 25 23 40 25 23 41 25 23 42 25 23 43 25 23 44 25 23 23 26 23 24 26 23 25 26 23 26 26 23 27 26 23 28 26 23 29 26 23 30 26 23 31 26 23 32 26 23 33 26 23 34 26 23 35 26 23 36 26 23 37 26 23 38 26 23 39 26 23 40 26 23 41 26 23 42 26 23 43 26 23 44 26 23 22 27 23 23 27 23 24 27 23 25 27 23 26 27 23 27 27 23 28 27 23 29 27 23 30 27 23 31 27 23 32 27 23 33 27 23 34 27 23 35 27 23 36 27 23 37 27 23 38 27 23 39 27 23 40 27 23 41 27 23 42 27 23 43 27 23 44 27 23 21 28 23 22 28 23 23 28 23 24 28 23 25 28 23 26 28 23 27 28 23 28 28 23 29 28 23 30 28 23 31 28 23 32 28 23 33 28 23 34 28 23 35 28 23 36 28 23 37 28 23 38 28 23 39 28 23 40 28 23 41 28 23 42 28 23 44 28 23 45 28 23 21 29 23 22 29 23 23 29 23 24 29 23 25 29 23 26 29 23 27 29 23 28 29 23 29 29 23 30 29 23 31 29 23 32 29 23 33 29 23 34 29 23 35 29 23 36 29 23 37 29 23 20 30 23 21 30 23 22 30 23 23 30 23 24 30 23 25 30 23 26 30 23 27 30 23 28 30 23 29 30 23 30 30 23 31 30 23 32 30 23 33 30 23 34 30 23 39 30 23 43 30 23 44 30 23 45 30 23 20 31 23 21 31 23 22 31 23 23 31 23 24 31 23 25 31 23 26 31 23 27 31 23 28 31 23 29 31 23 30 31 23 31 31 23 32 31 23 35 31 23 36 31 23 37 31 23 38 31 23 39 31 23 42 31 23 43 31 23 44 31 23 45 31 23 20 32 23 21 32 23 22 32 23 23 32 23 24 32 23 25 32 23 26 32 23 27 32 23 28 32 23 29 32 23 30 32 23 33 32 23 34 32 23 35 32 23 36 32 23 37 32 23 38 32 23 42 32 23 43 32 23 44 32 23 45 32 23 20 33 23 21 33 23 22 33 23 23 33 23 24 33 23 25 33 23 26 33 23 27 33 23 28 33 23 29 33 23 30 33 23 31 33 23 32 33 23 33 33 23 34 33 23 35 33 23 36 33 23 37 33 23 42 33 23 43 33 23 44 33 23 45 33 23 20 34 23 21 34 23 22 34 23 23 34 23 24 34 23 25 34 23 26 34 23 27 34 23 28 34 23 29 34 23 30 34 23 31 34 23 32 34 23 33 34 23 34 34 23 35 34 23 36 34 23 37 34 23 38 34 23 43 34 23 44 34 23 21 35 23 22 35 23 23 35 23 24 35 23 25 35 23 26 35 23 27 35 23 28 35 23 29 35 23 30 35 23 31 35 23 32 35 23 33 35 23 34 35 23 35 35 23 36 35 23 37 35 23 44 35 23 45 35 23 22 36 23 23 36 23 24 36 23 25 36 23 26 36 23 27 36 23 28 36 23 29 36 23 30 36 23 31 36 23 32 36 23 33 36 23 34 36 23 35 36 23 36 36 23 37 36 23 23 37 23 24 37 23 25 37 23 26 37 23 27 37 23 28 37 23 29 37 23 30 37 23 31 37 23 32 37 23 33 37 23 34 37 23 35 37 23 36 37 23 24 38 23 25 38 23 26 38 23 27 38 23 28 38 23 29 38 23 30 38 23 31 38 23 32 38 23 33 38 23 34 38 23 35 38 23 36 38 23 25 39 23 26 39 23 27 39 23 28 39 23 29 39 23 30 39 23 31 39 23 32 39 23 33 39 23 34 39 23 35 39 23 36 39 23 26 40 23 27 40 23 28 40 23 29 40 23 30 40 23 31 40 23 32 40 23 33 40 23 34 40 23 35 40 23 36 40 23 45 40 23 27 41 23 28 41 23 29 41 23 30 41 23 31 41 23 32 41 23 33 41 23 34 41 23 35 41 23 36 41 23 40 41 23 41 41 23 44 41 23 29 42 23 30 42 23 31 42 23 32 42 23 33 42 23 34 42 23 35 42 23 36 42 23 39 42 23 40 42 23 29 43 23 30 43 23 31 43 23 32 43 23 33 43 23 34 43 23 35 43 23 36 43 23 39 43 23 40 43 23 30 44 23 31 44 23 32 44 23 33 44 23 34 44 23 35 44 23 36 44 23 38 44 23 39 44 23 40 44 23 31 45 23 32 45 23 33 45 23 34 45 23 35 45 23 36 45 23 37 45 23 38 45 23 32 46 23 33 46 23 34 46 23 35 46 23 36 46 23 37 46 23 38 46 23 33 47 23 34 47 23 35 47 23 36 47 23 33 48 23 34 48 23 35 48 23 34 19 24 35 19 24 36 19 24 37 19 24 38 19 24 39 19 24 40 19 24 31 20 24 32 20 24 33 20 24 34 20 24 35 20 24 36 20 24 37 20 24 38 20 24 39 20 24 40 20 24 41 20 24 30 21 24 31 21 24 32 21 24 33 21 24 34 21 24 35 21 24 36 21 24 37 21 24 38 21 24 39 21 24 40 21 24 41 21 24 28 22 24 29 22 24 30 22 24 31 22 24 32 22 24 33 22 24 34 22 24 35 22 24 36 22 24 37 22 24 38 22 24 39 22 24 40 22 24 41 22 24 42 22 24 27 23 24 28 23 24 29 23 24 30 23 24 31 23 24 32 23 24 33 23 24 34 23 24 35 23 24 36 23 24 37 23 24 38 23 24 39 23 24 40 23 24 41 23 24 42 23 24 26 24 24 27 24 24 28 24 24 29 24 24 30 24 24 31 24 24 32 24 24 33 24 24 34 24 24 35 24 24 36 24 24 37 24 24 38 24 24 39 24 24 40 24 24 41 24 24 42 24 24 25 25 24 26 25 24 27 25 24 28 25 24 29 25 24 30 25 24 31 25 24 32 25 24 33 25 24 34 25 24 35 25 24 36 25 24 37 25 24 38 25 24 39 25 24 40 25 24 41 25 24 42 25 24 43 25 24 44 25 24 24 26 24 25 26 24 26 26 24 27 26 24 28 26 24 29 26 24 30 26 24 31 26 24 32 26 24 33 26 24 34 26 24 35 26 24 36 26 24 37 26 24 38 26 24 39 26 24 40 26 24 41 26 24 42 26 24 43 26 24 44 26 24 23 27 24 24 27 24 25 27 24 26 27 24 27 27 24 28 27 24 29 27 24 30 27 24 31 27 24 32 27 24 33 27 24 34 27 24 35 27 24 36 27 24 37 27 24 38 27 24 39 27 24 40 27 24 41 27 24 42 27 24 43 27 24 44 27 24 23 28 24 24 28 24 25 28 24 26 28 24 27 28 24 28 28 24 29 28 24 30 28 24 31 28 24 32 28 24 33 28 24 34 28 24 35 28 24 36 28 24 37 28 24 42 28 24 43 28 24 44 28 24 45 28 24 22 29 24 23 29 24 24 29 24 25 29 24 26 29 24 27 29 24 28 29 24 29 29 24 30 29 24 31 29 24 32 29 24 33 29 24 39 29 24 40 29 24 41 29 24 42 29 24 43 29 24 44 29 24 45 29 24 22 30 24 23 30 24 24 30 24 25 30 24 26 30 24 27 30 24 28 30 24 29 30 24 30 30 24 31 30 24 32 30 24 33 30 24 34 30 24 35 30 24 36 30 24 37 30 24 38 30 24 39 30 24 40 30 24 42 30 24 43 30 24 44 30 24 45 30 24 22 31 24 23 31 24 24 31 24 25 31 24 26 31 24 27 31 24 28 31 24 29 31 24 30 31 24 31 31 24 32 31 24 33 31 24 34 31 24 35 31 24 36 31 24 37 31 24 38 31 24 39 31 24 41 31 24 42 31 24 43 31 24 44 31 24 45 31 24 22 32 24 23 32 24 24 32 24 25 32 24 26 32 24 27 32 24 28 32 24 29 32 24 30 32 24 31 32 24 32 32 24 33 32 24 34 32 24 35 32 24 36 32 24 37 32 24 38 32 24 39 32 24 40 32 24 41 32 24 42 32 24 43 32 24 44 32 24 45 32 24 25 33 24 26 33 24 27 33 24 28 33 24 29 33 24 30 33 24 31 33 24 32 33 24 33 33 24 34 33 24 35 33 24 36 33 24 37 33 24 38 33 24 39 33 24 40 33 24 41 33 24 42 33 24 43 33 24 44 33 24 25 34 24 26 34 24 27 34 24 28 34 24 29 34 24 30 34 24 31 34 24 32 34 24 33 34 24 34 34 24 35 34 24 36 34 24 37 34 24 38 34 24 39 34 24 40 34 24 43 34 24 44 34 24 25 35 24 26 35 24 27 35 24 28 35 24 29 35 24 30 35 24 31 35 24 32 35 24 33 35 24 34 35 24 35 35 24 36 35 24 37 35 24 38 35 24 39 35 24 25 36 24 26 36 24 27 36 24 28 36 24 29 36 24 30 36 24 31 36 24 32 36 24 33 36 24 34 36 24 35 36 24 36 36 24 37 36 24 38 36 24 26 37 24 27 37 24 28 37 24 29 37 24 30 37 24 31 37 24 32 37 24 33 37 24 34 37 24 35 37 24 36 37 24 37 37 24 38 37 24 45 37 24 27 38 24 28 38 24 29 38 24 30 38 24 31 38 24 32 38 24 33 38 24 34 38 24 35 38 24 36 38 24 37 38 24 38 38 24 45 38 24 27 39 24 28 39 24 29 39 24 30 39 24 31 39 24 32 39 24 33 39 24 34 39 24 35 39 24 36 39 24 37 39 24 38 39 24 28 40 24 29 40 24 30 40 24 31 40 24 32 40 24 33 40 24 34 40 24 35 40 24 36 40 24 37 40 24 41 40 24 42 40 24 43 40 24 44 40 24 45 40 24 29 41 24 30 41 24 31 41 24 32 41 24 33 41 24 34 41 24 35 41 24 36 41 24 37 41 24 41 41 24 42 41 24 44 41 24 45 41 24 30 42 24 31 42 24 32 42 24 33 42 24 34 42 24 35 42 24 36 42 24 37 42 24 39 42 24 40 42 24 41 42 24 31 43 24 32 43 24 33 43 24 34 43 24 35 43 24 36 43 24 37 43 24 39 43 24 40 43 24 31 44 24 32 44 24 33 44 24 34 44 24 35 44 24 36 44 24 39 44 24 40 44 24 33 45 24 34 45 24 35 45 24 36 45 24 37 45 24 38 45 24 39 45 24 33 46 24 34 46 24 35 46 24 36 46 24 37 46 24 38 46 24 35 47 24 36 47 24 37 47 24 35 48 24 36 48 24 36 19 25 37 19 25 38 19 25 33 20 25 34 20 25 35 20 25 36 20 25 37 20 25 38 20 25 39 20 25 40 20 25 32 21 25 33 21 25 34 21 25 35 21 25 36 21 25 37 21 25 38 21 25 39 21 25 40 21 25 41 21 25 30 22 25 31 22 25 32 22 25 33 22 25 34 22 25 35 22 25 36 22 25 37 22 25 38 22 25 39 22 25 40 22 25 41 22 25 29 23 25 30 23 25 31 23 25 32 23 25 33 23 25 34 23 25 35 23 25 36 23 25 37 23 25 38 23 25 39 23 25 40 23 25 41 23 25 42 23 25 28 24 25 29 24 25 30 24 25 31 24 25 32 24 25 33 24 25 34 24 25 35 24 25 36 24 25 37 24 25 38 24 25 39 24 25 40 24 25 41 24 25 42 24 25 43 24 25 27 25 25 28 25 25 29 25 25 30 25 25 31 25 25 32 25 25 33 25 25 34 25 25 35 25 25 36 25 25 37 25 25 38 25 25 39 25 25 40 25 25 41 25 25 42 25 25 43 25 25 44 25 25 26 26 25 27 26 25 28 26 25 29 26 25 30 26 25 31 26 25 32 26 25 33 26 25 34 26 25 35 26 25 36 26 25 37 26 25 38 26 25 39 26 25 40 26 25 41 26 25 42 26 25 43 26 25 44 26 25 25 27 25 26 27 25 27 27 25 28 27 25 29 27 25 30 27 25 31 27 25 32 27 25 33 27 25 34 27 25 35 27 25 36 27 25 37 27 25 42 27 25 43 27 25 44 27 25 24 28 25 25 28 25 26 28 25 27 28 25 28 28 25 29 28 25 30 28 25 31 28 25 32 28 25 33 28 25 34 28 25 35 28 25 36 28 25 38 28 25 39 28 25 40 28 25 41 28 25 42 28 25 43 28 25 44 28 25 25 29 25 26 29 25 27 29 25 28 29 25 29 29 25 30 29 25 31 29 25 32 29 25 33 29 25 34 29 25 35 29 25 36 29 25 37 29 25 38 29 25 39 29 25 40 29 25 41 29 25 42 29 25 43 29 25 44 29 25 45 29 25 25 30 25 26 30 25 27 30 25 28 30 25 29 30 25 30 30 25 31 30 25 32 30 25 33 30 25 34 30 25 35 30 25 36 30 25 37 30 25 38 30 25 39 30 25 40 30 25 42 30 25 43 30 25 44 30 25 45 30 25 27 31 25 28 31 25 29 31 25 30 31 25 31 31 25 32 31 25 33 31 25 34 31 25 35 31 25 36 31 25 37 31 25 38 31 25 39 31 25 40 31 25 41 31 25 42 31 25 43 31 25 44 31 25 45 31 25 26 32 25 27 32 25 28 32 25 29 32 25 30 32 25 31 32 25 32 32 25 33 32 25 34 32 25 35 32 25 36 32 25 37 32 25 38 32 25 39 32 25 40 32 25 41 32 25 42 32 25 43 32 25 44 32 25 26 33 25 27 33 25 28 33 25 29 33 25 30 33 25 31 33 25 32 33 25 33 33 25 34 33 25 35 33 25 36 33 25 37 33 25 38 33 25 39 33 25 40 33 25 41 33 25 42 33 25 43 33 25 44 33 25 26 34 25 27 34 25 28 34 25 29 34 25 30 34 25 31 34 25 32 34 25 33 34 25 34 34 25 35 34 25 36 34 25 37 34 25 38 34 25 39 34 25 40 34 25 43 34 25 44 34 25 27 35 25 28 35 25 29 35 25 30 35 25 31 35 25 32 35 25 33 35 25 34 35 25 35 35 25 36 35 25 37 35 25 38 35 25 39 35 25 27 36 25 28 36 25 29 36 25 30 36 25 31 36 25 32 36 25 33 36 25 34 36 25 35 36 25 36 36 25 37 36 25 38 36 25 28 37 25 29 37 25 30 37 25 31 37 25 32 37 25 33 37 25 34 37 25 35 37 25 36 37 25 37 37 25 38 37 25 39 37 25 44 37 25 45 37 25 29 38 25 30 38 25 31 38 25 32 38 25 33 38 25 34 38 25 35 38 25 36 38 25 37 38 25 38 38 25 39 38 25 43 38 25 44 38 25 45 38 25 30 39 25 31 39 25 32 39 25 33 39 25 34 39 25 35 39 25 36 39 25 37 39 25 38 39 25 31 40 25 32 40 25 33 40 25 34 40 25 35 40 25 36 40 25 37 40 25 38 40 25 42 40 25 43 40 25 44 40 25 45 40 25 32 41 25 33 41 25 34 41 25 35 41 25 36 41 25 37 41 25 41 41 25 42 41 25 43 41 25 44 41 25 45 41 25 32 42 25 33 42 25 34 42 25 35 42 25 36 42 25 37 42 25 38 42 25 41 42 25 42 42 25 43 42 25 44 42 25 33 43 25 34 43 25 35 43 25 36 43 25 37 43 25 39 43 25 40 43 25 41 43 25 33 44 25 34 44 25 35 44 25 36 44 25 37 44 25 39 44 25 40 44 25 34 45 25 35 45 25 36 45 25 37 45 25 38 45 25 39 45 25 35 46 25 36 46 25 37 46 25 38 46 25 36 47 25 37 47 25 36 21 26 37 21 26 38 21 26 39 21 26 40 21 26 34 22 26 35 22 26 36 22 26 37 22 26 38 22 26 39 22 26 40 22 26 41 22 26 33 23 26 34 23 26 35 23 26 36 23 26 37 23 26 38 23 26 39 23 26 40 23 26 41 23 26 31 24 26 32 24 26 33 24 26 34 24 26 35 24 26 36 24 26 37 24 26 38 24 26 39 24 26 40 24 26 41 24 26 42 24 26 43 24 26 44 24 26 32 25 26 33 25 26 34 25 26 35 25 26 36 25 26 37 25 26 38 25 26 39 25 26 40 25 26 41 25 26 42 25 26 43 25 26 44 25 26 31 26 26 32 26 26 33 26 26 34 26 26 35 26 26 36 26 26 37 26 26 38 26 26 39 26 26 40 26 26 41 26 26 42 26 26 43 26 26 44 26 26 30 27 26 31 27 26 32 27 26 33 27 26 34 27 26 35 27 26 36 27 26 37 27 26 38 27 26 39 27 26 40 27 26 41 27 26 42 27 26 43 27 26 44 27 26 29 28 26 30 28 26 31 28 26 32 28 26 33 28 26 34 28 26 35 28 26 36 28 26 37 28 26 38 28 26 39 28 26 40 28 26 41 28 26 42 28 26 43 28 26 44 28 26 45 28 26 29 29 26 30 29 26 31 29 26 32 29 26 33 29 26 34 29 26 35 29 26 36 29 26 37 29 26 38 29 26 39 29 26 40 29 26 41 29 26 42 29 26 43 29 26 44 29 26 45 29 26 29 30 26 30 30 26 31 30 26 32 30 26 33 30 26 34 30 26 35 30 26 36 30 26 37 30 26 38 30 26 39 30 26 40 30 26 41 30 26 42 30 26 43 30 26 44 30 26 45 30 26 29 31 26 30 31 26 31 31 26 32 31 26 33 31 26 34 31 26 35 31 26 36 31 26 37 31 26 38 31 26 39 31 26 40 31 26 41 31 26 42 31 26 43 31 26 44 31 26 29 32 26 30 32 26 31 32 26 32 32 26 33 32 26 34 32 26 35 32 26 36 32 26 37 32 26 38 32 26 39 32 26 40 32 26 41 32 26 42 32 26 43 32 26 44 32 26 29 33 26 30 33 26 31 33 26 32 33 26 33 33 26 34 33 26 35 33 26 36 33 26 37 33 26 38 33 26 39 33 26 40 33 26 41 33 26 42 33 26 43 33 26 44 33 26 29 34 26 30 34 26 31 34 26 32 34 26 33 34 26 34 34 26 35 34 26 36 34 26 37 34 26 38 34 26 39 34 26 40 34 26 41 34 26 29 35 26 30 35 26 31 35 26 32 35 26 33 35 26 34 35 26 35 35 26 36 35 26 37 35 26 38 35 26 39 35 26 40 35 26 30 36 26 31 36 26 32 36 26 33 36 26 34 36 26 35 36 26 36 36 26 37 36 26 38 36 26 39 36 26 40 36 26 45 36 26 31 37 26 32 37 26 33 37 26 34 37 26 35 37 26 36 37 26 37 37 26 38 37 26 39 37 26 40 37 26 43 37 26 44 37 26 45 37 26 31 38 26 32 38 26 33 38 26 34 38 26 35 38 26 36 38 26 37 38 26 38 38 26 39 38 26 42 38 26 43 38 26 44 38 26 45 38 26 31 39 26 32 39 26 33 39 26 34 39 26 35 39 26 36 39 26 37 39 26 38 39 26 41 39 26 42 39 26 45 39 26 32 40 26 33 40 26 34 40 26 35 40 26 36 40 26 37 40 26 38 40 26 39 40 26 40 40 26 41 40 26 42 40 26 32 41 26 33 41 26 34 41 26 35 41 26 36 41 26 37 41 26 38 41 26 41 41 26 42 41 26 43 41 26 44 41 26 45 41 26 33 42 26 34 42 26 35 42 26 36 42 26 37 42 26 38 42 26 40 42 26 41 42 26 42 42 26 43 42 26 44 42 26 34 43 26 35 43 26 36 43 26 37 43 26 38 43 26 39 43 26 40 43 26 41 43 26 42 43 26 34 44 26 35 44 26 36 44 26 37 44 26 38 44 26 39 44 26 40 44 26 41 44 26 35 45 26 36 45 26 37 45 26 38 45 26 39 45 26 36 46 26 37 46 26 38 46 26 39 23 27 40 23 27 41 23 27 37 24 27 38 24 27 39 24 27 40 24 27 41 24 27 42 24 27 43 24 27 34 25 27 35 25 27 36 25 27 37 25 27 38 25 27 39 25 27 40 25 27 41 25 27 42 25 27 43 25 27 44 25 27 32 26 27 33 26 27 34 26 27 35 26 27 36 26 27 37 26 27 38 26 27 39 26 27 40 26 27 41 26 27 42 26 27 43 26 27 44 26 27 32 27 27 33 27 27 34 27 27 35 27 27 36 27 27 37 27 27 38 27 27 39 27 27 40 27 27 41 27 27 42 27 27 43 27 27 44 27 27 32 28 27 33 28 27 34 28 27 35 28 27 36 28 27 37 28 27 38 28 27 39 28 27 40 28 27 41 28 27 42 28 27 43 28 27 44 28 27 32 29 27 33 29 27 34 29 27 35 29 27 36 29 27 37 29 27 38 29 27 39 29 27 40 29 27 41 29 27 42 29 27 43 29 27 44 29 27 45 29 27 32 30 27 33 30 27 34 30 27 35 30 27 36 30 27 37 30 27 38 30 27 39 30 27 40 30 27 41 30 27 42 30 27 43 30 27 44 30 27 45 30 27 32 31 27 33 31 27 34 31 27 35 31 27 36 31 27 37 31 27 38 31 27 39 31 27 40 31 27 41 31 27 42 31 27 43 31 27 44 31 27 32 32 27 33 32 27 34 32 27 35 32 27 36 32 27 37 32 27 38 32 27 39 32 27 40 32 27 41 32 27 42 32 27 43 32 27 44 32 27 32 33 27 33 33 27 34 33 27 35 33 27 36 33 27 37 33 27 38 33 27 39 33 27 40 33 27 41 33 27 42 33 27 43 33 27 44 33 27 32 34 27 33 34 27 34 34 27 35 34 27 36 34 27 37 34 27 38 34 27 39 34 27 40 34 27 41 34 27 32 35 27 33 35 27 34 35 27 35 35 27 36 35 27 37 35 27 38 35 27 39 35 27 40 35 27 41 35 27 33 36 27 34 36 27 35 36 27 36 36 27 37 36 27 38 36 27 39 36 27 40 36 27 41 36 27 44 36 27 33 37 27 34 37 27 35 37 27 36 37 27 37 37 27 38 37 27 39 37 27 40 37 27 44 37 27 45 37 27 33 38 27 34 38 27 35 38 27 36 38 27 37 38 27 38 38 27 39 38 27 42 38 27 43 38 27 44 38 27 45 38 27 34 39 27 35 39 27 36 39 27 37 39 27 38 39 27 39 39 27 41 39 27 42 39 27 43 39 27 45 39 27 34 40 27 35 40 27 36 40 27 37 40 27 38 40 27 39 40 27 41 40 27 42 40 27 34 41 27 35 41 27 36 41 27 37 41 27 38 41 27 39 41 27 40 41 27 41 41 27 42 41 27 43 41 27 44 41 27 45 41 27 35 42 27 36 42 27 37 42 27 38 42 27 40 42 27 41 42 27 42 42 27 43 42 27 44 42 27 35 43 27 36 43 27 37 43 27 38 43 27 39 43 27 40 43 27 41 43 27 36 44 27 37 44 27 38 44 27 39 44 27 40 44 27 36 45 27 37 45 27 38 45 27 39 45 27 39 25 28 40 25 28 41 25 28 42 25 28 43 25 28 44 25 28 37 26 28 38 26 28 39 26 28 40 26 28 41 26 28 42 26 28 43 26 28 44 26 28 35 27 28 36 27 28 37 27 28 38 27 28 39 27 28 40 27 28 41 27 28 42 27 28 43 27 28 44 27 28 35 28 28 36 28 28 37 28 28 38 28 28 39 28 28 40 28 28 41 28 28 42 28 28 43 28 28 44 28 28 35 29 28 36 29 28 37 29 28 38 29 28 39 29 28 40 29 28 41 29 28 42 29 28 43 29 28 44 29 28 45 29 28 34 30 28 35 30 28 36 30 28 37 30 28 38 30 28 39 30 28 40 30 28 41 30 28 42 30 28 34 31 28 35 31 28 36 31 28 37 31 28 38 31 28 39 31 28 40 31 28 41 31 28 42 31 28 43 31 28 44 31 28 45 31 28 34 32 28 35 32 28 36 32 28 37 32 28 38 32 28 39 32 28 40 32 28 41 32 28 42 32 28 43 32 28 44 32 28 45 32 28 34 33 28 35 33 28 36 33 28 37 33 28 38 33 28 39 33 28 40 33 28 41 33 28 42 33 28 43 33 28 44 33 28 45 33 28 34 34 28 35 34 28 36 34 28 37 34 28 38 34 28 39 34 28 40 34 28 34 35 28 35 35 28 36 35 28 37 35 28 38 35 28 39 35 28 41 35 28 42 35 28 34 36 28 35 36 28 36 36 28 37 36 28 38 36 28 39 36 28 40 36 28 41 36 28 44 36 28 34 37 28 35 37 28 36 37 28 37 37 28 38 37 28 39 37 28 40 37 28 35 38 28 36 38 28 37 38 28 38 38 28 39 38 28 43 38 28 44 38 28 45 38 28 35 39 28 36 39 28 37 39 28 38 39 28 39 39 28 40 39 28 42 39 28 43 39 28 44 39 28 35 40 28 36 40 28 37 40 28 38 40 28 39 40 28 41 40 28 42 40 28 36 41 28 37 41 28 38 41 28 39 41 28 41 41 28 42 41 28 43 41 28 36 42 28 37 42 28 38 42 28 39 42 28 41 42 28 42 42 28 43 42 28 44 42 28 37 43 28 38 43 28 39 43 28 40 43 28 41 43 28 38 44 28 39 44 28 40 44 28 38 45 28 41 26 29 42 26 29 43 26 29 44 26 29 39 27 29 40 27 29 41 27 29 42 27 29 43 27 29 44 27 29 38 28 29 39 28 29 40 28 29 41 28 29 42 28 29 43 28 29 44 28 29 37 29 29 38 29 29 39 29 29 40 29 29 41 29 29 42 29 29 43 29 29 44 29 29 37 30 29 38 30 29 39 30 29 40 30 29 41 30 29 42 30 29 36 31 29 37 31 29 38 31 29 39 31 29 40 31 29 41 31 29 42 31 29 43 31 29 44 31 29 36 32 29 37 32 29 38 32 29 39 32 29 40 32 29 41 32 29 42 32 29 43 32 29 44 32 29 45 32 29 36 33 29 37 33 29 38 33 29 39 33 29 40 33 29 41 33 29 36 34 29 37 34 29 38 34 29 39 34 29 40 34 29 41 34 29 36 35 29 37 35 29 38 35 29 39 35 29 40 35 29 41 35 29 42 35 29 36 36 29 37 36 29 38 36 29 39 36 29 40 36 29 41 36 29 44 36 29 36 37 29 37 37 29 38 37 29 39 37 29 40 37 29 41 37 29 36 38 29 37 38 29 38 38 29 39 38 29 40 38 29 44 38 29 45 38 29 36 39 29 37 39 29 38 39 29 39 39 29 40 39 29 42 39 29 43 39 29 44 39 29 37 40 29 38 40 29 39 40 29 40 40 29 41 40 29 42 40 29 43 40 29 44 40 29 38 41 29 39 41 29 40 41 29 41 41 29 42 41 29 38 42 29 39 42 29 40 42 29 41 42 29 42 42 29 43 42 29 44 42 29 45 42 29 38 43 29 39 43 29 40 43 29 41 43 29 39 44 29 40 44 29 44 26 30 43 27 30 44 27 30 41 28 30 42 28 30 43 28 30 44 28 30 40 29 30 41 29 30 42 29 30 39 30 30 40 30 30 41 30 30 44 30 30 39 31 30 40 31 30 41 31 30 42 31 30 43 31 30 44 31 30 38 32 30 39 32 30 40 32 30 41 32 30 42 32 30 44 32 30 38 33 30 39 33 30 40 33 30 41 33 30 38 34 30 39 34 30 40 34 30 41 34 30 42 34 30 43 34 30 44 34 30 45 34 30 38 35 30 39 35 30 40 35 30 41 35 30 42 35 30 38 36 30 39 36 30 40 36 30 41 36 30 44 36 30 45 36 30 38 37 30 39 37 30 40 37 30 41 37 30 43 37 30 44 37 30 45 37 30 38 38 30 39 38 30 40 38 30 41 38 30 38 39 30 39 39 30 40 39 30 42 39 30 43 39 30 44 39 30 38 40 30 39 40 30 40 40 30 42 40 30 43 40 30 44 40 30 39 41 30 40 41 30 41 41 30 42 41 30 43 41 30 39 42 30 40 42 30 41 42 30 42 42 30 44 42 30 45 42 30 39 43 30 40 43 30 41 43 30 41 30 31 43 30 31 44 30 31 40 31 31 41 31 31 42 31 31 43 31 31 44 31 31 40 32 31 41 32 31 42 32 31 43 32 31 40 33 31 41 33 31 42 33 31 43 33 31 44 33 31 39 34 31 40 34 31 41 34 31 42 34 31 43 34 31 44 34 31 39 35 31 40 35 31 41 35 31 42 35 31 43 35 31 44 35 31 39 36 31 40 36 31 41 36 31 42 36 31 44 36 31 45 36 31 39 37 31 40 37 31 41 37 31 42 37 31 43 37 31 44 37 31 45 37 31 39 38 31 40 38 31 41 38 31 42 38 31 43 38 31 44 38 31 39 39 31 40 39 31 41 39 31 42 39 31 43 39 31 44 39 31 39 40 31 40 40 31 41 40 31 42 40 31 43 40 31 44 40 31 40 41 31 41 41 31 42 41 31 43 41 31 44 41 31 40 42 31 41 42 31 42 42 31 44 42 31 43 30 32 44 30 32 42 31 32 43 31 32 44 31 32 41 32 32 42 32 32 43 32 32 44 32 32 41 33 32 42 33 32 43 33 32 44 33 32 45 33 32 40 34 32 41 34 32 42 34 32 43 34 32 44 34 32 40 35 32 41 35 32 42 35 32 43 35 32 44 35 32 40 36 32 41 36 32 42 36 32 40 37 32 41 37 32 42 37 32 44 37 32 45 37 32 40 38 32 41 38 32 42 38 32 43 38 32 44 38 32 45 38 32 40 39 32 41 39 32 42 39 32 43 39 32 44 39 32 40 40 32 41 40 32 42 40 32 43 40 32 44 40 32 45 40 32 41 41 32 42 41 32 41 42 32 44 30 33 43 31 33 44 31 33 42 32 33 43 32 33 44 32 33 42 33 33 43 33 33 44 33 33 41 34 33 42 34 33 43 34 33 44 34 33 45 34 33 41 35 33 42 35 33 43 35 33 44 35 33 45 35 33 41 36 33 42 36 33 40 37 33 41 37 33 42 37 33 43 37 33 44 37 33 45 37 33 41 38 33 42 38 33 43 38 33 44 38 33 45 38 33 41 39 33 42 39 33 43 39 33 44 39 33 45 39 33 41 40 33 42 40 33 43 40 33 44 40 33 45 40 33 42 41 33 44 31 34 43 32 34 44 32 34 42 33 34 43 33 34 44 33 34 42 34 34 43 34 34 44 34 34 45 34 34 42 35 34 43 35 34 44 35 34 45 35 34 42 36 34 43 36 34 44 36 34 41 37 34 42 37 34 43 37 34 44 37 34 41 38 34 42 38 34 43 38 34 44 38 34 45 38 34 42 39 34 43 39 34 44 39 34 45 39 34 42 40 34 43 40 34 43 33 35 44 33 35 43 34 35 44 34 35 43 35 35 44 35 35 43 36 35 44 36 35 42 37 35 43 37 35 44 37 35 42 38 35 43 38 35 44 38 35 45 38 35 43 39 35 44 39 35 44 34 36 45 34 36 44 35 36 45 35 36 43 36 36 44 36 36 45 36 36 43 37 36 44 37 36 45 37 36 44 38 36 52 53 26 48 54 26 49 54 26 50 54 26 51 54 26 47 55 26 48 55 26 49 55 26 50 55 26 51 55 26 47 56 26 48 56 26 49 56 26 50 56 26 50 52 27 51 52 27 52 52 27 46 53 27 47 53 27 48 53 27 49 53 27 50 53 27 51 53 27 52 53 27 46 54 27 47 54 27 48 54 27 49 54 27 50 54 27 51 54 27 52 54 27 46 55 27 47 55 27 48 55 27 49 55 27 50 55 27 51 55 27 52 55 27 47 56 27 48 56 27 49 56 27 50 56 27 51 56 27 47 57 27 48 57 27 49 57 27 50 57 27 45 62 27 46 62 27 49 62 27 47 63 27 48 63 27 49 63 27 49 52 28 50 52 28 51 52 28 52 52 28 53 52 28 45 53 28 46 53 28 47 53 28 48 53 28 49 53 28 50 53 28 51 53 28 52 53 28 53 53 28 46 54 28 47 54 28 48 54 28 49 54 28 50 54 28 51 54 28 52 54 28 53 54 28 46 55 28 47 55 28 48 55 28 49 55 28 50 55 28 51 55 28 52 55 28 47 56 28 48 56 28 49 56 28 50 56 28 51 56 28 52 56 28 47 57 28 48 57 28 49 57 28 50 57 28 51 57 28 46 58 28 48 58 28 49 58 28 50 58 28 46 59 28 46 60 28 46 61 28 49 61 28 50 61 28 46 62 28 47 62 28 48 62 28 49 62 28 50 62 28 47 63 28 48 63 28 45 52 29 46 52 29 47 52 29 48 52 29 49 52 29 50 52 29 51 52 29 52 52 29 53 52 29 45 53 29 46 53 29 47 53 29 48 53 29 49 53 29 50 53 29 51 53 29 52 53 29 53 53 29 54 53 29 45 54 29 46 54 29 47 54 29 48 54 29 49 54 29 50 54 29 51 54 29 52 54 29 53 54 29 54 54 29 46 55 29 47 55 29 48 55 29 49 55 29 50 55 29 51 55 29 52 55 29 53 55 29 47 56 29 48 56 29 49 56 29 50 56 29 51 56 29 52 56 29 53 56 29 47 57 29 48 57 29 49 57 29 50 57 29 51 57 29 52 57 29 45 58 29 46 58 29 47 58 29 48 58 29 49 58 29 50 58 29 51 58 29 45 59 29 46 59 29 47 59 29 48 59 29 49 59 29 50 59 29 46 60 29 47 60 29 50 60 29 51 60 29 52 60 29 46 61 29 47 61 29 48 61 29 49 61 29 50 61 29 51 61 29 46 62 29 47 62 29 48 62 29 49 62 29 50 62 29 46 63 29 47 63 29 48 63 29 48 51 30 45 52 30 46 52 30 47 52 30 48 52 30 49 52 30 50 52 30 51 52 30 52 52 30 45 53 30 46 53 30 47 53 30 48 53 30 49 53 30 50 53 30 51 53 30 52 53 30 53 53 30 54 53 30 45 54 30 46 54 30 47 54 30 48 54 30 49 54 30 50 54 30 51 54 30 52 54 30 53 54 30 54 54 30 55 54 30 45 55 30 46 55 30 47 55 30 48 55 30 49 55 30 50 55 30 51 55 30 52 55 30 53 55 30 54 55 30 46 56 30 47 56 30 48 56 30 49 56 30 50 56 30 51 56 30 52 56 30 53 56 30 54 56 30 46 57 30 47 57 30 48 57 30 49 57 30 50 57 30 51 57 30 52 57 30 53 57 30 54 57 30 45 58 30 46 58 30 47 58 30 48 58 30 49 58 30 50 58 30 51 58 30 52 58 30 53 58 30 45 59 30 46 59 30 47 59 30 48 59 30 49 59 30 50 59 30 51 59 30 52 59 30 53 59 30 46 60 30 47 60 30 48 60 30 49 60 30 50 60 30 51 60 30 52 60 30 53 60 30 46 61 30 47 61 30 48 61 30 49 61 30 50 61 30 51 61 30 52 61 30 53 61 30 46 62 30 47 62 30 48 62 30 49 62 30 50 62 30 51 62 30 52 62 30 53 62 30 46 63 30 47 63 30 48 63 30 49 63 30 50 63 30 47 64 30 48 64 30 46 51 31 47 51 31 48 51 31 49 51 31 50 51 31 52 51 31 54 51 31 57 51 31 58 51 31 45 52 31 46 52 31 47 52 31 48 52 31 49 52 31 50 52 31 51 52 31 52 52 31 55 52 31 56 52 31 57 52 31 58 52 31 45 53 31 46 53 31 47 53 31 48 53 31 49 53 31 50 53 31 51 53 31 52 53 31 53 53 31 54 53 31 55 53 31 56 53 31 57 53 31 59 53 31 45 54 31 46 54 31 47 54 31 48 54 31 49 54 31 50 54 31 51 54 31 52 54 31 53 54 31 54 54 31 55 54 31 56 54 31 57 54 31 58 54 31 45 55 31 46 55 31 47 55 31 48 55 31 49 55 31 50 55 31 51 55 31 52 55 31 53 55 31 54 55 31 55 55 31 56 55 31 57 55 31 58 55 31 45 56 31 46 56 31 47 56 31 48 56 31 49 56 31 50 56 31 51 56 31 52 56 31 53 56 31 54 56 31 55 56 31 56 56 31 46 57 31 47 57 31 48 57 31 49 57 31 50 57 31 51 57 31 52 57 31 53 57 31 54 57 31 55 57 31 56 57 31 45 58 31 46 58 31 47 58 31 48 58 31 49 58 31 50 58 31 51 58 31 52 58 31 53 58 31 54 58 31 55 58 31 46 59 31 47 59 31 48 59 31 49 59 31 50 59 31 51 59 31 52 59 31 53 59 31 54 59 31 46 60 31 47 60 31 48 60 31 49 60 31 50 60 31 51 60 31 52 60 31 53 60 31 54 60 31 46 61 31 47 61 31 48 61 31 49 61 31 50 61 31 51 61 31 52 61 31 46 62 31 47 62 31 48 62 31 49 62 31 50 62 31 46 63 31 47 63 31 48 63 31 49 63 31 47 64 31 48 64 31 51 49 32 52 49 32 53 49 32 56 49 32 57 49 32 52 50 32 53 50 32 54 50 32 56 50 32 57 50 32 58 50 32 46 51 32 47 51 32 48 51 32 49 51 32 50 51 32 51 51 32 52 51 32 53 51 32 54 51 32 55 51 32 56 51 32 57 51 32 58 51 32 45 52 32 46 52 32 47 52 32 48 52 32 49 52 32 50 52 32 51 52 32 52 52 32 55 52 32 56 52 32 57 52 32 58 52 32 45 53 32 46 53 32 47 53 32 48 53 32 49 53 32 50 53 32 51 53 32 52 53 32 53 53 32 57 53 32 58 53 32 45 54 32 46 54 32 47 54 32 48 54 32 49 54 32 50 54 32 51 54 32 52 54 32 53 54 32 54 54 32 55 54 32 56 54 32 57 54 32 58 54 32 45 55 32 46 55 32 47 55 32 48 55 32 49 55 32 50 55 32 51 55 32 52 55 32 53 55 32 54 55 32 55 55 32 56 55 32 57 55 32 46 56 32 47 56 32 48 56 32 49 56 32 50 56 32 52 56 32 53 56 32 54 56 32 55 56 32 56 56 32 46 57 32 47 57 32 48 57 32 49 57 32 50 57 32 53 57 32 54 57 32 55 57 32 46 58 32 47 58 32 48 58 32 46 59 32 47 59 32 48 59 32 49 59 32 46 60 32 47 60 32 48 60 32 46 61 32 47 61 32 48 61 32 46 62 32 47 62 32 48 62 32 46 63 32 47 63 32 48 63 32 46 64 32 47 64 32 48 64 32 54 48 33 55 48 33 56 48 33 57 48 33 51 49 33 52 49 33 53 49 33 54 49 33 55 49 33 56 49 33 57 49 33 51 50 33 52 50 33 53 50 33 54 50 33 55 50 33 56 50 33 57 50 33 58 50 33 46 51 33 47 51 33 48 51 33 49 51 33 50 51 33 51 51 33 52 51 33 53 51 33 54 51 33 55 51 33 56 51 33 57 51 33 58 51 33 45 52 33 46 52 33 47 52 33 48 52 33 49 52 33 50 52 33 51 52 33 52 52 33 53 52 33 57 52 33 58 52 33 45 53 33 46 53 33 47 53 33 48 53 33 49 53 33 50 53 33 51 53 33 52 53 33 53 53 33 45 54 33 46 54 33 47 54 33 48 54 33 49 54 33 50 54 33 51 54 33 52 54 33 53 54 33 54 54 33 46 55 33 47 55 33 48 55 33 49 55 33 50 55 33 51 55 33 54 55 33 46 56 33 47 56 33 48 56 33 49 56 33 50 56 33 46 57 33 47 57 33 48 57 33 49 57 33 50 57 33 47 58 33 48 58 33 49 58 33 48 59 33 49 59 33 46 60 33 47 60 33 48 60 33 46 61 33 47 61 33 48 61 33 46 62 33 47 62 33 48 62 33 46 63 33 47 63 33 48 63 33 52 48 34 53 48 34 54 48 34 55 48 34 56 48 34 57 48 34 52 49 34 53 49 34 54 49 34 55 49 34 56 49 34 57 49 34 53 50 34 54 50 34 55 50 34 56 50 34 57 50 34 46 51 34 47 51 34 48 51 34 49 51 34 53 51 34 54 51 34 55 51 34 56 51 34 57 51 34 58 51 34 46 52 34 47 52 34 48 52 34 53 52 34 46 53 34 47 53 34 52 53 34 53 53 34 50 54 34 51 54 34 52 54 34 53 54 34 54 54 34 49 55 34 50 55 34 48 56 34 49 56 34 50 56 34 48 57 34 49 57 34 50 57 34 48 58 34 49 58 34 50 58 34 49 59 34 48 60 34 48 61 34 46 62 34 47 62 34 48 62 34 47 63 34 48 63 34 56 48 35 57 48 35 53 49 35 54 49 35 55 49 35 56 49 35 39 54 26 40 54 26 41 54 26 39 55 26 40 55 26 41 55 26 42 55 26 43 55 26 40 56 26 41 56 26 42 56 26 41 57 26 37 52 27 38 52 27 37 53 27 38 53 27 39 53 27 40 53 27 41 53 27 42 53 27 43 53 27 44 53 27 37 54 27 38 54 27 39 54 27 40 54 27 41 54 27 42 54 27 43 54 27 38 55 27 39 55 27 40 55 27 41 55 27 42 55 27 43 55 27 38 56 27 39 56 27 40 56 27 41 56 27 42 56 27 43 56 27 39 57 27 40 57 27 41 57 27 42 57 27 44 62 27 41 63 27 42 63 27 37 52 28 38 52 28 37 53 28 38 53 28 39 53 28 40 53 28 41 53 28 42 53 28 43 53 28 44 53 28 37 54 28 38 54 28 39 54 28 40 54 28 41 54 28 42 54 28 43 54 28 44 54 28 37 55 28 38 55 28 39 55 28 40 55 28 41 55 28 42 55 28 43 55 28 38 56 28 39 56 28 40 56 28 41 56 28 42 56 28 43 56 28 38 57 28 39 57 28 40 57 28 41 57 28 42 57 28 40 58 28 41 58 28 42 58 28 44 58 28 43 59 28 44 59 28 45 59 28 43 60 28 44 60 28 43 61 28 44 61 28 40 62 28 41 62 28 42 62 28 43 62 28 44 62 28 40 63 28 41 63 28 42 63 28 43 63 28 41 52 29 42 52 29 43 52 29 44 52 29 36 53 29 37 53 29 38 53 29 39 53 29 40 53 29 41 53 29 42 53 29 43 53 29 44 53 29 36 54 29 37 54 29 38 54 29 39 54 29 40 54 29 41 54 29 42 54 29 43 54 29 44 54 29 36 55 29 37 55 29 38 55 29 39 55 29 40 55 29 41 55 29 42 55 29 43 55 29 44 55 29 37 56 29 38 56 29 39 56 29 40 56 29 41 56 29 42 56 29 43 56 29 37 57 29 38 57 29 39 57 29 40 57 29 41 57 29 42 57 29 38 58 29 39 58 29 40 58 29 41 58 29 42 58 29 43 58 29 44 58 29 40 59 29 41 59 29 42 59 29 43 59 29 44 59 29 39 60 29 42 60 29 43 60 29 44 60 29 38 61 29 39 61 29 40 61 29 42 61 29 43 61 29 44 61 29 39 62 29 40 62 29 41 62 29 42 62 29 43 62 29 44 62 29 41 63 29 42 63 29 43 63 29 44 63 29 40 52 30 41 52 30 42 52 30 43 52 30 44 52 30 35 53 30 36 53 30 37 53 30 38 53 30 39 53 30 40 53 30 41 53 30 42 53 30 43 53 30 44 53 30 35 54 30 36 54 30 37 54 30 38 54 30 39 54 30 40 54 30 41 54 30 42 54 30 43 54 30 44 54 30 36 55 30 37 55 30 38 55 30 39 55 30 40 55 30 41 55 30 42 55 30 43 55 30 44 55 30 36 56 30 37 56 30 38 56 30 39 56 30 40 56 30 41 56 30 42 56 30 43 56 30 36 57 30 37 57 30 38 57 30 39 57 30 40 57 30 41 57 30 42 57 30 43 57 30 37 58 30 38 58 30 39 58 30 40 58 30 41 58 30 42 58 30 43 58 30 44 58 30 37 59 30 38 59 30 39 59 30 40 59 30 41 59 30 42 59 30 43 59 30 44 59 30 37 60 30 38 60 30 39 60 30 40 60 30 41 60 30 42 60 30 43 60 30 44 60 30 38 61 30 39 61 30 40 61 30 41 61 30 42 61 30 43 61 30 37 62 30 38 62 30 39 62 30 40 62 30 41 62 30 42 62 30 43 62 30 39 63 30 40 63 30 41 63 30 42 63 30 43 63 30 44 63 30 40 64 30 41 64 30 42 64 30 32 51 31 41 51 31 42 51 31 43 51 31 44 51 31 32 52 31 33 52 31 34 52 31 38 52 31 39 52 31 40 52 31 41 52 31 42 52 31 43 52 31 44 52 31 32 53 31 33 53 31 34 53 31 37 53 31 38 53 31 39 53 31 40 53 31 41 53 31 42 53 31 43 53 31 44 53 31 30 54 31 31 54 31 32 54 31 33 54 31 34 54 31 35 54 31 36 54 31 37 54 31 38 54 31 39 54 31 40 54 31 41 54 31 42 54 31 43 54 31 44 54 31 31 55 31 32 55 31 33 55 31 34 55 31 35 55 31 36 55 31 37 55 31 38 55 31 39 55 31 40 55 31 41 55 31 42 55 31 43 55 31 44 55 31 32 56 31 33 56 31 34 56 31 35 56 31 36 56 31 37 56 31 38 56 31 39 56 31 40 56 31 41 56 31 42 56 31 43 56 31 44 56 31 34 57 31 35 57 31 36 57 31 37 57 31 38 57 31 39 57 31 40 57 31 41 57 31 42 57 31 43 57 31 44 57 31 45 57 31 34 58 31 35 58 31 36 58 31 37 58 31 38 58 31 39 58 31 40 58 31 41 58 31 42 58 31 43 58 31 44 58 31 35 59 31 36 59 31 37 59 31 38 59 31 39 59 31 40 59 31 41 59 31 42 59 31 43 59 31 44 59 31 36 60 31 37 60 31 38 60 31 39 60 31 40 60 31 41 60 31 42 60 31 43 60 31 37 61 31 38 61 31 39 61 31 40 61 31 41 61 31 42 61 31 43 61 31 37 62 31 38 62 31 39 62 31 40 62 31 41 62 31 42 62 31 43 62 31 39 63 31 40 63 31 41 63 31 42 63 31 43 63 31 44 63 31 40 64 31 41 64 31 42 64 31 43 64 31 32 49 32 33 49 32 32 50 32 33 50 32 36 50 32 37 50 32 38 50 32 31 51 32 32 51 32 33 51 32 34 51 32 35 51 32 36 51 32 37 51 32 38 51 32 39 51 32 40 51 32 41 51 32 42 51 32 43 51 32 44 51 32 30 52 32 31 52 32 32 52 32 33 52 32 34 52 32 38 52 32 39 52 32 40 52 32 41 52 32 42 52 32 43 52 32 44 52 32 30 53 32 31 53 32 32 53 32 33 53 32 37 53 32 38 53 32 39 53 32 40 53 32 41 53 32 42 53 32 43 53 32 44 53 32 31 54 32 32 54 32 33 54 32 34 54 32 35 54 32 36 54 32 37 54 32 38 54 32 39 54 32 40 54 32 41 54 32 42 54 32 43 54 32 44 54 32 32 55 32 33 55 32 34 55 32 35 55 32 36 55 32 37 55 32 38 55 32 39 55 32 40 55 32 41 55 32 42 55 32 43 55 32 44 55 32 32 56 32 33 56 32 34 56 32 35 56 32 36 56 32 37 56 32 38 56 32 39 56 32 40 56 32 41 56 32 42 56 32 43 56 32 44 56 32 45 56 32 34 57 32 35 57 32 36 57 32 37 57 32 38 57 32 40 57 32 41 57 32 42 57 32 43 57 32 44 57 32 35 58 32 36 58 32 37 58 32 42 58 32 43 58 32 44 58 32 37 59 32 42 59 32 43 59 32 42 60 32 43 60 32 41 61 32 42 61 32 43 61 32 41 62 32 42 62 32 43 62 32 44 62 32 40 63 32 41 63 32 42 63 32 43 63 32 44 63 32 41 64 32 42 64 32 43 64 32 44 64 32 33 48 33 32 49 33 33 49 33 34 49 33 35 49 33 36 49 33 37 49 33 38 49 33 32 50 33 33 50 33 34 50 33 35 50 33 36 50 33 37 50 33 38 50 33 32 51 33 33 51 33 34 51 33 35 51 33 36 51 33 37 51 33 38 51 33 39 51 33 40 51 33 41 51 33 42 51 33 43 51 33 44 51 33 32 52 33 33 52 33 34 52 33 36 52 33 37 52 33 38 52 33 39 52 33 40 52 33 41 52 33 42 52 33 43 52 33 44 52 33 32 53 33 36 53 33 37 53 33 38 53 33 39 53 33 40 53 33 41 53 33 42 53 33 43 53 33 44 53 33 36 54 33 37 54 33 38 54 33 39 54 33 40 54 33 41 54 33 42 54 33 43 54 33 44 54 33 34 55 33 35 55 33 36 55 33 37 55 33 38 55 33 39 55 33 40 55 33 41 55 33 42 55 33 43 55 33 44 55 33 40 56 33 41 56 33 42 56 33 43 56 33 40 57 33 41 57 33 42 57 33 43 57 33 40 58 33 41 58 33 42 58 33 43 58 33 41 59 33 42 59 33 43 59 33 41 60 33 42 60 33 43 60 33 41 61 33 42 61 33 43 61 33 42 62 33 43 62 33 41 63 33 42 63 33 43 63 33 44 63 33 42 64 33 43 64 33 44 64 33 33 49 34 34 49 34 35 49 34 36 49 34 37 49 34 38 49 34 32 50 34 33 50 34 34 50 34 35 50 34 36 50 34 37 50 34 38 50 34 32 51 34 33 51 34 34 51 34 35 51 34 36 51 34 37 51 34 38 51 34 40 51 34 41 51 34 42 51 34 43 51 34 32 52 34 33 52 34 34 52 34 35 52 34 36 52 34 37 52 34 40 52 34 41 52 34 42 52 34 43 52 34 44 52 34 36 53 34 37 53 34 38 53 34 42 53 34 43 53 34 44 53 34 36 54 34 37 54 34 38 54 34 39 54 34 40 54 34 36 55 34 39 55 34 40 55 34 41 55 34 40 56 34 41 56 34 40 57 34 41 57 34 42 57 34 40 58 34 41 58 34 42 58 34 40 59 34 41 59 34 41 60 34 41 61 34 42 61 34 43 61 34 42 62 34 43 62 34 42 63 34 43 63 34 44 63 34 33 49 35 34 49 35 35 49 35 36 49 35 37 49 35 34 50 35 35 50 35 36 50 35 35 51 35 34 49 36 35 49 36 55 60 21 56 60 21 57 60 21 57 57 22 58 57 22 56 58 22 57 58 22 58 58 22 55 59 22 56 59 22 57 59 22 58 59 22 59 59 22 53 60 22 54 60 22 55 60 22 56 60 22 57 60 22 56 56 23 57 56 23 58 56 23 59 56 23 55 57 23 56 57 23 57 57 23 58 57 23 59 57 23 60 57 23 54 58 23 55 58 23 56 58 23 57 58 23 58 58 23 59 58 23 60 58 23 52 59 23 53 59 23 54 59 23 55 59 23 56 59 23 57 59 23 58 59 23 59 59 23 52 60 23 53 60 23 54 60 23 55 60 23 56 60 23 57 60 23 59 54 24 55 55 24 56 55 24 57 55 24 58 55 24 59 55 24 60 55 24 61 55 24 53 56 24 54 56 24 55 56 24 56 56 24 57 56 24 58 56 24 59 56 24 60 56 24 61 56 24 62 56 24 53 57 24 54 57 24 55 57 24 56 57 24 57 57 24 58 57 24 59 57 24 60 57 24 61 57 24 62 57 24 52 58 24 53 58 24 54 58 24 55 58 24 56 58 24 57 58 24 58 58 24 59 58 24 60 58 24 51 59 24 52 59 24 53 59 24 54 59 24 55 59 24 56 59 24 57 59 24 58 59 24 59 59 24 51 60 24 52 60 24 53 60 24 54 60 24 55 60 24 56 60 24 57 53 25 58 53 25 59 53 25 60 53 25 55 54 25 56 54 25 57 54 25 58 54 25 59 54 25 60 54 25 61 54 25 62 54 25 54 55 25 55 55 25 56 55 25 57 55 25 58 55 25 59 55 25 60 55 25 61 55 25 62 55 25 53 56 25 54 56 25 55 56 25 56 56 25 57 56 25 58 56 25 59 56 25 60 56 25 61 56 25 62 56 25 52 57 25 53 57 25 54 57 25 55 57 25 56 57 25 57 57 25 58 57 25 59 57 25 60 57 25 61 57 25 62 57 25 51 58 25 52 58 25 53 58 25 54 58 25 55 58 25 56 58 25 57 58 25 58 58 25 59 58 25 60 58 25 50 59 25 51 59 25 52 59 25 53 59 25 54 59 25 55 59 25 56 59 25 57 59 25 58 59 25 50 60 25 51 60 25 52 60 25 53 60 25 54 60 25 55 60 25 55 52 26 58 52 26 59 52 26 60 52 26 62 52 26 54 53 26 55 53 26 56 53 26 57 53 26 58 53 26 59 53 26 60 53 26 61 53 26 62 53 26 54 54 26 55 54 26 56 54 26 57 54 26 58 54 26 59 54 26 60 54 26 61 54 26 62 54 26 63 54 26 53 55 26 54 55 26 55 55 26 56 55 26 57 55 26 58 55 26 59 55 26 60 55 26 61 55 26 62 55 26 63 55 26 53 56 26 54 56 26 55 56 26 56 56 26 57 56 26 58 56 26 59 56 26 60 56 26 61 56 26 62 56 26 52 57 26 53 57 26 54 57 26 55 57 26 56 57 26 57 57 26 58 57 26 59 57 26 60 57 26 61 57 26 51 58 26 52 58 26 53 58 26 54 58 26 55 58 26 56 58 26 57 58 26 58 58 26 59 58 26 60 58 26 50 59 26 51 59 26 52 59 26 53 59 26 54 59 26 50 60 26 51 60 26 52 60 26 53 60 26 54 51 27 55 51 27 58 51 27 59 51 27 60 51 27 61 51 27 62 51 27 63 51 27 55 52 27 56 52 27 57 52 27 58 52 27 59 52 27 60 52 27 61 52 27 62 52 27 63 52 27 55 53 27 56 53 27 57 53 27 58 53 27 59 53 27 60 53 27 61 53 27 62 53 27 63 53 27 54 54 27 55 54 27 56 54 27 57 54 27 58 54 27 59 54 27 60 54 27 61 54 27 62 54 27 63 54 27 53 55 27 54 55 27 55 55 27 56 55 27 57 55 27 58 55 27 59 55 27 60 55 27 61 55 27 62 55 27 53 56 27 54 56 27 55 56 27 56 56 27 57 56 27 58 56 27 59 56 27 60 56 27 61 56 27 62 56 27 52 57 27 53 57 27 54 57 27 55 57 27 56 57 27 57 57 27 58 57 27 59 57 27 60 57 27 61 57 27 51 58 27 52 58 27 53 58 27 54 58 27 61 58 27 51 59 27 52 59 27 54 50 28 55 50 28 57 50 28 58 50 28 59 50 28 60 50 28 61 50 28 62 50 28 63 50 28 55 51 28 56 51 28 57 51 28 58 51 28 59 51 28 60 51 28 61 51 28 62 51 28 63 51 28 55 52 28 56 52 28 57 52 28 58 52 28 59 52 28 60 52 28 61 52 28 62 52 28 63 52 28 64 52 28 55 53 28 56 53 28 57 53 28 58 53 28 59 53 28 60 53 28 61 53 28 62 53 28 63 53 28 54 54 28 55 54 28 56 54 28 57 54 28 58 54 28 59 54 28 60 54 28 61 54 28 62 54 28 63 54 28 53 55 28 54 55 28 55 55 28 56 55 28 57 55 28 58 55 28 59 55 28 60 55 28 61 55 28 62 55 28 63 55 28 53 56 28 54 56 28 55 56 28 56 56 28 57 56 28 58 56 28 59 56 28 60 56 28 61 56 28 62 56 28 52 57 28 53 57 28 54 57 28 59 57 28 60 57 28 61 57 28 52 58 28 53 58 28 59 48 29 60 48 29 61 48 29 62 48 29 63 48 29 54 49 29 57 49 29 58 49 29 59 49 29 60 49 29 61 49 29 62 49 29 63 49 29 54 50 29 55 50 29 56 50 29 57 50 29 58 50 29 59 50 29 60 50 29 61 50 29 62 50 29 63 50 29 64 50 29 55 51 29 56 51 29 57 51 29 58 51 29 59 51 29 60 51 29 61 51 29 62 51 29 63 51 29 64 51 29 57 52 29 58 52 29 59 52 29 60 52 29 61 52 29 62 52 29 63 52 29 64 52 29 56 53 29 57 53 29 58 53 29 59 53 29 60 53 29 61 53 29 62 53 29 63 53 29 55 54 29 56 54 29 57 54 29 58 54 29 59 54 29 60 54 29 61 54 29 62 54 29 63 54 29 54 55 29 55 55 29 56 55 29 57 55 29 58 55 29 59 55 29 60 55 29 61 55 29 62 55 29 54 56 29 55 56 29 56 56 29 57 56 29 59 56 29 60 56 29 53 57 29 54 57 29 55 57 29 57 47 30 58 47 30 59 47 30 60 47 30 61 47 30 62 47 30 63 47 30 56 48 30 57 48 30 58 48 30 59 48 30 60 48 30 61 48 30 62 48 30 63 48 30 54 49 30 55 49 30 56 49 30 57 49 30 58 49 30 59 49 30 60 49 30 61 49 30 62 49 30 63 49 30 55 50 30 56 50 30 57 50 30 58 50 30 59 50 30 60 50 30 61 50 30 62 50 30 63 50 30 58 51 30 59 51 30 60 51 30 61 51 30 62 51 30 63 51 30 58 52 30 59 52 30 60 52 30 61 52 30 62 52 30 63 52 30 59 53 30 60 53 30 61 53 30 62 53 30 63 53 30 55 55 30 55 56 30 55 57 30 57 46 31 58 46 31 59 46 31 60 46 31 61 46 31 62 46 31 63 46 31 55 47 31 56 47 31 57 47 31 58 47 31 59 47 31 60 47 31 61 47 31 62 47 31 54 48 31 55 48 31 56 48 31 57 48 31 58 48 31 59 48 31 60 48 31 61 48 31 62 48 31 63 48 31 56 49 31 57 49 31 58 49 31 59 49 31 60 49 31 61 49 31 62 49 31 63 49 31 57 50 31 58 50 31 59 50 31 60 50 31 61 50 31 62 50 31 63 50 31 59 51 31 60 51 31 61 51 31 62 51 31 63 51 31 59 52 31 60 52 31 57 45 32 58 45 32 59 45 32 60 45 32 61 45 32 62 45 32 52 46 32 54 46 32 55 46 32 56 46 32 57 46 32 58 46 32 59 46 32 60 46 32 61 46 32 62 46 32 52 47 32 53 47 32 54 47 32 55 47 32 56 47 32 57 47 32 58 47 32 59 47 32 60 47 32 61 47 32 62 47 32 56 48 32 57 48 32 58 48 32 59 48 32 60 48 32 61 48 32 62 48 32 56 44 33 57 44 33 58 44 33 59 44 33 60 44 33 61 44 33 51 45 33 54 45 33 55 45 33 56 45 33 57 45 33 58 45 33 59 45 33 60 45 33 61 45 33 62 45 33 52 46 33 53 46 33 54 46 33 55 46 33 56 46 33 57 46 33 58 46 33 59 46 33 60 46 33 61 46 33 62 46 33 54 47 33 56 47 33 57 47 33 60 47 33 61 47 33 56 43 34 57 43 34 58 43 34 59 43 34 60 43 34 61 43 34 54 44 34 55 44 34 56 44 34 57 44 34 58 44 34 59 44 34 60 44 34 61 44 34 51 45 34 52 45 34 53 45 34 54 45 34 55 45 34 56 45 34 57 45 34 58 45 34 59 45 34 60 45 34 61 45 34 57 46 34 58 46 34 59 46 34 60 46 34 56 42 35 57 42 35 58 42 35 59 42 35 60 42 35 54 43 35 55 43 35 56 43 35 57 43 35 58 43 35 59 43 35 60 43 35 50 44 35 51 44 35 52 44 35 53 44 35 54 44 35 55 44 35 56 44 35 57 44 35 58 44 35 59 44 35 60 44 35 52 45 35 53 45 35 54 45 35 55 45 35 56 45 35 57 45 35 58 45 35 59 45 35 60 45 35 54 42 36 55 42 36 56 42 36 57 42 36 58 42 36 59 42 36 50 43 36 51 43 36 52 43 36 53 43 36 54 43 36 55 43 36 56 43 36 57 43 36 58 43 36 59 43 36 50 44 36 51 44 36 52 44 36 53 44 36 54 44 36 55 44 36 56 44 36 57 44 36 58 44 36 59 44 36 52 42 37 53 42 37 54 42 37 55 42 37 56 42 37 57 42 37 58 42 37 50 43 37 51 43 37 52 43 37 53 43 37 54 43 37 55 43 37 56 43 37 57 43 37 58 43 37 51 44 37 52 44 37 53 44 37 54 44 37 55 44 37 56 44 37 57 44 37 51 42 38 52 42 38 57 42 38 50 43 38 51 43 38 52 43 38 53 43 38 54 43 38 55 43 38 56 43 38 50 44 38 51 44 38 52 44 38 53 44 38 54 44 38 55 44 38 56 44 38 53 44 39 54 44 39 33 60 21 31 58 22 32 58 22 33 58 22 31 59 22 32 59 22 33 59 22 34 59 22 35 59 22 30 60 22 31 60 22 32 60 22 33 60 22 34 60 22 35 60 22 31 56 23 32 56 23 33 56 23 28 57 23 29 57 23 30 57 23 31 57 23 32 57 23 33 57 23 34 57 23 35 57 23 28 58 23 29 58 23 30 58 23 31 58 23 32 58 23 33 58 23 34 58 23 35 58 23 30 59 23 31 59 23 32 59 23 33 59 23 34 59 23 35 59 23 36 59 23 30 60 23 31 60 23 32 60 23 33 60 23 34 60 23 35 60 23 36 60 23 30 55 24 31 55 24 32 55 24 33 55 24 34 55 24 35 55 24 27 56 24 28 56 24 29 56 24 30 56 24 31 56 24 32 56 24 33 56 24 34 56 24 35 56 24 36 56 24 27 57 24 28 57 24 29 57 24 30 57 24 31 57 24 32 57 24 33 57 24 34 57 24 35 57 24 36 57 24 37 57 24 28 58 24 29 58 24 30 58 24 31 58 24 32 58 24 33 58 24 34 58 24 35 58 24 36 58 24 37 58 24 38 58 24 29 59 24 30 59 24 31 59 24 32 59 24 33 59 24 34 59 24 35 59 24 36 59 24 37 59 24 38 59 24 30 60 24 31 60 24 32 60 24 33 60 24 34 60 24 35 60 24 36 60 24 37 60 24 38 60 24 29 54 25 30 54 25 31 54 25 32 54 25 33 54 25 34 54 25 35 54 25 27 55 25 28 55 25 29 55 25 30 55 25 31 55 25 32 55 25 33 55 25 34 55 25 35 55 25 36 55 25 27 56 25 28 56 25 29 56 25 30 56 25 31 56 25 32 56 25 33 56 25 34 56 25 35 56 25 36 56 25 27 57 25 28 57 25 29 57 25 30 57 25 31 57 25 32 57 25 33 57 25 34 57 25 35 57 25 36 57 25 37 57 25 28 58 25 29 58 25 30 58 25 31 58 25 32 58 25 33 58 25 34 58 25 35 58 25 36 58 25 37 58 25 38 58 25 29 59 25 30 59 25 31 59 25 32 59 25 33 59 25 34 59 25 35 59 25 36 59 25 37 59 25 38 59 25 39 59 25 33 60 25 34 60 25 35 60 25 36 60 25 37 60 25 38 60 25 39 60 25 27 53 26 28 53 26 29 53 26 30 53 26 31 53 26 32 53 26 33 53 26 34 53 26 35 53 26 26 54 26 27 54 26 28 54 26 29 54 26 30 54 26 31 54 26 32 54 26 33 54 26 34 54 26 35 54 26 26 55 26 27 55 26 28 55 26 29 55 26 30 55 26 31 55 26 32 55 26 33 55 26 34 55 26 35 55 26 36 55 26 27 56 26 28 56 26 29 56 26 30 56 26 31 56 26 32 56 26 33 56 26 34 56 26 35 56 26 36 56 26 27 57 26 28 57 26 29 57 26 30 57 26 31 57 26 32 57 26 33 57 26 34 57 26 35 57 26 36 57 26 37 57 26 28 58 26 29 58 26 30 58 26 31 58 26 32 58 26 33 58 26 34 58 26 35 58 26 36 58 26 37 58 26 38 58 26 31 59 26 33 59 26 34 59 26 35 59 26 36 59 26 37 59 26 38 59 26 39 59 26 35 60 26 36 60 26 37 60 26 38 60 26 39 60 26 26 52 27 27 52 27 28 52 27 29 52 27 30 52 27 31 52 27 32 52 27 33 52 27 34 52 27 26 53 27 27 53 27 28 53 27 29 53 27 30 53 27 31 53 27 32 53 27 33 53 27 34 53 27 26 54 27 27 54 27 28 54 27 29 54 27 30 54 27 31 54 27 32 54 27 33 54 27 34 54 27 35 54 27 36 54 27 26 55 27 27 55 27 28 55 27 29 55 27 30 55 27 31 55 27 32 55 27 33 55 27 34 55 27 35 55 27 36 55 27 27 56 27 28 56 27 29 56 27 30 56 27 31 56 27 32 56 27 33 56 27 34 56 27 35 56 27 36 56 27 37 56 27 28 57 27 29 57 27 30 57 27 31 57 27 32 57 27 33 57 27 34 57 27 35 57 27 36 57 27 37 57 27 38 57 27 28 58 27 29 58 27 30 58 27 31 58 27 32 58 27 33 58 27 34 58 27 35 58 27 36 58 27 37 58 27 38 58 27 37 59 27 38 59 27 39 59 27 28 50 28 29 50 28 30 50 28 31 50 28 26 51 28 27 51 28 28 51 28 29 51 28 30 51 28 31 51 28 32 51 28 33 51 28 34 51 28 35 51 28 26 52 28 27 52 28 28 52 28 29 52 28 30 52 28 31 52 28 32 52 28 33 52 28 34 52 28 26 53 28 27 53 28 28 53 28 29 53 28 30 53 28 31 53 28 32 53 28 33 53 28 34 53 28 26 54 28 27 54 28 28 54 28 29 54 28 30 54 28 31 54 28 32 54 28 33 54 28 34 54 28 35 54 28 36 54 28 26 55 28 27 55 28 28 55 28 29 55 28 30 55 28 31 55 28 32 55 28 33 55 28 34 55 28 35 55 28 36 55 28 27 56 28 28 56 28 29 56 28 30 56 28 31 56 28 32 56 28 33 56 28 34 56 28 35 56 28 36 56 28 37 56 28 28 57 28 29 57 28 30 57 28 31 57 28 32 57 28 33 57 28 34 57 28 35 57 28 36 57 28 37 57 28 29 58 28 36 58 28 37 58 28 38 58 28 38 59 28 26 49 29 27 49 29 28 49 29 29 49 29 30 49 29 31 49 29 26 50 29 27 50 29 28 50 29 29 50 29 30 50 29 31 50 29 32 50 29 33 50 29 34 50 29 26 51 29 27 51 29 28 51 29 29 51 29 30 51 29 31 51 29 32 51 29 33 51 29 34 51 29 26 52 29 27 52 29 28 52 29 29 52 29 30 52 29 31 52 29 32 52 29 33 52 29 26 53 29 27 53 29 28 53 29 29 53 29 30 53 29 31 53 29 32 53 29 33 53 29 26 54 29 27 54 29 28 54 29 29 54 29 30 54 29 31 54 29 32 54 29 33 54 29 34 54 29 35 54 29 27 55 29 28 55 29 29 55 29 30 55 29 31 55 29 32 55 29 33 55 29 34 55 29 35 55 29 29 56 29 30 56 29 31 56 29 32 56 29 33 56 29 34 56 29 35 56 29 36 56 29 30 57 29 35 57 29 36 57 29 36 58 29 37 58 29 29 47 30 30 47 30 26 48 30 27 48 30 28 48 30 29 48 30 30 48 30 31 48 30 32 48 30 26 49 30 27 49 30 28 49 30 29 49 30 30 49 30 31 49 30 32 49 30 33 49 30 34 49 30 35 49 30 36 49 30 26 50 30 27 50 30 28 50 30 29 50 30 30 50 30 31 50 30 32 50 30 33 50 30 34 50 30 35 50 30 26 51 30 27 51 30 28 51 30 29 51 30 30 51 30 31 51 30 32 51 30 33 51 30 26 52 30 27 52 30 28 52 30 29 52 30 30 52 30 31 52 30 32 52 30 27 53 30 28 53 30 29 53 30 30 53 30 31 53 30 32 53 30 27 54 30 28 54 30 29 54 30 30 54 30 31 54 30 32 54 30 33 54 30 30 55 30 31 55 30 34 55 30 35 55 30 34 56 30 35 56 30 35 57 30 28 46 31 29 46 31 30 46 31 31 46 31 27 47 31 28 47 31 29 47 31 30 47 31 31 47 31 32 47 31 26 48 31 27 48 31 28 48 31 29 48 31 30 48 31 31 48 31 32 48 31 33 48 31 34 48 31 35 48 31 36 48 31 26 49 31 27 49 31 28 49 31 29 49 31 30 49 31 31 49 31 32 49 31 33 49 31 34 49 31 35 49 31 26 50 31 27 50 31 28 50 31 29 50 31 30 50 31 31 50 31 32 50 31 33 50 31 27 51 31 28 51 31 29 51 31 30 51 31 31 51 31 27 52 31 28 52 31 29 52 31 30 52 31 31 52 31 30 53 31 27 45 32 28 45 32 29 45 32 30 45 32 27 46 32 28 46 32 29 46 32 30 46 32 31 46 32 32 46 32 33 46 32 27 47 32 28 47 32 29 47 32 30 47 32 31 47 32 32 47 32 33 47 32 34 47 32 35 47 32 36 47 32 37 47 32 27 48 32 28 48 32 29 48 32 30 48 32 31 48 32 32 48 32 33 48 32 34 48 32 35 48 32 36 48 32 27 49 32 28 49 32 29 49 32 30 49 32 27 50 32 28 50 32 29 50 32 30 50 32 28 44 33 29 44 33 30 44 33 31 44 33 28 45 33 29 45 33 30 45 33 31 45 33 32 45 33 33 45 33 28 46 33 29 46 33 30 46 33 31 46 33 32 46 33 33 46 33 34 46 33 37 46 33 28 47 33 29 47 33 30 47 33 31 47 33 32 47 33 33 47 33 34 47 33 35 47 33 36 47 33 37 47 33 28 48 33 29 48 33 34 48 33 29 43 34 30 43 34 28 44 34 29 44 34 30 44 34 31 44 34 32 44 34 33 44 34 28 45 34 29 45 34 30 45 34 31 45 34 32 45 34 33 45 34 34 45 34 35 45 34 38 45 34 28 46 34 29 46 34 30 46 34 31 46 34 32 46 34 33 46 34 34 46 34 35 46 34 36 46 34 37 46 34 38 46 34 29 47 34 30 47 34 30 43 35 31 43 35 32 43 35 33 43 35 29 44 35 30 44 35 31 44 35 32 44 35 33 44 35 34 44 35 29 45 35 30 45 35 31 45 35 32 45 35 33 45 35 34 45 35 35 45 35 36 45 35 37 45 35 38 45 35 31 46 35 32 46 35 33 46 35 34 46 35 35 46 35 36 46 35 37 46 35 30 43 36 31 43 36 32 43 36 33 43 36 34 43 36 30 44 36 31 44 36 32 44 36 33 44 36 34 44 36 35 44 36 36 44 36 37 44 36 38 44 36 39 44 36 30 45 36 31 45 36 32 45 36 33 45 36 34 45 36 35 45 36 36 45 36 37 45 36 38 45 36 31 43 37 32 43 37 33 43 37 34 43 37 35 43 37 36 43 37 30 44 37 31 44 37 32 44 37 33 44 37 34 44 37 35 44 37 36 44 37 37 44 37 38 44 37 39 44 37 32 45 37 33 45 37 34 45 37 35 45 37 36 45 37 37 45 37 38 45 37 32 43 38 33 43 38 34 43 38 35 43 38 37 43 38 38 43 38 39 43 38 32 44 38 33 44 38 34 44 38 35 44 38 36 44 38 37 44 38 38 44 38 39 44 38 33 45 38 34 45 38 35 45 38 36 45 38 37 45 38 38 45 38 39 45 38 34 44 39 35 44 39 36 44 39 34 45 39 35 45 39 36 45 39 37 45 39 38 45 39 56 59 32 51 61 32 52 61 32 53 61 32 54 61 32 55 61 32 51 62 32 52 62 32 53 62 32 54 62 32 51 63 32 52 63 32 53 63 32 54 63 32 55 63 32 54 64 32 56 56 33 57 56 33 58 56 33 56 57 33 57 57 33 58 57 33 55 58 33 56 58 33 57 58 33 58 58 33 54 59 33 55 59 33 56 59 33 57 59 33 58 59 33 52 60 33 53 60 33 54 60 33 55 60 33 56 60 33 57 60 33 51 61 33 52 61 33 53 61 33 54 61 33 55 61 33 56 61 33 57 61 33 51 62 33 52 62 33 53 62 33 54 62 33 55 62 33 56 62 33 51 63 33 52 63 33 53 63 33 54 63 33 55 63 33 56 63 33 51 64 33 52 64 33 53 64 33 54 64 33 55 64 33 51 65 33 52 65 33 53 65 33 51 66 33 52 66 33 58 54 34 57 55 34 58 55 34 56 56 34 57 56 34 58 56 34 55 57 34 56 57 34 57 57 34 58 57 34 54 58 34 55 58 34 56 58 34 57 58 34 58 58 34 54 59 34 55 59 34 56 59 34 57 59 34 58 59 34 52 60 34 53 60 34 54 60 34 55 60 34 56 60 34 57 60 34 58 60 34 51 61 34 52 61 34 53 61 34 54 61 34 55 61 34 56 61 34 57 61 34 51 62 34 52 62 34 53 62 34 54 62 34 55 62 34 56 62 34 57 62 34 51 63 34 52 63 34 53 63 34 54 63 34 55 63 34 56 63 34 51 64 34 52 64 34 53 64 34 54 64 34 55 64 34 51 65 34 52 65 34 53 65 34 54 65 34 51 66 34 52 66 34 53 66 34 57 54 35 58 54 35 56 55 35 57 55 35 58 55 35 56 56 35 57 56 35 58 56 35 55 57 35 56 57 35 57 57 35 58 57 35 54 58 35 55 58 35 56 58 35 57 58 35 58 58 35 54 59 35 55 59 35 56 59 35 57 59 35 58 59 35 53 60 35 54 60 35 55 60 35 56 60 35 57 60 35 58 60 35 52 61 35 53 61 35 54 61 35 55 61 35 56 61 35 57 61 35 51 62 35 52 62 35 53 62 35 54 62 35 55 62 35 56 62 35 57 62 35 51 63 35 52 63 35 53 63 35 54 63 35 55 63 35 56 63 35 51 64 35 52 64 35 53 64 35 54 64 35 55 64 35 51 65 35 52 65 35 53 65 35 54 65 35 51 66 35 52 66 35 53 66 35 58 54 36 56 55 36 57 55 36 58 55 36 56 56 36 57 56 36 58 56 36 56 57 36 57 57 36 58 57 36 55 58 36 56 58 36 57 58 36 58 58 36 54 59 36 55 59 36 56 59 36 57 59 36 58 59 36 53 60 36 54 60 36 55 60 36 56 60 36 57 60 36 58 60 36 53 61 36 54 61 36 55 61 36 56 61 36 57 61 36 52 62 36 53 62 36 54 62 36 55 62 36 56 62 36 57 62 36 51 63 36 52 63 36 53 63 36 54 63 36 55 63 36 56 63 36 51 64 36 52 64 36 53 64 36 54 64 36 55 64 36 51 65 36 52 65 36 53 65 36 54 65 36 51 66 36 52 66 36 53 66 36 54 66 36 56 56 37 57 56 37 58 56 37 56 57 37 57 57 37 58 57 37 56 58 37 57 58 37 55 59 37 56 59 37 57 59 37 54 60 37 55 60 37 56 60 37 57 60 37 53 61 37 54 61 37 55 61 37 56 61 37 52 62 37 53 62 37 54 62 37 55 62 37 56 62 37 52 63 37 53 63 37 54 63 37 55 63 37 52 64 37 53 64 37 54 64 37 55 64 37 53 65 37 54 65 37 56 57 38 57 57 38 56 58 38 57 58 38 55 59 38 56 59 38 57 59 38 54 60 38 55 60 38 56 60 38 54 61 38 55 61 38 56 61 38 53 62 38 54 62 38 55 62 38 52 63 38 53 63 38 54 63 38 55 63 38 53 64 38 54 64 38 56 59 39 55 61 39 36 62 32 37 62 32 38 62 32 32 56 33 33 56 33 32 57 33 33 57 33 32 58 33 33 58 33 34 58 33 32 59 33 33 59 33 34 59 33 35 59 33 32 60 33 33 60 33 34 60 33 35 60 33 36 60 33 37 60 33 32 61 33 33 61 33 34 61 33 35 61 33 36 61 33 37 61 33 38 61 33 33 62 33 34 62 33 35 62 33 36 62 33 37 62 33 38 62 33 39 62 33 34 63 33 35 63 33 36 63 33 37 63 33 38 63 33 39 63 33 34 64 33 35 64 33 37 64 33 36 65 33 38 66 33 31 56 34 32 56 34 33 56 34 34 56 34 32 57 34 33 57 34 34 57 34 32 58 34 33 58 34 34 58 34 35 58 34 32 59 34 33 59 34 34 59 34 35 59 34 32 60 34 33 60 34 34 60 34 35 60 34 36 60 34 37 60 34 32 61 34 33 61 34 34 61 34 35 61 34 36 61 34 37 61 34 38 61 34 33 62 34 34 62 34 35 62 34 36 62 34 37 62 34 38 62 34 39 62 34 34 63 34 35 63 34 36 63 34 37 63 34 38 63 34 39 63 34 34 64 34 35 64 34 36 64 34 37 64 34 38 64 34 39 64 34 36 65 34 37 65 34 38 65 34 39 65 34 36 66 34 37 66 34 38 66 34 39 66 34 31 55 35 32 55 35 31 56 35 32 56 35 33 56 35 34 56 35 31 57 35 32 57 35 33 57 35 34 57 35 32 58 35 33 58 35 34 58 35 35 58 35 32 59 35 33 59 35 34 59 35 35 59 35 32 60 35 33 60 35 34 60 35 35 60 35 36 60 35 37 60 35 32 61 35 33 61 35 34 61 35 35 61 35 36 61 35 37 61 35 33 62 35 34 62 35 35 62 35 36 62 35 37 62 35 38 62 35 34 63 35 35 63 35 36 63 35 37 63 35 38 63 35 39 63 35 34 64 35 35 64 35 36 64 35 37 64 35 38 64 35 39 64 35 35 65 35 36 65 35 37 65 35 38 65 35 39 65 35 36 66 35 37 66 35 38 66 35 39 66 35 32 56 36 33 56 36 34 56 36 32 57 36 33 57 36 32 58 36 33 58 36 34 58 36 32 59 36 33 59 36 34 59 36 35 59 36 32 60 36 33 60 36 34 60 36 35 60 36 36 60 36 32 61 36 33 61 36 34 61 36 35 61 36 36 61 36 37 61 36 33 62 36 34 62 36 35 62 36 36 62 36 37 62 36 34 63 36 35 63 36 36 63 36 37 63 36 38 63 36 34 64 36 35 64 36 36 64 36 37 64 36 38 64 36 39 64 36 35 65 36 36 65 36 37 65 36 38 65 36 39 65 36 36 66 36 37 66 36 38 66 36 32 56 37 33 56 37 32 57 37 33 57 37 32 58 37 33 58 37 32 59 37 33 59 37 34 59 37 33 60 37 34 60 37 35 60 37 33 61 37 34 61 37 35 61 37 36 61 37 34 62 37 35 62 37 36 62 37 37 62 37 34 63 37 35 63 37 36 63 37 37 63 37 34 64 37 35 64 37 36 64 37 37 64 37 36 65 37 37 65 37 36 66 37 37 66 37 32 58 38 33 58 38 33 59 38 34 59 38 33 60 38 34 60 38 35 60 38 34 61 38 35 61 38 34 62 38 35 62 38 36 62 38 37 62 38 34 63 38 35 63 38 36 63 38 37 63 38 35 64 38 36 64 38 37 64 38 36 65 38 34 61 39 34 62 39 35 62 39 51 66 28 52 66 28 53 66 28 54 66 28 54 67 28 51 65 29 52 65 29 53 65 29 54 65 29 55 65 29 56 65 29 51 66 29 52 66 29 53 66 29 54 66 29 55 66 29 56 66 29 51 67 29 52 67 29 53 67 29 54 67 29 55 67 29 60 57 30 61 57 30 60 58 30 51 64 30 52 64 30 53 64 30 54 64 30 55 64 30 56 64 30 51 65 30 52 65 30 53 65 30 54 65 30 55 65 30 56 65 30 57 65 30 51 66 30 52 66 30 53 66 30 54 66 30 55 66 30 56 66 30 51 67 30 52 67 30 53 67 30 54 67 30 55 67 30 56 67 30 52 68 30 53 68 30 54 68 30 55 68 30 56 68 30 53 69 30 54 69 30 55 69 30 60 56 31 61 56 31 59 57 31 60 57 31 61 57 31 58 58 31 59 58 31 60 58 31 58 59 31 59 59 31 56 63 31 55 64 31 56 64 31 58 64 31 51 65 31 52 65 31 53 65 31 54 65 31 55 65 31 56 65 31 57 65 31 58 65 31 51 66 31 52 66 31 53 66 31 54 66 31 55 66 31 56 66 31 57 66 31 58 66 31 51 67 31 52 67 31 53 67 31 54 67 31 55 67 31 56 67 31 57 67 31 52 68 31 53 68 31 54 68 31 55 68 31 56 68 31 57 68 31 52 69 31 53 69 31 54 69 31 55 69 31 56 69 31 57 69 31 53 70 31 54 70 31 55 70 31 56 70 31 53 71 31 54 71 31 55 71 31 61 54 32 60 55 32 61 55 32 59 56 32 60 56 32 61 56 32 58 57 32 59 57 32 60 57 32 61 57 32 57 58 32 58 58 32 59 58 32 60 58 32 61 58 32 62 58 32 57 59 32 58 59 32 59 59 32 60 59 32 61 59 32 62 59 32 56 60 32 57 60 32 58 60 32 61 60 32 62 60 32 63 60 32 58 61 32 61 61 32 62 61 32 57 62 32 58 62 32 60 62 32 56 63 32 57 63 32 58 63 32 59 63 32 60 63 32 55 64 32 56 64 32 57 64 32 58 64 32 59 64 32 60 64 32 52 65 32 53 65 32 54 65 32 55 65 32 56 65 32 57 65 32 58 65 32 59 65 32 60 65 32 51 66 32 52 66 32 53 66 32 54 66 32 55 66 32 56 66 32 57 66 32 58 66 32 59 66 32 60 66 32 51 67 32 52 67 32 53 67 32 54 67 32 55 67 32 56 67 32 57 67 32 58 67 32 59 67 32 60 67 32 51 68 32 52 68 32 53 68 32 54 68 32 55 68 32 56 68 32 57 68 32 58 68 32 52 69 32 53 69 32 54 69 32 55 69 32 56 69 32 57 69 32 53 70 32 54 70 32 55 70 32 56 70 32 57 70 32 53 71 32 54 71 32 55 71 32 56 71 32 54 72 32 55 72 32 60 54 33 61 54 33 59 55 33 60 55 33 61 55 33 59 56 33 60 56 33 61 56 33 62 56 33 59 57 33 60 57 33 61 57 33 62 57 33 59 58 33 60 58 33 61 58 33 62 58 33 63 58 33 59 59 33 60 59 33 61 59 33 62 59 33 63 59 33 58 60 33 59 60 33 60 60 33 61 60 33 62 60 33 63 60 33 58 61 33 59 61 33 60 61 33 61 61 33 62 61 33 63 61 33 57 62 33 58 62 33 59 62 33 60 62 33 61 62 33 62 62 33 63 62 33 57 63 33 58 63 33 59 63 33 60 63 33 61 63 33 62 63 33 56 64 33 57 64 33 58 64 33 59 64 33 60 64 33 61 64 33 54 65 33 55 65 33 56 65 33 57 65 33 58 65 33 59 65 33 60 65 33 61 65 33 53 66 33 54 66 33 55 66 33 56 66 33 57 66 33 58 66 33 59 66 33 60 66 33 61 66 33 52 67 33 53 67 33 54 67 33 55 67 33 56 67 33 57 67 33 58 67 33 59 67 33 60 67 33 52 68 33 53 68 33 54 68 33 55 68 33 56 68 33 57 68 33 58 68 33 59 68 33 53 69 33 54 69 33 55 69 33 56 69 33 57 69 33 58 69 33 53 70 33 54 70 33 55 70 33 56 70 33 57 70 33 53 71 33 54 71 33 55 71 33 56 71 33 57 71 33 54 72 33 55 72 33 56 72 33 61 53 34 59 54 34 60 54 34 61 54 34 62 54 34 59 55 34 60 55 34 61 55 34 62 55 34 59 56 34 60 56 34 61 56 34 62 56 34 63 56 34 59 57 34 60 57 34 61 57 34 62 57 34 63 57 34 59 58 34 60 58 34 61 58 34 62 58 34 63 58 34 59 59 34 60 59 34 61 59 34 62 59 34 63 59 34 59 60 34 60 60 34 61 60 34 62 60 34 63 60 34 64 60 34 58 61 34 59 61 34 60 61 34 61 61 34 62 61 34 63 61 34 58 62 34 59 62 34 60 62 34 61 62 34 62 62 34 63 62 34 57 63 34 58 63 34 59 63 34 60 63 34 61 63 34 62 63 34 63 63 34 56 64 34 57 64 34 58 64 34 59 64 34 60 64 34 61 64 34 62 64 34 63 64 34 55 65 34 56 65 34 57 65 34 58 65 34 59 65 34 60 65 34 61 65 34 62 65 34 54 66 34 55 66 34 56 66 34 57 66 34 58 66 34 59 66 34 60 66 34 61 66 34 53 67 34 54 67 34 55 67 34 56 67 34 57 67 34 58 67 34 59 67 34 60 67 34 61 67 34 53 68 34 54 68 34 55 68 34 56 68 34 57 68 34 58 68 34 59 68 34 53 69 34 54 69 34 55 69 34 56 69 34 57 69 34 58 69 34 59 69 34 53 70 34 54 70 34 55 70 34 56 70 34 57 70 34 58 70 34 54 71 34 55 71 34 56 71 34 57 71 34 55 72 34 56 72 34 60 53 35 61 53 35 59 54 35 60 54 35 61 54 35 62 54 35 59 55 35 60 55 35 61 55 35 62 55 35 63 55 35 59 56 35 60 56 35 61 56 35 62 56 35 63 56 35 59 57 35 60 57 35 61 57 35 62 57 35 63 57 35 59 58 35 60 58 35 61 58 35 62 58 35 63 58 35 59 59 35 60 59 35 61 59 35 62 59 35 63 59 35 64 59 35 59 60 35 60 60 35 61 60 35 62 60 35 63 60 35 64 60 35 58 61 35 59 61 35 60 61 35 61 61 35 62 61 35 63 61 35 58 62 35 59 62 35 60 62 35 61 62 35 62 62 35 63 62 35 57 63 35 58 63 35 59 63 35 60 63 35 61 63 35 62 63 35 63 63 35 56 64 35 57 64 35 58 64 35 59 64 35 60 64 35 61 64 35 62 64 35 63 64 35 55 65 35 56 65 35 57 65 35 58 65 35 59 65 35 60 65 35 61 65 35 62 65 35 54 66 35 55 66 35 56 66 35 57 66 35 58 66 35 59 66 35 60 66 35 61 66 35 53 67 35 54 67 35 55 67 35 56 67 35 57 67 35 58 67 35 59 67 35 60 67 35 53 68 35 54 68 35 55 68 35 56 68 35 57 68 35 58 68 35 59 68 35 54 69 35 55 69 35 56 69 35 57 69 35 58 69 35 59 69 35 54 70 35 55 70 35 56 70 35 57 70 35 58 70 35 55 71 35 56 71 35 57 71 35 55 72 35 56 72 35 57 72 35 60 52 36 59 53 36 60 53 36 61 53 36 59 54 36 60 54 36 61 54 36 62 54 36 59 55 36 60 55 36 61 55 36 62 55 36 63 55 36 59 56 36 60 56 36 61 56 36 62 56 36 63 56 36 59 57 36 60 57 36 61 57 36 62 57 36 63 57 36 59 58 36 60 58 36 61 58 36 62 58 36 63 58 36 64 58 36 59 59 36 60 59 36 61 59 36 62 59 36 63 59 36 64 59 36 59 60 36 60 60 36 61 60 36 62 60 36 63 60 36 58 61 36 59 61 36 60 61 36 61 61 36 62 61 36 63 61 36 58 62 36 59 62 36 60 62 36 61 62 36 62 62 36 63 62 36 57 63 36 58 63 36 59 63 36 60 63 36 61 63 36 62 63 36 63 63 36 56 64 36 57 64 36 58 64 36 59 64 36 60 64 36 61 64 36 62 64 36 55 65 36 56 65 36 57 65 36 58 65 36 59 65 36 60 65 36 61 65 36 55 66 36 56 66 36 57 66 36 58 66 36 59 66 36 60 66 36 54 67 36 55 67 36 56 67 36 57 67 36 58 67 36 59 67 36 54 68 36 55 68 36 56 68 36 57 68 36 58 68 36 59 68 36 54 69 36 55 69 36 56 69 36 57 69 36 58 69 36 59 69 36 55 70 36 56 70 36 57 70 36 58 70 36 55 71 36 56 71 36 57 71 36 56 72 36 57 72 36 60 52 37 59 53 37 60 53 37 59 54 37 60 54 37 61 54 37 59 55 37 60 55 37 61 55 37 62 55 37 63 55 37 59 56 37 60 56 37 61 56 37 62 56 37 63 56 37 59 57 37 60 57 37 61 57 37 62 57 37 63 57 37 58 58 37 59 58 37 60 58 37 61 58 37 62 58 37 63 58 37 58 59 37 59 59 37 60 59 37 61 59 37 62 59 37 63 59 37 58 60 37 59 60 37 60 60 37 61 60 37 62 60 37 63 60 37 57 61 37 58 61 37 59 61 37 60 61 37 61 61 37 62 61 37 63 61 37 57 62 37 58 62 37 59 62 37 60 62 37 61 62 37 62 62 37 63 62 37 56 63 37 57 63 37 58 63 37 59 63 37 60 63 37 61 63 37 62 63 37 63 63 37 56 64 37 57 64 37 58 64 37 59 64 37 60 64 37 61 64 37 62 64 37 55 65 37 56 65 37 57 65 37 58 65 37 59 65 37 60 65 37 54 66 37 55 66 37 56 66 37 57 66 37 58 66 37 59 66 37 60 66 37 54 67 37 55 67 37 56 67 37 57 67 37 58 67 37 59 67 37 55 68 37 56 68 37 57 68 37 58 68 37 59 68 37 55 69 37 56 69 37 57 69 37 58 69 37 59 69 37 55 70 37 56 70 37 57 70 37 58 70 37 56 71 37 57 71 37 59 52 38 59 53 38 60 53 38 59 54 38 60 54 38 61 54 38 59 55 38 60 55 38 61 55 38 58 56 38 59 56 38 60 56 38 61 56 38 58 57 38 59 57 38 60 57 38 61 57 38 62 57 38 63 57 38 58 58 38 59 58 38 60 58 38 61 58 38 58 59 38 59 59 38 60 59 38 61 59 38 57 60 38 58 60 38 59 60 38 60 60 38 61 60 38 57 61 38 58 61 38 59 61 38 60 61 38 61 61 38 56 62 38 57 62 38 58 62 38 59 62 38 60 62 38 61 62 38 56 63 38 57 63 38 58 63 38 59 63 38 60 63 38 61 63 38 55 64 38 56 64 38 57 64 38 58 64 38 59 64 38 60 64 38 55 65 38 56 65 38 57 65 38 58 65 38 59 65 38 60 65 38 54 66 38 55 66 38 56 66 38 57 66 38 58 66 38 59 66 38 55 67 38 56 67 38 57 67 38 58 67 38 59 67 38 55 68 38 56 68 38 57 68 38 58 68 38 59 68 38 55 69 38 56 69 38 57 69 38 58 69 38 56 70 38 57 70 38 58 70 38 56 71 38 57 71 38 59 52 39 59 53 39 60 53 39 59 54 39 60 54 39 59 55 39 60 55 39 61 55 39 58 56 39 59 56 39 60 56 39 61 56 39 58 57 39 59 57 39 60 57 39 61 57 39 58 58 39 59 58 39 60 58 39 61 58 39 57 59 39 58 59 39 59 59 39 60 59 39 61 59 39 56 60 39 57 60 39 58 60 39 59 60 39 60 60 39 61 60 39 56 61 39 57 61 39 58 61 39 59 61 39 60 61 39 56 62 39 57 62 39 58 62 39 59 62 39 60 62 39 55 63 39 56 63 39 57 63 39 58 63 39 59 63 39 60 63 39 55 64 39 56 64 39 57 64 39 58 64 39 59 64 39 60 64 39 55 65 39 56 65 39 57 65 39 58 65 39 59 65 39 55 66 39 56 66 39 57 66 39 58 66 39 59 66 39 55 67 39 56 67 39 57 67 39 58 67 39 59 67 39 55 68 39 56 68 39 57 68 39 58 68 39 56 69 39 57 69 39 58 69 39 56 70 39 57 70 39 59 53 40 59 54 40 60 54 40 59 55 40 60 55 40 59 56 40 60 56 40 58 57 40 59 57 40 60 57 40 58 58 40 59 58 40 60 58 40 57 59 40 58 59 40 59 59 40 60 59 40 57 60 40 58 60 40 59 60 40 60 60 40 56 61 40 57 61 40 58 61 40 59 61 40 60 61 40 56 62 40 57 62 40 58 62 40 59 62 40 60 62 40 56 63 40 57 63 40 58 63 40 59 63 40 60 63 40 55 64 40 56 64 40 57 64 40 58 64 40 59 64 40 55 65 40 56 65 40 57 65 40 58 65 40 59 65 40 55 66 40 56 66 40 57 66 40 58 66 40 59 66 40 56 67 40 57 67 40 58 67 40 59 67 40 56 68 40 57 68 40 58 68 40 56 69 40 57 69 40 59 54 41 59 55 41 60 55 41 59 56 41 60 56 41 58 57 41 59 57 41 60 57 41 58 58 41 59 58 41 60 58 41 57 59 41 58 59 41 59 59 41 60 59 41 57 60 41 58 60 41 59 60 41 60 60 41 56 61 41 57 61 41 58 61 41 59 61 41 60 61 41 56 62 41 57 62 41 58 62 41 59 62 41 60 62 41 56 63 41 57 63 41 58 63 41 59 63 41 56 64 41 57 64 41 58 64 41 59 64 41 56 65 41 57 65 41 58 65 41 59 65 41 56 66 41 57 66 41 58 66 41 57 67 41 58 67 41 57 68 41 59 56 42 58 57 42 59 57 42 58 58 42 59 58 42 58 59 42 59 59 42 57 60 42 58 60 42 59 60 42 57 61 42 58 61 42 59 61 42 57 62 42 58 62 42 59 62 42 56 63 42 57 63 42 58 63 42 59 63 42 57 64 42 58 64 42 59 64 42 57 65 42 58 65 42 57 66 42 58 66 42 57 67 42 58 58 43 58 59 43 58 60 43 58 61 43 58 62 43 58 63 43 58 64 43 34 66 29 35 66 29 36 66 29 37 66 29 38 66 29 39 66 29 33 67 29 34 67 29 35 67 29 36 67 29 37 67 29 38 67 29 34 68 29 35 68 29 36 68 29 37 68 29 38 68 29 29 58 30 37 64 30 34 65 30 35 65 30 36 65 30 37 65 30 38 65 30 39 65 30 33 66 30 34 66 30 35 66 30 36 66 30 37 66 30 38 66 30 39 66 30 33 67 30 34 67 30 35 67 30 36 67 30 37 67 30 38 67 30 33 68 30 34 68 30 35 68 30 36 68 30 37 68 30 38 68 30 34 69 30 35 69 30 36 69 30 37 69 30 28 56 31 29 56 31 29 57 31 30 57 31 29 58 31 30 58 31 31 58 31 30 59 31 31 59 31 32 65 31 33 65 31 34 65 31 35 65 31 36 65 31 37 65 31 38 65 31 39 65 31 32 66 31 33 66 31 34 66 31 35 66 31 36 66 31 37 66 31 38 66 31 39 66 31 32 67 31 33 67 31 34 67 31 35 67 31 36 67 31 37 67 31 38 67 31 32 68 31 33 68 31 34 68 31 35 68 31 36 68 31 37 68 31 38 68 31 33 69 31 34 69 31 35 69 31 36 69 31 37 69 31 38 69 31 33 70 31 34 70 31 35 70 31 36 70 31 37 70 31 34 71 31 35 71 31 36 71 31 37 71 31 35 72 31 36 72 31 28 55 32 29 55 32 28 56 32 29 56 32 29 57 32 30 57 32 31 57 32 28 58 32 29 58 32 30 58 32 31 58 32 32 58 32 28 59 32 29 59 32 30 59 32 31 59 32 32 59 32 33 59 32 28 60 32 29 60 32 30 60 32 31 60 32 32 60 32 33 60 32 28 61 32 29 61 32 31 61 32 28 62 32 29 62 32 29 63 32 32 63 32 33 63 32 32 64 32 33 64 32 34 64 32 31 65 32 32 65 32 33 65 32 34 65 32 35 65 32 36 65 32 37 65 32 29 66 32 31 66 32 32 66 32 33 66 32 34 66 32 35 66 32 36 66 32 37 66 32 38 66 32 39 66 32 31 67 32 32 67 32 33 67 32 34 67 32 35 67 32 36 67 32 37 67 32 38 67 32 32 68 32 33 68 32 34 68 32 35 68 32 36 68 32 37 68 32 38 68 32 32 69 32 33 69 32 34 69 32 35 69 32 36 69 32 37 69 32 38 69 32 32 70 32 33 70 32 34 70 32 35 70 32 36 70 32 37 70 32 33 71 32 34 71 32 35 71 32 36 71 32 37 71 32 34 72 32 35 72 32 36 72 32 37 72 32 35 73 32 36 73 32 28 54 33 29 54 33 28 55 33 29 55 33 29 56 33 30 56 33 31 56 33 28 57 33 29 57 33 30 57 33 31 57 33 28 58 33 29 58 33 30 58 33 31 58 33 27 59 33 28 59 33 29 59 33 30 59 33 31 59 33 27 60 33 28 60 33 29 60 33 30 60 33 31 60 33 27 61 33 28 61 33 29 61 33 30 61 33 31 61 33 27 62 33 28 62 33 29 62 33 30 62 33 31 62 33 32 62 33 28 63 33 29 63 33 30 63 33 31 63 33 32 63 33 33 63 33 28 64 33 29 64 33 30 64 33 31 64 33 32 64 33 33 64 33 28 65 33 29 65 33 30 65 33 31 65 33 32 65 33 33 65 33 34 65 33 35 65 33 28 66 33 29 66 33 30 66 33 31 66 33 32 66 33 33 66 33 34 66 33 35 66 33 36 66 33 37 66 33 29 67 33 30 67 33 31 67 33 32 67 33 33 67 33 34 67 33 35 67 33 36 67 33 37 67 33 38 67 33 30 68 33 31 68 33 32 68 33 33 68 33 34 68 33 35 68 33 36 68 33 37 68 33 38 68 33 31 69 33 32 69 33 33 69 33 34 69 33 35 69 33 36 69 33 37 69 33 32 70 33 33 70 33 34 70 33 35 70 33 36 70 33 37 70 33 33 71 33 34 71 33 35 71 33 36 71 33 37 71 33 33 72 33 34 72 33 35 72 33 36 72 33 34 73 33 35 73 33 36 73 33 29 54 34 28 55 34 29 55 34 30 55 34 28 56 34 29 56 34 30 56 34 28 57 34 29 57 34 30 57 34 31 57 34 27 58 34 28 58 34 29 58 34 30 58 34 31 58 34 27 59 34 28 59 34 29 59 34 30 59 34 31 59 34 27 60 34 28 60 34 29 60 34 30 60 34 31 60 34 26 61 34 27 61 34 28 61 34 29 61 34 30 61 34 31 61 34 27 62 34 28 62 34 29 62 34 30 62 34 31 62 34 32 62 34 27 63 34 28 63 34 29 63 34 30 63 34 31 63 34 32 63 34 33 63 34 28 64 34 29 64 34 30 64 34 31 64 34 32 64 34 33 64 34 28 65 34 29 65 34 30 65 34 31 65 34 32 65 34 33 65 34 34 65 34 35 65 34 28 66 34 29 66 34 30 66 34 31 66 34 32 66 34 33 66 34 34 66 34 35 66 34 28 67 34 29 67 34 30 67 34 31 67 34 32 67 34 33 67 34 34 67 34 35 67 34 36 67 34 37 67 34 30 68 34 31 68 34 32 68 34 33 68 34 34 68 34 35 68 34 36 68 34 37 68 34 31 69 34 32 69 34 33 69 34 34 69 34 35 69 34 36 69 34 37 69 34 31 70 34 32 70 34 33 70 34 34 70 34 35 70 34 36 70 34 37 70 34 32 71 34 33 71 34 34 71 34 35 71 34 36 71 34 37 71 34 33 72 34 34 72 34 35 72 34 36 72 34 34 73 34 35 73 34 29 53 35 29 54 35 30 54 35 28 55 35 29 55 35 30 55 35 28 56 35 29 56 35 30 56 35 27 57 35 28 57 35 29 57 35 30 57 35 27 58 35 28 58 35 29 58 35 30 58 35 31 58 35 27 59 35 28 59 35 29 59 35 30 59 35 31 59 35 26 60 35 27 60 35 28 60 35 29 60 35 30 60 35 31 60 35 26 61 35 27 61 35 28 61 35 29 61 35 30 61 35 31 61 35 27 62 35 28 62 35 29 62 35 30 62 35 31 62 35 32 62 35 27 63 35 28 63 35 29 63 35 30 63 35 31 63 35 32 63 35 33 63 35 27 64 35 28 64 35 29 64 35 30 64 35 31 64 35 32 64 35 33 64 35 28 65 35 29 65 35 30 65 35 31 65 35 32 65 35 33 65 35 34 65 35 28 66 35 29 66 35 30 66 35 31 66 35 32 66 35 33 66 35 34 66 35 35 66 35 30 67 35 31 67 35 32 67 35 33 67 35 34 67 35 35 67 35 36 67 35 37 67 35 30 68 35 31 68 35 32 68 35 33 68 35 34 68 35 35 68 35 36 68 35 37 68 35 31 69 35 32 69 35 33 69 35 34 69 35 35 69 35 36 69 35 37 69 35 31 70 35 32 70 35 33 70 35 34 70 35 35 70 35 36 70 35 32 71 35 33 71 35 34 71 35 35 71 35 36 71 35 33 72 35 34 72 35 35 72 35 33 73 35 34 73 35 35 73 35 29 53 36 30 53 36 29 54 36 30 54 36 28 55 36 29 55 36 30 55 36 31 55 36 27 56 36 28 56 36 29 56 36 30 56 36 31 56 36 27 57 36 28 57 36 29 57 36 30 57 36 31 57 36 27 58 36 28 58 36 29 58 36 30 58 36 31 58 36 27 59 36 28 59 36 29 59 36 30 59 36 31 59 36 27 60 36 28 60 36 29 60 36 30 60 36 31 60 36 27 61 36 28 61 36 29 61 36 30 61 36 31 61 36 27 62 36 28 62 36 29 62 36 30 62 36 31 62 36 32 62 36 27 63 36 28 63 36 29 63 36 30 63 36 31 63 36 32 63 36 33 63 36 27 64 36 28 64 36 29 64 36 30 64 36 31 64 36 32 64 36 33 64 36 28 65 36 29 65 36 30 65 36 31 65 36 32 65 36 33 65 36 34 65 36 29 66 36 30 66 36 31 66 36 32 66 36 33 66 36 34 66 36 35 66 36 30 67 36 31 67 36 32 67 36 33 67 36 34 67 36 35 67 36 36 67 36 30 68 36 31 68 36 32 68 36 33 68 36 34 68 36 35 68 36 36 68 36 31 69 36 32 69 36 33 69 36 34 69 36 35 69 36 36 69 36 31 70 36 32 70 36 33 70 36 34 70 36 35 70 36 32 71 36 33 71 36 34 71 36 35 71 36 32 72 36 33 72 36 34 72 36 33 73 36 30 53 37 29 54 37 30 54 37 31 54 37 29 55 37 30 55 37 31 55 37 27 56 37 28 56 37 29 56 37 30 56 37 31 56 37 27 57 37 28 57 37 29 57 37 30 57 37 31 57 37 27 58 37 28 58 37 29 58 37 30 58 37 31 58 37 28 59 37 29 59 37 30 59 37 31 59 37 27 60 37 28 60 37 29 60 37 30 60 37 31 60 37 32 60 37 27 61 37 28 61 37 29 61 37 30 61 37 31 61 37 32 61 37 27 62 37 28 62 37 29 62 37 30 62 37 31 62 37 32 62 37 33 62 37 27 63 37 28 63 37 29 63 37 30 63 37 31 63 37 32 63 37 33 63 37 28 64 37 29 64 37 30 64 37 31 64 37 32 64 37 33 64 37 29 65 37 30 65 37 31 65 37 32 65 37 33 65 37 34 65 37 35 65 37 30 66 37 31 66 37 32 66 37 33 66 37 34 66 37 35 66 37 30 67 37 31 67 37 32 67 37 33 67 37 34 67 37 35 67 37 30 68 37 31 68 37 32 68 37 33 68 37 34 68 37 35 68 37 31 69 37 32 69 37 33 69 37 34 69 37 35 69 37 31 70 37 32 70 37 33 70 37 34 70 37 35 70 37 32 71 37 33 71 37 34 71 37 33 72 37 30 53 38 29 54 38 30 54 38 31 54 38 29 55 38 30 55 38 31 55 38 29 56 38 30 56 38 31 56 38 29 57 38 30 57 38 31 57 38 29 58 38 30 58 38 31 58 38 29 59 38 30 59 38 31 59 38 32 59 38 29 60 38 30 60 38 31 60 38 32 60 38 29 61 38 30 61 38 31 61 38 32 61 38 33 61 38 29 62 38 30 62 38 31 62 38 32 62 38 33 62 38 29 63 38 30 63 38 31 63 38 32 63 38 33 63 38 29 64 38 30 64 38 31 64 38 32 64 38 33 64 38 34 64 38 30 65 38 31 65 38 32 65 38 33 65 38 34 65 38 35 65 38 30 66 38 31 66 38 32 66 38 33 66 38 34 66 38 35 66 38 30 67 38 31 67 38 32 67 38 33 67 38 34 67 38 35 67 38 31 68 38 32 68 38 33 68 38 34 68 38 35 68 38 31 69 38 32 69 38 33 69 38 34 69 38 35 69 38 31 70 38 32 70 38 33 70 38 34 70 38 32 71 38 33 71 38 33 72 38 30 54 39 31 54 39 29 55 39 30 55 39 31 55 39 29 56 39 30 56 39 31 56 39 29 57 39 30 57 39 31 57 39 29 58 39 30 58 39 31 58 39 32 58 39 29 59 39 30 59 39 31 59 39 32 59 39 29 60 39 30 60 39 31 60 39 32 60 39 33 60 39 29 61 39 30 61 39 31 61 39 32 61 39 33 61 39 29 62 39 30 62 39 31 62 39 32 62 39 33 62 39 29 63 39 30 63 39 31 63 39 32 63 39 33 63 39 34 63 39 30 64 39 31 64 39 32 64 39 33 64 39 34 64 39 30 65 39 31 65 39 32 65 39 33 65 39 34 65 39 35 65 39 30 66 39 31 66 39 32 66 39 33 66 39 34 66 39 35 66 39 31 67 39 32 67 39 33 67 39 34 67 39 35 67 39 31 68 39 32 68 39 33 68 39 34 68 39 31 69 39 32 69 39 33 69 39 34 69 39 32 70 39 33 70 39 33 71 39 30 54 40 31 54 40 30 55 40 31 55 40 29 56 40 30 56 40 31 56 40 29 57 40 30 57 40 31 57 40 29 58 40 30 58 40 31 58 40 32 58 40 30 59 40 31 59 40 32 59 40 30 60 40 31 60 40 32 60 40 33 60 40 30 61 40 31 61 40 32 61 40 33 61 40 29 62 40 30 62 40 31 62 40 32 62 40 33 62 40 34 62 40 30 63 40 31 63 40 32 63 40 33 63 40 34 63 40 30 64 40 31 64 40 32 64 40 33 64 40 34 64 40 30 65 40 31 65 40 32 65 40 33 65 40 34 65 40 30 66 40 31 66 40 32 66 40 33 66 40 34 66 40 31 67 40 32 67 40 33 67 40 34 67 40 31 68 40 32 68 40 33 68 40 34 68 40 32 69 40 33 69 40 33 70 40 30 56 41 31 56 41 30 57 41 31 57 41 30 58 41 31 58 41 30 59 41 31 59 41 32 59 41 30 60 41 31 60 41 32 60 41 30 61 41 31 61 41 32 61 41 33 61 41 30 62 41 31 62 41 32 62 41 33 62 41 30 63 41 31 63 41 32 63 41 33 63 41 30 64 41 31 64 41 32 64 41 33 64 41 31 65 41 32 65 41 33 65 41 31 66 41 32 66 41 33 66 41 31 67 41 32 67 41 33 67 41 32 68 41 33 68 41 31 57 42 31 58 42 31 59 42 32 59 42 31 60 42 32 60 42 30 61 42 31 61 42 32 61 42 31 62 42 32 62 42 33 62 42 31 63 42 32 63 42 33 63 42 31 64 42 32 64 42 33 64 42 31 65 42 32 65 42 33 65 42 31 66 42 32 66 42 33 66 42 32 67 42 31 60 43 31 61 43 31 62 43 55 47 33 46 58 33 46 59 33 47 59 33 53 46 34 54 46 34 55 46 34 56 46 34 51 47 34 52 47 34 53 47 34 54 47 34 55 47 34 56 47 34 57 47 34 51 48 34 51 49 34 51 50 34 52 50 34 50 51 34 51 51 34 52 51 34 49 52 34 50 52 34 51 52 34 52 52 34 48 53 34 49 53 34 50 53 34 51 53 34 46 54 34 47 54 34 48 54 34 49 54 34 46 55 34 47 55 34 48 55 34 46 56 34 47 56 34 46 57 34 47 57 34 46 58 34 47 58 34 46 59 34 47 59 34 48 59 34 46 60 34 47 60 34 46 61 34 47 61 34 50 46 35 51 46 35 52 46 35 53 46 35 54 46 35 55 46 35 56 46 35 57 46 35 50 47 35 51 47 35 52 47 35 53 47 35 54 47 35 55 47 35 56 47 35 57 47 35 50 48 35 51 48 35 52 48 35 53 48 35 54 48 35 55 48 35 50 49 35 51 49 35 52 49 35 50 50 35 51 50 35 52 50 35 53 50 35 54 50 35 46 51 35 47 51 35 48 51 35 49 51 35 50 51 35 51 51 35 52 51 35 53 51 35 54 51 35 46 52 35 47 52 35 48 52 35 49 52 35 50 52 35 51 52 35 52 52 35 53 52 35 54 52 35 46 53 35 47 53 35 48 53 35 49 53 35 50 53 35 51 53 35 52 53 35 53 53 35 54 53 35 46 54 35 47 54 35 48 54 35 49 54 35 50 54 35 51 54 35 52 54 35 53 54 35 46 55 35 47 55 35 48 55 35 49 55 35 50 55 35 51 55 35 52 55 35 46 56 35 47 56 35 48 56 35 49 56 35 50 56 35 51 56 35 46 57 35 47 57 35 48 57 35 49 57 35 50 57 35 45 58 35 46 58 35 47 58 35 48 58 35 49 58 35 50 58 35 46 59 35 47 59 35 48 59 35 49 59 35 50 59 35 46 60 35 47 60 35 48 60 35 49 60 35 46 61 35 47 61 35 48 61 35 49 61 35 46 62 35 47 62 35 48 62 35 50 45 36 51 45 36 52 45 36 53 45 36 54 45 36 55 45 36 56 45 36 49 46 36 50 46 36 51 46 36 52 46 36 53 46 36 54 46 36 55 46 36 56 46 36 57 46 36 49 47 36 50 47 36 51 47 36 52 47 36 53 47 36 54 47 36 55 47 36 56 47 36 57 47 36 49 48 36 50 48 36 51 48 36 52 48 36 53 48 36 54 48 36 55 48 36 56 48 36 48 49 36 49 49 36 50 49 36 51 49 36 52 49 36 53 49 36 54 49 36 55 49 36 47 50 36 48 50 36 49 50 36 50 50 36 51 50 36 52 50 36 53 50 36 54 50 36 46 51 36 47 51 36 48 51 36 49 51 36 50 51 36 51 51 36 52 51 36 53 51 36 54 51 36 55 51 36 46 52 36 47 52 36 48 52 36 49 52 36 50 52 36 51 52 36 52 52 36 53 52 36 54 52 36 55 52 36 46 53 36 47 53 36 48 53 36 49 53 36 50 53 36 51 53 36 52 53 36 53 53 36 54 53 36 55 53 36 46 54 36 47 54 36 48 54 36 49 54 36 50 54 36 51 54 36 52 54 36 53 54 36 54 54 36 46 55 36 47 55 36 48 55 36 49 55 36 50 55 36 51 55 36 52 55 36 53 55 36 46 56 36 47 56 36 48 56 36 49 56 36 50 56 36 51 56 36 52 56 36 45 57 36 46 57 36 47 57 36 48 57 36 49 57 36 50 57 36 51 57 36 45 58 36 46 58 36 47 58 36 48 58 36 49 58 36 50 58 36 45 59 36 46 59 36 47 59 36 48 59 36 49 59 36 50 59 36 46 60 36 47 60 36 48 60 36 49 60 36 50 60 36 46 61 36 47 61 36 48 61 36 49 61 36 46 62 36 47 62 36 48 62 36 50 45 37 51 45 37 52 45 37 53 45 37 54 45 37 55 45 37 56 45 37 49 46 37 50 46 37 51 46 37 52 46 37 53 46 37 54 46 37 55 46 37 56 46 37 48 47 37 49 47 37 50 47 37 51 47 37 52 47 37 53 47 37 54 47 37 55 47 37 56 47 37 57 47 37 48 48 37 49 48 37 50 48 37 51 48 37 52 48 37 53 48 37 54 48 37 55 48 37 56 48 37 48 49 37 49 49 37 50 49 37 51 49 37 52 49 37 53 49 37 54 49 37 55 49 37 46 50 37 47 50 37 48 50 37 49 50 37 50 50 37 51 50 37 52 50 37 53 50 37 54 50 37 55 50 37 46 51 37 47 51 37 48 51 37 49 51 37 50 51 37 51 51 37 52 51 37 53 51 37 54 51 37 55 51 37 46 52 37 47 52 37 48 52 37 49 52 37 50 52 37 51 52 37 52 52 37 53 52 37 54 52 37 55 52 37 46 53 37 47 53 37 48 53 37 49 53 37 50 53 37 51 53 37 52 53 37 53 53 37 54 53 37 55 53 37 46 54 37 47 54 37 48 54 37 49 54 37 50 54 37 51 54 37 52 54 37 53 54 37 54 54 37 55 54 37 46 55 37 47 55 37 48 55 37 49 55 37 50 55 37 51 55 37 52 55 37 53 55 37 45 56 37 46 56 37 47 56 37 48 56 37 49 56 37 50 56 37 51 56 37 52 56 37 53 56 37 45 57 37 46 57 37 47 57 37 48 57 37 49 57 37 50 57 37 51 57 37 52 57 37 53 57 37 45 58 37 46 58 37 47 58 37 48 58 37 49 58 37 50 58 37 51 58 37 45 59 37 46 59 37 47 59 37 48 59 37 49 59 37 50 59 37 51 59 37 45 60 37 46 60 37 47 60 37 48 60 37 49 60 37 50 60 37 46 61 37 47 61 37 48 61 37 49 61 37 50 61 37 46 62 37 47 62 37 48 62 37 49 62 37 47 63 37 50 45 38 51 45 38 52 45 38 53 45 38 54 45 38 55 45 38 49 46 38 50 46 38 51 46 38 52 46 38 53 46 38 54 46 38 55 46 38 56 46 38 48 47 38 49 47 38 50 47 38 51 47 38 52 47 38 53 47 38 54 47 38 55 47 38 56 47 38 57 47 38 48 48 38 49 48 38 50 48 38 51 48 38 52 48 38 53 48 38 54 48 38 55 48 38 56 48 38 48 49 38 49 49 38 50 49 38 51 49 38 52 49 38 53 49 38 54 49 38 55 49 38 47 50 38 48 50 38 49 50 38 50 50 38 51 50 38 52 50 38 53 50 38 54 50 38 55 50 38 46 51 38 47 51 38 48 51 38 49 51 38 50 51 38 51 51 38 52 51 38 53 51 38 54 51 38 55 51 38 56 51 38 46 52 38 47 52 38 48 52 38 49 52 38 50 52 38 51 52 38 52 52 38 53 52 38 54 52 38 55 52 38 46 53 38 47 53 38 48 53 38 49 53 38 50 53 38 51 53 38 52 53 38 53 53 38 54 53 38 55 53 38 46 54 38 47 54 38 48 54 38 49 54 38 50 54 38 51 54 38 52 54 38 53 54 38 54 54 38 55 54 38 46 55 38 47 55 38 48 55 38 49 55 38 50 55 38 51 55 38 52 55 38 53 55 38 54 55 38 46 56 38 47 56 38 48 56 38 49 56 38 50 56 38 51 56 38 52 56 38 53 56 38 45 57 38 46 57 38 47 57 38 48 57 38 49 57 38 50 57 38 51 57 38 52 57 38 53 57 38 45 58 38 46 58 38 47 58 38 48 58 38 49 58 38 50 58 38 51 58 38 52 58 38 45 59 38 46 59 38 47 59 38 48 59 38 49 59 38 50 59 38 51 59 38 52 59 38 46 60 38 47 60 38 48 60 38 49 60 38 50 60 38 51 60 38 46 61 38 47 61 38 48 61 38 49 61 38 50 61 38 51 61 38 46 62 38 47 62 38 48 62 38 49 62 38 48 63 38 51 45 39 52 45 39 49 46 39 50 46 39 51 46 39 52 46 39 53 46 39 54 46 39 55 46 39 56 46 39 48 47 39 49 47 39 50 47 39 51 47 39 52 47 39 53 47 39 54 47 39 55 47 39 56 47 39 57 47 39 48 48 39 49 48 39 50 48 39 51 48 39 52 48 39 53 48 39 54 48 39 55 48 39 56 48 39 48 49 39 49 49 39 50 49 39 51 49 39 52 49 39 53 49 39 54 49 39 55 49 39 56 49 39 47 50 39 48 50 39 49 50 39 50 50 39 51 50 39 52 50 39 53 50 39 54 50 39 55 50 39 56 50 39 46 51 39 47 51 39 48 51 39 49 51 39 50 51 39 51 51 39 52 51 39 53 51 39 54 51 39 55 51 39 46 52 39 47 52 39 48 52 39 49 52 39 50 52 39 51 52 39 52 52 39 53 52 39 54 52 39 55 52 39 45 53 39 46 53 39 47 53 39 48 53 39 49 53 39 50 53 39 51 53 39 52 53 39 53 53 39 54 53 39 55 53 39 46 54 39 47 54 39 48 54 39 49 54 39 50 54 39 51 54 39 52 54 39 53 54 39 54 54 39 55 54 39 46 55 39 47 55 39 48 55 39 49 55 39 50 55 39 51 55 39 52 55 39 53 55 39 54 55 39 45 56 39 46 56 39 47 56 39 48 56 39 49 56 39 50 56 39 51 56 39 52 56 39 53 56 39 45 57 39 46 57 39 47 57 39 48 57 39 49 57 39 50 57 39 51 57 39 52 57 39 53 57 39 45 58 39 46 58 39 47 58 39 48 58 39 49 58 39 50 58 39 51 58 39 52 58 39 53 58 39 45 59 39 46 59 39 47 59 39 48 59 39 49 59 39 50 59 39 51 59 39 52 59 39 46 60 39 47 60 39 48 60 39 49 60 39 50 60 39 51 60 39 46 61 39 47 61 39 48 61 39 49 61 39 50 61 39 51 61 39 47 62 39 48 62 39 49 62 39 50 62 39 48 63 39 50 46 40 51 46 40 52 46 40 53 46 40 54 46 40 49 47 40 50 47 40 51 47 40 52 47 40 53 47 40 54 47 40 55 47 40 56 47 40 48 48 40 49 48 40 50 48 40 51 48 40 52 48 40 53 48 40 54 48 40 55 48 40 56 48 40 48 49 40 49 49 40 50 49 40 51 49 40 52 49 40 53 49 40 54 49 40 55 49 40 56 49 40 47 50 40 48 50 40 49 50 40 50 50 40 51 50 40 52 50 40 53 50 40 54 50 40 55 50 40 56 50 40 47 51 40 48 51 40 49 51 40 50 51 40 51 51 40 52 51 40 53 51 40 54 51 40 55 51 40 46 52 40 47 52 40 48 52 40 49 52 40 50 52 40 51 52 40 52 52 40 53 52 40 54 52 40 55 52 40 45 53 40 46 53 40 47 53 40 48 53 40 49 53 40 50 53 40 51 53 40 52 53 40 53 53 40 54 53 40 55 53 40 45 54 40 46 54 40 47 54 40 48 54 40 49 54 40 50 54 40 51 54 40 52 54 40 53 54 40 54 54 40 55 54 40 46 55 40 47 55 40 48 55 40 49 55 40 50 55 40 51 55 40 52 55 40 53 55 40 54 55 40 46 56 40 47 56 40 48 56 40 49 56 40 50 56 40 51 56 40 52 56 40 53 56 40 45 57 40 46 57 40 47 57 40 48 57 40 49 57 40 50 57 40 51 57 40 52 57 40 53 57 40 45 58 40 46 58 40 47 58 40 48 58 40 49 58 40 50 58 40 51 58 40 52 58 40 53 58 40 46 59 40 47 59 40 48 59 40 49 59 40 50 59 40 51 59 40 52 59 40 46 60 40 47 60 40 48 60 40 49 60 40 50 60 40 51 60 40 52 60 40 46 61 40 47 61 40 48 61 40 49 61 40 50 61 40 51 61 40 47 62 40 48 62 40 49 62 40 50 62 40 49 63 40 51 47 41 52 47 41 53 47 41 54 47 41 55 47 41 49 48 41 50 48 41 51 48 41 52 48 41 53 48 41 54 48 41 55 48 41 56 48 41 48 49 41 49 49 41 50 49 41 51 49 41 52 49 41 53 49 41 54 49 41 55 49 41 56 49 41 47 50 41 48 50 41 49 50 41 50 50 41 51 50 41 52 50 41 53 50 41 54 50 41 55 50 41 56 50 41 47 51 41 48 51 41 49 51 41 50 51 41 51 51 41 52 51 41 53 51 41 54 51 41 55 51 41 46 52 41 47 52 41 48 52 41 49 52 41 50 52 41 51 52 41 52 52 41 53 52 41 54 52 41 55 52 41 46 53 41 47 53 41 48 53 41 49 53 41 50 53 41 51 53 41 52 53 41 53 53 41 54 53 41 55 53 41 45 54 41 46 54 41 47 54 41 48 54 41 49 54 41 50 54 41 51 54 41 52 54 41 53 54 41 54 54 41 55 54 41 46 55 41 47 55 41 48 55 41 49 55 41 50 55 41 51 55 41 52 55 41 53 55 41 54 55 41 46 56 41 47 56 41 48 56 41 49 56 41 50 56 41 51 56 41 52 56 41 53 56 41 45 57 41 46 57 41 47 57 41 48 57 41 49 57 41 50 57 41 51 57 41 52 57 41 53 57 41 46 58 41 47 58 41 48 58 41 49 58 41 50 58 41 51 58 41 52 58 41 53 58 41 46 59 41 47 59 41 48 59 41 49 59 41 50 59 41 51 59 41 52 59 41 46 60 41 47 60 41 48 60 41 49 60 41 50 60 41 51 60 41 52 60 41 47 61 41 48 61 41 49 61 41 50 61 41 51 61 41 48 62 41 49 62 41 50 62 41 50 48 42 51 48 42 52 48 42 53 48 42 54 48 42 55 48 42 49 49 42 50 49 42 51 49 42 52 49 42 53 49 42 54 49 42 55 49 42 48 50 42 49 50 42 50 50 42 51 50 42 52 50 42 53 50 42 54 50 42 55 50 42 47 51 42 48 51 42 49 51 42 50 51 42 51 51 42 52 51 42 53 51 42 54 51 42 55 51 42 47 52 42 48 52 42 49 52 42 50 52 42 51 52 42 52 52 42 53 52 42 54 52 42 55 52 42 46 53 42 47 53 42 48 53 42 49 53 42 50 53 42 51 53 42 52 53 42 53 53 42 54 53 42 55 53 42 46 54 42 47 54 42 48 54 42 49 54 42 50 54 42 51 54 42 52 54 42 53 54 42 54 54 42 46 55 42 47 55 42 48 55 42 49 55 42 50 55 42 51 55 42 52 55 42 53 55 42 54 55 42 46 56 42 47 56 42 48 56 42 49 56 42 50 56 42 51 56 42 52 56 42 53 56 42 46 57 42 47 57 42 48 57 42 49 57 42 50 57 42 51 57 42 52 57 42 53 57 42 46 58 42 47 58 42 48 58 42 49 58 42 50 58 42 51 58 42 52 58 42 53 58 42 46 59 42 47 59 42 48 59 42 49 59 42 50 59 42 51 59 42 52 59 42 47 60 42 48 60 42 49 60 42 50 60 42 51 60 42 52 60 42 47 61 42 48 61 42 49 61 42 50 61 42 49 62 42 51 48 43 52 48 43 53 48 43 54 48 43 50 49 43 51 49 43 52 49 43 53 49 43 54 49 43 55 49 43 49 50 43 50 50 43 51 50 43 52 50 43 53 50 43 54 50 43 55 50 43 47 51 43 48 51 43 49 51 43 50 51 43 51 51 43 52 51 43 53 51 43 54 51 43 55 51 43 47 52 43 48 52 43 49 52 43 50 52 43 51 52 43 52 52 43 53 52 43 54 52 43 55 52 43 47 53 43 48 53 43 49 53 43 50 53 43 51 53 43 52 53 43 53 53 43 54 53 43 47 54 43 48 54 43 49 54 43 50 54 43 51 54 43 52 54 43 53 54 43 54 54 43 47 55 43 48 55 43 49 55 43 50 55 43 51 55 43 52 55 43 53 55 43 54 55 43 47 56 43 48 56 43 49 56 43 50 56 43 51 56 43 52 56 43 53 56 43 46 57 43 47 57 43 48 57 43 49 57 43 50 57 43 51 57 43 52 57 43 53 57 43 47 58 43 48 58 43 49 58 43 50 58 43 51 58 43 52 58 43 47 59 43 48 59 43 49 59 43 50 59 43 51 59 43 52 59 43 47 60 43 48 60 43 49 60 43 50 60 43 51 60 43 50 61 43 51 50 44 52 50 44 53 50 44 49 51 44 50 51 44 51 51 44 52 51 44 53 51 44 54 51 44 49 52 44 50 52 44 51 52 44 52 52 44 53 52 44 54 52 44 49 53 44 50 53 44 51 53 44 52 53 44 53 53 44 54 53 44 48 54 44 49 54 44 50 54 44 51 54 44 52 54 44 53 54 44 48 55 44 49 55 44 50 55 44 51 55 44 52 55 44 53 55 44 47 56 44 48 56 44 49 56 44 50 56 44 51 56 44 52 56 44 47 57 44 48 57 44 49 57 44 50 57 44 51 57 44 52 57 44 47 58 44 48 58 44 49 58 44 50 58 44 51 58 44 47 59 44 48 59 44 49 59 44 50 59 44 51 51 45 52 51 45 50 52 45 51 52 45 52 52 45 53 52 45 49 53 45 50 53 45 51 53 45 52 53 45 49 54 45 50 54 45 51 54 45 52 54 45 49 55 45 50 55 45 51 55 45 52 55 45 49 56 45 50 56 45 51 56 45 49 57 45 50 57 45 51 57 45 50 58 45 52 53 46 32 47 34 33 47 34 34 47 34 35 47 34 36 47 34 34 48 34 35 48 34 36 48 34 37 48 34 38 48 34 39 51 34 38 52 34 39 52 34 39 53 34 40 53 34 41 53 34 41 54 34 42 54 34 43 54 34 42 55 34 43 55 34 42 56 34 43 56 34 43 57 34 43 58 34 42 59 34 43 59 34 42 60 34 43 60 34 32 47 35 33 47 35 34 47 35 35 47 35 36 47 35 37 47 35 38 47 35 39 47 35 33 48 35 34 48 35 35 48 35 36 48 35 37 48 35 38 48 35 39 48 35 38 49 35 39 49 35 37 50 35 38 50 35 39 50 35 36 51 35 37 51 35 38 51 35 39 51 35 40 51 35 41 51 35 42 51 35 35 52 35 36 52 35 37 52 35 38 52 35 39 52 35 40 52 35 41 52 35 42 52 35 43 52 35 36 53 35 37 53 35 38 53 35 39 53 35 40 53 35 41 53 35 42 53 35 43 53 35 36 54 35 37 54 35 38 54 35 39 54 35 40 54 35 41 54 35 42 54 35 43 54 35 37 55 35 38 55 35 39 55 35 40 55 35 41 55 35 42 55 35 43 55 35 38 56 35 39 56 35 40 56 35 41 56 35 42 56 35 43 56 35 44 56 35 39 57 35 40 57 35 41 57 35 42 57 35 43 57 35 44 57 35 40 58 35 41 58 35 42 58 35 43 58 35 44 58 35 40 59 35 41 59 35 42 59 35 43 59 35 44 59 35 40 60 35 41 60 35 42 60 35 43 60 35 44 60 35 41 61 35 42 61 35 43 61 35 42 62 35 43 62 35 33 46 36 34 46 36 35 46 36 36 46 36 37 46 36 38 46 36 39 46 36 32 47 36 33 47 36 34 47 36 35 47 36 36 47 36 37 47 36 38 47 36 39 47 36 40 47 36 33 48 36 34 48 36 35 48 36 36 48 36 37 48 36 38 48 36 39 48 36 40 48 36 41 48 36 36 49 36 37 49 36 38 49 36 39 49 36 40 49 36 41 49 36 36 50 36 37 50 36 38 50 36 39 50 36 40 50 36 41 50 36 35 51 36 36 51 36 37 51 36 38 51 36 39 51 36 40 51 36 41 51 36 42 51 36 43 51 36 35 52 36 36 52 36 37 52 36 38 52 36 39 52 36 40 52 36 41 52 36 42 52 36 43 52 36 35 53 36 36 53 36 37 53 36 38 53 36 39 53 36 40 53 36 41 53 36 42 53 36 43 53 36 35 54 36 36 54 36 37 54 36 38 54 36 39 54 36 40 54 36 41 54 36 42 54 36 43 54 36 36 55 36 37 55 36 38 55 36 39 55 36 40 55 36 41 55 36 42 55 36 43 55 36 44 55 36 37 56 36 38 56 36 39 56 36 40 56 36 41 56 36 42 56 36 43 56 36 44 56 36 45 56 36 38 57 36 39 57 36 40 57 36 41 57 36 42 57 36 43 57 36 44 57 36 38 58 36 39 58 36 40 58 36 41 58 36 42 58 36 43 58 36 44 58 36 39 59 36 40 59 36 41 59 36 42 59 36 43 59 36 44 59 36 40 60 36 41 60 36 42 60 36 43 60 36 44 60 36 40 61 36 41 61 36 42 61 36 43 61 36 44 61 36 42 62 36 43 62 36 34 46 37 35 46 37 36 46 37 37 46 37 38 46 37 39 46 37 40 46 37 32 47 37 33 47 37 34 47 37 35 47 37 36 47 37 37 47 37 38 47 37 39 47 37 40 47 37 41 47 37 33 48 37 34 48 37 35 48 37 36 48 37 37 48 37 38 48 37 39 48 37 40 48 37 41 48 37 34 49 37 35 49 37 36 49 37 37 49 37 38 49 37 39 49 37 40 49 37 41 49 37 34 50 37 35 50 37 36 50 37 37 50 37 38 50 37 39 50 37 40 50 37 41 50 37 42 50 37 34 51 37 35 51 37 36 51 37 37 51 37 38 51 37 39 51 37 40 51 37 41 51 37 42 51 37 43 51 37 34 52 37 35 52 37 36 52 37 37 52 37 38 52 37 39 52 37 40 52 37 41 52 37 42 52 37 43 52 37 34 53 37 35 53 37 36 53 37 37 53 37 38 53 37 39 53 37 40 53 37 41 53 37 42 53 37 43 53 37 35 54 37 36 54 37 37 54 37 38 54 37 39 54 37 40 54 37 41 54 37 42 54 37 43 54 37 44 54 37 45 54 37 36 55 37 37 55 37 38 55 37 39 55 37 40 55 37 41 55 37 42 55 37 43 55 37 44 55 37 45 55 37 36 56 37 37 56 37 38 56 37 39 56 37 40 56 37 41 56 37 42 56 37 43 56 37 44 56 37 36 57 37 37 57 37 38 57 37 39 57 37 40 57 37 41 57 37 42 57 37 43 57 37 44 57 37 37 58 37 38 58 37 39 58 37 40 58 37 41 58 37 42 58 37 43 58 37 44 58 37 38 59 37 39 59 37 40 59 37 41 59 37 42 59 37 43 59 37 44 59 37 38 60 37 39 60 37 40 60 37 41 60 37 42 60 37 43 60 37 44 60 37 39 61 37 40 61 37 41 61 37 42 61 37 43 61 37 44 61 37 40 62 37 41 62 37 42 62 37 43 62 37 42 63 37 43 63 37 35 46 38 36 46 38 37 46 38 38 46 38 39 46 38 40 46 38 32 47 38 33 47 38 34 47 38 35 47 38 36 47 38 37 47 38 38 47 38 39 47 38 40 47 38 41 47 38 33 48 38 34 48 38 35 48 38 36 48 38 37 48 38 38 48 38 39 48 38 40 48 38 41 48 38 34 49 38 35 49 38 36 49 38 37 49 38 38 49 38 39 49 38 40 49 38 41 49 38 34 50 38 35 50 38 36 50 38 37 50 38 38 50 38 39 50 38 40 50 38 41 50 38 42 50 38 34 51 38 35 51 38 36 51 38 37 51 38 38 51 38 39 51 38 40 51 38 41 51 38 42 51 38 43 51 38 34 52 38 35 52 38 36 52 38 37 52 38 38 52 38 39 52 38 40 52 38 41 52 38 42 52 38 43 52 38 44 52 38 34 53 38 35 53 38 36 53 38 37 53 38 38 53 38 39 53 38 40 53 38 41 53 38 42 53 38 43 53 38 44 53 38 35 54 38 36 54 38 37 54 38 38 54 38 39 54 38 40 54 38 41 54 38 42 54 38 43 54 38 44 54 38 45 54 38 35 55 38 36 55 38 37 55 38 38 55 38 39 55 38 40 55 38 41 55 38 42 55 38 43 55 38 44 55 38 45 55 38 36 56 38 37 56 38 38 56 38 39 56 38 40 56 38 41 56 38 42 56 38 43 56 38 44 56 38 45 56 38 36 57 38 37 57 38 38 57 38 39 57 38 40 57 38 41 57 38 42 57 38 43 57 38 44 57 38 37 58 38 38 58 38 39 58 38 40 58 38 41 58 38 42 58 38 43 58 38 44 58 38 37 59 38 38 59 38 39 59 38 40 59 38 41 59 38 42 59 38 43 59 38 44 59 38 38 60 38 39 60 38 40 60 38 41 60 38 42 60 38 43 60 38 44 60 38 39 61 38 40 61 38 41 61 38 42 61 38 43 61 38 44 61 38 40 62 38 41 62 38 42 62 38 43 62 38 44 62 38 41 63 38 42 63 38 35 46 39 36 46 39 37 46 39 38 46 39 39 46 39 40 46 39 33 47 39 34 47 39 35 47 39 36 47 39 37 47 39 38 47 39 39 47 39 40 47 39 41 47 39 33 48 39 34 48 39 35 48 39 36 48 39 37 48 39 38 48 39 39 48 39 40 48 39 41 48 39 34 49 39 35 49 39 36 49 39 37 49 39 38 49 39 39 49 39 40 49 39 41 49 39 42 49 39 34 50 39 35 50 39 36 50 39 37 50 39 38 50 39 39 50 39 40 50 39 41 50 39 42 50 39 34 51 39 35 51 39 36 51 39 37 51 39 38 51 39 39 51 39 40 51 39 41 51 39 42 51 39 43 51 39 34 52 39 35 52 39 36 52 39 37 52 39 38 52 39 39 52 39 40 52 39 41 52 39 42 52 39 43 52 39 44 52 39 34 53 39 35 53 39 36 53 39 37 53 39 38 53 39 39 53 39 40 53 39 41 53 39 42 53 39 43 53 39 44 53 39 35 54 39 36 54 39 37 54 39 38 54 39 39 54 39 40 54 39 41 54 39 42 54 39 43 54 39 44 54 39 45 54 39 35 55 39 36 55 39 37 55 39 38 55 39 39 55 39 40 55 39 41 55 39 42 55 39 43 55 39 44 55 39 45 55 39 36 56 39 37 56 39 38 56 39 39 56 39 40 56 39 41 56 39 42 56 39 43 56 39 44 56 39 36 57 39 37 57 39 38 57 39 39 57 39 40 57 39 41 57 39 42 57 39 43 57 39 44 57 39 36 58 39 37 58 39 38 58 39 39 58 39 40 58 39 41 58 39 42 58 39 43 58 39 44 58 39 37 59 39 38 59 39 39 59 39 40 59 39 41 59 39 42 59 39 43 59 39 44 59 39 38 60 39 39 60 39 40 60 39 41 60 39 42 60 39 43 60 39 44 60 39 38 61 39 39 61 39 40 61 39 41 61 39 42 61 39 43 61 39 44 61 39 40 62 39 41 62 39 42 62 39 43 62 39 40 63 39 41 63 39 42 63 39 38 46 40 34 47 40 35 47 40 36 47 40 37 47 40 38 47 40 39 47 40 40 47 40 34 48 40 35 48 40 36 48 40 37 48 40 38 48 40 39 48 40 40 48 40 41 48 40 34 49 40 35 49 40 36 49 40 37 49 40 38 49 40 39 49 40 40 49 40 41 49 40 42 49 40 34 50 40 35 50 40 36 50 40 37 50 40 38 50 40 39 50 40 40 50 40 41 50 40 42 50 40 34 51 40 35 51 40 36 51 40 37 51 40 38 51 40 39 51 40 40 51 40 41 51 40 42 51 40 34 52 40 35 52 40 36 52 40 37 52 40 38 52 40 39 52 40 40 52 40 41 52 40 42 52 40 43 52 40 34 53 40 35 53 40 36 53 40 37 53 40 38 53 40 39 53 40 40 53 40 41 53 40 42 53 40 43 53 40 44 53 40 35 54 40 36 54 40 37 54 40 38 54 40 39 54 40 40 54 40 41 54 40 42 54 40 43 54 40 44 54 40 35 55 40 36 55 40 37 55 40 38 55 40 39 55 40 40 55 40 41 55 40 42 55 40 43 55 40 44 55 40 45 55 40 36 56 40 37 56 40 38 56 40 39 56 40 40 56 40 41 56 40 42 56 40 43 56 40 44 56 40 45 56 40 36 57 40 37 57 40 38 57 40 39 57 40 40 57 40 41 57 40 42 57 40 43 57 40 44 57 40 36 58 40 37 58 40 38 58 40 39 58 40 40 58 40 41 58 40 42 58 40 43 58 40 44 58 40 37 59 40 38 59 40 39 59 40 40 59 40 41 59 40 42 59 40 43 59 40 44 59 40 38 60 40 39 60 40 40 60 40 41 60 40 42 60 40 43 60 40 44 60 40 38 61 40 39 61 40 40 61 40 41 61 40 42 61 40 43 61 40 39 62 40 40 62 40 41 62 40 42 62 40 43 62 40 40 63 40 41 63 40 35 47 41 36 47 41 37 47 41 38 47 41 39 47 41 34 48 41 35 48 41 36 48 41 37 48 41 38 48 41 39 48 41 40 48 41 41 48 41 34 49 41 35 49 41 36 49 41 37 49 41 38 49 41 39 49 41 40 49 41 41 49 41 42 49 41 34 50 41 35 50 41 36 50 41 37 50 41 38 50 41 39 50 41 40 50 41 41 50 41 42 50 41 34 51 41 35 51 41 36 51 41 37 51 41 38 51 41 39 51 41 40 51 41 41 51 41 42 51 41 34 52 41 35 52 41 36 52 41 37 52 41 38 52 41 39 52 41 40 52 41 41 52 41 42 52 41 43 52 41 35 53 41 36 53 41 37 53 41 38 53 41 39 53 41 40 53 41 41 53 41 42 53 41 43 53 41 35 54 41 36 54 41 37 54 41 38 54 41 39 54 41 40 54 41 41 54 41 42 54 41 43 54 41 44 54 41 35 55 41 36 55 41 37 55 41 38 55 41 39 55 41 40 55 41 41 55 41 42 55 41 43 55 41 44 55 41 45 55 41 36 56 41 37 56 41 38 56 41 39 56 41 40 56 41 41 56 41 42 56 41 43 56 41 44 56 41 45 56 41 36 57 41 37 57 41 38 57 41 39 57 41 40 57 41 41 57 41 42 57 41 43 57 41 44 57 41 36 58 41 37 58 41 38 58 41 39 58 41 40 58 41 41 58 41 42 58 41 43 58 41 44 58 41 37 59 41 38 59 41 39 59 41 40 59 41 41 59 41 42 59 41 43 59 41 44 59 41 37 60 41 38 60 41 39 60 41 40 60 41 41 60 41 42 60 41 43 60 41 38 61 41 39 61 41 40 61 41 41 61 41 42 61 41 43 61 41 40 62 41 41 62 41 42 62 41 43 62 41 40 63 41 41 63 41 34 48 42 35 48 42 36 48 42 37 48 42 38 48 42 39 48 42 34 49 42 35 49 42 36 49 42 37 49 42 38 49 42 39 49 42 40 49 42 41 49 42 34 50 42 35 50 42 36 50 42 37 50 42 38 50 42 39 50 42 40 50 42 41 50 42 34 51 42 35 51 42 36 51 42 37 51 42 38 51 42 39 51 42 40 51 42 41 51 42 42 51 42 35 52 42 36 52 42 37 52 42 38 52 42 39 52 42 40 52 42 41 52 42 42 52 42 43 52 42 35 53 42 36 53 42 37 53 42 38 53 42 39 53 42 40 53 42 41 53 42 42 53 42 43 53 42 36 54 42 37 54 42 38 54 42 39 54 42 40 54 42 41 54 42 42 54 42 43 54 42 36 55 42 37 55 42 38 55 42 39 55 42 40 55 42 41 55 42 42 55 42 43 55 42 36 56 42 37 56 42 38 56 42 39 56 42 40 56 42 41 56 42 42 56 42 43 56 42 36 57 42 37 57 42 38 57 42 39 57 42 40 57 42 41 57 42 42 57 42 43 57 42 36 58 42 37 58 42 38 58 42 39 58 42 40 58 42 41 58 42 42 58 42 43 58 42 37 59 42 38 59 42 39 59 42 40 59 42 41 59 42 42 59 42 43 59 42 38 60 42 39 60 42 40 60 42 41 60 42 42 60 42 43 60 42 38 61 42 39 61 42 40 61 42 41 61 42 42 61 42 43 61 42 40 62 42 41 62 42 42 62 42 35 49 43 36 49 43 37 49 43 38 49 43 39 49 43 34 50 43 35 50 43 36 50 43 37 50 43 38 50 43 39 50 43 40 50 43 41 50 43 35 51 43 36 51 43 37 51 43 38 51 43 39 51 43 40 51 43 41 51 43 35 52 43 36 52 43 37 52 43 38 52 43 39 52 43 40 52 43 41 52 43 42 52 43 36 53 43 37 53 43 38 53 43 39 53 43 40 53 43 41 53 43 42 53 43 43 53 43 36 54 43 37 54 43 38 54 43 39 54 43 40 54 43 41 54 43 42 54 43 43 54 43 36 55 43 37 55 43 38 55 43 39 55 43 40 55 43 41 55 43 42 55 43 43 55 43 36 56 43 37 56 43 38 56 43 39 56 43 40 56 43 41 56 43 42 56 43 43 56 43 36 57 43 37 57 43 38 57 43 39 57 43 40 57 43 41 57 43 42 57 43 43 57 43 37 58 43 38 58 43 39 58 43 40 58 43 41 58 43 42 58 43 43 58 43 38 59 43 39 59 43 40 59 43 41 59 43 42 59 43 43 59 43 38 60 43 39 60 43 40 60 43 41 60 43 42 60 43 43 60 43 40 61 43 41 61 43 42 61 43 43 61 43 36 50 44 37 50 44 38 50 44 39 50 44 40 50 44 36 51 44 37 51 44 38 51 44 39 51 44 40 51 44 41 51 44 36 52 44 37 52 44 38 52 44 39 52 44 40 52 44 41 52 44 36 53 44 37 53 44 38 53 44 39 53 44 40 53 44 41 53 44 37 54 44 38 54 44 39 54 44 40 54 44 41 54 44 37 55 44 38 55 44 39 55 44 40 55 44 41 55 44 37 56 44 38 56 44 39 56 44 40 56 44 41 56 44 38 57 44 39 57 44 40 57 44 41 57 44 42 57 44 38 58 44 39 58 44 40 58 44 41 58 44 42 58 44 39 59 44 40 59 44 41 59 44 42 59 44 40 60 44 41 60 44 37 52 45 38 52 45 39 52 45 38 53 45 39 53 45 40 53 45 38 54 45 39 54 45 40 54 45 38 55 45 39 55 45 40 55 45 41 55 45 38 56 45 39 56 45 40 56 45 41 56 45 39 57 45 40 57 45 41 57 45 40 58 45 40 59 45 38 55 46 €?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?€?CiftiLib-1.6.0/example/datatype.cxx000066400000000000000000000031501373715117300172040ustar00rootroot00000000000000#include "CiftiFile.h" #include #include using namespace std; using namespace cifti; /**\file datatype.cxx This program reads a Cifti file from argv[1], and writes it out to argv[2] using 8-bit unsigned integer and data scaling. It uses a single CiftiFile object to do this, for simplicity - to see how to do something similar with two objects, which is more relevant for how you would do processing on cifti files, see rewrite.cxx. \include datatype.cxx */ int main(int argc, char** argv) { if (argc < 3) { cout << "usage: " << argv[0] << " " << endl; cout << " rewrite the input cifti file to the output filename, using uint8 and data scaling, little-endian." << endl; return 1; } try { CiftiFile inputFile(argv[1]);//on-disk reading by default inputFile.setWritingDataTypeAndScaling(NIFTI_TYPE_UINT8, -1.0, 6.0);//tells it to use this datatype to best represent this specified range of values [-1.0, 6.0] whenever this instance is written inputFile.writeFile(argv[2], CiftiVersion(), CiftiFile::LITTLE);//if this is the same filename as the input, CiftiFile actually detects this and reads the input into memory first //otherwise, it will read and write one row at a time, using very little memory //inputFile.setWritingDataTypeNoScaling(NIFTI_TYPE_FLOAT32);//this is how you would revert back to writing as float32 without rescaling } catch (CiftiException& e) { cerr << "Caught CiftiException: " + AString_to_std_string(e.whatString()) << endl; return 1; } return 0; } CiftiLib-1.6.0/example/rewrite.cxx000066400000000000000000000054461373715117300170640ustar00rootroot00000000000000#include "CiftiFile.h" #include #include using namespace std; using namespace cifti; /**\file rewrite.cxx This program reads a Cifti file from argv[1], and writes it out to argv[2] with a second CiftiFile object. It uses on-disk reading and writing, so DO NOT have both filenames point to the same file, CiftiFile truncates without any warning when told to write to an existing file. \include rewrite.cxx */ int main(int argc, char** argv) { if (argc < 3) { cout << "usage: " << argv[0] << " []" << endl; cout << " rewrite the input cifti file to the output filename." << endl; cout << " endian can be 'LITTLE' or 'BIG', and uses native endianness if not specified" << endl; return 1; } CiftiFile::ENDIAN myEndian = CiftiFile::NATIVE; if (argc > 3) { if (AString(argv[3]) == "LITTLE") { myEndian = CiftiFile::LITTLE; } else if (AString(argv[3]) == "BIG") { myEndian = CiftiFile::BIG; } else { cerr << "unrecognized endianness string: " << argv[3] << endl; return 1; } } try { CiftiFile inputFile(argv[1]);//on-disk reading by default //inputFile.convertToInMemory();//if you want to read it into memory first CiftiFile outputFile; outputFile.setWritingFile(argv[2], CiftiVersion(), myEndian);//sets up on-disk writing with default writing version, from CiftiVersion's default constructor outputFile.setCiftiXML(inputFile.getCiftiXML());//the CiftiXML is how you access all the mapping information const vector& dims = inputFile.getDimensions(); vector scratchRow(dims[0]);//read/write a row at a time for (MultiDimIterator iter = inputFile.getIteratorOverRows(); !iter.atEnd(); ++iter) {//helper class to iterate over 2D and 3D cifti with the same code - the "+ 1" is to drop the first dimension (row length) inputFile.getRow(scratchRow.data(), *iter); outputFile.setRow(scratchRow.data(), *iter); } outputFile.writeFile(argv[2]);//because we called setWritingFile with this filename (and default cifti version), this will return immediately //NOTE: if you call writeFile with a different writing version (takes its default from CiftiVersion constructor) than setWritingFile, it will rewrite the entire file after reading it into memory //it will also rewrite it if you specify an endianness other than ANY (which is the default), and the endianness doesn't match what it was already written as (via setWritingFile) } catch (CiftiException& e) { cerr << "Caught CiftiException: " + AString_to_std_string(e.whatString()) << endl; return 1; } return 0; } CiftiLib-1.6.0/example/xmlinfo.cxx000066400000000000000000000117471373715117300170600ustar00rootroot00000000000000#include "CiftiFile.h" #include #include using namespace std; using namespace cifti; /**\file xmlinfo.cxx This program reads a Cifti file from argv[1], and prints out a summary of the XML. \include xmlinfo.cxx */ int main(int argc, char** argv) { if (argc < 2) { cout << "this program requires one argument: an input cifti file" << endl; return 1; } try { CiftiFile inputFile((string(argv[1])));//on-disk reading by default, and we only need the XML header anyway const CiftiXML& myXML = inputFile.getCiftiXML(); for (int whichDim = 0; whichDim < myXML.getNumberOfDimensions(); ++whichDim) { cout << "Dimension " << whichDim << ": "; switch (myXML.getMappingType(whichDim)) { case CiftiMappingType::BRAIN_MODELS: { const CiftiBrainModelsMap& myMap = myXML.getBrainModelsMap(whichDim); cout << "Brain Models, length " << myMap.getLength() << endl; vector myInfo = myMap.getModelInfo();//this is only summary info, same order as the models are in the cifti indices for (int i = 0; i < (int)myInfo.size(); ++i)//to get the lists of vertices/voxels for a model, see getSurfaceMap, getVolumeStructureMap, and getFullVolumeMap { switch (myInfo[i].m_type) { case CiftiBrainModelsMap::SURFACE: cout << " Surface " << AString_to_std_string(StructureEnum::toName(myInfo[i].m_structure)) << ": "; cout << myInfo[i].m_indexCount << " out of " << myMap.getSurfaceNumberOfNodes(myInfo[i].m_structure) << " vertices" << endl; break; case CiftiBrainModelsMap::VOXELS: cout << " Voxels " << AString_to_std_string(StructureEnum::toName(myInfo[i].m_structure)) << ": "; cout << myInfo[i].m_indexCount << " voxels" << endl; break; } } break; } case CiftiMappingType::LABELS: { const CiftiLabelsMap& myMap = myXML.getLabelsMap(whichDim); cout << "Labels, length " << myMap.getLength() << endl; for (int i = 0; i < myMap.getLength(); ++i) { cout << " Index " << i << ": " << AString_to_std_string(myMap.getMapName(i)) << endl; } break; } case CiftiMappingType::PARCELS: { const CiftiParcelsMap& myMap = myXML.getParcelsMap(whichDim); cout << "Parcels, length " << myMap.getLength() << endl; const vector& myParcels = myMap.getParcels(); for (int i = 0; i < (int)myParcels.size(); ++i) { cout << " Index " << i << ", name '" << AString_to_std_string(myParcels[i].m_name) << "': "; int numVerts = 0; for (map >::const_iterator iter = myParcels[i].m_surfaceNodes.begin(); iter != myParcels[i].m_surfaceNodes.end(); ++iter) { numVerts += iter->second.size(); } cout << numVerts << " vertices, " << myParcels[i].m_voxelIndices.size() << " voxels" << endl; } break; } case CiftiMappingType::SCALARS: { const CiftiScalarsMap& myMap = myXML.getScalarsMap(whichDim); cout << "Scalars, length " << myMap.getLength() << endl; for (int i = 0; i < myMap.getLength(); ++i) { cout << " Index " << i << ": " << AString_to_std_string(myMap.getMapName(i)) << endl; } break; } case CiftiMappingType::SERIES: { const CiftiSeriesMap& myMap = myXML.getSeriesMap(whichDim); cout << "Series, length " << myMap.getLength() << endl; cout << " Start: " << myMap.getStart() << endl; cout << " Step: " << myMap.getStep() << endl; cout << " Unit: " << AString_to_std_string(CiftiSeriesMap::unitToString(myMap.getUnit())) << endl; break; } } cout << endl;//extra line break between dimensions } } catch (CiftiException& e) { cerr << "Caught CiftiException: " + AString_to_std_string(e.whatString()) << endl; return 1; } return 0; } CiftiLib-1.6.0/mainpage.dox000066400000000000000000000026411373715117300155130ustar00rootroot00000000000000/** \mainpage CiftiLib CiftiLib is a library for the CIFTI file format, as documented here: http://www.nitrc.org/projects/cifti/ It builds with either QT, or libxml++ and libboost-filesystem. To use it, include CiftiFile.h, and use the CiftiFile class to read and write cifti files. Reading example: \code CiftiFile myFile(filename);//defaults to reading data on demand const CiftiXML& myXML = myFile.getCiftiXML();//mapping and dimension information vector rowData(myXML.getDimensionLength(CiftiXML::ALONG_ROW));//allocate array for row data myFile.getRow(rowData.data(), 0);//read the first row \endcode Writing example: \code CiftiXML myXML;//first, need to set up the dimension mappings CiftiScalarsMap exampleMap; exampleMap.setLength(40);//just as an example myXML.setNumberOfDimensions(2);//2D matrix myXML.setMap(CiftiXML::ALONG_ROW, exampleMap);//set the mappings myXML.setMap(CiftiXML::ALONG_COLUMN, exampleMap); CiftiFile myFile; myFile.setWritingFile(filename);//optional: write rows as they are set myFile.setCiftiXML(myXML);//set the file's mappings myFile.setRow(somedata, 0);//write a row ... myFile.writeFile(filename);//if filename matches what was given to setWritingFile, this does nothing \endcode See rewrite.cxx for a program that does a row-by-row copy that works on cifti of any dimensionality. See xmlinfo.cxx for a program that prints XML summary information of all dimensions of a cifti file. */ CiftiLib-1.6.0/src/000077500000000000000000000000001373715117300140025ustar00rootroot00000000000000CiftiLib-1.6.0/src/CMakeLists.txt000066400000000000000000000016121373715117300165420ustar00rootroot00000000000000 SET(HEADERS CiftiFile.h NiftiIO.h ) SET(SOURCES CiftiFile.cxx NiftiIO.cxx ) #only the headers that should end up in the top level of CiftiLib when installed #do not move this below the append_subdir_files calls SET(PUBLIC_HEADERS ${HEADERS} ) #list the subdirectories here, so each build system file only references one additional level SET(PRIVATE_DIRS Cifti Common Nifti ) ADD_SUBDIRECTORY(Cifti) ADD_SUBDIRECTORY(Common) ADD_SUBDIRECTORY(Nifti) macro(append_subdir_files variable dirname) get_directory_property(holder DIRECTORY ${dirname} DEFINITION ${variable}) foreach(depfile ${holder}) list(APPEND ${variable} "${dirname}/${depfile}") endforeach() endmacro() append_subdir_files(SOURCES Nifti) append_subdir_files(HEADERS Nifti) append_subdir_files(SOURCES Cifti) append_subdir_files(HEADERS Cifti) append_subdir_files(SOURCES Common) append_subdir_files(HEADERS Common) CiftiLib-1.6.0/src/Cifti/000077500000000000000000000000001373715117300150405ustar00rootroot00000000000000CiftiLib-1.6.0/src/Cifti/CMakeLists.txt000066400000000000000000000007141373715117300176020ustar00rootroot00000000000000 SET(HEADERS CiftiXML.h CiftiVersion.h CiftiMappingType.h CiftiBrainModelsMap.h CiftiLabelsMap.h CiftiParcelsMap.h CiftiScalarsMap.h CiftiSeriesMap.h Label.h LabelTable.h MetaData.h StructureEnum.h VolumeSpace.h ) SET(SOURCES CiftiXML.cxx CiftiVersion.cxx CiftiMappingType.cxx CiftiBrainModelsMap.cxx CiftiLabelsMap.cxx CiftiParcelsMap.cxx CiftiScalarsMap.cxx CiftiSeriesMap.cxx Label.cxx LabelTable.cxx MetaData.cxx StructureEnum.cxx VolumeSpace.cxx ) CiftiLib-1.6.0/src/Cifti/CiftiBrainModelsMap.cxx000066400000000000000000001311271373715117300214050ustar00rootroot00000000000000/*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CiftiBrainModelsMap.h" #include "Common/CiftiException.h" #include using namespace std; using namespace cifti; void CiftiBrainModelsMap::addSurfaceModel(const int64_t& numberOfNodes, const StructureEnum::Enum& structure, const float* roi) { vector tempVector;//pass-through to the other addSurfaceModel after converting roi to vector of indices tempVector.reserve(numberOfNodes);//to make it allocate only once for (int64_t i = 0; i < numberOfNodes; ++i) { if (roi == NULL || roi[i] > 0.0f) { tempVector.push_back(i); } } addSurfaceModel(numberOfNodes, structure, tempVector); } void CiftiBrainModelsMap::addSurfaceModel(const int64_t& numberOfNodes, const StructureEnum::Enum& structure, const vector& nodeList) { if (m_surfUsed.find(structure) != m_surfUsed.end()) { throw CiftiException("surface structures cannot be repeated in a brain models map"); } BrainModelPriv myModel; myModel.m_type = SURFACE; myModel.m_brainStructure = structure; myModel.m_surfaceNumberOfNodes = numberOfNodes; myModel.m_nodeIndices = nodeList; myModel.setupSurface(getNextStart());//do internal setup - also does error checking m_modelsInfo.push_back(myModel); m_surfUsed[structure] = m_modelsInfo.size() - 1; } void CiftiBrainModelsMap::BrainModelPriv::setupSurface(const int64_t& start) { if (m_surfaceNumberOfNodes < 1) { throw CiftiException("surface must have at least 1 vertex"); } m_modelStart = start; int64_t listSize = (int64_t)m_nodeIndices.size(); if (listSize == 0) { throw CiftiException("vertex list must have nonzero length");//NOTE: technically not required by Cifti-1, would need some rewriting to support } m_modelEnd = start + listSize;//one after last vector used(m_surfaceNumberOfNodes, false); m_nodeToIndexLookup = vector(m_surfaceNumberOfNodes, -1);//reset all to -1 to start for (int64_t i = 0; i < listSize; ++i) { if (m_nodeIndices[i] < 0) { throw CiftiException("vertex list contains negative index"); } if (m_nodeIndices[i] >= m_surfaceNumberOfNodes) { throw CiftiException("vertex list contains an index that don't exist in the surface"); } if (used[m_nodeIndices[i]]) { throw CiftiException("vertex list contains reused index"); } used[m_nodeIndices[i]] = true; m_nodeToIndexLookup[m_nodeIndices[i]] = start + i; } } void CiftiBrainModelsMap::addVolumeModel(const StructureEnum::Enum& structure, const vector& ijkList) { if (m_volUsed.find(structure) != m_volUsed.end()) { throw CiftiException("volume structures cannot be repeated in a brain models map"); } int64_t listSize = (int64_t)ijkList.size(); if (listSize == 0) { throw CiftiException("voxel list must have nonzero length");//NOTE: technically not required by Cifti-1, would need some rewriting to support } if (listSize % 3 != 0) { throw CiftiException("voxel list must have a length that is a multiple of 3"); } int64_t numElems = listSize / 3; const int64_t* dims = NULL; if (!m_ignoreVolSpace) { if (!m_haveVolumeSpace) { throw CiftiException("you must set the volume space before adding volume models"); } dims = m_volSpace.getDims(); } Compact3DLookup > tempLookup = m_voxelToIndexLookup;//a copy of the lookup should be faster than other methods of checking for overlap and repeat int64_t nextStart = getNextStart(); for (int64_t index = 0; index < numElems; ++index)//do all error checking before adding to lookup { int64_t index3 = index * 3; if (ijkList[index3] < 0 || ijkList[index3 + 1] < 0 || ijkList[index3 + 2] < 0) { throw CiftiException("found negative index in voxel list"); } if (!m_ignoreVolSpace && (ijkList[index3] >= dims[0] || ijkList[index3 + 1] >= dims[1] || ijkList[index3 + 2] >= dims[2])) { throw CiftiException("found invalid index triple in voxel list: (" + AString_number(ijkList[index3]) + ", " + AString_number(ijkList[index3 + 1]) + ", " + AString_number(ijkList[index3 + 2]) + ")"); } if (tempLookup.find(ijkList[index3], ijkList[index3 + 1], ijkList[index3 + 2]) != NULL) { throw CiftiException("volume models may not reuse voxels, either internally or from other structures"); } tempLookup.at(ijkList[index3], ijkList[index3 + 1], ijkList[index3 + 2]) = pair(nextStart + index, structure); } m_voxelToIndexLookup = tempLookup; BrainModelPriv myModel; myModel.m_type = VOXELS; myModel.m_brainStructure = structure; myModel.m_voxelIndicesIJK = ijkList; myModel.m_modelStart = nextStart; myModel.m_modelEnd = nextStart + numElems;//one after last m_modelsInfo.push_back(myModel); m_volUsed[structure] = m_modelsInfo.size() - 1; } void CiftiBrainModelsMap::clear() { m_modelsInfo.clear(); m_haveVolumeSpace = false; m_ignoreVolSpace = false; m_voxelToIndexLookup.clear(); m_surfUsed.clear(); m_volUsed.clear(); } int64_t CiftiBrainModelsMap::getIndexForNode(const int64_t& node, const StructureEnum::Enum& structure) const { CiftiAssert(node >= 0); map::const_iterator iter = m_surfUsed.find(structure); if (iter == m_surfUsed.end()) { return -1; } CiftiAssertVectorIndex(m_modelsInfo, iter->second); const BrainModelPriv& myModel = m_modelsInfo[iter->second]; if (node >= myModel.m_surfaceNumberOfNodes) return -1; CiftiAssertVectorIndex(myModel.m_nodeToIndexLookup, node); return myModel.m_nodeToIndexLookup[node]; } int64_t CiftiBrainModelsMap::getIndexForVoxel(const int64_t* ijk, StructureEnum::Enum* structureOut) const { return getIndexForVoxel(ijk[0], ijk[1], ijk[2], structureOut); } int64_t CiftiBrainModelsMap::getIndexForVoxel(const int64_t& i, const int64_t& j, const int64_t& k, StructureEnum::Enum* structureOut) const { const pair* iter = m_voxelToIndexLookup.find(i, j, k);//the lookup tolerates weirdness like negatives if (iter == NULL) return -1; if (structureOut != NULL) *structureOut = iter->second; return iter->first; } CiftiBrainModelsMap::IndexInfo CiftiBrainModelsMap::getInfoForIndex(const int64_t index) const { CiftiAssert(index >= 0 && index < getLength()); IndexInfo ret; int numModels = (int)m_modelsInfo.size(); int low = 0, high = numModels - 1;//bisection search while (low != high) { int guess = (low + high) / 2; if (m_modelsInfo[guess].m_modelEnd > index)//modelEnd is 1 after last valid index, equal to next start if there is a next { if (m_modelsInfo[guess].m_modelStart > index) { high = guess - 1; } else { high = guess; low = guess; } } else { low = guess + 1; } } CiftiAssert(index >= m_modelsInfo[low].m_modelStart && index < m_modelsInfo[low].m_modelEnd);//otherwise we have a broken invariant ret.m_structure = m_modelsInfo[low].m_brainStructure; ret.m_type = m_modelsInfo[low].m_type; if (ret.m_type == SURFACE) { ret.m_surfaceNode = m_modelsInfo[low].m_nodeIndices[index - m_modelsInfo[low].m_modelStart]; } else { int64_t baseIndex = 3 * (index - m_modelsInfo[low].m_modelStart); ret.m_ijk[0] = m_modelsInfo[low].m_voxelIndicesIJK[baseIndex]; ret.m_ijk[1] = m_modelsInfo[low].m_voxelIndicesIJK[baseIndex + 1]; ret.m_ijk[2] = m_modelsInfo[low].m_voxelIndicesIJK[baseIndex + 2]; } return ret; } int64_t CiftiBrainModelsMap::getLength() const { return getNextStart(); } vector CiftiBrainModelsMap::getModelInfo() const { vector ret; int numModels = (int)m_modelsInfo.size(); ret.resize(numModels); for (int i = 0; i < numModels; ++i) { ret[i].m_structure = m_modelsInfo[i].m_brainStructure; ret[i].m_type = m_modelsInfo[i].m_type; ret[i].m_indexStart = m_modelsInfo[i].m_modelStart; ret[i].m_indexCount = m_modelsInfo[i].m_modelEnd - m_modelsInfo[i].m_modelStart; } return ret; } int64_t CiftiBrainModelsMap::getNextStart() const { if (m_modelsInfo.size() == 0) return 0; return m_modelsInfo.back().m_modelEnd;//NOTE: the models are sorted by their index range, so this works } const vector& CiftiBrainModelsMap::getNodeList(const StructureEnum::Enum& structure) const { map::const_iterator iter = m_surfUsed.find(structure); if (iter == m_surfUsed.end()) { throw CiftiException("getNodeList called for nonexistent structure");//throw if it doesn't exist, because we don't have a reference to return - things should identify which structures exist before calling this } CiftiAssertVectorIndex(m_modelsInfo, iter->second); return m_modelsInfo[iter->second].m_nodeIndices; } vector CiftiBrainModelsMap::getSurfaceMap(const StructureEnum::Enum& structure) const { vector ret; map::const_iterator iter = m_surfUsed.find(structure); if (iter == m_surfUsed.end()) { throw CiftiException("getSurfaceMap called for nonexistent structure");//also throw, for consistency } CiftiAssertVectorIndex(m_modelsInfo, iter->second); const BrainModelPriv& myModel = m_modelsInfo[iter->second]; int64_t numUsed = (int64_t)myModel.m_nodeIndices.size(); ret.resize(numUsed); for (int64_t i = 0; i < numUsed; ++i) { ret[i].m_ciftiIndex = myModel.m_modelStart + i; ret[i].m_surfaceNode = myModel.m_nodeIndices[i]; } return ret; } int64_t CiftiBrainModelsMap::getSurfaceNumberOfNodes(const StructureEnum::Enum& structure) const { map::const_iterator iter = m_surfUsed.find(structure); if (iter == m_surfUsed.end()) { return -1; } CiftiAssertVectorIndex(m_modelsInfo, iter->second); const BrainModelPriv& myModel = m_modelsInfo[iter->second]; return myModel.m_surfaceNumberOfNodes; } vector CiftiBrainModelsMap::getSurfaceStructureList() const { vector ret; ret.reserve(m_surfUsed.size());//we can use this to tell us how many there are, but it has reordered them int numModels = (int)m_modelsInfo.size(); for (int i = 0; i < numModels; ++i)//we need them in the order they occur in { if (m_modelsInfo[i].m_type == SURFACE) { ret.push_back(m_modelsInfo[i].m_brainStructure); } } return ret; } bool CiftiBrainModelsMap::hasSurfaceData(const StructureEnum::Enum& structure) const { map::const_iterator iter = m_surfUsed.find(structure); return (iter != m_surfUsed.end()); } vector CiftiBrainModelsMap::getFullVolumeMap() const { vector ret; int numModels = (int)m_modelsInfo.size(); for (int i = 0; i < numModels; ++i) { if (m_modelsInfo[i].m_type == VOXELS) { const BrainModelPriv& myModel = m_modelsInfo[i]; int64_t listSize = (int64_t)myModel.m_voxelIndicesIJK.size(); CiftiAssert(listSize % 3 == 0); int64_t numUsed = listSize / 3; if (ret.size() == 0) ret.reserve(numUsed);//keep it from doing multiple expansion copies on the first model for (int64_t i = 0; i < numUsed; ++i) { int64_t i3 = i * 3; VolumeMap temp; temp.m_ciftiIndex = myModel.m_modelStart + i; temp.m_ijk[0] = myModel.m_voxelIndicesIJK[i3]; temp.m_ijk[1] = myModel.m_voxelIndicesIJK[i3 + 1]; temp.m_ijk[2] = myModel.m_voxelIndicesIJK[i3 + 2]; ret.push_back(temp); } } } return ret; } const VolumeSpace& CiftiBrainModelsMap::getVolumeSpace() const { CiftiAssert(!m_ignoreVolSpace); if (!m_haveVolumeSpace) { throw CiftiException("getVolumeSpace called when no volume space exists"); } return m_volSpace; } vector CiftiBrainModelsMap::getVolumeStructureList() const { vector ret; ret.reserve(m_volUsed.size());//we can use this to tell us how many there are, but it has reordered them int numModels = (int)m_modelsInfo.size(); for (int i = 0; i < numModels; ++i)//we need them in the order they occur in { if (m_modelsInfo[i].m_type == VOXELS) { ret.push_back(m_modelsInfo[i].m_brainStructure); } } return ret; } vector CiftiBrainModelsMap::getVolumeStructureMap(const StructureEnum::Enum& structure) const { vector ret; map::const_iterator iter = m_volUsed.find(structure); if (iter == m_volUsed.end()) { throw CiftiException("getVolumeStructureMap called for nonexistent structure");//also throw, for consistency } CiftiAssertVectorIndex(m_modelsInfo, iter->second); const BrainModelPriv& myModel = m_modelsInfo[iter->second]; int64_t listSize = (int64_t)myModel.m_voxelIndicesIJK.size(); CiftiAssert(listSize % 3 == 0); int64_t numUsed = listSize / 3; ret.resize(numUsed); for (int64_t i = 0; i < numUsed; ++i) { int64_t i3 = i * 3; ret[i].m_ciftiIndex = myModel.m_modelStart + i; ret[i].m_ijk[0] = myModel.m_voxelIndicesIJK[i3]; ret[i].m_ijk[1] = myModel.m_voxelIndicesIJK[i3 + 1]; ret[i].m_ijk[2] = myModel.m_voxelIndicesIJK[i3 + 2]; } return ret; } const vector& CiftiBrainModelsMap::getVoxelList(const StructureEnum::Enum& structure) const { map::const_iterator iter = m_volUsed.find(structure); if (iter == m_volUsed.end()) { throw CiftiException("getVoxelList called for nonexistent structure");//throw if it doesn't exist, because we don't have a reference to return - things should identify which structures exist before calling this } CiftiAssertVectorIndex(m_modelsInfo, iter->second); return m_modelsInfo[iter->second].m_voxelIndicesIJK; } bool CiftiBrainModelsMap::hasVolumeData() const { return (m_volUsed.size() != 0); } bool CiftiBrainModelsMap::hasVolumeData(const StructureEnum::Enum& structure) const { map::const_iterator iter = m_volUsed.find(structure); return (iter != m_volUsed.end()); } void CiftiBrainModelsMap::setVolumeSpace(const VolumeSpace& space) { for (map::const_iterator iter = m_volUsed.begin(); iter != m_volUsed.end(); ++iter)//the main time this loop isn't empty is parsing cifti-1 { CiftiAssertVectorIndex(m_modelsInfo, iter->second); const BrainModelPriv& myModel = m_modelsInfo[iter->second]; int64_t listSize = (int64_t)myModel.m_voxelIndicesIJK.size(); CiftiAssert(listSize % 3 == 0); for (int64_t i3 = 0; i3 < listSize; i3 += 3) { if (!space.indexValid(myModel.m_voxelIndicesIJK[i3], myModel.m_voxelIndicesIJK[i3 + 1], myModel.m_voxelIndicesIJK[i3 + 2])) { throw CiftiException("invalid voxel found for volume space"); } } } m_ignoreVolSpace = false; m_haveVolumeSpace = true; m_volSpace = space; } bool CiftiBrainModelsMap::operator==(const CiftiMappingType& rhs) const { if (rhs.getType() != getType()) return false; const CiftiBrainModelsMap& myrhs = dynamic_cast(rhs); CiftiAssert(!m_ignoreVolSpace && !myrhs.m_ignoreVolSpace);//these should only be true while in the process of parsing cifti-1, never otherwise if (m_haveVolumeSpace != myrhs.m_haveVolumeSpace) return false; if (m_haveVolumeSpace && (m_volSpace != myrhs.m_volSpace)) return false; return (m_modelsInfo == myrhs.m_modelsInfo);//NOTE: these are sorted by index range, so this works } bool CiftiBrainModelsMap::approximateMatch(const CiftiMappingType& rhs, AString* explanation) const { if (rhs.getType() != getType()) { if (explanation != NULL) *explanation = CiftiMappingType::mappingTypeToName(rhs.getType()) + " mapping never matches " + CiftiMappingType::mappingTypeToName(getType()); return false; } const CiftiBrainModelsMap& myrhs = dynamic_cast(rhs);//there is no user-specified metadata, but we want informative messages, so copy and modify the code from == CiftiAssert(!m_ignoreVolSpace && !myrhs.m_ignoreVolSpace);//these should only be true while in the process of parsing cifti-1, never otherwise if (m_haveVolumeSpace != myrhs.m_haveVolumeSpace) { if (explanation != NULL) *explanation = "one of the mappings has no volume data"; return false; } if (m_haveVolumeSpace && (m_volSpace != myrhs.m_volSpace)) { if (explanation != NULL) *explanation = "mappings have a different volume space"; return false; } if (m_modelsInfo != myrhs.m_modelsInfo) { if (explanation != NULL) *explanation = "mappings include different brainordinates"; return false; } return true; } bool CiftiBrainModelsMap::BrainModelPriv::operator==(const BrainModelPriv& rhs) const { if (m_brainStructure != rhs.m_brainStructure) return false; if (m_type != rhs.m_type) return false; if (m_modelStart != rhs.m_modelStart) return false; if (m_modelEnd != rhs.m_modelEnd) return false; if (m_type == SURFACE) { if (m_surfaceNumberOfNodes != rhs.m_surfaceNumberOfNodes) return false; int64_t listSize = (int64_t)m_nodeIndices.size(); CiftiAssert((int64_t)rhs.m_nodeIndices.size() == listSize);//this should already be checked by start/end above for (int64_t i = 0; i < listSize; ++i) { if (m_nodeIndices[i] != rhs.m_nodeIndices[i]) return false; } } else { int64_t listSize = (int64_t)m_voxelIndicesIJK.size(); CiftiAssert((int64_t)rhs.m_voxelIndicesIJK.size() == listSize);//this should already be checked by start/end above for (int64_t i = 0; i < listSize; ++i) { if (m_voxelIndicesIJK[i] != rhs.m_voxelIndicesIJK[i]) return false; } } return true; } void CiftiBrainModelsMap::readXML1(XmlReader& xml) { clear(); m_ignoreVolSpace = true;//because in cifti-1, the volume space is not in this element - so, we rely on CiftiXML to check for volume data, and set the volume space afterwards vector parsedModels; #ifdef CIFTILIB_USE_QT for (xml.readNext(); !xml.atEnd() && !xml.isEndElement(); xml.readNext()) { switch (xml.tokenType()) { case QXmlStreamReader::StartElement: { QStringRef name = xml.name(); if (name != "BrainModel") { throw CiftiException("unexpected element in brain models map: " + name.toString()); } ParseHelperModel thisModel; thisModel.parseBrainModel1(xml); if (xml.hasError()) return; parsedModels.push_back(thisModel); break;//the readNext in the for will remove the BrainModel end element } default: break; } } if (xml.hasError()) return; #else #ifdef CIFTILIB_USE_XMLPP bool done = xml.is_empty_element();//NOTE: a element does NOT give a separate end element state!!! while(!done && xml.read()) { switch (xml.get_node_type()) { case XmlReader::Element: { AString name = xml.get_local_name(); if (name == "BrainModel") { ParseHelperModel thisModel; thisModel.parseBrainModel1(xml); parsedModels.push_back(thisModel); } else { throw CiftiException("unexpected element in brain models map: " + name); } break; } case XmlReader::EndElement: done = true; break; default: break; } } #else #error "not implemented" #endif #endif CiftiAssert(XmlReader_checkEndElement(xml, "MatrixIndicesMap")); sort(parsedModels.begin(), parsedModels.end()); int64_t numModels = (int64_t)parsedModels.size();//because we haven't checked them for unique values of BrainStructure yet...yeah, its paranoid int64_t curOffset = 0; for (int64_t i = 0; i < numModels; ++i) { if (parsedModels[i].m_offset != curOffset) { if (parsedModels[i].m_offset < curOffset) { throw CiftiException("models overlap at index " + AString_number(parsedModels[i].m_offset) + ", model " + AString_number(i)); } else { throw CiftiException("index " + AString_number(curOffset) + " is not assigned to any model"); } } curOffset += parsedModels[i].m_count; } for (int64_t i = 0; i < numModels; ++i) { if (parsedModels[i].m_type == SURFACE) { addSurfaceModel(parsedModels[i].m_surfaceNumberOfNodes, parsedModels[i].m_brainStructure, parsedModels[i].m_nodeIndices); } else { addVolumeModel(parsedModels[i].m_brainStructure, parsedModels[i].m_voxelIndicesIJK); } } m_ignoreVolSpace = false;//in case there are no voxels, but some will be added later } void CiftiBrainModelsMap::readXML2(XmlReader& xml) { clear(); vector parsedModels; #ifdef CIFTILIB_USE_QT for (xml.readNext(); !xml.atEnd() && !xml.isEndElement(); xml.readNext()) { switch (xml.tokenType()) { case QXmlStreamReader::StartElement: { QStringRef name = xml.name(); if (name == "BrainModel") { ParseHelperModel thisModel; thisModel.parseBrainModel2(xml); if (xml.hasError()) break; parsedModels.push_back(thisModel); } else if (name == "Volume") { if (m_haveVolumeSpace) { throw CiftiException("Volume specified more than once in Brain Models mapping type"); } else { m_volSpace.readCiftiXML2(xml); if (xml.hasError()) return; m_haveVolumeSpace = true; } } else { throw CiftiException("unexpected element in brain models map: " + name.toString()); } break;//the readNext in the for will remove the BrainModel or Volume end element } default: break; } } if (xml.hasError()) return; #else #ifdef CIFTILIB_USE_XMLPP bool done = xml.is_empty_element();//NOTE: a element does NOT give a separate end element state!!! while(!done && xml.read()) { switch (xml.get_node_type()) { case XmlReader::Element: { AString name = xml.get_local_name(); if (name == "BrainModel") { ParseHelperModel thisModel; thisModel.parseBrainModel2(xml); parsedModels.push_back(thisModel); } else if (name == "Volume") { if (m_haveVolumeSpace) { throw CiftiException("Volume specified more than once in Brain Models mapping type"); } else { m_volSpace.readCiftiXML2(xml); m_haveVolumeSpace = true; } } else { throw CiftiException("unexpected element in brain models map: " + name); } break; } case XmlReader::EndElement: done = true; break; default: break; } } #else #error "not implemented" #endif #endif CiftiAssert(XmlReader_checkEndElement(xml, "MatrixIndicesMap")); sort(parsedModels.begin(), parsedModels.end()); int64_t numModels = (int64_t)parsedModels.size();//because we haven't checked them for unique values of BrainStructure yet...yeah, its paranoid int64_t curOffset = 0; for (int64_t i = 0; i < numModels; ++i) { if (parsedModels[i].m_offset != curOffset) { if (parsedModels[i].m_offset < curOffset) { throw CiftiException("models overlap at index " + AString_number(parsedModels[i].m_offset) + ", model " + AString_number(i)); } else { throw CiftiException("index " + AString_number(curOffset) + " is not assigned to any model"); } } curOffset += parsedModels[i].m_count; } for (int64_t i = 0; i < numModels; ++i) { if (parsedModels[i].m_type == SURFACE) { addSurfaceModel(parsedModels[i].m_surfaceNumberOfNodes, parsedModels[i].m_brainStructure, parsedModels[i].m_nodeIndices); } else { addVolumeModel(parsedModels[i].m_brainStructure, parsedModels[i].m_voxelIndicesIJK); } } } void CiftiBrainModelsMap::ParseHelperModel::parseBrainModel1(XmlReader& xml) { vector mandAttrs(4), optAttrs(1, "SurfaceNumberOfNodes"); mandAttrs[0] = "ModelType"; mandAttrs[1] = "BrainStructure"; mandAttrs[2] = "IndexOffset"; mandAttrs[3] = "IndexCount"; XmlAttributesResult myAttrs = XmlReader_parseAttributes(xml, mandAttrs, optAttrs); if (myAttrs.mandatoryVals[0] == "CIFTI_MODEL_TYPE_SURFACE") { m_type = SURFACE; } else if (myAttrs.mandatoryVals[0] == "CIFTI_MODEL_TYPE_VOXELS") { m_type = VOXELS; } else { throw CiftiException("invalid value for ModelType: " + myAttrs.mandatoryVals[0]); } bool ok = false; m_brainStructure = StructureEnum::fromCiftiName(myAttrs.mandatoryVals[1], &ok); if (!ok) { throw CiftiException("invalid value for BrainStructure: " + myAttrs.mandatoryVals[1]); } m_offset = AString_toInt(myAttrs.mandatoryVals[2], ok); if (!ok || m_offset < 0) { throw CiftiException("IndexOffset must be a non-negative integer"); } m_count = AString_toInt(myAttrs.mandatoryVals[3], ok); if (!ok || m_count < 1)//NOTE: not technically required by cifti-1, would need some rewriting to support empty brainmodels { throw CiftiException("IndexCount must be a positive integer"); } if (m_type == SURFACE) { if (!myAttrs.optionalVals[0].present)//actually conditionally required, not optional { throw CiftiException("BrainModel missing required attribute SurfaceNumberOfNodes"); } m_surfaceNumberOfNodes = AString_toInt(myAttrs.optionalVals[0].value, ok); if (!ok || m_surfaceNumberOfNodes < 1) { throw CiftiException("SurfaceNumberOfNodes must be a positive integer"); } #ifdef CIFTILIB_USE_QT if (!xml.readNextStartElement())//special case in cifti-1 { m_nodeIndices.resize(m_count); for (int64_t i = 0; i < m_count; ++i) { m_nodeIndices[i] = i; } } else { if (xml.name() != "NodeIndices") { throw CiftiException("unexpected element in BrainModel of SURFACE type: " + xml.name().toString()); } m_nodeIndices = readIndexArray(xml); xml.readNext();//remove the end element of NodeIndices } if (xml.hasError()) return; #else #ifdef CIFTILIB_USE_XMLPP bool haveNodeIndices = false, done = xml.is_empty_element();//NOTE: a element does NOT give a separate end element state!!! while(!done && xml.read()) { switch (xml.get_node_type()) { case XmlReader::Element: { AString name = xml.get_local_name(); if (name == "NodeIndices") { if (haveNodeIndices) { throw CiftiException("NodeIndices element may only be specified once"); } m_nodeIndices = readIndexArray(xml); haveNodeIndices = true; } else { throw CiftiException("unexpected element in BrainModel: " + name); } break; } case XmlReader::EndElement: done = true; break; default: break; } } if (!haveNodeIndices)//special case in cifti-1 { m_nodeIndices.resize(m_count); for (int64_t i = 0; i < m_count; ++i) { m_nodeIndices[i] = i; } } #else #error "not implemented" #endif #endif if ((int64_t)m_nodeIndices.size() != m_count) { throw CiftiException("number of vertex indices does not match IndexCount"); } } else { #ifdef CIFTILIB_USE_QT if (!xml.readNextStartElement()) { throw CiftiException("BrainModel requires a child element"); } if (xml.name() != "VoxelIndicesIJK") { throw CiftiException("unexpected element in BrainModel of VOXELS type: " + xml.name().toString()); } m_voxelIndicesIJK = readIndexArray(xml); if (xml.hasError()) return; xml.readNext();//remove the end element of VoxelIndicesIJK #else #ifdef CIFTILIB_USE_XMLPP bool haveVoxelIndices = false, done = xml.is_empty_element();//NOTE: a element does NOT give a separate end element state!!! while(!done && xml.read()) { switch (xml.get_node_type()) { case XmlReader::Element: { AString name = xml.get_local_name(); if (name == "VoxelIndicesIJK") { if (haveVoxelIndices) { throw CiftiException("VoxelIndicesIJK element may only be specified once"); } m_voxelIndicesIJK = readIndexArray(xml); haveVoxelIndices = true; } else { throw CiftiException("unexpected element in BrainModel: " + name); } break; } case XmlReader::EndElement: done = true; break; default: break; } } if (!haveVoxelIndices)//special case in cifti-1 { throw CiftiException("BrainModel requires a child element"); } #else #error "not implemented" #endif #endif if (m_voxelIndicesIJK.size() % 3 != 0) { throw CiftiException("number of voxel indices is not a multiple of 3"); } if ((int64_t)m_voxelIndicesIJK.size() != m_count * 3) { throw CiftiException("number of voxel indices does not match IndexCount"); } } #ifdef CIFTILIB_USE_QT while (!xml.atEnd() && !xml.isEndElement())//locate the end element of BrainModel { switch(xml.readNext()) { case QXmlStreamReader::StartElement: throw CiftiException("unexpected second element in BrainModel: " + xml.name().toString()); default: break; } } #endif CiftiAssert(XmlReader_checkEndElement(xml, "BrainModel")); } void CiftiBrainModelsMap::ParseHelperModel::parseBrainModel2(XmlReader& xml) { vector mandAttrs(4), optAttrs(1, "SurfaceNumberOfVertices"); mandAttrs[0] = "ModelType"; mandAttrs[1] = "BrainStructure"; mandAttrs[2] = "IndexOffset"; mandAttrs[3] = "IndexCount"; XmlAttributesResult myAttrs = XmlReader_parseAttributes(xml, mandAttrs, optAttrs); if (myAttrs.mandatoryVals[0] == "CIFTI_MODEL_TYPE_SURFACE") { m_type = SURFACE; } else if (myAttrs.mandatoryVals[0] == "CIFTI_MODEL_TYPE_VOXELS") { m_type = VOXELS; } else { throw CiftiException("invalid value for ModelType: " + myAttrs.mandatoryVals[0]); } bool ok = false; m_brainStructure = StructureEnum::fromCiftiName(myAttrs.mandatoryVals[1], &ok); if (!ok) { throw CiftiException("invalid value for BrainStructure: " + myAttrs.mandatoryVals[1]); } m_offset = AString_toInt(myAttrs.mandatoryVals[2], ok); if (!ok || m_offset < 0) { throw CiftiException("IndexOffset must be a non-negative integer"); } m_count = AString_toInt(myAttrs.mandatoryVals[3], ok); if (!ok || m_count < 1) { throw CiftiException("IndexCount must be a positive integer"); } if (m_type == SURFACE) { if (!myAttrs.optionalVals[0].present)//actually conditionally required, not optional { throw CiftiException("BrainModel missing required attribute SurfaceNumberOfVertices"); } m_surfaceNumberOfNodes = AString_toInt(myAttrs.optionalVals[0].value, ok); if (!ok || m_surfaceNumberOfNodes < 1) { throw CiftiException("SurfaceNumberOfVertices must be a positive integer"); } #ifdef CIFTILIB_USE_QT if (!xml.readNextStartElement()) { throw CiftiException("BrainModel requires a child element"); } if (xml.name() != "VertexIndices") { throw CiftiException("unexpected element in BrainModel of SURFACE type: " + xml.name().toString()); } m_nodeIndices = readIndexArray(xml); xml.readNext();//remove the end element of NodeIndices if (xml.hasError()) return; #else #ifdef CIFTILIB_USE_XMLPP bool haveVertexIndices = false, done = xml.is_empty_element();//NOTE: a element does NOT give a separate end element state!!! while(!done && xml.read()) { switch (xml.get_node_type()) { case XmlReader::Element: { AString name = xml.get_local_name(); if (name == "VertexIndices") { if (haveVertexIndices) { throw CiftiException("VertexIndices element may only be specified once"); } m_nodeIndices = readIndexArray(xml); haveVertexIndices = true; } else { throw CiftiException("unexpected element in BrainModel: " + name); } break; } case XmlReader::EndElement: done = true; break; default: break; } } if (!haveVertexIndices) throw CiftiException("VertexIndices element is missing"); #else #error "not implemented" #endif #endif if ((int64_t)m_nodeIndices.size() != m_count) { throw CiftiException("number of vertex indices does not match IndexCount"); } } else { #ifdef CIFTILIB_USE_QT if (!xml.readNextStartElement()) { throw CiftiException("BrainModel requires a child element"); } if (xml.name() != "VoxelIndicesIJK") { throw CiftiException("unexpected element in BrainModel of VOXELS type: " + xml.name().toString()); } m_voxelIndicesIJK = readIndexArray(xml); xml.readNext();//remove the end element of VoxelIndicesIJK if (xml.hasError()) return; #else #ifdef CIFTILIB_USE_XMLPP bool haveVoxelIndices = false, done = xml.is_empty_element();//NOTE: a element does NOT give a separate end element state!!! while(!done && xml.read()) { switch (xml.get_node_type()) { case XmlReader::Element: { AString name = xml.get_local_name(); if (name == "VoxelIndicesIJK") { if (haveVoxelIndices) { throw CiftiException("VoxelIndicesIJK element may only be specified once"); } m_voxelIndicesIJK = readIndexArray(xml); haveVoxelIndices = true; } else { throw CiftiException("unexpected element in BrainModel: " + name); } break; } case XmlReader::EndElement: done = true; break; default: break; } } if (!haveVoxelIndices)//special case in cifti-1 { throw CiftiException("BrainModel requires a child element"); } #else #error "not implemented" #endif #endif if (m_voxelIndicesIJK.size() % 3 != 0) { throw CiftiException("number of voxel indices is not a multiple of 3"); } if ((int64_t)m_voxelIndicesIJK.size() != m_count * 3) { throw CiftiException("number of voxel indices does not match IndexCount"); } } #ifdef CIFTILIB_USE_QT while (!xml.atEnd() && !xml.isEndElement())//locate the end element of BrainModel { switch(xml.readNext()) { case QXmlStreamReader::StartElement: throw CiftiException("unexpected second element in BrainModel: " + xml.name().toString()); default: break; } } #endif CiftiAssert(XmlReader_checkEndElement(xml, "BrainModel")); } vector CiftiBrainModelsMap::ParseHelperModel::readIndexArray(XmlReader& xml) { vector ret; AString text = XmlReader_readElementText(xml);//throws if it encounters a start element #ifdef CIFTILIB_USE_QT if (xml.hasError()) return ret; #endif vector separated = AString_split_whitespace(text); size_t numElems = separated.size(); ret.reserve(numElems); for (size_t i = 0; i < numElems; ++i) { bool ok = false; ret.push_back(AString_toInt(separated[i], ok)); if (!ok) { throw CiftiException("found noninteger in index array: " + separated[i]); } if (ret.back() < 0) { throw CiftiException("found negative integer in index array: " + separated[i]); } } return ret; } void CiftiBrainModelsMap::writeXML1(XmlWriter& xml) const { CiftiAssert(!m_ignoreVolSpace); xml.writeAttribute("IndicesMapToDataType", "CIFTI_INDEX_TYPE_BRAIN_MODELS"); int numModels = (int)m_modelsInfo.size(); for (int i = 0; i < numModels; ++i) { const BrainModelPriv& myModel = m_modelsInfo[i]; xml.writeStartElement("BrainModel"); xml.writeAttribute("IndexOffset", AString_number(myModel.m_modelStart)); xml.writeAttribute("IndexCount", AString_number(myModel.m_modelEnd - myModel.m_modelStart)); xml.writeAttribute("BrainStructure", StructureEnum::toCiftiName(myModel.m_brainStructure)); if (myModel.m_type == SURFACE) { xml.writeAttribute("ModelType", "CIFTI_MODEL_TYPE_SURFACE"); xml.writeAttribute("SurfaceNumberOfNodes", AString_number(myModel.m_surfaceNumberOfNodes)); xml.writeStartElement("NodeIndices"); AString text = ""; int64_t numNodes = (int64_t)myModel.m_nodeIndices.size(); for (int64_t j = 0; j < numNodes; ++j) { if (j != 0) text += " "; text += AString_number(myModel.m_nodeIndices[j]); } xml.writeCharacters(text); xml.writeEndElement(); } else { xml.writeAttribute("ModelType", "CIFTI_MODEL_TYPE_VOXELS"); xml.writeStartElement("VoxelIndicesIJK"); AString text = ""; int64_t listSize = (int64_t)myModel.m_voxelIndicesIJK.size(); CiftiAssert(listSize % 3 == 0); for (int64_t j = 0; j < listSize; j += 3) { text += AString_number(myModel.m_voxelIndicesIJK[j]) + " " + AString_number(myModel.m_voxelIndicesIJK[j + 1]) + " " + AString_number(myModel.m_voxelIndicesIJK[j + 2]) + "\n"; } xml.writeCharacters(text); xml.writeEndElement(); } xml.writeEndElement(); } } void CiftiBrainModelsMap::writeXML2(XmlWriter& xml) const { CiftiAssert(!m_ignoreVolSpace); xml.writeAttribute("IndicesMapToDataType", "CIFTI_INDEX_TYPE_BRAIN_MODELS"); if (hasVolumeData())//could be m_haveVolumeSpace if we want to be able to write a volspace without having voxels, but that seems silly { m_volSpace.writeCiftiXML2(xml); } int numModels = (int)m_modelsInfo.size(); for (int i = 0; i < numModels; ++i) { const BrainModelPriv& myModel = m_modelsInfo[i]; xml.writeStartElement("BrainModel"); xml.writeAttribute("IndexOffset", AString_number(myModel.m_modelStart)); xml.writeAttribute("IndexCount", AString_number(myModel.m_modelEnd - myModel.m_modelStart)); xml.writeAttribute("BrainStructure", StructureEnum::toCiftiName(myModel.m_brainStructure)); if (myModel.m_type == SURFACE) { xml.writeAttribute("ModelType", "CIFTI_MODEL_TYPE_SURFACE"); xml.writeAttribute("SurfaceNumberOfVertices", AString_number(myModel.m_surfaceNumberOfNodes)); xml.writeStartElement("VertexIndices"); AString text = ""; int64_t numNodes = (int64_t)myModel.m_nodeIndices.size(); for (int64_t j = 0; j < numNodes; ++j) { if (j != 0) text += " "; text += AString_number(myModel.m_nodeIndices[j]); } xml.writeCharacters(text); xml.writeEndElement(); } else { xml.writeAttribute("ModelType", "CIFTI_MODEL_TYPE_VOXELS"); xml.writeStartElement("VoxelIndicesIJK"); AString text = ""; int64_t listSize = (int64_t)myModel.m_voxelIndicesIJK.size(); CiftiAssert(listSize % 3 == 0); for (int64_t j = 0; j < listSize; j += 3) { text += AString_number(myModel.m_voxelIndicesIJK[j]) + " " + AString_number(myModel.m_voxelIndicesIJK[j + 1]) + " " + AString_number(myModel.m_voxelIndicesIJK[j + 2]) + "\n"; } xml.writeCharacters(text); xml.writeEndElement(); } xml.writeEndElement(); } } CiftiLib-1.6.0/src/Cifti/CiftiBrainModelsMap.h000066400000000000000000000160271373715117300210330ustar00rootroot00000000000000#ifndef __CIFTI_BRAIN_MODELS_MAP_H__ #define __CIFTI_BRAIN_MODELS_MAP_H__ /*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CiftiMappingType.h" #include "Common/Compact3DLookup.h" #include "StructureEnum.h" #include "VolumeSpace.h" #include #include #include namespace cifti { class CiftiBrainModelsMap : public CiftiMappingType { public: enum ModelType { SURFACE, VOXELS }; struct SurfaceMap { int64_t m_ciftiIndex; int64_t m_surfaceNode; }; struct VolumeMap { int64_t m_ciftiIndex; int64_t m_ijk[3]; }; struct ModelInfo { ModelType m_type; StructureEnum::Enum m_structure; int64_t m_indexStart, m_indexCount;//these are intended only for summary info, use getSurfaceMap, etc for the index to vertex/voxel mappings }; struct IndexInfo { ModelType m_type; StructureEnum::Enum m_structure; int64_t m_surfaceNode;//only one of these two will be valid int64_t m_ijk[3]; }; bool hasVolumeData() const; bool hasVolumeData(const StructureEnum::Enum& structure) const; bool hasSurfaceData(const StructureEnum::Enum& structure) const; int64_t getIndexForNode(const int64_t& node, const StructureEnum::Enum& structure) const; int64_t getIndexForVoxel(const int64_t* ijk, StructureEnum::Enum* structureOut = NULL) const; int64_t getIndexForVoxel(const int64_t& i, const int64_t& j, const int64_t& k, StructureEnum::Enum* structureOut = NULL) const; IndexInfo getInfoForIndex(const int64_t index) const; std::vector getSurfaceMap(const StructureEnum::Enum& structure) const; std::vector getFullVolumeMap() const; std::vector getVolumeStructureMap(const StructureEnum::Enum& structure) const; const VolumeSpace& getVolumeSpace() const; int64_t getSurfaceNumberOfNodes(const StructureEnum::Enum& structure) const; std::vector getSurfaceStructureList() const; std::vector getVolumeStructureList() const; const std::vector& getNodeList(const StructureEnum::Enum& structure) const;//useful for copying mappings to a new dense mapping const std::vector& getVoxelList(const StructureEnum::Enum& structure) const; std::vector getModelInfo() const; CiftiBrainModelsMap() { m_haveVolumeSpace = false; m_ignoreVolSpace = false; } void addSurfaceModel(const int64_t& numberOfNodes, const StructureEnum::Enum& structure, const float* roi = NULL); void addSurfaceModel(const int64_t& numberOfNodes, const StructureEnum::Enum& structure, const std::vector& nodeList); void addVolumeModel(const StructureEnum::Enum& structure, const std::vector& ijkList); void setVolumeSpace(const VolumeSpace& space); void clear(); CiftiMappingType* clone() const { return new CiftiBrainModelsMap(*this); } MappingType getType() const { return BRAIN_MODELS; } int64_t getLength() const; bool operator==(const CiftiMappingType& rhs) const; bool approximateMatch(const CiftiMappingType& rhs, AString* explanation = NULL) const; void readXML1(XmlReader& xml); void readXML2(XmlReader& xml); void writeXML1(XmlWriter& xml) const; void writeXML2(XmlWriter& xml) const; private: struct BrainModelPriv { ModelType m_type; StructureEnum::Enum m_brainStructure; int64_t m_surfaceNumberOfNodes; std::vector m_nodeIndices; std::vector m_voxelIndicesIJK; int64_t m_modelStart, m_modelEnd;//stuff only needed for optimization - models are kept in sorted order by their index ranges std::vector m_nodeToIndexLookup; bool operator==(const BrainModelPriv& rhs) const; bool operator!=(const BrainModelPriv& rhs) const { return !((*this) == rhs); } void setupSurface(const int64_t& start); }; VolumeSpace m_volSpace; bool m_haveVolumeSpace, m_ignoreVolSpace;//second is needed for parsing cifti-1 std::vector m_modelsInfo; std::map m_surfUsed, m_volUsed; Compact3DLookup > m_voxelToIndexLookup;//make one unified lookup rather than separate lookups per volume structure int64_t getNextStart() const; struct ParseHelperModel {//specifically to allow the parsed elements to be sorted before using addSurfaceModel/addVolumeModel ModelType m_type; StructureEnum::Enum m_brainStructure; int64_t m_surfaceNumberOfNodes; std::vector m_nodeIndices; std::vector m_voxelIndicesIJK; int64_t m_offset, m_count; bool operator<(const ParseHelperModel& rhs) const { if (m_offset < rhs.m_offset) return true; if (m_offset > rhs.m_offset) return false;//get the common cases first if (m_count < rhs.m_count) return true;//in case we have a zero-length model - this shouldn't happen, usually return false; } void parseBrainModel1(XmlReader& xml); void parseBrainModel2(XmlReader& xml); static std::vector readIndexArray(XmlReader& xml); }; }; } #endif //__CIFTI_BRAIN_MODELS_MAP_H__ CiftiLib-1.6.0/src/Cifti/CiftiLabelsMap.cxx000066400000000000000000000367171373715117300204210ustar00rootroot00000000000000/*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CiftiLabelsMap.h" #include "Common/CiftiAssert.h" #include "Common/CiftiException.h" #include using namespace std; using namespace cifti; void CiftiLabelsMap::clear() { m_maps.clear(); } const MetaData& CiftiLabelsMap::getMapMetadata(const int64_t& index) const { CiftiAssertVectorIndex(m_maps, index); return m_maps[index].m_metaData; } const LabelTable& CiftiLabelsMap::getMapLabelTable(const int64_t& index) const { CiftiAssertVectorIndex(m_maps, index); return m_maps[index].m_labelTable; } const AString& CiftiLabelsMap::getMapName(const int64_t& index) const { CiftiAssertVectorIndex(m_maps, index); return m_maps[index].m_name; } void CiftiLabelsMap::setMapMetadata(const int64_t& index, const MetaData& md) { CiftiAssertVectorIndex(m_maps, index); m_maps[index].m_metaData = md; } void CiftiLabelsMap::setMapLabelTable(const int64_t& index, const LabelTable& lt) { CiftiAssertVectorIndex(m_maps, index); m_maps[index].m_labelTable = lt; } void CiftiLabelsMap::setMapName(const int64_t& index, const AString& mapName) { CiftiAssertVectorIndex(m_maps, index); m_maps[index].m_name = mapName; } void CiftiLabelsMap::setLength(const int64_t& length) { CiftiAssert(length > 0); m_maps.resize(length); } bool CiftiLabelsMap::approximateMatch(const CiftiMappingType& rhs, AString* explanation) const { switch (rhs.getType()) { case SCALARS: case SERIES://maybe? case LABELS: if (getLength() != rhs.getLength()) { if (explanation != NULL) *explanation = "mappings have different length"; return false; } else return true; default: if (explanation != NULL) *explanation = CiftiMappingType::mappingTypeToName(rhs.getType()) + " mapping never matches " + CiftiMappingType::mappingTypeToName(getType()); return false; } } bool CiftiLabelsMap::operator==(const CiftiMappingType& rhs) const { if (rhs.getType() != getType()) return false; const CiftiLabelsMap& myrhs = dynamic_cast(rhs); return (m_maps == myrhs.m_maps); } bool CiftiLabelsMap::LabelMap::operator==(const LabelMap& rhs) const { if (m_name != rhs.m_name) return false; if (m_labelTable != rhs.m_labelTable) return false; return (m_metaData == rhs.m_metaData); } void CiftiLabelsMap::readXML1(XmlReader& xml) { cerr << "parsing nonstandard labels mapping type in cifti-1" << endl; clear(); #ifdef CIFTILIB_USE_QT for (xml.readNext(); !xml.atEnd() && !xml.isEndElement(); xml.readNext()) { switch (xml.tokenType()) { case QXmlStreamReader::StartElement: { if (xml.name() != "NamedMap") { throw CiftiException("unexpected element in labels map: " + xml.name().toString()); } LabelMap tempMap; tempMap.readXML1(xml); if (xml.hasError()) return; m_maps.push_back(tempMap); break; } default: break; } } #else #ifdef CIFTILIB_USE_XMLPP bool done = xml.is_empty_element();//NOTE: a element does NOT give a separate end element state!!! while(!done && xml.read()) { switch (xml.get_node_type()) { case XmlReader::Element: { AString name = xml.get_local_name(); if (name == "NamedMap") { LabelMap tempMap; tempMap.readXML1(xml); m_maps.push_back(tempMap); } else { throw CiftiException("unexpected element in labels map: " + name); } break; } case XmlReader::EndElement: done = true; break; default: break; } } #else #error "not implemented" #endif #endif CiftiAssert(XmlReader_checkEndElement(xml, "MatrixIndicesMap")); } void CiftiLabelsMap::readXML2(XmlReader& xml) { clear(); #ifdef CIFTILIB_USE_QT for (xml.readNext(); !xml.atEnd() && !xml.isEndElement(); xml.readNext()) { switch (xml.tokenType()) { case QXmlStreamReader::StartElement: { if (xml.name() != "NamedMap") { throw CiftiException("unexpected element in labels mapping type: " + xml.name().toString()); } LabelMap tempMap; tempMap.readXML2(xml); if (xml.hasError()) return; m_maps.push_back(tempMap); break; } default: break; } } #else #ifdef CIFTILIB_USE_XMLPP bool done = xml.is_empty_element();//NOTE: a element does NOT give a separate end element state!!! while(!done && xml.read()) { switch (xml.get_node_type()) { case XmlReader::Element: { AString name = xml.get_local_name(); if (name == "NamedMap") { LabelMap tempMap; tempMap.readXML2(xml); m_maps.push_back(tempMap); } else { throw CiftiException("unexpected element in labels mapping type: " + name); } break; } case XmlReader::EndElement: done = true; break; default: break; } } #else #error "not implemented" #endif #endif CiftiAssert(XmlReader_checkEndElement(xml, "MatrixIndicesMap")); } void CiftiLabelsMap::LabelMap::readXML1(XmlReader& xml) { bool haveName = false, haveTable = false, haveMetaData = false; #ifdef CIFTILIB_USE_QT for (xml.readNext(); !xml.atEnd() && !xml.isEndElement(); xml.readNext()) { switch (xml.tokenType()) { case QXmlStreamReader::StartElement: { QStringRef name = xml.name(); if (name == "MetaData") { if (haveMetaData) { throw CiftiException("MetaData specified multiple times in one NamedMap"); } m_metaData.readCiftiXML1(xml); if (xml.hasError()) return; haveMetaData = true; } else if (name == "LabelTable") { if (haveTable) { throw CiftiException("LabelTable specified multiple times in one NamedMap"); } m_labelTable.readXml(xml); if (xml.hasError()) return; haveTable = true; } else if (name == "MapName") { if (haveName) { throw CiftiException("MapName specified multiple times in one NamedMap"); } m_name = xml.readElementText();//raises error if element encountered if (xml.hasError()) return; haveName = true; } else { throw CiftiException("unexpected element in NamedMap: " + name.toString()); } break; } default: break; } } #else #ifdef CIFTILIB_USE_XMLPP bool done = xml.is_empty_element();//NOTE: a element does NOT give a separate end element state!!! while(!done && xml.read()) { switch (xml.get_node_type()) { case XmlReader::Element: { AString name = xml.get_local_name(); if (name == "MetaData") { if (haveMetaData) { throw CiftiException("MetaData specified multiple times in one NamedMap"); } m_metaData.readCiftiXML1(xml); haveMetaData = true; } else if (name == "LabelTable") { if (haveTable) { throw CiftiException("LabelTable specified multiple times in one NamedMap"); } m_labelTable.readXml(xml); haveTable = true; } else if (name == "MapName") { if (haveName) { throw CiftiException("MapName specified multiple times in one NamedMap"); } m_name = XmlReader_readElementText(xml);//raises error if element encountered haveName = true; } else { throw CiftiException("unexpected element in labels mapping type: " + name); } break; } case XmlReader::EndElement: done = true; break; default: break; } } #else #error "not implemented" #endif #endif CiftiAssert(XmlReader_checkEndElement(xml, "NamedMap")); if (!haveName) { throw CiftiException("NamedMap missing required child element MapName"); } if (!haveTable) { throw CiftiException("NamedMap in labels mapping missing required child element LabelTable"); } } void CiftiLabelsMap::LabelMap::readXML2(XmlReader& xml) { bool haveName = false, haveTable = false, haveMetaData = false; #ifdef CIFTILIB_USE_QT for (xml.readNext(); !xml.atEnd() && !xml.isEndElement(); xml.readNext()) { switch (xml.tokenType()) { case QXmlStreamReader::StartElement: { QStringRef name = xml.name(); if (name == "MetaData") { if (haveMetaData) { throw CiftiException("MetaData specified multiple times in one NamedMap"); } m_metaData.readCiftiXML2(xml); if (xml.hasError()) return; haveMetaData = true; } else if (name == "LabelTable") { if (haveTable) { throw CiftiException("LabelTable specified multiple times in one NamedMap"); } m_labelTable.readXml(xml); if (xml.hasError()) return; haveTable = true; } else if (name == "MapName") { if (haveName) { throw CiftiException("MapName specified multiple times in one NamedMap"); } m_name = xml.readElementText();//raises error if element encountered if (xml.hasError()) return; haveName = true; } else { throw CiftiException("unexpected element in NamedMap: " + name.toString()); } break; } default: break; } } #else #ifdef CIFTILIB_USE_XMLPP bool done = xml.is_empty_element();//NOTE: a element does NOT give a separate end element state!!! while(!done && xml.read()) { switch (xml.get_node_type()) { case XmlReader::Element: { AString name = xml.get_local_name(); if (name == "MetaData") { if (haveMetaData) { throw CiftiException("MetaData specified multiple times in one NamedMap"); } m_metaData.readCiftiXML2(xml); haveMetaData = true; } else if (name == "LabelTable") { if (haveTable) { throw CiftiException("LabelTable specified multiple times in one NamedMap"); } m_labelTable.readXml(xml); haveTable = true; } else if (name == "MapName") { if (haveName) { throw CiftiException("MapName specified multiple times in one NamedMap"); } m_name = XmlReader_readElementText(xml);//raises error if element encountered haveName = true; } else { throw CiftiException("unexpected element in labels mapping type: " + name); } break; } case XmlReader::EndElement: done = true; break; default: break; } } #else #error "not implemented" #endif #endif CiftiAssert(XmlReader_checkEndElement(xml, "NamedMap")); if (!haveName) { throw CiftiException("NamedMap missing required child element MapName"); } if (!haveTable) { throw CiftiException("NamedMap in labels mapping missing required child element LabelTable"); } } void CiftiLabelsMap::writeXML1(XmlWriter& xml) const { cerr << "writing nonstandard labels mapping type in cifti-1" << endl; xml.writeAttribute("IndicesMapToDataType", "CIFTI_INDEX_TYPE_LABELS"); int64_t numMaps = (int64_t)m_maps.size(); for (int64_t i = 0; i < numMaps; ++i) { xml.writeStartElement("NamedMap"); xml.writeTextElement("MapName", m_maps[i].m_name); m_maps[i].m_metaData.writeCiftiXML1(xml); m_maps[i].m_labelTable.writeXML(xml); xml.writeEndElement(); } } void CiftiLabelsMap::writeXML2(XmlWriter& xml) const { int64_t numMaps = (int64_t)m_maps.size(); xml.writeAttribute("IndicesMapToDataType", "CIFTI_INDEX_TYPE_LABELS"); for (int64_t i = 0; i < numMaps; ++i) { xml.writeStartElement("NamedMap"); xml.writeTextElement("MapName", m_maps[i].m_name); m_maps[i].m_metaData.writeCiftiXML2(xml); m_maps[i].m_labelTable.writeXML(xml); xml.writeEndElement(); } } CiftiLib-1.6.0/src/Cifti/CiftiLabelsMap.h000066400000000000000000000060631373715117300200350ustar00rootroot00000000000000#ifndef __CIFTI_LABELS_MAP_H__ #define __CIFTI_LABELS_MAP_H__ /*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CiftiMappingType.h" #include "Common/AString.h" #include "MetaData.h" #include "LabelTable.h" #include #include namespace cifti { class CiftiLabelsMap : public CiftiMappingType { public: const MetaData& getMapMetadata(const int64_t& index) const; const LabelTable& getMapLabelTable(const int64_t& index) const; const AString& getMapName(const int64_t& index) const; void setMapMetadata(const int64_t& index, const MetaData& md); void setMapLabelTable(const int64_t& index, const LabelTable& lt); void setMapName(const int64_t& index, const AString& mapName); void setLength(const int64_t& length); void clear(); CiftiMappingType* clone() const { return new CiftiLabelsMap(*this); } MappingType getType() const { return LABELS; } int64_t getLength() const { return m_maps.size(); } bool operator==(const CiftiMappingType& rhs) const; bool approximateMatch(const CiftiMappingType& rhs, AString* explanation = NULL) const; void readXML1(XmlReader& xml); void readXML2(XmlReader& xml); void writeXML1(XmlWriter& xml) const; void writeXML2(XmlWriter& xml) const; private: struct LabelMap { AString m_name; MetaData m_metaData; LabelTable m_labelTable; bool operator==(const LabelMap& rhs) const; void readXML1(XmlReader& xml); void readXML2(XmlReader& xml); }; std::vector m_maps; }; } #endif //__CIFTI_LABELS_MAP_H__ CiftiLib-1.6.0/src/Cifti/CiftiMappingType.cxx000066400000000000000000000040011373715117300207730ustar00rootroot00000000000000/*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CiftiMappingType.h" #include "Common/CiftiAssert.h" using namespace cifti; CiftiMappingType::~CiftiMappingType() {//to ensure that the class's vtable gets defined in an object file } AString CiftiMappingType::mappingTypeToName(const CiftiMappingType::MappingType& type) { switch (type) { case BRAIN_MODELS: return "BRAIN_MODELS"; case PARCELS: return "PARCELS"; case SERIES: return "SERIES"; case SCALARS: return "SCALARS"; case LABELS: return "LABELS"; } CiftiAssert(0); return ""; } CiftiLib-1.6.0/src/Cifti/CiftiMappingType.h000066400000000000000000000055211373715117300204300ustar00rootroot00000000000000#ifndef __CIFTI_MAPPING_TYPE_H__ #define __CIFTI_MAPPING_TYPE_H__ /*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "stdint.h" #include "Common/XmlAdapter.h" namespace cifti { class CiftiMappingType { public: enum MappingType { BRAIN_MODELS, PARCELS, SERIES, SCALARS, LABELS }; virtual CiftiMappingType* clone() const = 0;//make a copy, preserving the actual type - NOTE: this returns a dynamic allocation that is not owned by anything virtual MappingType getType() const = 0; virtual int64_t getLength() const = 0; virtual bool operator==(const CiftiMappingType& rhs) const = 0;//used to check for merging mappings when writing the XML - must compare EVERYTHING that goes into the XML bool operator!=(const CiftiMappingType& rhs) const { return !((*this) == rhs); } virtual bool approximateMatch(const CiftiMappingType& rhs, AString* explanation = NULL) const = 0;//check if things like doing index-wise math would make sense virtual void readXML1(XmlReader& xml) = 0;//mainly to shorten the type-specific code in CiftiXML virtual void readXML2(XmlReader& xml) = 0; virtual void writeXML1(XmlWriter& xml) const = 0; virtual void writeXML2(XmlWriter& xml) const = 0; virtual ~CiftiMappingType(); static AString mappingTypeToName(const MappingType& type); }; } #endif //__CIFTI_MAPPING_TYPE_H__ CiftiLib-1.6.0/src/Cifti/CiftiParcelsMap.cxx000066400000000000000000001203601373715117300205740ustar00rootroot00000000000000/*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CiftiParcelsMap.h" #include "Common/CiftiAssert.h" #include "Common/CiftiException.h" #include using namespace std; using namespace cifti; void CiftiParcelsMap::addParcel(const CiftiParcelsMap::Parcel& parcel) { int64_t thisParcel = m_parcels.size();//slight hack: current number of parcels will be this parcel's index for (int64_t i = 0; i < thisParcel; ++i)//also use it as endpoint of looping over existing parcels { if (parcel.m_name == m_parcels[i].m_name) { throw CiftiException("cannot add parcel with duplicate name '" + parcel.m_name + "'");//NOTE: technically this restriction isn't in the standard, but that was probably an oversight } } int64_t voxelListSize = (int64_t)parcel.m_voxelIndices.size(); Compact3DLookup tempLookup = m_volLookup;//a copy of the lookup should be faster than other methods of checking for overlap and repeat if (voxelListSize != 0) { const int64_t* dims = NULL; if (!m_ignoreVolSpace) { if (!m_haveVolumeSpace) { throw CiftiException("you must set the volume space before adding parcels that use voxels"); } dims = m_volSpace.getDims(); } for (set::const_iterator iter = parcel.m_voxelIndices.begin(); iter != parcel.m_voxelIndices.end(); ++iter)//do all error checking before adding to lookup - might be unnecessary { if (iter->m_ijk[0] < 0 || iter->m_ijk[1] < 0 || iter->m_ijk[2] < 0) { throw CiftiException("found negative index triple in voxel list"); } if (!m_ignoreVolSpace && (iter->m_ijk[0] >= dims[0] || iter->m_ijk[1] >= dims[1] || iter->m_ijk[2] >= dims[2])) { throw CiftiException("found invalid index triple in voxel list"); } if (tempLookup.find(iter->m_ijk) != NULL) { throw CiftiException("parcels may not overlap in voxels"); } tempLookup.at(iter->m_ijk) = thisParcel; } } for (map >::const_iterator iter = parcel.m_surfaceNodes.begin(); iter != parcel.m_surfaceNodes.end(); ++iter) { map::const_iterator info = m_surfInfo.find(iter->first); if (info == m_surfInfo.end()) { throw CiftiException("you must set surfaces before adding parcels that use them"); } const set& nodeSet = iter->second; if (nodeSet.size() == 0) { throw CiftiException("parcels may not include empty node lists");//NOTE: technically not required by Cifti, change if problematic, but probably never allow empty list in internal state } for (set::const_iterator iter2 = nodeSet.begin(); iter2 != nodeSet.end(); ++iter2) { if (*iter2 < 0) { throw CiftiException("found negative vertex in parcel"); } if (*iter2 >= info->second.m_numNodes) { throw CiftiException("found invalid vertex in parcel"); } if (info->second.m_lookup[*iter2] != -1) { throw CiftiException("parcels may not overlap in vertices"); } } } if (voxelListSize != 0)//all error checking done, modify { m_volLookup = tempLookup; } for (map >::const_iterator iter = parcel.m_surfaceNodes.begin(); iter != parcel.m_surfaceNodes.end(); ++iter) { map::iterator info = m_surfInfo.find(iter->first); CiftiAssert(info != m_surfInfo.end()); const set& nodeSet = iter->second; for (set::const_iterator iter2 = nodeSet.begin(); iter2 != nodeSet.end(); ++iter2) { CiftiAssertVectorIndex(info->second.m_lookup, *iter2); info->second.m_lookup[*iter2] = thisParcel; } } m_parcels.push_back(parcel); } void CiftiParcelsMap::addSurface(const int64_t& numberOfNodes, const StructureEnum::Enum& structure) { map::const_iterator test = m_surfInfo.find(structure); if (test != m_surfInfo.end()) { throw CiftiException("parcel surface structures may not be used more than once"); } SurfaceInfo tempInfo; tempInfo.m_numNodes = numberOfNodes; tempInfo.m_lookup.resize(numberOfNodes, -1); m_surfInfo[structure] = tempInfo; } void CiftiParcelsMap::clear() { m_haveVolumeSpace = false; m_ignoreVolSpace = false; m_parcels.clear(); m_surfInfo.clear(); m_volLookup.clear(); } void CiftiParcelsMap::setVolumeSpace(const VolumeSpace& space) { const int64_t* dims = space.getDims(); int64_t numParcels = (int64_t)m_parcels.size(); for (int64_t i = 0; i < numParcels; ++i) { const set& voxelList = m_parcels[i].m_voxelIndices; for (set::const_iterator iter = voxelList.begin(); iter != voxelList.end(); ++iter) { if (iter->m_ijk[0] >= dims[0] || iter->m_ijk[1] >= dims[1] || iter->m_ijk[2] >= dims[2]) { throw CiftiException("parcels may not contain voxel indices outside the volume space"); } } } m_haveVolumeSpace = true; m_ignoreVolSpace = false; m_volSpace = space; } int64_t CiftiParcelsMap::getIndexForNode(const int64_t& node, const StructureEnum::Enum& structure) const { CiftiAssert(node >= 0); map::const_iterator test = m_surfInfo.find(structure); if (test == m_surfInfo.end()) return -1; if (node >= test->second.m_numNodes) return -1; CiftiAssertVectorIndex(test->second.m_lookup, node); return test->second.m_lookup[node]; } int64_t CiftiParcelsMap::getIndexForVoxel(const int64_t* ijk) const { return getIndexForVoxel(ijk[0], ijk[1], ijk[2]); } int64_t CiftiParcelsMap::getIndexForVoxel(const int64_t& i, const int64_t& j, const int64_t& k) const { const int64_t* test = m_volLookup.find(i, j, k);//the lookup tolerates weirdness like negatives if (test == NULL) return -1; return *test; } vector CiftiParcelsMap::getParcelSurfaceStructures() const { vector ret; ret.reserve(m_surfInfo.size()); for (map::const_iterator iter = m_surfInfo.begin(); iter != m_surfInfo.end(); ++iter) { ret.push_back(iter->first); } return ret; } const VolumeSpace& CiftiParcelsMap::getVolumeSpace() const { CiftiAssert(!m_ignoreVolSpace);//this should never be set except during parsing of cifti-1 if (!m_haveVolumeSpace) { throw CiftiException("getVolumeSpace called when no volume space exists"); } return m_volSpace; } int64_t CiftiParcelsMap::getSurfaceNumberOfNodes(const StructureEnum::Enum& structure) const { map::const_iterator iter = m_surfInfo.find(structure); if (iter == m_surfInfo.end()) return -1; return iter->second.m_numNodes; } bool CiftiParcelsMap::hasSurface(const StructureEnum::Enum& structure) const { return m_surfInfo.find(structure) != m_surfInfo.end(); } bool CiftiParcelsMap::hasSurfaceData(const StructureEnum::Enum& structure) const { if (m_surfInfo.find(structure) == m_surfInfo.end()) return false; int64_t numParcels = (int64_t)m_parcels.size(); for (int64_t i = 0; i < numParcels; ++i) { map >::const_iterator iter = m_parcels[i].m_surfaceNodes.find(structure); if (iter != m_parcels[i].m_surfaceNodes.end() && iter->second.size() != 0) return true; } return false; } bool CiftiParcelsMap::hasVolumeData() const { CiftiAssert(!m_ignoreVolSpace); int64_t numParcels = (int64_t)m_parcels.size();//NOTE: this function is used when reading cifti-1 to determine whether it is an error to not have a volume space, so we can't just check m_haveVolumeSpace for (int64_t i = 0; i < numParcels; ++i) { if (m_parcels[i].m_voxelIndices.size() != 0) return true; } return false; } bool CiftiParcelsMap::approximateMatch(const CiftiMappingType& rhs, AString* explanation) const { if (rhs.getType() != getType()) { if (explanation != NULL) *explanation = CiftiMappingType::mappingTypeToName(rhs.getType()) + " mapping never matches " + CiftiMappingType::mappingTypeToName(getType()); return false; } const CiftiParcelsMap& myrhs = dynamic_cast(rhs); CiftiAssert(!m_ignoreVolSpace && !myrhs.m_ignoreVolSpace); if (m_haveVolumeSpace != myrhs.m_haveVolumeSpace) { if (explanation != NULL) *explanation = "one of the mappings has no volume data"; return false; } if (m_haveVolumeSpace && (m_volSpace != myrhs.m_volSpace)) { if (explanation != NULL) *explanation = "mappings have a different volume space"; return false; } if (m_surfInfo.size() != myrhs.m_surfInfo.size()) { if (explanation != NULL) *explanation = "mappings have a different number of surfaces used"; return false;//as below, return false if they won't write the mapping part to xml the same - 1 to 1 compare only requires 1 simple loop } for (map::const_iterator iter = m_surfInfo.begin(); iter != m_surfInfo.end(); ++iter) { map::const_iterator rhsiter = myrhs.m_surfInfo.find(iter->first); if (rhsiter == myrhs.m_surfInfo.end()) {//technically, they might still have the same meaning, if the surface isn't used, but they will still write differently, so false if (explanation != NULL) *explanation = StructureEnum::toName(iter->first) + " surface expected but not found"; return false; } if (iter->second.m_numNodes != rhsiter->second.m_numNodes) { if (explanation != NULL) *explanation = "different number of vertices for surface " + StructureEnum::toName(iter->first); return false; } } if (m_parcels.size() != myrhs.m_parcels.size()) { if (explanation != NULL) *explanation = "different number of parcels"; return false; } for (int64_t i = 0; i < (int64_t)m_parcels.size(); ++i) { if (!m_parcels[i].approximateMatch(myrhs.m_parcels[i], explanation)) return false; } return true; } bool CiftiParcelsMap::operator==(const CiftiMappingType& rhs) const { if (rhs.getType() != getType()) return false; const CiftiParcelsMap& myrhs = dynamic_cast(rhs); CiftiAssert(!m_ignoreVolSpace && !myrhs.m_ignoreVolSpace); if (m_haveVolumeSpace != myrhs.m_haveVolumeSpace) return false; if (m_haveVolumeSpace && m_volSpace != myrhs.m_volSpace) return false; if (m_surfInfo.size() != myrhs.m_surfInfo.size()) return false;//as below, return false if they won't write to xml the same - 1 to 1 compare only requires 1 simple loop for (map::const_iterator iter = m_surfInfo.begin(); iter != m_surfInfo.end(); ++iter) { map::const_iterator rhsiter = myrhs.m_surfInfo.find(iter->first); if (rhsiter == myrhs.m_surfInfo.end()) return false;//technically, they might still have the same meaning, if the surface isn't used, but they will still write differently, so false if (iter->second.m_numNodes != rhsiter->second.m_numNodes) return false; } return (m_parcels == myrhs.m_parcels); } bool CiftiParcelsMap::Parcel::operator==(const CiftiParcelsMap::Parcel& rhs) const { if (m_name != rhs.m_name) return false; if (m_voxelIndices != rhs.m_voxelIndices) return false; return (m_surfaceNodes == rhs.m_surfaceNodes); } //same, but don't test name bool CiftiParcelsMap::Parcel::approximateMatch(const CiftiParcelsMap::Parcel& rhs, AString* explanation) const { bool nameMatches = (m_name == rhs.m_name);//for more informative explanations if (m_voxelIndices != rhs.m_voxelIndices) { if (explanation != NULL) { if (nameMatches) { *explanation = "parcel '" + m_name + "' uses different voxels than parcel in other map"; } else { *explanation = "parcel '" + m_name + "' uses different voxels than same-index parcel '" + rhs.m_name + "' in other map"; } } return false; } if (m_surfaceNodes != rhs.m_surfaceNodes) { if (explanation != NULL) { if (nameMatches) { *explanation = "parcel '" + m_name + "' uses different surface vertices than parcel in other map"; } else { *explanation = "parcel '" + m_name + "' uses different surface vertices than same-index parcel '" + rhs.m_name + "' in other map"; } } return false; } return true; } void CiftiParcelsMap::readXML1(XmlReader& xml) { cerr << "parsing nonstandard parcels mapping type in cifti-1" << endl; clear(); m_ignoreVolSpace = true;//cifti-1 has volume space outside the index map vector myParcels;//because we need to add the surfaces first #ifdef CIFTILIB_USE_QT while (xml.readNextStartElement()) { QStringRef name = xml.name(); if (name == "Surface") { QXmlStreamAttributes attrs = xml.attributes(); if (!attrs.hasAttribute("BrainStructure")) { throw CiftiException("Surface element missing required attribute BrainStructure"); } bool ok = false; StructureEnum::Enum tempStructure = StructureEnum::fromCiftiName(attrs.value("BrainStructure").toString(), &ok); if (!ok) { throw CiftiException("invalid value for BrainStructure: " + attrs.value("BrainStructure").toString()); } if (!attrs.hasAttribute("SurfaceNumberOfNodes")) { throw CiftiException("Surface element missing required attribute SurfaceNumberOfNodes"); } int64_t numNodes = attrs.value("SurfaceNumberOfNodes").toString().toLongLong(&ok); if (!ok || numNodes < 1) { throw CiftiException("invalid value for SurfaceNumberOfNodes: " + attrs.value("SurfaceNumberOfNodes").toString()); } addSurface(numNodes, tempStructure);//let the standard modification functions do error checking if (xml.readNextStartElement()) { throw CiftiException("unexpected element inside Surface: " + xml.name().toString()); } } else if (name == "Parcel") { myParcels.push_back(readParcel1(xml)); } else { throw CiftiException("unexpected element in parcels map: " + name.toString()); } } #else #ifdef CIFTILIB_USE_XMLPP bool done = xml.is_empty_element();//NOTE: a element does NOT give a separate end element state!!! while(!done && xml.read()) { switch (xml.get_node_type()) { case XmlReader::Element: { AString name = xml.get_local_name(); if (name == "Surface") { vector mandAttrs(2); mandAttrs[0] = "BrainStructure"; mandAttrs[1] = "SurfaceNumberOfNodes"; XmlAttributesResult myAttrs = XmlReader_parseAttributes(xml, mandAttrs); bool ok = false; StructureEnum::Enum tempStructure = StructureEnum::fromCiftiName(myAttrs.mandatoryVals[0], &ok); if (!ok) { throw CiftiException("invalid value for BrainStructure: " + myAttrs.mandatoryVals[0]); } int64_t numNodes = AString_toInt(myAttrs.mandatoryVals[1], ok); if (!ok || numNodes < 1) { throw CiftiException("invalid value for SurfaceNumberOfNodes: " + myAttrs.mandatoryVals[1]); } addSurface(numNodes, tempStructure);//let the standard modification functions do error checking } else if (name == "Parcel") { myParcels.push_back(readParcel1(xml)); } else { throw CiftiException("unexpected element in parcels map: " + name); } break; } case XmlReader::EndElement: done = true; break; default: break; } } #else #error "not implemented" #endif #endif CiftiAssert(XmlReader_checkEndElement(xml, "MatrixIndicesMap")); int64_t numParcels = (int64_t)myParcels.size(); for (int64_t i = 0; i < numParcels; ++i) { addParcel(myParcels[i]); } m_ignoreVolSpace = false;//in case there are no voxels, but some will be added later } void CiftiParcelsMap::readXML2(XmlReader& xml) { clear(); vector myParcels;//because we need to add the surfaces and volume space first #ifdef CIFTILIB_USE_QT while (xml.readNextStartElement()) { QStringRef name = xml.name(); if (name == "Surface") { QXmlStreamAttributes attrs = xml.attributes(); if (!attrs.hasAttribute("BrainStructure")) { throw CiftiException("Surface element missing required attribute BrainStructure"); } bool ok = false; StructureEnum::Enum tempStructure = StructureEnum::fromCiftiName(attrs.value("BrainStructure").toString(), &ok); if (!ok) { throw CiftiException("invalid value for BrainStructure: " + attrs.value("BrainStructure").toString()); } if (!attrs.hasAttribute("SurfaceNumberOfVertices")) { throw CiftiException("Surface element missing required attribute SurfaceNumberOfVertices"); } int64_t numNodes = attrs.value("SurfaceNumberOfVertices").toString().toLongLong(&ok); if (!ok || numNodes < 1) { throw CiftiException("invalid value for SurfaceNumberOfVertices: " + attrs.value("SurfaceNumberOfVertices").toString()); } addSurface(numNodes, tempStructure);//let the standard modification functions do error checking if (xml.readNextStartElement()) { throw CiftiException("unexpected element inside Surface: " + xml.name().toString()); } } else if (name == "Parcel") { myParcels.push_back(readParcel2(xml)); if (xml.hasError()) return; } else if (name == "Volume") { if (m_haveVolumeSpace) { throw CiftiException("Volume specified more than once in Parcels mapping type"); } else { m_volSpace.readCiftiXML2(xml); if (xml.hasError()) return; m_haveVolumeSpace = true; } } else { throw CiftiException("unexpected element in parcels map: " + name.toString()); } } #else #ifdef CIFTILIB_USE_XMLPP bool done = xml.is_empty_element();//NOTE: a element does NOT give a separate end element state!!! while(!done && xml.read()) { switch (xml.get_node_type()) { case XmlReader::Element: { AString name = xml.get_local_name(); if (name == "Surface") { vector mandAttrs(2); mandAttrs[0] = "BrainStructure"; mandAttrs[1] = "SurfaceNumberOfVertices"; XmlAttributesResult myAttrs = XmlReader_parseAttributes(xml, mandAttrs); bool ok = false; StructureEnum::Enum tempStructure = StructureEnum::fromCiftiName(myAttrs.mandatoryVals[0], &ok); if (!ok) { throw CiftiException("invalid value for BrainStructure: " + myAttrs.mandatoryVals[0]); } int64_t numNodes = AString_toInt(myAttrs.mandatoryVals[1], ok); if (!ok || numNodes < 1) { throw CiftiException("invalid value for SurfaceNumberOfVertices: " + myAttrs.mandatoryVals[1]); } addSurface(numNodes, tempStructure);//let the standard modification functions do error checking } else if (name == "Parcel") { myParcels.push_back(readParcel2(xml)); } else if (name == "Volume") { if (m_haveVolumeSpace) { throw CiftiException("Volume specified more than once in Parcels mapping type"); } else { m_volSpace.readCiftiXML2(xml); m_haveVolumeSpace = true; } } else { throw CiftiException("unexpected element in parcels map: " + name); } break; } case XmlReader::EndElement: done = true; break; default: break; } } #else #error "not implemented" #endif #endif CiftiAssert(XmlReader_checkEndElement(xml, "MatrixIndicesMap")); int64_t numParcels = (int64_t)myParcels.size(); for (int64_t i = 0; i < numParcels; ++i) { addParcel(myParcels[i]); } } CiftiParcelsMap::Parcel CiftiParcelsMap::readParcel1(XmlReader& xml) { Parcel ret; bool haveVoxels = false; vector mandAttrs(1, "Name"); XmlAttributesResult myAttrs = XmlReader_parseAttributes(xml, mandAttrs); ret.m_name = myAttrs.mandatoryVals[0]; #ifdef CIFTILIB_USE_QT while (xml.readNextStartElement()) { QStringRef name = xml.name(); if (name == "Nodes") { QXmlStreamAttributes attrs1 = xml.attributes(); if (!attrs1.hasAttribute("BrainStructure")) { throw CiftiException("Nodes element missing required attribute BrainStructure"); } bool ok = false; StructureEnum::Enum myStructure = StructureEnum::fromCiftiName(attrs1.value("BrainStructure").toString(), &ok); if (!ok) { throw CiftiException("unrecognized value for BrainStructure: " + attrs1.value("BrainStructure").toString()); } if (ret.m_surfaceNodes.find(myStructure) != ret.m_surfaceNodes.end()) { throw CiftiException("Nodes elements may not reuse a BrainStructure within a Parcel"); } set& mySet = ret.m_surfaceNodes[myStructure]; vector array = readIndexArray(xml); if (xml.hasError()) return ret; int64_t arraySize = (int64_t)array.size(); for (int64_t i = 0; i < arraySize; ++i) { if (mySet.find(array[i]) != mySet.end()) { throw CiftiException("Nodes elements may not reuse indices"); } mySet.insert(array[i]); } } else if (name == "VoxelIndicesIJK") { if (haveVoxels) { throw CiftiException("VoxelIndicesIJK may only appear once in a Parcel"); } vector array = readIndexArray(xml); if (xml.hasError()) return ret; int64_t arraySize = (int64_t)array.size(); if (arraySize % 3 != 0) { throw CiftiException("number of indices in VoxelIndicesIJK must be a multiple of 3"); } for (int64_t index3 = 0; index3 < arraySize; index3 += 3) { VoxelIJK temp(array.data() + index3); if (ret.m_voxelIndices.find(temp) != ret.m_voxelIndices.end()) { throw CiftiException("VoxelIndicesIJK elements may not reuse voxels"); } ret.m_voxelIndices.insert(temp); } haveVoxels = true; } else { throw CiftiException("unexpected element in Parcel: " + name.toString()); } } #else #ifdef CIFTILIB_USE_XMLPP bool done = xml.is_empty_element();//NOTE: a element does NOT give a separate end element state!!! while(!done && xml.read()) { switch (xml.get_node_type()) { case XmlReader::Element: { AString name = xml.get_local_name(); if (name == "Nodes") { vector mandAttrs1(1, "BrainStructure"); XmlAttributesResult myAttrs1 = XmlReader_parseAttributes(xml, mandAttrs1); bool ok = false; StructureEnum::Enum myStructure = StructureEnum::fromCiftiName(myAttrs1.mandatoryVals[0], &ok); if (!ok) { throw CiftiException("unrecognized value for BrainStructure: " + myAttrs1.mandatoryVals[0]); } if (ret.m_surfaceNodes.find(myStructure) != ret.m_surfaceNodes.end()) { throw CiftiException("Nodes elements may not reuse a BrainStructure within a Parcel"); } set& mySet = ret.m_surfaceNodes[myStructure]; vector array = readIndexArray(xml); int64_t arraySize = (int64_t)array.size(); for (int64_t i = 0; i < arraySize; ++i) { if (mySet.find(array[i]) != mySet.end()) { throw CiftiException("Nodes elements may not reuse indices"); } mySet.insert(array[i]); } } else if (name == "VoxelIndicesIJK") { if (haveVoxels) { throw CiftiException("VoxelIndicesIJK may only appear once in a Parcel"); } vector array = readIndexArray(xml); int64_t arraySize = (int64_t)array.size(); if (arraySize % 3 != 0) { throw CiftiException("number of indices in VoxelIndicesIJK must be a multiple of 3"); } for (int64_t index3 = 0; index3 < arraySize; index3 += 3) { VoxelIJK temp(array.data() + index3); if (ret.m_voxelIndices.find(temp) != ret.m_voxelIndices.end()) { throw CiftiException("VoxelIndicesIJK elements may not reuse voxels"); } ret.m_voxelIndices.insert(temp); } haveVoxels = true; } else { throw CiftiException("unexpected element in Parcel: " + name); } break; } case XmlReader::EndElement: done = true; break; default: break; } } #else #error "not implemented" #endif #endif CiftiAssert(XmlReader_checkEndElement(xml, "Parcel")); return ret; } CiftiParcelsMap::Parcel CiftiParcelsMap::readParcel2(XmlReader& xml) { Parcel ret; bool haveVoxels = false; vector mandAttrs(1, "Name"); XmlAttributesResult myAttrs = XmlReader_parseAttributes(xml, mandAttrs); ret.m_name = myAttrs.mandatoryVals[0]; #ifdef CIFTILIB_USE_QT while (xml.readNextStartElement()) { QStringRef name = xml.name(); if (name == "Vertices") { QXmlStreamAttributes attrs1 = xml.attributes(); if (!attrs1.hasAttribute("BrainStructure")) { throw CiftiException("Vertices element missing required attribute BrainStructure"); } bool ok = false; StructureEnum::Enum myStructure = StructureEnum::fromCiftiName(attrs1.value("BrainStructure").toString(), &ok); if (!ok) { throw CiftiException("unrecognized value for BrainStructure: " + attrs1.value("BrainStructure").toString()); } if (ret.m_surfaceNodes.find(myStructure) != ret.m_surfaceNodes.end()) { throw CiftiException("Vertices elements may not reuse a BrainStructure within a Parcel"); } set& mySet = ret.m_surfaceNodes[myStructure]; vector array = readIndexArray(xml); if (xml.hasError()) return ret; int64_t arraySize = (int64_t)array.size(); for (int64_t i = 0; i < arraySize; ++i) { if (mySet.find(array[i]) != mySet.end()) { throw CiftiException("Vertices elements may not reuse indices"); } mySet.insert(array[i]); } } else if (name == "VoxelIndicesIJK") { if (haveVoxels) { throw CiftiException("VoxelIndicesIJK may only appear once in a Parcel"); } vector array = readIndexArray(xml); if (xml.hasError()) return ret; int64_t arraySize = (int64_t)array.size(); if (arraySize % 3 != 0) { throw CiftiException("number of indices in VoxelIndicesIJK must be a multiple of 3"); } for (int64_t index3 = 0; index3 < arraySize; index3 += 3) { VoxelIJK temp(array.data() + index3); if (ret.m_voxelIndices.find(temp) != ret.m_voxelIndices.end()) { throw CiftiException("VoxelIndicesIJK elements may not reuse voxels"); } ret.m_voxelIndices.insert(temp); } haveVoxels = true; } else { throw CiftiException("unexpected element in Parcel: " + name.toString()); } } #else #ifdef CIFTILIB_USE_XMLPP bool done = xml.is_empty_element();//NOTE: a element does NOT give a separate end element state!!! while(!done && xml.read()) { switch (xml.get_node_type()) { case XmlReader::Element: { AString name = xml.get_local_name(); if (name == "Vertices") { vector mandAttrs1(1, "BrainStructure"); XmlAttributesResult myAttrs1 = XmlReader_parseAttributes(xml, mandAttrs1); bool ok = false; StructureEnum::Enum myStructure = StructureEnum::fromCiftiName(myAttrs1.mandatoryVals[0], &ok); if (!ok) { throw CiftiException("unrecognized value for BrainStructure: " + myAttrs1.mandatoryVals[0]); } if (ret.m_surfaceNodes.find(myStructure) != ret.m_surfaceNodes.end()) { throw CiftiException("Vertices elements may not reuse a BrainStructure within a Parcel"); } set& mySet = ret.m_surfaceNodes[myStructure]; vector array = readIndexArray(xml); int64_t arraySize = (int64_t)array.size(); for (int64_t i = 0; i < arraySize; ++i) { if (mySet.find(array[i]) != mySet.end()) { throw CiftiException("Vertices elements may not reuse indices"); } mySet.insert(array[i]); } } else if (name == "VoxelIndicesIJK") { if (haveVoxels) { throw CiftiException("VoxelIndicesIJK may only appear once in a Parcel"); } vector array = readIndexArray(xml); int64_t arraySize = (int64_t)array.size(); if (arraySize % 3 != 0) { throw CiftiException("number of indices in VoxelIndicesIJK must be a multiple of 3"); } for (int64_t index3 = 0; index3 < arraySize; index3 += 3) { VoxelIJK temp(array.data() + index3); if (ret.m_voxelIndices.find(temp) != ret.m_voxelIndices.end()) { throw CiftiException("VoxelIndicesIJK elements may not reuse voxels"); } ret.m_voxelIndices.insert(temp); } haveVoxels = true; } else { throw CiftiException("unexpected element in Parcel: " + name); } break; } case XmlReader::EndElement: done = true; break; default: break; } } #else #error "not implemented" #endif #endif CiftiAssert(XmlReader_checkEndElement(xml, "Parcel")); return ret; } vector CiftiParcelsMap::readIndexArray(XmlReader& xml) { vector ret; AString text = XmlReader_readElementText(xml);//raises error if it encounters a start element #ifdef CIFTILIB_USE_QT if (xml.hasError()) return ret; #endif vector separated = AString_split_whitespace(text); int64_t numElems = separated.size(); ret.reserve(numElems); for (int64_t i = 0; i < numElems; ++i) { bool ok = false; ret.push_back(AString_toInt(separated[i], ok)); if (!ok) { throw CiftiException("found noninteger in index array: " + separated[i]); } if (ret.back() < 0) { throw CiftiException("found negative integer in index array: " + separated[i]); } } return ret; } void CiftiParcelsMap::writeXML1(XmlWriter& xml) const { CiftiAssert(!m_ignoreVolSpace); cerr << "writing nonstandard parcels mapping type in cifti-1" << endl; xml.writeAttribute("IndicesMapToDataType", "CIFTI_INDEX_TYPE_PARCELS"); for (map::const_iterator iter = m_surfInfo.begin(); iter != m_surfInfo.end(); ++iter) { xml.writeStartElement("Surface"); xml.writeAttribute("BrainStructure", StructureEnum::toCiftiName(iter->first)); xml.writeAttribute("SurfaceNumberOfNodes", AString_number(iter->second.m_numNodes)); xml.writeEndElement(); } int64_t numParcels = m_parcels.size(); for (int64_t i = 0; i < numParcels; ++i) { xml.writeStartElement("Parcel"); xml.writeAttribute("Name", m_parcels[i].m_name); int64_t numVoxels = (int64_t)m_parcels[i].m_voxelIndices.size(); if (numVoxels != 0) { xml.writeStartElement("VoxelIndicesIJK"); for (set::const_iterator iter = m_parcels[i].m_voxelIndices.begin(); iter != m_parcels[i].m_voxelIndices.end(); ++iter) { xml.writeCharacters(AString_number(iter->m_ijk[0]) + " " + AString_number(iter->m_ijk[1]) + " " + AString_number(iter->m_ijk[2]) + "\n"); } xml.writeEndElement(); } for (map >::const_iterator iter = m_parcels[i].m_surfaceNodes.begin(); iter != m_parcels[i].m_surfaceNodes.end(); ++iter) { if (iter->second.size() != 0)//prevent writing empty elements, regardless { xml.writeStartElement("Nodes"); xml.writeAttribute("BrainStructure", StructureEnum::toCiftiName(iter->first)); set::const_iterator iter2 = iter->second.begin();//which also allows us to write the first one outside the loop, to not add whitespace on the front or back xml.writeCharacters(AString_number(*iter2)); ++iter2; for (; iter2 != iter->second.end(); ++iter2) { xml.writeCharacters(" " + AString_number(*iter2)); } xml.writeEndElement(); } } xml.writeEndElement(); } } void CiftiParcelsMap::writeXML2(XmlWriter& xml) const { CiftiAssert(!m_ignoreVolSpace); xml.writeAttribute("IndicesMapToDataType", "CIFTI_INDEX_TYPE_PARCELS"); if (hasVolumeData())//could be m_haveVolumeSpace if we want to be able to write a volspace without having voxels, but that seems silly { m_volSpace.writeCiftiXML2(xml); } for (map::const_iterator iter = m_surfInfo.begin(); iter != m_surfInfo.end(); ++iter) { xml.writeStartElement("Surface"); xml.writeAttribute("BrainStructure", StructureEnum::toCiftiName(iter->first)); xml.writeAttribute("SurfaceNumberOfVertices", AString_number(iter->second.m_numNodes)); xml.writeEndElement(); } int64_t numParcels = m_parcels.size(); for (int64_t i = 0; i < numParcels; ++i) { xml.writeStartElement("Parcel"); xml.writeAttribute("Name", m_parcels[i].m_name); int64_t numVoxels = (int64_t)m_parcels[i].m_voxelIndices.size(); if (numVoxels != 0) { xml.writeStartElement("VoxelIndicesIJK"); for (set::const_iterator iter = m_parcels[i].m_voxelIndices.begin(); iter != m_parcels[i].m_voxelIndices.end(); ++iter) { xml.writeCharacters(AString_number(iter->m_ijk[0]) + " " + AString_number(iter->m_ijk[1]) + " " + AString_number(iter->m_ijk[2]) + "\n"); } xml.writeEndElement(); } for (map >::const_iterator iter = m_parcels[i].m_surfaceNodes.begin(); iter != m_parcels[i].m_surfaceNodes.end(); ++iter) { if (iter->second.size() != 0)//prevent writing empty elements, regardless { xml.writeStartElement("Vertices"); xml.writeAttribute("BrainStructure", StructureEnum::toCiftiName(iter->first)); set::const_iterator iter2 = iter->second.begin();//which also allows us to write the first one outside the loop, to not add whitespace on the front or back xml.writeCharacters(AString_number(*iter2)); ++iter2; for (; iter2 != iter->second.end(); ++iter2) { xml.writeCharacters(" " + AString_number(*iter2)); } xml.writeEndElement(); } } xml.writeEndElement(); } } CiftiLib-1.6.0/src/Cifti/CiftiParcelsMap.h000066400000000000000000000105151373715117300202210ustar00rootroot00000000000000#ifndef __CIFTI_PARCELS_MAP_H__ #define __CIFTI_PARCELS_MAP_H__ /*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CiftiMappingType.h" #include "Common/Compact3DLookup.h" #include "StructureEnum.h" #include "VolumeSpace.h" #include "Common/VoxelIJK.h" #include #include #include namespace cifti { class CiftiParcelsMap : public CiftiMappingType { public: struct Parcel { std::map > m_surfaceNodes; std::set m_voxelIndices; AString m_name; bool operator==(const Parcel& rhs) const; bool operator!=(const Parcel& rhs) const { return !((*this) == rhs); } bool approximateMatch(const Parcel& rhs, AString* explanation = NULL) const; }; bool hasVolumeData() const; bool hasSurface(const StructureEnum::Enum& structure) const;//only checks whether surface has been added/read bool hasSurfaceData(const StructureEnum::Enum& structure) const; const VolumeSpace& getVolumeSpace() const; int64_t getSurfaceNumberOfNodes(const StructureEnum::Enum& structure) const; int64_t getIndexForNode(const int64_t& node, const StructureEnum::Enum& structure) const; int64_t getIndexForVoxel(const int64_t* ijk) const; int64_t getIndexForVoxel(const int64_t& i, const int64_t& j, const int64_t& k) const; std::vector getParcelSurfaceStructures() const; const std::vector& getParcels() const { return m_parcels; } CiftiParcelsMap() { m_haveVolumeSpace = false; m_ignoreVolSpace = false; } void addSurface(const int64_t& numberOfNodes, const StructureEnum::Enum& structure); void setVolumeSpace(const VolumeSpace& space); void addParcel(const Parcel& parcel); void clear(); CiftiMappingType* clone() const { return new CiftiParcelsMap(*this); } MappingType getType() const { return PARCELS; } int64_t getLength() const { return m_parcels.size(); } bool operator==(const CiftiMappingType& rhs) const; bool approximateMatch(const CiftiMappingType& rhs, AString* explanation = NULL) const; void readXML1(XmlReader& xml); void readXML2(XmlReader& xml); void writeXML1(XmlWriter& xml) const; void writeXML2(XmlWriter& xml) const; private: std::vector m_parcels; VolumeSpace m_volSpace; bool m_haveVolumeSpace, m_ignoreVolSpace;//second is needed for parsing cifti-1; struct SurfaceInfo { int64_t m_numNodes; std::vector m_lookup; }; Compact3DLookup m_volLookup; std::map m_surfInfo; static Parcel readParcel1(XmlReader& xml); static Parcel readParcel2(XmlReader& xml); static std::vector readIndexArray(XmlReader& xml); }; } #endif //__CIFTI_PARCELS_MAP_H__ CiftiLib-1.6.0/src/Cifti/CiftiScalarsMap.cxx000066400000000000000000000324031373715117300205730ustar00rootroot00000000000000/*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CiftiScalarsMap.h" #include "Common/CiftiAssert.h" #include "Common/CiftiException.h" #include using namespace std; using namespace cifti; void CiftiScalarsMap::clear() { m_maps.clear(); } const MetaData& CiftiScalarsMap::getMapMetadata(const int64_t& index) const { CiftiAssertVectorIndex(m_maps, index); return m_maps[index].m_metaData; } const AString& CiftiScalarsMap::getMapName(const int64_t& index) const { CiftiAssertVectorIndex(m_maps, index); return m_maps[index].m_name; } void CiftiScalarsMap::setMapMetadata(const int64_t& index, const MetaData& mdIn) { CiftiAssertVectorIndex(m_maps, index); m_maps[index].m_metaData = mdIn; } void CiftiScalarsMap::setMapName(const int64_t& index, const AString& mapName) { CiftiAssertVectorIndex(m_maps, index); m_maps[index].m_name = mapName; } void CiftiScalarsMap::setLength(const int64_t& length) { CiftiAssert(length > 0); m_maps.resize(length); } bool CiftiScalarsMap::approximateMatch(const CiftiMappingType& rhs, AString* explanation) const { switch (rhs.getType()) { case SCALARS: case SERIES://maybe? case LABELS: if (getLength() != rhs.getLength()) { if (explanation != NULL) *explanation = "mappings have different length"; return false; } else return true; default: if (explanation != NULL) *explanation = CiftiMappingType::mappingTypeToName(rhs.getType()) + " mapping never matches " + CiftiMappingType::mappingTypeToName(getType()); return false; } } bool CiftiScalarsMap::operator==(const CiftiMappingType& rhs) const { if (rhs.getType() != getType()) return false; const CiftiScalarsMap& myrhs = dynamic_cast(rhs); return (m_maps == myrhs.m_maps); } bool CiftiScalarsMap::ScalarMap::operator==(const CiftiScalarsMap::ScalarMap& rhs) const { if (m_name != rhs.m_name) return false; return (m_metaData == rhs.m_metaData); } void CiftiScalarsMap::readXML1(XmlReader& xml) { cerr << "parsing nonstandard scalars mapping type in cifti-1" << endl; clear(); #ifdef CIFTILIB_USE_QT for (xml.readNext(); !xml.atEnd() && !xml.isEndElement(); xml.readNext()) { switch (xml.tokenType()) { case QXmlStreamReader::StartElement: { if (xml.name() != "NamedMap") { throw CiftiException("unexpected element in scalars map: " + xml.name().toString()); } m_maps.push_back(ScalarMap()); m_maps.back().readXML1(xml); if (xml.hasError()) return; break; } default: break; } } #else #ifdef CIFTILIB_USE_XMLPP bool done = xml.is_empty_element();//NOTE: a element does NOT give a separate end element state!!! while(!done && xml.read()) { switch (xml.get_node_type()) { case XmlReader::Element: { AString name = xml.get_local_name(); if (name == "NamedMap") { m_maps.push_back(ScalarMap()); m_maps.back().readXML1(xml); } else { throw CiftiException("unexpected element in scalars map: " + name); } break; } case XmlReader::EndElement: done = true; break; default: break; } } #else #error "not implemented" #endif #endif CiftiAssert(XmlReader_checkEndElement(xml, "MatrixIndicesMap")); } void CiftiScalarsMap::readXML2(XmlReader& xml) { clear(); #ifdef CIFTILIB_USE_QT for (xml.readNext(); !xml.atEnd() && !xml.isEndElement(); xml.readNext()) { switch (xml.tokenType()) { case QXmlStreamReader::StartElement: { if (xml.name() != "NamedMap") { throw CiftiException("unexpected element in scalars map: " + xml.name().toString()); } m_maps.push_back(ScalarMap()); m_maps.back().readXML2(xml); if (xml.hasError()) return; break; } default: break; } } #else #ifdef CIFTILIB_USE_XMLPP bool done = xml.is_empty_element();//NOTE: a element does NOT give a separate end element state!!! while(!done && xml.read()) { switch (xml.get_node_type()) { case XmlReader::Element: { AString name = xml.get_local_name(); if (name == "NamedMap") { m_maps.push_back(ScalarMap()); m_maps.back().readXML2(xml); } else { throw CiftiException("unexpected element in scalars map: " + name); } break; } case XmlReader::EndElement: done = true; break; default: break; } } #else #error "not implemented" #endif #endif CiftiAssert(XmlReader_checkEndElement(xml, "MatrixIndicesMap")); } void CiftiScalarsMap::ScalarMap::readXML1(XmlReader& xml) { bool haveName = false, haveMetaData = false; #ifdef CIFTILIB_USE_QT for (xml.readNext(); !xml.atEnd() && !xml.isEndElement(); xml.readNext()) { switch (xml.tokenType()) { case QXmlStreamReader::StartElement: { QStringRef name = xml.name(); if (name == "MetaData") { if (haveMetaData) { throw CiftiException("MetaData specified multiple times in one NamedMap"); } m_metaData.readCiftiXML1(xml); if (xml.hasError()) return; haveMetaData = true; } else if (name == "MapName") { if (haveName) { throw CiftiException("MapName specified multiple times in one NamedMap"); } m_name = xml.readElementText();//raises error if element encountered if (xml.hasError()) return; haveName = true; } else { throw CiftiException("unexpected element in NamedMap: " + name.toString()); } break; } default: break; } } #else #ifdef CIFTILIB_USE_XMLPP bool done = xml.is_empty_element();//NOTE: a element does NOT give a separate end element state!!! while(!done && xml.read()) { switch (xml.get_node_type()) { case XmlReader::Element: { AString name = xml.get_local_name(); if (name == "MetaData") { if (haveMetaData) { throw CiftiException("MetaData specified multiple times in one NamedMap"); } m_metaData.readCiftiXML1(xml); haveMetaData = true; } else if (name == "MapName") { if (haveName) { throw CiftiException("MapName specified multiple times in one NamedMap"); } m_name = XmlReader_readElementText(xml);//throws if element encountered haveName = true; } else { throw CiftiException("unexpected element in NamedMap: " + name); } break; } case XmlReader::EndElement: done = true; break; default: break; } } #else #error "not implemented" #endif #endif CiftiAssert(XmlReader_checkEndElement(xml, "NamedMap")); if (!haveName) { throw CiftiException("NamedMap missing required child element MapName"); } } void CiftiScalarsMap::ScalarMap::readXML2(XmlReader& xml) { bool haveName = false, haveMetaData = false; #ifdef CIFTILIB_USE_QT for (xml.readNext(); !xml.atEnd() && !xml.isEndElement(); xml.readNext()) { switch (xml.tokenType()) { case QXmlStreamReader::StartElement: { QStringRef name = xml.name(); if (name == "MetaData") { if (haveMetaData) { throw CiftiException("MetaData specified multiple times in one NamedMap"); } m_metaData.readCiftiXML2(xml); if (xml.hasError()) return; haveMetaData = true; } else if (name == "MapName") { if (haveName) { throw CiftiException("MapName specified multiple times in one NamedMap"); } m_name = xml.readElementText();//raises error if element encountered if (xml.hasError()) return; haveName = true; } else { throw CiftiException("unexpected element in NamedMap: " + name.toString()); } break; } default: break; } } #else #ifdef CIFTILIB_USE_XMLPP bool done = xml.is_empty_element();//NOTE: a element does NOT give a separate end element state!!! while(!done && xml.read()) { switch (xml.get_node_type()) { case XmlReader::Element: { AString name = xml.get_local_name(); if (name == "MetaData") { if (haveMetaData) { throw CiftiException("MetaData specified multiple times in one NamedMap"); } m_metaData.readCiftiXML2(xml); haveMetaData = true; } else if (name == "MapName") { if (haveName) { throw CiftiException("MapName specified multiple times in one NamedMap"); } m_name = XmlReader_readElementText(xml);//throws if element encountered haveName = true; } else { throw CiftiException("unexpected element in NamedMap: " + name); } break; } case XmlReader::EndElement: done = true; break; default: break; } } #else #error "not implemented" #endif #endif CiftiAssert(XmlReader_checkEndElement(xml, "NamedMap")); if (!haveName) { throw CiftiException("NamedMap missing required child element MapName"); } } void CiftiScalarsMap::writeXML1(XmlWriter& xml) const { cerr << "writing nonstandard scalars mapping type in cifti-1" << endl; xml.writeAttribute("IndicesMapToDataType", "CIFTI_INDEX_TYPE_SCALARS"); int64_t numMaps = (int64_t)m_maps.size(); for (int64_t i = 0; i < numMaps; ++i) { xml.writeStartElement("NamedMap"); xml.writeTextElement("MapName", m_maps[i].m_name); m_maps[i].m_metaData.writeCiftiXML1(xml); xml.writeEndElement(); } } void CiftiScalarsMap::writeXML2(XmlWriter& xml) const { int64_t numMaps = (int64_t)m_maps.size(); xml.writeAttribute("IndicesMapToDataType", "CIFTI_INDEX_TYPE_SCALARS"); for (int64_t i = 0; i < numMaps; ++i) { xml.writeStartElement("NamedMap"); xml.writeTextElement("MapName", m_maps[i].m_name); m_maps[i].m_metaData.writeCiftiXML1(xml); xml.writeEndElement(); } } CiftiLib-1.6.0/src/Cifti/CiftiScalarsMap.h000066400000000000000000000061731373715117300202250ustar00rootroot00000000000000#ifndef __CIFTI_SCALARS_MAP_H__ #define __CIFTI_SCALARS_MAP_H__ /*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CiftiMappingType.h" #include "MetaData.h" #include #include namespace cifti { class CiftiScalarsMap : public CiftiMappingType { public: CiftiScalarsMap() { } CiftiScalarsMap(const CiftiScalarsMap& rhs) { m_maps = rhs.m_maps; } CiftiScalarsMap& operator=(const CiftiScalarsMap& rhs) { m_maps = rhs.m_maps; return *this; } explicit CiftiScalarsMap(const int64_t& length) { setLength(length); } const MetaData& getMapMetadata(const int64_t& index) const; const AString& getMapName(const int64_t& index) const; void setMapMetadata(const int64_t& index, const MetaData& mdIn); void setMapName(const int64_t& index, const AString& mapName); void setLength(const int64_t& length); void clear(); CiftiMappingType* clone() const { return new CiftiScalarsMap(*this); } MappingType getType() const { return SCALARS; } int64_t getLength() const { return m_maps.size(); } bool operator==(const CiftiMappingType& rhs) const; bool approximateMatch(const CiftiMappingType& rhs, AString* explanation = NULL) const; void readXML1(XmlReader& xml); void readXML2(XmlReader& xml); void writeXML1(XmlWriter& xml) const; void writeXML2(XmlWriter& xml) const; private: struct ScalarMap { AString m_name; MetaData m_metaData; bool operator==(const ScalarMap& rhs) const; void readXML1(XmlReader& xml); void readXML2(XmlReader& xml); }; std::vector m_maps; }; } #endif //__CIFTI_SCALARS_MAP_H__ CiftiLib-1.6.0/src/Cifti/CiftiSeriesMap.cxx000066400000000000000000000231531373715117300204370ustar00rootroot00000000000000/*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CiftiSeriesMap.h" #include "Common/CiftiAssert.h" #include "Common/CiftiException.h" #include #include using namespace cifti; using namespace std; void CiftiSeriesMap::setLength(const int64_t& length) { CiftiAssert(length > 0); m_length = length; } CiftiSeriesMap::Unit CiftiSeriesMap::stringToUnit(const AString& string, bool& ok) { ok = true; if (string == "SECOND") { return SECOND; } else if (string == "HERTZ") { return HERTZ; } else if (string == "METER") { return METER; } else if (string == "RADIAN") { return RADIAN; } ok = false; return SECOND; } AString CiftiSeriesMap::unitToString(const CiftiSeriesMap::Unit& theUnit) { switch (theUnit) { case SECOND: return "SECOND"; case HERTZ: return "HERTZ"; case METER: return "METER"; case RADIAN: return "RADIAN"; } CiftiAssert(false); return "UNKNOWN"; } vector CiftiSeriesMap::getAllUnits() { vector ret; ret.push_back(SECOND); ret.push_back(HERTZ); ret.push_back(METER); ret.push_back(RADIAN); return ret; } void CiftiSeriesMap::readXML1(XmlReader& xml) { vector mandAttrs(2), optAttrs(1, "TimeStart"); mandAttrs[0] = "TimeStep"; mandAttrs[1] = "TimeStepUnits"; XmlAttributesResult myAttrs = XmlReader_parseAttributes(xml, mandAttrs, optAttrs); float newStart = 0.0f, newStep = -1.0f, mult = 0.0f; bool ok = false; if (myAttrs.mandatoryVals[1] == "NIFTI_UNITS_SEC") { mult = 1.0f; } else if (myAttrs.mandatoryVals[1] == "NIFTI_UNITS_MSEC") { mult = 0.001f; } else if (myAttrs.mandatoryVals[1] == "NIFTI_UNITS_USEC") { mult = 0.000001f; } else { throw CiftiException("unrecognized value for TimeStepUnits: " + myAttrs.mandatoryVals[1]); } if (myAttrs.optionalVals[0].present)//optional and nonstandard { newStart = mult * AString_toFloat(myAttrs.optionalVals[0].value, ok); if (!ok) { throw CiftiException("unrecognized value for TimeStart: " + myAttrs.optionalVals[0].value); } } newStep = mult * AString_toFloat(myAttrs.mandatoryVals[0], ok); if (!ok) { throw CiftiException("unrecognized value for TimeStep: " + myAttrs.mandatoryVals[0]); } #ifdef CIFTILIB_USE_QT if (xml.readNextStartElement()) { throw CiftiException("unexpected element in timepoints map: " + xml.name().toString()); } #else #ifdef CIFTILIB_USE_XMLPP bool done = xml.is_empty_element();//NOTE: a element does NOT give a separate end element state!!! while(!done && xml.read()) { switch (xml.get_node_type()) { case XmlReader::Element: { AString name = xml.get_local_name(); throw CiftiException("unexpected element in timepoints map: " + name); break; } case XmlReader::EndElement: done = true; break; default: break; } } #else #error "not implemented" #endif #endif CiftiAssert(XmlReader_checkEndElement(xml, "MatrixIndicesMap")); m_length = -1;//cifti-1 doesn't know length in xml, must be set by checking the matrix m_start = newStart; m_step = newStep; m_unit = SECOND; } void CiftiSeriesMap::readXML2(XmlReader& xml) { vector mandAttrs(5); mandAttrs[0] = "SeriesStep"; mandAttrs[1] = "SeriesUnit"; mandAttrs[2] = "SeriesExponent"; mandAttrs[3] = "SeriesStart"; mandAttrs[4] = "NumberOfSeriesPoints"; XmlAttributesResult myAttrs = XmlReader_parseAttributes(xml, mandAttrs); float newStart = 0.0f, newStep = -1.0f, mult = 0.0f; int64_t newLength = -1; Unit newUnit; bool ok = false; if (myAttrs.mandatoryVals[1] == "HERTZ") { newUnit = HERTZ; } else if (myAttrs.mandatoryVals[1] == "METER") { newUnit = METER; } else if (myAttrs.mandatoryVals[1] == "RADIAN") { newUnit = RADIAN; } else if (myAttrs.mandatoryVals[1] == "SECOND") { newUnit = SECOND; } else { throw CiftiException("unrecognized value for SeriesUnit: " + myAttrs.mandatoryVals[1]); } int exponent = AString_toInt(myAttrs.mandatoryVals[2], ok); if (!ok) { throw CiftiException("unrecognized value for SeriesExponent: " + myAttrs.mandatoryVals[2]); } mult = pow(10.0f, exponent); newStart = mult * AString_toFloat(myAttrs.mandatoryVals[3], ok); if (!ok) { throw CiftiException("unrecognized value for SeriesStart: " + myAttrs.mandatoryVals[3]); } newStep = mult * AString_toFloat(myAttrs.mandatoryVals[0], ok); if (!ok) { throw CiftiException("unrecognized value for SeriesStep: " + myAttrs.mandatoryVals[0]); } newLength = AString_toInt(myAttrs.mandatoryVals[4], ok); if (!ok) { throw CiftiException("unrecognized value for NumberOfSeriesPoints: " + myAttrs.mandatoryVals[4]); } if (newLength < 1) { throw CiftiException("NumberOfSeriesPoints must be positive"); } #ifdef CIFTILIB_USE_QT if (xml.readNextStartElement()) { throw CiftiException("unexpected element in series map: " + xml.name().toString()); } #else #ifdef CIFTILIB_USE_XMLPP bool done = xml.is_empty_element();//NOTE: a element does NOT give a separate end element state!!! while(!done && xml.read()) { switch (xml.get_node_type()) { case XmlReader::Element: { AString name = xml.get_local_name(); throw CiftiException("unexpected element in series map: " + name); break; } case XmlReader::EndElement: done = true; break; default: break; } } #else #error "not implemented" #endif #endif CiftiAssert(XmlReader_checkEndElement(xml, "MatrixIndicesMap")); m_length = newLength; m_start = newStart; m_step = newStep; m_unit = newUnit; } void CiftiSeriesMap::writeXML1(XmlWriter& xml) const { CiftiAssert(m_length != -1); if (m_unit != SECOND) { cerr << "WARNING: changing series units to seconds for CIFTI-1 XML" << endl; } xml.writeAttribute("IndicesMapToDataType", "CIFTI_INDEX_TYPE_TIME_POINTS"); float mult = 1.0f; AString unitString = "NIFTI_UNITS_SEC"; float test = m_step; if (test == 0.0f) test = m_start; if (test != 0.0f) { if (abs(test) < 0.00005f) { mult = 1000000.0f; unitString = "NIFTI_UNITS_USEC"; } else if (abs(test) < 0.05f) { mult = 1000.0f; unitString = "NIFTI_UNITS_MSEC"; } } xml.writeAttribute("TimeStepUnits", unitString); xml.writeAttribute("TimeStart", AString_number_fixed(mult * m_start, 7));//even though it is nonstandard, write it, always xml.writeAttribute("TimeStep", AString_number_fixed(mult * m_step, 7)); } void CiftiSeriesMap::writeXML2(XmlWriter& xml) const { CiftiAssert(m_length != -1); xml.writeAttribute("IndicesMapToDataType", "CIFTI_INDEX_TYPE_SERIES"); int exponent = 0; float test = m_step; if (test == 0.0f) test = m_start; if (test != 0.0f) { exponent = 3 * (int)floor((log10(test) - log10(0.05f)) / 3.0f);//some magic to get the exponent that is a multiple of 3 that puts the test value in [0.05, 50] } float mult = pow(10.0f, -exponent); AString unitString; switch (m_unit) { case HERTZ: unitString = "HERTZ"; break; case METER: unitString = "METER"; break; case RADIAN: unitString = "RADIAN"; break; case SECOND: unitString = "SECOND"; break; } xml.writeAttribute("NumberOfSeriesPoints", AString_number(m_length)); xml.writeAttribute("SeriesExponent", AString_number(exponent)); xml.writeAttribute("SeriesStart", AString_number_fixed(mult * m_start, 7)); xml.writeAttribute("SeriesStep", AString_number_fixed(mult * m_step, 7)); xml.writeAttribute("SeriesUnit", unitString); } CiftiLib-1.6.0/src/Cifti/CiftiSeriesMap.h000066400000000000000000000111201373715117300200530ustar00rootroot00000000000000#ifndef __CIFTI_SERIES_MAP_H__ #define __CIFTI_SERIES_MAP_H__ /*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CiftiMappingType.h" namespace cifti { class CiftiSeriesMap : public CiftiMappingType { public: enum Unit { HERTZ, METER, RADIAN, SECOND };//should this go somewhere else? float getStart() const { return m_start; }//using getter/setter as style choice to match other mapping types float getStep() const { return m_step; }//getter for number of series points is getLength(), specified by CiftiIndexMap Unit getUnit() const { return m_unit; } CiftiSeriesMap() { m_start = 0.0f; m_step = 1.0f; m_unit = SECOND; m_length = -1;//to make it clear an improperly initialized series map object was used } CiftiSeriesMap(const int64_t& length, const float& start = 0.0f, const float& step = 1.0f, const Unit& unit = SECOND) { m_start = start; m_step = step; m_unit = unit; m_length = length; } void setStart(const float& start) { m_start = start; } void setStep(const float& step) { m_step = step; } void setUnit(const Unit& unit) { m_unit = unit; } void setLength(const int64_t& length); static Unit stringToUnit(const AString& string, bool& ok); static AString unitToString(const Unit& theUnit); static std::vector getAllUnits(); CiftiMappingType* clone() const { return new CiftiSeriesMap(*this); } MappingType getType() const { return SERIES; } int64_t getLength() const { return m_length; } bool operator==(const CiftiMappingType& rhs) const { if (rhs.getType() != getType()) return false; const CiftiSeriesMap& temp = dynamic_cast(rhs); return (temp.m_length == m_length && temp.m_unit == m_unit && temp.m_start == m_start && temp.m_step == m_step); } bool approximateMatch(const CiftiMappingType& rhs, AString* explanation = NULL) const { switch (rhs.getType()) { case SCALARS://maybe? case SERIES: case LABELS://maybe? if (getLength() != rhs.getLength()) { if (explanation != NULL) *explanation = "mappings have different length"; return false; } else return true; default: if (explanation != NULL) *explanation = CiftiMappingType::mappingTypeToName(rhs.getType()) + " mapping never matches " + CiftiMappingType::mappingTypeToName(getType()); return false; } } void readXML1(XmlReader& xml); void readXML2(XmlReader& xml); void writeXML1(XmlWriter& xml) const; void writeXML2(XmlWriter& xml) const; private: int64_t m_length; float m_start, m_step;//exponent gets applied to these on reading Unit m_unit; }; } #endif //__CIFTI_SERIES_MAP_H__ CiftiLib-1.6.0/src/Cifti/CiftiVersion.cxx000066400000000000000000000111421373715117300201670ustar00rootroot00000000000000/*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CiftiVersion.h" #include "Common/CiftiException.h" using namespace std; using namespace cifti; CiftiVersion::CiftiVersion() { m_major = 2; m_minor = 0; } CiftiVersion::CiftiVersion(const int16_t& major, const int16_t& minor) { m_major = major; m_minor = minor; } CiftiVersion::CiftiVersion(const AString& versionString) { bool ok = false; #ifdef CIFTILIB_USE_QT int result = versionString.indexOf('.'); if (result < 0) { m_minor = 0; m_major = versionString.toShort(&ok); if (!ok) throw CiftiException("improperly formatted CIFTI version string: '" + versionString + "'"); } else { if (result == 0) throw CiftiException("improperly formatted CIFTI version string: '" + versionString + "'"); m_major = versionString.mid(0, result).toShort(&ok); if (!ok) throw CiftiException("improperly formatted CIFTI version string: '" + versionString + "'"); m_minor = versionString.mid(result + 1).toShort(&ok); if (!ok) throw CiftiException("improperly formatted CIFTI version string: '" + versionString + "'"); } #else #ifdef CIFTILIB_USE_XMLPP size_t result = versionString.find('.'); if (result == AString::npos) { m_minor = 0; m_major = (int16_t)AString_toInt(versionString, ok); if (!ok) throw CiftiException("improperly formatted version string: " + versionString); } else { if (result == 0) throw CiftiException("improperly formatted version string: " + versionString); m_major = (int16_t)AString_toInt(versionString.substr(0, result), ok); if (!ok) throw CiftiException("improperly formatted version string: " + versionString); m_minor = (int16_t)AString_toInt(versionString.substr(result + 1), ok); if (!ok) throw CiftiException("improperly formatted version string: " + versionString); } #else #error "not implemented" #endif #endif } bool CiftiVersion::hasReversedFirstDims() const { if (m_major == 1 && m_minor == 0) return true; return false; } bool CiftiVersion::operator<(const CiftiVersion& rhs) const { if (m_major < rhs.m_major) return true; if (m_major == rhs.m_major && m_minor < rhs.m_minor) return true; return false; } bool CiftiVersion::operator<=(const CiftiVersion& rhs) const { if (m_major < rhs.m_major) return true; if (m_major == rhs.m_major && m_minor <= rhs.m_minor) return true; return false; } bool CiftiVersion::operator==(const CiftiVersion& rhs) const { if (m_major == rhs.m_major && m_minor == rhs.m_minor) return true; return false; } bool CiftiVersion::operator!=(const CiftiVersion& rhs) const { return !(*this == rhs); } bool CiftiVersion::operator>(const cifti::CiftiVersion& rhs) const { if (m_major > rhs.m_major) return true; if (m_major == rhs.m_major && m_minor > rhs.m_minor) return true; return false; } bool CiftiVersion::operator>=(const cifti::CiftiVersion& rhs) const { if (m_major > rhs.m_major) return true; if (m_major == rhs.m_major && m_minor >= rhs.m_minor) return true; return false; } AString CiftiVersion::toString() const { AString ret = AString_number(m_major); if (m_minor != 0) ret += "." + AString_number(m_minor); return ret; } CiftiLib-1.6.0/src/Cifti/CiftiVersion.h000066400000000000000000000044701373715117300176220ustar00rootroot00000000000000#ifndef __CIFTI_VERSION_H__ #define __CIFTI_VERSION_H__ /*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "Common/AString.h" #include "stdint.h" namespace cifti { class CiftiVersion { int16_t m_major, m_minor; public: int16_t getMajor() const { return m_major; } int16_t getMinor() const { return m_minor; } CiftiVersion(); CiftiVersion(const int16_t& major, const int16_t& minor); CiftiVersion(const AString& versionString); AString toString() const; bool operator<(const CiftiVersion& rhs) const; bool operator>(const CiftiVersion& rhs) const; bool operator==(const CiftiVersion& rhs) const; bool operator!=(const CiftiVersion& rhs) const; bool operator<=(const CiftiVersion& rhs) const; bool operator>=(const CiftiVersion& rhs) const; ///quirk tests bool hasReversedFirstDims() const; }; } #endif //__CIFTI_VERSION_H__ CiftiLib-1.6.0/src/Cifti/CiftiXML.cxx000066400000000000000000001162551373715117300172150ustar00rootroot00000000000000/*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CiftiXML.h" #include "Common/CiftiException.h" #include "Common/XmlAdapter.h" #include #include #include using namespace std; using namespace boost; using namespace cifti; CiftiXML::CiftiXML(const CiftiXML& rhs) { copyHelper(rhs); } CiftiXML& CiftiXML::operator=(const CiftiXML& rhs) { if (this != &rhs) copyHelper(rhs); return *this; } void CiftiXML::copyHelper(const CiftiXML& rhs) { int numDims = (int)rhs.m_indexMaps.size(); m_indexMaps.resize(numDims); for (int i = 0; i < numDims; ++i) { m_indexMaps[i] = boost::shared_ptr(rhs.m_indexMaps[i]->clone()); } m_parsedVersion = rhs.m_parsedVersion; m_fileMetaData = rhs.m_fileMetaData; } bool CiftiXML::operator==(const CiftiXML& rhs) const { int numDims = getNumberOfDimensions(); if (rhs.getNumberOfDimensions() != numDims) return false; if (m_fileMetaData != rhs.m_fileMetaData) return false; for (int i = 0; i < numDims; ++i) { const CiftiMappingType* left = getMap(i), *right = rhs.getMap(i); if (left == NULL && right == NULL) continue; if (left == NULL || right == NULL) return false;//only one NULL, due to above test if ((*left) != (*right)) return false;//finally can dereference them } return true; } bool CiftiXML::approximateMatch(const CiftiXML& rhs) const { int numDims = getNumberOfDimensions(); if (rhs.getNumberOfDimensions() != numDims) return false; for (int i = 0; i < numDims; ++i) { const CiftiMappingType* left = getMap(i), *right = rhs.getMap(i); if (left == NULL && right == NULL) continue; if (left == NULL || right == NULL) return false;//only one NULL, due to above test if (!left->approximateMatch(*right)) return false;//finally can dereference them } return true; } const CiftiMappingType* CiftiXML::getMap(const int& direction) const { CiftiAssertVectorIndex(m_indexMaps, direction); return m_indexMaps[direction].get(); } CiftiMappingType* CiftiXML::getMap(const int& direction) { CiftiAssertVectorIndex(m_indexMaps, direction); return m_indexMaps[direction].get(); } const MetaData& CiftiXML::getFileMetaData() const { return m_fileMetaData; } const CiftiBrainModelsMap& CiftiXML::getBrainModelsMap(const int& direction) const { CiftiAssertVectorIndex(m_indexMaps, direction); CiftiAssert(getMappingType(direction) == CiftiMappingType::BRAIN_MODELS);//assert so we catch it in debug return dynamic_cast(*getMap(direction));//let release throw bad_cast or segfault } CiftiBrainModelsMap& CiftiXML::getBrainModelsMap(const int& direction) { CiftiAssertVectorIndex(m_indexMaps, direction); CiftiAssert(getMappingType(direction) == CiftiMappingType::BRAIN_MODELS);//assert so we catch it in debug return dynamic_cast(*getMap(direction));//let release throw bad_cast or segfault } const CiftiLabelsMap& CiftiXML::getLabelsMap(const int& direction) const { CiftiAssertVectorIndex(m_indexMaps, direction); CiftiAssert(getMappingType(direction) == CiftiMappingType::LABELS);//assert so we catch it in debug return dynamic_cast(*getMap(direction));//let release throw bad_cast or segfault } CiftiLabelsMap& CiftiXML::getLabelsMap(const int& direction) { CiftiAssertVectorIndex(m_indexMaps, direction); CiftiAssert(getMappingType(direction) == CiftiMappingType::LABELS);//assert so we catch it in debug return dynamic_cast(*getMap(direction));//let release throw bad_cast or segfault } const CiftiParcelsMap& CiftiXML::getParcelsMap(const int& direction) const { CiftiAssertVectorIndex(m_indexMaps, direction); CiftiAssert(getMappingType(direction) == CiftiMappingType::PARCELS);//assert so we catch it in debug return dynamic_cast(*getMap(direction));//let release throw bad_cast or segfault } CiftiParcelsMap& CiftiXML::getParcelsMap(const int& direction) { CiftiAssertVectorIndex(m_indexMaps, direction); CiftiAssert(getMappingType(direction) == CiftiMappingType::PARCELS);//assert so we catch it in debug return dynamic_cast(*getMap(direction));//let release throw bad_cast or segfault } const CiftiScalarsMap& CiftiXML::getScalarsMap(const int& direction) const { CiftiAssertVectorIndex(m_indexMaps, direction); CiftiAssert(getMappingType(direction) == CiftiMappingType::SCALARS);//assert so we catch it in debug return dynamic_cast(*getMap(direction));//let release throw bad_cast or segfault } CiftiScalarsMap& CiftiXML::getScalarsMap(const int& direction) { CiftiAssertVectorIndex(m_indexMaps, direction); CiftiAssert(getMappingType(direction) == CiftiMappingType::SCALARS);//assert so we catch it in debug return dynamic_cast(*getMap(direction));//let release throw bad_cast or segfault } const CiftiSeriesMap& CiftiXML::getSeriesMap(const int& direction) const { CiftiAssertVectorIndex(m_indexMaps, direction); CiftiAssert(getMappingType(direction) == CiftiMappingType::SERIES);//assert so we catch it in debug return dynamic_cast(*getMap(direction));//let release throw bad_cast or segfault } CiftiSeriesMap& CiftiXML::getSeriesMap(const int& direction) { CiftiAssertVectorIndex(m_indexMaps, direction); CiftiAssert(getMappingType(direction) == CiftiMappingType::SERIES);//assert so we catch it in debug return dynamic_cast(*getMap(direction));//let release throw bad_cast or segfault } int64_t CiftiXML::getDimensionLength(const int& direction) const { const CiftiMappingType* tempMap = getMap(direction); CiftiAssert(tempMap != NULL); return tempMap->getLength(); } vector CiftiXML::getDimensions() const { vector ret(getNumberOfDimensions()); for (int i = 0; i < (int)ret.size(); ++i) { ret[i] = getDimensionLength(i); } return ret; } CiftiMappingType::MappingType CiftiXML::getMappingType(const int& direction) const { CiftiAssertVectorIndex(m_indexMaps, direction); CiftiAssert(m_indexMaps[direction] != NULL); return m_indexMaps[direction]->getType(); } void CiftiXML::setMap(const int& direction, const CiftiMappingType& mapIn) { CiftiAssertVectorIndex(m_indexMaps, direction); if (mapIn.getType() == CiftiMappingType::LABELS) { for (int i = 0; i < getNumberOfDimensions(); ++i) { if (i != direction && m_indexMaps[i] != NULL && m_indexMaps[i]->getType() == CiftiMappingType::LABELS) { throw CiftiException("Cifti XML cannot contain more than one label mapping"); } } } m_indexMaps[direction] = boost::shared_ptr(mapIn.clone()); } void CiftiXML::setNumberOfDimensions(const int& num) { m_indexMaps.resize(num); } void CiftiXML::clear() { setNumberOfDimensions(0); m_fileMetaData.clear(); m_parsedVersion = CiftiVersion(); } void CiftiXML::readXML(const vector& text) { #ifdef CIFTILIB_USE_QT vector text2 = text; text2.push_back('\0');//make sure it has a null terminator XmlReader xml(text2.data());//so it works as a C string #else #ifdef CIFTILIB_USE_XMLPP vector::const_iterator end = find(text.begin(), text.end(), '\0');//find the null terminator, if it exists, to prevent "extra content at end of document" errors XmlReader xml((unsigned char*)text.data(), end - text.begin());//get the number of bytes #else #error "not implemented" #endif #endif readXML(xml); } int32_t CiftiXML::getIntentInfo(const CiftiVersion& writingVersion, char intentNameOut[16]) const { int32_t ret; const char* name = NULL; if (writingVersion == CiftiVersion(1, 0))//cifti-1: unknown didn't exist, and "ConnDense" was default in workbench { ret = 3001;//default name = "ConnDense"; if (getNumberOfDimensions() > 0 && getMappingType(0) == CiftiMappingType::SERIES) { ret = 3002; name = "ConnDenseTime"; }//same logic as was used in workbench if (getNumberOfDimensions() > 1 && getMappingType(1) == CiftiMappingType::SERIES) { ret = 3002; name = "ConnDenseTime"; }//NOTE: name for this code is different than cifti-2 } else if (writingVersion == CiftiVersion(1, 1) || writingVersion == CiftiVersion(2, 0)) {//cifti-2 ret = 3000;//default name = "ConnUnknown"; switch (getNumberOfDimensions()) { case 2: { CiftiMappingType::MappingType first = getMappingType(0), second = getMappingType(1); if (first == CiftiMappingType::BRAIN_MODELS && second == CiftiMappingType::BRAIN_MODELS) { ret = 3001; name = "ConnDense"; } if (first == CiftiMappingType::SERIES && second == CiftiMappingType::BRAIN_MODELS) { ret = 3002; name = "ConnDenseSeries"; } if (first == CiftiMappingType::PARCELS && second == CiftiMappingType::PARCELS) { ret = 3003; name = "ConnParcels"; } if (first == CiftiMappingType::SERIES && second == CiftiMappingType::PARCELS) { ret = 3004; name = "ConnParcelSries"; }//NOTE: 3005 is reserved but not used if (first == CiftiMappingType::SCALARS && second == CiftiMappingType::BRAIN_MODELS) { ret = 3006; name = "ConnDenseScalar"; } if (first == CiftiMappingType::LABELS && second == CiftiMappingType::BRAIN_MODELS) { ret = 3007; name = "ConnDenseLabel"; } if (first == CiftiMappingType::SCALARS && second == CiftiMappingType::PARCELS) { ret = 3008; name = "ConnParcelScalr"; } if (first == CiftiMappingType::BRAIN_MODELS && second == CiftiMappingType::PARCELS) { ret = 3009; name = "ConnParcelDense"; } if (first == CiftiMappingType::PARCELS && second == CiftiMappingType::BRAIN_MODELS) { ret = 3010; name = "ConnDenseParcel"; } break; } case 3: { CiftiMappingType::MappingType first = getMappingType(0), second = getMappingType(1), third = getMappingType(2); if (first == CiftiMappingType::PARCELS && second == CiftiMappingType::PARCELS && third == CiftiMappingType::SERIES) { ret = 3011; name = "ConnPPSr"; } if (first == CiftiMappingType::PARCELS && second == CiftiMappingType::PARCELS && third == CiftiMappingType::SCALARS) { ret = 3012; name = "ConnPPSc"; } break; } default: break; } } else { throw CiftiException("unknown cifti version: " + writingVersion.toString()); } int i; for (i = 0; i < 16 && name[i] != '\0'; ++i) intentNameOut[i] = name[i]; for (; i < 16; ++i) intentNameOut[i] = '\0'; return ret; } void CiftiXML::readXML(XmlReader& xml) { clear(); bool haveCifti = false; try { #ifdef CIFTILIB_USE_QT for (; !xml.atEnd(); xml.readNext()) { if (xml.isStartElement()) { QStringRef name = xml.name(); if (name == "CIFTI") { if (haveCifti) { throw CiftiException("CIFTI element may only be specified once"); } QXmlStreamAttributes attributes = xml.attributes(); if(attributes.hasAttribute("Version")) { m_parsedVersion = CiftiVersion(attributes.value("Version").toString()); } else { throw CiftiException("Cifti XML missing Version attribute."); } if (m_parsedVersion == CiftiVersion(1, 0))//switch/case on major/minor would be much harder to read { parseCIFTI1(xml); if (xml.hasError()) break; } else if (m_parsedVersion == CiftiVersion(2, 0)) { parseCIFTI2(xml); if (xml.hasError()) break; } else { throw CiftiException("unknown Cifti Version: '" + m_parsedVersion.toString()); } haveCifti = true; } else { throw CiftiException("unexpected root element in Cifti XML: " + name.toString()); } } } if (!xml.hasError() && !haveCifti) { throw CiftiException("CIFTI element not found"); } #else #ifdef CIFTILIB_USE_XMLPP while (true)//don't want to skip the first element, but there is no obvious function for "at end" { switch (xml.get_node_type()) { case XmlReader::Element: { AString name = xml.get_local_name(); if (name == "CIFTI") { if (haveCifti) { throw CiftiException("CIFTI element may only be specified once"); } vector mandAttrs(1, "Version"); XmlAttributesResult attrVals = XmlReader_parseAttributes(xml, mandAttrs); m_parsedVersion = CiftiVersion(attrVals.mandatoryVals[0]); if (m_parsedVersion == CiftiVersion(1, 0))//switch/case on major/minor would be much harder to read { parseCIFTI1(xml); } else if (m_parsedVersion == CiftiVersion(2, 0)) { parseCIFTI2(xml); } else { throw CiftiException("unknown Cifti Version: '" + m_parsedVersion.toString()); } haveCifti = true; } else { throw CiftiException("unexpected root element in Cifti XML: " + name); } } default: break; } if (!xml.read()) break; } #else #error "not implemented" #endif #endif } catch (CiftiException& e) { throw CiftiException("Cifti XML error: " + e.whatString());//so we can throw on error instead of doing a bunch of dancing with xml.raiseError and xml.hasError } catch (std::exception& e) {//libxml++ throws things that inherit from std::exception, catch them too throw CiftiException("Cifti XML error: " + AString(e.what())); } #ifdef CIFTILIB_USE_QT if(xml.hasError()) { throw CiftiException("Cifti XML error: " + xml.errorString()); } #endif } void CiftiXML::parseCIFTI1(XmlReader& xml) { bool haveMatrix = false; #ifdef CIFTILIB_USE_QT QXmlStreamAttributes attributes = xml.attributes(); if (attributes.hasAttribute("NumberOfMatrices")) { if (attributes.value("NumberOfMatrices") != "1") { throw CiftiException("attribute NumberOfMatrices in CIFTI is required to be 1 for CIFTI-1"); } } else { throw CiftiException("missing attribute NumberOfMatrices in CIFTI"); } while (!xml.atEnd()) { xml.readNext(); if (xml.isStartElement()) { QStringRef name = xml.name(); if (name == "Matrix") { if (haveMatrix) { throw CiftiException("Matrix element may only be specified once"); } parseMatrix1(xml); if (xml.hasError()) return; haveMatrix = true; } else { throw CiftiException("unexpected element in CIFTI: " + name.toString()); } } else if (xml.isEndElement()) { break; } } if (xml.hasError()) return; #else #ifdef CIFTILIB_USE_XMLPP vector mandAttrs(1, "NumberOfMatrices"); XmlAttributesResult attrVals = XmlReader_parseAttributes(xml, mandAttrs); if (attrVals.mandatoryVals[0] != "1") { throw CiftiException("attribute NumberOfMatrices in CIFTI is required to be 1 for CIFTI-1"); } bool done = xml.is_empty_element();//NOTE: a element does NOT give a separate end element state!!! while(!done && xml.read()) { switch (xml.get_node_type()) { case XmlReader::Element: { AString name = xml.get_local_name(); if (name == "Matrix") { if (haveMatrix) { throw CiftiException("Matrix element may only be specified once"); } parseMatrix1(xml); haveMatrix = true; } else { throw CiftiException("unexpected element in CIFTI: " + name); } break; } case XmlReader::EndElement: done = true; break; default: break; } } #else #error "not implemented" #endif #endif CiftiAssert(XmlReader_checkEndElement(xml, "CIFTI")); if (!haveMatrix) { throw CiftiException("Matrix element not found in CIFTI"); } } void CiftiXML::parseCIFTI2(XmlReader& xml)//yes, these will often have largely similar code, but it seems cleaner than having only some functions split, or constantly rechecking the version {//also, helps keep changes to cifti-2 away from code that parses cifti-1 bool haveMatrix = false; #ifdef CIFTILIB_USE_QT while (!xml.atEnd()) { xml.readNext(); if (xml.hasError()) return; if (xml.isStartElement()) { QStringRef name = xml.name(); if (name == "Matrix") { if (haveMatrix) { throw CiftiException("Matrix element may only be specified once"); } parseMatrix2(xml); if (xml.hasError()) return; haveMatrix = true; } else { throw CiftiException("unexpected element in CIFTI: " + name.toString()); } } else if (xml.isEndElement()) { break; } } #else #ifdef CIFTILIB_USE_XMLPP bool done = xml.is_empty_element();//NOTE: a element does NOT give a separate end element state!!! while(!done && xml.read()) { switch (xml.get_node_type()) { case XmlReader::Element: { AString name = xml.get_local_name(); if (name == "Matrix") { if (haveMatrix) { throw CiftiException("Matrix element may only be specified once"); } parseMatrix2(xml); haveMatrix = true; } else { throw CiftiException("unexpected element in CIFTI: " + name); } break; } case XmlReader::EndElement: done = true; break; default: break; } } #else #error "not implemented" #endif #endif CiftiAssert(XmlReader_checkEndElement(xml, "CIFTI")); if (!haveMatrix) { throw CiftiException("Matrix element not found in CIFTI"); } } void CiftiXML::parseMatrix1(XmlReader& xml) { VolumeSpace fileVolSpace; bool haveVolSpace = false, haveMetadata = false; #ifdef CIFTILIB_USE_QT while (!xml.atEnd()) { xml.readNext(); if (xml.hasError()) return; if (xml.isStartElement()) { QStringRef name = xml.name(); if (name == "MetaData") { if (haveMetadata) { throw CiftiException("MetaData may only be specified once in Matrix"); } m_fileMetaData.readCiftiXML1(xml); if (xml.hasError()) return; haveMetadata = true; } else if (name == "MatrixIndicesMap") { parseMatrixIndicesMap1(xml); if (xml.hasError()) return; } else if (name == "Volume") { if (haveVolSpace) { throw CiftiException("Volume may only be specified once in Matrix"); } fileVolSpace.readCiftiXML1(xml); if (xml.hasError()) return; haveVolSpace = true; } else if (name == "LabelTable") { xml.readElementText(XmlReader::SkipChildElements); } else { throw CiftiException("unexpected element in Matrix: " + name.toString()); } } else if (xml.isEndElement()) { break; } } #else #ifdef CIFTILIB_USE_XMLPP bool skipread = false, done = xml.is_empty_element();//NOTE: a element does NOT give a separate end element state!!! while(!done) { if (!skipread) { if (!xml.read()) break; } else { skipread = false; } switch (xml.get_node_type()) { case XmlReader::Element: { AString name = xml.get_local_name(); if (name == "MetaData") { if (haveMetadata) { throw CiftiException("MetaData may only be specified once in Matrix"); } m_fileMetaData.readCiftiXML1(xml); haveMetadata = true; } else if (name == "MatrixIndicesMap") { parseMatrixIndicesMap1(xml); } else if (name == "Volume") { if (haveVolSpace) { throw CiftiException("Volume may only be specified once in Matrix"); } fileVolSpace.readCiftiXML1(xml); haveVolSpace = true; } else if (name == "LabelTable") { xml.next();//TODO: test if this does this actually does what we want skipread = true; } else { throw CiftiException("unexpected element in Matrix: " + name); } break; } case XmlReader::EndElement: done = true; break; default: break; } } #else #error "not implemented" #endif #endif CiftiAssert(XmlReader_checkEndElement(xml, "Matrix")); for (int i = 0; i < (int)m_indexMaps.size(); ++i) { if (m_indexMaps[i] == NULL) { int displaynum = i; if (displaynum < 2) displaynum = 1 - displaynum;//re-invert so that it shows the same number as the XML is missing throw CiftiException("missing mapping for dimension '" + AString_number(displaynum) + "'"); } switch (m_indexMaps[i]->getType()) { case CiftiMappingType::BRAIN_MODELS: { CiftiBrainModelsMap& myMap = dynamic_cast(*(m_indexMaps[i])); if (myMap.hasVolumeData()) { if (haveVolSpace) { myMap.setVolumeSpace(fileVolSpace);//also does the needed checking of voxel indices } else { throw CiftiException("BrainModels map uses voxels, but no Volume element exists"); } } break; } case CiftiMappingType::PARCELS: { CiftiParcelsMap& myMap = dynamic_cast(*(m_indexMaps[i])); if (myMap.hasVolumeData()) { if (haveVolSpace) { myMap.setVolumeSpace(fileVolSpace);//ditto } else { throw CiftiException("Parcels map uses voxels, but no Volume element exists"); } } break; } default: break; } } } void CiftiXML::parseMatrix2(XmlReader& xml) { bool haveMetadata = false; #ifdef CIFTILIB_USE_QT while (!xml.atEnd()) { xml.readNext(); if (xml.hasError()) return; if (xml.isStartElement()) { QStringRef name = xml.name(); if (name == "MetaData") { if (haveMetadata) { throw CiftiException("MetaData may only be specified once in Matrix"); } m_fileMetaData.readCiftiXML2(xml); if (xml.hasError()) return; haveMetadata = true; } else if (name == "MatrixIndicesMap") { parseMatrixIndicesMap2(xml); if (xml.hasError()) return; } else { throw CiftiException("unexpected element in Matrix: " + name.toString()); } } else if (xml.isEndElement()) { break; } } #else #ifdef CIFTILIB_USE_XMLPP bool done = xml.is_empty_element();//NOTE: a element does NOT give a separate end element state!!! while(!done && xml.read()) { switch (xml.get_node_type()) { case XmlReader::Element: { AString name = xml.get_local_name(); if (name == "MetaData") { if (haveMetadata) { throw CiftiException("MetaData may only be specified once in Matrix"); } m_fileMetaData.readCiftiXML2(xml); haveMetadata = true; } else if (name == "MatrixIndicesMap") { parseMatrixIndicesMap2(xml); } else { throw CiftiException("unexpected element in Matrix: " + name); } break; } case XmlReader::EndElement: done = true; break; default: break; } } #else #error "not implemented" #endif #endif CiftiAssert(XmlReader_checkEndElement(xml, "Matrix")); for (int i = 0; i < (int)m_indexMaps.size(); ++i) { if (m_indexMaps[i] == NULL) { throw CiftiException("missing mapping for dimension '" + AString_number(i) + "'"); } } } void CiftiXML::parseMatrixIndicesMap1(XmlReader& xml) { vector mandAttrs(2); mandAttrs[0] = "AppliesToMatrixDimension"; mandAttrs[1] = "IndicesMapToDataType"; XmlAttributesResult myAttrs = XmlReader_parseAttributes(xml, mandAttrs); vector values = AString_split(myAttrs.mandatoryVals[0], ','); bool ok = false; set used; for(int i = 0; i < (int)values.size(); i++) { int parsed = AString_toInt(values[i], ok); if (!ok || parsed < 0) { throw CiftiException("bad value in AppliesToMatrixDimension list: " + values[i]); } if (parsed < 2) parsed = 1 - parsed;//in other words, 0 becomes 1 and 1 becomes 0, since cifti-1 had them reversed if (used.find(parsed) != used.end()) { throw CiftiException("AppliesToMatrixDimension contains repeated value: " + values[i]); } used.insert(parsed); } boost::shared_ptr toRead; AString type = myAttrs.mandatoryVals[1]; if (type == "CIFTI_INDEX_TYPE_BRAIN_MODELS") { toRead = boost::shared_ptr(new CiftiBrainModelsMap()); } else if (type == "CIFTI_INDEX_TYPE_TIME_POINTS") { toRead = boost::shared_ptr(new CiftiSeriesMap()); } else if (type == "CIFTI_INDEX_TYPE_LABELS") {//this and below are nonstandard toRead = boost::shared_ptr(new CiftiLabelsMap()); } else if (type == "CIFTI_INDEX_TYPE_PARCELS") { toRead = boost::shared_ptr(new CiftiParcelsMap()); } else if (type == "CIFTI_INDEX_TYPE_SCALARS") { toRead = boost::shared_ptr(new CiftiScalarsMap()); } else { throw CiftiException("invalid value for IndicesMapToDataType in CIFTI-1: " + type); } toRead->readXML1(xml);//this will warn if it is nonstandard #ifdef CIFTILIB_USE_QT if (xml.hasError()) return; #endif if (toRead->getLength() < 1 && !(type == "CIFTI_INDEX_TYPE_TIME_POINTS" && toRead->getLength() == -1)) throw CiftiException("cifti mapping type with zero length found"); bool first = true;//NOTE: series maps didn't encode length in cifti-1, -1 is used as a stand-in, CiftiFile fills in the length from the matrix for (set::iterator iter = used.begin(); iter != used.end(); ++iter) { if (*iter >= (int)m_indexMaps.size()) m_indexMaps.resize(*iter + 1); if (first) { m_indexMaps[*iter] = toRead; first = false; } else { m_indexMaps[*iter] = boost::shared_ptr(toRead->clone());//make in-memory information independent per-dimension, rather than dealing with deduplication everywhere } } CiftiAssert(XmlReader_checkEndElement(xml, "MatrixIndicesMap")); } void CiftiXML::parseMatrixIndicesMap2(XmlReader& xml) { vector mandAttrs(2); mandAttrs[0] = "AppliesToMatrixDimension"; mandAttrs[1] = "IndicesMapToDataType"; XmlAttributesResult myAttrs = XmlReader_parseAttributes(xml, mandAttrs); vector values = AString_split(myAttrs.mandatoryVals[0], ','); bool ok = false; set used; for(int i = 0; i < (int)values.size(); i++) { int parsed = AString_toInt(values[i], ok); if (!ok || parsed < 0) { throw CiftiException("bad value in AppliesToMatrixDimension list: " + values[i]); } if (used.find(parsed) != used.end()) { throw CiftiException("AppliesToMatrixDimension contains repeated value: " + values[i]); } used.insert(parsed); } boost::shared_ptr toRead; AString type = myAttrs.mandatoryVals[1]; if (type == "CIFTI_INDEX_TYPE_BRAIN_MODELS") { toRead = boost::shared_ptr(new CiftiBrainModelsMap()); } else if (type == "CIFTI_INDEX_TYPE_LABELS") { toRead = boost::shared_ptr(new CiftiLabelsMap()); } else if (type == "CIFTI_INDEX_TYPE_PARCELS") { toRead = boost::shared_ptr(new CiftiParcelsMap()); } else if (type == "CIFTI_INDEX_TYPE_SCALARS") { toRead = boost::shared_ptr(new CiftiScalarsMap()); } else if (type == "CIFTI_INDEX_TYPE_SERIES") { toRead = boost::shared_ptr(new CiftiSeriesMap()); } else { throw CiftiException("invalid value for IndicesMapToDataType in CIFTI-1: " + type); } toRead->readXML2(xml); #ifdef CIFTILIB_USE_QT if (xml.hasError()) return; #endif if (toRead->getLength() < 1) throw CiftiException("cifti mapping type with zero length found"); bool first = true; for (set::iterator iter = used.begin(); iter != used.end(); ++iter) { if (*iter >= (int)m_indexMaps.size()) m_indexMaps.resize(*iter + 1); if (first) { m_indexMaps[*iter] = toRead; first = false; } else { m_indexMaps[*iter] = boost::shared_ptr(toRead->clone());//make in-memory information independent per-dimension, rather than dealing with deduplication everywhere } } CiftiAssert(XmlReader_checkEndElement(xml, "MatrixIndicesMap")); } vector CiftiXML::writeXMLToVector(const CiftiVersion& writingVersion) const { #ifdef CIFTILIB_USE_QT QByteArray tempArray; XmlWriter xml(&tempArray); xml.setAutoFormatting(true); xml.writeStartDocument(); writeXML(xml, writingVersion); xml.writeEndDocument(); int numBytes = tempArray.size();//QByteArray is limited to 2GB vector ret(numBytes + 1);//include room for null terminator for (int i = 0; i < numBytes; ++i) { ret[i] = tempArray[i]; } ret[numBytes] = '\0'; return ret; #else #ifdef CIFTILIB_USE_XMLPP XmlWriter xml; xml.writeStartDocument(); writeXML(xml, writingVersion); xml.writeEndDocument(); return xml.getXmlData(); #else #error "not implemented" #endif #endif } void CiftiXML::writeXML(XmlWriter& xml, const CiftiVersion& writingVersion) const { xml.writeStartElement("CIFTI"); xml.writeAttribute("Version", writingVersion.toString()); if (writingVersion == CiftiVersion(1, 0))//switch/case on major/minor would be much harder to read { xml.writeAttribute("NumberOfMatrices", "1"); writeMatrix1(xml); } else if (writingVersion == CiftiVersion(2, 0)) { writeMatrix2(xml); } else { throw CiftiException("unknown Cifti writing version: '" + writingVersion.toString() + "'"); } xml.writeEndElement(); } void CiftiXML::writeMatrix1(XmlWriter& xml) const { int numDims = (int)m_indexMaps.size(); bool haveVolData = false; VolumeSpace volSpace; for (int i = 0; i < numDims; ++i) { if (m_indexMaps[i] == NULL) throw CiftiException("dimension " + AString_number(i) + " was not given a mapping"); switch (m_indexMaps[i]->getType()) { case CiftiMappingType::BRAIN_MODELS: { const CiftiBrainModelsMap& myMap = dynamic_cast(*(m_indexMaps[i])); if (myMap.hasVolumeData()) { if (haveVolData) { if (myMap.getVolumeSpace() != volSpace) { throw CiftiException("cannot write different volume spaces for different dimensions in CIFTI-1"); } } else { haveVolData = true; volSpace = myMap.getVolumeSpace(); } } break; } case CiftiMappingType::PARCELS: { const CiftiParcelsMap& myMap = dynamic_cast(*(m_indexMaps[i])); if (myMap.hasVolumeData()) { if (haveVolData) { if (myMap.getVolumeSpace() != volSpace) { throw CiftiException("cannot write different volume spaces for different dimensions in CIFTI-1"); } } else { haveVolData = true; volSpace = myMap.getVolumeSpace(); } } break; } default: break; } } xml.writeStartElement("Matrix"); m_fileMetaData.writeCiftiXML1(xml); if (haveVolData) { volSpace.writeCiftiXML1(xml); } vector used(numDims, false); for (int i = 0; i < numDims; ++i) { if (!used[i]) { used[i] = true; int outputNum = i; if (outputNum < 2) outputNum = 1 - outputNum;//ie, swap 0 and 1 AString appliesTo = AString_number(outputNum);//initialize containing just the current dimension for (int j = i + 1; j < numDims; ++j)//compare to all later unused dimensions for deduplication {//technically, shouldn't need to check for previously used as long as equality is exact, but means maybe fewer comparisons, and to prevent a bug in == from getting stranger behavior if (!used[j]) { if ((*m_indexMaps[i]) == (*m_indexMaps[j])) { outputNum = j; if (outputNum < 2) outputNum = 1 - outputNum; appliesTo += "," + AString_number(outputNum); used[j] = true; } } } xml.writeStartElement("MatrixIndicesMap");//should the CiftiIndexMap do this instead, and we pass appliesTo to it as string? probably not important, we won't use them in any other xml xml.writeAttribute("AppliesToMatrixDimension", appliesTo); m_indexMaps[i]->writeXML1(xml); xml.writeEndElement(); } } xml.writeEndElement(); } void CiftiXML::writeMatrix2(XmlWriter& xml) const { int numDims = (int)m_indexMaps.size(); for (int i = 0; i < numDims; ++i) { if (m_indexMaps[i] == NULL) throw CiftiException("dimension " + AString_number(i) + " was not given a mapping"); } xml.writeStartElement("Matrix"); m_fileMetaData.writeCiftiXML2(xml); vector used(numDims, false); for (int i = 0; i < numDims; ++i) { if (!used[i]) { used[i] = true; AString appliesTo = AString_number(i);//initialize containing just the current dimension for (int j = i + 1; j < numDims; ++j)//compare to all later unused dimensions for deduplication {//technically, shouldn't need to check for previously used as long as equality is exact, but means maybe fewer comparisons, and to prevent a bug in == from getting stranger behavior if (!used[j]) { if ((*m_indexMaps[i]) == (*m_indexMaps[j])) { appliesTo += "," + AString_number(j); used[j] = true; } } } xml.writeStartElement("MatrixIndicesMap");//should the CiftiIndexMap do this instead, and we pass appliesTo to it as string? probably not important, we won't use them in any other xml xml.writeAttribute("AppliesToMatrixDimension", appliesTo); m_indexMaps[i]->writeXML2(xml); xml.writeEndElement(); } } xml.writeEndElement(); } CiftiLib-1.6.0/src/Cifti/CiftiXML.h000066400000000000000000000117661373715117300166430ustar00rootroot00000000000000#ifndef __CIFTI_XML_H__ #define __CIFTI_XML_H__ /*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CiftiMappingType.h" #include "CiftiVersion.h" #include "MetaData.h" #include "CiftiBrainModelsMap.h" #include "CiftiLabelsMap.h" #include "CiftiParcelsMap.h" #include "CiftiScalarsMap.h" #include "CiftiSeriesMap.h" #include "boost/shared_ptr.hpp" #include namespace cifti { ///class for retrieving and setting mapping information of cifti files class CiftiXML { public: enum { ALONG_ROW = 0, ALONG_COLUMN = 1, ALONG_STACK = 2//better name for this? }; int getNumberOfDimensions() const { return m_indexMaps.size(); } const CiftiVersion& getParsedVersion() const { return m_parsedVersion; } ///can return null in unfilled XML object const CiftiMappingType* getMap(const int& direction) const; ///can return null in unfilled XML object CiftiMappingType* getMap(const int& direction); const MetaData& getFileMetaData() const; CiftiMappingType::MappingType getMappingType(const int& direction) const;//convenience functions const CiftiBrainModelsMap& getBrainModelsMap(const int& direction) const; CiftiBrainModelsMap& getBrainModelsMap(const int& direction); const CiftiLabelsMap& getLabelsMap(const int& direction) const; CiftiLabelsMap& getLabelsMap(const int& direction); const CiftiParcelsMap& getParcelsMap(const int& direction) const; CiftiParcelsMap& getParcelsMap(const int& direction); const CiftiScalarsMap& getScalarsMap(const int& direction) const; CiftiScalarsMap& getScalarsMap(const int& direction); const CiftiSeriesMap& getSeriesMap(const int& direction) const; CiftiSeriesMap& getSeriesMap(const int& direction); int64_t getDimensionLength(const int& direction) const; std::vector getDimensions() const; void setNumberOfDimensions(const int& num); void setMap(const int& direction, const CiftiMappingType& mapIn); void setFileMetaData(const MetaData& mdIn) { m_fileMetaData = mdIn; } void clear(); void readXML(XmlReader& xml); void readXML(const std::vector& text); std::vector writeXMLToVector(const CiftiVersion& writingVersion = CiftiVersion()) const; void writeXML(XmlWriter& xml, const CiftiVersion& writingVersion = CiftiVersion()) const; ///uses the mapping types to figure out what the intent info should be int32_t getIntentInfo(const CiftiVersion& writingVersion, char intentNameOut[16]) const; CiftiXML() { } CiftiXML(const CiftiXML& rhs); CiftiXML& operator=(const CiftiXML& rhs); bool operator==(const CiftiXML& rhs) const; bool operator!=(const CiftiXML& rhs) const { return !((*this) == rhs); } bool approximateMatch(const CiftiXML& rhs) const; private: std::vector > m_indexMaps; CiftiVersion m_parsedVersion; MetaData m_fileMetaData; void copyHelper(const CiftiXML& rhs); //parsing functions void parseCIFTI1(XmlReader& xml); void parseMatrix1(XmlReader& xml); void parseCIFTI2(XmlReader& xml); void parseMatrix2(XmlReader& xml); void parseMatrixIndicesMap1(XmlReader& xml); void parseMatrixIndicesMap2(XmlReader& xml); //writing functions void writeMatrix1(XmlWriter& xml) const; void writeMatrix2(XmlWriter& xml) const; }; } #endif //__CIFTI_XML_H__ CiftiLib-1.6.0/src/Cifti/Label.cxx000066400000000000000000000255001373715117300166050ustar00rootroot00000000000000/*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include #include "Label.h" #include using namespace cifti; const int32_t Label::s_invalidLabelKey = std::numeric_limits::min(); /** * Constructor. * * @param key - key of the label. * @param name - name of label. * */ Label::Label( const int32_t key, const AString& name) { this->initializeMembersLabel(); this->key = key; this->name = name; } /** * Constructor. * * @param key - Key of the label. * @param name - name of label. * @param red - red color component, zero to one. * @param green - green color component, zero to one. * @param blue - blue color component, zero to one. * @param alpha - alpha color component, zero to one. * */ Label::Label( const int32_t key, const AString& name, const float red, const float green, const float blue, const float alpha) { this->initializeMembersLabel(); this->key = key; this->name = name; this->red = red; this->green = green; this->blue = blue; this->alpha = alpha; } /** * Constructor. * * @param key - Key of the label. * @param name - name of label. * @param red - red color component, zero to one. * @param green - green color component, zero to one. * @param blue - blue color component, zero to one. * @param alpha - alpha color component, zero to one. * */ Label::Label( const int32_t key, const AString& name, const double red, const double green, const double blue, const double alpha) { this->initializeMembersLabel(); this->key = key; this->name = name; this->red = red; this->green = green; this->blue = blue; this->alpha = alpha; } /** * Constructor. * * @param key - Key of the label. * @param name - name of label. * @param rgba - red, green, blue, alpha color componenents, zero to one. * */ Label::Label( const int32_t key, const AString& name, const float rgba[]) { this->initializeMembersLabel(); this->key = key; this->name = name; this->red = rgba[0]; this->green = rgba[1]; this->blue = rgba[2]; this->alpha = rgba[3]; } /** * Constructor. * * @param key - Key of the label. * @param name - name of label. * @param red - red color component, zero to two-fifty-five. * @param green - green color component, zero to two-fifty-five. * @param blue - blue color component, zero to two-fifty-five. * @param alpha - alpha color component, zero to two-fifty-five. * */ Label::Label( const int32_t key, const AString& name, const int32_t red, const int32_t green, const int32_t blue, const int32_t alpha) { this->initializeMembersLabel(); this->key = key; this->name = name; this->red = red / 255.0; this->green = green / 255.0; this->blue = blue / 255.0; this->alpha = alpha / 255.0; } /** * Constructor. * * @param key - Key of the label. * @param name - name of label. * @param rgba - red, green, blue, alpha color componenents, zero to 255. * */ Label::Label( const int32_t key, const AString& name, const int32_t rgba[]) { this->initializeMembersLabel(); this->key = key; this->name = name; this->red = rgba[0] / 255.0; this->green = rgba[1] / 255.0; this->blue = rgba[2] / 255.0; this->alpha = rgba[3] / 255.0; } /** * Constructor. * * @param key - Key of the label. * */ Label::Label( const int32_t key) { this->initializeMembersLabel(); this->key = key; if (this->key == 0) { this->name = "???"; } else { std::stringstream str; str << "???" << this->key; this->name = str.str().c_str(); } } Label::~Label() { } Label::Label(const Label& o) { this->initializeMembersLabel(); this->copyHelper(o); } Label& Label::operator=(const Label& o) { if (this != &o) { this->copyHelper(o); }; return *this; } /** * Helps with copy constructor and assignment operator. */ void Label::copyHelper(const Label& gl) { this->initializeMembersLabel(); this->name = gl.name; this->key = gl.key; this->selected = gl.selected; this->red = gl.red; this->green = gl.green; this->blue = gl.blue; this->alpha = gl.alpha; } /** * Initialize data members. */ void Label::initializeMembersLabel() { this->name = ""; this->key = s_invalidLabelKey; this->selected = true; this->red = 1.0; this->green = 1.0; this->blue = 1.0; this->alpha = 1.0; } /** * Determine if two labels are equal. Two Labels are equal if they * have the same "key". * @param gl label for comparison. * @return true if equal, else false. * */ bool Label::equals(const Label& gl) { return (this->key == gl.key); } /** * Compare this label to another label using the indices of the labels. * @param gl - Compare to this Label. * @return negative if "this" is less, positive if "this" is greater, * else zero. * */ int32_t Label::operator<(const Label& gl) { return (this->key < gl.key); } /** * Get the key of this label. * @return key of the label. * */ int32_t Label::getKey() const { return this->key; } /** * Set the key of this label. DO NOT call this method on a label * retrieved from the label table. * * @param key - New key for this label. * */ void Label::setKey(const int32_t key) { this->key = key; } /** * Get the name. * @return Name of label. * */ AString Label::getName() const { return this->name; } /** * Set the name. * @param name - new name for label. * */ void Label::setName(const AString& name) { this->name = name; } /** * Is this label selected (for display)? * * @return true if label selected for display, else false. * */ bool Label::isSelected() const { return this->selected; } /** * Set the label selected (for display). * * @param selected - new selection status. * */ void Label::setSelected(const bool selected) { this->selected = selected; } /** * Get the color components. * * @return A four-dimensional array of floats containing the red, green, * blue, and alpha components with values ranging from 0.0 to 1.0. * User MUST delete[] returned array. * */ float* Label::getColor() const { float* rgba = new float[4]; rgba[0] = this->red; rgba[1] = this->green; rgba[2] = this->blue; rgba[3] = this->alpha; return rgba; } /** * Get the color components. * @param rgbaOut four dimensional array into which are loaded, * red, green, blue, and alpha components ranging 0.0. to 1.0. * */ void Label::getColor(float rgbaOut[]) const { rgbaOut[0] = this->red; rgbaOut[1] = this->green; rgbaOut[2] = this->blue; rgbaOut[3] = this->alpha; } /** * Set the color components. * * @param rgba - A four-dimensional array of floats containing the red, * green, blue, and alpha components with values ranging from 0.0 to 1.0. * */ void Label::setColor(const float rgba[]) { this->red = rgba[0]; this->green = rgba[1]; this->blue = rgba[2]; this->alpha = rgba[3]; } /** * Get the colors as integers ranging 0 to 255. * @return Four-dimensional array containing color components. * User must delete[] the returned array. * */ int32_t* Label::getColorInt() const { int32_t* rgbaOut = new int32_t[4]; rgbaOut[0] = static_cast(this->red * 255); rgbaOut[1] = static_cast(this->green * 255); rgbaOut[2] = static_cast(this->blue * 255); rgbaOut[3] = static_cast(this->alpha * 255); return rgbaOut; } /** * Set the colors with integers ranging 0 to 255. * @param rgba - four-dimensional array with colors ranging 0 to 255. * */ void Label::setColorInt(const int32_t rgba[]) { this->red = rgba[0] / 255.0; this->green = rgba[1] / 255.0; this->blue = rgba[2] / 255.0; this->alpha = rgba[3] / 255.0; } /** * Get the default color. * * @param rgbaOut ouput, a four-dimensional array of floats * containing the red, green, blue, and alpha components with values * ranging from 0.0 to 1.0. */ void Label::getDefaultColor(float rgbaOut[4]) { rgbaOut[0] = 1.0; rgbaOut[1] = 1.0; rgbaOut[2] = 1.0; rgbaOut[3] = 1.0; } /** * Get the red color component for this label. * @return red color component. * */ float Label::getRed() const { return this->red; } /** * Get the green color component for this label. * @return green color component. * */ float Label::getGreen() const { return this->green; } /** * Get the blue color component for this label. * @return blue color component. * */ float Label::getBlue() const { return this->blue; } /** * Get the alpha color component for this label. * @return alpha color component. * */ float Label::getAlpha() const { return this->alpha; } bool Label::matches(const Label& rhs, const bool checkColor) const { if (key != rhs.key) return false; if (name != rhs.name) return false; if (checkColor) { if (red != rhs.red) return false; if (green != rhs.green) return false; if (blue != rhs.blue) return false; if (alpha != rhs.alpha) return false; } return true; } CiftiLib-1.6.0/src/Cifti/Label.h000066400000000000000000000112431373715117300162310ustar00rootroot00000000000000#ifndef __LABEL_H__ #define __LABEL_H__ /*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "Common/AString.h" #include namespace cifti { class GroupAndNameHierarchyItem; class Label { public: Label( const int32_t key, const AString& name); explicit Label( const int32_t key, const AString& name, const float red, const float green, const float blue, const float alpha); explicit Label( const int32_t key, const AString& name, const double red, const double green, const double blue, const double alpha); Label( const int32_t key, const AString& name, const float rgba[]); explicit Label( const int32_t key, const AString& name, const int32_t red, const int32_t green, const int32_t blue, const int32_t alpha); Label( const int32_t key, const AString& name, const int32_t rgba[]); Label(const int32_t key); Label(const Label& gl); public: Label& operator=(const Label& gl); virtual ~Label(); private: void copyHelper(const Label& o); void initializeMembersLabel(); public: int32_t hashCode(); bool equals(const Label&); int32_t operator<(const Label& gl); int32_t getKey() const; void setKey(const int32_t key); AString getName() const; void setName(const AString& name); bool isSelected() const; void setSelected(const bool selected); float* getColor() const; void getColor(float rgbaOut[]) const; void setColor(const float rgba[]); int32_t* getColorInt() const; void setColorInt(const int32_t rgba[]); static void getDefaultColor(float rgbaOut[4]); float getRed() const; float getGreen() const; float getBlue() const; float getAlpha() const; bool matches(const Label& rhs, const bool checkColor = false) const; /** * @return The invalid label key. */ static inline int32_t getInvalidLabelKey() { return s_invalidLabelKey; } private: AString name; int32_t key; bool selected; float red; float green; float blue; float alpha; /** The invalid label key */ const static int32_t s_invalidLabelKey; }; } // namespace #endif // __LABEL_H__ CiftiLib-1.6.0/src/Cifti/LabelTable.cxx000066400000000000000000000651231373715117300175620ustar00rootroot00000000000000/*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include #include #include #include "Common/CiftiAssert.h" #include "Label.h" #include "LabelTable.h" using namespace std; using namespace cifti; LabelTable::LabelTable() { clear();//actually adds the 0: ??? label } LabelTable::~LabelTable() { for (LABELS_MAP_CONST_ITERATOR iter = this->labelsMap.begin(); iter != labelsMap.end(); iter++) { delete iter->second; } this->labelsMap.clear(); } LabelTable::LabelTable(const LabelTable& glt) { this->copyHelper(glt); } LabelTable& LabelTable::operator=(const LabelTable& glt) { if (this != &glt) { this->copyHelper(glt); }; return *this; } /** * Helps with copy constructor and assignment operator. */ void LabelTable::copyHelper(const LabelTable& glt) { this->clear(); for (LABELS_MAP_CONST_ITERATOR iter = glt.labelsMap.begin(); iter != glt.labelsMap.end(); iter++) { Label* myLabel = this->getLabel(iter->second->getKey()); if (myLabel != NULL) { *myLabel = *(iter->second); } else { addLabel(iter->second); } } } /** * Clear the labelTable. * */ void LabelTable::clear() { for (LABELS_MAP_CONST_ITERATOR iter = this->labelsMap.begin(); iter != labelsMap.end(); iter++) { delete iter->second; } this->labelsMap.clear(); Label gl(0, "???", 1.0, 1.0, 1.0, 0.0); this->addLabel(&gl); } /** * Append a label table to this label table. Since labels may be * duplicated, the map returned that converts the keys of * the appended LabelTable to keys for "this" label table. * * @param glt Label table that is to be appended. * * @return A map where the keys are the keys in the label table * that is passed as a parameter and the values are the keys * into "this" label table. * */ std::map LabelTable::append(const LabelTable& glt) { std::map keyConverterMap; for (LABELS_MAP_CONST_ITERATOR iter = glt.labelsMap.begin(); iter != glt.labelsMap.end(); iter++) { int32_t key = iter->first; int32_t newKey = this->addLabel(iter->second); keyConverterMap.insert(std::make_pair(key, newKey)); } return keyConverterMap; } /** * Add a label. If a label with the name exists, its colors * are replaced with these color components. * @param labelName Name of label. * @param red Red color component ranging 0.0 to 1.0. * @param green Green color component ranging 0.0 to 1.0. * @param blue Blue color component ranging 0.0 to 1.0. * @param alpha Alpha color component ranging 0.0 to 1.0. * @return Index of the existing label, or, if no label * exists with name, index of new label. * */ int32_t LabelTable::addLabel( const AString& labelName, const float red, const float green, const float blue, const float alpha) { const Label gl(Label::getInvalidLabelKey(), labelName, red, green, blue, alpha); return this->addLabel(&gl); } /** * Add a label. If a label with the name exists, its colors * are replaced with these color components. * @param labelName Name of label. * @param red Red color component ranging 0.0 to 1.0. * @param green Green color component ranging 0.0 to 1.0. * @param blue Blue color component ranging 0.0 to 1.0. * @return Index of the existing label, or, if no label * exists with name, index of new label. * */ int32_t LabelTable::addLabel( const AString& labelName, const float red, const float green, const float blue) { return this->addLabel(labelName, red, green, blue, 1.0f); } /** * Add a label. If a label with the name exists, its colors * are replaced with these color components. * @param labelName Name of label. * @param red Red color component ranging 0 to 255. * @param green Green color component ranging 0 to 255. * @param blue Blue color component ranging 0 to 255. * @param alpha Alpha color component ranging 0 to 255. * @return Index of the existing label, or, if no label * exists with name, index of new label. * */ int32_t LabelTable::addLabel( const AString& labelName, const int32_t red, const int32_t green, const int32_t blue, const int32_t alpha) { const Label gl(Label::getInvalidLabelKey(), labelName, red, green, blue, alpha); return this->addLabel(&gl); } /** * Add a label. If a label with the name exists, its colors * are replaced with these color components. * @param labelName Name of label. * @param red Red color component ranging 0 to 255. * @param green Green color component ranging 0 to 255. * @param blue Blue color component ranging 0 to 255. * @return Index of the existing label, or, if no label * exists with name, index of new label. * */ int32_t LabelTable::addLabel( const AString& labelName, const int32_t red, const int32_t green, const int32_t blue) { return this->addLabel(labelName, red, green, blue, 255); } /** * Add a label to the label table. If the label's key is already in * the label table, a new key is created. If a label of the same * name already exists, the key of the existing label is returned * and its color is overridden. * @param glIn - Label to add. * @return Key of the label, possibly different than its original key. * */ int32_t LabelTable::addLabel(const Label* glIn) { /* * First see if a label with the same name already exists */ int32_t key = this->getLabelKeyFromName(glIn->getName()); /* * If no label with the name exists, get the key * (which may be invalid) from the input label, * and check that nothing uses that key */ if (key == Label::getInvalidLabelKey()) { int32_t tempkey = glIn->getKey(); LABELS_MAP_ITERATOR iter = this->labelsMap.find(tempkey); if (iter == labelsMap.end()) { key = tempkey; } } /* * Still need a key, find an unused key */ if (key == Label::getInvalidLabelKey()) { key = this->generateUnusedKey(); Label* gl = new Label(*glIn); gl->setKey(key); this->labelsMap.insert(std::make_pair(key, gl)); return key; } LABELS_MAP_ITERATOR iter = this->labelsMap.find(key); if (iter != this->labelsMap.end()) { /* * Update existing label */ Label* gl = iter->second; gl->setName(glIn->getName()); float rgba[4]; glIn->getColor(rgba); gl->setColor(rgba); key = iter->first; } else { /* * Insert a new label */ this->labelsMap.insert(std::make_pair(key, new Label(*glIn))); } return key; } /** * Generate an unused key. * @return An unused key. */ int32_t LabelTable::generateUnusedKey() const { const int32_t numKeys = labelsMap.size(); LABELS_MAP::const_reverse_iterator rbegin = labelsMap.rbegin();//reverse begin is largest key if (numKeys > 0 && rbegin->first > 0)//there is at least one positive key { if (rbegin->first < numKeys) { CiftiAssert(labelsMap.find(rbegin->first + 1) == labelsMap.end()); return rbegin->first + 1;//keys are compact unless negatives exist, in which case consider it "compact enough" if positive holes equal number of negative keys } else { LABELS_MAP::const_iterator begin = labelsMap.begin(); if (begin->first == 1 && rbegin->first == numKeys) { CiftiAssert(labelsMap.find(rbegin->first + 1) == labelsMap.end()); return rbegin->first + 1;//keys are compact but missing 0, do not return 0, so return next } else {//there aren't enough negatives to make up for the missing, search for a hole in the positives LABELS_MAP::const_iterator iter = labelsMap.upper_bound(0);//start with first positive int32_t curVal = 0;//if it isn't one, we can stop early while (iter != labelsMap.end() && iter->first == curVal + 1)//it should NEVER hit end(), due to above checks, but if it did, it would return rbegin->first + 1 { curVal = iter->first; ++iter; } CiftiAssert(labelsMap.find(curVal + 1) == labelsMap.end()); return curVal + 1; } } } else { CiftiAssert(labelsMap.find(1) == labelsMap.end()); return 1;//otherwise, no keys exist or all keys are non-positive, return 1 } } /** * Remove the label with the specified key. * @param key - key of label. * */ void LabelTable::deleteLabel(const int32_t key) { if (key == 0) {//key 0 is reserved (sort of) cerr << "Label 0 DELETED!" << endl; } LABELS_MAP_ITERATOR iter = this->labelsMap.find(key); if (iter != this->labelsMap.end()) { this->labelsMap.erase(iter); delete iter->second; } } /** * Remove a label from the label table. * This method WILL DELETE the label passed * in so the caller should never use the parameter * passed after this call. * @param label - label to remove. * */ void LabelTable::deleteLabel(const Label* label) { if (label->getKey() == 0) {//key 0 is reserved (sort of) cerr << "Label 0 DELETED!" << endl; } for (LABELS_MAP_ITERATOR iter = this->labelsMap.begin(); iter != this->labelsMap.end(); iter++) { if (iter->second == label) { this->labelsMap.erase(iter); break; } } delete label; } /** * Remove unused labels from the label table. Note that the unassigned * label is not removed, even if it is unused. * * @param usedLabelKeys - Color keys that are in use. * */ void LabelTable::deleteUnusedLabels(const std::set& usedLabelKeys) { LABELS_MAP newMap; int32_t unassignedKey = getUnassignedLabelKey(); for (LABELS_MAP_ITERATOR iter = this->labelsMap.begin(); iter != this->labelsMap.end(); iter++) { int32_t key = iter->first; Label* gl = iter->second; if (key == unassignedKey || usedLabelKeys.find(key) != usedLabelKeys.end()) {//unassigned key gets a free pass newMap.insert(std::make_pair(key, gl)); } else { delete gl; } } this->labelsMap = newMap; } /** * Insert the label using the labels key. * @param labelIn - Label to insert (replaces an existing label * with the same key). * */ void LabelTable::insertLabel(const Label* labelIn) { Label* label = new Label(*labelIn); int32_t key = label->getKey(); if (key == Label::getInvalidLabelKey()) { key = this->generateUnusedKey(); label->setKey(key); } /* * Note: A map DOES NOT replace an existing key, so it * must be deleted and then added. */ LABELS_MAP_ITERATOR keyPos = this->labelsMap.find(label->getKey()); if (keyPos != this->labelsMap.end()) { Label* gl = keyPos->second; this->labelsMap.erase(keyPos); delete gl; } this->labelsMap.insert(std::make_pair(label->getKey(), label)); } /** * Get the key of a lable from its name. * @param name Name to search for. * @return Key of Name or Label::getInvalidLabelKey() if not found. * */ int32_t LabelTable::getLabelKeyFromName(const AString& name) const { LABELS_MAP newMap; for (LABELS_MAP_CONST_ITERATOR iter = this->labelsMap.begin(); iter != this->labelsMap.end(); iter++) { int32_t key = iter->first; Label* gl = iter->second; if (gl->getName() == name) { return key; } } return Label::getInvalidLabelKey(); } /** * Get a Label from its name. * @param labelName - Name of label that is sought. * @return Reference to label with name or null if no matching label. * */ const Label* LabelTable::getLabel(const AString& labelName) const { LABELS_MAP newMap; for (LABELS_MAP_CONST_ITERATOR iter = this->labelsMap.begin(); iter != this->labelsMap.end(); iter++) { Label* gl = iter->second; if (gl->getName() == labelName) { return gl; } } return NULL; } /** * Get a Label from its name. * @param labelName - Name of label that is sought. * @return Reference to label with name or null if no matching label. * */ Label* LabelTable::getLabel(const AString& labelName) { LABELS_MAP newMap; for (LABELS_MAP_CONST_ITERATOR iter = this->labelsMap.begin(); iter != this->labelsMap.end(); iter++) { Label* gl = iter->second; if (gl->getName() == labelName) { return gl; } } return NULL; } /** * Get the Label at the specified key. * * @param key - Key of Label entry. * @return The Label at the specified key or null if the * there is not a label at the specified key. * */ const Label* LabelTable::getLabel(const int32_t key) const { LABELS_MAP_CONST_ITERATOR iter = this->labelsMap.find(key); if (iter != this->labelsMap.end()) { return iter->second; } return NULL; } /** * Get the Label at the specified key. * * @param key - Key of Label entry. * @return The Label at the specified key or null if the * there is not a label at the specified key. */ Label* LabelTable::getLabel(const int32_t key) { LABELS_MAP_ITERATOR iter = this->labelsMap.find(key); if (iter != this->labelsMap.end()) { return iter->second; } return NULL; } /** * Get the key for the unassigned label. * @return Index of key for unassigned label. * A valid key will always be returned. * */ int32_t LabelTable::getUnassignedLabelKey() const { const Label* gl = this->getLabel("???"); if (gl != NULL) { return gl->getKey(); } /* * Remove 'constness' from this object so that the * label can be added. */ LabelTable* glt = (LabelTable*)this; const int32_t key = glt->addLabel("???", 0.0f, 0.0f, 0.0f, 0.0f); return key; } /** * Get the number of labels. This value is one greater than the last * label key. Note that not every key may have a label. If there * are no labels this returns 0. * @return Number of labels. * */ int32_t LabelTable::getNumberOfLabels() const { return this->labelsMap.size(); } /** * Get the name of the label at the key. If there is no label at the * key an empty string is returned. * @param key - key of label. * @return Name of label at inkeydex. * */ AString LabelTable::getLabelName(const int32_t key) const { LABELS_MAP_CONST_ITERATOR iter = this->labelsMap.find(key); if (iter != this->labelsMap.end()) { const AString name = iter->second->getName(); return name; } return ""; } /** * Set the name of a label. * @param key - key of label. * @param name - new name of label. * */ void LabelTable::setLabelName( const int32_t key, const AString& name) { LABELS_MAP_ITERATOR iter = this->labelsMap.find(key); if (iter != this->labelsMap.end()) { iter->second->setName(name); } } /** * Set a label. If a label with the specified key exists, * it is replaced. * * @param key Key for label. * @param name Name of label. * @param red Red color component. * @param green Green color component. * @param blue Blue color component. * @param alpha Alpha color component. * */ void LabelTable::setLabel( const int32_t key, const AString& name, const float red, const float green, const float blue, const float alpha) { LABELS_MAP_ITERATOR iter = this->labelsMap.find(key); if (iter != this->labelsMap.end()) { Label* gl = iter->second; gl->setName(name); float rgba[4] = { red, green, blue, alpha }; gl->setColor(rgba); } else { Label gl(key, name, red, green, blue, alpha); this->addLabel(&gl); } } /** * Get the selection status of the label at the specified key. If there * is no label at the key, false is returned. * @param key - key of label * @return selection status of label. * */ bool LabelTable::isLabelSelected(const int32_t key) const { LABELS_MAP_CONST_ITERATOR iter = this->labelsMap.find(key); if (iter != this->labelsMap.end()) { return iter->second->isSelected(); } return false; } /** * Set the selection status of a label. * @param key - key of label. * @param sel - new selection status. * */ void LabelTable::setLabelSelected( const int32_t key, const bool sel) { LABELS_MAP_ITERATOR iter = this->labelsMap.find(key); if (iter != this->labelsMap.end()) { iter->second->setSelected(sel); } } /** * Set the selection status for all labels. * @param newStatus New selection status. * */ void LabelTable::setSelectionStatusForAllLabels(const bool newStatus) { for (LABELS_MAP_ITERATOR iter = this->labelsMap.begin(); iter != this->labelsMap.end(); iter++) { Label* gl = iter->second; gl->setSelected(newStatus); } } /** * Get the alpha color component for a label. If the key is not a * valid label, an alpha of zero is returned. * @param key - Key of label. * @return Alpha for label or zero if invalid key. * */ float LabelTable::getLabelAlpha(const int32_t key) const { const Label* gl = this->getLabel(key); if (gl != NULL) { return gl->getAlpha(); } return 0.0; } /** * Get the color for a label. * @param key - key of label. * @param rgbaOut - output, its color components * */ void LabelTable::getLabelColor(const int32_t key, float rgbaOut[4]) const { const Label* gl = this->getLabel(key); if (gl != NULL) { gl->getColor(rgbaOut); } } /** * Set the color of a label. * @param key - key of label. * @param color - new color of label. * */ void LabelTable::setLabelColor( const int32_t key, const float color[]) { LABELS_MAP_ITERATOR iter = this->labelsMap.find(key); if (iter != this->labelsMap.end()) { Label* gl = iter->second; gl->setColor(color); } } void LabelTable::writeXML(XmlWriter& xmlWriter) const { // // Write the label tag // xmlWriter.writeStartElement("LabelTable"); // // Write the labels // std::set keys = this->getKeys(); for (std::set::const_iterator iter = keys.begin(); iter != keys.end(); iter++) { int key = *iter; const Label* label = this->getLabel(key); if (label != NULL) { xmlWriter.writeStartElement("Label"); xmlWriter.writeAttribute("Key", AString_number(key)); float* rgba = label->getColor(); xmlWriter.writeAttribute("Red", AString_number(rgba[0])); xmlWriter.writeAttribute("Green", AString_number(rgba[1])); xmlWriter.writeAttribute("Blue", AString_number(rgba[2])); xmlWriter.writeAttribute("Alpha", AString_number(rgba[3])); xmlWriter.writeCharacters(label->getName()); xmlWriter.writeEndElement(); delete[] rgba; } } // // Write the closing label tag // xmlWriter.writeEndElement(); } void LabelTable::readXml(XmlReader& xml) { clear(); #ifdef CIFTILIB_USE_QT if (!xml.isStartElement() || xml.name() != "LabelTable") { throw CiftiException("tried to read LabelTable when current element is not LabelTable"); } while (xml.readNextStartElement() && !xml.atEnd()) { if (xml.name() != "Label") { throw CiftiException("unexpected element '" + xml.name().toString() + "' encountered in Label"); } int key; float rgba[4]; QXmlStreamAttributes myAttrs = xml.attributes(); bool ok = false; AString temp = myAttrs.value("Key").toString(); key = temp.toInt(&ok); if (!ok) throw CiftiException("Key attribute of Label missing or noninteger"); temp = myAttrs.value("Red").toString(); rgba[0] = temp.toFloat(&ok); if (!ok) throw CiftiException("Red attribute of Label missing or not a number"); temp = myAttrs.value("Green").toString(); rgba[1] = temp.toFloat(&ok); if (!ok) throw CiftiException("Green attribute of Label missing or not a number"); temp = myAttrs.value("Blue").toString(); rgba[2] = temp.toFloat(&ok); if (!ok) throw CiftiException("Blue attribute of Label missing or not a number"); temp = myAttrs.value("Alpha").toString(); if (temp == "") { rgba[3] = 1.0f; } else { rgba[3] = temp.toFloat(&ok); if (!ok) throw CiftiException("Alpha attribute of Label is not a number"); } temp = xml.readElementText(); if (xml.hasError()) return; setLabel(key, temp, rgba[0], rgba[1], rgba[2], rgba[3]); } #else #ifdef CIFTILIB_USE_XMLPP vector mandAttrs(4), optAttrs(1, "Alpha"); mandAttrs[0] = "Key"; mandAttrs[1] = "Red"; mandAttrs[2] = "Green"; mandAttrs[3] = "Blue"; bool done = xml.is_empty_element();//NOTE: a element does NOT give a separate end element state!!! while(!done && xml.read()) { switch (xml.get_node_type()) { case XmlReader::Element: { AString name = xml.get_local_name(); if (name == "Label") { XmlAttributesResult myAttrs = XmlReader_parseAttributes(xml, mandAttrs, optAttrs); int key; float rgba[4]; bool ok = false; key = AString_toInt(myAttrs.mandatoryVals[0], ok); if (!ok) throw CiftiException("Key attribute of Label is not an integer"); rgba[0] = AString_toFloat(myAttrs.mandatoryVals[1], ok); if (!ok) throw CiftiException("Red attribute of Label is not a number"); rgba[1] = AString_toFloat(myAttrs.mandatoryVals[2], ok); if (!ok) throw CiftiException("Green attribute of Label is not a number"); rgba[2] = AString_toFloat(myAttrs.mandatoryVals[3], ok); if (!ok) throw CiftiException("Blue attribute of Label is not a number"); if (myAttrs.optionalVals[0].present) { rgba[3] = AString_toFloat(myAttrs.optionalVals[0].value, ok); if (!ok) throw CiftiException("Alpha attribute of Label is not a number"); } else { rgba[3] = 1.0f; } AString name = XmlReader_readElementText(xml); setLabel(key, name, rgba[0], rgba[1], rgba[2], rgba[3]); } else { throw CiftiException("unexpected element in LabelTable: " + name); } break; } case XmlReader::EndElement: done = true; break; default: break; } } #else #error "not implemented" #endif #endif CiftiAssert(XmlReader_checkEndElement(xml, "LabelTable")); } /** * Get the valid keys of the labels in ascending order. * @return A Set containing the valid keys of the label in * ascending order. * */ std::set LabelTable::getKeys() const { std::set keys; for (std::map::const_iterator iter = this->labelsMap.begin(); iter != this->labelsMap.end(); iter++) { keys.insert(iter->first); } return keys; } void LabelTable::getKeys(std::vector& keysOut) const { keysOut.reserve(labelsMap.size()); for (std::map::const_iterator iter = this->labelsMap.begin(); iter != this->labelsMap.end(); iter++) { keysOut.push_back(iter->first); } } /** * Get all keys and names. * * @param keysAndNamesOut * Map containing the pairs of corresponding keys and names. */ void LabelTable::getKeysAndNames(std::map& keysAndNamesOut) const { keysAndNamesOut.clear(); for (std::map::const_iterator iter = this->labelsMap.begin(); iter != this->labelsMap.end(); iter++) { const Label* gl = iter->second; keysAndNamesOut.insert(std::make_pair(iter->first, gl->getName())); } } bool LabelTable::matches(const LabelTable& rhs, const bool checkColors) const { if (labelsMap.size() != rhs.labelsMap.size()) return false; for (LABELS_MAP::const_iterator iter = labelsMap.begin(); iter != labelsMap.end(); ++iter) { LABELS_MAP::const_iterator riter = rhs.labelsMap.find(iter->first); if (riter == rhs.labelsMap.end()) return false; if (!iter->second->matches(*(riter->second), checkColors)) return false; } return true; } CiftiLib-1.6.0/src/Cifti/LabelTable.h000066400000000000000000000120121373715117300171740ustar00rootroot00000000000000#ifndef __LABELTABLE_H__ #define __LABELTABLE_H__ /*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "Common/AString.h" #include #include #include #include #include "Common/XmlAdapter.h" namespace cifti { class Label; class LabelTable { public: LabelTable(); LabelTable(const LabelTable& glt); LabelTable& operator=(const LabelTable& glt); bool matches(const LabelTable& rhs, const bool checkColors = false) const; bool operator==(const LabelTable& rhs) const { return matches(rhs, true); } bool operator!=(const LabelTable& rhs) const { return !((*this) == rhs); } virtual ~LabelTable(); private: void copyHelper(const LabelTable& glt); public: void clear(); std::map append(const LabelTable& glt); int32_t addLabel( const AString& labelName, const float red, const float green, const float blue, const float alpha); int32_t addLabel( const AString& labelName, const float red, const float green, const float blue); int32_t addLabel( const AString& labelName, const int32_t red, const int32_t green, const int32_t blue, const int32_t alpha); int32_t addLabel( const AString& labelName, const int32_t red, const int32_t green, const int32_t blue); int32_t addLabel(const Label* glt); void deleteLabel(const int32_t key); void deleteLabel(const Label* label); void deleteUnusedLabels(const std::set& usedLabelKeys); void insertLabel(const Label* label); int32_t getLabelKeyFromName(const AString& name) const; const Label* getLabel(const AString& labelName) const; Label* getLabel(const AString& labelName); const Label* getLabel(const int32_t key) const; Label* getLabel(const int32_t key); int32_t getUnassignedLabelKey() const; int32_t getNumberOfLabels() const; AString getLabelName(const int32_t key) const; void setLabelName( const int32_t key, const AString& name); void setLabel(const int32_t key, const AString& name, const float red, const float green, const float blue, const float alpha); bool isLabelSelected(const int32_t key) const; void setLabelSelected( const int32_t key, const bool sel); void setSelectionStatusForAllLabels(const bool newStatus); float getLabelAlpha(const int32_t key) const; void getLabelColor(const int32_t key, float rgbaOut[4]) const; void setLabelColor( const int32_t key, const float color[4]); void createLabelsForKeys(const std::set& newKeys); void writeXML(XmlWriter& xmlWriter) const; void readXml(XmlReader& xml); std::set getKeys() const; void getKeys(std::vector& keysOut) const; void getKeysAndNames(std::map& keysAndNamesOut) const; int32_t generateUnusedKey() const; private: typedef std::map LABELS_MAP; typedef std::map::iterator LABELS_MAP_ITERATOR; typedef std::map::const_iterator LABELS_MAP_CONST_ITERATOR; LABELS_MAP labelsMap; }; } // namespace #endif // __LABELTABLE_H__ CiftiLib-1.6.0/src/Cifti/MetaData.cxx000066400000000000000000000277171373715117300172620ustar00rootroot00000000000000/*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include #include "Common/CiftiAssert.h" #include "Common/CiftiException.h" #include "MetaData.h" using namespace cifti; MetaData::MetaData() { this->initializeMembersMetaData(); } MetaData::~MetaData() { } MetaData::MetaData(const MetaData& o) { this->initializeMembersMetaData(); this->copyHelper(o); } MetaData& MetaData::operator=(const MetaData& o) { if (this != &o) { this->copyHelper(o); }; return *this; } bool MetaData::operator==(const MetaData& rhs) const { return (metadata == rhs.metadata); } /** * Helps with copy constructor and assignment operator. */ void MetaData::copyHelper(const MetaData& o) { this->metadata = o.metadata; } void MetaData::initializeMembersMetaData() { } /** * Clear the metadata. * */ void MetaData::clear() { metadata.clear(); } /** * Append the metadata to this metadata. A comment is always appended. * Other metadata are added only if the name is not in "this" metadata. * * @param smd Metadata that is to be appended to "this". * */ void MetaData::append(const MetaData& smd) { for (MetaDataConstIterator iter = smd.metadata.begin(); iter != smd.metadata.end(); iter++) { this->set(iter->first, iter->second); } } /** * Clears this metadata and then copies all metadata from "smd" * * @param smd Metadata that is to be copied to "this". * */ void MetaData::replace(const MetaData& smd) { this->metadata = smd.metadata; } /** * Sets metadata. If a metadata entry named "name" already * exists, it is replaced. * * @param name Name of metadata entry. * @param value Value for metadata entry. * */ void MetaData::set(const AString& name, const AString& value) { MetaDataIterator namePos = this->metadata.find(name); if (namePos != this->metadata.end()) { if (namePos->second != value) { namePos->second = value; } } else { this->metadata.insert(std::make_pair(name, value)); } } /** * Set metadata with an integer value. * @param name - name of metadata. * @param value - value of metadata. * */ void MetaData::setInt( const AString& name, const int32_t value) { AString s = AString_number(value); this->set(name, s); } /** * Set metadata with an float value. * @param name - name of metadata. * @param value - value of metadata. * */ void MetaData::setFloat( const AString& name, const float value) { AString s = AString_number(value); this->set(name, s); } /** * Replace ALL of the metadata with the data in the given map. * * @param map * New metadata that replaces all existing metadata. */ void MetaData::replaceWithMap(const std::map& map) { this->metadata = map; } /** * @return ALL of the metadata in map. */ std::map MetaData::getAsMap() const { return this->metadata; } /** * Remove a metadata entry. * * @param name Name of metadata entry that is to be removed. * */ void MetaData::remove(const AString& name) { this->metadata.erase(name); } /** * See if a metadata entry "name" exists. * * @param name Name of metadata entry. * @return Returns true if the metadata entry "name" exists, else false. * */ bool MetaData::exists(const AString& name) const { if (this->metadata.find(name) != this->metadata.end()) { return true; } return false; } /** * Get a value for metadata entry. * * @param name Name of metadata entry. * @return The value of the metadata entry "name". If the * metadata entry "name" does not exist an empty * string is returned. * */ AString MetaData::get(const AString& name) const { MetaDataConstIterator iter = this->metadata.find(name); if (iter != this->metadata.end()) { return iter->second; } return ""; } /** * Get the metadata as an integer value. If the metadata does not exist * or its string representation is not a number, zero is returned. * @param name - name of metadata. * @param ok - is set to false if key not found, or value not integer * @return Integer value associated with the metadata. * */ int32_t MetaData::getInt(const AString& name, bool& ok) const { ok = false; AString s = this->get(name); if (s.length() > 0) { int32_t i = AString_toInt(s, ok); return i; } return 0; } /** * Get the metadata as an float value. If the metadata does not exist * or its string representation is not a number, zero is returned. * @param name - name of metadata. * @param ok - is set to false if key not found, or value not numeric * @return Float value associated with the metadata. * */ float MetaData::getFloat(const AString& name, bool& ok) const { ok = false; AString s = this->get(name); if (s.length() > 0) { float f = AString_toFloat(s, ok); return f; } return 0.0f; } /** * Get names of all metadata. * * @return List of all metadata names. * */ std::vector MetaData::getAllMetaDataNames() const { std::vector names; for (MetaDataConstIterator iter = this->metadata.begin(); iter != this->metadata.end(); iter++) { names.push_back(iter->first); } return names; } /** * Replace a metadata name. * @param oldName - old name of metadata. * @param newName - new name of metadata. * */ void MetaData::replaceName( const AString& oldName, const AString& newName) { MetaDataIterator iter = this->metadata.find(oldName); if (iter != this->metadata.end()) { AString value = iter->second; this->remove(oldName); this->set(newName, value); } } void MetaData::writeCiftiXML1(XmlWriter& xmlWriter) const { if (metadata.empty()) return;//don't write an empty tag if we have no metadata xmlWriter.writeStartElement("MetaData"); for (MetaDataConstIterator iter = metadata.begin(); iter != metadata.end(); ++iter) { xmlWriter.writeStartElement("MD"); xmlWriter.writeTextElement("Name", iter->first); xmlWriter.writeTextElement("Value", iter->second); xmlWriter.writeEndElement(); } xmlWriter.writeEndElement(); } void MetaData::writeCiftiXML2(XmlWriter& xmlWriter) const { writeCiftiXML1(xmlWriter); } void MetaData::readCiftiXML1(XmlReader& xml) { clear(); #ifdef CIFTILIB_USE_QT while (!xml.atEnd())//don't check the current element's name { xml.readNext(); if (xml.isStartElement()) { QStringRef name = xml.name(); if (name == "MD") { readEntry(xml); } else { throw CiftiException("unexpected tag name in MetaData: " + name.toString()); } } else if (xml.isEndElement()) { break; } } #else #ifdef CIFTILIB_USE_XMLPP bool done = xml.is_empty_element();//NOTE: because libxml++ will NOT give a separate close element for !!! while (!done && xml.read())//false means no node was available to read, it will throw on malformed xml { switch (xml.get_node_type()) { case XmlReader::Element: { AString name = xml.get_local_name(); if (name == "MD") { readEntry(xml); } else { throw CiftiException("unexpected tag name in MetaData: " + name); } break; } case XmlReader::EndElement: done = true; break; default: break; } } #else #error "not implemented" #endif #endif CiftiAssert(XmlReader_checkEndElement(xml, "MetaData")); } void MetaData::readCiftiXML2(XmlReader& xml) { readCiftiXML1(xml); } void MetaData::readEntry(XmlReader& xml) { AString key, value; bool haveKey = false, haveValue = false; #ifdef CIFTILIB_USE_QT while (!xml.atEnd())//don't check the current element's name { xml.readNext(); if (xml.isStartElement()) { QStringRef name = xml.name(); if (name == "Name") { if (haveKey) throw CiftiException("MD element has multiple Name elements"); key = xml.readElementText(); haveKey = true; } else if (name == "Value") { if (haveValue) throw CiftiException("MD element has multiple Value elements"); value = xml.readElementText(); haveValue = true; } else { throw CiftiException("unexpected element name in MD: " + name.toString()); } } else if (xml.isEndElement()) { break; } } #else #ifdef CIFTILIB_USE_XMLPP bool done = xml.is_empty_element();//NOTE: a element does NOT give a separate end element state!!! while (!done && xml.read()) { switch (xml.get_node_type()) { case XmlReader::Element: { AString name = xml.get_local_name(); if (name == "Name") { if (haveKey) throw CiftiException("MD element has multiple Name elements"); key = XmlReader_readElementText(xml); haveKey = true; } else if (name == "Value") { if (haveValue) throw CiftiException("MD element has multiple Value elements"); name = XmlReader_readElementText(xml); haveValue = true; } else { throw CiftiException("unexpected element name in MD: " + name); } break; } case XmlReader::EndElement: done = true; break; default: break; } } #else #error "not implemented" #endif #endif if (haveKey && haveValue) { if (exists(key)) { throw CiftiException("key '" + key + "' used more than once in MetaData"); } else { set(key, value); } } else { if (haveKey) { throw CiftiException("MD element has no Value element"); } else { if (haveValue) { throw CiftiException("MD element has no Name element"); } else { throw CiftiException("MD element has no Name or Value element"); } } } CiftiAssert(XmlReader_checkEndElement(xml, "MD")); } CiftiLib-1.6.0/src/Cifti/MetaData.h000066400000000000000000000064631373715117300167020ustar00rootroot00000000000000#ifndef __METADATA_H__ #define __METADATA_H__ /*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "Common/AString.h" #include "Common/XmlAdapter.h" #include #include #include #include namespace cifti { class MetaData { public: MetaData(); public: MetaData(const MetaData& o); MetaData& operator=(const MetaData& o); bool operator==(const MetaData& rhs) const; bool operator!=(const MetaData& rhs) const { return !((*this) == rhs); } virtual ~MetaData(); private: void copyHelper(const MetaData& o); void initializeMembersMetaData(); public: void clear(); void append(const MetaData& smd); void replace(const MetaData& smd); void set(const AString& name, const AString& value); void setInt(const AString& name, const int32_t value); void setFloat(const AString& name, const float value); void replaceWithMap(const std::map& map); std::map getAsMap() const; void remove(const AString& name); bool exists(const AString& name) const; AString get(const AString& name) const; int32_t getInt(const AString& name, bool& ok) const; float getFloat(const AString& name, bool& ok) const; std::vector getAllMetaDataNames() const; void writeCiftiXML1(XmlWriter& xmlWriter) const; void writeCiftiXML2(XmlWriter& xmlWriter) const;//for style, and in case it changes void readCiftiXML1(XmlReader& xml); void readCiftiXML2(XmlReader& xml); private: void readEntry(XmlReader& xml); void replaceName(const AString& oldName, const AString& newName); public: private: /**the metadata storage. */ std::map metadata; typedef std::map::iterator MetaDataIterator; typedef std::map::const_iterator MetaDataConstIterator; }; } // namespace #endif // __METADATA_H__ CiftiLib-1.6.0/src/Cifti/StructureEnum.cxx000066400000000000000000000517611373715117300204230ustar00rootroot00000000000000/*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "StructureEnum.h" #include "Common/CiftiAssert.h" #include "Common/CiftiException.h" using namespace cifti; std::vector StructureEnum::enumData; bool StructureEnum::initializedFlag = false; /** * Constructor. * * @param enumValue * An enumerated value. * @param integerCode * Integer code for this enumerated value. * * @param name * Name of enumerated value. * * @param guiName * User-friendly name for use in user-interface. */ StructureEnum::StructureEnum(const Enum enumValue, const AString& name, const AString& guiName) { this->enumValue = enumValue; this->name = name; this->guiName = guiName; } /** * Destructor. */ StructureEnum::~StructureEnum() { } /** * Initialize the enumerated metadata. */ void StructureEnum::initialize() { if (initializedFlag) { return; } initializedFlag = true; enumData.push_back(StructureEnum(CORTEX_LEFT, "CORTEX_LEFT", "CortexLeft")); enumData.push_back(StructureEnum(CORTEX_RIGHT, "CORTEX_RIGHT", "CortexRight")); enumData.push_back(StructureEnum(CEREBELLUM, "CEREBELLUM", "Cerebellum")); enumData.push_back(StructureEnum(ACCUMBENS_LEFT, "ACCUMBENS_LEFT", "AccumbensLeft")); enumData.push_back(StructureEnum(ACCUMBENS_RIGHT, "ACCUMBENS_RIGHT", "AccumbensRight")); enumData.push_back(StructureEnum(ALL, "ALL", "All")); enumData.push_back(StructureEnum(ALL_GREY_MATTER, "ALL_GREY_MATTER", "AllGreyMatter")); enumData.push_back(StructureEnum(ALL_WHITE_MATTER, "ALL_WHITE_MATTER", "AllWhiteMatter")); enumData.push_back(StructureEnum(AMYGDALA_LEFT, "AMYGDALA_LEFT", "AmygdalaLeft")); enumData.push_back(StructureEnum(AMYGDALA_RIGHT, "AMYGDALA_RIGHT", "AmygdalaRight")); enumData.push_back(StructureEnum(BRAIN_STEM, "BRAIN_STEM", "BrainStem")); enumData.push_back(StructureEnum(CAUDATE_LEFT, "CAUDATE_LEFT", "CaudateLeft")); enumData.push_back(StructureEnum(CAUDATE_RIGHT, "CAUDATE_RIGHT", "CaudateRight")); enumData.push_back(StructureEnum(CEREBELLAR_WHITE_MATTER_LEFT, "CEREBELLAR_WHITE_MATTER_LEFT", "CerebellarWhiteMatterLeft")); enumData.push_back(StructureEnum(CEREBELLAR_WHITE_MATTER_RIGHT, "CEREBELLAR_WHITE_MATTER_RIGHT", "CerebellarWhiteMatterRight")); enumData.push_back(StructureEnum(CEREBELLUM_LEFT, "CEREBELLUM_LEFT", "CerebellumLeft")); enumData.push_back(StructureEnum(CEREBELLUM_RIGHT, "CEREBELLUM_RIGHT", "CerebellumRight")); enumData.push_back(StructureEnum(CEREBRAL_WHITE_MATTER_LEFT, "CEREBRAL_WHITE_MATTER_LEFT", "CerebralWhiteMatterLeft")); enumData.push_back(StructureEnum(CEREBRAL_WHITE_MATTER_RIGHT, "CEREBRAL_WHITE_MATTER_RIGHT", "CerebralWhiteMatterRight")); enumData.push_back(StructureEnum(CORTEX, "CORTEX", "Cortex")); enumData.push_back(StructureEnum(DIENCEPHALON_VENTRAL_LEFT, "DIENCEPHALON_VENTRAL_LEFT", "DiencephalonVentralLeft")); enumData.push_back(StructureEnum(DIENCEPHALON_VENTRAL_RIGHT, "DIENCEPHALON_VENTRAL_RIGHT", "DiencephalonVentralRight")); enumData.push_back(StructureEnum(HIPPOCAMPUS_LEFT, "HIPPOCAMPUS_LEFT", "HippocampusLeft")); enumData.push_back(StructureEnum(HIPPOCAMPUS_RIGHT, "HIPPOCAMPUS_RIGHT", "HippocampusRight")); enumData.push_back(StructureEnum(INVALID, "INVALID", "Invalid")); enumData.push_back(StructureEnum(OTHER, "OTHER", "Other")); enumData.push_back(StructureEnum(OTHER_GREY_MATTER, "OTHER_GREY_MATTER", "OtherGreyMatter")); enumData.push_back(StructureEnum(OTHER_WHITE_MATTER, "OTHER_WHITE_MATTER", "OtherWhiteMatter")); enumData.push_back(StructureEnum(PALLIDUM_LEFT, "PALLIDUM_LEFT", "PallidumLeft")); enumData.push_back(StructureEnum(PALLIDUM_RIGHT, "PALLIDUM_RIGHT", "PallidumRight")); enumData.push_back(StructureEnum(PUTAMEN_LEFT, "PUTAMEN_LEFT", "PutamenLeft")); enumData.push_back(StructureEnum(PUTAMEN_RIGHT, "PUTAMEN_RIGHT", "PutamenRight")); enumData.push_back(StructureEnum(THALAMUS_LEFT, "THALAMUS_LEFT", "ThalamusLeft")); enumData.push_back(StructureEnum(THALAMUS_RIGHT, "THALAMUS_RIGHT", "ThalamusRight")); } /** * Find the data for and enumerated value. * @param enumValue * The enumerated value. * @return Pointer to data for this enumerated type * or NULL if no data for type or if type is invalid. */ const StructureEnum* StructureEnum::findData(const Enum enumValue) { if (initializedFlag == false) initialize(); size_t num = enumData.size(); for (size_t i = 0; i < num; i++) { const StructureEnum* d = &enumData[i]; if (d->enumValue == enumValue) { return d; } } throw CiftiException("unable to find enumeration value " + AString_number(enumValue)); } /** * Get a string representation of the enumerated type. * @param enumValue * Enumerated value. * @return * String representing enumerated value. */ AString StructureEnum::toName(Enum enumValue) { if (initializedFlag == false) initialize(); const StructureEnum* enumInstance = findData(enumValue); return enumInstance->name; } /** * Get an enumerated value corresponding to its name. * @param name * Name of enumerated value. * @param isValidOut * If not NULL, it is set indicating that a * enum value exists for the input name. * @return * Enumerated value. */ StructureEnum::Enum StructureEnum::fromName(const AString& name, bool* isValidOut) { if (initializedFlag == false) initialize(); bool validFlag = false; Enum enumValue = INVALID; for (std::vector::iterator iter = enumData.begin(); iter != enumData.end(); iter++) { const StructureEnum& d = *iter; if (d.name == name) { enumValue = d.enumValue; validFlag = true; break; } } if (isValidOut != 0) { *isValidOut = validFlag; } else if (validFlag == false) { throw CiftiException("Name " + name + "failed to match enumerated value for type StructureEnum"); } return enumValue; } /** * Get a GUI string representation of the enumerated type. * @param enumValue * Enumerated value. * @return * String representing enumerated value. */ AString StructureEnum::toGuiName(Enum enumValue) { if (initializedFlag == false) initialize(); const StructureEnum* enumInstance = findData(enumValue); return enumInstance->guiName; } /** * Get an enumerated value corresponding to its GUI name. * @param guiName * Name of enumerated value. * @param isValidOut * If not NULL, it is set indicating that a * enum value exists for the input name. * @return * Enumerated value. */ StructureEnum::Enum StructureEnum::fromGuiName(const AString& guiName, bool* isValidOut) { if (initializedFlag == false) initialize(); bool validFlag = false; Enum enumValue = INVALID; for (std::vector::iterator iter = enumData.begin(); iter != enumData.end(); iter++) { const StructureEnum& d = *iter; if (d.guiName == guiName) { enumValue = d.enumValue; validFlag = true; break; } } if (isValidOut != 0) { *isValidOut = validFlag; } else if (validFlag == false) { throw CiftiException("guiName " + guiName + "failed to match enumerated value for type StructureEnum"); } return enumValue; } /** * Get a GUI string representation of the enumerated type. * @param enumValue * Enumerated value. * @return * String representing enumerated value. */ AString StructureEnum::toCiftiName(Enum enumValue) { if (initializedFlag == false) initialize(); const StructureEnum* enumInstance = findData(enumValue); return "CIFTI_STRUCTURE_" + enumInstance->name; } /** * Get an enumerated value corresponding to its GUI name. * @param ciftiName * Name of enumerated value. * @param isValidOut * If not NULL, it is set indicating that a * enum value exists for the input name. * @return * Enumerated value. */ StructureEnum::Enum StructureEnum::fromCiftiName(const AString& ciftiName, bool* isValidOut) { if (initializedFlag == false) initialize(); bool validFlag = false; Enum enumValue = INVALID; if (AString_substr(ciftiName, 0, 16) == "CIFTI_STRUCTURE_") { AString toMatch = AString_substr(ciftiName, 16); for (std::vector::iterator iter = enumData.begin(); iter != enumData.end(); iter++) { const StructureEnum& d = *iter; if (toMatch == d.name) { enumValue = d.enumValue; validFlag = true; break; } } } if (isValidOut != 0) { *isValidOut = validFlag; } else if (validFlag == false) { throw CiftiException("ciftiName " + ciftiName + "failed to match enumerated value for type StructureEnum"); } return enumValue; } /** * Get all of the enumerated type values. The values can be used * as parameters to toXXX() methods to get associated metadata. * * @param allEnums * A vector that is OUTPUT containing all of the enumerated values * except ALL. */ void StructureEnum::getAllEnums(std::vector& allEnums) { if (initializedFlag == false) initialize(); allEnums.clear(); for (std::vector::iterator iter = enumData.begin(); iter != enumData.end(); iter++) { StructureEnum::Enum value =iter->enumValue; if (value == ALL) { // nothing } else { allEnums.push_back(iter->enumValue); } } } /** * Is this 'right' structure? * @param enumValue * The enumerated type. * @return * true if the enumerated value represents a 'right' structure, else false. */ bool StructureEnum::isRight(const Enum enumValue) { switch (enumValue) { case ACCUMBENS_RIGHT: case AMYGDALA_RIGHT: case CAUDATE_RIGHT: case CEREBELLAR_WHITE_MATTER_RIGHT: case CEREBELLUM_RIGHT: case CEREBRAL_WHITE_MATTER_RIGHT: case CORTEX_RIGHT: case DIENCEPHALON_VENTRAL_RIGHT: case HIPPOCAMPUS_RIGHT: case PALLIDUM_RIGHT: case PUTAMEN_RIGHT: case THALAMUS_RIGHT: return true; case ALL://avoid default so smart compilers can warn when a new structure isn't added here case ALL_GREY_MATTER: case ALL_WHITE_MATTER: case BRAIN_STEM: case CEREBELLUM: case CORTEX: case INVALID: case OTHER: case OTHER_GREY_MATTER: case OTHER_WHITE_MATTER: return false;//visually separate none/both from opposite cases case ACCUMBENS_LEFT: case AMYGDALA_LEFT: case CAUDATE_LEFT: case CEREBELLAR_WHITE_MATTER_LEFT: case CEREBELLUM_LEFT: case CEREBRAL_WHITE_MATTER_LEFT: case CORTEX_LEFT: case DIENCEPHALON_VENTRAL_LEFT: case HIPPOCAMPUS_LEFT: case PALLIDUM_LEFT: case PUTAMEN_LEFT: case THALAMUS_LEFT: return false; } CiftiAssert(false); return false; } /** * Is this 'left' structure? * @param enumValue * The enumerated type. * @return * true if the enumerated value represents a 'left' structure, else false. */ bool StructureEnum::isLeft(const Enum enumValue) { switch (enumValue) { case ACCUMBENS_LEFT: case AMYGDALA_LEFT: case CAUDATE_LEFT: case CEREBELLAR_WHITE_MATTER_LEFT: case CEREBELLUM_LEFT: case CEREBRAL_WHITE_MATTER_LEFT: case CORTEX_LEFT: case DIENCEPHALON_VENTRAL_LEFT: case HIPPOCAMPUS_LEFT: case PALLIDUM_LEFT: case PUTAMEN_LEFT: case THALAMUS_LEFT: return true; case ALL://avoid default so smart compilers can warn when a new structure isn't added here case ALL_GREY_MATTER: case ALL_WHITE_MATTER: case BRAIN_STEM: case CEREBELLUM: case CORTEX: case INVALID: case OTHER: case OTHER_GREY_MATTER: case OTHER_WHITE_MATTER: return false;//visually separate none/both from opposite cases case ACCUMBENS_RIGHT: case AMYGDALA_RIGHT: case CAUDATE_RIGHT: case CEREBELLAR_WHITE_MATTER_RIGHT: case CEREBELLUM_RIGHT: case CEREBRAL_WHITE_MATTER_RIGHT: case CORTEX_RIGHT: case DIENCEPHALON_VENTRAL_RIGHT: case HIPPOCAMPUS_RIGHT: case PALLIDUM_RIGHT: case PUTAMEN_RIGHT: case THALAMUS_RIGHT: return false; } CiftiAssert(false); return false; } /** * Are the two structure's cortices and contralateral (is one CortexLeft * and one CortexRight)? * * @param enumValueA * First structure enumerated type. * @param enumValueB * Second structure enumerated type. * @return * True if one is CORTEX_LEFT and one is CORTEX_LEFT. */ bool StructureEnum::isCortexContralateral(const Enum enumValueA, const Enum enumValueB) { if ((enumValueA == CORTEX_LEFT) && (enumValueB == CORTEX_RIGHT)) { return true; } if ((enumValueA == CORTEX_RIGHT) && (enumValueB == CORTEX_LEFT)) { return true; } return false; } /** * For the given structure return its contralateral structure. * Thats is, if this is a left/right structure return its * corresponding structure from the other side. * * @param enumValue * Structure for which contralateral structure is desired. * @return The contralateral structure or NULL if it does * not have a contralateral structure. */ StructureEnum::Enum StructureEnum::getContralateralStructure(const Enum enumValue) { StructureEnum::Enum contralateralStructure = INVALID; switch (enumValue) { case ACCUMBENS_LEFT: contralateralStructure = ACCUMBENS_RIGHT; break; case ACCUMBENS_RIGHT: contralateralStructure = ACCUMBENS_LEFT; break; case ALL: contralateralStructure = INVALID; break; case ALL_GREY_MATTER: break; case ALL_WHITE_MATTER: break; case AMYGDALA_LEFT: contralateralStructure = AMYGDALA_RIGHT; break; case AMYGDALA_RIGHT: contralateralStructure = AMYGDALA_LEFT; break; case BRAIN_STEM: contralateralStructure = INVALID; break; case CAUDATE_LEFT: contralateralStructure = CAUDATE_RIGHT; break; case CAUDATE_RIGHT: contralateralStructure = CAUDATE_LEFT; break; case CEREBELLAR_WHITE_MATTER_LEFT: contralateralStructure= CEREBELLAR_WHITE_MATTER_RIGHT; break; case CEREBELLAR_WHITE_MATTER_RIGHT: contralateralStructure = CEREBELLAR_WHITE_MATTER_LEFT; break; case CEREBELLUM: contralateralStructure = INVALID; break; case CEREBELLUM_LEFT: contralateralStructure = CEREBELLUM_RIGHT; break; case CEREBELLUM_RIGHT: contralateralStructure = CEREBELLUM_LEFT; break; case CEREBRAL_WHITE_MATTER_LEFT: contralateralStructure = CEREBELLAR_WHITE_MATTER_RIGHT; break; case CEREBRAL_WHITE_MATTER_RIGHT: contralateralStructure = CEREBELLAR_WHITE_MATTER_LEFT; break; case CORTEX: break; case CORTEX_LEFT: contralateralStructure = CORTEX_RIGHT; break; case CORTEX_RIGHT: contralateralStructure = CORTEX_LEFT; break; case DIENCEPHALON_VENTRAL_LEFT: contralateralStructure = DIENCEPHALON_VENTRAL_RIGHT; break; case DIENCEPHALON_VENTRAL_RIGHT: contralateralStructure = DIENCEPHALON_VENTRAL_LEFT; break; case HIPPOCAMPUS_LEFT: contralateralStructure = HIPPOCAMPUS_RIGHT; break; case HIPPOCAMPUS_RIGHT: contralateralStructure = HIPPOCAMPUS_LEFT; break; case INVALID: contralateralStructure = INVALID; break; case PALLIDUM_LEFT: contralateralStructure = PALLIDUM_RIGHT; break; case PALLIDUM_RIGHT: contralateralStructure = PALLIDUM_LEFT; break; case OTHER: contralateralStructure = INVALID; break; case OTHER_GREY_MATTER: break; case OTHER_WHITE_MATTER: break; case PUTAMEN_LEFT: contralateralStructure = PUTAMEN_RIGHT; break; case PUTAMEN_RIGHT: contralateralStructure = PUTAMEN_LEFT; break; case THALAMUS_LEFT: contralateralStructure = THALAMUS_RIGHT; break; case THALAMUS_RIGHT: contralateralStructure = THALAMUS_LEFT; break; } return contralateralStructure; } CiftiLib-1.6.0/src/Cifti/StructureEnum.h000066400000000000000000000124171373715117300200430ustar00rootroot00000000000000#ifndef __STRUCTURE_ENUM__H_ #define __STRUCTURE_ENUM__H_ /*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "Common/AString.h" #include #include namespace cifti { /** * \brief Enumerated type for a structure in a brain. * * Enumerated types for the individual structures in a brain. */ class StructureEnum { public: /** * Enumerated values. */ enum Enum { /** Invalid */ INVALID, /** All Strucures */ ALL, /** All white matter */ ALL_WHITE_MATTER, /** All grey matter */ ALL_GREY_MATTER, /** Left Nucleus Accumbens */ ACCUMBENS_LEFT, /** Right Nucleus Accumbens */ ACCUMBENS_RIGHT, /** Left Amygdala */ AMYGDALA_LEFT, /** Right Amygdala */ AMYGDALA_RIGHT, /** Brain Stem */ BRAIN_STEM, /** Left Caudate */ CAUDATE_LEFT, /** Right Caudate */ CAUDATE_RIGHT, /** Cerebellar white matter left */ CEREBELLAR_WHITE_MATTER_LEFT, /** Cerebellar white matter right */ CEREBELLAR_WHITE_MATTER_RIGHT, /** Cerebellum */ CEREBELLUM, /** Left Cerebellum */ CEREBELLUM_LEFT, /** Right Cerebellum */ CEREBELLUM_RIGHT, /** Cerebral white matter left */ CEREBRAL_WHITE_MATTER_LEFT, /** Cerebral white matter right */ CEREBRAL_WHITE_MATTER_RIGHT, /** Cortex not specified */ CORTEX, /** Left Cerebral Cortex */ CORTEX_LEFT, /** Right Cerebral Cortex*/ CORTEX_RIGHT, /** Left Ventral Diencephalon */ DIENCEPHALON_VENTRAL_LEFT, /** Right Ventral Diencephalon */ DIENCEPHALON_VENTRAL_RIGHT, /** Left Hippocampus */ HIPPOCAMPUS_LEFT, /** Right Hippocampus */ HIPPOCAMPUS_RIGHT, /** Left Pallidum */ PALLIDUM_LEFT, /** Right Pallidum */ PALLIDUM_RIGHT, /** Other structure not specified */ OTHER, /** Other grey matter */ OTHER_GREY_MATTER, /** Other white matter */ OTHER_WHITE_MATTER, /** Left Putamen */ PUTAMEN_LEFT, /** Right Putamen */ PUTAMEN_RIGHT, /** Left Thalamus */ THALAMUS_LEFT, /** Right Thalamus */ THALAMUS_RIGHT }; ~StructureEnum(); static AString toName(Enum enumValue); static Enum fromName(const AString& name, bool* isValidOut); static AString toGuiName(Enum enumValue); static Enum fromGuiName(const AString& guiName, bool* isValidOut); static AString toCiftiName(Enum enumValue); static Enum fromCiftiName(const AString& ciftiName, bool* isValidOut); static void getAllEnums(std::vector& allEnums); static bool isRight(const Enum enumValue); static bool isLeft(const Enum enumValue); static bool isCortexContralateral(const Enum enumValueA, const Enum enumValueB); static Enum getContralateralStructure(const Enum enumValue); private: StructureEnum(const Enum enumValue, const AString& name, const AString& guiName); static const StructureEnum* findData(const Enum enumValue); /** Holds all instance of enum values and associated metadata */ static std::vector enumData; /** Initialize instances that contain the enum values and metadata */ static void initialize(); /** Indicates instance of enum values and metadata have been initialized */ static bool initializedFlag; /** The enumerated type value for an instance */ Enum enumValue; /** The name, a text string that is identical to the enumerated value */ AString name; /** A user-friendly name that is displayed in the GUI */ AString guiName; }; } // namespace #endif //__STRUCTURE_ENUM__H_ CiftiLib-1.6.0/src/Cifti/VolumeSpace.cxx000066400000000000000000000454531373715117300200220ustar00rootroot00000000000000/*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "VolumeSpace.h" #include "Common/CiftiAssert.h" #include "Common/CiftiException.h" #include "Common/FloatMatrix.h" #ifdef CIFTILIB_USE_QT #include #include #else #ifdef CIFTILIB_USE_XMLPP #else #error "not implemented" #endif #endif #include #include #include using namespace std; using namespace cifti; VolumeSpace::VolumeSpace() { m_dims[0] = 0; m_dims[1] = 0; m_dims[2] = 0; m_sform = FloatMatrix::identity(4).getMatrix(); computeInverse(); } VolumeSpace::VolumeSpace(const int64_t dims[3], const vector >& sform) { setSpace(dims, sform); } VolumeSpace::VolumeSpace(const int64_t dims[3], const float sform[12]) { setSpace(dims, sform); } void VolumeSpace::setSpace(const int64_t dims[3], const vector >& sform) { if (sform.size() < 3 || sform.size() > 4) { CiftiAssert(false); throw CiftiException("VolumeSpace initialized with wrong size sform"); } for (int i = 0; i < (int)sform.size(); ++i) { if (sform[i].size() != 4) { CiftiAssert(false); throw CiftiException("VolumeSpace initialized with wrong size sform"); } } m_dims[0] = dims[0]; m_dims[1] = dims[1]; m_dims[2] = dims[2]; m_sform = sform; m_sform.resize(4);//make sure its 4x4 m_sform[3].resize(4); m_sform[3][0] = 0.0f;//force the fourth row to be correct m_sform[3][1] = 0.0f; m_sform[3][2] = 0.0f; m_sform[3][3] = 1.0f; computeInverse(); } void VolumeSpace::setSpace(const int64_t dims[3], const float sform[12]) { m_sform = FloatMatrix::identity(4).getMatrix(); for (int i = 0; i < 3; ++i) { for (int j = 0; j < 4; ++j) { m_sform[i][j] = sform[i * 4 + j]; } } m_dims[0] = dims[0]; m_dims[1] = dims[1]; m_dims[2] = dims[2]; computeInverse(); } void VolumeSpace::computeInverse() { m_inverse = FloatMatrix(m_sform).inverse().getMatrix(); } void VolumeSpace::spaceToIndex(const float& coordIn1, const float& coordIn2, const float& coordIn3, float& indexOut1, float& indexOut2, float& indexOut3) const { indexOut1 = coordIn1 * m_inverse[0][0] + coordIn2 * m_inverse[0][1] + coordIn3 * m_inverse[0][2] + m_inverse[0][3]; indexOut2 = coordIn1 * m_inverse[1][0] + coordIn2 * m_inverse[1][1] + coordIn3 * m_inverse[1][2] + m_inverse[1][3]; indexOut3 = coordIn1 * m_inverse[2][0] + coordIn2 * m_inverse[2][1] + coordIn3 * m_inverse[2][2] + m_inverse[2][3]; } void VolumeSpace::enclosingVoxel(const float& coordIn1, const float& coordIn2, const float& coordIn3, int64_t& indexOut1, int64_t& indexOut2, int64_t& indexOut3) const { float tempInd1, tempInd2, tempInd3; spaceToIndex(coordIn1, coordIn2, coordIn3, tempInd1, tempInd2, tempInd3); indexOut1 = (int64_t)floor(0.5f + tempInd1); indexOut2 = (int64_t)floor(0.5f + tempInd2); indexOut3 = (int64_t)floor(0.5f + tempInd3); } bool VolumeSpace::matchesVolumeSpace(const VolumeSpace& right) const { for (int i = 0; i < 3; ++i) { if (m_dims[i] != right.m_dims[i]) { return false; } } const float TOLER_RATIO = 0.999f;//ratio a spacing element can mismatch by for (int i = 0; i < 3; ++i) { for (int j = 0; j < 4; ++j) { float leftelem = m_sform[i][j]; float rightelem = right.m_sform[i][j]; if ((leftelem != rightelem) && (leftelem == 0.0f || rightelem == 0.0f || (leftelem / rightelem < TOLER_RATIO || rightelem / leftelem < TOLER_RATIO))) { return false; } } } return true; } bool VolumeSpace::operator==(const VolumeSpace& right) const { for (int i = 0; i < 3; ++i) { if (m_dims[i] != right.m_dims[i]) { return false; } } for (int i = 0; i < 3; ++i) { for (int j = 0; j < 4; ++j) { if (m_sform[i][j] != right.m_sform[i][j]) { return false; } } } return true; } void VolumeSpace::getSpacingVectors(Vector3D& iStep, Vector3D& jStep, Vector3D& kStep, Vector3D& origin) const { FloatMatrix(m_sform).getAffineVectors(iStep, jStep, kStep, origin); } void VolumeSpace::getOrientAndSpacingForPlumb(OrientTypes* orientOut, float* spacingOut, float* originOut) const { CiftiAssert(isPlumb()); if (!isPlumb()) { throw CiftiException("orientation and spacing asked for on non-plumb volume space");//this will fail MISERABLY on non-plumb volumes, so throw otherwise } for (int i = 0; i < 3; ++i) { for (int j = 0; j < 3; ++j) { if (m_sform[i][j] != 0.0f) { spacingOut[j] = m_sform[i][j]; originOut[j] = m_sform[i][3]; bool negative = (m_sform[i][j] < 0.0f); switch (i) { case 0: //left/right orientOut[j] = (negative ? RIGHT_TO_LEFT : LEFT_TO_RIGHT); break; case 1: //forward/back orientOut[j] = (negative ? ANTERIOR_TO_POSTERIOR : POSTERIOR_TO_ANTERIOR); break; case 2: //up/down orientOut[j] = (negative ? SUPERIOR_TO_INFERIOR : INFERIOR_TO_SUPERIOR); break; default: //will never get called break; }; } } } } void VolumeSpace::getOrientation(VolumeSpace::OrientTypes orientOut[3]) const { Vector3D ivec, jvec, kvec, origin; getSpacingVectors(ivec, jvec, kvec, origin); int next = 1, bestarray[3] = {0, 0, 0}; float bestVal = -1.0f;//make sure at least the first test trips true, if there is a zero spacing vector it will default to report LPI for (int first = 0; first < 3; ++first)//brute force search for best fit - only 6 to try { int third = 3 - first - next; float testVal = abs(ivec[first] * jvec[next] * kvec[third]); if (testVal > bestVal) { bestVal = testVal; bestarray[0] = first; bestarray[1] = next; } testVal = abs(ivec[first] * jvec[third] * kvec[next]); if (testVal > bestVal) { bestVal = testVal; bestarray[0] = first; bestarray[1] = third; } next = 0; } bestarray[2] = 3 - bestarray[0] - bestarray[1]; Vector3D spaceHats[3];//to translate into enums without casting spaceHats[0] = ivec; spaceHats[1] = jvec; spaceHats[2] = kvec; for (int i = 0; i < 3; ++i) { bool neg = (spaceHats[i][bestarray[i]] < 0.0f); switch (bestarray[i]) { case 0: if (neg) { orientOut[i] = RIGHT_TO_LEFT; } else { orientOut[i] = LEFT_TO_RIGHT; } break; case 1: if (neg) { orientOut[i] = ANTERIOR_TO_POSTERIOR; } else { orientOut[i] = POSTERIOR_TO_ANTERIOR; } break; case 2: if (neg) { orientOut[i] = SUPERIOR_TO_INFERIOR; } else { orientOut[i] = INFERIOR_TO_SUPERIOR; } break; default: CiftiAssert(0); } } } bool VolumeSpace::isPlumb() const { char axisUsed = 0; char indexUsed = 0; for (int i = 0; i < 3; ++i) { for (int j = 0; j < 3; ++j) { if (m_sform[i][j] != 0.0f) { if (axisUsed & (1< mandAttrs(1, "VolumeDimensions"), transAttrs(3); transAttrs[0] = "UnitsXYZ"; transAttrs[1] = "DataSpace";//we ignore the values in these, but they are required by cifti-1, so check that they exist transAttrs[2] = "TransformedSpace"; XmlAttributesResult myAttrs = XmlReader_parseAttributes(xml, mandAttrs); vector dimStrings = AString_split(myAttrs.mandatoryVals[0], ','); if (dimStrings.size() != 3) { throw CiftiException("VolumeDimensions attribute of Volume must contain exactly two commas"); } int64_t newDims[3];//don't parse directly into the internal variables bool ok = false; for (int i = 0; i < 3; ++i) { newDims[i] = AString_toInt(dimStrings[i], ok); if (!ok) { throw CiftiException("noninteger found in VolumeDimensions attribute of Volume: " + dimStrings[i]); } if (newDims[i] < 1) { throw CiftiException("found bad value in VolumeDimensions attribute of Volume: " + dimStrings[i]); } } if (!XmlReader_readNextStartElement(xml)) { throw CiftiException("failed to find TransformationMatrixVoxelIndicesIJKtoXYZ element in Volume"); } if (XmlReader_elementName(xml) != "TransformationMatrixVoxelIndicesIJKtoXYZ") { throw CiftiException("unexpected element in Volume: " + XmlReader_elementName(xml)); } XmlAttributesResult transAttrsRes = XmlReader_parseAttributes(xml, transAttrs); float mult = 0.0f; if (transAttrsRes.mandatoryVals[0] == "NIFTI_UNITS_MM") { mult = 1.0f; } else if (transAttrsRes.mandatoryVals[0] == "NIFTI_UNITS_MICRON") { mult = 0.001f; } else { throw CiftiException("unrecognized value for UnitsXYZ in TransformationMatrixVoxelIndicesIJKtoXYZ: " + transAttrsRes.mandatoryVals[0]); } AString accum = XmlReader_readElementText(xml); #ifdef CIFTILIB_USE_QT if (xml.hasError()) return; #endif vector matrixStrings = AString_split_whitespace(accum); if (matrixStrings.size() != 16) { throw CiftiException("text content of TransformationMatrixVoxelIndicesIJKtoXYZ must have exactly 16 numbers separated by whitespace"); } FloatMatrix newsform = FloatMatrix::zeros(4, 4); for (int j = 0; j < 4; ++j) { for (int i = 0; i < 4; ++i) { newsform[j][i] = AString_toFloat(matrixStrings[i + j * 4], ok); if (!ok) { throw CiftiException("non-number in text of TransformationMatrixVoxelIndicesIJKtoXYZ: " + matrixStrings[i + j * 4]); } } } if (newsform[3][0] != 0.0f || newsform[3][1] != 0.0f || newsform[3][2] != 0.0f || newsform[3][3] != 1.0f)//yes, using equals, because those are all exact in float { cerr << "last row of matrix in TransformationMatrixVoxelIndicesIJKtoXYZ is not 0 0 0 1" << endl;//not an exception, because some cifti-1 exist with this wrong } if (XmlReader_readNextStartElement(xml))//find Volume end element { throw CiftiException("unexpected element in Volume: " + XmlReader_elementName(xml)); } newsform *= mult;//apply units newsform[3][3] = 1.0f;//reset [3][3], since it isn't spatial setSpace(newDims, newsform.getMatrix()); CiftiAssert(XmlReader_checkEndElement(xml, "Volume")); } void VolumeSpace::readCiftiXML2(XmlReader& xml) {//we changed stuff, so separate code vector mandAttrs(1, "VolumeDimensions"), transAttrs(1, "MeterExponent"); XmlAttributesResult myAttrs = XmlReader_parseAttributes(xml, mandAttrs); vector dimStrings = AString_split(myAttrs.mandatoryVals[0], ','); if (dimStrings.size() != 3) { throw CiftiException("VolumeDimensions attribute of Volume must contain exactly two commas"); } int64_t newDims[3];//don't parse directly into the internal variables bool ok = false; for (int i = 0; i < 3; ++i) { newDims[i] = AString_toInt(dimStrings[i], ok); if (!ok) { throw CiftiException("noninteger found in VolumeDimensions attribute of Volume: " + dimStrings[i]); } if (newDims[i] < 1) { throw CiftiException("found bad value in VolumeDimensions attribute of Volume: " + dimStrings[i]); } } if (!XmlReader_readNextStartElement(xml)) { throw CiftiException("failed to find TransformationMatrixVoxelIndicesIJKtoXYZ element in Volume"); } if (XmlReader_elementName(xml) != "TransformationMatrixVoxelIndicesIJKtoXYZ") { throw CiftiException("unexpected element in Volume: " + XmlReader_elementName(xml)); } XmlAttributesResult transAttrsRes = XmlReader_parseAttributes(xml, transAttrs); int exponent = AString_toInt(transAttrsRes.mandatoryVals[0], ok); if (!ok) { throw CiftiException("noninteger value for MeterExponent in TransformationMatrixVoxelIndicesIJKtoXYZ: " + transAttrsRes.mandatoryVals[0]); } float mult = pow(10.0f, exponent + 3);//because our internal units are mm AString accum = XmlReader_readElementText(xml); #ifdef CIFTILIB_USE_QT if (xml.hasError()) return; #endif vector matrixStrings = AString_split_whitespace(accum); if (matrixStrings.size() != 16) { throw CiftiException("text content of TransformationMatrixVoxelIndicesIJKtoXYZ must have exactly 16 numbers separated by whitespace"); } FloatMatrix newsform = FloatMatrix::zeros(4, 4); for (int j = 0; j < 4; ++j) { for (int i = 0; i < 4; ++i) { newsform[j][i] = AString_toFloat(matrixStrings[i + j * 4], ok); if (!ok) { throw CiftiException("non-number in text of TransformationMatrixVoxelIndicesIJKtoXYZ: " + matrixStrings[i + j * 4]); } } } if (newsform[3][0] != 0.0f || newsform[3][1] != 0.0f || newsform[3][2] != 0.0f || newsform[3][3] != 1.0f)//yes, using equals, because those are all exact in float { throw CiftiException("last row of matrix in TransformationMatrixVoxelIndicesIJKtoXYZ must be 0 0 0 1"); } if (XmlReader_readNextStartElement(xml))//find Volume end element { throw CiftiException("unexpected element in Volume: " + XmlReader_elementName(xml)); } newsform *= mult;//apply units newsform[3][3] = 1.0f;//reset [3][3], since it isn't spatial setSpace(newDims, newsform.getMatrix()); CiftiAssert(XmlReader_checkEndElement(xml, "Volume")); } void VolumeSpace::writeCiftiXML1(XmlWriter& xml) const { xml.writeStartElement("Volume"); AString dimString = AString_number(m_dims[0]) + "," + AString_number(m_dims[1]) + "," + AString_number(m_dims[2]); xml.writeAttribute("VolumeDimensions", dimString); xml.writeStartElement("TransformationMatrixVoxelIndicesIJKtoXYZ"); xml.writeAttribute("DataSpace", "NIFTI_XFORM_UNKNOWN");//meaningless attribute xml.writeAttribute("TransformedSpace", "NIFTI_XFORM_UNKNOWN");//removed in CIFTI-2, but apparently workbench has been writing this value for CIFTI-1 xml.writeAttribute("UnitsXYZ", "NIFTI_UNITS_MM");//only other choice in cifti-1 is micron, which we will probably never need in cifti-1 AString matrixString; for (int j = 0; j < 3; ++j) { matrixString += "\n"; for (int i = 0; i < 4; ++i) { matrixString += AString_number_fixed(m_sform[j][i], 7) + " "; } } matrixString += "\n"; for (int i = 0; i < 3; ++i) { matrixString += AString_number_fixed(0.0f, 7) + " "; } matrixString += AString_number_fixed(1.0f, 7); xml.writeCharacters(matrixString); xml.writeEndElement();//Transfor... xml.writeEndElement();//Volume } void VolumeSpace::writeCiftiXML2(XmlWriter& xml) const { xml.writeStartElement("Volume"); AString dimString = AString_number(m_dims[0]) + "," + AString_number(m_dims[1]) + "," + AString_number(m_dims[2]); xml.writeAttribute("VolumeDimensions", dimString); xml.writeStartElement("TransformationMatrixVoxelIndicesIJKtoXYZ"); Vector3D vecs[4]; getSpacingVectors(vecs[0], vecs[1], vecs[2], vecs[3]); float minLength = vecs[0].length(); for (int i = 1; i < 3; ++i) { minLength = min(minLength, vecs[i].length()); } int myExponent = -3;//if we have a singular spatial dimension somehow, just use mm if (minLength != 0.0f) { myExponent = 3 * (int)floor((log10(minLength) - log10(50.0f)) / 3.0f);//some magic to get the exponent that is a multiple of 3 that puts the length of the smallest spacing vector in [0.05, 50] } float multiplier = pow(10.0f, -3 - myExponent);//conversion factor from mm xml.writeAttribute("MeterExponent", AString_number(myExponent)); AString matrixString; for (int j = 0; j < 3; ++j) { matrixString += "\n"; for (int i = 0; i < 4; ++i) { matrixString += AString_number_fixed(m_sform[j][i] * multiplier, 7) + " "; } } matrixString += "\n"; for (int i = 0; i < 3; ++i) { matrixString += AString_number_fixed(0.0f, 7) + " "; } matrixString += AString_number_fixed(1.0f, 7);//doesn't get multiplied, because it isn't spatial xml.writeCharacters(matrixString); xml.writeEndElement();//Transfor... xml.writeEndElement();//Volume } CiftiLib-1.6.0/src/Cifti/VolumeSpace.h000066400000000000000000000206401373715117300174360ustar00rootroot00000000000000#ifndef __VOLUME_SPACE_H__ #define __VOLUME_SPACE_H__ /*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "Common/Vector3D.h" #include "Common/XmlAdapter.h" #include "stdint.h" #include namespace cifti { class VolumeSpace { int64_t m_dims[3]; std::vector > m_sform, m_inverse; void computeInverse(); public: enum OrientTypes { LEFT_TO_RIGHT = 0, RIGHT_TO_LEFT = 4, POSTERIOR_TO_ANTERIOR = 1, ANTERIOR_TO_POSTERIOR = 5, INFERIOR_TO_SUPERIOR = 2, SUPERIOR_TO_INFERIOR = 6 }; VolumeSpace(); VolumeSpace(const int64_t dims[3], const std::vector >& sform); VolumeSpace(const int64_t dims[3], const float sform[12]); void setSpace(const int64_t dims[3], const std::vector >& sform); void setSpace(const int64_t dims[3], const float sform[12]); const int64_t* getDims() const { return m_dims; } const std::vector >& getSform() const { return m_sform; } void getSpacingVectors(Vector3D& iStep, Vector3D& jStep, Vector3D& kStep, Vector3D& origin) const; bool matchesVolumeSpace(const VolumeSpace& right) const;//allows slight mismatches bool operator==(const VolumeSpace& right) const;//requires that it be exact bool operator!=(const VolumeSpace& right) const { return !(*this == right); } ///returns true if volume space is not skew, and each axis and index is separate bool isPlumb() const; ///returns orientation, spacing, and center (spacing/center can be negative, spacing/center is LPI rearranged to ijk (first dimension uses first element), will assert false if isOblique is true) void getOrientAndSpacingForPlumb(OrientTypes* orientOut, float* spacingOut, float* originOut) const; ///get just orientation, even for non-plumb volumes void getOrientation(OrientTypes orientOut[3]) const; ///returns coordinate triplet of an index triplet template inline void indexToSpace(const T* indexIn, float* coordOut) const { indexToSpace(indexIn[0], indexIn[1], indexIn[2], coordOut[0], coordOut[1], coordOut[2]); } ///returns coordinate triplet of three indices template inline void indexToSpace(const T& indexIn1, const T& indexIn2, const T& indexIn3, float* coordOut) const { indexToSpace(indexIn1, indexIn2, indexIn3, coordOut[0], coordOut[1], coordOut[2]); } ///returns three coordinates of an index triplet template inline void indexToSpace(const T* indexIn, float& coordOut1, float& coordOut2, float& coordOut3) const { indexToSpace(indexIn[0], indexIn[1], indexIn[2], coordOut1, coordOut2, coordOut3); } ///returns three coordinates of three indices template void indexToSpace(const T& indexIn1, const T& indexIn2, const T& indexIn3, float& coordOut1, float& coordOut2, float& coordOut3) const; ///returns floating point index triplet of a given coordinate triplet inline void spaceToIndex(const float* coordIn, float* indexOut) const { spaceToIndex(coordIn[0], coordIn[1], coordIn[2], indexOut[0], indexOut[1], indexOut[2]); } ///returns floating point index triplet of three given coordinates inline void spaceToIndex(const float& coordIn1, const float& coordIn2, const float& coordIn3, float* indexOut) const { spaceToIndex(coordIn1, coordIn2, coordIn3, indexOut[0], indexOut[1], indexOut[2]); } ///returns three floating point indexes of a given coordinate triplet inline void spaceToIndex(const float* coordIn, float& indexOut1, float& indexOut2, float& indexOut3) const { spaceToIndex(coordIn[0], coordIn[1], coordIn[2], indexOut1, indexOut2, indexOut3); } ///returns three floating point indexes of three given coordinates void spaceToIndex(const float& coordIn1, const float& coordIn2, const float& coordIn3, float& indexOut1, float& indexOut2, float& indexOut3) const; ///returns integer index triplet of voxel whose center is closest to the coordinate triplet inline void enclosingVoxel(const float* coordIn, int64_t* indexOut) const { enclosingVoxel(coordIn[0], coordIn[1], coordIn[2], indexOut[0], indexOut[1], indexOut[2]); } ///returns integer index triplet of voxel whose center is closest to the three coordinates inline void enclosingVoxel(const float& coordIn1, const float& coordIn2, const float& coordIn3, int64_t* indexOut) const { enclosingVoxel(coordIn1, coordIn2, coordIn3, indexOut[0], indexOut[1], indexOut[2]); } ///returns integer indexes of voxel whose center is closest to the coordinate triplet inline void enclosingVoxel(const float* coordIn, int64_t& indexOut1, int64_t& indexOut2, int64_t& indexOut3) const { enclosingVoxel(coordIn[0], coordIn[1], coordIn[2], indexOut1, indexOut2, indexOut3); } ///returns integer indexes of voxel whose center is closest to the three coordinates void enclosingVoxel(const float& coordIn1, const float& coordIn2, const float& coordIn3, int64_t& indexOut1, int64_t& indexOut2, int64_t& indexOut3) const; template inline bool indexValid(const T* indexIn) const { return indexValid(indexIn[0], indexIn[1], indexIn[2]);//implicit cast to int64_t } ///checks if an index is within array dimensions inline bool indexValid(const int64_t& indexIn1, const int64_t& indexIn2, const int64_t& indexIn3) const { if (indexIn1 < 0 || indexIn1 >= m_dims[0]) return false; if (indexIn2 < 0 || indexIn2 >= m_dims[1]) return false; if (indexIn3 < 0 || indexIn3 >= m_dims[2]) return false; return true; } inline int64_t getIndex(const int64_t& indexIn1, const int64_t& indexIn2, const int64_t& indexIn3) const { return indexIn1 + m_dims[0] * (indexIn2 + m_dims[1] * indexIn3); } template inline int64_t getIndex(const T* indexIn) const { return getIndex(indexIn[0], indexIn[1], indexIn[2]);//implicit cast to int64_t } void readCiftiXML1(XmlReader& xml);//xml functions void readCiftiXML2(XmlReader& xml); void writeCiftiXML1(XmlWriter& xml) const; void writeCiftiXML2(XmlWriter& xml) const; }; template void VolumeSpace::indexToSpace(const T& indexIn1, const T& indexIn2, const T& indexIn3, float& coordOut1, float& coordOut2, float& coordOut3) const { coordOut1 = indexIn1 * m_sform[0][0] + indexIn2 * m_sform[0][1] + indexIn3 * m_sform[0][2] + m_sform[0][3]; coordOut2 = indexIn1 * m_sform[1][0] + indexIn2 * m_sform[1][1] + indexIn3 * m_sform[1][2] + m_sform[1][3]; coordOut3 = indexIn1 * m_sform[2][0] + indexIn2 * m_sform[2][1] + indexIn3 * m_sform[2][2] + m_sform[2][3]; } } #endif //__VOLUME_SPACE_H__ CiftiLib-1.6.0/src/CiftiFile.cxx000066400000000000000000000733771373715117300164050ustar00rootroot00000000000000/*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CiftiFile.h" #include "Common/CiftiAssert.h" #include "Common/MultiDimArray.h" #include "NiftiIO.h" #ifdef CIFTILIB_USE_QT #include #else //use boost filesystem, because cross-platform filesystem support with POSIX is absurd #define BOOST_FILESYSTEM_VERSION 3 #include "boost/filesystem.hpp" #endif #include using namespace std; using namespace boost; using namespace cifti; //private implementation classes, helpers namespace { class CiftiOnDiskImpl : public CiftiFile::WriteImplInterface { mutable NiftiIO m_nifti;//because file objects aren't stateless (current position), so reading "changes" them CiftiXML m_xml;//because we need to parse it to set up the dimensions anyway public: CiftiOnDiskImpl(const AString& filename);//read-only CiftiOnDiskImpl(const AString& filename, const CiftiXML& xml, const CiftiVersion& version, const bool& swapEndian, const int16_t& datatype, const bool& rescale, const double& minval, const double& maxval);//make new empty file with read/write void getRow(float* dataOut, const std::vector& indexSelect, const bool& tolerateShortRead) const; void getColumn(float* dataOut, const int64_t& index) const; const CiftiXML& getCiftiXML() const { return m_xml; } AString getFilename() const { return m_nifti.getFilename(); } bool isSwapped() const { return m_nifti.getHeader().isSwapped(); } void setRow(const float* dataIn, const std::vector& indexSelect); void setColumn(const float* dataIn, const int64_t& index); void close(); }; class CiftiMemoryImpl : public CiftiFile::WriteImplInterface { MultiDimArray m_array; public: CiftiMemoryImpl(const CiftiXML& xml); void getRow(float* dataOut, const std::vector& indexSelect, const bool& tolerateShortRead) const; void getColumn(float* dataOut, const int64_t& index) const; bool isInMemory() const { return true; } void setRow(const float* dataIn, const std::vector& indexSelect); void setColumn(const float* dataIn, const int64_t& index); }; bool shouldSwap(const CiftiFile::ENDIAN& endian) { if (ByteSwapping::isBigEndian()) { if (endian == CiftiFile::LITTLE) return true; } else { if (endian == CiftiFile::BIG) return true; } return false;//default for all other enum values is to write native endian } bool dontRewrite(const CiftiFile::ENDIAN& endian) { return (endian == CiftiFile::ANY); } AString pathToAbsolute(const AString& mypath) { #ifdef CIFTILIB_USE_QT return QFileInfo(mypath).absoluteFilePath(); #else #ifdef CIFTILIB_BOOST_NO_FSV3 return filesystem::complete(AString_to_std_string(mypath)).file_string(); #else return filesystem::absolute(AString_to_std_string(mypath)).native(); #endif #endif } AString pathToCanonical(const AString& mypath) { #ifdef CIFTILIB_USE_QT return QFileInfo(mypath).canonicalFilePath(); #else #ifdef CIFTILIB_BOOST_NO_FSV3 return filesystem::complete(AString_to_std_string(mypath)).file_string(); #else #ifdef CIFTILIB_BOOST_NO_CANONICAL filesystem::path temp = AString_to_std_string(mypath); if (!filesystem::exists(temp)) return ""; return absolute(temp).normalize().native(); #else string temp = AString_to_std_string(mypath); if (!filesystem::exists(temp)) return ""; return filesystem::canonical(temp).native(); #endif #endif #endif } } CiftiFile::ReadImplInterface::~ReadImplInterface() { } CiftiFile::WriteImplInterface::~WriteImplInterface() { } CiftiFile::CiftiFile() { m_endianPref = NATIVE; setWritingDataTypeNoScaling();//default argument is float32 } CiftiFile::CiftiFile(const AString& fileName) { m_endianPref = NATIVE; setWritingDataTypeNoScaling();//default argument is float32 openFile(fileName); } void CiftiFile::openFile(const AString& fileName) { close();//to make sure it closes everything first, even if the open throws boost::shared_ptr newRead(new CiftiOnDiskImpl(pathToAbsolute(fileName)));//this constructor opens existing file read-only m_readingImpl = newRead;//it should be noted that if the constructor throws (if the file isn't readable), new guarantees the memory allocated for the object will be freed m_xml = newRead->getCiftiXML(); m_dims = m_xml.getDimensions(); m_onDiskVersion = m_xml.getParsedVersion(); } void CiftiFile::setWritingFile(const AString& fileName, const CiftiVersion& writingVersion, const ENDIAN& endian) { m_writingFile = pathToAbsolute(fileName);//always resolve paths as soon as they enter CiftiFile, in case some clown changes directory before writing data m_writingImpl.reset();//prevent writing to previous writing implementation, let the next set...() set up for writing m_onDiskVersion = writingVersion; m_endianPref = endian; } void CiftiFile::setWritingDataTypeNoScaling(const int16_t& type) { m_writingDataType = type;//could do some validation here m_doWriteScaling = false; m_minScalingVal = -1.0;//these scaling values should never be used, but don't leave them uninitialized m_maxScalingVal = 1.0; m_writingImpl.reset();//prevent writing to previous writing implementation, let the next set...() set up for writing } void CiftiFile::setWritingDataTypeAndScaling(const int16_t& type, const double& minval, const double& maxval) { m_writingDataType = type;//could do some validation here m_doWriteScaling = true; m_minScalingVal = minval; m_maxScalingVal = maxval; m_writingImpl.reset();//prevent writing to previous writing implementation, let the next set...() set up for writing } void CiftiFile::writeFile(const AString& fileName, const CiftiVersion& writingVersion, const ENDIAN& endian) { if (m_readingImpl == NULL || m_dims.empty()) throw CiftiException("writeFile called on uninitialized CiftiFile"); bool writeSwapped = shouldSwap(endian); AString canonicalFilename = pathToCanonical(fileName);//NOTE: returns EMPTY STRING for nonexistent file const CiftiOnDiskImpl* testImpl = dynamic_cast(m_readingImpl.get()); bool collision = false, hadWriter = (m_writingImpl != NULL); if (testImpl != NULL && canonicalFilename != "" && pathToCanonical(testImpl->getFilename()) == canonicalFilename) {//empty string test is so that we don't say collision if both are nonexistent - could happen if file is removed/unlinked while reading on some filesystems if (m_onDiskVersion == writingVersion && (dontRewrite(endian) || writeSwapped == testImpl->isSwapped())) return;//don't need to copy to itself collision = true;//we need to copy to memory temporarily boost::shared_ptr tempMemory(new CiftiMemoryImpl(m_xml));//because tempRead is a ReadImpl, can't be used to copy to copyImplData(m_readingImpl.get(), tempMemory.get(), m_dims); m_readingImpl = tempMemory;//we are about to make the old reading impl very unhappy, replace it so that if we get an error while writing, we hang onto the memory version m_writingImpl.reset();//and make it re-magic the writing implementation again if it tries to write again } boost::shared_ptr tempWrite(new CiftiOnDiskImpl(pathToAbsolute(fileName), m_xml, writingVersion, writeSwapped, m_writingDataType, m_doWriteScaling, m_minScalingVal, m_maxScalingVal)); copyImplData(m_readingImpl.get(), tempWrite.get(), m_dims); if (collision)//if we rewrote the file, we need the handle to the new file, and to dump the temporary in-memory version { m_onDiskVersion = writingVersion;//also record the current version number m_readingImpl = tempWrite;//replace the temporary memory version if (hadWriter)//if it was in read-write mode { m_writingImpl = tempWrite;//set the writer too } } } void CiftiFile::close() { if (m_writingImpl != NULL) { m_writingImpl->close();//only writing implementations should ever throw errors on close, and specifically only on-disk } m_writingImpl.reset(); m_readingImpl.reset(); m_dims.clear(); m_xml = CiftiXML(); m_writingFile = ""; m_onDiskVersion = CiftiVersion();//for completeness, it gets reset on open anyway m_endianPref = NATIVE;//reset things to defaults setWritingDataTypeNoScaling();//default argument is float32 } void CiftiFile::convertToInMemory() { if (isInMemory()) return; if (m_readingImpl == NULL || m_dims.empty())//not set up yet { m_writingFile = "";//make sure it doesn't do on-disk when set...() is called return; } boost::shared_ptr tempWrite(new CiftiMemoryImpl(m_xml));//if we get an error while reading, free the memory immediately, and don't leave m_readingImpl and m_writingImpl pointing to different things copyImplData(m_readingImpl.get(), tempWrite.get(), m_dims); m_writingImpl = tempWrite; m_readingImpl = tempWrite; } bool CiftiFile::isInMemory() const { if (m_readingImpl == NULL) { return (m_writingFile == "");//return what it would be if verifyWriteImpl() was called } else { return m_readingImpl->isInMemory(); } } void CiftiFile::getRow(float* dataOut, const vector& indexSelect, const bool& tolerateShortRead) const { if (m_dims.empty()) throw CiftiException("getRow called on uninitialized CiftiFile"); if (m_readingImpl == NULL) return;//NOT an error because we are pretending to have a matrix already, while we are waiting for setRow to actually start writing the file m_readingImpl->getRow(dataOut, indexSelect, tolerateShortRead); } void CiftiFile::getColumn(float* dataOut, const int64_t& index) const { if (m_dims.empty()) throw CiftiException("getColumn called on uninitialized CiftiFile"); if (m_dims.size() != 2) throw CiftiException("getColumn called on non-2D CiftiFile"); if (m_readingImpl == NULL) return;//NOT an error because we are pretending to have a matrix already, while we are waiting for setRow to actually start writing the file m_readingImpl->getColumn(dataOut, index); } void CiftiFile::setCiftiXML(const CiftiXML& xml, const bool useOldMetadata) { if (xml.getNumberOfDimensions() == 0) throw CiftiException("setCiftiXML called with 0-dimensional CiftiXML"); vector xmlDims = xml.getDimensions(); for (size_t i = 0; i < xmlDims.size(); ++i) { if (xmlDims[i] < 1) throw CiftiException("cifti xml dimensions must be greater than zero"); } m_readingImpl.reset();//drop old implementation, as it is now invalid due to XML (and therefore matrix size) change m_writingImpl.reset(); if (useOldMetadata) { MetaData newmd = m_xml.getFileMetaData();//make a copy m_xml = xml;//because this will overwrite the metadata m_xml.setFileMetaData(newmd); } else { m_xml = xml; } m_dims = xmlDims; } void CiftiFile::setRow(const float* dataIn, const vector& indexSelect) { verifyWriteImpl(); m_writingImpl->setRow(dataIn, indexSelect); } void CiftiFile::setColumn(const float* dataIn, const int64_t& index) { verifyWriteImpl(); if (m_dims.size() != 2) throw CiftiException("setColumn called on non-2D CiftiFile"); m_writingImpl->setColumn(dataIn, index); } //single-index functions void CiftiFile::getRow(float* dataOut, const int64_t& index, const bool& tolerateShortRead) const { if (m_dims.empty()) throw CiftiException("getRow called on uninitialized CiftiFile"); if (m_dims.size() != 2) throw CiftiException("getRow with single index called on non-2D CiftiFile"); if (m_readingImpl == NULL) return;//NOT an error because we are pretending to have a matrix already, while we are waiting for setRow to actually start writing the file vector tempvec(1, index);//could use a member if we need more speed m_readingImpl->getRow(dataOut, tempvec, tolerateShortRead); } void CiftiFile::setRow(const float* dataIn, const int64_t& index) { verifyWriteImpl(); if (m_dims.size() != 2) throw CiftiException("setRow with single index called on non-2D CiftiFile"); vector tempvec(1, index);//could use a member if we need more speed m_writingImpl->setRow(dataIn, tempvec); } //*///end single-index functions void CiftiFile::verifyWriteImpl() {//this is where the magic happens - we want to emulate being a simple in-memory file, but actually be reading/writing on-disk when possible if (m_writingImpl != NULL) return; CiftiAssert(!m_dims.empty());//if the xml hasn't been set, then we can't do anything meaningful if (m_dims.empty()) throw CiftiException("setRow or setColumn attempted on uninitialized CiftiFile"); if (m_writingFile == "") { if (m_readingImpl != NULL) { convertToInMemory(); } else { m_writingImpl = boost::shared_ptr(new CiftiMemoryImpl(m_xml)); } } else {//NOTE: m_onDiskVersion gets set in setWritingFile if (m_readingImpl != NULL) { CiftiOnDiskImpl* testImpl = dynamic_cast(m_readingImpl.get()); if (testImpl != NULL) { AString canonicalCurrent = pathToCanonical(testImpl->getFilename());//returns "" if nonexistent, if unlinked while open if (canonicalCurrent != "" && canonicalCurrent == pathToCanonical(m_writingFile))//these were already absolute { convertToInMemory();//save existing data in memory before we clobber file } } } m_writingImpl = boost::shared_ptr(new CiftiOnDiskImpl(m_writingFile, m_xml, m_onDiskVersion, shouldSwap(m_endianPref), m_writingDataType, m_doWriteScaling, m_minScalingVal, m_maxScalingVal));//this constructor makes new file for writing if (m_readingImpl != NULL) { copyImplData(m_readingImpl.get(), m_writingImpl.get(), m_dims); } } m_readingImpl = m_writingImpl;//read-only implementations are set up in specialized functions } void CiftiFile::copyImplData(const ReadImplInterface* from, WriteImplInterface* to, const vector& dims) { vector iterateDims(dims.begin() + 1, dims.end()); vector scratchRow(dims[0]); for (MultiDimIterator iter(iterateDims); !iter.atEnd(); ++iter) { from->getRow(scratchRow.data(), *iter, false); to->setRow(scratchRow.data(), *iter); } } CiftiMemoryImpl::CiftiMemoryImpl(const CiftiXML& xml) { CiftiAssert(xml.getNumberOfDimensions() != 0); m_array.resize(xml.getDimensions()); } void CiftiMemoryImpl::getRow(float* dataOut, const vector& indexSelect, const bool&) const { const float* ref = m_array.get(1, indexSelect); int64_t rowSize = m_array.getDimensions()[0];//we don't accept 0-D CiftiXML, so this will always work for (int64_t i = 0; i < rowSize; ++i) { dataOut[i] = ref[i]; } } void CiftiMemoryImpl::getColumn(float* dataOut, const int64_t& index) const { CiftiAssert(m_array.getDimensions().size() == 2);//otherwise, CiftiFile shouldn't have called this const float* ref = m_array.get(2, vector());//empty vector is intentional, only 2 dimensions exist, so no more to select from int64_t rowSize = m_array.getDimensions()[0]; int64_t colSize = m_array.getDimensions()[1]; CiftiAssert(index >= 0 && index < rowSize);//because we are doing the indexing math manually for speed for (int64_t i = 0; i < colSize; ++i) { dataOut[i] = ref[index + rowSize * i]; } } void CiftiMemoryImpl::setRow(const float* dataIn, const vector& indexSelect) { float* ref = m_array.get(1, indexSelect); int64_t rowSize = m_array.getDimensions()[0];//we don't accept 0-D CiftiXML, so this will always work for (int64_t i = 0; i < rowSize; ++i) { ref[i] = dataIn[i]; } } void CiftiMemoryImpl::setColumn(const float* dataIn, const int64_t& index) { CiftiAssert(m_array.getDimensions().size() == 2);//otherwise, CiftiFile shouldn't have called this float* ref = m_array.get(2, vector());//empty vector is intentional, only 2 dimensions exist, so no more to select from int64_t rowSize = m_array.getDimensions()[0]; int64_t colSize = m_array.getDimensions()[1]; CiftiAssert(index >= 0 && index < rowSize);//because we are doing the indexing math manually for speed for (int64_t i = 0; i < colSize; ++i) { ref[index + rowSize * i] = dataIn[i]; } } CiftiOnDiskImpl::CiftiOnDiskImpl(const AString& filename) {//opens existing file for reading m_nifti.openRead(filename);//read-only, so we don't need write permission to read a cifti file if (m_nifti.getNumComponents() != 1) throw CiftiException("complex or rgb datatype found in file '" + filename + "', these are not supported in cifti"); const NiftiHeader& myHeader = m_nifti.getHeader(); int numExts = (int)myHeader.m_extensions.size(), whichExt = -1; for (int i = 0; i < numExts; ++i) { if (myHeader.m_extensions[i]->m_ecode == NIFTI_ECODE_CIFTI) { whichExt = i; break; } } if (whichExt == -1) throw CiftiException("no cifti extension found in file '" + filename + "'"); m_xml.readXML(myHeader.m_extensions[whichExt]->m_bytes); vector dimCheck = m_nifti.getDimensions(); if (dimCheck.size() < 5) throw CiftiException("invalid dimensions in cifti file '" + filename + "'"); for (int i = 0; i < 4; ++i) { if (dimCheck[i] != 1) throw CiftiException("non-singular dimension #" + AString_number(i + 1) + " in cifti file '" + filename + "'"); } if (m_xml.getParsedVersion().hasReversedFirstDims()) { while (dimCheck.size() < 6) dimCheck.push_back(1);//just in case int64_t temp = dimCheck[4];//note: nifti dim[5] is the 5th dimension, index 4 in this vector dimCheck[4] = dimCheck[5]; dimCheck[5] = temp; m_nifti.overrideDimensions(dimCheck); } if (m_xml.getNumberOfDimensions() + 4 != (int)dimCheck.size()) throw CiftiException("XML does not match number of nifti dimensions in file " + filename + "'"); for (int i = 4; i < (int)dimCheck.size(); ++i) { if (m_xml.getDimensionLength(i - 4) < 0)//CiftiXML will only let this happen with cifti-1 { m_xml.getSeriesMap(i - 4).setLength(dimCheck[i]);//and only in a series map } else { if (m_xml.getDimensionLength(i - 4) != dimCheck[i]) { throw CiftiException("xml and nifti header disagree on matrix dimensions"); } } } } namespace { void warnForBadExtension(const AString& filename, const CiftiXML& myXML) { char junk[16]; int32_t intent_code = myXML.getIntentInfo(CiftiVersion(), junk);//use default writing version to check file extension, older version is missing some intent codes switch (intent_code) { default: cerr << "warning: unhandled cifti type in extension warning check, tell the developers what you just tried to do" << endl; CiftiAssert(0);//yes, let it fall through to "unknown" in release so that it at least looks for .nii //-fallthrough case 3000://unknown if (!AString_endsWith(filename, ".nii")) { cerr << "warning: cifti file of nonstandard mapping combination '" << AString_to_std_string(filename) << "' should be saved ending in ..nii" << endl; } if (AString_endsWith(filename, ".dconn.nii") || AString_endsWith(filename, ".dtseries.nii") || AString_endsWith(filename, ".pconn.nii") || AString_endsWith(filename, ".ptseries.nii") || AString_endsWith(filename, ".dscalar.nii") || AString_endsWith(filename, ".dfan.nii") || AString_endsWith(filename, ".fiberTemp.nii") || AString_endsWith(filename, ".dlabel.nii") || AString_endsWith(filename, ".pscalar.nii") || AString_endsWith(filename, ".pdconn.nii") || AString_endsWith(filename, ".dpconn.nii") || AString_endsWith(filename, ".pconnseries.nii") || AString_endsWith(filename, ".pconnscalar.nii")) { cerr << "warning: cifti file of nonstandard mapping combination '" << AString_to_std_string(filename) << "' should NOT be saved using an already-used cifti extension, " << "please choose a different, reasonable cifti extension of the form ..nii" << endl; } break; case 3001: if (!AString_endsWith(filename, ".dconn.nii")) { cerr << "warning: dense by dense cifti file '" << AString_to_std_string(filename) << "' should be saved ending in .dconn.nii" << endl; } break; case 3002: if (!AString_endsWith(filename, ".dtseries.nii")) { cerr << "warning: series by dense cifti file '" << AString_to_std_string(filename) << "' should be saved ending in .dtseries.nii" << endl; } break; case 3003: if (!AString_endsWith(filename, ".pconn.nii")) { cerr << "warning: parcels by parcels cifti file '" << AString_to_std_string(filename) << "' should be saved ending in .pconn.nii" << endl; } break; case 3004: if (!AString_endsWith(filename, ".ptseries.nii")) { cerr << "warning: series by parcels cifti file '" << AString_to_std_string(filename) << "' should be saved ending in .ptseries.nii" << endl; } break; case 3006://3005 unused in practice if (!(AString_endsWith(filename, ".dscalar.nii") || AString_endsWith(filename, ".dfan.nii") || AString_endsWith(filename, ".fiberTEMP.nii"))) {//there are additional special extensions in the standard for this mapping combination (specializations of scalar maps) //also include workbench's fiberTEMP special extension cerr << "warning: scalars by dense cifti file '" << AString_to_std_string(filename) << "' should be saved ending in .dscalar.nii" << endl; } break; case 3007: if (!AString_endsWith(filename, ".dlabel.nii")) { cerr << "warning: labels by dense cifti file '" << AString_to_std_string(filename) << "' should be saved ending in .dlabel.nii" << endl; } break; case 3008: if (!AString_endsWith(filename, ".pscalar.nii")) { cerr << "warning: scalars by parcels cifti file '" << AString_to_std_string(filename) << "' should be saved ending in .pscalar.nii" << endl; } break; case 3009: if (!AString_endsWith(filename, ".pdconn.nii")) { cerr << "warning: dense by parcels cifti file '" << AString_to_std_string(filename) << "' should be saved ending in .pdconn.nii" << endl; } break; case 3010: if (!AString_endsWith(filename, ".dpconn.nii")) { cerr << "warning: parcels by dense cifti file '" << AString_to_std_string(filename) << "' should be saved ending in .dpconn.nii" << endl; } break; case 3011: if (!AString_endsWith(filename, ".pconnseries.nii")) { cerr << "warning: parcels by parcels by series cifti file '" << AString_to_std_string(filename) << "' should be saved ending in .pconnseries.nii" << endl; } break; case 3012: if (!AString_endsWith(filename, ".pconnscalar.nii")) { cerr << "warning: parcels by parcels by scalar cifti file '" << AString_to_std_string(filename) << "' should be saved ending in .pconnscalar.nii" << endl; } break; } } } CiftiOnDiskImpl::CiftiOnDiskImpl(const AString& filename, const CiftiXML& xml, const CiftiVersion& version, const bool& swapEndian, const int16_t& datatype, const bool& rescale, const double& minval, const double& maxval) {//starts writing new file warnForBadExtension(filename, xml); NiftiHeader outHeader; if (rescale) { outHeader.setDataTypeAndScaleRange(datatype, minval, maxval); } else { outHeader.setDataType(datatype); } if (outHeader.getNumComponents() != 1) { throw CiftiException("cifti cannot be written with multi-component nifti datatypes (i.e., complex, RGB)"); } char intentName[16]; int32_t intentCode = xml.getIntentInfo(version, intentName); outHeader.setIntent(intentCode, intentName); boost::shared_ptr outExtension(new NiftiExtension()); outExtension->m_ecode = NIFTI_ECODE_CIFTI; outExtension->m_bytes = xml.writeXMLToVector(version); outHeader.m_extensions.push_back(outExtension); vector matrixDims = xml.getDimensions(); vector niftiDims(4, 1);//the reserved space and time dims niftiDims.insert(niftiDims.end(), matrixDims.begin(), matrixDims.end()); if (version.hasReversedFirstDims()) { vector headerDims = niftiDims; while (headerDims.size() < 6) headerDims.push_back(1);//just in case int64_t temp = headerDims[4]; headerDims[4] = headerDims[5]; headerDims[5] = temp; outHeader.setDimensions(headerDims);//give the header the reversed dimensions m_nifti.writeNew(filename, outHeader, 2, true, swapEndian); m_nifti.overrideDimensions(niftiDims);//and then tell the nifti reader to use the correct dimensions } else { outHeader.setDimensions(niftiDims); m_nifti.writeNew(filename, outHeader, 2, true, swapEndian); } m_xml = xml; } void CiftiOnDiskImpl::close() { m_nifti.close();//lets this throw when there is a writing problem }//don't bother resetting m_xml, this instance is about to be destroyed void CiftiOnDiskImpl::getRow(float* dataOut, const vector& indexSelect, const bool& tolerateShortRead) const { m_nifti.readData(dataOut, 5, indexSelect, tolerateShortRead);//5 means 4 reserved (space and time) plus the first cifti dimension } void CiftiOnDiskImpl::getColumn(float* dataOut, const int64_t& index) const { CiftiAssert(m_xml.getNumberOfDimensions() == 2);//otherwise this shouldn't be called CiftiAssert(index >= 0 && index < m_xml.getDimensionLength(CiftiXML::ALONG_ROW)); vector indexSelect(2); indexSelect[0] = index; int64_t colLength = m_xml.getDimensionLength(CiftiXML::ALONG_COLUMN); for (int64_t i = 0; i < colLength; ++i)//assume if they really want getColumn on disk, they don't want their pagecache obliterated, so read it 1 element at a time { indexSelect[1] = i; m_nifti.readData(dataOut + i, 4, indexSelect);//4 means just the 4 reserved dimensions, so 1 element of the matrix } } void CiftiOnDiskImpl::setRow(const float* dataIn, const vector& indexSelect) { m_nifti.writeData(dataIn, 5, indexSelect); } void CiftiOnDiskImpl::setColumn(const float* dataIn, const int64_t& index) { CiftiAssert(m_xml.getNumberOfDimensions() == 2);//otherwise this shouldn't be called CiftiAssert(index >= 0 && index < m_xml.getDimensionLength(CiftiXML::ALONG_ROW)); vector indexSelect(2); indexSelect[0] = index; int64_t colLength = m_xml.getDimensionLength(CiftiXML::ALONG_COLUMN); for (int64_t i = 0; i < colLength; ++i)//don't do RMW, so write it 1 element at a time { indexSelect[1] = i; m_nifti.writeData(dataIn + i, 4, indexSelect);//4 means just the 4 reserved dimensions, so 1 element of the matrix } } CiftiLib-1.6.0/src/CiftiFile.h000066400000000000000000000144421373715117300160160ustar00rootroot00000000000000#ifndef __CIFTI_FILE_H__ #define __CIFTI_FILE_H__ /*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "Common/AString.h" #include "Common/CiftiException.h" #include "Common/MultiDimIterator.h" #include "Cifti/CiftiXML.h" #include "Nifti/nifti1.h" #include "boost/shared_ptr.hpp" #include ///namespace for all CiftiLib functionality namespace cifti { ///class for reading and writing cifti files class CiftiFile { public: enum ENDIAN { ANY,//so that writeFile() with default endian argument can do nothing after setWritingFile with any endian argument - uses native if there is no rewrite to avoid NATIVE,//as long as there are more than two options anyway, provide a convenience option so people don't need to figure out the machine endianness for a common case LITTLE, BIG }; CiftiFile(); ///starts on-disk reading explicit CiftiFile(const AString &fileName); ///starts on-disk reading void openFile(const AString& fileName); ///starts on-disk writing void setWritingFile(const AString& fileName, const CiftiVersion& writingVersion = CiftiVersion(), const ENDIAN& endian = NATIVE); ///does nothing if filename, version, and effective endianness match file currently open, otherwise writes complete file void writeFile(const AString& fileName, const CiftiVersion& writingVersion = CiftiVersion(), const ENDIAN& endian = ANY); ///closes the underlying file to flush it, so that exceptions can be thrown void close(); ///reads file into memory, closes file void convertToInMemory(); const CiftiXML& getCiftiXML() const { return m_xml; } bool isInMemory() const; ///the tolerateShortRead parameter is useful for on-disk writing when it is easiest to do RMW multiple times on a new file void getRow(float* dataOut, const std::vector& indexSelect, const bool& tolerateShortRead = false) const; const std::vector& getDimensions() const { return m_dims; } ///convenience function for iterating over arbitrary numbers of dimensions MultiDimIterator getIteratorOverRows() const { return MultiDimIterator(std::vector(m_dims.begin() + 1, m_dims.end())); } ///for 2D only, will be slow if on disk! void getColumn(float* dataOut, const int64_t& index) const; void setCiftiXML(const CiftiXML& xml, const bool useOldMetadata = true); void setRow(const float* dataIn, const std::vector& indexSelect); ///for 2D only, will be slow if on disk! void setColumn(const float* dataIn, const int64_t& index); ///for 2D only, if you don't want to pass a vector for indexing void getRow(float* dataOut, const int64_t& index, const bool& tolerateShortRead = false) const; ///for 2D only, if you don't want to pass a vector for indexing void setRow(const float* dataIn, const int64_t& index); ///data type and scaling options - should be set before setRow, etc, to avoid rewriting of file void setWritingDataTypeNoScaling(const int16_t& type = NIFTI_TYPE_FLOAT32); void setWritingDataTypeAndScaling(const int16_t& type, const double& minval, const double& maxval); //implementation details from here down class ReadImplInterface { public: virtual void getRow(float* dataOut, const std::vector& indexSelect, const bool& tolerateShortRead) const = 0; virtual void getColumn(float* dataOut, const int64_t& index) const = 0; virtual bool isInMemory() const { return false; } virtual ~ReadImplInterface(); }; //assume if you can write to it, you can also read from it class WriteImplInterface : public ReadImplInterface { public: virtual void setRow(const float* dataIn, const std::vector& indexSelect) = 0; virtual void setColumn(const float* dataIn, const int64_t& index) = 0; virtual void close() {} virtual ~WriteImplInterface(); }; private: std::vector m_dims; boost::shared_ptr m_writingImpl;//this will be equal to m_readingImpl when non-null boost::shared_ptr m_readingImpl; AString m_writingFile; CiftiXML m_xml; CiftiVersion m_onDiskVersion; ENDIAN m_endianPref; bool m_doWriteScaling; int16_t m_writingDataType; double m_minScalingVal, m_maxScalingVal; void verifyWriteImpl(); static void copyImplData(const ReadImplInterface* from, WriteImplInterface* to, const std::vector& dims); }; } #endif //__CIFTI_FILE_H__ CiftiLib-1.6.0/src/Common/000077500000000000000000000000001373715117300152325ustar00rootroot00000000000000CiftiLib-1.6.0/src/Common/AString.cxx000066400000000000000000000102011373715117300173170ustar00rootroot00000000000000/*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "AString.h" #ifdef CIFTILIB_USE_QT #include #endif #ifdef CIFTILIB_USE_XMLPP #include "boost/lexical_cast.hpp" using namespace boost; #endif using namespace std; using namespace cifti; vector cifti::AString_split(const AString& input, const char& delim) { vector ret; #ifdef CIFTILIB_USE_QT QStringList temp = input.split(delim); int listSize = temp.size();//yes, QT uses int... ret.resize(listSize); for (int i = 0; i < listSize; ++i) { ret[i] = temp[i]; } #else #ifdef CIFTILIB_USE_XMLPP size_t start = 0, end = input.find(delim); while (end != AString::npos) { ret.push_back(input.substr(start, end - start)); start = end + 1; end = input.find(delim, start); } ret.push_back(input.substr(start)); #else #error "not implemented" #endif #endif return ret; } vector cifti::AString_split_whitespace(const AString& input) { vector ret; #ifdef CIFTILIB_USE_QT QStringList temp = input.split(QRegExp("\\s+"), QString::SkipEmptyParts); int listSize = temp.size();//yes, QT uses int... ret.resize(listSize); for (int i = 0; i < listSize; ++i) { ret[i] = temp[i]; } #else #ifdef CIFTILIB_USE_XMLPP AString::const_iterator iter = input.begin(), end = input.end(); while (iter != end) { while (iter != end && g_unichar_isspace(*iter)) ++iter;//skip spaces, including at start of input if (iter == end) break;//ignore spaces on end of input AString::const_iterator start = iter; while (iter != end && !g_unichar_isspace(*iter)) ++iter;//continue to space or end ret.push_back(AString(start, iter)); } #else #error "not implemented" #endif #endif return ret; } int64_t cifti::AString_toInt(const AString& input, bool& ok) { #ifdef CIFTILIB_USE_QT return input.toLongLong(&ok); #else #ifdef CIFTILIB_USE_XMLPP #ifdef CIFTILIB_BOOST_NO_TRY_LEXICAL try { ok = true; return lexical_cast(input); } catch (...) { ok = false; return 0; } #else int64_t ret; ok = conversion::try_lexical_convert(input, ret); if (!ok) ret = 0; return ret; #endif #else #error "not implemented" #endif #endif } float cifti::AString_toFloat(const AString& input, bool& ok) { #ifdef CIFTILIB_USE_QT return input.toFloat(&ok); #else #ifdef CIFTILIB_USE_XMLPP #ifdef CIFTILIB_BOOST_NO_TRY_LEXICAL try { ok = true; return lexical_cast(input); } catch (...) { ok = false; return 0.0f; } #else float ret; ok = conversion::try_lexical_convert(input, ret); if (!ok) ret = 0.0f; return ret; #endif #else #error "not implemented" #endif #endif } CiftiLib-1.6.0/src/Common/AString.h000066400000000000000000000123701373715117300167550ustar00rootroot00000000000000#ifndef __ASTRING_H__ #define __ASTRING_H__ /*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include #include #include "stdint.h" #ifdef __ASTRING_H_HAVE_IMPL__ #undef __ASTRING_H_HAVE_IMPL__ #endif #ifdef CIFTILIB_USE_QT #define __ASTRING_H_HAVE_IMPL__ #include namespace cifti { struct AString : public QString {//QT doesn't convert from std::string, and conversions have to be member functions AString() : QString() {} //some QString constructors are explicit, so instead only make conversion constructors for whatever works with assignment to QString //the cast is required to avoid recursing through AString template AString(const T& rhs) : QString() { *(static_cast(this)) = rhs; } AString(const std::string& rhs) : QString() { (*this) = fromStdString(rhs); } }; #define ASTRING_TO_CSTR(mystr) ((mystr).toLocal8Bit().constData()) #define ASTRING_UTF8_RAW(mystr) ((mystr).toUtf8().constData()) inline std::string AString_to_std_string(const AString& mystr) { QByteArray temparray = mystr.toLocal8Bit(); return std::string(temparray.constData(), temparray.size()); } inline AString AString_from_latin1(const char* data, const int& size) { return QString::fromLatin1(data, size); } inline AString AString_substr(const AString& mystr, const int& first, const int& count = -1) { return mystr.mid(first, count); } inline bool AString_endsWith(const AString& test, const AString& pattern) { return test.endsWith(pattern); } template AString AString_number(const T& num) { return QString::number(num); } template AString AString_number_fixed(const T& num, const int& numDecimals) { return QString::number(num, 'f', numDecimals); } } #endif //CIFTILIB_USE_QT #ifdef CIFTILIB_USE_XMLPP #define __ASTRING_H_HAVE_IMPL__ #include "glibmm/convert.h" #include "glibmm/ustring.h" #include namespace cifti { typedef Glib::ustring AString; #define ASTRING_TO_CSTR(mystr) (Glib::locale_from_utf8((mystr)).c_str()) #define ASTRING_UTF8_RAW(mystr) ((mystr).data()) inline std::string AString_to_std_string(const AString& mystr) { return Glib::locale_from_utf8(mystr); } inline AString AString_from_latin1(const char* data, const int& size) { return Glib::convert(std::string(data, size), "UTF-8", "ISO-8859-1"); } inline AString AString_substr(const AString& mystr, const Glib::ustring::size_type& first, const Glib::ustring::size_type& count = std::string::npos) {//HACK: Glib::ustring::npos is undefined at link time with glibmm 2.4 for unknown reasons, but the header says it is equal to std::string's, so use it instead return mystr.substr(first, count); } inline bool AString_endsWith(const AString& test, const AString& pattern) { return test.substr(test.size() - pattern.size()) == pattern; } template AString AString_number(const T& num) { return Glib::ustring::format(num); } template AString AString_number_fixed(const T& num, const int& numDecimals) { return Glib::ustring::format(std::fixed, std::setprecision(numDecimals), num); } } #endif //CIFTILIB_USE_XMLPP #ifndef __ASTRING_H_HAVE_IMPL__ #error "you must define either CIFTILIB_USE_QT or CIFTILIB_USE_XMLPP to select what unicode string implementation to use" #endif namespace cifti { //more helper functions std::vector AString_split(const AString& input, const char& delim); std::vector AString_split_whitespace(const AString& input); int64_t AString_toInt(const AString& input, bool& ok); float AString_toFloat(const AString& input, bool& ok); } #endif //__ASTRING_H__ CiftiLib-1.6.0/src/Common/BinaryFile.cxx000066400000000000000000000442101373715117300200030ustar00rootroot00000000000000/*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ //try to force large file support from zlib, any other file reading calls #ifndef CIFTILIB_OS_MACOSX #define _LARGEFILE64_SOURCE #define _LFS64_LARGEFILE 1 #define _FILE_OFFSET_BITS 64 #endif #include "BinaryFile.h" #include "CiftiAssert.h" #include "CiftiException.h" #ifdef CIFTILIB_USE_QT #include #else #include "stdio.h" #include "sys/stat.h" #include "sys/types.h" #include "errno.h" #define BOOST_FILESYSTEM_VERSION 3 #include "boost/filesystem.hpp" #endif #ifdef CIFTILIB_HAVE_ZLIB #include "zlib.h" #endif //CIFTILIB_HAVE_ZLIB #include #include using namespace cifti; using boost::shared_ptr; using namespace std; //private implementation classes namespace cifti { #ifdef ZLIB_VERSION class ZFileImpl : public BinaryFile::ImplInterface { gzFile m_zfile; const static int64_t CHUNK_SIZE; public: ZFileImpl() { m_zfile = NULL; } void open(const AString& filename, const BinaryFile::OpenMode& opmode); void close(); void seek(const int64_t& position); int64_t pos(); int64_t size() { return -1; } void read(void* dataOut, const int64_t& count, int64_t* numRead); void write(const void* dataIn, const int64_t& count); ~ZFileImpl(); }; const int64_t ZFileImpl::CHUNK_SIZE = 1<<26;//64MiB, large enough for good performance, small enough for zlib, must convert to uint32 #endif //ZLIB_VERSION #ifdef CIFTILIB_USE_QT class QFileImpl : public BinaryFile::ImplInterface { QFile m_file; const static int64_t CHUNK_SIZE; public: void open(const AString& filename, const BinaryFile::OpenMode& opmode); void close(); void seek(const int64_t& position); int64_t pos(); int64_t size() { return m_file.size(); } void read(void* dataOut, const int64_t& count, int64_t* numRead); void write(const void* dataIn, const int64_t& count); }; const int64_t QFileImpl::CHUNK_SIZE = 1<<30;//1GiB, QT4 apparently chokes at more than 2GiB via buffer.read using int32 #else class StrFileImpl : public BinaryFile::ImplInterface { FILE* m_file; int64_t m_curPos;//so we can avoid calling seek when it is to current position - QFile does this, and it makes it much faster for some cases public: StrFileImpl() { m_file = NULL; m_curPos = -1; } void open(const AString& filename, const BinaryFile::OpenMode& opmode); void close(); void seek(const int64_t& position); int64_t pos(); int64_t size(); void read(void* dataOut, const int64_t& count, int64_t* numRead); void write(const void* dataIn, const int64_t& count); ~StrFileImpl(); }; #endif //CIFTILIB_USE_QT } BinaryFile::ImplInterface::~ImplInterface() { } BinaryFile::BinaryFile(const AString& filename, const OpenMode& fileMode) { open(filename, fileMode); } void BinaryFile::close() { m_curMode = NONE; if (m_impl == NULL) return; m_impl->close(); m_impl.reset(); } AString BinaryFile::getFilename() const { if (m_impl == NULL) return "";//don't throw, its not really a problem return m_impl->getFilename(); } bool BinaryFile::getOpenForRead() { return (m_curMode & READ) != 0; } bool BinaryFile::getOpenForWrite() { return (m_curMode & WRITE) != 0; } void BinaryFile::open(const AString& filename, const OpenMode& opmode) { close(); if (opmode == NONE) throw CiftiException("can't open file with NONE mode"); if (AString_substr(filename, filename.size() - 3) == ".gz") { #ifdef ZLIB_VERSION m_impl = boost::shared_ptr(new ZFileImpl()); #else //ZLIB_VERSION throw CiftiException("can't open .gz file '" + filename + "', compiled without zlib support"); #endif //ZLIB_VERSION } else { #ifdef CIFTILIB_USE_QT m_impl = boost::shared_ptr(new QFileImpl()); #else m_impl = boost::shared_ptr(new StrFileImpl()); #endif } m_impl->open(filename, opmode); m_curMode = opmode; } void BinaryFile::read(void* dataOut, const int64_t& count, int64_t* numRead) { CiftiAssert(count >= 0);//not sure about allowing 0 if (!getOpenForRead()) throw CiftiException("file is not open for reading"); m_impl->read(dataOut, count, numRead); } void BinaryFile::seek(const int64_t& position) { CiftiAssert(position >= 0); if (m_curMode == NONE) throw CiftiException("file is not open, can't seek"); m_impl->seek(position); } int64_t BinaryFile::pos() { if (m_curMode == NONE) throw CiftiException("file is not open, can't report position"); return m_impl->pos(); } int64_t BinaryFile::size() { if (m_curMode == NONE) throw CiftiException("file is not open, can't report size"); return m_impl->size(); } void BinaryFile::write(const void* dataIn, const int64_t& count) { CiftiAssert(count >= 0);//not sure about allowing 0 if (!getOpenForWrite()) throw CiftiException("file is not open for writing"); m_impl->write(dataIn, count); } #ifdef ZLIB_VERSION void ZFileImpl::open(const AString& filename, const BinaryFile::OpenMode& opmode) { close();//don't need to, but just because m_fileName = filename; const char* mode = NULL; switch (opmode)//we only support a limited number of combinations, and the string modes are quirky { case BinaryFile::READ: mode = "rb"; break; case BinaryFile::WRITE_TRUNCATE: mode = "wb";//you have to do "r+b" in order to ask it to not truncate, which zlib doesn't support anyway break; default: throw CiftiException("compressed file only supports READ and WRITE_TRUNCATE modes"); } #if !defined(CIFTILIB_OS_MACOSX) && ZLIB_VERNUM > 0x1232 m_zfile = gzopen64(ASTRING_TO_CSTR(filename), mode); #else m_zfile = gzopen(ASTRING_TO_CSTR(filename), mode); #endif if (m_zfile == NULL) { #ifdef CIFTILIB_USE_QT if (QFile::exists(filename)) #else if (boost::filesystem::exists(AString_to_std_string(filename))) #endif { if (!(opmode & BinaryFile::TRUNCATE)) { throw CiftiException("failed to open compressed file '" + filename + "', file does not exist, or folder permissions prevent seeing it"); } else {//m_file.error() doesn't help identify this case, see below throw CiftiException("failed to open compressed file '" + filename + "', unable to create file"); } } throw CiftiException("failed to open compressed file '" + filename + "'"); } } void ZFileImpl::close() { if (m_zfile == NULL) return;//happens when closed and then destroyed, error opening gzflush(m_zfile, Z_FULL_FLUSH); if (gzclose(m_zfile) != 0) throw CiftiException("error closing compressed file '" + m_fileName + "'"); m_zfile = NULL; } void ZFileImpl::read(void* dataOut, const int64_t& count, int64_t* numRead) { if (m_zfile == NULL) throw CiftiException("read called on unopened ZFileImpl");//shouldn't happen int64_t totalRead = 0; int readret = 0;//to preserve the info of the read that broke early while (totalRead < count) { int64_t iterSize = min(count - totalRead, CHUNK_SIZE); readret = gzread(m_zfile, ((char*)dataOut) + totalRead, iterSize); if (readret < 1) break;//0 or -1 indicate eof or error totalRead += readret; } if (numRead == NULL) { if (totalRead != count) { if (readret < 0) throw CiftiException("error while reading compressed file '" + m_fileName + "'"); throw CiftiException("premature end of file in compressed file '" + m_fileName + "'"); } } else { *numRead = totalRead; } } void ZFileImpl::seek(const int64_t& position) { if (m_zfile == NULL) throw CiftiException("seek called on unopened ZFileImpl");//shouldn't happen if (pos() == position) return;//slight hack, since gzseek is slow or nonfunctional for some cases, so don't try it unless necessary #if !defined(CIFTILIB_OS_MACOSX) && ZLIB_VERNUM > 0x1232 int64_t ret = gzseek64(m_zfile, position, SEEK_SET); #else int64_t ret = gzseek(m_zfile, position, SEEK_SET); #endif if (ret != position) throw CiftiException("seek failed in compressed file '" + m_fileName + "'"); } int64_t ZFileImpl::pos() { if (m_zfile == NULL) throw CiftiException("pos called on unopened ZFileImpl");//shouldn't happen #if !defined(CIFTILIB_OS_MACOSX) && ZLIB_VERNUM > 0x1232 return gztell64(m_zfile); #else return gztell(m_zfile); #endif } void ZFileImpl::write(const void* dataIn, const int64_t& count) { if (m_zfile == NULL) throw CiftiException("write called on unopened ZFileImpl");//shouldn't happen int64_t totalWritten = 0; while (totalWritten < count) { int64_t iterSize = min(count - totalWritten, CHUNK_SIZE); int writeret = gzwrite(m_zfile, ((const char*)dataIn) + totalWritten, iterSize); if (writeret < 1) break;//0 or -1 indicate eof or error totalWritten += writeret; } if (totalWritten != count) throw CiftiException("failed to write to compressed file '" + m_fileName + "'"); } ZFileImpl::~ZFileImpl() { try//throwing from a destructor is a bad idea { close(); } catch (const CiftiException& e) { cerr << AString_to_std_string(e.whatString()) << endl; } catch (exception& e) { cerr << e.what() << endl; } catch (...) { cerr << AString_to_std_string("caught unknown exception type while closing compressed file '" + m_fileName + "'") << endl; } } #endif //ZLIB_VERSION #ifdef CIFTILIB_USE_QT void QFileImpl::open(const AString& filename, const BinaryFile::OpenMode& opmode) { close();//don't need to, but just because m_fileName = filename; QIODevice::OpenMode mode = QIODevice::NotOpen;//means 0 if (opmode & BinaryFile::READ) mode |= QIODevice::ReadOnly; if (opmode & BinaryFile::WRITE) mode |= QIODevice::WriteOnly; if (opmode & BinaryFile::TRUNCATE) mode |= QIODevice::Truncate;//expect QFile to recognize silliness like TRUNCATE by itself m_file.setFileName(filename); if (!m_file.open(mode)) { if (!m_file.exists()) { if (!(opmode & BinaryFile::TRUNCATE)) { throw CiftiException("failed to open file '" + filename + "', file does not exist, or folder permissions prevent seeing it"); } else {//m_file.error() doesn't help identify this case, see below throw CiftiException("failed to open file '" + filename + "', unable to create file"); } } switch (m_file.error()) { case QFile::ResourceError://on linux at least, it never gives another code besides the unhelpful OpenError throw CiftiException("failed to open file '" + filename + "', too many open files"); default: throw CiftiException("failed to open file '" + filename + "'"); } } } void QFileImpl::close() { m_file.close(); } void QFileImpl::read(void* dataOut, const int64_t& count, int64_t* numRead) { int64_t total = 0; int64_t readret = -1; while (total < count) { int64_t maxToRead = min(count - total, CHUNK_SIZE); readret = m_file.read(((char*)dataOut) + total, maxToRead);//QFile chokes on large reads also if (readret < 1) break;//0 or -1 means error or eof total += readret; } if (numRead == NULL) { if (total != count) { if (readret < 0) throw CiftiException("error while reading file '" + m_fileName + "'"); throw CiftiException("premature end of file in '" + m_fileName + "'"); } } else { *numRead = total; } } void QFileImpl::seek(const int64_t& position) { if (m_file.pos() == position) return; //QFile::seek always does a flush in qt5, so try to avoid calling it if (!m_file.seek(position)) throw CiftiException("seek failed in file '" + m_fileName + "'"); } int64_t QFileImpl::pos() { return m_file.pos(); } void QFileImpl::write(const void* dataIn, const int64_t& count) { int64_t total = 0; int64_t writeret = -1; while (total < count) { int64_t maxToWrite = min(count - total, CHUNK_SIZE); writeret = m_file.write(((const char*)dataIn) + total, maxToWrite);//QFile probably also chokes on large writes if (writeret < 1) break;//0 or -1 means error or eof total += writeret; } if (total != count) throw CiftiException("failed to write to file '" + m_fileName + "'"); } #else //CIFTILIB_USE_QT void StrFileImpl::open(const AString& filename, const BinaryFile::OpenMode& opmode) { close(); m_fileName = filename; const char* mode = NULL; switch (opmode) { case BinaryFile::READ: mode = "rb"; break; case BinaryFile::READ_WRITE: mode = "r+b"; break; case BinaryFile::WRITE_TRUNCATE: mode = "wb"; break; case BinaryFile::READ_WRITE_TRUNCATE: mode = "w+b"; break; default: throw CiftiException("unsupported open mode in StrFileImpl"); } errno = 0; m_file = fopen(ASTRING_TO_CSTR(filename), mode); int save_err = errno; if (m_file == NULL) { if (!boost::filesystem::exists(AString_to_std_string(filename))) { if (!(opmode & BinaryFile::TRUNCATE)) { throw CiftiException("failed to open file '" + filename + "', file does not exist, or folder permissions prevent seeing it"); } else { throw CiftiException("failed to open file '" + filename + "', unable to create file"); } } switch (save_err) { case EMFILE: case ENFILE: throw CiftiException("failed to open file '" + filename + "', too many open files"); default: throw CiftiException("failed to open file '" + filename + "'"); } } m_curPos = 0; } void StrFileImpl::close() { if (m_file == NULL) return; int ret = fclose(m_file); m_file = NULL; m_curPos = -1; if (ret != 0) throw CiftiException("error closing file '" + m_fileName + "'"); } void StrFileImpl::read(void* dataOut, const int64_t& count, int64_t* numRead) { if (m_file == NULL) throw CiftiException("read called on unopened StrFileImpl");//shouldn't happen int64_t readret = fread(dataOut, 1, count, m_file);//expect fread to not have read size limitations comapred to memory m_curPos += readret;//the item size is 1 CiftiAssert(m_curPos == ftello(m_file));//double check it in debug, ftello is fast on linux at least if (numRead == NULL) { if (readret != count) { if (feof(m_file)) throw CiftiException("premature end of file in file '" + m_fileName + "'"); throw CiftiException("error while reading file '" + m_fileName + "'"); } } else { *numRead = readret; } } void StrFileImpl::seek(const int64_t& position) { if (m_file == NULL) throw CiftiException("seek called on unopened StrFileImpl");//shouldn't happen if (position == m_curPos) return;//optimization: calling fseeko causes nontrivial system call time, on linux at least int ret = fseeko(m_file, position, SEEK_SET); if (ret != 0) throw CiftiException("seek failed in file '" + m_fileName + "'"); m_curPos = position; } int64_t StrFileImpl::pos() { if (m_file == NULL) throw CiftiException("pos called on unopened StrFileImpl");//shouldn't happen CiftiAssert(m_curPos == ftello(m_file));//make sure it is right in debug return m_curPos;//we can avoid a call here also } int64_t StrFileImpl::size() { struct stat mystat; int result = fstat(fileno(m_file), &mystat); if (result != 0) return -1; return mystat.st_size; } void StrFileImpl::write(const void* dataIn, const int64_t& count) { if (m_file == NULL) throw CiftiException("write called on unopened StrFileImpl");//shouldn't happen int64_t writeret = fwrite(dataIn, 1, count, m_file);//expect fwrite to not have write size limitations compared to memory m_curPos += writeret;//the item size is 1 CiftiAssert(m_curPos == ftello(m_file));//double check it in debug, ftello is fast on linux at least if (writeret != count) throw CiftiException("failed to write to file '" + m_fileName + "'"); } StrFileImpl::~StrFileImpl() { try//throwing from a destructor is a bad idea { close(); } catch (const CiftiException& e) { cerr << AString_to_std_string(e.whatString()) << endl; } catch (exception& e) { cerr << e.what() << endl; } catch (...) { cerr << AString_to_std_string("caught unknown exception type while closing file '" + m_fileName + "'") << endl; } } #endif //CIFTILIB_USE_QT CiftiLib-1.6.0/src/Common/BinaryFile.h000066400000000000000000000072461373715117300174400ustar00rootroot00000000000000#ifndef __BINARY_FILE_H__ #define __BINARY_FILE_H__ /*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "boost/shared_ptr.hpp" #include "AString.h" #include namespace cifti { //class to hide difference between compressed and standard binary file reading, and to automate error checking (throws if problem) class BinaryFile { public: enum OpenMode { NONE = 0, READ = 1, WRITE = 2, READ_WRITE = 3,//for convenience TRUNCATE = 4, WRITE_TRUNCATE = 6,//ditto READ_WRITE_TRUNCATE = 7//ditto }; BinaryFile() { } ///constructor that opens file BinaryFile(const AString& filename, const OpenMode& fileMode = READ); void open(const AString& filename, const OpenMode& opmode = READ); void close(); AString getFilename() const;//not a reference because when no file is open, m_impl is NULL bool getOpenForRead(); bool getOpenForWrite(); void seek(const int64_t& position); int64_t pos(); void read(void* dataOut, const int64_t& count, int64_t* numRead = NULL);//throw if numRead is NULL and (error or end of file reached early) void write(const void* dataIn, const int64_t& count);//failure to complete write is always an exception int64_t size();//may return -1 if size cannot be determined efficiently class ImplInterface { protected: AString m_fileName;//filename is tracked here so error messages can be implementation-specific public: virtual void open(const AString& filename, const OpenMode& opmode) = 0; virtual void close() = 0; const AString& getFilename() const { return m_fileName; } virtual void seek(const int64_t& position) = 0; virtual int64_t pos() = 0; virtual int64_t size() = 0; virtual void read(void* dataOut, const int64_t& count, int64_t* numRead) = 0; virtual void write(const void* dataIn, const int64_t& count) = 0; virtual ~ImplInterface(); }; private: boost::shared_ptr m_impl; OpenMode m_curMode;//so implementation classes don't have to track it }; } //namespace cifti #endif //__BINARY_FILE_H__ CiftiLib-1.6.0/src/Common/ByteSwapping.h000066400000000000000000000051501373715117300200200ustar00rootroot00000000000000#ifndef __BYTE_SWAPPING_H__ #define __BYTE_SWAPPING_H__ /*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include namespace cifti { /** * This class contains static methods for byte swapping data, typically used * when reading binary data files. */ class ByteSwapping { public: template static void swap(T& toSwap); template static void swapArray(T* toSwap, const uint64_t& count); inline static bool isBigEndian() { uint16_t test = 1; return (((char*)&test)[0] == 0); } }; template void ByteSwapping::swap(T& toSwap) { if (sizeof(T) == 1) return;//we could specialize 1-byte types, but this should optimize out T temp = toSwap; char* from = (char*)&temp; char* to = (char*)&toSwap; for (int i = 0; i < (int)sizeof(T); ++i) { to[i] = from[sizeof(T) - i - 1]; } } template void ByteSwapping::swapArray(T* toSwap, const uint64_t& count) { if (sizeof(T) == 1) return;//ditto for (uint64_t i = 0; i < count; ++i) { swap(toSwap[i]); } } } #endif // __BYTE_SWAPPING_H__ CiftiLib-1.6.0/src/Common/CMakeLists.txt000066400000000000000000000005641373715117300177770ustar00rootroot00000000000000 SET(HEADERS AString.h ByteSwapping.h CiftiAssert.h BinaryFile.h CiftiException.h CiftiMutex.h Compact3DLookup.h CompactLookup.h FloatMatrix.h MatrixFunctions.h MathFunctions.h MultiDimArray.h MultiDimIterator.h Vector3D.h VoxelIJK.h XmlAdapter.h ) SET(SOURCES AString.cxx BinaryFile.cxx CiftiException.cxx FloatMatrix.cxx MathFunctions.cxx Vector3D.cxx XmlAdapter.cxx ) CiftiLib-1.6.0/src/Common/CiftiAssert.h000066400000000000000000000004171373715117300176250ustar00rootroot00000000000000#ifndef __CARET_ASSERT_H__ #define __CARET_ASSERT_H__ //some minimal adaptation to cassert #include #define CiftiAssert(i) assert(i) #define CiftiAssertVectorIndex(v, i) assert((i) >= 0 && (i) < static_cast((v).size())) #endif //__CARET_ASSERT_H__ CiftiLib-1.6.0/src/Common/CiftiException.cxx000066400000000000000000000051041373715117300206730ustar00rootroot00000000000000/*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CiftiException.h" using namespace cifti; /** * Constructor. * */ CiftiException::CiftiException() : std::runtime_error("") { } /** * Constructor. * * @param s Description of the exception. * */ CiftiException::CiftiException( const AString& s) : std::runtime_error(AString_to_std_string(s)) { this->exceptionDescription = s; } /** * Copy Constructor. * @param e * Exception that is copied. */ CiftiException::CiftiException(const CiftiException& e) : std::runtime_error(e) { this->exceptionDescription = e.exceptionDescription; } /** * Assignment operator. * @param e * Exception that is copied. * @return * Copy of the exception. */ CiftiException& CiftiException::operator=(const CiftiException& e) { if (this != &e) { std::runtime_error::operator=(e); this->exceptionDescription = e.exceptionDescription; } return *this; } /** * Destructor */ CiftiException::~CiftiException() throw() { } /** * Get a message describing the exception. * @return A message describing the exception. */ AString CiftiException::whatString() const throw() { return this->exceptionDescription; } CiftiLib-1.6.0/src/Common/CiftiException.h000066400000000000000000000040261373715117300203220ustar00rootroot00000000000000#ifndef __CIFTI_EXCEPTION_H__ #define __CIFTI_EXCEPTION_H__ /*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "AString.h" #include namespace cifti { /** * An exception thrown from CiftiLib. */ class CiftiException : public std::runtime_error { public: CiftiException(); CiftiException(const AString& s); CiftiException(const CiftiException& e); CiftiException& operator=(const CiftiException& e); virtual ~CiftiException() throw(); virtual AString whatString() const throw(); private: /// Description of the exception AString exceptionDescription; }; } // namespace #endif // __CIFTI_EXCEPTION_H__ CiftiLib-1.6.0/src/Common/CiftiMutex.h000066400000000000000000000065651373715117300175000ustar00rootroot00000000000000#ifndef __CIFTI_MUTEX_H__ #define __CIFTI_MUTEX_H__ /*LICENSE_START*/ /* * Copyright (c) 2016, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #ifdef _OPENMP #define __CIFTI_MUTEX_H_HAVE_IMPL__ #include "omp.h" namespace cifti { class CiftiMutex { omp_lock_t m_lock; public: CiftiMutex(const CiftiMutex&) { omp_init_lock(&m_lock); };//allow copy, assign, but make them do nothing other than default construct CiftiMutex& operator=(const CiftiMutex&) { return *this; }; CiftiMutex() { omp_init_lock(&m_lock); } ~CiftiMutex() { omp_destroy_lock(&m_lock); } friend class CiftiMutexLocker; }; class CiftiMutexLocker { CiftiMutex* m_mutex; CiftiMutexLocker();//disallow default construction, assign CiftiMutexLocker& operator=(const CiftiMutexLocker& rhs); public: CiftiMutexLocker(CiftiMutex* mutex) { m_mutex = mutex; omp_set_lock(&(m_mutex->m_lock)); } ~CiftiMutexLocker() { omp_unset_lock(&(m_mutex->m_lock)); } }; } #else //_OPENMP #ifdef CIFTILIB_USE_QT #define __CIFTI_MUTEX_H_HAVE_IMPL__ #include namespace cifti { typedef QMutex CiftiMutex; typedef QMutexLocker CiftiMutexLocker; } #endif //CIFTILIB_USE_QT #ifdef CIFTILIB_USE_XMLPP #define __CIFTI_MUTEX_H_HAVE_IMPL__ #include namespace cifti { typedef Glib::Mutex CiftiMutex; //API difference: glib's locker class takes a reference, while QT's takes a pointer class CiftiMutexLocker { CiftiMutex* m_mutex; CiftiMutexLocker();//disallow default construction, assign CiftiMutexLocker& operator=(const CiftiMutexLocker& rhs); public: CiftiMutexLocker(CiftiMutex* mutex) { m_mutex = mutex; m_mutex->lock(); } ~CiftiMutexLocker() { m_mutex->unlock(); } }; } #endif //CIFTILIB_USE_XMLPP #endif //_OPENMP #ifndef __CIFTI_MUTEX_H_HAVE_IMPL__ #error "you must have openmp support, or define either CIFTILIB_USE_QT or CIFTILIB_USE_XMLPP to select what mutex implementation to use" #endif #endif //__CIFTI_MUTEX_H__ CiftiLib-1.6.0/src/Common/Compact3DLookup.h000066400000000000000000000113011373715117300203460ustar00rootroot00000000000000#ifndef __COMPACT_3D_LOOKUP_H__ #define __COMPACT_3D_LOOKUP_H__ /*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CompactLookup.h" namespace cifti { template class Compact3DLookup { CompactLookup > > m_lookup;//the whole point of this class is to deal with this ugliness public: ///creates the element if it didn't exist, and returns a reference to it T& at(const int64_t& index1, const int64_t& index2, const int64_t& index3); ///creates the element if it didn't exist, and returns a reference to it T& at(const int64_t index[3]) { return at(index[0], index[1], index[2]); } ///add or overwrite an element in the lookup void insert(const int64_t& index1, const int64_t& index2, const int64_t& index3, const T& value) { at(index1, index2, index3) = value; } ///add or overwrite an element in the lookup void insert(const int64_t index[3], const T& value) { at(index) = value; } ///returns a pointer to the desired element, or NULL if no such element is found T* find(const int64_t& index1, const int64_t& index2, const int64_t& index3); ///returns a pointer to the desired element, or NULL if no such element is found T* find(const int64_t index[3]) { return find(index[0], index[1], index[2]); } ///returns a pointer to the desired element, or NULL if no such element is found const T* find(const int64_t& index1, const int64_t& index2, const int64_t& index3) const; ///returns a pointer to the desired element, or NULL if no such element is found const T* find(const int64_t index[3]) const { return find(index[0], index[1], index[2]); } ///empties the lookup void clear(); }; template T& Compact3DLookup::at(const int64_t& index1, const int64_t& index2, const int64_t& index3) { return m_lookup[index3][index2][index1];//a lot of complexity is hidden in those operator[]s } template T* Compact3DLookup::find(const int64_t& index1, const int64_t& index2, const int64_t& index3) { typename CompactLookup > >::iterator iter1 = m_lookup.find(index3);//oh the humanity if (iter1 == m_lookup.end()) return NULL; typename CompactLookup >::iterator iter2 = iter1->find(index2); if (iter2 == iter1->end()) return NULL; typename CompactLookup::iterator iter3 = iter2->find(index1); if (iter3 == iter2->end()) return NULL; return &(*iter3); } template const T* Compact3DLookup::find(const int64_t& index1, const int64_t& index2, const int64_t& index3) const { typename CompactLookup > >::const_iterator iter1 = m_lookup.find(index3); if (iter1 == m_lookup.end()) return NULL; typename CompactLookup >::const_iterator iter2 = iter1->find(index2); if (iter2 == iter1->end()) return NULL; typename CompactLookup::const_iterator iter3 = iter2->find(index1); if (iter3 == iter2->end()) return NULL; return &(*iter3); } template void Compact3DLookup::clear() { m_lookup.clear(); } } #endif //__COMPACT_3D_LOOKUP_H__ CiftiLib-1.6.0/src/Common/CompactLookup.h000066400000000000000000000235351373715117300201730ustar00rootroot00000000000000#ifndef __COMPACT_LOOKUP_H__ #define __COMPACT_LOOKUP_H__ /*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CiftiAssert.h" #include "stdint.h" #include namespace cifti { template class CompactLookup { struct Chunk { int64_t start; std::vector elements; }; std::vector m_chunks; public: class iterator { CompactLookup& m_container; std::size_t m_chunk; int64_t m_elem; iterator(CompactLookup& container, std::size_t chunk, int64_t elem) : m_container(container), m_chunk(chunk), m_elem(elem) { } public: bool operator==(const iterator& rhs) const { if (&m_container != &(rhs.m_container)) return false; if (m_chunk != rhs.m_chunk) return false; if (m_elem != rhs.m_elem) return false; return true; } T& operator*() { CiftiAssert(m_chunk < m_container.m_chunks.size()); CiftiAssert(m_elem >= 0 && m_elem < (int64_t)m_container.m_chunks[m_chunk].elements.size()); return m_container.m_chunks[m_chunk].elements[m_elem]; } T* operator->() { CiftiAssert(m_chunk < m_container.m_chunks.size()); CiftiAssert(m_elem >= 0 && m_elem < (int64_t)m_container.m_chunks[m_chunk].elements.size()); return &(m_container.m_chunks[m_chunk].elements[m_elem]); } friend class CompactLookup; }; class const_iterator { const CompactLookup& m_container; std::size_t m_chunk; int64_t m_elem; const_iterator(const CompactLookup& container, std::size_t chunk, std::size_t elem) : m_container(container), m_chunk(chunk), m_elem(elem) { } public: bool operator==(const const_iterator& rhs) const { if (&m_container != &(rhs.m_container)) return false; if (m_chunk != rhs.m_chunk) return false; if (m_elem != rhs.m_elem) return false; return true; } const T& operator*() { CiftiAssert(m_chunk < m_container.m_chunks.size()); CiftiAssert(m_elem >= 0 && m_elem < (int64_t)m_container.m_chunks[m_chunk].elements.size()); return m_container.m_chunks[m_chunk].elements[m_elem]; } const T* operator->() { CiftiAssert(m_chunk < m_container.m_chunks.size()); CiftiAssert(m_elem >= 0 && m_elem < (int64_t)m_container.m_chunks[m_chunk].elements.size()); return &(m_container.m_chunks[m_chunk].elements[m_elem]); } friend class CompactLookup; }; ///creates the element if it didn't exist, and returns a reference to it T& operator[](const int64_t& index); ///returns an iterator pointing to the desired element, or one equal to end() if no such element is found iterator find(const int64_t& index); ///returns a const_iterator pointing to the desired element, or one equal to end() if no such element is found const_iterator find(const int64_t& index) const; iterator end(); const_iterator end() const; ///empties the lookup void clear(); }; template T& CompactLookup::operator[](const int64_t& index) { std::size_t numChunks = m_chunks.size(); std::size_t low = 0, high = numChunks, guess;//NOTE: low is 0 because size_t is unsigned, really means -1 bool attach_low = false, attach_high = false; while (low < high)//bisection search for the chunk with the largest start value not greater than { guess = (low + high - 1) / 2;//which is why we subtract 1 here CiftiAssert(guess < m_chunks.size()); if (m_chunks[guess].start > index) { high = guess; } else { low = guess + 1; } }//NOTE: low == high after loop ends if (high > 0 && m_chunks[high - 1].start + (int64_t)(m_chunks[high - 1].elements.size()) > index)//element exists, return it { CiftiAssertVectorIndex(m_chunks[high -1].elements, index - m_chunks[high - 1].start); return m_chunks[high - 1].elements[index - m_chunks[high - 1].start]; } if (high > 0 && m_chunks[high - 1].start + (int64_t)(m_chunks[high - 1].elements.size()) == index) attach_low = true;//index is 1 beyond the range if (high < numChunks && m_chunks[high].start == index + 1) attach_high = true;//index is 1 before the next range if (attach_low) { std::vector& lowvec = m_chunks[high - 1].elements; std::size_t retIndex = lowvec.size(); lowvec.push_back(T()); if (attach_high) { std::vector& highvec = m_chunks[high].elements; lowvec.insert(lowvec.end(), highvec.begin(), highvec.end()); m_chunks.erase(m_chunks.begin() + high); } return lowvec[retIndex]; } else { if (attach_high) { std::vector& highvec = m_chunks[high].elements; highvec.insert(highvec.begin(), T());//add a new element to the start of the vector (yes, this could be slow) m_chunks[high].start = index;//and change the start value of the chunk return highvec[0]; } else { m_chunks.insert(m_chunks.begin() + high, Chunk()); m_chunks[high].start = index; m_chunks[high].elements.push_back(T()); return m_chunks[high].elements[0]; } } } template typename CompactLookup::iterator CompactLookup::find(const int64_t& index) { std::size_t numChunks = m_chunks.size(); std::size_t low = 0, high = numChunks, guess;//NOTE: low is 0 because size_t is unsigned, really means -1 while (low < high)//bisection search for the chunk with the largest start value not greater than { guess = (low + high - 1) / 2;//which is why we subtract 1 here CiftiAssert(guess < m_chunks.size()); if (m_chunks[guess].start > index) { high = guess; } else { low = guess + 1; } }//NOTE: low == high after loop ends if (high > 0 && m_chunks[high - 1].start + (int64_t)(m_chunks[high - 1].elements.size()) > index)//element exists, return it { std::size_t outIndex = index - m_chunks[high - 1].start; CiftiAssert(outIndex < m_chunks[high - 1].elements.size()); return iterator(*this, high - 1, outIndex); } return end(); } template typename CompactLookup::const_iterator CompactLookup::find(const int64_t& index) const { std::size_t numChunks = m_chunks.size(); std::size_t low = 0, high = numChunks, guess;//NOTE: low is 0 because size_t is unsigned, really means -1 while (low < high)//bisection search for the chunk with the largest start value not greater than { guess = (low + high - 1) / 2;//which is why we subtract 1 here CiftiAssert(guess < m_chunks.size()); if (m_chunks[guess].start > index) { high = guess; } else { low = guess + 1; } }//NOTE: low == high after loop ends if (high > 0 && m_chunks[high - 1].start + (int64_t)(m_chunks[high - 1].elements.size()) > index)//element exists, return it { std::size_t outIndex = index - m_chunks[high - 1].start; CiftiAssert(outIndex < m_chunks[high - 1].elements.size()); return const_iterator(*this, high - 1, outIndex); } return end(); } template typename CompactLookup::iterator CompactLookup::end() { return iterator(*this, 0, -1); } template typename CompactLookup::const_iterator CompactLookup::end() const { return const_iterator(*this, 0, -1); } template void CompactLookup::clear() { m_chunks.clear(); } } #endif //__COMPACT_LOOKUP_H__ CiftiLib-1.6.0/src/Common/FloatMatrix.cxx000066400000000000000000000222131373715117300202100ustar00rootroot00000000000000/*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CiftiAssert.h" #include "CiftiException.h" #include "FloatMatrix.h" #include "MatrixFunctions.h" using namespace cifti; using namespace std; bool FloatMatrix::checkDimensions() const { uint64_t rows = m_matrix.size(), cols; if (rows == 0) return true;//treat it as fine for now cols = m_matrix[0].size(); for (uint64_t i = 1; i < rows; ++i) { if (m_matrix[i].size() != cols) { return false; } } return true; } FloatMatrix::FloatMatrix(const vector >& matrixIn) { m_matrix = matrixIn; CiftiAssert(checkDimensions()); } FloatMatrix::FloatMatrix(const int64_t& rows, const int64_t& cols) { resize(rows, cols, true); } bool FloatMatrix::operator!=(const FloatMatrix& right) const { return !(*this == right); } FloatMatrix FloatMatrix::operator*(const FloatMatrix& right) const { FloatMatrix ret; MatrixFunctions::multiply(m_matrix, right.m_matrix, ret.m_matrix); return ret; } FloatMatrix& FloatMatrix::operator*=(const FloatMatrix& right) { MatrixFunctions::multiply(m_matrix, right.m_matrix, m_matrix);//would need a copy anyway, so let it make the copy internally return *this; } FloatMatrix FloatMatrix::concatHoriz(const FloatMatrix& right) const { FloatMatrix ret; MatrixFunctions::horizCat(m_matrix, right.m_matrix, ret.m_matrix); return ret; } FloatMatrix FloatMatrix::concatVert(const FloatMatrix& bottom) const { FloatMatrix ret; MatrixFunctions::vertCat(m_matrix, bottom.m_matrix, ret.m_matrix); return ret; } FloatMatrix FloatMatrix::getRange(const int64_t firstRow, const int64_t afterLastRow, const int64_t firstCol, const int64_t afterLastCol) const { FloatMatrix ret; MatrixFunctions::getChunk(firstRow, afterLastRow, firstCol, afterLastCol, m_matrix, ret.m_matrix); return ret; } FloatMatrix FloatMatrix::identity(const int64_t rows) { FloatMatrix ret; MatrixFunctions::identity(rows, ret.m_matrix); return ret; } FloatMatrix FloatMatrix::inverse() const { FloatMatrix ret; MatrixFunctions::inverse(m_matrix, ret.m_matrix); return ret; } FloatMatrix& FloatMatrix::operator*=(const float& right) { MatrixFunctions::multiply(m_matrix, right, m_matrix);//internally makes a copy return *this; } FloatMatrix FloatMatrix::operator+(const FloatMatrix& right) const { FloatMatrix ret; MatrixFunctions::add(m_matrix, right.m_matrix, ret.m_matrix); return ret; } FloatMatrix& FloatMatrix::operator+=(const FloatMatrix& right) { MatrixFunctions::add(m_matrix, right.m_matrix, m_matrix); return *this; } FloatMatrix& FloatMatrix::operator+=(const float& right) { MatrixFunctions::add(m_matrix, right, m_matrix); return *this; } FloatMatrix FloatMatrix::operator-(const FloatMatrix& right) const { FloatMatrix ret; MatrixFunctions::subtract(m_matrix, right.m_matrix, ret.m_matrix); return ret; } FloatMatrix& FloatMatrix::operator-=(const FloatMatrix& right) { MatrixFunctions::subtract(m_matrix, right.m_matrix, m_matrix); return *this; } FloatMatrix& FloatMatrix::operator-=(const float& right) { MatrixFunctions::add(m_matrix, (-right), m_matrix); return *this; } FloatMatrix& FloatMatrix::operator/=(const float& right) { return ((*this) *= 1.0f / right); } bool FloatMatrix::operator==(const FloatMatrix& right) const { if (this == &right) { return true;//short circuit true on pointer equivalence } int64_t i, j, rows = (int64_t)m_matrix.size(), cols; if (rows != (int64_t)right.m_matrix.size()) { return false; } if (rows == 0) { return true;//don't try to get the second dimension } cols = (int64_t)m_matrix[0].size(); if (cols != (int64_t)right.m_matrix[0].size()) { return false; } for (i = 0; i < rows; ++i) { for (j = 0; j < cols; ++j) { if (m_matrix[i][j] != right.m_matrix[i][j]) { return false; } } } return true; } void FloatMatrix::getDimensions(int64_t& rows, int64_t& cols) const { rows = (int64_t)m_matrix.size(); if (rows == 0) { cols = 0; } else { cols = (int64_t)m_matrix[0].size(); } } FloatMatrixRowRef FloatMatrix::operator[](const int64_t& index) { CiftiAssert(index > -1 && index < (int64_t)m_matrix.size()); FloatMatrixRowRef ret(m_matrix[index]); return ret; } ConstFloatMatrixRowRef FloatMatrix::operator[](const int64_t& index) const { CiftiAssert(index > -1 && index < (int64_t)m_matrix.size()); ConstFloatMatrixRowRef ret(m_matrix[index]); return ret; } FloatMatrix FloatMatrix::reducedRowEchelon() const { FloatMatrix ret(*this); MatrixFunctions::rref(ret.m_matrix); return ret; } void FloatMatrix::resize(const int64_t rows, const int64_t cols, const bool destructive) { MatrixFunctions::resize(rows, cols, m_matrix, destructive); } FloatMatrix FloatMatrix::transpose() const { FloatMatrix ret; MatrixFunctions::transpose(m_matrix, ret.m_matrix); return ret; } FloatMatrix FloatMatrix::zeros(const int64_t rows, const int64_t cols) { FloatMatrix ret; MatrixFunctions::zeros(rows, cols, ret.m_matrix); return ret; } FloatMatrix FloatMatrix::ones(const int64_t rows, const int64_t cols) { FloatMatrix ret; MatrixFunctions::ones(rows, cols, ret.m_matrix); return ret; } const vector >& FloatMatrix::getMatrix() const { return m_matrix; } void FloatMatrix::getAffineVectors(Vector3D& xvec, Vector3D& yvec, Vector3D& zvec, Vector3D& offset) const { if (m_matrix.size() < 3 || m_matrix.size() > 4 || m_matrix[0].size() != 4) { throw CiftiException("getAffineVectors called on incorrectly sized matrix"); } xvec[0] = m_matrix[0][0]; xvec[1] = m_matrix[1][0]; xvec[2] = m_matrix[2][0]; yvec[0] = m_matrix[0][1]; yvec[1] = m_matrix[1][1]; yvec[2] = m_matrix[2][1]; zvec[0] = m_matrix[0][2]; zvec[1] = m_matrix[1][2]; zvec[2] = m_matrix[2][2]; offset[0] = m_matrix[0][3]; offset[1] = m_matrix[1][3]; offset[2] = m_matrix[2][3]; } FloatMatrix FloatMatrix::operator-() const { int64_t rows, cols; getDimensions(rows, cols); FloatMatrix ret = zeros(rows, cols); ret -= *this; return ret; } FloatMatrixRowRef::FloatMatrixRowRef(vector& therow) : m_row(therow) { } FloatMatrixRowRef& FloatMatrixRowRef::operator=(const FloatMatrixRowRef& right) { if (&m_row == &(right.m_row)) {//just in case vector isn't smart enough to check self assignment return *this; } CiftiAssert(m_row.size() == right.m_row.size());//maybe this should be an exception, not an assertion? m_row = right.m_row; return *this; } FloatMatrixRowRef& FloatMatrixRowRef::operator=(const float& right) { for (int64_t i = 0; i < (int64_t)m_row.size(); ++i) { m_row[i] = right; } return *this; } float& FloatMatrixRowRef::operator[](const int64_t& index) { CiftiAssert(index > -1 && index < (int64_t)m_row.size());//instead of segfaulting, explicitly check in debug return m_row[index]; } FloatMatrixRowRef::FloatMatrixRowRef(FloatMatrixRowRef& right) : m_row(right.m_row) { } FloatMatrixRowRef& FloatMatrixRowRef::operator=(const ConstFloatMatrixRowRef& right) { if (&m_row == &(right.m_row)) {//just in case vector isn't smart enough to check self assignment return *this; } CiftiAssert(m_row.size() == right.m_row.size()); m_row = right.m_row; return *this; } const float& ConstFloatMatrixRowRef::operator[](const int64_t& index) { CiftiAssert(index > -1 && index < (int64_t)m_row.size());//instead of segfaulting, explicitly check in debug return m_row[index]; } ConstFloatMatrixRowRef::ConstFloatMatrixRowRef(const ConstFloatMatrixRowRef& right) : m_row(right.m_row) { } ConstFloatMatrixRowRef::ConstFloatMatrixRowRef(const vector& therow) : m_row(therow) { } CiftiLib-1.6.0/src/Common/FloatMatrix.h000066400000000000000000000146141373715117300176430ustar00rootroot00000000000000#ifndef __FLOAT_MATRIX_H__ #define __FLOAT_MATRIX_H__ /*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include #include "stdint.h" #include "Vector3D.h" namespace cifti { class ConstFloatMatrixRowRef {//needed to do [][] on a const FloatMatrix const std::vector& m_row; ConstFloatMatrixRowRef();//disallow default construction, this contains a reference public: ConstFloatMatrixRowRef(const ConstFloatMatrixRowRef& right);//copy constructor ConstFloatMatrixRowRef(const std::vector& therow); const float& operator[](const int64_t& index);//access element friend class FloatMatrixRowRef;//so it can check if it points to the same row }; class FloatMatrixRowRef {//needed to ensure some joker doesn't call mymatrix[1].resize();, while still allowing mymatrix[1][2] = 5; and mymatrix[1] = mymatrix[2]; std::vector& m_row; FloatMatrixRowRef();//disallow default construction, this contains a reference public: FloatMatrixRowRef(FloatMatrixRowRef& right);//copy constructor FloatMatrixRowRef(std::vector& therow); FloatMatrixRowRef& operator=(const FloatMatrixRowRef& right);//NOTE: copy row contents! FloatMatrixRowRef& operator=(const ConstFloatMatrixRowRef& right);//NOTE: copy row contents! FloatMatrixRowRef& operator=(const float& right);//NOTE: set all row values! float& operator[](const int64_t& index);//access element }; ///class for using single precision matrices (insulates other code from the MatrixFunctions templated header) ///errors will result in a matrix of size 0x0, or an assertion failure if the underlying vector isn't rectangular class FloatMatrix { std::vector > m_matrix; bool checkDimensions() const;//put this inside asserts at the end of functions public: FloatMatrix() { };//to make the compiler happy ///construct from a simple vector > FloatMatrix(const std::vector >& matrixIn); ///construct uninitialized with given size FloatMatrix(const int64_t& rows, const int64_t& cols); FloatMatrixRowRef operator[](const int64_t& index);//allow direct indexing to rows ConstFloatMatrixRowRef operator[](const int64_t& index) const;//allow direct indexing to rows while const FloatMatrix& operator+=(const FloatMatrix& right);//add to FloatMatrix& operator-=(const FloatMatrix& right);//subtract from FloatMatrix& operator*=(const FloatMatrix& right);//multiply by FloatMatrix& operator+=(const float& right);//add scalar to FloatMatrix& operator-=(const float& right);//subtract scalar from FloatMatrix& operator*=(const float& right);//multiply by scalar FloatMatrix& operator/=(const float& right);//divide by scalar FloatMatrix operator+(const FloatMatrix& right) const;//add FloatMatrix operator-(const FloatMatrix& right) const;//subtract FloatMatrix operator-() const;//negate FloatMatrix operator*(const FloatMatrix& right) const;//multiply bool operator==(const FloatMatrix& right) const;//compare bool operator!=(const FloatMatrix& right) const;//anti-compare ///return the inverse FloatMatrix inverse() const; ///return the reduced row echelon form FloatMatrix reducedRowEchelon() const; ///return the transpose FloatMatrix transpose() const; ///resize the matrix - keeps contents within bounds unless destructive is true (destructive is faster) void resize(const int64_t rows, const int64_t cols, const bool destructive = false); ///return a matrix of zeros static FloatMatrix zeros(const int64_t rows, const int64_t cols); ///return a matrix of ones static FloatMatrix ones(const int64_t rows, const int64_t cols); ///return square identity matrix static FloatMatrix identity(const int64_t rows); ///get the range of values from first until one before afterLast, as a new matrix FloatMatrix getRange(const int64_t firstRow, const int64_t afterLastRow, const int64_t firstCol, const int64_t afterLastCol) const; ///return a matrix formed by concatenating right to the right of this FloatMatrix concatHoriz(const FloatMatrix& right) const; ///returns a matrix formed by concatenating bottom to the bottom of this FloatMatrix concatVert(const FloatMatrix& bottom) const; ///get the dimensions void getDimensions(int64_t& rows, int64_t& cols) const; ///get the matrix as a vector const std::vector >& getMatrix() const; ///separate 3x4 or 4x4 into Vector3Ds, throw on wrong dimensions void getAffineVectors(Vector3D& xvec, Vector3D& yvec, Vector3D& zvec, Vector3D& offset) const; ///get number of rows int64_t getNumberOfRows() { return (int64_t)m_matrix.size(); } ///get number of columns int64_t getNumberOfColumns() { if (m_matrix.size() == 0) return 0; return (int64_t)m_matrix[0].size(); } }; } #endif //__FLOAT_MATRIX_H__ CiftiLib-1.6.0/src/Common/MathFunctions.cxx000066400000000000000000001425041373715117300205460ustar00rootroot00000000000000/*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include #include #include "MathFunctions.h" using namespace cifti; /** * Calulate the number of combinations for choosing "k" elements * from a total of "n" elements. * * Formula: [n!/(k!*(n-k!)) * If k > (n-k): [n(n-1)(n-2)...(k+1)] / (n-k)! * If k < (n-k): [n(n-1)(n-2)...(n-k+1)] / k! * * @param n - total number of elements. * @param k - number of elements to choose. * @return - number of combinations. * */ int64_t MathFunctions::combinations( const int64_t n, const int64_t k) { int64_t denominator = 1; int64_t nmk = n - k; int64_t iStart = 1; if (k > nmk) { iStart = k + 1; denominator = MathFunctions::factorial(nmk); } else { iStart = nmk + 1; denominator = MathFunctions::factorial(k); } int64_t numerator = 1; for (int64_t i = iStart; i <= n; i++) { numerator *= i; } int64_t numCombosLong = numerator / denominator; int64_t numCombos = (int)numCombosLong; return numCombos; } /** * Calulate the number of permuations for choosing "k" elements * from a total of "n" elements. * * Formula: [n!/(n-m)!] = n(n-1)(n-2)...(n-m+1). * * @param n - total number of elements. * @param k - number of elements to choose. * @return - number of combinations. * */ int64_t MathFunctions::permutations( const int64_t n, const int64_t k) { int64_t iStart = n - k + 1; int numPerms = 1; for (int i = iStart; i <= n; i++) { numPerms *= i; } return numPerms; } /** * Calculate the factorial for a number. * * @param n - the number. * @return - its factiorial * */ int64_t MathFunctions::factorial(const int64_t n) { int64_t num = 1; for (int64_t i = 1; i <= n; i++) { num *= i; } return num; } /** * Compute a normal vector from three vertices and make it a unit vector. * * @param v1 the first vertex, an array of three floats. * @param v2 the first vertex, an array of three floats. * @param v3 the first vertex, an array of three floats. * @param normalVectorOut A three-dimensional array passed into which * the normal vector is loaded. * @return true if vector is valid (non-zero length). * */ bool MathFunctions::normalVector( const float v1[3], const float v2[3], const float v3[3], float normalVectorOut[3]) { /* * DOUBLE PRECISION is needed when points are a small or sliver triangle. */ double a0 = v3[0] - v2[0]; double a1 = v3[1] - v2[1]; double a2 = v3[2] - v2[2]; double b0 = v1[0] - v2[0]; double b1 = v1[1] - v2[1]; double b2 = v1[2] - v2[2]; double nv0 = (a1 * b2 - a2 * b1); double nv1 = (a2 * b0 - a0 * b2); double nv2 = (a0 * b1 - a1 * b0); double length = std::sqrt(nv0*nv0 + nv1*nv1 + nv2*nv2); bool valid = false; if (length != 0.0) { nv0 /= length; nv1 /= length; nv2 /= length; valid = true; } normalVectorOut[0] = (float)nv0; normalVectorOut[1] = (float)nv1; normalVectorOut[2] = (float)nv2; return valid; } /** * Compute a normal vector from three vertices and make it a unit vector. * * @param v1 the first vertex, an array of three floats. * @param v2 the first vertex, an array of three floats. * @param v3 the first vertex, an array of three floats. * @param normalVectorOut A three-dimensional array passed into which * the normal vector is loaded. * @return true if vector is valid (non-zero length). * */ bool MathFunctions::normalVector( const double v1[3], const double v2[3], const double v3[3], double normalVectorOut[3]) { double a0 = v3[0] - v2[0]; double a1 = v3[1] - v2[1]; double a2 = v3[2] - v2[2]; double b0 = v1[0] - v2[0]; double b1 = v1[1] - v2[1]; double b2 = v1[2] - v2[2]; double nv0 = (a1 * b2 - a2 * b1); double nv1 = (a2 * b0 - a0 * b2); double nv2 = (a0 * b1 - a1 * b0); double length = std::sqrt(nv0*nv0 + nv1*nv1 + nv2*nv2); bool valid = false; if (length != 0.0) { nv0 /= length; nv1 /= length; nv2 /= length; valid = true; } normalVectorOut[0] = nv0; normalVectorOut[1] = nv1; normalVectorOut[2] = nv2; return valid; } /** * Compute a normal vector from three vertices and but the returned * vector IS NOT a unit vector. * * @param v1 the first vertex, an array of three floats. * @param v2 the first vertex, an array of three floats. * @param v3 the first vertex, an array of three floats. * @return The normal vector, an array of three floats. * */ void MathFunctions::normalVectorDirection( const float v1[3], const float v2[3], const float v3[3], float directionOut[3]) { float a[] = { v3[0] - v2[0], v3[1] - v2[1], v3[2] - v2[2] }; float b[] = { v1[0] - v2[0], v1[1] - v2[1], v1[2] - v2[2] }; directionOut[0] = (a[1] * b[2] - a[2] * b[1]); directionOut[1] = (a[2] * b[0] - a[0] * b[2]); directionOut[2] = (a[0] * b[1] - a[1] * b[0]); } /** * Cross product of two 3D vectors. * @param v1 The first vector, an array of three floats. * @param v2 The first vector, an array of three floats. * @param resultOut Output containing the cross product. * */ void MathFunctions::crossProduct( const float v1[], const float v2[], float resultOut[]) { resultOut[0] = v1[1] * v2[2] - v1[2] * v2[1]; resultOut[1] = v1[2] * v2[0] - v1[0] * v2[2]; resultOut[2] = v1[0] * v2[1] - v1[1] * v2[0]; } /** * Cross product of two 3D vectors. * @param v1 The first vector, an array of three floats. * @param v2 The first vector, an array of three floats. * @param resultOut Output containing the cross product. * */ void MathFunctions::crossProduct( const double v1[], const double v2[], double resultOut[]) { resultOut[0] = v1[1] * v2[2] - v1[2] * v2[1]; resultOut[1] = v1[2] * v2[0] - v1[0] * v2[2]; resultOut[2] = v1[0] * v2[1] - v1[1] * v2[0]; } /** * Cross product of two 3D vectors with normalizing both the * input and output vectors. * * @param x1 The first vector, an array of three floats. * @param x2 The first vector, an array of three floats. * @return The cross product, an array of three floats. * */ void MathFunctions::normalizedCrossProduct( const float x1[], const float x2[], float resultOut[]) { float v1[3] = { x1[0], x1[1], x1[2] }; MathFunctions::normalizeVector(v1); float v2[3] = { x2[0], x2[1], x2[2] }; MathFunctions::normalizeVector(v2); MathFunctions::crossProduct(v1, v2, resultOut); MathFunctions::normalizeVector(resultOut); } /** * Normalize a 3D vector (make its length 1.0). * * @param vectorsAll Array containing the XYZ components * of the vectors. * @param offset Offset of the vector's X-component in the * vectorsAll array. * @return The length of the vector prior to normalization. * */ float MathFunctions::normalizeVector( float vectorsAll[], const int32_t offset) { float len = MathFunctions::vectorLength(vectorsAll, offset); if (len != 0.0) { vectorsAll[offset] /= len; vectorsAll[offset+1] /= len; vectorsAll[offset+2] /= len; } return len; } /** * Normalize a 3D vector (make its length 1.0). * * @param vectorInOut vector that is normalized. * @return The length of the vector prior to normalization. * */ float MathFunctions::normalizeVector(float vector[3]) { float len = vectorLength(vector); if (len != 0.0) { vector[0] /= len; vector[1] /= len; vector[2] /= len; } return len; } /** * Normalize a 3D vector (make its length 1.0). * * @param vectorInOut vector that is normalized. * @return The length of the vector prior to normalization. * */ double MathFunctions::normalizeVector(double vector[3]) { double len = vectorLength(vector); if (len != 0.0) { vector[0] /= len; vector[1] /= len; vector[2] /= len; } return len; } /** * Get length of vector. * * @param vector Vector whose length is computed. * * @return The length of the vector. * */ float MathFunctions::vectorLength(const float vector[3]) { float len = (float)std::sqrt(vector[0]*vector[0] + vector[1]*vector[1] + vector[2]*vector[2]); return len; } /** * Get length of vector. * * @param vectorsAll Array containing three-dimensional vectors. * @param offset Offset of vector's X-component in vectorsAll array. * * @return The length of the vector. * */ float MathFunctions::vectorLength( const float vectorsAll[], const int32_t offset) { float len = (float)std::sqrt(vectorsAll[offset]*vectorsAll[offset] + vectorsAll[offset+1]*vectorsAll[offset+1] + vectorsAll[offset+2]*vectorsAll[offset+2]); return len; } /** * Get length of vector. * * @param vector Vector whose length is computed. * * @return The length of the vector. * */ double MathFunctions::vectorLength(const double vector[3]) { double len = std::sqrt(vector[0]*vector[0] + vector[1]*vector[1] + vector[2]*vector[2]); return len; } /** * Get the squared distance between two 3D points. * * @param p1 Point 1 (3 element array) * @param p2 Point 2 (3 element array) * @return Distance squared between the two points. * */ float MathFunctions::distanceSquared3D( const float p1[3], const float p2[3]) { float dx = p1[0] - p2[0]; float dy = p1[1] - p2[1]; float dz = p1[2] - p2[2]; float distSQ = dx*dx + dy*dy + dz*dz; return distSQ; } /** * Get the squared distance between two 3D coordinates. * * @param xyzAll Array containing all of the XYZ coordinates. * @param offsetCoord1 Offset of the first coordinates X-coordinate. * @param offsetCoord2 Offset of the second coordinates X-coordinate. * @return Distance squared between the two coordinates. * */ float MathFunctions::distanceSquared3D( const float xyzAll[], const int32_t offsetCoord1, const int32_t offsetCoord2) { float dx = xyzAll[offsetCoord1] - xyzAll[offsetCoord2]; float dy = xyzAll[offsetCoord1+1] - xyzAll[offsetCoord2+1]; float dz = xyzAll[offsetCoord1+2] - xyzAll[offsetCoord2+2]; float distSQ = dx*dx + dy*dy + dz*dz; return distSQ; } /** * Get the distance between two 3D points. * * @param p1 Point 1 (3 element array) * @param p2 Point 2 (3 element array) * @return Distance between the two points. * */ float MathFunctions::distance3D( const float p1[3], const float p2[3]) { float dist = distanceSquared3D(p1, p2); if (dist != 0.0f) { dist = (float)std::sqrt(dist); } return dist; } /** * Get the squared distance between two 3D points. * * @param p1 Point 1 (3 element array) * @param p2 Point 2 (3 element array) * @return Distance squared between the two points. * */ double MathFunctions::distanceSquared3D( const double p1[3], const double p2[3]) { double dx = p1[0] - p2[0]; double dy = p1[1] - p2[1]; double dz = p1[2] - p2[2]; double distSQ = dx*dx + dy*dy + dz*dz; return distSQ; // double dist = distanceSquared3D(p1, p2); // if (dist != 0.0f) { // dist = std::sqrt(dist); // } // return dist; } /** * Get the distance between two 3D points. * * @param p1 Point 1 (3 element array) * @param p2 Point 2 (3 element array) * @return Distance between the two points. * */ double MathFunctions::distance3D( const double p1[3], const double p2[3]) { double dist = distanceSquared3D(p1, p2); if (dist != 0.0f) { dist = std::sqrt(dist); } return dist; } /** * subtract vectors (3d) result = v1 - v2. * @param v1 1st vector input * @param v2 2nd vector input * @param resultOut output, 3D vector containing result of subtraction. * */ void MathFunctions::subtractVectors( const float v1[3], const float v2[3], float resultOut[3]) { resultOut[0] = v1[0] - v2[0]; resultOut[1] = v1[1] - v2[1]; resultOut[2] = v1[2] - v2[2]; } void MathFunctions::addVectors(const float v1[3], const float v2[3], float resultOut[3]) { resultOut[0] = v1[0] + v2[0]; resultOut[1] = v1[1] + v2[1]; resultOut[2] = v1[2] + v2[2]; } /** * Create the unit vector for a vector that starts at startXYZ and * ends at endXYZ. * * @param startXYZ - Starting position of vector. * @param endXYZ - Ending position of vector. * @param unitVectorOut - output, vector starting at startXYZ and pointing to endXYZ. * */ void MathFunctions::createUnitVector( const float startXYZ[3], const float endXYZ[3], float unitVectorOut[3]) { unitVectorOut[0] = endXYZ[0] - startXYZ[0]; unitVectorOut[1] = endXYZ[1] - startXYZ[1]; unitVectorOut[2] = endXYZ[2] - startXYZ[2]; MathFunctions::normalizeVector(unitVectorOut); } /** * Create the unit vector for a vector that starts at startXYZ and * ends at endXYZ. * * @param startXYZ - Starting position of vector. * @param endXYZ - Ending position of vector. * @param unitVectorOut - output, vector starting at startXYZ and pointing to endXYZ. * */ void MathFunctions::createUnitVector( const double startXYZ[3], const double endXYZ[3], double unitVectorOut[3]) { unitVectorOut[0] = endXYZ[0] - startXYZ[0]; unitVectorOut[1] = endXYZ[1] - startXYZ[1]; unitVectorOut[2] = endXYZ[2] - startXYZ[2]; MathFunctions::normalizeVector(unitVectorOut); } /** * Dot produce of three dimensional vectors. * @param p1 vector 1 * @param p2 vector 2 * @return Dot product of the two vectors. * */ float MathFunctions::dotProduct( const float p1[3], const float p2[3]) { float dot = p1[0]*p2[0] + p1[1]*p2[1] + p1[2]*p2[2]; return dot; } /** * Dot produce of three dimensional vectors. * @param p1 vector 1 * @param p2 vector 2 * @return Dot product of the two vectors. * */ double MathFunctions::dotProduct( const double p1[3], const double p2[3]) { return p1[0]*p2[0] + p1[1]*p2[1] + p1[2]*p2[2]; } /** * Calculate the area for a triangle. * @param v1 - XYZ coordinates for vertex 1 * @param v2 - XYZ coordinates for vertex 2 * @param v3 - XYZ coordinates for vertex 3 * * @return Area of triangle. * */ float MathFunctions::triangleArea( const float v1[3], const float v2[3], const float v3[3]) { /* * Using doubles for the intermediate calculations * produces results different from that if floats * were used in the "area" equation. I'm * assuming double is more accurate (JWH). */ double a = MathFunctions::distanceSquared3D(v1,v2); double b = MathFunctions::distanceSquared3D(v2,v3); double c = MathFunctions::distanceSquared3D(v3,v1); float area = (float)(0.25f* std::sqrt(std::abs(4.0*a*c - (a-b+c)*(a-b+c)))); return area; } /** * Calculate the area for a triangle (with doubles) * @param v1 - XYZ coordinates for vertex 1 * @param v2 - XYZ coordinates for vertex 2 * @param v3 - XYZ coordinates for vertex 3 * * @return Area of triangle. * */ float MathFunctions::triangleArea(const double v1[3], const double v2[3], const double v3[3]) { /* * Using doubles for the intermediate calculations * produces results different from that if floats * were used in the "area" equation. I'm * assuming double is more accurate (JWH). */ double a = MathFunctions::distanceSquared3D(v1,v2); double b = MathFunctions::distanceSquared3D(v2,v3); double c = MathFunctions::distanceSquared3D(v3,v1); float area = (float)(0.25f* std::sqrt(std::abs(4.0*a*c - (a-b+c)*(a-b+c)))); return area; } /** * Calculate the area of a triangle formed by 3 coordinates. * @param xyzAll One-dimensional array containing the XYZ coordinates. * @param offsetCoord1 Offset of node 1's X-coordinate which is * followed by the Y- and Z-coordinates. * @param offsetCoord2 Offset of node 2's X-coordinate which is * followed by the Y- and Z-coordinates. * @param offsetCoord3 Offset of node 3's X-coordinate which is * followed by the Y- and Z-coordinates. * @return Area of the triangle formed by the coordinates. * */ float MathFunctions::triangleArea( const float xyzAll[], const int32_t offsetCoord1, const int32_t offsetCoord2, const int32_t offsetCoord3) { /* * Using doubles for the intermediate calculations * produces results different from that if floats * were used in the "area" equation. I'm * assuming double is more accurate (JWH). */ double a = MathFunctions::distanceSquared3D(xyzAll, offsetCoord1, offsetCoord2); double b = MathFunctions::distanceSquared3D(xyzAll, offsetCoord2, offsetCoord3); double c = MathFunctions::distanceSquared3D(xyzAll, offsetCoord3, offsetCoord1); float area = (float)(0.25f* std::sqrt(std::abs(4.0*a*c - (a-b+c)*(a-b+c)))); return area; } /** * Compute the signed area of a triangle in 2D. * @param p1 - 1st coordinate of triangle * @param p2 - 2nd coordinate of triangle * @param p3 - 3rd coordinate of triangle * @return Signed area of triangle which is positive if the vertices * are in counter-clockwise orientation or negative if the vertices * are in clockwise orientation. * */ float MathFunctions::triangleAreaSigned2D( const float p1[2], const float p2[2], const float p3[2]) { float area = ( p1[0]*p2[1] + p2[0]*p3[1] + p3[0]*p1[1] - p1[1]*p2[0] - p2[1]*p3[0] - p3[1]*p1[0] ) * 0.5f; return area; } /** * Compute the signed area of a triangle in 3D. * @param referenceNormal - Normal vector. * @param p1 - 1st coordinate of triangle * @param p2 - 2nd coordinate of triangle * @param p3 - 3rd coordinate of triangle * @return Signed area of triangle which is positive if the vertices * are in counter-clockwise orientation or negative if the vertices * are in clockwise orientation. * */ float MathFunctions::triangleAreaSigned3D( const float referenceNormal[3], const float p1[3], const float p2[3], const float p3[3]) { // // Area of the triangle formed by the three points // float area = triangleArea(p1, p2, p3); // // Normal for the three points // float triangleNormal[3]; MathFunctions::normalVector(p1, p2, p3, triangleNormal); // // Dot Product is the cosine of the angle between the two normals. When this value is less // than zero, the absolute angle between the normals is greater than 90 degrees. // float dot = MathFunctions::dotProduct(referenceNormal, triangleNormal); if (dot < 0.0) { area = -area; } return area; } /** * Determine if 2D line segments intersect. * Algorithm from http://mathworld.wolfram.com/Line-LineIntersection.html * * @param p1 Line 1 end point 1. * @param p2 Line 1 end point 2. * @param q1 Line 2 end point 1. * @param q2 Line 2 end point 2. * @param tolerance Tolerance around the vertices (essentially * lengthens lines by this quantity). Caret5 set this * parameter to 0.01. * @param intersectionOut Location of intersection. * @return true if the line segments intersect else false. * */ bool MathFunctions::lineIntersection2D( const float p1[2], const float p2[2], const float q1[2], const float q2[2], const float tolerance, float intersectionOut[2]) { double tol = tolerance; double x1 = p1[0]; double y1 = p1[1]; double x2 = p2[0]; double y2 = p2[1]; double x3 = q1[0]; double y3 = q1[1]; double x4 = q2[0]; double y4 = q2[1]; double denom = ((x1 - x2) * (y3 - y4)) - ((x3 - x4) * (y1 - y2)); if (denom != 0.0) { double a = (x1 * y2) - (x2 * y1); double c = (x3 * y4) - (x4 * y3); double x = ((a * (x3 - x4)) - (c * (x1 - x2))) / denom; double y = ((a * (y3 - y4)) - (c * (y1 - y2))) / denom; double pxMax = std::max(x1, x2) + tol; double pxMin = std::min(x1, x2) - tol; double pyMax = std::max(y1, y2) + tol; double pyMin = std::min(y1, y2) - tol; double qxMax = std::max(x3, x4) + tol; double qxMin = std::min(x3, x4) - tol; double qyMax = std::max(y3, y4) + tol; double qyMin = std::min(y3, y4) - tol; intersectionOut[0] = (float)x; intersectionOut[1] = (float)y; if ((x >= pxMin) && (x <= pxMax) && (x >= qxMin) && (x <= qxMax) && (y >= pyMin) && (y <= pyMax) && (y >= qyMin) && (y <= qyMax)) { return true; } } return false; } /** * Determine if a ray intersects a plane. * @param p1 - 1st point defining the plane * @param p2 - 2nd point defining the plane * @param p3 - 3rd point defining the plane * @param rayOrigin - origin of the ray * @param rayVector - vector defining the ray * @param intersectionXYZandDistance - An array of four that will contain * the XYZ or the intersection point and the distance from the plane. * @return true if the ray intersects the plane, else false. * */ bool MathFunctions::rayIntersectPlane( const float p1[3], const float p2[3], const float p3[3], const float rayOrigin[3], const float rayVector[3], float intersectionXYZandDistance[4]) { // Convert the ray into a unit vector // double ray[3] = { rayVector[0], rayVector[1], rayVector[2] }; MathFunctions::normalizeVector(ray); // // Normal of plane // float normal[3]; MathFunctions::normalVector(p1, p2, p3, normal); // // Compute the plane equation // double A = normal[0]; double B = normal[1]; double C = normal[2]; double D = -(A*p1[0] + B*p1[1] + C*p1[2]); // // Parametric coordinate of where ray intersects plane // double denom = A * ray[0] + B * ray[1] + C * ray[2]; if (denom != 0) { const double t = -(A * rayOrigin[0] + B * rayOrigin[1] + C * rayOrigin[2] + D) / denom; intersectionXYZandDistance[0] = (float)(rayOrigin[0] + ray[0] * t); intersectionXYZandDistance[1] = (float)(rayOrigin[1] + ray[1] * t); intersectionXYZandDistance[2] = (float)(rayOrigin[2] + ray[2] * t); intersectionXYZandDistance[3] = (float)t; return true; } return false; } /** * Project a point to a plane. * @param pt - the point to project. * @param origin - point in the plane. * @param normal - normal vector of plane. * @param projectedPointOut - output, the projected position of "pt" on the plane. * */ void MathFunctions::projectPoint( const float pt[3], const float origin[3], const float normal[3], float projectedPointOut[3]) { float xo[3] = { pt[0] - origin[0], pt[1] - origin[1], pt[2] - origin[2] }; float t = MathFunctions::dotProduct(normal, xo); projectedPointOut[0] = pt[0] - t * normal[0]; projectedPointOut[1] = pt[1] - t * normal[1]; projectedPointOut[2] = pt[2] - t * normal[2]; } /** * Get the signed distance from the plane to the "queryPoint". * A positive distance indicates "queryPoint" is above the plane * and a negative distance indicates "queryPoint" is below * the plane. * * @param planeNormal - plane's normal vector. * @param pointInPlane - point on the plane. * @param queryPoint - the query point for which distance to plane is sought. * * @return Distance from the plane to the query point. * */ float MathFunctions::signedDistanceFromPlane( const float planeNormal[3], const float pointInPlane[3], const float queryPoint[3]) { // Find out where query point projects on the plane // float queryPointProjectedOntoPlane[3]; MathFunctions::projectPoint(queryPoint, pointInPlane, planeNormal, queryPointProjectedOntoPlane); float dx = planeNormal[0] * (queryPoint[0] - queryPointProjectedOntoPlane[0]); float dy = planeNormal[1] * (queryPoint[1] - queryPointProjectedOntoPlane[1]); float dz = planeNormal[2] * (queryPoint[2] - queryPointProjectedOntoPlane[2]); float dist = dx + dy + dz; return dist; } /** * Limit the "value" to be inclusively between the minimum and maximum. * @param value - Value for testing. * @param minimumValue - Minimum inclusive value. * @param maximumValue - Maximum inclusive value. * @return Value limited inclusively to the minimum and maximum values. * */ int32_t MathFunctions::limitRange( const int32_t value, const int32_t minimumValue, const int32_t maximumValue) { if (value < minimumValue) { return minimumValue; } if (value > maximumValue) { return maximumValue; } return value; } /** * Limit the "value" to be inclusively between the minimum and maximum. * @param value - Value for testing. * @param minimumValue - Minimum inclusive value. * @param maximumValue - Maximum inclusive value. * @return Value limited inclusively to the minimum and maximum values. * */ float MathFunctions::limitRange( const float value, const float minimumValue, const float maximumValue) { if (value < minimumValue) { return minimumValue; } if (value > maximumValue) { return maximumValue; } return value; } /** * Limit the "value" to be inclusively between the minimum and maximum. * @param value - Value for testing. * @param minimumValue - Minimum inclusive value. * @param maximumValue - Maximum inclusive value. * @return Value limited inclusively to the minimum and maximum values. * */ double MathFunctions::limitRange( const double value, const double minimumValue, const double maximumValue) { if (value < minimumValue) { return minimumValue; } if (value > maximumValue) { return maximumValue; } return value; } /** * Find the distance from the point to the line defined by p1 and p2. * Formula is from * "http://mathworld.wolfram.com/Point-LineDistance3-Dimensional.html". * * @param p1 - First coordinate in line. * @param p2 - Second coordinate in line. * @param point - coordinate for which distance to line is sought. * @return Distance from point to the line (p1, p2). * */ float MathFunctions::distanceToLine3D( const float p1[3], const float p2[3], const float point[3]) { float dv2v1[3]; MathFunctions::subtractVectors(p2, p1, dv2v1); float dv1pt[3]; MathFunctions::subtractVectors(p1, point, dv1pt); float crossed[3]; MathFunctions::crossProduct(dv2v1, dv1pt, crossed); float numerator = MathFunctions::vectorLength(crossed); float denomenator = MathFunctions::vectorLength(dv2v1); float dist = numerator / denomenator; return dist; } /** * Determine if two arrays are equal, same number of elements and * corresponding elements equal. * * @param a - first array. * @param b - second array. * @return true if arrays are equal, else false. * */ bool MathFunctions::arraysEqual( const float a[], const float b[], const int numElements) { for (int i = 0; i < numElements; i++) { if (a[i] != b[i]) { return false; } } return true; } /** * Get the average of three coordinates. * @param c1 - coordinate 1 * @param c2 - coordinate 2 * @param c3 - coordinate 3 * @param outputAverage A three-dimensional array into * which the average of the three coordinates is * placed. * */ void MathFunctions::averageOfThreeCoordinates( const float c1[3], const float c2[3], const float c3[3], float outputAverage[3]) { outputAverage[0] = (c1[0] + c2[0] + c3[0]) / 3.0f; outputAverage[1] = (c1[1] + c2[1] + c3[1]) / 3.0f; outputAverage[2] = (c1[2] + c2[2] + c3[2]) / 3.0f; } /** * Calculate the average of 3 coordinates. * @param xyzAll One-dimensional array containing the XYZ coordinates. * @param offsetCoord1 Offset of node 1's X-coordinate which is * followed by the Y- and Z-coordinates. * @param offsetCoord2 Offset of node 2's X-coordinate which is * followed by the Y- and Z-coordinates. * @param offsetCoord3 Offset of node 3's X-coordinate which is * followed by the Y- and Z-coordinates. * @param outputAverage 3 dimensional array passed in, into which * the average is placed. * @param outputOffset Offset of average into outputAverage array. * */ void MathFunctions::averageOfThreeCoordinates( const float xyzAll[], const int32_t offsetCoord1, const int32_t offsetCoord2, const int32_t offsetCoord3, float outputAverage[], const int32_t outputOffset) { outputAverage[outputOffset] = (xyzAll[offsetCoord1] + xyzAll[offsetCoord2] + xyzAll[offsetCoord3]) / 3.0f; outputAverage[outputOffset+1] = (xyzAll[offsetCoord1+1] + xyzAll[offsetCoord2+1] + xyzAll[offsetCoord3+1]) / 3.0f; outputAverage[outputOffset+2] = (xyzAll[offsetCoord1+2] + xyzAll[offsetCoord2+2] + xyzAll[offsetCoord3+2]) / 3.0f; } /** * Angle formed by p1, p2, p3 (angle at p2). Returned angle is in radians. * This method uses Java Math.acos() and produces highly accurate results. * @param p1 - point. * @param p2 - point. * @param p3 - point. * @return Angle formed by points. * */ float MathFunctions::angle( const float p1[3], const float p2[3], const float p3[3]) { // // Vector from P2 to P1 // float v21[3] = { p1[0] - p2[0], p1[1] - p2[1], p1[2] - p2[2] }; // // Vector from P2 to P3 // float v23[3] = { p3[0] - p2[0], p3[1] - p2[1], p3[2] - p2[2] }; // // Normalize the vectors // float v21len = MathFunctions::normalizeVector(v21); float v23len = MathFunctions::normalizeVector(v23); float angleOut = 0.0f; if ((v21len > 0.0) && (v23len > 0.0)) { // // angle is inverse cosine of the dot product // and be sure to handle numerical errors. // float dot = MathFunctions::dotProduct(v21, v23); if (dot > 1.0f) dot = 1.0f; else if (dot < -1.0f) dot = -1.0f; angleOut = (float)std::acos(dot); } return angleOut; } /** * Signed angle for "jik". * @param pi - point. * @param pj - point. * @param pk - point. * @param n - normal * @return signed angle formed by the points. * */ float MathFunctions::signedAngle( const float pi[3], const float pj[3], const float pk[3], const float n[3]) { float x1 = pj[0] - pi[0]; float y1 = pj[1] - pi[1]; float z1 = pj[2] - pi[2]; float x2 = pk[0] - pi[0]; float y2 = pk[1] - pi[1]; float z2 = pk[2] - pi[2]; /* s = |(ji)||(ki)| sin(phi) by cross product */ float dx = y1*z2 - y2*z1; float dy = x2*z1 - x1*z2; float dz = x1*y2 - x2*y1; float t = (dx*n[0]) + (dy*n[1]) + (dz*n[2]); float s = (float)std::sqrt((dx*dx) + (dy*dy) + (dz*dz)); if (t < 0.0f) { s = -s; } /* c = |(ji)||(ki)| cos(phi) by inner product */ float c = x1*x2 + y1*y2 + z1*z2; float phi = (float)std::atan2(s,c); return phi; } /** * Determine if an integer is an odd number. * @param number Integer to test. * @return true if integer is odd, else false. * */ bool MathFunctions::isOddNumber(const int32_t number) { bool result = ((number & 1) != 0); return result; } /** * Determine if an integer is an odd number. * @param number Integer to test. * @return true if integer is odd, else false. * */ bool MathFunctions::isEvenNumber(const int32_t number) { bool result = ((number & 1) == 0); return result; } /** * Determine if two arrays are equal. * @param a1 First array. * @param a2 Second array. * @param tolerance Allowable difference in elements at same index. * @return true if arrays are of same length and corresponding * elements have a difference less than tolerance. * */ bool MathFunctions::compareArrays( const float a1[], const float a2[], const int numElements, const float tolerance) { for (int i = 0; i < numElements; i++) { float diff = a1[i] - a2[i]; if (diff < 0.0f) diff = -diff; if (diff > tolerance) { return false; } } return true; } /** * Clamp a value to the range minimum to maximum. * @param value Value for clamping. * @param minimum Minimum allowed value. * @param maximum Maximum allowed value. * @return Value clamped to minimum and maximum. * */ int32_t MathFunctions::clamp( const int32_t value, const int32_t minimum, const int32_t maximum) { return MathFunctions::limitRange(value, minimum, maximum); } /** * Clamp a value to the range minimum to maximum. * @param value Value for clamping. * @param minimum Minimum allowed value. * @param maximum Maximum allowed value. * @return Value clamped to minimum and maximum. * */ float MathFunctions::clamp( const float value, const float minimum, const float maximum) { return MathFunctions::limitRange(value, minimum, maximum); } /** * Distance SQUARED from (x1, y1) to (x2, y2) * @param X-coordinate of first point. * @param Y-coordinate of first point. * @param X-coordinate of second point. * @param Y-coordinate of second point. * @return Distance squared between the points. */ double MathFunctions::distanceSquared2D(const double x1, const double y1, const double x2, const double y2) { const double dx = x2 - x1; const double dy = y2 - y1; const double d = (dx*dx) + (dy*dy); return d; } uint32_t MathFunctions::gcd(uint32_t num1, uint32_t num2) { if (num1 == 0 || num2 == 0) {//catch zeros return 0;//gcd(0,x)=gcd(x,0)=0, seems less confusing than returning x } //modulus method for good worst-case asymptotic performance uint32_t temp; if (num2 > num1)//num1 kept as the larger number to simplify the code { temp = num1; num1 = num2; num2 = temp; } while (num2) {//maintain num2 as the smaller number temp = num1 % num2;//modulus to reduce the larger as much as possible, result will be smaller than num2 num1 = num2;//so, we need to swap them num2 = temp;//when result becomes zero, num1 is our gcd } return num1; } bool MathFunctions::isInf(const float number) { return (std::fabs(number) > 1.0f && number * 2.0f == number); } bool MathFunctions::isNaN(const float number) { return (number != number); } bool MathFunctions::isNegInf(const float number) { return (number < -1.0f && number * 2.0f == number); } bool MathFunctions::isNumeric(const float number) { return (!isNaN(number) && !isInf(number)); } bool MathFunctions::isPosInf(const float number) { return (number > 1.0f && number * 2.0f == number); } void MathFunctions::quaternToMatrix(const float cijk[4], float matrix[3][3]) {//formula from http://en.wikipedia.org/wiki/Rotation_matrix#Quaternion double qlengthsqr = cijk[0] * cijk[0] + cijk[1] * cijk[1] + cijk[2] * cijk[2] + cijk[3] * cijk[3]; double mult = 0.0; if (qlengthsqr > 0.0f) { mult = 2.0f / qlengthsqr; } double ijkmult[4] = { cijk[1] * mult, cijk[2] * mult, cijk[3] * mult }; double wX = cijk[0] * ijkmult[0], wY = cijk[0] * ijkmult[1], wZ = cijk[0] * ijkmult[2]; double xX = cijk[1] * ijkmult[0], xY = cijk[1] * ijkmult[1], xZ = cijk[1] * ijkmult[2]; double yY = cijk[2] * ijkmult[1], yZ = cijk[2] * ijkmult[2]; double zZ = cijk[3] * ijkmult[2]; matrix[0][0] = 1.0 - (yY + zZ);//equals nifti1 formula because for unit quaternion, a*a + b*b + c*c + d*d = 1, and yY = 2 * c*c matrix[0][1] = xY - wZ; matrix[0][2] = xZ + wY; matrix[1][0] = xY + wZ; matrix[1][1] = 1.0 - (xX + zZ); matrix[1][2] = yZ - wX; matrix[2][0] = xZ - wY; matrix[2][1] = yZ + wX; matrix[2][2] = 1.0 - (xX + yY); } void MathFunctions::quaternToMatrix(const double cijk[4], double matrix[3][3]) {//formula from http://en.wikipedia.org/wiki/Rotation_matrix#Quaternion double qlengthsqr = cijk[0] * cijk[0] + cijk[1] * cijk[1] + cijk[2] * cijk[2] + cijk[3] * cijk[3]; double mult = 0.0; if (qlengthsqr > 0.0f) { mult = 2.0f / qlengthsqr; } double ijkmult[4] = { cijk[1] * mult, cijk[2] * mult, cijk[3] * mult }; double wX = cijk[0] * ijkmult[0], wY = cijk[0] * ijkmult[1], wZ = cijk[0] * ijkmult[2]; double xX = cijk[1] * ijkmult[0], xY = cijk[1] * ijkmult[1], xZ = cijk[1] * ijkmult[2]; double yY = cijk[2] * ijkmult[1], yZ = cijk[2] * ijkmult[2]; double zZ = cijk[3] * ijkmult[2]; matrix[0][0] = 1.0 - (yY + zZ);//equals nifti1 formula because for unit quaternion, a*a + b*b + c*c + d*d = 1, and yY = 2 * c*c matrix[0][1] = xY - wZ; matrix[0][2] = xZ + wY; matrix[1][0] = xY + wZ; matrix[1][1] = 1.0 - (xX + zZ); matrix[1][2] = yZ - wX; matrix[2][0] = xZ - wY; matrix[2][1] = yZ + wX; matrix[2][2] = 1.0 - (xX + yY); } bool MathFunctions::matrixToQuatern(const float matrix[3][3], float cijk[4]) {//formulas from http://en.wikipedia.org/wiki/Rotation_matrix#Quaternion const float toler = 0.0001f; float ivec[3] = { matrix[0][0], matrix[1][0], matrix[2][0] }; float jvec[3] = { matrix[0][1], matrix[1][1], matrix[2][1] }; float kvec[3] = { matrix[0][2], matrix[1][2], matrix[2][2] }; if (!(std::abs(1.0f - normalizeVector(ivec)) <= toler)) return false;//use the "not less than or equal to" trick to catch NaNs if (!(std::abs(1.0f - normalizeVector(jvec)) <= toler)) return false; if (!(std::abs(1.0f - normalizeVector(kvec)) <= toler)) return false; if (!(dotProduct(ivec, jvec) <= toler)) return false; if (!(dotProduct(ivec, kvec) <= toler)) return false; if (!(dotProduct(jvec, kvec) <= toler)) return false; float tempvec[3]; crossProduct(ivec, jvec, tempvec); if (!(dotProduct(tempvec, kvec) >= 0.9f)) return false;//i cross j must be k, otherwise it contains a flip int method = 0; double trace = matrix[0][0] + matrix[1][1] + matrix[2][2]; if (trace < 0.0) { method = 1; float tempf = matrix[0][0]; if (matrix[1][1] > tempf) { method = 2; tempf = matrix[1][1]; } if (matrix[2][2] > tempf) { method = 3; } } switch (method) { case 0: { double r = std::sqrt(1.0 + trace); double s = 0.5 / r; cijk[0] = 0.5 * r; cijk[1] = (matrix[2][1] - matrix[1][2]) * s; cijk[2] = (matrix[0][2] - matrix[2][0]) * s; cijk[3] = (matrix[1][0] - matrix[0][1]) * s; } break; case 1: { double r = std::sqrt(1.0 + matrix[0][0] - matrix[1][1] - matrix[2][2]); double s = 0.5 / r; cijk[0] = (matrix[2][1] - matrix[1][2]) * s; cijk[1] = 0.5 * r; cijk[2] = (matrix[0][1] + matrix[1][0]) * s; cijk[3] = (matrix[2][0] + matrix[0][2]) * s; } break; case 2: {//DISCLAIMER: these last two were worked out by pattern since they aren't on wikipedia double r = std::sqrt(1.0 - matrix[0][0] + matrix[1][1] - matrix[2][2]); double s = 0.5 / r; cijk[0] = (matrix[0][2] - matrix[2][0]) * s; cijk[1] = (matrix[0][1] + matrix[1][0]) * s; cijk[2] = 0.5 * r; cijk[3] = (matrix[1][2] + matrix[2][1]) * s; } break; case 3: { double r = std::sqrt(1.0 - matrix[0][0] - matrix[1][1] + matrix[2][2]); double s = 0.5 / r; cijk[0] = (matrix[1][0] - matrix[0][1]) * s; cijk[1] = (matrix[2][0] + matrix[0][2]) * s; cijk[2] = (matrix[1][2] + matrix[2][1]) * s; cijk[3] = 0.5 * r; } break; default: return false; } if (cijk[0] < 0.0f) { cijk[0] = -cijk[0]; cijk[1] = -cijk[1]; cijk[2] = -cijk[2]; cijk[3] = -cijk[3]; } return true; } bool MathFunctions::matrixToQuatern(const double matrix[3][3], double cijk[4]) {//formulas from http://en.wikipedia.org/wiki/Rotation_matrix#Quaternion const float toler = 0.0001f; double ivec[3] = { matrix[0][0], matrix[1][0], matrix[2][0] }; double jvec[3] = { matrix[0][1], matrix[1][1], matrix[2][1] }; double kvec[3] = { matrix[0][2], matrix[1][2], matrix[2][2] }; if (!(std::abs(1.0f - normalizeVector(ivec)) <= toler)) return false;//use the "not less than or equal to" trick to catch NaNs if (!(std::abs(1.0f - normalizeVector(jvec)) <= toler)) return false; if (!(std::abs(1.0f - normalizeVector(kvec)) <= toler)) return false; if (!(dotProduct(ivec, jvec) <= toler)) return false; if (!(dotProduct(ivec, kvec) <= toler)) return false; if (!(dotProduct(jvec, kvec) <= toler)) return false; double tempvec[3]; crossProduct(ivec, jvec, tempvec); if (!(dotProduct(tempvec, kvec) >= 0.9f)) return false;//i cross j must be k, otherwise it contains a flip int method = 0; double trace = matrix[0][0] + matrix[1][1] + matrix[2][2]; if (trace < 0.0) { method = 1; float tempf = matrix[0][0]; if (matrix[1][1] > tempf) { method = 2; tempf = matrix[1][1]; } if (matrix[2][2] > tempf) { method = 3; } } switch (method) { case 0: { double r = std::sqrt(1.0 + trace); double s = 0.5 / r; cijk[0] = 0.5 * r; cijk[1] = (matrix[2][1] - matrix[1][2]) * s; cijk[2] = (matrix[0][2] - matrix[2][0]) * s; cijk[3] = (matrix[1][0] - matrix[0][1]) * s; } break; case 1: { double r = std::sqrt(1.0 + matrix[0][0] - matrix[1][1] - matrix[2][2]); double s = 0.5 / r; cijk[0] = (matrix[2][1] - matrix[1][2]) * s; cijk[1] = 0.5 * r; cijk[2] = (matrix[0][1] + matrix[1][0]) * s; cijk[3] = (matrix[2][0] + matrix[0][2]) * s; } break; case 2: {//DISCLAIMER: these last two were worked out by pattern since they aren't on wikipedia double r = std::sqrt(1.0 - matrix[0][0] + matrix[1][1] - matrix[2][2]); double s = 0.5 / r; cijk[0] = (matrix[0][2] - matrix[2][0]) * s; cijk[1] = (matrix[0][1] + matrix[1][0]) * s; cijk[2] = 0.5 * r; cijk[3] = (matrix[1][2] + matrix[2][1]) * s; } break; case 3: { double r = std::sqrt(1.0 - matrix[0][0] - matrix[1][1] + matrix[2][2]); double s = 0.5 / r; cijk[0] = (matrix[1][0] - matrix[0][1]) * s; cijk[1] = (matrix[2][0] + matrix[0][2]) * s; cijk[2] = (matrix[1][2] + matrix[2][1]) * s; cijk[3] = 0.5 * r; } break; default: return false; } if (cijk[0] < 0.0f) { cijk[0] = -cijk[0]; cijk[1] = -cijk[1]; cijk[2] = -cijk[2]; cijk[3] = -cijk[3]; } return true; } /** * Return the remainder from the resulting division using the given values. * * This method is written to match the result produced by the remainder() * function that is part of C99 but not supported on all platforms. * * Code may appear verbose but it avoid functions calls to fabs(), ceil(), * and floor(). * * Note: X is the numerator. * Y is the denominator. * * The remainder() functions compute the value r such that r = x - n*y, * where n is the integer nearest the exact value of x/y. * * If there are two integers closest to x/y, n shall be the even one. * * @param numerator * The numerator. * @param denominator * The denominator. * @return * The remainder from numerator divided by denominator. */ double MathFunctions::remainder(const double numerator, const double denominator) { if (denominator == 0.0) { return 0.0; } const double quotient = numerator / denominator; /* * Integer value greater than or equal to the quotient * and its difference with the quotient (ceiling) */ const int64_t nearestIntegerOne = static_cast(quotient + 0.5); double diffOne = quotient - nearestIntegerOne; if (diffOne < 0.0) diffOne = -diffOne; /* * Integer value less than or equal to the quotient * and its difference with the quotient (floor) */ const int64_t nearestIntegerTwo = static_cast(quotient - 0.5); double diffTwo = quotient - nearestIntegerTwo; if (diffTwo < 0.0) diffTwo = -diffTwo; /* * Helps determine if the two integer value are the same * distance from the quotient (value will be very close * to zero). */ double diffOneTwo = diffOne - diffTwo; if (diffOneTwo < 0.0) diffOneTwo = -diffOneTwo; int64_t nearestInteger = 0; /* * If the two integer values are the same distance from zero */ if (diffOneTwo < 0.000001) { /* * Use the integer that is even. * Note that if an integer is even, first bit is zero. */ if ((nearestIntegerOne & 1) == 0) { nearestInteger = nearestIntegerOne; } else { nearestInteger = nearestIntegerTwo; } } else if (diffOne < diffTwo) { nearestInteger = nearestIntegerOne; } else { nearestInteger = nearestIntegerTwo; } const double remainderValue = numerator - nearestInteger * denominator; return remainderValue; } /** * Return the value rounded to the nearest integral (integer) value. * * @param value * Value that is rounded. * @return * Value rounded to nearest integral value. */ double MathFunctions::round(const double value) { if (value < 0.0) { return std::ceil(value - 0.5f); } return std::floor(value + 0.5f); } CiftiLib-1.6.0/src/Common/MathFunctions.h000066400000000000000000000247461373715117300202020ustar00rootroot00000000000000#ifndef __MATHFUNCTIONS_H__ #define __MATHFUNCTIONS_H__ /*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include namespace cifti { /** * Various mathematical functions. */ //NOTE: in CiftiLib, we only reference matrixToQuatern and quaternToMatrix, both used only in NiftiHeader when using volume files, not cifti files class MathFunctions { public: static int64_t combinations( const int64_t n, const int64_t k); static int64_t permutations( const int64_t n, const int64_t k); static int64_t factorial(const int64_t n); static bool normalVector( const float v1[3], const float v2[3], const float v3[3], float normalVectorOut[3]); static bool normalVector( const double v1[3], const double v2[3], const double v3[3], double normalVectorOut[3]); static void normalVectorDirection( const float v1[3], const float v2[3], const float v3[3], float directionOut[3]); static void crossProduct( const float v1[], const float v2[], float resultOut[]); static void crossProduct( const double v1[], const double v2[], double resultOut[]); static void normalizedCrossProduct( const float x1[], const float x2[], float resultOut[]); static float normalizeVector( float vectorsAll[], const int32_t offset); static float normalizeVector(float vectorInOut[3]); static double normalizeVector(double vectorInOut[3]); static float vectorLength(const float vector[3]); static float vectorLength( const float vectorsAll[], const int32_t offset); static double vectorLength(const double vector[3]); static float distanceSquared3D( const float p1[3], const float p2[3]); static float distanceSquared3D( const float xyzAll[], const int32_t offsetCoord1, const int32_t offsetCoord2); static float distance3D( const float p1[3], const float p2[3]); static double distanceSquared3D( const double p1[3], const double p2[3]); static double distance3D( const double p1[3], const double p2[3]); static double distanceSquared2D(const double x1, const double y1, const double x2, const double y2); static void subtractVectors( const float v1[3], const float v2[3], float resultOut[3]); static void addVectors( const float v1[3], const float v2[3], float resultOut[3]); static void createUnitVector( const float startXYZ[3], const float endXYZ[3], float unitVectorOut[3]); static void createUnitVector( const double startXYZ[3], const double endXYZ[3], double unitVectorOut[3]); static float dotProduct( const float p1[3], const float p2[3]); static double dotProduct( const double p1[3], const double p2[3]); static float triangleArea( const float v1[3], const float v2[3], const float v3[3]); static float triangleArea(const double v1[3], const double v2[3], const double v3[3]); static float triangleArea( const float xyzAll[], const int32_t offsetCoord1, const int32_t offsetCoord2, const int32_t offsetCoord3); static float triangleAreaSigned2D( const float p1[3], const float p2[3], const float p3[3]); static float triangleAreaSigned3D( const float referenceNormal[3], const float p1[3], const float p2[3], const float p3[3]); static bool lineIntersection2D( const float p1[3], const float p2[3], const float q1[3], const float q2[3], const float tolerance, float intersectionOut[3]); static bool rayIntersectPlane( const float p1[3], const float p2[3], const float p3[3], const float rayOrigin[3], const float rayVector[3], float intersectionXYZandDistance[3]); static void projectPoint( const float pt[3], const float origin[3], const float normal[3], float projectedPointOut[3]); static float signedDistanceFromPlane( const float planeNormal[3], const float pointInPlane[3], const float queryPoint[3]); static int32_t limitRange( const int32_t value, const int32_t minimumValue, const int32_t maximumValue); static float limitRange( const float value, const float minimumValue, const float maximumValue); static double limitRange( const double value, const double minimumValue, const double maximumValue); static float distanceToLine3D( const float p1[3], const float p2[3], const float point[3]); static bool arraysEqual( const float a[], const float b[], const int32_t numElements); static void averageOfThreeCoordinates( const float c1[3], const float c2[3], const float c3[3], float outputAverage[3]); static void averageOfThreeCoordinates( const float xyzAll[], const int32_t offsetCoord1, const int32_t offsetCoord2, const int32_t offsetCoord3, float outputAverage[], const int32_t outputOffset); static float angle( const float p1[3], const float p2[3], const float p3[3]); static float signedAngle( const float pi[3], const float pj[3], const float pk[3], const float n[3]); static bool isOddNumber(const int32_t number); static bool isEvenNumber(const int32_t number); static bool isNaN(const float number); static bool isPosInf(const float number); static bool isNegInf(const float number); ///true if either inf or -inf static bool isInf(const float number); ///true only if not NaN, inf, or -inf static bool isNumeric(const float number); static bool compareArrays( const float a1[], const float a2[], const int32_t numElements, const float tolerance); static int32_t clamp( const int32_t value, const int32_t minimum, const int32_t maximum); static float clamp( const float value, const float minimum, const float maximum); ///greatest common divisor static uint32_t gcd(uint32_t num1, uint32_t num2); ///convert quaternion to rotation matrix static void quaternToMatrix(const float cijk[4], float matrix[3][3]); ///convert quaternion to rotation matrix static void quaternToMatrix(const double cijk[4], double matrix[3][3]); ///try to convert 3x3 matrix to quaternion (return false if not a rotation matrix) static bool matrixToQuatern(const float matrix[3][3], float cijk[4]); ///try to convert 3x3 matrix to quaternion (return false if not a rotation matrix) static bool matrixToQuatern(const double matrix[3][3], double cijk[4]); static double remainder(const double numerator, const double denominator); static double round(const double value); }; } // namespace #endif // __MATHFUNCTIONS_H__ CiftiLib-1.6.0/src/Common/MatrixFunctions.h000066400000000000000000000575651373715117300205620ustar00rootroot00000000000000#ifndef __MATRIX_UTILITIES_H__ #define __MATRIX_UTILITIES_H__ /*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include #include #include "stdint.h" using namespace std; //NOTE: this is not intended to be used outside of FloatMatrix.cxx, error condition is a 0x0 matrix result //NOTE: if a matrix has a row shorter than the first row, expect problems. Calling checkDim will look for this, but it is not used internally, as FloatMatrix maintains this invariant namespace cifti { class MatrixFunctions { typedef int64_t msize_t;//NOTE: must be signed due to using -1 as a sentinel public: /// /// matrix multiplication /// template static void multiply(const vector > &left, const vector > &right, vector > &result); /// /// scalar multiplication /// template static void multiply(const vector > &left, const T2 right, vector > &result); /// /// reduced row echelon form /// template static void rref(vector > &inout); /// /// matrix inversion - wrapper to rref for now /// template static void inverse(const vector > &in, vector > &result); /// /// matrix addition - for simple code /// template static void add(const vector > &left, const vector > &right, vector > &result); /// /// scalar addition - for simple code /// template static void add(const vector > &left, const T2 right, vector > &result); /// /// matrix subtraction - for simple code /// template static void subtract(const vector > &left, const vector > &right, vector > &result); /// /// transpose - for simple code /// template static void transpose(const vector > &in, vector > &result); /// /// debugging - verify matrix is rectangular and show its dimensions - returns true if rectangular /// template static bool checkDim(const vector > &in); /// /// allocate a matrix, don't initialize /// template static void resize(const msize_t rows, const msize_t columns, vector > &result, bool destructive = false); /// /// allocate a matrix of specified size /// template static void zeros(const msize_t rows, const msize_t columns, vector > &result); /// /// allocate a matrix of specified size /// template static void ones(const msize_t rows, const msize_t columns, vector > &result); /// /// make an identity matrix /// template static void identity(const msize_t size, vector > &result); /// /// horizontally concatenate matrices /// template static void horizCat(const vector > &left, const vector > &right, vector > &result); /// /// vertically concatenate matrices /// template static void vertCat(const vector > &top, const vector > &bottom, vector > &result); /// /// grab a piece of a matrix /// template static void getChunk(const msize_t firstrow, const msize_t lastrow, const msize_t firstcol, const msize_t lastcol, const vector > &in, vector > &result); private: /// /// reduced row echelon form that is faster on larger matrices, is called by rref() if the matrix is big enough /// template static void rref_big(vector > &inout); }; template void MatrixFunctions::multiply(const vector >& left, const vector >& right, vector >& result) {//the stupid multiply O(n^3) - the O(n^2.78) version might not be that hard to implement with the other functions here, but not as stable msize_t leftrows = (msize_t)left.size(), rightrows = (msize_t)right.size(), leftcols, rightcols; vector > tempstorage, *tresult = &result;//pointer because you can't change a reference bool copyout = false; if (&left == &result || &right == &result) { copyout = true; tresult = &tempstorage; } if (leftrows && rightrows) { leftcols = (msize_t)left[0].size(); rightcols = (msize_t)right[0].size(); if (leftcols && rightcols && (rightrows == leftcols)) { resize(leftrows, rightcols, (*tresult), true);//could use zeros(), but common index last lets us zero at the same time msize_t i, j, k; for (i = 0; i < leftrows; ++i) { for (j = 0; j < rightcols; ++j) { A accum = 0; for (k = 0; k < leftcols; ++k) { accum += left[i][k] * right[k][j]; } (*tresult)[i][j] = accum; } } } else { result.resize(0); return; } } else { result.resize(0); return; } if (copyout) { result = tempstorage; } } template void MatrixFunctions::multiply(const vector > &left, const T2 right, vector > &result) { msize_t leftrows = (msize_t)left.size(), leftcols; bool doresize = true; if (&left == &result) { doresize = false;//don't resize if an input is an output } if (leftrows) { leftcols = (msize_t)left[0].size(); if (leftcols) { if (doresize) resize(leftrows, leftcols, result, true); msize_t i, j; for (i = 0; i < leftrows; ++i) { for (j = 0; j < leftcols; ++j) { result[i][j] = left[i][j] * right; } } } else { result.resize(0); return; } } else { result.resize(0); return; } } template void MatrixFunctions::rref_big(vector > &inout) { msize_t rows = (msize_t)inout.size(), cols; if (rows > 0) { cols = (msize_t)inout[0].size(); if (cols > 0) { vector pivots(rows, -1), missingPivots; msize_t i, j, k, myrow = 0; msize_t pivotrow; T tempval; for (i = 0; i < cols; ++i) { if (myrow >= rows) break;//no pivots left tempval = 0; pivotrow = -1; for (j = myrow; j < rows; ++j) {//only search below for new pivot if (abs(inout[j][i]) > tempval) { pivotrow = (msize_t)j; tempval = abs(inout[j][i]); } } if (pivotrow == -1) {//naively expect linearly dependence to show as an exact zero missingPivots.push_back(i);//record the missing pivot continue;//move to the next column } inout[pivotrow].swap(inout[myrow]);//STL swap via pointers for constant time row swap pivots[myrow] = i;//save the pivot location for back substitution tempval = inout[myrow][i]; inout[myrow][i] = (T)1; for (j = i + 1; j < cols; ++j) { inout[myrow][j] /= tempval;//divide row by pivot } for (j = myrow + 1; j < rows; ++j) {//zero ONLY below pivot for now tempval = inout[j][i]; inout[j][i] = (T)0; for (k = i + 1; k < cols; ++k) { inout[j][k] -= tempval * inout[myrow][k]; } } ++myrow;//increment row on successful pivot } msize_t numMissing = (msize_t)missingPivots.size(); if (myrow > 1)//if there is only 1 pivot, there is no back substitution to do { msize_t lastPivotCol = pivots[myrow - 1]; for (i = myrow - 1; i > 0; --i)//loop through pivots, can't zero above the top pivot so exclude it { msize_t pivotCol = pivots[i]; for (j = i - 1; j >= 0; --j)//loop through rows above pivot { tempval = inout[j][pivotCol]; inout[j][pivotCol] = (T)0;//flat zero the entry above the pivot for (k = numMissing - 1; k >= 0; --k)//back substitute within pivot range where pivots are missing { msize_t missingCol = missingPivots[k]; if (missingCol <= pivotCol) break;//equals will never trip, but whatever inout[j][missingCol] -= tempval * inout[i][missingCol]; } for (k = lastPivotCol + 1; k < cols; ++k)//loop through elements that are outside the pivot area { inout[j][k] -= tempval * inout[i][k]; } } } } } else { inout.resize(0); return; } } else { inout.resize(0); return; } } template void MatrixFunctions::rref(vector > &inout) { msize_t rows = (msize_t)inout.size(), cols; if (rows) { cols = (msize_t)inout[0].size(); if (cols) { if (rows > 7 || cols > 7)//when the matrix has this many rows/columns, it is faster to allocate storage for tracking pivots, and back substitute { rref_big(inout); return; } msize_t i, j, k, myrow = 0; msize_t pivotrow; T tempval; for (i = 0; i < cols; ++i) { if (myrow >= rows) break;//no pivots left tempval = 0; pivotrow = -1; for (j = myrow; j < rows; ++j) {//only search below for new pivot if (abs(inout[j][i]) > tempval) { pivotrow = (msize_t)j; tempval = abs(inout[j][i]); } } if (pivotrow == -1)//it may be a good idea to include a "very small value" check here, but it could mess up if used on a matrix with all values very small {//naively expect linearly dependence to show as an exact zero continue;//move to the next column } inout[pivotrow].swap(inout[myrow]);//STL swap via pointers for constant time row swap tempval = inout[myrow][i]; inout[myrow][i] = 1; for (j = i + 1; j < cols; ++j) { inout[myrow][j] /= tempval;//divide row by pivot } for (j = 0; j < myrow; ++j) {//zero above pivot tempval = inout[j][i]; inout[j][i] = 0; for (k = i + 1; k < cols; ++k) { inout[j][k] -= tempval * inout[myrow][k]; } } for (j = myrow + 1; j < rows; ++j) {//zero below pivot tempval = inout[j][i]; inout[j][i] = 0; for (k = i + 1; k < cols; ++k) { inout[j][k] -= tempval * inout[myrow][k]; } } ++myrow;//increment row on successful pivot } } else { inout.resize(0); return; } } else { inout.resize(0); return; } } template void MatrixFunctions::inverse(const vector > &in, vector > &result) {//rref implementation, there are faster (more complicated) ways - if it isn't invertible, it will hand back something strange msize_t inrows = (msize_t)in.size(), incols; if (inrows) { incols = (msize_t)in[0].size(); if (incols == inrows) { vector > inter, inter2; identity(incols, inter2); horizCat(in, inter2, inter); rref(inter); getChunk(0, inrows, incols, incols * 2, inter, result);//already using a local variable, doesn't need to check for reference duplicity } else { result.resize(0); return; } } else { result.resize(0); return; } } template void MatrixFunctions::add(const vector >& left, const vector >& right, vector >& result) { msize_t inrows = (msize_t)left.size(), incols; bool doresize = true; if (&left == &result || &right == &result) { doresize = false;//don't resize if an input is an output - this is ok for addition, don't need a copy } if (inrows) { incols = (msize_t)left[0].size(); if (inrows == (msize_t)right.size() && incols == (msize_t)right[0].size()) { if (doresize) resize(inrows, incols, result, true); for (msize_t i = 0; i < inrows; ++i) { for (msize_t j = 0; j < incols; ++j) { result[i][j] = left[i][j] + right[i][j]; } } } else { result.resize(0);//use empty matrix for error condition return; } } else { result.resize(0); return; } } template void MatrixFunctions::add(const vector >& left, const T2 right, vector >& result) { msize_t inrows = (msize_t)left.size(), incols; bool doresize = true; if (&left == &result) { doresize = false;//don't resize if an input is an output - this is ok for addition, don't need a copy } if (inrows) { incols = (msize_t)left[0].size(); if (doresize) resize(inrows, incols, result, true); for (msize_t i = 0; i < inrows; ++i) { for (msize_t j = 0; j < incols; ++j) { result[i][j] = left[i][j] + right; } } } else { result.resize(0); return; } } template void MatrixFunctions::subtract(const vector >& left, const vector >& right, vector >& result) { msize_t inrows = (msize_t)left.size(), incols; bool doresize = true; if (&left == &result || &right == &result) { doresize = false;//don't resize if an input is an output } if (inrows) { incols = (msize_t)left[0].size(); if (inrows == (msize_t)right.size() && incols == (msize_t)right[0].size()) { if (doresize) resize(inrows, incols, result, true); for (msize_t i = 0; i < inrows; ++i) { for (msize_t j = 0; j < incols; ++j) { result[i][j] = left[i][j] - right[i][j]; } } } else { result.resize(0); return; } } else { result.resize(0); return; } } template void MatrixFunctions::transpose(const vector > &in, vector > &result) { msize_t inrows = (msize_t)in.size(), incols; vector > tempstorage, *tresult = &result; bool copyout = false; if (&in == &result) { copyout = true; tresult = &tempstorage; } if (inrows) { incols = (msize_t)in[0].size(); resize(incols, inrows, (*tresult), true); for (msize_t i = 0; i < inrows; ++i) { for (msize_t j = 0; j < incols; ++j) { (*tresult)[j][i] = in[i][j]; } } } else { result.resize(0); } if (copyout) { result = tempstorage; } } template bool MatrixFunctions::checkDim(const vector > &in) { bool ret = true; msize_t rows = (msize_t)in.size(), columns; if (rows) { columns = (msize_t)in[0].size(); for (msize_t i = 1; i < rows; ++i) { if (in[i].size() != columns) { ret = false; } } } return ret; } template void MatrixFunctions::resize(const msize_t rows, const msize_t columns, vector >& result, bool destructive) { if (destructive && result.size() && ((msize_t)result.capacity() < rows || (msize_t)result[0].capacity() < columns)) {//for large matrices, copying to preserve contents is slow result.resize(0);//not intended to dealloc, just to set number of items to copy to zero }//default is nondestructive resize, copies everything result.resize(rows); for (msize_t i = 0; i < (const msize_t)rows; ++i) {//naive method, may end up copying everything twice if both row and col resizes require realloc result[i].resize(columns); } } template void MatrixFunctions::zeros(const msize_t rows, const msize_t columns, vector >& result) { resize(rows, columns, result, true); for (msize_t i = 0; i < rows; ++i) { for (msize_t j = 0; j < columns; ++j) { result[i][j] = 0;//should cast to float or double fine } } } template void MatrixFunctions::ones(const msize_t rows, const msize_t columns, vector >& result) { resize(rows, columns, result, true); for (msize_t i = 0; i < rows; ++i) { for (msize_t j = 0; j < columns; ++j) { result[i][j] = 1;//should cast to float or double fine } } } template void MatrixFunctions::identity(const msize_t size, vector >& result) { resize(size, size, result, true); for (msize_t i = 0; i < (const msize_t)size; ++i) { for (msize_t j = 0; j < (const msize_t)size; ++j) { result[i][j] = ((i == j) ? 1 : 0);//ditto, forgive the ternary } } } template void MatrixFunctions::horizCat(const vector >& left, const vector >& right, vector >& result) { msize_t inrows = (msize_t)left.size(), leftcols, rightcols; vector > tempstorage, *tresult = &result; bool copyout = false; if (&left == &result || &right == &result) { copyout = true; tresult = &tempstorage; } if (inrows && inrows == (msize_t)right.size()) { leftcols = (msize_t)left[0].size(); rightcols = (msize_t)right[0].size(); (*tresult) = left;//use STL copy to start resize(inrows, leftcols + rightcols, (*tresult));//values survive nondestructive resize for (msize_t i = 0; i < inrows; ++i) { for (msize_t j = 0; j < rightcols; ++j) { (*tresult)[i][j + leftcols] = right[i][j]; } } } else { result.resize(0); return; } if (copyout) { result = tempstorage; } } template void MatrixFunctions::vertCat(const vector >& top, const vector >& bottom, vector >& result) { msize_t toprows = (msize_t)top.size(), botrows = (msize_t)bottom.size(), incols; vector > tempstorage, *tresult = &result; bool copyout = false; if (&top == &result || &bottom == &result) { copyout = true; tresult = &tempstorage; } if (toprows && botrows) { incols = (msize_t)top[0].size(); if (incols == (msize_t)bottom[0].size()) { (*tresult) = top; resize(toprows + botrows, incols, (*tresult));//nondestructive resize for (msize_t i = 0; i < botrows; ++i) { for (msize_t j = 0; j < incols; ++j) { (*tresult)[i + toprows][j] = bottom[i][j]; } } } else { result.resize(0); return; } } else { result.resize(0); return; } if (copyout) { result = tempstorage; } } template void MatrixFunctions::getChunk(const msize_t firstrow, const msize_t lastrow, const msize_t firstcol, const msize_t lastcol, const vector >& in, vector >& result) { msize_t outrows = lastrow - firstrow; msize_t outcols = lastcol - firstcol; if (lastrow <= firstrow || lastcol <= firstcol || firstrow < 0 || firstcol < 0 || lastrow > (msize_t)in.size() || lastcol > (msize_t)in[0].size()) { result.resize(0); return; } vector > tempstorage, *tresult = &result; bool copyout = false; if (&in == &result) { copyout = true; tresult = &tempstorage; } resize(outrows, outcols, (*tresult), true); for (msize_t i = 0; i < outrows; ++i) { for (msize_t j = 0; j < outcols; ++j) { (*tresult)[i][j] = in[i + firstrow][j + firstcol]; } } if (copyout) { result = tempstorage; } } } #endif CiftiLib-1.6.0/src/Common/MultiDimArray.h000066400000000000000000000104611373715117300201300ustar00rootroot00000000000000#ifndef __MULTI_DIM_ARRAY_H__ #define __MULTI_DIM_ARRAY_H__ /*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CiftiAssert.h" #include "stdint.h" #include namespace cifti { template class MultiDimArray { std::vector m_dims, m_skip;//always use int64_t for indexes internally std::vector m_data; template int64_t index(const int& fullDims, const std::vector& indexSelect) const;//assume we never need over 2 billion dimensions public: const std::vector& getDimensions() const { return m_dims; } template void resize(const std::vector& dims);//destructive resize template T& at(const std::vector& pos); template const T& at(const std::vector& pos) const; template T* get(const int& fullDims, const std::vector& indexSelect);//subarray reference selection template const T* get(const int& fullDims, const std::vector& indexSelect) const; }; template template void MultiDimArray::resize(const std::vector& dims) { m_dims = std::vector(dims.begin(), dims.end()); m_skip.resize(m_dims.size()); if (dims.size() == 0) { m_data.clear(); return; } int64_t numElems = 1; for (int i = 0; i < (int)m_dims.size(); ++i) { CiftiAssert(m_dims[i] > 0); m_skip[i] = numElems; numElems *= m_dims[i]; } m_data.resize(numElems); } template template int64_t MultiDimArray::index(const int& fullDims, const std::vector& indexSelect) const { CiftiAssert(fullDims + indexSelect.size() == m_dims.size()); int64_t ret = 0; for (int i = fullDims; i < (int)m_dims.size(); ++i) { CiftiAssert(indexSelect[i - fullDims] >= 0 && indexSelect[i - fullDims] < m_dims[i]); ret += m_skip[i] * indexSelect[i - fullDims]; } return ret; } template template T& MultiDimArray::at(const std::vector& pos) { return m_data[index(0, pos)]; } template template const T& MultiDimArray::at(const std::vector& pos) const { return m_data[index(0, pos)]; } template template T* MultiDimArray::get(const int& fullDims, const std::vector& indexSelect) { return m_data.data() + index(fullDims, indexSelect); } template template const T* MultiDimArray::get(const int& fullDims, const std::vector& indexSelect) const { return m_data.data() + index(fullDims, indexSelect); } } #endif //__MULTI_DIM_ARRAY_H__ CiftiLib-1.6.0/src/Common/MultiDimIterator.h000066400000000000000000000110021373715117300206330ustar00rootroot00000000000000#ifndef __MULTI_DIM_ITERATOR_H__ #define __MULTI_DIM_ITERATOR_H__ /*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "stdint.h" #include namespace cifti { template class MultiDimIterator { std::vector m_dims, m_pos; bool m_atEnd; void gotoBegin(); void gotoLast(); public: explicit MultiDimIterator(const std::vector& dimensions); void operator++(); void operator++(int); void operator--(); void operator--(int); const std::vector& operator*() const { return m_pos; } bool atEnd() const { return m_atEnd; } }; template MultiDimIterator::MultiDimIterator(const std::vector& dimensions) { m_dims = dimensions; gotoBegin(); } template void MultiDimIterator::gotoBegin() { m_pos = std::vector(m_dims.size(), 0); m_atEnd = false; size_t numDims = m_dims.size(); for (size_t i = 0; i < numDims; ++i) { if (m_dims[i] < 1) { m_atEnd = true; break; } } } template void MultiDimIterator::gotoLast() { m_pos = std::vector(m_dims.size()); m_atEnd = false; size_t numDims = m_dims.size(); for (size_t i = 0; i < numDims; ++i) { m_pos[i] = m_dims[i] - 1; if (m_dims[i] < 1) { m_atEnd = true; } } } template void MultiDimIterator::operator++() { if (atEnd())//wrap around { gotoBegin(); return; } if (m_dims.size() == 0) { m_atEnd = true;//special case: no dimensions works the same as 1 dimension of length 1 return; } size_t numDims = m_dims.size(); for (size_t i = 0; i < numDims; ++i) { ++m_pos[i]; if (m_pos[i] < m_dims[i]) return; m_pos[i] = 0; } m_atEnd = true;//if we didn't return already, all of them wrapped, so we are at the end } template void MultiDimIterator::operator++(int) { ++(*this); } template void MultiDimIterator::operator--() { if (atEnd())//wrap around { gotoLast(); return; } if (m_dims.size() == 0) { m_atEnd = true;//special case: no dimensions works the same as 1 dimension of length 1 return; } size_t numDims = m_dims.size(); for (size_t i = 0; i < numDims; ++i) { if (m_pos[i] > 0) { --m_pos[i]; return; } else { m_pos[i] = m_dims[i] - 1; } } m_atEnd = true;//if we didn't return already, all of them wrapped, so we are at the end } template void MultiDimIterator::operator--(int) { --(*this); } } #endif //__MULTI_DIM_ITERATOR_H__ CiftiLib-1.6.0/src/Common/Vector3D.cxx000066400000000000000000000112041373715117300174050ustar00rootroot00000000000000/*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "CiftiAssert.h" #include "Vector3D.h" #include using namespace std; using namespace cifti; Vector3D Vector3D::cross(const Vector3D& right) const { Vector3D ret; ret[0] = m_vec[1] * right[2] - m_vec[2] * right[1]; ret[1] = m_vec[2] * right[0] - m_vec[0] * right[2]; ret[2] = m_vec[0] * right[1] - m_vec[1] * right[0]; return ret; } float Vector3D::dot(const Vector3D& right) const { return m_vec[0] * right[0] + m_vec[1] * right[1] + m_vec[2] * right[2]; } float Vector3D::length() const { return sqrt(lengthsquared()); } float Vector3D::lengthsquared() const { return m_vec[0] * m_vec[0] + m_vec[1] * m_vec[1] + m_vec[2] * m_vec[2]; } Vector3D Vector3D::normal(float* origLength) const { Vector3D ret = *this; float mylength = length(); if (mylength != 0.0f) ret /= mylength; if (origLength != NULL) { *origLength = mylength; } return ret; } Vector3D::Vector3D() { m_vec[0] = 0.0f; m_vec[1] = 0.0f; m_vec[2] = 0.0f; } Vector3D::Vector3D(const float& x, const float& y, const float& z) { m_vec[0] = x; m_vec[1] = y; m_vec[2] = z; } Vector3D::Vector3D(const float* right) { m_vec[0] = right[0]; m_vec[1] = right[1]; m_vec[2] = right[2]; } float& Vector3D::operator[](const int64_t& index) { CiftiAssert(index > -1 && index < 3); return m_vec[index]; } const float& Vector3D::operator[](const int64_t& index) const { CiftiAssert(index > -1 && index < 3); return m_vec[index]; } float& Vector3D::operator[](const int32_t& index) { CiftiAssert(index > -1 && index < 3); return m_vec[index]; } const float& Vector3D::operator[](const int32_t& index) const { CiftiAssert(index > -1 && index < 3); return m_vec[index]; } Vector3D Vector3D::operator*(const float& right) const { Vector3D ret = *this; ret *= right; return ret; } Vector3D& Vector3D::operator*=(const float& right) { m_vec[0] *= right; m_vec[1] *= right; m_vec[2] *= right; return *this; } Vector3D cifti::operator*(const float& left, const Vector3D& right) { return right * left; } Vector3D Vector3D::operator+(const Vector3D& right) const { Vector3D ret = *this; ret += right; return ret; } Vector3D& Vector3D::operator+=(const Vector3D& right) { m_vec[0] += right.m_vec[0]; m_vec[1] += right.m_vec[1]; m_vec[2] += right.m_vec[2]; return *this; } Vector3D Vector3D::operator-(const Vector3D& right) const { Vector3D ret = *this; ret -= right; return ret; } Vector3D Vector3D::operator-() const { Vector3D ret; ret.m_vec[0] = -m_vec[0]; ret.m_vec[1] = -m_vec[1]; ret.m_vec[2] = -m_vec[2]; return ret; } Vector3D& Vector3D::operator-=(const Vector3D& right) { m_vec[0] -= right.m_vec[0]; m_vec[1] -= right.m_vec[1]; m_vec[2] -= right.m_vec[2]; return *this; } Vector3D Vector3D::operator/(const float& right) const { Vector3D ret = *this; ret /= right; return ret; } Vector3D& Vector3D::operator/=(const float& right) { m_vec[0] /= right; m_vec[1] /= right; m_vec[2] /= right; return *this; } Vector3D& Vector3D::operator=(const float* right) { m_vec[0] = right[0]; m_vec[1] = right[1]; m_vec[2] = right[2]; return *this; } CiftiLib-1.6.0/src/Common/Vector3D.h000066400000000000000000000057371373715117300170500ustar00rootroot00000000000000#ifndef __VECTOR_3D_H__ #define __VECTOR_3D_H__ /*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include #include "stdint.h" namespace cifti { class Vector3D { float m_vec[3]; public: //vector functions float dot(const Vector3D& right) const; Vector3D cross(const Vector3D& right) const; Vector3D normal(float* origLength = NULL) const; float length() const; float lengthsquared() const; //constructors Vector3D(); Vector3D(const float& x, const float& y, const float& z); Vector3D(const float* right); //compatibility operators float& operator[](const int64_t& index); const float& operator[](const int64_t& index) const; float& operator[](const int32_t& index); const float& operator[](const int32_t& index) const; Vector3D& operator=(const float* right); //numerical operators Vector3D& operator+=(const Vector3D& right); Vector3D& operator-=(const Vector3D& right); Vector3D& operator*=(const float& right); Vector3D& operator/=(const float& right); Vector3D operator+(const Vector3D& right) const; Vector3D operator-(const Vector3D& right) const; Vector3D operator-() const; Vector3D operator*(const float& right) const; Vector3D operator/(const float& right) const;//NOTE: doesn't really make sense to have the other division, unlike multiplication inline operator float*() { return m_vec; } }; Vector3D operator*(const float& left, const Vector3D& right); } #endif //__VECTOR_3D_H__ CiftiLib-1.6.0/src/Common/VoxelIJK.h000066400000000000000000000050701373715117300170400ustar00rootroot00000000000000#ifndef __VOXEL_IJK_H__ #define __VOXEL_IJK_H__ /*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "stdint.h" namespace cifti { struct VoxelIJK { int64_t m_ijk[3]; VoxelIJK() { } VoxelIJK(int64_t i, int64_t j, int64_t k) { m_ijk[0] = i; m_ijk[1] = j; m_ijk[2] = k; } template VoxelIJK(const T ijk[3]) { m_ijk[0] = ijk[0]; m_ijk[1] = ijk[1]; m_ijk[2] = ijk[2]; } bool operator<(const VoxelIJK& rhs) const//so it kan be the key of a map { if (m_ijk[2] < rhs.m_ijk[2]) return true;//compare such that when sorted, m_ijk[0] moves fastest if (m_ijk[2] > rhs.m_ijk[2]) return false; if (m_ijk[1] < rhs.m_ijk[1]) return true; if (m_ijk[1] > rhs.m_ijk[1]) return false; return (m_ijk[0] < rhs.m_ijk[0]); } bool operator==(const VoxelIJK& rhs) const { return (m_ijk[0] == rhs.m_ijk[0] && m_ijk[1] == rhs.m_ijk[1] && m_ijk[2] == rhs.m_ijk[2]); } bool operator!=(const VoxelIJK& rhs) const { return !((*this) == rhs); } }; } #endif //__VOXEL_IJK_H__ CiftiLib-1.6.0/src/Common/XmlAdapter.cxx000066400000000000000000000155211373715117300200230ustar00rootroot00000000000000/*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "XmlAdapter.h" #include "CiftiAssert.h" using namespace std; using namespace cifti; XmlAttributesResult cifti::XmlReader_parseAttributes(XmlReader& xml, const vector& mandatoryNames, const vector& optionalNames) { XmlAttributesResult ret; int numMandatory = (int)mandatoryNames.size();//if you require more than 2 billion attributes, w3c would like a word with you int numOptional = (int)optionalNames.size(); ret.mandatoryVals.resize(numMandatory); ret.optionalVals.resize(numOptional); AString elemName; #ifdef CIFTILIB_USE_QT vector mandatoryPresent(numMandatory, false); map mandatoryMap, optionalMap; for (int i = 0; i < numMandatory; ++i)//set up map lookups so it isn't n^2 { mandatoryMap[mandatoryNames[i]] = i; } for (int i = 0; i < numOptional; ++i) { optionalMap[optionalNames[i]] = i; } CiftiAssert(xml.isStartElement()); elemName = xml.name().toString(); QXmlStreamAttributes myAttrs = xml.attributes(); int numAttrs = myAttrs.size(); for (int i = 0; i < numAttrs; ++i) { QString name = myAttrs[i].name().toString(); map::iterator iter = mandatoryMap.find(name); if (iter == mandatoryMap.end()) { iter = optionalMap.find(name); if (iter != optionalMap.end())//NOTE: ignore unrecognized attributes for now, because MatrixIndicesMap has attributes that are used by different objects {//other option is to include such attributes in both calls, even if not used there ret.optionalVals[iter->second].present = true; ret.optionalVals[iter->second].value = myAttrs[i].value().toString(); } } else { ret.mandatoryVals[iter->second] = myAttrs[i].value().toString(); mandatoryPresent[iter->second] = true; } } for (int i = 0; i < numMandatory; ++i) { if (mandatoryPresent[i] == false) { throw CiftiException(elemName + " element is missing the " + mandatoryNames[i] + " attribute"); } } #else #ifdef CIFTILIB_USE_XMLPP CiftiAssert(xml.get_node_type() == XmlReader::Element); elemName = xml.get_local_name(); for (int i = 0; i < numMandatory; ++i)//NOTE: libxml++ (and even libxml2 to some extent) don't have a good interface for iterating through all attributes efficiently {//you have to iterate through a linked list of attributes exposed through a "hacking interface" ret.mandatoryVals[i] = xml.get_attribute(mandatoryNames[i]); if (ret.mandatoryVals[i] == "")//HACK: treat empty value same as missing attribute { throw CiftiException(elemName + " element is missing the " + mandatoryNames[i] + " attribute"); } } for (int i = 0; i < numOptional; ++i) { AString value = xml.get_attribute(optionalNames[i]); if (value != "")//HACK: and again { ret.optionalVals[i].present = true; ret.optionalVals[i].value = value; } } #else #error "not implemented" #endif #endif return ret; } bool cifti::XmlReader_checkEndElement(XmlReader& xml, const AString& elementName) { #ifdef CIFTILIB_USE_QT return xml.hasError() || (xml.isEndElement() && xml.name() == elementName);//if it has an xml error, don't trip an assert #else #ifdef CIFTILIB_USE_XMLPP return (xml.get_node_type() == XmlReader::EndElement || xml.is_empty_element()) && xml.get_local_name() == elementName; #else #error "not implemented" #endif #endif } AString cifti::XmlReader_readElementText(XmlReader& xml) { #ifdef CIFTILIB_USE_QT return xml.readElementText();//NOTE: requires calling code to check for xml.hasError() when using QT #else #ifdef CIFTILIB_USE_XMLPP AString ret; CiftiAssert(xml.get_node_type() == XmlReader::Element); AString elemName = xml.get_local_name(); bool done = xml.is_empty_element();//NOTE: a element does NOT give a separate end element state!!! while(!done && xml.read()) { switch(xml.get_node_type()) { case XmlReader::Element: throw CiftiException("unexpected element inside " + elemName + " element: " + xml.get_local_name()); case XmlReader::Text: case XmlReader::CDATA: ret += xml.get_value(); break; case XmlReader::EndElement: done = true; break; default: break; } } return ret; #else #error "not implemented" #endif #endif } bool cifti::XmlReader_readNextStartElement(XmlReader& xml) { #ifdef CIFTILIB_USE_QT return xml.readNextStartElement();//NOTE: requires calling code to check for xml.hasError() when using QT #else #ifdef CIFTILIB_USE_XMLPP if (xml.is_empty_element()) return false;//NOTE: a element does NOT give a separate end element state!!! while (xml.read()) { switch (xml.get_node_type()) { case XmlReader::Element: return true; case XmlReader::EndElement: return false; default: break; } } return false; #else #error "not implemented" #endif #endif } AString cifti::XmlReader_elementName(XmlReader& xml) { #ifdef CIFTILIB_USE_QT return xml.name().toString(); #else #ifdef CIFTILIB_USE_XMLPP return xml.get_local_name(); #else #error "not implemented" #endif #endif }CiftiLib-1.6.0/src/Common/XmlAdapter.h000066400000000000000000000150771373715117300174560ustar00rootroot00000000000000#ifndef __XML_ADAPTER_H__ #define __XML_ADAPTER_H__ /*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "AString.h" #include "CiftiException.h" #include #include #ifdef __XML_ADAPTER_H_HAVE_IMPL__ #undef __XML_ADAPTER_H_HAVE_IMPL__ #endif #ifdef CIFTILIB_USE_QT #define __XML_ADAPTER_H_HAVE_IMPL__ #include #include namespace cifti { typedef QXmlStreamReader XmlReader; typedef QXmlStreamWriter XmlWriter; } #endif //CIFTILIB_USE_QT #ifdef CIFTILIB_USE_XMLPP #define __XML_ADAPTER_H_HAVE_IMPL__ #include "libxml++/libxml++.h" #include "libxml++/parsers/textreader.h" #include "libxml/xmlwriter.h" #include "libxml/xmlstring.h" namespace cifti { typedef xmlpp::TextReader XmlReader; class XmlWriter {//write our own wrapper for the C writing API, as libxml++ doesn't wrap it xmlTextWriterPtr m_xmlPtr; xmlBufferPtr m_bufPtr; std::vector m_elementStack;//track element names for better error messages public: XmlWriter() {//only support writing to memory m_bufPtr = xmlBufferCreate(); if (m_bufPtr == NULL) throw CiftiException("error creating xml buffer"); m_xmlPtr = xmlNewTextWriterMemory(m_bufPtr, 0); if (m_xmlPtr == NULL) { xmlBufferFree(m_bufPtr); throw CiftiException("error creating xml writer"); } if (xmlTextWriterSetIndent(m_xmlPtr, 1) != 0 || xmlTextWriterSetIndentString(m_xmlPtr, BAD_CAST " ") != 0) { throw CiftiException("error setting xml writer indentation"); } } ~XmlWriter() { xmlFreeTextWriter(m_xmlPtr); xmlBufferFree(m_bufPtr); } void writeStartDocument()//copy a subset of the QXmlStreamWriter interface, so we don't have to rewrite much (any?) xml writing code { if (xmlTextWriterStartDocument(m_xmlPtr, NULL, NULL, NULL) == -1) throw CiftiException("error writing document start"); } void writeEndDocument() { if (xmlTextWriterEndDocument(m_xmlPtr) == -1) throw CiftiException("error writing document end"); m_elementStack.clear(); } void writeStartElement(const AString& name) { if (xmlTextWriterStartElement(m_xmlPtr, BAD_CAST ASTRING_UTF8_RAW(name)) == -1) throw CiftiException("error writing " + name + " element"); m_elementStack.push_back(name); } void writeEndElement() { if (m_elementStack.empty()) throw CiftiException("internal error: attempted writing end element outside root element"); if (xmlTextWriterEndElement(m_xmlPtr) == -1) throw CiftiException("error writing end element for " + m_elementStack.back()); m_elementStack.pop_back(); } void writeCharacters(const AString& text) { if (xmlTextWriterWriteString(m_xmlPtr, BAD_CAST ASTRING_UTF8_RAW(text)) == -1) throw CiftiException("error writing element text"); } void writeTextElement(const AString& name, const AString& text) { if (xmlTextWriterWriteElement(m_xmlPtr, BAD_CAST ASTRING_UTF8_RAW(name), BAD_CAST ASTRING_UTF8_RAW(text)) == -1) { throw CiftiException("error writing " + name + " element"); } } void writeAttribute(const AString& name, const AString& text) { if (m_elementStack.empty()) throw CiftiException("internal error: attempted writing attribute outside root element"); if (xmlTextWriterWriteAttribute(m_xmlPtr, BAD_CAST ASTRING_UTF8_RAW(name), BAD_CAST ASTRING_UTF8_RAW(text)) == -1) { throw CiftiException("error writing " + name + " attribute of " + m_elementStack.back() + " element"); } } std::vector getXmlData() const { std::vector ret(m_bufPtr->use);//this includes the null terminator? for (unsigned int i = 0; i < m_bufPtr->use; ++i) { ret[i] = m_bufPtr->content[i]; } return ret; } }; } #endif //CIFTILIB_USE_XMLPP #ifndef __XML_ADAPTER_H_HAVE_IMPL__ #error "you must define either CIFTILIB_USE_QT or CIFTILIB_USE_XMLPP to select what XML implementation to use" #endif namespace cifti { //helper functions that exist for all xml libraries struct XmlAttributesResult { struct OptionalStatus { OptionalStatus() { present = false; } bool present; AString value; }; std::vector mandatoryVals; std::vector optionalVals; }; AString XmlReader_readElementText(XmlReader& xml); bool XmlReader_readNextStartElement(XmlReader& xml); AString XmlReader_elementName(XmlReader& xml); XmlAttributesResult XmlReader_parseAttributes(XmlReader& xml, const std::vector& mandatoryNames, const std::vector& optionalNames = std::vector()); bool XmlReader_checkEndElement(XmlReader& xml, const AString& elementName);//for use in asserts at end of element parsing functions } #endif //__XML_ADAPTER_H__ CiftiLib-1.6.0/src/Nifti/000077500000000000000000000000001373715117300150535ustar00rootroot00000000000000CiftiLib-1.6.0/src/Nifti/CMakeLists.txt000066400000000000000000000000741373715117300176140ustar00rootroot00000000000000 SET(HEADERS NiftiHeader.h ) SET(SOURCES NiftiHeader.cxx ) CiftiLib-1.6.0/src/Nifti/NiftiHeader.cxx000066400000000000000000001226311373715117300177660ustar00rootroot00000000000000/*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "NiftiHeader.h" #include "Common/ByteSwapping.h" #include "Common/CiftiAssert.h" #include "Common/CiftiException.h" #include "Common/FloatMatrix.h" #include "Common/MathFunctions.h" #include #include #include #include #include "stdint.h" using namespace std; using namespace boost; using namespace cifti; NiftiHeader::NiftiHeader() { if (sizeof(nifti_1_header) != 348 || sizeof(nifti_2_header) != 540)//these should be made into static asserts when we move to c++11 or decide to use boost { throw CiftiException("internal error: nifti header structs are the wrong size");//this is not a runtime assert, because we want this checked in release builds too } memset(&m_header, 0, sizeof(m_header)); for (int i = 0; i < 8; ++i) { m_header.dim[i] = 1;//we maintain 1s on unused dimensions to make some stupid nifti readers happy m_header.pixdim[i] = 1.0f;//also set pixdims to 1 by default, to make some other nifti readers happy when reading cifti headers }//note that we still warn when asking for spacing info and qform and sform codes are both 0, so this doesn't prevent us from catching non-volume files loaded as volumes m_header.xyzt_units = SPACE_TIME_TO_XYZT(NIFTI_UNITS_MM, NIFTI_UNITS_SEC); m_header.scl_slope = 1.0;//default to identity scaling m_header.scl_inter = 0.0; m_header.datatype = NIFTI_TYPE_FLOAT32; m_header.bitpix = typeToNumBits(m_header.datatype); m_version = 0; m_isSwapped = false; } bool NiftiHeader::canWriteVersion(const int& version) const { if (computeVoxOffset(version) < 0) return false;//error condition, can happen if an extension is longer than 2^31 if (version == 2) return true;//our internal state is nifti-2, return early if (version != 1) return false;//we can only write 1 and 2 vector dims = getDimensions(); for (int i = 0; i < (int)dims.size(); ++i) { if (dims[i] > numeric_limits::max()) return false; } if (m_header.intent_code > numeric_limits::max() || m_header.intent_code < numeric_limits::min()) return false; if (m_header.slice_code > numeric_limits::max() || m_header.slice_code < numeric_limits::min()) return false; if (m_header.xyzt_units > numeric_limits::max() || m_header.xyzt_units < numeric_limits::min()) return false; if (m_header.qform_code > numeric_limits::max() || m_header.qform_code < numeric_limits::min()) return false; if (m_header.sform_code > numeric_limits::max() || m_header.sform_code < numeric_limits::min()) return false; return true; } int64_t NiftiHeader::computeVoxOffset(const int& version) const { int64_t ret; switch (version) { case 1: ret = 4 + sizeof(nifti_1_header);//the 4 is the extender bytes break; case 2: ret = 4 + sizeof(nifti_2_header); break; default: return -1; } int numExtensions = (int)m_extensions.size(); for (int i = 0; i < numExtensions; ++i) { CiftiAssert(m_extensions[i] != NULL); int64_t thisSize = 8 + m_extensions[i]->m_bytes.size();//8 is for the int32_t size and ecode for nifti-1 style extensions if (thisSize % 16 != 0)//round up to nearest multiple of 16 { int paddingBytes = 16 - (thisSize % 16); thisSize += paddingBytes; } if (thisSize > numeric_limits::max()) return -1;//since we don't have nifti-2 style extensions yet, always fail ret += thisSize; } if (version == 1)//need to put it into a float exactly (yes, really) { float temp = ret; if (ret != (int64_t)temp) return -1;//for now, just fail, until it actually becomes a problem } return ret; } bool NiftiHeader::getDataScaling(double& mult, double& offset) const { if (m_header.datatype == NIFTI_TYPE_RGB24 || m_header.scl_slope == 0.0 || (m_header.scl_slope == 1.0 && m_header.scl_inter == 0.0))//the "if slope is zero" case is in the nifti spec { mult = 1.0;//in case someone ignores the boolean offset = 0.0; return false; } mult = m_header.scl_slope; offset = m_header.scl_inter; return true; } vector NiftiHeader::getDimensions() const { CiftiAssert(m_header.dim[0] >= 0 && m_header.dim[0] <= 7);//because storage is private and initialized to zero, so it should never be invalid vector ret(m_header.dim[0]); for (int i = 0; i < m_header.dim[0]; ++i) { ret[i] = m_header.dim[i + 1]; } return ret; } vector > NiftiHeader::getFSLSpace() const {//don't look at me, blame analyze and flirt vector dimensions = getDimensions(); if (dimensions.size() < 3) throw CiftiException("NiftiHeaderIO has less than 3 dimensions, can't generate the FSL space for it"); FloatMatrix ret; vector > sform = getSForm(); float determinant = sform[0][0] * sform[1][1] * sform[2][2] + sform[0][1] * sform[1][2] * sform[2][0] + sform[0][2] * sform[1][0] * sform[2][1] - sform[0][2] * sform[1][1] * sform[2][0] - sform[0][0] * sform[1][2] * sform[2][1] - sform[0][1] * sform[1][0] * sform[2][2];//just write out the 3x3 determinant rather than packing it into a FloatMatrix first - and I haven't put a determinant function in yet ret = FloatMatrix::identity(4);//generate a 4x4 with 0 0 0 1 last row via FloatMatrix for convenience if (determinant > 0.0f) { ret[0][0] = -m_header.pixdim[1];//yes, they really use pixdim, despite checking the SForm/QForm for flipping - ask them, not me ret[0][3] = (dimensions[0] - 1) * m_header.pixdim[1];//note - pixdim[1] is for i, pixdim[0] is qfac } else { ret[0][0] = m_header.pixdim[1]; } ret[1][1] = m_header.pixdim[2]; ret[2][2] = m_header.pixdim[3]; int32_t spaceUnit = XYZT_TO_SPACE(m_header.xyzt_units); switch (spaceUnit) { case NIFTI_UNITS_METER: ret *= 1000.0f; ret[3][3] = 1.0f; break; case NIFTI_UNITS_MICRON: ret *= 0.001f; ret[3][3] = 1.0f; break; case NIFTI_UNITS_MM: break; default: break;//will already have warned in getSForm() } return ret.getMatrix(); } bool NiftiHeader::operator==(const NiftiHeader& rhs) const { if (m_version != rhs.m_version) return false;//this is to test for consistency, not to test if two headers mean the same thing if (m_isSwapped != rhs.m_isSwapped) return false; return memcmp(&m_header, &(rhs.m_header), sizeof(m_header)) == 0; } vector > NiftiHeader::getSForm() const { FloatMatrix ret = FloatMatrix::zeros(4, 4); ret[3][3] = 1.0f;//force 0 0 0 1 last row if (m_header.sform_code != 0)//prefer sform { for(int i = 0; i < 4; i++) { ret[0][i] = m_header.srow_x[i]; ret[1][i] = m_header.srow_y[i]; ret[2][i] = m_header.srow_z[i]; } } else if (m_header.qform_code != 0) {//fall back to qform float rotmat[3][3], quat[4]; quat[1] = m_header.quatern_b; quat[2] = m_header.quatern_c; quat[3] = m_header.quatern_d; float checkquat = quat[1] * quat[1] + quat[2] * quat[2] + quat[3] * quat[3]; if (checkquat <= 1.01f)//make sure qform is sane { if (checkquat > 1.0f) { quat[0] = 0.0f; } else { quat[0] = sqrt(1.0f - checkquat); } MathFunctions::quaternToMatrix(quat, rotmat); for (int i = 0; i < 3; ++i) { for (int j = 0; j < 3; ++j) { rotmat[i][j] *= m_header.pixdim[j + 1]; } } if (m_header.pixdim[0] < 0.0f)//left handed coordinate system, flip the kvec { rotmat[0][2] = -rotmat[0][2]; rotmat[1][2] = -rotmat[1][2]; rotmat[2][2] = -rotmat[2][2]; } for (int i = 0; i < 3; ++i) { for (int j = 0; j < 3; ++j) { ret[i][j] = rotmat[i][j]; } } ret[0][3] = m_header.qoffset_x; ret[1][3] = m_header.qoffset_y; ret[2][3] = m_header.qoffset_z; } else { cerr << "warning: found quaternion with length greater than 1 in nifti header, using ANALYZE coordinates!" << endl; ret[0][0] = m_header.pixdim[1]; ret[1][1] = m_header.pixdim[2]; ret[2][2] = m_header.pixdim[3]; } } else {//fall back to analyze and complain cerr << "warning: no sform or qform code found, using ANALYZE coordinates!" << endl; ret[0][0] = m_header.pixdim[1]; ret[1][1] = m_header.pixdim[2]; ret[2][2] = m_header.pixdim[3]; } int32_t spaceUnit = XYZT_TO_SPACE(m_header.xyzt_units); switch (spaceUnit) { case NIFTI_UNITS_METER: ret *= 1000.0f; ret[3][3] = 1.0f; break; case NIFTI_UNITS_MICRON: ret *= 0.001f; ret[3][3] = 1.0f; break; case 0://assume millimeters if unspecified, could give a warning case NIFTI_UNITS_MM: break; default: cerr << "warning: unrecognized spatial unit in nifti header" << endl; } return ret.getMatrix(); } double NiftiHeader::getTimeStep() const { int timeUnit = XYZT_TO_TIME(m_header.xyzt_units); double ret = m_header.pixdim[4]; switch (timeUnit) { case NIFTI_UNITS_USEC: ret /= 1000000.0; break; case NIFTI_UNITS_MSEC: ret /= 1000.0; break; default: cerr << AString_to_std_string("warning: non-time units code " + AString_number(timeUnit) + " used in nifti header, pretending units are seconds") << endl; case NIFTI_UNITS_SEC: break; } return ret; } AString NiftiHeader::toString() const { AString ret; if (isSwapped()) { ret += "native endian: false\n"; } else { ret += "native endian: true\n"; } ret += "sizeof_hdr: " + AString_number(m_header.sizeof_hdr) + "\n";//skip the fields that aren't important, like intent_p1, cal_max, etc ret += "magic: " + AString_from_latin1(m_header.magic, 8) + "\n"; ret += "datatype: " + AString_number(m_header.datatype) + "\n"; ret += "bitpix: " + AString_number(m_header.bitpix) + "\n"; CiftiAssert(m_header.dim[0] < 8); for (int i = 0; i <= m_header.dim[0]; ++i) { ret += "dim[" + AString_number(i) + "]: " + AString_number(m_header.dim[i]) + "\n"; } for (int i = 0; i <= m_header.dim[0]; ++i) { ret += "pixdim[" + AString_number(i) + "]: " + AString_number(m_header.pixdim[i]) + "\n"; } ret += "vox_offset: " + AString_number(m_header.vox_offset) + "\n"; ret += "scl_slope: " + AString_number(m_header.scl_slope) + "\n"; ret += "scl_inter: " + AString_number(m_header.scl_inter) + "\n"; ret += "sform_code: " + AString_number(m_header.sform_code) + "\n"; if (m_header.sform_code != NIFTI_XFORM_UNKNOWN) { ret += "srow_x:"; for (int i = 0; i < 4; ++i) { ret += " " + AString_number(m_header.srow_x[i]); } ret += "\nsrow_y:"; for (int i = 0; i < 4; ++i) { ret += " " + AString_number(m_header.srow_y[i]); } ret += "\nsrow_z:"; for (int i = 0; i < 4; ++i) { ret += " " + AString_number(m_header.srow_z[i]); } ret += "\n"; } ret += "qform_code: " + AString_number(m_header.qform_code) + "\n"; if (m_header.qform_code != NIFTI_XFORM_UNKNOWN) { ret += "quatern_b: " + AString_number(m_header.quatern_b) + "\n"; ret += "quatern_c: " + AString_number(m_header.quatern_c) + "\n"; ret += "quatern_d: " + AString_number(m_header.quatern_d) + "\n"; ret += "qoffset_x: " + AString_number(m_header.qoffset_x) + "\n"; ret += "qoffset_y: " + AString_number(m_header.qoffset_y) + "\n"; ret += "qoffset_z: " + AString_number(m_header.qoffset_z) + "\n"; } ret += "effective sform:\n"; vector > tempSform = getSForm(); for (int i = 0; i < 3; ++i) { for (int j = 0; j < 4; ++j) { ret += " " + AString_number(tempSform[i][j]); } ret += "\n"; } ret += "xyzt_units: " + AString_number(m_header.xyzt_units) + "\n"; ret += "intent_code: " + AString_number(m_header.intent_code) + "\n"; ret += "intent_name: " + AString_from_latin1(m_header.intent_name, 16) + "\n"; int numExts = (int)m_extensions.size(); ret += AString_number(numExts) + " extension"; if (numExts != 1) ret += "s"; if (numExts == 0) { ret += "\n"; } else { ret += ":\n"; for (int i = 0; i < numExts; ++i) { CiftiAssert(m_extensions[i] != NULL); ret += "\n"; ret += "code: " + AString_number(m_extensions[i]->m_ecode) + "\n"; ret += "length: " + AString_number(m_extensions[i]->m_bytes.size()) + "\n"; } } return ret; } void NiftiHeader::setDataType(const int16_t& type) { m_header.bitpix = typeToNumBits(m_header.datatype);//to check for errors m_header.datatype = type; } void NiftiHeader::setDimensions(const vector& dimsIn) { if (dimsIn.size() > 7 || dimsIn.empty()) throw CiftiException("Number of dimensions must be between 1 and 7, inclusive."); m_header.dim[0] = dimsIn.size(); int i = 0; for(; i < (int)dimsIn.size(); i++) { if (dimsIn[i] < 1) throw CiftiException("all dimension lengths must be positive");//maybe these should be asserts? m_header.dim[i + 1] = dimsIn[i]; } for (; i < 7; ++i) { m_header.dim[i + 1] = 1;//we maintain 1s on unused dimensions to make some stupid nifti readers happy } } void NiftiHeader::setIntent(const int32_t& code, const char name[16]) { m_header.intent_code = code; int i;//custom strncpy-like code to fill nulls to the end for (i = 0; i < 16 && name[i] != '\0'; ++i) m_header.intent_name[i] = name[i]; for (; i < 16; ++i) m_header.intent_name[i] = '\0'; } void NiftiHeader::setDescription(const char descrip[80]) { int i;//custom strncpy-like code to fill nulls to the end for (i = 0; i < 80 && descrip[i] != '\0'; ++i) m_header.descrip[i] = descrip[i]; for (; i < 80; ++i) m_header.descrip[i] = '\0'; } void NiftiHeader::setSForm(const vector >& sForm) { CiftiAssert(sForm.size() >= 3);//programmer error to pass badly sized matrix if (sForm.size() < 3) throw CiftiException("internal error: setSForm matrix badly sized");//but make release also throw for (int i = 0; i < (int)sForm.size(); i++) { CiftiAssert(sForm[i].size() >= 4);//ditto if (sForm[i].size() < 4) throw CiftiException("internal error: setSForm matrix badly sized"); } int timeUnit = XYZT_TO_TIME(m_header.xyzt_units); m_header.xyzt_units = SPACE_TIME_TO_XYZT(NIFTI_UNITS_MM, timeUnit);//overwrite whatever spatial unit we read in for (int i = 0; i < 4; i++) { m_header.srow_x[i] = sForm[0][i]; m_header.srow_y[i] = sForm[1][i]; m_header.srow_z[i] = sForm[2][i]; } m_header.sform_code = NIFTI_XFORM_SCANNER_ANAT; Vector3D ivec, jvec, kvec; ivec[0] = sForm[0][0]; ivec[1] = sForm[1][0]; ivec[2] = sForm[2][0]; jvec[0] = sForm[0][1]; jvec[1] = sForm[1][1]; jvec[2] = sForm[2][1]; kvec[0] = sForm[0][2]; kvec[1] = sForm[1][2]; kvec[2] = sForm[2][2]; m_header.pixdim[0] = 1.0f; m_header.pixdim[1] = ivec.length(); m_header.pixdim[2] = jvec.length(); m_header.pixdim[3] = kvec.length(); ivec = ivec.normal(); jvec = jvec.normal(); kvec = kvec.normal(); if (kvec.dot(ivec.cross(jvec)) < 0.0f)//left handed sform! { m_header.pixdim[0] = -1.0f; kvec = -kvec;//because to nifti, "left handed" apparently means "up is down", not "left is right" } float rotmat[3][3]; rotmat[0][0] = ivec[0]; rotmat[1][0] = ivec[1]; rotmat[2][0] = ivec[2]; rotmat[0][1] = jvec[0]; rotmat[1][1] = jvec[1]; rotmat[2][1] = jvec[2]; rotmat[0][2] = kvec[0]; rotmat[1][2] = kvec[1]; rotmat[2][2] = kvec[2]; float quat[4]; if (!MathFunctions::matrixToQuatern(rotmat, quat)) { m_header.qform_code = NIFTI_XFORM_UNKNOWN;//0, implies that there is no qform m_header.quatern_b = 0.0;//set dummy values anyway m_header.quatern_c = 0.0; m_header.quatern_d = 0.0; m_header.qoffset_x = sForm[0][3]; m_header.qoffset_y = sForm[1][3]; m_header.qoffset_z = sForm[2][3]; } else { m_header.qform_code = NIFTI_XFORM_SCANNER_ANAT; m_header.quatern_b = quat[1]; m_header.quatern_c = quat[2]; m_header.quatern_d = quat[3]; m_header.qoffset_x = sForm[0][3]; m_header.qoffset_y = sForm[1][3]; m_header.qoffset_z = sForm[2][3]; } } void NiftiHeader::setTimeStep(const double& seconds) { int spaceUnit = XYZT_TO_SPACE(m_header.xyzt_units);//save the current space units so we don't clobber it... m_header.xyzt_units = SPACE_TIME_TO_XYZT(spaceUnit, NIFTI_UNITS_SEC);//overwrite the time part of the units with seconds m_header.pixdim[4] = seconds; } void NiftiHeader::clearDataScaling() { m_header.scl_slope = 1.0; m_header.scl_inter = 0.0; } void NiftiHeader::setDataScaling(const double& mult, const double& offset) { m_header.scl_slope = mult; m_header.scl_inter = offset; } namespace { template struct Scaling { double mult, offset; Scaling(const double& minval, const double& maxval) { std::numeric_limits mylimits; double mymin = mylimits.min(); if (!mylimits.is_integer) mymin = -mylimits.max();//again, c++11 can use lowest() instead of these lines mult = (maxval - minval) / ((double)mylimits.max() - mymin);//multiplying is the first step of decoding (after byteswap), so start with the range offset = minval - mymin * mult;//offset is added after multiplying the encoded value by mult } }; } void NiftiHeader::setDataTypeAndScaleRange(const int16_t& type, const double& minval, const double& maxval) { setDataType(type); switch (type) { case NIFTI_TYPE_RGB24: clearDataScaling();//RGB ignores scaling fields break; case DT_BINARY://currently not supported in read/write functions anyway setDataScaling(maxval - minval, minval);//make the two possible decoded values equal to the min and max break; case NIFTI_TYPE_INT8: { Scaling myscale(minval, maxval); setDataScaling(myscale.mult, myscale.offset); break; } case NIFTI_TYPE_UINT8: { Scaling myscale(minval, maxval); setDataScaling(myscale.mult, myscale.offset); break; } case NIFTI_TYPE_INT16: { Scaling myscale(minval, maxval); setDataScaling(myscale.mult, myscale.offset); break; } case NIFTI_TYPE_UINT16: { Scaling myscale(minval, maxval); setDataScaling(myscale.mult, myscale.offset); break; } case NIFTI_TYPE_INT32: { Scaling myscale(minval, maxval); setDataScaling(myscale.mult, myscale.offset); break; } case NIFTI_TYPE_UINT32: { Scaling myscale(minval, maxval); setDataScaling(myscale.mult, myscale.offset); break; } case NIFTI_TYPE_INT64: { Scaling myscale(minval, maxval); setDataScaling(myscale.mult, myscale.offset); break; } case NIFTI_TYPE_UINT64: { Scaling myscale(minval, maxval); setDataScaling(myscale.mult, myscale.offset); break; } case NIFTI_TYPE_FLOAT32: case NIFTI_TYPE_COMPLEX64: { Scaling myscale(minval, maxval); setDataScaling(myscale.mult, myscale.offset); break; } case NIFTI_TYPE_FLOAT64: case NIFTI_TYPE_COMPLEX128: { Scaling myscale(minval, maxval); setDataScaling(myscale.mult, myscale.offset); break; } case NIFTI_TYPE_FLOAT128: case NIFTI_TYPE_COMPLEX256: { Scaling myscale(minval, maxval); setDataScaling(myscale.mult, myscale.offset); break; } default: CiftiAssert(0); throw CiftiException("internal error, report what you did to the developers"); } } int NiftiHeader::getNumComponents() const { switch (getDataType()) { case NIFTI_TYPE_RGB24: return 3; break; case NIFTI_TYPE_COMPLEX64: case NIFTI_TYPE_COMPLEX128: case NIFTI_TYPE_COMPLEX256: return 2; break; case DT_BINARY: case NIFTI_TYPE_INT8: case NIFTI_TYPE_UINT8: case NIFTI_TYPE_INT16: case NIFTI_TYPE_UINT16: case NIFTI_TYPE_INT32: case NIFTI_TYPE_UINT32: case NIFTI_TYPE_FLOAT32: case NIFTI_TYPE_INT64: case NIFTI_TYPE_UINT64: case NIFTI_TYPE_FLOAT64: case NIFTI_TYPE_FLOAT128: return 1; break; default: CiftiAssert(0); throw CiftiException("internal error, report what you did to the developers"); } } void NiftiHeader::read(BinaryFile& inFile) { nifti_1_header buffer1; nifti_2_header buffer2; inFile.read(&buffer1, sizeof(nifti_1_header)); int version = NIFTI2_VERSION(buffer1); bool swapped = false; Quirks myquirks; try { if (version == 2) { memcpy(&buffer2, &buffer1, sizeof(nifti_1_header)); inFile.read(((char*)&buffer2) + sizeof(nifti_1_header), sizeof(nifti_2_header) - sizeof(nifti_1_header)); if (NIFTI2_NEEDS_SWAP(buffer2)) { swapped = true; swapHeaderBytes(buffer2); } myquirks = setupFrom(buffer2, inFile.getFilename()); } else if (version == 1) { if (NIFTI2_NEEDS_SWAP(buffer1))//yes, this works on nifti-1 also { swapped = true; swapHeaderBytes(buffer1); } myquirks = setupFrom(buffer1, inFile.getFilename()); } else { throw CiftiException(inFile.getFilename() + " is not a valid NIfTI file"); } } catch (CiftiException& e) {//catch and throw in order to add filename info throw CiftiException("error reading NIfTI file " + inFile.getFilename() + ": " + e.whatString()); } m_extensions.clear(); if (myquirks.no_extender) { int min_offset = 352; if (version == 2) min_offset = 544; cerr << AString_to_std_string("warning: in file '" + inFile.getFilename() + "', vox_offset is " + AString_number(m_header.vox_offset) + ", nifti standard specifies that it should be at least " + AString_number(min_offset) + ", assuming malformed file with no extender") << endl; } else { char extender[4]; inFile.read(extender, 4); int extensions = 0;//if it has extensions in a format we don't know about, don't try to read them if (version == 1 && extender[0] != 0) extensions = 1;//sadly, this is the only thing nifti-1 says about the extender bytes if (version == 2 && extender[0] == 1 && extender[1] == 0 && extender[2] == 0 && extender[3] == 0) extensions = 1;//from http://nifti.nimh.nih.gov/nifti-2 as of 4/4/2014: if (extensions == 1)//"extentions match those of NIfTI-1.1 when the extender bytes are 1 0 0 0" { int64_t extStart; if (version == 1) { extStart = 352; } else { CiftiAssert(version == 2); extStart = 544; } CiftiAssert(inFile.pos() == extStart); while(extStart + 2 * sizeof(int32_t) <= (size_t)m_header.vox_offset) { int32_t esize, ecode; inFile.read(&esize, sizeof(int32_t)); if (swapped) ByteSwapping::swap(esize); inFile.read(&ecode, sizeof(int32_t)); if (swapped) ByteSwapping::swap(ecode); if (esize < 8 || esize + extStart > m_header.vox_offset) break; boost::shared_ptr tempExtension(new NiftiExtension()); if ((size_t)esize > 2 * sizeof(int32_t))//don't try to read 0 bytes { tempExtension->m_bytes.resize(esize - 2 * sizeof(int32_t)); inFile.read(tempExtension->m_bytes.data(), esize - 2 * sizeof(int32_t)); } tempExtension->m_ecode = ecode; m_extensions.push_back(tempExtension); extStart += esize;//esize includes the two int32_ts } } } m_isSwapped = swapped;//now that we know there were no errors (because they throw), complete the internal state m_version = version; } NiftiHeader::Quirks NiftiHeader::setupFrom(const nifti_1_header& header, const AString& filename) { Quirks ret; if (header.sizeof_hdr != sizeof(nifti_1_header)) throw CiftiException("incorrect sizeof_hdr in file '" + filename + "'"); const char magic[] = "n+1\0";//only support single-file nifti if (strncmp(header.magic, magic, 4) != 0) throw CiftiException("incorrect magic in file '" + filename + "'"); if (header.dim[0] < 1 || header.dim[0] > 7) throw CiftiException("incorrect dim[0] in file '" + filename + "'"); for (int i = 0; i < header.dim[0]; ++i) { if (header.dim[i + 1] < 1) throw CiftiException("dim[" + AString_number(i + 1) + "] < 1 in file '" + filename + "'"); } if (header.vox_offset < 352) { if (header.vox_offset < 348) { throw CiftiException("file '" + filename + "' has invalid vox_offset: " + AString_number(header.vox_offset)); } ret.no_extender = true; } int numBits = typeToNumBits(header.datatype); if (header.bitpix != numBits) cerr << AString_to_std_string("warning: datatype disagrees with bitpix in file '" + filename + "'") << endl; m_header.sizeof_hdr = header.sizeof_hdr;//copy in everything, so we don't have to fake anything to print the header as read for (int i = 0; i < 4; ++i)//mostly using nifti-2 field order to make it easier to find if things are missed { m_header.magic[i] = header.magic[i]; m_header.srow_x[i] = header.srow_x[i];//slight hack - nifti-1 magic and srows both happen to be 4 long m_header.srow_y[i] = header.srow_y[i]; m_header.srow_z[i] = header.srow_z[i]; } m_header.datatype = header.datatype; m_header.bitpix = header.bitpix; for (int i = 0; i < 8; ++i) { m_header.dim[i] = header.dim[i]; m_header.pixdim[i] = header.pixdim[i]; } m_header.intent_p1 = header.intent_p1; m_header.intent_p2 = header.intent_p2; m_header.intent_p3 = header.intent_p3; m_header.vox_offset = header.vox_offset;//technically, this could result in integer overflow, if the header extensions total exabytes in size m_header.scl_slope = header.scl_slope; m_header.scl_inter = header.scl_inter; m_header.cal_max = header.cal_max; m_header.cal_min = header.cal_min; m_header.slice_duration = header.slice_duration; m_header.toffset = header.toffset; m_header.slice_start = header.slice_start; m_header.slice_end = header.slice_end; for (int i = 0; i < 80; ++i) m_header.descrip[i] = header.descrip[i]; for (int i = 0; i < 24; ++i) m_header.aux_file[i] = header.aux_file[i]; m_header.qform_code = header.qform_code; m_header.sform_code = header.sform_code; m_header.quatern_b = header.quatern_b; m_header.quatern_c = header.quatern_c; m_header.quatern_d = header.quatern_d; m_header.qoffset_x = header.qoffset_x; m_header.qoffset_y = header.qoffset_y; m_header.qoffset_z = header.qoffset_z; m_header.slice_code = header.slice_code; m_header.xyzt_units = header.xyzt_units; m_header.intent_code = header.intent_code; for (int i = 0; i < 16; ++i) m_header.intent_name[i] = header.intent_name[i]; m_header.dim_info = header.dim_info; return ret; } NiftiHeader::Quirks NiftiHeader::setupFrom(const nifti_2_header& header, const AString& filename) { Quirks ret; if (header.sizeof_hdr != sizeof(nifti_2_header)) throw CiftiException("incorrect sizeof_hdr in file '" + filename + "'"); const char magic[] = "n+2\0\r\n\032\n";//only support single-file nifti, magic string detailed at https://www.nitrc.org/forum/forum.php?thread_id=2148&forum_id=1941 for (int i = 0; i < 8; ++i) { if (header.magic[i] != magic[i]) throw CiftiException("incorrect magic in file '" + filename + "'"); } if (header.dim[0] < 1 || header.dim[0] > 7) throw CiftiException("incorrect dim[0] in file '" + filename + "'"); for (int i = 0; i < header.dim[0]; ++i) { if (header.dim[i + 1] < 1) throw CiftiException("dim[" + AString_number(i + 1) + "] < 1 in file '" + filename + "'"); } if (header.vox_offset < 544) throw CiftiException("file '" + filename + "' has invalid vox_offset: " + AString_number(header.vox_offset));//haven't noticed any nifti-2 with bad vox_offset yet, and all cifti files have a big extension, so they have to have used it correctly if (header.bitpix != typeToNumBits(header.datatype)) cerr << AString_to_std_string("warning: datatype disagrees with bitpix in file '" + filename + "'") << endl; memcpy(&m_header, &header, sizeof(nifti_2_header)); return ret; } int NiftiHeader::typeToNumBits(const int64_t& type) { switch (type) { case DT_BINARY: return 1; break; case NIFTI_TYPE_INT8: case NIFTI_TYPE_UINT8: return 8; break; case NIFTI_TYPE_INT16: case NIFTI_TYPE_UINT16: return 16; break; case NIFTI_TYPE_RGB24: return 24; break; case NIFTI_TYPE_INT32: case NIFTI_TYPE_UINT32: case NIFTI_TYPE_FLOAT32: return 32; break; case NIFTI_TYPE_INT64: case NIFTI_TYPE_UINT64: case NIFTI_TYPE_FLOAT64: case NIFTI_TYPE_COMPLEX64: return 64; break; case NIFTI_TYPE_FLOAT128: case NIFTI_TYPE_COMPLEX128: return 128; break; case NIFTI_TYPE_COMPLEX256: return 256; break; default: throw CiftiException("incorrect nifti datatype code"); } } void NiftiHeader::swapHeaderBytes(nifti_1_header& header) { ByteSwapping::swap(header.sizeof_hdr);//by order of fields in nifti-1 header, skip unused because we don't store their data ByteSwapping::swapArray(header.dim, 8); ByteSwapping::swap(header.intent_p1); ByteSwapping::swap(header.intent_p2); ByteSwapping::swap(header.intent_p3); ByteSwapping::swap(header.intent_code); ByteSwapping::swap(header.datatype); ByteSwapping::swap(header.bitpix); ByteSwapping::swap(header.slice_start); ByteSwapping::swapArray(header.pixdim, 8); ByteSwapping::swap(header.vox_offset); ByteSwapping::swap(header.scl_slope); ByteSwapping::swap(header.scl_inter); ByteSwapping::swap(header.slice_end); ByteSwapping::swap(header.cal_max); ByteSwapping::swap(header.cal_min); ByteSwapping::swap(header.slice_duration); ByteSwapping::swap(header.toffset); ByteSwapping::swap(header.qform_code); ByteSwapping::swap(header.sform_code); ByteSwapping::swap(header.quatern_b); ByteSwapping::swap(header.quatern_c); ByteSwapping::swap(header.quatern_d); ByteSwapping::swap(header.qoffset_x); ByteSwapping::swap(header.qoffset_y); ByteSwapping::swap(header.qoffset_z); ByteSwapping::swapArray(header.srow_x, 4); ByteSwapping::swapArray(header.srow_y, 4); ByteSwapping::swapArray(header.srow_z, 4); } void NiftiHeader::swapHeaderBytes(nifti_2_header& header) { ByteSwapping::swap(header.sizeof_hdr);//by order of fields in nifti-2 header ByteSwapping::swap(header.datatype); ByteSwapping::swap(header.bitpix); ByteSwapping::swapArray(header.dim, 8); ByteSwapping::swap(header.intent_p1); ByteSwapping::swap(header.intent_p2); ByteSwapping::swap(header.intent_p3); ByteSwapping::swapArray(header.pixdim, 8); ByteSwapping::swap(header.vox_offset); ByteSwapping::swap(header.scl_slope); ByteSwapping::swap(header.scl_inter); ByteSwapping::swap(header.cal_max); ByteSwapping::swap(header.cal_min); ByteSwapping::swap(header.slice_duration); ByteSwapping::swap(header.toffset); ByteSwapping::swap(header.slice_start); ByteSwapping::swap(header.slice_end); ByteSwapping::swap(header.qform_code); ByteSwapping::swap(header.sform_code); ByteSwapping::swap(header.quatern_b); ByteSwapping::swap(header.quatern_c); ByteSwapping::swap(header.quatern_d); ByteSwapping::swap(header.qoffset_x); ByteSwapping::swap(header.qoffset_y); ByteSwapping::swap(header.qoffset_z); ByteSwapping::swapArray(header.srow_x, 4); ByteSwapping::swapArray(header.srow_y, 4); ByteSwapping::swapArray(header.srow_z, 4); ByteSwapping::swap(header.slice_code); ByteSwapping::swap(header.xyzt_units); ByteSwapping::swap(header.intent_code); } void NiftiHeader::write(BinaryFile& outFile, const int& version, const bool& swapEndian) { if (!canWriteVersion(version)) throw CiftiException("unable to write NIfTI version " + AString_number(version) + " for file " + outFile.getFilename()); double junk1, junk2; int16_t datatype = getDataType(); if (getDataScaling(junk1, junk2) && ((datatype & 0x70) > 0 || datatype >= 1536)) {//that hacky expression is to detect 16, 32, 64, 1536, 1792, and 2048 cerr << "warning: writing nifti file with scaling factor and floating point datatype" << endl; } const char padding[16] = { 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 }; int64_t voxOffset; if (version == 2) { nifti_2_header outHeader; prepareHeader(outHeader); voxOffset = outHeader.vox_offset; if (swapEndian) swapHeaderBytes(outHeader); outFile.write(&outHeader, sizeof(nifti_2_header)); } else if (version == 1) { nifti_1_header outHeader; prepareHeader(outHeader); voxOffset = outHeader.vox_offset; if (swapEndian) swapHeaderBytes(outHeader); outFile.write(&outHeader, sizeof(nifti_1_header)); } else { CiftiAssert(0);//canWriteVersion should have said no throw CiftiException("internal error: NiftiHeader::canWriteVersion() returned true for unimplemented writing version"); } char extender[] = { 0, 0, 0, 0 };//at least until nifti-2 gets a new extension format, use the same code for both int numExtensions = (int)m_extensions.size(); if (numExtensions != 0) extender[0] = 1; outFile.write(extender, 4); for (int i = 0; i < numExtensions; ++i) { CiftiAssert(m_extensions[i] != NULL); int64_t thisSize = 8 + m_extensions[i]->m_bytes.size();//8 is for the int32_t size and ecode for nifti-1 style extensions int paddingBytes = 0; if (thisSize % 16 != 0)//round up to nearest multiple of 16 { paddingBytes = 16 - (thisSize % 16); thisSize += paddingBytes; } CiftiAssert(thisSize <= numeric_limits::max()); CiftiAssert(thisSize + outFile.pos() <= voxOffset); int32_t outSize = thisSize; int32_t outEcode = m_extensions[i]->m_ecode; if (swapEndian) { ByteSwapping::swap(outSize); ByteSwapping::swap(outEcode); } outFile.write(&outSize, sizeof(int32_t)); outFile.write(&outEcode, sizeof(int32_t)); outFile.write(m_extensions[i]->m_bytes.data(), m_extensions[i]->m_bytes.size()); if (paddingBytes != 0) outFile.write(padding, paddingBytes); } CiftiAssert(outFile.pos() == voxOffset); m_header.vox_offset = voxOffset;//update internal state to reflect the state that was written to the file m_version = version; m_isSwapped = swapEndian; } void NiftiHeader::prepareHeader(nifti_1_header& header) const { CiftiAssert(canWriteVersion(1));//programmer error to call this if it isn't possible header.sizeof_hdr = sizeof(nifti_1_header);//do static things first const char magic[] = "n+1\0";//only support single-file nifti for (int i = 0; i < 4; ++i) header.magic[i] = magic[i]; for (int i = 0; i < 10; ++i) header.data_type[i] = 0;//then zero unused things for (int i = 0; i < 18; ++i) header.db_name[i] = 0; header.extents = 0; header.session_error = 0; header.regular = 0; header.glmax = 0; header.glmin = 0; header.dim_info = m_header.dim_info;//by order of fields in nifti-1 header, skipping unused and static for (int i = 0; i < 8; ++i) header.dim[i] = m_header.dim[i];//canWriteVersion should have already checked that this is okay, first in write(), then asserted above header.intent_p1 = m_header.intent_p1;//theoretically, this could be a problem wih large exponents, or if extremely high precision is required header.intent_p2 = m_header.intent_p2;//but we don't use them at all currently, so we don't care header.intent_p3 = m_header.intent_p3; header.intent_code = m_header.intent_code; header.datatype = m_header.datatype; header.bitpix = typeToNumBits(m_header.datatype);//in case we ever accept wrong bitpix with a warning, NEVER write wrong bitpix header.slice_start = m_header.slice_start; for (int i = 0; i < 8; ++i) header.pixdim[i] = m_header.pixdim[i];//more double to float conversion header.vox_offset = computeVoxOffset(1);//again, canWriteVersion should have checked that this, and later conversions, are okay CiftiAssert(header.vox_offset >= 352); header.scl_slope = m_header.scl_slope; header.scl_inter = m_header.scl_inter; header.slice_end = m_header.slice_end; header.slice_code = m_header.slice_code; header.xyzt_units = m_header.xyzt_units; header.cal_min = m_header.cal_min; header.cal_max = m_header.cal_max; header.slice_duration = m_header.slice_duration; header.toffset = m_header.toffset; for (int i = 0; i < 80; ++i) header.descrip[i] = m_header.descrip[i]; for (int i = 0; i < 24; ++i) header.aux_file[i] = m_header.aux_file[i]; header.qform_code = m_header.qform_code; header.sform_code = m_header.sform_code; header.quatern_b = m_header.quatern_b; header.quatern_c = m_header.quatern_c; header.quatern_d = m_header.quatern_d; header.qoffset_x = m_header.qoffset_x; header.qoffset_y = m_header.qoffset_y; header.qoffset_z = m_header.qoffset_z; for (int i = 0; i < 4; ++i) { header.srow_x[i] = m_header.srow_x[i]; header.srow_y[i] = m_header.srow_y[i]; header.srow_z[i] = m_header.srow_z[i]; } for (int i = 0; i < 16; ++i) header.intent_name[i] = m_header.intent_name[i]; } void NiftiHeader::prepareHeader(nifti_2_header& header) const { CiftiAssert(canWriteVersion(2)); memcpy(&header, &m_header, sizeof(nifti_2_header));//first copy everything, then fix static and computed fields header.sizeof_hdr = sizeof(nifti_2_header); const char magic[] = "n+2\0\r\n\032\n"; for (int i = 0; i < 8; ++i) header.magic[i] = magic[i]; header.bitpix = typeToNumBits(header.datatype); header.vox_offset = computeVoxOffset(2); for (int i = 0; i < 15; ++i) header.unused_str[i] = 0;//in case we read in a header where these bytes weren't zero } CiftiLib-1.6.0/src/Nifti/NiftiHeader.h000066400000000000000000000112371373715117300174120ustar00rootroot00000000000000#ifndef __NIFTI_HEADER_H__ #define __NIFTI_HEADER_H__ /*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "Common/BinaryFile.h" #include "nifti1.h" #include "nifti2.h" #include "boost/shared_ptr.hpp" #include namespace cifti { struct NiftiExtension { int32_t m_ecode; std::vector m_bytes; }; struct NiftiHeader { std::vector > m_extensions;//allow direct access to the extensions NiftiHeader(); void read(BinaryFile& inFile); void write(BinaryFile& outFile, const int& version = 1, const bool& swapEndian = false); bool canWriteVersion(const int& version) const; bool isSwapped() const { return m_isSwapped; } int version() const { return m_version; } std::vector getDimensions() const; std::vector > getSForm() const; double getTimeStep() const;//seconds int64_t getDataOffset() const { return m_header.vox_offset; } int16_t getDataType() const { return m_header.datatype; } int32_t getIntentCode() const { return m_header.intent_code; } const char* getIntentName() const { return m_header.intent_name; }//NOTE: 16 BYTES, MAY NOT HAVE A NULL TERMINATOR const char* getDescription() const { return m_header.descrip; }//NOTE: 80 BYTES, MAY NOT HAVE A NULL TERMINATOR bool getDataScaling(double& mult, double& offset) const;//returns false if scaling not needed int getNumComponents() const; AString toString() const; void setDimensions(const std::vector& dimsIn); void setSForm(const std::vector > &sForm); void setTimeStep(const double& seconds); void setIntent(const int32_t& code, const char name[16]); void setDescription(const char descrip[80]); void setDataType(const int16_t& type); void clearDataScaling(); void setDataScaling(const double& mult, const double& offset); void setDataTypeAndScaleRange(const int16_t& type, const double& minval, const double& maxval); ///get the FSL "scale" space std::vector > getFSLSpace() const; bool operator==(const NiftiHeader& rhs) const;//for testing purposes bool operator!=(const NiftiHeader& rhs) const { return !((*this) == rhs); } private: struct Quirks { bool no_extender; Quirks() { no_extender = false; } }; nifti_2_header m_header;//storage for header values regardless of version int m_version; bool m_isSwapped; static void swapHeaderBytes(nifti_1_header &header); static void swapHeaderBytes(nifti_2_header &header); void prepareHeader(nifti_1_header& header) const;//transform internal state into ready to write header struct void prepareHeader(nifti_2_header& header) const; Quirks setupFrom(const nifti_1_header& header, const AString& filename);//error check provided header, and populate members from it Quirks setupFrom(const nifti_2_header& header, const AString& filename); static int typeToNumBits(const int64_t& type); int64_t computeVoxOffset(const int& version) const; }; } #endif //__NIFTI_HEADER_H__ CiftiLib-1.6.0/src/Nifti/nifti1.h000077500000000000000000002064761373715117300164400ustar00rootroot00000000000000#ifndef _NIFTI_HEADER_ #define _NIFTI_HEADER_ /*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ /* * NOTE: our version is somewhat modified, turning constant #defines into const int32_t, namespacing, removal of some other #defines, to try to coexist with the original header */ namespace cifti { /***************************************************************************** ** This file defines the "NIFTI-1" header format. ** ** It is derived from 2 meetings at the NIH (31 Mar 2003 and ** ** 02 Sep 2003) of the Data Format Working Group (DFWG), ** ** chartered by the NIfTI (Neuroimaging Informatics Technology ** ** Initiative) at the National Institutes of Health (NIH). ** **--------------------------------------------------------------** ** Neither the National Institutes of Health (NIH), the DFWG, ** ** nor any of the members or employees of these institutions ** ** imply any warranty of usefulness of this material for any ** ** purpose, and do not assume any liability for damages, ** ** incidental or otherwise, caused by any use of this document. ** ** If these conditions are not acceptable, do not use this! ** **--------------------------------------------------------------** ** Author: Robert W Cox (NIMH, Bethesda) ** ** Advisors: John Ashburner (FIL, London), ** ** Stephen Smith (FMRIB, Oxford), ** ** Mark Jenkinson (FMRIB, Oxford) ** ******************************************************************************/ /*---------------------------------------------------------------------------*/ /* Note that the ANALYZE 7.5 file header (dbh.h) is (c) Copyright 1986-1995 Biomedical Imaging Resource Mayo Foundation Incorporation of components of dbh.h are by permission of the Mayo Foundation. Changes from the ANALYZE 7.5 file header in this file are released to the public domain, including the functional comments and any amusing asides. -----------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/ /*! INTRODUCTION TO NIFTI-1: ------------------------ The twin (and somewhat conflicting) goals of this modified ANALYZE 7.5 format are: (a) To add information to the header that will be useful for functional neuroimaging data analysis and display. These additions include: - More basic data types. - Two affine transformations to specify voxel coordinates. - "Intent" codes and parameters to describe the meaning of the data. - Affine scaling of the stored data values to their "true" values. - Optional storage of the header and image data in one file (.nii). (b) To maintain compatibility with non-NIFTI-aware ANALYZE 7.5 compatible software (i.e., such a program should be able to do something useful with a NIFTI-1 dataset -- at least, with one stored in a traditional .img/.hdr file pair). Most of the unused fields in the ANALYZE 7.5 header have been taken, and some of the lesser-used fields have been co-opted for other purposes. Notably, most of the data_history substructure has been co-opted for other purposes, since the ANALYZE 7.5 format describes this substructure as "not required". NIFTI-1 FLAG (MAGIC STRINGS): ---------------------------- To flag such a struct as being conformant to the NIFTI-1 spec, the last 4 bytes of the header must be either the C String "ni1" or "n+1"; in hexadecimal, the 4 bytes 6E 69 31 00 or 6E 2B 31 00 (in any future version of this format, the '1' will be upgraded to '2', etc.). Normally, such a "magic number" or flag goes at the start of the file, but trying to avoid clobbering widely-used ANALYZE 7.5 fields led to putting this marker last. However, recall that "the last shall be first" (Matthew 20:16). If a NIFTI-aware program reads a header file that is NOT marked with a NIFTI magic string, then it should treat the header as an ANALYZE 7.5 structure. NIFTI-1 FILE STORAGE: -------------------- "ni1" means that the image data is stored in the ".img" file corresponding to the header file (starting at file offset 0). "n+1" means that the image data is stored in the same file as the header information. We recommend that the combined header+data filename suffix be ".nii". When the dataset is stored in one file, the first byte of image data is stored at byte location (int)vox_offset in this combined file. The minimum allowed value of vox_offset is 352; for compatibility with some software, vox_offset should be an integral multiple of 16. GRACE UNDER FIRE: ---------------- Most NIFTI-aware programs will only be able to handle a subset of the full range of datasets possible with this format. All NIFTI-aware programs should take care to check if an input dataset conforms to the program's needs and expectations (e.g., check datatype, intent_code, etc.). If the input dataset can't be handled by the program, the program should fail gracefully (e.g., print a useful warning; not crash). SAMPLE CODES: ------------ The associated files nifti1_io.h and nifti1_io.c provide a sample implementation in C of a set of functions to read, write, and manipulate NIFTI-1 files. The file nifti1_test.c is a sample program that uses the nifti1_io.c functions. -----------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/ /* HEADER STRUCT DECLARATION: ------------------------- In the comments below for each field, only NIFTI-1 specific requirements or changes from the ANALYZE 7.5 format are described. For convenience, the 348 byte header is described as a single struct, rather than as the ANALYZE 7.5 group of 3 substructs. Further comments about the interpretation of various elements of this header are after the data type definition itself. Fields that are marked as ++UNUSED++ have no particular interpretation in this standard. (Also see the UNUSED FIELDS comment section, far below.) The presumption below is that the various C types have particular sizes: sizeof(int) = sizeof(float) = 4 ; sizeof(short) = 2 -----------------------------------------------------------------------------*/ //hopefully cross-platform solution to byte padding added by some compilers #pragma pack(push) #pragma pack(1) /*! \struct nifti_1_header \brief Data structure defining the fields in the nifti1 header. This binary header should be found at the beginning of a valid NIFTI-1 header file. */ /*************************/ /************************/ struct nifti_1_header { /* NIFTI-1 usage */ /* ANALYZE 7.5 field(s) */ /*************************/ /************************/ /*--- was header_key substruct ---*/ int sizeof_hdr; /*!< MUST be 348 */ /* int sizeof_hdr; */ /* 0 */ char data_type[10]; /*!< ++UNUSED++ */ /* char data_type[10]; */ /* 4 */ char db_name[18]; /*!< ++UNUSED++ */ /* char db_name[18]; */ /* 14 */ int extents; /*!< ++UNUSED++ */ /* int extents; */ /* 32 */ short session_error; /*!< ++UNUSED++ */ /* short session_error; */ /* 36 */ char regular; /*!< ++UNUSED++ */ /* char regular; */ /* 38 */ char dim_info; /*!< MRI slice ordering. */ /* char hkey_un0; */ /* 39 */ /*--- was image_dimension substruct ---*/ short dim[8]; /*!< Data array dimensions.*/ /* short dim[8]; */ /* 40 */ float intent_p1 ; /*!< 1st intent parameter. */ /* short unused8; */ /* 56 */ /* short unused9; */ float intent_p2 ; /*!< 2nd intent parameter. */ /* short unused10; */ /* 60 */ /* short unused11; */ float intent_p3 ; /*!< 3rd intent parameter. */ /* short unused12; */ /* 64 */ /* short unused13; */ short intent_code ; /*!< NIFTI_INTENT_* code. */ /* short unused14; */ /* 68 */ short datatype; /*!< Defines data type! */ /* short datatype; */ /* 70 */ short bitpix; /*!< Number bits/voxel. */ /* short bitpix; */ /* 72 */ short slice_start; /*!< First slice index. */ /* short dim_un0; */ /* 74 */ float pixdim[8]; /*!< Grid spacings. */ /* float pixdim[8]; */ /* 76 */ float vox_offset; /*!< Offset into .nii file */ /* float vox_offset; */ /* 108 */ float scl_slope ; /*!< Data scaling: slope. */ /* float funused1; */ /* 112 */ float scl_inter ; /*!< Data scaling: offset. */ /* float funused2; */ /* 116 */ short slice_end; /*!< Last slice index. */ /* float funused3; */ /* 120 */ char slice_code ; /*!< Slice timing order. */ /* 122 */ char xyzt_units ; /*!< Units of pixdim[1..4] */ /* 123 */ float cal_max; /*!< Max display intensity */ /* float cal_max; */ /* 124 */ float cal_min; /*!< Min display intensity */ /* float cal_min; */ /* 128 */ float slice_duration;/*!< Time for 1 slice. */ /* float compressed; */ /* 132 */ float toffset; /*!< Time axis shift. */ /* float verified; */ /* 136 */ int glmax; /*!< ++UNUSED++ */ /* int glmax; */ /* 140 */ int glmin; /*!< ++UNUSED++ */ /* int glmin; */ /* 144 */ /*--- was data_history substruct ---*/ char descrip[80]; /*!< any text you like. */ /* char descrip[80]; */ /* 148 */ char aux_file[24]; /*!< auxiliary filename. */ /* char aux_file[24]; */ /* 228 */ short qform_code ; /*!< NIFTI_XFORM_* code. */ /*-- all ANALYZE 7.5 ---*/ /* 252 */ short sform_code ; /*!< NIFTI_XFORM_* code. */ /* fields below here */ /* 254 */ /* are replaced */ float quatern_b ; /*!< Quaternion b param. */ /* 256 */ float quatern_c ; /*!< Quaternion c param. */ /* 260 */ float quatern_d ; /*!< Quaternion d param. */ /* 264 */ float qoffset_x ; /*!< Quaternion x shift. */ /* 268 */ float qoffset_y ; /*!< Quaternion y shift. */ /* 272 */ float qoffset_z ; /*!< Quaternion z shift. */ /* 276 */ float srow_x[4] ; /*!< 1st row affine transform. */ /* 280 */ float srow_y[4] ; /*!< 2nd row affine transform. */ /* 296 */ float srow_z[4] ; /*!< 3rd row affine transform. */ /* 312 */ char intent_name[16];/*!< 'name' or meaning of data. */ /* 328 */ char magic[4] ; /*!< MUST be "ni1\0" or "n+1\0". */ /* 344 */ } ; /**** 348 bytes total ****/ typedef struct nifti_1_header nifti_1_header ; /*---------------------------------------------------------------------------*/ /* HEADER EXTENSIONS: ----------------- After the end of the 348 byte header (e.g., after the magic field), the next 4 bytes are a char array field named "extension". By default, all 4 bytes of this array should be set to zero. In a .nii file, these 4 bytes will always be present, since the earliest start point for the image data is byte #352. In a separate .hdr file, these bytes may or may not be present. If not present (i.e., if the length of the .hdr file is 348 bytes), then a NIfTI-1 compliant program should use the default value of extension={0,0,0,0}. The first byte (extension[0]) is the only value of this array that is specified at present. The other 3 bytes are reserved for future use. If extension[0] is nonzero, it indicates that extended header information is present in the bytes following the extension array. In a .nii file, this extended header data is before the image data (and vox_offset must be set correctly to allow for this). In a .hdr file, this extended data follows extension and proceeds (potentially) to the end of the file. The format of extended header data is weakly specified. Each extension must be an integer multiple of 16 bytes long. The first 8 bytes of each extension comprise 2 integers: int esize , ecode ; These values may need to be byte-swapped, as indicated by dim[0] for the rest of the header. * esize is the number of bytes that form the extended header data + esize must be a positive integral multiple of 16 + this length includes the 8 bytes of esize and ecode themselves * ecode is a non-negative integer that indicates the format of the extended header data that follows + different ecode values are assigned to different developer groups + at present, the "registered" values for code are = 0 = unknown private format (not recommended!) = 2 = DICOM format (i.e., attribute tags and values) = 4 = AFNI group (i.e., ASCII XML-ish elements) In the interests of interoperability (a primary rationale for NIfTI), groups developing software that uses this extension mechanism are encouraged to document and publicize the format of their extensions. To this end, the NIfTI DFWG will assign even numbered codes upon request to groups submitting at least rudimentary documentation for the format of their extension; at present, the contact is mailto:rwcox@nih.gov. The assigned codes and documentation will be posted on the NIfTI website. All odd values of ecode (and 0) will remain unassigned; at least, until the even ones are used up, when we get to 2,147,483,646. Note that the other contents of the extended header data section are totally unspecified by the NIfTI-1 standard. In particular, if binary data is stored in such a section, its byte order is not necessarily the same as that given by examining dim[0]; it is incumbent on the programs dealing with such data to determine the byte order of binary extended header data. Multiple extended header sections are allowed, each starting with an esize,ecode value pair. The first esize value, as described above, is at bytes #352-355 in the .hdr or .nii file (files start at byte #0). If this value is positive, then the second (esize2) will be found starting at byte #352+esize1 , the third (esize3) at byte #352+esize1+esize2, et cetera. Of course, in a .nii file, the value of vox_offset must be compatible with these extensions. If a malformed file indicates that an extended header data section would run past vox_offset, then the entire extended header section should be ignored. In a .hdr file, if an extended header data section would run past the end-of-file, that extended header data should also be ignored. With the above scheme, a program can successively examine the esize and ecode values, and skip over each extended header section if the program doesn't know how to interpret the data within. Of course, any program can simply ignore all extended header sections simply by jumping straight to the image data using vox_offset. -----------------------------------------------------------------------------*/ /*! \struct nifti1_extender \brief This structure represents a 4-byte string that should follow the binary nifti_1_header data in a NIFTI-1 header file. If the char values are {1,0,0,0}, the file is expected to contain extensions, values of {0,0,0,0} imply the file does not contain extensions. Other sequences of values are not currently defined. */ struct nifti1_extender { char extension[4] ; } ; typedef struct nifti1_extender nifti1_extender ; /*! \struct nifti1_extension \brief Data structure defining the fields of a header extension. */ struct nifti1_extension { int esize ; /*!< size of extension, in bytes (must be multiple of 16) */ int ecode ; /*!< extension code, one of the NIFTI_ECODE_ values */ char * edata ; /*!< raw data, with no byte swapping */ } ; typedef struct nifti1_extension nifti1_extension ; //and restore packing behavior #pragma pack(pop) /*---------------------------------------------------------------------------*/ /* DATA DIMENSIONALITY (as in ANALYZE 7.5): --------------------------------------- dim[0] = number of dimensions; - if dim[0] is outside range 1..7, then the header information needs to be byte swapped appropriately - ANALYZE supports dim[0] up to 7, but NIFTI-1 reserves dimensions 1,2,3 for space (x,y,z), 4 for time (t), and 5,6,7 for anything else needed. dim[i] = length of dimension #i, for i=1..dim[0] (must be positive) - also see the discussion of intent_code, far below pixdim[i] = voxel width along dimension #i, i=1..dim[0] (positive) - cf. ORIENTATION section below for use of pixdim[0] - the units of pixdim can be specified with the xyzt_units field (also described far below). Number of bits per voxel value is in bitpix, which MUST correspond with the datatype field. The total number of bytes in the image data is dim[1] * ... * dim[dim[0]] * bitpix / 8 In NIFTI-1 files, dimensions 1,2,3 are for space, dimension 4 is for time, and dimension 5 is for storing multiple values at each spatiotemporal voxel. Some examples: - A typical whole-brain FMRI experiment's time series: - dim[0] = 4 - dim[1] = 64 pixdim[1] = 3.75 xyzt_units = NIFTI_UNITS_MM - dim[2] = 64 pixdim[2] = 3.75 | NIFTI_UNITS_SEC - dim[3] = 20 pixdim[3] = 5.0 - dim[4] = 120 pixdim[4] = 2.0 - A typical T1-weighted anatomical volume: - dim[0] = 3 - dim[1] = 256 pixdim[1] = 1.0 xyzt_units = NIFTI_UNITS_MM - dim[2] = 256 pixdim[2] = 1.0 - dim[3] = 128 pixdim[3] = 1.1 - A single slice EPI time series: - dim[0] = 4 - dim[1] = 64 pixdim[1] = 3.75 xyzt_units = NIFTI_UNITS_MM - dim[2] = 64 pixdim[2] = 3.75 | NIFTI_UNITS_SEC - dim[3] = 1 pixdim[3] = 5.0 - dim[4] = 1200 pixdim[4] = 0.2 - A 3-vector stored at each point in a 3D volume: - dim[0] = 5 - dim[1] = 256 pixdim[1] = 1.0 xyzt_units = NIFTI_UNITS_MM - dim[2] = 256 pixdim[2] = 1.0 - dim[3] = 128 pixdim[3] = 1.1 - dim[4] = 1 pixdim[4] = 0.0 - dim[5] = 3 intent_code = NIFTI_INTENT_VECTOR - A single time series with a 3x3 matrix at each point: - dim[0] = 5 - dim[1] = 1 xyzt_units = NIFTI_UNITS_SEC - dim[2] = 1 - dim[3] = 1 - dim[4] = 1200 pixdim[4] = 0.2 - dim[5] = 9 intent_code = NIFTI_INTENT_GENMATRIX - intent_p1 = intent_p2 = 3.0 (indicates matrix dimensions) -----------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/ /* DATA STORAGE: ------------ If the magic field is "n+1", then the voxel data is stored in the same file as the header. In this case, the voxel data starts at offset (int)vox_offset into the header file. Thus, vox_offset=352.0 means that the data starts immediately after the NIFTI-1 header. If vox_offset is greater than 352, the NIFTI-1 format does not say much about the contents of the dataset file between the end of the header and the start of the data. FILES: ----- If the magic field is "ni1", then the voxel data is stored in the associated ".img" file, starting at offset 0 (i.e., vox_offset is not used in this case, and should be set to 0.0). When storing NIFTI-1 datasets in pairs of files, it is customary to name the files in the pattern "name.hdr" and "name.img", as in ANALYZE 7.5. When storing in a single file ("n+1"), the file name should be in the form "name.nii" (the ".nft" and ".nif" suffixes are already taken; cf. http://www.icdatamaster.com/n.html ). BYTE ORDERING: ------------- The byte order of the data arrays is presumed to be the same as the byte order of the header (which is determined by examining dim[0]). Floating point types are presumed to be stored in IEEE-754 format. -----------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/ /* DETAILS ABOUT vox_offset: ------------------------ In a .nii file, the vox_offset field value is interpreted as the start location of the image data bytes in that file. In a .hdr/.img file pair, the vox_offset field value is the start location of the image data bytes in the .img file. * If vox_offset is less than 352 in a .nii file, it is equivalent to 352 (i.e., image data never starts before byte #352 in a .nii file). * The default value for vox_offset in a .nii file is 352. * In a .hdr file, the default value for vox_offset is 0. * vox_offset should be an integer multiple of 16; otherwise, some programs may not work properly (e.g., SPM). This is to allow memory-mapped input to be properly byte-aligned. Note that since vox_offset is an IEEE-754 32 bit float (for compatibility with the ANALYZE-7.5 format), it effectively has a 24 bit mantissa. All integers from 0 to 2^24 can be represented exactly in this format, but not all larger integers are exactly storable as IEEE-754 32 bit floats. However, unless you plan to have vox_offset be potentially larger than 16 MB, this should not be an issue. (Actually, any integral multiple of 16 up to 2^27 can be represented exactly in this format, which allows for up to 128 MB of random information before the image data. If that isn't enough, then perhaps this format isn't right for you.) In a .img file (i.e., image data stored separately from the NIfTI-1 header), data bytes between #0 and #vox_offset-1 (inclusive) are completely undefined and unregulated by the NIfTI-1 standard. One potential use of having vox_offset > 0 in the .hdr/.img file pair storage method is to make the .img file be a copy of (or link to) a pre-existing image file in some other format, such as DICOM; then vox_offset would be set to the offset of the image data in this file. (It may not be possible to follow the "multiple-of-16 rule" with an arbitrary external file; using the NIfTI-1 format in such a case may lead to a file that is incompatible with software that relies on vox_offset being a multiple of 16.) In a .nii file, data bytes between #348 and #vox_offset-1 (inclusive) may be used to store user-defined extra information; similarly, in a .hdr file, any data bytes after byte #347 are available for user-defined extra information. The (very weak) regulation of this extra header data is described elsewhere. -----------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/ /* DATA SCALING: ------------ If the scl_slope field is nonzero, then each voxel value in the dataset should be scaled as y = scl_slope * x + scl_inter where x = voxel value stored y = "true" voxel value Normally, we would expect this scaling to be used to store "true" floating values in a smaller integer datatype, but that is not required. That is, it is legal to use scaling even if the datatype is a float type (crazy, perhaps, but legal). - However, the scaling is to be ignored if datatype is DT_RGB24. - If datatype is a complex type, then the scaling is to be applied to both the real and imaginary parts. The cal_min and cal_max fields (if nonzero) are used for mapping (possibly scaled) dataset values to display colors: - Minimum display intensity (black) corresponds to dataset value cal_min. - Maximum display intensity (white) corresponds to dataset value cal_max. - Dataset values below cal_min should display as black also, and values above cal_max as white. - Colors "black" and "white", of course, may refer to any scalar display scheme (e.g., a color lookup table specified via aux_file). - cal_min and cal_max only make sense when applied to scalar-valued datasets (i.e., dim[0] < 5 or dim[5] = 1). -----------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/ /* TYPE OF DATA (acceptable values for datatype field): --------------------------------------------------- Values of datatype smaller than 256 are ANALYZE 7.5 compatible. Larger values are NIFTI-1 additions. These are all multiples of 256, so that no bits below position 8 are set in datatype. But there is no need to use only powers-of-2, as the original ANALYZE 7.5 datatype codes do. The additional codes are intended to include a complete list of basic scalar types, including signed and unsigned integers from 8 to 64 bits, floats from 32 to 128 bits, and complex (float pairs) from 64 to 256 bits. Note that most programs will support only a few of these datatypes! A NIFTI-1 program should fail gracefully (e.g., print a warning message) when it encounters a dataset with a type it doesn't like. -----------------------------------------------------------------------------*/ #undef DT_UNKNOWN /* defined in dirent.h on some Unix systems */ #include /*! \defgroup NIFTI1_DATATYPES \brief nifti1 datatype codes @{ */ /*--- the original ANALYZE 7.5 type codes ---*/ const int32_t DT_NONE =0; const int32_t DT_UNKNOWN =0; /* what it says, dude */ const int32_t DT_BINARY =1; /* binary (1 bit/voxel) */ const int32_t DT_UNSIGNED_CHAR =2; /* unsigned char (8 bits/voxel) */ const int32_t DT_SIGNED_SHORT =4; /* signed short (16 bits/voxel) */ const int32_t DT_SIGNED_INT =8; /* signed int (32 bits/voxel) */ const int32_t DT_FLOAT =16; /* float (32 bits/voxel) */ const int32_t DT_COMPLEX =32; /* complex (64 bits/voxel) */ const int32_t DT_DOUBLE =64; /* double (64 bits/voxel) */ const int32_t DT_RGB =128; /* RGB triple (24 bits/voxel) */ const int32_t DT_ALL =255; /* not very useful (?) */ /*----- another set of names for the same ---*/ const int32_t DT_UINT8 =2; const int32_t DT_INT16 =4; const int32_t DT_INT32 =8; const int32_t DT_FLOAT32 =16; const int32_t DT_COMPLEX64 =32; const int32_t DT_FLOAT64 =64; const int32_t DT_RGB24 =128; /*------------------- new codes for NIFTI ---*/ const int32_t DT_INT8 =256; /* signed char (8 bits) */ const int32_t DT_UINT16 =512; /* unsigned short (16 bits) */ const int32_t DT_UINT32 =768; /* unsigned int (32 bits) */ const int32_t DT_INT64 =1024; /* long long (64 bits) */ const int32_t DT_UINT64 =1280; /* unsigned long long (64 bits) */ const int32_t DT_FLOAT128 =1536; /* long double (128 bits) */ const int32_t DT_COMPLEX128 =1792; /* double pair (128 bits) */ const int32_t DT_COMPLEX256 =2048; /* long double pair (256 bits) */ /* @} */ /*------- aliases for all the above codes ---*/ /*! \defgroup NIFTI1_DATATYPE_ALIASES \brief aliases for the nifti1 datatype codes @{ */ /*! unsigned char. */ const int32_t NIFTI_TYPE_UINT8 =2; /*! signed short. */ const int32_t NIFTI_TYPE_INT16 =4; /*! signed int. */ const int32_t NIFTI_TYPE_INT32 =8; /*! 32 bit float. */ const int32_t NIFTI_TYPE_FLOAT32 =16; /*! 64 bit complex = 2 32 bit floats. */ const int32_t NIFTI_TYPE_COMPLEX64 =32; /*! 64 bit float = double. */ const int32_t NIFTI_TYPE_FLOAT64 =64; /*! 3 8 bit bytes. */ const int32_t NIFTI_TYPE_RGB24 =128; /*! signed char. */ const int32_t NIFTI_TYPE_INT8 =256; /*! unsigned short. */ const int32_t NIFTI_TYPE_UINT16 =512; /*! unsigned int. */ const int32_t NIFTI_TYPE_UINT32 =768; /*! signed long long. */ const int32_t NIFTI_TYPE_INT64 =1024; /*! unsigned long long. */ const int32_t NIFTI_TYPE_UINT64 =1280; /*! 128 bit float = long double. */ const int32_t NIFTI_TYPE_FLOAT128 =1536; /*! 128 bit complex = 2 64 bit floats. */ const int32_t NIFTI_TYPE_COMPLEX128 =1792; /*! 256 bit complex = 2 128 bit floats */ const int32_t NIFTI_TYPE_COMPLEX256 =2048; /* @} */ /*-------- sample typedefs for complicated types ---*/ #if 0 typedef struct { float r,i; } complex_float ; typedef struct { double r,i; } complex_double ; typedef struct { long double r,i; } complex_longdouble ; typedef struct { unsigned char r,g,b; } rgb_byte ; #endif /*---------------------------------------------------------------------------*/ /* INTERPRETATION OF VOXEL DATA: ---------------------------- The intent_code field can be used to indicate that the voxel data has some particular meaning. In particular, a large number of codes is given to indicate that the the voxel data should be interpreted as being drawn from a given probability distribution. VECTOR-VALUED DATASETS: ---------------------- The 5th dimension of the dataset, if present (i.e., dim[0]=5 and dim[5] > 1), contains multiple values (e.g., a vector) to be stored at each spatiotemporal location. For example, the header values - dim[0] = 5 - dim[1] = 64 - dim[2] = 64 - dim[3] = 20 - dim[4] = 1 (indicates no time axis) - dim[5] = 3 - datatype = DT_FLOAT - intent_code = NIFTI_INTENT_VECTOR mean that this dataset should be interpreted as a 3D volume (64x64x20), with a 3-vector of floats defined at each point in the 3D grid. A program reading a dataset with a 5th dimension may want to reformat the image data to store each voxels' set of values together in a struct or array. This programming detail, however, is beyond the scope of the NIFTI-1 file specification! Uses of dimensions 6 and 7 are also not specified here. STATISTICAL PARAMETRIC DATASETS (i.e., SPMs): -------------------------------------------- Values of intent_code from NIFTI_FIRST_STATCODE to NIFTI_LAST_STATCODE (inclusive) indicate that the numbers in the dataset should be interpreted as being drawn from a given distribution. Most such distributions have auxiliary parameters (e.g., NIFTI_INTENT_TTEST has 1 DOF parameter). If the dataset DOES NOT have a 5th dimension, then the auxiliary parameters are the same for each voxel, and are given in header fields intent_p1, intent_p2, and intent_p3. If the dataset DOES have a 5th dimension, then the auxiliary parameters are different for each voxel. For example, the header values - dim[0] = 5 - dim[1] = 128 - dim[2] = 128 - dim[3] = 1 (indicates a single slice) - dim[4] = 1 (indicates no time axis) - dim[5] = 2 - datatype = DT_FLOAT - intent_code = NIFTI_INTENT_TTEST mean that this is a 2D dataset (128x128) of t-statistics, with the t-statistic being in the first "plane" of data and the degrees-of-freedom parameter being in the second "plane" of data. If the dataset 5th dimension is used to store the voxel-wise statistical parameters, then dim[5] must be 1 plus the number of parameters required by that distribution (e.g., intent_code=NIFTI_INTENT_TTEST implies dim[5] must be 2, as in the example just above). Note: intent_code values 2..10 are compatible with AFNI 1.5x (which is why there is no code with value=1, which is obsolescent in AFNI). OTHER INTENTIONS: ---------------- The purpose of the intent_* fields is to help interpret the values stored in the dataset. Some non-statistical values for intent_code and conventions are provided for storing other complex data types. The intent_name field provides space for a 15 character (plus 0 byte) 'name' string for the type of data stored. Examples: - intent_code = NIFTI_INTENT_ESTIMATE; intent_name = "T1"; could be used to signify that the voxel values are estimates of the NMR parameter T1. - intent_code = NIFTI_INTENT_TTEST; intent_name = "House"; could be used to signify that the voxel values are t-statistics for the significance of 'activation' response to a House stimulus. - intent_code = NIFTI_INTENT_DISPVECT; intent_name = "ToMNI152"; could be used to signify that the voxel values are a displacement vector that transforms each voxel (x,y,z) location to the corresponding location in the MNI152 standard brain. - intent_code = NIFTI_INTENT_SYMMATRIX; intent_name = "DTI"; could be used to signify that the voxel values comprise a diffusion tensor image. If no data name is implied or needed, intent_name[0] should be set to 0. -----------------------------------------------------------------------------*/ /*! default: no intention is indicated in the header. */ const int32_t NIFTI_INTENT_NONE =0; /*-------- These codes are for probability distributions ---------------*/ /* Most distributions have a number of parameters, below denoted by p1, p2, and p3, and stored in - intent_p1, intent_p2, intent_p3 if dataset doesn't have 5th dimension - image data array if dataset does have 5th dimension Functions to compute with many of the distributions below can be found in the CDF library from U Texas. Formulas for and discussions of these distributions can be found in the following books: [U] Univariate Discrete Distributions, NL Johnson, S Kotz, AW Kemp. [C1] Continuous Univariate Distributions, vol. 1, NL Johnson, S Kotz, N Balakrishnan. [C2] Continuous Univariate Distributions, vol. 2, NL Johnson, S Kotz, N Balakrishnan. */ /*----------------------------------------------------------------------*/ /*! [C2, chap 32] Correlation coefficient R (1 param): p1 = degrees of freedom R/sqrt(1-R*R) is t-distributed with p1 DOF. */ /*! \defgroup NIFTI1_INTENT_CODES \brief nifti1 intent codes, to describe intended meaning of dataset contents @{ */ const int32_t NIFTI_INTENT_CORREL =2; /*! [C2, chap 28] Student t statistic (1 param): p1 = DOF. */ const int32_t NIFTI_INTENT_TTEST =3; /*! [C2, chap 27] Fisher F statistic (2 params): p1 = numerator DOF, p2 = denominator DOF. */ const int32_t NIFTI_INTENT_FTEST =4; /*! [C1, chap 13] Standard normal (0 params): Density = N(0,1). */ const int32_t NIFTI_INTENT_ZSCORE =5; /*! [C1, chap 18] Chi-squared (1 param): p1 = DOF. Density(x) proportional to exp(-x/2) * x^(p1/2-1). */ const int32_t NIFTI_INTENT_CHISQ =6; /*! [C2, chap 25] Beta distribution (2 params): p1=a, p2=b. Density(x) proportional to x^(a-1) * (1-x)^(b-1). */ const int32_t NIFTI_INTENT_BETA =7; /*! [U, chap 3] Binomial distribution (2 params): p1 = number of trials, p2 = probability per trial. Prob(x) = (p1 choose x) * p2^x * (1-p2)^(p1-x), for x=0,1,...,p1. */ const int32_t NIFTI_INTENT_BINOM =8; /*! [C1, chap 17] Gamma distribution (2 params): p1 = shape, p2 = scale. Density(x) proportional to x^(p1-1) * exp(-p2*x). */ const int32_t NIFTI_INTENT_GAMMA =9; /*! [U, chap 4] Poisson distribution (1 param): p1 = mean. Prob(x) = exp(-p1) * p1^x / x! , for x=0,1,2,.... */ const int32_t NIFTI_INTENT_POISSON =10; /*! [C1, chap 13] Normal distribution (2 params): p1 = mean, p2 = standard deviation. */ const int32_t NIFTI_INTENT_NORMAL =11; /*! [C2, chap 30] Noncentral F statistic (3 params): p1 = numerator DOF, p2 = denominator DOF, p3 = numerator noncentrality parameter. */ const int32_t NIFTI_INTENT_FTEST_NONC=12; /*! [C2, chap 29] Noncentral chi-squared statistic (2 params): p1 = DOF, p2 = noncentrality parameter. */ const int32_t NIFTI_INTENT_CHISQ_NONC=13; /*! [C2, chap 23] Logistic distribution (2 params): p1 = location, p2 = scale. Density(x) proportional to sech^2((x-p1)/(2*p2)). */ const int32_t NIFTI_INTENT_LOGISTIC =14; /*! [C2, chap 24] Laplace distribution (2 params): p1 = location, p2 = scale. Density(x) proportional to exp(-abs(x-p1)/p2). */ const int32_t NIFTI_INTENT_LAPLACE =15; /*! [C2, chap 26] Uniform distribution: p1 = lower end, p2 = upper end. */ const int32_t NIFTI_INTENT_UNIFORM =16; /*! [C2, chap 31] Noncentral t statistic (2 params): p1 = DOF, p2 = noncentrality parameter. */ const int32_t NIFTI_INTENT_TTEST_NONC=17; /*! [C1, chap 21] Weibull distribution (3 params): p1 = location, p2 = scale, p3 = power. Density(x) proportional to ((x-p1)/p2)^(p3-1) * exp(-((x-p1)/p2)^p3) for x > p1. */ const int32_t NIFTI_INTENT_WEIBULL =18; /*! [C1, chap 18] Chi distribution (1 param): p1 = DOF. Density(x) proportional to x^(p1-1) * exp(-x^2/2) for x > 0. p1 = 1 = 'half normal' distribution p1 = 2 = Rayleigh distribution p1 = 3 = Maxwell-Boltzmann distribution. */ const int32_t NIFTI_INTENT_CHI =19; /*! [C1, chap 15] Inverse Gaussian (2 params): p1 = mu, p2 = lambda Density(x) proportional to exp(-p2*(x-p1)^2/(2*p1^2*x)) / x^3 for x > 0. */ const int32_t NIFTI_INTENT_INVGAUSS =20; /*! [C2, chap 22] Extreme value type I (2 params): p1 = location, p2 = scale cdf(x) = exp(-exp(-(x-p1)/p2)). */ const int32_t NIFTI_INTENT_EXTVAL =21; /*! Data is a 'p-value' (no params). */ const int32_t NIFTI_INTENT_PVAL =22; /*! Data is ln(p-value) (no params). To be safe, a program should compute p = exp(-abs(this_value)). The nifti_stats.c library returns this_value as positive, so that this_value = -log(p). */ const int32_t NIFTI_INTENT_LOGPVAL =23; /*! Data is log10(p-value) (no params). To be safe, a program should compute p = pow(10.,-abs(this_value)). The nifti_stats.c library returns this_value as positive, so that this_value = -log10(p). */ const int32_t NIFTI_INTENT_LOG10PVAL =24; /*! Smallest intent_code that indicates a statistic. */ const int32_t NIFTI_FIRST_STATCODE =2; /*! Largest intent_code that indicates a statistic. */ const int32_t NIFTI_LAST_STATCODE =24; /*---------- these values for intent_code aren't for statistics ----------*/ /*! To signify that the value at each voxel is an estimate of some parameter, set intent_code = NIFTI_INTENT_ESTIMATE. The name of the parameter may be stored in intent_name. */ const int32_t NIFTI_INTENT_ESTIMATE =1001; /*! To signify that the value at each voxel is an index into some set of labels, set intent_code = NIFTI_INTENT_LABEL. The filename with the labels may stored in aux_file. */ const int32_t NIFTI_INTENT_LABEL =1002; /*! To signify that the value at each voxel is an index into the NeuroNames labels set, set intent_code = NIFTI_INTENT_NEURONAME. */ const int32_t NIFTI_INTENT_NEURONAME=1003; /*! To store an M x N matrix at each voxel: - dataset must have a 5th dimension (dim[0]=5 and dim[5]>1) - intent_code must be NIFTI_INTENT_GENMATRIX - dim[5] must be M*N - intent_p1 must be M (in float format) - intent_p2 must be N (ditto) - the matrix values A[i][[j] are stored in row-order: - A[0][0] A[0][1] ... A[0][N-1] - A[1][0] A[1][1] ... A[1][N-1] - etc., until - A[M-1][0] A[M-1][1] ... A[M-1][N-1] */ const int32_t NIFTI_INTENT_GENMATRIX=1004; /*! To store an NxN symmetric matrix at each voxel: - dataset must have a 5th dimension - intent_code must be NIFTI_INTENT_SYMMATRIX - dim[5] must be N*(N+1)/2 - intent_p1 must be N (in float format) - the matrix values A[i][[j] are stored in row-order: - A[0][0] - A[1][0] A[1][1] - A[2][0] A[2][1] A[2][2] - etc.: row-by-row */ const int32_t NIFTI_INTENT_SYMMATRIX=1005; /*! To signify that the vector value at each voxel is to be taken as a displacement field or vector: - dataset must have a 5th dimension - intent_code must be NIFTI_INTENT_DISPVECT - dim[5] must be the dimensionality of the displacment vector (e.g., 3 for spatial displacement, 2 for in-plane) */ const int32_t NIFTI_INTENT_DISPVECT =1006; /* specifically for displacements */ const int32_t NIFTI_INTENT_VECTOR =1007; /* for any other type of vector */ /*! To signify that the vector value at each voxel is really a spatial coordinate (e.g., the vertices or nodes of a surface mesh): - dataset must have a 5th dimension - intent_code must be NIFTI_INTENT_POINTSET - dim[0] = 5 - dim[1] = number of points - dim[2] = dim[3] = dim[4] = 1 - dim[5] must be the dimensionality of space (e.g., 3 => 3D space). - intent_name may describe the object these points come from (e.g., "pial", "gray/white" , "EEG", "MEG"). */ const int32_t NIFTI_INTENT_POINTSET =1008; /*! To signify that the vector value at each voxel is really a triple of indexes (e.g., forming a triangle) from a pointset dataset: - dataset must have a 5th dimension - intent_code must be NIFTI_INTENT_TRIANGLE - dim[0] = 5 - dim[1] = number of triangles - dim[2] = dim[3] = dim[4] = 1 - dim[5] = 3 - datatype should be an integer type (preferably DT_INT32) - the data values are indexes (0,1,...) into a pointset dataset. */ const int32_t NIFTI_INTENT_TRIANGLE =1009; /*! To signify that the vector value at each voxel is a quaternion: - dataset must have a 5th dimension - intent_code must be NIFTI_INTENT_QUATERNION - dim[0] = 5 - dim[5] = 4 - datatype should be a floating point type */ const int32_t NIFTI_INTENT_QUATERNION=1010; /*! Dimensionless value - no params - although, as in _ESTIMATE the name of the parameter may be stored in intent_name. */ const int32_t NIFTI_INTENT_DIMLESS =1011; /* @} */ /*---------------------------------------------------------------------------*/ /* 3D IMAGE (VOLUME) ORIENTATION AND LOCATION IN SPACE: --------------------------------------------------- There are 3 different methods by which continuous coordinates can attached to voxels. The discussion below emphasizes 3D volumes, and the continuous coordinates are referred to as (x,y,z). The voxel index coordinates (i.e., the array indexes) are referred to as (i,j,k), with valid ranges: i = 0 .. dim[1]-1 j = 0 .. dim[2]-1 (if dim[0] >= 2) k = 0 .. dim[3]-1 (if dim[0] >= 3) The (x,y,z) coordinates refer to the CENTER of a voxel. In methods 2 and 3, the (x,y,z) axes refer to a subject-based coordinate system, with +x = Right +y = Anterior +z = Superior. This is a right-handed coordinate system. However, the exact direction these axes point with respect to the subject depends on qform_code (Method 2) and sform_code (Method 3). N.B.: The i index varies most rapidly, j index next, k index slowest. Thus, voxel (i,j,k) is stored starting at location (i + j*dim[1] + k*dim[1]*dim[2]) * (bitpix/8) into the dataset array. N.B.: The ANALYZE 7.5 coordinate system is +x = Left +y = Anterior +z = Superior which is a left-handed coordinate system. This backwardness is too difficult to tolerate, so this NIFTI-1 standard specifies the coordinate order which is most common in functional neuroimaging. N.B.: The 3 methods below all give the locations of the voxel centers in the (x,y,z) coordinate system. In many cases, programs will wish to display image data on some other grid. In such a case, the program will need to convert its desired (x,y,z) values into (i,j,k) values in order to extract (or interpolate) the image data. This operation would be done with the inverse transformation to those described below. N.B.: Method 2 uses a factor 'qfac' which is either -1 or 1; qfac is stored in the otherwise unused pixdim[0]. If pixdim[0]=0.0 (which should not occur), we take qfac=1. Of course, pixdim[0] is only used when reading a NIFTI-1 header, not when reading an ANALYZE 7.5 header. N.B.: The units of (x,y,z) can be specified using the xyzt_units field. METHOD 1 (the "old" way, used only when qform_code = 0): ------------------------------------------------------- The coordinate mapping from (i,j,k) to (x,y,z) is the ANALYZE 7.5 way. This is a simple scaling relationship: x = pixdim[1] * i y = pixdim[2] * j z = pixdim[3] * k No particular spatial orientation is attached to these (x,y,z) coordinates. (NIFTI-1 does not have the ANALYZE 7.5 orient field, which is not general and is often not set properly.) This method is not recommended, and is present mainly for compatibility with ANALYZE 7.5 files. METHOD 2 (used when qform_code > 0, which should be the "normal" case): --------------------------------------------------------------------- The (x,y,z) coordinates are given by the pixdim[] scales, a rotation matrix, and a shift. This method is intended to represent "scanner-anatomical" coordinates, which are often embedded in the image header (e.g., DICOM fields (0020,0032), (0020,0037), (0028,0030), and (0018,0050)), and represent the nominal orientation and location of the data. This method can also be used to represent "aligned" coordinates, which would typically result from some post-acquisition alignment of the volume to a standard orientation (e.g., the same subject on another day, or a rigid rotation to true anatomical orientation from the tilted position of the subject in the scanner). The formula for (x,y,z) in terms of header parameters and (i,j,k) is: [ x ] [ R11 R12 R13 ] [ pixdim[1] * i ] [ qoffset_x ] [ y ] = [ R21 R22 R23 ] [ pixdim[2] * j ] + [ qoffset_y ] [ z ] [ R31 R32 R33 ] [ qfac * pixdim[3] * k ] [ qoffset_z ] The qoffset_* shifts are in the NIFTI-1 header. Note that the center of the (i,j,k)=(0,0,0) voxel (first value in the dataset array) is just (x,y,z)=(qoffset_x,qoffset_y,qoffset_z). The rotation matrix R is calculated from the quatern_* parameters. This calculation is described below. The scaling factor qfac is either 1 or -1. The rotation matrix R defined by the quaternion parameters is "proper" (has determinant 1). This may not fit the needs of the data; for example, if the image grid is i increases from Left-to-Right j increases from Anterior-to-Posterior k increases from Inferior-to-Superior Then (i,j,k) is a left-handed triple. In this example, if qfac=1, the R matrix would have to be [ 1 0 0 ] [ 0 -1 0 ] which is "improper" (determinant = -1). [ 0 0 1 ] If we set qfac=-1, then the R matrix would be [ 1 0 0 ] [ 0 -1 0 ] which is proper. [ 0 0 -1 ] This R matrix is represented by quaternion [a,b,c,d] = [0,1,0,0] (which encodes a 180 degree rotation about the x-axis). METHOD 3 (used when sform_code > 0): ----------------------------------- The (x,y,z) coordinates are given by a general affine transformation of the (i,j,k) indexes: x = srow_x[0] * i + srow_x[1] * j + srow_x[2] * k + srow_x[3] y = srow_y[0] * i + srow_y[1] * j + srow_y[2] * k + srow_y[3] z = srow_z[0] * i + srow_z[1] * j + srow_z[2] * k + srow_z[3] The srow_* vectors are in the NIFTI_1 header. Note that no use is made of pixdim[] in this method. WHY 3 METHODS? -------------- Method 1 is provided only for backwards compatibility. The intention is that Method 2 (qform_code > 0) represents the nominal voxel locations as reported by the scanner, or as rotated to some fiducial orientation and location. Method 3, if present (sform_code > 0), is to be used to give the location of the voxels in some standard space. The sform_code indicates which standard space is present. Both methods 2 and 3 can be present, and be useful in different contexts (method 2 for displaying the data on its original grid; method 3 for displaying it on a standard grid). In this scheme, a dataset would originally be set up so that the Method 2 coordinates represent what the scanner reported. Later, a registration to some standard space can be computed and inserted in the header. Image display software can use either transform, depending on its purposes and needs. In Method 2, the origin of coordinates would generally be whatever the scanner origin is; for example, in MRI, (0,0,0) is the center of the gradient coil. In Method 3, the origin of coordinates would depend on the value of sform_code; for example, for the Talairach coordinate system, (0,0,0) corresponds to the Anterior Commissure. QUATERNION REPRESENTATION OF ROTATION MATRIX (METHOD 2) ------------------------------------------------------- The orientation of the (x,y,z) axes relative to the (i,j,k) axes in 3D space is specified using a unit quaternion [a,b,c,d], where a*a+b*b+c*c+d*d=1. The (b,c,d) values are all that is needed, since we require that a = sqrt(1.0-(b*b+c*c+d*d)) be nonnegative. The (b,c,d) values are stored in the (quatern_b,quatern_c,quatern_d) fields. The quaternion representation is chosen for its compactness in representing rotations. The (proper) 3x3 rotation matrix that corresponds to [a,b,c,d] is [ a*a+b*b-c*c-d*d 2*b*c-2*a*d 2*b*d+2*a*c ] R = [ 2*b*c+2*a*d a*a+c*c-b*b-d*d 2*c*d-2*a*b ] [ 2*b*d-2*a*c 2*c*d+2*a*b a*a+d*d-c*c-b*b ] [ R11 R12 R13 ] = [ R21 R22 R23 ] [ R31 R32 R33 ] If (p,q,r) is a unit 3-vector, then rotation of angle h about that direction is represented by the quaternion [a,b,c,d] = [cos(h/2), p*sin(h/2), q*sin(h/2), r*sin(h/2)]. Requiring a >= 0 is equivalent to requiring -Pi <= h <= Pi. (Note that [-a,-b,-c,-d] represents the same rotation as [a,b,c,d]; there are 2 quaternions that can be used to represent a given rotation matrix R.) To rotate a 3-vector (x,y,z) using quaternions, we compute the quaternion product [0,x',y',z'] = [a,b,c,d] * [0,x,y,z] * [a,-b,-c,-d] which is equivalent to the matrix-vector multiply [ x' ] [ x ] [ y' ] = R [ y ] (equivalence depends on a*a+b*b+c*c+d*d=1) [ z' ] [ z ] Multiplication of 2 quaternions is defined by the following: [a,b,c,d] = a*1 + b*I + c*J + d*K where I*I = J*J = K*K = -1 (I,J,K are square roots of -1) I*J = K J*K = I K*I = J J*I = -K K*J = -I I*K = -J (not commutative!) For example [a,b,0,0] * [0,0,0,1] = [0,0,-b,a] since this expands to (a+b*I)*(K) = (a*K+b*I*K) = (a*K-b*J). The above formula shows how to go from quaternion (b,c,d) to rotation matrix and direction cosines. Conversely, given R, we can compute the fields for the NIFTI-1 header by a = 0.5 * sqrt(1+R11+R22+R33) (not stored) b = 0.25 * (R32-R23) / a => quatern_b c = 0.25 * (R13-R31) / a => quatern_c d = 0.25 * (R21-R12) / a => quatern_d If a=0 (a 180 degree rotation), alternative formulas are needed. See the nifti1_io.c function mat44_to_quatern() for an implementation of the various cases in converting R to [a,b,c,d]. Note that R-transpose (= R-inverse) would lead to the quaternion [a,-b,-c,-d]. The choice to specify the qoffset_x (etc.) values in the final coordinate system is partly to make it easy to convert DICOM images to this format. The DICOM attribute "Image Position (Patient)" (0020,0032) stores the (Xd,Yd,Zd) coordinates of the center of the first voxel. Here, (Xd,Yd,Zd) refer to DICOM coordinates, and Xd=-x, Yd=-y, Zd=z, where (x,y,z) refers to the NIFTI coordinate system discussed above. (i.e., DICOM +Xd is Left, +Yd is Posterior, +Zd is Superior, whereas +x is Right, +y is Anterior , +z is Superior. ) Thus, if the (0020,0032) DICOM attribute is extracted into (px,py,pz), then qoffset_x = -px qoffset_y = -py qoffset_z = pz is a reasonable setting when qform_code=NIFTI_XFORM_SCANNER_ANAT. That is, DICOM's coordinate system is 180 degrees rotated about the z-axis from the neuroscience/NIFTI coordinate system. To transform between DICOM and NIFTI, you just have to negate the x- and y-coordinates. The DICOM attribute (0020,0037) "Image Orientation (Patient)" gives the orientation of the x- and y-axes of the image data in terms of 2 3-vectors. The first vector is a unit vector along the x-axis, and the second is along the y-axis. If the (0020,0037) attribute is extracted into the value (xa,xb,xc,ya,yb,yc), then the first two columns of the R matrix would be [ -xa -ya ] [ -xb -yb ] [ xc yc ] The negations are because DICOM's x- and y-axes are reversed relative to NIFTI's. The third column of the R matrix gives the direction of displacement (relative to the subject) along the slice-wise direction. This orientation is not encoded in the DICOM standard in a simple way; DICOM is mostly concerned with 2D images. The third column of R will be either the cross-product of the first 2 columns or its negative. It is possible to infer the sign of the 3rd column by examining the coordinates in DICOM attribute (0020,0032) "Image Position (Patient)" for successive slices. However, this method occasionally fails for reasons that I (RW Cox) do not understand. -----------------------------------------------------------------------------*/ /* [qs]form_code value: */ /* x,y,z coordinate system refers to: */ /*-----------------------*/ /*---------------------------------------*/ /*! \defgroup NIFTI1_XFORM_CODES \brief nifti1 xform codes to describe the "standard" coordinate system @{ */ /*! Arbitrary coordinates (Method 1). */ const int32_t NIFTI_XFORM_UNKNOWN =0; /*! Scanner-based anatomical coordinates */ const int32_t NIFTI_XFORM_SCANNER_ANAT=1; /*! Coordinates aligned to another file's, or to anatomical "truth". */ const int32_t NIFTI_XFORM_ALIGNED_ANAT=2; /*! Coordinates aligned to Talairach- Tournoux Atlas; (0,0,0)=AC, etc. */ const int32_t NIFTI_XFORM_TALAIRACH =3; /*! MNI 152 normalized coordinates. */ const int32_t NIFTI_XFORM_MNI_152 =4; /* @} */ /*---------------------------------------------------------------------------*/ /* UNITS OF SPATIAL AND TEMPORAL DIMENSIONS: ---------------------------------------- The codes below can be used in xyzt_units to indicate the units of pixdim. As noted earlier, dimensions 1,2,3 are for x,y,z; dimension 4 is for time (t). - If dim[4]=1 or dim[0] < 4, there is no time axis. - A single time series (no space) would be specified with - dim[0] = 4 (for scalar data) or dim[0] = 5 (for vector data) - dim[1] = dim[2] = dim[3] = 1 - dim[4] = number of time points - pixdim[4] = time step - xyzt_units indicates units of pixdim[4] - dim[5] = number of values stored at each time point Bits 0..2 of xyzt_units specify the units of pixdim[1..3] (e.g., spatial units are values 1..7). Bits 3..5 of xyzt_units specify the units of pixdim[4] (e.g., temporal units are multiples of 8). This compression of 2 distinct concepts into 1 byte is due to the limited space available in the 348 byte ANALYZE 7.5 header. The macros XYZT_TO_SPACE and XYZT_TO_TIME can be used to mask off the undesired bits from the xyzt_units fields, leaving "pure" space and time codes. Inversely, the macro SPACE_TIME_TO_XYZT can be used to assemble a space code (0,1,2,...,7) with a time code (0,8,16,32,...,56) into the combined value for xyzt_units. Note that codes are provided to indicate the "time" axis units are actually frequency in Hertz (_HZ), in part-per-million (_PPM) or in radians-per-second (_RADS). The toffset field can be used to indicate a nonzero start point for the time axis. That is, time point #m is at t=toffset+m*pixdim[4] for m=0..dim[4]-1. -----------------------------------------------------------------------------*/ /*! \defgroup NIFTI1_UNITS \brief nifti1 units codes to describe the unit of measurement for each dimension of the dataset @{ */ /*! NIFTI code for unspecified units. */ const int32_t NIFTI_UNITS_UNKNOWN=0; /** Space codes are multiples of 1. **/ /*! NIFTI code for meters. */ const int32_t NIFTI_UNITS_METER =1; /*! NIFTI code for millimeters. */ const int32_t NIFTI_UNITS_MM =2; /*! NIFTI code for micrometers. */ const int32_t NIFTI_UNITS_MICRON =3; /** Time codes are multiples of 8. **/ /*! NIFTI code for seconds. */ const int32_t NIFTI_UNITS_SEC =8; /*! NIFTI code for milliseconds. */ const int32_t NIFTI_UNITS_MSEC =16; /*! NIFTI code for microseconds. */ const int32_t NIFTI_UNITS_USEC =24; /*** These units are for spectral data: ***/ /*! NIFTI code for Hertz. */ const int32_t NIFTI_UNITS_HZ =32; /*! NIFTI code for ppm. */ const int32_t NIFTI_UNITS_PPM =40; /*! NIFTI code for radians per second. */ const int32_t NIFTI_UNITS_RADS =48; /* @} */ #undef XYZT_TO_SPACE #undef XYZT_TO_TIME #define XYZT_TO_SPACE(xyzt) ( (xyzt) & 0x07 ) #define XYZT_TO_TIME(xyzt) ( (xyzt) & 0x38 ) #undef SPACE_TIME_TO_XYZT #define SPACE_TIME_TO_XYZT(ss,tt) ( (((char)(ss)) & 0x07) \ | (((char)(tt)) & 0x38) ) /*---------------------------------------------------------------------------*/ /* MRI-SPECIFIC SPATIAL AND TEMPORAL INFORMATION: --------------------------------------------- A few fields are provided to store some extra information that is sometimes important when storing the image data from an FMRI time series experiment. (After processing such data into statistical images, these fields are not likely to be useful.) { freq_dim } = These fields encode which spatial dimension (1,2, or 3) { phase_dim } = corresponds to which acquisition dimension for MRI data. { slice_dim } = Examples: Rectangular scan multi-slice EPI: freq_dim = 1 phase_dim = 2 slice_dim = 3 (or some permutation) Spiral scan multi-slice EPI: freq_dim = phase_dim = 0 slice_dim = 3 since the concepts of frequency- and phase-encoding directions don't apply to spiral scan slice_duration = If this is positive, AND if slice_dim is nonzero, indicates the amount of time used to acquire 1 slice. slice_duration*dim[slice_dim] can be less than pixdim[4] with a clustered acquisition method, for example. slice_code = If this is nonzero, AND if slice_dim is nonzero, AND if slice_duration is positive, indicates the timing pattern of the slice acquisition. The following codes are defined: NIFTI_SLICE_SEQ_INC == sequential increasing NIFTI_SLICE_SEQ_DEC == sequential decreasing NIFTI_SLICE_ALT_INC == alternating increasing NIFTI_SLICE_ALT_DEC == alternating decreasing NIFTI_SLICE_ALT_INC2 == alternating increasing #2 NIFTI_SLICE_ALT_DEC2 == alternating decreasing #2 { slice_start } = Indicates the start and end of the slice acquisition { slice_end } = pattern, when slice_code is nonzero. These values are present to allow for the possible addition of "padded" slices at either end of the volume, which don't fit into the slice timing pattern. If there are no padding slices, then slice_start=0 and slice_end=dim[slice_dim]-1 are the correct values. For these values to be meaningful, slice_start must be non-negative and slice_end must be greater than slice_start. Otherwise, they should be ignored. The following table indicates the slice timing pattern, relative to time=0 for the first slice acquired, for some sample cases. Here, dim[slice_dim]=7 (there are 7 slices, labeled 0..6), slice_duration=0.1, and slice_start=1, slice_end=5 (1 padded slice on each end). slice index SEQ_INC SEQ_DEC ALT_INC ALT_DEC ALT_INC2 ALT_DEC2 6 : n/a n/a n/a n/a n/a n/a n/a = not applicable 5 : 0.4 0.0 0.2 0.0 0.4 0.2 (slice time offset 4 : 0.3 0.1 0.4 0.3 0.1 0.0 doesn't apply to 3 : 0.2 0.2 0.1 0.1 0.3 0.3 slices outside 2 : 0.1 0.3 0.3 0.4 0.0 0.1 the range 1 : 0.0 0.4 0.0 0.2 0.2 0.4 slice_start .. 0 : n/a n/a n/a n/a n/a n/a slice_end) The SEQ slice_codes are sequential ordering (uncommon but not unknown), either increasing in slice number or decreasing (INC or DEC), as illustrated above. The ALT slice codes are alternating ordering. The 'standard' way for these to operate (without the '2' on the end) is for the slice timing to start at the edge of the slice_start .. slice_end group (at slice_start for INC and at slice_end for DEC). For the 'ALT_*2' slice_codes, the slice timing instead starts at the first slice in from the edge (at slice_start+1 for INC2 and at slice_end-1 for DEC2). This latter acquisition scheme is found on some Siemens scanners. The fields freq_dim, phase_dim, slice_dim are all squished into the single byte field dim_info (2 bits each, since the values for each field are limited to the range 0..3). This unpleasantness is due to lack of space in the 348 byte allowance. The macros DIM_INFO_TO_FREQ_DIM, DIM_INFO_TO_PHASE_DIM, and DIM_INFO_TO_SLICE_DIM can be used to extract these values from the dim_info byte. The macro FPS_INTO_DIM_INFO can be used to put these 3 values into the dim_info byte. -----------------------------------------------------------------------------*/ #undef DIM_INFO_TO_FREQ_DIM #undef DIM_INFO_TO_PHASE_DIM #undef DIM_INFO_TO_SLICE_DIM #define DIM_INFO_TO_FREQ_DIM(di) ( ((di) ) & 0x03 ) #define DIM_INFO_TO_PHASE_DIM(di) ( ((di) >> 2) & 0x03 ) #define DIM_INFO_TO_SLICE_DIM(di) ( ((di) >> 4) & 0x03 ) #undef FPS_INTO_DIM_INFO #define FPS_INTO_DIM_INFO(fd,pd,sd) ( ( ( ((char)(fd)) & 0x03) ) | \ ( ( ((char)(pd)) & 0x03) << 2 ) | \ ( ( ((char)(sd)) & 0x03) << 4 ) ) /*! \defgroup NIFTI1_SLICE_ORDER \brief nifti1 slice order codes, describing the acquisition order of the slices @{ */ const int32_t NIFTI_SLICE_UNKNOWN =0; const int32_t NIFTI_SLICE_SEQ_INC =1; const int32_t NIFTI_SLICE_SEQ_DEC =2; const int32_t NIFTI_SLICE_ALT_INC =3; const int32_t NIFTI_SLICE_ALT_DEC =4; const int32_t NIFTI_SLICE_ALT_INC2 =5; /* 05 May 2005: RWCox */ const int32_t NIFTI_SLICE_ALT_DEC2 =6; /* 05 May 2005: RWCox */ /* @} */ /*---------------------------------------------------------------------------*/ /* UNUSED FIELDS: ------------- Some of the ANALYZE 7.5 fields marked as ++UNUSED++ may need to be set to particular values for compatibility with other programs. The issue of interoperability of ANALYZE 7.5 files is a murky one -- not all programs require exactly the same set of fields. (Unobscuring this murkiness is a principal motivation behind NIFTI-1.) Some of the fields that may need to be set for other (non-NIFTI aware) software to be happy are: extents dbh.h says this should be 16384 regular dbh.h says this should be the character 'r' glmin, } dbh.h says these values should be the min and max voxel glmax } values for the entire dataset It is best to initialize ALL fields in the NIFTI-1 header to 0 (e.g., with calloc()), then fill in what is needed. -----------------------------------------------------------------------------*/ /*---------------------------------------------------------------------------*/ /* MISCELLANEOUS C MACROS -----------------------------------------------------------------------------*/ /*.................*/ /*! Given a nifti_1_header struct, check if it has a good magic number. Returns NIFTI version number (1..9) if magic is good, 0 if it is not. */ /*#define NIFTI_VERSION(h) \ ( ( (h).magic[0]=='n' && (h).magic[3]=='\0' && \ ( (h).magic[1]=='i' || (h).magic[1]=='+' ) && \ ( (h).magic[2]>='1' && (h).magic[2]<='9' ) ) \ ? (h).magic[2]-'0' : 0 ) //*/ /*.................*/ /*! Check if a nifti_1_header struct says if the data is stored in the same file or in a separate file. Returns 1 if the data is in the same file as the header, 0 if it is not. */ //#define NIFTI_ONEFILE(h) ( (h).magic[1] == '+' ) /*.................*/ /*! Check if a nifti_1_header struct needs to be byte swapped. Returns 1 if it needs to be swapped, 0 if it does not. */ //#define NIFTI_NEEDS_SWAP(h) ( (h).dim[0] < 0 || (h).dim[0] > 7 ) /*.................*/ /*! Check if a nifti_1_header struct contains a 5th (vector) dimension. Returns size of 5th dimension if > 1, returns 0 otherwise. */ //#define NIFTI_5TH_DIM(h) ( ((h).dim[0]>4 && (h).dim[5]>1) ? (h).dim[5] : 0 ) /*****************************************************************************/ }//namespace #endif /* _NIFTI_HEADER_ */ CiftiLib-1.6.0/src/Nifti/nifti2.h000066400000000000000000000162001373715117300164160ustar00rootroot00000000000000#ifndef __NIFTI2_HEADER #define __NIFTI2_HEADER /*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "nifti1.h" namespace cifti { #include /*extended nifti intent codes*/ const int32_t NIFTI_INTENT_CONNECTIVITY_UNKNOWN=3000; const int32_t NIFTI_INTENT_CONNECTIVITY_DENSE=3001; const int32_t NIFTI_INTENT_CONNECTIVITY_DENSE_TIME=3002;//CIFTI-1 name const int32_t NIFTI_INTENT_CONNECTIVITY_DENSE_SERIES=3002;//CIFTI-2 name const int32_t NIFTI_INTENT_CONNECTIVITY_PARCELLATED=3003; const int32_t NIFTI_INTENT_CONNECTIVITY_PARCELLATED_TIME=3004;//ditto const int32_t NIFTI_INTENT_CONNECTIVITY_PARCELLATED_SERIES=3004; const int32_t NIFTI_INTENT_CONNECTIVITY_CONNECTIVITY_TRAJECTORY=3005;//ditto const int32_t NIFTI_INTENT_CONNECTIVITY_DENSE_TRAJECTORY=3005; const int32_t NIFTI_INTENT_CONNECTIVITY_DENSE_SCALARS=3006; const int32_t NIFTI_INTENT_CONNECTIVITY_DENSE_LABELS=3007; const int32_t NIFTI_INTENT_CONNECTIVITY_PARCELLATED_SCALAR=3008; const int32_t NIFTI_INTENT_CONNECTIVITY_PARCELLATED_DENSE=3009; const int32_t NIFTI_INTENT_CONNECTIVITY_DENSE_PARCELLATED=3010; const int32_t NIFTI_INTENT_CONNECTIVITY_PARCELLATED_PARCELLATED_SERIES=3011; const int32_t NIFTI_INTENT_CONNECTIVITY_PARCELLATED_PARCELLATED_SCALAR=3012; const int32_t NIFTI_ECODE_CIFTI=32; #define NIFTI2_VERSION(h) \ (h).sizeof_hdr == 348 ? 1 : (\ (h).sizeof_hdr == 1543569408 ? 1 : (\ (h).sizeof_hdr == 540 ? 2 : (\ (h).sizeof_hdr == 469893120 ? 2 : 0))) #define NIFTI2_NEEDS_SWAP(h) \ (h).sizeof_hdr == 469893120 ? 1 : (\ (h).sizeof_hdr == 1543569408 ? 1 : 0) //hopefully cross-platform solution to byte padding added by some compilers #pragma pack(push) #pragma pack(1) /*! \struct nifti_2_header \brief Data structure defining the fields in the nifti2 header. This binary header should be found at the beginning of a valid NIFTI-2 header file. */ /*************************/ /************************/ /************/ struct nifti_2_header { /* NIFTI-2 usage */ /* NIFTI-1 usage */ /* offset */ /*************************/ /************************/ /************/ int32_t sizeof_hdr; /*!< MUST be 540 */ /* int32_t sizeof_hdr; (348) */ /* 0 */ char magic[8] ; /*!< MUST be valid signature. */ /* char magic[4]; */ /* 4 */ int16_t datatype; /*!< Defines data type! */ /* short datatype; */ /* 12 */ int16_t bitpix; /*!< Number bits/voxel. */ /* short bitpix; */ /* 14 */ int64_t dim[8]; /*!< Data array dimensions.*/ /* short dim[8]; */ /* 16 */ double intent_p1 ; /*!< 1st intent parameter. */ /* float intent_p1; */ /* 80 */ double intent_p2 ; /*!< 2nd intent parameter. */ /* float intent_p2; */ /* 88 */ double intent_p3 ; /*!< 3rd intent parameter. */ /* float intent_p3; */ /* 96 */ double pixdim[8]; /*!< Grid spacings. */ /* float pixdim[8]; */ /* 104 */ int64_t vox_offset; /*!< Offset into .nii file */ /* float vox_offset; */ /* 168 */ double scl_slope ; /*!< Data scaling: slope. */ /* float scl_slope; */ /* 176 */ double scl_inter ; /*!< Data scaling: offset. */ /* float scl_inter; */ /* 184 */ double cal_max; /*!< Max display intensity */ /* float cal_max; */ /* 192 */ double cal_min; /*!< Min display intensity */ /* float cal_min; */ /* 200 */ double slice_duration;/*!< Time for 1 slice. */ /* float slice_duration; */ /* 208 */ double toffset; /*!< Time axis shift. */ /* float toffset; */ /* 216 */ int64_t slice_start;/*!< First slice index. */ /* short slice_start; */ /* 224 */ int64_t slice_end; /*!< Last slice index. */ /* short slice_end; */ /* 232 */ char descrip[80]; /*!< any text you like. */ /* char descrip[80]; */ /* 240 */ char aux_file[24]; /*!< auxiliary filename. */ /* char aux_file[24]; */ /* 320 */ int32_t qform_code ; /*!< NIFTI_XFORM_* code. */ /* short qform_code; */ /* 344 */ int32_t sform_code ; /*!< NIFTI_XFORM_* code. */ /* short sform_code; */ /* 348 */ double quatern_b ; /*!< Quaternion b param. */ /* float quatern_b; */ /* 352 */ double quatern_c ; /*!< Quaternion c param. */ /* float quatern_c; */ /* 360 */ double quatern_d ; /*!< Quaternion d param. */ /* float quatern_d; */ /* 368 */ double qoffset_x ; /*!< Quaternion x shift. */ /* float qoffset_x; */ /* 376 */ double qoffset_y ; /*!< Quaternion y shift. */ /* float qoffset_y; */ /* 384 */ double qoffset_z ; /*!< Quaternion z shift. */ /* float qoffset_z; */ /* 392 */ double srow_x[4] ; /*!< 1st row affine transform. */ /* float srow_x[4]; */ /* 400 */ double srow_y[4] ; /*!< 2nd row affine transform. */ /* float srow_y[4]; */ /* 432 */ double srow_z[4] ; /*!< 3rd row affine transform. */ /* float srow_z[4]; */ /* 464 */ int32_t slice_code ; /*!< Slice timing order. */ /* char slice_code; */ /* 496 */ int32_t xyzt_units ; /*!< Units of pixdim[1..4] */ /* char xyzt_units; */ /* 500 */ int32_t intent_code ; /*!< NIFTI_INTENT_* code. */ /* short intent_code; */ /* 504 */ char intent_name[16]; /*!< 'name' or meaning of data. */ /* char intent_name[16]; */ /* 508 */ char dim_info; /*!< MRI slice ordering. */ /* char dim_info; */ /* 524 */ char unused_str[15]; /*!< unused, filled with \0 */ /* 525 */ } ; /**** 540 bytes total ****/ typedef struct nifti_2_header nifti_2_header ; //and restore packing behavior #pragma pack(pop) }//namespace #endif //__NIFTI2_HEADER CiftiLib-1.6.0/src/NiftiIO.cxx000066400000000000000000000077461373715117300160450ustar00rootroot00000000000000/*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "Common/CiftiAssert.h" #include "NiftiIO.h" #include "Common/CiftiException.h" using namespace std; using namespace cifti; void NiftiIO::openRead(const AString& filename) { m_file.open(filename); m_header.read(m_file); if (m_header.getDataType() == DT_BINARY) { throw CiftiException("file uses the binary datatype, which is unsupported: " + filename); } m_dims = m_header.getDimensions(); int64_t filesize = m_file.size();//returns -1 if it can't efficiently determine size int64_t elemCount = getNumComponents(); for (int i = 0; i < (int)m_dims.size(); ++i) { elemCount *= m_dims[i]; } if (filesize >= 0 && filesize < m_header.getDataOffset() + numBytesPerElem() * elemCount) { throw CiftiException("nifti file is truncated: " + filename); } } void NiftiIO::writeNew(const AString& filename, const NiftiHeader& header, const int& version, const bool& withRead, const bool& swapEndian) { if (header.getDataType() == DT_BINARY) { throw CiftiException("writing NIFTI with binary datatype is unsupported"); } if (withRead) { m_file.open(filename, BinaryFile::READ_WRITE_TRUNCATE);//for cifti on-disk writing, replace structure with along row needs to RMW } else { m_file.open(filename, BinaryFile::WRITE_TRUNCATE); } m_header = header; m_header.write(m_file, version, swapEndian);//the header's getDataOffset() is not what gets written, as it doesn't reflect changes in the extensions m_dims = m_header.getDimensions(); } void NiftiIO::close() { m_file.close(); m_dims.clear(); } int NiftiIO::getNumComponents() const { return m_header.getNumComponents(); } int NiftiIO::numBytesPerElem() { switch (m_header.getDataType()) { case NIFTI_TYPE_INT8: case NIFTI_TYPE_UINT8: case NIFTI_TYPE_RGB24: return 1; break; case NIFTI_TYPE_INT16: case NIFTI_TYPE_UINT16: return 2; break; case NIFTI_TYPE_INT32: case NIFTI_TYPE_UINT32: case NIFTI_TYPE_FLOAT32: case NIFTI_TYPE_COMPLEX64: return 4; break; case NIFTI_TYPE_INT64: case NIFTI_TYPE_UINT64: case NIFTI_TYPE_FLOAT64: case NIFTI_TYPE_COMPLEX128: return 8; break; case NIFTI_TYPE_FLOAT128: case NIFTI_TYPE_COMPLEX256: return 16; break; default: CiftiAssert(0); throw CiftiException("internal error, report what you did to the developers"); } } CiftiLib-1.6.0/src/NiftiIO.h000066400000000000000000000356061373715117300154660ustar00rootroot00000000000000#ifndef __NIFTI_IO_H__ #define __NIFTI_IO_H__ /*LICENSE_START*/ /* * Copyright (c) 2014, Washington University School of Medicine * All rights reserved. * * Redistribution and use in source and binary forms, with or without modification, * are permitted provided that the following conditions are met: * * 1. Redistributions of source code must retain the above copyright notice, * this list of conditions and the following disclaimer. * * 2. Redistributions in binary form must reproduce the above copyright notice, * this list of conditions and the following disclaimer in the documentation * and/or other materials provided with the distribution. * * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, * THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND * ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, * EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. */ #include "Common/AString.h" #include "Common/ByteSwapping.h" #include "Common/BinaryFile.h" #include "Common/CiftiException.h" #include "Common/CiftiMutex.h" #include "Nifti/NiftiHeader.h" //include MultiDimIterator from a private include directory, in case people want to use it with NiftiIO #include "Common/MultiDimIterator.h" #include #include #include namespace cifti { class NiftiIO { BinaryFile m_file; NiftiHeader m_header; std::vector m_dims; std::vector m_scratch;//scratch memory for byteswapping, type conversion, etc CiftiMutex m_mutex; int numBytesPerElem();//for resizing scratch template void convertRead(TO* out, FROM* in, const int64_t& count);//for reading from file template void convertWrite(TO* out, const FROM* in, const int64_t& count);//for writing to file template static TO clamp(const FROM& in);//deal with integer cast being undefined when converting from outside range public: void openRead(const AString& filename); void writeNew(const AString& filename, const NiftiHeader& header, const int& version = 1, const bool& withRead = false, const bool& swapEndian = false); AString getFilename() const { return m_file.getFilename(); } void overrideDimensions(const std::vector& newDims) { m_dims = newDims; }//HACK: deal with reading/writing CIFTI-1's broken headers void close(); const NiftiHeader& getHeader() const { return m_header; } const std::vector& getDimensions() const { return m_dims; } int getNumComponents() const; //to read/write 1 frame of a standard volume file, call with fullDims = 3, indexSelect containing indexes for any of dims 4-7 that exist //NOTE: you need to provide storage for all components within the range, if getNumComponents() == 3 and fullDims == 0, you need 3 elements allocated template void readData(T* dataOut, const int& fullDims, const std::vector& indexSelect, const bool& tolerateShortRead = false); template void writeData(const T* dataIn, const int& fullDims, const std::vector& indexSelect); }; template void NiftiIO::readData(T* dataOut, const int& fullDims, const std::vector& indexSelect, const bool& tolerateShortRead) { if (fullDims < 0) throw CiftiException("NiftiIO: fulldims must not be negative"); if (fullDims > (int)m_dims.size()) throw CiftiException("NiftiIO: fulldims must not be greater than number of dimensions"); if ((size_t)fullDims + indexSelect.size() != m_dims.size()) {//could be >=, but should catch more stupid mistakes as == throw CiftiException("NiftiIO: fulldims plus length of indexSelect must equal number of dimensions"); } int64_t numElems = getNumComponents();//for now, calculate read size on the fly, as the read call will be the slowest part int curDim; for (curDim = 0; curDim < fullDims; ++curDim) { numElems *= m_dims[curDim]; } int64_t numDimSkip = numElems, numSkip = 0; for (; curDim < (int)m_dims.size(); ++curDim) { if (indexSelect[curDim - fullDims] < 0) throw CiftiException("NiftiIO: indices must not be negative"); if (indexSelect[curDim - fullDims] >= m_dims[curDim]) throw CiftiException("NiftiIO: index exceeds nifti dimension length"); numSkip += indexSelect[curDim - fullDims] * numDimSkip; numDimSkip *= m_dims[curDim]; } CiftiMutexLocker locked(&m_mutex);//protect starting with resizing until we are done converting, because we use an internal variable for scratch space //we can't guarantee that the output memory is enough to use as scratch space, as we might be doing a narrowing conversion //we are doing FILE ACCESS, so cpu performance isn't really something to worry about m_scratch.resize(numElems * numBytesPerElem()); m_file.seek(numSkip * numBytesPerElem() + m_header.getDataOffset()); int64_t numRead = 0; m_file.read(m_scratch.data(), m_scratch.size(), &numRead); if ((numRead != (int64_t)m_scratch.size() && !tolerateShortRead) || numRead < 0)//for now, assume read giving -1 is always a problem { throw CiftiException("error while reading from file '" + m_file.getFilename() + "'"); } switch (m_header.getDataType()) { case NIFTI_TYPE_UINT8: case NIFTI_TYPE_RGB24://handled by components convertRead(dataOut, (uint8_t*)m_scratch.data(), numElems); break; case NIFTI_TYPE_INT8: convertRead(dataOut, (int8_t*)m_scratch.data(), numElems); break; case NIFTI_TYPE_UINT16: convertRead(dataOut, (uint16_t*)m_scratch.data(), numElems); break; case NIFTI_TYPE_INT16: convertRead(dataOut, (int16_t*)m_scratch.data(), numElems); break; case NIFTI_TYPE_UINT32: convertRead(dataOut, (uint32_t*)m_scratch.data(), numElems); break; case NIFTI_TYPE_INT32: convertRead(dataOut, (int32_t*)m_scratch.data(), numElems); break; case NIFTI_TYPE_UINT64: convertRead(dataOut, (uint64_t*)m_scratch.data(), numElems); break; case NIFTI_TYPE_INT64: convertRead(dataOut, (int64_t*)m_scratch.data(), numElems); break; case NIFTI_TYPE_FLOAT32: case NIFTI_TYPE_COMPLEX64://components convertRead(dataOut, (float*)m_scratch.data(), numElems); break; case NIFTI_TYPE_FLOAT64: case NIFTI_TYPE_COMPLEX128: convertRead(dataOut, (double*)m_scratch.data(), numElems); break; case NIFTI_TYPE_FLOAT128: case NIFTI_TYPE_COMPLEX256: convertRead(dataOut, (long double*)m_scratch.data(), numElems); break; default: throw CiftiException("internal error, tell the developers what you just tried to do"); } } template void NiftiIO::writeData(const T* dataIn, const int& fullDims, const std::vector& indexSelect) { if (fullDims < 0) throw CiftiException("NiftiIO: fulldims must not be negative"); if (fullDims > (int)m_dims.size()) throw CiftiException("NiftiIO: fulldims must not be greater than number of dimensions"); if ((size_t)fullDims + indexSelect.size() != m_dims.size()) {//could be >=, but should catch more stupid mistakes as == throw CiftiException("NiftiIO: fulldims plus length of indexSelect must equal number of dimensions"); } int64_t numElems = getNumComponents();//for now, calculate read size on the fly, as the read call will be the slowest part int curDim; for (curDim = 0; curDim < fullDims; ++curDim) { numElems *= m_dims[curDim]; } int64_t numDimSkip = numElems, numSkip = 0; for (; curDim < (int)m_dims.size(); ++curDim) { if (indexSelect[curDim - fullDims] < 0) throw CiftiException("NiftiIO: indices must not be negative"); if (indexSelect[curDim - fullDims] >= m_dims[curDim]) throw CiftiException("NiftiIO: index exceeds nifti dimension length"); numSkip += indexSelect[curDim - fullDims] * numDimSkip; numDimSkip *= m_dims[curDim]; } CiftiMutexLocker locked(&m_mutex);//protect starting with resizing until we are done writing, because we use an internal variable for scratch space //we are doing FILE ACCESS, so cpu performance isn't really something to worry about m_scratch.resize(numElems * numBytesPerElem()); m_file.seek(numSkip * numBytesPerElem() + m_header.getDataOffset()); switch (m_header.getDataType()) { case NIFTI_TYPE_UINT8: case NIFTI_TYPE_RGB24://handled by components convertWrite((uint8_t*)m_scratch.data(), dataIn, numElems); break; case NIFTI_TYPE_INT8: convertWrite((int8_t*)m_scratch.data(), dataIn, numElems); break; case NIFTI_TYPE_UINT16: convertWrite((uint16_t*)m_scratch.data(), dataIn, numElems); break; case NIFTI_TYPE_INT16: convertWrite((int16_t*)m_scratch.data(), dataIn, numElems); break; case NIFTI_TYPE_UINT32: convertWrite((uint32_t*)m_scratch.data(), dataIn, numElems); break; case NIFTI_TYPE_INT32: convertWrite((int32_t*)m_scratch.data(), dataIn, numElems); break; case NIFTI_TYPE_UINT64: convertWrite((uint64_t*)m_scratch.data(), dataIn, numElems); break; case NIFTI_TYPE_INT64: convertWrite((int64_t*)m_scratch.data(), dataIn, numElems); break; case NIFTI_TYPE_FLOAT32: case NIFTI_TYPE_COMPLEX64://components convertWrite((float*)m_scratch.data(), dataIn, numElems); break; case NIFTI_TYPE_FLOAT64: case NIFTI_TYPE_COMPLEX128: convertWrite((double*)m_scratch.data(), dataIn, numElems); break; case NIFTI_TYPE_FLOAT128: case NIFTI_TYPE_COMPLEX256: convertWrite((long double*)m_scratch.data(), dataIn, numElems); break; default: throw CiftiException("internal error, tell the developers what you just tried to do"); } m_file.write(m_scratch.data(), m_scratch.size()); } template void NiftiIO::convertRead(TO* out, FROM* in, const int64_t& count) { if (m_header.isSwapped()) { ByteSwapping::swapArray(in, count); } double mult, offset; bool doScale = m_header.getDataScaling(mult, offset); if (std::numeric_limits::is_integer)//do round to nearest when integer output type { if (doScale) { for (int64_t i = 0; i < count; ++i) { out[i] = clamp(floor(0.5l + offset + mult * (long double)in[i]));//we don't always need that much precision, but it will still be faster than hard drives } } else { for (int64_t i = 0; i < count; ++i) { out[i] = clamp(floor(0.5 + in[i])); } } } else { if (doScale) { for (int64_t i = 0; i < count; ++i) { out[i] = (TO)(offset + mult * (long double)in[i]);//we don't always need that much precision, but it will still be faster than hard drives } } else { for (int64_t i = 0; i < count; ++i) { out[i] = (TO)in[i];//explicit cast to make sure the compiler doesn't squawk } } } } template void NiftiIO::convertWrite(TO* out, const FROM* in, const int64_t& count) { double mult, offset; bool doScale = m_header.getDataScaling(mult, offset); if (std::numeric_limits::is_integer)//do round to nearest when integer output type {//TODO: what about NaN? if (doScale) { for (int64_t i = 0; i < count; ++i) { out[i] = clamp(floor(0.5l + ((long double)in[i] - offset) / mult));//we don't always need that much precision, but it will still be faster than hard drives } } else { for (int64_t i = 0; i < count; ++i) { out[i] = clamp(floor(0.5 + in[i])); } } } else { if (doScale) { for (int64_t i = 0; i < count; ++i) { out[i] = (TO)(((long double)in[i] - offset) / mult);//we don't always need that much precision, but it will still be faster than hard drives } } else { for (int64_t i = 0; i < count; ++i) { out[i] = (TO)in[i];//explicit cast to make sure the compiler doesn't squawk } } } if (m_header.isSwapped()) ByteSwapping::swapArray(out, count); } template TO NiftiIO::clamp(const FROM& in) { typedef std::numeric_limits mylimits; if (mylimits::has_infinity && std::isinf(in)) return (TO)in;//in case we use this on float types at some point if (mylimits::max() < in) return mylimits::max(); if (mylimits::is_integer)//c++11 can use lowest() instead of this mess { if (mylimits::min() > in) return mylimits::min(); } else { if (-mylimits::max() > in) return -mylimits::max(); } return (TO)in; } } #endif //__NIFTI_IO_H__