pax_global_header00006660000000000000000000000064142002114470014505gustar00rootroot0000000000000052 comment=a4d617d7d054450aa83965d0fd9d62ee2009957f clpeak-1.1.2/000077500000000000000000000000001420021144700127455ustar00rootroot00000000000000clpeak-1.1.2/.gitignore000066400000000000000000000000171420021144700147330ustar00rootroot00000000000000build/ .vscode/clpeak-1.1.2/.gitmodules000066400000000000000000000002241420021144700151200ustar00rootroot00000000000000[submodule "libopencl-stub"] path = android/app/src/main/cpp/libopencl-stub url = https://github.com/krrishnarraj/libopencl-stub branch = master clpeak-1.1.2/.travis.yml000066400000000000000000000032371420021144700150630ustar00rootroot00000000000000language: cpp matrix: include: - name: "Windows" os: windows install: - choco install visualstudio2019buildtools --package-parameters "--add Microsoft.VisualStudio.Component.VC.Tools.x86.x64" - name: "Linux" os: linux dist: focal - name: "Linux arm64" os: linux arch: arm64 dist: focal - name: "OSX" os: osx before_script: - git submodule update --init --recursive --remote - mkdir build - cd build script: - if [[ "$TRAVIS_OS_NAME" == "windows" ]]; then cmake -G "Visual Studio 16 2019" -A x64 -DCMAKE_BUILD_TYPE=Release .. ; fi - if [[ "$TRAVIS_OS_NAME" != "windows" ]]; then cmake .. ; fi - cmake --build . --config Release - ctest -VV - cmake --build . --config Release --target package branches: except: - dev notifications: email: false deploy: provider: releases api_key: secure: nWkv1F4ZP3YRWiS3g6mYWViOsijmVErbyPBdM1rn5qvai44OJxPRzoa3d24hxTJ7I+RARWxL7GFCVW5+nHOllJImL1TEWi4dMhxxwg6HyMvVKx1rS2RrHhM3kAeF4E9dAharBHi/6ecd3SvPNMdp7tsPxfMjmAVrspkSiD8ynlqT3qsDlB8TYg4ASgTniUJjxzVx5RAfR+Xja5pYctWQW++1ihKbtddtTlKxkV4uCpHCL6vKd3xHIZTl+INMOjPyIAGgQaKlbJYpexLJ6wcs4LLZhehD+dhoISigBOa0ceMqR0F5eBFRDRUbz/i253qhi5jp/JV5otOY0Z0CZiXDcsP+nx8CG9aXKFgYnSinA5qRLvOWi9rh20kpB4sURq5NqiWAlsjo7tGiPhiL5HehlNsGw6RCdXRw4wgO/3NrmO7jXj2Wmsoqx957m0yYC0tgKN5/Sh+GzD504NwY3ZxQqZ1kyE1HS8OkCARUhJ2Zc/Uc2Ka+0xwJqjZLylfWBXsgZljg8Hv4papJ+gHm3CLyMgoo7NID1lbPlcE2hhT3Ia5kDME9D8o0JpaTV+4YwqB0VpKzRQA4xPkphsd4FK4ZxRLlgKtS+HrdMOCdo/nhBDZf2eUKdwfFYrSTdtaynbiw37uX3IxyHUzuHdhuEOekonrHFvjT9yQzCItIbDNvwI0= file_glob: true file: clpeak-*.zip skip_cleanup: true on: repo: krrishnarraj/clpeak tags: true clpeak-1.1.2/CMakeLists.txt000066400000000000000000000045131420021144700155100ustar00rootroot00000000000000cmake_minimum_required(VERSION 3.5) project(clpeak) include(${CMAKE_CURRENT_SOURCE_DIR}/cmake/common.cmake) if (NOT CMAKE_BUILD_TYPE) message(STATUS "Setting build type to Release") set(CMAKE_BUILD_TYPE "Release") endif() find_package(OpenCL) FIND_PATH(HPP_FOUND CL/opencl.hpp PATHS ${OpenCL_INCLUDE_DIRS}) if(NOT OpenCL_FOUND OR NOT HPP_FOUND) list(APPEND CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake") include(BuildSdk) find_package(OpenCL REQUIRED) set(OpenCL_INCLUDE_DIRS ${OpenCL_INCLUDE_DIRS} "${SDK_ROOT}/include") FIND_PATH(HPP_FOUND CL/opencl.hpp PATHS ${OpenCL_INCLUDE_DIRS} REQUIRED) endif() if(NOT OpenCL_FOUND) message(FATAL_ERROR "Could not find OpenCL include/libs. Set OCL_ROOT to your OpenCL SDK") else() message(STATUS "Selected OpenCL includes from ${OpenCL_INCLUDE_DIRS}") message(STATUS "Selected OpenCL lib ${OpenCL_LIBRARIES}") endif() # extra libs for static library if(UNIX AND ${OpenCL_LIBRARIES} MATCHES "libOpenCL.a") set(OpenCL_LIBRARIES ${OpenCL_LIBRARIES} pthread dl) elseif(WIN32 AND ${OpenCL_LIBRARIES} MATCHES "OpenCL.lib") set(OpenCL_LIBRARIES ${OpenCL_LIBRARIES} cfgmgr32.lib runtimeobject.lib) endif() set(CMAKE_CXX_STANDARD "11") set(CMAKE_CXX_STANDARD_REQUIRED ON) set(CLPEAK_SOURCE_FILES src/common.cpp src/clpeak.cpp src/options.cpp src/logger.cpp src/global_bandwidth.cpp src/compute_sp.cpp src/compute_hp.cpp src/compute_dp.cpp src/compute_integer.cpp src/compute_integer_fast.cpp src/transfer_bandwidth.cpp src/kernel_latency.cpp src/entry.cpp ) add_executable(clpeak ${CLPEAK_SOURCE_FILES}) target_link_libraries(clpeak ${OpenCL_LIBRARIES}) target_include_directories(clpeak PRIVATE ${OpenCL_INCLUDE_DIRS} "include" "src/kernels") target_compile_definitions(clpeak PRIVATE CL_TARGET_OPENCL_VERSION=120) if(CMAKE_CXX_COMPILER_ID STREQUAL "Clang" OR CMAKE_CXX_COMPILER_ID STREQUAL "GNU" OR CMAKE_CXX_COMPILER_ID STREQUAL "AppleClang") target_compile_options(clpeak PRIVATE -fPIC -Wall -Wextra -Wno-unused-parameter) endif() install(TARGETS clpeak RUNTIME DESTINATION bin) install(FILES LICENSE DESTINATION share/clpeak) enable_testing() add_test(clpeak_test_run clpeak) set(CPACK_PACKAGE_FILE_NAME "${CMAKE_PROJECT_NAME}-${CMAKE_SYSTEM_NAME}-${CMAKE_SYSTEM_PROCESSOR}-${VERSION_STR}") set(CPACK_GENERATOR "ZIP") include (CPack) clpeak-1.1.2/CREDITS000066400000000000000000000001261420021144700137640ustar00rootroot000000000000001. xml_writer.h -- Simple xml writer from https://gist.github.com/sebclaeys/1227644/ clpeak-1.1.2/LICENSE000066400000000000000000000022721420021144700137550ustar00rootroot00000000000000This is free and unencumbered software released into the public domain. Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means. In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. For more information, please refer to clpeak-1.1.2/README.md000066400000000000000000000032531420021144700142270ustar00rootroot00000000000000# clpeak [![Build Status](https://app.travis-ci.com/krrishnarraj/clpeak.svg?branch=master)](https://app.travis-ci.com/github/krrishnarraj/clpeak) [![Snap Status](https://snapcraft.io/clpeak/badge.svg)](https://snapcraft.io/clpeak) A synthetic benchmarking tool to measure peak capabilities of opencl devices. It only measures the peak metrics that can be achieved using vector operations and does not represent a real-world use case ## Building ```console git submodule update --init --recursive --remote mkdir build cd build cmake .. cmake --build . ``` ## Sample ```text Platform: NVIDIA CUDA Device: Tesla V100-SXM2-16GB Driver version : 390.77 (Linux x64) Compute units : 80 Clock frequency : 1530 MHz Global memory bandwidth (GBPS) float : 767.48 float2 : 810.81 float4 : 843.06 float8 : 726.12 float16 : 735.98 Single-precision compute (GFLOPS) float : 15680.96 float2 : 15674.50 float4 : 15645.58 float8 : 15583.27 float16 : 15466.50 No half precision support! Skipped Double-precision compute (GFLOPS) double : 7859.49 double2 : 7849.96 double4 : 7832.96 double8 : 7799.82 double16 : 7740.88 Integer compute (GIOPS) int : 15653.47 int2 : 15654.40 int4 : 15655.21 int8 : 15659.04 int16 : 15608.65 Transfer bandwidth (GBPS) enqueueWriteBuffer : 10.64 enqueueReadBuffer : 11.92 enqueueMapBuffer(for read) : 9.97 memcpy from mapped ptr : 8.62 enqueueUnmap(after write) : 11.04 memcpy to mapped ptr : 9.16 Kernel launch latency : 7.22 us ``` clpeak-1.1.2/android/000077500000000000000000000000001420021144700143655ustar00rootroot00000000000000clpeak-1.1.2/android/.gitignore000066400000000000000000000002011420021144700163460ustar00rootroot00000000000000*.iml .gradle /local.properties /.idea/workspace.xml /.idea/libraries .DS_Store /build /captures .idea/ app/.externalNativeBuild/clpeak-1.1.2/android/app/000077500000000000000000000000001420021144700151455ustar00rootroot00000000000000clpeak-1.1.2/android/app/.gitignore000066400000000000000000000000141420021144700171300ustar00rootroot00000000000000/build .cxx clpeak-1.1.2/android/app/build.gradle000066400000000000000000000021661420021144700174310ustar00rootroot00000000000000apply plugin: 'com.android.application' android { compileSdkVersion 29 defaultConfig { applicationId "kr.clpeak" minSdkVersion 26 targetSdkVersion 29 versionCode 6 versionName "1.1.0" testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner" externalNativeBuild { cmake { cppFlags "-std=c++11" } } } buildTypes { release { minifyEnabled false proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro' } } externalNativeBuild { cmake { path "src/main/cpp/CMakeLists.txt" } } } dependencies { implementation fileTree(dir: 'libs', include: ['*.jar']) implementation 'com.android.support:appcompat-v7:28.0.0' implementation 'com.android.support.constraint:constraint-layout:1.1.3' testImplementation 'junit:junit:4.12' androidTestImplementation 'com.android.support.test:runner:1.0.2' androidTestImplementation 'com.android.support.test.espresso:espresso-core:3.0.2' } clpeak-1.1.2/android/app/proguard-rules.pro000066400000000000000000000013571420021144700206500ustar00rootroot00000000000000# Add project specific ProGuard rules here. # You can control the set of applied configuration files using the # proguardFiles setting in build.gradle. # # For more details, see # http://developer.android.com/guide/developing/tools/proguard.html # If your project uses WebView with JS, uncomment the following # and specify the fully qualified class name to the JavaScript interface # class: #-keepclassmembers class fqcn.of.javascript.interface.for.webview { # public *; #} # Uncomment this to preserve the line number information for # debugging stack traces. #-keepattributes SourceFile,LineNumberTable # If you keep the line number information, uncomment this to # hide the original source file name. #-renamesourcefileattribute SourceFile clpeak-1.1.2/android/app/src/000077500000000000000000000000001420021144700157345ustar00rootroot00000000000000clpeak-1.1.2/android/app/src/androidTest/000077500000000000000000000000001420021144700202145ustar00rootroot00000000000000clpeak-1.1.2/android/app/src/androidTest/java/000077500000000000000000000000001420021144700211355ustar00rootroot00000000000000clpeak-1.1.2/android/app/src/androidTest/java/kr/000077500000000000000000000000001420021144700215515ustar00rootroot00000000000000clpeak-1.1.2/android/app/src/androidTest/java/kr/clpeak/000077500000000000000000000000001420021144700230105ustar00rootroot00000000000000clpeak-1.1.2/android/app/src/androidTest/java/kr/clpeak/ExampleInstrumentedTest.java000066400000000000000000000012761420021144700305160ustar00rootroot00000000000000package kr.clpeak; import android.content.Context; import android.support.test.InstrumentationRegistry; import android.support.test.runner.AndroidJUnit4; import org.junit.Test; import org.junit.runner.RunWith; import static org.junit.Assert.*; /** * Instrumented test, which will execute on an Android device. * * @see Testing documentation */ @RunWith(AndroidJUnit4.class) public class ExampleInstrumentedTest { @Test public void useAppContext() { // Context of the app under test. Context appContext = InstrumentationRegistry.getTargetContext(); assertEquals("kr.clpeak", appContext.getPackageName()); } } clpeak-1.1.2/android/app/src/main/000077500000000000000000000000001420021144700166605ustar00rootroot00000000000000clpeak-1.1.2/android/app/src/main/AndroidManifest.xml000066400000000000000000000020561420021144700224540ustar00rootroot00000000000000 clpeak-1.1.2/android/app/src/main/cpp/000077500000000000000000000000001420021144700174425ustar00rootroot00000000000000clpeak-1.1.2/android/app/src/main/cpp/CMakeLists.txt000066400000000000000000000020531420021144700222020ustar00rootroot00000000000000cmake_minimum_required(VERSION 3.4.1) # Build stub add_subdirectory(libopencl-stub) set(ROOT_FOLDER "../../../../..") include(${ROOT_FOLDER}/cmake/common.cmake) set(SRC_FOLDER "${ROOT_FOLDER}/src") add_library(clpeak SHARED ${SRC_FOLDER}/common.cpp ${SRC_FOLDER}/clpeak.cpp ${SRC_FOLDER}/global_bandwidth.cpp ${SRC_FOLDER}/compute_sp.cpp ${SRC_FOLDER}/compute_hp.cpp ${SRC_FOLDER}/compute_dp.cpp ${SRC_FOLDER}/compute_integer.cpp ${SRC_FOLDER}/compute_integer_fast.cpp ${SRC_FOLDER}/transfer_bandwidth.cpp ${SRC_FOLDER}/kernel_latency.cpp ${SRC_FOLDER}/entry_android.cpp ${SRC_FOLDER}/options.cpp ${SRC_FOLDER}/logger_android.cpp ) target_include_directories(clpeak PRIVATE libopencl-stub/include/ ${ROOT_FOLDER}/include/ ${SRC_FOLDER}/kernels/ ) target_compile_definitions(clpeak PRIVATE ANDROID_LOGGER USE_STUB_OPENCL) target_compile_options(clpeak PRIVATE -fPIC -O2 -fexceptions) target_link_libraries(clpeak log atomic dl OpenCL) clpeak-1.1.2/android/app/src/main/cpp/libopencl-stub/000077500000000000000000000000001420021144700223645ustar00rootroot00000000000000clpeak-1.1.2/android/app/src/main/ic_launcher-web.png000066400000000000000000000371061420021144700224240ustar00rootroot00000000000000PNG  IHDRx> IDATxنckkQ 4 {o{`7Xp s=wfNk=kȽL߻ogJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ)RJ׈#~F/8`gXyAHL(Ƙ9a) b1\C68xQDD b1XeF.j? v ?bJDDZ/e*5pCz.;>8""!+hϸOvH22GH3Ǵ҆.I41@3gӭA ""i@_iuڀED'^xة/""oul$""93 o^A3&`Dk><""W ,D_hb_DD4,K}CxMC""",@֮YmĬy0/=/""rm.ZcyV6Sm[wϠ;~ՀV6_T߇@DD:Xqa-@շي& ~C """ u+oX~AV1ӕH_R!SkXeV_[ok}ʛ*KSK f~`uG˯S-.fLχ8nI= =K4]=tfuhI s%W1ӛ8 l 6}t%V0M7~/""l`A;A.]f.Z (7岃Fu[Xu#6S`¿Cߺ\/""|@`C!6S+ρd& n~Yee{Z ""t`p'rn,oe Pq_`敇@DD$]!`AoY e/""1Xf[1bʯ ~@DD$E!нí0Z3Խ?e6""" C∀Z ](gf(&f-0@DD$(fXXً16*l 0U`2u Pnr1E1@DD$}cKwԭsEDD20k @ 1s5(djnt@<L <;k;]Vů5"""_cl{u1Q5"""u534NvL.,0@DD$S0o5 P H] /mf/V)Χ 4`& H] Lbf̪hDDD43kDDD25kDDD: %` H]  @DD$` )  @DDD @DDD4""" @ ""h4""" @ ""h4""" @ ""h4""" *"" hDDD4 @DDDhDDD4 @DDDhDDD4 @DDDhDDD4 @DDD """h4""" @ ""h4""" @ ""h4""" @yLӁ'b3u;p~qa65c^}D9{u/AqᰓV@wMO?[8S:wBq VXhDD @4 hD "@D4 hDD@D4 hDD@D4 hDD@D4 @ " @h4 @Dh4 @hD4 @ " @ h@4" hDD @ h4@ h4@ h4@ 8,՟Mv81|SFloh [ɡ:2#al)~sOuVx7=,IquptӃϜ9o6` mvx0pÃsy= 96lgcgN~3ڬ7`Sۍ /d{~Qp W-Gx>xq/G|gg?Zp_368["@6`Gfl4ƣN v=/'_}w="+f^\|7<~^x+xwޟϯao=bpmg_rWp)2& lo'\n<+Ҹyyƽq\o}4˕G~}0ß~avv:&7#O >?~w)o{z1s`*oCI¾G_]n \?8aĉW_uv>ٛZj1;xAxm0<|Gkg9 a:0 ,~, D3~H|M"ƏO'_? :+|>5۝rp_n `iK?)ϬaϹ)48gF~WH_?{||M\BJD0%S{߆ט%- CY_-j>jhB4aǽq0?arQ_f&5b-|Sa:M_fMx}-0G``F_' 2J|~,}>yXmFhCM_3ǤK5UYIAR1$Kژl@񤦮E4ُ=ư5 p &4f6W}pv,Eִ)j̢V%/K[<4f{xHR'ӮKm@ Kji;ב{U$Q H52Hfr Hd6aQ@tS?mS=d tף] kI}IR; h&@ ;闩s!h:&(b8[!ݯ ~4 O v>肆==ݛa_Е쨩u%= h2Ԟ DRYK,15i]2<, @u~q„4 Q3fmvLnXteM%f"so1'LҎ_}]pIWT @a/щM<4z'Mt p !4/ N0R ͇: ˯`Y3~'xGf zUae*/M0{~iWT7LRf`4 ŒhK%k=ʠIxWYuŁ@|O ? W14SP o{/Wf HC}dLicnϼ؍qgߘj׋L1IvH5i/dО_4>d0,1Q=]<"a[g yȖ1\OKrZN @U/^\$Y 믽Ꭺ5;TbjzR N2To@U%خ=bLT#P9g18O~f-.(Fk|2L'j*CSg0 pr[0m]d7kL(icϨe-}dOޯbzu0k^ma-i0mN[L >RZϭ60\vw2<|ڗ[-M8 HڸV3-vfir ~&N8ctS!V\3JZH}#> KvF42c#<׾^Q2i4R0vlPm>;PN;ps|ѧ_ߒ3ь`#kn<0=-tijFxْi;Őm-a`ͻԤv$ @Y S?5.qM גLB )gЀ=IhtJ{ZQY "i 0 iָI][۪`6ɞ4w' #4c6z]3flIaȸ1CB@L,B|Jf3Z+hYLUd1y ֤ 2Wi<Ql{I:9e/ I~,I*Y%>lvٖĄ zot=,#e7mFE3G @'0k鎖f7{).kك` >z4 ?Ht$pi 嗢o`)d6蓕LP@LV`R &s)TK73t4j;4oD5jV,4ghѬnIOSUE0H=/`[oϬ&$2Rmy5mqdn0sO-00QR#Kuu1p;eGw"eAЈotULZN\R1Wݟ2#Y @*g;E?+n|&52"ՙ&#/l {7crPҸDs*eGp&'k SZw7Σ愿Vgi:tknS3}phV&vV}>KlާsS@8d>IJN [<*%iO`CIq/F#'4Qj [8R:wЋn{=ē>lC[ @ ҒLZ7=[Z17H jh_ @tPZ4j 34=;4{5Yl_P8 ƙ!'A @¦`O4kYqcHcDbw W_ @ `4?:Tۛ_ q4"{zox09pa?Ou~`&Lg4€Ό.wDkVI4ÁYlE|ݿ3% 60@Mp5< p[nkKA&힛M>jۑ N~I+ʿ5@ tg:"= {i` `. g<2-΋`w;ƇMV3> 0+o @PGR;ʛIkъtdIipbA#A۬ dތ }cpOg @!wO=cZ5P]h'U>F%WZDRIRdsBL'p_1-O :~JSWA7 cH#%}4xךS֋$/~+˜=QJzғ@}(DE4E2cpܷE %ոIX7ssڟ' mg6Eсϙ|k-yL BlK/^9ӡY P#Adڝ N + @-2x'kjkJ 5{yIc. |릒?L@Ym[o`;˶$s]>g3"{ǽqcr(HPv;dL[~?cϺ17}dwOCFjҜNi$\pz]ҭl|<>po~Gͷ\0k?Me&1jg[vjbM-^y9(O7>><04:'G]'=zr=I]R·xU]>V @Td7E,˱df @ i Mi`<2 Wך?!cJioh ( z_.WZm/6-آ` o|uTӽ5-sɗaf+oBpHZgd(Mf TX&TiyX+/˲: аOOZ97f.Y )9Q4pA@}`m@J8iu==Wx7 ཡ(kv{{})M PyHrn{+VG4iPKmy5~i2&-L&s6z~5aF5LG< 0їS?t lbը3la|2CõiwҎ{HYwE,oalщsKdKTסVuD7DVlVg_zw8/{?ljux-l fd@k4p~s59VŚ< i>'-'~&NÐdp;߭&qQJLEILj*yM 퉳8U DFUaN"l'ȤyTiBPu[ͨ8g&Eg3fpI*ۂ]4J[U2MG=()P@PIaJcx($;rC/zFkY,!PӴ봩<-YJ]46^><4-4E1 /ը O4/)e1*R񟶣YSY]CD]}룩 9]%.&N\ߨ0/I @Z0CcFܱ#/`@>+i߫~*^k3؏,ѱL/ ‹AdB @MCȖP$vb=ֆHs8<(˥#S?ţX\3{ i5I[g/KRYfV3("z P!=ުT.),҄ re53g EnV 3΂ Oѭ+5Iӗ4*Ņgaoo6`.\K>/tM9#9 qugd"lrd46ןI ;2LS&SoT4S`vƺqG#ﵘEk_}Y&]TariKq LoG?OZg sϲ]|*bjg9}zpdv+5m^g6) &(pgYa=iTOmaM|MaRPrF}? @[A0Tg`V15֡.*%ЬY! *j0Nʬ XJLk`9"&A,PsCOV0x"z1l29 w?B^gRhVժ& +MY Q( @cE D[ZwfMl!Ea n4fjq:aZ.6L@VyUqP/t  @0i;FըV1ӯ DŠީocKy[7Zx[MFxRfׁl=l{M׃?o`\'[s˶Z DkPsvHq] <:<p+ܮw**L)Gi:26WV'3Cy>- *گ0_l @SșzQ|• 9BЂug\tgCB=p2PT^Ί: ̫Vk.qH,W#D&UdRwLJ-Aj]dkjei$Ig϶jx,Y2Z} #@ $}(aphΎ ,@U?i4͎~b0BĎ>Zr3jיX$}y2NGrMSkǽs| v lXhO׌ OoOCJ5H= (3H+. 8fO# f`CƄFmrdu|ܳz2?NA1c```Ξ (%Ef&g7<f\Cfjyy'Dff|le 3cc oMΘ~+/~ã6䈁R=ZQF0dÁbX!3 2` ׫tgN*5|{#A`L^ׇgggMk5NUMR=m{}_;+ hD "@DD @  @4"" hDD4" @DD @ " h4"@ " h4"@DD @  @4"" hDD4h4hD "@DD * @DD @ " tF~Qp5cq<(" nrh0hڈÂ>k"h4""" @ ""h4""" @ ""h4"""@DDD4""" @ ""h4""" @ ""h4""" @ ""h4""" @DDD4""" @ ""h4""" @ ""h4""" @ ""h4""" @ ""hDDDD """ @DDDhDDD4 @DDDhDDD4 @DDDhDDD4 @DDD @DDD4""" @ ""h4""" @ ""`` Hg2 5hT o,{SEDD]_i#v}``In{ܪ[Ö1+ύ; -Xvn>2]$WBˬB%`!Hm,F| /?egqa$_`>ÂBLZ4s7> H^sIHLm)oގ4Fw@DDC%W$XxA |-c\p+,H>kXeR``i @"""yXZq0K+;|c2 ""na+l,}Q `f2(X!~o=2S-hDDD*/c`b.~S`+l=ijaDD&d˗_kɳ,5p?bh1viK/~ ~]`Xך;|  hb$'-wA^|YK :g1\ t4(* м`˭ =CPp9r@hDDY&g?,gb+nSLw-r`b E=fmh+ym T/.YvWט5)H C_AU/V q`C @[ự 0,{'E1jH\'jK,kݟfmYn `JKz5Zpɕ7  N6i̓z۵b\C4z@5;f.~uŔ2\weMt̀-Ŗ_?XhU"FcebuPm!`:RKXag&`I&`MtJ7ˬ~1#hc))#`|[1T<4*~e Y/ ,bl,M7G\(:zw.w$fDD$?M~ 1L7qnն __B,,j [o2|ŊƩz-욇-fAUGua6`?""Қ~&%-ҦT vx,1[1f'k \6 [.oX`;IiO;bMkd0ܐ~H쿴oCNL  /,M@~5z{e5w>` H3r]^zUa?"{h2Ws$fpX ^ 0y)xA_ I)0)#CvR LVXS ""5 ŀO ~!Ep_ca__ͿpqXO+k{jk;J2,ĀC %mVK⢸S)`ߩMAc ""R5Q,){L)f *;htG{G{]xD!-KSkM1T XD;.] (5cўC^b.&aDj$nx='S#aL)fԧڿZ0c $0lY ,3J Ad ,)""Ҹҽ$wEb3(?ɬ?c5 ՚h`|I/4Pj 2b@DD$-زhI/ QR[r;bـxm1#- _]J obqs "" ) ]bA?JGΒ?  F 2)ߘ9IK libopenclSoPaths = new ArrayList(Arrays.asList( "/vendor/lib64/libOpenCL.so", "/system/lib64/libOpenCL.so", "/system/vendor/lib64/libOpenCL.so", "/system/lib/libOpenCL.so", "/system/vendor/lib/libOpenCL.so", "/system/vendor/lib64/egl/libGLES_mali.so", "/system/vendor/lib/egl/libGLES_mali.so", "/system/vendor/lib/libPVROCL.so", "/data/data/org.pocl.libs/files/lib/libpocl.so", "libOpenCL.so" )); final List libopenclPlatforms = new ArrayList(Arrays.asList( "vendor lib64", "system lib64", "system vendor lib64", "system lib", "system vendor lib", "mali", "powerVR", "pocl", "default" )); // Don't search for "default" & "pocl" for (int i = (libopenclSoPaths.size() - 3); i >= 0; i--) { if (!(new File(libopenclSoPaths.get(i)).exists())) { libopenclSoPaths.remove(i); libopenclPlatforms.remove(i); } } ArrayAdapter dataAdapter = new ArrayAdapter(this, android.R.layout.simple_spinner_item, libopenclPlatforms); dataAdapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); spinnerPlatform.setAdapter(dataAdapter); spinnerPlatform.setOnItemSelectedListener(new OnItemSelectedListener() { @Override public void onItemSelected(AdapterView arg0, View arg1, int arg2, long arg3) { if (libopenclPlatforms.get(arg2).equals("pocl")) { if (!(new File(libopenclSoPaths.get(arg2)).exists())) { AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this); builder.setMessage("pocl installation not found\ninstall it from playstore?"); builder.setPositiveButton("go", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int id) { Uri uri = Uri.parse("market://details?id=org.pocl.libs"); Intent myAppLinkToMarket = new Intent(Intent.ACTION_VIEW, uri); startActivity(myAppLinkToMarket); } }); builder.setNegativeButton("leave it", new DialogInterface.OnClickListener() { public void onClick(DialogInterface dialog, int id) { } }); builder.show(); spinnerPlatform.setSelection(0); return; } } setenv("LIBOPENCL_SO_PATH", libopenclSoPaths.get(arg2)); } @Override public void onNothingSelected(AdapterView arg0) { } } ); } } clpeak-1.1.2/android/app/src/main/java/kr/clpeak/jni_connect.java000066400000000000000000000032731420021144700246150ustar00rootroot00000000000000package kr.clpeak; import android.app.Activity; import android.os.AsyncTask; import android.widget.Button; import android.widget.TextView; public class jni_connect extends AsyncTask { Activity rootActivity; TextView text_view; Button runButton; public native int launchClpeak(int argc, String[] argv); jni_connect(Activity _activity) { rootActivity = _activity; text_view = (TextView) rootActivity.findViewById(R.id.clpeak_result_textview); runButton = (Button) rootActivity.findViewById(R.id.run_button); } @Override protected void onPreExecute() { runButton.setEnabled(false); text_view.setText(""); text_view.setKeepScreenOn(true); } @Override protected Integer doInBackground(Integer... arg0) { String options[] = {"clpeak", "--all-tests"}; return launchClpeak(options.length, options); } @Override protected void onPostExecute(Integer result) { if(result != 0) { text_view.append("\nSomething went wrong\n1. OpenCL platform may not be present. In that case install pocl from App Store\n2. clpeak exited with some error\n"); } runButton.setEnabled(true); text_view.setKeepScreenOn(false); } @Override protected void onCancelled() { text_view.append("\nclpeak exited abnormally\n"); runButton.setEnabled(true); text_view.setKeepScreenOn(false); } @Override protected void onProgressUpdate(String... str) { text_view.append(str[0]); } public void print_callback_from_c(String str) { publishProgress(str); } }clpeak-1.1.2/android/app/src/main/res/000077500000000000000000000000001420021144700174515ustar00rootroot00000000000000clpeak-1.1.2/android/app/src/main/res/font/000077500000000000000000000000001420021144700204175ustar00rootroot00000000000000clpeak-1.1.2/android/app/src/main/res/font/ubuntu.xml000066400000000000000000000005431420021144700224650ustar00rootroot00000000000000 clpeak-1.1.2/android/app/src/main/res/font/ubuntu_bold.xml000066400000000000000000000005671420021144700234730ustar00rootroot00000000000000 clpeak-1.1.2/android/app/src/main/res/font/ubuntu_medium.ttf000066400000000000000000012325141420021144700240300ustar00rootroot00000000000000PDSIGzG8GPOSP 8zGSUBmCv6LTSHwOS/2`VDMXB,cmap:y|cvt h#8fpgmvDX#gasp glyfSklhdmx4 1head|.\6hhea E$hmtx8kernH|loca,LLmaxp  nameա t +postS{,[D,prepm' |{O&`_<ɉ^33  C Z  /Y fY P [DAMA G8 V  22IE.83/+ESKS"84 #; 58+8Z8-808!898485808+ 5#848484>S~9SJS'S7S$SSSt@S7oS7SC NqLZ]Z8!M(TM0T0;0MJ0FM?'M)KaMIMV0TMT0M%GGG   !\%,]\8!8&y$$1/9799r1@%9%0q2I8B828#8,]( .>#(84;.>+[84kk ]OM(Bk/((%n$n$n~9JSJSJSJS$$S$$S777778H7NNNNqtTzM((((((e(0;0;0;0;0;O/IMV0V0V0V0V084V0GGGGGGGGTM(((~90~90~90~90S0T0JS;0JS;0JS;0JS;0JS;07J07J07J07J0SF8F $$$$$GN?)S$?S'MS0MP)2S),SgKSK*DSIMSIMSIMaVSIM7V07V07V0SMSSM%%%C GC GC GNGGNGGNGGNGGNGGNGG qL!L!L!$M%C Gq1+7}RD!   qXkkk%k#k!kkkk/kk kk%k#k!kkCn$nn$nn#nn$nnnn$n#n$nnnn#n#n$nnn#nnS&S 184XE ^~8!848484'$MMMMM<M~M@/  ! 20 2/4,kk/kk kk%k#k!kkkk/kk kk%k#k!kk=SKS;>Z]Z\%\9r19%2I((%N uSTM\~x70K {+W0K/J"5M/57yMS] S'M5  SIM7 7U06N0 TMS$>FGg GC NZG1NDL!II/%9%&,EM,] ]A)2ISS70#S-S9KSSZM($7V0NGGNGGNGGNGGNGG;0((e(7Q07J0S'67V07V0ISS707J0*SSSIM(e(7V0&(JS;0JS;0$$7V07V0QSMNGGNGG SFDS0.X1L!(JS;07V07V07V07V0qM0070$  # _SK04$7W0  3z\uu:uZ>>JSJS Sv7$S$3 S SShSuSSS JSNSSS t@S7SoS~9C ha2S7SS {SxSv S!(\;9MMy ;0! )dMdM0Me @QMV0MMTM0  / `M&+MMbMlM%MKM6;0;0@M0%?n ZMF 0MdMLMS/ _ 7V0C SmB oSTMSM& S,M- N)S7MSLA  r SgM:SMS_M7p0~90C  q q " k  7>+71$SFMX  Y  $S! S/M v SQMSZM>&+@@N((e(JS;05;35;3! N)ISdMSdM7V07V07V0vhhh7&+SM{SM~S8#88(8#'SSJSLS7$SSt@S'"7SoS>C qa28>1d0sMV021IMb4F0M OM /V0MMYG/n0 LG 0 GK6'|$=q9d02IM7V0LGLGLGK6|td0d0d0d0d0d0d0d0^M!3222222ogyIMIMIMIMIMIMIMIM+&67~ZIASV0V0V0V0V0V06[4#LGLGLGLGLGLGLGLGxK6K6K6K6K6K6K6K63a9( d0d022IMIM V0V0LGLGK6K6d0d0d0d0d0d0d0d0uK[IMIMIMIMIMIMIMIMPK+#K6K6K6K6K6K6K6K6t,,d0d0d0d0d0d0d0uWu3IMIMIMIMIMbbS 4$$ 4LGLGLGLGYGYGLGLGqq8,K6K6K6K6K6kr81klcR&8+&3a9( S18C B I'#'- ((!((- 0   ! 11$((((((!!!! ------+0---'- - --&0000(((   !!!!!!        & !!/'  (( 11 &&1 0(2|00&0-(!!!!!--$+,((000-$+(--((  !!! -((((1+#*.'   (-  ,,& / +(" ,$ &&' ,, ,2--$+ 0(((  ( ( 0 0000000000.220/0(00(..00000000.#000002.20(($ 8 L  !""###$$%%&&'&(())**++,,--.//000112233445565768799::;;<<==>>?>@@AABBCBDDEDFFGGHGIIJIKKLLMLNMOOPPQPRQSSTSUTVUWVXWYYZY[Z\\]\^]_^``a`bacbdcedfegfhgihjhkiljmlnnonpoqprqsrtsusvtwvxwyxzy{z|{}|~}~  !""###$$%%&&'&(())**++,,--.//000112233445565768799::;;<<==>>?>@@AABBCBDDEDFFGGHGIIJIKKLLMLNMOOPPQPRQSSTSUTVUWVXWYYZY[Z\\]\^]_^``a`bacbdcedfegfhgihjhkiljmlnnonpoqprqsrtsusvtwvxwyxzy{z|{}|~}~  !""###$$%%&&'&(())**++,,--.//000112233445565768799::;;<<==>>?>@@AABBCBDDEDFFGGHGIIJIKKLLMLNMOOPPQPRQSSTSUTVUWVXWYYZY[Z\\]\^]_^``a`bacbdcedfegfhgihjhkiljmlnnonpoqprqsrtsusvtwvxwyxzy{z|{}|~}~" & * / 2 5:>BGKOSW\`cgjpsx| !"#$%&'()*+,-./0123456789:;<=>?@A BCDEF!G$H)I,J0K5L9M=NAOFPIQMRSSVTZU^VaWgXjYoZs[v\{]^_`abcdefghijklmnopqrstuvwxyz{|}~  #',048=@DJMQUX^afjm~r~v}{|~{zyyxwvuusrrqponmmkkjihggeedcbb``_ ^]\[[Z#Y'X+W/V4U7T  !""###$$%%&&'&(())**++,,--.//000112233445565768799::;;<<==>>?>@@AABBCBDDEDFFGGHGIIJIKKLLMLNMOOPPQPRQSSTSUTVUWVXWYYZY[Z\\]\^]_^``a`bacbdcedfegfhgihjhkiljmlnnonpoqprqsrtsusvtwvxwyxzy{z|{}|~}~ '                                                                                                                     ' *                                                                                                                                                       * .                                                                                                                                                                                             .5                                                                                                                                                                                    58                                                                                                                                                                                    8<                                                                                                                                                                      <C                                                                                                                                                                                                       !C F                                                                                                                                                                                                                         "F J                                                                                                                                                                                                                               $J Q                                                                                                                                                                                                                    (Q T                                                                                                                                                                             )T X                                                                                                                                                 !! !      +X _              #                                                 # " #                              $##$!!      ._ b              $                                                $"#$"                           %%$%""      0b f             %                                !             &#$&#                !       "!  &&&&##      2f i               &                                   !#             '$ & '$                      #          #"!!!!('''$$      4i p                )                              #%       "    )&#"(   )&#"       "! !" "  %       ! ! "" ! #"!! %%#$ ##****''     # ! !#"!!7p!t               ! * ! !                          $&    !    #   +($#*!   +($#        #"!"#  #   &!      "!!" $#!"!$#""  &&$%!!$$,+++((  !   $ "!!"$#""9t#{    " !      #- #  # !      "        !   !!! ! &(   "  #   "%   -*&%,# " -*&%"      &%!#$% "% !  "!(#     $##$ &%#$!#&%$$  "")(&'##'&..-.** " #   &$##$ &%$$ <{% !   $ !#      %/ % % #       #          #  ### # (+   $  % !  $'   0,('/&  #  0,('#  ""  ('#! %&!'  $'     #" # #!+% !     !! !&%%&""  ('&&#%! ('&&"" $$+*))%%))1001-- $  % " "!( &%%&"" ('&&""@& "   % "$    !  &1 & &  $    !!!$ !      !$  $$$$!!!!!!!!!!!!!!!!!!!!!!!!),  %  &  "  %(    1.)(0'! $! 1.))$! ##  )($"!&'"( !  !!%(!!!! $# $!$",& "!     ! "!!"'&&'## !)(''$&" !)(''##  %%,+**&&**2212.. % !!&  #!#")! '&&'##!)(''##A( $   ' #&  #  (3 ( (! &  ! !###& #       #&  &&&%########################  +.  ' ( "$ '*"    40+*!2)" &# 40++&# %%  +*&##(*$* "# " #"'!!*# #"" & % &#& $ .( ##!   "  !! """ !$##$ )(()%% !"+*))&($""""""""!#++))%% ""''..,-((,,544500"""""""" ' ##(  !"""""%#%#+#" ! )(()%%!#++))%% E* &   ) %!!'  $!  *6 * *# (  " " %%%( !!!!!!%  " !  $!!!'!  '!'!'!'%%%%%%%%%%%%%%%%%%%%%%%%! ".0  ) * !#% )!!,$!  62-,"5+$ !(%!! 62--(%! !!!!!!'' "  -,  (%!$ *,%,"!#$!# %$!  ("  #,$"%$$ (" ' (%("!!!%!0*! %!$#! !"#" #!# #$#""&%%%""++*+'' #$-,++(*%########"$--++'' ##))10./**..876733######## ) $$+ !######&%'%-$$"#""++*+''"$--++''!!H. )    -!! )"$$ + ($ .;. .&+ %% (((, ""$$$$$$ ( !"!" % $"""("$$$      +$  +$+$+$+((((((((((((((((((((((((!$ % 25 -.$"'! )-"$$0'"!$!<721%:/' $     ,(!$$ <721",($ $$  ! "$$$$"** "%# 10#"!#,""")!$!(#.0")1%"$'($' ('!$##,% "##&0(%(' ' ,%#!"*# ,(!!,%""$$$)$5.!$ )"$!(&$ $%' % &$& ' ('%&!!)(()%%//./** &(21//",.)''''''''&(21/0++ '',-5433//33=<<<88'''''''' !!- ""((/ $&!'''''*(*)2 ('%&!!%%//./**&(21/0++!$$O2 "-"    1"! $"$!,%'' #"/!+' 2@2 2*/ ))" ,,,""""""0 %%''''''#### +"""    $!%""""$%(!'%%%+%'''   ######/'/'/'/'/,,,,,,,,,,,,,,,,,,,,,,,,!$' (""##6: 12' "%* $"","1%''5*% $'$!A<65)?3+"'#####""0+$"!''A<6"5!%"0+'""''  ##$#%""''''%..#! !%"(! ' 64&!%$"!&/%%!%,$'$ +!&!24%- 5! (%'*+(*,+$'&&  0)"%!!&&)!5+( ",""!!+"+"/(!& $%!.'""0+$$/(%%''' !-(:2"!!$'!",%'$+!)''(*"#()')*""+*()$$""-,,,)(3323..)+6534%/2,********)+6534..**01:9783377BAAB==********""$$1%%++3')$*****.,.,6""++()$$)(3323..)+6534.."$''V6 $0%4%#"' %'#0(*"*#&%3#"    / *6E66-3" ,, % ///%%%%%%4" ((******&&&&"""/   %%%""""'$(     % % % % '(,#+( ( ( / ( * * * ###&&&&&&3*"   3*3*3*"3//////////////////////// $'+ !+%%&&;>46 *" !""%(." ' %%0%5( ** 9.( #!'!+'%  FA:9,D7.%* &&&&&%%4/' % #* * FA:% :$( %4/* %%  * * ##&&'%(% % * * * * "(22%##$(%! + ## *":8)#(!'%"#) 3 ((#(0'*'""!/#)$68(0""9$!"+!!!( *!./!+./.! '!* ))"#" #4, %(#$)")!-#9/+""""%/$%$$.%.%3+$)"' (!$2*%%4/ ''3+  (!(!* * * "!!!$0+>6%#$ '*#%0(*'""/#-+!"  !  " *+.%&,-*"-!  .!!!!!!!!%%/.+,''%$0//0 ,,876722!   ,.:978 (360........,/:97822!!  ..!!!!!!!!45?>;<77 <;GGFGAA........!!!!!!!%%&'5 ((//7 ""+-'.....1/20:%%/.,-'',,876722,/:97822%'+*]:'!4(!!!!!!!!!!!!!!8(&%*" (*&3+-$-%")(6&$"!##!"" 2"###"-!!:J::07$!!!!/ !/!"(  333((((((8%""""++-----!-))))$$%2!!!!""#####!#""""#(((%%%%*'+#"!"!"!"!"!("("("("*"+"/ & .  +"+"+"2#+"-#-#-#%%%""")")")")")")"6-$""""6-6-6-$ 6333333333333333333333333#').! "#!!!! /''))?C! !!!8: "-$##%%(+1%#""*"!('4' 9+"--#=1+#%!$"*#.*'""""! "!KF?=/!I;2(-#)")")")")"!((82)"("& -#-#"KF?(">&+"(82-#(("!"!-#-#%%)")"*"(+(#"("!-#-#-#-#$+55(& %'+'#"/#&&""-%>=,&+$)($&,"7"++&+3*-)$%"$2&,&:<+4%%=&#!%!.$$ $+"#"#-# 12$. 1!!!!32" $"#*#-#,",$%$# % 8/"(!+&'!,$,$0&=2.$%"$$' 3'(!&!'"2(2(7.& -%*"+#' 5-((82"!*!*!7.""+$+$-#-#-#%$$$& 4.C:!!!!(&'""*-&'3+ -)$!"$2&0.$$#"# "#"#$"-.1((/0-$0$"#"""1$$$$$$$$((21.0))''4334""""""""//<;:;55#"!#######02>=;<""""""""+7:41111111102?>;<66$$""##""11$$$$$$$$89CB@A;;""""""""@@MLKLFF11111111$$$$$$$(()*9"""""++22;""""##""$$.0*111115353?((21/0))//<;:;5502?>;<66(*.!-dC"-&<. &&&&&&&&&&&&&&A.,+1'%.0",$;24*4+$'/.?,*'&"$( (&''%:'((('#4## &&C V$C"C8?*&&&&"7%&7&(.%;;;......@+''''2244444&4////***$$$$$$: &&&&('(((((&(''''#(#.$.$.$+ + + + 1-2('&'&'&'&'&.'.'.'.'0'2'6%",%5&$$$$%2'2'2':(2'4(4(4(+++$$$'''/'/'/'/'/'/'?4*#' ' ' $'?4?4?4*#  ?;;;;;;;;;;;;;;;;;;;;;;;;(,0#5& ')&&&&%6..//IM'"#%#&!&&A"C%%(4*((+*.#28+(''0'&.-<.%$B2'44(F92(+$&)'0(50.'' '' !&%" '#'WQHG6&TD9.$4(/'/'/'/'/'&.$.$@:0(.',%4(4('!WQH.'G,2'.$@:4(.$.$'&'&4(4(++/'/'$0'.2.(' .$'&4(4(4(4(*#1==.,!%+ !-1.)'#6(,+$!''4$*$"HF3,2)0.*,$3'@(22,2;040*+'):,2,CF1<**G,$(&*&6"))&)2(('( #4#)%9:*5%"8&&&'";9'&)#'(1)4(3'3*+$*($%+%A6(".&2,,'3*3)7,G:6*+ ' *#*#-%;-.&,&-'9.9.@6,%3*0(2(-%>4.$.$@:'&0&0&@6("'!2)2)4(4(4(*")#)#)#,%$<5MC&&&&.,$,''04,.;2%40*&'*:,75)*$("')&$(# ('(*'4#58./684*7)"'('''8))))))))..:96700""""""--<;:<''''''''66EDCD==(''(!!((((((7:HGDE''''''''2?C<888888887:HGDE>>))""''((''88))))))))ABNLJKDD''''''''JJYXWXQQ88888888)))))))..00B'''''11::D ''''((''**57088888=;>;H..:9670066EDCD==7:HGDE>>.05&4sN ~17HQS_awx67O_cuEMWY[]}    " & 0 : D p y !!!"!&!.!T!Z!^""""""""+"H"`"e%  28IRT`bxy78br HPY[]_    & 0 9 D p t !!!"!&!.!S!U![""""""""+"H"`"d%feAa&`HH z@:*߶1mTxS/3)ߘߕߍߋ߈߅y]FC# zlpRZXt<ghri_kwlxmynocpqestabcdue   !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`ag}~rv|df{mystpqnoznblxhcej iuabced_@?XUTSRQPONMLKJIHGFEDCBA@?>=<;:98765/.-,(&%$#" ,E#F` &`&#HH-,E#F#a &a&#HH-,E#F` a F`&#HH-,E#F#a ` &a a&#HH-,E#F`@a f`&#HH-,E#F#a@` &a@a&#HH-, <<-, E# D# ZQX# D#Y QX# MD#Y &QX# D#Y!!-, EhD ` EFvhE`D-, C#Ce -, C#C -,(#p(>(#p(E: -, E%EadPQXED!!Y-, EC`D-,CCe -, i@a ,b`+ d#da\XaY-,E+)#D)z-,Ee,#DE+#D-,KRXED!!Y-,%# `#-,%# a#-,%-, ` <<-, a <<-,CC -,!! d#d@b-,!QX d#d b@/+Y`-,!QX d#dUb/+Y`-, d#d@b`#!-,E#E`#E`#E`#vhb -,&&%%E#E &`bch &ae#DD-, ETX@D E@aD!!Y-,E0/E#Ea``iD-,KQX/#p#B!!Y-,KQX %EiSXD!!Y!!Y-,EC`c`iD-,/ED-,E# E`D-,E#E`D-,K#QX34 34YDD-,CX&EXdf`d `f X!@YaY#XeY)#D#)!!!!!Y-,CX%Ed `f X!@Ya#XeY)#D%% XY%% F%#B<%% F%`#B< XY%%)%%)%% XY%%CH%%`CH!Y!!!!!!!-,CX%Ed `f X!@Ya#XeY)#D%% XY%% F%#B<%%%% F%`#B< XY%%)) EeD%%)%% XY%%CH%%%%`CH!Y!!!!!!!-,% F%#B%%EH!!!!-,% %%CH!!!-,E# E P X#e#Y#h @PX!@Y#XeY`D-,KS#KQZX E`D!!Y-,KTX E`D!!Y-,KS#KQZX8!!Y-,KTX8!!Y-,CTXF+!!!!Y-,CTXG+!!!Y-,CTXH+!!!!Y-,CTXI+!!!Y-, #KSKQZX#8!!Y-, IQX@# 84!!Y-,F#F`#Fa#  Fab@@pE`h:-, #Id#SX<!Y-,KRX}zY-,KKTB-,B#Q@SZX TXBYY-,Eh#KQX# E d@PX|Yh`YD-,%%#>#> #eB #B#?#? #eB#B-dA  0P`69FC BAU UU/@vn)trd{z4rC)@qFpndoBnBia)gedeC)cadaB`*_*YQ)XBWUdV*UC)SQdQBLD)KG)JHdIx*HC)FDdyBDBCABA~*}|*~~0~ * U*U*U * U*U*U *U*UTSKRKP[%S@QZUZ[XYBKSXYKSXBY++++++++++s++++++++++++++++++++++++++++++++++ss++++t+++tu+ GGCiyi|<mm7|y|iiyy|iiyy_|<iPiy4,X]`TP DDDD, $ x 4 X |  t\X4X|!l"`#(#$%'`'($(+0,,--..T.//\0(01t2<383455t56778d89:P:;?<??@,AXB|CLC|CDlDEEEEEFGHDHpHHI4IDITIdIJ0J@LM@N,NXNhOOO O0OxOOOPPPQQQR|S4TTUVWWYZZ`ZZ\l]l^^8^H_`aa$axaaaabcc`cdPdexfLgghpiDipijjkhkxkkklm|mmmnnhopdq,rstuhvx(yyz||H||}H~~ 4H(|$(8,0`,`4P  \l ` P`p,` Hp8H,\L|D$XhP ,<L\l`p0@P (èĀ@hxtʄʔ˰̌͌D@ (LҀҘҴ(PxӤ<lԔ\՜P|֨@tר4Ld|ؔج0dٔ $<T|ڨ <lۜ,D\t܌ܸL|ݰ0H`xސި,\ߐ $<Tl<l0H`$X $<Tl8` 8`<h4h<\|,\<\|L|L4Tt @dLd|TX <TpT \4L0X Lt $@X  L|(4Tt4Tt4TtX  l l2@  //103!'!222vI 9@#D y  `py ??]9/]]10#.=3#"&54632 V ."!//!".SFFR#,,##--E'  .q@mL!   L    H  H o      ????????99//]333222333222]̇+}ć]̇+}ć10%##7#537#53733733#3##37#t"k"Pb"k""k"Qc"kW_^^_33 @ 0 M00 M, M,@ M)M(M'سM' M& L& MسM Mس M@f M M M M  M (M MM L M.1a.$c c.5 M)`g2140@P!g?]]99+9/2210+++++++++++++++++++++++7.'732654.'.546753.#"#HY" [:E5(7!=1RUh0LO366 .)I6R^h  _)"" ):*Eapl c '" #/@,B`}/R +7 M*M(@ MM M @EM2oo&&,oRo9o`o8/s)))5s!sos ?]?????]]ԇ++]10++++++#".546324&#"326%3#%#".546324&#"326]K%>,]KK]_'""&&""'*sys]K%>,]KK]_'""&&""'[b0G-\aa\5555555K[b0G-\aa\5555555++9G@E M40 M4( MM Mش L M@ M8MسM M L@ M  M L M MEMB@M6M5 MȳM@;M$4D! IC5:F@F,FHC $45' 1H' ! =H ????9/993929+10++++++++++++++++++++++74>7.54632>7#.'#".73267'4&#">+'3%gT+C,$/e !=~ )jCCZ7t /!-I &$&( !&>2& H(T^*9 8/'A (a,%O'(%.$8D)$)J).#9 $E 3@H D/?  ?]qq+10#.= M >0o88n2=KGO -@ 8M p@M ?3?32+2+10.5467JBUQ^^QUBJ+{Y8aa8ZG 4@ M p @ M  ?3?32+2+104&'7'>JBUQ^^QUBJ+{Z8aa8Y"-,A@$() ))-.$   (?229/2210>?'.''7>7./7.=3 E!" Q#= Y   Z =#Q!""D n* h 3? J J ?3 h *#L##L4' *@z rz {r { /9/103533##5#4llQf#_ @ p107'>54&''#_>;:o* $ $Ur/10!! Uo5 y y ?107#"&54632/!".."!/B#,,##--G5@ Mv????Ƈ+}10+#3a|Rz+  !P M @ MMMc#c" Lg  Lg ?+?+10++++#"&54>324.#"32> qq!?Y8q} ,!!- -!!, [W\06^E((E^66^E((E^Z ; MM@ L a  ??92210+++>73#Z:u-UyR&%H1K( -((M(M(سM'M' M' M$@ M MMM@0 Mc @  O*"# a)#"g0M(M & e ??99++22]qq10+++++++++++!!&454>7>54&#"'>32/<($4G2>,!<+0%<*qAoi$EA=**' f0QF>,+-4,U(1i06ѹ4M*M)@ M4M*M* M)M!M@LM M M @>Mc,,,2/ c28" 7!g"@ H"'//e`_ g' gg ??9/]]9=/+]2]10+++++++++++++".'732654.+532>54.#"'>3293* P;OF/=")2/&&-F,(18:T75*6G Be g =3!, b &" Z  3E)0LXE.O9!!Y@5Ha <a RD3%e ]  ??9/9]232]]]]2]]10]33##5!5>7Q30,vNNvCR\. BHK%TcV,rxt/9%гMMM M@( MM(M M( LM  c' aHHa@ Ho&ge_!g e??9/]]++]+]10++++++++++%4.#>7!##".'732>AmS b BdC83( O9'8#!4$`Wf+,(wg/P:! f '4 ,b@ #M# MM ȳM @# M%&Mc.+c -g+g&g% g ??9/+10+++++"32>54&'2#"&54>766 /#) :0>W69V;w};ma6^J51Q  (G5&-7!5!*=I$!NF3L/h\%[0!3CCسMB M?гM?@ M. L$M!M ȳMM MM M M @/MM M4c1A ,cE>c"c DA@MAA1@M1119g'g ??9/]+9]+910++++++++++++++++%#".54>7.54>3232>54.'4.#">32'2>8 /#) ;:>W78V;z}I !;N-'QD+e,G57v#_&v44 M@J Lvv //]]]9/]]+}+}10++% %4!O!QPcc4@  rr/107!!!!400f>f44{@C Lvv/ /]]]]9/]+}+}10+%'-7Q!O!cc#/r@  M MسM LM @ M!F *y$@H$F o  1-y'JJ??]+210++++++"'>32#.54>54&#"&54632#@#"%_2aEVŹR@ MO( MN( MC( M?س M:@ M5( M&@ M" M" Mг M)M)@; MM M,-AFJQOSAXQS@  $S7WLWW<,W-2WTW)W2??qq22++++10+++++++++++%"&'#".54>3232654.#"3267#".54>32'.=&#"3262; 1Q; =Y97X+1+RuIHyW12[N6S #-4]yGHxTWpA8L "1 69'#kN-0ZRVV, T2jrmm74c\GlJ&m  '5?R@  M M M M M@> L L L LLH ?????9/932?9/܇+}܇+}10++++++++!.'!#>733.'FCB#w#BCG'; <)P**Q(oJJo/5YYSa#.x@N* M&( M M(M(M(F M F0.D/.I+J $H`_I IJI ??9/]]q9=/++10++++"&'>3232>54&#'32654&#"$7p*243?lO,/*?<0'C1VLoYHRUD- ,H51FR?kk@ *!;.c)52*9b%uг M@ M LMM@)M(MM !'F&J/ 4! !!J ?]]?]10++++++++".54>32.#"3267N|V.5\|G+F4"%Y4-N9 4P8CT" )8F0]WW]0 g>^>7\C% g S I@0 M MM LF  D I JIIJI ??]++10++732654&#"#"&'>32 $}z88gX*j00l*Wg8htv~ZY+  )WS( ,@ D HH H??9/103!!!!!SWkikS  %@ D H H??9/103!!!!Skk7l#U@ M D %M@ MF$!J   J IJI ??9/]++10+"326753#".54>32.kq5O5!0~|QK|W05\|F0K6#&YVv8]B% 0\WW]0 gS| 1@ D  D H ????9/]103#!#3!~~~~-K3SD??103#S~~K'@ D  H H ?+?10%#"&'7326537]GBa-I&@:3XB&%c@NS=@ MMMMM@" M M M M M( M M M M @2 M(M M M M(M@M( M M@ M@-M LM@MP M@ M0 M8 LMȳ M M@ MD D  ????9??2++++2++++++++2++++++10++++++++++++++++++!.'#3>73DKP'~~!HG@!JNO&*WTM (XRJ!KMH&RSR% Uai4S @ DH??10%!3 J~mm@4,-@ , M+ M*@ M' M&@1M MZ (M[@M](M[0M^M M MMسMM@\ M,M,''L&#&#&## L ##-. .#O_0@P&,'&  ????????9///]]93]9///]]3և+}3և+}+10+++++++]+]+]+]+]++++++>73#&'#.'#>7687686r  | "#! ^ !#" |  &ny}55}yn&LVyx@KPKABKPJAxyVHS M гM L ȴ L г M @ M(M M( M@ M M@ MMD D@M0@!@MO ???99//]+]]+?]2210+++++++++++++!.'#33&"TZ]*|g(\]W"}9}2*s|}6K7'T@ M  L F)M@ LF(MJ#MJ ?+?+]++++1032>54.#"#".54>325L0/L55L/0L55[zEE{[66]zDDz[6[9]A$$A]99]A$$B\9Y[..[YY\..\SO9@! MFD D  H IJ I??9/]+102+#>"32654.+RvL?~,k60=[b.?nu=W7 m3G". 7E0MM@MD""'  M F2@ MF''1M MJ,HM MJ" ?++?++]++9/10+++32>54.#".'.54>325L0/L55L/0L5&D[6$7G'>kP.6]zDDz[6[9]A$$A]99]A$$B\9KxY8  _ OV4ZSY\..\Sq'M MسM M@R M 8M @ M 0 M 8 M ( M XM@ L8 M#F)DD(H  IJI????9/33]2+++2+++++10+++++2#.'"+#>"32>54.02.,-, =~.h2("7.F/->nq2BMQ'$IE= m ," , /@ MMMM@ M& M"س M" M"@ M!M!L!@ M M M @8 MMM  M 0 M  M@HF$1-,F 0 MMطM'-@ H-J' @ HJ?+?+99+++2+210++++++++++++++++++++72654.'.54632.#"#".'7D>'8$$C3pAe'"Q+39#/1M5+G7( %\^.*$ .@-^kf*&! %3E1^g g 6!@D HH??9/10###56mHmNq.@DD L J ?+??]10".5332>53^GfC '5!!6'!Ch)Jd<[/C**C/O73K<222232=KbF77F#@ @%" M!@ M  M M M M M M Mس M MM M@ M(M@ MM M M M M M M MM!M MMM M@M@M8 M@M( M M MȳMȳM@XM L   L##LLD@%$ %%#  ????????9/93]]9]]+}ć+}އ+}އ+}10++++++++++++++++++++++++++++++++++++++++]>73#&'#&'3>7$'' #V5xNI%L&x6U# '&#g6uuq26Eyf[D63qut6 M@F M    LL     ????????·+}և+}10++!.'#>7373X0//( -vEޖLu(;BHKFUbKgLn M M@ M L MMг Mس MMд L@. M D0 L( M0 L ?????9/]2+++9=/2+++10++++++++>73#.'3<-V#8yE~Ez8#TKNjjkjN*PM M@"MM L H H?2?2և+}10++++!!5>7!5!!^da%t53254.#"'>8 &)!6$'& bM$ T@8  L M  M LS !Q `W__` W_ ???]+10+++4&#"3267#"&'7>32=B5 )CL|%Eb>32.#"3267#".0$C`3257LC) 5B=[$m<>bE%eH' 0'@%M% M%( M M ȳ M @9 MoS))' S(W`pU/ ?  W "M"W?+?9/]]q]]10++++++4>32!3267#".%4.#"0)DX.lyOK,I #-4EfB _'*EhE#  ?E c )Icq-!",M3@ MQ  U WW???10+2.#"3##46"*@-( yjd +#eZ0es0D +]@ !M! M M MQQ+--@ MS#, W(WW WW???+]10++++3267.#"#"&'7326=#".54>32C53 &BFQ0[%O.I>;&2S;!#C`=;j%MG W}t g <;  >]=9`D& M4@ Q QQ WW_????]1037>32#4.#"My5?S2y *2  #?X6*;% `?'@O XQP X ??]10]3#37#"&54632yy ,,,, "(("#((F*@X  Q X W??10"&'732653#"&54632 /*"yan,,,,c11fb^"(("#((Mr@H M( M0 L( M0 M M .RY  QQ    ?????9/9?և++2++++10++>73#.'#742-2o8B>6/68yy?7738x9GPP"D@9K $@ Q W ??]]10.576G*y )='Z M'h@C LM"%Q'' Q)))) )0)P)`)))Q   ('  W_ _W  ?????]]q9/9910++4&#"#>32>32#4&#"#w)80 y#q?6E "*/=O-y(94 yRIZ  #?Y5RI 8 M,@ QQ VWV???]10>32#4.#"#M#pD@V3y +2 y #?Y5*;%Z0&1@S!S  LW LW ?+?+10#".54>324&#"326&$B]88\B%%C\77]B%|C<fH((Hf>>eH''He>N[[NO\\MG$ J@0M M LS !QQ VWVW W ???]+10++4&#"3267#"&'#>32IQ%5B=|:W7%>y%l<>bE%QZ ZN32#5#".=B5 'CL|%Eb>>l#y=%8V:LZ +[N>eG' M 'HdM(@Q  VW V  ??]10.#"#>32w5#- y#i@   ] %+@$ M$ M$ M# M M L M @) M  MS"-)(S ,)W(((( M M@ MW% WW??99+++]10+++++++++72654&'.54632.#"#"&'70,/6!7(j[.T>)%. $+<'ogETKW" $3%HSb   '2#KMe G4@ L Q W U??]10+73#3267#".5Gy(0!3D.8K,e?6` 9Q4G ? M @ MQ Q    `W` ???]10++%#".5332673#pC?U3y1=1 y $@Y5%TH  Y@.MY   MY      ????9??9/އ+}+އ+}+103&'3>732i+ !#"! }+i2g ,ee_&&_ee,g (@o*****o)'(M&8M& M# M MسMȳMسMȳM@M0L0L( M MMMس Mг M M@. M M@M L M Y    % M%M%L%M%@,M% Y& !M& M& M& Lk& !LMMM@Mb&Y&&!M MMMMM@ M !M M MMdY@o;koo)*o*& %     ??????9????]9///]q]]]qqq]q+}]]]]++++++++++++}]]]+++++]++++]+}+++++]+}++++10++++++++++++++++++++]]q#.'3>73>73#.5c,,,  ]   },,,b7IXJ.vM*ae`(.bb]))]bb.(`ea*Mv.J  q@F YY    ????????և+}ć+}1073#.'#>7'3 o6c !$#C|*03`F?154-m*DGG E ݹ MM M@$ M L0 M(M0MYLس MгMMسM@1MY  W W?????9]9/+}+++++++}++++10++++#"&'73267&'3>7Qk*4@*7$#/59i) "& 8 -@* a-/n*bed+Y^! 6@ Y U U ??Ƈ+}10]!!5>7#5!AJK`BFEL]e.eK(^_V e%GW'X@:! M  L L M M L'$nn )r'' r r ??9/910++++++26=4>;"3".=4&#%.+.R@( %% (CT0+.Z9'/I1`#32326752. S#4%52. S#4%&7/ &&7/ &'1ŹM%MгMȳ M@a M  M  M  MM M  3(0F&,2J #&os`  s/)_oJ# J J??9/]]]]22229/93210++++++++++>32.#"3#3#3267#"&'#53&45<7#5zn,=5"DIO;&@T6yQIIss b E54&', X ?t.,b, F F @$M" Q !WU W?32??32]2210+4632.#"3##"&'73265Mjk*@-( a[ /*"0esd +#ehfbc11'ccyn&D'o$o.@  Q U  ??9/9/10#.=#53533$ @ fSGGS``$oI@$ Q UU   ??99//9/10%#.'#535#53533#3$ @ fzK~BB~K````1FUfLL@/LMLLM8M?329/32210++++++++''7U/cb0{5QQ5/ +7EQ@_2oo&&,ooo`Loo@@Fo88So`o 0ROs; IsC/s)5s! ss ??3?3??]]]]]99//]]+}]10#".546324&#"326%3#%#".546324&#"326%#".546324&#"326]K%>,]KK]_'""&&""'*sys]K%>,]KK]_'""&&""']K%>,]KK]_'""&&""'[b0G-\aa\5555555K[b0G-\aa\55555555[b0G-\aa\5555555&6_X@  15,#P0O++450P@ I0./22]10]+]%'7YYja,,7&% M%@ M# M# M @7M(MD($F'H`/?_HH!J J????9/]]9/10++++++!#".54>32!!!!!%27.#" 9Tf99gT9 G%! z+XZZW+jgjeuv9 @  n ?310&45>7;+Y 54&'+X 32A$2 2##2 2$a1%%11$$1Qr/10!! QfQr/10!!Qf_rB L@! L 0  @Hs @Hs ?++2]210++#".#"'>323267l$ =$ =!  $! $^(@O*# o _((o%o"Q""!!o OO%%%%/o@HP%%**oP)%! ss?9]]9///]+]q]]]q]3]]]333]]10]]###5!#.'#.'#>73>7Ah]h X 4 Y ]46RR55z343- ,343z55$f66f$% &V_+@  -1(!P ,O++4%5*@?O_  /]]10]'7'jYY,,0|(3?1M@> M#$3SO444 )SA:S @. L.W)))U#7 L7W=@ L=W M W ?+?+?+9/999]q?+9/]99210++"&'#".54>32>32!32674.#"4&#"326Hg !^98[B$%B[7=^ #^2mxPK-I #-58'*yC<>eH'204.  ?E c F-!",3N[[NO\\n&<n@% POO+++44II !@DQ  y??10#54673#"&54632ځ V ."!//!".RFFS#--##,,B g@ M MسM@'M@M Q QS!W"W ?29/210+++++7.54>753.#"3267#^\0E,q524GKGR =<"q$`.TC/ b TMKU c2I@& MD ! !JH H ??9/29/10+3#!!65#5354>32&'"fZZ"733#3yv0_%"F(&D!*W3wlllUTURKJEEIQUUT]G"@nn ??99//1073#3#]rrrrzz(:I4 L1@" M M( M M0 MI MG MCM?г M+س M+س M' M@6 M( M  M M  M:0B;-%F>FEF-F2-K M(@M(;B0 J7"J??9++29210++++++++++++++++++732>54&'.54>7.54632.#"#"&'>54.F&R,".:&B2ia0] E0&-*3(C10 =$=N*?eC9)8   ):**# 2IT c *9(0A,G.<$*)+ *  au @p ptt ?10"&546323"&54632c(())))((a$%%$$%%$>'E*@- M*M* M% MM@M M MM M@v M MooG43BCCCC:oP+`+++++_++o      P `  F47s00@0P00`0p000s$(H@!HB?s?(O((o(((###s ?]]]q/]++r]]]q]qr]]q]22]qr+r++10+++++++++#".54>324.#"32>"&54>32.#"32678_}ED}_99_}DE}_8W&E^99^D&&D^99^E&Xc2D(2>  + *6 %#- B[V]11]VU]11]U?gJ((Jg??hJ((Jhg_.J2J96+L#>`/f@  M M M@.M,P--o% o/1s`_0 ",)s?/]]]]]210++++32675.#"72#"&54>3254&#"'>~  D,=%T2HX-;!! .7 D X &6! 7C!, *L 5'll4/@ rr/10%#5!5!l/f$U>';F4 M@M M MM9M&سM M@K M M M+o8(o;@o55o55555o/oH<,o@.P.`.@.`.p...@H.o `   P `  @,H G<324.#"32>.'##>32'32654&#*8_}ED}_99_}DE}_8W&E^99^D&&D^99^E&(6T<SU!.'.+!  [V]11]VU]11]U?gJ((Jg??hJ((Jhz*Em>?"3L2 +wZs?10!5ZWWD @ss!s s?102#".54>2654&#"7**76**6&&&& &7""7&&7""7&#$$#4n Z@: r   o  @ ?  @H P ` p  r  r?]+qqq9/10]3533##5#!!4ll0ff4BM Mд L@ M MLس M M LسM M M MгM@M o o!s|s ~??]22+10++++++++++++++3!&7>7>54&#"'>325)7+& 1,K-JBP$$&  M0F$* @$? ,C*! ML@F L M oO_@)H''oo,p   s@P$(s$~s|?]?9/r]q9]]+r10++++2654&+532654#"'>32#"&'7-!3'!,7- H#&5!1"#(@. F/zF' C(. 2!." K ]C<(,@M M M M/?/]10++++'7<<6MP 5@ Q QQQ W  ????]1032673#"&'# *1 y$i=);x +9# 5#U(GJ&@D D   H ?10.54632#.#*# ps4w/m $ n gemr  vB3%@ o 210#"'732654&/>73 <<0%   P'&#2 H   $/4 (@ Lo ~|??910+>73#'/(LD\2k*w F(=PMM@$MLMo  o!ss?]]10+++++#".54>324&#"3261E))E22E))E1^0--11--0-H33H--I33I-4==43==%5 &xx$Y'ng&p$A'nN&Y'ny'p9 #/d@0MM M M M@# M  MM$y*D!F 0-y'J??210++++++++267#".54>5<'34632#"&#@#"%_27.54>323.74&#"326!?AC&%C@?!((q; <*Gj)P**Q(jG*))5YY@K MM L DL  HH H H ???32/?99//329/+}10+++%##67!!!!!!30vaBC022*W*SjgjCHPT)93b:/ M/ M) M)@ M6 L6 M<5/M.@ M)M! L!@ MM(ML@8M$#58 45<,F;$'J?441J  P`8 ?]]]]?29/2210+++++++++]++++++#"'732654&/>7.54>32.#"3267 <<0%   5\|G+F4"%Y4-N9 4P8CT"hH'&#2 H  W]0 g>^>7\C% g S(&(CP@  PO++4S(&(@ 2 P O++4S(&(io@  P O++4S(&(e@  PO O+++44&,C@ PO++4S5&,@ 3PO++4%&,i@ PO++4>&,@POO+++44$U@3 M L LF &D%H H $"H??9/]++10+3>32#"&'#73#32654&#"Q0l*Wg88gX*j0Qπ $}z8 )W\ZY+ /__tv~S&1u@ -PO++47&2C@ +)P"*O++47&2@ .*(P")O++47&2i@ ,(P")O++47&2u@ 5CP"4O++47&2@ *<P"4O"(O+++44HR iMM M @*MMM      222292229210++++++''7'7GGGGHHHH7%0 M@ M M  M 0 M M@ M(@ M$ MȳMس M LM M@JMM M(M  )*   L  &F2 F1*),!J ,J  ?2?929ԇ+}ć10++++++++++++++++++#"&''7.54>327&#"4&'32>5[zE3^(:I>',6]zD2\(:J>&- /?0L5.A/L5[Y[.L7P-QY\.K7P-~QW=n!$B\9+J $A]Nq&8Ch@ PO++4Nq&8@ 8PO++4Nq&8i@ PO++4Nq&8@.P&OO+++44n&<@ ' PO++4TPF@) MF0@!DD D HH  ??99//]+102+#3>"32>54.+RvL?~~) &=-G00CMlv=W7kl /$". M\?A>г Mг M M M M M> M9@ M2M$(M" M! M L@-MM'S-SSA3Q5@0W;4 U ???]]]10+++++++++++++++]#"&'732654&'.5467>54&#"#4>32 "!(^h"K# #*(12')/,:6w8U88Q4e-:' %0 QYd $ -!(:+'(D=4U>",;((&DC-@ 42P3O++4((&DV@ '31P2O++4(&DiJ@ 51P2O++4(&DuJ@ >LP=O++4(&D?@3EP=O1O+++44(&DcN :1P+44(28IT@ < M< M@MR MLM M( M@L MT S,??$JS V56GS$U9W ,,,W?)))WBTTTU` p  OW OW2W???9/]]q]q]q?2]29/10++++++++2>32!3267#"&'#".54>3254.#"'>267.'.#"%4.#"BN"X1jxOJ-I #-5:V ']50O8$>O,4 +*GY@*7  '*"8'*((*&  ?E c )@.->'& b= 7+!-!",035@M M0M( MM@M M( Lش L Mس M@( M "0)S6#&W /,W 3 ?]?9/22210++++++++++++#"'732654&/>7.54>32.#"3267= <<0%  4L2$C`32&''7&'77<'.#"32>%&SM&Qud@ #1P"O++40&(&RCa@ #! P"O++40&(&Rr@ " P!O++40&&Rig@ $ P!O++40&&Ruh@ -; P,O++40&&R`@"4 P,O O+++4444 ;@!XX `p_ XrX/]]]9/10#"&54632#"&54632%!!e,++,,++,0#&&#"&&R"&&"#&&f0&0"*ǹ@ M MM  MMM%M%@ M(M Mг Mس M@= M( M M M&%#S ,#S +%&(W W ?2?29]9910++++++++++++++++#"&''7.54>3274'326%7&#"&$B]8&D/>3%C\7L;/=3x)?D &>E>fH(=/B$^9>eH'%=.B#^91'_Q2']G(&XCG@ P O++4G(&Xq@ P O++4G&Xi^@ P O++4G&XV@(P O O+++44E(&\_@ 0 PO++4MG&#l@KMM M M M M LM MS%Q QQ  $W V !W ????]10+++++++++#"&'#7>324.#"326&;V8&=yy2;`D%|$8%+ 5C=0 ZE&\>@ 1 P)OO+++44h&$@ P O++4(&DJ@ 31P2O++4&$a@ )P O++4(&DaF@ 5?P1O++440 M@ M M M M@B ML $%D+L 21H  $!(?????9/932?9/}+}2}+}10++++++3..'!#>733267#"&54>7S; ;'FCB#w#BCF' # .>8 /5YY)P**Q(oJJo Q-&&(49Gz@L MM M'@/=QP  %-QI67ES%H=W-@W** :W 6W73W??9/29/]2108++++23267#"&546767#".54>3254.#"'>275.#"7+/N7#'& b=+!9b&&@ D(&!P 'O++40(&Fp@ APO++49b&&i@ 1*&!P 'O++40&Fi`@ '!PO++49b&&b@ .+&!P (O++40&Fb\@ ("PO++49b&&_@ 0'+!P &O++40 &F_a@ ("PO++4S&'_@ " PO++40&G0K' L M@ M"Q)@0 LS (?oUp/V%W!WW ???]]]q+10+++3##".54>325#53573267.#"DD$m<>bE%7!!!!!!3267>8  W  # .-&) kij Q04-85سM5@ M1 MгMس M@6 MP##.S::8S S9 )W)...U W) 3W??9/]q]29/]210++++++4>32!3267327#"&5467"#".%4.#"0)DX.lyOK,I"# /;;%EfB _'*EhE#  ?E c  Q+(6)Icq-!",S(&(_p@  P O++40 &H_`@ )-P(O++47l&*i@ -($ P%O++40D&Jis@ 0," P'-O++47l&*a@ ,(2 P$O++40D&Jaj@ 0:" P',O++47l&*b@ -)$ P&O++40D&Jbn@ 1," P'.O++474l&* /& P+40D&J@ :-3" P',O++4S|&+i@  P O++48&K@  PO++4R@+D  D HH ????99//]3310353!533##!##)!Q~-~QQ~~Q-[ZZZZ[3` D@' Q !Q /V W????]]10>32#4.#"##535735?S2y *2 yDDy]a #?X6 *;% i]QFZQB&,u@ PO++4+& u@ PO++4*h&,@ PO++4& @ PO++4+&,a@ PO++4& a@ PO++44*@ _D ???9]21033267#"&54>7#V~ # .<:#'K  Q+$$ 4%4@ X _ Q ' #X  ???9]10"&54>7#33267#"&54632<9#"y # -:,,,,+$$   Qp"(("#((G&,b@  PO++4N @O_Q ??10]3#3yy ?LS&,-(?F&LM&-i@ PO++4F&]i@ G P O++4S4&. Ѵ&P+4M4&N Ѵ$P+4S&&.nHM% @ M M M M M سM M M@' MM M8 M( M0 M\; M @3 MQ 0 !  ( MZ>QQ    ????9??2]]+]]_]++2]_]+++10+++++++++++>73#.'#36509=;CA838:yy99:5>A=EMO"B?8 P &/@ PO++42&O@  PO++4S4 &/ P+4,4&O Դ P+4S &/ <P+4K&OS &/b q P+4K&Ob UM M@! M D  H ??9332210+++737!!l~x(8JC?7?=SRm"ISM@$MQ  U V??99//9232210++777.=byH&n6G*;1D%M8 d)='S&1@ PO++4M(&Qj@ PO++4S4&1 P+4M4&Q !P+4S&1_@ PO++4M &Q_\@ PO++4&1}^&Q^SE @ M M @P M M(M M M8MDD" D!H@ M0 M( M0 L8 M_ L M M@ MP ??9]++++]+++++?/]2210++++++++%.'#33#"&'73265#PVU'|f(]]V#})B0+ "!7|{s.*r|~6S1I1a-+MF#4@ MQ%Q   $ UW ???]210+4.#"#>32#"&'73265 +2 y#pD@V3'@0(  !*;%Z #?Y5/F/Z))7h&2@ *(P")O++40&&Rh@ " P!O++47&2a@ ,6P"(O++40&&Ra`@ $. P O++47&2e@)*,P"-O")O+++440&&Reu@%"$ P%O!O+++44Sq&5{@ *( P)O++4M(&U5@ P O++4S4q&5 Ҵ3* P+44&U |P+4Sq&5_m@ )- P(O++4M &U_,@ P O++4&6e@ "20,#P1O++4%(&V8@ .,(!P -O++4&6iW@  40,#P1O++4%&Vi,@  0,(!P -O++43Fӵ&8M@M&8 M&( L"س M"ȳ M" M"г M@3 M  M  M@*'=329---CF$HDCF G306@ M@ L@D@ HDJ'@ O_J?]?+99++2]29/]222210+++++++++++72654.'.54632.#"#"'732654&/>7.'7D>'8$$C3pAe'"Q+39#/1M5hd <<0%   La%\^.*$ .@-^kf*&! %3E1Tc  &#2 H  " g%3CAȳ M=@, M) M)( M&0 MB( MA MA@ MA8 MA( M= M<@e M&( M&8 M& M M/....?B  S?? ?@??E5S ((D/2WJ#:#+pW B ?]]]?99]]2]9/2222]210++++++++++++++++#"'732654&/>7.'732654&'.54632.#" <<0%   :IK00,/6!7(j[.T>)%. $+<'QK '&#2 H  e " $3%HSb   '2#@J  36!8@D #HH  ???23310#"'732654&/>7##5!##4 <<0%  ) '&#2 H 'Hmm G3.H@%() , !QQ/, V!U(%W   ???9/222210#"'732654&/>7.573#3267 <<0%  *9"y(0!33"'&#2 H  !"8K.e?6` 6&7_^@  PO++4G&Wu M P+4 6<@ D D H  HH??9/?9/10#3###535#56Շm]$]mGH@* M M Q W  VU??9/]210++73#3#3267#".5Gy(0!3D.8K,emQ?6` 9Q4Nq&8u@ '5P&O++4G&Xu_@ !/P O++4Nqh&8@ PO++4G&X_@ P O++4Nq&8a@ (PO++4G&XaW@ "P O++4Nq&8c#P+44G&Xca P+44Nq&8e@)POO+++44G&Xek@&P O O+++44N4q,`@0( M  M)*P$$! D.D  - )&( L LJ ?++??]9/99]210++"&5467.5332>533267>8&FfB'5!!6'9?## .-&6*Id;[/C**C/OQz% QG5 +QM@% M()P##Q-Q,(%W ???]9/]210++"&5467>7#".53326733267>8+?U3y1=1 y # ..&)$@Y5%TH  P&:i@ ($ P %O++4&Zi@ -) P *O++4n&<iv@  PO++4E&\iD@  ! PO++4*&=t@ PO++4!(&]<@ PO++4*&=b^@ PO++4!&]b&@ PO++4*&=_f@ PO++4! &]_2@ PO++4M"@ M Q W??210+2.#"#46"*@-( yjd +0es4&6 ;2,#P+4%4&VZ ݴ7.(!P+4 46&7  P+4G4&Wm ! P+4F @  Q  W??210"&'732653 /*"yac11fbq) @  D  /10'>54&'3 Rq=50*I) 1JU @@M?OH I?+]229/310+'77Ò0bc/J5QQ5+wZ7\^ @o o  s?]10".=332673 6(Q"!PS\%6# '' EL}Z X X?/10#"&54632,,,,"(("#((RC/@ q qqq?/10#".54>324&#"326/((((=(())D4 % @ M +210"&5467>733267>7 i # --&' Q!BU@5(MMM MM ?3]222]]10+++++'7'7ރ:v9uԒ,?,&:C@ '% P &O++4(&ZC@ ,* P +O++4&:#@ &$ P %O++4(&Z@ #+) P *O++4&: @&8 P 0O $O+++44&Z@ += P 5O )O+++44n&<CU@  PO++4E(&\C%@  PO++4X>/@o  ????]ć+}10 #>qvK,S(@oo@H s~s|??+]104.#"32>'4632#"&''SKKSSKKS/"J67J"0bjjbcjj4U/@ o o | s ~?3?9210;##5#5>736dQ00Q+15R^H%GYY;@@=%,Ft M M@@ Mooooo!ss| s~??9/]]q]]10+++#"&'732654&#>73#F(?,"F/",#M\`Q/#K ":94M%B#,M ##@ M M M LL Lг MM@- M o o!%s s!!s |s~??]9/]]q]10+++++++++"32654&'632#"&54>3 )X&%3 $6%LN%Eb>E[27'5 !,0&XP7W< K*!4J )@o  0@n ~s|??]10>7#5!#^ F.).(^4\9QFEVa1,O)5 MLM L@ M L  L M  M L L1@M(M% M%(M M@@ M M M0o o@H$o*o?o73 ''-s|!s~??9/9]2+]210+++++++++++++++++++#".5467.54>3232654&'74&#">OJQ.;# $$6#(7!%&$1+| !(3A!' /*) &.-!  " 3I @  M MM M@` L M M L M M  L ( M 8 Moooo!s s~s|??9/]]q]210+++++++++++++276&#"".54>32#'67" ' 5&4"$6%MN" 37&:C!-/%YOn|KPSo/B CUp%Fq#Mr!JsOtIu!-@ /+M M@A L LM M "# #  W# # # # !%/"Q . #(W@ M!W ??+99]299+}10++++++]%#".''>74>323267'>54&#" T6/C,7*00A&*9#sb\1:E" /!.B)'># E`<2A!cT&r9~C$3 ";.Ce!3?@$  L ( M @ H 3!5-41!!'  ??9/+10++"32673#".54>32'4'.#"3!25 0|IO09ER\0Sl??lSSm? 0|HH}/Q 38A6 3$9aKKb99bK 06:0 $?'nN&?'nj&$R'nQ&tR'nf't#R'nf&qtR'n?'ts$F'nV&qF'nw&qF'ng'qF'ns'qp$P'nc&r#P'nu'rq$N'nH&sN'nf&sN'nZ'sN'na&ps#N'nZ&qs#N'n[&rs$M'nQ&uM'nq&uM'no&pu#M'nf&quM'n='usM'nl'ut&"2l0 M) M) M( M(@ M M@ L.S S4S&3W++W! W??9/210+++++++"32>7."'>32#".54>32.3*:$A/-<$?b>&P#XrBBmQ1R739UU8"ABE&m&EBA#j12ܩjmQQlSv$@D D H?]10#!#v~~J"rس Mж M@4 MP" P PA 0 H H?229/32]]]]2]2]]]+10++!!5>7.'5!!w9n*Y-r;9r,.46/KJkQURQCNlCKN14Qr/10!!40QfX>nv T M M M M @ M[ M@ MM ( M@2M t L@   ???93?/9=//]+}/+}10+++++]+++++73#.' oi?#W];#<=A(|QKC 6S @0LL 'o/88?8o7s4 '4s$s*s4/9]910++32654&#".#"326#".54>32>32#"&X!2!!(e)!!(<?+6**6+??+5**5+@+C%%##%%(.%9'(9%//%9'(9%.Gy)D @ H rr?/+10463:#"#*'53265fm 5-fn 5-/hqi;1hqi;1!N796@ M( M@> M  MMM20339 $%% %%8%$32* tt*t!/t92222]]10++++++]".#"'>323267".#"'>32326751/ S#4%52. S#4$52. S#4%51/ S#43%&6/%&6/&&6/&&6/4?X M@(M     rr /22229910++!73#3!'7#537#4 CK-e;CK.f;)Yfrf)Yfr4Y6S4Y6!S  |@ dnn    !  سM @# M `  { M@ Mk{/]]]++/]++93339=/333/]/]10].'>%>7."; <""< ;#A=::=@##@=;;=A[8X,,X89X++X97`YS))SY`77aYR))RYaM0'IIMh#G@* SQ%Q_   $ UW X ?????]]210!#37#"&54632%2.#"3##46Zyy,,,,&5'<-yj "(("#((A b@3#eZ0frMhM!H@+( M L!Q# Q"V!U  U W?????10++2.#"3##46.57$&5'<-yj6G*y b@3#eZ0fr)='Z MM&IM>&I/ > 0  /,S=ox/5xB=x C=xU5px%F5qx#M6rx!J5sxO=txI=uxSoU/UBU CUUpU%FqU#MrU!JsUOtUIuU@ H?+10#5R4  10#"&'52>=$/ 3#/ F =\   ?10&45467>?=)\ :T9 # H/10#5TKvO> /v> /"$/>#E]vU>>/v>?/v>@/%vW>^/v7>`/s@l>1Ar~s-~t-%s@x>I|s@'l>l>%s @&x>x>'@&M& M& M  L'@ M  MMM@7 M LS )Q!QQ(V"%W !WW ?]??]+10+++++++++>32#"&'#535734&#"326=%7W:%Eb>cG& MQFZQJY Z  .;z@  M5M2@ M, M)@/M3F +F=F/D"D< /H`!_!!!"&J ;8J?2?9/]]9=/210+++++4>32#"&'.232>54&#'32654.#" ElBCpQ-0-B;2l3,)a8 'C1VLoWMQ)9")>D ,H51FR?kk @$ $ *!;/a*5# SP":@  MF$DD#H H J ??9/+1032#"&'!:7>54.+DKvR+*j/ 9+2G-@ J5U=qo k * $. M$!T@6 M M LF/?#DD"JJ HJ ??9/]]+10++>32#"&'!!4&#"326=%7W:%Eb>cG& efJY Z,"\@=!M! M! M LS$QQ #WW + ;   W ??33]?]+10+++#"&''>7>324&#"326,%Eb>74.#*32>*g/N,e84H+ &H8"rsqq R*$/ /A!:@"M LF# "J J JJ??22++102#".'732654.#"'>O|W.+H6%"W3>32.#".#"3267N|V.5\|G#4A9-  # W6.M9 4P8CT" )8F0]WW]04* _ B >^>7\C% g 09q+J@ #$-@ LS,#W$ W' WW@ ??+2]2104>32>32&#".#"3267#".0$C`<=5) !9GJFS<Q+CcA :eJ*5) Y&YQN[ d )Ie )t! MM@M M LгM@$M# L#F+D D*) &J J ??2+10+++++++#"&'.54>32232654&#"8gX*j0,*aJr?Wg82#}z*[ZY+ A$ $?E)Wtv~+("V@ MMDD$$@ MF  #H HH??9/]]+]10++5!#"&54>;52675#"2l/j*+RvKD, @-G2+8 JkX oq=U5 .$ * 0!oMس M M L@ MQQ#@ LS "WWW U???+10+++++!5!#".54>323267.#"$m<>bE%:V8%=LC) 5B=e &Gc>32>54&#")9# lW9UI-!0 .3EN>^A;[? !0- B9"0'#B;2 !EF `   'lN0ZE)&AX7/&  $,1@M'3" 1@DD  H_ H H ??9/]1035!5!5!5!5!"WkikK5 )'M' M&@6 M M M M M( M M)FF+ !F*!Ho$M$J @ L J?2+?+9/]210+++++++++.#"'>32#".546732>7 lm5," (9F([U)0UuDClL)SL-@,qg e 7`L\\-,WV hUe 4C#/361M#MMM1 M( M'M'@N LM M M M M L66)( 8/F F74H`666%o) )),J%`  J ?]?]]9/]229/10++++++++++++++"32>7#".54>7.54>32.#";p(F3XL70' &0:D%CkK($033&C\6Co (U78B!6C!46 ,":/ e 3O8$9, O,0H0e.'!(hEM@.M M M( M DDH HH?9/210++++7#"&'73265!!!!(C0+ "1I1a-+ji7/_@M%$-@ H- D 1M@ MF0(J@! -JJ ??9/+++210+"326753#".54>32>32.#".kq5O5!0~|QK|W05\|F&>A8-  YVv8]B% 0\WW]03) _1#G -@1'M' L' M' L#M# M# M# L# M M M M@7 M*D DL L./. J%????/99/99އ+}އ+}10+++++++++++++2654&''&'3>73#".5467S!"-ED1_88^1"@AA#%!(<()<("&V>>ymmmnJ|=;R&3((3&R;M2)M@) MQ"Q$+QQ*#W WV W ???9/?]9/10+".=4.#"#7>3232653Y=S3'/ yy2@Q/+65+y3S ">X53*;% ` #?Y57OCCO5X>"S@  FJ ??21033267#".5S~&2%9&8L-75b 6P5 R I@-`  o  D D`@ 0 H ??9/]]]]]10]]333### dddd\:S#¹" M M M@tM M M M 8 M0 MM( M0 M M M( M0 M0 M]/?#0@P%D D$#J  ????9?29]]2]]+10++++++++++++++++!.'#3>7>32&#"DNR'~~%\. %-(:7 0J#*[WO(XRJ-p1"W3W+!Vbi4M&Թ@)M L M( M M L M M M M @ M M M M MM  M M @, L  M0 M(QQ'#W    ???9??2+2+9+++210++++++++++++++++>73#.'#4>32.#"42-2o8B>6/68y'A0( "?7738x9GPP"D@9L/F/Z&- .X@:Q`  0 @ P p  U U V??9/]q]]]10]373#.=# Oy[[6G*O:R d)=' )@+(MM@ L M M M@ M M  M  M@ M8 M(M'@ L M@S M0M M 0 M MY   Y  / +"*!W () "%    ?????99=//]+}/]+}10++++++++++++++++++++]#.'#>7''7.#"'>327t!=5,  '$ |16:nf#  , .#<~* *Kf=l3I0 G$l3I0NZ EùMгMس M Mس M MM@M  M M@' M MD F M@ LO_ M@ L@PH ???99]++]++?22210++++++++++++!.'#"&'7326533&"TZ]*'B1+"g(\]W"}9}2,E0a-+*s|}6KMG,@ QQ VWW???]10>32#4.#"#M#pD@V3y +2 y #?Y5!*;%Z7!f@ (M8MM@/ LFF#FF "H`/?M MJJ ??++9/]]++10++#".54>32267!"!.5[zEE{[66]zDDz[6Ui l iWUj  i[Y[..[YY\..\o``on]^m7!3(M"M@ LF* M*F5 @ M F  4/M/ M/J@%M% M%J ?++?++99]++10+++#".54>32>54&'332>54.#"5[zEE{[66]zD5`* tJ#'5L0/L55L/0L5[Y[..[YY\.0  aG-xL9]A$$A]99]A$$B\0Ov ,sسM@ M MM@%M MMS!S.'S -$ M$W@* M*W ?+?+10+++++++#".54>32654&'34&#"326&$B]88\B%%C\7-Ml)&|C<fH((Hf>>eH'*A  3P# M-N[[NO\\6';y$ M M@/MD=% 2F(F <"M"J%7M7 L7J-M- L-J ?++?++99?+?9910+++#".54>32>32#4.#"32>54.#"4XwBAvY56Zu@5b) U8HX/ ), 2H,-G22G-,H2[Y[..[YY[.$'He=M2D) +mE9\B##B\99\A$$A\0G'3U@% MQ5% (S.S 4"W%+ L+W1 L1W ?+?+99??9910+#".54>32>32#4.#"4&#"326$AY65ZA%%BY5*GK+?L*y!! |@8<=@98@>fH((Hf>>eH'&BZ5((:' I+N[[NO\\ +E@&' L'F- D!DD,!H@ J??9/+10.54>32+#"#32>54.+*a"9LUZ*+QwK? (=-F1.?K$ $*:% nu=V7O /$". MG&"1w@ L M M M M ش L @+ M# L#S3Q,QQ2W/W +(W????]2+10+++++++>32#"&'#4>32.#"4.#"3262;`D%;V8&=y'A0(  $8%+ 5C=&Ge?0 ZS(x Mس M@7M L   $M$F*DDD) *HH??99//2]+Շ+}10+++2#.'##3>"32>54.HC:@A>;5j~~(( 9/F.,>noF^Wly99rcOPk ," , /ܹ%@' M!M M  M& M%(M% M% MM M L M M@ M M M MF#1@-H-F_   0 0J( L(  MJ ?2+?99+]]+]2210+++++++++++++++++%267#"&54>7>54&#"'>32!A\% (7G+5M1/#93+Q"'eAt~3C$$8'>^g g^1E3% !&*fk^-@. $*.$)@" M"( M" M L M? @) M  M M M0S+'S/ ? O  *سM@$ MW$ L$ LW ?]2+?99+]2++]2210]++++]+++++7267#"&54>7>54&#"'>320KTEgo'<+4).%)>T.[j(7!6/,W eMK#2' bSH%3$ " M M гM M ش L M д L M L гMȳ Mг Mȳ MسMȳ M LȳMش Lг Mس Mȴ Lг M@ LH H?2?2+++++++++++++++++++++10++.'5!!!!5>:72,129;7a5;=c"GD<Qk8<>@B@kZ@DEEG +U@8M%D+DD@H@H--(J "JH??]++]2]q10+.5#".54>324&#"326766G*& 4&*>'1C*  )=' (7!8+7O1 #*%' GE' M Mس M M@5 M M M M% Q("W _ U W ???]10++++++++#".573#3267#"&'73265<' 4F+y(2!;ET+  8Q4e?6;VZW$% Z2@DF @HH??9/10".54>3!##*)d0JZ+OJ( #8B! kJG#J@- M M L  #Q$U#W W ???]3210+++#3267#".54632.#"~(/!3E.8I-jm&C,)  e?6` 9Q4`frd +# E6*@DHHJ ??9/10%3267#"&5#5!#a"  +`M)+-aabBkkN!(@@DD$*D)#H@ L J ?+??]10".5332>532654&'3^GfC '5!!6'A#$r 0$!Ch)Jd<[/C**C/$  /'54&'3#pC?U3y1=1 Nj ." $@Y5%TH!  ,&1'w! M MF @)M(M M #) F ( HH HH M MJ ?++??]99+++10++".5467#5!32654.'5!#DxZ4D13%l[[k&21E4Zx+U|QT3i\8ES1lvvl1SD9\i3TQ|U+N%S M M@M"#F'D&@ LJ "J#??+?]10+++2#".5332654.#"'>B\;$KtOFfB '4]S 2&&0ZQNb8)Kf>`1E+{<\>i@W LJ(8 L D J?322????932}+}9]]+}ć10]>32.#"#.'3> ,$*@8 %R&~Ez8#U-<T'T?GjjOK3oGE(@! M  M M@MM( L M M@Q M   * #.R#Y$$$ $$@P`dt.RY)*$#W  W??9??9އ++]]q]++]210++++++++]+%>7>32.#"#"&'73267&'3 &=@1  !>%%fT6#049i) "&EG9< [k]YR a,/m*bfc*b@3M L H H??9/Ƈ+}ć10+!!5>7#53>7!5!3;&DsJ+o&HU.75h0jO2w?]5^$j]!f=]! n M@4 M    Y     U  U ??9/32]և+}ć10++3#!!5>7#53>7#5!=#d0`7 L0E,M"D aF$R+M"<b+& M M M M M س M M M L @ M@ M M0 M@M MH M@M M8 M@PM8 M& M L L$F\KXIH I? -*!J H?2/?]9/]2]++]2]_]310++++++++++++++++++++++++>7!5!#".'732654.+51/+-48bo*MkA(G:+ &'07LT3F)"551jL4:=aZ8Q4 f 2:". H/3*͹)г M( L'@ M(M M L(@ MM M M9$@,% M%س M%@3 MR%A%%!C*S**8 ML\F+!%H#*# J ??9/]]+2]2]]+++]210]++++++++++#"32>7#".5467.'5!!")F3TL70'& +:G(AlL*ob85,+/1? .":2 f 4Q8Za=:4Lj155%G *l) M( LM% L%@# M%!$ S?O+*%U# W??9/]922+++10++%#"3267#".54>7.'5!#p$%?/JH,U*277>54.'5>7#5!.+:# 8)*J9*MT-+C,#@Z6#0al".   K%KeP"S)&6'/=(  (%,u, L M MM M L@ MF  F%-$J** H??9/10+++++++3#!!&47>7#53>54&#"'>32'T2)=<$-h#3;-2' <.7A%sq(F$[0-*g  $<52[ D&4,V e 'p'M@> M( M L M MMF) D%D  (H%% HH J ??9/]+10++++++%#".'732>54.#>7#5!! !CiH=5) Y7*9#ErT _/P:! j '!3"Iw>ii),* s '=@ S)!Q"Q (U##!UU W ??9/210%#".'732>54.+>7#5!#32xt;1$ +3*$-K9B M 7X>!PX e 5X.aab+A,# M"ȳ M" M! M@? L( M M M M M MQ S%_U W ??99]210+++++++++++%#"&'732654&'.573#sgEXN11/.7 5&z$1%;*KMe ! ':-d!'&4MG 9@"  M LS QUW??9/]+10+4&#">7#>32C< ' +M:!}6\zDy"jB:]A#.;D)8K3MoR:  =W]G_]G'__)GG@% Q   UU ??9/9/]10333#3###535#)ssQ[h[Y[hIS&''=_*S &'']_0 &G']S_S'-"/SF&/MKF'M&OS'-1SF&1MMF'MGQ&$_@  P O++4( &D_O@ 26P1O++4%&,_@  PO++4 & _@  PO++47&2_@ )-P"(O++40& &R_g@ !% P O++4Nq&8_@ PO++4G &X_]@ P O++4Nq&8!@&P4O(OO++++444G+&Xe!@ P .O "O O++++444Nq&8@.P3O&OO++++444Gc&XU@(P -O O O++++444Nq&8@.P7O&OO++++444GM&XV@(P 1O O O++++444Nq&8!@.P4O&OO++++444Gc&XW@(P .O O O++++4440'%M%M% MM@6M M  M 'S S))S(W'''U/  "M"W ?+?9/]]q2]10]+++++++#"&5467!.#"'>3232>7)DX.lyYOK,I #-4EfB '*EhE#  ?E c )Idp-!",&$!@ 'P 5O )O O++++444(+&DQ@6=PKO?O3O++++444&$@ '(P )O O+++44(+&DR@=>P?O1O+++44h&@ yPO++4(2&@ WU#PVO++47+M&@ L)(P D-M@( LF, #)J# J ??9/]]++]210++"32675#53533##".54>32.kq5O5!0hh~QQ|QK|W05\|F0K6#&YVv8]B%`ZUUZ 0\WW]0 g0FF"3@ M MسMسM@MMM3#1Q55 *@ L*S4#U1@H11-'W-W W??9/9/++2]10+++++++3##"&'7326=#".54>325.#"32675#5II0[%O.I>;&2S;!#C`=;j%y &BFC53^BO|s g <9  >]=9`D& gWGMG YO7l&*_@ 2%) P$O++40D &J_k@ -1" P',O++4S&._@  PO++46&N@ PO++474&:e@!( M M F1M1 L1F<'M'@ L'F;6J"J ,J ??]++++9/210++3267#"&5467#".54>3232>54.#"?3:8)# .>8'E{[66]zDDz[65L0/L55L/0L5[b.#'+Q-&7.[YY\..\Y9]A$$A]99]A$$B\04&)5T@5 MM M  L&'!S*S70S6- L-W&#3W ??+9/210++++"&5467>7.54>3232674&#"326J>73T<"%C\77]B%C:## -JC<eH''He>Xx$ QN[[NO\\74h&O@ =;P!325>54&#"~4mU:cI)XL&4D UjQ!w9KcCGL S&1C@ PO++4M(&QCL@ PO++4$(4# M M @M L LG/G)%'L   L56(%'&K,2I2!"H 2 2 ?????9/9329/܇+}܇+}10++++#.'!#>7&546323.'74&#"326!>?C&$B?>!:((; X; :Q(&DR@3;PNOAO1O++++444&@ PO++4(2(&@ 'WU#PVO++47&@ 31 P2O++40&(&r@ -+ P,O++4&$d@ "P !O O+++44&&D@ 82P7O3O+++44&$@ 'P O++4(&DG@ =3P5O++4S(&(I@  POO+++440&H1@ /)P.O*O+++44S(&(k@  PO++40&H\@ 4*P,O++4"&,@ P OO+++44 & @ P OO+++44&&,@ PO++4& @ PO++47&2@ /)P".O"*O+++440&&R7@ '! P&O"O+++447&2@ 4*P",O++40&&Rc@ ," P$O++4Qq&5@@ /) P.O*O+++44&U@ P O O+++44Sq&5j@ 4* P,O++4M&U'@ P O++4Nq&8f@ !P OO+++44G&X6@ P O O+++44Nq&8@ &PO++4G&XY@ P O++4F4) L%@ M M@ M(M%@ M# M@-M M MF! LF'6 15$$ H ,2J1,5@ MJ?2+9/9=/++10+++++++++2>54.+532>54&#"'>32#*.'7R4cM.&:H!4,&B1F54.+52654&#"'>0Q;"6332#4&#"#S,NMi@PM B *Mi?SeW0E(5B+ M*@ M!(M! M L M M M L M@6 MSB(0&Q(32#"&''7&45#".54>32573267.#"32654&#"*5'+>&;KM>l8;]A#>eH' PZ) Z"+'&.~+;@M M MMMMM L6 M2 M M M M@) MFF 1F==&F%)F"7F<J44&,@ M,J ??+?9/99]2]310++++++++++++++2654&'3#".5467.546732>54&#"VB;z !A@"GpNOpH"@A0# {;B!=-]IH]-<C:&?+(D/.*# Z<2O88O27!5!!^d`$r(A/+ !kW`a)X$s@b1I1^)' O8/j!F Q@)M QY! U U ??]և+}210+!#"&'7326=!5>7#5!AJKET+  BFEL]e.pT[W%#K(^_V e&$b@ P O++4(&DbD@ 61P3O++4S3(%c@; D!' D&Hp?o H H  / ?  /#?^]]?9/]]9/210#"'732654&/>7#!!!!!#] <<0%  W '&#2 H 'kik 033>}@ <M<( M(гM(س M(@2 M( M Q4S.&#@>'S?-*W14U&&1 1 9M9W ?+?9/210++++++#"'732654&/>7.54>32!32674.#"F <<0%  6P5)DX.lyOK,IQ0G'*'&#2 H  !.G[4EhE#  ?E c [-!",7&2!@-4P"BO"6O"*O++++4440&+&Rq@%, P:O.O"O++++4447&2@6(P"EO"5O+++440&+&Rs@. P=O-O+++447&2b@ -(P"*O++40&&Rbb@ % P"O++47&2@45P"6O"(O+++440&+&Rp@,- P.O O+++44nh&<u@  PO++4E&\E@   PO++4E%^ M M M@# MS%Q&_% "WW ?29?]10++++7>32#"&''7&45732654&#"*5'+>&;ML>oy!! !!g )9#":+2*W9 "+'&ME*7$M$ M$ MM M M M M M M&@,M%(M1S'&$Q7Q  8W74.W%$!W' ?3??322]10++++++++++++4.#"#>32>32#"&''7&4532654&#" +2 y#pD@V3*6'+=&ox!" !*;%Z #?Y5 )9#":+2*W9 1"+'&E)@  M( M M M M L@4 MS@#`###)QQ`p*_U) &W W ?29?]]q10+++++++7>32#"&''7&4573#32654&#"*5'+>&;ML>oy!! !!g )9#":+2*W9 veG!+''0e /<2 M2 M%@ M M M  M  M&M%M@>M 6 Q66=>S((>/>O>>0S= W - W #_7:W63W ?????]]]9/9=/10++++++++++4&#"326#".54>3257>32#"&3267.#";B6 *CKK(>bD%&7U:$Eb>'KLB* 5B<MZ [ &Ge?>eH'  'He=?eH&P[+ Z0Ge /<%M@(M MQ66( LS>@> >p>>>>0@$ L0S((=7:W -63W #  W W?2?32??32?32]+]q+9/10+++4&#"326>32#"&'#5#".54>323267.#"KC* 6B;K'>bE$:U7&>y;&7V<%Db>(K?eG&MY *["@" M M M M M@ M M @y M ML   " L  !   s  ? O   $#"!H     ???2??99//333222?29=///]+}ć/+}/}+}10+++++++++#.'#'7##>7373730c8]MTQ 'FCC#u!9N= SH2%Jo)Q**S'oJG6Zhe7o'2q0M*ȳM @M  M M@ M M@ M1 M+ȴ L+ M+س M*г M*ȳ M*г M*س M@ M M( M M Mг M L@ M%,+&'&&s''''@ H''4(F3+, @(M.J'&"0M( M? J ?]2++2?2]2+9]2299//+]+}ć10++++++++++++++++++++++++.'3267#"&''7.54>327&#"6%  DV" *9G)'%T$RX5\|G)Vi&*,L8! g* g a^(yW]0QjDl!>^0e&-@M-0 M, M, M)M@H M$+*%$%&%%s&&&&&/'S.+W&%!Q*@** W ?]]2?222]9/+}ć910++++++.'3267#"''7.54>3237  i  > ',&FA=$C`=G`BE  c  d QR!T:eJ*N*@)X 1@ D D HHH ??9/10333#!!#Q~8JQ\m@   M M M M M @AM2 R  M] L  s   D D   HH?2?9929/݇+}910]]+]++++++7#5!7#57# 1C}ii2kA1gԍ G<ʹ8 M8س M8 M5@"M$ M$ M# M (M MMM@M9 M9 M$@6 M L)( S7>/S"@ H= L2%:W: ),W%W ?/?99++22210++++++++++++++++73267#".'732654&'.54632.#"#"& %  *(<0)'("B00-/6!7(i[/T>*$.*3*='eT  _'0/* V ! $3%HSb &2#FE#G "[ M M M@" MY$ #U"U W???2և+}10++++3267#".+5>7#5!DOO1@45&  . ':0-3A,AFEQck1 67)c*/*K(^_V e %o@" L M Mس M L M@ MD F'&J@ M ??99+29/10+++++++3#54>7>54&#"'>32~+$B32[(-6>v)''9-$ +'g  bW&6*!#+'@ M  M L M M M L M@ LQ S)(W@ M" ??99+29/10+++++++++3#54>7>54&#"'>32w& /-*(# & (39gj "y!0&  b SH.# "j.9@5 M2 M) M(M @I M3M3F +M+F;@/DD: &J0H_o 96J??99//]]9=/_]++910+++++73>32#"&'5#73#232>54&#'32654&#"K253?lO-0,A<2l3Kjj 'D1WKpWNPVD-,H51FR?kk FOB +!;0`*52*%n$س M$ M#@ M( L M@# MD D' D& HHH J ???9/10++++++33!33##".=#2>=!N%NN!ChGGfC N_!6''5  \J>/C*SBn@< L?  DD H H H?2?29/]և+}ć10!'7#!73#337#37#,M!nO;cSGSlnRLgi0f#,04@ 4 M3 M2гM MM@0 Lo/  34$%  -S 6666 1S,S53ȳ M3@! MP33W$04!! /%W ??]9/]++2/]q299]210++++++4>327#3267#"''7.?&3&'70*EY/G=?)#.J_7/(FB<* *)"% EhE#QL{_  c  SR"~$-G$kP>$bN M@% L MDD   J J ??9/10+++3##"&'7326=#533QQ7]FD`-B-A:~]Y3XB&$c@NQ]F)"K@)X@  /  Q Q$ X  W??9/]210"&'7326=#53533##"&54632$ /*"ZZyIIan,,,,c11QQfb^"(("#((7EK"6`@/ M8 M( M-FF8#F7J2M2 M2J (M( M(J ?++?++?10+++%#".54>323267#".532>54.#"T!q?Cx[66]zDDxZ4" +0C(f5L0/L55L/0L5Q,4.[YY\..\Y+-a/G1Y9]A$#@];9]A$$B\0F +_ M M س M @ MQ+-@ LS#, W(W W???+10++++3267.#"3267#"&=#".54>32=C5 ' DL]!  2VH=&8V;%Ec>eG' (g8 M M@. LL    F*D)H H%J????9/33݇+}10+++3>32#.'###732654.#"Q.i*HB/1/+,,i~QBXX,=%$k@ nqG^BLR'$JE=c0C ,  G@(  QQ     W ??9/]]210.#"3##5#535>32|5#- yGG$h@   RR  |##@M M M L@` M  M  M M ! "D$^ M <  +   %PB3$O$ "!!   ?????9/9333222]2]]]]]2]]]]9/]9/999910++++++++3.'33>733##.'#>7# J#!"$K< ~!=~;q0"B! C""C !C!\3b2 3c3e16G )00س M/M/ M/ M/@ M,M, M'س M&@ M!M! M @ M M M@M( M M M M@, M(MM L M Mj -+*#*%'$سMM@~MA4tc$$Y#*#*#/##.**MMK }kY** ***1)2 1$.- *@M***''# W????9/9qq+?9/]]+}]]]]]qq++]+}]]]]]qqq+++10]+++++++++++++++++++++++++#"&'73267.'#53.'33>733>7#5+3?*7#/4:bD  z>  b JA-?) a,/9}EQ-\/(^20\,0[-Q E$&EG *g@@&MP$S0MXIO-  ,_)))!W U??]9/]]2]]]]++2]210+7>7#5!#".'732654.+{+*' &,0'D3%Db<71*V+HJ.?%#452eN28;1D-6R7 d =8 , 3XZ@ s ?/102#.#"#54>@SP!"Q(6LE '' "7%BM@ M(MM M@ M MM@ M M@@MM MM M MM M M@p?3222/]]10+++++++++++++++++++/'v:pu9,?,\GY@7 M Lqpq  @ Hqq?]+/]]]10++"&54632'2654&#"7'7'::'##pG2.-2 $$ 2>:QJW+ :@#O_O_ s ?]]]]10#"&54632#"&54632%!!""""####    H:K;+  @O_  s?]10"&54632'!!####K HL~c KM@#MO_ O_@H ?+22]]10++"&546323"&54632'T""""""##k6{L     *L~c P@1 L MMO_ O_@H ?+22]]2210+++"&546323"&54632''7T##""""""{6kL     ݌*L~M H@(O_ O__o  ?]22/]]]9/310"&546323"&54632%77T##""""""'_`'L     3CC3pKU+8@!  /!ss s ?]2]210#".#"'>32326?!5U! 2!     hHHZ.@N(MMMسMдL@ M/2210++++++'7y(.E^Y>@L!@ /9/32210''7L$cc$w7<<7e>%L@ /9/31077>#cc%7<<7e @ MM M M@ M M M M@ M M( MZسM M@ MO_ @- H O_/@/?@H /+]q]q]+]10+++]_]+++++++++++"&546323"&54632''J""##""##m/y     ~1q @L(L L( L M@ M0 M@ L M M@ M(M@ M( MO_ @+ MP  @0 M_O_@@ M /+/]]+]+]10+++]+++++++++++"&546323"&54632''7J##""##""1y/m     q1~ p(MM@M(MO_ @ L O_o@  /]/]+]9/32210++++"&546323"&54632%77J""##""""$VV%{     1==1eS(&(Cn@  PO++4S(&(e@  PO O+++44 'I @%MF )D"D%&(#"HHH%HH??9/?10+#>32#"&'732654&#"##5: ! JkE! :P1%8;TU>~m ;U52O6`79A;HmS &y@ PO++47` M @ M L M@ M MسM@* M "FF!JH/? J??9/]]]3210++++++++4>32.#"!!3267#".72Z{IHn##U?^g ' j^CS"!qFK}X1[Y[.d e\k_k g-Z6S,>&,@POO+++44- 0t@ M LM@3M-DD DP  1% L%F21H -*H J H??9/?+99//]10++++6232#"&'#'>7>52>54.#*!*i0(FiL$6( "?02F+ 'kwqq 54.#*u!*i0~~%"?02F+ 'jtqq 1 -##-  0@D D J HH???9/10#>32#54&#"##5:@Ib:~=M8~m!=V5@=HmS&.@ PO++4S&C@  PO++4c&@  (.P#O++4SGw 9@ D D P /  D  H???]]]9/10%3##5#3~y~kJK$SPSa%S @ DH??103#!!~l GE@'D D  DO_ D DH  H??22]]1073>5!3#5!#! V-1gyyH&!k>Sܹ<~{u4S(($h!@ M(M Mг M @9 M M:  (M:  D &%@M@MN; MM@? I4#@MPMO@M@M?O- &% M @MA #   #M#@5M0#@#!####$$*+    #  ?????????9]]?/3]]]]++2]]]++2]]]]++2]]++99]_]]+++]]_]++9/10]]]+]]++++++3>7.'33>73#.'##BHM&H<5y={=}1@EQ7:}E{Gz;1e`U#NNFJ&KCRNJd^CBG^6@M&M%M$ L M M M @-M5/M/FF8 '&7H`555!$'',J! J??]9/]922+10++++++++2>54&#"'>32#".'732654.+5:.A97U) oD6\B&230$(JkB%D<0% &08NU3F(N ''.e0H0,O ,9$8O3 e /:", hS8M M MسM@0M D  D 0 M @ M  + K [ س M@" MTC   ???99]]]_]]]]++]]_]++?]2]210+++++33>73#S}"W]\(g|*]ZT"46}|s*K2}9S&@  PO++4S. P@ M M M ( M M@ MDDHH ???10++++++'>7>5!#[(FiL$6( IDtW4n!1!NKI@40S|+72Sw @D DH???10#!#w~~KISO39b& 67c"x"@ M M@6ML_LP$ # H ????9?29/]+}]+}10+++%#"&'73267.'3>735?M0?*.=*MB7)/4$B0//8S6 h *0Dx2)^dh4YdJwm2/;SG )@D D D  H???10%#5!3!3y~(~kܹJ7BB M@ L DDDJ J  ???9/]10++32673#5#".=3HO A~~H%Fc?~SCTK>`CS =@$DDP  0 `  D HH????]]]9/10333333S~~JJKSGI@,DD D0 @ P  PD HHH????]]]9/1033333#5!~hyJJܹ  T M@) MM MF"D D !J H J ??9/++10++%#"&'#5!623 *32>54.*i0.D %#A15Jos 54.J+QsH*f0~`~~\  !"?.2G8T9 qhKR -##. ST T @ M(M@$M LF  DJ J ??9/]+10+++%#"&'3623 *32>54.T*i0~D %#A15Jos l -##. ? M@ M8M MгM@1 LM MFF" !JH/? J ??9/]229/10++++++++#"&'73267!5!.#"'>32?1X}KFq!"SC^j ' g^?U##nHI{Z2[[Z-g k_k\e d.[S*@7& LM0M(MM(FF,DD+HM@ LJ #M# L#J?++?++??9/]9/10+++++2#".'##33>2654.#"BvZ44YvC?qW8~~ ;Vl;]f2I..I2g.\YY[.)QxPHnJ&t9]B##B]9t!?*@ L L8 L( M M @ M(D, гMش L L"@ M"F+(J J??9/??]+2+++210++++++2##"&'#>7.54>";5&)h.~I  (''*++D@-Sv@&A03I.7# U=EI$'PKAbH8T7m , ", (D;+"7@3M3 M2 M.سM. M)M) M( M MMM @M"0S9&S S8W" سM @ M # +W 5W ??99++?]10++++++++++++>32#".54>7>732>54.#"  ++D2 I#hz"@Z9G`:!KyW-= 0$. 0#"C+B/}322654.#"32654&+<7007<jv$$4|x-; */ 76GA4c ME$8<7OUC'{*)M &@QU ??]]10##!y[Y  lg 9@Q Q QQ Q UUU U??1073>7!3#5!#%# <#wPl}kc)eot7XD)USO$0H  %'!@ L M M@ M L @4 LQD0"Q^K>- Q'&N @TM_M+ @'AP%2%B%%#%%%&  %      ????????9??92]]]]2]]]2]]]]+2]]9/9]]]]9]]]]10++++++]3>7.'353>73#.'#5 .v<9l)S=u?R&k;Bo//36u63/M==6*fJIh)6~=BNBA<>A@)1v M @ M M M M@' M%)S S312&U$$$$W 1,W??9/]q22210++++++>32#"&'73254.+532654&#"6 &,1+N:#.-0#=R0:dT9n&dc%53.*'  $8'*:B3):% b@Z"! M R@Q Q@ H@ H   ????99++]2]310#4>5#3>7x@?8kw<=< 9p`G'^^Z$ :iV@+[WNM&j@ % PO++4M%     M L M M M MM@(MQQ0 `p UU ???]]10++++++++'>7>=!# 9U=38 ry,_\TC-e -#BIL$A@ &/@ $ M# L M M@ M M@M MM@ M M @ M M M$`M(M@] MQ/?"T!! Q 0  _P('_(@((/(  @M M8M M@M!    ?????9+++++???]]]9/=//]]]3]/3]33]/10+++++++++++++++++#>73>73#.'#.u i&N02R j x #" Z !"#W*[ZT$:9=ik39:RVJLGHLIM 4@Q@PQ Q U   ????9/]10!#5##3353yyyy 0&RM .@Q Q  U???]]10###yy Z MG$S0F  %@Q @ UU ??]9/10###5!שyZeE \/G+x@0-#M" M!QQQ  L S&----O--@ LS,UU+ _ !UU????+]]]+9/10++]3>54.'#5.54>757KGZYHu ;,,; u@iJ)(IiBu9gN.-Ng:QMMN(<))<'(E^98\D)$B_>?`A$  [MlN 2@QQ P Q  UU ???]]10%#5!333Nkjyyc XX+ ?@& M M QQQW  ??9/?]10++326753#5#".=370-yy:/M8yi0' +G5M ;@#QQ P ` Q UU ????]]9/1033333!MyyyM XXMlP M@/Q QQ 0 P   Q  UUU ????]]]9/103333333#5MyyyPl XXXK #7@(MS% Q$ U UU ??9/10+>32#"&'#532654.#" :-O:" 32#"&'32654.#"yy9+M9! :Q19e4yV/7'- 2 +C./B* I'+M !K L M@ MS#QQ"W W ??9/]10+++>32#"&'32654.#":-O:" 32#Da>6V!N&BOK?'=!T'>bD$?fH'b @B[>< _(HdM&T@*S  $S( QQ   ' U MW  ! M!W ?+???+9/]9/10".'##33>32"32654&&0S@)nyyp+?Q.4ZB%%BZ48AA88AA!=V5 2Q9'He>?fH'[NN]]NN[$d@@ M  M M  M  M$QQ& QS   %$U  W  ????9/]]10+++++%*'#>7.54>32#=.#";4  6|B1-!r(G0,C- R0(&HCQ@ +)P*O++40&HX@*<P4O(O+++44F-jM@4 M'&Q/@Q  .'*W# W _ ???]9/?]10++4.#"##53573#>32#"&'73265 *2 yDDy5>S2'@0(  ! *;% i]QFZQa ">W4/F/Z))M(&Z@ ,PO++40 Nس M@! M "SS!WU W??9/229/10++4>32.#"3#3267#".0$Db>'T!='?KOB&N!V6>aD#[B@ b'Hf%V?L9& @POO+++44FM M $3O @* M L0Q$(S5Q41%W -W# $UU ???9/10++'>7>=!>32#"&'2654.#" 9U=38 r8(K;#:Q29f3/7'- 2,_\TC-e -#DKN$;*B./D+ '+M9 )P@+Q&S +QQ*&W#WU 'W ????99//9/10>32#"&'5##3352654.#"8(K;#:Q29f3yy/7'- 2 *B./D+  I'+ M%(&x@  PO++4M(&CQ@  PO++4E&\>@  "( PO++4Ml 3@QQ Q U ???]9/10!#5#333[lyy X/$(8@0(M-M+MM Lس M@. L0 M M( M)S:S1S9.M. M. 6@ L6W$ U U ??+9++10++++++++++7467.5463267"#"#".%4.'326/TE *\X1Y# +,($. *'D3 ?^>;]@"y%0:? 0 >@U&=-CRa1=N69bI)&D_E%9," f?":+X !`MM@(M LS#Q "  W W ??9//+10+++#32#"&'#535332>54&+@*i0~w#>/e]9 (,kmxqs fPP /#H3 D)K@'S+&Q*UU&#W _'W ??99//10>32#"&'#53573#2654.#":-O:" 32%">323267.267#".#"5[zEE{[66]zDDz[6,G5 7""722' iWQg&-"7321g[Y[..[YY\..\8P1 br cWUa0&#4@%3(M3 M3 M&(M& M&( L& M"@MM L@6M$ M2SS6'S!S 5'W!`*p***W2W`/p///W$W MW ?+?9/]]+10+++++++++++#".54>32267#".#"">323267.&$B]88\B%%C\77]B%4@$"! A63A $"  @>fH((Hf>>eH''HeE> AITC;  ?Gs@ L L  L @. ML  L   J  ????9/99?9/އ+}݇+}10++++!#.'3>32&#"y"BBE&3]5 %7)G84!Jo|3)0W! L}@( L M M M س M @, MY  Y   W   ????9?999/އ+}އ+}10++++++!#.'3>32.#";h540 !#Z !, ,0   4xK,ef_%,[SC+)M)@ MMMг Mس M Lг M@< M!"&'' L D D-D,'&!"$J M[ M , M I0@ I   H ?2??99//+]++]_]]+22?+}9/10+++++++++%'>7##3>73".'7327!0T+ \*]ZT"k}"W]\(g8+W;<V+8k%OMI5F'2}946}|s*"1GF1!BZf#3@"M"0 M! M س M M@M M M)*.//#Y## Q Q5Q4.*,W$@P2O_# U ?2???99]]]]ć+}]10+++++++3'>7#4>5#3>7'".'7327 Y+N( T@?8kw<=<| 7,W:;V+8 X&KE<1>#9p`G'^^Z$ :iV@+[WNN"1GF1!]*nM@9M LF,?D)D&%D#+#&)W W))'W" ??99//]]+10++%:7>54.#*#6232#"&'#53533 9,3G, U{ *h0PP{{f * $. Zkupp \GG ")`@8S+ Q)'*' W0!# W&# ??99//]]]]10%2654.#"533#>32#"&'#53: *+ 3x7*N;$!;S29f3DT%+@@OQ(@./B* OSO" MгMس M@ L M 0M@! M  MF$D D#H@ M  J??9/99+33+910+++++++2'+#>"3:7'7654.>;;TG/7?~,k60=  ,S:0.?nuK_e/y mM0dD". MG$(' M' M& MM MM@; M0 M&#$S*Q Q)WQ&B&#& $% W ?22??9]]]910++++++++'#"&'#>324&#"3:7'7>$/-9N; %>y%l<>bE%|IQ%5 7M6Ku#a,g  &GeAQZ `-_<S 9@D DH??103#!53!~AwM@Q QU ??10##353yiY  -@ D H  H ??9/103###53!!ߢ~QQ]1]'l  -@Q U U  ??9/10#3##5#535!⋋yNN[RRSG`'T @/ MM M:F&)!'D$$('H%"J !JJ/???]2]+10++>32#"&'732>54.#"#!!<"DjH&%GgB  (@+0D(7 ~*OrGDsT0c8P16L0lMF  G@* M S@ HQWWU W ???9/]+10+#>32#"'73254&#"#!6ovxi vEC- yxrx]ZG L'@ ?'O'_''&@! H@ H ?O_ #D!D@/ H@P2!!!)( #  &!H ??????99/]2]]2+2]99]+]+2]10>7.'33>733#5#.'##/BHM&H<5y={=}1@E9k/dy4:}E{Gz;1e`U#NNFJ&KCRN5G۴^CBG^ o* )ȳ+@$M( MQ(M0 L0M@ Lд LM LгM@<M"0M M)0M Q$Q """+* !$) " U  ??????99/]2+2++2++99+++++++210++]3>7.'353>733#5#.'#5 .v<9l)S=u?R&k;,O#Tl-/36u63/M==6*fJIh)6~=-Z0BA<>A@3M@ J MI(M>M> M9 L9 L0M/@ M&M#@TM M M L MC1F@H*$FH FHO78oN74J;C,H`***; !J 0@K ?3]]?9/]9]229/2310++++++++++++++#"'732654&/>7.'732654.+532>54&#"'>324 <<0%   "@7-% &08NU3F(NO:.A97U) oD6\B&230$vh'&#2 H   e /:", h ''.e0H0,O ,9$ab )3H@ E LE M: L: M:@9 M M?)S7.'73254.+532654&#"'>320<<0%   3VT9n&dc%53.*'  &,1+N:#.-0->% 6&#2 H   b@Z"! b $8'*:B3#4$SGx M@B M M_N?ODPB0!D D   H????9/992]]]]]]3]]10+++!#.'#3>733#2ADKP'~~!HG@!JNO&?9my(XRJ!KMH&RSR%0NMo4 ǵM @M @ M( MQ гM M г M M M г M ȳ M L @6 M  M0MQQ    U ???]?9///?]2++9++++++++++10+++>733#5#.'#36509=;)\(Pl-39;yy99:5>A=#c4B?8 Sй M @ M M M LȳM M@a M@ L M0M@ M@ L @ L 8 M PM @ M @ L?  DD ???9/9]?2]+++++2+++++9++++10++++>73#.'#5##335^

?U8~~8-GBTLHl'WSJL @X@ L M@ M M@ L M M P" QQ! @  ????9/]9=/]]+3++2++++10>73#.'#5##335@1O"588A<5+02I2yy2o;d.??<FKL#@?;rt v  M MгM MسM@ M( M0 M8M M MM LM@m L@@M0 L@M@ MO@M0 M@M@ M8 MO "?OD !  M8M ????99=//9++9]2]+++++2]++++9]++++10+++++++++++!.'##53533#>73CMQ'~PP~\\"NMDFW*YUM(TPF(UNNU!MOKTN R]f4 6."M M M MгM@ M (M 0 L ( MгM Mд L M L@U M 0M L @M ( M @ M 0 M 0 L@ M( M$Q" #    !???9/99?2+++2++++++9++++++10+++++++++3533#>73#.'## HyLL;9473[DKP'~.!HG@!JNO&*WTM (XRJIl!KMH&RSR% Uai4 g v8M M L@ M M @( H []OQU   ???9?2]]2]9+10+++++>73#.'##536509=;D@938;y99:5>A=EMO"B?8^SG9@DDDD D  H H???9/?1033#5#!#3!~nys~~-ܹ3MoU =@"Q QQ QQ   U  U ????9/]10%3#5#5##3353Qk_yyyc S- 8@ DD DD   H H????9/]10!##!#3!/~~~-l3M =@# QQ Q UU    ????9/]]10##5##3353yyyS SG)m# M M@ M M@' M!FD+D*J)J&J H???9//9/210+++++!#!#!>32#"&'732>54.#"m~~<"DjH&%GgB  (@+0D(7 I*OrGDsT0c8P16L0MFD J@) MS Q !Q WUW U ???9/?9/10+!##!>32#"'73254&#"y5ovxi vEC, Z x]ZG7G <1 M1 L1 M'@ M# Mس M MسMг M@ M L 0 Mȳ M(سM'سM#M @.M D/D8F   F*>F =J%%/J J8 4J5J???9/99//10+++++++++++++++++4&#">%4>32.#"&54>32.'.q(-,6 UQ0\X*UAxvEO8T;6N2:X:29:j.QzR)9GL]*B bMa7 f {\y?L:bH(%AV1.XI7  fVQ9^0mG)5/ L M L@ M M L L M@@ M ( M  MS"*S%0S7 S`%%63W`p-U U" U W???9/]]99//310+++++++++++2.#"&54632&'.54>>54&#"4#:*NR56 SXQN*@+ %),Kt%C`k7< !# [ bOGZ*0`m_L#B7+ Z :dI)-E9 /593b03 G6 -@ DD H HH??9/10#3#5##56jypm#ܹHm o C@(  o  QQ`0 @ UU U ??]9/]]]10]#3#5##5!שTlaen< G @M@ MM M M M MQ@PMC4 0ML ;  dt M M  ?????9++99//]]]]]2]]+2]]]+10+++++++]]#5.'3>7(c3y2e' !#"!  jj/fe^&&^ef/n M@ L0M@/M M L M M^MP  D M@* MBR_ k  H  ??9/9?9/]]]2]]++9/]2]]]++10++++++>733##5#53.'3<-V#6vA~~Bu6#TKNgg\\ggN G ڶ L@ L M M @M  M M M  MM L@ M M0M@ MM@6 MBR3^=M  Q/ U U ?2???9/3]]32]]2]]10+++++++++++++++++3##5#53.'3>7#T-d~yg-V" !#"!  }aPPa}/fe^&&^ef/Gw@J  L/LDH????????Շ+}]+}10$3#5#.'#>7373F_y<X0//( -vEޖvܹ;BHKFUbK o @T QP Y  Y     U ????????/Ƈ+}ć]+}]10733#5#.'#>7'3 o"@Ul2 !$#C|*03`-X,154-m*DGG  GZ5@ DD D HHH ???9/10!33#5!#5!G-~hyH#JܹHmm l 8@Q Q Q  UUU U ???]10%#5!#5!#33kezjwyceeX7G<@ M D DDDJ  H ???9/10+326733#5#5#".=3HO A~Vy[H%Fc?~SCTܹ>`C+o, E@( M MQQ Q QWW  U ???9/10++3267533#5#5#".=370-ySl`:/M8yi0'X +G57AI@( M  DDDJJ  ???9/]10+>73#5#5.=353l--VDW2~)8VVTKzz(AZ6>F v$ [@  M M @(H QQQW W  ???9/]]+10++6753#5#5.=353.&yy I-H1y#%IYW+E2))ZSbC@(M MQ Q Q  W W  ???9/]]10++%4.#"#3>32#5$<. C~~C(Ri<~%8%$C_:MK #/8@ 6( M1 M* M)@ M M MM@3 L3 M 0D,:F8F"9"H0H3J'0@PJ ?]?9/22+10++++++++32>7#".'.5467>32'.#"F kn5-" (9F(WV,)C0b$0 7Rj=BlL)SL-@,7qg e 2XzH%9*$ #HkH$,WVgUf 4C$ {)4" Mȳ M L L M @, M M*Q6&#'4SS 5W'&U *U /W??9/210+++++++>32!3267#".'.54674.#"j" /@M)lyOK,I #-4BaB$LO]'*#5P5  ?E c %AZ6 GN Y-!", G$2;M- M,@ M M M@8 MD3D /=";F%F<%H;H6 L6J*0@PJ ?]?+9/29/10++++++32>7#5.'.5467>32'.#"G kn5-" #2?#y>\>!)C0b$0 7Rj=BlL)SL-@,7qg e  :Tk=%9*$ #HkH$,WVgUf 4C$ l{*5@ L M سM M M@, MQ!+Q7$5SS!6W('U5U! 0W??9/29/10++++++>32!3267#5.'.54674.#"j" /@M)lyOK,II,l/G0LO]'*#5P5  ?E c  +>O. GN Y-!",S,&@ )/P%O++4 &@ +1P&O++4SGl-p@ M, L M @1 M$L$$) F))/DD.J$$J????9/?]2և+}10++++"&'732>54.#"#3>73W '=+)AP&~~%KE;CGG7`F)#Dfc3G*=K*(XSK!MPL!(FeD=kO.MF % M@ M  M@MS# @= M =+  &R  W   'Q%Q&WW""   ????9/?]]և++qr^]+^]]210++++3#3>73#"&'732654&#"yy672376[kyi   ;=VK " 7>5!3'>7#[(FiL$6( e!0T+ _IDtW4n!1!N%OMI5F'I Zu e M @7 M L M MQQQ!U UU ???]]]210+++++'>7>=!3'>7# 9U=38 r]+N( Y,_\TC-e -#BIL$AX&ME<1>#SE|E@$ L DDDDH J?/?9/?]210+3#"&'73265!#3!~)B0+ "~~-S1I1a-+1MF :@ QQ QQU U ???9/?]210%##3353#"&'73265yyyN[, ! a_a+*SC>@" DDD@DHH ???9/?]1033'>7#!#3!~f!0T+ _~~-%OMI5F'3MZ[ A@% QQ QQ QU  U ????9/]10%3'>7#5##3353V+N( Ryyyc&KE<1># >GIKسM@! M D DDDJJ H ???9/10++32673##35#".=3HPA~myhG&Fc?~SCTK>`C+o D@( M Q  QQQWW U  ???9/]10+%5#".=3326753##5`:/M8y70-yalaf+G50'@C4ع L@ M!M @PM4//L.+.+.+$+$L+0@P L ##L  654/$+(M8M@M+##.H  ??????9/9+++3??9/͇+}և+}]2͇+}և+}10++++>733'>7#&'#.'#>7687686rh!0T+ Y "#! ^ !#" |  &ny}55}yn&ϗ%OMI5F'yx@KPKABKPJAxyVH@Z 06/ M'@ M M@ M M @ M/ M.0 M' M&( M MسMȳ M @e M  MQ"#Y#&#&#&M+&+Y&E #  ,,Y  Y21# U" ,0 M M]^&@ M&++    ?????9/9+]]++3???9/]և+}ć+}]]͇+}+և+}10+++++++++++++++#>73>733'>7#.'#.u i&N02R j ]+N( T #" Z !"#W*[ZT$:9=ik3.hnp4&KE<1>#RVJLGHLIN@O_Q ??10]3#3yy&$@ &P O++4(&DH@ 6<P1O++4&$@ /P 'O O+++44(&D?@3EP=O1O+++44(2S(&(g@  P O++40&H[@ -3P(O++45 )'M' M' M"س Mس M M M @ L M( M)FF+ !F*)H$M$@ M$J J??++9/210++++++++++.#"'>32#".546732>7 lm5," (9F([U)0UuDClL)SL-@,qg e 7`L\\-,WV hUe 4C#3 'h%M%س MгM@*M  M ( M'S S)S(WU W"W ??9/210++++++#"&5467!.#"'>3232>7 )DX.lyYOK,I #-4EfB '*EhE#  ?E c )Idp-!",5&u@ ,>P 6O *O+++443 &vO@ *<P4O(O+++44&@'9P 2O %O+++44 &@(:P2O&O+++44&I@ 9K&PCO7O+++44)&)@ 4FP>O2O+++44G Sh&@   PO++4M&p@  PO++4S&@& POO+++44M&l@. P&OO+++447&2@ *<P"4O"(O+++440&&R`@"4 P,O O+++4470&!A@ LSS#SS "UW LW ?+?9/+10#".54>32267#"3.&$B]88\B%%C\77]B%5@@53A A>fH((Hf>>eH''HeH??HTC<324&#"326"QUV'|g$VXT"}eTe1E))E22E))E1^0--11--09}2*s|}6KXp-H33H--I33I-4==43==`r/10!5`ff#:@7 M6( M!MгM7@- M, M+ M M( MMM8@M884.@IM&F<92F .;@%P%%"J)88841/? ) J ??99//]]]]]9]+99]+10+++++++++++654&#"'>323#3!3267#".'&67#53>?#5n >-0? $V58R55gO(7B9N##eB=V8.Z7 '*+ d5H( S0T'1a,<$T"S@ M     M9@FM M;M?0  DDD    H H??933339/]]10+]++]]+]]]]+%#5'75'75#5!#77|^%_$b$b@,M=`,K=ff}/K?a/( ,@ Q  U UU??9/10###5%!5{egeee#.'"@M!8M M(M M @7 MD#M#F `DD(pHHJ??9/]]]+10++++++75#53>32+3##5#5"32654.pMM#])@gH&"wM $ UV&0Z^0 2O6nbZ^dd^3=( 'Yj@  t?/10".'7327 7,W:;V+8Y"1GF1!$Sa%S S((*=S|+7+q@ MM M@$M"F-F",HM MJ' M M J ?++?++9/99//10++++!!'32>54.#"#".54>32L5L0/L55L/0L55[zEE{[66]zDDz[6f29]A$$A]99]A$$B\9Y[..[YY\..\S,S.k@  M M M@* ML   L    ??????99/އ+}އ+}10++++#.'#67L=2322227535>54&'sXi3G,HvU..UvH{HvT//TvH+H2iX*bQ)B/S,Lg=@ ( M L M M @; MD _DP `   DD H H????]9/]]]]]]q10+++++!#5.=33>=3yMmF!zVP{OW{!FnM+Kg>e[_[e>gK+1'Sȳ M@( M F )F #( H H M MJ?++?2?2310++23!5>54&#"!53.54>DxZ4E12&k[[l%31D4Zx+U|QT3i\9DR2lvvl2RE8\i3TQ|U+0R(M$ L$@ M Q*&@ M&S )#WW W ??3?+2210++"&'#".54>32%267&=.#"A2CM69X<%Ec>8n"!5 'EL= "'Gd>>eG' !  %ZPL[MFC4 0 M M,M@ L M@1M'.S#S6QQ5(U`'''1M1WW ???+9/]9]210++++++#"&'#4>3232>54&+532>54&#"/1(7#&D^8"Cy9W;js8)3&LV + 30;5H2Q *6>!=Y: 4V?#h  1 @Mb (*:G>G @ M LM@CL0M M M M L LQQ Q  ???99???9/9910++++++++++.'3>73 *49  '"{lO _G#_jl/'bih-0Y(0&&6@).@M- M+ M*M*0M* M) MM M L@ M8 M L@ M 'S8S/S7,,, 4@ L4W" W ??+9]210++++++++++++++7467.54632.#"#".%4.'3260[I#+c`;PF02&*K9" @^=<]@"z"/>A 0 >AV~!@,DR ^  )7BT96`G)'E`=#8-#b@$;,X23p. M1@* M' M' M !5 S/)S,)4`pU@"%H W$  W??9/+]q]22210++++2.#";#"32>7#".5467.54>'2+# O#.>_\'t4-" oO%PC,**(!;T _   [E ^  #?3&C 8%':'1B(" M@ M M M&M$M#M"MM@M0 MSS*S)U?3?2+10++++++++++'>54.'.54>7#5! g  +1I17NW {!`Z@2$0B(/(H"5 #5J5DoZe[[qD+  $0MG(@ Q Q W???]10>32#4.#"#M#pD@V3y +2 y #?Y5!*;%Z4. _ M@ M M M @" MSSSSU  LW W ??+9/+10++++#"&546322>7!"!..{zz{!0 ?BB< /}"?[8qE~n7W=!F  6@"`  L L Q`  U ??]210++].533E*y- ):&w)"M%  #سM@S M M( M L]m}O@H Y   ##Y%$# W ????9?9/އ+}އ+}+qqqq10+++++!.'#>7.#"'>32 !(# |059" ,DT$C9/+dih--ijd)C8%8&aECP=MP   Y/B<s:@ M6 M-@!M#"22 S S28S+S=#&W1U@ L22 ?3?9/99+9=/9210+++%'>54&'.54>7.54>32.#";#"40A)g 1>cg(362">T33M8#!. %3TG@9(#3l %1(H"3b](>. Y4.J2c &( e4+(0&RM GG*[ M@" MS!QQ  LW WM MW ?++??+]10++"&'#4>32'32654&#"<)?y;V7} =Y5BD:C3>  6Z?#32.#"'>54&3K1"Cb?KA4JK!0*:%g & (3!#4&'#"326!$@\76\B&+Kg; $z%"7,E9X5+OCCO5X>"0G"Z$@2 LS Q  LSp Q  $#WW  WW???9/]]+]+10]2#5.54>4&'>%RW-uCiI&/X+MTTMIPQQP(He=q ,G^8=eH(GY XHHW T Z  [GG i@A L M MQQQ pO0QW W ?????]]]]9/]10+++>=3#5.53HMx@gHvHfAxMH RYY7aJ./Ia7YY68V@16Q88#S S:P:?:(S).S##98)V(1W W V???3?]]]9/9=/1032654.'7#"&'#".54>732>=3# 2.g& 8N.:MN9/N8 &f.2$x;1!WL%F?5#>HR+Hd>1**1>dH+QJ>#5?F%LW!1;&$ P+4&(n&+Xl)&,Xl P+4>&,@POO+++44&2/l'<ln&<j@ % POO+++44&$l0R &_@ *, P)O++42 &?@ "57(!P4O++4MG &O@ PO++47  &@  P O++4,&@   PO O+++44e &!@  P$OO O++++4440& &RP@ !# P O++4G&[@*P"OO+++44G &S@ PO++4G &W@*P.O"OO++++4446 &@ :<"P9O++4CU H@(M0 L( Lش L@ L@@?/10+++++'7>xPC-;t#@ L M//10++'7JP2> Z@8H Mt?O_ @0?O_P `  _?]]/]]]]10]++"&54632!"&54632'75''((!((''@XSc$%%$$%%$% +0R&&u@ )4 P:O++40R&&v@ -: P)O++40R&&j@ )= P>O:O+++440R&&<@ -= P>O)O+++440R&&~@ )> P;O:O+++440R&&q@ -> P;O)O+++440R}&x@ @J P9O)O+++440R}&m@ 9C P9O)O+++44&$  &P+4&$ΚY'$ơH'$&$u.'$ˡ &$ &$2&&U@  4?(!PEO++42&&S@ 8E(!P4O++42&&8@ 4H(!PIOEO+++442&&/@ 8H(!PIO4O+++442&&U@4I(!PFOEO+++442&&C@8I(!PFO4O+++44&(\c~&(Vq^'(6ˡM'(%ơE'(W'(/СMG&&i@ !P'O++4MG&&g@ 'PO++4MG&&W@*P+O'O+++44MG&&H@ *P+OO+++44MG&&p@+P(O'O+++44MG&&\@+P(OO+++44MG}&h@-7P&OO+++44MG}&i@&0P&OO+++44&+\c&+Wq'+6ˡ'+%ơ'+'+/СB '+B '+6 &&@  PO++47 &&@  P O++4b&&@  P!OO+++44#&&@   P!O O+++44e&&@ ! POO+++44W&&@ ! PO O+++44}&@ #- PO O+++44 }&@ & PO O+++44+&,Zc0&,_q',6ˡ',%ơ',',/С ', ',0&&&Rl@  + P1O++40&&&Rm@ $1 P O++40&&&Ra@ 4 P5O1O+++440&&&RC@ $4 P5O O+++440&&&R@( 5 P2O1O+++440&&&Rh@$5 P2O O+++44&2(c$&2Mq'2&ˡ'2ơ'2'2СG&&h@ !P'O++4G&&e@ 'PO++4G&&U@*P+O'O+++44G&&G@ *P+OO+++44G&&r@+P(O'O+++44G&&f@ +P(OO+++44G}&n@ -7P&OO+++44G}&_@ &0P&OO+++44&<{q'<Bơ'<zСu '<6&&@  9D"PJO++46&&@ =J"P9O++46&&@9M"PNOJO+++446&&@ =M"PNO9O+++446&&@!9N"PKOJO+++446&&@ =N"PKO9O+++446}&@PZ"PIO9O+++446}&@ IS"PIO9O+++44&c0&Lq'$ˡ'ơ''Сk 'k '0R&@ ,* P+O++40R&X@ +) P*O++42&i@ 75(!P6O++42&6@  64(!P5O++4MG&v@ PO++4MG&L@ PO++4  &@   PO++4 &ͩ@   P O++40&&R@ #! P"O++40&&RT@  " P!O++4G&v@ PO++4G&Q@ PO++46&@ <:"P;O++46&@ ;9"P:O++404R&&'u <. P+4404R&&'v @. P+4404R&&'j

P+444M4&&&\#>P+444M4}&&h#JP+444M4}&&i#CP+444;&+\'1c6&+W',q'+6' ˡ'+%'ơ'+''+/'С '+' '+'64&&' L>"P+4464&&' P>"P+4464&&'@ L`"P+44464&&'ߴP`"P+44464&&'@ !La"P+44464&&'@ !La"P+44464}&'@ cm"P+44464}&'\f"P+444&'(t&'&'&'&'&', &', &'0R&ak@ -7 P)O++40R&u@ +) P*O++404R&'?= P+4404R& 6. P+404R&'X>< P+440R&r@ 4+ P,O++404R&'rG> P+44&$a@ )P O++4o&$@ P O++4&$C&$ &$uB&W4 103#".54673 /$hA F /#uB& @ L  //3+10>7.54632u" %(!+i!"$!*)'3\Z @ t ts ?/102#.#"#46BRQ"!PQPH '' HPNg} )<@") O_@PO_ $s ?/]]]10#"&54632#"&54632'.#"#>32#""#####U,"!-A(44(!!!!!!!!I%%$5##5$M4&&v̴#*P+44M4& #P+4M4&&L״#)P+44MG&[@ !PO++4M4&&[ݴ#+P+44'(C'(a'+C'+aS&+ A&J@,M(MML(M?O_  //]10+++++>7.54632? " %(!+Ou=i!"$!*)';.A&VM@.M MM( M( M?O_?   //]]10++++++>7.54632'7" %(!+=uOi!"$!*)'.;4:V}!+@! @M s  //+10'>7.546327.#"#>32 %.E,"!-A(44(:&    ;%%$5##5$&a@  P O++4&@   P O++4e"&!@ P'OO O++++444j &!@  P$OO O++++444&@  PO++4,}&!@ P$OOO++++444+&,a@ PO++4*h&,@ PO++4',C',A&\(M LM@$M0 @ P  /?/]22]10++++.54632?+!(% " Ou=B')*!$"!};. A&S@ML8M( M@M_?O_ //]]10+++++.54632'7+!(% "T=uOB')*!$"!(.;4:V}!0! @ M s//+210.54632'>32#.#":.% (34(A-!",:%;    $5##5$%%G&a[@ $PO++4G&c@ PO++4G"&T@$P1O"OO++++444G &S!@*P.O"OO++++444GG*&&o@ + P 1O++4GG*&&m@ $1 P O++4G&`@ !PO++4G}&d@"P.O$OO++++444n&<am@  PO++4no&<u@  PO++4'<C5'<a&3]l>" I@/ L?O_?O_ O_>/ /]]]/]]10+"&54632!"&54632?n))(((())!WXDa$%%$$%%$-"> ,Co M@ M L M Mس M Mȳ M@M/?/]10+++++++++'g.Bu64&'O>"P+4464& %F>"P+464&' NL"P+446&@ D;"P<;|5d"/V"UU"3V';(>HO%N/+?Xs@ )]Wz ??910#".54>32"32654&4&#"326%467'7.76323.'#".'.#"3267>32>7##"&2654&#"8bLKb99bKLb8!&.  .&!1! 1&F!   1 !/   !F&1ZKa99aKLb88b%=<?' &>>=<#.&F :  F)0#-!'o'k'tu'oKB (7Me}@LL[ LTMSMDMD@L=M=M1(M.M.гMM @LMM~{igfXA VNdKM@B/7&A (  @ Aov}ifd X ^QPcANLBF;(,#4 ???????????????????9910++++++++++++++++%#".5332>73>32#"&'732654.#"#".5332>73>32#4.#"#3#3267#".57#".5332>73%#".54>32"32654&32654&#"'467'7.723&'#"&'&#"6"'327>3267#72654&#" iER1] 2% ]u $*3 F-5E*] iE32"32654&32654&#"'467'7.723&'#"&'&#"6"'327>3267#72654&#"":O--N:"":N--O:"    T"/)##)/(  0-N:"":N--O:"":O    u$ $%  $$ $j- 0! ## !0 -  I #'+/37@&6Ff= &6Ff= &f&fIYIY i i6f 6 f  9  9=11i1y111@ H 11/4;H/(((,/H(@#(+H((i(y(((@ H (($4;H$$$@!+/H $$$$$i$y$$$@ H $$6@ 4;H6652@ H2'2722+@-1H1+ +++++@ H+'+7++'-1H'@(,H'@ H'''7''  "/ ;^[Ly  ; ? o =O   { L   9 i   /_ ;{L8 f3`=PSDv 0`=ArD@=f7  0 = !   T   F   9@ 4EH",585@91;Ha5@5P5!5155555555555c5s5T5C555@ H55'55"@H"""""3,,@@ &HK,[,<,,@H,,,,H,@ H,2EH11&40;H4,/H4@-#+H|44k4\4K44H4@ H4#+#;##H#)+B-$'H-#H-H-@H-@ H- -@2EH$&A @P`;`!Arc$D6Ff'  <wC i3/?<O `@*IL\l )i AL\  /O_o;Oo.Ll| +Ii8) >xK f  3 B `=AScDe@:' APA`p A?r2_]_q_qqrrrr^]2^]]]qqqqrr^]?^]]2^]]qqrrr^]2^]]]]]]qqqrrrr^]9/]3^]]]qqqrr^]3^]]]]qq+rrrr^]]^]]2^]]qqrrr^]]2^]]]qqqqqqrrrr^]]]?2+2^]+++++?2+q2++qqqq+++9/3+3++]+qq+q2]]+2]+]qqqqqqqrrrrr+22+22r22]]]]qqqrr^]2^]]]]qqqrr^]2^]]]qqqqr^]^]]2^]]qqqrrr^]]2^]]]qqqqrr^]2^]2^]]]qqqqrr^]]^]22]+++2]+qrrr+2]+]+2]+]]qr+r+2]+]]++r2+2]+]]10^]]]]]]]]]]]]^]^]^]^]335!5!35!3335!5!35!3j444555k**yhk**L**yhk**` ! 7 $ & * - 2 4 9 : =        E u }       < & * 2 4 6 7 8 9 <       E K Y u     $ & * - 2 4 6 7 9 : ; < =              E K u }          $ & * - ;         u }    -79;<=  E Ku}$&*-246 789:; <= EKYu $&*-2479:;<=EK&*24789:<Ku#$#&#*#-#2#4#6#7#8#9#:#;#<#=##################K#}#########$ $ $ $$$#$$$&$*$-$2$4$6$7$8$9$:$;$<$=$@$F$G$H$J$R$T$V $W$X$Y$Z$[$\$] $^$`$c$l$n$o$$$$$$$$$$$$$$$$}$% % % % %%%%"%9%:%;%<%@%]%`%%%%%%}& &&&" &#&$&&&*&-&2&4&6 &7&9&; &<&= &>&F&G&H&J&R&T&X&Y&Z&[ &\&^&c&l&o &&&&&&&&&&&&'' ' ' '''"'#'$'-'6'7'9':';'<'='>'@'D'`'c'n'o''''''''''' '!'}''( ( ( ( (#($(&(*(-(2(4(8(>(@(F(G(H(J(R(T(W(X(Y(Z([(\(^(`(l(n(((( (((((((((()) ))))" )#)$)&)*)-)2)4)7 )9)<)>)@)D)F)G)H)J)Q)R)S)T)U)X)[)])c)x)))))))))))))B)* * *@*Y*\*`****+,- ---$---=-@-]-`-c------. . ...." .#.$.&.*.-.2.4.7.9.: .;.<.=.@.F.G.H.J.R.T.V .W.X.Y.Z.[.\.].^.c .l.........$...........B/ / / /// /$/&/*/-/2/4/6 /7/8/9/:/;/</= /@/F/G/H/J/R/T/Y/Z/[/\/] /^/`/c /l/n/o/x ////////////}///}/0<0000122 2 2 222"2#2$2-2627292:2;2<2=2>2@2D2`2c2n2o22222222222!2}233 3 333$3-3;3>3@3D3F3G3H3J3R3T3Y 3Z3\ 3`3c3l3o 3333333333 3344 4 44"4#4$4-4647494:4;4<4=4>4D4M 4c4n4o4444444!45 5 5 5"5#5$5&5*5-5254595;5<5= 5@5M5[5]5^5`5c 5l555 55555566666 7 7 7 77777"7#7$7&7*7-727477797:7; 7<7@7D7F7G7H7J7Q7R7S7T7U7V7X7Y7Z7[7\7]7^7c7l7x777%77:7077)777777777B8 8888$8-8=8@8D8]8^8`8c8888889 9 9 99999"9#9$9&9*9-929497999:9;9<9@9D9F9G9H9J9Q9R9S9T9U9V9X9^9c9l9n9o9x99909989/99)99999999B: : ::::":#:$:&:*:-:2:4:7:9:: :; :<:@:D:F:G:H:J:Q:R:S:T:U:V:X:^:c:l:n:o::::':)::::::; ; ;; ; ;#;$;&;*;-;2;4;7 ;9;;;<;= ;@;F;G;H;J;R;T;X;Y;Z;[;^;c ;l;;;; ;;;;;;;;;;;;;;B< < <<<<<"<#<$<&<*<-<0<2<4<7<9<:<;<<<= <@<D<F<G<H<J<Q<R<S<T<U<V<X<Y<[<\<]<^<c<l<n <o<x<<$<<8<0<)<<<<<<<<<<B= == =#=$=&=*=-=2=4=8=9 =< =>=@=F=G=H=J=R=T=W=X=Y=Z=[=\=^=`=l== ==================>$>&>*>->2>4>6>7>8>9>:>;><>=>@<>>>>>>>>>>>>>>>>E>K>Y>u>}>>>>>>>>>@&@*@2@4@:@;@=@@@@@@@@E@u@@@@D D D D"D@DYDZD\D`DoE E EE"E@EYEZE[E\E]E`EnEoEE#EFF F@FGFJFRFY FZ F[F\ F^FlFI #I IIII"I@#IFIHIJIRITIYIZI[ I\I`#IcIlIoIxII.II8I/I8K K K K"K@KYKZK\K`KnKoLMMNN N#N@NFNGNHNJNRNTN[N^NlNNNOQ Q Q Q"Q@QYQZQ\Q`QnQoR R R RR"R@RYRZR[R\R]R`RnRoRR#RS S S SS"S@SYSZS[S\S]S`SnSoSS#STMU UUUU"U@UTUYUZU[U\UcUlUo UWW W@WFWGWHWJWRWTW[W^WlWY YYY"Y@YFYGYHYJYRYTYYYZY[ Y\YcYo YYZ ZZZ"Z@ZFZRZYZZZ[ Z\ZcZo ZZ[@[F[G[H[J[R[T[[[^[l[[[]@]F]G]H]I]J]R]T]W]X]^]`]l]]]]]^$^&^*^-^2^4^6^8^=^\ ^`<^^^^^^^^^^ ^E^Y^u^}^^^^^^`$`-`6`7`8`9`:`;`<`=``````````````K`}```````b bbbc$c&c*c-c2c4c6c7c8c9c:c; c<c=ccccccc cKccccccccc l7l9l<llKlln$n&n*n-n2n4n9n:n< nFnJnnnnnnnK nnnnn nnx$x-x6x7x9x:x;x<x=xxxxxxxxxxxxxxxKxYx}xxxxxxx|7|8|9|:|<|=~~~~~ ~~~$&*-246789:;<= "$-79;<=>@D`cno!} "@YZ\`no~" @ ` "@YZ[\]`no#E9IK7L6M7N7O7W'Y7Z7[6\6]'(M(]) ) )")Y)Z)n)o}}}}   } }} }}$&*24789; <<&  %EKWYqu $79;<=K`qu}67: ;<=KYq}$&*-02479:;<EKqu $-79;<=K`q}$%&'()*+,-./0123456789:;<=<&EKWY`qu}$%&*-246789:;<=&%7%EKYq&u}%%%24=Eu}$&*2468=<&EWqu};=Y}-7;<KYu}$-679;<=Kq}% ' ( ) + , - . / 0 1 3 5 79;  $"%&'()*+,-%./0123456;=":;[][]#&*248FGHJRTWXYZ\~$79:;<=&*24789:<JYZ\}~YZ\~9< F G H J R T   &*24FGHJRTXYZ\~$-D[] $-9;<=D !#}MYZ[\~&*248FGHJRTXYZ\~7 9 < M O W X       } !Y!Z!\!!~#$[$]$$$\$\-\;\<\=\D\E\I\K\L\M\N\Q\S\U\\\\(\\\\\\\\ \\\\}9}<}(}}}}}}}}9<&*24789:<FGHRTXYZ8788&*24789:<YZ\}~$&*-24DFGHJQRSTUVXYZ[\]) "$~DFGHRT$-=D     "L~    "#>@` "*ELXYu~   #@^`clno$    "EFKLYZuv}~    ">@` "*LY~    ">@`K  "#@^clx~    %*EFLZrv|~   %@^`l$4$$  :&Eu}~    #>@^`ln "EFLu~ F   ">@`  " #@^c l$    "EFLYZuv}~    "#>@`K    "#>@`cnoKq}  >@`clo  * L Y qr " #>^clo    EFKLZu~  "#@^clx    %*EFKLZqrv|~   "#@^clnox   $EFqrv   "#>@`cno Xqr}    #@^c l   "FKLZv~   %@^`l$4$$  ?Eu}~    "#>@`cno}   "@`oL   >   "@` "@^`l *LZ~  @`~   ">@`oL   #@^l Fv   "@`  #@^l F   "@`no L    ">@`noL @^`l   L  "@^`l *LZ~ "@`co   *L~   ">@`no ~ "#@^`lF  @`K~    " @ `     L ~        " @ ` n o         "@`no    "#>  "#>@^`lF  "@^`    "#>@`" " " """@"`""" "L"~% % %%%%"!%#%@%`%l%x%%%%%1% %%%%%%%%%%"%%%%%%%%%%%%%%%%%%%%%%%%%%% % % %%%'%%%'%%*%E%F%L%Z%r%v%}%~& &&&&"&@&l&x&&&&&&&& & &*&L&Z&~2 2 2 2"2D D D"DDDD DLDZEE E E EEEE"E>EEEEEEEEEEEEEEEEEEEEE E EEEEEEXE}F F FFF"F>FFFF FLK K KKKKK"K#K@K^KcKlKn KoKxKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKKK K KKKKKKKK*KFKKKZKrKvL L LLL"L@L`LcLo LLLLLLLL L L*LLL~WW W W W W"W>W@W`WWWWWWWWWWWWYX X X X X"X#X>X@X`XXY Y Y YYY"Y>Y@Y`YYYYYYYYYYYYYYrYvY}Z Z Z ZZZZZ"Z>Z@Z`Z`` ``a a"a^ale e e"eeFqqqqqqqqqqqqFr r r rrrrr"r>r@r`ruu u u u uuu"u#u>u@u`ucunuouuuuuuuuuuuuuuuKv v v vvvvv"v@v`vnvovvvvv vL} } }}}}>}@}`}}}}}}}}}}} }}}}"}*}L}Y}~~ ~ ~"~#~^~l~~~F   #@^`clno$     ">@`  "#@^clx~ .]2W&%2pX??   #@^`clno     #>@^`ln.%>2  #>@^`l A(7K?   " #@^c l$&LKK $    "#>@`%%    #>@^`ln  K&2   DD    "#>@`cno    >@`clo   #>@^l %J6  K?    "#@^clx 9^+K&P dd&2  "#@^cln ox 9e&X 2P Q#dd/   "#>@`cno    #@^c l   K<% KA  #>@`l/%:2   "#>@`no     "@^`lno    "@`co     ">cno     #@^`l  '"?%@"`"clKm0pR%2P%?}p;2   "#no  @`c   @^`lno  #@^`l   #?@^`no   "#>@`n  "@`co   @"`"0WX 2  &XW&   ">@`cno  ">@`n    ">@`cno @^`cl "@`c  "@^`l  "@`cn    ">@`cno "#@^`l   "#>@`cn   "@`cno&?&K 2?(KzI"T!z   ~@ >k k     T   @  B       F 4T 2T  l  BoldCopyright 2011 Canonical Ltd. Licensed under the Ubuntu Font Licence 1.0Dalton Maag LtdDaltonMaagLtd: Ubuntu Medium 0.83The Ubuntu Font Family are libre fonts funded by Canonical Ltd on behalf of the Ubuntu project. The font design work and technical implementation is being undertaken by Dalton Maag. The typeface is sans-serif, uses OpenType features and is manually hinted for clarity on desktop and mobile computing screens. The scope of the Ubuntu Font Family includes all the languages used by the various Ubuntu users around the world in tune with Ubuntu's philosophy which states that every user should be able to use their software in the language of their choice. The project is ongoing, and we expect the family will be extended to cover many written languages in the coming years.Ubuntu Lighttp://www.daltonmaag.com/Ubuntu and Canonical are registered trademarks of Canonical Ltd.Ubuntu-MediumCopyright 2011 Canonical Ltd. Licensed under the Ubuntu Font Licence 1.0Dalton Maag LtdDaltonMaagLtd: Ubuntu Medium 0.83The Ubuntu Font Family are libre fonts funded by Canonical Ltd on behalf of the Ubuntu project. The font design work and technical implementation is being undertaken by Dalton Maag. The typeface is sans-serif, uses OpenType features and is manually hinted for clarity on desktop and mobile computing screens. The scope of the Ubuntu Font Family includes all the languages used by the various Ubuntu users around the world in tune with Ubuntu's philosophy which states that every user should be able to use their software in the language of their choice. The project is ongoing, and we expect the family will be extended to cover many written languages in the coming years.Ubuntu and Canonical are registered trademarks of Canonical Ltd.Ubuntu-MediumVersion 0.83http://www.daltonmaag.com/  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghjikmlnoqprsutvwxzy{}|~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~.nullEurouni00A0uni00ADmacronperiodcenteredAmacronamacronAbreveabreveAogonekaogonek Ccircumflex ccircumflex Cdotaccent cdotaccentDcarondcaronDcroatdcroatEmacronemacronEbreveebreve Edotaccent edotaccentEogonekeogonekEcaronecaron Gcircumflex gcircumflex Gdotaccent gdotaccent Gcommaaccent gcommaaccent Hcircumflex hcircumflexHbarhbarItildeitildeImacronimacronIbreveibreveIogonekiogonek Idotaccenti.loclIJij Jcircumflex jcircumflex Kcommaaccent kcommaaccentkgreenlandic.case kgreenlandicLacutelacute Lcommaaccent lcommaaccentLcaronlcaronLdotldotNacutenacute Ncommaaccent ncommaaccentNcaronncaronnapostrophe.case napostropheEngengOmacronomacronObreveobreve Ohungarumlaut ohungarumlautRacuteracute Rcommaaccent rcommaaccentRcaronrcaronSacutesacute Scircumflex scircumflexuni0162uni0163TcarontcaronTbartbarUtildeutildeUmacronumacronUbreveubreveUringuring Uhungarumlaut uhungarumlautUogonekuogonek Wcircumflex wcircumflex Ycircumflex ycircumflexZacutezacute Zdotaccent zdotaccentlongs Scommaaccent scommaaccentuni021Auni021Bdotlessj apostropheuni02C9WgravewgraveWacutewacute Wdieresis wdieresisYgraveygrave zerosuperior foursuperior fivesuperior sixsuperior sevensuperior eightsuperior ninesuperior zeroinferior oneinferior twoinferior threeinferior fourinferior fiveinferior sixinferior seveninferior eightinferior nineinferior afii61289 estimatedonethird twothirds oneeighth threeeighths fiveeighths seveneighthsonefifth twofifths threefifths fourfifthsonesixth fivesixths oneseventh twosevenths threesevenths foursevenths fivesevenths sixseventhsoneninth twoninths fourninths fiveninths sevenninths eightninthsDeltauni2126uni2215uni2219f_ff_if_lf_f_if_f_lzero.altone.alttwo.alt three.altfour.altfive.altsix.alt seven.alt eight.altnine.alt zero.supsone.supstwo.sups three.sups four.sups five.supssix.sups seven.sups eight.sups nine.sups zero.sinfone.sinftwo.sinf three.sinf four.sinf five.sinfsix.sinf seven.sinf eight.sinf nine.sinf caron.alt commaaccentrevcommaaccentcaron.alt.short Parenleft ParenrightHyphenSlashAt Bracketleft Backslash Bracketright Braceleft Braceright GuilsinglleftBulletEndashEmdashGuilsinglright Exclamdown GuillemotleftGuillemotright Questiondownuni0180uni0181uni0182uni0183uni0184uni0185uni0186uni0187uni0188uni0189uni018Auni018Buni018Cuni018Duni018Euni018Funi0190uni0191uni0193uni0194uni0195uni0196uni0197uni0198uni0199uni019Auni019Buni019Cuni019Duni019Euni019FOhornohornuni01A2uni01A3uni01A4uni01A5uni01A6uni01A7uni01A8uni01A9uni01AAuni01ABuni01ACuni01ADuni01AEUhornuhornuni01B1uni01B2uni01B3uni01B4uni01B5uni01B6uni01B7uni01B8uni01B9uni01BAuni01BBuni01BCuni01BDuni01BEuni01BFuni01C0uni01C1uni01C2uni01C3uni01C4uni01C5uni01C6uni01C7uni01C8uni01C9uni01CAuni01CBuni01CCuni01CDuni01CEuni01CFuni01D0uni01D1uni01D2uni01D3uni01D4uni01D5uni01D6uni01D7uni01D8uni01D9uni01DAuni01DBuni01DCuni01DDuni01DEuni01DFuni01E0uni01E1uni01E2uni01E3uni01E4uni01E5Gcarongcaronuni01E8uni01E9uni01EAuni01EBuni01ECuni01EDuni01EEuni01EFuni01F0uni01F1uni01F2uni01F3uni01F4uni01F5uni01F6uni01F7uni01F8uni01F9 Aringacute aringacuteAEacuteaeacute Oslashacute oslashacuteuni0200uni0201uni0202uni0203uni0204uni0205uni0206uni0207uni0208uni0209uni020Auni020Buni020Cuni020Duni020Euni020Funi0210uni0211uni0212uni0213uni0214uni0215uni0216uni0217uni021Cuni021Duni021Euni021Funi0220uni0221uni0222uni0223uni0224uni0225uni0226uni0227uni0228uni0229uni022Auni022Buni022Cuni022Duni022Euni022Funi0230uni0231uni0232uni0233uni0234uni0235uni0236uni0238uni0239uni023Auni023Buni023Cuni023Duni023Euni023Funi0240uni0241uni0242uni0243uni0244uni0245uni0246uni0247uni0248uni0249uni024Auni024Buni024Cuni024Duni024Euni024Funi0292breve_inverted double_grave ring_acutedieresis_macron dot_macrondieresis_gravedieresis_acutedieresis_breve tilde_macron acute.asccircumflex.asc caron.ascdieresis_grave.capdieresis_acute.capdieresis_breve.capuni0400 afii10023 afii10051 afii10052 afii10053 afii10054 afii10055 afii10056 afii10057 afii10058 afii10059 afii10060 afii10061uni040D afii10062 afii10145 afii10017 afii10018 afii10019 afii10020 afii10021 afii10022 afii10024 afii10025 afii10026 afii10027 afii10028 afii10029 afii10030 afii10031 afii10032 afii10033 afii10034 afii10035 afii10036 afii10037 afii10038 afii10039 afii10040 afii10041 afii10042 afii10043 afii10044 afii10045 afii10046 afii10047 afii10048 afii10049 afii10065 afii10066 afii10067 afii10068 afii10069 afii10070 afii10072 afii10073 afii10074 afii10075 afii10076 afii10077 afii10078 afii10079 afii10080 afii10081 afii10082 afii10083 afii10084 afii10085 afii10086 afii10087 afii10088 afii10089 afii10090 afii10091 afii10092 afii10093 afii10094 afii10095 afii10096 afii10097uni0450 afii10071 afii10099 afii10100 afii10101 afii10102 afii10103 afii10104 afii10105 afii10106 afii10107 afii10108 afii10109uni045D afii10110 afii10193afii10066.locluni0462uni0463uni0472uni0473uni0474uni0475uni048Auni048Buni048Cuni048Duni048Euni048F afii10050 afii10098uni0492uni0493uni0494uni0495uni0496uni0497uni0498uni0499uni049Auni049Buni049Cuni049Duni049Euni049Funi04A0uni04A1uni04A2uni04A3uni04A4uni04A5uni04A6uni04A7uni04A8uni04A9uni04AAuni04ABuni04ACuni04ADuni04AEuni04AFuni04B0uni04B1uni04B2uni04B3uni04B4uni04B5uni04B6uni04B7uni04B8uni04B9uni04BAuni04BBuni04BCuni04BDuni04BEuni04BFuni04C0uni04C1uni04C2uni04C3uni04C4uni04C5uni04C6uni04C7uni04C8uni04C9uni04CAuni04CBuni04CCuni04CDuni04CEuni04CFuni04D0uni04D1uni04D2uni04D3uni04D4uni04D5uni04D6uni04D7uni04D8uni04D9uni04DAuni04DBuni04DCuni04DDuni04DEuni04DFuni04E0uni04E1uni04E2uni04E3uni04E4uni04E5uni04E6uni04E7uni04E8uni04E9uni04EAuni04EBuni04ECuni04EDuni04EEuni04EFuni04F0uni04F1uni04F2uni04F3uni04F4uni04F5uni04F6uni04F7uni04F8uni04F9 afii61352 afii00208uni20B4uni20AEtengeroublekratkaAlphaBetaGammauni0394EpsilonZetaEtaThetaIotaKappaLambdaMuNuXiOmicronPiRhoSigmaTauUpsilonPhiChiPsialphabetagammadeltaepsilonzetaetathetaiotakappalambdauni03BCnuxiomicronrhosigma1sigmatauupsilonphichipsiomega Alphatonos EpsilontonosEtatonos Iotatonos Iotadieresis Omicrontonos UpsilontonosUpsilondieresis Omegatonos alphatonos epsilontonosetatonos iotatonos iotadieresisiotadieresistonos omicrontonosupsilondieresis upsilontonosupsilondieresistonos omegatonostonos tonos.cap dieresistonosuni1F00uni1F01uni1F02uni1F03uni1F04uni1F05uni1F06uni1F07uni1F08uni1F09uni1F0Auni1F0Buni1F0Cuni1F0Duni1F0Euni1F0Funi1F10uni1F11uni1F12uni1F13uni1F14uni1F15uni1F18uni1F19uni1F1Auni1F1Buni1F1Cuni1F1Duni1F20uni1F21uni1F22uni1F23uni1F24uni1F25uni1F26uni1F27uni1F28uni1F29uni1F2Auni1F2Buni1F2Cuni1F2Duni1F2Euni1F2Funi1F30uni1F31uni1F32uni1F33uni1F34uni1F35uni1F36uni1F37uni1F38uni1F39uni1F3Auni1F3Buni1F3Cuni1F3Duni1F3Euni1F3Funi1F40uni1F41uni1F42uni1F43uni1F44uni1F45uni1F48uni1F49uni1F4Auni1F4Buni1F4Cuni1F4Duni1F50uni1F51uni1F52uni1F53uni1F54uni1F55uni1F56uni1F57uni1F59uni1F5Buni1F5Duni1F5Funi1F60uni1F61uni1F62uni1F63uni1F64uni1F65uni1F66uni1F67uni1F68uni1F69uni1F6Auni1F6Buni1F6Cuni1F6Duni1F6Euni1F6Funi1F70uni1F71uni1F72uni1F73uni1F74uni1F75uni1F76uni1F77uni1F78uni1F79uni1F7Auni1F7Buni1F7Cuni1F7Duni1F80uni1F81uni1F82uni1F83uni1F84uni1F85uni1F86uni1F87uni1F88uni1F89uni1F8Auni1F8Buni1F8Cuni1F8Duni1F8Euni1F8Funi1F90uni1F91uni1F92uni1F93uni1F94uni1F95uni1F96uni1F97uni1F98uni1F99uni1F9Auni1F9Buni1F9Cuni1F9Duni1F9Euni1F9Funi1FA0uni1FA1uni1FA2uni1FA3uni1FA4uni1FA5uni1FA6uni1FA7uni1FA8uni1FA9uni1FAAuni1FABuni1FACuni1FADuni1FAEuni1FAFuni1FB0uni1FB1uni1FB2uni1FB3uni1FB4uni1FB6uni1FB7uni1FB8uni1FB9uni1FBAuni1FBBuni1FBCuni1FBDuni1FBEuni1FBFuni1FC0uni1FC1uni1FC2uni1FC3uni1FC4uni1FC6uni1FC7uni1FC8uni1FC9uni1FCAuni1FCBuni1FCCuni1FCDuni1FCEuni1FCFuni1FD0uni1FD1uni1FD2uni1FD3uni1FD6uni1FD7uni1FD8uni1FD9uni1FDAuni1FDBuni1FDDuni1FDEuni1FDFuni1FE0uni1FE1uni1FE2uni1FE3uni1FE4uni1FE5uni1FE6uni1FE7uni1FE8uni1FE9uni1FEAuni1FEBuni1FECuni1FEDuni1FEEuni1FEFuni1FF2uni1FF3uni1FF4uni1FF6uni1FF7uni1FF8uni1FF9uni1FFAuni1FFBuni1FFCuni1FFDuni1FFE uni1F88.alt uni1F89.alt uni1F8A.alt uni1F8B.alt uni1F8C.alt uni1F8D.alt uni1F8E.alt uni1F8F.alt uni1F98.alt uni1F99.alt uni1F9A.alt uni1F9B.alt uni1F9C.alt uni1F9D.alt uni1F9E.alt uni1F9F.alt uni1FA8.alt uni1FA9.alt uni1FAA.alt uni1FAB.alt uni1FAC.alt uni1FAD.alt uni1FAE.alt uni1FAF.alt uni1FBC.alt uni1FCC.alt uni1FFC.altuni20B9uniE0FFuniEFFDubuntuuniF0FFuniF000  Bcyrlgrek latn,kernkern&kern6  $,4<DLTH 0>*Lp$}(>HV`v(2<R\fp~ ,:HN\jp~,JXb>J\jt~ 0BTfx  *4>HR  Z l ~  Z   $ 2 @%:008/'$80 .8/8.8/8$80$80%:0%:0%:0'$80   %:0'''$80.8/808/%:0%:0$80   $80$80%|$%|%|$%|%|%|%|$$$%|.]2W&%2pX??.%>2A(7K? &LKK %% K&2   DD   %J6  K?  9^+K&P dd&29e&X 2P Q#dd/ K<% KA /%:2   Km0pR%2P%?}p;2 0WX 2  &XW&.%>29e&X 2P Q#dd/9e&X 2P Q#dd/&?.%>2.%>2.%>2.%>2.%>2.%>2&K 29e&X 2P Q#dd/9e&X 2P Q#dd/9e&X 2P Q#dd/9e&X 2P Q#dd/.%>2.%>2?(K9e&X 2P Q#dd/9e&X 2P Q#dd/9e&X 2P Q#dd/9e&X 2P Q#dd/.f  # ##       7766'7'97776  $        $     }       6S          < < <       < <%&< "%" 78887{/z4R      %%% $ ~      $ $           Z2yfz2  ""'%   "" PsuP-n    & &7%&&  $  ~  % 4$$$:     $      *TPU&c     $$% 4$?     "!''1        B=H>+K  }.79:<=Idz<>@NPRTV[fhjl)MV-/AI     !6789Q$9DFIIKUWW%Y[&]])dd*kk+mm,-DIPQ\]^opqrstuvw'x)688::<BDDFFHHJJLLOOSSUUWWYY[]ggiikk  *8::<<>>@@BGIIKKMRUUWY]a cikkmy{{#$&*278:w #9:;<=>@^`bceflnpstxz|~(NPRTVfhjl  !#$)STV\}#  ## >> @@ ^^``ccefllnnppstxx&)+BJR X!`(-h69nrvz~%- 3;"'C.5I:Qf #>@^`ceflnpstx!#-/13579;=G]^blmosy{e $%'),.0468:<>?ABCEGHIJKMOPQSUWY[_`dfhjnpqtuwz|}&    "&(*2@DFLNPRTXZ\acegkrvx~$ !"#$%&'()*+,- * %&&&&&&,,,,      !!""#####% % % % & & & ) ) ) ***+++,,,,,,*+&&-"% &' )++!! & ,,,,, "& & % &   & & ) ) ,,& & & &  )Se8 NN!:/0;12<3456=7>PT*$+. -,]]^_9%&   <1 97::::::?/11111144447TTTTTTT....]&&&&:T:T:T////0000++.......; -,,,,,]]]]`111___<9<9<93%3%3%4&4&4&4&4&4&67>>><93% 6667$$$$$$$LJQFKIMROGQQHGH***Z/b"[E15\-,#@]111cU%'34&AB>Vd(WX,]:T.14&4&4&4&4&a:T:T?T00-11V( 0]:T?T1:T:T..11__4&4&C)+>:T11117]:/Y9D:7(q     ##::;;<<==>> @@ ^^ `` bbcceeffllnnppstxxzz||~~((NNPPRRTTVVffhhjjll-./0123456 !"#$%&'()!*+)*,78?@9AB:  CDEF;GHIJ  K!!L##M$$N))SSGTTJVV\\O}}PQ=>R<JNo56bcdefghi?jklWC 9E#|$%&}'~Vz(()*+,-F.478BA D!V!oW"66-@) n"@ddddggggcjCCCC m#######$&&&&/())))))....BB###$$$$c%%d&d&d&d&d&''''f~f~ggggggVhhizizizizizj(j(j(j(0)))l,l,l,W-W-W-FFFC.C.C.C.C.C.7 B9A9A9AW-FV777 B}}}}}}}Z[aX\Y^`]_ 3L >M33==|||T$21vU<:eGhzsHj())xOF;C.pqB9AP{tryQucc%iizii(#g)C.C.C.C.C. ###''h))PrVcc%'j(##)##d&d&gg))l,l,C.C.Rwf~9A#d&)))) BI(I%+$JS-AKd& Br$) * . ))))))+ !)))    *"         . . .  (   #, . -$%&')      ))+    -% )+ ))    . )    ) )%S      ##>>@@^^``cc ee ff ll nnppst xx  !"#$%&'()*+,-./0123!#%+0! #!%(-+690!#%0-+#P) ) # ; $A$+:""<##>>=@@^^``cc(ee(ff$ll nn&oo'pp&qq'stAxx@ @^^'68K23M79L>4K545    ?Q.BCOD/EF-G!N"HI *0,%1J?CDE",J?C DE"'".5,:AJJK?LMCNODPQERS"TU,VWJX_?hoDxJ?DE,I,J =      "'.5:AJKLMNOPQRSTUVWX_`ghopwxW)    '!*""##>> ??.@@ ^^`` cceeffllnn oo pp qq st'^^ ,("$1/-0% #+&,1/+&,1 /"'.5+:A&JK,LM1NO/RSTU+VW&X_,ho/x&,/+%+&_      ##>>@@^^``cc ee ff ll nnppst xx " ,)&%) !"#$%&'()*)+,))*!!##*-- // 1133#55$77&99&;;&==&GG,]])^^#bb'll)mmooss"yy#{{$%%*** )Q0 0 + R %,N,1S""T##&>>U@@)^^'``(cc/ee/ff,ll*nn-oo.pp-qq.stNxxY*Y^^.ILjKFVJMkWGjHGH  #$   \=]a728O^_9`a3bc>45a?d  e  @  a  :f;2Zag<mX9a[_^h  =!!""A##$$3%%&&l((^**P,,c--..a//00a1122a33 4485566O7788_99::_;;<<_==>>_??@@aAABBaCCDDaEEFFDGGHHIIJJ>KKLL6MMNN6OO PP5QQRR>SSTT?UUVV?WWYYZZB[[\\B]]^^ __8``"aaabbcc9ddeeaffggahhii?kk`llmm nn\oo pp\qq!rrisstt2uu vvEww xxEyy zz8{{||O}}~~C^^333O?aa    !"#$%#  !"% ###TM M   [ ""## >>S@@ ^^ ``RcceeffllnnKooLppKqqLstxx^^LQJHIPZEFHGFGaCA>@OXAb> ]?`N#+$%&'()*+,-+./  0  1  +  234!+56UV)+"('7  N!!""\##$$(('**8,,..+00+22+33O44%55X66&88(::(<<(>>(@@+BB+DD+EEBFF9GGHHIIJJ-KKLL MMNN OO PPQQRR-SS]TT.UU]VV.XXWYY_ZZ:[[_\\:^^O__%aa+bbAcc)ee+gg+hh]ii.kk*mmnnooppqqDrr;ttuu^vv<ww^xx<yyOzz%{{X||&}}Y~~=''?&>>>].++#        "" && ((**22 @@DD FF LLNNRRTTXXZZ\\aacceeggkkrrvvxx~~Q    "" ## >>"@@^^&`` cc*ee*ffllnnooppqqstxx))^^ #$%      #!   $$$**'4466FFHH%JJLLNNPP RRTTVVZZ(\\(__cciitt#zz||~~$$$    ZcyrlgreklatnBGR 0MKD JSRB d -9FS^i  '.:GT_j  (/;HU`k  )0<IVal   1=DJQWbm"AZE BCRT ^MOL zROM TRK !28>EKRXcn "*3?LYdo #+4@MZep $5AN[fq %6BO\gr &,7CP]hstcasecasecasecasecasecasecasecasecasednomdnomdnomdnomdnomdnom dnom&dnom,dnom2dnom8dnom>fracDfracPfrac\frachfractfracfracfracfracfracfracligaligaligaligaligaligaligaligalocllocllocllocl loclloclnumrnumr"numr(numr.numr4numr:numr@numrFnumrLnumrRnumrXordn^pnumdpnumjpnumppnumvpnum|pnumpnumpnumpnumpnumpnumsaltsaltsinfsinfsinfsinfsinfsinfsinfsinfsinfsinfsinfss01ss01subssubssubssubs"subs(subs.subs4subs:subs@subsFsubsLsupsRsupsXsups^supsdsupsjsupspsupsvsups|supssupssupstnumtnumtnumtnumtnumtnumtnumtnumtnumtnumtnum                                             8@HPX`hpx*,R)l))**+*+X++++++++/+/+/++b+2opqrstuopqrstuopqrstuopqrstuopqrstu+d+b2vwxyz{|}~xywvz{|}~vwxyz{|}~vwxyz{|}~vwxyz{|}~+2*2*n2*&nn*$0fH:, F 8 v .TtfX>rd  Z"<#.$ $%&&0bjrz "*2:BJRZbjrznnnnnnnnnnnpnqnrnsntnunxnynzn{n|n}n~nnnnnnnnnnnnnnnnnnnnnnnnn2:BJRZbjrznnnnnnqnsnunyn{n}nnnnnnnnnnnnn2:BJRZbjrznnnnnpnqnsntnzn{n}n~nnnnnnnnnnnn&.6>FNV^fnv~nnnnqnsnun{n}nnnnnnnnnn2:BJRZbjrznnnnnrnsntnun|n}n~nnnnnnnnnnnnn&.6nnsn}nnn "*2:BJRZbjrnnntnun~nnnnnnn&.6nnunnnn2:BJRZbjrznnnnnnqnsnunyn{n}nnnnnnnnnnnnn2:BJRZbjrznnnnnpnqnsntnzn{n}n~nnnnnnnnnnnn0bjrz "*2:BJRZbjrznnnnnnnnnnnpnqnrnsntnunxnynzn{n|n}n~nnnnnnnnnnnnnnnnnnnnnnnnn&.6>FNV^fnv~nnnnqnsnun{n}nnnnnnnnnn2:BJRZbjrznnnnnrnsntnun|n}n~nnnnnnnnnnnnn&.6nnsn}nnn "*2:BJRZbjrnnntnun~nnnnnnn&.6nnunnnn0bjrz "*2:BJRZbjrznnnnnnnnnnnpnqnrnsntnunxnynzn{n|n}n~nnnnnnnnnnnnnnnnnnnnnnnnn2:BJRZbjrznnnnnnqnsnunyn{n}nnnnnnnnnnnnn2:BJRZbjrznnnnnpnqnsntnzn{n}n~nnnnnnnnnnnn&.6>FNV^fnv~nnnnqnsnun{n}nnnnnnnnnn2:BJRZbjrznnnnnrnsntnun|n}n~nnnnnnnnnnnnn&.6nnsn}nnn "*2:BJRZbjrnnntnun~nnnnnnn&.6nnunnnn0bjrz "*2:BJRZbjrznnnnnnnnnnnpnqnrnsntnunxnynzn{n|n}n~nnnnnnnnnnnnnnnnnnnnnnnnn2:BJRZbjrznnnnnnqnsnunyn{n}nnnnnnnnnnnnn2:BJRZbjrznnnnnpnqnsntnzn{n}n~nnnnnnnnnnnn&.6>FNV^fnv~nnnnqnsnun{n}nnnnnnnnnn2:BJRZbjrznnnnnrnsntnun|n}n~nnnnnnnnnnnnn&.6nnsn}nnn "*2:BJRZbjrnnntnun~nnnnnnn&.6nnunnnn0bjrz "*2:BJRZbjrznnnnnnnnnnnpnqnrnsntnunxnynzn{n|n}n~nnnnnnnnnnnnnnnnnnnnnnnnn2:BJRZbjrznnnnnnqnsnunyn{n}nnnnnnnnnnnnn2:BJRZbjrznnnnnpnqnsntnzn{n}n~nnnnnnnnnnnn&.6>FNV^fnv~nnnnqnsnun{n}nnnnnnnnnn2:BJRZbjrznnnnnrnsntnun|n}n~nnnnnnnnnnnnn&.6nnsn}nnn "*2:BJRZbjrnnntnun~nnnnnnn&.6nnunnnn0bjrz "*2:BJRZbjrznnnnnnnnnnnpnqnrnsntnunxnynzn{n|n}n~nnnnnnnnnnnnnnnnnnnnnnnnn2:BJRZbjrznnnnnnqnsnunyn{n}nnnnnnnnnnnnn2:BJRZbjrznnnnnpnqnsntnzn{n}n~nnnnnnnnnnnn&.6>FNV^fnv~nnnnqnsnun{n}nnnnnnnnnn2:BJRZbjrznnnnnrnsntnun|n}n~nnnnnnnnnnnnn&.6nnsn}nnn "*2:BJRZbjrnnntnun~nnnnnnn&.6nnunnnn2opqrstuopqrstuopqrstuopqrstuopqrstu0LP6-N$%&'()*+,-./0123456789:;<=kmz   "$&(*,.02468:<>@BDFHJLNPRTVY[fhjlL "(ILIOILO "(ILIOILO "(ILIOILO    xywvz{|}~Lv DR ou  o ( o  pt w~ (nnvou #>?@^`lrstx|X]DEFGHIJKLMNOPQRSTUVWXYZ[\]wy  !#%')+-/13579;=?ACEGIKMOQSUWZ\gikmI`gpw0 *H 01 0 +0a +7S0Q0, +7<<<Obsolete>>>0!0 +J0kK}󮫖b040l.60  *H 01 0 UUS10UArizona10U Scottsdale1%0#U Starfield Technologies, Inc.1:08U 1http://certificates.starfieldtech.com/repository/1604U-Starfield Services Root Certificate Authority0 150316070000Z 200316070000Z01 0 UUS10UArizona10U Scottsdale1%0#U Starfield Technologies, Inc.1402U+Starfield Services Timestamp Authority - G10"0  *H 0 xo(QQ`L~&aF=Ӌd="?\̈bDطl=HSN̢A;C) (TXA-Nفk1 ag,4L{I hEKbK!(7pOX_Μ8Bk[4e/ ^S7AboB \ 2%|cA˫FkT240BpN0J0 U00U0U% 0 +0U O fer0U#0C̛u]/KQ0:+.0,0*+0http://ocsp.starfieldtech.com/0DU=0;09753http://crl.starfieldtech.com/repository/sfsroot.crl0PU I0G0E `Hn0604+(http://crl.starfieldtech.com/repository/0  *H 33%ýB6,phiDmBϯi e̷JݙadrmDҺ?03ݶ")fPNwqcZ>,/H t87ޞ[Vb4˖ }{Z+Rrc"r(^&a D{-RķT=ayP[,e՞^T\m?^a_+}R00Ơ0  *H 0c1 0 UUS1!0U The Go Daddy Group, Inc.110/U (Go Daddy Class 2 Certification Authority0 061116015437Z 261116015437Z01 0 UUS10UArizona10U Scottsdale10U GoDaddy.com, Inc.1301U *http://certificates.godaddy.com/repository100.U'Go Daddy Secure Certification Authority10U079692870"0  *H 0 -&L25_YZaY;pc=*3y:<0#0=Tߙ %!e)~5T29&UXמ* BΧ?Rifھ],fkQJ/Hǘuع)fm x|z%.enjDSp0Ü+X+=tJQL'Xk5ŝ1 6:%IgE96~7qt0? O20.0Ua2lE_vh0U#0İґLqa=ݨj0U003+'0%0#+0http://ocsp.godaddy.com0FU?0=0;975http://certificates.godaddy.com/repository/gdroot.crl0KU D0B0@U 0806+*http://certificates.godaddy.com/repository0U0  *H ҆gf :PrJtS7DIk3ٖV0<2!{ $F%#go]{z̟X*Ğ!ZFc/))r,)7'Oh! SY ;$IHE:6oEEADN>tvբU,ƇuLn=qQ@"(IK4Zц6d5oownP^S#c͹c:h5S000  *H 0c1 0 UUS1!0U The Go Daddy Group, Inc.110/U (Go Daddy Class 2 Certification Authority0 040629170620Z 340629170620Z0c1 0 UUS1!0U The Go Daddy Group, Inc.110/U (Go Daddy Class 2 Certification Authority0 0  *H  0ޝWI[_HgehWq^wIp=Vco?T"Tزu=Kw>x k/j+ň~ĻE'o7X&-r6N?e*n] :-؎_=\e8E``tArbbo_BQe#jxMZ@^s wyg ݠXD{ >b(_ASX~8tit00UİґLqa=ݨj0U#0İґLqa=ݨjge0c1 0 UUS1!0U The Go Daddy Group, Inc.110/U (Go Daddy Class 2 Certification Authority0 U00  *H 2K>ơw3\= ni04cr8(1zT1Xb۔EsE$Ղ#yiML3#An 剞;p~& T%ns! l l a+r9 ͗nN&s+L&qatJWuH.Qia@LĬC Օb ψ2 +E (*ZW7۽0@0(5y0  *H 01 0 UUS10UArizona10U Scottsdale10U GoDaddy.com, Inc.1301U *http://certificates.godaddy.com/repository100.U'Go Daddy Secure Certification Authority10U079692870 120807154320Z 150924134423Z0k1 0 UGB10 ULondon10 ULondon10U Dalton Maag Limited10UDalton Maag Limited0"0  *H 0 YZ=&ȯ p)ZrYyW ,=|QQ7 Ex>+3>L woZ"Cs0J1*#\>xOh+w{wܘe,̵>%]D@E*v1,g6Fpgm# O8(z;+uKXF[cK d^<3 MD4ݽP;t#wE EiP%~"9":I00U00U% 0 +0U03U,0*0(&$"http://crl.godaddy.com/gds5-16.crl0SU L0J0H `Hm0907++http://certificates.godaddy.com/repository/0+t0r0$+0http://ocsp.godaddy.com/0J+0>http://certificates.godaddy.com/repository/gd_intermediate.crt0U#0a2lE_vh0U=QCo vڧԚ)0  *H !.w*=`oi e̦d`zBe+kCz~KMO> !X0jVfjݥ!rewQY!ivԣpƠkOw?szg9ӽd\:Nz %[n@Ԝ7*暹мmew"ɳ0oH;@']&l6$FM: Ej?:,aAr%'l3YZ5F9QY10001 0 UUS10UArizona10U Scottsdale10U GoDaddy.com, Inc.1301U *http://certificates.godaddy.com/repository100.U'Go Daddy Secure Certification Authority10U079692875y0 +0 +7 100 +7(10 *H  1  +70 +7 10  +70# *H  1ɋ浌w#R?#0  *H t{HQW%03 u^5YⱩEԪ/m`nШ%ER1) T~kZ̰!>wۚ+Jg.Wj$=b׏LX[miRVASKAs`)zp/Sĕ]Bj9BtSڂm%l.[~PX" KHRJclpeak-1.1.2/android/app/src/main/res/layout-v21/000077500000000000000000000000001420021144700213745ustar00rootroot00000000000000clpeak-1.1.2/android/app/src/main/res/layout-v21/result_display.xml000066400000000000000000000053211420021144700251620ustar00rootroot00000000000000