fische-3.2/0000755000175000017500000000000011515541151007617 500000000000000fische-3.2/config.sub0000644000175000017500000010115311456057072011530 00000000000000#! /bin/sh # Configuration validation subroutine script. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 # Free Software Foundation, Inc. timestamp='2008-01-16' # This file is (in principle) common to ALL GNU software. # The presence of a machine in this file suggests that SOME GNU software # can handle that machine. It does not imply ALL GNU software can. # # This file is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA # 02110-1301, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Please send patches to . Submit a context # diff and a properly formatted ChangeLog entry. # # Configuration subroutine to validate and canonicalize a configuration type. # Supply the specified configuration type as an argument. # If it is invalid, we print an error message on stderr and exit with code 1. # Otherwise, we print the canonical config type on stdout and succeed. # This file is supposed to be the same for all GNU packages # and recognize all the CPU types, system types and aliases # that are meaningful with *any* GNU software. # Each package is responsible for reporting which valid configurations # it does not support. The user should be able to distinguish # a failure to support a valid configuration from a meaningless # configuration. # The goal of this file is to map all the various variations of a given # machine specification into a single specification in the form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM # or in some cases, the newer four-part form: # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM # It is wrong to echo any other type of specification. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] CPU-MFR-OPSYS $0 [OPTION] ALIAS Canonicalize a configuration name. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.sub ($timestamp) Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" exit 1 ;; *local*) # First pass through any local machine types. echo $1 exit ;; * ) break ;; esac done case $# in 0) echo "$me: missing argument$help" >&2 exit 1;; 1) ;; *) echo "$me: too many arguments$help" >&2 exit 1;; esac # Separate what the user gave into CPU-COMPANY and OS or KERNEL-OS (if any). # Here we must recognize all the valid KERNEL-OS combinations. maybe_os=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\2/'` case $maybe_os in nto-qnx* | linux-gnu* | linux-dietlibc | linux-newlib* | linux-uclibc* | \ uclinux-uclibc* | uclinux-gnu* | kfreebsd*-gnu* | knetbsd*-gnu* | netbsd*-gnu* | \ storm-chaos* | os2-emx* | rtmk-nova*) os=-$maybe_os basic_machine=`echo $1 | sed 's/^\(.*\)-\([^-]*-[^-]*\)$/\1/'` ;; *) basic_machine=`echo $1 | sed 's/-[^-]*$//'` if [ $basic_machine != $1 ] then os=`echo $1 | sed 's/.*-/-/'` else os=; fi ;; esac ### Let's recognize common machines as not being operating systems so ### that things like config.sub decstation-3100 work. We also ### recognize some manufacturers as not being operating systems, so we ### can provide default operating systems below. case $os in -sun*os*) # Prevent following clause from handling this invalid input. ;; -dec* | -mips* | -sequent* | -encore* | -pc532* | -sgi* | -sony* | \ -att* | -7300* | -3300* | -delta* | -motorola* | -sun[234]* | \ -unicom* | -ibm* | -next | -hp | -isi* | -apollo | -altos* | \ -convergent* | -ncr* | -news | -32* | -3600* | -3100* | -hitachi* |\ -c[123]* | -convex* | -sun | -crds | -omron* | -dg | -ultra | -tti* | \ -harris | -dolphin | -highlevel | -gould | -cbm | -ns | -masscomp | \ -apple | -axis | -knuth | -cray) os= basic_machine=$1 ;; -sim | -cisco | -oki | -wec | -winbond) os= basic_machine=$1 ;; -scout) ;; -wrs) os=-vxworks basic_machine=$1 ;; -chorusos*) os=-chorusos basic_machine=$1 ;; -chorusrdb) os=-chorusrdb basic_machine=$1 ;; -hiux*) os=-hiuxwe2 ;; -sco6) os=-sco5v6 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5) os=-sco3.2v5 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco4) os=-sco3.2v4 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2.[4-9]*) os=`echo $os | sed -e 's/sco3.2./sco3.2v/'` basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco3.2v[4-9]*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco5v6*) # Don't forget version if it is 3.2v4 or newer. basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -sco*) os=-sco3.2v2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -udk*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -isc) os=-isc2.2 basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -clix*) basic_machine=clipper-intergraph ;; -isc*) basic_machine=`echo $1 | sed -e 's/86-.*/86-pc/'` ;; -lynx*) os=-lynxos ;; -ptx*) basic_machine=`echo $1 | sed -e 's/86-.*/86-sequent/'` ;; -windowsnt*) os=`echo $os | sed -e 's/windowsnt/winnt/'` ;; -psos*) os=-psos ;; -mint | -mint[0-9]*) basic_machine=m68k-atari os=-mint ;; esac # Decode aliases for certain CPU-COMPANY combinations. case $basic_machine in # Recognize the basic CPU types without company name. # Some are omitted here because they have special meanings below. 1750a | 580 \ | a29k \ | alpha | alphaev[4-8] | alphaev56 | alphaev6[78] | alphapca5[67] \ | alpha64 | alpha64ev[4-8] | alpha64ev56 | alpha64ev6[78] | alpha64pca5[67] \ | am33_2.0 \ | arc | arm | arm[bl]e | arme[lb] | armv[2345] | armv[345][lb] | avr | avr32 \ | bfin \ | c4x | clipper \ | d10v | d30v | dlx | dsp16xx \ | fido | fr30 | frv \ | h8300 | h8500 | hppa | hppa1.[01] | hppa2.0 | hppa2.0[nw] | hppa64 \ | i370 | i860 | i960 | ia64 \ | ip2k | iq2000 \ | m32c | m32r | m32rle | m68000 | m68k | m88k \ | maxq | mb | microblaze | mcore | mep \ | mips | mipsbe | mipseb | mipsel | mipsle \ | mips16 \ | mips64 | mips64el \ | mips64vr | mips64vrel \ | mips64orion | mips64orionel \ | mips64vr4100 | mips64vr4100el \ | mips64vr4300 | mips64vr4300el \ | mips64vr5000 | mips64vr5000el \ | mips64vr5900 | mips64vr5900el \ | mipsisa32 | mipsisa32el \ | mipsisa32r2 | mipsisa32r2el \ | mipsisa64 | mipsisa64el \ | mipsisa64r2 | mipsisa64r2el \ | mipsisa64sb1 | mipsisa64sb1el \ | mipsisa64sr71k | mipsisa64sr71kel \ | mipstx39 | mipstx39el \ | mn10200 | mn10300 \ | mt \ | msp430 \ | nios | nios2 \ | ns16k | ns32k \ | or32 \ | pdp10 | pdp11 | pj | pjl \ | powerpc | powerpc64 | powerpc64le | powerpcle | ppcbe \ | pyramid \ | score \ | sh | sh[1234] | sh[24]a | sh[23]e | sh[34]eb | sheb | shbe | shle | sh[1234]le | sh3ele \ | sh64 | sh64le \ | sparc | sparc64 | sparc64b | sparc64v | sparc86x | sparclet | sparclite \ | sparcv8 | sparcv9 | sparcv9b | sparcv9v \ | spu | strongarm \ | tahoe | thumb | tic4x | tic80 | tron \ | v850 | v850e \ | we32k \ | x86 | xc16x | xscale | xscalee[bl] | xstormy16 | xtensa \ | z8k) basic_machine=$basic_machine-unknown ;; m6811 | m68hc11 | m6812 | m68hc12) # Motorola 68HC11/12. basic_machine=$basic_machine-unknown os=-none ;; m88110 | m680[12346]0 | m683?2 | m68360 | m5200 | v70 | w65 | z8k) ;; ms1) basic_machine=mt-unknown ;; # We use `pc' rather than `unknown' # because (1) that's what they normally are, and # (2) the word "unknown" tends to confuse beginning users. i*86 | x86_64) basic_machine=$basic_machine-pc ;; # Object if more than one company name word. *-*-*) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; # Recognize the basic CPU types with company name. 580-* \ | a29k-* \ | alpha-* | alphaev[4-8]-* | alphaev56-* | alphaev6[78]-* \ | alpha64-* | alpha64ev[4-8]-* | alpha64ev56-* | alpha64ev6[78]-* \ | alphapca5[67]-* | alpha64pca5[67]-* | arc-* \ | arm-* | armbe-* | armle-* | armeb-* | armv*-* \ | avr-* | avr32-* \ | bfin-* | bs2000-* \ | c[123]* | c30-* | [cjt]90-* | c4x-* | c54x-* | c55x-* | c6x-* \ | clipper-* | craynv-* | cydra-* \ | d10v-* | d30v-* | dlx-* \ | elxsi-* \ | f30[01]-* | f700-* | fido-* | fr30-* | frv-* | fx80-* \ | h8300-* | h8500-* \ | hppa-* | hppa1.[01]-* | hppa2.0-* | hppa2.0[nw]-* | hppa64-* \ | i*86-* | i860-* | i960-* | ia64-* \ | ip2k-* | iq2000-* \ | m32c-* | m32r-* | m32rle-* \ | m68000-* | m680[012346]0-* | m68360-* | m683?2-* | m68k-* \ | m88110-* | m88k-* | maxq-* | mcore-* \ | mips-* | mipsbe-* | mipseb-* | mipsel-* | mipsle-* \ | mips16-* \ | mips64-* | mips64el-* \ | mips64vr-* | mips64vrel-* \ | mips64orion-* | mips64orionel-* \ | mips64vr4100-* | mips64vr4100el-* \ | mips64vr4300-* | mips64vr4300el-* \ | mips64vr5000-* | mips64vr5000el-* \ | mips64vr5900-* | mips64vr5900el-* \ | mipsisa32-* | mipsisa32el-* \ | mipsisa32r2-* | mipsisa32r2el-* \ | mipsisa64-* | mipsisa64el-* \ | mipsisa64r2-* | mipsisa64r2el-* \ | mipsisa64sb1-* | mipsisa64sb1el-* \ | mipsisa64sr71k-* | mipsisa64sr71kel-* \ | mipstx39-* | mipstx39el-* \ | mmix-* \ | mt-* \ | msp430-* \ | nios-* | nios2-* \ | none-* | np1-* | ns16k-* | ns32k-* \ | orion-* \ | pdp10-* | pdp11-* | pj-* | pjl-* | pn-* | power-* \ | powerpc-* | powerpc64-* | powerpc64le-* | powerpcle-* | ppcbe-* \ | pyramid-* \ | romp-* | rs6000-* \ | sh-* | sh[1234]-* | sh[24]a-* | sh[23]e-* | sh[34]eb-* | sheb-* | shbe-* \ | shle-* | sh[1234]le-* | sh3ele-* | sh64-* | sh64le-* \ | sparc-* | sparc64-* | sparc64b-* | sparc64v-* | sparc86x-* | sparclet-* \ | sparclite-* \ | sparcv8-* | sparcv9-* | sparcv9b-* | sparcv9v-* | strongarm-* | sv1-* | sx?-* \ | tahoe-* | thumb-* \ | tic30-* | tic4x-* | tic54x-* | tic55x-* | tic6x-* | tic80-* \ | tron-* \ | v850-* | v850e-* | vax-* \ | we32k-* \ | x86-* | x86_64-* | xc16x-* | xps100-* | xscale-* | xscalee[bl]-* \ | xstormy16-* | xtensa*-* \ | ymp-* \ | z8k-*) ;; # Recognize the basic CPU types without company name, with glob match. xtensa*) basic_machine=$basic_machine-unknown ;; # Recognize the various machine names and aliases which stand # for a CPU type and a company and sometimes even an OS. 386bsd) basic_machine=i386-unknown os=-bsd ;; 3b1 | 7300 | 7300-att | att-7300 | pc7300 | safari | unixpc) basic_machine=m68000-att ;; 3b*) basic_machine=we32k-att ;; a29khif) basic_machine=a29k-amd os=-udi ;; abacus) basic_machine=abacus-unknown ;; adobe68k) basic_machine=m68010-adobe os=-scout ;; alliant | fx80) basic_machine=fx80-alliant ;; altos | altos3068) basic_machine=m68k-altos ;; am29k) basic_machine=a29k-none os=-bsd ;; amd64) basic_machine=x86_64-pc ;; amd64-*) basic_machine=x86_64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; amdahl) basic_machine=580-amdahl os=-sysv ;; amiga | amiga-*) basic_machine=m68k-unknown ;; amigaos | amigados) basic_machine=m68k-unknown os=-amigaos ;; amigaunix | amix) basic_machine=m68k-unknown os=-sysv4 ;; apollo68) basic_machine=m68k-apollo os=-sysv ;; apollo68bsd) basic_machine=m68k-apollo os=-bsd ;; aux) basic_machine=m68k-apple os=-aux ;; balance) basic_machine=ns32k-sequent os=-dynix ;; blackfin) basic_machine=bfin-unknown os=-linux ;; blackfin-*) basic_machine=bfin-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; c90) basic_machine=c90-cray os=-unicos ;; convex-c1) basic_machine=c1-convex os=-bsd ;; convex-c2) basic_machine=c2-convex os=-bsd ;; convex-c32) basic_machine=c32-convex os=-bsd ;; convex-c34) basic_machine=c34-convex os=-bsd ;; convex-c38) basic_machine=c38-convex os=-bsd ;; cray | j90) basic_machine=j90-cray os=-unicos ;; craynv) basic_machine=craynv-cray os=-unicosmp ;; cr16) basic_machine=cr16-unknown os=-elf ;; crds | unos) basic_machine=m68k-crds ;; crisv32 | crisv32-* | etraxfs*) basic_machine=crisv32-axis ;; cris | cris-* | etrax*) basic_machine=cris-axis ;; crx) basic_machine=crx-unknown os=-elf ;; da30 | da30-*) basic_machine=m68k-da30 ;; decstation | decstation-3100 | pmax | pmax-* | pmin | dec3100 | decstatn) basic_machine=mips-dec ;; decsystem10* | dec10*) basic_machine=pdp10-dec os=-tops10 ;; decsystem20* | dec20*) basic_machine=pdp10-dec os=-tops20 ;; delta | 3300 | motorola-3300 | motorola-delta \ | 3300-motorola | delta-motorola) basic_machine=m68k-motorola ;; delta88) basic_machine=m88k-motorola os=-sysv3 ;; djgpp) basic_machine=i586-pc os=-msdosdjgpp ;; dpx20 | dpx20-*) basic_machine=rs6000-bull os=-bosx ;; dpx2* | dpx2*-bull) basic_machine=m68k-bull os=-sysv3 ;; ebmon29k) basic_machine=a29k-amd os=-ebmon ;; elxsi) basic_machine=elxsi-elxsi os=-bsd ;; encore | umax | mmax) basic_machine=ns32k-encore ;; es1800 | OSE68k | ose68k | ose | OSE) basic_machine=m68k-ericsson os=-ose ;; fx2800) basic_machine=i860-alliant ;; genix) basic_machine=ns32k-ns ;; gmicro) basic_machine=tron-gmicro os=-sysv ;; go32) basic_machine=i386-pc os=-go32 ;; h3050r* | hiux*) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; h8300hms) basic_machine=h8300-hitachi os=-hms ;; h8300xray) basic_machine=h8300-hitachi os=-xray ;; h8500hms) basic_machine=h8500-hitachi os=-hms ;; harris) basic_machine=m88k-harris os=-sysv3 ;; hp300-*) basic_machine=m68k-hp ;; hp300bsd) basic_machine=m68k-hp os=-bsd ;; hp300hpux) basic_machine=m68k-hp os=-hpux ;; hp3k9[0-9][0-9] | hp9[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k2[0-9][0-9] | hp9k31[0-9]) basic_machine=m68000-hp ;; hp9k3[2-9][0-9]) basic_machine=m68k-hp ;; hp9k6[0-9][0-9] | hp6[0-9][0-9]) basic_machine=hppa1.0-hp ;; hp9k7[0-79][0-9] | hp7[0-79][0-9]) basic_machine=hppa1.1-hp ;; hp9k78[0-9] | hp78[0-9]) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[67]1 | hp8[67]1 | hp9k80[24] | hp80[24] | hp9k8[78]9 | hp8[78]9 | hp9k893 | hp893) # FIXME: really hppa2.0-hp basic_machine=hppa1.1-hp ;; hp9k8[0-9][13679] | hp8[0-9][13679]) basic_machine=hppa1.1-hp ;; hp9k8[0-9][0-9] | hp8[0-9][0-9]) basic_machine=hppa1.0-hp ;; hppa-next) os=-nextstep3 ;; hppaosf) basic_machine=hppa1.1-hp os=-osf ;; hppro) basic_machine=hppa1.1-hp os=-proelf ;; i370-ibm* | ibm*) basic_machine=i370-ibm ;; # I'm not sure what "Sysv32" means. Should this be sysv3.2? i*86v32) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv32 ;; i*86v4*) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv4 ;; i*86v) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-sysv ;; i*86sol2) basic_machine=`echo $1 | sed -e 's/86.*/86-pc/'` os=-solaris2 ;; i386mach) basic_machine=i386-mach os=-mach ;; i386-vsta | vsta) basic_machine=i386-unknown os=-vsta ;; iris | iris4d) basic_machine=mips-sgi case $os in -irix*) ;; *) os=-irix4 ;; esac ;; isi68 | isi) basic_machine=m68k-isi os=-sysv ;; m68knommu) basic_machine=m68k-unknown os=-linux ;; m68knommu-*) basic_machine=m68k-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; m88k-omron*) basic_machine=m88k-omron ;; magnum | m3230) basic_machine=mips-mips os=-sysv ;; merlin) basic_machine=ns32k-utek os=-sysv ;; mingw32) basic_machine=i386-pc os=-mingw32 ;; mingw32ce) basic_machine=arm-unknown os=-mingw32ce ;; miniframe) basic_machine=m68000-convergent ;; *mint | -mint[0-9]* | *MiNT | *MiNT[0-9]*) basic_machine=m68k-atari os=-mint ;; mips3*-*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'` ;; mips3*) basic_machine=`echo $basic_machine | sed -e 's/mips3/mips64/'`-unknown ;; monitor) basic_machine=m68k-rom68k os=-coff ;; morphos) basic_machine=powerpc-unknown os=-morphos ;; msdos) basic_machine=i386-pc os=-msdos ;; ms1-*) basic_machine=`echo $basic_machine | sed -e 's/ms1-/mt-/'` ;; mvs) basic_machine=i370-ibm os=-mvs ;; ncr3000) basic_machine=i486-ncr os=-sysv4 ;; netbsd386) basic_machine=i386-unknown os=-netbsd ;; netwinder) basic_machine=armv4l-rebel os=-linux ;; news | news700 | news800 | news900) basic_machine=m68k-sony os=-newsos ;; news1000) basic_machine=m68030-sony os=-newsos ;; news-3600 | risc-news) basic_machine=mips-sony os=-newsos ;; necv70) basic_machine=v70-nec os=-sysv ;; next | m*-next ) basic_machine=m68k-next case $os in -nextstep* ) ;; -ns2*) os=-nextstep2 ;; *) os=-nextstep3 ;; esac ;; nh3000) basic_machine=m68k-harris os=-cxux ;; nh[45]000) basic_machine=m88k-harris os=-cxux ;; nindy960) basic_machine=i960-intel os=-nindy ;; mon960) basic_machine=i960-intel os=-mon960 ;; nonstopux) basic_machine=mips-compaq os=-nonstopux ;; np1) basic_machine=np1-gould ;; nsr-tandem) basic_machine=nsr-tandem ;; op50n-* | op60c-*) basic_machine=hppa1.1-oki os=-proelf ;; openrisc | openrisc-*) basic_machine=or32-unknown ;; os400) basic_machine=powerpc-ibm os=-os400 ;; OSE68000 | ose68000) basic_machine=m68000-ericsson os=-ose ;; os68k) basic_machine=m68k-none os=-os68k ;; pa-hitachi) basic_machine=hppa1.1-hitachi os=-hiuxwe2 ;; paragon) basic_machine=i860-intel os=-osf ;; parisc) basic_machine=hppa-unknown os=-linux ;; parisc-*) basic_machine=hppa-`echo $basic_machine | sed 's/^[^-]*-//'` os=-linux ;; pbd) basic_machine=sparc-tti ;; pbb) basic_machine=m68k-tti ;; pc532 | pc532-*) basic_machine=ns32k-pc532 ;; pc98) basic_machine=i386-pc ;; pc98-*) basic_machine=i386-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium | p5 | k5 | k6 | nexgen | viac3) basic_machine=i586-pc ;; pentiumpro | p6 | 6x86 | athlon | athlon_*) basic_machine=i686-pc ;; pentiumii | pentium2 | pentiumiii | pentium3) basic_machine=i686-pc ;; pentium4) basic_machine=i786-pc ;; pentium-* | p5-* | k5-* | k6-* | nexgen-* | viac3-*) basic_machine=i586-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumpro-* | p6-* | 6x86-* | athlon-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentiumii-* | pentium2-* | pentiumiii-* | pentium3-*) basic_machine=i686-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pentium4-*) basic_machine=i786-`echo $basic_machine | sed 's/^[^-]*-//'` ;; pn) basic_machine=pn-gould ;; power) basic_machine=power-ibm ;; ppc) basic_machine=powerpc-unknown ;; ppc-*) basic_machine=powerpc-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppcle | powerpclittle | ppc-le | powerpc-little) basic_machine=powerpcle-unknown ;; ppcle-* | powerpclittle-*) basic_machine=powerpcle-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64) basic_machine=powerpc64-unknown ;; ppc64-*) basic_machine=powerpc64-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ppc64le | powerpc64little | ppc64-le | powerpc64-little) basic_machine=powerpc64le-unknown ;; ppc64le-* | powerpc64little-*) basic_machine=powerpc64le-`echo $basic_machine | sed 's/^[^-]*-//'` ;; ps2) basic_machine=i386-ibm ;; pw32) basic_machine=i586-unknown os=-pw32 ;; rdos) basic_machine=i386-pc os=-rdos ;; rom68k) basic_machine=m68k-rom68k os=-coff ;; rm[46]00) basic_machine=mips-siemens ;; rtpc | rtpc-*) basic_machine=romp-ibm ;; s390 | s390-*) basic_machine=s390-ibm ;; s390x | s390x-*) basic_machine=s390x-ibm ;; sa29200) basic_machine=a29k-amd os=-udi ;; sb1) basic_machine=mipsisa64sb1-unknown ;; sb1el) basic_machine=mipsisa64sb1el-unknown ;; sde) basic_machine=mipsisa32-sde os=-elf ;; sei) basic_machine=mips-sei os=-seiux ;; sequent) basic_machine=i386-sequent ;; sh) basic_machine=sh-hitachi os=-hms ;; sh5el) basic_machine=sh5le-unknown ;; sh64) basic_machine=sh64-unknown ;; sparclite-wrs | simso-wrs) basic_machine=sparclite-wrs os=-vxworks ;; sps7) basic_machine=m68k-bull os=-sysv2 ;; spur) basic_machine=spur-unknown ;; st2000) basic_machine=m68k-tandem ;; stratus) basic_machine=i860-stratus os=-sysv4 ;; sun2) basic_machine=m68000-sun ;; sun2os3) basic_machine=m68000-sun os=-sunos3 ;; sun2os4) basic_machine=m68000-sun os=-sunos4 ;; sun3os3) basic_machine=m68k-sun os=-sunos3 ;; sun3os4) basic_machine=m68k-sun os=-sunos4 ;; sun4os3) basic_machine=sparc-sun os=-sunos3 ;; sun4os4) basic_machine=sparc-sun os=-sunos4 ;; sun4sol2) basic_machine=sparc-sun os=-solaris2 ;; sun3 | sun3-*) basic_machine=m68k-sun ;; sun4) basic_machine=sparc-sun ;; sun386 | sun386i | roadrunner) basic_machine=i386-sun ;; sv1) basic_machine=sv1-cray os=-unicos ;; symmetry) basic_machine=i386-sequent os=-dynix ;; t3e) basic_machine=alphaev5-cray os=-unicos ;; t90) basic_machine=t90-cray os=-unicos ;; tic54x | c54x*) basic_machine=tic54x-unknown os=-coff ;; tic55x | c55x*) basic_machine=tic55x-unknown os=-coff ;; tic6x | c6x*) basic_machine=tic6x-unknown os=-coff ;; tile*) basic_machine=tile-unknown os=-linux-gnu ;; tx39) basic_machine=mipstx39-unknown ;; tx39el) basic_machine=mipstx39el-unknown ;; toad1) basic_machine=pdp10-xkl os=-tops20 ;; tower | tower-32) basic_machine=m68k-ncr ;; tpf) basic_machine=s390x-ibm os=-tpf ;; udi29k) basic_machine=a29k-amd os=-udi ;; ultra3) basic_machine=a29k-nyu os=-sym1 ;; v810 | necv810) basic_machine=v810-nec os=-none ;; vaxv) basic_machine=vax-dec os=-sysv ;; vms) basic_machine=vax-dec os=-vms ;; vpp*|vx|vx-*) basic_machine=f301-fujitsu ;; vxworks960) basic_machine=i960-wrs os=-vxworks ;; vxworks68) basic_machine=m68k-wrs os=-vxworks ;; vxworks29k) basic_machine=a29k-wrs os=-vxworks ;; w65*) basic_machine=w65-wdc os=-none ;; w89k-*) basic_machine=hppa1.1-winbond os=-proelf ;; xbox) basic_machine=i686-pc os=-mingw32 ;; xps | xps100) basic_machine=xps100-honeywell ;; ymp) basic_machine=ymp-cray os=-unicos ;; z8k-*-coff) basic_machine=z8k-unknown os=-sim ;; none) basic_machine=none-none os=-none ;; # Here we handle the default manufacturer of certain CPU types. It is in # some cases the only manufacturer, in others, it is the most popular. w89k) basic_machine=hppa1.1-winbond ;; op50n) basic_machine=hppa1.1-oki ;; op60c) basic_machine=hppa1.1-oki ;; romp) basic_machine=romp-ibm ;; mmix) basic_machine=mmix-knuth ;; rs6000) basic_machine=rs6000-ibm ;; vax) basic_machine=vax-dec ;; pdp10) # there are many clones, so DEC is not a safe bet basic_machine=pdp10-unknown ;; pdp11) basic_machine=pdp11-dec ;; we32k) basic_machine=we32k-att ;; sh[1234] | sh[24]a | sh[34]eb | sh[1234]le | sh[23]ele) basic_machine=sh-unknown ;; sparc | sparcv8 | sparcv9 | sparcv9b | sparcv9v) basic_machine=sparc-sun ;; cydra) basic_machine=cydra-cydrome ;; orion) basic_machine=orion-highlevel ;; orion105) basic_machine=clipper-highlevel ;; mac | mpw | mac-mpw) basic_machine=m68k-apple ;; pmac | pmac-mpw) basic_machine=powerpc-apple ;; *-unknown) # Make sure to match an already-canonicalized machine name. ;; *) echo Invalid configuration \`$1\': machine \`$basic_machine\' not recognized 1>&2 exit 1 ;; esac # Here we canonicalize certain aliases for manufacturers. case $basic_machine in *-digital*) basic_machine=`echo $basic_machine | sed 's/digital.*/dec/'` ;; *-commodore*) basic_machine=`echo $basic_machine | sed 's/commodore.*/cbm/'` ;; *) ;; esac # Decode manufacturer-specific aliases for certain operating systems. if [ x"$os" != x"" ] then case $os in # First match some system type aliases # that might get confused with valid system types. # -solaris* is a basic system type, with this one exception. -solaris1 | -solaris1.*) os=`echo $os | sed -e 's|solaris1|sunos4|'` ;; -solaris) os=-solaris2 ;; -svr4*) os=-sysv4 ;; -unixware*) os=-sysv4.2uw ;; -gnu/linux*) os=`echo $os | sed -e 's|gnu/linux|linux-gnu|'` ;; # First accept the basic system types. # The portable systems comes first. # Each alternative MUST END IN A *, to match a version number. # -sysv* is not here because it comes later, after sysvr4. -gnu* | -bsd* | -mach* | -minix* | -genix* | -ultrix* | -irix* \ | -*vms* | -sco* | -esix* | -isc* | -aix* | -sunos | -sunos[34]*\ | -hpux* | -unos* | -osf* | -luna* | -dgux* | -solaris* | -sym* \ | -amigaos* | -amigados* | -msdos* | -newsos* | -unicos* | -aof* \ | -aos* \ | -nindy* | -vxsim* | -vxworks* | -ebmon* | -hms* | -mvs* \ | -clix* | -riscos* | -uniplus* | -iris* | -rtu* | -xenix* \ | -hiux* | -386bsd* | -knetbsd* | -mirbsd* | -netbsd* \ | -openbsd* | -solidbsd* \ | -ekkobsd* | -kfreebsd* | -freebsd* | -riscix* | -lynxos* \ | -bosx* | -nextstep* | -cxux* | -aout* | -elf* | -oabi* \ | -ptx* | -coff* | -ecoff* | -winnt* | -domain* | -vsta* \ | -udi* | -eabi* | -lites* | -ieee* | -go32* | -aux* \ | -chorusos* | -chorusrdb* \ | -cygwin* | -pe* | -psos* | -moss* | -proelf* | -rtems* \ | -mingw32* | -linux-gnu* | -linux-newlib* | -linux-uclibc* \ | -uxpv* | -beos* | -mpeix* | -udk* \ | -interix* | -uwin* | -mks* | -rhapsody* | -darwin* | -opened* \ | -openstep* | -oskit* | -conix* | -pw32* | -nonstopux* \ | -storm-chaos* | -tops10* | -tenex* | -tops20* | -its* \ | -os2* | -vos* | -palmos* | -uclinux* | -nucleus* \ | -morphos* | -superux* | -rtmk* | -rtmk-nova* | -windiss* \ | -powermax* | -dnix* | -nx6 | -nx7 | -sei* | -dragonfly* \ | -skyos* | -haiku* | -rdos* | -toppers* | -drops*) # Remember, each alternative MUST END IN *, to match a version number. ;; -qnx*) case $basic_machine in x86-* | i*86-*) ;; *) os=-nto$os ;; esac ;; -nto-qnx*) ;; -nto*) os=`echo $os | sed -e 's|nto|nto-qnx|'` ;; -sim | -es1800* | -hms* | -xray | -os68k* | -none* | -v88r* \ | -windows* | -osx | -abug | -netware* | -os9* | -beos* | -haiku* \ | -macos* | -mpw* | -magic* | -mmixware* | -mon960* | -lnews*) ;; -mac*) os=`echo $os | sed -e 's|mac|macos|'` ;; -linux-dietlibc) os=-linux-dietlibc ;; -linux*) os=`echo $os | sed -e 's|linux|linux-gnu|'` ;; -sunos5*) os=`echo $os | sed -e 's|sunos5|solaris2|'` ;; -sunos6*) os=`echo $os | sed -e 's|sunos6|solaris3|'` ;; -opened*) os=-openedition ;; -os400*) os=-os400 ;; -wince*) os=-wince ;; -osfrose*) os=-osfrose ;; -osf*) os=-osf ;; -utek*) os=-bsd ;; -dynix*) os=-bsd ;; -acis*) os=-aos ;; -atheos*) os=-atheos ;; -syllable*) os=-syllable ;; -386bsd) os=-bsd ;; -ctix* | -uts*) os=-sysv ;; -nova*) os=-rtmk-nova ;; -ns2 ) os=-nextstep2 ;; -nsk*) os=-nsk ;; # Preserve the version number of sinix5. -sinix5.*) os=`echo $os | sed -e 's|sinix|sysv|'` ;; -sinix*) os=-sysv4 ;; -tpf*) os=-tpf ;; -triton*) os=-sysv3 ;; -oss*) os=-sysv3 ;; -svr4) os=-sysv4 ;; -svr3) os=-sysv3 ;; -sysvr4) os=-sysv4 ;; # This must come after -sysvr4. -sysv*) ;; -ose*) os=-ose ;; -es1800*) os=-ose ;; -xenix) os=-xenix ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) os=-mint ;; -aros*) os=-aros ;; -kaos*) os=-kaos ;; -zvmoe) os=-zvmoe ;; -none) ;; *) # Get rid of the `-' at the beginning of $os. os=`echo $os | sed 's/[^-]*-//'` echo Invalid configuration \`$1\': system \`$os\' not recognized 1>&2 exit 1 ;; esac else # Here we handle the default operating systems that come with various machines. # The value should be what the vendor currently ships out the door with their # machine or put another way, the most popular os provided with the machine. # Note that if you're going to try to match "-MANUFACTURER" here (say, # "-sun"), then you have to tell the case statement up towards the top # that MANUFACTURER isn't an operating system. Otherwise, code above # will signal an error saying that MANUFACTURER isn't an operating # system, and we'll never get to this point. case $basic_machine in score-*) os=-elf ;; spu-*) os=-elf ;; *-acorn) os=-riscix1.2 ;; arm*-rebel) os=-linux ;; arm*-semi) os=-aout ;; c4x-* | tic4x-*) os=-coff ;; # This must come before the *-dec entry. pdp10-*) os=-tops20 ;; pdp11-*) os=-none ;; *-dec | vax-*) os=-ultrix4.2 ;; m68*-apollo) os=-domain ;; i386-sun) os=-sunos4.0.2 ;; m68000-sun) os=-sunos3 # This also exists in the configure program, but was not the # default. # os=-sunos4 ;; m68*-cisco) os=-aout ;; mep-*) os=-elf ;; mips*-cisco) os=-elf ;; mips*-*) os=-elf ;; or32-*) os=-coff ;; *-tti) # must be before sparc entry or we get the wrong os. os=-sysv3 ;; sparc-* | *-sun) os=-sunos4.1.1 ;; *-be) os=-beos ;; *-haiku) os=-haiku ;; *-ibm) os=-aix ;; *-knuth) os=-mmixware ;; *-wec) os=-proelf ;; *-winbond) os=-proelf ;; *-oki) os=-proelf ;; *-hp) os=-hpux ;; *-hitachi) os=-hiux ;; i860-* | *-att | *-ncr | *-altos | *-motorola | *-convergent) os=-sysv ;; *-cbm) os=-amigaos ;; *-dg) os=-dgux ;; *-dolphin) os=-sysv3 ;; m68k-ccur) os=-rtu ;; m88k-omron*) os=-luna ;; *-next ) os=-nextstep ;; *-sequent) os=-ptx ;; *-crds) os=-unos ;; *-ns) os=-genix ;; i370-*) os=-mvs ;; *-next) os=-nextstep3 ;; *-gould) os=-sysv ;; *-highlevel) os=-bsd ;; *-encore) os=-bsd ;; *-sgi) os=-irix ;; *-siemens) os=-sysv4 ;; *-masscomp) os=-rtu ;; f30[01]-fujitsu | f700-fujitsu) os=-uxpv ;; *-rom68k) os=-coff ;; *-*bug) os=-coff ;; *-apple) os=-macos ;; *-atari*) os=-mint ;; *) os=-none ;; esac fi # Here we handle the case where we know the os, and the CPU type, but not the # manufacturer. We pick the logical manufacturer. vendor=unknown case $basic_machine in *-unknown) case $os in -riscix*) vendor=acorn ;; -sunos*) vendor=sun ;; -aix*) vendor=ibm ;; -beos*) vendor=be ;; -hpux*) vendor=hp ;; -mpeix*) vendor=hp ;; -hiux*) vendor=hitachi ;; -unos*) vendor=crds ;; -dgux*) vendor=dg ;; -luna*) vendor=omron ;; -genix*) vendor=ns ;; -mvs* | -opened*) vendor=ibm ;; -os400*) vendor=ibm ;; -ptx*) vendor=sequent ;; -tpf*) vendor=ibm ;; -vxsim* | -vxworks* | -windiss*) vendor=wrs ;; -aux*) vendor=apple ;; -hms*) vendor=hitachi ;; -mpw* | -macos*) vendor=apple ;; -*mint | -mint[0-9]* | -*MiNT | -MiNT[0-9]*) vendor=atari ;; -vos*) vendor=stratus ;; esac basic_machine=`echo $basic_machine | sed "s/unknown/$vendor/"` ;; esac echo $basic_machine$os exit # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: fische-3.2/README0000644000175000017500000000724511456057072010437 00000000000000 BASIC -------------------------------------------------------------------------------- Run fische with the -h or --help flags for a basic help message. Fische also has a man page, which is distributed with the source tarball. Fische tries to read a configuration file ($HOME/.fischerc), and will update the file with the most recent "known good" parameters. -------------------------------------------------------------------------------- RUNTIME -------------------------------------------------------------------------------- At runtime, press 'P' to pause, 'F' to toggle fullscreen mode and 'ESC' to quit. 'N' toggles "nervous mode". With the --exit-on-mouseevent flag, fische does exactly that. -------------------------------------------------------------------------------- TROUBLESHOOTING (Linux only) -------------------------------------------------------------------------------- ***** If you get this error: X Error of failed request: BadValue (integer parameter out of range for operation) ----- Try to start fische with the -v or --virtual flags and set X/Y to values that correspond to a fullscreen resolution that you know exists. For example: fische -g 1400x700 -v 1400x1050 ***** If fische starts, but won't react to sound ----- There are many possible solutions: a) First of all, try to use a different audio input driver. At the moment fische supports ALSA and PulseAudio input. See "fische -h" for details. b) If you are using PulseAudio for input, fische opens the default source as set with pavucontrol or similar tools. For example, if you would like to visualize "what's playing", set the corresponding "monitor of output XYZ" device as default. c) You might be using the wrong ALSA device. By default, fische tries to open the "default" device. It should be correctly configured on most systems, but with some soundcards you need complex ALSA configuration to achieve recording capabilities - look into the ALSA documentation. For example, soundcards with ICE1712 chips record internally produced sound on channels 10 and 11 instead of 0 and 1. d) ALSA recording might not be enabled. Check with "alsamixer" or an other mixer application. If you are trying to visualize sounds produced by an audio player, you must enable recording of what's called "PCM" on most cards. For external input, record "Line In", and so on... e) Your sound card might not support recording of your chosen source. In this case, you are in bad luck. Most notably, many C-Media based cards do not allow recording while SPDIF out is in use. You can try a setup using an "aloop" dummy card - but that process is far beyond the scope of this README, and with most distributions, it requires kernel or ALSA re-compilation. However, in this case the PulseAudio input driver might give you the desired results. -------------------------------------------------------------------------------- FAQ -------------------------------------------------------------------------------- ***** Will fische support recording from OSS/jack/EsounD... ----- It might, provided I can find someone to write the related code. If you know something about sound programming, you are welcome to join. ***** Will fische evolve towards different types of visualization? ----- No, this program is highly optimized to do what it does now. There might be one or two feature enhancements, but the general picture will remain. ***** Did you know "fische" means "fish" in German? ----- Yes I did. And no, it's not supposed to make any sense. fische-3.2/aclocal.m40000644000175000017500000116705411514105432011412 00000000000000# generated automatically by aclocal 1.11.1 -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 2005, 2006, 2007, 2008, 2009 Free Software Foundation, Inc. # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl m4_if(m4_defn([AC_AUTOCONF_VERSION]), [2.67],, [m4_warning([this file was generated for autoconf 2.67. You have another version of autoconf. It may work, but is not guaranteed to. If you have problems, you may need to regenerate the build system entirely. To do so, use the procedure documented by the package, typically `autoreconf'.])]) # libtool.m4 - Configure libtool for the host system. -*-Autoconf-*- # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, # 2006, 2007, 2008 Free Software Foundation, Inc. # Written by Gordon Matzigkeit, 1996 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. m4_define([_LT_COPYING], [dnl # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, # 2006, 2007, 2008 Free Software Foundation, Inc. # Written by Gordon Matzigkeit, 1996 # # This file is part of GNU Libtool. # # GNU Libtool is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of # the License, or (at your option) any later version. # # As a special exception to the GNU General Public License, # if you distribute this file as part of a program or library that # is built using GNU Libtool, you may include this file under the # same distribution terms that you use for the rest of that program. # # GNU Libtool is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Libtool; see the file COPYING. If not, a copy # can be downloaded from http://www.gnu.org/licenses/gpl.html, or # obtained by writing to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. ]) # serial 56 LT_INIT # LT_PREREQ(VERSION) # ------------------ # Complain and exit if this libtool version is less that VERSION. m4_defun([LT_PREREQ], [m4_if(m4_version_compare(m4_defn([LT_PACKAGE_VERSION]), [$1]), -1, [m4_default([$3], [m4_fatal([Libtool version $1 or higher is required], 63)])], [$2])]) # _LT_CHECK_BUILDDIR # ------------------ # Complain if the absolute build directory name contains unusual characters m4_defun([_LT_CHECK_BUILDDIR], [case `pwd` in *\ * | *\ *) AC_MSG_WARN([Libtool does not cope well with whitespace in `pwd`]) ;; esac ]) # LT_INIT([OPTIONS]) # ------------------ AC_DEFUN([LT_INIT], [AC_PREREQ([2.58])dnl We use AC_INCLUDES_DEFAULT AC_BEFORE([$0], [LT_LANG])dnl AC_BEFORE([$0], [LT_OUTPUT])dnl AC_BEFORE([$0], [LTDL_INIT])dnl m4_require([_LT_CHECK_BUILDDIR])dnl dnl Autoconf doesn't catch unexpanded LT_ macros by default: m4_pattern_forbid([^_?LT_[A-Z_]+$])dnl m4_pattern_allow([^(_LT_EOF|LT_DLGLOBAL|LT_DLLAZY_OR_NOW|LT_MULTI_MODULE)$])dnl dnl aclocal doesn't pull ltoptions.m4, ltsugar.m4, or ltversion.m4 dnl unless we require an AC_DEFUNed macro: AC_REQUIRE([LTOPTIONS_VERSION])dnl AC_REQUIRE([LTSUGAR_VERSION])dnl AC_REQUIRE([LTVERSION_VERSION])dnl AC_REQUIRE([LTOBSOLETE_VERSION])dnl m4_require([_LT_PROG_LTMAIN])dnl dnl Parse OPTIONS _LT_SET_OPTIONS([$0], [$1]) # This can be used to rebuild libtool when needed LIBTOOL_DEPS="$ltmain" # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' AC_SUBST(LIBTOOL)dnl _LT_SETUP # Only expand once: m4_define([LT_INIT]) ])# LT_INIT # Old names: AU_ALIAS([AC_PROG_LIBTOOL], [LT_INIT]) AU_ALIAS([AM_PROG_LIBTOOL], [LT_INIT]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_PROG_LIBTOOL], []) dnl AC_DEFUN([AM_PROG_LIBTOOL], []) # _LT_CC_BASENAME(CC) # ------------------- # Calculate cc_basename. Skip known compiler wrappers and cross-prefix. m4_defun([_LT_CC_BASENAME], [for cc_temp in $1""; do case $cc_temp in compile | *[[\\/]]compile | ccache | *[[\\/]]ccache ) ;; distcc | *[[\\/]]distcc | purify | *[[\\/]]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$ECHO "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` ]) # _LT_FILEUTILS_DEFAULTS # ---------------------- # It is okay to use these file commands and assume they have been set # sensibly after `m4_require([_LT_FILEUTILS_DEFAULTS])'. m4_defun([_LT_FILEUTILS_DEFAULTS], [: ${CP="cp -f"} : ${MV="mv -f"} : ${RM="rm -f"} ])# _LT_FILEUTILS_DEFAULTS # _LT_SETUP # --------- m4_defun([_LT_SETUP], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl _LT_DECL([], [host_alias], [0], [The host system])dnl _LT_DECL([], [host], [0])dnl _LT_DECL([], [host_os], [0])dnl dnl _LT_DECL([], [build_alias], [0], [The build system])dnl _LT_DECL([], [build], [0])dnl _LT_DECL([], [build_os], [0])dnl dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([LT_PATH_LD])dnl AC_REQUIRE([LT_PATH_NM])dnl dnl AC_REQUIRE([AC_PROG_LN_S])dnl test -z "$LN_S" && LN_S="ln -s" _LT_DECL([], [LN_S], [1], [Whether we need soft or hard links])dnl dnl AC_REQUIRE([LT_CMD_MAX_LEN])dnl _LT_DECL([objext], [ac_objext], [0], [Object file suffix (normally "o")])dnl _LT_DECL([], [exeext], [0], [Executable file suffix (normally "")])dnl dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_CHECK_SHELL_FEATURES])dnl m4_require([_LT_CMD_RELOAD])dnl m4_require([_LT_CHECK_MAGIC_METHOD])dnl m4_require([_LT_CMD_OLD_ARCHIVE])dnl m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl _LT_CONFIG_LIBTOOL_INIT([ # See if we are running on zsh, and set the options which allow our # commands through without removal of \ escapes INIT. if test -n "\${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi ]) if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi _LT_CHECK_OBJDIR m4_require([_LT_TAG_COMPILER])dnl _LT_PROG_ECHO_BACKSLASH case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. sed_quote_subst='s/\([["`$\\]]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\([["`\\]]\)/\\\1/g' # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to delay expansion of an escaped single quote. delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' # Global variables: ofile=libtool can_build_shared=yes # All known linkers require a `.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a with_gnu_ld="$lt_cv_prog_gnu_ld" old_CC="$CC" old_CFLAGS="$CFLAGS" # Set sane defaults for various variables test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$LD" && LD=ld test -z "$ac_objext" && ac_objext=o _LT_CC_BASENAME([$compiler]) # Only perform the check for file, if the check method requires it test -z "$MAGIC_CMD" && MAGIC_CMD=file case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then _LT_PATH_MAGIC fi ;; esac # Use C for the default configuration in the libtool script LT_SUPPORTED_TAG([CC]) _LT_LANG_C_CONFIG _LT_LANG_DEFAULT_CONFIG _LT_CONFIG_COMMANDS ])# _LT_SETUP # _LT_PROG_LTMAIN # --------------- # Note that this code is called both from `configure', and `config.status' # now that we use AC_CONFIG_COMMANDS to generate libtool. Notably, # `config.status' has no value for ac_aux_dir unless we are using Automake, # so we pass a copy along to make sure it has a sensible value anyway. m4_defun([_LT_PROG_LTMAIN], [m4_ifdef([AC_REQUIRE_AUX_FILE], [AC_REQUIRE_AUX_FILE([ltmain.sh])])dnl _LT_CONFIG_LIBTOOL_INIT([ac_aux_dir='$ac_aux_dir']) ltmain="$ac_aux_dir/ltmain.sh" ])# _LT_PROG_LTMAIN # So that we can recreate a full libtool script including additional # tags, we accumulate the chunks of code to send to AC_CONFIG_COMMANDS # in macros and then make a single call at the end using the `libtool' # label. # _LT_CONFIG_LIBTOOL_INIT([INIT-COMMANDS]) # ---------------------------------------- # Register INIT-COMMANDS to be passed to AC_CONFIG_COMMANDS later. m4_define([_LT_CONFIG_LIBTOOL_INIT], [m4_ifval([$1], [m4_append([_LT_OUTPUT_LIBTOOL_INIT], [$1 ])])]) # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_INIT]) # _LT_CONFIG_LIBTOOL([COMMANDS]) # ------------------------------ # Register COMMANDS to be passed to AC_CONFIG_COMMANDS later. m4_define([_LT_CONFIG_LIBTOOL], [m4_ifval([$1], [m4_append([_LT_OUTPUT_LIBTOOL_COMMANDS], [$1 ])])]) # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS]) # _LT_CONFIG_SAVE_COMMANDS([COMMANDS], [INIT_COMMANDS]) # ----------------------------------------------------- m4_defun([_LT_CONFIG_SAVE_COMMANDS], [_LT_CONFIG_LIBTOOL([$1]) _LT_CONFIG_LIBTOOL_INIT([$2]) ]) # _LT_FORMAT_COMMENT([COMMENT]) # ----------------------------- # Add leading comment marks to the start of each line, and a trailing # full-stop to the whole comment if one is not present already. m4_define([_LT_FORMAT_COMMENT], [m4_ifval([$1], [ m4_bpatsubst([m4_bpatsubst([$1], [^ *], [# ])], [['`$\]], [\\\&])]m4_bmatch([$1], [[!?.]$], [], [.]) )]) # _LT_DECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION], [IS-TAGGED?]) # ------------------------------------------------------------------- # CONFIGNAME is the name given to the value in the libtool script. # VARNAME is the (base) name used in the configure script. # VALUE may be 0, 1 or 2 for a computed quote escaped value based on # VARNAME. Any other value will be used directly. m4_define([_LT_DECL], [lt_if_append_uniq([lt_decl_varnames], [$2], [, ], [lt_dict_add_subkey([lt_decl_dict], [$2], [libtool_name], [m4_ifval([$1], [$1], [$2])]) lt_dict_add_subkey([lt_decl_dict], [$2], [value], [$3]) m4_ifval([$4], [lt_dict_add_subkey([lt_decl_dict], [$2], [description], [$4])]) lt_dict_add_subkey([lt_decl_dict], [$2], [tagged?], [m4_ifval([$5], [yes], [no])])]) ]) # _LT_TAGDECL([CONFIGNAME], VARNAME, VALUE, [DESCRIPTION]) # -------------------------------------------------------- m4_define([_LT_TAGDECL], [_LT_DECL([$1], [$2], [$3], [$4], [yes])]) # lt_decl_tag_varnames([SEPARATOR], [VARNAME1...]) # ------------------------------------------------ m4_define([lt_decl_tag_varnames], [_lt_decl_filter([tagged?], [yes], $@)]) # _lt_decl_filter(SUBKEY, VALUE, [SEPARATOR], [VARNAME1..]) # --------------------------------------------------------- m4_define([_lt_decl_filter], [m4_case([$#], [0], [m4_fatal([$0: too few arguments: $#])], [1], [m4_fatal([$0: too few arguments: $#: $1])], [2], [lt_dict_filter([lt_decl_dict], [$1], [$2], [], lt_decl_varnames)], [3], [lt_dict_filter([lt_decl_dict], [$1], [$2], [$3], lt_decl_varnames)], [lt_dict_filter([lt_decl_dict], $@)])[]dnl ]) # lt_decl_quote_varnames([SEPARATOR], [VARNAME1...]) # -------------------------------------------------- m4_define([lt_decl_quote_varnames], [_lt_decl_filter([value], [1], $@)]) # lt_decl_dquote_varnames([SEPARATOR], [VARNAME1...]) # --------------------------------------------------- m4_define([lt_decl_dquote_varnames], [_lt_decl_filter([value], [2], $@)]) # lt_decl_varnames_tagged([SEPARATOR], [VARNAME1...]) # --------------------------------------------------- m4_define([lt_decl_varnames_tagged], [m4_assert([$# <= 2])dnl _$0(m4_quote(m4_default([$1], [[, ]])), m4_ifval([$2], [[$2]], [m4_dquote(lt_decl_tag_varnames)]), m4_split(m4_normalize(m4_quote(_LT_TAGS)), [ ]))]) m4_define([_lt_decl_varnames_tagged], [m4_ifval([$3], [lt_combine([$1], [$2], [_], $3)])]) # lt_decl_all_varnames([SEPARATOR], [VARNAME1...]) # ------------------------------------------------ m4_define([lt_decl_all_varnames], [_$0(m4_quote(m4_default([$1], [[, ]])), m4_if([$2], [], m4_quote(lt_decl_varnames), m4_quote(m4_shift($@))))[]dnl ]) m4_define([_lt_decl_all_varnames], [lt_join($@, lt_decl_varnames_tagged([$1], lt_decl_tag_varnames([[, ]], m4_shift($@))))dnl ]) # _LT_CONFIG_STATUS_DECLARE([VARNAME]) # ------------------------------------ # Quote a variable value, and forward it to `config.status' so that its # declaration there will have the same value as in `configure'. VARNAME # must have a single quote delimited value for this to work. m4_define([_LT_CONFIG_STATUS_DECLARE], [$1='`$ECHO "X$][$1" | $Xsed -e "$delay_single_quote_subst"`']) # _LT_CONFIG_STATUS_DECLARATIONS # ------------------------------ # We delimit libtool config variables with single quotes, so when # we write them to config.status, we have to be sure to quote all # embedded single quotes properly. In configure, this macro expands # each variable declared with _LT_DECL (and _LT_TAGDECL) into: # # ='`$ECHO "X$" | $Xsed -e "$delay_single_quote_subst"`' m4_defun([_LT_CONFIG_STATUS_DECLARATIONS], [m4_foreach([_lt_var], m4_quote(lt_decl_all_varnames), [m4_n([_LT_CONFIG_STATUS_DECLARE(_lt_var)])])]) # _LT_LIBTOOL_TAGS # ---------------- # Output comment and list of tags supported by the script m4_defun([_LT_LIBTOOL_TAGS], [_LT_FORMAT_COMMENT([The names of the tagged configurations supported by this script])dnl available_tags="_LT_TAGS"dnl ]) # _LT_LIBTOOL_DECLARE(VARNAME, [TAG]) # ----------------------------------- # Extract the dictionary values for VARNAME (optionally with TAG) and # expand to a commented shell variable setting: # # # Some comment about what VAR is for. # visible_name=$lt_internal_name m4_define([_LT_LIBTOOL_DECLARE], [_LT_FORMAT_COMMENT(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [description])))[]dnl m4_pushdef([_libtool_name], m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [libtool_name])))[]dnl m4_case(m4_quote(lt_dict_fetch([lt_decl_dict], [$1], [value])), [0], [_libtool_name=[$]$1], [1], [_libtool_name=$lt_[]$1], [2], [_libtool_name=$lt_[]$1], [_libtool_name=lt_dict_fetch([lt_decl_dict], [$1], [value])])[]dnl m4_ifval([$2], [_$2])[]m4_popdef([_libtool_name])[]dnl ]) # _LT_LIBTOOL_CONFIG_VARS # ----------------------- # Produce commented declarations of non-tagged libtool config variables # suitable for insertion in the LIBTOOL CONFIG section of the `libtool' # script. Tagged libtool config variables (even for the LIBTOOL CONFIG # section) are produced by _LT_LIBTOOL_TAG_VARS. m4_defun([_LT_LIBTOOL_CONFIG_VARS], [m4_foreach([_lt_var], m4_quote(_lt_decl_filter([tagged?], [no], [], lt_decl_varnames)), [m4_n([_LT_LIBTOOL_DECLARE(_lt_var)])])]) # _LT_LIBTOOL_TAG_VARS(TAG) # ------------------------- m4_define([_LT_LIBTOOL_TAG_VARS], [m4_foreach([_lt_var], m4_quote(lt_decl_tag_varnames), [m4_n([_LT_LIBTOOL_DECLARE(_lt_var, [$1])])])]) # _LT_TAGVAR(VARNAME, [TAGNAME]) # ------------------------------ m4_define([_LT_TAGVAR], [m4_ifval([$2], [$1_$2], [$1])]) # _LT_CONFIG_COMMANDS # ------------------- # Send accumulated output to $CONFIG_STATUS. Thanks to the lists of # variables for single and double quote escaping we saved from calls # to _LT_DECL, we can put quote escaped variables declarations # into `config.status', and then the shell code to quote escape them in # for loops in `config.status'. Finally, any additional code accumulated # from calls to _LT_CONFIG_LIBTOOL_INIT is expanded. m4_defun([_LT_CONFIG_COMMANDS], [AC_PROVIDE_IFELSE([LT_OUTPUT], dnl If the libtool generation code has been placed in $CONFIG_LT, dnl instead of duplicating it all over again into config.status, dnl then we will have config.status run $CONFIG_LT later, so it dnl needs to know what name is stored there: [AC_CONFIG_COMMANDS([libtool], [$SHELL $CONFIG_LT || AS_EXIT(1)], [CONFIG_LT='$CONFIG_LT'])], dnl If the libtool generation code is destined for config.status, dnl expand the accumulated commands and init code now: [AC_CONFIG_COMMANDS([libtool], [_LT_OUTPUT_LIBTOOL_COMMANDS], [_LT_OUTPUT_LIBTOOL_COMMANDS_INIT])]) ])#_LT_CONFIG_COMMANDS # Initialize. m4_define([_LT_OUTPUT_LIBTOOL_COMMANDS_INIT], [ # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH sed_quote_subst='$sed_quote_subst' double_quote_subst='$double_quote_subst' delay_variable_subst='$delay_variable_subst' _LT_CONFIG_STATUS_DECLARATIONS LTCC='$LTCC' LTCFLAGS='$LTCFLAGS' compiler='$compiler_DEFAULT' # Quote evaled strings. for var in lt_decl_all_varnames([[ \ ]], lt_decl_quote_varnames); do case \`eval \\\\\$ECHO "X\\\\\$\$var"\` in *[[\\\\\\\`\\"\\\$]]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"X\\\$\$var\\" | \\\$Xsed -e \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done # Double-quote double-evaled strings. for var in lt_decl_all_varnames([[ \ ]], lt_decl_dquote_varnames); do case \`eval \\\\\$ECHO "X\\\\\$\$var"\` in *[[\\\\\\\`\\"\\\$]]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"X\\\$\$var\\" | \\\$Xsed -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done # Fix-up fallback echo if it was mangled by the above quoting rules. case \$lt_ECHO in *'\\\[$]0 --fallback-echo"')dnl " lt_ECHO=\`\$ECHO "X\$lt_ECHO" | \$Xsed -e 's/\\\\\\\\\\\\\\\[$]0 --fallback-echo"\[$]/\[$]0 --fallback-echo"/'\` ;; esac _LT_OUTPUT_LIBTOOL_INIT ]) # LT_OUTPUT # --------- # This macro allows early generation of the libtool script (before # AC_OUTPUT is called), incase it is used in configure for compilation # tests. AC_DEFUN([LT_OUTPUT], [: ${CONFIG_LT=./config.lt} AC_MSG_NOTICE([creating $CONFIG_LT]) cat >"$CONFIG_LT" <<_LTEOF #! $SHELL # Generated by $as_me. # Run this file to recreate a libtool stub with the current configuration. lt_cl_silent=false SHELL=\${CONFIG_SHELL-$SHELL} _LTEOF cat >>"$CONFIG_LT" <<\_LTEOF AS_SHELL_SANITIZE _AS_PREPARE exec AS_MESSAGE_FD>&1 exec AS_MESSAGE_LOG_FD>>config.log { echo AS_BOX([Running $as_me.]) } >&AS_MESSAGE_LOG_FD lt_cl_help="\ \`$as_me' creates a local libtool stub from the current configuration, for use in further configure time tests before the real libtool is generated. Usage: $[0] [[OPTIONS]] -h, --help print this help, then exit -V, --version print version number, then exit -q, --quiet do not print progress messages -d, --debug don't remove temporary files Report bugs to ." lt_cl_version="\ m4_ifset([AC_PACKAGE_NAME], [AC_PACKAGE_NAME ])config.lt[]dnl m4_ifset([AC_PACKAGE_VERSION], [ AC_PACKAGE_VERSION]) configured by $[0], generated by m4_PACKAGE_STRING. Copyright (C) 2008 Free Software Foundation, Inc. This config.lt script is free software; the Free Software Foundation gives unlimited permision to copy, distribute and modify it." while test $[#] != 0 do case $[1] in --version | --v* | -V ) echo "$lt_cl_version"; exit 0 ;; --help | --h* | -h ) echo "$lt_cl_help"; exit 0 ;; --debug | --d* | -d ) debug=: ;; --quiet | --q* | --silent | --s* | -q ) lt_cl_silent=: ;; -*) AC_MSG_ERROR([unrecognized option: $[1] Try \`$[0] --help' for more information.]) ;; *) AC_MSG_ERROR([unrecognized argument: $[1] Try \`$[0] --help' for more information.]) ;; esac shift done if $lt_cl_silent; then exec AS_MESSAGE_FD>/dev/null fi _LTEOF cat >>"$CONFIG_LT" <<_LTEOF _LT_OUTPUT_LIBTOOL_COMMANDS_INIT _LTEOF cat >>"$CONFIG_LT" <<\_LTEOF AC_MSG_NOTICE([creating $ofile]) _LT_OUTPUT_LIBTOOL_COMMANDS AS_EXIT(0) _LTEOF chmod +x "$CONFIG_LT" # configure is writing to config.log, but config.lt does its own redirection, # appending to config.log, which fails on DOS, as config.log is still kept # open by configure. Here we exec the FD to /dev/null, effectively closing # config.log, so it can be properly (re)opened and appended to by config.lt. if test "$no_create" != yes; then lt_cl_success=: test "$silent" = yes && lt_config_lt_args="$lt_config_lt_args --quiet" exec AS_MESSAGE_LOG_FD>/dev/null $SHELL "$CONFIG_LT" $lt_config_lt_args || lt_cl_success=false exec AS_MESSAGE_LOG_FD>>config.log $lt_cl_success || AS_EXIT(1) fi ])# LT_OUTPUT # _LT_CONFIG(TAG) # --------------- # If TAG is the built-in tag, create an initial libtool script with a # default configuration from the untagged config vars. Otherwise add code # to config.status for appending the configuration named by TAG from the # matching tagged config vars. m4_defun([_LT_CONFIG], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl _LT_CONFIG_SAVE_COMMANDS([ m4_define([_LT_TAG], m4_if([$1], [], [C], [$1]))dnl m4_if(_LT_TAG, [C], [ # See if we are running on zsh, and set the options which allow our # commands through without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi cfgfile="${ofile}T" trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL # `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. # Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # NOTE: Changes made to this file will be lost: look at ltmain.sh. # _LT_COPYING _LT_LIBTOOL_TAGS # ### BEGIN LIBTOOL CONFIG _LT_LIBTOOL_CONFIG_VARS _LT_LIBTOOL_TAG_VARS # ### END LIBTOOL CONFIG _LT_EOF case $host_os in aix3*) cat <<\_LT_EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi _LT_EOF ;; esac _LT_PROG_LTMAIN # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '/^# Generated shell functions inserted here/q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) _LT_PROG_XSI_SHELLFNS sed -n '/^# Generated shell functions inserted here/,$p' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" ], [cat <<_LT_EOF >> "$ofile" dnl Unfortunately we have to use $1 here, since _LT_TAG is not expanded dnl in a comment (ie after a #). # ### BEGIN LIBTOOL TAG CONFIG: $1 _LT_LIBTOOL_TAG_VARS(_LT_TAG) # ### END LIBTOOL TAG CONFIG: $1 _LT_EOF ])dnl /m4_if ], [m4_if([$1], [], [ PACKAGE='$PACKAGE' VERSION='$VERSION' TIMESTAMP='$TIMESTAMP' RM='$RM' ofile='$ofile'], []) ])dnl /_LT_CONFIG_SAVE_COMMANDS ])# _LT_CONFIG # LT_SUPPORTED_TAG(TAG) # --------------------- # Trace this macro to discover what tags are supported by the libtool # --tag option, using: # autoconf --trace 'LT_SUPPORTED_TAG:$1' AC_DEFUN([LT_SUPPORTED_TAG], []) # C support is built-in for now m4_define([_LT_LANG_C_enabled], []) m4_define([_LT_TAGS], []) # LT_LANG(LANG) # ------------- # Enable libtool support for the given language if not already enabled. AC_DEFUN([LT_LANG], [AC_BEFORE([$0], [LT_OUTPUT])dnl m4_case([$1], [C], [_LT_LANG(C)], [C++], [_LT_LANG(CXX)], [Java], [_LT_LANG(GCJ)], [Fortran 77], [_LT_LANG(F77)], [Fortran], [_LT_LANG(FC)], [Windows Resource], [_LT_LANG(RC)], [m4_ifdef([_LT_LANG_]$1[_CONFIG], [_LT_LANG($1)], [m4_fatal([$0: unsupported language: "$1"])])])dnl ])# LT_LANG # _LT_LANG(LANGNAME) # ------------------ m4_defun([_LT_LANG], [m4_ifdef([_LT_LANG_]$1[_enabled], [], [LT_SUPPORTED_TAG([$1])dnl m4_append([_LT_TAGS], [$1 ])dnl m4_define([_LT_LANG_]$1[_enabled], [])dnl _LT_LANG_$1_CONFIG($1)])dnl ])# _LT_LANG # _LT_LANG_DEFAULT_CONFIG # ----------------------- m4_defun([_LT_LANG_DEFAULT_CONFIG], [AC_PROVIDE_IFELSE([AC_PROG_CXX], [LT_LANG(CXX)], [m4_define([AC_PROG_CXX], defn([AC_PROG_CXX])[LT_LANG(CXX)])]) AC_PROVIDE_IFELSE([AC_PROG_F77], [LT_LANG(F77)], [m4_define([AC_PROG_F77], defn([AC_PROG_F77])[LT_LANG(F77)])]) AC_PROVIDE_IFELSE([AC_PROG_FC], [LT_LANG(FC)], [m4_define([AC_PROG_FC], defn([AC_PROG_FC])[LT_LANG(FC)])]) dnl The call to [A][M_PROG_GCJ] is quoted like that to stop aclocal dnl pulling things in needlessly. AC_PROVIDE_IFELSE([AC_PROG_GCJ], [LT_LANG(GCJ)], [AC_PROVIDE_IFELSE([A][M_PROG_GCJ], [LT_LANG(GCJ)], [AC_PROVIDE_IFELSE([LT_PROG_GCJ], [LT_LANG(GCJ)], [m4_ifdef([AC_PROG_GCJ], [m4_define([AC_PROG_GCJ], defn([AC_PROG_GCJ])[LT_LANG(GCJ)])]) m4_ifdef([A][M_PROG_GCJ], [m4_define([A][M_PROG_GCJ], defn([A][M_PROG_GCJ])[LT_LANG(GCJ)])]) m4_ifdef([LT_PROG_GCJ], [m4_define([LT_PROG_GCJ], defn([LT_PROG_GCJ])[LT_LANG(GCJ)])])])])]) AC_PROVIDE_IFELSE([LT_PROG_RC], [LT_LANG(RC)], [m4_define([LT_PROG_RC], defn([LT_PROG_RC])[LT_LANG(RC)])]) ])# _LT_LANG_DEFAULT_CONFIG # Obsolete macros: AU_DEFUN([AC_LIBTOOL_CXX], [LT_LANG(C++)]) AU_DEFUN([AC_LIBTOOL_F77], [LT_LANG(Fortran 77)]) AU_DEFUN([AC_LIBTOOL_FC], [LT_LANG(Fortran)]) AU_DEFUN([AC_LIBTOOL_GCJ], [LT_LANG(Java)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_CXX], []) dnl AC_DEFUN([AC_LIBTOOL_F77], []) dnl AC_DEFUN([AC_LIBTOOL_FC], []) dnl AC_DEFUN([AC_LIBTOOL_GCJ], []) # _LT_TAG_COMPILER # ---------------- m4_defun([_LT_TAG_COMPILER], [AC_REQUIRE([AC_PROG_CC])dnl _LT_DECL([LTCC], [CC], [1], [A C compiler])dnl _LT_DECL([LTCFLAGS], [CFLAGS], [1], [LTCC compiler flags])dnl _LT_TAGDECL([CC], [compiler], [1], [A language specific compiler])dnl _LT_TAGDECL([with_gcc], [GCC], [0], [Is the compiler the GNU compiler?])dnl # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC ])# _LT_TAG_COMPILER # _LT_COMPILER_BOILERPLATE # ------------------------ # Check for compiler boilerplate output or warnings with # the simple compiler test code. m4_defun([_LT_COMPILER_BOILERPLATE], [m4_require([_LT_DECL_SED])dnl ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $RM conftest* ])# _LT_COMPILER_BOILERPLATE # _LT_LINKER_BOILERPLATE # ---------------------- # Check for linker boilerplate output or warnings with # the simple link test code. m4_defun([_LT_LINKER_BOILERPLATE], [m4_require([_LT_DECL_SED])dnl ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $RM -r conftest* ])# _LT_LINKER_BOILERPLATE # _LT_REQUIRED_DARWIN_CHECKS # ------------------------- m4_defun_once([_LT_REQUIRED_DARWIN_CHECKS],[ case $host_os in rhapsody* | darwin*) AC_CHECK_TOOL([DSYMUTIL], [dsymutil], [:]) AC_CHECK_TOOL([NMEDIT], [nmedit], [:]) AC_CHECK_TOOL([LIPO], [lipo], [:]) AC_CHECK_TOOL([OTOOL], [otool], [:]) AC_CHECK_TOOL([OTOOL64], [otool64], [:]) _LT_DECL([], [DSYMUTIL], [1], [Tool to manipulate archived DWARF debug symbol files on Mac OS X]) _LT_DECL([], [NMEDIT], [1], [Tool to change global to local symbols on Mac OS X]) _LT_DECL([], [LIPO], [1], [Tool to manipulate fat objects and archives on Mac OS X]) _LT_DECL([], [OTOOL], [1], [ldd/readelf like tool for Mach-O binaries on Mac OS X]) _LT_DECL([], [OTOOL64], [1], [ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4]) AC_CACHE_CHECK([for -single_module linker flag],[lt_cv_apple_cc_single_mod], [lt_cv_apple_cc_single_mod=no if test -z "${LT_MULTI_MODULE}"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the # link flags. rm -rf libconftest.dylib* echo "int foo(void){return 1;}" > conftest.c echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c" >&AS_MESSAGE_LOG_FD $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c 2>conftest.err _lt_result=$? if test -f libconftest.dylib && test ! -s conftest.err && test $_lt_result = 0; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&AS_MESSAGE_LOG_FD fi rm -rf libconftest.dylib* rm -f conftest.* fi]) AC_CACHE_CHECK([for -exported_symbols_list linker flag], [lt_cv_ld_exported_symbols_list], [lt_cv_ld_exported_symbols_list=no save_LDFLAGS=$LDFLAGS echo "_main" > conftest.sym LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [lt_cv_ld_exported_symbols_list=yes], [lt_cv_ld_exported_symbols_list=no]) LDFLAGS="$save_LDFLAGS" ]) case $host_os in rhapsody* | darwin1.[[012]]) _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; darwin1.*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; darwin*) # darwin 5.x on # if running on 10.5 or later, the deployment target defaults # to the OS version, if on x86, and 10.4, the deployment # target defaults to 10.4. Don't you love it? case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in 10.0,*86*-darwin8*|10.0,*-darwin[[91]]*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; 10.[[012]]*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; esac ;; esac if test "$lt_cv_apple_cc_single_mod" = "yes"; then _lt_dar_single_mod='$single_module' fi if test "$lt_cv_ld_exported_symbols_list" = "yes"; then _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' else _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' fi if test "$DSYMUTIL" != ":"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= fi ;; esac ]) # _LT_DARWIN_LINKER_FEATURES # -------------------------- # Checks for linker and compiler features on darwin m4_defun([_LT_DARWIN_LINKER_FEATURES], [ m4_require([_LT_REQUIRED_DARWIN_CHECKS]) _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_TAGVAR(whole_archive_flag_spec, $1)='' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)="$_lt_dar_allow_undefined" case $cc_basename in ifort*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test "$_lt_dar_can_shared" = "yes"; then output_verbose_link_cmd=echo _LT_TAGVAR(archive_cmds, $1)="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" _LT_TAGVAR(module_cmds, $1)="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" _LT_TAGVAR(module_expsym_cmds, $1)="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" m4_if([$1], [CXX], [ if test "$lt_cv_apple_cc_single_mod" != "yes"; then _LT_TAGVAR(archive_cmds, $1)="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" _LT_TAGVAR(archive_expsym_cmds, $1)="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" fi ],[]) else _LT_TAGVAR(ld_shlibs, $1)=no fi ]) # _LT_SYS_MODULE_PATH_AIX # ----------------------- # Links a minimal program and checks the executable # for the system default hardcoded library path. In most cases, # this is /usr/lib:/lib, but when the MPI compilers are used # the location of the communication and MPI libs are included too. # If we don't find anything, use the default library path according # to the aix ld manual. m4_defun([_LT_SYS_MODULE_PATH_AIX], [m4_require([_LT_DECL_SED])dnl AC_LINK_IFELSE(AC_LANG_PROGRAM,[ lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/ p } }' aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi],[]) if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi ])# _LT_SYS_MODULE_PATH_AIX # _LT_SHELL_INIT(ARG) # ------------------- m4_define([_LT_SHELL_INIT], [ifdef([AC_DIVERSION_NOTICE], [AC_DIVERT_PUSH(AC_DIVERSION_NOTICE)], [AC_DIVERT_PUSH(NOTICE)]) $1 AC_DIVERT_POP ])# _LT_SHELL_INIT # _LT_PROG_ECHO_BACKSLASH # ----------------------- # Add some code to the start of the generated configure script which # will find an echo command which doesn't interpret backslashes. m4_defun([_LT_PROG_ECHO_BACKSLASH], [_LT_SHELL_INIT([ # Check that we are running under the correct shell. SHELL=${CONFIG_SHELL-/bin/sh} case X$lt_ECHO in X*--fallback-echo) # Remove one level of quotation (which was required for Make). ECHO=`echo "$lt_ECHO" | sed 's,\\\\\[$]\\[$]0,'[$]0','` ;; esac ECHO=${lt_ECHO-echo} if test "X[$]1" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test "X[$]1" = X--fallback-echo; then # Avoid inline document here, it may be left over : elif test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' ; then # Yippee, $ECHO works! : else # Restart under the correct shell. exec $SHELL "[$]0" --no-reexec ${1+"[$]@"} fi if test "X[$]1" = X--fallback-echo; then # used as fallback echo shift cat <<_LT_EOF [$]* _LT_EOF exit 0 fi # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH if test -z "$lt_ECHO"; then if test "X${echo_test_string+set}" != Xset; then # find a string as large as possible, as long as the shell can cope with it for cmd in 'sed 50q "[$]0"' 'sed 20q "[$]0"' 'sed 10q "[$]0"' 'sed 2q "[$]0"' 'echo test'; do # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ... if { echo_test_string=`eval $cmd`; } 2>/dev/null && { test "X$echo_test_string" = "X$echo_test_string"; } 2>/dev/null then break fi done fi if test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' && echo_testing_string=`{ $ECHO "$echo_test_string"; } 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then : else # The Solaris, AIX, and Digital Unix default echo programs unquote # backslashes. This makes it impossible to quote backslashes using # echo "$something" | sed 's/\\/\\\\/g' # # So, first we look for a working echo in the user's PATH. lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for dir in $PATH /usr/ucb; do IFS="$lt_save_ifs" if (test -f $dir/echo || test -f $dir/echo$ac_exeext) && test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then ECHO="$dir/echo" break fi done IFS="$lt_save_ifs" if test "X$ECHO" = Xecho; then # We didn't find a better echo, so look for alternatives. if test "X`{ print -r '\t'; } 2>/dev/null`" = 'X\t' && echo_testing_string=`{ print -r "$echo_test_string"; } 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then # This shell has a builtin print -r that does the trick. ECHO='print -r' elif { test -f /bin/ksh || test -f /bin/ksh$ac_exeext; } && test "X$CONFIG_SHELL" != X/bin/ksh; then # If we have ksh, try running configure again with it. ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} export ORIGINAL_CONFIG_SHELL CONFIG_SHELL=/bin/ksh export CONFIG_SHELL exec $CONFIG_SHELL "[$]0" --no-reexec ${1+"[$]@"} else # Try using printf. ECHO='printf %s\n' if test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' && echo_testing_string=`{ $ECHO "$echo_test_string"; } 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then # Cool, printf works : elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && test "X$echo_testing_string" = 'X\t' && echo_testing_string=`($ORIGINAL_CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL export CONFIG_SHELL SHELL="$CONFIG_SHELL" export SHELL ECHO="$CONFIG_SHELL [$]0 --fallback-echo" elif echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo '\t') 2>/dev/null` && test "X$echo_testing_string" = 'X\t' && echo_testing_string=`($CONFIG_SHELL "[$]0" --fallback-echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then ECHO="$CONFIG_SHELL [$]0 --fallback-echo" else # maybe with a smaller string... prev=: for cmd in 'echo test' 'sed 2q "[$]0"' 'sed 10q "[$]0"' 'sed 20q "[$]0"' 'sed 50q "[$]0"'; do if { test "X$echo_test_string" = "X`eval $cmd`"; } 2>/dev/null then break fi prev="$cmd" done if test "$prev" != 'sed 50q "[$]0"'; then echo_test_string=`eval $prev` export echo_test_string exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "[$]0" ${1+"[$]@"} else # Oops. We lost completely, so just stick with echo. ECHO=echo fi fi fi fi fi fi # Copy echo and quote the copy suitably for passing to libtool from # the Makefile, instead of quoting the original, which is used later. lt_ECHO=$ECHO if test "X$lt_ECHO" = "X$CONFIG_SHELL [$]0 --fallback-echo"; then lt_ECHO="$CONFIG_SHELL \\\$\[$]0 --fallback-echo" fi AC_SUBST(lt_ECHO) ]) _LT_DECL([], [SHELL], [1], [Shell to use when invoking shell scripts]) _LT_DECL([], [ECHO], [1], [An echo program that does not interpret backslashes]) ])# _LT_PROG_ECHO_BACKSLASH # _LT_ENABLE_LOCK # --------------- m4_defun([_LT_ENABLE_LOCK], [AC_ARG_ENABLE([libtool-lock], [AS_HELP_STRING([--disable-libtool-lock], [avoid locking (might break parallel builds)])]) test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE="32" ;; *ELF-64*) HPUX_IA64_MODE="64" ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out which ABI we are using. echo '[#]line __oline__ "configure"' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then if test "$lt_cv_prog_gnu_ld" = yes; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_i386" ;; ppc64-*linux*|powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_x86_64_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; ppc*-*linux*|powerpc*-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -belf" AC_CACHE_CHECK([whether the C compiler needs -belf], lt_cv_cc_needs_belf, [AC_LANG_PUSH(C) AC_LINK_IFELSE([AC_LANG_PROGRAM([[]],[[]])],[lt_cv_cc_needs_belf=yes],[lt_cv_cc_needs_belf=no]) AC_LANG_POP]) if test x"$lt_cv_cc_needs_belf" != x"yes"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS="$SAVE_CFLAGS" fi ;; sparc*-*solaris*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if AC_TRY_EVAL(ac_compile); then case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) LD="${LD-ld} -m elf64_sparc" ;; *) if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then LD="${LD-ld} -64" fi ;; esac ;; esac fi rm -rf conftest* ;; esac need_locks="$enable_libtool_lock" ])# _LT_ENABLE_LOCK # _LT_CMD_OLD_ARCHIVE # ------------------- m4_defun([_LT_CMD_OLD_ARCHIVE], [AC_CHECK_TOOL(AR, ar, false) test -z "$AR" && AR=ar test -z "$AR_FLAGS" && AR_FLAGS=cru _LT_DECL([], [AR], [1], [The archiver]) _LT_DECL([], [AR_FLAGS], [1]) AC_CHECK_TOOL(STRIP, strip, :) test -z "$STRIP" && STRIP=: _LT_DECL([], [STRIP], [1], [A symbol stripping program]) AC_CHECK_TOOL(RANLIB, ranlib, :) test -z "$RANLIB" && RANLIB=: _LT_DECL([], [RANLIB], [1], [Commands used to install an old-style archive]) # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" fi _LT_DECL([], [old_postinstall_cmds], [2]) _LT_DECL([], [old_postuninstall_cmds], [2]) _LT_TAGDECL([], [old_archive_cmds], [2], [Commands used to build an old-style archive]) ])# _LT_CMD_OLD_ARCHIVE # _LT_COMPILER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [OUTPUT-FILE], [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------------------- # Check whether the given compiler option works AC_DEFUN([_LT_COMPILER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no m4_if([$4], , [ac_outfile=conftest.$ac_objext], [ac_outfile=$4]) echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$3" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi fi $RM conftest* ]) if test x"[$]$2" = xyes; then m4_if([$5], , :, [$5]) else m4_if([$6], , :, [$6]) fi ])# _LT_COMPILER_OPTION # Old name: AU_ALIAS([AC_LIBTOOL_COMPILER_OPTION], [_LT_COMPILER_OPTION]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_COMPILER_OPTION], []) # _LT_LINKER_OPTION(MESSAGE, VARIABLE-NAME, FLAGS, # [ACTION-SUCCESS], [ACTION-FAILURE]) # ---------------------------------------------------- # Check whether the given linker option works AC_DEFUN([_LT_LINKER_OPTION], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_SED])dnl AC_CACHE_CHECK([$1], [$2], [$2=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $3" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&AS_MESSAGE_LOG_FD $ECHO "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then $2=yes fi else $2=yes fi fi $RM -r conftest* LDFLAGS="$save_LDFLAGS" ]) if test x"[$]$2" = xyes; then m4_if([$4], , :, [$4]) else m4_if([$5], , :, [$5]) fi ])# _LT_LINKER_OPTION # Old name: AU_ALIAS([AC_LIBTOOL_LINKER_OPTION], [_LT_LINKER_OPTION]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_LINKER_OPTION], []) # LT_CMD_MAX_LEN #--------------- AC_DEFUN([LT_CMD_MAX_LEN], [AC_REQUIRE([AC_CANONICAL_HOST])dnl # find the maximum length of command line arguments AC_MSG_CHECKING([the maximum length of command line arguments]) AC_CACHE_VAL([lt_cv_sys_max_cmd_len], [dnl i=0 teststring="ABCD" case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw* | cegcc*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[[ ]]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` if test -n "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. for i in 1 2 3 4 5 6 7 8 ; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. while { test "X"`$SHELL [$]0 --fallback-echo "X$teststring$teststring" 2>/dev/null` \ = "XX$teststring$teststring"; } >/dev/null 2>&1 && test $i != 17 # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done # Only check the string length outside the loop. lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` teststring= # Add a significant safety factor because C++ compilers can tack on # massive amounts of additional arguments before passing them to the # linker. It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` fi ;; esac ]) if test -n $lt_cv_sys_max_cmd_len ; then AC_MSG_RESULT($lt_cv_sys_max_cmd_len) else AC_MSG_RESULT(none) fi max_cmd_len=$lt_cv_sys_max_cmd_len _LT_DECL([], [max_cmd_len], [0], [What is the maximum length of a command?]) ])# LT_CMD_MAX_LEN # Old name: AU_ALIAS([AC_LIBTOOL_SYS_MAX_CMD_LEN], [LT_CMD_MAX_LEN]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_SYS_MAX_CMD_LEN], []) # _LT_HEADER_DLFCN # ---------------- m4_defun([_LT_HEADER_DLFCN], [AC_CHECK_HEADERS([dlfcn.h], [], [], [AC_INCLUDES_DEFAULT])dnl ])# _LT_HEADER_DLFCN # _LT_TRY_DLOPEN_SELF (ACTION-IF-TRUE, ACTION-IF-TRUE-W-USCORE, # ACTION-IF-FALSE, ACTION-IF-CROSS-COMPILING) # ---------------------------------------------------------------- m4_defun([_LT_TRY_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl if test "$cross_compiling" = yes; then : [$4] else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF [#line __oline__ "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif void fnord() { int i=42;} int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; /* dlclose (self); */ } else puts (dlerror ()); return status; }] _LT_EOF if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&AS_MESSAGE_LOG_FD 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) $1 ;; x$lt_dlneed_uscore) $2 ;; x$lt_dlunknown|x*) $3 ;; esac else : # compilation failed $3 fi fi rm -fr conftest* ])# _LT_TRY_DLOPEN_SELF # LT_SYS_DLOPEN_SELF # ------------------ AC_DEFUN([LT_SYS_DLOPEN_SELF], [m4_require([_LT_HEADER_DLFCN])dnl if test "x$enable_dlopen" != xyes; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen="load_add_on" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32* | cegcc*) lt_cv_dlopen="LoadLibrary" lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen="dlopen" lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"],[ lt_cv_dlopen="dyld" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ]) ;; *) AC_CHECK_FUNC([shl_load], [lt_cv_dlopen="shl_load"], [AC_CHECK_LIB([dld], [shl_load], [lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld"], [AC_CHECK_FUNC([dlopen], [lt_cv_dlopen="dlopen"], [AC_CHECK_LIB([dl], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl"], [AC_CHECK_LIB([svld], [dlopen], [lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld"], [AC_CHECK_LIB([dld], [dld_link], [lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld"]) ]) ]) ]) ]) ]) ;; esac if test "x$lt_cv_dlopen" != xno; then enable_dlopen=yes else enable_dlopen=no fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS="$CPPFLAGS" test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS="$LDFLAGS" wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS="$LIBS" LIBS="$lt_cv_dlopen_libs $LIBS" AC_CACHE_CHECK([whether a program can dlopen itself], lt_cv_dlopen_self, [dnl _LT_TRY_DLOPEN_SELF( lt_cv_dlopen_self=yes, lt_cv_dlopen_self=yes, lt_cv_dlopen_self=no, lt_cv_dlopen_self=cross) ]) if test "x$lt_cv_dlopen_self" = xyes; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" AC_CACHE_CHECK([whether a statically linked program can dlopen itself], lt_cv_dlopen_self_static, [dnl _LT_TRY_DLOPEN_SELF( lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=yes, lt_cv_dlopen_self_static=no, lt_cv_dlopen_self_static=cross) ]) fi CPPFLAGS="$save_CPPFLAGS" LDFLAGS="$save_LDFLAGS" LIBS="$save_LIBS" ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi _LT_DECL([dlopen_support], [enable_dlopen], [0], [Whether dlopen is supported]) _LT_DECL([dlopen_self], [enable_dlopen_self], [0], [Whether dlopen of programs is supported]) _LT_DECL([dlopen_self_static], [enable_dlopen_self_static], [0], [Whether dlopen of statically linked programs is supported]) ])# LT_SYS_DLOPEN_SELF # Old name: AU_ALIAS([AC_LIBTOOL_DLOPEN_SELF], [LT_SYS_DLOPEN_SELF]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_DLOPEN_SELF], []) # _LT_COMPILER_C_O([TAGNAME]) # --------------------------- # Check to see if options -c and -o are simultaneously supported by compiler. # This macro does not hard code the compiler like AC_PROG_CC_C_O. m4_defun([_LT_COMPILER_C_O], [m4_require([_LT_DECL_SED])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_TAG_COMPILER])dnl AC_CACHE_CHECK([if $compiler supports -c -o file.$ac_objext], [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)], [_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [[^ ]]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:__oline__: $lt_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&AS_MESSAGE_LOG_FD echo "$as_me:__oline__: \$? = $ac_status" >&AS_MESSAGE_LOG_FD if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes fi fi chmod u+w . 2>&AS_MESSAGE_LOG_FD $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* ]) _LT_TAGDECL([compiler_c_o], [lt_cv_prog_compiler_c_o], [1], [Does compiler simultaneously support -c and -o options?]) ])# _LT_COMPILER_C_O # _LT_COMPILER_FILE_LOCKS([TAGNAME]) # ---------------------------------- # Check to see if we can do hard links to lock some files if needed m4_defun([_LT_COMPILER_FILE_LOCKS], [m4_require([_LT_ENABLE_LOCK])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl _LT_COMPILER_C_O([$1]) hard_links="nottested" if test "$_LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user AC_MSG_CHECKING([if we can lock with hard links]) hard_links=yes $RM conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no AC_MSG_RESULT([$hard_links]) if test "$hard_links" = no; then AC_MSG_WARN([`$CC' does not support `-c -o', so `make -j' may be unsafe]) need_locks=warn fi else need_locks=no fi _LT_DECL([], [need_locks], [1], [Must we lock files when doing compilation?]) ])# _LT_COMPILER_FILE_LOCKS # _LT_CHECK_OBJDIR # ---------------- m4_defun([_LT_CHECK_OBJDIR], [AC_CACHE_CHECK([for objdir], [lt_cv_objdir], [rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null]) objdir=$lt_cv_objdir _LT_DECL([], [objdir], [0], [The name of the directory that contains temporary libtool files])dnl m4_pattern_allow([LT_OBJDIR])dnl AC_DEFINE_UNQUOTED(LT_OBJDIR, "$lt_cv_objdir/", [Define to the sub-directory in which libtool stores uninstalled libraries.]) ])# _LT_CHECK_OBJDIR # _LT_LINKER_HARDCODE_LIBPATH([TAGNAME]) # -------------------------------------- # Check hardcoding attributes. m4_defun([_LT_LINKER_HARDCODE_LIBPATH], [AC_MSG_CHECKING([how to hardcode library paths into programs]) _LT_TAGVAR(hardcode_action, $1)= if test -n "$_LT_TAGVAR(hardcode_libdir_flag_spec, $1)" || test -n "$_LT_TAGVAR(runpath_var, $1)" || test "X$_LT_TAGVAR(hardcode_automatic, $1)" = "Xyes" ; then # We can hardcode non-existent directories. if test "$_LT_TAGVAR(hardcode_direct, $1)" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_TAGVAR(hardcode_shlibpath_var, $1)" != no && test "$_LT_TAGVAR(hardcode_minus_L, $1)" != no; then # Linking always hardcodes the temporary library directory. _LT_TAGVAR(hardcode_action, $1)=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. _LT_TAGVAR(hardcode_action, $1)=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. _LT_TAGVAR(hardcode_action, $1)=unsupported fi AC_MSG_RESULT([$_LT_TAGVAR(hardcode_action, $1)]) if test "$_LT_TAGVAR(hardcode_action, $1)" = relink || test "$_LT_TAGVAR(inherit_rpath, $1)" = yes; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi _LT_TAGDECL([], [hardcode_action], [0], [How to hardcode a shared library path into an executable]) ])# _LT_LINKER_HARDCODE_LIBPATH # _LT_CMD_STRIPLIB # ---------------- m4_defun([_LT_CMD_STRIPLIB], [m4_require([_LT_DECL_EGREP]) striplib= old_striplib= AC_MSG_CHECKING([whether stripping libraries is possible]) if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" AC_MSG_RESULT([yes]) else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP" ; then striplib="$STRIP -x" old_striplib="$STRIP -S" AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) fi ;; *) AC_MSG_RESULT([no]) ;; esac fi _LT_DECL([], [old_striplib], [1], [Commands to strip libraries]) _LT_DECL([], [striplib], [1]) ])# _LT_CMD_STRIPLIB # _LT_SYS_DYNAMIC_LINKER([TAG]) # ----------------------------- # PORTME Fill in your ld.so characteristics m4_defun([_LT_SYS_DYNAMIC_LINKER], [AC_REQUIRE([AC_CANONICAL_HOST])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_OBJDUMP])dnl m4_require([_LT_DECL_SED])dnl AC_MSG_CHECKING([dynamic linker characteristics]) m4_if([$1], [], [ if test "$GCC" = yes; then case $host_os in darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; *) lt_awk_arg="/^libraries:/" ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e "s,=/,/,g"` if $ECHO "$lt_search_path_spec" | $GREP ';' >/dev/null ; then # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED -e 's/;/ /g'` else lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi # Ok, now we have the path, separated by spaces, we can step through it # and add multilib dir if necessary. lt_tmp_lt_search_path_spec= lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` for lt_sys_path in $lt_search_path_spec; do if test -d "$lt_sys_path/$lt_multi_os_dir"; then lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" else test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO $lt_tmp_lt_search_path_spec | awk ' BEGIN {RS=" "; FS="/|\n";} { lt_foo=""; lt_count=0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { lt_foo="/" $lt_i lt_foo; } else { lt_count--; } } } } if (lt_foo != "") { lt_freq[[lt_foo]]++; } if (lt_freq[[lt_foo]] == 1) { print lt_foo; } }'` sys_lib_search_path_spec=`$ECHO $lt_search_path_spec` else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi]) library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix[[4-9]]*) version_type=linux need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[[01]] | aix4.[[01]].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) case $host_cpu in powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$ECHO "X$lib" | $Xsed -e '\''s%^.*/\([[^/]]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[[45]]*) version_type=linux need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32* | cegcc*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$host_os in yes,cygwin* | yes,mingw* | yes,pw32* | yes,cegcc*) library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec=`$CC -print-search-dirs | $GREP "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if $ECHO "$sys_lib_search_path_spec" | [$GREP ';[c-zC-Z]:/' >/dev/null]; then # It is most probably a Windows format PATH printed by # mingw gcc, but we are running on Cygwin. Gcc prints its search # path with ; separators, and with drive letters. We can handle the # drive letters (cygwin fileutils understands them), so leave them, # especially as we might pass files found there to a mingw objdump, # which wouldn't understand a cygwinified path. Ahh. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext}' ;; esac ;; *) library_names_spec='${libname}`echo ${release} | $SED -e 's/[[.]]/-/g'`${versuffix}${shared_ext} $libname.lib' ;; esac dynamic_linker='Win32 ld.exe' # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' m4_if([$1], [],[ sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib"]) sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd1*) dynamic_linker=no ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[[123]]*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2*) shlibpath_overrides_runpath=yes ;; freebsd3.[[01]]* | freebsdelf3.[[01]]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[[2-9]]* | freebsdelf3.[[2-9]]* | \ freebsd4.[[0-5]] | freebsdelf4.[[0-5]] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555. postinstall_cmds='chmod 555 $lib' ;; interix[[3-9]]*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be Linux ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # Some binutils ld are patched to set DT_RUNPATH save_LDFLAGS=$LDFLAGS save_libdir=$libdir eval "libdir=/foo; wl=\"$_LT_TAGVAR(lt_prog_compiler_wl, $1)\"; \ LDFLAGS=\"\$LDFLAGS $_LT_TAGVAR(hardcode_libdir_flag_spec, $1)\"" AC_LINK_IFELSE([AC_LANG_PROGRAM([],[])], [AS_IF([ ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null], [shlibpath_overrides_runpath=yes])]) LDFLAGS=$save_LDFLAGS libdir=$save_libdir # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \[$]2)); skip = 1; } { if (!skip) print \[$]0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsdelf*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='NetBSD ld.elf_so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; *nto* | *qnx*) version_type=qnx need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[[89]] | openbsd2.[[89]].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac AC_MSG_RESULT([$dynamic_linker]) test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" fi if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" fi _LT_DECL([], [variables_saved_for_relink], [1], [Variables whose values should be saved in libtool wrapper scripts and restored at link time]) _LT_DECL([], [need_lib_prefix], [0], [Do we need the "lib" prefix for modules?]) _LT_DECL([], [need_version], [0], [Do we need a version for libraries?]) _LT_DECL([], [version_type], [0], [Library versioning type]) _LT_DECL([], [runpath_var], [0], [Shared library runtime path variable]) _LT_DECL([], [shlibpath_var], [0],[Shared library path variable]) _LT_DECL([], [shlibpath_overrides_runpath], [0], [Is shlibpath searched before the hard-coded library search path?]) _LT_DECL([], [libname_spec], [1], [Format of library name prefix]) _LT_DECL([], [library_names_spec], [1], [[List of archive names. First name is the real one, the rest are links. The last name is the one that the linker finds with -lNAME]]) _LT_DECL([], [soname_spec], [1], [[The coded name of the library, if different from the real name]]) _LT_DECL([], [postinstall_cmds], [2], [Command to use after installation of a shared archive]) _LT_DECL([], [postuninstall_cmds], [2], [Command to use after uninstallation of a shared archive]) _LT_DECL([], [finish_cmds], [2], [Commands used to finish a libtool library installation in a directory]) _LT_DECL([], [finish_eval], [1], [[As "finish_cmds", except a single script fragment to be evaled but not shown]]) _LT_DECL([], [hardcode_into_libs], [0], [Whether we should hardcode library paths into libraries]) _LT_DECL([], [sys_lib_search_path_spec], [2], [Compile-time system search path for libraries]) _LT_DECL([], [sys_lib_dlsearch_path_spec], [2], [Run-time system search path for libraries]) ])# _LT_SYS_DYNAMIC_LINKER # _LT_PATH_TOOL_PREFIX(TOOL) # -------------------------- # find a file program which can recognize shared library AC_DEFUN([_LT_PATH_TOOL_PREFIX], [m4_require([_LT_DECL_EGREP])dnl AC_MSG_CHECKING([for $1]) AC_CACHE_VAL(lt_cv_path_MAGIC_CMD, [case $MAGIC_CMD in [[\\/*] | ?:[\\/]*]) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR dnl $ac_dummy forces splitting on constant user-supplied paths. dnl POSIX.2 word splitting is done only on the output of word expansions, dnl not every word. This closes a longstanding sh security hole. ac_dummy="m4_if([$2], , $PATH, [$2])" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/$1; then lt_cv_path_MAGIC_CMD="$ac_dir/$1" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac]) MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then AC_MSG_RESULT($MAGIC_CMD) else AC_MSG_RESULT(no) fi _LT_DECL([], [MAGIC_CMD], [0], [Used to examine libraries when file_magic_cmd begins with "file"])dnl ])# _LT_PATH_TOOL_PREFIX # Old name: AU_ALIAS([AC_PATH_TOOL_PREFIX], [_LT_PATH_TOOL_PREFIX]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_PATH_TOOL_PREFIX], []) # _LT_PATH_MAGIC # -------------- # find a file program which can recognize a shared library m4_defun([_LT_PATH_MAGIC], [_LT_PATH_TOOL_PREFIX(${ac_tool_prefix}file, /usr/bin$PATH_SEPARATOR$PATH) if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then _LT_PATH_TOOL_PREFIX(file, /usr/bin$PATH_SEPARATOR$PATH) else MAGIC_CMD=: fi fi ])# _LT_PATH_MAGIC # LT_PATH_LD # ---------- # find the pathname to the GNU or non-GNU linker AC_DEFUN([LT_PATH_LD], [AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_CANONICAL_BUILD])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_DECL_EGREP])dnl AC_ARG_WITH([gnu-ld], [AS_HELP_STRING([--with-gnu-ld], [assume the C compiler uses GNU ld @<:@default=no@:>@])], [test "$withval" = no || with_gnu_ld=yes], [with_gnu_ld=no])dnl ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. AC_MSG_CHECKING([for ld used by $CC]) case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [[\\/]]* | ?:[[\\/]]*) re_direlt='/[[^/]][[^/]]*/\.\./' # Canonicalize the pathname of ld ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then AC_MSG_CHECKING([for GNU ld]) else AC_MSG_CHECKING([for non-GNU ld]) fi AC_CACHE_VAL(lt_cv_path_LD, [if test -z "$LD"; then lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &1 /dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?' lt_cv_file_magic_cmd='$OBJDUMP -f' fi ;; cegcc) # use the weaker test based on 'objdump'. See mingw*. lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' lt_cv_file_magic_cmd='$OBJDUMP -f' ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | dragonfly*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[[3-9]]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; gnu*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|ELF-[[0-9]][[0-9]]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) [lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - PA-RISC [0-9].[0-9]'] lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[[0-9]][[0-9]][[0-9]]|PA-RISC[[0-9]].[[0-9]]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix[[3-9]]*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be Linux ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu) lt_cv_deplibs_check_method=pass_all ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; *nto* | *qnx*) lt_cv_deplibs_check_method=pass_all ;; openbsd*) if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[[^/]]+(\.so\.[[0-9]]+\.[[0-9]]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; rdos*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[ML]]SB (shared object|dynamic lib) M[[0-9]][[0-9]]* Version [[0-9]]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [[0-9]][[0-9]]*-bit [[LM]]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; tpf*) lt_cv_deplibs_check_method=pass_all ;; esac ]) file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown _LT_DECL([], [deplibs_check_method], [1], [Method to check whether dependent libraries are shared objects]) _LT_DECL([], [file_magic_cmd], [1], [Command to use when deplibs_check_method == "file_magic"]) ])# _LT_CHECK_MAGIC_METHOD # LT_PATH_NM # ---------- # find the pathname to a BSD- or MS-compatible name lister AC_DEFUN([LT_PATH_NM], [AC_REQUIRE([AC_PROG_CC])dnl AC_CACHE_CHECK([for BSD- or MS-compatible name lister (nm)], lt_cv_path_NM, [if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM="$NM" else lt_nm_to_check="${ac_tool_prefix}nm" if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. tmp_nm="$ac_dir/$lt_tmp_nm" if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then # Check to see if the nm accepts a BSD-compat flag. # Adding the `sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in */dev/null* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS="$lt_save_ifs" done : ${lt_cv_path_NM=no} fi]) if test "$lt_cv_path_NM" != "no"; then NM="$lt_cv_path_NM" else # Didn't find any BSD compatible name lister, look for dumpbin. AC_CHECK_TOOLS(DUMPBIN, ["dumpbin -symbols" "link -dump -symbols"], :) AC_SUBST([DUMPBIN]) if test "$DUMPBIN" != ":"; then NM="$DUMPBIN" fi fi test -z "$NM" && NM=nm AC_SUBST([NM]) _LT_DECL([], [NM], [1], [A BSD- or MS-compatible name lister])dnl AC_CACHE_CHECK([the name lister ($NM) interface], [lt_cv_nm_interface], [lt_cv_nm_interface="BSD nm" echo "int some_variable = 0;" > conftest.$ac_ext (eval echo "\"\$as_me:__oline__: $ac_compile\"" >&AS_MESSAGE_LOG_FD) (eval "$ac_compile" 2>conftest.err) cat conftest.err >&AS_MESSAGE_LOG_FD (eval echo "\"\$as_me:__oline__: $NM \\\"conftest.$ac_objext\\\"\"" >&AS_MESSAGE_LOG_FD) (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) cat conftest.err >&AS_MESSAGE_LOG_FD (eval echo "\"\$as_me:__oline__: output\"" >&AS_MESSAGE_LOG_FD) cat conftest.out >&AS_MESSAGE_LOG_FD if $GREP 'External.*some_variable' conftest.out > /dev/null; then lt_cv_nm_interface="MS dumpbin" fi rm -f conftest*]) ])# LT_PATH_NM # Old names: AU_ALIAS([AM_PROG_NM], [LT_PATH_NM]) AU_ALIAS([AC_PROG_NM], [LT_PATH_NM]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_PROG_NM], []) dnl AC_DEFUN([AC_PROG_NM], []) # LT_LIB_M # -------- # check for math library AC_DEFUN([LT_LIB_M], [AC_REQUIRE([AC_CANONICAL_HOST])dnl LIBM= case $host in *-*-beos* | *-*-cygwin* | *-*-pw32* | *-*-darwin*) # These system don't have libm, or don't need it ;; *-ncr-sysv4.3*) AC_CHECK_LIB(mw, _mwvalidcheckl, LIBM="-lmw") AC_CHECK_LIB(m, cos, LIBM="$LIBM -lm") ;; *) AC_CHECK_LIB(m, cos, LIBM="-lm") ;; esac AC_SUBST([LIBM]) ])# LT_LIB_M # Old name: AU_ALIAS([AC_CHECK_LIBM], [LT_LIB_M]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_CHECK_LIBM], []) # _LT_COMPILER_NO_RTTI([TAGNAME]) # ------------------------------- m4_defun([_LT_COMPILER_NO_RTTI], [m4_require([_LT_TAG_COMPILER])dnl _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= if test "$GCC" = yes; then _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' _LT_COMPILER_OPTION([if $compiler supports -fno-rtti -fno-exceptions], lt_cv_prog_compiler_rtti_exceptions, [-fno-rtti -fno-exceptions], [], [_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)="$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1) -fno-rtti -fno-exceptions"]) fi _LT_TAGDECL([no_builtin_flag], [lt_prog_compiler_no_builtin_flag], [1], [Compiler flag to turn off builtin functions]) ])# _LT_COMPILER_NO_RTTI # _LT_CMD_GLOBAL_SYMBOLS # ---------------------- m4_defun([_LT_CMD_GLOBAL_SYMBOLS], [AC_REQUIRE([AC_CANONICAL_HOST])dnl AC_REQUIRE([AC_PROG_CC])dnl AC_REQUIRE([LT_PATH_NM])dnl AC_REQUIRE([LT_PATH_LD])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_TAG_COMPILER])dnl # Check for command to grab the raw symbol name followed by C symbol from nm. AC_MSG_CHECKING([command to parse $NM output from $compiler object]) AC_CACHE_VAL([lt_cv_sys_global_symbol_pipe], [ # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[[BCDEGRST]]' # Regexp to match symbols that can be accessed directly from C. sympat='\([[_A-Za-z]][[_A-Za-z0-9]]*\)' # Define system-specific variables. case $host_os in aix*) symcode='[[BCDT]]' ;; cygwin* | mingw* | pw32* | cegcc*) symcode='[[ABCDGISTW]]' ;; hpux*) if test "$host_cpu" = ia64; then symcode='[[ABCDEGRST]]' fi ;; irix* | nonstopux*) symcode='[[BCDEGRST]]' ;; osf*) symcode='[[BCDEGQRST]]' ;; solaris*) symcode='[[BDRT]]' ;; sco3.2v5*) symcode='[[DT]]' ;; sysv4.2uw2*) symcode='[[DT]]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[[ABDT]]' ;; sysv4) symcode='[[DFNSTU]]' ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[[ABCDGIRSTW]]' ;; esac # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p'" lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([[^ ]]*\) $/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([[^ ]]*\) \(lib[[^ ]]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([[^ ]]*\) \([[^ ]]*\)$/ {\"lib\2\", (void *) \&\2},/p'" # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # Try without a prefix underscore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Fake it for dumpbin and say T for any non-static function # and D for any global variable. # Also find C++ and __fastcall symbols from MSVC++, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK ['"\ " {last_section=section; section=\$ 3};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ " {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ " {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ " s[1]~/^[@?]/{print s[1], s[1]; next};"\ " s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx]" else lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[[ ]]\($symcode$symcode*\)[[ ]][[ ]]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" fi # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext <<_LT_EOF #ifdef __cplusplus extern "C" { #endif char nm_test_var; void nm_test_func(void); void nm_test_func(void){} #ifdef __cplusplus } #endif int main(){nm_test_var='a';nm_test_func();return(0);} _LT_EOF if AC_TRY_EVAL(ac_compile); then # Now try to grab the symbols. nlist=conftest.nm if AC_TRY_EVAL(NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist) && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if $GREP ' nm_test_var$' "$nlist" >/dev/null; then if $GREP ' nm_test_func$' "$nlist" >/dev/null; then cat <<_LT_EOF > conftest.$ac_ext #ifdef __cplusplus extern "C" { #endif _LT_EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' cat <<_LT_EOF >> conftest.$ac_ext /* The mapping between symbol names and symbols. */ const struct { const char *name; void *address; } lt__PROGRAM__LTX_preloaded_symbols[[]] = { { "@PROGRAM@", (void *) 0 }, _LT_EOF $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt__PROGRAM__LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif _LT_EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_save_LIBS="$LIBS" lt_save_CFLAGS="$CFLAGS" LIBS="conftstm.$ac_objext" CFLAGS="$CFLAGS$_LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)" if AC_TRY_EVAL(ac_link) && test -s conftest${ac_exeext}; then pipe_works=yes fi LIBS="$lt_save_LIBS" CFLAGS="$lt_save_CFLAGS" else echo "cannot find nm_test_func in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot find nm_test_var in $nlist" >&AS_MESSAGE_LOG_FD fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&AS_MESSAGE_LOG_FD fi else echo "$progname: failed program was:" >&AS_MESSAGE_LOG_FD cat conftest.$ac_ext >&5 fi rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test "$pipe_works" = yes; then break else lt_cv_sys_global_symbol_pipe= fi done ]) if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then AC_MSG_RESULT(failed) else AC_MSG_RESULT(ok) fi _LT_DECL([global_symbol_pipe], [lt_cv_sys_global_symbol_pipe], [1], [Take the output of nm and produce a listing of raw symbols and C names]) _LT_DECL([global_symbol_to_cdecl], [lt_cv_sys_global_symbol_to_cdecl], [1], [Transform the output of nm in a proper C declaration]) _LT_DECL([global_symbol_to_c_name_address], [lt_cv_sys_global_symbol_to_c_name_address], [1], [Transform the output of nm in a C name address pair]) _LT_DECL([global_symbol_to_c_name_address_lib_prefix], [lt_cv_sys_global_symbol_to_c_name_address_lib_prefix], [1], [Transform the output of nm in a C name address pair when lib prefix is needed]) ]) # _LT_CMD_GLOBAL_SYMBOLS # _LT_COMPILER_PIC([TAGNAME]) # --------------------------- m4_defun([_LT_COMPILER_PIC], [m4_require([_LT_TAG_COMPILER])dnl _LT_TAGVAR(lt_prog_compiler_wl, $1)= _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)= AC_MSG_CHECKING([for $compiler option to produce PIC]) m4_if([$1], [CXX], [ # C++ specific cases for pic, static, wl, etc. if test "$GXX" = yes; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; *djgpp*) # DJGPP does not support shared libraries at all _LT_TAGVAR(lt_prog_compiler_pic, $1)= ;; interix[[3-9]]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac else case $host_os in aix[[4-9]]*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; chorus*) case $cc_basename in cxch68*) # Green Hills C++ Compiler # _LT_TAGVAR(lt_prog_compiler_static, $1)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" ;; esac ;; dgux*) case $cc_basename in ec++*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; ghcx*) # Green Hills C++ Compiler _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; freebsd* | dragonfly*) # FreeBSD uses GNU C++ ;; hpux9* | hpux10* | hpux11*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' if test "$host_cpu" != ia64; then _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' fi ;; aCC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac ;; *) ;; esac ;; interix*) # This is c89, which is MS Visual C++ (no shared libs) # Anyone wants to do a port? ;; irix5* | irix6* | nonstopux*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' # CC pic flag -KPIC is the default. ;; *) ;; esac ;; linux* | k*bsd*-gnu | kopensolaris*-gnu) case $cc_basename in KCC*) # KAI C++ Compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; ecpc* ) # old Intel C++ for x86_64 which still supported -KPIC. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; icpc* ) # Intel C++, used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; pgCC* | pgcpp*) # Portland Group C++ compiler _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; cxx*) # Compaq C++ # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; xlc* | xlC*) # IBM XL 8.0 on PPC _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; esac ;; esac ;; lynxos*) ;; m88k*) ;; mvs*) case $cc_basename in cxx*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-W c,exportall' ;; *) ;; esac ;; netbsd* | netbsdelf*-gnu) ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='--backend -Wl,' ;; RCC*) # Rational C++ 2.4.1 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; cxx*) # Digital/Compaq C++ _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. _LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; *) ;; esac ;; psos*) ;; solaris*) case $cc_basename in CC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' ;; gcx*) # Green Hills C++ Compiler _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' ;; *) ;; esac ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; lcc*) # Lucid _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' ;; *) ;; esac ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) case $cc_basename in CC*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' ;; *) ;; esac ;; vxworks*) ;; *) _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ], [ if test "$GCC" = yes; then _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fno-common' ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac ;; interix[[3-9]]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no enable_shared=no ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(lt_prog_compiler_pic, $1)=-Kconform_pic fi ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' else _LT_TAGVAR(lt_prog_compiler_static, $1)='-bnso -bI:/lib/syscalls.exp' fi ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). m4_if([$1], [GCJ], [], [_LT_TAGVAR(lt_prog_compiler_pic, $1)='-DDLL_EXPORT']) ;; hpux9* | hpux10* | hpux11*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? _LT_TAGVAR(lt_prog_compiler_static, $1)='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # PIC (with -KPIC) is the default. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; linux* | k*bsd*-gnu | kopensolaris*-gnu) case $cc_basename in # old Intel for x86_64 which still supported -KPIC. ecc*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; # icc used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. icc* | ifort*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-static' ;; # Lahey Fortran 8.1. lf95*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='--shared' _LT_TAGVAR(lt_prog_compiler_static, $1)='--static' ;; pgcc* | pgf77* | pgf90* | pgf95*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; ccc*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All Alpha code is PIC. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; xl*) # IBM XL C 8.0/Fortran 10.1 on PPC _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-qpic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' ;; *Sun\ F*) # Sun Fortran 8.3 passes all unrecognized flags to the linker _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' _LT_TAGVAR(lt_prog_compiler_wl, $1)='' ;; esac ;; esac ;; newsos6) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. _LT_TAGVAR(lt_prog_compiler_pic, $1)='-fPIC -shared' ;; osf3* | osf4* | osf5*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' # All OSF/1 code is PIC. _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; rdos*) _LT_TAGVAR(lt_prog_compiler_static, $1)='-non_shared' ;; solaris*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' case $cc_basename in f77* | f90* | f95*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ';; *) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,';; esac ;; sunos4*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Qoption ld ' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-PIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then _LT_TAGVAR(lt_prog_compiler_pic, $1)='-Kconform_pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_pic, $1)='-KPIC' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; unicos*) _LT_TAGVAR(lt_prog_compiler_wl, $1)='-Wl,' _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; uts4*) _LT_TAGVAR(lt_prog_compiler_pic, $1)='-pic' _LT_TAGVAR(lt_prog_compiler_static, $1)='-Bstatic' ;; *) _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no ;; esac fi ]) case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) _LT_TAGVAR(lt_prog_compiler_pic, $1)= ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)="$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])" ;; esac AC_MSG_RESULT([$_LT_TAGVAR(lt_prog_compiler_pic, $1)]) _LT_TAGDECL([wl], [lt_prog_compiler_wl], [1], [How to pass a linker flag through the compiler]) # # Check to make sure the PIC flag actually works. # if test -n "$_LT_TAGVAR(lt_prog_compiler_pic, $1)"; then _LT_COMPILER_OPTION([if $compiler PIC flag $_LT_TAGVAR(lt_prog_compiler_pic, $1) works], [_LT_TAGVAR(lt_cv_prog_compiler_pic_works, $1)], [$_LT_TAGVAR(lt_prog_compiler_pic, $1)@&t@m4_if([$1],[],[ -DPIC],[m4_if([$1],[CXX],[ -DPIC],[])])], [], [case $_LT_TAGVAR(lt_prog_compiler_pic, $1) in "" | " "*) ;; *) _LT_TAGVAR(lt_prog_compiler_pic, $1)=" $_LT_TAGVAR(lt_prog_compiler_pic, $1)" ;; esac], [_LT_TAGVAR(lt_prog_compiler_pic, $1)= _LT_TAGVAR(lt_prog_compiler_can_build_shared, $1)=no]) fi _LT_TAGDECL([pic_flag], [lt_prog_compiler_pic], [1], [Additional compiler flags for building library objects]) # # Check to make sure the static flag actually works. # wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) eval lt_tmp_static_flag=\"$_LT_TAGVAR(lt_prog_compiler_static, $1)\" _LT_LINKER_OPTION([if $compiler static flag $lt_tmp_static_flag works], _LT_TAGVAR(lt_cv_prog_compiler_static_works, $1), $lt_tmp_static_flag, [], [_LT_TAGVAR(lt_prog_compiler_static, $1)=]) _LT_TAGDECL([link_static_flag], [lt_prog_compiler_static], [1], [Compiler flag to prevent dynamic linking]) ])# _LT_COMPILER_PIC # _LT_LINKER_SHLIBS([TAGNAME]) # ---------------------------- # See if the linker supports building shared libraries. m4_defun([_LT_LINKER_SHLIBS], [AC_REQUIRE([LT_PATH_LD])dnl AC_REQUIRE([LT_PATH_NM])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_EGREP])dnl m4_require([_LT_DECL_SED])dnl m4_require([_LT_CMD_GLOBAL_SYMBOLS])dnl m4_require([_LT_TAG_COMPILER])dnl AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) m4_if([$1], [CXX], [ _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' case $host_os in aix[[4-9]]*) # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' else _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' fi ;; pw32*) _LT_TAGVAR(export_symbols_cmds, $1)="$ltdll_cmds" ;; cygwin* | mingw* | cegcc*) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/;/^.*[[ ]]__nm__/s/^.*[[ ]]__nm__\([[^ ]]*\)[[ ]][[^ ]]*/\1 DATA/;/^I[[ ]]/d;/^[[AITW]][[ ]]/s/.* //'\'' | sort | uniq > $export_symbols' ;; linux* | k*bsd*-gnu) _LT_TAGVAR(link_all_deplibs, $1)=no ;; *) _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; esac _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] ], [ runpath_var= _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_cmds, $1)= _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(compiler_needs_object, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(old_archive_from_new_cmds, $1)= _LT_TAGVAR(old_archive_from_expsyms_cmds, $1)= _LT_TAGVAR(thread_safe_flag_spec, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list _LT_TAGVAR(include_expsyms, $1)= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. _LT_TAGVAR(exclude_expsyms, $1)=['_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*'] # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. # Exclude shared library initialization/finalization symbols. dnl Note also adjust exclude_expsyms for C++ above. extract_expsyms_cmds= case $host_os in cygwin* | mingw* | pw32* | cegcc*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; linux* | k*bsd*-gnu) _LT_TAGVAR(link_all_deplibs, $1)=no ;; esac _LT_TAGVAR(ld_shlibs, $1)=yes if test "$with_gnu_ld" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi supports_anon_versioning=no case `$LD -v 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[[3-9]]*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: the GNU linker, at least up to release 2.9.1, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to modify your PATH *** so that a non-GNU linker is found, and then restart. _LT_EOF fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; cygwin* | mingw* | pw32* | cegcc*) # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes _LT_TAGVAR(export_symbols_cmds, $1)='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[[BCDGRS]][[ ]]/s/.*[[ ]]\([[^ ]]*\)/\1 DATA/'\'' | $SED -e '\''/^[[AITW]][[ ]]/s/.*[[ ]]//'\'' | sort | uniq > $export_symbols' if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no if test "$host_os" = linux-dietlibc; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ && test "$tmp_diet" = no then tmp_addflag= tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; lf95*) # Lahey Fortran 8.1 _LT_TAGVAR(whole_archive_flag_spec, $1)= tmp_sharedflag='--shared' ;; xl[[cC]]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac _LT_TAGVAR(archive_cmds, $1)='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test "x$supports_anon_versioning" = xyes; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi case $cc_basename in xlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself _LT_TAGVAR(whole_archive_flag_spec, $1)='--whole-archive$convenience --no-whole-archive' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='-rpath $libdir' _LT_TAGVAR(archive_cmds, $1)='$LD -shared $libobjs $deplibs $compiler_flags -soname $soname -o $lib' if test "x$supports_anon_versioning" = xyes; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $LD -shared $libobjs $deplibs $compiler_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [[01]].* | *\ 2.[[0-9]].* | *\ 2.1[[0-5]].*) _LT_TAGVAR(ld_shlibs, $1)=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; sunos4*) _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac if test "$_LT_TAGVAR(ld_shlibs, $1)" = no; then runpath_var= _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=yes _LT_TAGVAR(archive_expsym_cmds, $1)='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. _LT_TAGVAR(hardcode_minus_L, $1)=yes if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. _LT_TAGVAR(hardcode_direct, $1)=unsupported fi ;; aix[[4-9]]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then _LT_TAGVAR(export_symbols_cmds, $1)='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' else _LT_TAGVAR(export_symbols_cmds, $1)='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && ([substr](\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_TAGVAR(archive_cmds, $1)='' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' if test "$GCC" = yes; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 _LT_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi _LT_TAGVAR(link_all_deplibs, $1)=no else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. _LT_TAGVAR(always_export_symbols, $1)=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then $ECHO "X${wl}${allow_undefined_flag}" | $Xsed; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' _LT_TAGVAR(archive_cmds_need_lc, $1)=yes # This is similar to how AIX traditionally builds its shared libraries. _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='' ;; m68k) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac ;; bsdi[[45]]*) _LT_TAGVAR(export_dynamic_flag_spec, $1)=-rdynamic ;; cygwin* | mingw* | pw32* | cegcc*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)=' ' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. _LT_TAGVAR(archive_cmds, $1)='$CC -o $lib $libobjs $compiler_flags `$ECHO "X$deplibs" | $Xsed -e '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. _LT_TAGVAR(old_archive_from_new_cmds, $1)='true' # FIXME: Should let the user specify the lib program. _LT_TAGVAR(old_archive_cmds, $1)='lib -OUT:$oldlib$oldobjs$old_deplibs' _LT_TAGVAR(fix_srcfile_path, $1)='`cygpath -w "$srcfile"`' _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes ;; darwin* | rhapsody*) _LT_DARWIN_LINKER_FEATURES($1) ;; dgux*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; freebsd1*) _LT_TAGVAR(ld_shlibs, $1)=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; hpux9*) if test "$GCC" = yes; then _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ;; hpux10*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test "$with_gnu_ld" = no; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)='+b $libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes fi ;; hpux11*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac fi if test "$with_gnu_ld" = no; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. _LT_TAGVAR(hardcode_minus_L, $1)=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" AC_LINK_IFELSE(int foo(void) {}, _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' ) LDFLAGS="$save_LDFLAGS" else _LT_TAGVAR(archive_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes _LT_TAGVAR(link_all_deplibs, $1)=yes ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else _LT_TAGVAR(archive_cmds, $1)='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; newsos6) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *nto* | *qnx*) ;; openbsd*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' else case $host_os in openbsd[[01]].* | openbsd2.[[0-7]] | openbsd2.[[0-7]].*) _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' ;; esac fi else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; os2*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(archive_cmds, $1)='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$ECHO DATA >> $output_objdir/$libname.def~$ECHO " SINGLE NONSHARED" >> $output_objdir/$libname.def~$ECHO EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' _LT_TAGVAR(old_archive_from_new_cmds, $1)='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' else _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' # Both c and cxx compiler support -rpath directly _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' fi _LT_TAGVAR(archive_cmds_need_lc, $1)='no' _LT_TAGVAR(hardcode_libdir_separator, $1)=: ;; solaris*) _LT_TAGVAR(no_undefined_flag, $1)=' -z defs' if test "$GCC" = yes; then wlarc='${wl}' _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' _LT_TAGVAR(archive_cmds, $1)='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' ;; *) wlarc='${wl}' _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. GCC discards it without `$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test "$GCC" = yes; then _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' else _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' fi ;; esac _LT_TAGVAR(link_all_deplibs, $1)=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4) case $host_vendor in sni) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. _LT_TAGVAR(archive_cmds, $1)='$LD -G -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(reload_cmds, $1)='$CC -r -o $output$reload_objs' _LT_TAGVAR(hardcode_direct, $1)=no ;; motorola) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_direct, $1)=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; sysv4.3*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes _LT_TAGVAR(ld_shlibs, $1)=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) _LT_TAGVAR(archive_cmds, $1)='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(ld_shlibs, $1)=no ;; esac if test x$host_vendor = xsni; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Blargedynsym' ;; esac fi fi ]) AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no _LT_TAGVAR(with_gnu_ld, $1)=$with_gnu_ld _LT_DECL([], [libext], [0], [Old archive suffix (normally "a")])dnl _LT_DECL([], [shrext_cmds], [1], [Shared library suffix (normally ".so")])dnl _LT_DECL([], [extract_expsyms_cmds], [2], [The commands to extract the exported symbol list from a shared archive]) # # Do we need to explicitly link libc? # case "x$_LT_TAGVAR(archive_cmds_need_lc, $1)" in x|xyes) # Assume -lc should be added _LT_TAGVAR(archive_cmds_need_lc, $1)=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $_LT_TAGVAR(archive_cmds, $1) in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. AC_MSG_CHECKING([whether -lc should be explicitly linked in]) $RM conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if AC_TRY_EVAL(ac_compile) 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$_LT_TAGVAR(lt_prog_compiler_wl, $1) pic_flag=$_LT_TAGVAR(lt_prog_compiler_pic, $1) compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$_LT_TAGVAR(allow_undefined_flag, $1) _LT_TAGVAR(allow_undefined_flag, $1)= if AC_TRY_EVAL(_LT_TAGVAR(archive_cmds, $1) 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) then _LT_TAGVAR(archive_cmds_need_lc, $1)=no else _LT_TAGVAR(archive_cmds_need_lc, $1)=yes fi _LT_TAGVAR(allow_undefined_flag, $1)=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $RM conftest* AC_MSG_RESULT([$_LT_TAGVAR(archive_cmds_need_lc, $1)]) ;; esac fi ;; esac _LT_TAGDECL([build_libtool_need_lc], [archive_cmds_need_lc], [0], [Whether or not to add -lc for building shared libraries]) _LT_TAGDECL([allow_libtool_libs_with_static_runtimes], [enable_shared_with_static_runtimes], [0], [Whether or not to disallow shared libs when runtime libs are static]) _LT_TAGDECL([], [export_dynamic_flag_spec], [1], [Compiler flag to allow reflexive dlopens]) _LT_TAGDECL([], [whole_archive_flag_spec], [1], [Compiler flag to generate shared objects directly from archives]) _LT_TAGDECL([], [compiler_needs_object], [1], [Whether the compiler copes with passing no objects directly]) _LT_TAGDECL([], [old_archive_from_new_cmds], [2], [Create an old-style archive from a shared archive]) _LT_TAGDECL([], [old_archive_from_expsyms_cmds], [2], [Create a temporary old-style archive to link instead of a shared archive]) _LT_TAGDECL([], [archive_cmds], [2], [Commands used to build a shared archive]) _LT_TAGDECL([], [archive_expsym_cmds], [2]) _LT_TAGDECL([], [module_cmds], [2], [Commands used to build a loadable module if different from building a shared archive.]) _LT_TAGDECL([], [module_expsym_cmds], [2]) _LT_TAGDECL([], [with_gnu_ld], [1], [Whether we are building with GNU ld or not]) _LT_TAGDECL([], [allow_undefined_flag], [1], [Flag that allows shared libraries with undefined symbols to be built]) _LT_TAGDECL([], [no_undefined_flag], [1], [Flag that enforces no undefined symbols]) _LT_TAGDECL([], [hardcode_libdir_flag_spec], [1], [Flag to hardcode $libdir into a binary during linking. This must work even if $libdir does not exist]) _LT_TAGDECL([], [hardcode_libdir_flag_spec_ld], [1], [[If ld is used when linking, flag to hardcode $libdir into a binary during linking. This must work even if $libdir does not exist]]) _LT_TAGDECL([], [hardcode_libdir_separator], [1], [Whether we need a single "-rpath" flag with a separated argument]) _LT_TAGDECL([], [hardcode_direct], [0], [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_direct_absolute], [0], [Set to "yes" if using DIR/libNAME${shared_ext} during linking hardcodes DIR into the resulting binary and the resulting library dependency is "absolute", i.e impossible to change by setting ${shlibpath_var} if the library is relocated]) _LT_TAGDECL([], [hardcode_minus_L], [0], [Set to "yes" if using the -LDIR flag during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_shlibpath_var], [0], [Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR into the resulting binary]) _LT_TAGDECL([], [hardcode_automatic], [0], [Set to "yes" if building a shared library automatically hardcodes DIR into the library and all subsequent libraries and executables linked against it]) _LT_TAGDECL([], [inherit_rpath], [0], [Set to yes if linker adds runtime paths of dependent libraries to runtime path list]) _LT_TAGDECL([], [link_all_deplibs], [0], [Whether libtool must link a program against all its dependency libraries]) _LT_TAGDECL([], [fix_srcfile_path], [1], [Fix the shell variable $srcfile for the compiler]) _LT_TAGDECL([], [always_export_symbols], [0], [Set to "yes" if exported symbols are required]) _LT_TAGDECL([], [export_symbols_cmds], [2], [The commands to list exported symbols]) _LT_TAGDECL([], [exclude_expsyms], [1], [Symbols that should not be listed in the preloaded symbols]) _LT_TAGDECL([], [include_expsyms], [1], [Symbols that must always be exported]) _LT_TAGDECL([], [prelink_cmds], [2], [Commands necessary for linking programs (against libraries) with templates]) _LT_TAGDECL([], [file_list_spec], [1], [Specify filename containing input files]) dnl FIXME: Not yet implemented dnl _LT_TAGDECL([], [thread_safe_flag_spec], [1], dnl [Compiler flag to generate thread safe objects]) ])# _LT_LINKER_SHLIBS # _LT_LANG_C_CONFIG([TAG]) # ------------------------ # Ensure that the configuration variables for a C compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write # the compiler configuration to `libtool'. m4_defun([_LT_LANG_C_CONFIG], [m4_require([_LT_DECL_EGREP])dnl lt_save_CC="$CC" AC_LANG_PUSH(C) # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}' _LT_TAG_COMPILER # Save the default compiler, since it gets overwritten when the other # tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. compiler_DEFAULT=$CC # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) LT_SYS_DLOPEN_SELF _LT_CMD_STRIPLIB # Report which library types will actually be built AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_CONFIG($1) fi AC_LANG_POP CC="$lt_save_CC" ])# _LT_LANG_C_CONFIG # _LT_PROG_CXX # ------------ # Since AC_PROG_CXX is broken, in that it returns g++ if there is no c++ # compiler, we have our own version here. m4_defun([_LT_PROG_CXX], [ pushdef([AC_MSG_ERROR], [_lt_caught_CXX_error=yes]) AC_PROG_CXX if test -n "$CXX" && ( test "X$CXX" != "Xno" && ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || (test "X$CXX" != "Xg++"))) ; then AC_PROG_CXXCPP else _lt_caught_CXX_error=yes fi popdef([AC_MSG_ERROR]) ])# _LT_PROG_CXX dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([_LT_PROG_CXX], []) # _LT_LANG_CXX_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for a C++ compiler are suitably # defined. These variables are subsequently used by _LT_CONFIG to write # the compiler configuration to `libtool'. m4_defun([_LT_LANG_CXX_CONFIG], [AC_REQUIRE([_LT_PROG_CXX])dnl m4_require([_LT_FILEUTILS_DEFAULTS])dnl m4_require([_LT_DECL_EGREP])dnl AC_LANG_PUSH(C++) _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(compiler_needs_object, $1)=no _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=unsupported _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for C++ test sources. ac_ext=cpp # Object file extension for compiled C++ test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the CXX compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test "$_lt_caught_CXX_error" != yes; then # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(int, char *[[]]) { return(0); }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_LD=$LD lt_save_GCC=$GCC GCC=$GXX lt_save_with_gnu_ld=$with_gnu_ld lt_save_path_LD=$lt_cv_path_LD if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx else $as_unset lt_cv_prog_gnu_ld fi if test -n "${lt_cv_path_LDCXX+set}"; then lt_cv_path_LD=$lt_cv_path_LDCXX else $as_unset lt_cv_path_LD fi test -z "${LDCXX+set}" || LD=$LDCXX CC=${CXX-"c++"} compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) if test -n "$compiler"; then # We don't want -fno-exception when compiling C++ code, so set the # no_builtin_flag separately if test "$GXX" = yes; then _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)=' -fno-builtin' else _LT_TAGVAR(lt_prog_compiler_no_builtin_flag, $1)= fi if test "$GXX" = yes; then # Set up default GNU C++ configuration LT_PATH_LD # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. if test "$with_gnu_ld" = yes; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) wlarc='${wl}' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | $GREP 'no-whole-archive' > /dev/null; then _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else _LT_TAGVAR(whole_archive_flag_spec, $1)= fi else with_gnu_ld=no wlarc= # A generic and very simple default shared library creation # command for GNU C++ for the case where it uses the native # linker, instead of GNU ld. If possible, this setting should # overridden to take advantage of the native linker features on # the platform it is being used on. _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' fi # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"' else GXX=no with_gnu_ld=no wlarc= fi # PORTME: fill in a description of your system's C++ link characteristics AC_MSG_CHECKING([whether the $compiler linker ($LD) supports shared libraries]) _LT_TAGVAR(ld_shlibs, $1)=yes case $host_os in aix3*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aix[[4-9]]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[[23]]|aix4.[[23]].*|aix[[5-9]]*) for ld_flag in $LDFLAGS; do case $ld_flag in *-brtl*) aix_use_runtimelinking=yes break ;; esac done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. _LT_TAGVAR(archive_cmds, $1)='' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(file_list_spec, $1)='${wl}-f,' if test "$GXX" = yes; then case $host_os in aix4.[[012]]|aix4.[[012]].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 _LT_TAGVAR(hardcode_direct, $1)=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking _LT_TAGVAR(hardcode_minus_L, $1)=yes _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)= fi esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to # export. _LT_TAGVAR(always_export_symbols, $1)=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. _LT_TAGVAR(allow_undefined_flag, $1)='-berok' # Determine the default libpath from the value encoded in an empty # executable. _LT_SYS_MODULE_PATH_AIX _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then $ECHO "X${wl}${allow_undefined_flag}" | $Xsed; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $libdir:/usr/lib:/lib' _LT_TAGVAR(allow_undefined_flag, $1)="-z nodefs" _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. _LT_SYS_MODULE_PATH_AIX _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-bernotok' _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-berok' # Exported symbols can be pulled into shared objects from archives _LT_TAGVAR(whole_archive_flag_spec, $1)='$convenience' _LT_TAGVAR(archive_cmds_need_lc, $1)=yes # This is similar to how AIX traditionally builds its shared # libraries. _LT_TAGVAR(archive_expsym_cmds, $1)="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then _LT_TAGVAR(allow_undefined_flag, $1)=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME _LT_TAGVAR(archive_cmds, $1)='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; chorus*) case $cc_basename in *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; cygwin* | mingw* | pw32* | cegcc*) # _LT_TAGVAR(hardcode_libdir_flag_spec, $1) is actually meaningless, # as there is no search path for DLLs. _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-L$libdir' _LT_TAGVAR(allow_undefined_flag, $1)=unsupported _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=yes if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... _LT_TAGVAR(archive_expsym_cmds, $1)='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; darwin* | rhapsody*) _LT_DARWIN_LINKER_FEATURES($1) ;; dgux*) case $cc_basename in ec++*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; ghcx*) # Green Hills C++ Compiler # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; freebsd[[12]]*) # C++ shared libraries reported to be fairly broken before # switch to ELF _LT_TAGVAR(ld_shlibs, $1)=no ;; freebsd-elf*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; freebsd* | dragonfly*) # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF # conventions _LT_TAGVAR(ld_shlibs, $1)=yes ;; gnu*) ;; hpux9*) _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aCC*) _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' ;; *) if test "$GXX" = yes; then _LT_TAGVAR(archive_cmds, $1)='$RM $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; hpux10*|hpux11*) if test $with_gnu_ld = no; then _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}+b ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: case $host_cpu in hppa*64*|ia64*) ;; *) _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' ;; esac fi case $host_cpu in hppa*64*|ia64*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no ;; *) _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(hardcode_minus_L, $1)=yes # Not in the search PATH, # but as the default # location of the library. ;; esac case $cc_basename in CC*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; aCC*) case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' ;; *) if test "$GXX" = yes; then if test $with_gnu_ld = no; then case $host_cpu in hppa*64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; interix[[3-9]]*) _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ _LT_TAGVAR(archive_cmds, $1)='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) if test "$GXX" = yes; then if test "$with_gnu_ld" = no; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` -o $lib' fi fi _LT_TAGVAR(link_all_deplibs, $1)=yes ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: _LT_TAGVAR(inherit_rpath, $1)=yes ;; linux* | k*bsd*-gnu | kopensolaris*-gnu) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; icpc* | ecpc* ) # Intel C++ with_gnu_ld=yes # version 8.0 and above of icpc choke on multiply defined symbols # if we add $predep_objects and $postdep_objects, however 7.1 and # earlier do not add the objects themselves. case `$CC -V 2>&1` in *"Version 7."*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac _LT_TAGVAR(archive_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; esac _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive$convenience ${wl}--no-whole-archive' ;; pgCC* | pgcpp*) # Portland Group C++ compiler case `$CC -V` in *pgCC\ [[1-5]]* | *pgcpp\ [[1-5]]*) _LT_TAGVAR(prelink_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ compile_command="$compile_command `find $tpldir -name \*.o | $NL2SP`"' _LT_TAGVAR(old_archive_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | $NL2SP`~ $RANLIB $oldlib' _LT_TAGVAR(archive_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' ;; *) # Version 6 will use weak symbols _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}--rpath ${wl}$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' ;; cxx*) # Compaq C++ _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`$ECHO "X$templist" | $Xsed -e "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' ;; xl*) # IBM XL 8.0 on PPC, with GNU ld _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}--export-dynamic' _LT_TAGVAR(archive_cmds, $1)='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test "x$supports_anon_versioning" = xyes; then _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' _LT_TAGVAR(compiler_needs_object, $1)=yes # Not sure whether something based on # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 # would be better. output_verbose_link_cmd='echo' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; esac ;; esac ;; lynxos*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; m88k*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; mvs*) case $cc_basename in cxx*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then _LT_TAGVAR(archive_cmds, $1)='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no fi # Workaround some broken pre-1.5 toolchains output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' ;; *nto* | *qnx*) _LT_TAGVAR(ld_shlibs, $1)=yes ;; openbsd2*) # C++ shared libraries are fairly broken _LT_TAGVAR(ld_shlibs, $1)=no ;; openbsd*) if test -f /usr/libexec/ld.so; then _LT_TAGVAR(hardcode_direct, $1)=yes _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=yes _LT_TAGVAR(archive_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-E' _LT_TAGVAR(whole_archive_flag_spec, $1)="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' fi output_verbose_link_cmd=echo else _LT_TAGVAR(ld_shlibs, $1)=no fi ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. _LT_TAGVAR(archive_cmds, $1)='tempext=`echo $shared_ext | $SED -e '\''s/\([[^()0-9A-Za-z{}]]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Archives containing C++ object files must be created using # the KAI C++ compiler. case $host in osf3*) _LT_TAGVAR(old_archive_cmds, $1)='$CC -Bstatic -o $oldlib $oldobjs' ;; *) _LT_TAGVAR(old_archive_cmds, $1)='$CC -o $oldlib $oldobjs' ;; esac ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; cxx*) case $host in osf3*) _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && $ECHO "X${wl}-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' ;; *) _LT_TAGVAR(allow_undefined_flag, $1)=' -expect_unresolved \*' _LT_TAGVAR(archive_cmds, $1)='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ echo "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib~ $RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-rpath $libdir' ;; esac _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`$ECHO "X$templist" | $Xsed -e "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' ;; *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then _LT_TAGVAR(allow_undefined_flag, $1)=' ${wl}-expect_unresolved ${wl}\*' case $host in osf3*) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ;; esac _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-rpath ${wl}$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"' else # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no fi ;; esac ;; psos*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; lcc*) # Lucid # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; solaris*) case $cc_basename in CC*) # Sun C++ 4.2, 5.x and Centerline C++ _LT_TAGVAR(archive_cmds_need_lc,$1)=yes _LT_TAGVAR(no_undefined_flag, $1)=' -zdefs' _LT_TAGVAR(archive_cmds, $1)='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='-R$libdir' _LT_TAGVAR(hardcode_shlibpath_var, $1)=no case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. # Supported since Solaris 2.6 (maybe 2.5.1?) _LT_TAGVAR(whole_archive_flag_spec, $1)='-z allextract$convenience -z defaultextract' ;; esac _LT_TAGVAR(link_all_deplibs, $1)=yes output_verbose_link_cmd='echo' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC -xar -o $oldlib $oldobjs' ;; gcx*) # Green Hills C++ Compiler _LT_TAGVAR(archive_cmds, $1)='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. _LT_TAGVAR(old_archive_cmds, $1)='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker if test "$GXX" = yes && test "$with_gnu_ld" = no; then _LT_TAGVAR(no_undefined_flag, $1)=' ${wl}-z ${wl}defs' if $CC --version | $GREP -v '^2\.7' > /dev/null; then _LT_TAGVAR(archive_cmds, $1)='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"' else # g++ 2.7 appears to require `-G' NOT `-shared' on this # platform. _LT_TAGVAR(archive_cmds, $1)='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' _LT_TAGVAR(archive_expsym_cmds, $1)='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"' fi _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R $wl$libdir' case $host_os in solaris2.[[0-5]] | solaris2.[[0-5]].*) ;; *) _LT_TAGVAR(whole_archive_flag_spec, $1)='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' ;; esac fi ;; esac ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[[01]].[[10]]* | unixware7* | sco3.2v5.0.[[024]]*) _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. _LT_TAGVAR(no_undefined_flag, $1)='${wl}-z,text' _LT_TAGVAR(allow_undefined_flag, $1)='${wl}-z,nodefs' _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(hardcode_shlibpath_var, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)='${wl}-R,$libdir' _LT_TAGVAR(hardcode_libdir_separator, $1)=':' _LT_TAGVAR(link_all_deplibs, $1)=yes _LT_TAGVAR(export_dynamic_flag_spec, $1)='${wl}-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) _LT_TAGVAR(archive_cmds, $1)='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) _LT_TAGVAR(archive_cmds, $1)='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' _LT_TAGVAR(archive_expsym_cmds, $1)='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac ;; vxworks*) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; *) # FIXME: insert proper C++ library support _LT_TAGVAR(ld_shlibs, $1)=no ;; esac AC_MSG_RESULT([$_LT_TAGVAR(ld_shlibs, $1)]) test "$_LT_TAGVAR(ld_shlibs, $1)" = no && can_build_shared=no _LT_TAGVAR(GCC, $1)="$GXX" _LT_TAGVAR(LD, $1)="$LD" ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_SYS_HIDDEN_LIBDEPS($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" CC=$lt_save_CC LDCXX=$LD LD=$lt_save_LD GCC=$lt_save_GCC with_gnu_ld=$lt_save_with_gnu_ld lt_cv_path_LDCXX=$lt_cv_path_LD lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld fi # test "$_lt_caught_CXX_error" != yes AC_LANG_POP ])# _LT_LANG_CXX_CONFIG # _LT_SYS_HIDDEN_LIBDEPS([TAGNAME]) # --------------------------------- # Figure out "hidden" library dependencies from verbose # compiler output when linking a shared library. # Parse the compiler output and extract the necessary # objects, libraries and library flags. m4_defun([_LT_SYS_HIDDEN_LIBDEPS], [m4_require([_LT_FILEUTILS_DEFAULTS])dnl # Dependencies to place before and after the object being linked: _LT_TAGVAR(predep_objects, $1)= _LT_TAGVAR(postdep_objects, $1)= _LT_TAGVAR(predeps, $1)= _LT_TAGVAR(postdeps, $1)= _LT_TAGVAR(compiler_lib_search_path, $1)= dnl we can't use the lt_simple_compile_test_code here, dnl because it contains code intended for an executable, dnl not a library. It's possible we should let each dnl tag define a new lt_????_link_test_code variable, dnl but it's only used here... m4_if([$1], [], [cat > conftest.$ac_ext <<_LT_EOF int a; void foo (void) { a = 0; } _LT_EOF ], [$1], [CXX], [cat > conftest.$ac_ext <<_LT_EOF class Foo { public: Foo (void) { a = 0; } private: int a; }; _LT_EOF ], [$1], [F77], [cat > conftest.$ac_ext <<_LT_EOF subroutine foo implicit none integer*4 a a=0 return end _LT_EOF ], [$1], [FC], [cat > conftest.$ac_ext <<_LT_EOF subroutine foo implicit none integer a a=0 return end _LT_EOF ], [$1], [GCJ], [cat > conftest.$ac_ext <<_LT_EOF public class foo { private int a; public void bar (void) { a = 0; } }; _LT_EOF ]) dnl Parse the compiler output and extract the necessary dnl objects, libraries and library flags. if AC_TRY_EVAL(ac_compile); then # Parse the compiler output and extract the necessary # objects, libraries and library flags. # Sentinel used to keep track of whether or not we are before # the conftest object file. pre_test_object_deps_done=no for p in `eval "$output_verbose_link_cmd"`; do case $p in -L* | -R* | -l*) # Some compilers place space between "-{L,R}" and the path. # Remove the space. if test $p = "-L" || test $p = "-R"; then prev=$p continue else prev= fi if test "$pre_test_object_deps_done" = no; then case $p in -L* | -R*) # Internal compiler library paths should come after those # provided the user. The postdeps already come after the # user supplied libs so there is no need to process them. if test -z "$_LT_TAGVAR(compiler_lib_search_path, $1)"; then _LT_TAGVAR(compiler_lib_search_path, $1)="${prev}${p}" else _LT_TAGVAR(compiler_lib_search_path, $1)="${_LT_TAGVAR(compiler_lib_search_path, $1)} ${prev}${p}" fi ;; # The "-l" case would never come before the object being # linked, so don't bother handling this case. esac else if test -z "$_LT_TAGVAR(postdeps, $1)"; then _LT_TAGVAR(postdeps, $1)="${prev}${p}" else _LT_TAGVAR(postdeps, $1)="${_LT_TAGVAR(postdeps, $1)} ${prev}${p}" fi fi ;; *.$objext) # This assumes that the test object file only shows up # once in the compiler output. if test "$p" = "conftest.$objext"; then pre_test_object_deps_done=yes continue fi if test "$pre_test_object_deps_done" = no; then if test -z "$_LT_TAGVAR(predep_objects, $1)"; then _LT_TAGVAR(predep_objects, $1)="$p" else _LT_TAGVAR(predep_objects, $1)="$_LT_TAGVAR(predep_objects, $1) $p" fi else if test -z "$_LT_TAGVAR(postdep_objects, $1)"; then _LT_TAGVAR(postdep_objects, $1)="$p" else _LT_TAGVAR(postdep_objects, $1)="$_LT_TAGVAR(postdep_objects, $1) $p" fi fi ;; *) ;; # Ignore the rest. esac done # Clean up. rm -f a.out a.exe else echo "libtool.m4: error: problem compiling $1 test program" fi $RM -f confest.$objext # PORTME: override above test on systems where it is broken m4_if([$1], [CXX], [case $host_os in interix[[3-9]]*) # Interix 3.5 installs completely hosed .la files for C++, so rather than # hack all around it, let's just trust "g++" to DTRT. _LT_TAGVAR(predep_objects,$1)= _LT_TAGVAR(postdep_objects,$1)= _LT_TAGVAR(postdeps,$1)= ;; linux*) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 # The more standards-conforming stlport4 library is # incompatible with the Cstd library. Avoid specifying # it if it's in CXXFLAGS. Ignore libCrun as # -library=stlport4 depends on it. case " $CXX $CXXFLAGS " in *" -library=stlport4 "*) solaris_use_stlport4=yes ;; esac if test "$solaris_use_stlport4" != yes; then _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' fi ;; esac ;; solaris*) case $cc_basename in CC*) # The more standards-conforming stlport4 library is # incompatible with the Cstd library. Avoid specifying # it if it's in CXXFLAGS. Ignore libCrun as # -library=stlport4 depends on it. case " $CXX $CXXFLAGS " in *" -library=stlport4 "*) solaris_use_stlport4=yes ;; esac # Adding this requires a known-good setup of shared libraries for # Sun compiler versions before 5.6, else PIC objects from an old # archive will be linked into the output, leading to subtle bugs. if test "$solaris_use_stlport4" != yes; then _LT_TAGVAR(postdeps,$1)='-library=Cstd -library=Crun' fi ;; esac ;; esac ]) case " $_LT_TAGVAR(postdeps, $1) " in *" -lc "*) _LT_TAGVAR(archive_cmds_need_lc, $1)=no ;; esac _LT_TAGVAR(compiler_lib_search_dirs, $1)= if test -n "${_LT_TAGVAR(compiler_lib_search_path, $1)}"; then _LT_TAGVAR(compiler_lib_search_dirs, $1)=`echo " ${_LT_TAGVAR(compiler_lib_search_path, $1)}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` fi _LT_TAGDECL([], [compiler_lib_search_dirs], [1], [The directories searched by this compiler when creating a shared library]) _LT_TAGDECL([], [predep_objects], [1], [Dependencies to place before and after the objects being linked to create a shared library]) _LT_TAGDECL([], [postdep_objects], [1]) _LT_TAGDECL([], [predeps], [1]) _LT_TAGDECL([], [postdeps], [1]) _LT_TAGDECL([], [compiler_lib_search_path], [1], [The library search path used internally by the compiler when linking a shared library]) ])# _LT_SYS_HIDDEN_LIBDEPS # _LT_PROG_F77 # ------------ # Since AC_PROG_F77 is broken, in that it returns the empty string # if there is no fortran compiler, we have our own version here. m4_defun([_LT_PROG_F77], [ pushdef([AC_MSG_ERROR], [_lt_disable_F77=yes]) AC_PROG_F77 if test -z "$F77" || test "X$F77" = "Xno"; then _lt_disable_F77=yes fi popdef([AC_MSG_ERROR]) ])# _LT_PROG_F77 dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([_LT_PROG_F77], []) # _LT_LANG_F77_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for a Fortran 77 compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_F77_CONFIG], [AC_REQUIRE([_LT_PROG_F77])dnl AC_LANG_PUSH(Fortran 77) _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for f77 test sources. ac_ext=f # Object file extension for compiled f77 test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the F77 compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test "$_lt_disable_F77" != yes; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t return end " # Code to be used in simple link tests lt_simple_link_test_code="\ program t end " # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC="$CC" lt_save_GCC=$GCC CC=${F77-"f77"} compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) GCC=$G77 if test -n "$compiler"; then AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_TAGVAR(GCC, $1)="$G77" _LT_TAGVAR(LD, $1)="$LD" ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" GCC=$lt_save_GCC CC="$lt_save_CC" fi # test "$_lt_disable_F77" != yes AC_LANG_POP ])# _LT_LANG_F77_CONFIG # _LT_PROG_FC # ----------- # Since AC_PROG_FC is broken, in that it returns the empty string # if there is no fortran compiler, we have our own version here. m4_defun([_LT_PROG_FC], [ pushdef([AC_MSG_ERROR], [_lt_disable_FC=yes]) AC_PROG_FC if test -z "$FC" || test "X$FC" = "Xno"; then _lt_disable_FC=yes fi popdef([AC_MSG_ERROR]) ])# _LT_PROG_FC dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([_LT_PROG_FC], []) # _LT_LANG_FC_CONFIG([TAG]) # ------------------------- # Ensure that the configuration variables for a Fortran compiler are # suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_FC_CONFIG], [AC_REQUIRE([_LT_PROG_FC])dnl AC_LANG_PUSH(Fortran) _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(allow_undefined_flag, $1)= _LT_TAGVAR(always_export_symbols, $1)=no _LT_TAGVAR(archive_expsym_cmds, $1)= _LT_TAGVAR(export_dynamic_flag_spec, $1)= _LT_TAGVAR(hardcode_direct, $1)=no _LT_TAGVAR(hardcode_direct_absolute, $1)=no _LT_TAGVAR(hardcode_libdir_flag_spec, $1)= _LT_TAGVAR(hardcode_libdir_flag_spec_ld, $1)= _LT_TAGVAR(hardcode_libdir_separator, $1)= _LT_TAGVAR(hardcode_minus_L, $1)=no _LT_TAGVAR(hardcode_automatic, $1)=no _LT_TAGVAR(inherit_rpath, $1)=no _LT_TAGVAR(module_cmds, $1)= _LT_TAGVAR(module_expsym_cmds, $1)= _LT_TAGVAR(link_all_deplibs, $1)=unknown _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds _LT_TAGVAR(no_undefined_flag, $1)= _LT_TAGVAR(whole_archive_flag_spec, $1)= _LT_TAGVAR(enable_shared_with_static_runtimes, $1)=no # Source file extension for fc test sources. ac_ext=${ac_fc_srcext-f} # Object file extension for compiled fc test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # No sense in running all these tests if we already determined that # the FC compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test "$_lt_disable_FC" != yes; then # Code to be used in simple compile tests lt_simple_compile_test_code="\ subroutine t return end " # Code to be used in simple link tests lt_simple_link_test_code="\ program t end " # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC="$CC" lt_save_GCC=$GCC CC=${FC-"f95"} compiler=$CC GCC=$ac_cv_fc_compiler_gnu _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) if test -n "$compiler"; then AC_MSG_CHECKING([if libtool supports shared libraries]) AC_MSG_RESULT([$can_build_shared]) AC_MSG_CHECKING([whether to build shared libraries]) test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[[4-9]]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac AC_MSG_RESULT([$enable_shared]) AC_MSG_CHECKING([whether to build static libraries]) # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes AC_MSG_RESULT([$enable_static]) _LT_TAGVAR(GCC, $1)="$ac_cv_fc_compiler_gnu" _LT_TAGVAR(LD, $1)="$LD" ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... _LT_SYS_HIDDEN_LIBDEPS($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_SYS_DYNAMIC_LINKER($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi # test -n "$compiler" GCC=$lt_save_GCC CC="$lt_save_CC" fi # test "$_lt_disable_FC" != yes AC_LANG_POP ])# _LT_LANG_FC_CONFIG # _LT_LANG_GCJ_CONFIG([TAG]) # -------------------------- # Ensure that the configuration variables for the GNU Java Compiler compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_GCJ_CONFIG], [AC_REQUIRE([LT_PROG_GCJ])dnl AC_LANG_SAVE # Source file extension for Java test sources. ac_ext=java # Object file extension for compiled Java test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="class foo {}" # Code to be used in simple link tests lt_simple_link_test_code='public class conftest { public static void main(String[[]] argv) {}; }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC="$CC" lt_save_GCC=$GCC GCC=yes CC=${GCJ-"gcj"} compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_TAGVAR(LD, $1)="$LD" _LT_CC_BASENAME([$compiler]) # GCJ did not exist at the time GCC didn't implicitly link libc in. _LT_TAGVAR(archive_cmds_need_lc, $1)=no _LT_TAGVAR(old_archive_cmds, $1)=$old_archive_cmds if test -n "$compiler"; then _LT_COMPILER_NO_RTTI($1) _LT_COMPILER_PIC($1) _LT_COMPILER_C_O($1) _LT_COMPILER_FILE_LOCKS($1) _LT_LINKER_SHLIBS($1) _LT_LINKER_HARDCODE_LIBPATH($1) _LT_CONFIG($1) fi AC_LANG_RESTORE GCC=$lt_save_GCC CC="$lt_save_CC" ])# _LT_LANG_GCJ_CONFIG # _LT_LANG_RC_CONFIG([TAG]) # ------------------------- # Ensure that the configuration variables for the Windows resource compiler # are suitably defined. These variables are subsequently used by _LT_CONFIG # to write the compiler configuration to `libtool'. m4_defun([_LT_LANG_RC_CONFIG], [AC_REQUIRE([LT_PROG_RC])dnl AC_LANG_SAVE # Source file extension for RC test sources. ac_ext=rc # Object file extension for compiled RC test sources. objext=o _LT_TAGVAR(objext, $1)=$objext # Code to be used in simple compile tests lt_simple_compile_test_code='sample MENU { MENUITEM "&Soup", 100, CHECKED }' # Code to be used in simple link tests lt_simple_link_test_code="$lt_simple_compile_test_code" # ltmain only uses $CC for tagged configurations so make sure $CC is set. _LT_TAG_COMPILER # save warnings/boilerplate of simple test code _LT_COMPILER_BOILERPLATE _LT_LINKER_BOILERPLATE # Allow CC to be a program name with arguments. lt_save_CC="$CC" lt_save_GCC=$GCC GCC= CC=${RC-"windres"} compiler=$CC _LT_TAGVAR(compiler, $1)=$CC _LT_CC_BASENAME([$compiler]) _LT_TAGVAR(lt_cv_prog_compiler_c_o, $1)=yes if test -n "$compiler"; then : _LT_CONFIG($1) fi GCC=$lt_save_GCC AC_LANG_RESTORE CC="$lt_save_CC" ])# _LT_LANG_RC_CONFIG # LT_PROG_GCJ # ----------- AC_DEFUN([LT_PROG_GCJ], [m4_ifdef([AC_PROG_GCJ], [AC_PROG_GCJ], [m4_ifdef([A][M_PROG_GCJ], [A][M_PROG_GCJ], [AC_CHECK_TOOL(GCJ, gcj,) test "x${GCJFLAGS+set}" = xset || GCJFLAGS="-g -O2" AC_SUBST(GCJFLAGS)])])[]dnl ]) # Old name: AU_ALIAS([LT_AC_PROG_GCJ], [LT_PROG_GCJ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_GCJ], []) # LT_PROG_RC # ---------- AC_DEFUN([LT_PROG_RC], [AC_CHECK_TOOL(RC, windres,) ]) # Old name: AU_ALIAS([LT_AC_PROG_RC], [LT_PROG_RC]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_RC], []) # _LT_DECL_EGREP # -------------- # If we don't have a new enough Autoconf to choose the best grep # available, choose the one first in the user's PATH. m4_defun([_LT_DECL_EGREP], [AC_REQUIRE([AC_PROG_EGREP])dnl AC_REQUIRE([AC_PROG_FGREP])dnl test -z "$GREP" && GREP=grep _LT_DECL([], [GREP], [1], [A grep program that handles long lines]) _LT_DECL([], [EGREP], [1], [An ERE matcher]) _LT_DECL([], [FGREP], [1], [A literal string matcher]) dnl Non-bleeding-edge autoconf doesn't subst GREP, so do it here too AC_SUBST([GREP]) ]) # _LT_DECL_OBJDUMP # -------------- # If we don't have a new enough Autoconf to choose the best objdump # available, choose the one first in the user's PATH. m4_defun([_LT_DECL_OBJDUMP], [AC_CHECK_TOOL(OBJDUMP, objdump, false) test -z "$OBJDUMP" && OBJDUMP=objdump _LT_DECL([], [OBJDUMP], [1], [An object symbol dumper]) AC_SUBST([OBJDUMP]) ]) # _LT_DECL_SED # ------------ # Check for a fully-functional sed program, that truncates # as few characters as possible. Prefer GNU sed if found. m4_defun([_LT_DECL_SED], [AC_PROG_SED test -z "$SED" && SED=sed Xsed="$SED -e 1s/^X//" _LT_DECL([], [SED], [1], [A sed program that does not truncate output]) _LT_DECL([], [Xsed], ["\$SED -e 1s/^X//"], [Sed that helps us avoid accidentally triggering echo(1) options like -n]) ])# _LT_DECL_SED m4_ifndef([AC_PROG_SED], [ # NOTE: This macro has been submitted for inclusion into # # GNU Autoconf as AC_PROG_SED. When it is available in # # a released version of Autoconf we should remove this # # macro and use it instead. # m4_defun([AC_PROG_SED], [AC_MSG_CHECKING([for a sed that does not truncate output]) AC_CACHE_VAL(lt_cv_path_SED, [# Loop through the user's path and test for sed and gsed. # Then use that list of sed's as ones to test for truncation. as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for lt_ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do if $as_executable_p "$as_dir/$lt_ac_prog$ac_exec_ext"; then lt_ac_sed_list="$lt_ac_sed_list $as_dir/$lt_ac_prog$ac_exec_ext" fi done done done IFS=$as_save_IFS lt_ac_max=0 lt_ac_count=0 # Add /usr/xpg4/bin/sed as it is typically found on Solaris # along with /bin/sed that truncates output. for lt_ac_sed in $lt_ac_sed_list /usr/xpg4/bin/sed; do test ! -f $lt_ac_sed && continue cat /dev/null > conftest.in lt_ac_count=0 echo $ECHO_N "0123456789$ECHO_C" >conftest.in # Check for GNU sed and select it if it is found. if "$lt_ac_sed" --version 2>&1 < /dev/null | grep 'GNU' > /dev/null; then lt_cv_path_SED=$lt_ac_sed break fi while true; do cat conftest.in conftest.in >conftest.tmp mv conftest.tmp conftest.in cp conftest.in conftest.nl echo >>conftest.nl $lt_ac_sed -e 's/a$//' < conftest.nl >conftest.out || break cmp -s conftest.out conftest.nl || break # 10000 chars as input seems more than enough test $lt_ac_count -gt 10 && break lt_ac_count=`expr $lt_ac_count + 1` if test $lt_ac_count -gt $lt_ac_max; then lt_ac_max=$lt_ac_count lt_cv_path_SED=$lt_ac_sed fi done done ]) SED=$lt_cv_path_SED AC_SUBST([SED]) AC_MSG_RESULT([$SED]) ])#AC_PROG_SED ])#m4_ifndef # Old name: AU_ALIAS([LT_AC_PROG_SED], [AC_PROG_SED]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([LT_AC_PROG_SED], []) # _LT_CHECK_SHELL_FEATURES # ------------------------ # Find out whether the shell is Bourne or XSI compatible, # or has some other useful features. m4_defun([_LT_CHECK_SHELL_FEATURES], [AC_MSG_CHECKING([whether the shell understands some XSI constructs]) # Try some XSI features xsi_shell=no ( _lt_dummy="a/b/c" test "${_lt_dummy##*/},${_lt_dummy%/*},"${_lt_dummy%"$_lt_dummy"}, \ = c,a/b,, \ && eval 'test $(( 1 + 1 )) -eq 2 \ && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ && xsi_shell=yes AC_MSG_RESULT([$xsi_shell]) _LT_CONFIG_LIBTOOL_INIT([xsi_shell='$xsi_shell']) AC_MSG_CHECKING([whether the shell understands "+="]) lt_shell_append=no ( foo=bar; set foo baz; eval "$[1]+=\$[2]" && test "$foo" = barbaz ) \ >/dev/null 2>&1 \ && lt_shell_append=yes AC_MSG_RESULT([$lt_shell_append]) _LT_CONFIG_LIBTOOL_INIT([lt_shell_append='$lt_shell_append']) if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then lt_unset=unset else lt_unset=false fi _LT_DECL([], [lt_unset], [0], [whether the shell understands "unset"])dnl # test EBCDIC or ASCII case `echo X|tr X '\101'` in A) # ASCII based system # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr lt_SP2NL='tr \040 \012' lt_NL2SP='tr \015\012 \040\040' ;; *) # EBCDIC based system lt_SP2NL='tr \100 \n' lt_NL2SP='tr \r\n \100\100' ;; esac _LT_DECL([SP2NL], [lt_SP2NL], [1], [turn spaces into newlines])dnl _LT_DECL([NL2SP], [lt_NL2SP], [1], [turn newlines into spaces])dnl ])# _LT_CHECK_SHELL_FEATURES # _LT_PROG_XSI_SHELLFNS # --------------------- # Bourne and XSI compatible variants of some useful shell functions. m4_defun([_LT_PROG_XSI_SHELLFNS], [case $xsi_shell in yes) cat << \_LT_EOF >> "$cfgfile" # func_dirname file append nondir_replacement # Compute the dirname of FILE. If nonempty, add APPEND to the result, # otherwise set result to NONDIR_REPLACEMENT. func_dirname () { case ${1} in */*) func_dirname_result="${1%/*}${2}" ;; * ) func_dirname_result="${3}" ;; esac } # func_basename file func_basename () { func_basename_result="${1##*/}" } # func_dirname_and_basename file append nondir_replacement # perform func_basename and func_dirname in a single function # call: # dirname: Compute the dirname of FILE. If nonempty, # add APPEND to the result, otherwise set result # to NONDIR_REPLACEMENT. # value returned in "$func_dirname_result" # basename: Compute filename of FILE. # value retuned in "$func_basename_result" # Implementation must be kept synchronized with func_dirname # and func_basename. For efficiency, we do not delegate to # those functions but instead duplicate the functionality here. func_dirname_and_basename () { case ${1} in */*) func_dirname_result="${1%/*}${2}" ;; * ) func_dirname_result="${3}" ;; esac func_basename_result="${1##*/}" } # func_stripname prefix suffix name # strip PREFIX and SUFFIX off of NAME. # PREFIX and SUFFIX must not contain globbing or regex special # characters, hashes, percent signs, but SUFFIX may contain a leading # dot (in which case that matches only a dot). func_stripname () { # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are # positional parameters, so assign one to ordinary parameter first. func_stripname_result=${3} func_stripname_result=${func_stripname_result#"${1}"} func_stripname_result=${func_stripname_result%"${2}"} } # func_opt_split func_opt_split () { func_opt_split_opt=${1%%=*} func_opt_split_arg=${1#*=} } # func_lo2o object func_lo2o () { case ${1} in *.lo) func_lo2o_result=${1%.lo}.${objext} ;; *) func_lo2o_result=${1} ;; esac } # func_xform libobj-or-source func_xform () { func_xform_result=${1%.*}.lo } # func_arith arithmetic-term... func_arith () { func_arith_result=$(( $[*] )) } # func_len string # STRING may not start with a hyphen. func_len () { func_len_result=${#1} } _LT_EOF ;; *) # Bourne compatible functions. cat << \_LT_EOF >> "$cfgfile" # func_dirname file append nondir_replacement # Compute the dirname of FILE. If nonempty, add APPEND to the result, # otherwise set result to NONDIR_REPLACEMENT. func_dirname () { # Extract subdirectory from the argument. func_dirname_result=`$ECHO "X${1}" | $Xsed -e "$dirname"` if test "X$func_dirname_result" = "X${1}"; then func_dirname_result="${3}" else func_dirname_result="$func_dirname_result${2}" fi } # func_basename file func_basename () { func_basename_result=`$ECHO "X${1}" | $Xsed -e "$basename"` } dnl func_dirname_and_basename dnl A portable version of this function is already defined in general.m4sh dnl so there is no need for it here. # func_stripname prefix suffix name # strip PREFIX and SUFFIX off of NAME. # PREFIX and SUFFIX must not contain globbing or regex special # characters, hashes, percent signs, but SUFFIX may contain a leading # dot (in which case that matches only a dot). # func_strip_suffix prefix name func_stripname () { case ${2} in .*) func_stripname_result=`$ECHO "X${3}" \ | $Xsed -e "s%^${1}%%" -e "s%\\\\${2}\$%%"`;; *) func_stripname_result=`$ECHO "X${3}" \ | $Xsed -e "s%^${1}%%" -e "s%${2}\$%%"`;; esac } # sed scripts: my_sed_long_opt='1s/^\(-[[^=]]*\)=.*/\1/;q' my_sed_long_arg='1s/^-[[^=]]*=//' # func_opt_split func_opt_split () { func_opt_split_opt=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_opt"` func_opt_split_arg=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_arg"` } # func_lo2o object func_lo2o () { func_lo2o_result=`$ECHO "X${1}" | $Xsed -e "$lo2o"` } # func_xform libobj-or-source func_xform () { func_xform_result=`$ECHO "X${1}" | $Xsed -e 's/\.[[^.]]*$/.lo/'` } # func_arith arithmetic-term... func_arith () { func_arith_result=`expr "$[@]"` } # func_len string # STRING may not start with a hyphen. func_len () { func_len_result=`expr "$[1]" : ".*" 2>/dev/null || echo $max_cmd_len` } _LT_EOF esac case $lt_shell_append in yes) cat << \_LT_EOF >> "$cfgfile" # func_append var value # Append VALUE to the end of shell variable VAR. func_append () { eval "$[1]+=\$[2]" } _LT_EOF ;; *) cat << \_LT_EOF >> "$cfgfile" # func_append var value # Append VALUE to the end of shell variable VAR. func_append () { eval "$[1]=\$$[1]\$[2]" } _LT_EOF ;; esac ]) # Helper functions for option handling. -*- Autoconf -*- # # Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc. # Written by Gary V. Vaughan, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # serial 6 ltoptions.m4 # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTOPTIONS_VERSION], [m4_if([1])]) # _LT_MANGLE_OPTION(MACRO-NAME, OPTION-NAME) # ------------------------------------------ m4_define([_LT_MANGLE_OPTION], [[_LT_OPTION_]m4_bpatsubst($1__$2, [[^a-zA-Z0-9_]], [_])]) # _LT_SET_OPTION(MACRO-NAME, OPTION-NAME) # --------------------------------------- # Set option OPTION-NAME for macro MACRO-NAME, and if there is a # matching handler defined, dispatch to it. Other OPTION-NAMEs are # saved as a flag. m4_define([_LT_SET_OPTION], [m4_define(_LT_MANGLE_OPTION([$1], [$2]))dnl m4_ifdef(_LT_MANGLE_DEFUN([$1], [$2]), _LT_MANGLE_DEFUN([$1], [$2]), [m4_warning([Unknown $1 option `$2'])])[]dnl ]) # _LT_IF_OPTION(MACRO-NAME, OPTION-NAME, IF-SET, [IF-NOT-SET]) # ------------------------------------------------------------ # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. m4_define([_LT_IF_OPTION], [m4_ifdef(_LT_MANGLE_OPTION([$1], [$2]), [$3], [$4])]) # _LT_UNLESS_OPTIONS(MACRO-NAME, OPTION-LIST, IF-NOT-SET) # ------------------------------------------------------- # Execute IF-NOT-SET unless all options in OPTION-LIST for MACRO-NAME # are set. m4_define([_LT_UNLESS_OPTIONS], [m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), [m4_ifdef(_LT_MANGLE_OPTION([$1], _LT_Option), [m4_define([$0_found])])])[]dnl m4_ifdef([$0_found], [m4_undefine([$0_found])], [$3 ])[]dnl ]) # _LT_SET_OPTIONS(MACRO-NAME, OPTION-LIST) # ---------------------------------------- # OPTION-LIST is a space-separated list of Libtool options associated # with MACRO-NAME. If any OPTION has a matching handler declared with # LT_OPTION_DEFINE, dispatch to that macro; otherwise complain about # the unknown option and exit. m4_defun([_LT_SET_OPTIONS], [# Set options m4_foreach([_LT_Option], m4_split(m4_normalize([$2])), [_LT_SET_OPTION([$1], _LT_Option)]) m4_if([$1],[LT_INIT],[ dnl dnl Simply set some default values (i.e off) if boolean options were not dnl specified: _LT_UNLESS_OPTIONS([LT_INIT], [dlopen], [enable_dlopen=no ]) _LT_UNLESS_OPTIONS([LT_INIT], [win32-dll], [enable_win32_dll=no ]) dnl dnl If no reference was made to various pairs of opposing options, then dnl we run the default mode handler for the pair. For example, if neither dnl `shared' nor `disable-shared' was passed, we enable building of shared dnl archives by default: _LT_UNLESS_OPTIONS([LT_INIT], [shared disable-shared], [_LT_ENABLE_SHARED]) _LT_UNLESS_OPTIONS([LT_INIT], [static disable-static], [_LT_ENABLE_STATIC]) _LT_UNLESS_OPTIONS([LT_INIT], [pic-only no-pic], [_LT_WITH_PIC]) _LT_UNLESS_OPTIONS([LT_INIT], [fast-install disable-fast-install], [_LT_ENABLE_FAST_INSTALL]) ]) ])# _LT_SET_OPTIONS # _LT_MANGLE_DEFUN(MACRO-NAME, OPTION-NAME) # ----------------------------------------- m4_define([_LT_MANGLE_DEFUN], [[_LT_OPTION_DEFUN_]m4_bpatsubst(m4_toupper([$1__$2]), [[^A-Z0-9_]], [_])]) # LT_OPTION_DEFINE(MACRO-NAME, OPTION-NAME, CODE) # ----------------------------------------------- m4_define([LT_OPTION_DEFINE], [m4_define(_LT_MANGLE_DEFUN([$1], [$2]), [$3])[]dnl ])# LT_OPTION_DEFINE # dlopen # ------ LT_OPTION_DEFINE([LT_INIT], [dlopen], [enable_dlopen=yes ]) AU_DEFUN([AC_LIBTOOL_DLOPEN], [_LT_SET_OPTION([LT_INIT], [dlopen]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `dlopen' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_DLOPEN], []) # win32-dll # --------- # Declare package support for building win32 dll's. LT_OPTION_DEFINE([LT_INIT], [win32-dll], [enable_win32_dll=yes case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-cegcc*) AC_CHECK_TOOL(AS, as, false) AC_CHECK_TOOL(DLLTOOL, dlltool, false) AC_CHECK_TOOL(OBJDUMP, objdump, false) ;; esac test -z "$AS" && AS=as _LT_DECL([], [AS], [0], [Assembler program])dnl test -z "$DLLTOOL" && DLLTOOL=dlltool _LT_DECL([], [DLLTOOL], [0], [DLL creation program])dnl test -z "$OBJDUMP" && OBJDUMP=objdump _LT_DECL([], [OBJDUMP], [0], [Object dumper program])dnl ])# win32-dll AU_DEFUN([AC_LIBTOOL_WIN32_DLL], [AC_REQUIRE([AC_CANONICAL_HOST])dnl _LT_SET_OPTION([LT_INIT], [win32-dll]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `win32-dll' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_WIN32_DLL], []) # _LT_ENABLE_SHARED([DEFAULT]) # ---------------------------- # implement the --enable-shared flag, and supports the `shared' and # `disable-shared' LT_INIT options. # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. m4_define([_LT_ENABLE_SHARED], [m4_define([_LT_ENABLE_SHARED_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([shared], [AS_HELP_STRING([--enable-shared@<:@=PKGS@:>@], [build shared libraries @<:@default=]_LT_ENABLE_SHARED_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_shared=]_LT_ENABLE_SHARED_DEFAULT) _LT_DECL([build_libtool_libs], [enable_shared], [0], [Whether or not to build shared libraries]) ])# _LT_ENABLE_SHARED LT_OPTION_DEFINE([LT_INIT], [shared], [_LT_ENABLE_SHARED([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-shared], [_LT_ENABLE_SHARED([no])]) # Old names: AC_DEFUN([AC_ENABLE_SHARED], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[shared]) ]) AC_DEFUN([AC_DISABLE_SHARED], [_LT_SET_OPTION([LT_INIT], [disable-shared]) ]) AU_DEFUN([AM_ENABLE_SHARED], [AC_ENABLE_SHARED($@)]) AU_DEFUN([AM_DISABLE_SHARED], [AC_DISABLE_SHARED($@)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_ENABLE_SHARED], []) dnl AC_DEFUN([AM_DISABLE_SHARED], []) # _LT_ENABLE_STATIC([DEFAULT]) # ---------------------------- # implement the --enable-static flag, and support the `static' and # `disable-static' LT_INIT options. # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. m4_define([_LT_ENABLE_STATIC], [m4_define([_LT_ENABLE_STATIC_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([static], [AS_HELP_STRING([--enable-static@<:@=PKGS@:>@], [build static libraries @<:@default=]_LT_ENABLE_STATIC_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_static=]_LT_ENABLE_STATIC_DEFAULT) _LT_DECL([build_old_libs], [enable_static], [0], [Whether or not to build static libraries]) ])# _LT_ENABLE_STATIC LT_OPTION_DEFINE([LT_INIT], [static], [_LT_ENABLE_STATIC([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-static], [_LT_ENABLE_STATIC([no])]) # Old names: AC_DEFUN([AC_ENABLE_STATIC], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[static]) ]) AC_DEFUN([AC_DISABLE_STATIC], [_LT_SET_OPTION([LT_INIT], [disable-static]) ]) AU_DEFUN([AM_ENABLE_STATIC], [AC_ENABLE_STATIC($@)]) AU_DEFUN([AM_DISABLE_STATIC], [AC_DISABLE_STATIC($@)]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AM_ENABLE_STATIC], []) dnl AC_DEFUN([AM_DISABLE_STATIC], []) # _LT_ENABLE_FAST_INSTALL([DEFAULT]) # ---------------------------------- # implement the --enable-fast-install flag, and support the `fast-install' # and `disable-fast-install' LT_INIT options. # DEFAULT is either `yes' or `no'. If omitted, it defaults to `yes'. m4_define([_LT_ENABLE_FAST_INSTALL], [m4_define([_LT_ENABLE_FAST_INSTALL_DEFAULT], [m4_if($1, no, no, yes)])dnl AC_ARG_ENABLE([fast-install], [AS_HELP_STRING([--enable-fast-install@<:@=PKGS@:>@], [optimize for fast installation @<:@default=]_LT_ENABLE_FAST_INSTALL_DEFAULT[@:>@])], [p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS="$lt_save_ifs" ;; esac], [enable_fast_install=]_LT_ENABLE_FAST_INSTALL_DEFAULT) _LT_DECL([fast_install], [enable_fast_install], [0], [Whether or not to optimize for fast installation])dnl ])# _LT_ENABLE_FAST_INSTALL LT_OPTION_DEFINE([LT_INIT], [fast-install], [_LT_ENABLE_FAST_INSTALL([yes])]) LT_OPTION_DEFINE([LT_INIT], [disable-fast-install], [_LT_ENABLE_FAST_INSTALL([no])]) # Old names: AU_DEFUN([AC_ENABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], m4_if([$1], [no], [disable-])[fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `fast-install' option into LT_INIT's first parameter.]) ]) AU_DEFUN([AC_DISABLE_FAST_INSTALL], [_LT_SET_OPTION([LT_INIT], [disable-fast-install]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `disable-fast-install' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_ENABLE_FAST_INSTALL], []) dnl AC_DEFUN([AM_DISABLE_FAST_INSTALL], []) # _LT_WITH_PIC([MODE]) # -------------------- # implement the --with-pic flag, and support the `pic-only' and `no-pic' # LT_INIT options. # MODE is either `yes' or `no'. If omitted, it defaults to `both'. m4_define([_LT_WITH_PIC], [AC_ARG_WITH([pic], [AS_HELP_STRING([--with-pic], [try to use only PIC/non-PIC objects @<:@default=use both@:>@])], [pic_mode="$withval"], [pic_mode=default]) test -z "$pic_mode" && pic_mode=m4_default([$1], [default]) _LT_DECL([], [pic_mode], [0], [What type of objects to build])dnl ])# _LT_WITH_PIC LT_OPTION_DEFINE([LT_INIT], [pic-only], [_LT_WITH_PIC([yes])]) LT_OPTION_DEFINE([LT_INIT], [no-pic], [_LT_WITH_PIC([no])]) # Old name: AU_DEFUN([AC_LIBTOOL_PICMODE], [_LT_SET_OPTION([LT_INIT], [pic-only]) AC_DIAGNOSE([obsolete], [$0: Remove this warning and the call to _LT_SET_OPTION when you put the `pic-only' option into LT_INIT's first parameter.]) ]) dnl aclocal-1.4 backwards compatibility: dnl AC_DEFUN([AC_LIBTOOL_PICMODE], []) m4_define([_LTDL_MODE], []) LT_OPTION_DEFINE([LTDL_INIT], [nonrecursive], [m4_define([_LTDL_MODE], [nonrecursive])]) LT_OPTION_DEFINE([LTDL_INIT], [recursive], [m4_define([_LTDL_MODE], [recursive])]) LT_OPTION_DEFINE([LTDL_INIT], [subproject], [m4_define([_LTDL_MODE], [subproject])]) m4_define([_LTDL_TYPE], []) LT_OPTION_DEFINE([LTDL_INIT], [installable], [m4_define([_LTDL_TYPE], [installable])]) LT_OPTION_DEFINE([LTDL_INIT], [convenience], [m4_define([_LTDL_TYPE], [convenience])]) # ltsugar.m4 -- libtool m4 base layer. -*-Autoconf-*- # # Copyright (C) 2004, 2005, 2007, 2008 Free Software Foundation, Inc. # Written by Gary V. Vaughan, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # serial 6 ltsugar.m4 # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTSUGAR_VERSION], [m4_if([0.1])]) # lt_join(SEP, ARG1, [ARG2...]) # ----------------------------- # Produce ARG1SEPARG2...SEPARGn, omitting [] arguments and their # associated separator. # Needed until we can rely on m4_join from Autoconf 2.62, since all earlier # versions in m4sugar had bugs. m4_define([lt_join], [m4_if([$#], [1], [], [$#], [2], [[$2]], [m4_if([$2], [], [], [[$2]_])$0([$1], m4_shift(m4_shift($@)))])]) m4_define([_lt_join], [m4_if([$#$2], [2], [], [m4_if([$2], [], [], [[$1$2]])$0([$1], m4_shift(m4_shift($@)))])]) # lt_car(LIST) # lt_cdr(LIST) # ------------ # Manipulate m4 lists. # These macros are necessary as long as will still need to support # Autoconf-2.59 which quotes differently. m4_define([lt_car], [[$1]]) m4_define([lt_cdr], [m4_if([$#], 0, [m4_fatal([$0: cannot be called without arguments])], [$#], 1, [], [m4_dquote(m4_shift($@))])]) m4_define([lt_unquote], $1) # lt_append(MACRO-NAME, STRING, [SEPARATOR]) # ------------------------------------------ # Redefine MACRO-NAME to hold its former content plus `SEPARATOR'`STRING'. # Note that neither SEPARATOR nor STRING are expanded; they are appended # to MACRO-NAME as is (leaving the expansion for when MACRO-NAME is invoked). # No SEPARATOR is output if MACRO-NAME was previously undefined (different # than defined and empty). # # This macro is needed until we can rely on Autoconf 2.62, since earlier # versions of m4sugar mistakenly expanded SEPARATOR but not STRING. m4_define([lt_append], [m4_define([$1], m4_ifdef([$1], [m4_defn([$1])[$3]])[$2])]) # lt_combine(SEP, PREFIX-LIST, INFIX, SUFFIX1, [SUFFIX2...]) # ---------------------------------------------------------- # Produce a SEP delimited list of all paired combinations of elements of # PREFIX-LIST with SUFFIX1 through SUFFIXn. Each element of the list # has the form PREFIXmINFIXSUFFIXn. # Needed until we can rely on m4_combine added in Autoconf 2.62. m4_define([lt_combine], [m4_if(m4_eval([$# > 3]), [1], [m4_pushdef([_Lt_sep], [m4_define([_Lt_sep], m4_defn([lt_car]))])]]dnl [[m4_foreach([_Lt_prefix], [$2], [m4_foreach([_Lt_suffix], ]m4_dquote(m4_dquote(m4_shift(m4_shift(m4_shift($@)))))[, [_Lt_sep([$1])[]m4_defn([_Lt_prefix])[$3]m4_defn([_Lt_suffix])])])])]) # lt_if_append_uniq(MACRO-NAME, VARNAME, [SEPARATOR], [UNIQ], [NOT-UNIQ]) # ----------------------------------------------------------------------- # Iff MACRO-NAME does not yet contain VARNAME, then append it (delimited # by SEPARATOR if supplied) and expand UNIQ, else NOT-UNIQ. m4_define([lt_if_append_uniq], [m4_ifdef([$1], [m4_if(m4_index([$3]m4_defn([$1])[$3], [$3$2$3]), [-1], [lt_append([$1], [$2], [$3])$4], [$5])], [lt_append([$1], [$2], [$3])$4])]) # lt_dict_add(DICT, KEY, VALUE) # ----------------------------- m4_define([lt_dict_add], [m4_define([$1($2)], [$3])]) # lt_dict_add_subkey(DICT, KEY, SUBKEY, VALUE) # -------------------------------------------- m4_define([lt_dict_add_subkey], [m4_define([$1($2:$3)], [$4])]) # lt_dict_fetch(DICT, KEY, [SUBKEY]) # ---------------------------------- m4_define([lt_dict_fetch], [m4_ifval([$3], m4_ifdef([$1($2:$3)], [m4_defn([$1($2:$3)])]), m4_ifdef([$1($2)], [m4_defn([$1($2)])]))]) # lt_if_dict_fetch(DICT, KEY, [SUBKEY], VALUE, IF-TRUE, [IF-FALSE]) # ----------------------------------------------------------------- m4_define([lt_if_dict_fetch], [m4_if(lt_dict_fetch([$1], [$2], [$3]), [$4], [$5], [$6])]) # lt_dict_filter(DICT, [SUBKEY], VALUE, [SEPARATOR], KEY, [...]) # -------------------------------------------------------------- m4_define([lt_dict_filter], [m4_if([$5], [], [], [lt_join(m4_quote(m4_default([$4], [[, ]])), lt_unquote(m4_split(m4_normalize(m4_foreach(_Lt_key, lt_car([m4_shiftn(4, $@)]), [lt_if_dict_fetch([$1], _Lt_key, [$2], [$3], [_Lt_key ])])))))])[]dnl ]) # ltversion.m4 -- version numbers -*- Autoconf -*- # # Copyright (C) 2004 Free Software Foundation, Inc. # Written by Scott James Remnant, 2004 # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # Generated from ltversion.in. # serial 3017 ltversion.m4 # This file is part of GNU Libtool m4_define([LT_PACKAGE_VERSION], [2.2.6b]) m4_define([LT_PACKAGE_REVISION], [1.3017]) AC_DEFUN([LTVERSION_VERSION], [macro_version='2.2.6b' macro_revision='1.3017' _LT_DECL(, macro_version, 0, [Which release of libtool.m4 was used?]) _LT_DECL(, macro_revision, 0) ]) # lt~obsolete.m4 -- aclocal satisfying obsolete definitions. -*-Autoconf-*- # # Copyright (C) 2004, 2005, 2007 Free Software Foundation, Inc. # Written by Scott James Remnant, 2004. # # This file is free software; the Free Software Foundation gives # unlimited permission to copy and/or distribute it, with or without # modifications, as long as this notice is preserved. # serial 4 lt~obsolete.m4 # These exist entirely to fool aclocal when bootstrapping libtool. # # In the past libtool.m4 has provided macros via AC_DEFUN (or AU_DEFUN) # which have later been changed to m4_define as they aren't part of the # exported API, or moved to Autoconf or Automake where they belong. # # The trouble is, aclocal is a bit thick. It'll see the old AC_DEFUN # in /usr/share/aclocal/libtool.m4 and remember it, then when it sees us # using a macro with the same name in our local m4/libtool.m4 it'll # pull the old libtool.m4 in (it doesn't see our shiny new m4_define # and doesn't know about Autoconf macros at all.) # # So we provide this file, which has a silly filename so it's always # included after everything else. This provides aclocal with the # AC_DEFUNs it wants, but when m4 processes it, it doesn't do anything # because those macros already exist, or will be overwritten later. # We use AC_DEFUN over AU_DEFUN for compatibility with aclocal-1.6. # # Anytime we withdraw an AC_DEFUN or AU_DEFUN, remember to add it here. # Yes, that means every name once taken will need to remain here until # we give up compatibility with versions before 1.7, at which point # we need to keep only those names which we still refer to. # This is to help aclocal find these macros, as it can't see m4_define. AC_DEFUN([LTOBSOLETE_VERSION], [m4_if([1])]) m4_ifndef([AC_LIBTOOL_LINKER_OPTION], [AC_DEFUN([AC_LIBTOOL_LINKER_OPTION])]) m4_ifndef([AC_PROG_EGREP], [AC_DEFUN([AC_PROG_EGREP])]) m4_ifndef([_LT_AC_PROG_ECHO_BACKSLASH], [AC_DEFUN([_LT_AC_PROG_ECHO_BACKSLASH])]) m4_ifndef([_LT_AC_SHELL_INIT], [AC_DEFUN([_LT_AC_SHELL_INIT])]) m4_ifndef([_LT_AC_SYS_LIBPATH_AIX], [AC_DEFUN([_LT_AC_SYS_LIBPATH_AIX])]) m4_ifndef([_LT_PROG_LTMAIN], [AC_DEFUN([_LT_PROG_LTMAIN])]) m4_ifndef([_LT_AC_TAGVAR], [AC_DEFUN([_LT_AC_TAGVAR])]) m4_ifndef([AC_LTDL_ENABLE_INSTALL], [AC_DEFUN([AC_LTDL_ENABLE_INSTALL])]) m4_ifndef([AC_LTDL_PREOPEN], [AC_DEFUN([AC_LTDL_PREOPEN])]) m4_ifndef([_LT_AC_SYS_COMPILER], [AC_DEFUN([_LT_AC_SYS_COMPILER])]) m4_ifndef([_LT_AC_LOCK], [AC_DEFUN([_LT_AC_LOCK])]) m4_ifndef([AC_LIBTOOL_SYS_OLD_ARCHIVE], [AC_DEFUN([AC_LIBTOOL_SYS_OLD_ARCHIVE])]) m4_ifndef([_LT_AC_TRY_DLOPEN_SELF], [AC_DEFUN([_LT_AC_TRY_DLOPEN_SELF])]) m4_ifndef([AC_LIBTOOL_PROG_CC_C_O], [AC_DEFUN([AC_LIBTOOL_PROG_CC_C_O])]) m4_ifndef([AC_LIBTOOL_SYS_HARD_LINK_LOCKS], [AC_DEFUN([AC_LIBTOOL_SYS_HARD_LINK_LOCKS])]) m4_ifndef([AC_LIBTOOL_OBJDIR], [AC_DEFUN([AC_LIBTOOL_OBJDIR])]) m4_ifndef([AC_LTDL_OBJDIR], [AC_DEFUN([AC_LTDL_OBJDIR])]) m4_ifndef([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH], [AC_DEFUN([AC_LIBTOOL_PROG_LD_HARDCODE_LIBPATH])]) m4_ifndef([AC_LIBTOOL_SYS_LIB_STRIP], [AC_DEFUN([AC_LIBTOOL_SYS_LIB_STRIP])]) m4_ifndef([AC_PATH_MAGIC], [AC_DEFUN([AC_PATH_MAGIC])]) m4_ifndef([AC_PROG_LD_GNU], [AC_DEFUN([AC_PROG_LD_GNU])]) m4_ifndef([AC_PROG_LD_RELOAD_FLAG], [AC_DEFUN([AC_PROG_LD_RELOAD_FLAG])]) m4_ifndef([AC_DEPLIBS_CHECK_METHOD], [AC_DEFUN([AC_DEPLIBS_CHECK_METHOD])]) m4_ifndef([AC_LIBTOOL_PROG_COMPILER_NO_RTTI], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_NO_RTTI])]) m4_ifndef([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE], [AC_DEFUN([AC_LIBTOOL_SYS_GLOBAL_SYMBOL_PIPE])]) m4_ifndef([AC_LIBTOOL_PROG_COMPILER_PIC], [AC_DEFUN([AC_LIBTOOL_PROG_COMPILER_PIC])]) m4_ifndef([AC_LIBTOOL_PROG_LD_SHLIBS], [AC_DEFUN([AC_LIBTOOL_PROG_LD_SHLIBS])]) m4_ifndef([AC_LIBTOOL_POSTDEP_PREDEP], [AC_DEFUN([AC_LIBTOOL_POSTDEP_PREDEP])]) m4_ifndef([LT_AC_PROG_EGREP], [AC_DEFUN([LT_AC_PROG_EGREP])]) m4_ifndef([LT_AC_PROG_SED], [AC_DEFUN([LT_AC_PROG_SED])]) m4_ifndef([_LT_CC_BASENAME], [AC_DEFUN([_LT_CC_BASENAME])]) m4_ifndef([_LT_COMPILER_BOILERPLATE], [AC_DEFUN([_LT_COMPILER_BOILERPLATE])]) m4_ifndef([_LT_LINKER_BOILERPLATE], [AC_DEFUN([_LT_LINKER_BOILERPLATE])]) m4_ifndef([_AC_PROG_LIBTOOL], [AC_DEFUN([_AC_PROG_LIBTOOL])]) m4_ifndef([AC_LIBTOOL_SETUP], [AC_DEFUN([AC_LIBTOOL_SETUP])]) m4_ifndef([_LT_AC_CHECK_DLFCN], [AC_DEFUN([_LT_AC_CHECK_DLFCN])]) m4_ifndef([AC_LIBTOOL_SYS_DYNAMIC_LINKER], [AC_DEFUN([AC_LIBTOOL_SYS_DYNAMIC_LINKER])]) m4_ifndef([_LT_AC_TAGCONFIG], [AC_DEFUN([_LT_AC_TAGCONFIG])]) m4_ifndef([AC_DISABLE_FAST_INSTALL], [AC_DEFUN([AC_DISABLE_FAST_INSTALL])]) m4_ifndef([_LT_AC_LANG_CXX], [AC_DEFUN([_LT_AC_LANG_CXX])]) m4_ifndef([_LT_AC_LANG_F77], [AC_DEFUN([_LT_AC_LANG_F77])]) m4_ifndef([_LT_AC_LANG_GCJ], [AC_DEFUN([_LT_AC_LANG_GCJ])]) m4_ifndef([AC_LIBTOOL_RC], [AC_DEFUN([AC_LIBTOOL_RC])]) m4_ifndef([AC_LIBTOOL_LANG_C_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_C_CONFIG])]) m4_ifndef([_LT_AC_LANG_C_CONFIG], [AC_DEFUN([_LT_AC_LANG_C_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_CXX_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_CXX_CONFIG])]) m4_ifndef([_LT_AC_LANG_CXX_CONFIG], [AC_DEFUN([_LT_AC_LANG_CXX_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_F77_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_F77_CONFIG])]) m4_ifndef([_LT_AC_LANG_F77_CONFIG], [AC_DEFUN([_LT_AC_LANG_F77_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_GCJ_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_GCJ_CONFIG])]) m4_ifndef([_LT_AC_LANG_GCJ_CONFIG], [AC_DEFUN([_LT_AC_LANG_GCJ_CONFIG])]) m4_ifndef([AC_LIBTOOL_LANG_RC_CONFIG], [AC_DEFUN([AC_LIBTOOL_LANG_RC_CONFIG])]) m4_ifndef([_LT_AC_LANG_RC_CONFIG], [AC_DEFUN([_LT_AC_LANG_RC_CONFIG])]) m4_ifndef([AC_LIBTOOL_CONFIG], [AC_DEFUN([AC_LIBTOOL_CONFIG])]) m4_ifndef([_LT_AC_FILE_LTDLL_C], [AC_DEFUN([_LT_AC_FILE_LTDLL_C])]) # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- # serial 1 (pkg-config-0.24) # # Copyright © 2004 Scott James Remnant . # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # PKG_PROG_PKG_CONFIG([MIN-VERSION]) # ---------------------------------- AC_DEFUN([PKG_PROG_PKG_CONFIG], [m4_pattern_forbid([^_?PKG_[A-Z_]+$]) m4_pattern_allow([^PKG_CONFIG(_PATH)?$]) AC_ARG_VAR([PKG_CONFIG], [path to pkg-config utility]) AC_ARG_VAR([PKG_CONFIG_PATH], [directories to add to pkg-config's search path]) AC_ARG_VAR([PKG_CONFIG_LIBDIR], [path overriding pkg-config's built-in search path]) if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then AC_PATH_TOOL([PKG_CONFIG], [pkg-config]) fi if test -n "$PKG_CONFIG"; then _pkg_min_version=m4_default([$1], [0.9.0]) AC_MSG_CHECKING([pkg-config is at least version $_pkg_min_version]) if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then AC_MSG_RESULT([yes]) else AC_MSG_RESULT([no]) PKG_CONFIG="" fi fi[]dnl ])# PKG_PROG_PKG_CONFIG # PKG_CHECK_EXISTS(MODULES, [ACTION-IF-FOUND], [ACTION-IF-NOT-FOUND]) # # Check to see whether a particular set of modules exists. Similar # to PKG_CHECK_MODULES(), but does not set variables or print errors. # # Please remember that m4 expands AC_REQUIRE([PKG_PROG_PKG_CONFIG]) # only at the first occurence in configure.ac, so if the first place # it's called might be skipped (such as if it is within an "if", you # have to call PKG_CHECK_EXISTS manually # -------------------------------------------------------------- AC_DEFUN([PKG_CHECK_EXISTS], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl if test -n "$PKG_CONFIG" && \ AC_RUN_LOG([$PKG_CONFIG --exists --print-errors "$1"]); then m4_default([$2], [:]) m4_ifvaln([$3], [else $3])dnl fi]) # _PKG_CONFIG([VARIABLE], [COMMAND], [MODULES]) # --------------------------------------------- m4_define([_PKG_CONFIG], [if test -n "$$1"; then pkg_cv_[]$1="$$1" elif test -n "$PKG_CONFIG"; then PKG_CHECK_EXISTS([$3], [pkg_cv_[]$1=`$PKG_CONFIG --[]$2 "$3" 2>/dev/null`], [pkg_failed=yes]) else pkg_failed=untried fi[]dnl ])# _PKG_CONFIG # _PKG_SHORT_ERRORS_SUPPORTED # ----------------------------- AC_DEFUN([_PKG_SHORT_ERRORS_SUPPORTED], [AC_REQUIRE([PKG_PROG_PKG_CONFIG]) if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi[]dnl ])# _PKG_SHORT_ERRORS_SUPPORTED # PKG_CHECK_MODULES(VARIABLE-PREFIX, MODULES, [ACTION-IF-FOUND], # [ACTION-IF-NOT-FOUND]) # # # Note that if there is a possibility the first call to # PKG_CHECK_MODULES might not happen, you should be sure to include an # explicit call to PKG_PROG_PKG_CONFIG in your configure.ac # # # -------------------------------------------------------------- AC_DEFUN([PKG_CHECK_MODULES], [AC_REQUIRE([PKG_PROG_PKG_CONFIG])dnl AC_ARG_VAR([$1][_CFLAGS], [C compiler flags for $1, overriding pkg-config])dnl AC_ARG_VAR([$1][_LIBS], [linker flags for $1, overriding pkg-config])dnl pkg_failed=no AC_MSG_CHECKING([for $1]) _PKG_CONFIG([$1][_CFLAGS], [cflags], [$2]) _PKG_CONFIG([$1][_LIBS], [libs], [$2]) m4_define([_PKG_TEXT], [Alternatively, you may set the environment variables $1[]_CFLAGS and $1[]_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details.]) if test $pkg_failed = yes; then AC_MSG_RESULT([no]) _PKG_SHORT_ERRORS_SUPPORTED if test $_pkg_short_errors_supported = yes; then $1[]_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "$2" 2>&1` else $1[]_PKG_ERRORS=`$PKG_CONFIG --print-errors "$2" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$$1[]_PKG_ERRORS" >&AS_MESSAGE_LOG_FD m4_default([$4], [AC_MSG_ERROR( [Package requirements ($2) were not met: $$1_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. _PKG_TEXT])dnl ]) elif test $pkg_failed = untried; then AC_MSG_RESULT([no]) m4_default([$4], [AC_MSG_FAILURE( [The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. _PKG_TEXT To get pkg-config, see .])dnl ]) else $1[]_CFLAGS=$pkg_cv_[]$1[]_CFLAGS $1[]_LIBS=$pkg_cv_[]$1[]_LIBS AC_MSG_RESULT([yes]) $3 fi[]dnl ])# PKG_CHECK_MODULES # Copyright (C) 2002, 2003, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_AUTOMAKE_VERSION(VERSION) # ---------------------------- # Automake X.Y traces this macro to ensure aclocal.m4 has been # generated from the m4 files accompanying Automake X.Y. # (This private macro should not be called outside this file.) AC_DEFUN([AM_AUTOMAKE_VERSION], [am__api_version='1.11' dnl Some users find AM_AUTOMAKE_VERSION and mistake it for a way to dnl require some minimum version. Point them to the right macro. m4_if([$1], [1.11.1], [], [AC_FATAL([Do not call $0, use AM_INIT_AUTOMAKE([$1]).])])dnl ]) # _AM_AUTOCONF_VERSION(VERSION) # ----------------------------- # aclocal traces this macro to find the Autoconf version. # This is a private macro too. Using m4_define simplifies # the logic in aclocal, which can simply ignore this definition. m4_define([_AM_AUTOCONF_VERSION], []) # AM_SET_CURRENT_AUTOMAKE_VERSION # ------------------------------- # Call AM_AUTOMAKE_VERSION and AM_AUTOMAKE_VERSION so they can be traced. # This function is AC_REQUIREd by AM_INIT_AUTOMAKE. AC_DEFUN([AM_SET_CURRENT_AUTOMAKE_VERSION], [AM_AUTOMAKE_VERSION([1.11.1])dnl m4_ifndef([AC_AUTOCONF_VERSION], [m4_copy([m4_PACKAGE_VERSION], [AC_AUTOCONF_VERSION])])dnl _AM_AUTOCONF_VERSION(m4_defn([AC_AUTOCONF_VERSION]))]) # AM_AUX_DIR_EXPAND -*- Autoconf -*- # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # For projects using AC_CONFIG_AUX_DIR([foo]), Autoconf sets # $ac_aux_dir to `$srcdir/foo'. In other projects, it is set to # `$srcdir', `$srcdir/..', or `$srcdir/../..'. # # Of course, Automake must honor this variable whenever it calls a # tool from the auxiliary directory. The problem is that $srcdir (and # therefore $ac_aux_dir as well) can be either absolute or relative, # depending on how configure is run. This is pretty annoying, since # it makes $ac_aux_dir quite unusable in subdirectories: in the top # source directory, any form will work fine, but in subdirectories a # relative path needs to be adjusted first. # # $ac_aux_dir/missing # fails when called from a subdirectory if $ac_aux_dir is relative # $top_srcdir/$ac_aux_dir/missing # fails if $ac_aux_dir is absolute, # fails when called from a subdirectory in a VPATH build with # a relative $ac_aux_dir # # The reason of the latter failure is that $top_srcdir and $ac_aux_dir # are both prefixed by $srcdir. In an in-source build this is usually # harmless because $srcdir is `.', but things will broke when you # start a VPATH build or use an absolute $srcdir. # # So we could use something similar to $top_srcdir/$ac_aux_dir/missing, # iff we strip the leading $srcdir from $ac_aux_dir. That would be: # am_aux_dir='\$(top_srcdir)/'`expr "$ac_aux_dir" : "$srcdir//*\(.*\)"` # and then we would define $MISSING as # MISSING="\${SHELL} $am_aux_dir/missing" # This will work as long as MISSING is not called from configure, because # unfortunately $(top_srcdir) has no meaning in configure. # However there are other variables, like CC, which are often used in # configure, and could therefore not use this "fixed" $ac_aux_dir. # # Another solution, used here, is to always expand $ac_aux_dir to an # absolute PATH. The drawback is that using absolute paths prevent a # configured tree to be moved without reconfiguration. AC_DEFUN([AM_AUX_DIR_EXPAND], [dnl Rely on autoconf to set up CDPATH properly. AC_PREREQ([2.50])dnl # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` ]) # Copyright (C) 1996, 1997, 1999, 2000, 2001, 2002, 2003, 2005 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 4 # This was merged into AC_PROG_CC in Autoconf. AU_DEFUN([AM_PROG_CC_STDC], [AC_PROG_CC AC_DIAGNOSE([obsolete], [$0: your code should no longer depend upon `am_cv_prog_cc_stdc', but upon `ac_cv_prog_cc_stdc'. Remove this warning and the assignment when you adjust the code. You can also remove the above call to AC_PROG_CC if you already called it elsewhere.]) am_cv_prog_cc_stdc=$ac_cv_prog_cc_stdc ]) AU_DEFUN([fp_PROG_CC_STDC]) # AM_CONDITIONAL -*- Autoconf -*- # Copyright (C) 1997, 2000, 2001, 2003, 2004, 2005, 2006, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 9 # AM_CONDITIONAL(NAME, SHELL-CONDITION) # ------------------------------------- # Define a conditional. AC_DEFUN([AM_CONDITIONAL], [AC_PREREQ(2.52)dnl ifelse([$1], [TRUE], [AC_FATAL([$0: invalid condition: $1])], [$1], [FALSE], [AC_FATAL([$0: invalid condition: $1])])dnl AC_SUBST([$1_TRUE])dnl AC_SUBST([$1_FALSE])dnl _AM_SUBST_NOTMAKE([$1_TRUE])dnl _AM_SUBST_NOTMAKE([$1_FALSE])dnl m4_define([_AM_COND_VALUE_$1], [$2])dnl if $2; then $1_TRUE= $1_FALSE='#' else $1_TRUE='#' $1_FALSE= fi AC_CONFIG_COMMANDS_PRE( [if test -z "${$1_TRUE}" && test -z "${$1_FALSE}"; then AC_MSG_ERROR([[conditional "$1" was never defined. Usually this means the macro was only invoked conditionally.]]) fi])]) # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2009 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 10 # There are a few dirty hacks below to avoid letting `AC_PROG_CC' be # written in clear, in which case automake, when reading aclocal.m4, # will think it sees a *use*, and therefore will trigger all it's # C support machinery. Also note that it means that autoscan, seeing # CC etc. in the Makefile, will ask for an AC_PROG_CC use... # _AM_DEPENDENCIES(NAME) # ---------------------- # See how the compiler implements dependency checking. # NAME is "CC", "CXX", "GCJ", or "OBJC". # We try a few techniques and use that to set a single cache variable. # # We don't AC_REQUIRE the corresponding AC_PROG_CC since the latter was # modified to invoke _AM_DEPENDENCIES(CC); we would have a circular # dependency, and given that the user is not expected to run this macro, # just rely on AC_PROG_CC. AC_DEFUN([_AM_DEPENDENCIES], [AC_REQUIRE([AM_SET_DEPDIR])dnl AC_REQUIRE([AM_OUTPUT_DEPENDENCY_COMMANDS])dnl AC_REQUIRE([AM_MAKE_INCLUDE])dnl AC_REQUIRE([AM_DEP_TRACK])dnl ifelse([$1], CC, [depcc="$CC" am_compiler_list=], [$1], CXX, [depcc="$CXX" am_compiler_list=], [$1], OBJC, [depcc="$OBJC" am_compiler_list='gcc3 gcc'], [$1], UPC, [depcc="$UPC" am_compiler_list=], [$1], GCJ, [depcc="$GCJ" am_compiler_list='gcc3 gcc'], [depcc="$$1" am_compiler_list=]) AC_CACHE_CHECK([dependency style of $depcc], [am_cv_$1_dependencies_compiler_type], [if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_$1_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n ['s/^#*\([a-zA-Z0-9]*\))$/\1/p'] < ./depcomp` fi am__universal=false m4_case([$1], [CC], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac], [CXX], [case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac]) for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvisualcpp | msvcmsys) # This compiler won't grok `-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_$1_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_$1_dependencies_compiler_type=none fi ]) AC_SUBST([$1DEPMODE], [depmode=$am_cv_$1_dependencies_compiler_type]) AM_CONDITIONAL([am__fastdep$1], [ test "x$enable_dependency_tracking" != xno \ && test "$am_cv_$1_dependencies_compiler_type" = gcc3]) ]) # AM_SET_DEPDIR # ------------- # Choose a directory name for dependency files. # This macro is AC_REQUIREd in _AM_DEPENDENCIES AC_DEFUN([AM_SET_DEPDIR], [AC_REQUIRE([AM_SET_LEADING_DOT])dnl AC_SUBST([DEPDIR], ["${am__leading_dot}deps"])dnl ]) # AM_DEP_TRACK # ------------ AC_DEFUN([AM_DEP_TRACK], [AC_ARG_ENABLE(dependency-tracking, [ --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors]) if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' fi AM_CONDITIONAL([AMDEP], [test "x$enable_dependency_tracking" != xno]) AC_SUBST([AMDEPBACKSLASH])dnl _AM_SUBST_NOTMAKE([AMDEPBACKSLASH])dnl ]) # Generate code to set up dependency tracking. -*- Autoconf -*- # Copyright (C) 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. #serial 5 # _AM_OUTPUT_DEPENDENCY_COMMANDS # ------------------------------ AC_DEFUN([_AM_OUTPUT_DEPENDENCY_COMMANDS], [{ # Autoconf 2.62 quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named `Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`AS_DIRNAME("$mf")` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running `make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # When using ansi2knr, U may be empty or an underscore; expand it U=`sed -n 's/^U = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`AS_DIRNAME(["$file"])` AS_MKDIR_P([$dirpart/$fdir]) # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ])# _AM_OUTPUT_DEPENDENCY_COMMANDS # AM_OUTPUT_DEPENDENCY_COMMANDS # ----------------------------- # This macro should only be invoked once -- use via AC_REQUIRE. # # This code is only required when automatic dependency tracking # is enabled. FIXME. This creates each `.P' file that we will # need in order to bootstrap the dependency handling code. AC_DEFUN([AM_OUTPUT_DEPENDENCY_COMMANDS], [AC_CONFIG_COMMANDS([depfiles], [test x"$AMDEP_TRUE" != x"" || _AM_OUTPUT_DEPENDENCY_COMMANDS], [AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir"]) ]) # Do all the work for Automake. -*- Autoconf -*- # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, # 2005, 2006, 2008, 2009 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 16 # This macro actually does too much. Some checks are only needed if # your package does certain things. But this isn't really a big deal. # AM_INIT_AUTOMAKE(PACKAGE, VERSION, [NO-DEFINE]) # AM_INIT_AUTOMAKE([OPTIONS]) # ----------------------------------------------- # The call with PACKAGE and VERSION arguments is the old style # call (pre autoconf-2.50), which is being phased out. PACKAGE # and VERSION should now be passed to AC_INIT and removed from # the call to AM_INIT_AUTOMAKE. # We support both call styles for the transition. After # the next Automake release, Autoconf can make the AC_INIT # arguments mandatory, and then we can depend on a new Autoconf # release and drop the old call support. AC_DEFUN([AM_INIT_AUTOMAKE], [AC_PREREQ([2.62])dnl dnl Autoconf wants to disallow AM_ names. We explicitly allow dnl the ones we care about. m4_pattern_allow([^AM_[A-Z]+FLAGS$])dnl AC_REQUIRE([AM_SET_CURRENT_AUTOMAKE_VERSION])dnl AC_REQUIRE([AC_PROG_INSTALL])dnl if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." AC_SUBST([am__isrc], [' -I$(srcdir)'])_AM_SUBST_NOTMAKE([am__isrc])dnl # test to see if srcdir already configured if test -f $srcdir/config.status; then AC_MSG_ERROR([source directory already configured; run "make distclean" there first]) fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi AC_SUBST([CYGPATH_W]) # Define the identity of the package. dnl Distinguish between old-style and new-style calls. m4_ifval([$2], [m4_ifval([$3], [_AM_SET_OPTION([no-define])])dnl AC_SUBST([PACKAGE], [$1])dnl AC_SUBST([VERSION], [$2])], [_AM_SET_OPTIONS([$1])dnl dnl Diagnose old-style AC_INIT with new-style AM_AUTOMAKE_INIT. m4_if(m4_ifdef([AC_PACKAGE_NAME], 1)m4_ifdef([AC_PACKAGE_VERSION], 1), 11,, [m4_fatal([AC_INIT should be called with package and version arguments])])dnl AC_SUBST([PACKAGE], ['AC_PACKAGE_TARNAME'])dnl AC_SUBST([VERSION], ['AC_PACKAGE_VERSION'])])dnl _AM_IF_OPTION([no-define],, [AC_DEFINE_UNQUOTED(PACKAGE, "$PACKAGE", [Name of package]) AC_DEFINE_UNQUOTED(VERSION, "$VERSION", [Version number of package])])dnl # Some tools Automake needs. AC_REQUIRE([AM_SANITY_CHECK])dnl AC_REQUIRE([AC_ARG_PROGRAM])dnl AM_MISSING_PROG(ACLOCAL, aclocal-${am__api_version}) AM_MISSING_PROG(AUTOCONF, autoconf) AM_MISSING_PROG(AUTOMAKE, automake-${am__api_version}) AM_MISSING_PROG(AUTOHEADER, autoheader) AM_MISSING_PROG(MAKEINFO, makeinfo) AC_REQUIRE([AM_PROG_INSTALL_SH])dnl AC_REQUIRE([AM_PROG_INSTALL_STRIP])dnl AC_REQUIRE([AM_PROG_MKDIR_P])dnl # We need awk for the "check" target. The system "awk" is bad on # some platforms. AC_REQUIRE([AC_PROG_AWK])dnl AC_REQUIRE([AC_PROG_MAKE_SET])dnl AC_REQUIRE([AM_SET_LEADING_DOT])dnl _AM_IF_OPTION([tar-ustar], [_AM_PROG_TAR([ustar])], [_AM_IF_OPTION([tar-pax], [_AM_PROG_TAR([pax])], [_AM_PROG_TAR([v7])])]) _AM_IF_OPTION([no-dependencies],, [AC_PROVIDE_IFELSE([AC_PROG_CC], [_AM_DEPENDENCIES(CC)], [define([AC_PROG_CC], defn([AC_PROG_CC])[_AM_DEPENDENCIES(CC)])])dnl AC_PROVIDE_IFELSE([AC_PROG_CXX], [_AM_DEPENDENCIES(CXX)], [define([AC_PROG_CXX], defn([AC_PROG_CXX])[_AM_DEPENDENCIES(CXX)])])dnl AC_PROVIDE_IFELSE([AC_PROG_OBJC], [_AM_DEPENDENCIES(OBJC)], [define([AC_PROG_OBJC], defn([AC_PROG_OBJC])[_AM_DEPENDENCIES(OBJC)])])dnl ]) _AM_IF_OPTION([silent-rules], [AC_REQUIRE([AM_SILENT_RULES])])dnl dnl The `parallel-tests' driver may need to know about EXEEXT, so add the dnl `am__EXEEXT' conditional if _AM_COMPILER_EXEEXT was seen. This macro dnl is hooked onto _AC_COMPILER_EXEEXT early, see below. AC_CONFIG_COMMANDS_PRE(dnl [m4_provide_if([_AM_COMPILER_EXEEXT], [AM_CONDITIONAL([am__EXEEXT], [test -n "$EXEEXT"])])])dnl ]) dnl Hook into `_AC_COMPILER_EXEEXT' early to learn its expansion. Do not dnl add the conditional right here, as _AC_COMPILER_EXEEXT may be further dnl mangled by Autoconf and run in a shell conditional statement. m4_define([_AC_COMPILER_EXEEXT], m4_defn([_AC_COMPILER_EXEEXT])[m4_provide([_AM_COMPILER_EXEEXT])]) # When config.status generates a header, we must update the stamp-h file. # This file resides in the same directory as the config header # that is generated. The stamp files are numbered to have different names. # Autoconf calls _AC_AM_CONFIG_HEADER_HOOK (when defined) in the # loop where config.status creates the headers, so we can generate # our stamp files there. AC_DEFUN([_AC_AM_CONFIG_HEADER_HOOK], [# Compute $1's index in $config_headers. _am_arg=$1 _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`AS_DIRNAME(["$_am_arg"])`/stamp-h[]$_am_stamp_count]) # Copyright (C) 2001, 2003, 2005, 2008 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_SH # ------------------ # Define $install_sh. AC_DEFUN([AM_PROG_INSTALL_SH], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl if test x"${install_sh}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi AC_SUBST(install_sh)]) # Copyright (C) 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 2 # Check whether the underlying file-system supports filenames # with a leading dot. For instance MS-DOS doesn't. AC_DEFUN([AM_SET_LEADING_DOT], [rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null AC_SUBST([am__leading_dot])]) # Check to see how 'make' treats includes. -*- Autoconf -*- # Copyright (C) 2001, 2002, 2003, 2005, 2009 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 4 # AM_MAKE_INCLUDE() # ----------------- # Check to see how make treats includes. AC_DEFUN([AM_MAKE_INCLUDE], [am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. AC_MSG_CHECKING([for style of include used by $am_make]) am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from `make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi AC_SUBST([am__include]) AC_SUBST([am__quote]) AC_MSG_RESULT([$_am_result]) rm -f confinc confmf ]) # Fake the existence of programs that GNU maintainers use. -*- Autoconf -*- # Copyright (C) 1997, 1999, 2000, 2001, 2003, 2004, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 6 # AM_MISSING_PROG(NAME, PROGRAM) # ------------------------------ AC_DEFUN([AM_MISSING_PROG], [AC_REQUIRE([AM_MISSING_HAS_RUN]) $1=${$1-"${am_missing_run}$2"} AC_SUBST($1)]) # AM_MISSING_HAS_RUN # ------------------ # Define MISSING if not defined so far and test if it supports --run. # If it does, set am_missing_run to use it, otherwise, to nothing. AC_DEFUN([AM_MISSING_HAS_RUN], [AC_REQUIRE([AM_AUX_DIR_EXPAND])dnl AC_REQUIRE_AUX_FILE([missing])dnl if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= AC_MSG_WARN([`missing' script is too old or missing]) fi ]) # Copyright (C) 2003, 2004, 2005, 2006 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_MKDIR_P # --------------- # Check for `mkdir -p'. AC_DEFUN([AM_PROG_MKDIR_P], [AC_PREREQ([2.60])dnl AC_REQUIRE([AC_PROG_MKDIR_P])dnl dnl Automake 1.8 to 1.9.6 used to define mkdir_p. We now use MKDIR_P, dnl while keeping a definition of mkdir_p for backward compatibility. dnl @MKDIR_P@ is magic: AC_OUTPUT adjusts its value for each Makefile. dnl However we cannot define mkdir_p as $(MKDIR_P) for the sake of dnl Makefile.ins that do not define MKDIR_P, so we do our own dnl adjustment using top_builddir (which is defined more often than dnl MKDIR_P). AC_SUBST([mkdir_p], ["$MKDIR_P"])dnl case $mkdir_p in [[\\/$]]* | ?:[[\\/]]*) ;; */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; esac ]) # Helper functions for option handling. -*- Autoconf -*- # Copyright (C) 2001, 2002, 2003, 2005, 2008 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 4 # _AM_MANGLE_OPTION(NAME) # ----------------------- AC_DEFUN([_AM_MANGLE_OPTION], [[_AM_OPTION_]m4_bpatsubst($1, [[^a-zA-Z0-9_]], [_])]) # _AM_SET_OPTION(NAME) # ------------------------------ # Set option NAME. Presently that only means defining a flag for this option. AC_DEFUN([_AM_SET_OPTION], [m4_define(_AM_MANGLE_OPTION([$1]), 1)]) # _AM_SET_OPTIONS(OPTIONS) # ---------------------------------- # OPTIONS is a space-separated list of Automake options. AC_DEFUN([_AM_SET_OPTIONS], [m4_foreach_w([_AM_Option], [$1], [_AM_SET_OPTION(_AM_Option)])]) # _AM_IF_OPTION(OPTION, IF-SET, [IF-NOT-SET]) # ------------------------------------------- # Execute IF-SET if OPTION is set, IF-NOT-SET otherwise. AC_DEFUN([_AM_IF_OPTION], [m4_ifset(_AM_MANGLE_OPTION([$1]), [$2], [$3])]) # Check to make sure that the build environment is sane. -*- Autoconf -*- # Copyright (C) 1996, 1997, 2000, 2001, 2003, 2005, 2008 # Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 5 # AM_SANITY_CHECK # --------------- AC_DEFUN([AM_SANITY_CHECK], [AC_MSG_CHECKING([whether build environment is sane]) # Just in case sleep 1 echo timestamp > conftest.file # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[[\\\"\#\$\&\'\`$am_lf]]*) AC_MSG_ERROR([unsafe absolute working directory name]);; esac case $srcdir in *[[\\\"\#\$\&\'\`$am_lf\ \ ]]*) AC_MSG_ERROR([unsafe srcdir value: `$srcdir']);; esac # Do `set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$[*]" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi rm -f conftest.file if test "$[*]" != "X $srcdir/configure conftest.file" \ && test "$[*]" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". AC_MSG_ERROR([ls -t appears to fail. Make sure there is not a broken alias in your environment]) fi test "$[2]" = conftest.file ) then # Ok. : else AC_MSG_ERROR([newly created file is older than distributed files! Check your system clock]) fi AC_MSG_RESULT(yes)]) # Copyright (C) 2001, 2003, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # AM_PROG_INSTALL_STRIP # --------------------- # One issue with vendor `install' (even GNU) is that you can't # specify the program used to strip binaries. This is especially # annoying in cross-compiling environments, where the build's strip # is unlikely to handle the host's binaries. # Fortunately install-sh will honor a STRIPPROG variable, so we # always use install-sh in `make install-strip', and initialize # STRIPPROG with the value of the STRIP variable (set by the user). AC_DEFUN([AM_PROG_INSTALL_STRIP], [AC_REQUIRE([AM_PROG_INSTALL_SH])dnl # Installed binaries are usually stripped using `strip' when the user # run `make install-strip'. However `strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the `STRIP' environment variable to overrule this program. dnl Don't test for $cross_compiling = yes, because it might be `maybe'. if test "$cross_compiling" != no; then AC_CHECK_TOOL([STRIP], [strip], :) fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" AC_SUBST([INSTALL_STRIP_PROGRAM])]) # Copyright (C) 2006, 2008 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 2 # _AM_SUBST_NOTMAKE(VARIABLE) # --------------------------- # Prevent Automake from outputting VARIABLE = @VARIABLE@ in Makefile.in. # This macro is traced by Automake. AC_DEFUN([_AM_SUBST_NOTMAKE]) # AM_SUBST_NOTMAKE(VARIABLE) # --------------------------- # Public sister of _AM_SUBST_NOTMAKE. AC_DEFUN([AM_SUBST_NOTMAKE], [_AM_SUBST_NOTMAKE($@)]) # Check how to create a tarball. -*- Autoconf -*- # Copyright (C) 2004, 2005 Free Software Foundation, Inc. # # This file is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # serial 2 # _AM_PROG_TAR(FORMAT) # -------------------- # Check how to create a tarball in format FORMAT. # FORMAT should be one of `v7', `ustar', or `pax'. # # Substitute a variable $(am__tar) that is a command # writing to stdout a FORMAT-tarball containing the directory # $tardir. # tardir=directory && $(am__tar) > result.tar # # Substitute a variable $(am__untar) that extract such # a tarball read from stdin. # $(am__untar) < result.tar AC_DEFUN([_AM_PROG_TAR], [# Always define AMTAR for backward compatibility. AM_MISSING_PROG([AMTAR], [tar]) m4_if([$1], [v7], [am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -'], [m4_case([$1], [ustar],, [pax],, [m4_fatal([Unknown tar format])]) AC_MSG_CHECKING([how to create a $1 tar archive]) # Loop over all known methods to create a tar archive until one works. _am_tools='gnutar m4_if([$1], [ustar], [plaintar]) pax cpio none' _am_tools=${am_cv_prog_tar_$1-$_am_tools} # Do not fold the above two line into one, because Tru64 sh and # Solaris sh will not grok spaces in the rhs of `-'. for _am_tool in $_am_tools do case $_am_tool in gnutar) for _am_tar in tar gnutar gtar; do AM_RUN_LOG([$_am_tar --version]) && break done am__tar="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$$tardir"' am__tar_="$_am_tar --format=m4_if([$1], [pax], [posix], [$1]) -chf - "'"$tardir"' am__untar="$_am_tar -xf -" ;; plaintar) # Must skip GNU tar: if it does not support --format= it doesn't create # ustar tarball either. (tar --version) >/dev/null 2>&1 && continue am__tar='tar chf - "$$tardir"' am__tar_='tar chf - "$tardir"' am__untar='tar xf -' ;; pax) am__tar='pax -L -x $1 -w "$$tardir"' am__tar_='pax -L -x $1 -w "$tardir"' am__untar='pax -r' ;; cpio) am__tar='find "$$tardir" -print | cpio -o -H $1 -L' am__tar_='find "$tardir" -print | cpio -o -H $1 -L' am__untar='cpio -i -H $1 -d' ;; none) am__tar=false am__tar_=false am__untar=false ;; esac # If the value was cached, stop now. We just wanted to have am__tar # and am__untar set. test -n "${am_cv_prog_tar_$1}" && break # tar/untar a dummy directory, and stop if the command works rm -rf conftest.dir mkdir conftest.dir echo GrepMe > conftest.dir/file AM_RUN_LOG([tardir=conftest.dir && eval $am__tar_ >conftest.tar]) rm -rf conftest.dir if test -s conftest.tar; then AM_RUN_LOG([$am__untar /dev/null 2>&1 && break fi done rm -rf conftest.dir AC_CACHE_VAL([am_cv_prog_tar_$1], [am_cv_prog_tar_$1=$_am_tool]) AC_MSG_RESULT([$am_cv_prog_tar_$1])]) AC_SUBST([am__tar]) AC_SUBST([am__untar]) ]) # _AM_PROG_TAR fische-3.2/windows/0000755000175000017500000000000011515541151011311 500000000000000fische-3.2/windows/fische.exe0000755000175000017500000340000011515540713013200 00000000000000MZÿÿ¸@€º´ Í!¸LÍ!This program cannot be run in DOS mode. $PEL ËÁ6Mà 8Æ ü @à @à&ã · $`ürP.textàÅ Æ `P`.data {à |Ê @`À.rdata` F @`@.bssp €`À.edata·V @0@.idata$ j @0À.CRT@ˆ @0À.tls PŠ @0À.relocür`tŒ @0BU‰åƒì¡¼&NÉÿàfU‰åƒì¡¤&NÉÿàfU‰åSƒì4¡`†L…ÀtÇD$ÇD$Ç$ÿЃì Ç$€@è|Óƒìè€6èû;EðÇEð‰D$¡âKÇD$pMÇ$pM‰D$ Eô‰D$è¹Ð¡vM…ÀuPè³Ð‹âK‰è>8ƒäðèv:è¡Ð‹‰D$¡pM‰D$¡pM‰$èu:‰Ãè†Ð‰$èòÒ¶‹œ&N£âK‰D$‹C‰$èfСvM‰D$‹C0‰$èRСvM‰D$‹CP‰$è>Ðéiÿÿÿ‰ö¼'U‰åƒìÇ$ÿ|&NèÈþÿÿ´&U‰åƒìÇ$ÿ|&Nè¨þÿÿ´&U‰åSƒì‹E‹‹=‘Àw;=ÀrK»ÇD$Ç$èÃσø„ÿ…À…ª1ÀƒÄ[]Â=”ÀtY=–Àt=“Àuáëµ=Àt&tE=ÀuÍÇD$Ç$èkσøts…Àt°Ç$vÿиÿÿÿÿ럴&1ÛéjÿÿÿÇD$Ç$ è-σøtQ…À„nÿÿÿÇ$ ÿиÿÿÿÿé\ÿÿÿt&Ç$ÿиÿÿÿÿféCÿÿÿÇD$Ç$èß΃Èÿé'ÿÿÿÇD$Ç$ èÃ΃Èÿé ÿÿÿÇD$Ç$è§Î…Ûu ¸ÿÿÿÿééþÿÿè{9ëîU‰åƒì¡[L…Àt:Ç$`LèÙЉƒì…Ò¸tÇD$`L‰$èÃЃì…Àt Ç$[LÿÐÉÃt&U‰å]ÃU‰åƒìÇ$pMèÞì Éö¿U‰åSƒìÇD$/ÇD$$`LÇ$ÀWLèý) ¡ÀWL‹@ô‹˜ ‹EÜ‹Uà‰E‰U˜‹u˜+uÁþƒþ†«‹EÙî‹x81ÀÇE”‰}˜‹}ëƒÀ9ðs-‹‡‰Ú+U˜‰ÑÁù1Ê)ʃúã9Æv6‰] ƒÀÛE ƒE”9ðÞÁrÓÛE”Þù‹E…ÀÝ]˜„ëþÿÿ‹U‰$èø‰ éÛþÿÿÝØÇ$ˆ`LÇE¨è¾7 ƒÅ‹E¬‰E˜E܉$è Ê ‹U˜ÇE¨ÿÿÿÿ‰$è¨*Ç$ˆ`LÇE¨è…7 t&U‰åSƒìD‹]ƒC@‹‰$è8[‰$‰D$èìûÿÿÝCÙîÙÉÛéÝÙz„Éݨ`LØÊÙÉÜ °`LÞÁÝSÙÁ‹C@Øá+CDݰ`LÜK ƒøZÙÁÙáÜ ¨`LÞÁÝS ~ ‹SHÙîÝ[8‰SL‹Sƒú…†ÜÂÙÊß뇽ÙîÙÊÛêÝÚz„ ÞñÝC(ÙîÙÉÛéÝÙŠÝ…×ÝØÝS(ÙÀÝÀ`LÜK0ÙÉ‹SL;SPÇC‰EôØâÙáÜ ¸`LÞÁÝ[0„ð…Òt‰ƒÂ‰SL‹KH‰Ð)ÈÁøƒøv@A9Ðt/)ÂÁú…Òt#ÙÉÁâÝ]ÈÝ]؉T$‰D$‰ $èdÇÝEØÝEÈÙÉ‹SLÙɃê‰SLëÙÉ‹C@Ý[‰CDÝ]؉$èÙüÿÿÝC8ÙîÙÉÛéÝÙÝEØzt'ÙÁØóÝÈ`LÛéÝÙvÙÃØóÙÉßéÝØ‡7ÝÙÙÉë ÝÙÙÉëÝØÝÙÙÉÝ[8ÝC(¸ÝC0ÙÀØ Ð`LØÂÙËÛëÝÛ‡°ÙÀ°ØÁØÂÙËÛëÝÛ‡¤ÞÁÙÉ1ÀßéÝØ—ÀƒÄDƒÀ[]Ã¶ÝØÝSÙÀé@þÿÿt&ÝÙ|LƒúMÝØ`LÜKÝà`LØÌÞÁÝSÙÊÞÁßéÝØv1ÝØƒú„|ÇC1ÀƒÄD[]ÃÝØÝØë´&ÝØÝØëÝØÝØÙè`L1ÀßéÝØ–ÀƒèëfÝØÝØÝØëÝØÝØÝØfƒÄD[]Ãݸ`LØÊÙÉÜ À`LÞÁÝS(éþÿÿÝØÝØÙèéíýÿÿt&ÇC1ÀëÅt&ÙÉØÀÞÂÙÉØ5Ð`LÝ[8éÉþÿÿÙÉEô‰D$Ý]ÈCH‰T$Ý]؉$è\Å ‹SLÝEØÝEÈÙÉéîýÿÿU‰åƒìÇ$$pMèä Éö¿U‰åVSƒì‹]ÇD$ÇD$ÈÇ$,èù]‰CÇD$ÇD$ÈÇ$,èúv‰‹C‰$èý^‰Æ‹‰$è1d)ƉðÁè40‹CÑþ‰s‰$èÇ^‰Æ‹‰$èd)ƉðÁè40‹Ñþ‰s ‰$èòc‰C‹‰$èõc‹SÁâ¯Ð‰C‰$è©Ä…À‰Ct!ÇD$Ç$èfQ‹@ ‰CƒÄ[^]ÃÇD$5ÇD$ð`LÇ$€VLè] Ç$€VLè!@ Ç$è5Ät&U‰åSƒì‹]‹C‰$è;ÄÇCƒÄ[]ô&¼'U‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàx»KÇEè@‰eìè1"¡ pM…À‰EÀtEĉ$èº"‹EÀÉÃt&Ç$ ÇEÈÿÿÿÿèM… ÇEȉE¼‰EÀ‰$è8þÿÿ‹E¼£ pMEĉ$èu"‹EÀÉÃÅ‹ẺEÀ‹E¼‰$èl„ ‹EÀÇEÈÿÿÿÿ‰$èJ%v¼'U‰åSƒì‹ pM…Ût‹C‰$èDÃÇC‰$è%„ Ç pMƒÄ[]Ãt&U‰åSƒì‹]‹C‰$èû\£@pM‹C£DpM‹C £HpM‹CÇPpM£LpM‹C£TpM‹C‰$è±\£`pM‹‰$è¢a£XpM‹CÇE@pM£\pMƒÄ[]éT_t&U‰åƒìxEø‰EäEÄÇEܰ´KÇEà~»KÇEèÎ @‰eì‰$è± ‹U‹RƒúV‰ÐƒàƒøƒÒÿ•ƒàð‰U¸è9&‹M¸T$Ƀâð…ƒàðè&D$ƒàð…ÉŽ?‰U¨‰E¤ë*¶ƒì0T$ì0L$ƒâðƒáð‰U¨‰M¤ÇE¸‹E¤ÇE°‰E¼ë‹E¬‰E°‹U‹BÇEȉ$è²[‹U‹M¼‰M´‰‹B‰A‹B ‰A‹B‰A ‹B‰$èz[‹M¼‹U‰A ‹‰$èg`‹U‹M´‰A‹B‰A‹J‹E°¯Á‰ÂÁú÷}¸‹U´‰B‹E°ƒÀ‰E¬¯Á‹M°‰ÂÁú÷}¸‹U´‰B‹U¤ÉÇ$P~@‚‰D$èk7‹M¬‹U¨‰DŠü‹E¸ƒE¼$9ÁŒ5ÿÿÿÇEÀ‹UÀ‹M¨ÇD$‹‘ÇEȉ$èÛ8ƒEÀ‹E¸9EÀ|ÔEĉ$è´ÉÃÅ‹EÌÇEÈÿÿÿÿ‰$è"¶¿U‰åƒì‹E‹P¯P‹@ÇD$Áâ‰T$‰$èŽÀÉÃt&U‰åWVSƒì,‹u‹F‰$èYZ‹~‰Eä‹F‰$è8Z‰Eà‹F…À~H‹F1Ûë ´&‹F‹V ‹MäÚ¯UàV‘ …¯ÃƒÃ‰L$‰$‡‰D$èÀ9^ƃÄ,[^_]ô&¼'U‰åSƒì‹]‹C‰$èÛYƒ{t%‰$è-ýÿÿ‰$èEÿÿÿ‹C‰EƒÄ[]éÕYt&‰$èˆüÿÿëÙ¶U‰åƒìÇ$$pMèîÕ Ç$@èâíÿÿÉÃU‰åƒìÇ$„pMèÞ Éö¿‹DXMU‹ XXM‰å‹Rô‰ ‹PXM‹ TXM‰P‹Rô‰L‹HXM‹ LXM]‰‹Rô‰ Ç@ô&U‰å‹E€x”@]ÃU‰åSƒì¡ÀWL‹@ô‹˜ ¡ÀWL‹@ô‹˜`ÇD$PÇD$¤aLÇ$ÀWLèr ¡ÀWL‹@ô‹˜‰$èå@‹U‹B(…À„x ƒø„4 ƒø„v ‹E€x…9…ìþÿÿÇD$ÇD$nL‰$Ç…¨þÿÿèàì ‹…ìþÿÿ‹@ô‹„hÿÿÿ…À‰… þÿÿ„´ ‹… þÿÿ€x„9‰Â¶B'¾À‰D$…ìþÿÿ‰$Ç…¨þÿÿè->‰$è5@‹E€x„8…ìþÿÿÇD$ÇD$8nL‰$Ç…¨þÿÿèPì ‹…ìþÿÿ‹@ô‹„hÿÿÿ…À‰… þÿÿ„) ‹• þÿÿ€z„¨¶B'¾À‰D$…ìþÿÿ‰$Ç…¨þÿÿèŸ=‰$è§?…ìþÿÿÇD$(ÇD$pnL‰$Ç…¨þÿÿèÏë ‹…ìþÿÿ‹@ô‹„hÿÿÿ…À‰… þÿÿ„* ‹… þÿÿ€x„ô¶@'¾À‰D$…ìþÿÿ‰$Ç…¨þÿÿè=‰$è&?‹E€x.„9€x…ò…ìþÿÿÇD$ÇD$™nL‰$èAë ‹…ìþÿÿ‹@ô‹„hÿÿÿ…À‰… þÿÿ„1 ‹• þÿÿ€z„Ó¶B'¾À‰D$…ìþÿÿ‰$Ç…¨þÿÿè<‰$è˜>…ìþÿÿÇD$/ÇD$ìnL‰$Ç…¨þÿÿèÀê ‹…ìþÿÿ‹@ô‹„hÿÿÿ…À‰… þÿÿ„K ‹… þÿÿ€x„…¶@'¾À‰D$…ìþÿÿ‰$Ç…¨þÿÿè<‰$è>‹E€x-„Š€x$„B…ìþÿÿÇD$ÇD$oL‰$è2ê ‹…ìþÿÿ‹@ô‹„hÿÿÿ…À‰…˜þÿÿ„, ‹•˜þÿÿ€z„*¶B'¾À‰D$…ìþÿÿ‰$Ç…¨þÿÿè;‰$è‰=…ðþÿÿÇ…äþÿÿ aMÇ…\ÿÿÿ4aMÇ…ìþÿÿ aMÇ…ðþÿÿˆ`M‰$Ç…¨þÿÿ èÙÌ…ÿÿÿ‰$Ç…¨þÿÿ è!À… ÿÿÿ‰$Ç…ðþÿÿˆdM詊 ¡DXM‹XXM‹@ô‰”äþÿÿ¡PXM‹TXM‰…ìþÿÿ‹@ô‰”ìþÿÿ¡HXM‹LXM‰…äþÿÿ‹@ô‰”äþÿÿ…\ÿÿÿÇ…èþÿÿÇ…\ÿÿÿPmM‰$Ç…¨þÿÿèb¯ ‹EìºpTLƒè 9Â…&…¤þÿÿ‰$èÁëÉÃ…ìþÿÿÇD$ÇD$nL‰$Ç…¨þÿÿè§è ‹…ìþÿÿ‹@ô‹„hÿÿÿ…À‰… þÿÿ„œ‹• þÿÿ€z…Éûÿÿ‹… þÿÿÇ…¨þÿÿ‰$è1û‹• þÿÿ‹ÇD$ ‰$ÿPéšûÿÿ¶…ìþÿÿÇD$ÇD$RnL‰$Ç…¨þÿÿèè ‹…ìþÿÿ‹@ô‹„hÿÿÿ…À‰… þÿÿ„ç‹… þÿÿ€x„p‰ÂéÁûÿÿv‹P;P‰•œþÿÿ…øÿÿ…ìþÿÿÇD$ÇD$LmL‰$è°ç ‹…ìþÿÿ‹@ô‹„hÿÿÿ…À‰… þÿÿ„õ‹… þÿÿ€x„2¶@'¾À‰D$…ìþÿÿ‰$Ç…¨þÿÿèÿ8é˜øÿÿ‹… þÿÿÇ…¨þÿÿ‰$èú‹• þÿÿ‹ÇD$ ‰$ÿPéQôÿÿ´&‹… þÿÿÇ…¨þÿÿ‰$èØù‹• þÿÿ‹ÇD$ ‰$ÿPéŽôÿÿ‹… þÿÿÇ…¨þÿÿ‰$è¥ù‹• þÿÿ‹ÇD$ ‰$ÿPéÒôÿÿ‹… þÿÿÇ…¨þÿÿ‰$èrù‹• þÿÿ‹ÇD$ ‰$ÿPéõÿÿ´&‹… þÿÿÇ…¨þÿÿ‰$è8ù‹• þÿÿ‹ÇD$ ‰$ÿPé6õÿÿ‹… þÿÿÇ…¨þÿÿ‰$èù‹• þÿÿ‹ÇD$ ‰$ÿPéöÿÿ‹… þÿÿÇ…¨þÿÿ‰$èÒø‹• þÿÿ‹ÇD$ ‰$ÿPéÔ÷ÿÿ´&‹… þÿÿÇ…¨þÿÿ‰$è˜ø‹• þÿÿ‹ÇD$ ‰$ÿPéQøÿÿ‹… þÿÿÇ…¨þÿÿ‰$èeø‹• þÿÿ‹ÇD$ ‰$ÿPéÝùÿÿ‹… þÿÿÇ…¨þÿÿ‰$è2ø‹• þÿÿ‹ÇD$ ‰$ÿPé)ùÿÿ´&‹… þÿÿÇ…¨þÿÿ‰$èø÷‹• þÿÿ‹ÇD$ ‰$ÿPéþùÿÿ‹… þÿÿÇ…¨þÿÿ‰$èÅ÷‹• þÿÿ‹ÇD$ ‰$ÿPéLúÿÿ‹…˜þÿÿÇ…¨þÿÿ‰$è’÷‹•˜þÿÿ‹ÇD$ ‰$ÿPé§úÿÿ´&‹… þÿÿÇ…¨þÿÿ‰$èX÷‹• þÿÿ‹ÇD$ ‰$ÿPéŒõÿÿ…ìþÿÿÇD$ÇD$³nL‰$Ç…¨þÿÿèEä ‹…ìþÿÿ‹@ô‹„hÿÿÿ…À‰… þÿÿ„L‹… þÿÿ€x„×þÿÿ¶@'éÿøÿÿ…ìþÿÿÇD$ÇD$6oL‰$Ç…¨þÿÿèæã ‹…ìþÿÿ‹@ô‹„hÿÿÿ…À‰…˜þÿÿ„å‹…˜þÿÿ€x„Þþÿÿ¶@'é¯ùÿÿ…ìþÿÿÇD$ÇD$¬mL‰$è‘ã ‹…ìþÿÿ‹@ô‹„hÿÿÿ…À‰… þÿÿ„¢‹… þÿÿ€x„¶@'¾À‰D$…ìþÿÿ‰$Ç…¨þÿÿèà4‰$èè6éöÿÿv…ìþÿÿÇD$ÇD$ÎnL‰$Ç…¨þÿÿèã ‹…ìþÿÿ‹@ô‹„hÿÿÿ…À‰… þÿÿ„‹… þÿÿ€x„šýÿÿ‰ÂéÀ÷ÿÿv…ìþÿÿÇD$ÇD$QoL‰$Ç…¨þÿÿè¨â ‹…ìþÿÿ‹@ô‹„hÿÿÿ…À‰…˜þÿÿ„ò‹…˜þÿÿ€x„ ýÿÿ‰Âéoøÿÿv‹…äþÿÿ•äþÿÿPô‹B‰$ƒÈ‰D$èoÀ éëîÿÿ‹… þÿÿÇ…¨þÿÿ‰$èõ‹• þÿÿ‹ÇD$ ‰$ÿPé¸þÿÿ´&‹…ìþÿÿ•ìþÿÿPô‹B‰$ƒÈ‰D$èÀ é¥óÿÿ…ìþÿÿÇD$ÇD$ÆmL‰$Ç…¨þÿÿèÂá ‹…ìþÿÿ‹@ô‹„hÿÿÿ…À‰… þÿÿ…1þÿÿè_ì …ìþÿÿÇD$ÇD$ämL‰$Ç…¨þÿÿèwá ‹…ìþÿÿ‹@ô‹„hÿÿÿ…À‰… þÿÿ…æýÿÿèì t&‹… þÿÿÇ…¨þÿÿ‰$èô‹• þÿÿ‹ÇD$ ‰$ÿPéŸùÿÿƒ=(vM…ã‹PJÿ‰H…ÒìÿÿUô‰T$‰$ècéíëÿÿƒ=(vM…¾‹PJÿ‰H…Ò¼ëÿÿUõ‰T$‰$èÎbé¨ëÿÿƒ=(vM…¨‹PJÿ‰H…Ò¼÷ÿÿUó‰T$‰$èœbé¨÷ÿÿèBë ƒÅ‹…¬þÿÿ‰…˜þÿÿ‹…¨þÿÿÿ$…loLè!ë èë èë èë fè ë èë Ç…¨þÿÿè÷ê èòê èíê ƒÊÿðÁPéÿÿÿƒÊÿðÁPé>ÿÿÿèÎê èÉê èÄê ƒÊÿðÁPéTÿÿÿè²ê è­ê è¨ê è£ê vè›ê è–ê è‘ê è‹ê Eè‰$èÐEä‰$èÅ‹•˜þÿÿÇ…¨þÿÿÿÿÿÿ‰$èåèXê èSê …ÿÿÿ‰$Ç…¨þÿÿè¶… ÿÿÿ‰$Ç…ðþÿÿˆdM裀 ºDXM…äþÿÿèÄÿÿ•\ÿÿÿÇ…\ÿÿÿPmM‰$Ç…¨þÿÿè¡¥ Eì‰$è6‹…˜þÿÿÇ…¨þÿÿÿÿÿÿ‰$èþä…äþÿÿ‰$Ç…¨þÿÿèf ëáHXM‹•”þÿÿ‰…äþÿÿ‹‹LXM‰”äþÿÿÇ…èþÿÿ…\ÿÿÿÇ…\ÿÿÿPmM‰$Ç…¨þÿÿè¥ érÿÿÿ…ðþÿÿ‰$Ç…¨þÿÿèûÜ…äþÿÿè0Ãÿÿë´´&¼'U‰åƒì‹E€x,uÉÃÉéièÿÿ´&U‰åSƒì‹€pM…Ût‰$èÇÿÿÿ‰$è/C Ç€pMƒÄ[]ô&¼'U‰åWVEøì€‰…Äûÿÿ…¤ûÿÿ‰$Ç…¼ûÿÿ°´KÇ…Àûÿÿ¢»KÇ…ÈûÿÿYi@‰¥Ìûÿÿèà‹UÆB-ÆB.Ç$ÆlLèû…À‰…œûÿÿ„ÇD$ÇD$”oLÇ$ÀWLÇ…¨ûÿÿÿÿÿÿèÝ ¡ÀWL‹@ô‹€MÇE¸ÿÿÿÿ‰$è36 ÆE«éLÿÿÿƒ=(vMuO‹PJÿ‰H…Ò¿Uö‰T$‰$èeB뮃Å‹U¼‹E°‰U¬‰$è?/ Eð‰$èD`‹U¬ÇE¸ÿÿÿÿ‰$èÆƒÊÿðÁPë°´&U‰åVS1Ûƒì0uäv‰4$èè=…Àt6¶Eä<tA< t8<uä‹Eìƒøntl:ƒøt%‰ÚƒÊƒøfDÚ‰4$è²=…ÀuʃÄ0‰Ø[^]Ãt&ƒË뫃Ë릶=t!=t‰ÚƒÊƒøpDÚë…t&ƒË éxÿÿÿƒËépÿÿÿƒË@éhÿÿÿ´&U‰åƒìÇ$˜pMè¾y Ç$u@貑ÿÿÉÃU‰åWVSƒì8‹]‹S‹C·s‹;‰Ñ‰Eð‹Cf‰uÌ·s‰UзS ‰}Ü‹{·[ f;MÌf‰uìf‰]ƃ·É·Òf‰EÎ4·À¯Á·ö¯ñ·Mìuð‰Uà‡‰Eð•‰EÔ·ÃÁà÷؉Eä·EÎ<•øÿÿÿ‰}؉MÀƒè·ÀƒÀ‰EÈÀ‰Eìffƒ}΄‘·EÐEÀ·]Ɖu¼‰Eè1Àf‹u¼‹}ܾT¾ Uè¯Uà‹uÔÊڃà —‹UØ‹<‹1‹uäÁïÁêç????â????׋Áêâ????‹<1Áïç????ú‹}ð‰GƒÀ;Eìu“‹EÈ‹u¼uì<‡‰}ðfƒEзUÐf9U̇QÿÿÿƒÄ81À[^_]ÃU‰åƒìÇ$¤pMèn€ Éö¿U‰åVSƒì‹u‹‹F)ÐÁø…Àt#1Ût&‹šƒÃ‰$è’a‹‹F)ÐÁø9Ãr䋉V…Àt‰EƒÄ[^]é]" ƒÄ[^]öU‰åSƒì‹ pM…Ût‰$è‡ÿÿÿ‰$è/" Ç pMƒÄ[]ô&¼'U‰å‹E]‹@ Ãt&U‰åVS‹]èCa‹ 1Ò‹s)ÎÁþ÷ö‹‘9C tå‰C [^]öU‰å‹E]‹@Ãt&U‰å‹E]‹@Ãt&U‰å]Ãv¼'U‰åWVSìü‹]‹C‹s‰EįÆÀ‰$èƒ`…À‰E¬‰Eœ„£‹}Ä…ÿŽ˜1ÿ…öŽƒ 1ö¶‰ð+C ‰E䉸+CÛEä‰EäÛEäÙÀØÉÙÂØËÙÁØÁÙÀÙúÛèн ÝÙÞüÙËÝ]ÈÙÀØÃÙÀÙúÛèŠ$ ÝÙÞúÙÉÝUÐÙàÝ]¸ÞÁÙÀÙúÛèŠù ÝÙ‹C9CŒo ‰ð+C ‰Eä‹K¸VUUUÛEä÷éÁù)Ñ ‰MäÛEäÙÀØÉÙÂØËÙÁØÁÙÀÙúÛèŠa ÝÙÞüÙËÝ] ÙÀØÃÙÀÙúÛèŠÿ ÝÙÞúÙÉÝUØÙàÝ]°ÞÁÙÀÙúÛ芢 ÝÙ‹S‹C9Œĉð+C ’‰E丫ªª*÷éÛEäÁù)Ñ ‰MäÛEäÙÀØÉÙÂØËÙÁØÁÝ• ÿÿÿÙúÛèŠt ÞüÙËÝ ÿÿÿÙÀØÃÙÀÙúÛèŠ# ÝÙÞúÙÁÙàÙËÞÁÙÀÙúÛèŠÊ ÝÙƒ} v*ÝØÝØÝØÝØÝØ‹U¬‰$èá^ÇEœ‹EœÄü[^_]ËE ÿ$… tLÝÚÙÉÛCÜäÙÌ‹C‹SÝU¸ÙÉØì‰•ÿÿÿÝU°ÙÌÞãÝEÈÞÉÙvLÜùÝ… ÿÿÿÞÍÙ¼uLÜýÝE ØÍØñÞÆÙÊÞÅÝE¸ÜMÐÞñÙÊÜM°ØñÙËÜM؉EØÞñÞÂÞÁÙÉt&‰}äÛEäÙÀØÃÙÀuLßév6ÝØ‹ÿÿÿÙèëÝØÙÊÜÃÙÊØ¸uLÙÁØÄÙÀuLßéwäÝÛÙÉÙʉÿÿÿëÙÉÙÊÙÉ‹…ÿÿÿƒè‰EäÛEäÙÉßév#‹ÿÿÿÙèvÜìÙÃØÅßêwöÝØÝØÝÙ‰ÿÿÿëÝØÝÙt&‰uäÛEäÙÀØÂÙÀuLßév6ÝØ‹ÿÿÿÙîëÝØÙÊÜÃÙÊØvLÙÀØÂÙÀuLßéwäÝÛÙÉÙʉÿÿÿëÙÉÙÊÙÉ‹E؃è‰EäÛEäÙÉßév&‹ÿÿÿÙè¶ÜêÙÂØÄßêwöÝØÝØÝÙ‰ÿÿÿëÝØÝÙt&Ùîßê†ÎÙÉØ%vLÙ}â·Eâ´ f‰EàÙmàÛ]äÙmâ‹UäÙîß釰ØvLÙmàÛ]äÙmâ‹Mä‹EĶүƃƉEЉȋMÐÁà‹E¬;uØf‰Hˆ‹•ÿÿÿ‰UÄéNüÿÿÝÙ‹S‹K‰•ÿÿÿ9ʉMØÒ¸«ªª*÷mØ‹EØÁø)‰UäÛEäÝøuLØÉßí†ÞÝØÝØÝØÝØëÝØÝØÝØÝØÙàÝE¸ØÉÙÐuLÜùÙÊÜMÈÞòéòýÿÿÝØÝØÝØÝØ‹K‹C‰ÿÿÿ9Á‰EØ?‹…ÿÿÿ‹•ÿÿÿ‹ÿÿÿƒÀ…ÒI…ÿÿÿÁø‰EäÛEäØéÙḫªª*÷é‰ÈÁø)‰UäÛEäßéÝØ†tÝE¸ØÉÙÄuLÜùÝEÈÞËÞúéqýÿÿÝØÝØÝØÝØÝ¨pMØÈ‹C9CNCØ àuL‰EäÛEäÞùÞÉÙÀÙúÙÀÛèŠÚÝ$ÙÉÝxÿÿÿÛ½hÿÿÿè»[ÙÀÞÉÛ­hÿÿÿÛèÝ…xÿÿÿŠ•ÝØÝ$Ý]ˆèž[ØÈÝEˆÜ-èuLÙÉØ ðuLÞÁÙÀÙúÛ芩ÝÙÙôuLÝEÈØÉ‹C‹S‰EØØÊÙɉ•ÿÿÿÜMÐÞÊé³üÿÿÝØÝØÝØÝØ‹C‹SÙØuLß鉅ÿÿÿ‰U؆îÝØëÝØÙîÙÀéüÿÿÝØÝØÝØÝØ‹S‹KÙØuLß鉕ÿÿÿ‰MØwÔ9щÐNÁ‰EäÛEäÝEÈØÊÙÜuLÜùÝE¸ØËØñÞÂÝEÐÞÌÜûÝEÈÞËÞúÙÊÞÁÙÉé"üÿÿÝØÝØÝØÝØÙÔuLÜ ¨pM‹K‹C‰ÿÿÿØÉ9ȉE؉ÈNE؉EäÛEäÞùÝ$Ý]ˆè‚ZÝEˆÙàÝEÈØÉØÊÙÄuLÜùÙÊÜMÐÞËÙÊÞñÙÉé¼ûÿÿÝØÝØÝØÝØ‹S‹CݨpMØÉ‰UØ9‰…ÿÿÿN‰EäÛEäÞùÝ$Ý]ˆèZÝEˆÙàÝEÈØÉØÊÙÐuLÜùÙÊÜMÐÞËÙÊÞñÙÉé_ûÿÿÝØÝØÝØÝØÝØèàY‰Á¸1 Ã0÷é‰ÈÁøÁú)Â’‚)ÁAö‰EäÛEäÝxÿÿÿè±Y‰Á¸1 Ã0÷é‰ÈÁøÁú)Â’‚)ÁAö‰Eä‹S‹KÛEäÝ…xÿÿÿ‰U؉ÿÿÿéãúÿÿÝØÝØÝØÝØÝEÐØÉ‹K‹C‰MØÙÄuLÜù‰…ÿÿÿÝEÈÞËÞúé³úÿÿÝØÝØÝØÝØÙàÝEÐØÉÙÄuLÜùÙÊÜMÈ‹CÞò‹S‰E؉•ÿÿÿéúÿÿÝØÝØÝØÝØÙÈuLÜ ¨pM‹S‹K‰ÐÞÉ9ÑNÁ‰E䉕ÿÿÿ‰MØÛEäÞùÝ$èÝXÙÌuLÝEÈØÉØÊÙÉÜMÐÞÊé,úÿÿÝØÝØÝØÝØÙÀ‹KÙà‹CÝE¸ØÊ‰M؉…ÿÿÿÙÄuLÜùÝEÈØËØñÞÂÝEÈÞÌÜûÝEÐÞËÞúÙÊÞÁÙÉéâùÿÿÝØÝØÝØÝØÙÀ‹CÙà‹SÝEÈØÉ‰E؉•ÿÿÿÙÄuLÜùÝE¸ØÌØñÞêÙÊÜMÐØòÙËÜMÈÞòÙÊÞáÙÉé˜ùÿÿÝØÝØÝØÝØ‹SÙà‹KÝE¸ØÉ‰U؉ÿÿÿÙÄuLÜùÙÊÜMÈÞòéfùÿÿÝØÝØÝØÝØÝE¸é~þÿÿÝØÝØÝØÝØÙàÝEÈØÉÙÄuLÜùÙÊÜMÐéžþÿÿÝØÝØÝØÝØÝØ9{h‹S‰•ÿÿÿÛ…ÿÿÿÙàØ5¼uL‹KÙî‰MØéþøÿÿÝØÝØÝØÝØÝØ9s #ÛCÙàØ5¼uL‹SÙîÙÉ‹K‰U؉ÿÿÿéÈøÿÿÝÙÛCÜäÙÌ‹K‹CÝUØÙÄÞâÙ̉…ÿÿÿÞãÝE¸ÞÌÙ¼uLÜüÙÊØÉÙvLÜùÝE°ØÍØñÞÂÙÍÞÁÝEØÜMȉMØÞóÙÉÜ ÿÿÿØôÙËÜM ÞôÙÊÞÃÞÂé[øÿÿ €¸«ªª*÷鉸Áù)Ñ ‰Mä+CÛEä‰EäÛEäé7÷ÿÿv‹K ¸VUUU÷鉸Áù)Ñ ‰Mä+CÛEä‰EäÛEäéŒöÿÿÙÉØvLé-ùÿÿØ%vLÙmàÛ]äÙmâ‹MäéKùÿÿ‹ÿÿÿƒÇ9ÏI÷ÿÿ‹s‰MÄé¨õÿÿÛCØ5¼uLéÚþÿÿ‹C‰…ÿÿÿÛ…ÿÿÿØ5¼uLé•þÿÿ9ÂNÂ÷Øé=ûÿÿ‹M؃À…É‹MØIEØÁø‰EäÛEäØéÙáéËùÿÿ¸«ªª*÷ê‹…ÿÿÿÁø)‰UäÛEäÝøuLØÉßí‡6ùÿÿÝÜÙÉÙÊÙËëÝÜÙÉÙÊÙËÛëv:ÝØÝØÝØÝE°ØÉÙÐuLÜùÙÊÜM Þòé÷ÿÿÙàÝE¸ØÉÙÄuLÜùÙÊÜMÈÞòéûöÿÿÝÛÙÉÙÊßévÜÉÙÐuLÜúÝ… ÿÿÿÞÊÞùÙÉéÖöÿÿÝØÝØè]U¹‰Mˆ‰ÂÁú÷ùBö‰EäÛEäÝxÿÿÿè:U‹Mˆ‰ÂÁú÷ùƒê ‰Uäé•ûÿÿ‹MÄé¯þÿÿÝØÝ$Ý]ˆè(UÝEˆÙÉéIõÿÿÝÙÝ$Ý]ˆèUÝEˆÙÉéVùÿÿÝØÙÉÝ$ÝxÿÿÿÛ½hÿÿÿèïTÛ­hÿÿÿÝ…xÿÿÿÙÊéûøÿÿÝØÝ$èÒTéJùÿÿÝØÝ$ÙËÝ]ˆÙÊÝxÿÿÿÙÉÝhÿÿÿÝXÿÿÿè¨TÝ…XÿÿÿÝ…hÿÿÿÝ…xÿÿÿÝEˆÙÌéôÿÿÝØÝ$ÙËÝ]ˆÙÊÝXÿÿÿÙÉÝHÿÿÿÝ8ÿÿÿègTÝ…8ÿÿÿÝ…HÿÿÿÝ…XÿÿÿÝEˆÙÌé÷ôÿÿÝØÝ$ÙÌÝ]ˆÙÉÝxÿÿÿÙÊÝhÿÿÿÙÉÝXÿÿÿÝ8ÿÿÿèTÝ…8ÿÿÿÝ…XÿÿÿÝ…hÿÿÿÝ…xÿÿÿÝEˆÙÍÙÉÙËÙÊÙÉéˆôÿÿÝØÝ$ÙËÝ]ˆÙÉÝxÿÿÿÙÉÝhÿÿÿÝXÿÿÿèÏSÝ…XÿÿÿÝ…hÿÿÿÝ…xÿÿÿÝEˆÙÌÙÉÙËÙÊÙÉéºóÿÿÝØÝ$ÙÌÝ]ˆÙËÝxÿÿÿÙÊÝhÿÿÿÙÉÝXÿÿÿÝHÿÿÿè~SÝ…HÿÿÿÝ…XÿÿÿÝ…hÿÿÿÝ…xÿÿÿÝEˆÙÍéRóÿÿÝØÝ$èRSéúòÿÿÝØÝ$ÙÊÝxÿÿÿÙÉÝhÿÿÿÝXÿÿÿè-SÝ…XÿÿÿÝ…hÿÿÿÝ…xÿÿÿÙËé¥òÿÿÝØÝ… ÿÿÿÝ$ÙÍÝ]ˆÙÌÝxÿÿÿÙËÝhÿÿÿÙÊÝXÿÿÿÙÉÝHÿÿÿÝ8ÿÿÿèÙRÝ…8ÿÿÿÝ…HÿÿÿÝ…XÿÿÿÝ…hÿÿÿÝ…xÿÿÿÝEˆÙÎé)óÿÿ´&U‰å‹U]‹B9BNBô&¼'U‰å‹E]‹@Ãt&U‰åƒìxEø‰EÔE´‰$ÇḚ´KÇEÐÔ»KÇEØJ“@‰eÜè1°‹U‹M ‹EÇÇBÛE ØÈÇB‰J‰BÛEØÈÞÁÙÀÙúÛèŠ4ÝÙÙ}®‹MØvL·E®´ f‰E¬‹EÙm¬ÛXÙm®‹@ÇA ‰ÂÁêÑø‰A‹A‰ÂÁêÑø‰A ‹M…Ét‹EÙîÝ‹EÇD$‰$èšðÿÿ…À‰Eôt#ÇD$ÇD$ðtLÇ$ÀWLÇE¸è­ ‹U…Òt ‹UÙ vLÝ¡œ&NÇE¤ ÇE¨ƒÀ ‰E é§…Àt‰‹UƒÀ‰BƒE¨‹U¨‹M‰T$‰ $èðÿÿ…À‰EôtNÇD$ÇD$uLÇ$ÀWLÇE¸葬 ‹E¤Ç$ÀWL‰D$è'ÇD$ÇD$.uL‰$èf¬ ‹U ‰$èËP‹E…Àt‹E¨‹MƒÀ‰E°ÛE°Ø5ÈuL݃E¤‹Uô…Òt2‹M‹A;A…Cÿÿÿ‰D$‹EMô‰L$ÇE¸‰$è&N é0ÿÿÿ‹U‹‹R9Єä)ÂÁúƒú‰U¨††‹@H‹M‰A ÇD$ÇD$ƒuLÇ$ÀWLÇE¸賫 ‹E¨Ç$ÀWL‰D$èð‰E¨ÇD$ÇD$ŸuL‰$è…« ‹U¨‹‹@ô‹D|…À‰E¤„‹M¤€yt2¶A'‹M¨¾À‰D$ÇE¸‰ $èèü‰$èðþE´‰$è%®ÉËE¤ÇE¸‰$èñ½‹U¤‹ÇD$ ‰$ÿPë«ÇD$;ÇD$0uLÇ$€VLÇE¸èéª ¡€VL‹@ô‹€üVL…À‰E¨tq‹E¨€xt2¶@'¾À‰D$Ç$€VLÇE¸èMü‰$èUþÇ$è‰N‹M¨ÇE¸‰ $èW½‹U¨‹ÇD$ ‰$ÿPë«ÝØÝ$èÐNé¿üÿÿèµ èµ Ç$luLÇE¸è&½ ƒÅ‹E¼‹U‰E¨‰$èÒM ‹M¨ÇE¸ÿÿÿÿ‰ $è°U‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÚ»KÇEè”@‰eìèA¬¡ pM…À‰EÀtEĉ$èʬ‹EÀÉÃt&Ç$$ÇEÈÿÿÿÿè] ÇEȉE¼‰EÀ‹E‰D$ ‹E ‰D$‹E‰D$‹E¼‰$è€ûÿÿ‹E¼£ pMEĉ$èm¬‹EÀÉÃÅ‹ẺEÀ‹E¼‰$èd ‹EÀÇEÈÿÿÿÿ‰$èB¯fU‰åƒìÇ$¤pMè®c Ç$À@è¢{ÿÿÝvLݨpMÉÃU‰åƒìÇ$´pMè¾k Éö¿U‰åWVSƒì,‹]ÇD$ÇD$ÈÇ$,è¸þÿÿÇD$ÇD$ÈÇ$,‰Æèzåÿÿ‰4$‰Çèðëÿÿ‰C‰4$èÕëÿÿ‰C ‰<$èzæÿÿ‰4$‰EäèÏëÿÿ‹Uä)‰ÐÁêÑø‰C‰<$èeæÿÿ‰4$‰Eäèšëÿÿ‹Uä)‰ÐÁêÑø‰CÇ$°èüÜÿÿ‰{ÇC$ÇC(‰C ‹C ‰ÂÁêÑøC‰‹C‰ÂÁêÑøC‰Cè^L1ÒÇCÆC@ƒøÿÙî“ÂÝS8‰S,÷Ò‰S0Ý[HƒÄ,[^_]ÃU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàà»KÇEè@–@‰eì誡°pM…À‰EÀtEĉ$芪‹EÀÉÃt&Ç$PÇEÈÿÿÿÿè ÇEȉE¼‰EÀ‰$èhþÿÿ‹E¼£°pMEĉ$èEª‹EÀÉÃÅ‹ẺEÀ‹E¼‰$è< ‹EÀÇEÈÿÿÿÿ‰$è­v¼'U‰åWVSEè쌉EÔE´ÇḚ´KÇEÐæ»KÇEØ¡™@‰e܉$è;©€=ÀpM„n€=ÈpM„"‹]‹U ‹E+E +U9] ‹u‹MNЋE+E+M9uNÈ1À9] ‰ÏžÀ1Û9uDÿžÃ ×\ÿ„Û9ÊŽí‹u¯ð‰u¤‹u ¯ð9u¤Œ»‰M°ÛEÛE°‰U°‹M ÛE°Þù‹ÐpM‰]°‰Ã‹=ÔpM¯Ø‹u ‰U˜¯È‹U ‰}œ‰E ‰]”ÛE°ÞÉÙPvL‹~9×S~ 9×~L‰Ð+E Ù}®‰ÃÁû‰ß1Ç)߉}°·}®ÛE°ØÊ‰ø´ f‰E¬ØÃØÁÙm¬Û]°Ùm®‹^‹}°‰]¨9ß| ^9ߌM”U ‰Ï+}”;}¤~–ÝØÝØÝØE´‰$è¨ÄŒ[^_]Ãt&¯ó‰u˜‹u¯ó9u˜|Õ‰M°‹5ÔpM‰ßÛE°¯û‰U°‹MÛE°ÛE ÙÉÞò‰u‹5ÐpMÙÙ}®¯Ë‰E°1À‰]¤·U®¯Þ¯u‰} ‹}¶ ‰]”f‰U¬‰u„ÛE°ÞÊÙPvL‰Ã‹uÁû‰Ú1Â)ÚƉU°ÛE°ØËØÂØÁÙm¬Û]°Ùm®‹U°‹_9Ú|_ 9Ú}‹_9ó_9óÕt&M ‹U”U„E¤‰Ê+U 9U˜}ÝØÝØÝØéÿÿÿÇ$ÈpMèƒ …À„Êýÿÿ‹M‹AÇE¸‰$èvâÿÿ£ÐpMÇ$ÈpMèÕ éŸýÿÿÇ$ÀpMèD …À„~ýÿÿ‹U‹BÇE¸‰$èGâÿÿ£ÔpMÇ$ÀpMè– éSýÿÿ¯}˜‹]‹EœM”×U ‰¸‰Ï+}”;}¤ŽóýÿÿÝØÝØÝØéXþÿÿf‹u‹]U„‰4“éÿÿÿƒÅ‹E¸‹M¼…À‰M¨tƒèt  Ç$ÀpMèì ‹]¨ÇE¸ÿÿÿÿ‰$誩Ç$ÈpMèÎ ‹u¨ÇE¸ÿÿÿÿ‰4$茩¶¿U‰åWVSìì‹]€{@t&ÝC8ÜCHÝS8ÝXvLÙÉÛéÝÙ†Ð ÝØÙîÝ[8ÆC@‹C ‰$èúÙÿÿ‰Eœ‹C ‰$èlÚÿÿ…ÀxHÇ‹{ Áø‰E€‹C9ljƉEÀ¸ýÿN÷‰ÂÁú÷þ‰EÜ‹C$…À…”‹EÀº«ªª*ÁèEÀÑø‰Eà‰ð÷êÛEàÁþÝ])ò‰UàÛEàÝ] ÝC8Ý$ÝHÿÿÿè G‰øÁèøÑø‰EàÝE ÞÉÝUÐÝEÞÁÝ]¸ÛEàÝ]ˆÝ…HÿÿÿÝ$èøF‹UÀGÿƒê‰UÈÝE ÞɉE ÝU¨ÝEˆÞÁÝE¸ÜeÝEˆØêÙÀÙàÝ]°ÙîÙÊÛêÝÚ‹\ ÙÂÙàØòÛE ØäØóÙîÛê—Àßé—…xÿÿÿÙîÝE°ßéÝØz„N ÝE¸ÙàÜu°ÛEÈÜe¸Üu°ÙîÛê—Áßé—‰քÀtÝÛÙÉÙÊÙTvLÙËÙÊÙÉ€½xÿÿÿtÝÚÙÉÙTvLÙÊÙÉ„Ét ÝÙÙTvLÙɉñ„ÉtÝØÙTvLÙÊëfÙÊÛëÛÓÝÛÙÉÛéÛÑÝÙÛéÛÑÝÙÙTvLÙÉÛéÝÙ‹P Ù}æÙÂØÉ·EæØÄ´ f‰EäÙmäÛ]àÙmæ‹Eà…Ày t&ƒÀuûÜM°9E WÿLÂÜE¸ÙmäÛ]àÙmæ‹Uà…Òy ƒÂuûÙÉëÙÉ‹uÀÙà9UÈÙîÙÉNÿLÑÛéÝÙz„S ÙÂÙàØñÛE ØäØòÙîÛê—…pÿÿÿßé—Á‰ÎÙîÙÌÛìÝÜz„: ÝE¸ÙàØôÛEÈÜe¸ØõÙîÛê—E°ßé—…xÿÿÿ€½pÿÿÿtÝÛÙÉÙÊÙTvLÙËÙÊÙɉñ„ÉtÝÚÙÉÙTvLÙÊÙÉ€}°t ÝÙÙTvLÙÉ€½xÿÿÿt ÝØÙTvLÙÊëÙÊÛëÛÓÝÛÙÉÛéÛÑÝÙÛéÛÑÝÙÙTvLÙÉÛéÝÙ‹á ÜÉÙÉÞÃÙÊÙmäÛ4ÿÿÿÙmæ‹4ÿÿÿ…Éy‹4ÿÿÿvƒÁuû‰4ÿÿÿÞÉ‹µ4ÿÿÿ‹4ÿÿÿ9u wÿÜE¸Mñ‰µ4ÿÿÿÙmäÛ]°Ùmæ‹u°…öy‹u°‹4ÿÿÿƒÆuû‰u°‰4ÿÿÿÝEÜeЋu°9uÈ‹uÀÝEˆÜe¨Nÿ‹u°ÝEØêMΉM°ÝEˆØêÝUÐÙàÝ]¨ÙîÙÉÛéÝÙz„û ÙÁÙàØñÛE ØãØòÙîÛê—Áßé‰Î—E¸ÙîÝE¨ßéÝØz„á ÙÄÙàÜu¨ÛEÈØæÜu¨ÙîÛê—Eßé—Eˆ‰ñ„ÉtÝÛÙÉÙÊÙTvLÙËÙÊÙÉ€}¸tÝÚÙÉÙTvLÙÊÙÉ€}t ÝÙÙTvLÙÉ€}ˆtÝØÙTvLÙÊëvÙÊÛëÛÓÝÛÙÉÛéÛÑÝÙÛéÛÑÝÙÙTvLÙÉÛéÝÙ‹O ÙÁØÉØÃÙmäÛ]¸Ùmæ‹M¸…Éy‹u¸‹4ÿÿÿƒÆuû‰u¸‰4ÿÿÿÜM¨‹u¸‹M¸9u wÿØÃMñ‰u¸ÙmäÛ]¨Ùmæ‹u¨…öy‹4ÿÿÿ‹u¨ƒÆuû‰4ÿÿÿ‰u¨‹MÀÙà‹u¨ÙîÙÉ9uÈqÿ‹M¨MñÛéÝÙ‰u¨z„ÎÙÁÙàØñÛE ØãØòÙîÛê—Áßé‰Î—EÙîÝEÐßéÝØz„¹ÙÄÙàÜuÐÛEÈØæÜuÐÙîÛê—Eˆßé—…xÿÿÿ‰ñ„ÉtÝÛÙÉÙÊÙTvLÙËÙÊÙÉ€}tÝÚÙÉÙTvLÙÊÙÉ€}ˆt ÝÙÙTvLÙÉ€½xÿÿÿt ÝØÙTvLÙÊëÙÊÛëÛÓÝÛÙÉÛéÛÑÝÙÛéÛÑÝÙÙTvLÙÉÛéÝÙ‹äÜÉÙÉÞÂÙÉÙmäÛ]àÙmæ‹uà…öy‹4ÿÿÿfƒÆuû‰4ÿÿÿÜMÐ9u ÿL÷ÞÁÙmäÛ]ÐÙmæ‹MÐ…Éy‹}Ћ4ÿÿÿƒÇuû‰}Љ4ÿÿÿ‰Uà‹MÐÛEàÝxÿÿÿ‰EàÛEàÝpÿÿÿÛE¨ÝhÿÿÿÛE¸Ý`ÿÿÿÛE€Û…4ÿÿÿÜ¥pÿÿÿ9Mȉuà‹MÀØñyÿ‹MÐMù‰}ÐÝ] ÛE°Ü¥xÿÿÿØñÝ]ÈÛEàÜ¥`ÿÿÿØñÝ]¸ÛEÐÜ¥hÿÿÿÞñÝ]°ÝE ØÈÝEÈØÈÙÁØÁÙÀÙúÛ芿ÝÙÜ}ÈÝ]ÞÁÙÀÙúÛ芚ÝÙÜ} ÙàÝ]ÐÝE¸ØÈÝE°ØÈÙÁØÁÙÀÙúÛèŠKÝÙÜ}°Ý]ˆÞÁÙÀÙúÛèŠ&ÝÙÜ}¸‹}€ƒï…ÿÙàÝ]¨Ž¡‰}€‹}œ1ö¶‰uà¿·ƒÆÛEàÝEÈØÉ‰ÂÁú÷}ÜÜ…xÿÿÿÝE ØÊÜ…pÿÿÿ‰Eà¿·ÛEà‰ÂÁú÷}܉Eà‹C,ÛEàÛCÛCÝ]ÀÝEÈØÅÙ}æ‰D$ÝEÐØË·Eæ´ ÞÁf‰EäØÁÙmäÛ\$ÙmæÝE ØÄÙÊÜMÞÂÙÉÜEÀÙmäÛ\$ Ùmæ‰$ÝEÐØÊÞÄÞÃÙÊÙmäÛ\$ÙmæÙÉÜMÞÁÜEÀÙmäÛ\$ÙmæÝHÿÿÿè&ôÿÿ¿D·þ‰ÂÁú÷}ÜÝ…HÿÿÿÝE°ØÉÜ…hÿÿÿÙÉÜM¸Ü…`ÿÿÿ‰Eà¿D·ÛEà‰ÂÁú÷}܉Eà‹C0ÛEàÛCÛCÝE°ØÆÙ}æ‰D$ÝE¨ØÌ·Eæ´ ÞÁf‰EäØÂÙmäÛ\$ÙmæÝE¸ØÅÙËÜMˆÞÃÜÂÙÊÙmäÛ\$ ÙmæÝE¨ØËÞÅÞÄÙËÙmäÛ\$Ùmæ‰$ÜMˆÞÁÞÁÙmäÛ\$Ùmæèjóÿÿ;u€ŒqþÿÿëÝØÄì[^_]ÃfƒøuîÝC8ÙÀØÁÜhvLÝ$Ý8ÿÿÿè¨>‹E€ƒè…ÀØPvL‰EÝUÈݸpMÝ…8ÿÿÿ~¯ÛE€…öÝUˆÜ=pvLFHðÁþ‰u 1öÝ]€éàÙÉØPvLÙ}æ·Eæ´ f‰EäÙmäÛ]àÙmæ‹}àÝEÀÝ$ÝHÿÿÿè8>ÝE°ÜMÈÞÉÜEÐÙîÙÉÛéÝÙÝ…Hÿÿÿ†©ÙÉØPvLÙ}æ·Eæ´ f‰EäÙmäÛ]ÐÙmæÛCÝ]ÈÝ$ÝHÿÿÿèß=ÜM¸ÜEÈÙîÙÉÛéÝÙÝ…Hÿÿÿ†MÙÉØPvLÙ}æ·Eæ´ f‰EäÙmäÛ]àÙmæ‹EàÝEÀÝ$ÝHÿÿÿ‰…Dÿÿÿè=‹…DÿÿÿÜM°ÜEÈÙîÙÉÛéÝÙÝ…Hÿÿÿ†åÙÉØPvLÙ}æ·Uæ¶ f‰UäÙmäÛ]àÙmæ‹Uà‹K,‰D$ÝHÿÿÿ‰T$‹UЉL$‰|$‰$‰T$ è¬ñÿÿ‹Mœ¿D±þÝpvLÝ…Hÿÿÿ‰ÂÁú÷}ÜØÁÝ]ÈÜEÀÝ]ÀE ‰Eà¿D±ÛEàÝ]¸‰ÂÁú÷}ÜE ‰EàÛEàÝ]°ÛÝ]ÐݸpMÝ]¨ÝEÈÝ$èÇ<ÝE¨ÜM¸ÞÉÜEÐÙîÙÉÛéÝÙ†ØPvLÙ}æ·Eæ´ f‰EäÙmäÛ]àÙmæ‹}àÝEÀÝ$è„<ÝE°ÜM¨ÞÉÜEÐÙîÙÉÛéÝÙ†»ØPvLÙ}æ·Eæ´ f‰EäÙmäÛ]¨ÙmæÛCÝ]ÐÝEÈÝ$è6<ÜM¸ÜEÐÙîÙÉÛéÝÙ†jØPvLÙ}æ·Eæ´ f‰EäÙmäÛ]àÙmæ‹EàÝEÀÝ$‰…Dÿÿÿèò;‹…DÿÿÿÜM°ÜEÐÙîÙÉÛéÝÙ†ØPvLÙ}æ·Uæ¶ f‰UäÙmäÛ]àÙmæ‹Uà‹K0‰D$‰|$‰T$‹U¨‰L$‰$‰T$ èðÿÿ;u¹üÿÿÝC8ݸpMÝ]È‹Uœ‰uàÛEàÜuˆ¿²ƒÆ‰ÂÁú÷}Ü‹UœÜxvLÜ pvLE ÞÁ‰E࿲ÝE€ØÁ‰ÂÁú÷}ÜÝ]ÀÛEàÝ]¸E ‰EàÛEàÝ]°ÛÝ]ÐÝ$ÝHÿÿÿè;ÝE¸ÜMÈÞÉÜEÐÙîÙÉÛéÝÙÝ…Hÿÿÿ‡–üÿÿÙÉØ%PvLé‘üÿÿvÝ`vLßéÝØ†+óÿÿÙîÝ[8ÆC@éóÿÿfØ%PvLéëþÿÿt&Ø%PvLé‘þÿÿt&Ø%PvLé@þÿÿt&Ø%PvLéíýÿÿt&ÙÉØ%PvLéýÿÿvÙÉØ%PvLé®üÿÿvÙÉØ%PvLéRüÿÿv…žóÿÿÙTvL1ÀÙÀÆ…xÿÿÿé¥óÿÿt&ÙTvL1ö1ÉÙÀéÀóÿÿÙTvL1öÙÀÆ…pÿÿÿé¶ôÿÿÙTvLÙÀÆ…xÿÿÿÆE°éÎôÿÿÙTvL1öÙÀÆE¸éöÿÿÙTvLÙÀÆEˆÆEé'öÿÿÙTvL1öÙÀÆEé;÷ÿÿt&ÙTvLÙÀÆ…xÿÿÿÆEˆéO÷ÿÿ…ªóÿÿÝØÝØÝØÝØÇ$è>ý ÇvLÇD$ÇD$Ì:M‰$èÀ ÝØÝ$èn9éÍøÿÿÝØÝ$ÝHÿÿÿÝ8ÿÿÿèS9Ý…8ÿÿÿÝ…HÿÿÿÙÉÙÊéŒøÿÿÝØÝ$è49éYøÿÿÝØÝ$ÝHÿÿÿÝ8ÿÿÿè9Ý…8ÿÿÿÝ…HÿÿÿÙÉÙÊéøÿÿ…÷ÿÿÝØÝØÝØÝØéOÿÿÿ…«õÿÿÝØÝØÝØÝØé<ÿÿÿ…ôÿÿÝØÝØÝØÝØé)ÿÿÿfU‰åSƒì‹]€{@tƒÄ[]Ãè•8‰ÂÁú÷{(;S$uèƒ8‰ÂÁú÷{(9S$tî‰S$ƒÄ[]ö¿U‰åSƒì‹]ÝE €{@uÙîÙÉÛéÝÙzuÝØëÝØƒÄ[]Ãt&Ý]èè(8ÝEè‰ÂÜ=pvLÁêЃà)ÂD‰C‰EôØ PvLÛEôÞÉÆC@Ý[HÙîÝ[8ƒÄ[]ö¿U¸‰åWVSƒìl‹]ÝE ÝEÙîÛêšÂEЄÒuÝÚÙÉßéÝØšÂD„À„uƒÄl[^_]ÃÝØÙÉØ5€vLÙ„vLÙÀÙÊÛêÝÚsëÙÉÜéÙÉÛésöÝÙëÝØÙèÙʾÿÛê‡ÝÚÙÉÙÀÞÉØÈÙÀØ ˆvLØPvLÝ$ÙÉÝ]¸Ý]Èè_7Ù}æ·Eæ´ f‰EäÙmäß}ØÙmæ‹uØÝE¸ÝEÈÙÉÙmäÛ]ÔÙmæ‹UÔ‰ÑÁé ƒà)ȃè‰ÁÁù1È)ÁƒúA‰EÔÛEÔØÉ†¡ÙˆvLÜÊÙPvLÜÃÙËÝ$ÙÉÝ]¸ÙÉÝ]˜Ý]¨èÞ6ÝE¸ÝE¨ÞÉÝE˜ÞÁÝ$Ý]ÈèÆ6Ù}æÝEÈ·Eæ´ f‰EäÙmäß}ØÙmæ¹ÿ‹UØÙmäß}ØÙmæ‹uØÁâ‰ðÁàÐȉC,÷ЉC0ƒÄl[^_]Ãt&ÝØÙ}æ·Eæ´ f‰Eäé&ÿÿÿÿ$•K Éö¿U‰åWVSƒì\‹E‹X‹@‰$‰E¸è“¿ÿÿ‰$‰Ç艿ÿÿ‰$èY,‰Æ‹E¸€8„ޏ”¥‰ÂÁú÷ÿÙ}âÇE¼‰Eä·EâÛEäØ=wL´ f‰EàÙmàÛ]´Ùmâ‹}¼‰uȉދ]¼}´è«9øsÇ$èèë£è–9Øsâ‰ó‹uÈèˆ1Ò‰Uܺ‰E¼‹E¼‰EØßmØÙ wLÙÉßéÝØFU¼1ÿ‰U¼èø+‰ÂÁúÁêÐ%ÿ)ЉEÀèß+‰Á¸…ëQ÷é‰ÈÁøÙîÝ]ÈÁú)ÂiÂÈ)Á‰MÄëwÛEÀÝ]ÐÝEÈÝ$è¹+Ù}âÜMзEâ´ f‰EàÙmàß~ÙmâÝEÈÝ$è+Ù}âÜMзEâ´ f‰EàÙmàß\~ÙmâƒÇ‰$ÝèpMÝ]Ðè7¾ÿÿ‰EäÛEäÜ}ÐÛEÄÞÉÜEÈÝ]ȉ$è¾ÿÿ‰ÂÁêÑø9ÇŒoÿÿÿ‰$è¾ÿÿ‰t$‰$‰D$è1¼ÿÿ‹E¸€8…§þÿÿÇD$ ÇD$øvLÇ$ÀWL虆 ¡ÀWL‹@ô‹˜„ ¡ÀWL‹@ô‹˜3 Ç$P¼@è2KÿÿÉÃU¹ÿÿÿÿ‰åƒì ‰$‹dqM‰t$‰|$…Ûu‰È‹$‹t$‹|$‰ì]Ã…Àxë‹5pqM…ö~á‹=hqM‹‹Y9Ø|1Éë )Ø‹‹[9ÃÁ9Îí¹ÿÿÿÿë´1É…Òt®‰ëªv¼'%ÿÿÿUƒø‰åt&vƒø t=tƒøt1À]Ãør÷ƒøvƒøuí¸]öU‰åƒì¡pqM…À~!‹hqMƒè£pqM‹‚‰$ÿP ¡pqM…Àà¡hqMÇpqMÇlqM…Àt‰$èËÇhqMÉÃë U¸k‰å]öU¸ xL‰å]öU‰åƒì‹U‹EÇE€qMÇE‰ÄàK‹U ‰E ‰ÈàKÉé~´&¼'U‰åWVSƒìL¡dqM…À…ÇEäè~‹ÐàK1ÀÇEÌ…ÒtƒÀ‹<…ÐàK…ÿuò‰EÌÁà‰$èß…À£hqM„õ‹uÌÇpqMÇlqM…ö„Å1Ò1ö1Ûët‹pqM¡hqM‰UÄ‹…ÒtQ‹z‹J‰}Ô9ÏË‹z9ù‰}ÐŽ¡ƒ}Ôÿ‰2t‹}Ô÷‰zƒ}Ðÿt‹}Ð÷‰z‹}ÄÎ lqMƒÇ‰=pqMƒÃ;]Ì}O‹pqMljT$‰$ÿÐàK…À„mÿÿÿ‰EÈèþÿÿ‹EȃÄL[^_]Ãt&ƒÀ£dqMƒÄL1À[^_]ÃdqM1ÀƒÄL[^_]øøØÿÿë¾ÇD$ËÇD$HxLÇ$yLèZÇD$ÊÇD$HxLÇ$ÀxLè>´&¼'U¸ÄàK‰å]öU¸lzL‰å‹UúýØÿÿtA~AúÙÿÿ¸ {Lt2~úÙÿÿ¸h{Lt#Žú Ùÿÿ¸´{Lt¸Œ{L| …Ò¸>yLu>]ÃúöØÿÿ¸ÄyLtñ~múùØÿÿ¸zLtâú÷Øÿÿ¸àyLtÏúøØÿÿ¸zLtÂ…Ò¸ì{LºØ{LNÂ]ÃúÙÿÿ¸¨zLt¤ŽºúÙÿÿ¸åzLt‘¸ÓzLºûzLOÂ]ÃúòØÿÿ¸yyL„qÿÿÿ~@úôØÿÿ¸¨yL„^ÿÿÿ¸”yLº·yLOÂ]ÃúûØÿÿ¸7zL„>ÿÿÿ¸&zLºUzLOÂ]ÃúðØÿÿ¸FyL„ÿÿÿúñØÿÿ¸`yL…Kÿÿÿ]ô&úÙÿÿ¸2{L„óþÿÿ¸{LºD{LOÂ]ÃúþØÿÿ¸{zL„ÓþÿÿúÿØÿÿ¸”zL…ÿÿÿ]ö¿U¸ðØÿÿ‰åƒì‹ dqM‰$‹U‰t$…Éu‹$‹t$‰ì]ö‹pqMf¸Ù…Û~á‹5hqM1À‹9Qu ëЋ †9QtǃÀ9Ø|ñ¸Ùÿÿë¹v¼'U‰åƒìD…ÀÝE‰uø‰Ö‹U”Eï…ö”Eî‰]ô‰Ã‰}ütz€}ï…‹ƒøþt{…À¿ôØÿÿ‰«ÝØëI´&ÝØë>ÝØë:ÝØë6t&ÝØë.ÝØë*ÝØë&ÝØfë ÝØëÝØëÝØt&ëÝØë ÝØë¶Ý؉ø‹]ô‹uø‹}ü‰ì]À}ï¿ôØÿÿu¤‹ƒøþu…‹C¿ôØÿÿ…Àt•‹@Ý]؉UЉMÔ‰$è½þÿÿ‹UЋMÔƒøÿÝE؉Eä„pÿÿÿÇþÿÿÿ¡hqM‹Uä‹}‹‰€}îtI‹} ÇÿÿÿÿÇEÄÿÿÿÿ…ö„ª…Û„¢‹}Ä9}ä„–ÝØ¿÷ØÿÿéVÿÿÿt&ÇÿÿÿÿÇEäÿÿÿÿ‹ƒøþ„…À¿ôØÿÿˆûþÿÿ;lqMóþÿÿ‹U Ý]Øf¿þ؉MÔè-ùÿÿ…À‰EĈÿÿÿ¡hqM‹UÄ‹}ƒ~‹‰E艿òØÿÿŽâþÿÿ‹Ff¿öØètùÿÿ‹MÔ…ÀÝEØ„žþÿÿ‹F…À‰EÌ„<ÿÿÿ‹Uèf¿Ù‹R9P…þÿÿé$ÿÿÿ;lqMvþÿÿ‰MÔÝ]Øf¿þØè¥øÿÿ…À‰Eäˆ|þÿÿ¡hqM‹Uä‹}ƒ{‹‰E艿òØÿÿŽZþÿÿ‹Cf¿öØèìøÿÿ‹MÔ…ÀÝEØ„$þÿÿ‹C…À„¡þÿÿ‹Uèf¿Ù‹R9P… þÿÿé‰þÿÿ‹F¿ôØÿÿ…À„ýýÿÿ‹@Ý]؉MÔ‰$èúüÿÿ‹MÔƒøÿÝE؉EÄ„Þýÿÿ‹E ‹UÄ‹}Çþÿÿÿ¡hqM‹‰éNþÿÿÙ |L¿óØÿÿß釷ýÿÿÙ¤|LÙÉßéÝØ‡§ýÿÿ÷Eðÿf¿õØ…–ýÿÿ1ÿöE„Šýÿÿƒ}¿õØÿÿ„{ýÿÿ€}ît ¿õØÿÿékýÿÿ€}ïuðƒùÿ÷×çõØÿÿéSýÿÿU¸ðØÿÿ‰åƒì‰$‹dqM‰t$‹U …Ûu‹$‹t$‰ì]ö‹pqMf¸Ù…Û~á‹5hqM‹9Qt1Àë ‹ †9QtƒÀ9Ãñ¸Ùÿÿ빋E‰1Àë°U¸ôØÿÿ‰å‹U‹M + y]Ã;J}ù‹E‰1À]ô&¼'‹dqM¸ðØÿÿU‰å]…ÒEpqMô&‹ dqM¸ðØÿÿU‰å…Ét¡ uM…Àx;pqMºþØÿÿMÂ]øþØÿÿ]ô&¼'‹ dqM1ÀU‰å‹U…Éu]Ã…Òxú;pqMf}ð¡hqM]‹ƒÀÃU¸ðØÿÿ‰åS‹dqM‹U‹M …Ûu[]Ãt&…Òf¸Ùxñ;pqM}é…Éf¸ôØxá‹hqM‹“;J}Ó‹ÈëÍt&‹dqM¸ðØÿÿU‰å]…ÒElqMô&‹ dqM¸ÿÿÿÿU‰å…Ét‹ uM…Òx;pqM|]áhqM]‹‹@ö¼'‹dqM¸ÿÿÿÿU‰å…Òt‹ uM…Òx;pqM|]áhqM]‹‹@ö¼'U‰åƒì‹EUüè?õÿÿ‰Â1À…Òx¡hqM‹‹Uü‹@‹ÉÃt&U¸ðØÿÿ‰åVSƒÄ€‹ dqM‹]‹u ÝE…ÉÇEôÇEðÿÿÿÿÇEìÿÿÿÿuÝØë ´&ÝØƒì€[^]ô&Eì1ɉD$Eð‰ò‰D$Eô‰D$Ý$‰ØÝ]˜ÇD$ ÇD$èêùÿÿ…ÀÝE˜u³1Ò…Ût!‹EðUÈÝCÝ]؉EÈ‹C‰EÌ‹C‰EЋC‰Eà1É…öt!‹EìM¨ÝFÝ]¸‰E¨‹F‰E¬‹F‰E°‹F‰EÀ‹EôÝ\$ ‰L$‰T$‰$ÿP(ƒì€[^]Éö¼'U¸ðØÿÿ‰å쨋dqM‰]ôÝE‰uø‹] ‰}ü‹u…Ò‹}ÇEäÇEàÿÿÿÿÇEÜÿÿÿÿuÝØë ÝØë¶ÝØ‹]ô‹uø‹}ü‰ì]Ã…ÿ°ütàEÜ‹M‰ò‰D$Eà‰D$Eä‰D$‹E$Ý$Ý]ˆ‰D$ ‹E ‰D$‰ØèÕøÿÿ…ÀÝEˆu®…Ût!‹EàÝCÝ]ȉE¸‹C‰E¼‹C‰EÀ‹C‰EÐE¸1Ò…öt!‹UÜÝFÝ]¨‰U˜‹V‰Uœ‹V‰U ‹V‰U°U˜‹](Ý\$‹Mä‰T$ ‰D$‰\$$‹]$‰|$‰ $‰\$ ‹] ‰\$‹]‰\$ÿQ$…À…'ÿÿÿ‹‹ `qM‰`qM‰Jéÿÿÿë U‰å옉uø‹u ‰}ü1ÿÝE‰]ô‹]…ö‹1À…ÛE‹U(Ý\$ ‰D$‹EÇD$‰|$‰T$ ‹U$‰$‰T$‹U ‰T$èQþÿÿ‹]ô‹uø‹}ü‰ì]Ãt&Ý]˜èÈüÿÿ‰Âƒúÿ‰E¨¸ÿØÿÿtØ‹E‰]¬‰$‰E°èèüÿÿÇEÀÝ@0E¨Ý]¸ÝE˜é{ÿÿÿÝ]˜èHüÿÿ‰Âƒúÿ‰EȸÿØÿÿt˜‹E}ȉủ$‰EÐè¥üÿÿÇEàÝ@(Ý]ØÝE˜é5ÿÿÿ‹ dqM¸ðØÿÿU‰å‹U…Éu]Ã…Ò°ütø:E6'º]DÂÃvU¸ðØÿÿ‰åVSƒì‹5dqM‹]…öt…Û°üt;E6'ºD‹ `qM…Ét9Ëu ëMf9Ót‰Ñ‹Q…Òuó…ÀtƒÄ[^]ËS…À‰Quï‹s‰$ÿVƒøt…Àu݉$ÿV …ÀuÓ‰]‹ƒÄ[^]ÿà‹S‰`qMë·v¼'U¸ðØÿÿ‰åƒì‹dqM…Òtƒê1À…Ò‰dqMt ÉÉ$è2ÿÿÿ¡`qM…Àuïè”ñÿÿ1ÀÉÃU¸ðØÿÿ‰åSƒì‹dqM‹]…Òt…Û°üt;E6't ƒÄ[]Ãv‹C‰$ÿP…Àu¸ÙÿÿëãƒøuÞ‹E ‰CƒÄ1À[]Éö¼'U¸ðØÿÿ‰åSƒì‹ dqM‹]…Ét…Ût5;E6'°üt ƒÄ[]Ãv‹C‰$ÿP…Àt#ƒøuå‹C‰]‹@ƒÄ[]ÿà¸üØÿÿëδ&¸ÙÿÿëÀ‰ö¼'U¸ðØÿÿ‰åSƒì‹dqM‹]…Òt…Ût3;E6'°üt ƒÄ[]Ãv‹C‰$ÿP…ÀtƒøºÙÿÿDƒÄ[]Ãf¸üØÿÿëЋC‰]‹@ƒÄ[]ÿà‰ö¼'U¸ðØÿÿ‰åSƒì‹ dqM‹]…Ét…Ût3;E6'°üt ƒÄ[]Ãv‹C‰$ÿP…ÀtƒøºÙÿÿDƒÄ[]Ãf¸üØÿÿëЋC‰]‹@ ƒÄ[]ÿà‰ö¼'U¸ðØÿÿ‰åƒì‹ dqM‹U…Ét…Òt:E6'°ütÉËB‰U‹@Éÿà¸üØÿÿÉÃt&U¸ðØÿÿ‰åƒì‹ dqM‹U…Ét…Òt:E6'°ütÉËB‰U‹@Éÿà¸üØÿÿÉÃt&‹ dqM1ÀU‰å‹U…Ét…Òt :E6'JDÁ]ö¿U‰åƒì‹dqM‹E…Òt …Àt8E6'tÙîÉËP‰E‹BÉÿàU‰åƒì‹ dqM‹E…Ét …Àt8E6'tÙîÉËP‰E‹BÉÿàU¸ðØÿÿ‰åƒì(‹dqM‰]ô‹]‰uø‹u‰}ü‹} …Òt…Ût;;E6'°üt ‹]ô‹uø‹}ü‰ì]Ã1À…ötí…ÿt!‹C‰$ÿP…ÀtƒøºÙÿÿDÂëϸüØÿÿëȸ ÙÿÿëÁ‹C‰u‹uø‰} ‹}ü‰]‹]ô‹@ ‰ì]ÿàë U¸ðØÿÿ‰åƒì(‹ dqM‰]ô‹]‰uø‹u‰}ü‹} …Ét…Ût;;E6'°üt ‹]ô‹uø‹}ü‰ì]Ã1À…ötí…ÿt!‹C‰$ÿP…ÀtƒøºÙÿÿDÂëϸüØÿÿëȸ ÙÿÿëÁ‹C‰u‹uø‰} ‹}ü‰]‹]ô‹@$‰ì]ÿàë U‰åƒì‹dqM‹E…Òt …Àt8E6't1ÀÉËP‰E‹B(ÉÿàU‰åƒì‹ dqM‹E…Ét …Àt8E6't1ÀÉËP‰E‹B,ÉÿàU‰å‹E%ÿÿÿPÿ¸öØÿÿƒúw‹• |L]ÃU‰åƒì‹EÇ$@‰D$èK ƒìÉÃfU‰åƒì‹E…Àt ‰$è7 ƒìÉöU1À‰å]Éö¼'U‰åƒì‹E‰$è ƒìÉÃv¼'U‰åƒì(Eð‰$èû ƒì…Àu ǨuMÉÃßmðØ=À|LǨuMݰuMÉÃU‰åƒì8¡¨uM…Àuèœù1Ò‰Uä‰EàßmàÜ È|LÉÃEð‰$è¢ ßmðƒìÜ °uMÉÃU‰åƒì‹U ‰]ô‹M‰uø‹]‰}ü…Òu1À…ÉuE‹]ô‹uø‹}ü‰ì]Ë2‹Cƒþþ‹<°‹B‰Eð¸ôØÿÿtÚ€puX‹R…Òtǃ:¸ÙÿÿuÃzu½ëµ‹‹C‹qƒúþ‹¸ôØÿÿt¦€{qu3‹Q1À…Òt—ƒ:¸ÙÿÿuƒzºDÂé|ÿÿÿ‹uð°ò;w ~žémÿÿÿ;s°ò~Æt&é]ÿÿÿt&¼'U‰å‹E]‹€t…À”À¶ÀÃv¼'U‰å‹E]‹€xÃfU1À‰å]Éö¼'U1À‰å]Éö¼'U1À‰å]Éö¼'U1À‰å]Éö¼'U‰åS‰Ãƒì‹1À…Òt‰$èC ÇƒìƒøÀ÷Ð%øØÿÿ‹]üÉö¼'U‰åƒìƒE8Éé°/U‰åƒìÉé$þÿÿt&U‰åVSƒì ‹]ǃ|‹ƒx‹“XÝC0…ÀtO‰UôÛEôØ ˆ}LÙ}ò·EòÞñ´ f‰EðÙmðÛ]ôÙmò‹uô…ö ë+ƒî …ö~$Ç$ è|‹ƒxƒì…Àuàë ÝØ´&‹ƒT…ÀuV‹S|…Òt‹ƒü…Àt‹ǃ(‰$ÿRHƒì‹Cd…Àt‹ƒD…Àt ‹‰$ÿR(ƒìǃt1Àeø[^]É$èðöǃTƒì듉ö¼'U‰åƒì‹EÇ€€Ééçþÿÿ´&U‰åƒìx‰]ô‰Ã‰uøMà‰}ü‹€ü‰UЋ‰L$Mä‰L$‰$ÿRƒì …À‰Æu7‹Eä‹Mà)Áˆi‹»(…ÿuO‹»+ƒ…À8HÂ)Ï9ø‹UЉ‰ð‹]ô‹uø‹}ü‰ì]Ë‹(…Étƒƒ$‹Eà‰ƒ‰øëÍf‹“ “t£E؉M´‰$è‹EØ‹UÜ‹M´ƒì+ƒ“‰EÀ‹E؉UÄ‹U܉ƒ‰“‹Uä‰UÌ+“ ‰U¼ˆÏ‹»‹ẺúÁú‰U¤‰M´‰ƒ ‹EÀ¯E¤‰} ‰E¸‹EįÇE¸‹EÀ÷ç‰EÀ‹E¸‹ƒ‰UÄ‹“‰D$‹EÀ‰T$ ‹Uĉ$‰T$è)h‹M´+E¼‰ÂÁú÷ÿ…À~¯Ç‹UÌE¼ЉEÌ‹E¼‰ÂÁú÷»‰EÔ‹EÌÛEÔ܃8Ý›8é©þÿÿf‹»(‹…ÿ…Üþÿÿéˆþÿÿ´&‹»}¼é)ÿÿÿfU‰åWVS‰ÃÙî쬋pdÝU ÇEäÝU¨…öÇEàÝU°ÇEÜÇEØÇEÔÇEÐÇEÌÇEÈÇEÄÇEÀ…öÝ]ˆ1ö‹K|…Éu…öM‹Eäeô[^_]ÃUà‰Ø‹»$è‹ýÿÿ‹Eà‰ÂÁú÷»9»$tƒ‹p…öŽ&…ÀŽ9ÆOðS8‰U„{P‰$èH+èCúÿÿ‹ƒp‰<$‰D$E ‰D$ÝU¨ÜEˆÝ]°èD‹Sd1Éǃp…Ò…š‹C|…ÀucEäÇEä‰D$‰<$è=D‰E”‹S|‰ÁÛE”݃`ØÁ…ÒÝ›`…|ÝØ‹Cd…À…§‹E„‰L$‰$èÐ*‹Eäeô[^_]Ãt&‹“ü‹ÇD$‰EˆEÀ‰D$EȉD$EĉD$ẺD$ ¯³‰t$‹ƒ‰$‹Uˆ‰M€‰D$ÿR,ƒì …À„u‰D$ÇEäñØÿÿÇD$à|LÇ$èæÿÿ‹Cd‹M€…À„Yÿÿÿ‹ƒH1Ò¯ÁƒL÷³P‹ƒD‰“L‹]Ћ‰M€‰$‰\$‹]؉\$ ‹]Ô‰\$‹]܉\$ÿR,‹M€ƒìéÿÿÿv‹€DM¸‹Ùhÿÿÿ‰L$M¼‰L$‰$ÿRƒì …ÀÙ…hÿÿÿ…ÝØ‹u¸+³Lˆì‰u”ÛE”郋ƒDUЋ‰T$U؉T$UÔ‰T$UÜÇD$‰T$ ‹“H¯Ö‰T$‹“L‰$‰T$ÿQ ƒì …À„<ÇEäñØÿÿÇD$à|L‰D$Ç$èÝäÿÿ1Éé7þÿÿ¶1ö‰ò‰ðÁú÷»HÜ‹hÝ]ˆ‰Æé ýÿÿ‹EÄ1Ò÷³‰<$‰D$è9>‹EÌÇD$ ÇD$‰<$‰D$èê>‹EÀ…À„Œýÿÿ1Ò÷³‰<$‰D$èË?‹EÈÇD$ ÇD$‰<$‰D$è<@éTýÿÿ´&‹ƒ1Ò‹uÀ¯Áƒ÷³‹ƒü‰“‹Ýhÿÿÿ‰t$‹uȉM€‰$‰t$ ‹uĉt$‹ủt$ÿRL‹M€Ý…hÿÿÿƒì܃0Ý›0éýÿÿv‹EÔ1Ò÷³H‰<$‰D$‰E€è–:‹UÜÇD$ ÇD$‰<$‰T$è;‹MЋE€…Éu‰ÁéŒüÿÿ¶³Pé þÿÿt&‰È1Ò÷³H‰<$‰D$‰E€è·;‹EØÇD$ ÇD$‰<$‰D$èè;‹M€é6üÿÿ‰Æéûÿÿ‰ö¼'U‰åVSƒì@‹]SP‰$èZ9‹Sd…Òt'‹“D…Òt‹ÇD$‰$ÿP$ƒì‰Æ…ö…¬‹C|Ùîǃ€Ý“`…Àǃ|ǃpǃx…¡ÝØ‹ƒXÝC0Ù}ö…ÀPH·UöÁøiÀè¶ f‰UôÙmôÛ]ðÙmö‰Â‹MðÁú÷ùº ¹ƒø FÇD$‰\$ ÇD$På@‰L$‰$èïƒì…À‰ƒT„¼Çƒt1Àeø[^]Ãfƒød²dNЉÑÁù뫉ØÙ]Øèæùÿÿ…ÀuÙƒ‰$èÈÿ‹ƒüǃ ‹ƒìÙEØÝ›8ÇD$‰$ÿR4ƒì…À…¡‹ƒü…À„ÿÿÿ‹ÇD$ ÇD$ÇD$‰$ÿR0ƒì…Àulǃ(éÊþÿÿǃxÇD$à|LÇD$Ç$è3áÿÿeø¸ñØÿÿ[^]ô&‰t$ÇD$à|LÇ$èáÿÿeø¸ñØÿÿ[^]ÉD$ÇD$à|LÇ$èäàÿÿ¸ñØÿÿéÑþÿÿv¼'U‰åƒìh‰]ô‹]‰uø‰}ü…Ût7‹ƒx…Àt-‹ƒ€…Àt6ǃx‹ƒx…Àu‹C…Àt‹S‰$ÿЋ]ô‹uø‹}ü‰ì]Ât&‹ƒ|…À„G‹K|…ÉtµUÔ‰ØÇEäÇEàÇEÜÇEØèUöÿÿ…À…õ‹EÔ…À„ê‹“üuØ‹ ‰t$uà‰t$u܉t$uäÇD$‰t$ ‰D$‹ƒ‰$‰D$ÿQ,ƒì …À…Ÿ‹EÜÇD$‰D$‹Eä‰$èEû‹Eà1É…Àt‹UØÇD$‰$‰T$è%û‹Mà‹ƒ1Ò‹uÜ‹}Øðø÷³‹ƒü‰“‹‰L$ ‹Mä‰|$‰t$‰$‰L$ÿRL‹EÔ‰ÂÁú÷»ƒì‰EÄÛEÄ܃0Ý›0݃8݃`ÙÉßéÝØ‚„þÿÿéuþÿÿ‰Øè÷ÿÿ…Àf„nþÿÿǃ|é_þÿÿt&¼'U‰åSƒì‹]‹ƒü…Àt&‹‰$ÿRH‹ƒü‹ƒì‰$ÿRǃüƒì‹ƒD…Àt&‹‰$ÿR(‹ƒD‹ƒì‰$ÿRǃDƒì‹ƒ@…Àt‹‰$ÿRǃ@ƒì‹ƒø…Àt‹‰$ÿRǃøƒìCP‰$è4‰$è%B‰$è½ðÿÿ1À‹]üÉöU‰åWVSìì‹E‹]ÝE…À…Ç…˜þÿÿÇ…œþÿÿÇ… þÿÿ…Û„•‹}‹‹KÝC‹W‹{ƒøþØÉ‹‚Ù½Æþÿÿ‰”þÿÿ·Æþÿÿ‰½þÿÿµ f‰ÄþÿÿÙ­Äþÿÿß½¸þÿÿÙ­Æþÿÿ‹µ¸þÿÿ‰µŒþÿÿ¾ôØÿÿt#€zq…(‹C…À„8ƒ8¾Ùÿÿt>ÝØë*ÝØë&¶ÝØëÝØëÝØët&ÝØë ÝØëÝØ¶eô‰ð[^_]öƒxuÊö@ „à‹@‰…xþÿÿéØf‹EÙÀ¾ôØÿÿ‹U‹8‹B‹Uƒÿþ‹ ¸‹E‹R‹@‰•œþÿÿ‰… þÿÿ‹EÜHÙ½Æþÿÿ·…Æþÿÿ´ f‰…ÄþÿÿÙ­Äþÿÿß½¸þÿÿÙ­Æþÿÿ‹…¸þÿÿ‰…˜þÿÿ„Dÿÿÿ€yp… ‹U‹B…À„ƒ8¾Ùÿÿ…"ÿÿÿƒx… ÿÿÿö@ „æ‹@‰…|þÿÿécþÿÿÇ…ŒþÿÿÇ…þÿÿÇ…”þÿÿ‹U$¾õØÿÿâÿÿ…Úþÿÿ‰•dþÿÿÝhþÿÿf¾øØÇ$ˆèjîÿÿ‹•dþÿÿ…ÀÝ…hþÿÿ‰…ˆþÿÿ„¨þÿÿ‰Ç¹b‰Ðó«‹}(…ÿ„‹EÝhþÿÿ‹U,‹M(‹½ˆþÿÿƒÀ,‰T$ ‰L$‰D$‰<$èN?Ý…hþÿÿ‹…ˆþÿÿÝT$ÝhþÿÿƒÀ8‰$è=‹uÇ…€þÿÿ…öÝ…hþÿÿt$ÝØ‹M‹AÇ$‰D$èNR‰…€þÿÿÝ…hþÿÿ…ÛÇ…„þÿÿt%‹CÝhþÿÿÇ$‰D$èR‰…„þÿÿÝ…hþÿÿ‹E,ÝT$‹M Ýhþÿÿ‹U(‹½ˆþÿÿ‰D$8‹E$‰L$,‰T$4‹•„þÿÿ‰L$(‹þÿÿƒÇP‰D$$‹…”þÿÿÇD$0‰T$‹•€þÿÿ‰L$‹œþÿÿ‰D$‹… þÿÿ‰<$‰T$ ‰L$‰D$è°+…À‰Æt‹ˆþÿÿ‰ $è íÿÿéGýÿÿ´&‹ þÿÿÝhþÿÿ‰ $è‹,ÿÿÿÙ¨}LÝY8éÿÿÿ‹µ,ÿÿÿÇFÆFqéˆþÿÿÝØëÝØÙ¬}LÝ_8é"üÿÿ‰Î‹…,ÿÿÿ1ÿ‰µ0ÿÿÿ‰½4ÿÿÿß­0ÿÿÿÝX8éÌþÿÿÝØëÝØÙ°}LÝ_8éêûÿÿÝØëÝØÙ´}LÝ_8éÖûÿÿÝØÝØ‹µ,ÿÿÿÝ^8é’þÿÿ…À‰Æuž‹…,ÿÿÿÙ¨}LÝX8éxþÿÿ‹u‹Ç@ Ðõ@Ç@$è@Ç@(€Ù@C,ƒÃ\ÇD$0P*AÇD$,@*AÇD$(0*AÇD$$ *AÇD$ Û@ÇD$Û@ÇD$pÚ@ÇD$PÚ@ÇD$ Ü@ÇD$ Û@ÇD$ã@ÇD$0ç@‰$è†(ÇD$0°Ú@ÇD$, Ú@ÇD$(Ú@ÇD$$€Ú@ÇD$ `*AÇD$Û@ÇD$pÚ@ÇD$PÚ@ÇD$ Ü@ÇD$ Û@ÇD$ã@ÇD$0ç@‰$è(éZøÿÿU‰åƒì ‹U ‰$‹M‰t$‹]‰|$…Òu1À…ÉuB‹$‹t$‹|$‰ì]ÃöB ¸öØÿÿ‹ruã‹:°ôƒÿþtÚ‹C‹<¸¸òØÿÿ;w ʃzf¸ÙuÀë¸öA ¸öØÿÿ‹Qu°‹1°ôƒþþt§‹C‹°¸òØÿÿ;S—ƒyÀ÷Ð%Ùÿÿëˆt&U1À‰å]Éö¼'U1À‰å]Éö¼'U1À‰å]Éö¼'U1À‰å]Éö¼'U‰åÙî]Éö¼'U1À‰å]Éö¼'U1À‰å]Éö¼'U1À‰å]Éö¼'U1À‰å]Éö¼'U‰åSƒì‹]‹ƒŒ…Àt‰$èDA‹ƒŒ‰$è@‰]ƒÄ[]éÙÕÿÿ‰ö¼'U‰åƒìƒE8ÉéÐU‰åƒì‹EƒÀP‰$è|1ÀÉô&U‰åSƒì‹]CP‰$èÛ‰$èã&‰$è{ÕÿÿƒÄ1À[]ÃvU‰å쨋E‰]ôÝE‰uø‹]‰}ü…ÀubÇEغ1ÿ…Û„Ÿ‹C¾ôØÿÿ‹K‰EÔ‹ƒøþ…¢ÝØë ÝØëÝØëÝØt&ëÝØë ÝØë¶Ý؉ð‹]ô‹uø‹}ü‰ì]˾ôØÿÿ‹x‹Pƒùþt¿‹u‹v‹ ޾òØÿÿ;y °ƒxf¾Ùuª‰T$Ý]¸‰U´Ç$è9‹U´‰EØÝE¸éYÿÿÿÇEÐ1ÉÇEÔ÷E$ÿÿ¾õØÿÿ…lÿÿÿ‰U´Ý]¸f¾øØ‰M°Ç$èAÔÿÿ‹U´‹M°…À‰ÃÝE¸„Dÿÿÿ‹E(…À„<ÝØ‹E(‹u,‰$‰D$‹E‰t$ ƒÀ,‰D$èA%‹U´‹M°ÝE¸C8ÝT$‰$Ý]¸‰U´‰M°è0CP‹u,‰EÜ‹E(‹M°‹U´‰t$8‹u ‰D$4‹E$ÝE¸ÇD$0Ý\$‰t$,‰t$(‹uЉD$$‹EÔ‰L$‰T$‰t$‹u؉D$‹E܉|$‰t$ ‰$è)…À‰ÆtA‰$è‹Óÿÿéˆþÿÿ¶‹u‹v‹†¾òØÿÿ;Hiþÿÿ‹[…Û„ÝØ¾ÙÿÿéTþÿÿ‹U܉$è‡1Ò‰Uä‰Eà‹EÜßmàÝ[ ‰$è~1Ò‰Uä‹U ‰Eà‹E ßmàÝ[(ÝE¸Ý[0‰“ø‰é þÿÿ‹EÝ]¸‹u,‰U´‰M°ƒÀ\‰t$ ÇD$‰D$‰$èý#‹M°‹U´ÝE¸é·þÿÿ‹EÔÝ]¸‰U´‰M°Ç$‰D$è#7‹U´‹M°‰EÐÝE¸éþÿÿfU‰åSƒìDÇ$èmÒÿÿ…À‰Ã„5èN<…À‰ƒŒ„0‹E‰C,ÇCÇCÇC à}LÇCÿÿÿÿÇCÿÿÿÿÇCÇC  AÇC$@AÇC(pAƒÃ\‰$ÇD$0P*AÇD$,@*AÇD$(0*AÇD$$ *AÇD$ àAÇD$PAÇD$@AÇD$0AÇD$ AÇD$ AÇD$ðAÇD$AèŽ"ÇD$0AÇD$,€AÇD$(pAÇD$$`AÇD$ `*AÇD$PAÇD$@AÇD$0AÇD$ AÇD$ AÇD$ðAÇD$A‰$è&"1ÀƒÄD[]øøØÿÿëó´&‰$è8Ñÿÿ¸øØÿÿëÝU¸€‰å] t&U¸@€‰å] t&U¸@€‰å]Ât&U¸@€‰å]Ât&U¸@€‰å] t&U¸@€‰å]Ât&U¸@€‰å]Ât&U‰åƒìÇ$ø}Lè:܃ì…À£ÀuM„ÇD$~L‰$èÊÛº€Aƒì…ÀEСÀuM‰ÄuMÇD$~L‰$è¢ÛºAƒì…ÀEСÀuM‰ÈuMÇD$'~L‰$èzÛº Aƒì…ÀEСÀuM‰ÌuMÇD$=~L‰$èRÛº°Aƒì…ÀEСÀuM‰ÐuMÇD$S~L‰$è*ÛºÀAƒì…ÀEСÀuM‰ÔuMÇD$l~L‰$èÛºÐAƒì…ÀEСÀuM‰ØuMÇD$‰~L‰$èÚÚºàAƒì…ÀEЉÜuMÉÃÇÈuMAÇÌuM AÇÐuM°AÇÔuMÀAÇØuMÐAÇÜuMàAÉÃt&¼'U‰åƒì¡ÀuM…ÀtQÇÈuMÇÌuMÇÐuMÇÔuMÇØuMÇÜuM‰$èÚÇÀuMƒìÉÃU‰åƒìÝE Ùî‹EÙÀÙÊÛêÝÚvÙÉØ=Ð~LÝÝXÉÃÝØÝØÇD$>ÇD$¨~LÇ$À~Lè Ø‰ö¼'U‰å‹EÙîÝX]ÃvU‰åƒìèõÎÿÿ‹EÝXÉö¼'U‰åƒì(‰uø‹u ‰]ô‹]‰}ü…öt-èÂÎÿÿ1ÿÝØ~LÜKÙÉÜc‰uà‰}äßmàÜ ÞùÜ à~LÞÁÝ[‹]ô‹uø‹}ü‰ì]ö¼'U‰å‹E]Ý@ÃU‰åWVS‰Ãƒìl‹}‰UÄ‹‹E …Ò…‰ẼŒÇEÀ‰EЉM¸‰}´‹S‹{9}ÌF}Ì…Ò‰UÔÇEÈ„‰‹CL‰EȉE¼‹C …À„&‹Kt1À‹S‹1‰UØ…ö„c‰}Ü‹u¸‰Ú‹}¼‰Ãt&‹EЉD$‹E܉D$‹DÞ‰D$ ‹Þ‰<$‰U°‰D$‹EÔ‰D$ÿR$‹U°}Ø‹B¯DÞ¯EÜÞƒÃ9Zw¶‹}܉Ӌs,1À…öt‹K8…É„a‹CX‹‹¤‹UȉL$‹Kh‰L$‹Kd‰$‰|$‰D$‰L$ ÿ“ ‹Uăø‰„¸1É‹Cd‰}à‰Mä‹K,ßmàÜ‹˜…ÉÝØÁÝÜ@ÝX„‡‹ƒ„‹…Òt{‹C8‹SX…À…‹C4ÇEدljEÔ‰}܉׉ڋ]´1À‰Æ‹EЉ|$‰D$‹E܉D$‹E؉D$ ‹Dó‰D$‹ó‰U°‰$ÿR<‹U°}Ô‹B0¯Dó¯EÜóƒÆ9r,w¶‹}܉Ó}À)}Ì‹uÌ…ötZ‹UÄ‹ …É„;þÿÿ‹}´‹S,…Òt=‹ƒ„‹…Àt11ö‹ẺD$‹D÷‰D$‹÷‰$ÿS@‹C0¯D÷¯EÌ÷ƒÆ9s,wÑ‹UÌUÀ‹EÀƒÄl[^_]ËC41É‹S\‰}ԯljU؉׉EÜ1Àt&‹SXʉ‡ƒÀMÜ9Æwî‹}Ô‹EØéiþÿÿv‹C1É‹SP‹uÔ‰}ԯljUÜ‹UÈ‹}܉EØ1Àë‹SLʉ‡ƒÀMØ9Æwî‹Kt‹EÜ‹}ÔÇEÔ‹1‰EÈ1À…ö…ýÿÿ‰}܉ߋ]¼‰Æt&‹U܃Æ‹EÔ‰$‰T$‰D$ÿW(]Ø9wwá‰û‹}ÜéÆýÿÿ´&…ÀÇEÀ„ÿÿÿ‰EÌéÈþÿÿ‹C4‰M؉EÔé@þÿÿt&¼'U‰åWV‰ÎS‰Ãƒìl‹E‰U°“ŒÇE¼‰UЉEÈ‹CT‹‰EÜ‹EÈE܉UÌ9ІH‰×+}Ü)}È‹K …É„‹CL‹S‰EÄ‹C‰U؉EÔ‹Eܯ‹UÔ¯EÔEĉUÀ‹UÀ…Òtl1Ò‰}܉lj؉Ӵ&‹UЉT$‹U܉T$‹TÞ‰T$ ‹Þ‰<$‰E¬‰T$‹UÔ‰T$ÿP$‹E¬}Ø‹P¯TÞ¯UÜÞƒÃ9Xw¶‰Ã‹@T‹‹}܉E܉UÌ‹EÜø;ẺCT„›‹MÈ}¼…É…ÿÿÿ‹E¼ƒÄl[^_]ËCL‹S‰EÔ‹Eܯ¯UÌEÔ‰UØ‹S…Ò‰UÀ„Ç‹SP1ɉ}¸‰E´‹EÔ‰uÔ‹uÀ‰UÄ1Ò‹}Äë ´&‹CLȉ—ƒÂMØ9òrî‹}¸‹E´‹uÔÇEÔéðþÿÿ‹}ÈÇEÈé±þÿÿ‹E°‹…Àt ÇCTéPÿÿÿ‹CdÙî‹“¤ÝX‰T$‹Sh‰D$ ‹EÌÇD$‰T$‹UĉD$‰$ÿ“ ‹U°‹Kd‰1Ò‰}à‰UäßmàÜ‹˜ÜÝë‹SP‰UÄénÿÿÿvU‰åWV‰ÎS‰Ãƒì\‹@`‰UÈ‹UÇẺUÜ“Œ‰UÐ…À…‹EÈ‹…É…«‹S8…Ò…·‹S,…Ò‰UØ„¹‹K41Ò1À¯ ‹{\‰uԉδ&‹KXÑò‰ ‡ƒÀ;EØrî‹uÔ‹CdÙî‹“¤Ý‰T$‹Sh‰D$ ‰T$‹‰|$Ç$‰D$ÿ“ ‹Uȃø‰„B‹1É‹{d‰Mä‰EàßmàÜ‹˜ÜGÝ_‰C`…ÀuI‹C,1ÿ…Àt/‹U܉T$‹Dþ‰D$‹þ‰$ÿS@‹C0¯Dþ¯EÜþƒÇ9{,wÑ‹EÜEÌ‹ẼÄ\[^_]ËMÜ‹{8;EÜFÈ…ÿ„‘‹S4‹;‰UÔ‹S,)ljUØ‹EدUÔ¯×SX…ÀtW‰Ø1ÿ‰Ó‰Â‹EЉL$‰\$‰D$‹E؉D$ ‹Dþ‰D$‹þ‰UÀ‰Mĉ$ÿR<‹UÀ‹MÄ]Ô‹B0¯Dþ¯ÁþƒÇ9z,w´‰Ó‹C`MÌ)È)M܉C`…WþÿÿéPÿÿÿ‹;ÇE؉ú¯{4)¯S4SX‹C,‰}Ôéiÿÿÿ¶‹{Xé}þÿÿ‹C`éÕþÿÿ‹{\émþÿÿ´&U‰åW‰ÇVSƒìL‹X`…Û‰Þ„‹P|‹€€ …É„þŒ‰]ä‰Ó‰MÔ¶…Û„ê‹Eä9]ä‹„GÉEà‹G8…À„è‹G4‰EØ‹G,‹U؉EܯЋ+Eä¯Ð‹EÜWX…Àtv‹…À„é‰Ë1ö‰Mä‰ù‰×‰Êë‹Mä‹ññ…À„É‹MԃƉ|$‰L$‹Mà‰L$‹M܉L$ ‹K‰$‰UЉL$ÿR<‹UÐ}Ø‹B0¯C¯Eà9r,w«‹r`‰×‹Z|…Ûtn+]à‰_|+uà…ö‰uä‰w`t‹_|‹‡€…Ò…ÿÿÿƒÄL[^_]Ã9EäFE䋈‰Eà‹G8…À…ÿÿÿ‹ÇE܉¯G4+Uä¯W4WX‰EØ‹G,éÿÿÿ‹Eà)‡€ëÇD$®ÇD$è~LÇ$LèHδ&U‰åWVS‰Ãƒì|‹@p‰U¼‹SlÇEÀЅɉEÈu‹ƒè‰EÀ‰Øè-þÿÿ‹MÈ9MÀÇEă’{ƒŒ‰}¸‰EÔ‹{`…ÿul‹U¼‹2…ötc‰]Ü‹MÜ‹Q|…ÒtJ‹¹„‹K,…Ét31ö‰T$‹D÷‰D$‹÷‰U´‰$ÿS@‹U´‹D÷¯Â¯C0÷ƒÆ9s,wÏ‹}ÜÇG|ƒEÜ‹E¸9EÜu ‹sT‹‰÷9ò‰Ŭ涋Cl‹Kp…Ò„Ï‹UÌ)ú…À‰UÜ„‹Kt9‰M¤‰ÑGÈ‹S …Ò„Ï‹S‰UØ‹S‰UܯUد׋}ÜSL‰}Ћ}Ð…ÿtd‹}¤‰Ø1ö‰Ó‰Â‹EÔ‰L$‰D$‹D÷‰D$ ‹÷‰$‰U´‰M°‰D$‹E܉D$ÿR$‹U´‹M°]Ø‹B¯D÷¯Á÷ƒÆ9rw´‰Ó‹Bl‹‹sT‰UÌ…Àt?)ȉCl<1)MȉþMÄ9}̉{T‡ ÿÿÿ9}Ìt]‰Øè”üÿÿ‹UÈ9UÀ‚}þÿÿ‹EăÄ|[^_]Ã)KpëÁ‹SÇEܯ׋}̯{SL‰}Ø‹{‰}Ðé(ÿÿÿv‹Sx9MÜFM܉U¤éìþÿÿ‹K`…Éuœ‹M¼‹…Ò…âƒ{ …ä‹{…ÿ„ì‹EÌ1Ò¯C‹sP‰EÜ1À‹KLщ †ƒÀUÜ9ørî‰u؃{8…´‹{,…ÿ„¹‹UÌ1À¯S4‹s\‰UÜ1Ò‹KXщ †ƒÀUÜ9ør¤‹MÌ‹}؉D$‹Ch‰D$‹Cd‰L$‰t$‰<$‰D$ ÿ“ ‹;1ɉƋE¼‰0‹Cd‰}à‰MäßmàÜ‹˜ÝØÁÝÜ@ÝX1ÀƒþEÇÇCT‰C`é­þÿÿÇCTé¡þÿÿ‹{L‰}ØéBÿÿÿ‹sXérÿÿÿ‹sPé/ÿÿÿ‹s\ébÿÿÿ‰ö¼'U‰åWVSƒì,‹]öE,ÝE$Ý]à‹}0‹M8…á‹E4…ÿ‹U ÇCLÇCP‰C‹EÇCXÇC\‰;‰S‰C,‰KÇCxÇCtǃˆÇƒ„…A¸ƒùFE4ÇC ÇCDÇCH‰C‹E ÇCTÇC`…ÀÖ‹M…É޽‹E ‰$èNÀÿÿ…ÀŽÝ‹U‰C0‰$è8Àÿÿ…ÀŽÇ‰C4‹E,‹U ‰D$‹E‰T$‰$è$%‹U ‰C<‰$èæ'‹s4¯s¯u‰C@‹E÷ÐÁè‰C8‰4$èÀÿÿ…À‰CX„š‹S`…Ò…ï‹E…Àˆ‹EÁà‰$èæ¿ÿÿ…À‰ƒ„„h‹UЉƒˆƒŒ1ö‰$è|+‹E<‰ƒ ‹E@ÝEàØ=lL‰ƒ¤‰ðÝ›˜ƒÄ,[^_]Åɉ{u)‹E41Ò÷÷…ÒuÇC ÇCDÇCHé·þÿÿt&‹EÇC …ÀŽ‹u …öŽ…Éuo‹U4…Ò„ƒ‹u4‰ù‹E4¯÷ë ´&‰È‰Ñ1Ò÷ñ…Òuô‰ð1Ò÷ñ1ö9E4s‹M4‰]܉ÉÈ1Ò÷÷9ÖBòM49Ëwî‹]Ü;}4†‰sD1ÿÇCHëvÇCD1ö‰{H‰sT‰{`‹U‰$胾ÿÿ…À~‰C‹E‰$èq¾ÿÿ…À|‰Æ‹CL…Àt‰$訾ÿÿ‹CP…Àt‰$虾ÿÿ‹Ct…Àt‰$芾ÿÿ‹CX…Àt‰$è{¾ÿÿ‹C\…Àt‰$èl¾ÿÿ‹ƒ„…Àt‰$èZ¾ÿÿƒÄ,‰ð[^_]ÃÇCDÇCHépýÿÿ‹U,‰C‹E‰T$‹U‰D$‰$èá"‰C$‹E‰$è£%‹s¯s¯u ‰C(‹E÷ÐÁè‰C ‰4$èÒ½ÿÿ…À‰CL„ù‹{T…ÿ…‹u…öx%‹E Áà‰$è§½ÿÿ…À‰Ctt0‹U ЉCxéþüÿÿf‹U •‰$è~½ÿÿ…À‰CPu´&¾øØÿÿéÏþÿÿ¶‰sH‰÷1öÇCDé‰þÿÿ‹E<¾õØÿÿ…À„ÿÿÿ‹U…Òr¾õØÿÿéòþÿÿ‰t$ÇD$‰$è0ÆéWÿÿÿv‰t$ÇD$‰$èÆéøüÿÿ´&‹U•‰$èÞ¼ÿÿ…À‰C\…ßüÿÿé^ÿÿÿ¾øØÿÿé<þÿÿƒ} ~ˆ…ÿ„ˆûÿÿéwþÿÿÇD$tÇD$è~LÇ$#Lè5Æt&U‰åSƒì‹]‹CL…Àt‰$è—¼ÿÿ‹CP…Àt‰$舼ÿÿ‹Ct…Àt‰$èy¼ÿÿ‹CX…Àt‰$èj¼ÿÿ‹C\…Àt‰$è[¼ÿÿ‹ƒ„…Àt‰EƒÄ[]éD¼ÿÿt&ƒÄ[]Ãv¼'U‰åSƒì‹]‹SD‹CH…Ò‰ST‰C`u,…Àt"‹C4¯C¯C,‹SXÇD$‰D$‰$èèăÄ[]ËC¯C¯C‹SLÇD$‰D$‰$èÀÄ‹C`ë­vU‰å‹E]‹@DÃt&U‰å‹E]‹@HÃt&U‰å‹E ‹U…Àt‰Bl]ËB‰Bl]öU‰åƒì‹E‹P…Òt ‹@tÇÉÃÇD$ØÇD$è~LÇ$)LèÉĉö¼'U‰åƒì‹U‹E 9BvÁàBt‹U‰‹U‰PÉÃÇD$áÇD$è~LÇ$DLè€ÄU‰åVSƒì‹]‹U‹E …Ût;‹J9Ès;49ÎwP…Ût‹MÁà‹rBt1҃‰ñ‰XƒÀ9ÓwïƒÄ[^]Ãv‹Z‰ÙëÁÇD$òÇD$è~LÇ$dLè ÄÇD$óÇD$è~LÇ$ŒLèñÃU‰åƒì‹U‹E 9BvÁàBt‹UÇ@‰ÉÃÇD$ÇD$è~LÇ$DLè¯Ãë U‰å‹U ‹E‰Pp]ÃfU‰åƒì‹U‹E 9BvÁàBx‹U‰‹U‰PÉÃÇD$ÇD$è~LÇ$DLèPÃU‰åVSƒì‹]‹U‹E …Ût;‹J9Ès;49ÎwP…Ût‹MÁà‹rBx1҃‰ñ‰XƒÀ9ÓwïƒÄ[^]Ãv‹Z‰ÙëÁÇD$#ÇD$è~LÇ$dLèÝÂÇD$$ÇD$è~LÇ$ŒLèÁÂU‰åƒì‹U‹E 9BvÁàBx‹UÇ@‰ÉÃÇD$2ÇD$è~LÇ$DLèÂë U‰å‹E ‹U…Àt‰B|]ËB‰B|]öU‰åƒì‹E‹H,…Ét‹€„ÇÉÃÇD$EÇD$è~LÇ$ÁLè¶U‰åƒì‹U‹E ‹M9B,v…Ét/Áà‚„‹U‰‰PÉÃÇD$NÇD$è~LÇ$ÜLèÉÁÇD$OÇD$è~LÇ$ýLè­Á¶¼'U‰åWVSƒì,‹}‹E…ÿtO‹P,9U sN‹M 9Ñw`1Û…ÿ‹ut,f‹U ‰t$‰$‰EäƒÃ‰|$ ‰T$è@ÿÿÿ‹Eäp09ßwÖƒÄ,[^_]Ëx,‰úë­ÇD$`ÇD$è~LÇ$ €LèÁÇD$aÇD$è~LÇ$4€LèÿÀë U‰åƒì‹E‹U 9P,v‹MÇD$ ‰T$‰$‰L$è´þÿÿÉÃÇD$nÇD$è~LÇ$ÜLè¦À¶U‰å‹U ‹E‰€]Ãë U‰åƒì‹U‹E ‹M9B,v…Ét/Áà‚ˆ‹U‰‰PÉÃÇD$~ÇD$è~LÇ$ÜLè9ÀÇD$ÇD$è~LÇ$ýLèÀ¶¼'U‰åWVSƒì,‹}‹E…ÿtO‹P,9U sN‹M 9Ñw`1Û…ÿ‹ut,f‹U ‰t$‰$‰EäƒÃ‰|$ ‰T$è@ÿÿÿ‹Eäp09ßwÖƒÄ,[^_]Ëx,‰úë­ÇD$ÇD$è~LÇ$ €Lè‹¿ÇD$‘ÇD$è~LÇ$4€Lèo¿ë U‰åƒì‹E‹U 9P,v‹MÇD$ ‰T$‰$‰L$è´þÿÿÉÃÇD$žÇD$è~LÇ$ÜLè¿¶U‰åS1Ûƒì ‹E‹U ‹HT‰PdÝ€˜‰]ô1Û‰Mð‹H`ßmðØÉÜ*ÝÙîÝZ‰]ô‰MðßmðÞÉÜBÝZ‹UÇ@pÇ€€‰PhƒÄ []ô&¼'U‰åWVSƒìL‹]‹u ‹C…Àt:‹S,…Òt3‹St‹:…ÿt*‹“„‹ …Ét‹Kp‹“€KlS|9Ñ…ú´&ƒ>‡‹S …Òt`…À…È‹C|‹Kt‰ò‰D$‹ƒ„‰$‰Øè¼æÿÿ‰Ç‹C…À…?‹ƒ€…Àt‹Kx‰ò‰D$‹ƒˆ‰$‰ØèŒæÿÿǃÄL‰ø[^_]Ã…Àu<‹C|‰ò‹‹„‰$‰ØèÇëÿÿ‰Ç‹ƒ€…ÀtÑ‹‹ˆ‰ò‰$‰Øè©ëÿÿÇë»t&‹{,…ÿ„Õƒ{¹„FƒÄL‰ò‰Ø[^_]é6ïÿÿ¶‹{,…ÿ„‹C|1ÿ‹“€‰}ЉuȉUÔëB‹“„s|‰UÌ;EÄGEÄ…À„‹ỦD$‰Ø‰$‹UÈè¾åÿÿ))EÐ)EÔ„¤‹C|‹Kt‹1…ö„‹Sl…Òtl‹Sl{l‰UÄ…Àu‹ƒˆ³€‰EÌ‹ƒ€ë’v‹Cpé¿þÿÿ‹Clé‹þÿÿ‹Cl‰ò‹Kt‰$‰Øèžèÿÿ‰Ç‹Cp…À„·þÿÿ‹Kx‰ò‰$‰Øè‚èÿÿÇé¡þÿÿ‹Sp{p‹Kx‰UÄë‹UÔ1É}ä‰Uä‰UÄé|ÿÿÿ‹}ЃÄL[^‰ø_]ÃÇD$›ÇD$è~LÇ$l€LèA¼1Éé³þÿÿÇD$ ÇD$è~LÇ$è€Lè¼ÇD$ßÇD$è~LÇ$WLè¼U‰å‹E]‹H`…É”À¶Àö¼'U‰åWVSƒìL‹}‹E‹wl‹O ‹_t9ð‰òGÆ…É„©‹U ‹ ‹W‰UÜ‹W‰Uä1Òƒ}Üto—Œ1ö‰Uà‰ú‰Ï‰Ñ‹Uà‰D$‰T$‹Tó‰T$ ‹ó‰<$‰E؉MÔ‰T$‹U܉T$ÿQ$‹MÔ‹EØ}ä‹Q¯Tó¯ÐóƒÆ‹Q9òw²‹] ‰Ï‹wl‹ ‹_‰]ä¯Uä¯ÐÑ‹U ‰ ‰ò)‰WlƒÄL[^_]Ãt&‹M ‹w‹ …ö‰Mätà—Œ1ö‰Uà¶‹M䋱‹Mà‰D$‰L$‹Ló‰L$ ‹ ó‰$‰E؉UÔ‰L$ÇD$ÿW$‹EØ‹O‹UÔ¯ÈÊ‹M䉱‹W¯Tó¯ÐóƒÆ9ww¢‹Wl)‰WlƒÄL[^_]ÃfU‰åWVSƒìL‹}‹E‹w|‹O8‹Ÿ„9ð‰òGÆ…É„¦‹U ‹ ‹W,‰UÜ‹W4‰Uä1Òƒ}Üto—Œ1ö‰Uà‰ú‰Ï‰Ñ‹Uà‰D$‰|$‰T$‹U܉T$ ‹Tó‰T$‹ó‰E؉MÔ‰$ÿQ<‹MÔ‹EØ}ä‹Q0¯Tó¯ÐóƒÆ‹Q,9òw²‹] ‰Ï‹w|‹ ‹_4‰]ä¯Uä¯ÐÑ‹U ‰ ‰ò‰W|ƒÄL[^_]ËM ‹w,‹ …ö‰Mätã—Œ1ö‰Uà¶‹M䋱‹Mà‰D$ÇD$ ‰T$‰L$‹Ló‰L$‹ ó‰E؉UÔ‰ $ÿW<‹EØ‹O4‹UÔ¯ÈÊ‹M䉱‹W0¯Tó¯ÐóƒÆ9w,w¢‹W|‰W|ƒÄL[^_]ÃfU‰åWVSƒì,‹}‹E ‹W|‹_,‹·„9ÐGÂ…Ût61Û‰D$‹TÞ‰T$‹Þ‰Eä‰$ÿW@‹W0¯TÞ‹Eä¯ÐÞƒÃ9_,wÏ‹W|‰W|ƒÄ,[^_]ÃU‰å‹E‹U ‰‹U‰P‹U‰P‹U‰P ‹U‰P‹U ‰P‹U$‰P‹U(‰P‹U,‰P ‹U0‰P$‹U4‰P(‹U8‰P,]ÃU‰å‹EÙî‹U ÝP ‰P‹UÝP(ÇE6'‰P ‹UÇ@Ç@ÝX0‰P]ô&U‰å‹EÇ]ÃfU¸Ùÿÿ‰å]öU¸Ùÿÿ‰å]öU¸Ùÿÿ‰å]öU¸Ùÿÿ‰å]öU‰åÙî]ÃU‰åWVSƒì‹E…ÀtHÙ}ò‹] ‹u‹M·}òÁã‹U‰]ìÁæÙ…L‰û· f‰]ð¶ÙñØÉÙmðÛÙmòUìƒèuêÝØƒÄ[^_]ÃU‰åWVSƒì‹E…Àt~‹}ƒè‹u ‹M‹UÁçÙ”…LÁæë vùòƒèÙ…L»€Ø ÙÉÛéw6ݘ…LÙÊ»ÿÿÿÛêÝÚw'ÙÉÙ}ò·]ò· f‰]ðÙmðÛ]ìÙmò‹]ìë ¶ÝÙëÝÙ…À‰u¤Ý؃Ä[^_]Ãv¼'U‰åWVSƒì‹M‹U …ÉtcÙ}ò‹u Ù¸…LØÙ}æ}Ü·EæÞÁ´ f‰EäÙmäßÙmæuàƒëu˃Ä,[^_]ö¿U‰åWVSƒì,‹u‹E …ö„™‹U@ƒî‹}‹]‰EØÁâ‰UÜëIݘ…LÙÉÛéÝÙwyÙ}æ·Eæ´ f‰EäÙmäÛ]àÙmæ‹Eà‰Á‰ÂÁéÁêÁè…öˆ ˆSˆCt?}܃î]Ø‹E‰$è{ ÝÀ…LØÞÁÙ”…Lßév˜ÝØ1Ò1ɸ€ÿÿÿ…öˆ ˆSˆCuÁƒÄ,[^_]ÃÝØ¸ºÿÿÿÿ¹ÿÿÿÿëšt&U‰åWVSƒì,‹u‹E …ötc‹U@‹}‹]‰EØÁâ‰UÜ‹E‰$èýÝÀ…LØÙ}æ·EæÞÁ´ f‰EäÙmäÛ]àÙmæ‹Eà‰ÂÁúˆ‰ÂÁúÁøˆSˆC}Ü]؃îu²ƒÄ,[^_]ÃfU‰åWVSƒì,‹]…Û„ˆ‹Eƒë‹}‹uÁà‰EØ‹E Áà‰EÜë }؃ëuÜ‹E‰$èk¸€ÝÀ…LØÞÁÙ”…Lßéw2ݘ…LÙɸÿÿÿÛéÝÙw#Ù}æ·Eæ´ f‰EäÙmäÛ]àÙmæ‹Eàë t&ÝØëÝØ…Û‰u•ƒÄ,[^_]ö¿U‰åWVSƒì,‹]…ÛtM‹E‹}‹uÁà‰EÜ‹E Áà‰Eà‹E‰$èÍÝÀ…LØÙ}æ}Ü·EæÞÁ´ f‰EäÙmäÛÙmæuàƒëu˃Ä,[^_]Ãt&¼'U‰å‹U‹M âÿÿÿáÿÿÿ…щÈu.ƒùtÑè…Ðu…Àuö…Àu‰ÈÀ‰Á!Ñu=uñ…ɺöØÿÿDÂ]Ãt&U‰å‹E‹U ‹M%ÿÿÿƒø v 1À]öÿ$…pLâÿÿÿƒú wäÿ$•ôL´&âÿÿÿƒú wËÿ$•x‚Lâÿÿÿƒú w¹ÿ$•ü‚Lâÿÿÿƒú w§ÿ$•€ƒLâÿÿÿƒú w”ÿ$•„L´&âÿÿÿƒú ‡wÿÿÿÿ$•ˆ„L¡äáK]Ãf¡ØáK]áÔáK]Ãf¡ÐáK]áÌáK]Ãf¡ÈáK]áÄáK]Ãf¡ÀáK]á¼áK]Ãf¡¸áK]á´áK]Ãf¡°áK]á¨áKƒá]D¬áKá áKƒá]D¤áKô&¡ÜáK]áœáK]Ãf¡˜áK]á”áK]Ãf¡ŒáKƒá]DáKá„áKƒá]DˆáKá|áKƒá]D€áKáàáK]ö¡xáK]átáK]Ãf¡láKƒá]DpáKádáKƒá]DháKá\áKƒá]D`áKáTáKƒá]DXáKáPáK]Ãt&öÁtq¡@áKƒá]DDáKÃöÁtl¡0áKƒá]D4áKÃt&öÁt{¡áKƒá]DáKÃöÁtM¡ áKƒá]D$áKÃt&öÁt\¡áKƒá]DáKáHáKƒá]DLáKá8áKƒá]D<áKá(áKƒá]D,áKô&¡áKƒá]DáKááKƒá]D áKô&¼'U‰å‹E%ÿÿÿƒø v1À]Ãÿ$… …Lt&¡øáK]áôáK]Ãf¡ðáK]áèáK]Ãf¡ìáK]ÃU‰åƒìH‰}ü‹}ÝE‰]ôÝ]È‹]‰uø‹u ‰<$誗ÿÿ1Òf‰s‰ÁÝEȯ΃ÿ”ÂTf‰Ù}æÁà·Uæ¶ f‰UäÙmäß}ØÙmæ‹uØf‰K f‰CfÇC‰ò¯Ñ‰s‰S‹]ô‹uø‹}ü‰ì]ö¼'U‰åƒìH‹EÝE‰]ôÝ]È‹]‰uø‹u ‰}ü‰$è—ÿÿfÇþÿf‰sÙ}æÝEȉ¯ַMæÁൠf‰MäÙmäß}ØÙmæ‹uØf‰Cf‰C‹Ef‰S ‰ñ¯Ê‰Cƒ}‰s‰KfÇCt4¡ð…L‰C¡ô…L‰C¡ø…L‰C ¡ü…L‰C$‹]ô‹uø‹}ü‰ì]ô&¡à…L‰C¡ä…L‰C¡è…L‰C ¡ì…L‰C$‹]ô‹uø‹}ü‰ì]ÃvU1À‰å‹Uƒêƒúw‹•†L]ÃU‰åW‰ÏV‰ÖS‰Ãƒìʼn$èR–ÿÿ…Àt*ƒû‰@‰0~P¹ƒÁÇBü‰RøƒÂ9Ùuì‰|ØøƒÄ[^_]ö¿U1ɉå1ÒS¸ƒì$è‹ÿÿÿ‰Ã1À…Ût&Ç$èç•ÿÿ…Àt#‰XƒÃljXÇ@ ƒÄ$[]ô&‰Eô‰$èÕ•ÿÿ‹EôëãU‰åVSƒì‹u‹F…Àuë‰Ø‹‹@‰$è­•ÿÿ…Ûuí‰uƒÄ[^]雕ÿÿt&¼'U‰åSƒì‹]‹C…Àt/‹E ‰$èT•ÿÿ…Àt‹S‹ ‰K‹K ‰B‰ ‰S ƒÄ[]ô&‹S1É‹è´þÿÿ…ÀtÑ#‰CƒÀ‰C…Àu²1ÀëЋCëó´&U‰å‹M VS‹]…É‹S tN…Òt9Jut&ëB9Ht‰Â‹…Àuó‰M[^]éæ”ÿÿ¶‹0‰2‹SÇ@‰‰C‰M[^]é”ÿÿf[^]ˉC ‰Ðë×vU‰åVSƒì‹u‹^ …Ûuë,‰Ã‹C‰$è”ÿÿ‹ÇC…Àuæ‹F‰‹F ÇF ‰FƒÄ[^]ÃU‰å‹EÇÇ@ÎVÇ@cÅT]Ãt&U‰å‹UiB5„³ iJ5„³ kc6Ákc6‰BÁø‰JÁùÁ‰È+‰ ]Ãt&¼'U‰åƒì‹EiH5„³ iP5„³ Ákc6Âkc6‰HÁù‰PÁúʉÑ+‰‰MüÛEüØ †LÉÃÿ%Ð'Nÿ%Ì'NU1À‰å]Éö¼'U‰åƒì‹E …Àu#‹U‰D$‰T$‹E‰$譸ɠt&ƒøtظÉ fU‰åSƒì‹´&N‹E ƒ:v1ƒ=(vMt Ç(vMƒø„ƒø„ž¸‹]üÉ ÇüMÇ$$†L耞ƒì…À£ðuM„úÇD$1†L‰$螃ì£ðûMÇD$L†L¡ðuM‰$èó£üM¡ðuMƒì…À„¸‹ ðûM…Ét?‹üM…Òt5Ç(vM¸‹]üÉ ‹EÇD$‰D$‹E‰$èžéCÿÿÿÇüMÇðûM‰$èуìÇðuM¸Ç(vM‹]üÉ »@Nû@N„óþÿÿ‹…ÀtÿЃÃû@Nuí¸‹]üÉ ÇüMÇðûMëšU‰åSœœX‰Â5 PœX1Щ „£1À¢…À„—¸¢öÆtƒ vMf…Òyƒ vM÷€tƒ vM÷Âtƒ vM÷Âtƒ vMâtƒ vM öÁtƒ vM@€å u.¸€¢=€v¸€¢…Òx!â@t vM[]à vM€ëÆ vMëÓU‰åƒì‰]ø‹œ&N‰uüu ÇD$ÇD$ƒÃ@‰\$ Ç$d†Lè@š‹E‰t$‰$‰D$è5šè8šU‰åƒìH…ɉ]ô‰Ã‰uø‰Ö‰}ü‰Ïu ‹]ô‹uø‹}ü‰ì]ÃEÈÇD$‰D$‰$èÿ›ƒì …Àtv‹E܃øt)ƒø@t$Eä‰D$ ‹EÔÇD$@‰D$‹Eȉ$èÒ›ƒì‰|$‰t$‰$虋E܃øtŒƒø@t‡Eä‰D$ ‹Eä‰D$‹EÔ‰D$‹Eȉ$è’›ƒìé_ÿÿÿ‰\$ÇD$Ç$|†LèÞþÿÿ´&¼'U‰åƒì8¡vM‰]ô‰uø‰}ü…Àt ‹]ô‹uø‹}ü‰ì]øpM-pMƒøÇvM~Úƒø »pM~(‹=pM…ÿu‹5pM…öu‹ pM…Éu » pMt&‹…Òu\‹C…ÀuU‹Cƒø… ƒÃ ûpMs„¾@‹C‹ ¶Sðñƒú‹9tcƒú „šƒútuÇEä‰T$Ç$ä†LèþýÿÿûpMƒ:ÿÿÿ¾@}à‹C¹ð‹ƒÃ‰Uà‰úèþÿÿûpMrÝé ÿÿÿf·f…Òxo)Ê<:‰}ä¹Uäèóýÿÿë5¶„ÒxA)Ê<:‰}ä¹UäèÔýÿÿëf8Uä)Ϲ‰}äè¼ýÿÿƒÃ ûpM‚&ÿÿÿé þÿÿÊÿÿÿ)Êú‰Uäë¸Êÿÿ)Êú‰Uä늉D$Ç$°†Lè*ýÿÿU‰åƒì¡âK‹…ÀtÿСâKP‹@‰âK…ÀuéÉöU‰åVSƒì‹»Kƒûÿt-…Ût4»KfÿƒîƒëuöÇ$ JAèúÄþÿƒÄ[^]Ãv1Ûë‰ÃC‹…»K…Òuðë½v¼'U‰åƒì‹ vM…ÉtÉÃÇvMÉëL$ƒäðÿqüU‰åVSQƒìlèÈÿÿÿèÃE¤‰$èꘃì…Ûto¶€ú „§€ú „ž€ú"t9€ú ‰ÐtF€ú „•„Òvuë<< „„„Àft.ƒÃ¶< uèëf<"t ƒÃ¶„Àuò<"uƒÃ¶< tT< tPöEо t·uÔÇ$èÙ—ƒì‰t$ ‰\$ÇD$‰$è ƒìeôY[^]aüÃÃéEÿÿÿt&ƒÃ¶< tö< u¢fëîU‰åÛã]ÃU‰åVSƒì¡0vM…Àueø[^]ÃÇ$@vMèø—‹`vMƒì…Ût+‹‰$èÁ—ƒì‰Æè¿—…Àu …öt‹C‰4$ÿЋ[…ÛuÕÇ$@vMè¼—ƒìeø[^]ô&¼'U‰åƒì‹E ƒøtBrƒøuèfÿÿÿ¸ÉÃèZÿÿÿ¡0vMƒøuêÇ0vMÇ$@vMèF—ƒìëÏt&¡0vM…ÀtÇ0vM¸ÉöÇ$@vMè—ƒìëØë U‰åSƒì¡0vM‹]…Àu 1À‹]üÉöÇ$@vMèà–¡`vMƒì…Àt‹9ÚuëD‹9Út‰Á‹@…ÀuñÇ$@vMè¹–ƒì1À‹]üÉËP‰Q‰$è­“Ç$@vMè•–ƒìëÚ‹P‰`vMëÜU‰åSƒì¡0vM…Àu‹]üÉÃÇD$ Ç$蔉øÿÿÿÿ…ÛtÜ‹EÇ$@vM‰‹E ‰Cè1–¡`vM‰`vM‰CƒìÇ$@vMè–1Àƒìë¡U‰åWVSì,äþÿÿÇD$‰\$Ç$èò•ƒì …Àt€¼äþÿÿ\u ëv€<\tƒèuõÆ„äþÿÿÇD$‰\$Ç$€vMèUqÇD$ÇD$‡LÇ$€vMè™q‹5œ&NÇD$‡LÇ$€vM~ ‰|$è0“…À„á‰\$^@ÇD$Ç$ wMèõpÇD$ÇD$‡LÇ$ wMè9q‰\$ÇD$‡LÇ$ wMèÙ’…ÀtB‰<$ÇD$ ÇD$@ÇD$è½’‰$ÇD$赒ǤxMeô[^_]ÃÇD$‡LÇ$ wMè—’…Àt¦‹‰V@‹P‰VD‹P‰VH‹P ‰VL‹P‰VP‹P‰VT‹P‰VX‹@‰F\érÿÿÿÇD$‡LÇ$€vMèK’…À„ÿÿÿ‹‰V ‹P‰V$‹P‰V(‹P ‰V,‹P‰V0‹P‰V4‹P‰V8‹@‰F<éÏþÿÿë U‰åƒìE‰D$‹E ‰D$‹E‰$èQ ÉÃë U‰åƒì¡œ&NÇD$ *‡LÇD$C‡LÇD$O‡LƒÀ@‰$è¢ÿÿÿ1ÀÉô&¼'U‰åW1ÿVS‰Ãƒì<‹5p&N‰Uà‹¨&NÇEض‰UÔ„Àué?‹ ¨&N‹·Bƒà…Àt"ƒÃ¶ƒ>¾ÀtßÇD$‰$è5‘…ÀuÞ¶<"„6„À‰}ätu‹Uà…Òt ‹Eà‰¸¶W„À‰Uät[‰}Ü‹}Ôë t&‹·Bƒà…Àu*ƒÃ¶„À„Õƒ>¾ÀtÝÇD$‰$èÅ…ÀtÖ‹}ܶ„Àt ‹Eà…ÀtƃËMà9}ä•Â…É•À!„Òta‹Mà‹¹¶„ÒtT1ɉ]Üë¶PX„Òt?‰Á‰Ø€ú"uì€9\u綉ʄÛt‰Âët&‰Ñ‰úˆ¶Zz„ÛuïÆ¶PX„Òu‹]ܶ„À‹}ä…Úþÿÿ‹Eà…Àt ‹EàǸƒÄ<‰ø[^_]Ãt&‹}Ü‹Mà;}ä•Â…É•À!ÂéVÿÿÿƒÃ¶‰}ä„Ò‰Ðt¯‹Eà…Àt\‹EàO‰¸¶‰Mä„ÒtT‹MØë¶SC„Òt‰Ù‰Ã€ú"uì€9\tç‰Mضéãþÿÿ¶‹Mà;}ä‰]؉ՅɕÁ!ÊéäþÿÿO‰Mä‹MØëÀ9Ï•ÂéÏþÿÿU‰åƒìÉé” t&U‰åƒì‰]ø‹œ&N‰uüC ƒÃ@‰$è@‰$è8‹¤xM…Òt€=€vMuU€= wMu ‹]ø‹uü‰ì]ÃfÇD$W‡LÇ$ wMè쎅À‰ÃtÚ‰$èöމ$‰Æè䎃þÿuÃÇ$ wMèãŽëµÇD$W‡LÇ$€vM謎…À‰Ãt‘‰$è¶Ž‰$‰Æè¤Žƒþÿ…vÿÿÿÇ$€vM蟎éeÿÿÿv¼'U‰åWVSƒì,‹} ‹E‹ÇD$\‰Eä‰$ètŽ…À„‡XÇD$.‰$èYŽ…À„‰)Øp‰4$èD…À„”‰t$‰\$‰$èÔkÇ$è…À‰|è‹pÇD$Z‡LÇD$O‡L‰D$ ¡œ&NƒÀ@‰$èÇûÿÿeô1À[^_]É$ÇD$/èÕP…ÀEÚé_ÿÿÿ‰$èðŒp‰4$赌…À…qÿÿÿt&eô[^_]é¤ûÿÿÇ$ SAèøºþÿÇ$SAèìºþÿÇ$èÄŽQ‰$è‡~‹Eä‰|$‰$èˆYÿÿ‰$è@ŒU‰åWVSƒìÇ$j‡Lè玃ì…Àt ‰$èàŽƒìÇ$t‡Lèý…Àt}‰$行…ÀuqèÔŽ‰$‰Æè6Œx‰<$èû‹…À‰Ãt]‰|$‰t$‰$èj1Ò‰Øè$ûÿÿ‰Ç…‰$èË‹…À‰Æt-‰Â‰Øèûÿÿ‰t$‰<$èþÿÿeô1À[^_]Âè‡øÿÿëˆt&è›úÿÿeô[^_]ÂU‰åS‰Ãƒì¡ÀxM…Àt9‰$膂‹ ÈxM…É~‹ÄxM9t#1Àë9‚tƒÀ9È|ô¡ÀxM‰$赂ƒÄ[]Ã1Àƒé…ɉ ÈxMt9Á~Ú‹\‚‰‚ƒÀ9ÁòëÊÇÌxM‰$è ‹ÇÄxM무&¼'U‰åƒìèEƒø£ÀxMÀÉÉö¼'U‰åƒì¡ÀxMÇÀxM…Àt‰$èÉö¼'U‰åV¾àxMSƒì¡ÄxM…ÀtNè%ƒ‰Ã¡ÀxM‰$膋ÈxM…Ò~#‹ ÄxM‹19t01Àë‹49t%ƒÀ9Âò¾àxM¡ÀxM‰$謃ĉð[^]Ãv¡ÀxMƒÆ‰$èëâ´&¼'U‰åƒì8‰]ô‹]‰uø‰}ü艂‹sè‘‚‹S‹;‰‹C ‹s‰Uä‰$蹄‹Uä‰$ÿ׉F‹]ô‹uø‹}ü‰ì]ÃU‰åWVSƒìÇ$ 裉…À‰Ã‰Æ„21À¹È‰ßó«ÇCÿÿÿÿÇ$èy‰…À‰Ç„‹E‰_‰‹E ‰GÇ$è}‚…À‰G „¡ÀxM…À„ˆ‰$èM€‹ÈxM;ÌxM„‹¡ÄxM‰4ƒÂ‰ÈxM¡ÀxM‰$è}€‰|$‰4$è…Àx-‹G ‰$肃‹G ‰$è—‚‰<$è߈ƒÄ‰Ø[^_]Ãt&‰ð1Ûè7ýÿÿ‰4$迈ëËèÈýÿÿ…À¶x¡¡ÀxMé_ÿÿÿt&•€‰D$¡ÄxM‰$舉…Àt@ƒÌxM ‹ÈxM£ÄxMéGÿÿÿÇ$èlë€Ç$èl‰$1ÛèIˆéeÿÿÿÇ$èèkéÿÿÿ‰$1Ûè)ˆ‰<$è!ˆé=ÿÿÿ¶¿U‰åƒì‰]ø‹]‰uü‹u …Ût*‰$袀…öt‹C‰‰ØèRüÿÿ‹uü‰]‹]ø‰ì]éч‹]ø‹uü‰ì]öU‰åƒì‹E…Àt‹ÉÃÉéI€‰ö¼'U‰åSƒì‹]…Ût‰$èz€ÇD$‰$èjÿÿÿƒÄ[]ÃU‰åSƒì‹]öà t ö|M „®öÃu?¡|M…À„ˆöÃt ö|M„ÅöÇuL1À€çt ö|M„̃Ä[]Ãö|Mu¸Ç$˜‡LèË|‰$èc‹‰Â¸ÿÿÿÿ…Òxу |Mëö|Mu«è¡‰Â¸ÿÿÿÿ…Òx¯ |Mëè%cÇ|MédÿÿÿÇ$ˆ‡Lèj|‰Úâ‰T$‰$èV‰Â¸ÿÿÿÿ…Òˆ`ÿÿÿƒ |M éÿÿÿèVœ‰Â¸ÿÿÿÿ…Òˆ@ÿÿÿƒ |Méÿÿÿè‰Â¸ÿÿÿÿ…Òˆ ÿÿÿ |M1Àéÿÿÿ¶U‰åƒì‰]ø‹]‰uü¾ÿÿÿÿè—i‰$èþÿÿ…Àx 1öãt‰ð‹]ø‹uü‰ì]Ãt&èk¢‰ð‹]ø‹uü‰ì]Ãë U‰åSƒì¡|M‹]‰Ââ…Úuy‰Úâ…ÂuY‰Â!Úƒâu6‰Úƒâ…Âuƒã …Ãt è ƒ%|M߃Ä[]Ãè)‰¡|Mƒàï£|MëÓèåš¡|Mƒàþ£|Më¶¶èK“¡|M€äý£|Më“èg¡¡|M€äþ£|Mépÿÿÿt&U¸ÿÿ‰å‹U]…ÒEÂ#|Mô&U‰åƒìÇ$ÿÿèÿÿÿÉ鸡´&U¸ âK‰å]ÃU‰åSƒì$‹|M‹“ …Òtk…Àt7‹‹X…ÉtL9Èt‹“(‰ƒX…Òt ‰Eô‰$ÿÒ‹Eôƒø~ƒèƒÄ$[]Ë‹X…ÉtðÇD$‰$ÿÒ‹‹Xë´‰D$‰$ÿÒ‹‹X룋ƒXƒÄ$[]ÃfU‰åSƒì¡|M‹]…Àt‹U ‰T$‹‰$‰D$è¨b‰ØƒÄ[]Ã1ۃĉØ[]ö‹|M1ÀU‰å…Òt‹‚<]Éö¼'‹|M1ÀU‰å]J(…ÒEÁÃt&¼'U1À‰åSƒì‹|M‹M‹š4…Ût…Ét‹E ‰L$‰$‰D$ÿRƒÄ[]ËKëät&U1À‰åWVSƒìl‹U‹]‹u Jøƒùw…ö1ÀƒÄl[^_]ö…Û~ìMÀ‰M¤‹}¤¹ ÇE´ó«BÁøƒè‰E°<Å âKˆÅ âKÆÅ'âK¶„Àt¬ˆEÄ‹EUÀ‰$‰D$è7ÿÿÿ…Àtsƒøÿt8‹|M‹’\…Òu>‹…ÒuëV¶‹PƒÀ…ÒtF·J9Ùuî·R9òuæ‹M°‹U´¶„Ê âKƒÄl[^_]Ë…Òt·J9Ë·R9Ö~Ô‹PƒÀ…ÒuæƒE´ƒÇéaÿÿÿt&U‰åSƒì¡|M‹M‹<…Òt41Ûöu"‹%0 ؉D$‹B‰ $‰D$èDQƒÄ[]Ã1Ûö@)•ÃëÓÇ$¨‡Lègb1ÀëßvU‰åVSƒì ¡|M‹]‹€<…À„ê‹@¶P€ú„¢sp¹ÿºÿ‰L$ ‰T$ÇD$ÿÇD$ÿÇ$ èø‰Æ¡|M‹€<‹‹‰$‰t$ƒâ%  ЉD$è—P‰4$‰Ãè}÷ƒÄ ‰Ø[^]Ãt&€úw‹xÿ¹ÿºÿu‚xÿ¸ÿDÊDÐékÿÿÿƒx¹ÿºÿ…Vÿÿÿ‹@=|t =ø…Aÿÿÿ¹ÿºÿé2ÿÿÿÇ$¨‡L1ÛèJaéxÿÿÿt&U‰åWVSƒì,‹M‹=|M‹u ‹]‹‰øƒâ ƒú„P‹—89Êt‹‡49Á„ЃÄ,[^_]ËRÇEà‹…Ò‰Uät;‹—4‹â u+‹Uä‹R‰Uà‹—D…Òu‹—@…Òt‹Rt&‹Mä‰Q‹@âKƒâƒú„ý1É…ö~L‰}܉߉]؉Ëë ¶¡|M‰|$ ‹4ƒÃ‰|$ƒÇ‰T$‹€8‰$èC9ÞÑ‹}Ü‹]Ø¡|M‹Uà…Òt ‹Mà‹Uä‰J‹€4‹H…Éty…ö~u·P1À·—Tt&f ÃfTÃÀ9ðuð‰\$‰t$‰<$ÿW ·P1À·—Tff) Ãf)TÃÀ9ðuðƒÄ,[^_]ÃÇEćLƒÄ,[^_]éµ_t&‰]‰u ‰}‹G ƒÄ,[^_]ÿà‹|M…Òt ‰$è9v¡|M‹€8‰$è5…ö~G1ɉ}܉߉]؉˶¡|MƒÃ‰|$ ‹4‰|$ƒÇ‰T$‹€8‰$èõA9ÞÑ‹}Ü‹]Ø¡|M‹€8‰$è7¡|M…Àt‰$èv¡|Mé·þÿÿ¶¼'U‰åƒì8‹E‰uø‹U‰]ô‹u ‰}ü‹M…ÀtK…ÒtT‹X…Éu‹H <29ß6‹];X +·]f‰UäUàf‰uàf‰Mæf‰]â‰T$ÇD$‰$èFýÿÿ‹]ô‹uø‹}ü‰ì]ËX‰Úë¨fU‰åìh‰]ô‹|M‰uø‰}ü‰àûÿÿ‹³@‰Ù‰•Äûÿÿ…ötI‹U‹àûÿÿÁ≕äûÿÿÁꉕÔûÿÿ<‰Ñ~‹•äûÿÿ‹µÄûÿÿüó¥öÂtf¥öÂt¤‹ |M‹±89Æ„‰94¾t‰ð‹]ô‹uø‹}ü‰ì]ËCd…Àt)‹Uµèûÿÿ‹Äûÿÿ‰t$‰$‰T$ ‰L$èSþ‰µÄûÿÿ‹U‹àûÿÿ‹…Äûÿÿ‰$‰T$‰L$‰D$ ÿS‰Æè*‰ð‹]ô‹uø‹}ü‰ì]ö‹¹4‹á uƒ‹@0;8„Ë{d…ÿt0‹ƒD…Àt[‹àûÿÿ‹U‰<$ˆ‰D$‹…Äûÿÿ‰T$ ‰D$è¾ýÇD$ÇD$ ÇD$ÇD$‰4$èöýÿÿ‹ |M‰ðéðþÿÿ‹‹@…ÉtZ‹‰Üûÿÿ…‰$‰…äûÿÿèJ|‹Üûÿÿ‰ƒD‰Â‹…äûÿÿ‰T$‰D$ ‹A‰<$‰D$è7ýétÿÿÿ‰$èŠýé0ÿÿÿ‹F‹럴&¼'U‰åƒìH¡|M‹U‰]ô‰uø‰}ü‰Ã98t_‹ á@u7ÇD$ÇD$ ÇD$ÇD$‰$èýÿÿ‹]ô1À‹uø‹}ü‰ì]Ë4‰$‰T$ÿS\‹]ô‹uø‹}ü‰ì]ËJ1ÿ‹1…öt$‹ˆ4‹ á u‹ˆD‹~…É„܉N‹J‹R fÇEàfÇEâf‰Mäf‰Uæ‹@âKƒâƒú…ˆ‹|M…Òt ‰$è#r¡|M‹€8‰$è1¡|MUà‰T$ ‹ˆ4‰T$‰L$‹€8‰$èø=¡|M‹€8‰$è%3¡|M…Àt‰$è$r…ÿt‰~¡|M‹4é¾þÿÿUà‰T$ ‹ˆ4‰T$‰L$‹€8‰$èš=ëÄ‹ˆ@…É„ÿÿÿ‹IéÿÿÿfU‰åWVSƒìL‹E‹U ‹uÇEä…À„…¡|M…Àt‹M9ˆ<„—ƒâý‹]ÇEä‹K‹9…ÿ‰}àtT¶I»Óã+]9ó}M‰Ñƒá‰MØuVƒât3‹5|M‹¾@…ÿ„Ý‹M‹U‹E‰$è¸ûÿÿ…À¸EEä‰Eä‹EäƒÄL[^_]ÉщóƒáÇEä‰MØtª‹u‹}àÁæ‰ñO9M‰uÔt-‰Ï‹u‰EÜÁè‰EĉÁ‹EÜüó¥¨tf¥¨t¤¡|M…ÀtC‹ˆ4…Ét9‹I‹u;°8‹ u)…Ét%‹}Ô‰ÆÁîy‰ñ‹uüó¥¨tf¥¨t¤‹}‰UЉ<$è´ú‹UÐé ÿÿÿ‹MØ…É…ÿÿÿÇ$èÝx…À‰Çtg‹Uà‰†@‹…‰‰$‰UÐè¸x‹UÐ…À‰Gt>‹}à‰ÑÁé‹w‰Çüó¥öÂtf¥öÂt¤é»þÿÿt&‹}‰ÑƒÉ‹ã DÑéTþÿÿÇEäé²þÿÿ¶¿U‰åƒì(‹EÇD$‰D$‹E‰D$ ‹E ‰D$‹E‰$èÒýÿÿÉÃU‰åƒì¡|M…Àt(‹Px…Òt‹M‰$‰L$ÿÒÉÃÇ$ˆLè`X¸ÿÿÿÿÉÃÇ$ì‡LèMX¸ÿÿÿÿÉöU‰åƒì¡|M‹P|…Òt.‹ˆ¤…Ét‹M‰$‰L$ÿÒÉöÇ$>ˆLèX1ÀÉÃÇ$ˆLèôW1ÀÉÃU‰åƒì‹|M‹E‹M ƒøvÇ$[ˆLèÍW¸ÿÿÿÿÉöÿ$…tˆL‰Šœ1ÀÉÃ‰Š 1ÀÉÃt&‰Š`1ÀÉö‰Šd1ÀÉö‰Šh1ÀÉö‰Šl1ÀÉö‰Št1ÀÉö‰Š|1ÀÉö‰Šp1ÀÉö‰Šx1ÀÉö‰Š€1ÀÉö‰Š„1ÀÉö‰Šˆ1ÀÉö‰ŠŒ1ÀÉö‰Š1ÀÉö‰Š”1ÀÉö‰Š˜1ÀÉöU‰åƒì‹|M‹M ‹‚€…Àt‰L$‹M‰$‰L$ÿÐÉÃÇÇ$¸ˆLèsV¸ÿÿÿÿÉö¿U‰åƒì¡|M‹4öuÇ$؈Lè>VÉÉ$ÿˆÉfÃë U‰åWVS켋|Mƒ}ŽuÇEÄ‹U ‹EÄ‹MÄ‹uÄ·D·LÊ·tòÇEf‰E˜f‰M¶f‰u–¿E–·U˜f}˜‹MÄ‹u ‰EظF·À· ΉEÈEØÛEÈf‰MÖÝ]¸‰EÐÇEÜ·EÜ·}¶Áàf)ǸfÿGøÿ“¨‹ƒ4·ÿ‹“ì¿uÖ·H‰UÌ‹P¯MضR¯Ö Hƒ»üÀ%boƒ»ü‰L$ ‹MȉD$Ò‰L$‰T$‰|$ÇD$ ÇD$ÇD$Ç$á ÿŨì$ÿ“¨Ç$ÿ“ŒƒìÇD$Ç$ÿ“Ü‹E؃ì‰D$‰4$ÿ“ð‰}à÷ÛEàƒìÙ”‹LÜÉÙÉÇD$Ù]äÙEäÙ$ÙxÿÿÿÝhÿÿÿÿ“Ü‹U؃ì‰T$‰<$ÿ“ðÝ…hÿÿÿƒìÜM¸Ç$Ù]äÙEäÙT$Ùhÿÿÿÿ“Ü‹MЃì‰L$‰4$ÿ“ðƒìÙ…hÿÿÿÙ\$Ù…xÿÿÿÙ$ÿ“Ü‹uЃì‰t$‰<$ÿ“ðƒìÿ“¤‹UÄ‹M ƒEÜ·DÑfEÖ¶Ô;UÜ5þÿÿ‹uăEfm˜fE–¶Tñ;U| f‰E¶éÏýÿÿƒÆ9u‰uÄ’ýÿÿeô[^_]ô&U‰åSƒìD¡ |Mƒèƒøÿ£ |Mt‹]üÉÃf‹|MÇ$ÿÿÿ“ЃìÇ$ÿ“ÔƒìÇ$á ÿ“ ƒìÇ$â ÿ“ ƒìÇ$` ÿ“œƒìÇ$À ÿ“œƒìÇ$q ÿ“œƒìÇ$ ÿ“œƒìÇ$ ÿ“œƒìÇ$D ÿ“œ‹ƒøƒì‰D$Ç$á ÿ“ƒìÇD$FÇD$"Ç$#ÿ“àƒì ÇD$&ÇD$(Ç$á ÿ“èƒì ÇD$&ÇD$(Ç$á ÿ“èƒì ÇD$)ÇD$(Ç$á ÿ“èƒì ÇD$)ÇD$(Ç$á ÿ“è‹“4·B‹Rƒì ¶J‰ÂÁúÇ$ò ÷ù‰D$ÿ“ÀƒìÇD$Ç$ÿ“”ƒìÙèÙT$ ÙT$ÙT$Ù$Ù]èÿ“˜‹ƒ4‹P ƒì‰T$ ‹@ÇD$Ç$‰D$ÿ“ôƒìÇ$ÿ“¸ƒìÿ“Øÿ“´‹ƒ4ÙEèÝ\$(ÙîÝT$ ÝT$Û@ Ý\$Û@Ý\$Ý$ÿ“¼ƒì0Ç$ÿ“¸ƒìÿ“Ø‹ƒ´‹]üÉÿàt&U‰åSƒì¡ |MƒÀ…À£ |Mt‹]üÉÃv‹|Mÿ“ÌÇ$ÿ“¸ƒìÿ“Ìÿ“È‹ƒÄ‹]üÉÿà¶¿U‰åƒì‰]ø‹] ‰uü‹uè ýÿÿ‰$‰t$è]úÿÿ‹]ø‹uü‰ì]éoÿÿÿë U‰åƒì(‰]ô‹|M‰uø‹u ‰}ü‹}…Ûto…ÿt ‹ƒH…Àt‰$èËo‰<$è܉ƒH…öt ‹ƒL…Àt‰$è§o‰4$èïÛ‰ƒL…öt5‹ƒ…Àt‹“L‰T$‹“H‰$‰T$ÿЋ]ô‹uø‹}ü‰ì]Ãt&…ÿuÇ‹]ô‹uø‹}ü‰ì]Ãë ¡|MU‰å‹M…À‹U St…Ét‹˜H‰…Òt‹€L‰[]ÃfU‰åWVSƒìl‹]‹E ‹5|M…Ût‹–…Òt…Àt‰D$‰\$‰4$ÿÒƒÄl[^_]Ãt&‹SƒÂ¯S …ÒBHÐÁú‰$‰U¸è¨n‹U¸…À‰ÇtˉT$ÇD$ÿÿÿÿ‰$è›n‹1ÉöÄ•Á©tGƒÉ‹C‹P ‰EÔ¶@‰UÐ<„*<„ð<t+‰|$‰\$‰4$ÿ–‰}ƒÄl[^_]é;n…Étܹ뱋C …À~΋S‹K·C‰}à‹}ÐÇEÔ‰MÈJ‰EÌB‰M܉E؉uĉ]ä…Ò~k‹]Ì1À¯]Ô]ȉU¼ë t&ƒÀ;E¼}J¶ 9Ïuð‹uܺ‹MÜ…ö‰ÆHMØÁþÁù¯MÔ41‰uÀ‰Æƒæ)ò¾‰ÑÓæ‹MÀ‰ò‹uà÷Ò 뮋U¼‹EäƒEÔ‹MÔ;H |‚‹uĉË}àéÿÿÿ‹C …ÀŽ ÿÿÿ‹C‹S‰u¼‰}܉EÈ·CÇEà‰]ĉEÀ‰Èƒáƒà‰Ï‰Eä‹uäB‰EØB‰E̅ҎË]À1À¯]à‰U°ƒãü]ȉ]¤ëY…ÿtM‹]Ô‹U¤‹K… ‚u?‹]غ‹MØ…Û‰ÃHMÌÁûÁù¯MàÙ»‰Mä‰Áƒá)ʉыUäÓã‰Ù‹]Ü÷Ñ ƒÀ;E°}P…öt£‹U¤‹MÐ; ‚u˜‹U؉ÅҋUØHUÌÁûÁú¯UàÚ»‰Uä‰Âƒâ)Óº‰ÙÓâ‹Mä‰Ó‹UÜ÷Ó  먋U°‹EăEà‹Mà;H Œ"ÿÿÿ‹u¼‰Ã‹}Üéâýÿÿ‹S …ÒŽ×ýÿÿ‹C‹S‰u¼‰}܉EÈ·CÇEà‰]ĉEÀ‰Èƒáƒà‰Ï‰Eä‹uäB‰EØB‰E̶…ÒŽË‹]À1À¯]à‰U°ƒãþ]ȉ]¤ë[…ÿtN‹]¤‹UÔ· C…Ju?‹M؉ú…É‹MØHMÌÁûÁù¯MàÙ»‰Mä‰Áƒá)ʉыUäÓã‰Ù‹]Ü÷Ñ ƒÀ;E°}V…öt¢‹U¤· B9MÐu–‹]؉Á‹UØ…Û»HUÌÁùÁú¯UàʉUä‰Âƒâ)Óº‰ÙÓâ‹Mä‰Ó‹UÜ÷Ó  ë§t&‹U°‹EăEà‹Mà;H Œÿÿÿé»þÿÿt&U‰åƒì‹|M‹E…Òt>ƒøÿt(‹’4ƒøHþMÁ…Òt ‹H…ÒHÁÉéæÿÿt&‹‚XÉPþƒøMÂÃ1ÀÉÃt&¼'U‰åSƒìÇ$ÿÿÿÿèÿÿÿ‰Ã1ÀèÄåÿÿ‰ØƒÄ[]ö¿U‰åSƒì‹|M…Û„%èÆ>¡|M‹ˆ<…Ét Ç€<èè(è“ÿÿÿ‰$ÿS$¡|M‹8Ç€8‰$èÐ5¡|M‹4…ÒtÇ€4‰$è¯5¡|MÇ€<‹ƒ@…Àt#‹@‰$èËi‹ƒ@‰$è½iǃ@‹ƒD…Àt‰$è¡iǃD‹Cd…Àt‰$èˆiÇCd‹ƒH…Àt‰$èoiǃH‹ƒL…Àt‰$èSiǃL‰$ÿ“´Ç|MƒÄ[]ÃU‰åWVSƒì\‹u ÷Æ…Ü‹=|M…ÿtè™þÿÿ‹]…Û„d»¤âK1ÿët&ƒÇ‹½„‹L…Û„…‹E‰D$‹‰$èÕi…ÀuÙÿS…Àt&tÎÇ$ÿS …À‰Ã„Q‹½„‹LUÀ¹ ‰|M‰×‹ÇC(ǃ4ǃ8‰C(Ç@Ç@Ç@ Ç@1Àǃ<ǃ@ǃDÇCdǃHǃLǃPǃTÇC<ǃ¤ǃ¨ǃ`ǃdǃhǃlǃtǃpǃxǃ|ǃ€ǃ„ǃˆǃŒó«Çƒǃ”ǃ˜ǃœÿÿÿÿǃ ÿÿÿÿ‰T$‰$ÿS…Àˆå‹EØ‹=|MÇD$ÇD$‰D$‹EÔÇD$Ç$‰D$‹EЉD$¶EĉD$ è†3‹|M‰‡4‹‚4…À„„‹@Ç‚<‰C0‰4$èÄ;…ÀxhÇ$èÄ%1ÀƒÄ\[^_]û¤âK1ÿëƒÇ‹½„‹L…Ût)ÿS…ÀtëÇ$ÿS …À‰Ã…½ýÿÿƒÇ‹½„‹L…Ûu×Ç$‰Lè­FƒÈÿë¦èÓûÿÿ¸ÿÿÿÿëšÇ$üˆLèF¸ÿÿÿÿ뇉ö¼'U‰åWVS윋|M…Û„ú‹M…Éu‹C4‰E‹U …Òu‹S8‰U ‹E…À„Ù‹Eƒèƒø‡ð‹}…ÿŽû‹u …öŽð‹M‹E‹U ‰L$ ‹M‰D$‰T$‰ $è,âÿÿ9E‰Æ„q‹} …ö‹E‰}´‰E°Ž”‹E%ÿÿÿ߃þ LE‰EƒÈ÷E@DE1ɨ•Á‰E%þÿÿ¿…ÉDE‰M¬‰EèíðèH‹E‹} ‰$‰|$èvý¡@âKƒàï£@âK¡|M‹<…Òt Ç€<‹8…ÒtÇ€8‰$è¤0‹ƒ@…Àt#‹@‰$èÏd‹ƒ@‰$èÁdǃ@‹ƒD…Àt‰$è¥dǃDèöùÿÿ‹|M…Ò‰E¨¡|M‹¸4t ‰$è†[¡|MÇ€4‹M‰t$‹E°‹u´‰|$‰L$‰D$‰t$ ‰$ÿS …À‰Æ„Ú‹@ ‰D$‹F‰$蘋U¬…Òtqö„¬¡|M‰°4é¡‹ƒ4M‹@¶@‰E‹Eƒèƒø†þÿÿÇ$<‰Lè6Deô1À[^_]ÃÇ$g‰Lè D1Àeô[^_]ö¡|M‹U;V‰°4‹U ;V ~Ç$”‰LèéCeô1À[^_]Ë~‹…Òt0¶G‰D$‹B‰$è³Þ‹‹P‰T$ ‹ÇD$‰$‰D$ÿSǃPǃTÇFÇD$‰4$èk%ÇD$ ÇD$ÇD$‹F‰$èxàÇD$‰4$‰Ç‰D$è*‹%@=@„¥‹…Àˆ¼‹N+M‹V +U ‰È‹} Áè ‰ÐÁè·FÑú‰“TÑù‰‹P¯Ð‹F¶@‰~ ¯Á‹M‰F‰NÇD$‰4$è·$è"¡|M…Àt‰$èÁY1À…ö„‰þÿÿöC(uƒ Ç$èò‹C…Àt‰$ÿЋE¨‰$è÷ÿÿÇD$Ç$èú‹}ƒç …­‹ƒ4öucƒÿ „‹5|M‹†4‹8÷Çua÷E„E‹P÷E „f÷Ç …Z¶J9M…,‹z‹J‹Ré$‹ƒ„…Àt“‰$ÿЉÂ1À…Òy†é³ýÿÿ‹P‰†<‰Á‰S0‹Q‰S4‹Q ‰S8eô[^_]ÃÇ$¶‰Lèbéÿÿ…À‰ƒŒ„ñ Ç$â‰LèHéÿÿ…À‰ƒ„³ Ç$ð‰Lè.éÿÿ…À‰ƒ”„u Ç$ü‰Lèéÿÿ…À‰ƒ˜„7 Ç$ŠLèúèÿÿ…À‰ƒœ„ù Ç$ŠLèàèÿÿ…À‰ƒ „» Ç$ŠLèÆèÿÿ…À‰ƒ¤„} Ç$ŠLè¬èÿÿ…À‰ƒ¨„? Ç$'ŠLè’èÿÿ…À‰ƒ¬„ Ç$5ŠLèxèÿÿ…À‰ƒ°„ÃÇ$AŠLè^èÿÿ…À‰ƒ´„…Ç$PŠLèDèÿÿ…À‰ƒ¸„GÇ$]ŠLè*èÿÿ…À‰ƒ¼„ Ç$eŠLèèÿÿ…À‰ƒÀ„ËÇ$sŠLèöçÿÿ…À‰ƒÄ„Ç$ŠLèÜçÿÿ…À‰ƒÈ„OÇ$‘ŠLèÂçÿÿ…À‰ƒÌ„Ç$ŠLè¨çÿÿ…À‰ƒÐ„ÓÇ$ªŠLèŽçÿÿ…À‰ƒÔ„•Ç$½ŠLètçÿÿ…À‰ƒØ„WÇ$ÊŠLèZçÿÿ…À‰ƒÜ„Ç$׊Lè@çÿÿ…À‰ƒà„óÇ$áŠLè&çÿÿ…À‰ƒä„©Ç$îŠLè çÿÿ…À‰ƒè„k Ç$þŠLèòæÿÿ…À‰ƒì„- Ç$‹LèØæÿÿ…À‰ƒð„ïÇ$‹Lè¾æÿÿ…À‰ƒô…•üÿÿèûAÇD$‹LÇ$À‰L‰D$èÓ>1Àé®úÿÿÇ$‰LèÀ>¡|M1ö‰¸4éçûÿÿöE„ç÷E@„Êüÿÿ‹á@ƒù…¹üÿÿéyüÿÿ‹E ‹U‹u‰E´‰U°éøÿÿÇ$ èà×ÿÿ‰Â1À…Òˆ6úÿÿ‹|Méã÷ÿÿUÀ1À‰×¹ ó«‰U”ÇE ‹E‹U¶M‰]˜ƒÀƒÂIÂÁøƒèˆ Å âK‰Eœ¡|M‹uœ‹€4<õ âK‰}¤‹@¶@ˆõ'âK‹U¤¶„À„|ˆEÄ‹EUÀ‰$‰D$è²Ùÿÿ…À„΋0…ö„ÄÇE¨1ÒÇE´ë8‹}°·O¯Þ·u¬·É¿¯Î‹u´9ËO}¨Nò‰u´‰}¨vƒÂ‹4…ötI·N·Ù9]ê·vf‰u’·ö9u Ú‹}´‹<¸‰}°·f9ùf‰}¬v–‹}°·Of9M’vƒÂ‹4…öu·‹M¨…Ét*‹U´‹}œ‹]˜‹·H·@‰M°‰E´‹E ¶´ø âKé÷ÿÿƒE ƒE¤éúþÿÿ‹P¶J;M„®úÿÿ1Ò1É1ÿ‰T$‹UÇD$‰L$‰|$‰T$ ‹P ‰T$‹@Ç$‰D$èÔ(‹|M‰†8‹‚8…À„L‹H‹1…öt6 ‹‚4‹@¶P9Utn‹M‰L$‹F‰$è7׋|M‹‚8‹Š4‹1÷Ætƒ‹1÷Æ u,…öˆÜæ@t@…À„Ò‰‚<‹Qé-úÿÿƒ ‹1ëÍ‹‹~‹‹rÁà‰ÁÁéüó¥¨tf¥¨t¤‹|M‹‚8낃ç…¬ùÿÿé ýÿÿèº>ÇD$áŠLÇ$À‰L‰D$è’;1Àém÷ÿÿ‰4$è#ßÿÿ‰|$ÇD$‰4$è/"é:øÿÿ‰4$èßÿÿfé5øÿÿ‹u ‹}Ç$\‹L‰t$‰|$èA;1Àé÷ÿÿ€‹1éÿÿÿƒ}„M‹=|MǃüÇD$ÿÇD$ÿÇD$ÿÇD$ÿÇD$ ‹U ‹M‹E‰T$‰L$‰$è'‰‡4¡|M‹41À…Ò„™öÿÿ‹ƒÈ ‰‰4$è&¡|M‹4·B¯B ‹RÇD$ÿ‰D$‰$è&Zƒø‰D$Ç$ÿ“¬‹ƒøƒì‰D$Ç$á ÿ“‹³äƒìƒ»üÉÁƒ»üÇD$ ‰L$À%bo‰D$ÇD$ÇD$ÇD$ ‰L$ÇD$Ç$á ÿÖÇC `qAƒì$é÷ÿÿÇ$ÿ“°WÇD$$‹L‰$èhZ…À„Uǃü‹=|MÇD$ÇD$ÇD$àÇD$øÇD$ éˆþÿÿè~<ÇD$ÊŠLÇ$À‰L‰D$èV91Àé1õÿÿèZ<ÇD$½ŠLÇ$À‰L‰D$è291Àé õÿÿè6<ÇD$ªŠLÇ$À‰L‰D$è91Àééôÿÿè<ÇD$ŠLÇ$À‰L‰D$èê81ÀéÅôÿÿèî;ÇD$‘ŠLÇ$À‰L‰D$èÆ81Àé¡ôÿÿèÊ;ÇD$ŠLÇ$À‰L‰D$è¢81Àé}ôÿÿè¦;ÇD$sŠLÇ$À‰L‰D$è~81ÀéYôÿÿè‚;ÇD$eŠLÇ$À‰L‰D$èZ81Àé5ôÿÿè^;ÇD$]ŠLÇ$À‰L‰D$è681Àéôÿÿè:;ÇD$PŠLÇ$À‰L‰D$è81Àéíóÿÿè;ÇD$AŠLÇ$À‰L‰D$èî71ÀéÉóÿÿèò:ÇD$5ŠLÇ$À‰L‰D$èÊ71Àé¥óÿÿèÎ:ÇD$'ŠLÇ$À‰L‰D$è¦71Àéóÿÿèª:ÇD$ŠLÇ$À‰L‰D$è‚71Àé]óÿÿè†:ÇD$ŠLÇ$À‰L‰D$è^71Àé9óÿÿèb:ÇD$ŠLÇ$À‰L‰D$è:71Àéóÿÿè>:ÇD$ŠLÇ$À‰L‰D$è71Àéñòÿÿè:ÇD$ü‰LÇ$À‰L‰D$èò61ÀéÍòÿÿèö9ÇD$ð‰LÇ$À‰L‰D$èÎ61Àé©òÿÿèÒ9ÇD$â‰LÇ$À‰L‰D$èª61Àé…òÿÿè®9ÇD$¶‰LÇ$À‰L‰D$è†61ÀéaòÿÿèŠ9ÇD$׊LÇ$À‰L‰D$èb61Àé=òÿÿÇ$ÿ“°Q‰$èýVÙ˜‹LÙÉßéÝØ‚ûÿÿé~üÿÿÇ$<‹Lè"61Àéýñÿÿè&9ÇD$‹LÇ$À‰L‰D$èþ51ÀéÙñÿÿè9ÇD$þŠLÇ$À‰L‰D$èÚ51ÀéµñÿÿèÞ8ÇD$îŠLÇ$À‰L‰D$è¶51Àé‘ñÿÿë U1À‰åƒì‹ |M‹‘…Òt‰ $ÿÒÉÃU‰åƒì‰]ø‹|M‰uü1ö‹ƒ<…Àt;Et ‰ð‹]ø‹uü‰ì]ËS…Òtì‹0…öxCÇD$‰$ÿÒ…À‰ÆtÓ¡|M‹4‹€< €€‹ƒX‰$è¥éÿÿë¦vÇD$‰$ÿÒ…À‰Æt¡|M‹4‹€<"ÿÿÿ ÿÿÿë»´&¼'U1À‰åƒì‹|M…Òt‹Š…Ét ‹E‰$‰D$ÿÑÉÃU¡|M‰å]öU‰åƒì8‹ |M·E ‰uø·u‰]ô…ɉ}üf‰Eæ„È‹<…À„º‹™4·Sf…ÒtZ‹C·Ò‰Uà·}æ‰ÂÁú÷}à‰Eà‹Cf}à¶X‰ÐÁú÷û‹™ …ÛtG·ÿ·À‰|$‰D$‰ $ÿÓ‹]ô‹uø‹}ü‰ì]Ãv‹C‹{¶X‰ú‰øÁúf}æ÷û‹™ …Ûu¹¿ÿ˜‰|$ ‰D$ÇD$Ç$è¬ë‹]ô‹uø‹}ü‰ì]ÃÇEœ‹L‹]ô‹uø‹}ü‰ì]éw3´&U‰åÇDâK]ÃU‰åƒì(‹|M‰]ô‹E‰uø‰}ü‹ ‹Zf…ɉ‰Xxy¿Ñ·H·pf…Ɉ¿É‰Mì·H‹|M·þ‹›4+Sú…Ò~f)Öf‰uØ1ö9×·UØMòf‰p‹Uì·ñ+S ò…Ò~f)Ñ1Û9ÖMÙf‰X‹]ô‹uø‹}ü‰ì]Ãv‰Î·H1ÒfpfÇf…Éf‰pyfHfÇ@ÇEìf‰Héqÿÿÿ¶¿U‰åWVSƒì\Eà‰$è ÿÿÿ·Mäf…É„ÿ·Eæf…À„ò‹5|M‹]‹¶4‹S9Þ¶z„ô‹v¶^8Z„Ì‹|M‹R‹u·Àçÿ‰EÌ¿]à·É¯Ï·F¿uâ¯ß‰MÔÁ靯‹]C‹]̉M̉EЃë‹uЉ׋MÌ‹EÔüó¥¨tf¥¨t¤‹uƒë·NMЃûÿuÓ‹U·uä‹|M‰MзEâ‹R·þ‰}´·;‰]¸¶J‰U°·Uàf‰}ȈMÀ·Kf)úf‰Uàf)Èf…Òf‰MÄf‰Eâ…5·[f9ó„{¿ð·û‰}¼¯þ¿ÒÇEØÿÿÿÇEÜ…ÿGHø‹E¸Áÿ‹H ùx¶EÀ‰MÔ‹M‰EÌ¿EĉUÄ¿uȯEЯuÌ40‹E¼¯EÌq‹MÐ)Á‹E´‰M¼Ѐ}À‰EÈ„··Eæ…À‰EÀtc‰}Ћ}¸1Ò1Éf…ÛtA1ÛföÃu‹MЋEÔ¶ƒÁ‰MжƒÀ‰EÔ9]È~ 9]Ä„Òx-·GƒÃÒÉuÌ9Ã|ÃmÀt u¼·_ë«t&ƒÄ\[^_]Éȋ}ÌÀè¶À‹D…؉|$ˆU¬ˆM¨‰D$‰4$èÛO‹=|M¶M¨¶U¬ëž‹M¸·YéÌþÿÿ‹DâK…Ò…×·]æ…Û‰]Àtž¡|M1Ò1ɉ}ЉÇfƒtF1Û´&öÃu‹MЋEÔ¶ƒÁ‰MжƒÀ‰EÔ9]È~ 9]Ä„Òx%·GƒÃÒÉuÌ9Ã|ÃmÀ„9ÿÿÿu¼ë¤t&‰È‹}ÌÀè¶À¶€|M‰|$ˆU¬ˆM¨‰D$‰4$èO‹=|M¶M¨¶U¬ë£‹^9Z…(ýÿÿ‹^9Z…ýÿÿ‹|M‹Réýÿÿ‹U°ÇD$ ÿÇD$ÿÇD$ÿ‰$è/Ì‹MÇD$ ÇD$ÇD$¢|M‹A‰$èÌÇDâK¢|MéÇþÿÿ¿È‹E´¿ÇEØÿÿÿÿÇEܯÁ‰ÂÁú÷ÿ‹U¸‹z ÇB€}À‰}̉EÔ„T‡[€}À…"þÿÿƒ=DâKtj‹E°ÇD$ ÿÇD$ÿÇD$ÿ‰$èvË‹UÇD$ ÇD$ÇD$¢|M‹B‰$èKË‹ |M·uäÇDâK‰M¸¢|M‹]‹}¸·Eâ‹[·O·?‰]È‹]·S·]æ…Û‰]Ä„‚ýÿÿ¿Ø¿Á·Ò¿Ï¯ÂÈEȉEÈ·Æ)‰UÀ‰ðfÁèf…Àtk‹}È·À1Û‰EЋuÔ‹E̶‰Þ¶ 1À붃Àƒøt"ÒÉ„Òyð‰ËÀë¶Û¶›|MˆƒÀƒøuÞ‰óƒÇƒÃ;]Ðu¯‹UÈ]Ô]ÌÚ‰UȃmÄ„àüÿÿ‹MÀMÈ·uäéqÿÿÿ€}À„Ì€}À…½üÿÿ·Uæ‹E…Ò‹x·p‰UÀ„¤üÿÿ¿UÄ·ÆfÁëf‰]Ĺ¯Ð‰ÐÁú÷ù·Ó‰UЉÁ¿Eȇ‰EȉðfÁè·À+E´Áà‰E¼fƒ}Äte‹}È1Û‹MÔ1À‹u̶¶ ‰]¸ë ƒÀƒøt$ÒÉ„Òyð‰ËÀë‰Þæÿ‹tµØ‰4‡ƒÀƒøuÜ‹]¸ƒÇ ƒÃ;]Ðu±‹uÐuÔủðÁàEȃmÀ„æûÿÿ‹}¼}Èë‚·Uæ‹]…Ò‹{‰UÀ·[„Åûÿÿ¿Uķù¯Ð‰ÐÁú÷ù‰Á¿EÈG‰EȉØfÑè·À+E´À‰EĉðfÁèf…Àtn‹}È·À1Û‰Eд&‹MÔ1À‹u̶¶ ‰]¼ë ƒÀƒøt%ÒÉ„Òyð‰ËÀë‰Þæÿ‹tµØf‰4GƒÀƒøuÛ‹]¼ƒÇƒÃ;]Ðu°]Ô]ÌÁã]ȃmÀ„ ûÿÿ‹uÄuÈ·uäénÿÿÿ·Uæ‹E…Ò‹x·X‰U¸„âúÿÿ¿EÄ·Û¿UȯÃRЉE¼kE´ý؉E´‰ðfÁèf…À„Ž‹M¼·À1ö‰EÀ‰MÈ‹]Ô1À‹}Ì‹Mȶ3¶7ˆ]°ëƒÀƒÁƒøt?Ðe°Ò„Òyì¶]°ƒÀÀë‰ßçÿ‹|½Ø‰û¶Ûf‰]ÐÁãf]Ðf‰‰ûˆYƒÁƒøuÁƒEȃÆ;uÀu’vuÔuÌ‹u¼4Ɖu¼ƒm¸„úÿÿ‹}´}¼·uäéJÿÿÿ´&U‰åƒì(‰]ø‹]‰uü…Ût4‹s…öu7÷@u/‰$è¶÷ÿÿ‹K…Éu;÷@u3‹5|M9ž4t;‹]ø‹uü‰ì]É$è÷…Àxê‰$è{÷ÿÿ‹K…Étʼn$èL‹5|M9ž4uÅöuÀ]ð‰$ènöÿÿ‹F …Àt®‰\$ÇD$‰4$ÿÐë›t&U‰åWVSƒì|Eà‰$è<öÿÿ·Uäf…Ò„û·Eæf…À„î‹5|M‹M‹¶4‹Y9ζ{„ô‹v¶N8K„È‹|M‹[‰]˜‹u‰û·À¶Ë¿]à·Ò‰Eœ‹}·F¿uâ¯Ù¯Ê‹Uœ¯Æ‰M¤Áéƒê‰M ‹]˜G‰]”t&‹u”‰Ç‹M ‹]¤üó¥öÃtf¥öÃt¤‹uƒê]”·NȃúÿuÑ¡|M‹Mœ‹P¯ËM˜9Ês(·Mä‰ó·}æ‹vf‰M ‹K0f‰}¤‹=|M‹;Ÿ4t5ƒÄ|[^_]ËN9K…,ÿÿÿ‹N9K… ÿÿÿt&‹|M‹[‰]˜éÿÿÿ‹@·}¤‰U°ÇE¼‰EÀ‹A‰}È‹UÈ·} ÇẺU¸‹P‰}´‰}ĉuÔ‰UЋQ‰UØ‹S‰UÜU°‰$ÿéxÿÿÿ¶¿U‰åƒì(‰]ø‹]‰uü…Ût4‹S…Òu7÷@u/‰$è&þÿÿ‹C…Àu;÷@u3‹5|M9ž4t;‹]ø‹uü‰ì]É$è— …Àxê‰$èëýÿÿ‹C…Àtʼn$èì ‹5|M9ž4uÅöuÀ]ð‰$èôÿÿ‹F …Àt®‰\$ÇD$‰4$ÿÐë›t&U‰åƒì¡@âK‰]ø‹|M‰uü‹]‹u ƒàƒøt!‹‚$…Àt ‰t$‰\$‰$ÿЋ]ø‹uü‰ì]á|M…Àt‰$è©=‹|M‹‚4‰$èåþÿÿ¡|Mf+Xf+p f‰f‰p¡|M‹€4‰$è^üÿÿ¡|M…Àt¡‰E‹]ø‹uü‰ì]é´=t&U‰åVSƒì ‹|M‹u…Û„¡¡|M…Àt‰$è&=…ö„À‹|M9Ö„¸¡@âKƒàƒø„F‹‹$…Ét…Òt‹ƒ…Àt ÇD$‰$ÿЉ5|M¡@âK¨u<¡@âK¨…Þ‹ƒ…Àt ÇD$‰$ÿС|M…Àt‰$èö<ƒÄ [^]ËF…Àt9‹“…Ò„²‰D$‰$ÿÒ…Àt¡@âKƒàï£@âKë·‹5|M…öt–é{ÿÿÿ¡@âK‹“ƒÈ…Ò£@âKt ÇD$‰$ÿÒEð‰D$Eô‰$èéÜ¡|M‹Uôf+Pf‰‹Uðf+P f‰P¡|M‹€4‰$èÜúÿÿé@ÿÿÿ´&¡|M‹€4‰$èýÿÿé!ÿÿÿ¡@âKƒÈ£@âK뎡|M‹€4‰$èöüÿÿéÇþÿÿU‰åVSƒì‹u‹@âKƒã…öxi‹|M1À…Òt ‰$èt;¡|M…öu[‹@âKƒâþ‰@âK…Àt‰$è°;¡@âKƒà9Øt%‹5|MÇ$èâýÿÿ…öt‹†(…Àt‰4$ÿЃÄ‰Ø[^]ö‹@âKƒÊ‰@âKë£ë U‰åVSƒì‹]…Ûta;|Mt`;|MtQ‹C ‹5|M…Àt‰$è¬C‹C…Àt‰$èC…öt‹C…Àt‹–…Òt ‰D$‰4$ÿÒ‰]ƒÄ[^]éqCƒÄ[^]á|M‰$èýÿÿë‘v¼'U‰åWVSƒìL‹U¡|M‹}…Ò‰EЉU؈†‹EÁè„À…x‹EƒÀƒàø‰Eä‹E9Âa‹Uä9UUÇ$ èéB…À‰Ã‰EÜ„w‹E·Uä‹MäfÇÁà¯Eäf‰SÁù·U¯MfÇC‰Eà·Ef‰Sf‰C·EØf‰C  ‰M̉$èŒB‹MÌ‹UàÒ‰C ‰Æ‰C‰UÔ‰$ènB‹UàÇC‹MÌÂ…ö‰C‰S„Ï…À„ǃéx1‹U ë ´&‹s ¶ˆ¶‹s  ˆƒéƒùÿuá‹C‰U ‹UÔÇD$‰$‰T$è B‹UЋ‚…Àt=‹U؉|$‰T$‹U‰T$‹U‰T$‹Uä‰T$ ‹U ‰T$‹UЉ$ÿЉC‹E܃ÄL[^_]ÃÇC‹E܃ÄL[^_]ÃÇ$Ì‹Lèü!ÇEÜ‹E܃ÄL[^_]É$è¢ýÿÿÇ$è&%ÇEÜë¨Ç$è%ëšë U‰åƒì‹|M…ÒtC¡@âKƒàþ£@âK¡|M9Ât ‰$èBýÿÿ¡|M…ÀÇ|MtÇ|M‰$èýÿÿ¡|M…Àt‰$è¼7Ç|MÉÃU‰åƒì(‹|MÇ@âK…Òt‹E…Àt è7£|M1ÀÉÃÇD$ÇD$ÇD$ ÇD$ÇD$€âKÇ$`âKè,ýÿÿ£|M‰$è/úÿÿë§¶¼'U‰åƒì¡|M…Àt0·P·HfÇfÇ@‹@ÇD$¯Ñ‰$Áâ‰T$è)@ÉÃU‰åƒì(‹E ‰uø1ö‰]ô‹]‰}ü‹}öÄt%`ƒøöæàÿÿÆ0‹‰Ââ09òtqöÄ@uy…öu)€äω‹CÇ@ ‹C0‰$èÁ‹]ô1À‹uø‹}ü‰ì]ËK€ÌöÄ‹|M‰‰y t‹BL…ÀtP‰|$‰\$‰$ÿÐ…Àx?‹æ t+€Ì ‰ë§‹S9z tªöÄ@t‡ÇD$‰$è¯ ‹épÿÿÿ€ä߉éyÿÿÿ‹€äþ‰ëºt&U‰åƒì8‰]ô‹]‰uø‹u ‰}ü¶U‹K‹¶y$‰Eä‰}à1ÿ÷Ætæ`ƒþÿçàÿÿÇ ‰Ææ 9þ„މþæ u@öÄ@…Ô…ÿu3%ÿÿþÿ‰ÆA$ÿöÄu 9Eä„—‹C0‰$èü¿‹]ô1À‹uø‹}ü‰ì]à ‹=|MöĉˆQ$t"‹OP…ÉtQ¶ÂˆU܉D$‰\$‰<$ÿѶUÜ…Àx6‹…öt €Ì ‰ë”…ÿt©¶ò;uà…bÿÿÿë›´&€ä߉éqÿÿÿ¶‹€äþ‰ëô&‹Eà¶ÒƒÂƒÀ1€æ…RÿÿÿéXÿÿÿt&ˆUÜÇD$‰$è=‹‹K¶UÜé ÿÿÿë U1À‰åƒì‹U‰]ô‹M ‰uø‰}ü…Òte‹r…É‹Z ‰÷f‰]òte¿·ÿ·qÞ…ÛHØ9÷Oþ·uò)ßf‰Z ¿YHø·If‰z$Ù…ÛHØ9ÎNÎ)ÙHÈf…ÿf‰Z"f‰J&t1Àf…É•À‹]ô‹uø‹}ü‰ì]ÃvfÇB °fÇB"f‰r$f‰Z&ëØ´&U‰å‹E ‹U…Àt…Òt ‹J$‹R ‰H‰]ÃfU‰åƒìH‰]ô‹]‰uø‹u‰}ü‹}‹C090uU‹P9V4uM‹€æt"‹ |M‹‘4‰MÔ9Ú‰UÐts;uÐtG‹@ ëf‹@‹U ‰|$ ‰t$‰$‰T$ÿЋ]ô‹uø‹}ü‰ì]Ét$‰$è°¾‰Â¸ÿÿÿÿ…ÒxÜ‹C0ë—‹O‹}؉MÜ‹MÔ‰UØ‹‘PfUØ‹‘TfUÚë’‹M ‹‹I‰Uà‹UÔ‰M䋊PfMà‹ŠTfMâMà‰M é]ÿÿÿ‰ö¼'U‰åWVSƒìL‹U‹E ‹M…Ò„‹]…Û„û‹]‹{,…ÿ…Ñ‹r,…ö…Æ…É„‚…À„’¿0‰uЋ]зp…Ûˆâ‹}‹_+]Ð9óOÞ¿p·@…ö‰üܷyf‰}Ê‹}‹w +uÌ9ðOÆ·9¿r f‰}ȉuÔ¿÷‹}Ô)÷…ÿ~·uÈ)û}Ðþf‰1¿z ¿ö‰}Ô·z$43)þ‰ß+uÔ)÷…ö¿uÊOß¿z"‰uÔ‰þ+uÔ…ö~·}Ê)ðuÌ÷f‰y¿ÿ‰}Ô¿z"·r&‰uĉÆ+uÄ)þ‰Ç‰uÄuÔ)÷…öOÇ…ÀSfÇA1ÀfÇAƒÄL[^_]÷}ÐuÐf)9ÇEÐéÿÿÿt&·q·}ÌEÌÇEÌf)þf‰uÊf‰qé ÿÿÿ…Û~©·}зuÌf‰Yf‰Af‰}Ø‹}f‰EÞEØf‰uÚf‰]܉<$‰L$ ‰T$‰D$èPýÿÿƒÄL[^_]Ã…ÀfÇEâMàfÇEà…oþÿÿ‹E·yÇEÌÇEЋXf‰}Ê‹@ é–þÿÿÇ$ ŒLè@¸ÿÿÿÿé#ÿÿÿ¶Ç$ø‹Lè$¸ÿÿÿÿéÿÿÿv¼'U‰åSƒì‹]‹C,…Àu‹¨u4öÄ@u‹CC‹C,ƒÀ‰C,1ÀƒÄ[]ÃÇD$‰$èÝ @ëÑ¡|M‰\$‰$ÿPT‰Â¸ÿÿÿÿ…Òxȋ뮴&U‰åƒì‹E‹P,…Òtƒê…Ò‰P,u‹P)P‹öÂuöÆ@uÉÃf€æ¿‰‰EÉéâf‹|M‰D$‰$ÿRXÉô&¼'U‰åƒìX‹ |M‰]ô‹]‰uø‹U ‰}ü‹C¶@<w.<„ò<„Ç$ŒLèþ¸ÿÿÿÿ‹]ô‹uø‹}ü‰ì]Ã…Ò„ä¿·r¿{ ƉuÔ·s$þ9ÇMÇ·z;uÔOuÔf‰)ƸHð¿Bf‰rljEÔ¿C"‰}з{&Ç;EÔLEÔ;}ÐO}Ðf‰B)ǸHøf…öf‰}Ôf‰z„qÿÿÿf…ÿ„hÿÿÿö„¨€y)‰ž9™4ti‹E‰\$‰T$‰ $‰D$ ÿQH‹]ô‹uø‹}ü‰ì]Ãt&Ç$HŒLè‹]ô¸ÿÿÿÿ‹uø‹}ü‰ì]ÃfS ëšÇ$lŒLèï‹]ô¸ÿÿÿÿ‹uø‹}ü‰ì]Ë‹R‰Eà‹PfEà‹T‰UäUàfEâépÿÿÿ¶‰UÀ‰$è•ýÿÿ‹UÀ‰Á¸ÿÿÿÿ…É…šþÿÿ‹s·K¿:¶F‰M̈EȶȿB¯ù¯ẺMЋKȉEÔ‹E…À”Á‰Ït‹6…öth·r‰ù¯uЄÉ„èöEÔ…Þ÷Æ…ÒöEÌ…È·R…ÒtÁþ‰uÐ1ö‹}Ô‰ð‹MÐüó«·CEÔƒêué‰$èPýÿÿ1Àéðýÿÿ€}È„û€}È„¾€}Èu×·J…ɉMÐt̉]È‹]Ô‰UÄë·ÀËE‹MÄöÉÞf‰EÔ·Qt f‰sƒê‰ÐÑø‰EÌt·MÔ‰÷‰ÈÁà È‹MÌüó«öÂt ·MÔf‰LVþ‹UȃmзBu¦‹]Èé_ÿÿÿ·z…ÿ„Sÿÿÿ‰]Љó‹uÔë‹E‰4$‰\$‰D$èÕ5‹UзBƃïuß‹]Ðéÿÿÿ·r…ö„ÿÿÿ‰]ЉӋUÔë‹E·K‰×üó«‹MзAƒîuæëÅ·J…ɉMЄÝþÿÿ‰]̉UÈ‹UÈ·Bf…Àt1·Àº@‹EÔ]Ôf1ɉÇuüó¥öÂtf¥öÂt¤ƒÀ9Øuâ‹M̃mзAt·ÀEÔ뮋]Ìé}þÿÿt&U‰åWVSƒì,‹u¶] ‹F‹@=ÿ…‹=ÿ”À¶À@‰Eä‹F…Àu`÷@uX‹F …Àt0‹Vƒè‹N·~…Òtë·ÿƒê¯ø}äùƒêˆƒÁƒúÿuó…ÀuЋ~…ÿu÷@t ‰4$èAûÿÿ1ÀƒÄ,[^_]É4$è¿úÿÿ‰ÂƒÈÿ…Òy—ëå=ÿ„jÿÿÿÇ$¸ŒLè­ƒÈÿëÉ´&U‰åSƒì‹]…Ût&¡|M…Àt9˜8t9˜4t ‹C8ƒè…À‰C8~ƒÄ[]ö‰$è¸úÿÿ‹K,…Éuñ‹öÄ@u`‹C…Àt‰$èë©ÇC‹C0…Àt‰$赺ÇC0‹S…Òt¡|M‰\$‰$ÿP`‹C…Àt ‹ât‰]ƒÄ[]éŠ3ÇD$‰$èê뎉$èp3ë×´&¼'U‰åWVSƒì<‹u}ÿÿ‹=|Mæ} ÿ?Ù…ÿtG‹—<…Òt?öt:‰ðƒÈ÷ÆEð÷Æt ‰ðƒàþöG)Dð÷Æt‰ðƒàþöG)Dðë1Òƒæþ‰UàÇ$<èÍ2‹Uà…À‰Ã‰Eä„‚÷ÆÇt5‹M$…É„C‹G<…À„8¶P‰U‹P‰U‹P‰U‹P‹@‰U ‰E$‹E$‹U ‰D$‹E‰T$ ‹U‰D$‹E‰T$‰$軨…À‰C„‹E$…À…ˆ‹U ‹E‰S‰C ‰$è®ÇCÇCÇCÇC,ÇC0f‰CÇC(ÇD$‰$èCôÿÿ‰$蛳ƒæum‹s…öu/è ¹…À‰C0„±ÇC8‹EäƒÄ<[^_]à émÿÿÿf‹C …ÀtÊ·s¯ð‰4$è’1…À‰C„…‰t$ÇD$‰$èƒ1뚉\$‰<$ÿW@…ÀyŒëƒ‹B¶éºþÿÿÇ$ÞŒLè¯ÇEäé{ÿÿÿÇ$èçéjÿÿÿ‰$è*1ÇEäéVÿÿÿ‰$èÖüÿÿÇEäéBÿÿÿ‰$èÂüÿÿÇ$è¦ÇEäé"ÿÿÿv¼'U‰åWVSƒì\‹U ‹]‹…Àt_‹0…öŽ.‹H€9uM€yuG€yuA1Àë€<u7€|u0€|u)ƒÀ9ð|å9ðuÇ$ûŒLèÞÇEÔ‹EÔƒÄ\[^_]ËB…À…‰D$‹B‰D$‹B‰D$‹B‰D$¶B‰D$ ‹C ‰D$‹C‰UĉD$‹E‰$èÄüÿÿ‹UÄ…À‰EÔt£‹ …Ét;‹@‹0…öt2‹Áà‰ÇÁï‰}Ћ~‹q‹MÐüó¥¨tf¥¨t¤‹MÔ‹A‹ ‹‹ ‰‹31ÿ‰ð%‰EÐt)÷E…œ‹B…À„‘æÿïÿÿ‰ñá‰MЉð%ÆEˉEÌt‹J…É„Å#ÿÿþÿ‹C‹MÔfÇEÜfÇEÞf‰Eà‹C ‰UĉL$‰$f‰EâE܉D$ ‰D$èhòÿÿC ‰D$‹EÔ‰$è†ñÿÿ‹EЋUÄ…À„‰Eå‰ñ‰D$Eæá0‰D$ Eç‰D$‹C‰MЉ<$‰D$è ¯¶Eå‹MÔ‰D$ ¶Eæ‰D$¶Eç‰D$‹A‰$èS¬‰D$‹E% EЉD$‹EÔ‰$è¥îÿÿ‹MЉ|$‰$‰L$è’îÿÿ‹UÄ‹MÌ…É„þÿÿ‹E‰÷ç ¶uˉUÄ% ø‰D$‹EÔ‰t$‰$èHïÿÿ‹UÄ‹B…Àt~ ‹EÔƒÄ\[^_]ÃöE„âýÿÿ‰UÄèkªÿÿ‹UÄ…Àtö@uƒeþ‹BéÁýÿÿf‹C‹x ‰UÄÇD$ÇD$‰$èïíÿÿ‰ð‹UÄ%ÆEˉEÌ„iþÿÿéSþÿÿv‰t$‰|$‰$è°îÿÿ‹EÔƒÄ\[^_]Ãt&‹C¶@$‰UÄÇD$ÇD$ˆEˉ$è{îÿÿ‹UÄéþÿÿ1Àéþüÿÿ¶¿U‰åSƒì$‹E(ÇD$ÇD$Ç$‰D$‹E$‰D$‹E ‰D$‹E‰D$‹E‰D$ èÚùÿÿ…À‰Ãt/‹E‰C‹E ‰C‹E‰C ‹Ef‰CÇD$‰$èUïÿÿ‰ØƒÄ$[]ÃU‰åƒìè…%‹ D|M…É£\Mu?éˆÇ$èô ¡TM‰$èÇ#¡TMÇXM‰$è$¡D|M…ÀtN¡|M…Àt ‰$ÿ0è°¸€=è”Mt ÷$|M€u‹ø”MÇXM…Òt‡è’>ë€èÛ<ëÞÇ$è=>1ÀÇ\MÉÃë U‰åƒì‹ (|M…Ét9è«$;\Mt,¡TM‰$è#‹XM…ÒuÇ$è ¡XM…ÀtëÉÃt&U‰åƒì¡(|M…Àtè\$;\Mt ¡TM‰$è#ÉÃt&U¡\M‰å]öU‰åƒì¡(|MÇD|M…Àt1‰$ÇD$èW£ÿÿ¡TMÇ(|M‰$è "ÇTM¡@|M‰$è "Ç@|MèJèå²èðÂè»ÇH|MÇL|MÇP†MÉÃt&¼'U‰åSƒìÇ(|MÇ@|Mè@ÿÿÿÇ,üMÇ |MÇ üMÇ$üMÇ(üMÇ0üMÇ4üMÇ8üMÇ<üMÇ$|MÿßÿÿÆ-üMèp‰Ãèi·èÑÁÃ芉¸ÿÿÿÿÓxKÇ(|MÇTMÇXMè| …À£@|Mtf÷EÇD|MuÇ\M1ÀƒÄ[]ÃèI …À£TMt3ÇXMÇ$èÊ;ÇD$Ç$°´AèöŸÿÿ…À£(|Mu·èþÿÿ¸ÿÿÿÿë­U‰åWVS»ÿÿÿÿƒìl¡D|M…Àu ƒÄl‰Ø[^_]á@|M‰$è‚ …À…z‹}…ÿ…‹u 1Û…öŽJ¡H|M1ö‹U‰]´‰EÀë£L|M¹M´ƒÆƒÂ;u „‹=L|MG‰ÁÁùÁéȃà)È1É;EÀtÏ‹<¿ ½P|M‰½P|M‹z‰y‹z‰y‹z ‰y ‹z‰y€: u•‹P†M<›Áç‰}¸ÇP†M‰}Ä‹z‰}¼‹‹}ĉ_‹]¼‹[‰_‹}¼‹]Ä‹‰{ ‹}¼‹ ‰{‹]¼‹{‹]ĉ{‹}¸ÇT†M‰y‹ P†MƒÁ‰ÏÁÿÁïùƒá)ù‰ P†Méÿÿÿ¶‹M…É„©‹U 1Û¡H|M…ÒŽ+1ÛëƒÀ‰ÂÁúÁêЃà)Ð9] Ž ;L|M„€¿¶ •P|M4•P|MÓç…}t»‹} ›ƒÃ‹•P|Mƒ} ‰‹V‰Q‹V‰Q‹V ‰Q ‹V‰Quˆ;H|M„ÑP‹5L|M‰ÑÁùÁéʃâ)Ê9ò„Í~ÿ…ÿ‰=L|MˆÊ9Ç„Uÿÿÿ‰Æ‰]¸‰E¼ë‰ÆF‰ÂÁúÁêЃà)ж9Ç4€ µP|M‹4µP|MP|M‰4P|M‹Y‰Z‹Y‰Z‹Y ‰Z ‹I‰Ju®‹]¸‹E¼éîþÿÿ‹]´¡@|M‰$èkƒÄl‰Ø[^_]ÃÇ$LèDƒÄl‰Ø[^_]ÃÀ‰ÂÁúÁêЃà)УH|Mé¡þÿÿ£L|Mé—þÿÿt&ÇL|M¿é"ÿÿÿUÔ¡H|MÇEÇE ‰UéKþÿÿ´&¼'U‰åƒì‹(|M…ÒtÉá|M…Àt ‰$ÿ0èw²€=è”MtÞ÷$|M€tÒÉé¼6¶¿U‰åƒìè¥ÿÿÿ‹EÇD$ ÿÿÿÿÇD$ÇD$‰$èRüÿÿÉ…ÀŸÀ¶Àô&U‰åSƒì‹]èaÿÿÿÇD$ ÿÿÿÿÇD$ÇD$‰$èüÿÿ…ÀuÇ$ èÑëɃøt ƒøÿu¿ƒÄ1À[]Ãĸ[]ÃfU‰åƒì‹EÇD$ ÇD$ÇD$‰$è·ûÿÿÉ…ÀŸÀ¶ÀƒèÃv¼'U‰åSƒì4‹E]ä£ |M‰$èÿÿÿ…ÀôƒÄ4[]ö¿U¡ |M‰å]öU‰åWVSƒìL¶M‹U €ùÿtA¶Áƒú¶˜ üMw(ˆ üM„–¸þÿÿÿÓÀ!$|MuÔ‰4$è˜þÿÿ…ÀôƒÄL‰Ø[^_]É֡$|M1É1Û‰UÄë¿ÓçƒÁ÷×!øƒù t,€¹ üMºEÚ‰òƒ}Ĉ‘ üMuЋ}ÄÓçƒÁ øƒù uÔ£$|MuÔv‰4$è(þÿÿ…ÀôƒÄL‰Ø[^_]ÃÓâuÔ $|Méjÿÿÿv¼'U‰åƒì8‰]ø1Û€=-üM‰uüt ‰Ø‹uü‹]ø‰ì]ËEuäÇEäÇEìÇEð‰Eè¡ |MÇEôÆEä …Àt ‰4$ÿÐ…Àt¹»‰4$è5þÿÿ‰Ø‹uü‹]ø‰ì]ÃU‰åƒìèÕ5ÉÂU‰åƒìÇ$ÇdMè܃ìè¼£xMÉÃt&U‰åSƒì$¡dM…Àu 蛋xM9Ðr)Ћ]üÉÃ÷Ò‹]üÐÉÃEð»è‰$è”%‹Eð‹Uôƒì+hMlMiÊè÷ã‹tM‹ pM‰\$ ‰$‰T$‰L$臋]üÉÃt&¼'U‰åƒì‹E‰$è#%ƒìÉÃv¼'U‰åƒì(Ç$ èƒì…ÀuGÇD$ÇD$ ÇD$¾AÇD$Ç$ è˃ì…À£`Mt%Ç$èS4ÉÃÇD$ Ç$4Lèœë£Ç$^L莸ÿÿÿÿÉô&U‰åƒì¡`M…Àt ‰$èaƒìÇ$ èjƒìÉÃt&U‰åƒìÇ$tLè>¸ÿÿÿÿÉô&U‰å]ÃU1À‰å‹UW‹} V‹uS…Òt+¶¶8Ëu&ƒê1Àë¶\ƒê¶LƒÀ8Ëu …Òuè1À[^_]þþÉ)È[^_]ô&¼'U‰åƒì(‰uø‹u ‰}ü‹}‰]ô‹]‰4$èh!…ÿt#Wÿ‰ß9ÐFЉÑÁéüó¥öÂtf¥öÂt¤Æ‹]ô‹uø‹}ü‰ì]ö¿U‰åƒì8‰uø‹u‰]ô‰}ü‹} ‰4$è !‰<$‰Ãè!;]‰Âs‹EÞ‰Uä‰|$‰4$)؉D$èXÿÿÿ‹Uä‹uø‹]ô‹}ü‰ì]Ãt&U‰åW1ÿVSƒì‹U¶‰Ö<-„ȶЃê0ƒú ‡É‰ñ1Òf¾ÀƒÁ’TPж¶Øƒë0ƒû vå‰Ð1Ò‰Eè)ñ‰UìßmèØ¤L΀>.t/…ÿt ÙîÙÉÛéÝÙ{Ùà‹E …Àt‹E ‰0ƒÄ[^_]Ãt&tåÙàëáƒÆ¶¶Âƒè0ƒø wÀ¸ t&¾Ò1Ƀê0ƒÆ‰Mì‰Uè‰Eäßmè€ÛEäÀÞù¶¶Êƒé0ƒù ÞÁvÏë„r¶Bf¿é(ÿÿÿÙî1ÉédÿÿÿU‰åWVSƒì,‹]èï”ÿÿljÆ@ÇD$€‰\$‰$èþÿÿE dž„ë ƒÃ€ù%t¶ „ÉuñƒÄ,[^_]Àù.ut&ƒÃ¶ yЉú€ú vðëå€ùi{t~<€ùstp~]€ùut €ùxt&u0‹Ž„‹ƒÀƒÁ‰ËÁã‰T‰û‰Ž„ƒù~’ë—€ùd~€ùft{‹Ž„‰ûëå€ùc}Á„É…Œ‹Ž„ëЀùot¬€ùpu×t&ë X‹º¨L‹Ž„ÇD$€…ÀDÂÁá‰D$„ˆ‰$èýÿÿ‹Ž„‰Ø‰ûƒÁ‰Ž„étÿÿÿ‹Ž„‰ÃƒÀ݉ûQ‰ÑÁáÝ\‰Ñ‰–„éLÿÿÿ€ùX…Tÿÿÿéÿÿÿ¶¼'U‰åWVSƒìl‹EÆèl“ÿÿ‹‰EÄ…Òt?‹u ‰Ã‹}MæƒÃÇEÀ‰M´ƒî¶„Àt…öt<%t ƒÃƒîˆ¶ƒÇ„ÀuæÆ‹EƒÄl[^_]ÃÆEÈ%S¶[CÐ< ‡öEÉë;E´tƒÂˆ¶ƒÀKЀù vè€û.tãHˆZƶƒè%‹Uà…ÀˆÉ‹r…ö~6‰Uà‰$è¬ó‹Uà‰B ‹z…ÿ~‰Uà‰<$è”ó‹Uà‰B‹J…É~͉Uà‰M܉$èró‹Uà‹M܉B‹B …À‰Eä~‰Uà‰M܉$èQó‹Uà‹M܉B$…ö~ ‹B …À„ …ÿ~ ‹B…À„…É~ ‹z…ÿ„‹Mä…É~ ‹B$…À„ð‹B …Àtö‰Uà‰t$ÇD$‰$èùò‹Uà‹B…Àt‹J‰UàÇD$‰$‰L$èÕò‹Uà‹B…Àt ‹J‰UàÇD$‰$Áá‰L$è®ò‹Uà‹B$…Àt‹J ‰UàÇD$‰$‰L$èŠò‹UàƒB,‰UàèSÆÿÿ‹5ì”M‹Uà‹>…ÿtF‹‰ÆƒÀ…Éuõ‰è~ÆÿÿƒÄ,‰Ø[^_]öè”M1Û‰D$Ç$ ’Lè‹ÒÿÿƒÄ,‰Ø[^_]ÉUà1ÛÇ$èÀÕÿÿ‹Uà‰$èuüÿÿéõýÿÿ‰$1ÛèöñéæýÿÿU‰åƒìèÅÅÿÿÆè”Mè ÆÿÿèdB¡ì”M…Àt‰$èÃñÇì”MÉô&U‰åƒì8‹M‹U ‰uü‹E‰]ø‹Y ¶òf‰s1Û€='üMt ‰Ø‹uü‹]ø‰ì]Ãf‰Eè¡ |MuäÆEä¶ ˆUæ…ÀˆMåt uä‰4$ÿÐ…ÀtË»‰4$èÄËÿÿ‰Ø‹uü‹]ø‰ì]ô&U‰åƒì8‹M‹U ‰]ø‹E‰uü‹q¶Úˆ1Û€=)üMt ‰Ø‹uü‹]ø‰ì]ÈEç¡ |MuäÆEä ¶ ˆUæ…ÀˆMåt uä‰4$ÿÐ…ÀtÌ»‰4$èFËÿÿ‰Ø‹uü‹]ø‰ì]Ãv¼'U‰åƒìH‰uø‹u ‰}ü‹}‰]ô‹M‹U‰ó¶ÃÁà¿ÙG¿ÚX1Û€=(üMt‰Ø‹uø‹]ô‹}ü‰ì]Ãt&ÆEÔ¶f‰MØf‰UÚˆEÕ‰ðˆEÖ¡ |MuÔ…Àt uÔ‰4$ÿÐ…Àt½»‰4$è¤Êÿÿ‰Ø‹uø‹]ô‹}ü‰ì]Ãt&U‰åƒì8¶E‰]ø‹M‰uü¶U „Àu(ÆEä ‹q$¶Úˆ¶uä1Û€¾ üMt)‰Ø‹uü‹]ø‰ì]Ã<t1Û‹uü‰Ø‹]ø‰ì]ÃÆEä ëÄt&ˆEç¡ |Muä¶ ˆUæ…ÀˆMåt uä‰4$ÿÐ…Àt³»‰4$èÿÉÿÿ‰Ø‹uü‹]ø‰ì]ÃvU‰åSƒì¡ì”M‹…Àt»‰$è<¡ì”M‹ƒÃ…ÀuéƒÄ[]ö¿U‰åVSƒì ‹uÆEóÆEôÆEõ ƒþÿÆEö ÆE÷ t<¸1Û¶ÀƒÃ‰t$‰$èóÉÿÿƒût¶Dóëâ´&ƒÄ ‰ð[^]ô&¸1Û¶ÀÇD$ÿÿÿÿ‰$è¶Éÿÿ¶ðƒþt΃ÃûtƶDóëÖU‰åƒì‹E Éÿàt&U‰åƒì8Ç$‰]ô‰uø‰Î‰}ü‰×‰EäèVî…À‰ÃtD‹EäºÍÌÌ̉{‰sƒÀ ÷âÁê’À‰èÖÊÿÿƒø”MÇ •M‰C ¡•M‰•M‰C‰Ø‹uø‹]ô‹}ü‰ì]Ãt&U‰åƒì¡ô”M…Àu‹E£•M1ÀÉÃt&Ç$0“Lè4Îÿÿ¸ÿÿÿÿÉö¼'U‰åWVSƒì,¡•M‰$èºäÿÿÇ •Mè;Êÿÿ‹•M…Û‰E䄺ÇEÜëiú‰S ‹C‹S‰Eà¡•M‰U؉$èÒäÿÿ‹U؉<$‰T$ÿUà‰Ç¡•M‰$èVäÿÿ¡ •M…Àum9;t…ÿtE¸ÍÌÌÌƒÇ ÷çÁê’À‰…ö‰]ÜtJ‰ó‹;‹S ‹Eä‹sOö)Ð9È~ã9Çw€‹Eä‰C ézÿÿÿt&‹UÜ…Òt.‹E܉p‰$èÛìƒ-ø”M…öu¶¡•M‰$è3äÿÿƒÄ,[^_]É5•MëÐvU‰åSƒì¡•M…Àt7‹ •M…ÉtG‰$èžãÿÿ‹M‹U ‹Eèþÿÿ‰Ã¡•M‰$èáãÿÿ‰ØƒÄ[]Ëô”M…Ût Ç$L“L1Ûè±ÌÿÿëÞÇ$¬“L1Ûè¡ÌÿÿëÎÇ$|“L1Ûè‘Ìÿÿë¾ë U‰åV1öSƒì¡•M‹]‰$èãÿÿ‹•M…Òt9ÚuëQ¶9Ãt!‰Â‹B…Àuó1ö¡•M‰$èDãÿÿƒÄ‰ð[^]ËH‰J‰$¾è¸ëƒ-ø”MÇ •MëÄ‹B£•M‰ÐëÔ‰ö¼'U‰åWVSƒì,‹•M‹u‹} ÇEä…Û…¼‹ ø”M…ÉtA‹Uä…Ò„Ç¡•M…Àuë‰Ø‹X‰$‰•Mè9ë…ÛuéÇø”MÇ •M1Û…öt,‹Eä…ÀuDÇø”M‰5ü”M‰=ÀýMè Éÿÿ‰Ã¡•M‰Eä‹uä…öt ¡•M‰$èKâÿÿƒÄ,‰Ø[^_]ÉùºóA‰ðèBüÿÿ…ÀuÇ¡•MƒËÿ‰Eäë¡•M‰$è³áÿÿ¡•M‰Eäé*ÿÿÿ¶è»Èÿÿ¡•MÇø”M‰EäéSÿÿÿt&U‰åƒìÇD$Ç$èÆþÿÿƒ=•M~-¡•M‰$èáÿÿÇ•MÇô”MÇ•MÉÃèûÇÿÿ¡•M…ÀtÜëÃU‰åSƒì‹ô”M…Ûu/‹ •M1Û…Ét4èNàÿÿ£•M…Ûu Çô”M‰ØƒÄ[]Ãvè[ÿÿÿ‹ •M1Û…ÉuÌè Çÿÿ‹•M…Ò‰ÃtÅë¹U‰åSƒì‹H•M…À‰Ùt‹…Àt…Éu Ç$ì“Lè×Éÿÿ‰ØƒÄ[]áL•M…À‰uÝÇ$Ø“L1Ûè¶Éÿÿ‹ H•MëÇ´&¼'U‰åƒìÇÄýMèû?…Àu ÇH•MÇL•MÉÃU1Ò‰å1Àƒìèaÿÿÿ‰Â¸ÿÿÿÿ…ÒEÄýMÉÃë U1Ò‰å1ÀSƒì‹]è-ÿÿÿ…Àt9ÄýM~1¡ •M…Àt‰]ƒÄ[]ÿà1ÀƒÄ[]öƒÄ¸ ”L[]Ãt&Ç$”LèäÈÿÿ1ÀëÔU1Ò‰å1Àƒì(‰]ô1Û‰uø‹u‰}üèÃþÿÿ…Àt:95ÄýM~GÇ$ÄèCè…À‰ÃtE1À¹1‰ßó«‰4$ÿ$•M…À‰x9‰L•M‰Ø‹uø‹]ô‹}ü‰ì]öÇ$”LèdÈÿÿëÝfÇ$è¤Ëÿÿë͉$1ÛèèçëÁ¶U¸‰åƒì8U‰]ô»ÿÿÿÿ‰uø‰}üèþÿÿ…Àu‰Ø‹uø‹]ô‹}ü‰ì]ËEUäÇ@Ç@ Ç@‰T$‰$ÿ,•M‹uä‰Ã‹E…Û‰X~º‰$ÿ(•M…Àx?Cþƒøw¥‹}1ÒÇEä9w(w‰ø²‹H4ƒÂƒÀ 9ÎsóƒêR+t‡‰W ‰wénÿÿÿ»ÿÿÿÿédÿÿÿë U¸‰åWVSƒì,‹] U‹}èTýÿÿ‰Â¸ÿÿÿÿ…Ò„Ø…Ûˆ‹u‹V9Óõ‹MÇEä ù…½‰Ñ9Ë-[€|†u#C@T–붃 €ûu ƒÀ9ȉÇ~ì‰û[‹U;T†Ç9Ë}-Aÿ<@€|¾TIúT–të¶ ƒê €ùu ƒè9؉Çì‰ùI‹Uä†9PŒ›[‹ML–‹Uä)ÊP1Àƒê x‰T$‰L$‰4$ÿ0•MƒÄ,[^_]Ãt& 9Ùt9Ê|.‹U‰Uäé/ÿÿÿ‹E‰ÚE‰EäéÿÿÿÇ$)”Lè.Æÿÿ¸ÿÿÿÿ뺉EàÇ$@”LèÆÿÿ‹Eà릉\$Ç$T”LèÆÿÿ¸ÿÿÿÿë‰L$Ç$x”LèìÅÿÿ¸ÿÿÿÿéuÿÿÿfU¸‰åƒìUèÍûÿÿ‰Â¸ÿÿÿÿ…ÒuÉËE‰D$‹E ‰D$‹E‰$ÿ0•MÉÃt&U¸‰åƒìUèûÿÿ‰Â¸ÿÿÿÿ…ÒuÉËEÇD$‰$ÿ,•Mƒøt1ÀÉÃv‹E‰$ÿ4•MÉÃfU¸‰åƒìUè=ûÿÿ‰Â¸ÿÿÿÿ…ÒuÉËEÇD$‰$ÿ,•Mƒøt1ÀÉÃv‹E‰$ÿ8•M1ÀÉÃU¸‰åS»ÿÿÿÿƒìUèçúÿÿ…Àu‰ØƒÄ[]ËE1ÛÇD$‰$ÿ,•MƒèƒøwÚ‹E‰$ÿ<•M‰ØƒÄ[]Éö¼'U¸‰åƒìUèúÿÿ‰Â¸ÿÿÿÿ…ÒuÉËE‰$ÿ@•MÉÃfU¸‰åƒìUè]úÿÿ…Àu Éô&‹E‰$ÿD•M‹E‰$èÙãÇL•MÉö¼'U‰åƒìè•;ÇH•MÉÃU‰åSƒì‹]ÇD$‰$è^ãè‘^ÿÿ‰]ƒÄ[]é¤ät&U‰åV1öS» ƒìÇD$þA‰$è)ã…Àt ‰D$‰$èãƒÆ‹µœ”L…ÛuÒƒÄ[^]ö¿U‰åV1öS» ƒìÇD$‰$èÙâ=þAt ‰D$‰$èÆâƒÆ‹µœ”L…ÛuσÄ[^]ÃU¸‰å]öU‰å‹ES‹‹E ·Q‹·Cf9Ât ·À·Ò)Ð[]÷C·Q[])Ðö¼'U¸ÿÿÿÿ‰å‹U…Òx]ËE‹€¬‹P ‹E ]¶@ƒÀÁø‹D‚ÃU¸ÿÿÿÿ‰å]öU‰å]Ãt&¼'U1À‰å]Éö¼'U‰å]Ãt&¼'U‰åSƒì‹]…ÛtF‹ƒ¬…Àt‹P …Òt‰$èéዃ¬‰$èÛዃ°…Àt‰$èÉá‰]ƒÄ[]é¼áƒÄ[]öU‰åWVSƒìÇ$¸è“á…À‰Æ‰Ã„‰Ç¹®1Àó«Ç$èpá…À‰Ç‰†¬„àÇÇ@Ç@Ç@ Ç$4è9á…À‰G „œÇ$Xè"á…À‰†°„¦‹W 1À¹ ‰×ó«‹“°±‰×ó«ÇCÐ BÇC ÿAÇC BÇCÐÖBÇCBÇC ÇC$ BÇC@PÿAÇCDÇCHÇCLÇCPÇCTpÿAÇCX€ÿAÇC\ÇC``ÿAÇCp€BÇCtÀ BÇCxð=CÇC| ?Cǃ€ :Cǃ„Ð9Cǃˆ BÇCÐÖBÇCÐZCÇCÐBÇC ÇC$+BÇC@ ;BÇCDà:BÇCHÐ5BÇCLp5BÇCP@BÇCT`4BÇCXPBÇC\ 3BÇC`€'BÇCp 2BÇCt 0BÇCxð=CÇC| ?Cǃ€ :Cǃ„Ð9Cǃˆ ƒÇ9:È‹=|M‹·4‹F…À„ã‹F …À„Øö…è…ÀŽ”·F1ÿ‹N‹V…É~(·À¯ÇÂ1À´&¶ ¶Œ èþÿÿˆ ƒÀ;F|éƒÇ;~ }T·FëÀ‹äþÿÿ‹Áà‰…Üþÿÿ‰$è:·‹ÜþÿÿÁé‰Ã‹…äþÿÿ‰ß‹p‹…Üþÿÿüó¥¨tf¥¨t¤‹•ØþÿÿéOþÿÿöucÇD$ÇD$ ÇD$ÇD$‰4$èP8ÿÿ‹=|M‰$èÒ¶‹•àþÿÿ‹‚¬é\þÿÿ‹àþÿÿ‰t$‰ $ÿQT…ÀxÍ‹F éüþÿÿ‹…àþÿÿ‰t$‰$ÿPXë‹vU‰åWVSƒì,‹]‹ƒ4…Àt‹‰Ââ€ú€„쨅׋ƒ¬‹P …Òt‹‰$ÿP‹ƒ¬Ç@ ƒì‹P…ÒtÇ@ÇEä‹}äÇ‹T¸…ÒtC‹…Àt'¾¶‰$èøµ‹ƒ¬‹T¸‹2ƒÆ…Àuä‰$èܵ‹ƒ¬ÇD¸ƒEäƒ}äu¢‰$è<ïÿÿ¡Œ”M…Àt‰$èkI¡€ M…Àt‰$èڨǀ Mƒìeô[^_]É$è=éÿÿÿÇD$Ç$訡Œ”MƒìÇD$‰$èô§‹ƒ4‹ƒìéØþÿÿ¶¿U‰åSƒì$‹E ‹]Æ€•M=|vˆ„Q~O=<vˆ„dt&Žº=Fvˆ„ŸŽÉ=Lvˆ„n¨=Kvˆ…0Ç€™M˜LëQ=dvˆ„Ž´=Ôvˆ„dt&ŽÜ=ævˆ„)=ávˆ…áÇ€™M–Lt&¡€™M‰\$ ÇD$‹˜LÇD$‰D$Ç$€•MèÇ,éÖf=3vˆ„et&Ž:=5vˆ„“Œ~=:vˆ„d=;vˆujÇ€™Mó–Lë‹=€„‘Žš=7vˆ„ÿ=_vˆ„ã=W€u0Ç€™M¯•LéNÿÿÿ=‘vˆ„£=–vˆ„†=‚vˆ„l‰D$‰\$ ÇD$h˜LÇD$Ç$€•Mèù+€=€•M„üþÿÿÇE €•MÇE’˜LƒÄ$[]é´“ÿÿt&=@€„×=@€„½=@€u–Ç€™M:˜Lé´þÿÿt&=?vˆ„•=Evˆ„y==vˆ…bÿÿÿÇ€™M°–Lé€þÿÿ=Âvˆt0=vˆt=®vˆ…:ÿÿÿÇ€™M0–LéXþÿÿÇ€™MN–LéIþÿÿÇ€™M=–Lé:þÿÿÇ€™M —Lé+þÿÿÇ€™Mè—LéþÿÿÇ€™M¨—Lé þÿÿÇ€™My•LéþýÿÿÇ€™MR˜LéïýÿÿÇ€™M–LéàýÿÿÇ€™MЗLéÑýÿÿÇ€™Mx—LéÁýÿÿÇ€™M •Lé²ýÿÿÇ€™MÓ•Lé£ýÿÿvÇ€™Mù•Lé‘ýÿÿÇ€™M¿—LéýÿÿÇ€™M[—LérýÿÿfÇ€™MŠ•LéaýÿÿÇ€™M‘—LéQýÿÿÇ€™M–LéAýÿÿÇ€™Må•Lé1ýÿÿÇ€™Mœ–Lé!ýÿÿÇ€™MÔ–LéýÿÿfÇ€™M)—LéýÿÿÇ€™M<—Léñüÿÿ=ÿvˆt=@vˆ…±ýÿÿÇ€™MÄ–LéÏüÿÿÇ€™M•LéÀüÿÿ=Nvˆt=Pvˆ…ýÿÿÇ€™Mj–LéŸüÿÿÇ€™M˜LéüÿÿU‰åì8‹|M‰]ô‹E‰uø‹] ‰}ü‹’4…Òt‹…Òx‰\$‰$èæÙÿÿ‹]ô‹uø‹}ü‰ì]Ãâuâ‹0¿•˜L¹ó¦uÒ‹€¬‹@…À„õ‹Mä‰L$ÇD$t÷L‰$ÿƒì …À…º‹Eäµäùÿÿ‹‰t$ÇD$‰$ÿR ƒì …Àunº€f¸‰Ñ‰ßüó¥¨tf¥¨t¤»‰Ñµäûÿÿüó¥¨tf¥¨t¤»‰Ñµäýÿÿüó¥¨tf¥¨t¤‹E䋉$ÿR1Àƒìé ÿÿÿ¶‰D$Ç$ü˜Lè úÿÿ‹E䋉$ÿR¸ÿÿÿÿƒìéòþÿÿ‰D$Ç$ИLèxúÿÿ¸ÿÿÿÿéØþÿÿÇ$ ˜Lèòÿÿ¸ÿÿÿÿéÂþÿÿ´&U‰åì8‹|M‰]ô‹E‰uø‹] ‰}ü‹’4…Òt‹…Òx‰\$‰$è&Ýÿÿ‹]ô‹uø‹}ü‰ì]Ãâuâ‹0¿•˜L¹ó¦uÒ‹€¬‹@…À„ü‹Mä‰L$ÇD$t÷L‰$ÿƒì …À…Á¸€º‰Á‰Þ½äùÿÿüó¥öÂtf¥öÂt¤½äûÿÿ‰Á³üó¥öÂtf¥öÂt¤½äýÿÿ‰Á³üó¥öÂtf¥öÂt¤‹Eääùÿÿ‹‰L$ÇD$‰$ÿRƒì …Àu‹E䋉$ÿR1Àƒìéÿÿÿ‰D$Ç$$™Lèùÿÿ‹E䋉$ÿR¸ÿÿÿÿƒìéëþÿÿ‰D$Ç$ИLèñøÿÿ¸ÿÿÿÿéÑþÿÿÇ$ ˜LèkŽÿÿ¸ÿÿÿÿé»þÿÿU‰åVSƒì‹u ‹F‹‹ÇD$‰$ÿPHƒì=vˆtæ‹ÇD$ÇD$‰$ÿP,ƒì =Âvˆt…ÀuW1Àeø[^]ô&‹F‹‹‰$ÿRlƒì‹ÇD$‰$ÿPHƒì=vˆtæ‹ÇD$ÇD$‰$ÿP,ƒì 륉D$Ç$K™Lèøÿÿ¸ÿÿÿÿë”fU¹‰åWVS쬋] •|ÿÿÿ‰×‹C‹p1Àó«Ç…|ÿÿÿl‹ÇD$ÇD$ ‰T$ÇD$‰4$‰•tÿÿÿÿPdƒì=ÂvˆtM…À…‡‹MŒ·C9Èt*‹C‹Uˆ+Sf‰K·É¶@Ñê¯Ð‹E„+C Ñè¯Á‰C‹E ‰C1Àeô[^_]ËC‹‹‰$ÿQl‹‹•tÿÿÿƒìÇD$ÇD$ ‰T$ÇD$‰4$ÿPdƒìéqÿÿÿ‰D$Ç$d™Lè ÷ÿÿ¸ÿÿÿÿ럶U‰åƒì(‹EMð‰Eð‰Eô‹E ‹@‹‹‰L$ÇD$‰$ÿRtƒì …Àu 1ÀÉô&‰D$Ç$€™Lè°öÿÿ¸ÿÿÿÿÉÉö¼'U‰å츋U ‰uø‹Eu؉}ü½tÿÿÿ‰]ô‹R·HÇ…tÿÿÿd‹Z¿P‰U܉Uä¿·@‰UØ‹E‰Uà‰EÄ‹‰|$ÇD$ÇD$ ÇD$‰t$‰$ÿPƒì=Âvˆt…ÀuJ1À‹]ô‹uø‹}ü‰ì]Ãv‹‰$ÿPl‹ƒì‰|$ÇD$ÇD$ ÇD$‰t$‰$ÿPƒì벉D$Ç$¡™Lè¸õÿÿ¸ÿÿÿÿë¡U‰åWVS‰Ó켉…`ÿÿÿ‹E‰dÿÿÿ÷Ð!Ç$諪…À‰C„³µpÿÿÿ1À¹‰÷ó«ÇEàÇ…pÿÿÿl‹C‹}Ç…tÿÿÿÇE¸ ‰…|ÿÿÿ‹C ƒçƒÿÇE¼@‰…xÿÿÿ·C‰E€À%Èÿÿ@@‰EØ‹C‹…ÒtÇE¼`¶P‹dÿÿÿ‰UÄ‹P…ɉUÈ‹P‹@‰ỦEЄ'‹…dÿÿÿ‰Eà…ÿ…5‹CÇ…tÿÿÿ‰E”‹Eà‹ÇD$‰t$‰$ÿ’œƒì …À…¡1À¹‰÷ó«‹EàÇ…pÿÿÿl‹ÇD$ÇD$ ‰t$ÇD$‰$ÿRdƒì…À…0‹Eà‹ÇD$‰$ÿ’€ƒìöE…Ë‹C9E”…ð·C9E€… ‹C¶P9UÄ…®‹P9UÈ…¢‹P9UÌ…–‹P9UÐ…Š‹C9…|ÿÿÿ… ‹S 9•xÿÿÿ…û‹M ‹S‹Eà‰ á@‰…–‰B1Àeô[^_]Ãv‹EàMØ‹‰L$‰$ÿR8ƒì…À…™öEÙ@…ÙþÿÿÇ$šLèíˆÿÿë‹E€f‰CéBÿÿÿÇ$˜šLèÓˆÿÿ‹Eà…Àt9…dÿÿÿt ‹‰$ÿRƒì‹C‰$èN¨¸ÿÿÿÿÇCeô[^_]ËM܉L$MØÇE؉L$‰$ÿR0ƒì …Àu ‹EÜ‹Sé;ÿÿÿ‰D$Ç$ìšLèËòÿÿ‹S‹Eàé ÿÿÿÇ$ÄšLèDˆÿÿélÿÿÿ‹•`ÿÿÿ‹Uä‹‹ÇD$ ‰T$‰t$‰$ÿQƒì…À…ЋUäEà‹ ‰$‰D$ÇD$Ô÷Lÿ‹Uä‰Á‹ƒì ‰\ÿÿÿ‰$ÿP‹\ÿÿÿƒì…É„rýÿÿ‰L$Ç$Ø™Lè/òÿÿéçþÿÿÇ$LšL讇ÿÿéÖþÿÿ‰D$Ç$d™Lè òÿÿéÁþÿÿt&Ç$pšL脇ÿÿé¬þÿÿ‰D$Ç$.šLèßñÿÿé—þÿÿ‰D$Ç$ú™LèÊñÿÿé‚þÿÿÇ$虊ÿÿ¸ÿÿÿÿéþÿÿ‰D$Ç$º™LèŸñÿÿéWþÿÿv¼'U‰åVSƒì‹] ‹u‹öÂuQ‹C…Àt4€ÎöƉuU÷Âuq1À€æt‹C0Ç@ à;B¸ƒÄ[^]Ãt&†¬1ɉÚÇ$èzûÿÿ‹K1À…ÉtÕ‹€ÎöƉt«‹C‹@ ‰\$‰4$‰D$èÿùÿÿ…Àx‹÷Ât€æþ‰눋€æþ‰étÿÿÿ´&¼'U‰åƒì‹E‹U ‹ˆ¬‹I…ÉtÇE¬1ÉÉéóúÿÿÇ$›Lè'†ÿÿ¸ÿÿÿÿÉÃU‰åWVSƒìL‹u‹U‹] ‹}‹F·K‹@‰EÔ‹B‹P¿C‰EÜ·K‰E俉EØ‹ ‰Eà‹öÄ•À¶ÀƒÈ‰D$E؉D$‹EÔ‰D$ ¿G‰D$¿‰$‰D$‰UÐÿQ‰Áƒì1À…Ét0ùÂvˆt0‰L$Ç$a›Lèîïÿÿ‹F0‹U‰|$ ‰\$‰4$‰T$ÿPeô[^_]ËMÔ‹‰ $ÿPl‹UЋƒì‰$ÿPlƒìÇ$<›Lè6…ÿÿ¸þÿÿÿëÉë U¹[‰å•„þÿÿW‰×S‰Ã1Àìó«Ç…„þÿÿl‹ƒ¬‹‹ÇD$‰T$‰$ÿQ,ƒì …À…Æ‹…ˆþÿÿ€K(¨@t€K)©@t ö…‘þÿÿt€K)©€ud…Àxh©t€K)€‹ƒ¬MðÇEô@‹‹‰L$MôÇD$ ‰L$‰$ÿR\ƒì…Àu‹EðÁè ‰C,1Àeø[_]Ë…Àþÿÿëé´&€c)÷…Ày˜¶S)ƒÊ Õƒâ߃á Ê Õƒâ¿ƒá@ ʈS)ékÿÿÿ‰D$Ç$~›Lèkîÿÿ¸ÿÿÿÿëžt&U‰åWVSì|‹u ‹]Ǩ”M‹N…Ét‹E‰t$‰$ÿP`ÇF‹U‹‚¬‹@…Àt‹‰$ÿR‹M‹¬ƒìÇ@‹‰Ââ€ú€„ ¨…áöE„G‹F¶@9Ø„Cñƒø‡!‹… L‹ …žL‹…`žL‰\$ ÇD$‰D$‰L$‰T$ÇD$ÇD$Ç$èBoÿÿ…À‰Ã„ ‹S‹E‹K lj•°þÿÿ‹U‰C‰¤þÿÿ‰S ‰$è<‹U…Òf‰Cˆn¡Œ”MÇD$ðÿÿÿ‰$èД‹ƒì…ÒˆöE „‰ÆƒÊ æÿÿ0þ΀‰¡Œ”M‰$èq”‰òʃì…ÀEò¡¼”M…À„׋EǨ”M‰$è/…Àˆ§ƒ eô‰Ø[^_]Ã1À1É1Òééþÿÿ¡Œ”MÇD$ðÿÿÿ‰$è2”‹Uƒì…ÒˆöE …¢%ÿÿú~‰Ç ÏÏÊöEEø¡Œ”M‰$èÌ“‰úʃì…ÀEú¡¼”M…À„/‹M‹E‹‘¬Áøƒà ƒÀ‹‹ ‰D$¡Œ”M‰$‰D$ÿQPƒì …À‰Â…£‹}…ÿˆ‹E‰•œþÿÿÇD$‰$èò*‹Eè*üÿÿ`ÿÿÿ‹•œþÿÿ‰°þÿÿ‹½°þÿÿ¹‰Ðó«Ç…`ÿÿÿlÇ…dÿÿÿeÿÿÿ¿ÇEÈB‹}ç@tÇ…dÿÿÿ!ÇEÈBÇ…tÿÿÿ‹U]ä‹°þÿÿ‹‚¬‹‹ÇD$ ‰\$‰L$‰$ÿRƒì…À„¶…ÿui‰D$1ÛÇ$ì›Lèëÿÿé[þÿÿ‹E‰$èäûéýÿÿ%ÿÿú~‰ÆÎÊöE„êýÿÿ‰ÆƒÊÎωéØýÿÿ¶‰Ççÿÿ0þÏ€édþÿÿ‹U‹°þÿÿƒ¥dÿÿÿ߃eÈç‹‚¬Ç…tÿÿÿ‹‹ÇD$ ‰\$‰L$‰$ÿPƒì…À…Nÿÿÿ‹]‹Eä‹‹¬‹ÇD$Ô÷L‰$ƒÁ‰L$ÿƒì …À‰Ã…Ž ‹E䋉$ÿR‹½°þÿÿ‰Ø¹ó«‹°þÿÿÇ…`ÿÿÿlƒì‹UÇ…dÿÿÿ‹‚¬‹@‹‰L$‰$ÿRXƒì…À…« öE¬@„¸ ‹]‹“¬‹B …Àt‹‰$ÿR‹“¬ÇB ƒìƒ}´„/‹]9^u ‹E9F „^ ‰4$èsjÿÿ‹EÀÇD$ÇD$ÇD$‰D$‹E¼Ç$‰D$‹E¸‰D$‹E´‰D$ èkÿÿ…À‰Ã„Ù‹P‹H ‹EfÇC‰•¤þÿÿ‹U‰ þÿÿ‰C‰S ‹MDžɈ«‹S…Ò„w ‹U1Àƒâ0ƒú„™öE …`‹1ÉöEÈt @‰‹}ƒà‰Ú‰$Ǭ‰øèóÿÿ…Àˆ§ ‹E…Àˆ‹UÇB B‹’¬‹B…À„÷ ‹‹ Œ”MÇD$‰$‰L$ÿR ƒì …À… ‹M‹‘¬‹B‹R‹‰T$‰$ÿQpƒì…À…‹ ‹5¼”M…ö„¡Œ”MÇD$‰$èñ¡Œ”Mƒì‰$èiǨ”Mƒìè׎ÿÿeô‰Ø[^_]ጔM‰t$ÇD$ðÿÿÿ‰$è<‹=¼”Mƒì …ÿ…ÿúÿÿ¡Œ”M‰$èFƒì…À…çúÿÿ‹C;…°þÿÿ„|Ç$“›Lè’ÿÿÇ$¨›L‰…¬þÿÿè~’ÿÿ‹µ¬þÿÿ…ö‰…¤þÿÿ„  Eà‰D$ E܉D$‹…¬þÿÿÇD$»›L‰$è–œƒø„Ž‹ ”M‹ ¤”M‰•¨þÿÿ‰°þÿÿ‹µ¬þÿÿ¿Á›L¹ó¦„É‹C‹S é"f1Ûeô‰Ø[^_]Ãt&‰Ææÿÿ0þ΀é úÿÿÇD$Ç$詎‹ƒìé×øÿÿµÄþÿÿ1À¹'‰÷ó«fÇ…èþÿÿœ‹C‹M; ÌüM¶@‰0ÿÿÿÇ…ìþÿÿ‰…,ÿÿÿ‹E‰…4ÿÿÿ;ÐüM¡ØüMÇ…ìþÿÿ\‰…<ÿÿÿÇD$‰4$è'Žƒì…Àt7‹…ìþÿÿ©@„ùÿÿ%ÿÿ¿ÿ‰…ìþÿÿÇD$‰4$èôƒì…À…Üøÿÿ €¿ ýM¹'ó¥éÅøÿÿf¡Œ”M‰|$ÇD$ðÿÿÿ‰$è?Žƒì é°ùÿÿ‰Ççÿÿ0þÏ€éùÿÿÇEÌÇEÐÇ$èòƒì‰EÔÇ$èà‰EØ¡Œ”Mƒì‰$è=‰Ç¡Œ”MƒìÇD$ðÿÿÿ‰$èƒì‰Â1À…ÿ•À‰D$ẺT$ÇD$ ‰$è„‹UЋEØ‹MÌ)Ѓì‰D$‹EÔ‰T$ ‰L$ÇD$)ȉD$¡Œ”MÇD$ÿÿÿÿ‰$èT¡Œ”MƒìÇD$‰$輌ƒìë‰$è7ƒìÇ$dè(wÿÿè;‹Œ”M9ÐuÚ…ÛCIÃ1ÉÁø‹…d•M…Àt&‹M‹}ë ‹@ …À„.·P9Êuí·P9úuå‹H‹U‹‚¬‹‹‰L$‹MÇD$‰\$ ‰$‰L$‹M‰L$ÿPTƒì…Àts‹U‹M‹‚¬‹‹‰L$‹MÇD$ÇD$‰\$ ‰L$‰$ÿPTƒì…Àt7‹E‰\$‹U‹]‰t$%ÿÿÿ‰D$‹E‰\$ ‰$‰D$èzõÿÿ‰Ãé/÷ÿÿv‹M`ÿÿÿÇD$‰ß‰ $èå"‹Eèôÿÿ¹1À󫉰þÿÿÇ…`ÿÿÿlÇ…dÿÿÿÇEÈBéøÿÿƒÈ 1ɉé˜úÿÿf‹]1À…ÛˆÙvÆD‚ˆD‚ÆD‚ÆD‚ƒÀƒø uåt&ÆD‚ÆD‚ÆD‚ÆD‚ƒÀ=öuâfÆD‚ˆD‚ÆD‚ÆD‚ƒÀ=uã‹U‹‚¬‹H ƒÀ‹ÇD$‰L$ ‰D$ÇD$D‰$ÿSƒì…À…Ø‹M‹‘¬‹B‹R ‹‰T$‰$ÿQ|ƒì…À„ùÿÿ‰D$1ÛÇ$xœLèâÿÿéæõÿÿÆD‚ÆD‚ÆD‚ÆD‚ƒÀ=uâédÿÿÿ´&1ÉéÞýÿÿ‹S¸…Òt‰$èu—‹ÇCƒÈ‹M‹‘¬‹J‰éLùÿÿ¶‹S ;•¤þÿÿ…uúÿÿ‹  ”MÇ…¤þÿÿÇ…¬þÿÿ‰¨þÿÿ‹ ¤”M‰°þÿÿt&‹¨þÿÿ…¨þÿÿ‰MÌ‹°þÿÿ‰EÔ¡Œ”MʉMЉU؉$ès‰‰Æ¡Œ”MƒìÇD$ðÿÿÿ‰$èQ‰1Òƒì…ö•‰D$ẺT$ÇD$ ‰$載‹UÌ‹}Ô‹EЋuØ‹M)׃ì)ƅɈ*‹¤þÿÿ…É„2Ç$茉)øƒì‰ÂÁêÑø‰EÜÇ$èn‰¹@)ðƒì‰ÂÁê‹UÜÑø‰Eà‰D$ ¡Œ”M‰L$‰t$‰|$‰T$ÇD$þÿÿÿ‰$è3‰¡”M£ ”M¡””Mƒì£¤”M¡Œ”M‰$艃ìéëóÿÿ‹EÜ‹Uà‰…¨þÿÿ£ ”M‰•°þÿÿ‰¤”Méhùÿÿ‹‰ÂÊ€‰‹S‹:…ÿt  ‰‹EÇ@ ÀBé4øÿÿfÇ$è4yÿÿé«óÿÿǰéZ÷ÿÿ9ót‰…œþÿÿ‰$è aÿÿ‹…œþÿÿ‰D$1ÛÇ$²œLèàÿÿéoóÿÿ¡Œ”M‰$è–‡ƒì…À…Í÷ÿÿ‹…¤þÿÿ9Cu‹ þÿÿ1Ò9K Ç…´þÿÿt|Ç$“›LèÍŠÿÿÇ$¨›L‰…´þÿÿ車ÿÿ‹´þÿÿ…ɉÂtRE܉D$ Eà‰D$‹…´þÿÿ‰•œþÿÿÇD$»›L‰$èÕ”‹•œþÿÿƒø„勵´þÿÿ¿Á›L¹ó¦D•´þÿÿ¡¤”M‹  ”M‰EÐC ‰MÌK‰EØ¡Œ”M‰•œþÿÿ‰MÔ‰$è톉ơŒ”MƒìÇD$ðÿÿÿ‰$èˆ1Ƀì…ö•Á‰D$ẺL$ÇD$ ‰$è6‡‹MÌ‹uÔ‹EЋ}Ø‹•œþÿÿ)΃ì)Ç…Ò„õÇ$è‡)ðƒì‰ÂÁêÑø‰EàÇ$èó†)øƒì‰ÂÁêºÑø‰E܉D$ ‹Eà‰T$‰|$‰t$‰D$¡Œ”MÇD$þÿÿÿ‰$踆¡”M£ ”M¡””Mƒì£¤”Méöÿÿ‹¬þÿÿ‹C‹S ‰¤þÿÿéMüÿÿ‹F¶@;E´…’ôÿÿ‰óéõÿÿ‹  ”M…É…µ‹¬þÿÿ…É…§‹ ¤”M…É…™ÇEàÿÿÿÿ¸ÿÿÿÿºÿÿÿÿÇEÜÿÿÿÿ¹BéÆüÿÿ‹  ”M‹C‹S ‰¨þÿÿ‹ ¤”M‰°þÿÿéÇûÿÿ‰D$1ÛÇ$Ø™Lè•Ýÿÿéìðÿÿ‹ƒÂ‹ÇD$ ‰T$ÇD$‰$ÿQƒì…À…è‹U‹‚¬‹@éÌôÿÿ‰Uܹ@‰Eàé?üÿÿ‰D$1ÛÇ$È›Lè1ÝÿÿéˆðÿÿÇ$èp…)øƒì‰ÂÁêÑø‰EÜÇ$èR…)ðƒì‰ÂÁêÑø‰Eà‰D$ ‹EÜÇD$@‰t$‰|$‰D$¡Œ”MÇD$ÿÿÿÿ‰$è…ƒìéôûÿÿ‰óéIïÿÿ9ót‰…œþÿÿ‰$è]ÿÿ‹…œþÿÿ‰D$1ÛÇ$МLè‡ÜÿÿéÞïÿÿ‹C¶@f¯EƒÀƒàøf‰C·À¯C ‰$è…‘…À‰C…Yóÿÿ9ót‰$è6]ÿÿÇ$1Ûèuÿÿéïÿÿv‰D$1ÛÇ$œLèÜÿÿéuïÿÿÇ$4œL1Ûè›qÿÿébïÿÿ9ó„þôÿÿ‰$1Ûèä\ÿÿéKïÿÿ‰D$1ÛÇ$\œLèÝÛÿÿé4ïÿÿ‹ ”M…Òu-ƒ½´þÿÿu$ƒ=¤”MuÇEÜÿÿÿÿƒÈÿºÇEàÿÿÿÿéýÿÿ‰MຉEÜéýÿÿ‹E࣠”M‹EÜ£¤”Méüÿÿ9ót‰…œþÿÿ‰$èZ\ÿÿ‹…œþÿÿ‰D$1ÛÇ$—œLèRÛÿÿé©îÿÿ¶¼'U1À‰åWVSƒìL‹u‹–¬ÇÇBÇBÇB Ç„‚Ç„‚$Ç„‚4ƒÀƒøu×Ç‚»ÿÿÿÿ‰4$èQ…ÀˆÙ¡Œ”M‰$è¼¥EäÇD$‰D$Ç$ÿÈýMƒì …À…‹E䋎¬‹‰L$ÇD$÷L‰$ÿ‰Ç‹Eäƒì ‹‰$ÿRƒì…ÿ…¡Œ”M‰$èy‚ƒì‰ÇÇD$‰$è샃ì‰EÔÇD$ ‰<$èÖƒ‹U öeÔƒìˆB¡Œ”M‰|$‰$è9‚ƒìÇD$`üMÇD$ÿÿÿÿÇ$è*‚¡ÌüMÇh•MÇl•MÇp•M‰F4¡ÐüMÇt•Mƒì ‰F8‹†¬‹‹ÇD$@!B‰t$ ÇD$ÇD$‰$ÿR ƒì…À…É1Û‹–¬‹¼š‰Uн‰$莋UÐ…À‰„š$tc‹h•M1É…Òt‰ˆ‹R ƒÁ…ÒuóÁá…ÿÇ~ÇD$ €BÇD$‰|$‰$èmƒÃƒûu‡€N(‰ð0Ûè`éÿÿeô‰Ø[^_]ÃÇ$»ÿÿÿÿèµqÿÿëã‰D$Ç$U•LèÃØÿÿëщ|$Ç$ïœLè±Øÿÿ뿉D$Ç$ LèŸØÿÿë­U‰å‹E Æ@Æ@1À]ô&¼'U¸ÿÿÿÿ‰å]öU¸ÿÿÿÿ‰å]öU‰å]Ãt&¼'U1À‰å]Éö¼'U‰å]Ãt&¼'U‰å]Ãt&¼'U¸‰å]öU‰åWSƒìÇ$¸è…À‰Ã„1À¹®‰ßó«Ç$ èóŒ…À‰ƒ¬„òÇÇ@Ç@ÇCàSBÇCTBÇC 0VBÇCÇC`TBÇC PTBÇC$ðUBÇC@TBÇCDÇCHÇCLÇCPÇCT0TBÇCX@TBÇC\ÇC` TBǃǃǃǃ ǃǃ,€vCǃ0pvCǃ´ÀUBƒÄ‰Ø[_]ÃÇ$è´oÿÿƒÄ‰Ø[_]ÃÇ$èŸoÿÿ‰$1Ûèå‹ëÊvU‰åSƒì‹]‹ƒ¬‰$èÈ‹‰]ƒÄ[]黋t&¼'U‰åSƒì‹]‹ƒ4‹@…Àt‰$è‘‹‹ƒ4Ç@ƒÄ[]ô&¼'U‰åWVSƒì<‹E‹] ‹u‹ˆ¬‹A…Àt‰$èI‹‹U‹Š¬…ö‹}VIÖ¯}Áú‰Uä‰Mà¯ú‰<$è‹‹Mà‹Uä…À‰A„Œ‰Uä‰|$ÇD$‰$èýŠÇD$ÇD$ÇD$ ÇD$‰t$‰$è¹ ‹Uä…ÀtR‹E‹Mf¯U%€‰‹¬‹M‰K‰‹M‰K ‰H‹@f‰S‰CƒÄ<‰Ø[^_]Ãt&Ç$ÀžL1ÛèÒjÿÿëá‹M1Û‹¬‹@‰$èZŠ‹U‹‚¬Ç@Ç$ìžLèžjÿÿë­¶¿U‰åƒìÇ$"ŸL‰uø‰}üèèÿÿ‰Æ1À…öt¿2ŸL¹ó¦”À¶À‹uø‹}ü‰ì]ÃU‰åSƒì‹]…Ût2‹…Àt‹P…Òt ‰$è͉‹‰$èɉ]ƒÄ[]鶉¶ƒÄ[]Ãv¼'U‰åWVSƒì\‹UÇ$(‰U¬è}‰‹U¬…À‰Æ‰Ã„š1À¹ ‰÷ó«‰ÐƒÀJHÁÁøÆF$ÿˆVˆF‹E E E‰EÜ„aÆF ÆF‹} Ç…ÿt:‹E ¹¨të‰ùÑè¨ytõˆK ¨¹u ët&‰ùÑè¨yÿuõˆKÆC ÆC‹M…ÉtA‹E¹¨t ët&‰ùÑè¨ytõˆK ¨¹u ë´&‰ùÑè¨yÿuõˆKÆC ÆC‹E…ÀtA‹E¹¨t ët&‰ùÑè¨ytõˆK ¨¹u ë´&‰ùÑè¨yÿuõˆKÆC ÆC ‹}…ÿtA‹E¹¨t ët&‰ùÑè¨ytõˆK ¨¹u ë´&‰ùÑè¨yÿuõˆK ‹E ƒú‹M‹}‰C‹E‰K‰{‰Cu‰U¬Ç$èʇ‹U¬…À‰Ç‰„øÇEà‰ÑÓeà‹Eà…‰‰$‰U¬è˜‡‹U¬…À‰G„Ç‹MÜ…É„h‹U ÇEÜÇEÌ…Òt9¶KÇEÜ)MÜ…Ét'‹UÜ¿‰EØ1À‰uÔ÷Ú‰þ ð…Éô‰EÌ‹uÔ‹EØ‹}ÇEÔÇEÈ…ÿt9¶KÇEÔ)MÔ…Ét'‹UÔ¿‰EÐ1À‰uØ÷Ú‰þ ð…Éô‰EÈ‹uØ‹EЋMÇEØÇEÐ…Ét;¶KÇEØ)MØ…Ét)‹UØ¿‰EÀ1À‰uÄ÷Úf‰þ ð…Éô‰EЋuÄ‹EÀ‹Uà…ÒŽ$¶S¶K¶{‰u°‰UĶS ‰MÀ¶K ‰}¼¶{ ‰U¸1Ò‰M´t&‹] ¶M¸!ÓÓë¶MĉÞ¯]ÌÓæ¶MÜÓû óˆ‹]¶M´!ÓÓë¶MÀ‰Þ¯]ÈÓæ¶MÔÓû‰ù óˆ\‹]!ÓÓë¶M¼‰Þ¯]ÐÓæ¶MØÆDÓû óˆ\ƒÂ;Uàu‹u°ƒÄ\[‰ð^_]Ãú~{ƒú»NÚºVUUU‰Ø÷ê‰ØÁø‰ÁÆF )Ñ)ƒÁR(ÉÈ(؈FˆEç‰ÐˆV ýÿÿƒ}àt‰T$ÇD$‰$è …ƒÄ\‰ð[^_]ÃPÆ@ÿÆ@ÿÆÿÆ@ÆBÆBépÿÿÿÇ$è€hÿÿé_ÿÿÿ‰$1öèÑúÿÿÇ$èehÿÿéDÿÿÿU‰åƒ} VS‹]t[^]Ã1À‰Ááà‰Ê‰ÎÁþÁú ò Ê Åáàˆƒ‰Î‰ÊÁúÁþ ò ʉÁƒáˆTƒ ʉÑÁá шLƒƒÀ=u¥[^]ö¼'U‰å‹M‹Q¶B¶Rf¯A€út€úu·ÀƒÀÑèƒÀƒàü]÷ÀƒÀÁèƒÀƒàü]Ãë U‰åWVSƒì‹]¶M ¶U¶E‹3ÆEã…ö‰uð~V¶É¶Ò‹s¶À1Û‰Mì¿ÿÿÿÿ‰Uè‰Eä¶ž¶Lž+Uì+Mè¶Dž+Eä¯É¯Ò¯ÀÂ9×v …Òˆ]ãt ‰×ƒÃ9]ðƶEãƒÄ[^_]Éö¼'U‰åWV‰ÖS‰Ãƒì,…Ét ‹;~mÇ‹‰$‰UÜ胋UÜ…À‰Eà„‚1ÿ…Ò~;‰u䉯½C¶P‰T$ ¶P‰T$¶‰D$‹Eä‰$èÿÿÿˆ>ƒÇ9;Ê‹EàƒÄ,[^_]ÃÁà‰D$‹B‰M܉D$‹C‰$èð`ÿÿ‹MÜ…À…lÿÿÿÇÇEàë¿Ç$è:fÿÿë±´&U‰åVSƒì‹U¶] ¶E¶u‹ …Ét*æÿ¶À¶Û‰t$ ‰\$‰D$‰ $ècþÿÿƒÄ[^]¶ÀöJ¶À¶ÛæÿÓø¶J Óà¶JÓû¶J Óã¶J ØÓþ¶J Óæ ð BƒÄ[^]Ãt&¼'U‰åƒì‹U‰]ô¶E‰uø¶]‰}ü¶u‹ ¶} …Ét8æÿ¶Ûçÿ‰t$ ‰\$‰|$‰ $èÅýÿÿ‹]ô‹uø‹}ü‰ì]¶ÀÃt&¶J ¶À¶ÛçÿæÿÓø¶J Óà¶J#BÓû¶J Óã¶JÓÿ¶J Óç¶J û‹}üÓþ¶J Óæ ó‹uø Ø‹]ô‰ì]ô&U‰åƒì‹E ‰]ô‹U‰uø‹]‰}ü‹u‹…Ét?‹I<•¶‘ˆ‹‹R¶T:ˆ‹‹U‹@¶D8ˆ‹MÆÿ‹]ô‹uø‹}ü‰ì]ËH¶x!щMè¶H Óm蹉}ðÿ)ù‹}èÓï¶Mð‰}ì‹}èÓç¶Mìùˆ‹p¶H ¶x!ÖÓ}ìÿ)ù‰÷Óï¶Mì‰}ð¿Óæ¶Mðñˆ ‹X¶H ¶p!ÓÓë 6)ωù‰ßÓï‰ñÓã‹}ˆ‹H…Ét,!ʶH »¶@ ‹}Óê )ˉىÓÓë‰ÁÓâÓˆé,ÿÿÿ‹EÆÿé!ÿÿÿë U‰åƒì‹E ‰]ô‹U‰uø‹]‰}ü‹u‹…Ét?‹I<•¶‘ˆ‹‹R¶T:ˆ‹‹U‹@¶D8ˆ‹]ô‹uø‹}ü‰ì]ô&‹H¶x!щMè¶H ‰}ðÿÓmè¹)ù‹}èÓï¶Mð‰}ì‹}èÓç¶Mìùˆ‹p¶H ¶x!ÖÓ}ìÿ)ù‰÷Óï¶Mì‰}ðÓæ¶Mðñˆ ¶H »#P¶@‹}Óê )ˉىÓÓë‰ÁÓâÓˆ‹]ô‹uø‹}ü‰ì]ÃvU‰åW‹}V‹M S‹]…ÿ~F1À‹U¶4¶tr‰ò¶tˆƒ‹U¶´r‰ò¶tˆTƒ‹U¶´r‰òˆTƒƒÀ9øu¼[^_]ÃfU‰åSƒì‹]…Ût#‹CÇÇCÿÿÿÿ…Àt‰$èf~ÇCƒÄ[]Éö¼'U‰åƒì¡ ™M‹UƒÀ…À£ ™MyÇ ™M¸‰B4‹B0‰EÉë‹t&¼'U‰åSƒì$‹]‹C…Àt‰$èôÿÿ‰$èŸÿÿÿ‹E‰D$‹E‰D$ ‹E‰D$‹E‰D$‹E ‰$è(ôÿÿ‰CƒÄ$[]Ãë U‰å숉uø‹u‰]ô‰}ü‹‹^0öÄ@…݉$èõþÿÿ‹U ‹FÇC‹R€x‰…Ôûÿÿ‰•ÐûÿÿtI‹½Ðûÿÿ€„Ë•Ðûÿÿ‹Ôûÿÿ¶R8Q„‹U ‹B4‰‰C‰4$èW‹]ô‹uø‹}ü‰ì]öB<„‹•Ôûÿÿ<Ç…Èûÿÿ‹ ¶ÐD•Èûÿÿ‰•Èûÿÿ‹‹…Èûÿÿ‰°ûÿÿ‰•´ûÿÿ¯Â‰$èÃ|‹•´ûÿÿ‹°ûÿÿ…À‰…Äûÿÿ„}‹½ÐûÿÿÇ…Àûÿÿ‹…ÿt‹…Ôûÿÿ¶@$‰…Àûÿÿ…ÒŽ@‰¼ûÿÿ1À‹½ÐûÿÿÇ…Ôûÿÿ‰Ë‰µ¸ûÿÿ餀ú„l€úu¶O …‹µÀûÿÿSÓî¶O Óæ¶O‰µÌûÿÿ¶rÓþ¶O Óæ¶ ¶R‰Ðûÿÿ¶OÓ½Ðûÿÿ¶O Ó¥Ðûÿÿ¶Of µÐûÿÿÓú¶O Óâ‹Äûÿÿ Ö‹•Ôûÿÿf µÌûÿÿf‰4‹µÈûÿÿƒÀµÔûÿÿ;k¶W€ú…Oÿÿÿ¶W 4…‰µ”ûÿÿ‹sÀê¶Ò¶ †‰•Ðûÿÿ‹•Äûÿÿ‹µÐûÿÿ•Ôûÿÿ‰•Ìûÿÿˆ 2¶w ‹”ûÿÿ‰òÀê¶ò‹•Ìûÿÿ‰µÐûÿÿ‹s¶L‹µÐûÿÿˆ 2¶w ‹•”ûÿÿ‰ñÀé¶ñ‰µÐûÿÿ‹s¶L‹•Ìûÿÿ‹µÐûÿÿˆ 2é:ÿÿÿöt‹} öub‹…ÐûÿÿK‹½Ôûÿÿ‹‹è•÷ÿÿ‰Â‰C‹C…À„u‹…Ðûÿÿ‹•Ôûÿÿ¶@8B„‚ýÿÿÇCévýÿÿÇD$‰4$è\éýÿÿÇCë½f‹•àûÿÿ¹‰×ÇEà‰…Ôûÿÿ1Àó«‰$‰•´ûÿÿÇD$èªõÿÿ‹•´ûÿÿKEà‰Uä‹•Ôûÿÿèðöÿÿ‰Â‰C‹C…À…tÿÿÿ…Ò¸ÿÿÿÿ…gÿÿÿé÷üÿÿ‹Ðûÿÿ‹y‹Ôûÿÿ9y…Ìüÿÿ‹…Ðûÿÿ‹@9A…ºüÿÿÇCé®üÿÿ¶O 4…‹•ÀûÿÿsÓê¶O Óâ¶O‰•Ìûÿÿ¶VÓú¶O Óâ¶¶v‰Ðûÿÿ¶OÓ½Ðûÿÿ¶O Ó¥Ðûÿÿ¶O •ÐûÿÿÓþ¶O Óæ ò‹µÔûÿÿ •Ìûÿÿ‹Ìûÿÿ‹•Äûÿÿ‰ 2é‘ýÿÿ…Ò¸ÿÿÿÿ…~þÿÿé'üÿÿ‹¼ûÿÿ‹µ¸ûÿÿ‹Äûÿÿ‰KéúûÿÿÇ$èØ\ÿÿƒÈÿÇCéòûÿÿ‰ö¼'U‰åSƒì‹]…Ût$‰$èjúÿÿ‹C…Àt‰$èëx‰]ƒÄ[]éÞxƒÄ[]ô&U‰åƒìÇ$ ‰]ø‰uüè°x…À‰Ã‰Æt@1ÀǃÀƒø rñÇ$è‹x…À‰Ft*ÇÇ@‰Ø‹uü‹]ø‰ì]ÃvÇ$è\ÿÿëã‰4$1ÛèHÿÿÿÇ$èü[ÿÿëËU‰å]Ãt&¼'U¡À™M‰å‹U…Òx‰À™M]Éö¼'U‰å‹E…ÀtÇC¸à™M]Éö¼'U¡Ä™M‰å]öU‰å‹E]£Ä™MÃvU¸PŸL‰å‹UúBw‹•@›MºPŸL…ÀDÂ]Ãv¼'U‰åƒìH¶U‰]ô·Ä™M‰uø‹u ‰}ü€úÇEÔ„׋NÔþÿÿƒø †©·Ã‰F„Ò…£‹=ìýMÆEÔ…ÿ…ö1ÿ…Ét1À8‘à™M„„·Û‰Ä™Mˆ‘à™M¶MÔ1À€¹ üMufˆUÖ‹…ÿ‰]Ø‹N‰MÜ‹V‰Uà‹F ‰Eät‹5äýM…ö…á |M]Ô…Àt]Ô‰$ÿЉÂ1À…Òt‰$è?Qÿÿ¸ëÿ$…\ŸL€út}1À‹]ô‹uø‹}ü‰ì]ËN·Ã‰Fù1„‡áù-„Õt&† ù/„áù0…ƒË1ÿë1ÿ9 øýM…þþÿÿÇìýMéïþÿÿ1ÿÆEÔºéßþÿÿ€çûéµþÿÿ¶€ç÷é§þÿÿ€çþéŸþÿÿ€çýé—þÿÿƒã¿éþÿÿ€ãé‡þÿÿƒãþéþÿÿƒãýéwþÿÿöÈ™M…jþÿÿéÿÿÿ¶öÈ™M…Rþÿÿvéÿÿÿ€ç¿éBþÿÿvù4„$vRù6„Ö‚Àù9u(€Ï@1ÿéBÿÿÿ€Ë€1ÿé8ÿÿÿt&…É„*ÿÿÿù,ti¿éÿÿÿ¶ù2„Ôù3uÜ€Ï1ÿéöþÿÿf‹uÔ‰ôýM‰ øýM‰üýM‰5ðýM£þMÇàýMè‘Qÿÿ£ìýMéþÿÿ€÷1ÿöÈ™M…©þÿÿ·ÃöÄ•‰Féiýÿÿt&€Ï1ÿéŠþÿÿ¶€Ï1ÿézþÿÿ¶€÷ 1ÿöÈ™M…bþÿÿ·ÃöÄ •‰Fé"ýÿÿƒË1ÿéGþÿÿv€Ï1ÿé:þÿÿ¶ƒË@1ÿé*þÿÿ¶U‰åWV¾CS1Ûƒì,}ØÇEØÇEàÇEä붃Ãît(€»à™Muï‰]܃É|$Ç$èYüÿÿƒîuÜt&ÇìýMƒÄ,[^_]ô&¼'U‰åƒì¡ìýM…ÀuÉÃèZPÿÿ‹ àýM‰Â+ìýM…Éu8;èýMvߣìýM¡ |M…Àt Ç$ðýMÿÐ…ÀtÄÇ$ðýMèùMÿÿÉô&;äýMv§£ìýMÇàýMÉô&U‰åƒì‹U ‹E…Òx0‰ÁÁé„Éu'£äýM1ÀÇàýM‰èýMÇìýMÉÃt&Ç$”ŸLèdSÿÿ¸ÿÿÿÿÉö¼'U‰åWSƒì‹|MÇ$è¦úÿÿº@›M1À‰×¹Có«ºà™M‰×ÇÄ™MÆ"›M±Pó«flj$ÿ“,ÇD$Ç$è8ÿÿÿÆÈ™MÇ$¹ŸLèEhÿÿ…Àt#‰$èérƒø„@ ƒø„ ƒø„ Ç`›MÏŸL1ÀÇd›MÙŸLÇp›MÝŸLÇt›MãŸLÇŒ›MêŸLǬ›MðŸLÇÀ›M÷ŸLÇÄ›MýŸLÇÈ›MÿŸLÇÌ›M LÇЛM LÇØ›M LÇÜ›M LÇà›M  LÇä›M  LÇè›M  LÇì›M LÇð›M LÇô›M LÇø›M LÇü›M LÇœM LÇœM LÇœM LÇ œM LÇœM! LÇœM# LÇœM% LÇœM' LÇ œM) LÇ$œM+ LÇ(œM- LÇ,œM/ LÇ0œM1 LÇ4œM3 LÇ8œM5 LÇ<œM7 LÇ@œM9 LǬœM; LǰœM= LÇ´œM? LǸœMA LǼœMC LÇÀœME LÇÄœMG LÇÈœMI LÇÌœMK LÇМMM LÇÔœMO LÇØœMQ LÇÜœMS LÇàœMU LÇäœMW LÇèœMY LÇìœM[ LÇðœM] LÇôœM_ LÇøœMa LÇüœMc LÇMe LÇMg LÇMi LÇ Mk LÇMm LÇMo LÇMq LÇMs LÇ Mu LÇ$Mw LÇ(My LÇ¡LÇžMG¡LÇ žMP¡LÇ$žMY¡LÇ(žMb¡LÇ,žMk¡LÇ0žMt¡LÇ4žM}¡LÇ8žM†¡LÇ<žM¡LÇ@žM˜¡LÇDžM¡¡LÇHžMª¡LÇLžM³¡LÇPžM¼¡LÇTžMÅ¡LÇXžMΡLÇ\žMסLÇ`žMà¡LÇdžMé¡LÇhžMò¡LÇlžMû¡LÇpžM¢LÇtžM ¢LÇxžM¢LÇ|žM¢LÇ€žM(¢LÇ„žM1¢LLjžM:¢LÇŒžMC¢LÇžML¢LÇ”žMU¢LǘžM^¢LÇœžMg¢LÇ žMp¢LǤžMy¢LǨžM‚¢LǬžM‹¢LǰžM”¢LÇ´žM¢LǸžM¦¢LǼžM¯¢LÇÀžM¸¢LÇÄžMÁ¢LÇÈžMÊ¢LÇÌžMÓ¢LÇОMÜ¢LÇÔžMå¢LÇØžMî¢LÇÜžM÷¢LÇàžM£LÇäžM £LÇèžM£LÇìžM£LÇðžM$£LÇôžM-£LÇøžM6£LÇüžM?£LÇŸMH£LÇŸMQ£LÇŸMZ£LÇ ŸMc£LÇŸMl£LÇŸMu£LÇŸM~£LÇŸM‡£LÇ ŸM£LÇ$ŸM™£LÇ(ŸM¢£LÇ,ŸM«£LÇ0ŸM´£LÇ4ŸM½£LÇ8ŸMÆ£LÇ<ŸMÏ£LÇ@ŸMØ£LÇDŸMÜ£LÇHŸMà£LÇLŸMä£LÇPŸMè£LÇTŸMì£LÇXŸMð£LÇ\ŸMô£LÇ`ŸMø£LÇdŸMü£LÇhŸM¤LÇlŸM¤LÇpŸM¤LÇtŸM ¤LÇxŸM¤LÇ|ŸM¤LÇ€ŸM¤LÇ„ŸM!¤LLjŸM$¤LÇŒŸM)¤LÇŸM/¤LÇ”ŸM4¤LǘŸM;¤LÇœŸM@¤LÇ ŸMD¤LǤŸML¤LǨŸMV¤LǬŸMY¤LǰŸM\¤LÇ´ŸM_¤LǸŸMb¤LǼŸMe¤LÇÀŸMh¤LÇÄŸMk¤LÇÈŸMn¤LÇÌŸMq¤LÇПMu¤LÇÔŸMy¤LÇØŸM}¤LÇÜŸM¤LÇàŸM…¤LÇðŸM‰¤LÇôŸM‘¤LÇøŸM›¤LÇüŸM§¤LÇ M³¤LÇ M¾¤LÇ MɤLÇ  MÓ¤LÇ MݤLÇ Mæ¤LÇ Mñ¤LÇ Mû¤LÇ  M¥LÇ$ M¥LÇ( M¥LÇ, M!¥LÇ0 M&¥LÇ4 M3¥LÇ8 M;¥LÇ< MA¥LÇ@ MF¥LÇD ML¥LÇH MQ¥LƒÄ[_]ÃÆÈ™MéåöÿÿvÆÈ™MéÖöÿÿt&ÆÈ™MéÆöÿÿt&U‹äýM‰å‹E‰‹E ‹èýM‰]ÃU‰åƒì‰Eð¡|M‰}ü‰×‰]ô‰uø‹ˆ4…Ét8‹Y…Ût1·q‰Ú‰ØÁú÷þ‰ÚÁúf)‰Ø·q÷þ‹A¶H‰ÐÁú÷ù‹Uðf)‹]ô‹uø‹}ü‰ì]ô&U1À‰åfÇd MfÇf MfÇj MfÇl MfÇ` MfÇb MÆh M]ö¿U‰å]Ãt&¼'U‰å‹U‹E …Òt ¿ d M‰ …Àt ¿f M‰¶h M]Ãt&U‰å‹U‹E …Òt ¿ j M‰ …Àt ¿l M‰¶h MfÇj MfÇl M]ÃfU‰å‹Ef£` M‹E ]f£b MÉö¼'U‰åWVSƒìl¶]¶h M‹u‹}„ÛDØ‹E f‰uÄf‰}À…À„5‰ð‰ùfd Mf f Mf‰EÄf‰MÀ1Òf…Àx·` Mƒêf9` Mf‰U¨OÐ1Àf…Éx·b Mƒèf; b Mf‰E¨LÁ‹M …Éu‰Ö‰Çf+5d Mf+=f M‰ùf ñÇE¼u‹E¼ƒÄl[^_]Ãt&¿È‰L$¿Êf‰d Mf£f Mf5j Mf=l M‰E ‰U¤ˆh M‰ $è§ÿÿ‹E €=$üM‹U¤u©f‰EÚ¡ |MMÔÇEÔÇEàÇEä…ÀÆEÔˆ]Öf‰UØf‰uÜf‰}Þt‰ $‰M¤ÿЋM¤…À„^ÿÿÿ‰ $èµ@ÿÿÇE¼éJÿÿÿEÄUÀè.ýÿÿ·EÄ·MÀéÍþÿÿU‰åWVSƒìL‹U‹E¶]¶u ‰Ñ Áf‰EÄ1Àf‰UÀ1Òf…ÉÇEÔÇEØÇEÜÇEàÇEä…Ÿ· d Mf‰MÄf…Òu ·f Mf‰UÀ„Û¶h MuG‰ñ¶ùOÿ¿þÿÿÿÓÇ!ú…ÀÆEÔˆh M…´¶EÔ1ÿ€¸ üM„ÕƒÄL‰ø[^_]ô&€ût 1ÿƒÄL‰ø[^_]Éñ¶ùOÿ¿Óç ú…ÀÆEÔˆh Mt¬ë^EÄUÀè#üÿÿ·EÄf…Àˆö·` Mf9ÐÆ·UÀf…҈ɷ b Mf9Ê™f…À„͸éÿÿÿ¶¿EÄ1ÿ¿UÀf£d M‰$f‰f M‰T$è­ÿÿ¶EÔ€¸ üM…+ÿÿÿ‰ðˆEÖ·EĈ]×]Ôf‰EØ·EÀf‰EÚ¡ |M…Àt]Ô‰$ÿÐ…À„÷þÿÿ¿‰$èË>ÿÿƒÄL‰ø[^_]ÃQÿf‰UÀé[ÿÿÿt&Bÿf‰EÄé.ÿÿÿt&fÇEÀ1Òé:ÿÿÿvfÇEÄ1Àé ÿÿÿ¸é<þÿÿ‰ö¼'U‰åS1Ûƒìë t&ƒÃƒût7¶h MCÿ£Âsé‰\$ƒÃÇD$ ÇD$Ç$è–ýÿÿƒûuɃÄ[]ÃU‰åìȉuø‹u ‰]ô‹]‰}ü…ö„…Û„ˆ9p M„¡|M1ÿ‰p M‰5t M‹€4…ÀtB9XtL‰t$1ÿ‰$è|ûÿÿ…TýÿÿÇD$ ÇD$ÇD$ ‰$èf9ÿÿ€=0üMt>‰ø‹]ô‹uø‹}ü‰ì]Ã9p u¯ëê´&1ÿ‹]ô‰ø‹uø‹}ü‰ì]Ã1ÿ95t M…eÿÿÿë¡ |M‰]Ø]ÔÆEÔ‰uÜ…Àt ]Ô‰$ÿÐ…Àt ‰$¿è=ÿÿë‘U‰åWVSƒì‹E‹]‹u…ÀŽŒ‹C1ÿ‹S‰Eð‹C‰Uì‰Eèf‹U ¶K ‹Eð‹º‰Uä‹Uì#Uä#EäÓê¶KÓâ¶NÓê¶N Óâ¶K Óè¶KÓà¶NÓè¶N Óà¶K ‹Eè#EäÓè¶KÓà¶NÓè¶N Óà ‹Ef‰xƒÇ;}uŠ‹UƒÄ[^_]ö¿U‰åWVSƒì‹u‹U‹]ƒ~À÷Ð%ÿ…Ò‰E쎕ÇEð‹Uð‹M ‹C ·‹uÐÓë¶M´uÔÓã¶M¸Óî¶M¼Óæ¶MÄ ó‹uÀuÌÓî¶M¬Óæ ó‹uȉÙÁéˆÁëˆLˆ\ƒÂ;Uˆ…·þÿÿ‹}”}œU˜‹Uœ9U… þÿÿ‹M€·ƒm„„ïôÿÿ·ÒÇEœUŒéþýÿÿ‹]œ…ÛuËéÑôÿÿ‹U”1ö1Éé1þÿÿ<f„é<…²ôÿÿ‹E ¿Ò‰U¼‹U ‹MŒ·@‰E¨·BE¼‰EÌ‹E¼÷؉EÔ1Àt&·Ð·SƒÃ…Òtw9EÌ~@‹u¼)Æ…öމÑ)ñ…É~+<µ‰}È‹}ÌÆ)÷9ÏNωMЋMÔ<±‹uÈ‹MÐ43üó¥“Ð9Eu¡‹u€·ƒm¨„ôÿÿ··ÀEÔ1ÀзSƒÃ…Òu‰…ÀuÏéðóÿÿ‹M‰ $èÅÿÿ‰Â¸ÿÿÿÿ…Ò‰Øòÿÿéõóÿÿ¿Ò‹} ‰U¼‹U ‹M¼‹uŒ··BE¼‰}Ô‰EÌI)Æ1À‰uŒt&¶¶{ƒÃÐ…ÿ‰}Ä„Š9EÌ~L‹u¼)Æ…öމù)ñ…Év~4‹}ÌÆ)÷9ÏNÏ I‰M¨Áéëÿÿ·À1ÉEÈéqþÿÿ…ÉuÕé'ëÿÿ‹H‹p‹x‰Ê ò úúÿÿÿ„Š ‹u ÇE˜‰] ·v‰u„‹} ·U˜·WƒÇ‰}€…Ò‰U”„j‹M˜ƒÂ¾‹]Œ‰Uœ ‹‰M¤v‹}¤‹] ¶H ‹T·ü¶x ‹³‰MȶH‰}¸¶x‰lÿÿÿ¶X‰M´¶Mȉ}¬‹x‰]¼¶X !×Óï¶M¼‰]°‹XÓç¶M¸!Ó#PÓë¶M´Óã¶M°Óê¶M¬Óâ¶MȉUÔ‹P#•lÿÿÿÓê¶M¼Óâ¶M¸)ú¯U¨Áê‰UÄ‹P#•lÿÿÿÓê¶M´Óâ)Ú¯U¨Áê‰UжM°‹P#•lÿÿÿ]Ð}ÄÓê¶M¬Óâ¶M´+UÔ¯U¨Óë¶M¸ÁêÓã¶M¼Óï¶MÈÓç¶M¬ û‹}¤UÔÓê¶M°Óâ Ó‰\·üƒÆ;uœ…êþÿÿ‹M€‹U”‘‹M”M˜‰U ‹u9u˜…”þÿÿƒm„„‚éÿÿ‹}ˆ}ŒÇE˜éxþÿÿ‹]˜…Û„eéÿÿ‹]€‰] ëÅ‹u ÇEœ‰]¤·v‰u€‹}¤¶Uœ¶WƒÇ‰}ˆ…Ò‰U”„‹Mœ‹]”IUŒ[‰]˜‰UÈ1Òt&‹u¤‹}ȶ\¶LÁãÁá ˶L¶t ˶LÁæÁá ζ ¶x ζH ‰}¸¶x‰M¼¶H ‰}°¶x‰M´¶H ‰}Ä‹x‰M¬‹H!÷!ñ‰MÔ¶M¼ÓmÔ¶M¸ÓeÔ¶M´#pÓï¶M°Óç¶M¬Óî¶MÄÓæ‰uÌ‹p¶M¼!ÞÓî¶M¸Óæ¶M´+uÔ¯u¨Áî‰uЋp!ÞÓî¶M°#XÓæ¶M¬)þ¯u¨Óë¶MÄÁîÓã¶M°+]̯]¨Áë‰]À>‹uÐÓë¶M´uÔÓã¶M¸Óî¶M¼Óæ¶MÄ ó‹uÀuÌÓî¶M¬Óæ ó‹uȉÙÁéˆÁëˆLˆ\ƒÂ;U˜…¹þÿÿ‹}”Uˆ}œ‰U¤‹M9Mœ…hþÿÿ‹]ƒm€·S„ çÿÿ·ÒÇEœUŒéEþÿÿ‹Mœ…É„ƒçÿÿ‹Uˆ‰U¤ë¾‹MÔ1ÿ1Òéÿöÿÿ‹MÔ1ÿ1Òé¿õÿÿ€}È„ñ€}È…Oçÿÿ‹u 1À·v‰u¨v·Ð·SƒÃ…Òt2‹MŒ‰Þ<‰Ñüó¥“Ð;EuÙ‹uƒm¨·F„çÿÿ·ÀEŒ1Àë¾…ÀuÜéõæÿÿ‰ð1ÒÇE¨éeúÿÿèÀâ…À„° ‹u ‹} ‹M ÇEÔ¿6·G·I‰uÐð‰E°kÆþEŒ‰M´‰E¬¶EÔ¶CƒÃ…À‰EÌ„‹UÔ9U°ŽÀ‹UÐ+UÔ…ÒŽq)Ð…Àލ4‹M°43UÔÇEà|‰u¸)Ñ9ÁNÁ‹M¬‰EÄ4QnMàaÉaÉÇEààneàaäaäÇEàn}àaÿaÿƒe¨ø‹E¨Áà E¨‰EänEäbÀ‹}Ä1É‹E¨ƒçÁè…ÿ‰}ȉ}ä‰E¼‰EàtW‹}¸‰]À·O·N‰ÐÁà ЉÚÁâ%|à Úâ|à)ЯE¼Áèâ|à‰ÐÁè Âf‰NƒÁ;MÈuº ‹]ÀE¸Æ‹EÄ)È…À‰Eäޏ‹}¸1À oooêÛésÕ oóÛñsÖ ùîÕèqÕýõsö ÛñoìëïÛÝëÞoêÛìsÕoóÛôsÖùîÕèqÕýõsöÛôoéëïÛÝëÞoêÛïoóÛ÷ùîÕèqÕýõÛ÷oéëìÛÝëÞ‹UäƒÀƒê…Ò‰UäMÿÿÿw‹UÌUÔS‹MÔ9M…þÿÿ‹u€·ƒm´„ äÿÿ·ÀÇEÔE¬éåýÿÿ‹}Ô…ÿuËé‚äÿÿfè[à…À„x ‹u ‹} ‹M ÇEÔ¿6·G·I‰uÐð‰E°kÆþEŒ‰M´‰E¬t&¶EÔ¶CƒÃ…À‰EÌ„ ‹UÔ9U°ŽÇ‹UÐ+UÔ…ÒŽü)Ð…Àޝ4‹M°43UÔÇEäø‰u¸)Ñ9ÁNÁ‹M¬‰EÄ4QnMäaÉaÉÇEäàneäaäaäÇEän}äaÿaÿƒe¨ø‹E¨Áà E¨‰EànEàbÀ‹EÄ1É‹}¨ƒàÁï…À‰}¼‰}ä‰EȉEàt^‹}¸‰]À´&·O·N‰ÐÁà ЉÚÁâ%øà Úâøà)ЯE¼Áèâøà‰ÐÁè Âf‰NƒÁ;MÈuº ‹]ÀE¸Æ‹EÄ)È…À‰Eàޏ‹}¸1À oooêÛésÕ oóÛñsÖ ùîÕèqÕýõsö ÛñoìëïÛÝëÞoêÛìsÕoóÛôsÖùîÕèqÕýõsöÛôoéëïÛÝëÞoêÛïoóÛ÷ùîÕèqÕýõÛ÷oéëìÛÝëÞ‹UàƒÀƒê…Ò‰UàMÿÿÿw‹UÌUÔS‹MÔ9M…þÿÿ‹u€·ƒm´„0âÿÿ·ÀÇEÔE¬éÞýÿÿ‹}Ô…ÿuËéâÿÿ‹EÌ1ö1Òéþÿÿ‹EÌ1ö1Òéûÿÿ} àt}¤àt }œà…Däÿÿ}¨€…‹M ÇEÌ·I‰M´¶{E̶s‰}¼…ö‰uÈ„”‹Ẻþ‹MŒA‰ø1Ш„‹MÈ1À¶·<·tçÞûæÞû47·|f#<Ñîfç!47f‰4ƒÀƒéuÉ‹uÈ‹}¼uÌw‹E9EÌ…tÿÿÿ‹Uƒm´·B„ áÿÿ·ÀÇEÌEŒéQÿÿÿ‹EÌ…À„áÿÿ‹]¼ëÁ‹}ÈöE¼‰}¸t8‹E¼s··8‰ÙáÞû‰ø%ÞûÁ‰øf%!Ñé!ØÈ‹MÈf‰ƒÂƒé‰M¸ƒ}¸vU‹}¸1À‹ƒï‹ ãÞûÞûáÞûÞûÑëÑé ‹#ã!!Ù‰ ƒÀƒÿwË‹M¸ƒé‰ÈƒáÑè…Æ‰M¸‹M¸…É„ ÿÿÿ··2‰Ã‰ñãÞûáÞû!ðÙf%!ÑéÈf‰éáþÿÿ} àtÿàt ùà…vâÿÿ}¨€…- ‹u ÇEÌ·v‰u´¶E̶{C‰E¼…ÿ‰}È„ˆ‹M̉Ƌ}ŒO1Ш„ƒ‹MÈ1À·<·tçÞ÷æÞ÷47·|f#<Ñîfç!47f‰4ƒÀƒéuÉ‹uÈ‹}¼uÌw‹E9EÌu€‹Uƒm´·B„^ßÿÿ·ÀÇEÌEŒé]ÿÿÿ‹}Ì…ÿ„Aßÿÿ‹]¼ëÅ‹EÈöE¼‰E¸t8‹M¼s··9‰ÙáÞ÷‰ø%Þ÷Á‰øf%!!Ø‹]ÈÑéÈf‰ƒÂƒë‰]¸ƒ}¸vU‹}¸1À‹ƒï‹ ãÞ÷Þ÷áÞ÷Þ÷ÑëÑé ‹#ã!!Ù‰ ƒÀƒÿwË‹M¸ƒé‰ÈƒáÑè…Æ‰M¸‹E¸…À„ÿÿÿ··2‰Ã‰ñãÞ÷áÞ÷!ðÙf%!ÑéÈf‰éåþÿÿ‹u 1À·v‰uÔ¶¶{ƒÃÐ…ÿ‰}ÌtI‰Þ‰ÑÁé<@‰MÐ}Œüó¥öÂtf¥öÂt¤EÌÓ;EuÀ‹MƒmÔ·A„ Þÿÿ·ÀEŒ1À륅ÀuÛé÷Ýÿÿ‹M 1À·I‰MÔ¶¶sƒÃÐ…ö‰uÌtM‹UŒö‰ñÁé‰u¨‰Þn `ÉÛËn`ÒÛÓùÊÕÌqÑýÑÛÓgÒÛÕ~‹EàƒÁsƒè…À‰Eà~q1ÀooÈ`ÀohÉoòÛÃ`ÒÛËhöÛÓùÂÕÄÛóùÎÕÌqÐýÐqÑýñÛÓÛógÒgösÒ sö ëÖÛÕ‹UàƒÀƒê…Ò‰Uà‘w‹M¨‹Ï;}…åþÿÿ‹uƒmÌ·F„Üÿÿ·À1ÿEŒéÇþÿÿ…ÿuÕéðÛÿÿ‹u ‹} ‹M ‹UŒ¿6·G·IÇẺu¬ð‰E´‰ð÷Ø‚‰M¸‰E°·K·ƒÃE̅ɉMȄ؋uÌ9u´Ž•‹M¬)ñ…ÉŽË‹EÈ)È…À~4‹U´MÌ)Ê9ÂNÂ…À‰E¼~d‹E°43‰]Ä<ˆ1À‹ ‡‹†‰Ëáÿãÿÿâÿÿ)Ú¯U¨ÁêÚ‹†âÿÿãÿ)˯]¨Áë áÿ щ ‡ƒÀ;E¼u­‹]Ä‹UÈUÌ“‹MÌ9M…2ÿÿÿ‹u€·ƒm¸„ßÚÿÿ·ÀÇEÌE°éÿÿÿ‹MÌ…ÉuËéÁÚÿÿ‹EÈ1ö1Éé9ÿÿÿèÖ…À„Ý‹} 1É‹U ‹u ¿?·B·v‰}¸ø‰EÌkÇüEŒ‰u¨‰E¼··{ƒÃÁ…ÿ„09MÌŽü‹u¸)Î…öŽ#‰ø)ð…ÀŽã‰UЋUÌ4³+UЉuÈ‹uÐÇEàþþþ9ÂN‹U¼4²‰uÔneàbäÇEàn]àbÛ¨‰EàtH‹EÈ‹6‹ƒÀ‰µhÿÿÿ‰Eȉð%þþþ‰Öâæþþþ#•hÿÿÿðÑèЋUÔ‰‹EàƒÂ‰UÔƒè‰Eà…À~O‰}´‹}Ô1À‹uȉ]Èooòo oéÛôÛìþîrÕÛÑÛÓþÕ‹UàƒÀƒê…Ò‰UàÅ‹]È‹}´w»ù9M…Ùþÿÿ‹M€·ƒm¨„GÙÿÿ·À1ÉE¼é¼þÿÿ…ÉuÖé1Ùÿÿ‰ø1öéàþÿÿ‹E ‹U ‹} ‹M¨¿·Áé‰E´·BE´‰}È1ÿ‰M¨‰E¼kE´þEŒ‰E¸v¶¶sƒÃÇ…ö‰uÔ„É9}¼ŽŒ‹E´)ø…À޼‰ò)Â…Ò~w4‹M¼ø)Á9ÑNÑ…Ò‰UÌ~a‹M¸3‰}°‰×‰]¬4A1Éf·O·N‰ÐÁà ЉÚÁâ%|à Úâ|à)ЯE¨Áèâ|à‰ÐÁè Âf‰NƒÁ;MÌuº‹}°‹]¬‹uÔs÷9}…Cÿÿÿ‹}€·ƒmÈ„#Øÿÿ·À1ÿE¸é&ÿÿÿ¶…ÿuÐéØÿÿ‹UÔ1ö1ÀéCÿÿÿ‹E ‹U ‹} ‹M¨¿·Áé‰E´·BE´‰}È1ÿ‰M¨‰E¼kE´þEŒ‰E¸¶¶¶sƒÃÇ…ö‰uÔ„É9}¼ŽŒ‹E´)ø…À޼‰ò)Â…Ò~w4‹M¼ø)Á9ÑNÑ…Ò‰UÌ~a‹M¸3‰}°‰×‰]¬4A1Éf·O·N‰ÐÁà ЉÚÁâ%øà Úâøà)ЯE¨Áèâøà‰ÐÁè Âf‰NƒÁ;MÌuº‹}°‹]¬‹uÔs÷9}…Cÿÿÿ‹}€·ƒmÈ„óÖÿÿ·À1ÿE¸é&ÿÿÿ¶…ÿuÐé×Öÿÿ‹UÔ1ö1ÀéCÿÿÿ‹} ‹U ‹u ¿?·B·v‰}´ø‰E¼kÇü1ÿEŒ‰uȉE¸··KƒÃDžɉMÔ„£9}¼~p‹U´)ú…ÒŽš)Ñ…É~]‹u¼:)Æ9ÎN΅ɉMÌ~I‹M¸“‰}¬‰×‰]°41À‹‡‹†‰Ñ#†ãþþþáþþþ Ñé≆ƒÀ;EÌuЋ]°‹}¬‹uÔ³÷9}…cÿÿÿ‹}€·ƒmÈ„óÕÿÿ·À1ÿE¸éFÿÿÿ…ÿuÖéÝÕÿÿ‹MÔ1Òébÿÿÿvè«Ñ…À„‹M ÇEÈ·I‰M´¶{Eȶs‰}¸…ö‰u¼„Ê‹Uȉø‹MŒÇEäø4QnMäaÉaÉÇEäàneäaäaäÇEän}äaÿaÿƒe¨ø‹U¨Áâ U¨‰UànEàbÀ‹U¼‹}¨ƒâÁï…Ò‰}̉}ä‰UÔ‰Uà„ƒ1É·TK·þÿÿ‹Uƒm´·B„ßÓÿÿ·ÀÇEÈEŒéþÿÿ‹uÈ…ö„ÂÓÿÿ‹]¸ëÁè˜Ï…À„‹M ÇEÈ·I‰M´¶{Eȶs‰}¸…ö‰u¼„Ê‹Uȉø‹MŒÇEà|4QnMàaÉaÉÇEààneàaäaäÇEàn}àaÿaÿƒe¨ø‹U¨Áâ U¨‰UänEäbÀ‹}¼‹U¨ƒçÁê…ÿ‰}Ô‰}ä‰ỦUà„e1É·TK·þÿÿ‹Uƒm´·B„ÌÑÿÿ·ÀÇEÈEŒéþÿÿ‹}È…ÿ„¯Ñÿÿ‹]¸ëÁ‹}¼‰}äéóþÿÿ‹]¼‰]àéÕüÿÿ‹M ‹u¨ÇEÌ·IÁî‰u¨‰M¼¶E̶{C‰EÈ…ÿ‰}Ô„‘‹MŒ‹UÌþÿÿ¶‰Ú‹Eà+Uà+EÀ‹}܉U¼‰]Àéþÿÿ´&f‰Gf‰OéqþÿÿÇEà1À롃}ät\‹U´‰ÓÆƒÃÆB‹M÷t+‹U +] ‰$‰\$èd…ÀDE ‹M1ö‹Q0‹R‰Béxúÿÿ‹A‰$è@‹EÇ@뾋E´‰ÃfǃÃfÇ@랉]ЉEÈ‹EÐ9EÜŽ ‹Mä‹W#¶O Óêúÿ…òƒEÐëÓ‹Mà‹Eà+EÀÇE¼‰MÀé<ýÿÿÇ$èxùþÿƒÎÿéíùÿÿ=ÿ„ý=ÿÿ…×ùÿÿ}Üà„ÙúàÇEذ€B…¹‹MÇEÄ B‹AƒÀkÀƒÀ¯A ƒÀé‡úÿÿ‹]Ô‹u¸€{tG‹Eà‰ÃƃÃÆ@‹U÷u‹B‰$è7‹MÇA)ó‰\$‰4$è…ÀDÆé·þÿÿ‹Mà‰ËfǃÃfÇA볉ڹ‹EÈ)ò9UÜEM̉MÌ‹MÐ)Ù‰MÈúÿ~+‹MÔ€ytÆÿÆ@ƒÀêÿëÝfÇÿfÇ@ƒÀëè‹MÔ¾ÿ}ÈÿNuÈ€y„²ˆ‰òˆPP‹MÔ‰$‰Uœ‰|$ ‰L$‹Mä‰t$™‰D$ÿUÄ‹Uœ ‹]È)ó…Ûtd‹UÔûÿ¾ÿNó€zt?‰òˆPPÆ‹EÔ)ó‰$‰Uœ‰M˜‰D$‹Eä‰|$ ‰t$ˆ‰D$ÿUÄ‹Uœ‹M˜ñë¦fÇPf‰p뾋UÜ9UÐ}b‹uÐé¬ùÿÿf‰Pf‰péIÿÿÿ}äà…üýÿÿÇEذ€Bé.þÿÿ}Üà„úàÇEØ€B„þÿÿ}äà…¸÷ÿÿéüýÿÿ‰Â1öƒâЉó‰Â9]Ü~‹Mä‹G#™¶O Óèƒè=ývƒÃë݉Љډ]ЉÃ9UÜ~*‹Mä‹G#‘¶O Óèƒè=ýwƒÂëÝÇEØ€Bé”ýÿÿ‰Ø‹]ЉÙ)ñ9M܉MÈ”Á¶É!M̉Ñ)Ù‰MЋMÈùÿÿ~fÇÿÿéÿÿfÇ@ƒÀëâ}Ðÿÿ¾ÿÿNuÐf‰Hf‰p‹EÔ‰ $‰Uœ‰M˜‰D$‹Eä‰|$ ‰t$˜‰D$ÿUØ‹M˜‹Uœ‰UÈ ‹]Ð)ó…ÛtN‹UÔûÿÿ¾ÿÿNófÇ)óf‰pƒÀ‰T$‹Uä‰EЉM˜‰|$ ЉD$‹EЉt$‰$ÿUØ‹M˜EÐñ뮋Màƒ}Ì‹UÈDÈ9U܉Mà~‰Öé þÿÿ‹MƒEÀ·Q‹MäfÁê·Ò ‘‰Mäé´÷ÿÿU1À‰åÆx M]ÃfU‰å]Ãt&¼'U¶x M‰å]Ãt&U‰åƒìX‰]ô¶]‰uø¶U ‰}ü„ÛtE¶ x M‰Ð È1ö8Èt#€=!üM¢x MtY„Û¶ú”Ã÷Çu>ƒçu!‰ð‹]ô‹uø‹}ü‰ì]Ãf¶ x M‰Ð÷Ð!Èë·„ÛtÛèW­ÿÿ‰ð‹]ô‹uø‹}ü‰ì]ÄÛt¾èßœÿÿë·¡ |M}ÔÇEÔÇEØÇEÜ…ÀÇEàÇEäÆEÔˆ]ÕˆUÖtˆUĉ<$ÿжUÄ…À„ZÿÿÿˆUľ‰<$èPëþÿ¶UÄéAÿÿÿU‰åƒìÇD$ÒBÇ$è~…Àt‰D$Ç$èjÇD$ÒBÇ$èV…Àt‰D$Ç$èB1ÀÉöU‰åƒìÇD$Ç$è=ÒBt‰D$Ç$èÇD$Ç$èó=ÒBt‰D$Ç$èÜÉÃfU‰åƒì8‰]ø1Û€=,üM‰uüt ‰Ø‹uü‹]ø‰ì]á |MuäÆEä …Àt uä‰4$ÿÐ…ÀtØ»‰4$è4êþÿ‰Ø‹uü‹]ø‰ì]ô&U‰åƒì‹EÇD$ÒB‰$è_Éë„U‰åVSƒì‹] ‹3è¾9Æt=‹…Àt ‰$è´ƒì‹C…Àt‰$èJ‹C…Àt‰$è;‰]eø[^]é-Ç$èÁƒìë²¶¿U‰åWVSƒì\‹u‹]Ç$ èƒì‰EÄÇ$èƒì9E‰EÌ;]ÄÇ$ è·…À‰E¼‰EÈ„A‹EÈ‹UÄ‹}ÌÇCƒÃHØ‹EÄÁûƒÀƒÂHÐÁú)Ú‰UÜÚ¯ú‰UЉ<$èj‹UȉB‰EÀ‰Eä‰<$èV‹UÈ…À‰Eà‰B„µ‹MÀ…É„ª‹U1ÿ…ÒŽÁØ‹}À‰Eä‹E ÇEØ؉EÔ‹Mä1À‹UÔ)Ù)Ú…Û~.‰}à‰×¶2ˆƒÀ9Ãuï‹}à1Àv¶÷ÒˆƒÀ9Øuð‹Uä‹EÜÇD$‰$‰D$èÎ ‹EäEÜ‹UÜÇD$ÿÿÿÿ‰Eà‰$‰T$è« ‹EЃEØ‹UØ}ÐEä]Ô9U~Þéfÿÿÿ‹E¯EÐEÀ‹}‰Eä9}Ì~G‹uÐ1Û‹UäƒÇ‹Eà‰t$ÇD$ÚØó‰U¸‰$èL ‹U¸‰t$ÇD$ÿÿÿÿ‰$è5 9}̾‹EÈ‹p‹X¡Œ”MÇD$úÿÿÿ‰$è’ÿ‹Ũì‰T$‹Uĉt$‰\$‰$‰T$ ‹U ‰T$‹U‰T$è;‹Uȃì…À‰tm‹E¼eô[^_]ËEÌ‹UÄÇ$h¥L‰D$‰T$è íþÿÇE¼‹E¼eô[^_]ËUÈÇ$‰T$èýÿÿÇ$è)ðþÿÇE¼ë¡Ç$–¥LèÄìþÿ듉T$Ç$èÒüÿÿÇ$¤¥Lè¦ìþÿÇE¼ékÿÿÿv¼'U‰åS1Ûƒì$‹U‹E ‹’4…ÒtO…ÀtS‹£| MEð»‰$èüý‹Eð‹Uôƒì‰D$‰T$Ç$”Mèçýƒì …Àt¡| M‰$èkþƒì‰Ø‹]üÉÃÇ| Më¨t&U‰åƒìH‹ ¬”M‰]ô·U‰uø·] ‰}ü…É…‹‹E¿Ñ¥L¹‹0ó¦tHEà·Ò‰D$¡Œ”M·Û‰]à‰Uä‰$è¨ý‹Eäƒì‰D$‹Eà‰$è«þ‹]ô‹uø‹}üƒì‰ì]Ãv¿Â‰D$ ¿Ã‰UÔ‰D$ÇD$Ç$è{£ÿÿ‹UÔ뎶¿Ò¿Û‰\$‰T$ ÇD$Ç$èN£ÿÿ‹]ô‹uø‹}ü‰ì]ÃU‰åSƒì$]ðÇD$Ç$èòøÿÿ‰$èªü¡Œ”Mƒì‰\$‰$èþ¿Eôƒì‰D$ ¿EðÇD$Ç$‰D$èߢÿÿ‹]üÉÃv¼'¡@âKU‰å¨u ‹E‹€X…Àu Ǭ”M]ÃǬ”M]ÃU‰å츅dýÿÿ‰]ø1Û‰uüÇD$ ÇD$ÇD$ ‰$èIàþÿ€=1üMt‰Ø‹uü‹]ø‰ì]Ãt&¡ |MuäÆEä…Àt uä‰4$ÿÐ…ÀtÔ»‰4$è'äþÿ‰Ø‹uü‹]ø‰ì]ÃU‰åWVSƒìl‹U ‹] ‹BHƒáüPƒÀHÂÁø‰EÈ‹C ‰MԯȯEȉMÌȉEÀ(‰E¼‰$è< …À‰Ã„u‹u¼ÇD$‰$‰t$è+ ‹U ‹uÀÇ(‹B‹R fÇC fÇC‰C ‰K‰sÇD$ÇD$ÇD$ÇD$ÇD$ ‰T$‰D$Ç$è]Õþÿ…À‰EЄ‹u ‹UЋN‹B‹1‹…ö„ð¶@8A„Y¶À‰D$‹B‰U¬‰$èȃÿÿ‹U¬·K¸Óà…À~(‹J‰Æ1Ò¶‘ˆD“*¶D‘ˆD“)¶D‘ˆD“(ƒÂ9òuß‹U ‹MÐfÇEàfÇEâ‹Bf‰Eä‹B ‰L$‰$f‰EæEà‰D$ ‰D$è'Ëþÿ…Àˆ=‹uЋV…Òu÷@u ·F;EÔt'‰$èÜ‹EЉ$è‘ÓþÿÇ$Ü¥Lè%èþÿeô[^_]ËE ‹M ‹UЋ@ ‹I‹r…À‰MÄŽ‹EÌ+EÔ‹UÔ+UÄŒ(‹EÔ‰]°‹}‹] ‰U¸1Ò÷ØÀ‰E´ÇEÌ1Àƒ}Ä~.‰]Ôë‹]Ô҃ƃÁƒÀ9C~¨u¶ƒÇ„Òyß¶ˆë؃EÌ‹EÌ9C Žˆ‹CM¸u¸M´‰EÄë©‹]Ì‹uÔ‹U ÇD$‹M¼‰t$‹BÇD$ ÇD$‰L$‰D$‰$èTúƒì…À£€ M„+‰D$¡Œ”MÇD$òÿÿÿ‰$è3úƒì ‰$è¨eô[^_]Ë]°‹UЉ$èRÒþÿ‹M ‹I …ɉMÔŽmÿÿÿ‹EÀ1ÿ+Eȉ]Ì‹uŒ(‹EÈ‹]È÷ØÀ‰EÐ1À…Û~¶÷ÒˆƒÀ9ØuðÙÞƒÇ9}ÔŽ"ÿÿÿMÐëÕ‹‹zÁà‰EĉÁ‹FÁé‰M¸‰E´‰Æ‹EÄüó¥¨tf¥¨t¤‰$‰U¬ÇD$ ÇD$ÇD$è‚ÿÿ‹U¬‰Á‹B¶É‹0‰4ˆ‹BÆÆ@Æ@éMýÿÿ‰$躋]Љ$èoÑþÿéåýÿÿ¶@éýÿÿÇ$ ¦LèõåþÿéàþÿÿU‰åWVSƒì,‹] ‰$褉\$ÇD$.¦LÇ$4¦LƒÀ‰D$ è-ÇD$ÇD$ÇD$ÇD$ÇD$ ÿÿÿÿ‰Ã‰D$ÇD$Ç$èƒì ‰Ç@‰$è‰|$‰\$ÇD$ÇD$ÇD$ ÿÿÿÿ‰Æ‰D$ÇD$Ç$èE¡Œ”Mƒì ‰t$‰$èEøƒì‰4$貉]eô[^_]é£vU‰åƒì¡Œ”MÇD$‰$è-÷¸ƒìÉÃt&¼'U‰åSƒì$‹] …Ûu#Ç$è®ö¡@âKƒì¨„}‰Ø‹]üÉÃÇ$”Mè‹ö¡@âKƒì¨uá¡|M‹4‹B‰ÁÁéÑø‰Eè‹B ‰ÂÁêÑø‰EìEè‰D$¡Œ”M‰$è8ö‹Eìƒì‰D$‹Eè‰$è;÷‰Ø‹]üƒìÉÃEð‰D$Eô‰$è—›ÿÿ‹Eô‰Eè‹Eðë­¶¿U‰åSƒì‹U ¶<wD‹ Œ”M¶ÀiÀè¶Z‰J¶JkÉd ¸Ùù´~‹M‹‰°‹I0‰JƒÄ[]ÃÇD$ÇD$Ç$<¦Lèãþÿ¸ÿÿÿÿë×U‰åƒì8Ç$†¦L‰]ô‰uø‰}ü‰EäèÒøþÿ…À‰Ãt|€;uG»€¦L‹EäÇD$@‰\$‰$è{áþÿ‹EäÇD$@‰$èà…ÀtÆ‹Eä‹]ô‹uø‹}ü‰ì]ÿ§¦L¹‰Þó¦t©ÇD$.‰$訅ÀtšXë•´&Ç$¦LèDøþÿ…À‰Ã…nÿÿÿÇ$–¦Lè.øþÿ…À‰Ã…XÿÿÿÇ$¢¦Lèøþÿ…À‰Ã„Gÿÿÿé=ÿÿÿ‰ö¼'U‰åWVS쬋M …É„¬‹E €8„ ‹U…Òt‹E€8u…hÿÿÿèÓþÿÿ‰E1ÿ1Û‰½dÿÿÿ¶‹4ÝÀ§L‹E ‰t$‰$èÒ…Àu‹…dÿÿÿ‹<ÝħL…Àu,‹E‰t$‰$è®…Àu‹ÝħL…ÿ‰…dÿÿÿuƒÃƒûu©‰þ‹½dÿÿÿ…ÿu Ĭ¸ÿÿÿÿ[^_]ÃE¨èEþÿÿ‰E éPÿÿÿ…ötÜÇ$èE…Àt̉0‰xĬ[^_]Éö¼'U‰åWVSƒì$‹} ‹uÇEì…ÿ„£‹E ‹…Ò„–‹]ÇEìþÿÿÿ…Û„„‹M‹‹M…É„“…Û„‹‹}‹?…ÿ‰}ðt`‹E1É…Àt‹E‹‹ƒø„öƒø„%‹Fƒø„Gƒø„x…ÉtÇEì1À‰MЃ> ‡Ä‹>ÿ$½¬¦LÇEì‹EìƒÄ$[^_]Ãt&¸ýÿƒ}ð‡ªÇEìþÿÿÿ‹EìƒÄ$[^_]Ã}І¶¶zƒÂƒmÐÁà LJ(f=ÿ‡fÿÿÛ‡áƒ}Іܶ¶JÁà ÁƒÂf‰MèfÁ$¸ýÿƒmÐfùÿw·EèçÿÁç %ÿ øƒ~ w5‹~ÿ$½Ü¦L=ÿÿ‡@ÿÿÿƒø‡€‹Mð…É„<ÿÿÿˆƒÃƒmðv‹} ‹M‰‹}Љ9‹M‹}‰‹Mð‰‹}ЃEì…ÿ…Ïþÿÿéãþÿÿfƒ}І&‹ƒÂƒmÐ뀃}І·ƒÂƒmÐégÿÿÿfƒ}Іö¶B¶zÁàÁç ø¶: ø¶zƒÂƒmÐÁç øé1ÿÿÿƒ}І¶:¶BÁç ø¶zÁç ø¶zƒÂƒmÐÁç øéýþÿÿƒ}Ð†Ž¶B¶:ƒÂƒmÐÁà LJ(f=ÿ‡}fÿÿÛw_ƒ}ІZ¶B¶ Áàéyþÿÿ‰Uè¶:‰ù€ùû†Z¶Á‰Ááþùü‰Eظýÿ„ƒmЃ¸ÿÿƒÿ‡I¸ýÿé`þÿÿ¶ƒÂƒmÐéQþÿÿ¶ƒÂƒmЃàé?þÿÿ…À¿ýÿHǃ}ð†–ýÿÿ‰ƒÃƒmðéXþÿÿ=¿ýÿCǃ}ð†qýÿÿf‰ƒÃƒmðé2þÿÿf=¿ýÿCǃ}ð†Iýÿÿ‰ÇÁï‰ù‰ÇÁïˆK‰ùÆCˆKˆƒÃƒmðéóýÿÿv=¿ýÿCǃ}ð† ýÿÿ‰ÇÁï‰ù‰ÇÁïˆ ‰ù‰ÇÁïˆK‰ùˆKˆCƒÃƒmðé­ýÿÿ=ÿÿ‡¢=ÿÿ†œƒ}ð†½üÿÿ-‰Ç‰ÁÁï fáÿfçÿfÉÜfÏØf‰Mè‰ùfÁéˆK‰ùˆ ·}èfÁï‰ùˆK¶MèˆKƒÃƒmðé<ýÿÿ=ÿÿ‡=ÿÿ†ýƒ}ð†Lüÿÿ-‰Ç‰ÁÁï fáÿfçÿfÉÜfÏØf‰Mè‰ùfÁéˆ ‰ùˆK·}èfÁï‰ùˆK¶MèˆKƒÃƒmðéËüÿÿ‹}ð…ÿ„ðûÿÿ=¿?Bø‰ùˆ ƒÃƒmðé£üÿÿv‹Mð…É„Åûÿÿ=€ëÓ·ÇéKüÿÿ¶‰ù€ù÷‡œ‰ù€ùï†ê¶Á‰Ááøùð‰Eظýÿ…ýÿÿ‰ù1À€ùð¿”À‰EÔ‹E؃à馸ýÿƒ}ð†Oûÿÿ‰ÇÁï‰ùˆ ˆCƒÃƒmðéüÿÿ´&¸ýÿƒ}ð†!ûÿÿ‰ÇÁï‰ùˆKˆƒÃƒmðéÙûÿÿ¶Á‰Ááüùø‰Eظýÿ…ÿüÿÿ‰ù1À€ùø¿”À‰EÔ‹E؃àë‰ù1À€ùü¿”À‰EÔ‹E؃àƒmÐ;}ЇۋMèƒÂ¶IˆMØáÀƒÁ€…‰]èƒï¶]Ø‹MЉuØë¶¾Àƒï!ރƀ…݉ƉØÁæƒà? ðƒÂƒé…ÿuÔ‹]è‹u؉MЋ}Ô…ÿ…hüÿÿéTüÿÿ‰ÈÁè…À‰Eì„M‰Ð‰Ï‰Uè‹Uìë„Éu €xu€xþtlƒê„#ƒÀ¶€ùÿuÜ€xþuæ€xuà€xuÚ‹Uè‰ùÇéyùÿÿ¶ƒ}ðÇEìþÿÿÿ† ùÿÿÇÿþƒÃƒmðÇF é^ùÿÿ¶€xÿuŽ‹Uè‰ùÇ é-ùÿÿ‹]è‹u؉Mиýÿé/ÿÿÿ´&‰ÏÑï‰}섨‰Ð‰Ï‰Uè‹Uìë´&€ùþt+ƒê„‚ƒÀ¶€ùÿuç€xþuæ‹Uè‰ùÇéÄøÿÿ€xÿuÏ‹Uè‰ùÇé­øÿÿƒ}ðÇEìþÿÿÿ†ÚøÿÿfÇÿþƒÃƒmðÇF陸ÿÿ‹Uè‰ùÇ ésøÿÿÇEìüÿÿÿ饸ÿÿt&‹Uè‰ùÇéSøÿÿ‰ù€ù߇ˆ‰ù€ù¿†¹çÿ¸ýÿ‰ùáàùÀ…úÿÿ‰ø%Î=À”À¶À‰EÔ‰ø¿ƒàéŸýÿÿ‰ÇÁï ƒçƒÏà‰ù‰ÇÁïƒç?ƒÏ€ˆ ‰ùˆK‰Áƒá?‰ÏƒÏ€‰ùˆKƒÃƒmðéíøÿÿ¶Á‰Ááðùà‰Eظýÿ…úÿÿ‰ù1À€ùà¿”À‰EÔ‹E؃àé)ýÿÿ‰ù¸ýÿ¶É‰Mè‰ù„ÉIEèéÜùÿÿ=ÿwXƒ}ð†¶÷ÿÿ‰ÇÁïƒçƒÏÀ‰ùˆ ‰Áƒá?‰ÏƒÏ€‰ùˆKƒÃƒmðé\øÿÿ¸(ÿÿÿÿ†¥ùÿÿ=¿ýÿCÇéý÷ÿÿ=ÿÿ†R÷ÿÿƒ}ð†S÷ÿÿ‰ÇÁïƒçƒÏð‰ù‰ÇÁï ƒç?ƒÏ€ˆ ‰ù‰ÇÁïƒç?ƒÏ€ˆK‰ùˆK‰Áƒá?‰ÏƒÏ€‰ùˆKƒÃƒmðéÙ÷ÿÿ‰ö¼'U‰åƒì‹EPÿƒúýw‰$è7÷1ÀÉÃvU‰åWVSƒìL‹]‹} ‰$‰|$èåôÿÿƒøÿ‰Æ„‹]¸ƒûCÉEÔ‰$èéö…À‰EЄ¶‹EÐ}ä‰Eä‹EÔ‰Eà‹EÐÇëƒøüt>‹]…Û„ŒEà‰D$E‰D$E‰|$ ‰D$‰4$èkõÿÿƒøýtvȃøþtƒøÿuÂÇE빃Eƒm믶ÑeÔ‹EÔ‰D$‹EЉ$è[÷…Àt:‰Â‰Á+UÐUä)ÑMÔ‰Uä‰MàljEÐémÿÿÿt&‰4$èØþÿÿ‹EЃÄL[^_]É4$èÅþÿÿÇEЋEЃÄL[^_]Ã…ÛtC€;¸ §LDØ…ÿt;€?¸ §LDø‰|$‰$è©óÿÿƒøÿ‰Æ…ÄþÿÿÇEЋEЃÄL[^_]û §LëÁ¿ §LëÉU‰åSƒì$‹E‹€¼‹P…Òt)‹H‹ÇD$ÇD$ ‹@ ‰T$‰ $‰D$ÿSLƒì‹]üÉÃt&¼'U‰åSƒì‹]‰$ÿS…Àt"‹“¼‹J ‹R‰$‰L$‰T$è(õ‰$ÿS‰$ÿS‹ƒ¼‹@‹‰$ÿRH‹]üƒìÉÃt&¼'U‰åƒì¡  M…Àt‰$è}÷ÇþMÇ  MƒìÉÃU‰åƒì(‰]ô‰uø‰}üè¼ÿÿÿÇ$€¨Lè<÷ƒì…À£  M„ÐÇD$‹¨L‰$èÌö‹  Mƒì…Ò£þM„ª…À„¢Ç$ÈèNô…À‰Ã‰Æts1À¹2‰ßó«Ç$ è/ô…À‰ƒ¼„1Òǃƒú rñÇFóBÇF póBÇFòBÇFìBÇFpðBÇFPìBÇF @îBdžÀîBë Ç$è×þÿ‰Ø‹uø‹]ô‹}ü‰ì]Ã1ÛèÉþÿÿ‰Ø‹uø‹]ô‹}ü‰ì]ÃÇ$èN×þÿ‰$1Ûè”óëÃfU‰åSƒì‹]è‘þÿÿ‹ƒ¼‰$èsó‰]ƒÄ[]éfó¶U‰åSƒì‹]‹ƒ¼‹…ÉtW‹P…Òt‹‰$ÿP‹ƒ¼Ç@ƒì‹P…Òt‰$èHö‹ƒ¼Ç@ƒì‹‹‰$ÿR‹ƒ¼Çƒì‹]üÉô&¼'U‰åS‰Ãƒì$úxˆÆÀ M„D~rúdxˆ„VÀú2xˆ„dúFxˆ„H‰T$‰\$ ÇD$Ô©LÇD$Ç$À Mèôj€=À MtKÇD$À MÇ$ÿ©Lè·ÒþÿƒÄ$[]Ãú€„´~rúW€„Æú xˆu–ÇÀ¤MܨLt&¡À¤M‰\$ ÇD$ø©LÇD$‰D$Ç$À MèwjëŠt&úxxˆtHú–xˆ…DÿÿÿÇÀ¤M ©Lë°ú@€tú@€…$ÿÿÿÇÀ¤M ¨LëÇÀ¤Mº©Lë„t&ÇÀ¤My©LéqÿÿÿÇÀ¤M©LéaÿÿÿÇÀ¤M ©LéQÿÿÿÇÀ¤Mg©LéAÿÿÿÇÀ¤Mð¨Lé1ÿÿÿÇÀ¤M©Lé!ÿÿÿÇÀ¤MD©LéÿÿÿU‰åWVSƒì\‹]}äuà‹ƒ¼Ç@‹@‹‰|$‰t$‰$ÿRƒì =–xˆ„…À…À‹‹¼1Ò‹Eä‹y ÷÷1Ò‰AƒÀ÷q‹AƒÁ‰EÄ‹ÇD$‰t$ÇD$‰EÔE܉D$‰L$ ‰|$¯×‰Uä‰T$‹Uĉ$‹UÔÿR,ƒì =–xˆtl…À…Ä‹ƒ¼‹@eô[^_]Ãv‹ƒ¼‹@‹‰$ÿRP‹ƒ¼‹@ƒì‹‰|$‰t$‰$ÿRƒì …À„@ÿÿÿ‰Â¸ªLè<ýÿÿeô1À[^_]Ãf‹ƒ¼‹@‹‰$ÿRP‹ƒ¼‹Pƒì‹ ‰t$u܉t$pÇD$ÇD$‰t$ ‹@ ‰$‰D$‹Eä‰D$ÿQ,ƒì é7ÿÿÿv‰Â¸#ªLèÄüÿÿ1Àé2ÿÿÿ¶¼'U‰åWVSƒì,‹]MÜ}àu䋃¼‹@‹‰|$‰L$‰$ÿRƒì …Àt:=–xˆ„èeô[^_]˃¼MÜ‹@‹‰|$‰L$‰$ÿRƒì …À…Ò‹‹¼1Ò‹Eà÷q ;Au¾Ç$è2Ìþÿ‹ƒ¼‹@‹‰t$‰$ÿR$‹Eäƒì¨uC¨u—‹ƒ¼‹@‹ÇD$ ÇD$ÇD$‰$ÿR0ƒì…ÀtŽeô[^_]ô&‹ƒ¼‹@‹‰$ÿRP‹ƒ¼‹@ƒì‹‰t$‰$ÿR$‹Eäƒì¨tŠéÿÿÿ‹ƒ¼‹@‹‰$ÿRPƒìéÿþÿÿ‰Â¸ªLècûÿÿéîþÿÿ´&¼'U‰åƒìè¡ñÇD$‰$è™ñƒìÉÃU‰åWVSƒì|‹] ÇEÆ‹uÇEÊÇEζCÇEÒfÇEÖfÇEƃøt"ƒø„ Ç$ð¨LèÎþÿ¸ÿÿÿÿeô[^_]ˆ¼¹fÇCfÇEÔÇ@€¶C‹‰$f‰EȯÁ‰UÊf‰EÒ·À¯Â‰EÎè»óþÿÇD$‹†¼Ç$‰D$ÿþMƒì …À…§‹ĤM‹¾¼‹C …ÒÇGÿÿÿÿ‹‰E¤„Ô‹‰T$‰ $‰Uœ‰M˜ÇD$ÿP‹Uœ‹M˜ƒì …ÀÇE ÿÿÿÿtl‹E ‹–¼‰G¸ÿÿÿÿ‹r…öˆÿÿÿ‹C ÇB‰B eô1À[^_]ˆ¼¹fÇC€fÇEÔÇ@é ÿÿÿ‰Â¸‹¨Lè®ùÿÿ¸ÿÿÿÿéÎþÿÿƒú‹U¤À%@@‰E´Õ‰E¸ƒè=ûÿÿÇE¼ÇEÀÇE°‡M‹UƉ $‰UÀ‰Uœ‰E¤‹M¤G‰D$E°ÇD$ ‰D$ÿQ ‹Uœƒì…À…3‹G‹‰T$‰$ÿQ8‹GMØ‹ƒì‰L$Mà‰L$M܉L$Mä‰L$ ‹M¸ÇD$ÇD$‰$‰L$ÿR,ÇE ƒì …À…µþÿÿfƒ}Ô„†‹EÜÇD$‰D$‹Eä‰$èˆë‹G‹MØ‹‰L$‹Mà‰$‰L$ ‹M܉L$‹Mä‰L$ÿRLÇE ƒìéZþÿÿ‹‹@‰Uœ‰M˜‰E èÝ‹M˜ÇD$‰ $‰D$ÿU ‹M˜‹Uœƒì éþÿÿ‹EÜÇD$€‰D$‹Eä‰$èëéuÿÿÿÇD$ÿÿÿÇD$Ç$4ªLè9Ëþÿéäýÿÿ‰Â¸`ªLèè÷ÿÿéÓýÿÿvU‰åV1öSì°Ç$€¨LèCíƒì…À‰ÃtL…dÿÿÿÇ…dÿÿÿ”‰$èíƒìƒ½tÿÿÿt1ÇD$~ªL‰$è¶ìƒì…À•À¶À‰Æ‰$èùìƒìeø‰ð[^]ýhÿÿÿwÆëá´&¼'U‰å‹E]£Ä¤MÃU¸‰å]öU‰å‹E]‹¼‹BLÁà‹D ô&U‰åƒì(Ç$ȉ]ô‰uø‰}üèÍé…À‰Ãt1ö‰Ç¹2‰ðó«Ç$Pè®é…À‰ƒ¼t|‰Ç¹‰ðó«ÇC ûBÇC `úBÇC0úBÇCÐùBÇC÷BÇCùBÇC ÀøBǃÀøB‰Ø‹uø‹]ô‹}ü‰ì]ô&Ç$èôÌþÿ‰Ø‹uø‹]ô‹}ü‰ì]Ãt&Ç$èÔÌþÿ‰$1Ûèéë²´&U‰åSƒì‹]‹ƒ¼‰$èøè‰]ƒÄ[]éëèt&¼'U‰åSƒì‹]‹ƒ¼‹P…Òt‰$èí닃¼ƒì‹…Òt‰$è"Ú‹ƒ¼ƒìxÿÿt)P ÇD$ ‰T$‹‰$èÿÙ‹ƒ¼Ç@ÿÿƒì x8ÿÿt)P,ÇD$ ‰T$‹‰$èÍÙ‹ƒ¼Ç@8ÿÿƒì ‹@…Àt‰$è.苃¼Ç@‹]üÉö¿U‰åSƒì‹]‹“¼‹Bƒà÷؃ÀöB<tƒøu ƒÄ[]Ãt&Ç$dèÅþÿëÌfU‰åSƒì‹]‹ƒ¼ÇD$ ‹PLÁâT ‰T$‹‰$è(Ù‹“¼‹BLƒì ƒÀ‰ÁÁéȃà)ȉBL‹]üÉö¼'U‰åƒì‹EÇD$ÿÿÿÿ‹€¼‹@‰$è‚êƒìÉÉö¼'U‰åƒìè±êÇD$‰$è©êƒìÉÃU‰åV‰ÖSìøþÿÿ‰D$ ÇD$¸ªLÇD$‰$èq_‰Ú‹ ƒÂÿþþþ÷Ñ!È%€€€€tê‰ÁÁé©€€DÁJDÑÀƒÚ¸)Ú)ЉT$‰4$‰D$è5Øƒì ‰\$Ç$½ªLèòÆþÿeø[^]Ãt&¼'U‰åWVSƒì\‹u‹] ‹†¼ÇÇ@Ç@Ç@ÿÿÇ@8ÿÿ¶CÇEÖÇEÚÇEÞƒøÇEâfÇEæfÇEÖt(ƒø„ÂÇ$ÀªLècÆþÿ¸ÿÿÿÿeô[^_]öfÇC¹fÇEä¶S‹f‰UدщEÚf‰Uâ·Ò¯Ð…À‰UÞPH·SÁø9Â} ƒÀƒàüf‰C‰$èíëþÿEÖÇD$‰t$ÇD$ þB‰D$ÇD$ÿÿÿÿ‹†¼‰$è׃ì…À…‹¾¼ÇD$ ÇD$ÇD$Ç$è‹è‹–¼‰G‹Bƒì…À„V‹C ‰U¼À‰$èå‹U¼…À‰B„N1ÿ‰]ĉø¹ ÁàD ¨‰Â…ÜöÂ…ÉË1ÀƒãüǃÀ9ØròÂöÁtfǃƒátÆ‹EÄ‹–¼‹@ ‰EÀ‹MÀ‰øÁàX ¯ÏJÇ@‰H ‹MÀ‰HÇD$ ‰\$‹‰$èÖƒì …ÀudƒÇƒÿt(‹–¼éPÿÿÿfÇC€¹fÇEäéXþÿÿ´&‹†¼Ç@Leô1À[^_]ÃfǃéƒÂé-ÿÿÿƃ±éÿÿÿ‰Â¸«LèÐüÿÿ¸ÿÿÿÿéèýÿÿ¶‰Â¸ÙªLè´üÿÿ¸ÿÿÿÿéÌýÿÿÇ$çªLèÄþÿ¸ÿÿÿÿé¶ýÿÿÇ$«LèÄþÿƒÈÿé¢ýÿÿU‰åƒì} ½tÉ‹EÇD$ÇD$‹€¼‹@‰$èÕæƒì ÉÂU‰åSƒì‹]‹ƒ¼‹H‹ÇD$‰L$ ‹@‰$‰D$ÿR‹“¼;Bt ǃ ƒÄ[]ô&U‰å‹E]‹€¼‹@Ãë U‰åSƒì‹]‹ƒ¼‰$èØâ‰]ƒÄ[]éËât&¼'U‰åSƒì‹]‹ƒ¼‹P…Òt‰$è¡â‹ƒ¼Ç@‹…Àt‰$ÿP ‹ƒ¼ÇƒÄ[]öU‰åƒì(Ç$ȉ]ô‰uø‰}üèMâ…À‰Æ‰Ã„©1À¹2‰÷ó«Ç$è*â…À‰†¼„¤ÇÇ@Ç@Ç@ Ç$H«LèÍ×þÿ‹¾¼‰Â¸–…Òt‰$èdâ‰G ÇCCÇC@CÇC@þBÇCþBÇC àþBǃÀ°þB‰ð‹]ô‹uø‹}ü‰ì]Ãt&Ç$èDÅþÿ‰ð‹]ô‹uø‹}ü‰ì]Ãt&Ç$è$Åþÿ‰4$1öèjáë´´&U‰åƒì‹E‹€¼‹@ ‰EÉéu¾þÿt&U‰åƒìE‰D$‹E ‰D$‹E‰$èaYÉÃë U‰åƒì(Ç$h«L‰]ô‰uø‹u‰}üèÂÖþÿ‹¾¼ÇD$z«L…À‰Ã¸[«LD؉$èp‰‰‹†¼¿ÿÿÿÿ‹…Àu‰ø‹]ô‹uø‹}ü‰ì]áœ&N‰\$ÇD$€«LƒÀ@‰$èRÿÿÿ‹E ‹¶¼‹X ‰^‰$èsà…À‰Ft·‹M 1ÿ¶Q‰\$‰$‰T$ècà뜉ö¼'U‰åƒìÇ$Ñ«L‰uø‰}üèÖþÿ‰Æ1À…öt¿á«L¹ó¦”À¶À‹uø‹}ü‰ì]ÃU‰å]Ãt&¼'U‰å‹E]‹€¼‹ÃU‰åƒìH‰]ô‹E‹] ‰uø‰}ü‹¸¼‹s ‰w‰4$è¿ßºÿÿÿÿ…À‰to¶S‰t$‰$‰T$è°ß¶C1ɶS¯Áú¯Â‹U‰Eä‹‚¼‹S ÛEäÇ@ ‰U؉MÜßmØÞñÙ}Ö·UÖ¶ f‰UÔØ ,¬LÙmÔß}ØÙmÖ‹U؉P1Ò‹]ô‰Ð‹uø‹}ü‰ì]ô&¼'U‰åWSƒìÇ$Èèß…À‰Ãtv1À¹2‰ßó«Ç$è÷Þ…À‰ƒ¼tjÇÇ@Ç@Ç@ ÇC°CÇCCÇCCÇC CÇC `CǃÀ0CƒÄ‰Ø[_]Ãt&Ç$èDÂþÿƒÄ‰Ø[_]ÃÇ$è/Âþÿ‰$1ÛèuÞëÆvU‰åSƒì‹]‹ƒ¼‰$èXÞ‰]ƒÄ[]éKÞt&¼'U‰åSƒì‹]‹ƒ¼‹…Àt‰$è"Þ‹ƒ¼ÇƒÄ[]ÃU‰åƒì‹E‹€¼‹P …Òt ƒê‰P ÉÃf‹@‰EÉé»þÿt&U‰åƒìÇ$ü«L‰uø‰}üè˜Óþÿ‰Æ1À…öt¿ ¬L¹ó¦”À¶À‹uø‹}ü‰ì]ÃU‰åWVSƒì·E ‹U‰Eä%€ƒø„O@ƒø„Ì‹B‰ÁÁéÑø‰B‹BPH‹D‚,‰JP…À„Ÿ‹Mä‰U‰M ƒÄ[^_]ÿà=€„Â=€u·÷Eä‹B„»‹Z…ÛKIËÁù‰Î‰Á…ö„‰Uà¶P¶x¶Áâ ×¶PƒÀÁã¿ÿ Ú¿Ò׉úÁê<:‰úÑúÁÿ ˆQ‰úˆƒÁƒîu¾‹Uàé@ÿÿÿt&ƒÄ[^_]ËB‹J‰ÆÁîÆ1ÀÑþ„*ÿÿÿ¶|A¶AÑûˆƒÀ9ðuèéÿþÿÿv‹B‹J‰ÆÁîÆ1ÀÑþ„òþÿÿ¾|A¾A‰ßÁïÑûˆƒÀ9ðuàéÀþÿÿt&÷Eä‹Btd‹Z…ÛKIËÁù‰Î‰Á…ö„‰Uà´&¶P¶x¶Áâ ×¶PƒÀÁã·ÿ Ú·Ò׉úÑúÁÿ ˆQ‰úˆƒÁƒîuÆéÿÿÿ‹Z…ÛKIËÁù‰Î‰Á…ö„­‰Uàv¶P¶x¶XÁâ ×¶ƒÀÁã·ÿ Ú·Ò׉úÑúÁÿ ˆ‰úˆQƒÁƒîuÆé¥þÿÿ‹Z…ÛKIËÁù‰Î‰Á…ötQ‰Uà´&¶P¶x¶XÁâ ×¶ƒÀÁã¿ÿ Ú¿Ò׉úÁê<:‰úÑúÁÿ ˆ‰úˆQƒÁƒîu¾é=þÿÿ‰ØÁèØÑøé„ýÿÿt&¼'U‰åWVSƒì·E ‹]‰Eä%€ƒø„aDƒø„Ô‹s‰ðºVUUU÷ê‹CPÁþ)ò‰SP‹Dƒ,‰SP…À„œ‹Uä‰]‰U ƒÄ[^_]ÿà=€„Ï=€u³÷Eä‹K„o‹sº«ªª*‰ð÷ê‰ðÁøÑú)Ât‰È‰Ö‰]à¶¶y¶YÁâ ×¶QƒÁ Áã¿ÿ Ú‰û¿ÒˆX‰ûÁûˆPÁúˆˆPƒÀƒîuÁ‹]à‹sé>ÿÿÿƒÄ[^_]ô&‹sº«ªª*‹K‰ð÷ê‰ðÁø)„ÿÿÿ‰È‰Þ¶ˆ¶YƒÁˆXƒÀƒêué‰ó‹véîþÿÿ‹sº«ªª*‹K‰ð÷ê‰ðÁø)„Òþÿÿ‰È‰Þ¶ˆ¶YƒÁˆXƒÀƒêué‰ó‹vé­þÿÿ÷Eä‹K„Õ‹sº«ªª*‰ð÷ê‰ðÁøÑú)„‚þÿÿ‰È‰Ö‰]à¶¶y¶YÁâ ×¶QƒÁ Áã·ÿ Ú‰û·ÒˆX‰ûÁûˆPÁúˆˆPƒÀƒîuÁéîþÿÿ‹sº«ªª*‰ð÷ê‰ðÁøÑú)„þÿÿ‰È‰Ö‰]à¶¶Q¶9¶YÁâ ×¶QƒÁ Áã¿ÿ Ú‰û¿Òˆ‰ûÁûˆPÁúˆXˆPƒÀƒîuÁ‹]àéÅýÿÿ‹sº«ªª*‰ð÷ê‰ðÁøÑú)„­ýÿÿ‰È‰Ö‰]à´&¶Q¶9¶YÁâ ×¶QƒÁ Áã·ÿ Ú‰û·Òˆ‰ûÁûˆPÁúˆXˆPƒÀƒîuÁéþÿÿ¶¿U‰åWVSƒì·E ‹U‰Eä%€ƒø„S@ƒø„Ì‹J‰ÈÁè ‹BPÑù‰JH‹D‚,‰JP…À„Ÿ‹Mä‰U‰M ƒÄ[^_]ÿà=€„È=€u·÷Eä‹B„`‹J…ɉÎYHóÁþ…öt–‰Á‰Uàf¶¶x¶XÁâ ×¶PƒÀÁã¿ÿ Ú‰û¿ÒˆY‰ûÁûˆQÁúˆˆQƒÁƒîuÁ‹Uà‹JéEÿÿÿ¶ƒÄ[^_]ËJ‹B…ÉYIÙÁû…Û„ÿÿÿ‰Á‰Ö¶ˆ¶PƒÀˆQƒÁƒëué‰ò‹Néùþÿÿ‹J‹B…ÉYIÙÁû…Û„àþÿÿ‰Á‰Ö¶ˆ¶PƒÀˆQƒÁƒëué‰ò‹Né»þÿÿ÷Eä‹B„Ì‹J…ɉÎYHóÁþ…ö„“þÿÿ‰Á‰Uà¶¶x¶XÁâ ×¶PƒÀÁã·ÿ Ú‰û·ÒˆY‰ûÁûˆQÁúˆˆQƒÁƒîuÁéúþÿÿ‹J…ɉÎYHóÁþ…ö„2þÿÿ‰Á‰Uà¶P¶8¶XÁâ ×¶PƒÀÁã¿ÿ Ú‰û¿Òˆ‰ûÁûˆQÁúˆYˆQƒÁƒîuÁ‹Uàéãýÿÿ´&‹J…ɉÎYHóÁþ…ö„Çýÿÿ‰Á‰Uàv¶P¶8¶XÁâ ×¶PƒÀÁã·ÿ Ú‰û·Òˆ‰ûÁûˆQÁúˆYˆQƒÁƒîuÁé+þÿÿ¶¿U‰åWVSƒì·E ‹M<‰Eàti‹y‹Q?…ÿ‰Eät.:‰ÎÂ÷ß1À¶LÿˆLBþ¶LÿˆLBÿƒè9øuç‹F‰ñÀ‰Eä‹AP‹Uä‰QP‹D,‰QP…ÀtT‹Uà‰M‰U ƒÄ[^_]ÿàf‹q‹Y6‰Uä‰òÁêòÑút¾431À]ä·|þf‰|Cü·|þf‰|Cþƒèƒêuäë—fƒÄ[^_]ô&U‰åWVSƒì,‹E·U ‰E܉Ð%€ƒø‰UØ„:Hƒø„7‹MÜ‹A @¶‹E܉H‹@P‹MÜP‹D,‰QP…À„‹]؉M‰] ƒÄ,[^_]ÿà=€„W=€u¯‹UÜ‹Z‹B [È÷EØ„†…ÛsHÞÁû…Û‰]ätŽƒêƒè ¶ ¶Z¶rÁá ˶JÁæ ñ‰Þ‰ÏfÁïfÁîÏÞfÑÿfÑþ47‰ßf)÷f‰}â‰ÏˆHf)÷fÁùˆH‰ùˆH‰ùˆXfÁùfÁûˆˆH¶]âˆX·Mâ‰óˆX fÁùˆH‰ñˆH ‰ñfÁùˆHˆH ƒmä…gÿÿÿ‹}Ü‹G @éçþÿÿ´&ƒÄ,[^_]Ë}Ü‹w‹_v…ö‰Á„Âþÿÿ3ƒêƒè¶J¶ˆMâÐé‰Ï‰ÙÐéψ¶MâˆH‰ù(ˈX¶Mâ‰ûˆXˆX(ÙƒîˆHuÀ‹}Ü‹G @énþÿÿ‹EÜ‹H‹P‰Mä‹]äI‰Á…Û„Rþÿÿ‹]ä‰]Ô¶ƒmÔƒè‹]Ô¶S¶ ‰ÓÀë‰ß׉ûÐû‰ß‰ËÀë‰ÞΉóÐû‰Þ47‰óˆ(ÙˆP(ÚˆHˆPˆXˆXƒmäu±‹}Ü‹G @éãýÿÿv‹UÜ‹Z‹B [È÷EØ„b…ÛsHÞÁû…Û‰]䄬ýÿÿƒêƒè ¶ ¶Z¶rÁá ˶JÁæ ñ‰Þ‰ÏfÑïfÑî47‰ßf)÷f‰}â‰ÏˆHf)÷fÁéˆH‰ùˆH‰ùˆXfÁéfÁ눈H¶]âˆX·Mâ‰óˆX fÁéˆH‰ñˆH ‰ñfÁéˆHˆH ƒmä…sÿÿÿé%þÿÿ…ÛsHÞÁû…Û‰]ä„ýÿÿt&ƒêƒè ¶J¶¶rÁá ˶JÁæ ñ‰Þ‰ÏfÁïfÁîÏÞfÑÿfÑþ47‰ßf)÷f‰}â‰ÏˆHf)÷fÁùˆH‰ùˆH‰ùˆfÁùfÁûˆXˆH¶]âˆX·Mâ‰óˆX fÁùˆH‰ñˆH‰ñfÁùˆH ˆH ƒmä…gÿÿÿémýÿÿf…ÛsHÞÁû…Û‰]ä„Jüÿÿƒêƒè ¶J¶¶rÁá ˶JÁæ ñ‰Þ‰ÏfÑïfÑî47‰ßf)÷f‰}â‰ÏˆHf)÷fÁéˆH‰ùˆH‰ùˆfÁéfÁëˆXˆH¶]âˆX·Mâ‰óˆX fÁéˆH‰ñˆH‰ñfÁéˆH ˆH ƒmä…sÿÿÿéÃüÿÿ´&U‰åWVSƒì,‹E·U ‰Eà‰Ð%€ƒø‰UØ„Hƒø„‹Mà‹YÛ´&‹}à‹GP‰_P‹D‡,‰WP…À„æ‹U؉}‰U ƒÄ,[^_]ÿàv=€„E=€u¯‹}à‹O‹G Ø÷EØ„V…ÉqHÎÁù…ɉMätމUЃmЃè‹Uж ¶Z¶rÁá ˶JÁæ ñ‰Þ‰Ï‰ÊfÁïfÁîÏÞfÑÿfÑþ47‰ßf)òf)÷f‰U܈XfÁûˆHfÁùˆˆHˆP·MÜfÁùˆH‰ùˆH‰ùfÁùˆHƒmäu‹uà‹^ÛéÿþÿÿƒÄ,[^_]ô&‹]à‹s‹C…ö‰uä6„Ùþÿÿ<01À¶Tÿ¶LþˆU×Ðê‰Ö‰ÊÐêˆLCüÖ¶U׈TCý‰ò(шLCþ¶U׉ñ(ʈTCÿƒèƒmäuÀ‹uà‹^Ûéƒþÿÿv‹}à‹W‹G…Ò‰Uä„iþÿÿÂ1À‰U܉]Ћ]ܶTÿ¶Lþ‰ÓÀë‰ß׉ûÐû‰ß‰ËÀë‰ÞΉóÐû‰Þ47‹}ЉóˆLGü(ÙˆTGý(ÚˆLGþˆTGÿƒèƒmäu°‹uà‹^Ûéÿýÿÿ‹}à‹O‹G Ø÷EØ„5…ÉqHÎÁù…ɉMä„Ëýÿÿ‰UЃmЃè‹Uж ¶Z¶rÁá ˶JÁæ ñ‰Þ‰Ï‰ÊfÑïfÑî47f‰u܉Þf+UÜf+uÜf‰U܈XfÁëˆHfÁ鈈HˆP·MÜfÁéˆH‰ñˆH‰ñfÁéˆHƒmäu‡é>þÿÿ…ÉqHÎÁù…ɉMä„4ýÿÿ‰UЃmЃè‹}жO¶¶wÁá ˶OÁæ ñ‰Þ‰Ï‰ÊfÁïfÁîÏÞfÑÿfÑþ47‰ßf)òf)÷f‰U܈fÁûˆHfÁùˆXˆHˆP·MÜfÁùˆH‰ùˆH‰ùfÁùˆHƒmäué ýÿÿ…ÉqHÎÁù…ɉMä„–üÿÿ‰UÐvƒmЃè‹}жO¶¶wÁá ˶OÁæ ñ‰Þ‰Ï‰ÊfÑïfÑî47f‰u܉Þf+UÜf+uÜf‰U܈fÁëˆHfÁéˆXˆHˆP·MÜfÁéˆH‰ñˆH‰ñfÁéˆHƒmäu‡éýÿÿfU‰åWVSƒì‹}·E ‹_f‰EØ‹G…Ût)4÷Û1Àt&¶LÿÆDBþˆLBÿƒè9Øuë‹WÒ‹GP‰WP‰WP‹T‡,…Òt"·E؉}%çÿƒÈ‰E ƒÄ[^_]ÿâ´&ƒÄ[^_]ô&U‰åWVSƒì‹}·E ‹_f‰EØ‹G…Ût)4÷Û1Àt&¶LÿÆDBÿˆLBþƒè9Øuë‹WÒ‹GP‰WP‰WP‹T‡,…Òt"·E؉}%çï ‰E ƒÄ[^_]ÿât&ƒÄ[^_]ô&U‰åWVSƒì·E ‹}f‰EØ%ƒø‹_‹G‰Ú‰ÆƒÒÁîÆ1ÀÑþt¶ ƒÂˆ ƒÀ9ðuð‹G‰ÂÁêÑø‰G‹GPP‰WP‹T‡,…Òt·E؉}%çoƒÈ‰E ƒÄ[^_]ÿâƒÄ[^_]ô&U‰åV·u S‹]·Æ<‹St:‹K…Ét1À€€ƒÀ9Èuõ‹CPP‹Dƒ,‰SP…ÀtDfö‰u ‰][^]ÿà%ƒø‹CƒÒ‰ÁÁéÑøtÁ¶€€ƒÂƒèuõë®v[^]ö¿U‰åWVSƒì ‹u·} ‹V‹F‰ÑÁéÑút¶¶XˆHˆƒÀƒêuì‹FPP‹D†,‰VP…Àtf÷·ÿ‰} ‰uƒÄ [^_]ÿàfƒÄ [^_]ô&U‰åWVSƒì,‹u·] ‹~‹N‰]äãÿ?9Áƒût4ƒûtW‰F‹FPP‹D†,‰VP…À„Ž‹Uä‰u‰U ƒÄ,[^_]ÿàt&…ÿtÍ÷ß1À¶\ÿˆ\Aþ¶\ÿˆ\Aÿƒè9øuç‹FÀ멉ûÁëûÑûtž1À‰]Ô¶|þ‰ûˆ\Aü¶|ÿ‰ûˆ\Aý¶|þ‰ûˆ\Aþ¶|ÿ‰ûˆ\AÿƒèƒmÔuË‹FÀéZÿÿÿƒÄ,[^_]ÃU‰åWVSƒì,‹u‹^‹V ʉUÔ·U ¶úƒÿ‰Uät4ƒÿt‹FP‰NP‹D†,‰VP…À„Ç‹Uä‰u‰U ƒÄ,[^_]ÿàt&‰ßÁïÑûtÅ‹UÔ1ɉ]Ô¶|þ‰ûˆ\Jü¶|ÿ‰ûˆ\Jý¶|þ‰ûˆ\Jþ¶|ÿ‰ûˆ\JÿƒéƒmÔuË‹NÉë…Û{HßÁû…Û„nÿÿÿ‹UÔƒèƒê¶ƒëˆ ¶HˆJ¶HˆJ¶HˆJ¶ˆJ¶HˆJ¶HˆJ¶HˆJuÀ‹NÉé!ÿÿÿƒÄ,[^_]ô&U‰åWVSƒì,‹M·} ‹Y‹Q4ò‰UÔ‰úâÿƒú‰Uät0ƒú„‡‹AP‰qP‹D,‰QP…À„‰} ‰MƒÄ,[^_]ÿà…ÛSHÚÁû…ÛtÊ‹Uԉ΃èƒê¶ƒëˆ ¶HˆJ¶HˆJ¶HˆJ¶ˆJ¶HˆJ¶HˆJ¶HˆJuÀ‰ñ‹vöéyÿÿÿ…ÛSHÚÁû…Û„fÿÿÿ‹Uԉδ&ƒèƒê¶ƒëˆ ¶HˆJ¶HˆJ¶HˆJ¶HˆJ¶HˆJ¶HˆJ¶HˆJ¶ˆJ¶HˆJ ¶HˆJ ¶HˆJ ¶HˆJ ¶HˆJ ¶HˆJ¶HˆJuˆ‰ñ‹vöéÖþÿÿƒÄ,[^_]Ãt&U‰åWVSƒì‹u·U ‹~‹^‰Uà? ;ÉEä¶Âƒøt6ƒø„«‹FP‹Uä‰VP‹D†,‰VP…À„g‹Uà‰u‰U ƒÄ[^_]ÿà‰øº«ªª*÷êÁÿ)útÃéƒë ¶ƒêˆ¶AˆC¶AˆC¶AˆC¶AˆC¶AˆC¶ˆC¶AˆC¶AˆC¶AˆC ¶AˆC ¶AˆC u¤‹FÀ‰EäéZÿÿÿt&‰øº«ªª*÷êÁÿÑú)ú„?ÿÿÿƒé ƒë¶ƒêˆ¶AˆC¶AˆC¶AˆC¶AˆC¶AˆC¶AˆC¶AˆC¶AˆC¶A ˆC ¶A ˆC ¶A ˆC ¶ˆC ¶AˆC ¶AˆC¶AˆC¶AˆC¶AˆC¶AˆC¶AˆC¶AˆC¶A ˆC¶A ˆC¶A ˆC…Lÿÿÿ‹FÀ‰Eäé~þÿÿƒÄ[^_]ÃU‰åWVSƒì·u ‹]‰òâÿ‹Cƒút4ƒútO‹C‰ÂÁêÂÑú‹CP‰SP‹Dƒ,‰SP…Àtl‰u ‰]ƒÄ[^_]ÿà‹S‰×Áï×1ÒÑÿtͶ Pˆ ƒÂ9úuò뱋{‰Â…ÿOIÏÁù…ɉMät.t&¶8‰ùˆ ¶xƒÀ‰ùˆJƒÂƒmäuäétÿÿÿƒÄ[^_]ÉúÁêúÑúéjÿÿÿ‰ö¼'U‰åWVSƒì ·u ‹]‰òâÿ‹Cƒút@ƒútk‹S‰ÐÁè‹CPÑú‰SP‹Dƒ,‰SP…À„†‰u ‰]ƒÄ [^_]ÿà´&‹S…Ò‰×JHùÁÿ…ÿt´‰Â¶ˆ ¶HƒÀˆJƒÂƒïuéë–‹S…Ò‰×JHùÁÿ…ÿt„‰Â¶ˆ ¶HˆJ¶HˆJ¶HƒÀˆJƒÂƒïuÛéUÿÿÿƒÄ [^_]ô&U‰åWVSƒì ·u ‹]‰òâÿ‹Cƒút@ƒút{‹S‰ÐÁè‹CPÑú‰SP‹Dƒ,‰SP…À„¼‰u ‰]ƒÄ [^_]ÿà´&‹S…Ò‰×JHùÁÿ…ÿt´‰Â¶ˆ ¶HˆJ¶HˆJ¶HƒÀˆJƒÂƒïuÛëˆv‹S…Ò‰×JHùÁÿ…ÿ„pÿÿÿ‰Â¶¶ˆ ¶HˆJ¶HˆJ¶HˆJ¶HˆJ¶HˆJ¶HˆJ¶HƒÀˆJƒÂƒïu¿éÿÿÿƒÄ [^_]ÃfU‰åWVSƒì·} ‹]‰ø%ÿ‹KƒøtAƒø„‹s‰ðÁè40‹CPÑþ‰sP‹Dƒ,‰SP…À„‰} ‰]ƒÄ[^_]ÿàt&‹sº«ªª*‰ð÷ê‰ðÁøÑú)‰Uät±‰Èt&¶1‰òˆ¶q‰òˆP¶q‰òˆP¶q‰òˆP¶q‰òˆP¶qƒÁ ‰òˆPƒÀƒmäuÀécÿÿÿ‹sº«ªª*‰ð÷ê‰ðÁøÁú)‰Uä„Gÿÿÿ‰È¶1‰òˆ¶q‰òˆP¶q‰òˆP¶q‰òˆP¶q‰òˆP¶q‰òˆP¶q‰òˆP¶q‰òˆP¶q‰òˆP¶q ‰òˆP ¶q ‰òˆP ¶q ƒÁ‰òˆP ƒÀ ƒmäuŠéÇþÿÿƒÄ[^_]ô&U‰åWVSƒì,‹E·M Û@Ý@ÙÁØñÙ}æ·Uæ¶ f‰UäÙmäÛ]àÙmæ‹]àÙèÙÉÛéÝÙvSÝٷɶуú‰MÜ„߃úuZƒãþ‹x‰ÚÑútR‰ùÙîÙmäÛUàÙmæ‹uàØÁ·4wf‰1ƒÁƒêuãÝØÝØë9´&·É¶Ñƒú‰MÜtRƒú„ÁÝØÝØëvÝØëÝØë ÝØÝØëÝØÝØ‹PP‰XJ‹T,‰HP…Òt‹M܉E‰M ƒÄ,[^_]ÿâƒÄ,[^_]Ã…Û‹ptÁ ‰Ú‰]Ôë‹pÝ@ÞéƒéƒêÙmäÛUàÙmæ‹}à¶4>‰óˆuÜÝØ‹]Ôë–t&ÝØ…Û‹Pt‰<‰ÖÙîë‹pÙmäÛUàÙmæ‹Mà¶ ˆ ƒÂ9úÜ@uáÝØéZÿÿÿƒãþ‹x‰ÚÑú„FÿÿÿÙÉØ T¬L ØáƒéƒêÙmäÛUàÙmæ‹uà·4wf‰1uãÝØÝØéÿÿÿ´&U‰åSƒì‹U‹B…Àt+‹J(1Û‹B…ɉBt·BÇBP‰$‰D$ÿщ؃Ä[]ÃÇ$0¬L»ÿÿÿÿèžþÿëåU‰åWVSƒì·E ·UÙè‹M¶]·ð¶}f‰Eæ·Â‰Eð1ðöÄf‰UäÇÇAPÇA(ÇAÝY t ‰ò€ú„öÄ€t‹qPÇD±( CƒÆ‰qP„Àt'‹Uðâÿƒú„Åú„©ƒú„y‰ø8Ä<wR€û”Àtu‰ú€ú”Eè„À„X€}è„N‹AP»ÝA ØÀÑaÇD(ÀCƒÀ‰APÝY ¸ÆEèëiv€ûu©‹AP»ÝA ØÀÑaÇD(` CƒÀ‰APÝY ¸‰ú€úu„‹AP»Ù\¬LÜI ÇD(0 CƒÀ‰AP‹AÆEèÝY @‰A¸ ‰ú¶ò9ð=‹AP‹QÝA ‰Mð‰ù‰÷ˆMã‹MðÛÒ¶óöØÀÇD(` CƒÀ9þ~ã¶}ãÝY ‰AP‰Q€û„ËöÄXf‹E¿…ëQÙîÝY÷ï‹E‰ÖÁøÁþ)Æ‹E ÷ï‹E ÁúÁø)Â9Ö„‹U 9U~D€û‹E‰Ö„f†€€û„7€ût&…sÇEì CÙT¬LÇEèé€û‹E ‹u„q†Q€û„D€û…2ÇEìCÙX¬LÇEèé@‰ø<‡OÙ\¬L»Üy ‹APÇD(ÀCƒÀ‰AP¸ÝY ‰ú8Ú‡TÝA ‰Î‹APÙT¬Lët&‰Ú‰ùÐê8Ñw‰ÓÇD†(CƒÀöÃÜÉtâÝØëÝØ‰ñ‰FPÝ^ é¿þÿÿÝØ‹YP…Ûu ‹ƒÄ[^_]÷Eä·UæÇÇAf‰A¸f‰QÇAÇD™(ƒÄ[^_]Ãv‹APÇD(ðCÝA ƒÀØÀ‰APÑaÝY é/ýÿÿ€}ð…äüÿÿÇA(0CÇAPéÑüÿÿf€û„ðƒÄ¸ÿÿÿÿ[^_]ÀûuîÇEì CÙX¬LÇEè»…ëQö÷ã‰ðÁê‰Uð÷ãÁê9Uð‚"ÿÿÿ‹YP‹yÝA ‹Uìö¸…ëQ¯}èØÉ‰T™(÷æƒÃÁê;UðvßÝÙ‰YPÝY ‰yéíþÿÿÙT¬LÜI ‹APÇD(CƒÀ‰APÝY éeüÿÿt&‹APÇD(€Cé ÿÿÿÇEì€CÙT¬LÇEèéWÿÿÿ´&ÇEì CÙT¬LÇEèé7ÿÿÿÇEìÐCÙT¬LÇEèéÿÿÿÇEì CÙX¬LÇEèéÿÿÿt&ÇEì€CÙX¬LÇEèéçþÿÿ€}è„ÒüÿÿÙT¬L»ÜI ‹APÇD(  CƒÀ‰APÝY ¸é¢ýÿÿ‰Ãéªüÿÿ‰ØÐëé’ýÿÿ¶ÃÀé=üÿÿU1À‰åWVSì,fÇ…€ÂMÇ…à¤MƒÀƒøuâèå©Ç…ûÿÿ…À‰…ûÿÿ~N…ûÿÿ»‰…ôúÿÿE¬sÿÇE¬4ÇE°ÿ‰D$‰4$訩ƒì…Àt$‰ÞƒÃƒ½ûÿÿ9µûÿÿË…ûÿÿeô[^_]Ã…ûÿÿÇD$”‰D$‰4$èk©ƒì …Àu»‹…ûÿÿ¹e‰4…€ÂMiÀ”‹µôúÿÿ@©M‰Çó¥…ˆûÿÿ‰D$…¬þÿÿÇD$`¬LÇD$ x¬LÇD$±¬LÇD$‰$èÍ/Eä‰D$…¬þÿÿÇD$ ÇD$‰D$Ç$€è»º€ƒì…À…À…¬ýÿÿ1ÿ‰•ûÿÿ‰ÞÇD$º¬L‰\$ ÇD$¬LÇD$‰$ÇEàèU/Eà‰D$…¬ýÿÿ‰D$‹Eä¬üÿÿ‰L$‰ûÿÿÇD$ ÇD$‰$躉… ûÿÿ‹Eäƒì‰$葺‹• ûÿÿ‹ûÿÿƒì…Òt`f‹…ûÿÿ‰<…à¤MƒÀ‰…ûÿÿéfþÿÿt&Eä‰D$…¬þÿÿÇD$ ÇD$‰D$Ç$€èºƒì…À„»‰Þ1ÿ뢅¬þÿÿ‰L$ÇD$ ЬLÇD$ ­LÇD$‰$èh.‹•ûÿÿEä‰D$…¬þÿÿÇD$ ÇD$‰D$‰$èµ¹ƒì…À…>ÿÿÿEà‰D$‹EäÇEàÇD$ÇD$ ÇD$ÇD$º¬L‰$èy¹ƒì…Àt‹Eä‰$èo¹Péíþÿÿº€éCþÿÿ‹Eà‰$è@µ…À‰ÇtÔEà‰D$‹Eä‰|$ÇD$ ÇD$ÇD$º¬L‰$蹃ìë¡ë U‰å‹U‹•à¤M…Àt]Ãi”]D©MÃU‰åWVSƒìl‹uÇEØÇEÜÇEà¶ÇEäiØ”‰E ƒ`©M‹P‰UÀ‹P‹@ ‰U¨‹“p©M‰Eăp©M‰U¬‹P‹@‰UȉE°ƒ€©M‹P‹@ ‰UÌ‹“©M‰E´ƒ©M‰UЋP‰U¸‹P‰UÔ‹@ Ç$4‰E¼è2´…À‰Â‰F(„¾1À¹ ‰×ó«‹M ‹€ÂM‹‹ ©M‰1ÀëÇDÂÇD€?ƒÀƒøtA‹V(ƒø~…L…ÐtÚ‹|…À¹€ÿÿ)ù‰L‹L…¨)ù‰M¤‹‹ ©MÛE¤Ø=Ø­LÙ\ƒÀƒøu¿iE ”ƒá‹|©M‹€¨©M‰V ‰FuÇF1ÀƒÄl[^_]Ãt&ÇF1ÀƒÄl[^_]ÃÇ$è—þÿ¸ÿÿÿÿëж¿U‰åWVSìÌ‹]ÇEÐÇEÔÇEØ‹{ÇEÜÇEàÇEä …ÿÇE„4ÇEˆÿ„E„‰D$‹C(‹‰$蚤ƒì…Àtzƒø Æ ¥M„“mƒø„ƒø„ú‰D$ÇD$ ˜­LÇD$¤­LÇD$Ç$ ¥Mè+€= ¥M„OÇD$ ¥MÇ$Õ­LèÑ’þÿeô[^_]ËEŒ‹s‹{(‰E¸‹E…ö‰E¼‹E”‰EÀ‹E˜‰EÄ‹Eœ‰EÈ‹E ‰EÌŽ7‹Uˆ¸1ö‰•Tÿÿÿët&ƒÆ9sޤ‹DµÐ……Tÿÿÿtè‹Dµ¸1Ò‰•dÿÿÿ‰…`ÿÿÿß­`ÿÿÿÛD÷ÞÁØL÷Ù½nÿÿÿ·…nÿÿÿ´ f‰…lÿÿÿÙ­lÿÿÿÛhÿÿÿÙ­nÿÿÿ‹K ‹…hÿÿÿ¿ q‰Â)ʉÑÁÿùþ†yÿÿÿ˜‰t$ƒÆ‰D$‰$èÕ¿þÿ‹Eˆ9s‰…Tÿÿÿ_ÿÿÿvö…Tÿÿÿ€tr‹K …É~k1ɾë´&‹C$€<„ÓƒÁ9K ~=‰ðÓà…E¤uâ‹C$€<tæÇD$¶Á‰\ÿÿÿ‰D$‰$èüÀþÿ‹\ÿÿÿƒÁ9K ËUˆ‰•Tÿÿÿö…Tÿÿÿ@„wþÿÿ‹U¬1ÀúÿÿtA‚ØÜÿÿ=PF—Àrÿ‰ÁƒÉþNFFÁ‰Á²×ÜÿÿƒÉþNFFÁ‰ÁƒÉúQFCÁ‹S8„þÿÿ¶À‰$‰D$ÇD$èH¿þÿeô[^_]ÃÇD$éBÿÿÿv=¦„…=§tn=¥…‰ýÿÿvÇ ©MB­L¡ ©MÇD$ ˜­LÇD$έLÇD$‰D$Ç$ ¥Mè‰(éýÿÿt&‹Eˆ‰…Tÿÿÿé‚þÿÿfÇEˆ¿éæüÿÿt&Ç ©Me­Lëžt&Ç ©M{­LëŽt&Ç ©M&­Lé{ÿÿÿÇ ©MW­LékÿÿÿU‰åSƒì‹]‹C(…Àt‰$臯ÇC(ƒÄ[]Ãv¼'U‰åS1Ûƒì´&‹à¤M…Àt‰$èM¯Çà¤MƒÃƒûuÚƒÄ[]ÃU‰å‹E]‹…ÀÂMÃU‰åSì‹]‹…@ÃM‰T$‰L$‰\$ ‰$踠‰Âƒì1À…Òu‹]üÉÃøþÿÿ‰\$‰$ÇD$è– ƒì ‰\$Ç$Ü­Lèþÿ¸ÿÿÿÿ‹]üÉÃU¹‰åƒì‹EºÇE‹Éénÿÿÿ´&¼'U¹‰åƒì‹Eº ÇE‹Éé>ÿÿÿ´&¼'U¹‰åƒì‹EºÇE‹Ééÿÿÿ´&¼'U¹‰åƒì8‰uü‹uE܉]øº»ÿÿÿÿ‰$ÇEä‹èÎþÿÿ…Àt ‰Ø‹uü‹]ø‰ì]ËE๠ºÇEì‰Eð¡¨ÃM‰EôEì‰$‹è’þÿÿ…ÀuÄ‹1Û‹uüÇ…ÀÃM‰Ø‹]ø‰ì]ÃvU¹‰åƒì‹Eº ‹ÇEÇ…ÀÃMÉéCþÿÿvU‰åW¿µNV¾‰ˆˆˆSƒì<‹] ÇE܉Ø÷ï‰ØÁø‰ÑÁù)Á‰È÷î‰ÈÁøÊÁú)ÂkÂ<¶Ò‰EÔ‰È+EÔkÉK‰EÔ·EÔÁà ЉÚ)Ê]¶ÒÁâ ЉEà‰Ø÷ï‰ØÁø‰ÑÁù)Á‰È÷î‰ÈÁø‰ÎÊÁú)ÂkÂ<¶ÒkÉK)Æ·ÆÁà Ð)˶۹ Á㺠؉E䣨ÃME܉$‹E‹èsýÿÿƒÄ<[^_]Ãt&¼'U¹‰åƒì8‰]ô‹]º‰uøu؉}ü‹} ‰4$‹»ÿÿÿÿÇEàè(ýÿÿ…Àx‹EÜ- ƒøv(»ÿÿÿÿf…ÿtCþƒøvXlj؋uø‹]ô‹}ü‰ì]Ãÿ$…ø­L»ëÑ‹]‹ƒ<…ÀÃMÛƒÃ뼋U‹ƒ<…ÀÃMÛƒãþƒÃë¥t&1Û뜉4$‹u¹ºÇEà‹èŽüÿÿ…Àu†‹EܶЉÁiÒ”¶ÄkÀKÁé¶É‰éeÿÿÿvU¹‰åºWVS»ÿÿÿÿƒì<‹}E؉$ÇEà‹è1üÿÿ…À…Í‹E܃øc‰GŽÊÇGc‰û1öës}Ü@ºMØ•ÀÁàˆC‰ $‹¹ÇEàèßûÿÿ…Àxs‹EÜÇC¶Ð‰ÁiÒ”¶ÄkÀKÁé…ö¶É‰Ct+C‰C ‹GƒÆƒÃ 9ð~5F¹ˆCUضÀ‰$º‰Eä‹ÇEà@èpûÿÿ…À‰[ÿÿÿ‹G9Æ»ÿÿÿÿtƒÄ<‰Ø[^_]Ãf…À5ÿÿÿ1öëßt&Dvý¹‡º‰EÔ¶@ÇEà‰EäE؉$‹èûÿÿ…Àu±‹EÜ1۶ЉÁiÒ”¶ÄÁé¶ÉkÀK‹MÔ‰QvQ‡Ç@‰Pérÿÿÿ´&¼'U¹3‰åºVSƒì@‹]ÇEÝuÕ‹ÀÂM¶ÆEö:ÆE÷‰4$ˆEõEõ‰Eá1Àè|úÿÿ…Àx<‹EÙ¹º ÇEí‰@ÃMEé‰$‰ØèPúÿÿÇÀÃMƒÄ@‰Ø[^]Ã1À¹2º‰4$è(úÿÿ…Ày¬»ÿÿÿÿëØ¶¼'U‰åWVS»Aƒì,uäÇ •Mp2CÇ$•MÀ7CÇ(•M 6CÇ,•M 5CÇ0•M@4CÇ4•M4CÇ8•M€3CÇ<•MP3CÇ@•M 3CÇD•Mð2CëƒÃƒû[tY‰\$ ÇD$®LÇD$‰4$è!‰4$è¬ƒìƒøuÌ‹=ÄýMƒÿÁ‰4$èÂ…À‰½ÀÂMt'ƒÃƒÄýMƒû[u§º@ÃM1À¹‰×ó«eô[^_]ÃÇ$èä‹þÿévÿÿÿë U‰åSƒì¡ÄýM…À~11Û‹ÀÂM‰$èÿ§ÇÀÂMƒÃ9ÄýMÛÇÄýMƒÄ[]ÃU‰åƒì‹E‹€°‹P0‰T$‹P,‰$ÿPHƒì…Àt 1ÀÉöÇ$®Lèô‡þÿ¸ÿÿÿÿÉö¼'U‰åƒì8‹U ‰]ø‹E‰uü‹]ƒú„B‹ˆ°‹qL…öuwƒúv¸ÿÿÿÿëQÿ$•@®LEô‰\$‰D$ÇD$ ÇD$‹A4ÇEô ‰D$‹A,‰$ÿÖƒì;% t¶Ç1À‹]ø‹uü‰ì]ÃöAuèÇ1Àëæƒú¸ÿÿÿÿwÜÿ$•„®L¶A‰1ÀëËv¶A‰1Àë¾¶¶A‰1Àë®¶¶A‰1Àëž¶¶A ‰1À뎶¶A‰1Àé{ÿÿÿv¶A‰1Àékÿÿÿv¶A‰1Àé[ÿÿÿv¶A‰1ÀéKÿÿÿv¶A‰1Àé;ÿÿÿv¶A‰1Àé+ÿÿÿvöA„.ÿÿÿéÿÿÿ‹QT¸ÿÿÿÿ…Ò„ÿÿÿÿÒ‰1ÀéýþÿÿÇEô Eô‰\$‰D$ÇD$ ÇD$‹A4‰D$‹A,‰$ÿÖ‹]ø1À‹uüƒì‰ì]ÃÇEô# ë¾ÇEô" ëµÇEô ë¬ÇEô ë£ÇEô ëšÇEô ë‘ÇEô ëˆÇEô é|ÿÿÿÇEô! épÿÿÿÇEô édÿÿÿÇEô éXÿÿÿÇEôB éLÿÿÿÇEôA é@ÿÿÿÇEô é4ÿÿÿf‹€°‹PT¸ÿÿÿÿ…Ò… ÿÿÿé þÿÿt&U‰åƒì‹E‹€°‹@,‰$èn™ƒìÉÃU‰åSƒì‹]‹ƒ¤…À„€‹ƒ¨‰$è^§‹ƒ°Ç@<‹ƒ°ƒìÇ@@‹ƒ°Ç@D‹ƒ°Ç@H‹ƒ°Ç@L‹ƒ°Ç@P‹ƒ°Ç@Tǃ¨ǃ¤‹]üÉÃvU‰åSƒì‹]‹ƒ°‹P0…Òt4ÇD$Ç$ÿPH‹ƒ°‹P0ƒì‰$ÿPD‹ƒ°Ç@0ƒì‹P,…Òt!¡Œ”M‰T$‰$èÝ–‹ƒ°Ç@,ƒìlj]‹]üÉéÛþÿÿt&¼'U‰åWVSƒì,‹]‹U ‹ƒ°‹…À…a…ҸĮLDЉ$‰Uä見Uäƒì…À‰Æ„O‰Uä‰$èþÿÿ‹»°1À¹ó«‹»°ÇD$¯L‰4$舥ƒì‰G<‹»°ÇD$#¯L‰4$èl¥ƒì‰G@‹»°ÇD$4¯L‰4$èP¥ƒì‰GD‹»°ÇD$E¯L‰4$è4¥ƒì‰GH‹»°ÇD$T¯L‰4$襃ì‰GP‹»°ÇD$g¯L‰4$èü¤‰GT‹ƒ°ƒì‹Uä‹x<…ÿtJ‹H@…ÉtC‹xD…ÿt<‹HH…Ét5‰³¨ƒ¨ÇD$‰T$‰$èþÿ1Àǃ¤eô[^_]ÃÇ$€¯L褂þÿ‰4$èसÿÿÿÿƒìëÙfÇ$Ô®Lè„‚þÿ¸ÿÿÿÿëÄÇ$ó®Lèq‚þÿ¸ÿÿÿÿë±v¼'U‰åƒì‰]ø‹]‰uü‹u ‹ƒ°‰4$ÿP<ƒì…Àt ‹]ø‹uü‰ì]Ét$‹ƒ¨‰$è ¤‹]ø‹uüƒì‰ì]ÃU‰åWVS윋]ÇEä‹“¤…Ò„­‹“°1À¹ ƒÂ‰×ó«‹“|‹ƒ°…ÒfÇ@(fÇ@Ç@$‰•¼þÿÿtÇ@%‹‹…ɉ´þÿÿtƒHÆ@ ‹“tˆP ‹“`ˆP‹‹d‰•¸þÿÿˆH‹“h‰°þÿÿˆP‹‹l‰•¬þÿÿˆH‹³€‰¤þÿÿ‰òˆP‹‹„ˆH‹“ˆ‰”þÿÿˆP‹‹Œ‰• þÿÿˆH¶•”þÿÿ‰Àþÿÿ¶ þÿÿò< ¶•Àþÿÿ׉ùˆH‹“pˆP‹‹x‰•¨þÿÿ‰ÄþÿÿˆH‹…¸þÿÿ‹•°þÿÿ‹¬þÿÿÇ…Ìþÿÿ ‰…àþÿÿ‹…¤þÿÿÇ…ÐþÿÿÇ…Ôþÿÿ Ç…Øþÿÿ' …ÀÇ…Üþÿÿ Ç…äþÿÿ ‰•èþÿÿÇ…ìþÿÿ ‰ðþÿÿ…1½øþÿÿ•ÿÿÿüþÿÿ‰½¬þÿÿ…ÿÿÿ‰•¸þÿÿ½ôþÿÿ‰°þÿÿÇ ‹¼þÿÿ‹•¬þÿÿ‹½°þÿÿ‰ ‹•¨þÿÿÇ" ‹½Äþÿÿ‹¸þÿÿ…ÿ‰t‹•ÄþÿÿÇ# ‰PƒÀ…öt Ç ‰pƒÀ‹”þÿÿ…Ét‹”þÿÿÇ ‰HƒÀ‹• þÿÿ…Òt‹• þÿÿÇ ‰PƒÀ‹½Àþÿÿ…ÿt‹ÀþÿÿÇ! ‰HƒÀ‹µ´þÿÿ…ötÇ Ç@ƒÀ‹“”…Òt ÇA ‰PƒÀ‹“˜…Òt ÇB ‰PƒÀ‹“œ…ÒxƒúÒÂ& Ç ‰PƒÀÇÇ…´þÿÿ¡Œ”M‹³°‰$茑‹»°‰½¼þÿÿ‰F,‹O,ƒì…É„¼‹ˆ”M¡€”MÇEàÇE܉T$(ÇD$,ÇD$$ÇD$ ÇD$ ÇD$ ÇD$ÇD$ÇD$ ˆ‰D$‰D$Ç$è–‘ƒì0‰…Äþÿÿè¨þÿ‹…Äþÿÿ‰$è⋳°ƒÆƒì‰Ç‰t$‰$è`’ƒì‰t$‰D$‰<$èU’‹ƒ°ƒì ‰<$ÿP@ƒì…À‰…Àþÿÿt‹ƒ°‹•Àþÿÿ‰<$‰T$ÿPHƒì‹ƒ°Ç$įLÿP<ƒì…À„ ‰<$ÿЋ‹°‰¸þÿÿÇA8ƒì…À‰Æ„ˆÇD$Þ¯L‰4$èHž…Àtt9ÆPt €xÿ t‰ÖëÛv¶@„Àt< uí‹•¸þÿÿÇ$ݰLÿR<ƒì…Àt=UÜMà‰T$Uä‰L$ÌþÿÿÇD$ ‰T$‰L$‰<$ÿЃì…À…´¶‹…Àþÿÿ…Àt0‹ƒ°ÇD$Ç$ÿPH‹ƒ°‹•Àþÿÿƒì‰$ÿPDƒì‹Äþÿÿ‰|$‰ $èt‹½Äþÿÿƒì‰<$èûƒìè Žþÿ‹Eà‹•¼þÿÿ‹³°‰B4‹F4…À„ðV‰T$‰D$‹F,‰$èÀƒì …À…x‹½´þÿÿ…ÿ…‹5¼”M…ö… ‹3¿°L¹ó¦…ø¡Œ”MÇEÌÇEÐÇEÔÇEØÇD$ðÿÿÿ‰$èDŽM̉ơŒ”Mƒì‰L$‰$è#Ž¡Œ”Mƒì‰$è+ƒìè;þÿ¡ˆ”M‹}ЋMÌ‹€”M‰D$(‹EØÇ¨”M‰L$‰T$ƒÀ)ø‰D$‹EÔ‰T$ÇD$,ÇD$$ƒÀ)ÈÇD$ ‰D$‰|$‰t$ Ç$謎ƒì0£Œ”M迌þÿ‹ Œ”MǨ”M…É„Ÿ‹ƒL‰D$‹ƒH‰$‰D$ÿ“Ç…´þÿÿé$üÿÿ‹…¤þÿÿ½ÿÿÿ•ÿÿÿÿÿÿ‰½¬þÿÿ½üþÿÿ‰…øþÿÿ… ÿÿÿÇ…ôþÿÿ ‰•¸þÿÿ‰°þÿÿé´úÿÿÇ$d°LèÔzþÿ¸ÿÿÿÿeô[^_]ô&‹ƒ°Ç@8éŽýÿÿF‰D$‹F,‰$èÌŽ‰F4‹³°ƒì‹F4…À…çýÿÿÇ$ô¯Lèyzþÿ¸ÿÿÿÿ룋Uà…Ò„Gýÿÿ‹ƒ°Ç@8é5ýÿÿÇ$8°LèIzþÿ¸ÿÿÿÿépÿÿÿÇD$‰$èöÿÿ‰Â¸ÿÿÿÿ…Ò‰4øÿÿéLÿÿÿÇ$¤¯Lèzþÿ¸ÿÿÿÿé6ÿÿÿ‹ƒ°ÇD$(P‰T$ ‹P4‰T$‹@,‰$莋³°‹F,ƒì‰$ÿV@‰F0‹ƒ°ƒì‹P0…Ò„‰$è}ñÿÿ‰Â¸ÿÿÿÿ…ÒˆÏþÿÿ‹³°‹F8Ç…À…¼ÇFLÇD$¼°L‰$è÷ÿÿ…À„Ç$ÿÐ…ÀQtsÇD$ȰL‰$èú™…Àt_‹³°ÇD$T¯L‰$èÐöÿÿ‰FP‹³°ÇD$g¯L‰$è·öÿÿ‰FT‹‹ …Éx‹ƒ°‹PP…Òt ‰ $ÿÒR‹ƒ°ƒ8Àéþÿÿ‹ƒ°Ç@P‹ƒ°Ç@Të·Ç$Ÿ°LÿVÇÔÅM?ÇxÉM%ÇtÉM&ÇpÉM'ÇlÉM(ÉÃÇ$èê|£DÄMRé0ûÿÿ´&U‰åƒì8ÇD$ÇD$Ç$è.}þÿÇ$Ù±L袀þÿ1Ò…À•Â…Ò‰¼”MtfÇD$ÇD$‰$èY…À£Œ”M„ßÇD$üÿÿÿ‰$è}£@ÄM¡Œ”MƒìÇD$ÐÇAÇD$üÿÿÿ‰$èŸ}ƒì è|þÿ1ÀÉနM‹ˆ”MÇD$,ÇD$$ÇD$ ‰T$(ÇD$ÇD$ÇD$€ÇD$€ÇD$ ʉD$‰D$Ç$èˆ}ƒì0…À£Œ”MtÇD$‰$è„|ƒìè„{þÿ1ÀÉÃÇ$ ²Lè$jþÿ¸ÿÿÿÿÉÃÇ$è±Lèjþÿ¸ÿÿÿÿÉÃv¼'U‰åƒì‹ ¼”M…Éu ¡Œ”M‰$è}ƒìèû}þÿÉé%{þÿt&¡@ÄMÇD$üÿÿÿ‰D$¡Œ”M‰$èŠ|ƒì èÊ}þÿÉéôzþÿU‰åƒì‹E ‹@‹‹ÇD$‰$ÿ’€ƒìÉÃv¼'U‰åƒì‰uü‹u ‰]ø‹^…Ût ‹…Àt ‹‰$ÿRƒì‰$èáˆÇF‹]ø‹uü‰ì]ÃU‰åVSƒì@‹M ‹E‹U‹I·p‹¿H‰Mì ·r‰Mô¿·@‰Mè ¿‰Mð¿J·R”M ””M‰EØЉEà‹E‰MÜñ‰MäMè‹€¬‹@‹ÇD$ÇD$‰L$ M؉\$‰L$‰$ÿRƒì…Àu 1Àeø[^]ÉD$Ç$$²LèèÒþÿ¸ÿÿÿÿëâU¹‰åWVS쬋] •|ÿÿÿ‰×‹C‹01Àó«Ç…|ÿÿÿl‹ÇD$ÇD$ ‰T$ÇD$‰4$‰•tÿÿÿÿPdƒì=Âvˆ„|…À…±‹UŒ‹C‹ ‹} ‰Öf‰‹SùYV12‰:tùIYUVt eô1À[^_]Ãf·fÑîf‰pfÑéf‰H‹K·¯Áljð%ÿ¯Á‰z‰ÁÁéÑø‰B1Àeô[^_]ˉ4$ÿPl‹‹•tÿÿÿƒìÇD$ÇD$ ‰T$ÇD$‰4$ÿPdƒìéGÿÿÿ‰D$Ç$<²Lè°Ñþÿ¸ÿÿÿÿ뤉ö¼'U‰åWVSìÌÇ$$è°†…À‰Ã‰…dÿÿÿ„Z‰Ç¹ 1Àó«ÇC0÷K‹U‹M ‹E‰‰K‰CÇ$èq†…À‰Æ‰C„/•tÿÿÿ1À‰×¹󫉕TÿÿÿÇ…tÿÿÿl‹E‹M‹U Ç…xÿÿÿ‰EÄ‹E‰|ÿÿÿ‰U€UäÇEÜ@@‹€¬ÇE¼ ÇEÀ‹‹‰T$•tÿÿÿÇD$ ‰T$‰$ÿQƒì…À…R‹EäUà‹‰T$ÇD$Ô÷L‰$ÿ‰…`ÿÿÿ‹Eäƒì ‹‰$ÿR‹…`ÿÿÿƒì…À…&‹…`ÿÿÿ¹‹½Tÿÿÿó«‹EàtÿÿÿÇ…tÿÿÿl‹ÇD$ÇD$ ‰L$ÇD$‰$ÿRdƒì…À…í‹Eà‹ÇD$‰$ÿ’€ƒìöEÀtn‹E;EÄuf‹Eà…À‰t}‹dÿÿÿFƒÆ €I }YV12‰A‰qt }IYUVt‹•dÿÿÿÇB eô‰Ø[^_]Ë…dÿÿÿÇ@ eô‰Ø[^_]ô&Ç$”²Lèeþÿ‹Eà‹‰$ÿRƒìÇ‹•dÿÿÿ1Û‰$èp8릉D$Ç$U²LèNÏþÿëÖ‹`ÿÿÿÇ$p²L‰L$è6Ïþÿë¾t&‰D$Ç$<²Lè ÏþÿëšÇ$èògþÿéUÿÿÿÇ$èágþÿ‰$1Ûè8é:ÿÿÿU‰åS‰Ãƒì$ú€Æ ÉM„~rúW€„Öú~€„«ú€„ΉT$‰\$ ÇD$h³LÇD$Ç$ ÉMè:ü€= ÉMtGÇD$ ÉMÇ$“³LèýcþÿƒÄ$[]ô&ú@€„„úT€tLú@€u–Ç ÍM7³L¡ ÍM‰\$ ÇD$Œ³LÇD$‰D$Ç$ ÉMèÁûëŽÇ ÍMÔ²LëÉvÇ ÍM!³Lëºt&Ç ÍM³Lëªt&Ç ÍMO³Lëšt&Ç ÍMÀ²LëŠt&Ç ÍM³LéwÿÿÿU‰åƒìX‰]ô‰Ã‰uø‰Ö‰}ü‰Ïèöpÿÿƒàƒøt&Ç€ÉMÇ$èuƒì‹]ô‹uø‹}ü‰ì]ÿÿ¿ö‰|$ ‰t$‰\$Ç$èêÿÿ£”ÉM¡¬”M…À…ÈEà‰D$Eä‰$è6ÿÿ‹Eä‰EØ‹Eà‰EÜE؉D$¡Œ”M‰$è†t‹EÜ‹U؉ẼÀ‰EÔE¸ƒì‰D$¡Œ”M‰Uȃ‰UЉ$è÷s‹Mä‹EÀ‹UÄ+E¸+U¼ÇE¸ƒì…ɉEÀ‰UÄÇE¼„%ÿÿÿƒè9Á„ÿÿÿ‹Eà…À„ÿÿÿƒê9ЄÿÿÿEȉ$ètƒìéÿÿÿt&¡|M‹4‹B‰ÁÁéÑø‰EØ‹B ‰ÂÁêÑø‰EÜE؉D$¡Œ”M‰$è±s‹E܃ì‰D$‹E؉$è´t‹]ô‹uø‹}üƒì‰ì]ö¿U‰åWVSƒìL¡|M‹˜<…Ût`‹ €ÉM…É…ª‹U…Ò~K‹] 1ÿ1É1À1ö‹ƒúw#ÿ$•¼³L‹S9út‰Çf Ï…`‰×1À1ÉfCƒÆƒÃ9uˉÃf Ë…¿eô[^_]Ã‰Ç Ïf…ÿ…Óƒê €ú„凃€ú¸DÐöC€„<¡ŒÉM¿ƒÀ…À£ŒÉM~¡Œ”MˆUĉ$èÆr¶Uăì‹ ÉM¶Â…Ét€ú¸t¶Â€úºD‰<$ƒÆ1ÿÇD$ ƒÃÇD$‰D$èöÿÿ1É£”ÉM1À9uüþÿÿé,ÿÿÿ‹S9út‰Çf Ï…M‰×1É1ÀfKƒÆƒÃ9uÌþÿÿéüþÿÿ‰Âf Ê… 1Ƀ{ÇD$ ÇD$žÁƒÆ‰ÏƒÃƒÇ‰|$Ç$èpÿÿ‰|$1ÿÇD$ ÇD$Ç$£”ÉMèIÿÿ1É ”ÉM1À9uNþÿÿé~þÿÿ¡ŒÉM1ÿƒè…À£ŒÉMÚþÿÿˆUÄè‰q¶UÄÇŒÉMé¿þÿÿ€út)€ú¿D×ésþÿÿ¿Ð¿É¸è üÿÿeô[^_]úéPþÿÿ¶¿Ð¿É¸èàûÿÿ‹ƒê €ú…þÿÿºé"þÿÿ¿Ð¿É¸è¸ûÿÿéßþÿÿv¿Ð¿É¸è ûÿÿ‹Sé›þÿÿ¿Ð¿É¸èˆûÿÿ‹Séˆýÿÿè‹lÿÿ¨„Iýÿÿ]à‰$uÌèEp¡Œ”Mƒì‰\$1Û‰$èŸq¿Mä1À¿Uàƒìè=ûÿÿÇD$Ç$èéÿÿ‰Ç¡ˆÉM‹‰t$ÇD$‰$ÿR$¹ƒì …À…Y‰ØƒÈ€| H؃éÛƒùÿu龉Ú롌ÉM¹ƒÀ…À£ŒÉM~¡Œ”MˆUĉMÀ‰$èp¶UÄ‹MÀƒì¡ÉM…À…£¶ÃˆUÄÇD$ ÇD$‰D$‰ $èLÿÿ¶UÄ£”ÉMƒÆƒþ „Ÿ‰øÐè‰ÇÐê¶Â‰Á1ùƒátà‰ó€û„wl€û¹DÙ¨…Uÿÿÿ¡ŒÉM1Ƀè…À£ŒÉMqÿÿÿˆUĉMÀèYo‹MÀÇŒÉM¶UÄéPÿÿÿ€û¸„Rÿÿÿ¶Ã€û»DÃé?ÿÿÿ€ût&€û¹DÙëÇ€ÉMéáûÿÿ»étÿÿÿ»éjÿÿÿ‰Â¸˜³LèYøÿÿé¼ûÿÿt&U‰åìX‰uø‰Ö…ɉ]ô‰Ãˆ‹…ÀÍM‰}üÇBfÇB ‰Bt ‹=À™M…ÿu‰ð‹]ô‹uø‹}ü‰ì]Ãt&ÇD$‰$èào•äþÿÿ‰•Ôþÿÿƒì‰Ç‰$è'n‹•Ôþÿÿƒìƒÿ_vö…tÿÿÿtƒÿivKEäÇD$ÇD$‰D$ ‰T$‰\$‰<$ÿ âKƒì…ÀŽuÿÿÿ·Eä‹]ô‹}üf‰F ‰ð‹uø‰ì]Ãï0f‰~ éQÿÿÿt&U‰åWVSƒì,‹}…ÿ~f‹] 1öë.‹¹ƒÆU؃ÃèäþÿÿÇ$‰D$è¤ÿÿ9÷£”ÉM~1öC€uÌ‹1ɃÆU؃Ãè³þÿÿÇ$‰D$èsÿÿ9÷£”ÉMσÄ,[^_]ÃfU‰åWVSƒì\]ȉEÄÇ”ÉMëTt&ÇD$ ÇD$ÇD$‰$èxnƒì…ÀŽ•‰$èemƒì‰$èbm‹=”ÉMƒì…ÿ…ÇD$ÇD$ ÇD$ÇD$‰$è1mƒì…Àu‚‹5”ÉM°…ö…)è}hÿÿ¨tGÇEÀ@÷K1Ò‹•„ÉM…Àt'‹‰U¼‰$ÿQd‹U¼ƒì= €„ =€„þƒÂƒEÀƒúu¡ÐÑMÇD$¿ÇD$ ÇD$ÇD$ÈÑM‰$è­mƒì‰Â;ÐÑM‚Á1Àú„Ç”ÉMëFÇD$ ÇD$ÇD$‰$èBmƒì…À~c‰$è3lƒì‰$è0l¡”ÉMƒì…ÀuTÇD$ÇD$ ÇD$ÇD$‰$èlƒì…Àu‹1Àƒ=”ÉM•Àeô[^_]Ãeô¸ÿÿÿÿ[^_]Ãveô¸[^_]Ë…„ÉMuäÇE䋉U¼ÇD$‰t$ ÇD$àÑMÇD$‰$ÿQ(‹U¼ƒì= €t=€unR¿ ´L‹4Å@÷K¹ó¦u Ç€ÉM‹•„ÉMu䋉U¼‰$ÿQ‹U¼‹•„ÉMƒì‹ÇD$‰t$ ÇD$àÑMÇD$‰$ÿQ(‹U¼ƒì…À…}þÿÿ‹MÄ…É„rþÿÿ‹EäÇD$àÑM‰$ÿ•ÔÑM¸éîþÿÿ´&‹EÀ¿ ´L¹‹0ó¦u Ç€ÉM‹•„ÉM‹‰U¼‰$ÿQ‹U¼‹•„ÉMƒì‹‰$ÿQd‹U¼ƒìé³ýÿÿU‰åƒìh‰]ô‹]‰uø‹U‰}ü‹u‹} ûwûr[‹]ô1À‹uø‹}ü‰ì]öûsl€=-üM„.¡ÀÑM…Àt2‰t$ ‰\$‰|$‰T$‰$èòj‹]ô‹uø‹}üƒì‰ì]Ãûteƒû~u¸‰t$‰\$‰<$‰T$ èTi‹]ô‹uø‹}üƒì‰ì]Ãû†kÿÿÿûu€‰ð%ðÿ=pñ„Qÿÿÿ=@ñ…cÿÿÿéAÿÿÿ¶…öuC¡„ÉM…Àt‹‰Uĉ$ÿQ ‹Uă졈ÉM…Àt‹‰Uĉ$ÿQ ‹UăìÇ€ÉMéYÿÿÿ‰UÄèÉi‹UÄ9øu®¡„ÉM…Àt‹‰Uĉ$ÿQ‹Uă졈ÉM…À„#ÿÿÿ‹‰Uĉ$ÿQ‹Uăìé ÿÿÿEÔ‰Uä‰UÄÆEÔÆEÕÆEÖ‰}؉]܉uà‰$è÷Qþÿ‹UÄ£”ÉMéÚþÿÿv¼'U‰åWV¾P÷KS1Ûƒì,‹E ‰Eà‹„ÉM…Àti‹Uà…Ò„„‹‰U䋉$ÿR ‹=Œ”Mƒìë‰Ç‰<$è’iƒì…Àuï‹„ÉM‹M䋉L$‰|$‰$ÿR4‰Ç‹„ÉMƒì ‹‰$ÿRƒì…ÿu6ƒÃƒÆƒûuÇ€ÉMeô1À[^_]éSúÿÿv‹Nü‰Mäévÿÿÿt&‰ú¸´Lèñÿÿë¼fU‰åƒì¸è úÿÿ…ÀòÉÃv¼'U1À‰åÇ…ÀÍMƒÀ=uëÇÄÍMÇÈÍM1ÇÌÍM2ÇÐÍM3ÇÔÍM4ÇØÍM5ÇÜÍM6ÇàÍM7ÇäÍM8ÇèÍM9ÇìÍM0ÇðÍM-ÇôÍM=ÇøÍMÇüÍM ÇÎMqÇÎMwÇÎMeÇ ÎMrÇÎMtÇÎMyÇÎMuÇÎMiÇ ÎMoÇ$ÎMpÇ(ÎM[Ç,ÎM]Ç0ÎM Ç4ÎM2Ç8ÎMaÇ<ÎMsÇ@ÎMdÇDÎMfÇHÎMgÇLÎMhÇPÎMjÇTÎMkÇXÎMlÇ\ÎM;Ç`ÎM'ÇdÎM`ÇhÎM0ÇlÎM\ÇÏM<ÇpÎMzÇtÎMxÇxÎMcÇ|ÎMvÇ€ÎMbÇ„ÎMnLjÎMmÇŒÎM,ÇÎM.Ç”ÎM/ǘÎM/ÇœÎM Ç ÎM4ǤÎM ǨÎM-ǬÎMǰÎMÇ´ÎMǸÎMǼÎMÇÀÎMÇÄÎM ÇÈÎM!ÇÌÎM"ÇÐÎM#ÇÔÎM,ÇØÎM.ÇÜÎMÇàÎMÇäÎM ÇèÎM ÇìÎMÇðÎMÇôÎMÇøÎMÇüÎMÇÏMÇÏMÇÏMÇ ÏM ÇÏM$Ç ÏM%ÇPÏM&ÇTÏM'ÇXÏM(ÇôÏMÇ0ÐMÇ4ÐM1Ç”ÐM ÇœÐM<Ç ÐM3ÇÔÐMÇÜÐMÇàÐMÇäÐMÇìÐMÇôÐMÇüÐMÇÑMÇÑMÇÑMÇ ÑMÇ,ÑM6Ç0ÑM5Ç4ÑM?]ÃfU‰åWVSƒìlÇ$;´LèkfþÿÇ„ÉMÇÈÑMÇÔÑMLjÉMÇÌÑM‰ÃÇØÑMÇD$ÇD$Ç$è‘bþÿ1À…Û•À…À£¼”MtbÇD$ÇD$‰$èÉè…À£Œ”M„ÖÇD$üÿÿÿ‰$è„b£ÀÑM¡Œ”MƒìÇD$ÐÇAÇD$üÿÿÿ‰$ècƒì 醡€”M‹ˆ”MÇD$,ÇD$$ÇD$ ‰T$(ÇD$ÇD$ÇD$€ÇD$€ÇD$ ʉD$‰D$Ç$èübƒì0…À£Œ”M„9ÇD$‰$èôaƒì¡ˆ”MÇD$ ÇD$ÄÑMÇD$‰$ÿÌýMƒì…À…·‹@÷KÇÐÑM…Û„¿D÷K1ö¡ÄÑMMä‰}Ä‹‰L$‹ÇD$ ‰$‰L$ÿR ƒì…À…¹‹E䎄ÉM‹‰L$ÇD$”øL‰$ÿ‰Ã‹Eäƒì ‹‰$ÿRƒì…Û…›‹Œ”Më‰Ã‰$è`bƒì…Àu„ÉM‹O‹‰L$‰\$‰$ÿR4ƒì …À…‹†„ÉM‹O‹‰L$‰$ÿR,ƒì…À…W‹†„ÉMMÐÇEØÇEÜÇEЋÇEÔÇEà‰L$ÇD$‰$ÿRƒì …À…pÇD$ ÇD$ÇD$Ç$èZqƒì…À‰†ÈÑM„"‹–„ÉM‹ ‰D$‰$ÿQ0ƒì…À…ì‹GƒÇ‰†ÔÑM‹†„ÉMƒÆ‹‰$ÿR‹EăÐÑM‹Hƒì…É…jþÿÿÇŒÉMÇ$èm`ƒì£ÉMèð^þÿ1Àeô[^_]ÃÇ$H´LèŠMþÿ¸ÿÿÿÿëåÇ$k´LèwMþÿ¸ÿÿÿÿë҉¸”´Lèäèÿÿeô¸ÿÿÿÿ[^_]Éڸ°´LèËèÿÿeô¸ÿÿÿÿ[^_]ɸԴLè²èÿÿeô¸ÿÿÿÿ[^_]ɸ´Lè™èÿÿeô¸ÿÿÿÿ[^_]ɸ<µLè€èÿÿeô¸ÿÿÿÿ[^_]ÃÇ$µLèçLþÿeô¸ÿÿÿÿ[^_]ɸø´LèNèÿÿeô¸ÿÿÿÿ[^_]ɸ‚´Lè5èÿÿƒÈÿéÿÿÿ¶¼'U‰åSƒì‹ÄÑM…Ò„œ1Û‹„ÉM…Àtc‹‰$ÿR ‹„ÉM‹ƒìÇD$‰$ÿR0‹ÈÑMƒì…Àt‰$èoÇÈÑMƒì‹„ÉM‹‰$ÿRÇ„ÉMƒìƒÃƒûuŠ¡ÄÑMÇÐÑM‹‰$ÿRÇÄÑMƒì¡¼”M…Àu¡Œ”M‰$è_ƒìèñ_þÿ‹]üÉé]þÿ¡ÀÑMÇD$üÿÿÿ‰D$¡Œ”M‰$è‚^ƒì èÂ_þÿ‹]üÉéé\þÿU‰å]Ãt&¼'U‰å]ÃU‰åWVSƒì‹M‹A,‹Q‹Y¶@¯A‰Eð‹uðq ‹‰uè‹uðq9ЉuävJ…Ût>‹Mðƒë‰EàÁé‰Mìt&‹uà‰×‹Mì‹Eðüó¥¨tf¥¨t¤‹MèƒëMàUäƒûÿuÖƒÄ[^_]Ã…Ûtô‹Mèƒë‹uð¯Ëƒæ‰uì‹uäÈ‹Mä÷Þ‰uä‹uð¯ËƒîÊ‹Mè‰uà÷Ù‰Mè‹MðÁù‰MÜëƒ}ìtDƒ}ìt3…Ût¤EèƒëUäƒ}ð~‹}à‹uà‹MÜ<:40ýó¥üƒ}ìuȶHˆJ¶ˆ ëÆt&¶HˆJëå´&U‰å숉}ü‹}‰uø‹u‰]ô‹W…Ò…}1Ò»÷@un‹F…ÀuG1À÷@u=…Ût‹M »·If…Éf‰M°u[…Ò…l…À…Tƒû‹uøÀ‹]ô‹}ü‰ì]Ãf‰Uœ‰4$èµ/þÿ‹Uœ…ÀˆM¸ë¦v‰<$è˜/þÿ‰ÂÁúƒÂ‰Óé{ÿÿÿ‹M ·If…Éf‰M®t•·N‰M¤‹N¶I‰M ‹M · ¯M ‰M¨‹M ·I¯M¤M¨N‰M¸·M°‰M´‰M¼·M®‰MÀ‹M´¯M ‰M´‹M¤+M´‰MÄ·O‰M°‹O¶I‰M¨‹M· ¯M¨‰M´‹M·I¯M°‰M¤M´O‰MÈ‹M·I‰M´‰MÌ‹M·I‰MЋM´¯M¨‰M´‹M°+M´‰MÔ‹N0‹I‰M´‹I‰MØ‹N‰MÜ‹N0‹I‰Mà‹O‰MäM¸‰ $‰E˜‹M´‰Uœÿ‹E˜‹Uœé þÿÿt&‰4$èè.þÿéŸþÿÿv‰E˜‰<$èÕ.þÿ‹E˜éþÿÿ1À1Ûépþÿÿt&U‰åWVSƒìL‹E‹P,‹p‹¶R¯P‰Uä‹MäH ‹P‰MØ‹MäH‰ỦMÔ蔋UÌ…À„Ò…ö„À‹Eäƒî‰uà‹uäƒà‰EÜ‹Eä‹M܃À…öIEäÁé‰MÐÁø ʼnMä‰E´C@ƒ€ƒÀ‹M´‰×‰Þ…É~3‹E´1Ét&†oçƒÁƒÆƒÇ9Áuæ‹uä‹}ä‰E´43<:‹EÜ…Àt‹EЉEĉÁ‹EÜüó¥¨tf¥¨t¤‹}à…ÿt]ØUÔƒmàéwÿÿÿwƒÄL[^_]ÉUÌè/‹UÌ…À„©…ö„ìƒî‹Mä‹Eä‰uà‹uäƒáƒÀ…öIEä‰MÜÁé‰MÐÁø ʼnMä‰E´‹M´‰×‰Þ…É~/‹E´‰×‰Þ1Ét&oƒÁƒÆƒÇ9Áuí‹uä‹}ä‰E´43<:‹EÜ…Àt‹EЉEĉÁ‹EÜüó¥¨tf¥¨t¤‹uà…ötW]ØUÔƒmàë“…ö„4ÿÿÿ‹MäFÿ‰EÜÁé‰Màt&‹Mà‰×‰Þ‹Eäüó¥¨tf¥¨t¤ƒmÜ]ØUÔƒ}Üÿu؃ÄL[^_]ÃwƒÄL[^_]öU‰åWVSƒìL‹]‹öÄ@‰EÄ…X‹C0‹uÄ‹x‰ÁæÿþÿÿÇ@‰uä…ÿ‰3…‘‹}ăç‰}Ü‹}Ü…ÿ… ‹x‰Á1Ò÷Eä•Â÷Eä‰Öt‹S€z$ÿ„1ƒÎ‹x‰Á…ö…š…ÿ„’‹P9Ç yC„ë‹%!= „Ù‹A…À„U1ÀƒÄL[^_]Ãt&‹Uăâ‰UÜ„á‹0ö‰uØ„‹|M‰Uà¶r)÷Æti÷EÄt÷ÆtX÷Eät‰òÀê‰Öƒæ…ö„ÿÿÿf‹}à‹u؉\$‰<$‰t$ÿWD‹‰Eäƒà‰EÜ‹}Ü‹C0…ÿ„öþÿÿv‹|M‰Á‰Uà‹uà‹v<…ö„÷Eä„Z‹UàöB)…p‹€æ•¶҉֋S€z$ÿ…Ïþÿÿ‹J…É…ÄþÿÿéÂþÿÿv‹0ö‰uØ„Šþÿÿ‹|M‰Uà¶R)öˆUׄqþÿÿ÷EÄt ƒâ „_þÿÿ÷Eä„*ÿÿÿ¶U×Àê‰ÖƒæéÿÿÿÇA°wCƒÄL[^_]ËS€z†í¶R€ú„r €ú†‹@lj $èääþÿÇ$pµLèÈCþÿ¸ÿÿÿÿéRþÿÿÇD$‰$è¾Dÿÿ‹‰UÄéŽýÿÿt&‹Q…Òtƒþ„ƒþ„÷ƒþ…þÿÿ‹C‹x…ÿ„÷ýÿÿ‰$èèFÿÿ…À…‹K0ÇAиBéãýÿÿ‹‹x€æ•¶҉Öéýÿÿ‹=|M‰}àéhþÿÿ‹‰\$‰$‰D$ÿRD‹3‹C0‰uäé3ýÿÿ‹x‰t$‰$è$‹K0‰‹A‹…À…dýÿÿéÿÿÿ‹x‰t$‰$èKQ‹K0‰‹A‹ëØ‹x‰t$‰$èà·‹K0‰‹A‹ë½t&‹;‰Á‰}ä‹xéÉüÿÿÇvCé ýÿÿt&‹C‹@…À… ýÿÿ‰$èúEÿÿ…Àu‹K0ÇAà„Béùüÿÿ´&‹K0éßüÿÿU‰åWƒì¡ ÷KƒøÿtƒÄ_]ÜX‰Á5 PœX1ÈtÇEø‹}øÇ ÷K…ÿt%‰ß1À¢ƒø|1À@¢‰Uø‰ûöEøt Ç ÷KœX‰Á5 PœX1ÈtÇEø‹Mø…Ét"‰ß1À¢ƒø|1À@¢‰Uø‰ûöEú€tƒ  ÷KœX‰Á5 PœX1ÈtÇEø‹Uø…Òt)‰ß¸€¢=€| ¸€¢‰Uø‰ûöEú@tƒ  ÷KœX‰Á5 PœX1ÈtÇEø‹Eø…Àt*‰ß¸€¢=€| ¸€¢‰Uø‰û‹}ø…ÿyƒ  ÷KœX‰Á5 PœX1ÈtÇEø‹Mø…Ét)‰ß¸€¢=€| ¸€¢‰Uø‰ûöEû@tƒ  ÷K œX‰Á5 PœX1ÈtÇEø‹Uø…Òt"‰ß1À¢ƒø|1À@¢‰Uø‰ûöEûtƒ  ÷K@œX‰Á5 PœX1ÈtÇEø‹Eø…Àt%‰ß1À¢ƒø|1À@¢‰Uø‰ûöEût  ÷K€ÇEø‹Eø…Àt¡ ÷K€Ì£ ÷KƒÄ_]á ÷KƒÄ_]ÃU‰åèÈýÿÿ]ƒàÃvU‰åè¸ýÿÿ]¨•À¶Àô&¼'U‰åè˜ýÿÿ]¨•À¶Àô&¼'U‰åèxýÿÿ]¨•À¶Àô&¼'U‰åèXýÿÿ]¨ •À¶Àô&¼'U‰åè8ýÿÿ]¨@•À¶Àô&¼'U‰åèýÿÿ]¨€•À¶Àô&¼'U‰åèøüÿÿ]öÄ•À¶ÀÃU‰åƒì ‰$‹]‰t$‹M‰|$…Û~&…É~"‰Þ1Ò¯ñ‰ð÷ó‰Ã1À9Ët ‹$‹t$‹|$‰ì]Ã1À‹$‹t$‹|$‰ì]ËM‹} ‹Q‹A)Ð9ÆFƉ։ÁÁéüó¥¨tf¥¨t¤‹UB1Ò÷ó‹t$‹$‹|$‰ì]ö¼'U‰åƒì ‹E‰t$‹U‹u‰$‰Ã‰|$‹z¯Þ‹R 9Ês‰Ð)ø‰ÂÁú÷þ‰Ã¯Þ‰Ù‹u Áéüó¥öÃtf¥öÃt¤‹UZ‹$‹t$‹|$‰ì]ô&U‰åƒìÇ$µLè>þÿ¸ÿÿÿÿÉô&U‰åSƒì‹M‹U‹] ƒùtMƒùt=…Éu"‹J‹B9ËBÙ9ÃFÉBƒÄ)È[]Ãt&Ç$°µLè´=þÿƒÄ¸ÿÿÿÿ[]ËB‹JëÅZ‹J‹BëºvU‰åSƒì$‹]‹C‰D$ ‹E‰D$‹E‰D$‹E ‰$èž]…Àu ‹SöB u ƒÄ$[]Ãv‰EôÇ$è‘@þÿ‹EôƒÄ$[]ô&U‰åSƒì$‹]‹C‰D$ ‹E‰D$‹E‰D$‹E ‰$èæ]…Àu ‹SöB u ƒÄ$[]Ãv‰EôÇ$è1@þÿ‹EôƒÄ$[]ô&U‰åSƒì‹E‹]‰D$‹E ‰D$‹C‰$è•]…Àu‹C‰EƒÄ[]é‰]Ç$èÝ?þÿƒÄ¸ÿÿÿÿ[]ÃfU‰åSƒì$‹E‹] ‹U…À„Š‹Hƒùÿ„~ƒútMƒúÇ@$t[1À…Òu%‰D$ ÇD$‰\$‰ $èi_ƒìƒøÿtZ‹]üÉÃÇ$¶Lè<þÿ¸ÿÿÿÿ‹]üÉËP$…ÒuÇ@$¸ë°t&¸ë¤)ÓÇ@$ëâÇ$̵LèÒ;þÿ¸ÿÿÿÿ릉EôÇ$è ?þÿ‹Eôë’´&U1À‰åƒìH‰]ô‹]‰uø‹u‰}ü…Ût‹}‹S¯þ…ÿ~ƒúÿtz…öti‹C$…Àu~‹C…Àt+ÇD$ ÇD$ÇD$‰$è^ƒìƒøÿt‹SEä‰D$ ‹E ÇD$‰|$‰$‰D$èh^ƒì…ÀtS‹Eä1Ò÷ö‹]ô‹uø‹}ü‰ì]Ë]ô1À‹uø‹}ü‰ì]Ã÷؉$ÇD$ ÇD$‰D$è^‹SÇC$ƒìéRÿÿÿÇ$è>þÿ1Àë¤v¼'U‰åƒìh‰]ô‹]‰uø‰}ü…Û„‹U¯U‹K…ÒŽôƒùÿ„ë‹u…ö„à‹{$…ÿŽ9ú‰ø‹s N‰ÁÁé)þ‹} ‰EÔs‰MÄüó¥¨tf¥¨t¤)C$9Є¦E )‹Kúÿ¢EäÇD$‰D$ ÇD$‹C‰UЉ $‰D$è>]‹UЃì…À„¨‹Eä‹s‹} 9ÂOЉÑÁéüó¥öÂtf¥öÂt¤‹Eä‰C )ЉC$‹Eԉ‹]ôÁú‹uø÷}‹}ü‰E‹E‰ì]Ãt&ÇE‹E‹]ô‹uø‹}ü‰ì]ÃEä‰D$ ‹E ÇD$‰T$‰ $‰D$è£\ƒì…Àt‹EÔEäë˜ÇEÔéÿÿÿÇ$è€<þÿÇEëž´&U‰åƒì(Ç$(è¦X…ÀtÉÉEôÇ$èI<þÿ‹EôÉÃt&U‰åSƒì‹]èÁÿÿÿ…Àt'‰X‰X] Ç„CÇ@ЂCÇ@àƒCÇ@ à‰C‰XƒÄ[]ÃU‰åSƒì‹]èÿÿÿ…Àt'‰X‰X] Ç„CÇ@ЂCÇ@pƒCÇ@ à‰C‰XƒÄ[]ÃU‰åƒìèEÿÿÿ…Àt'‹UÇ0…CÇ@ЄCÇ@p„C‰P‹U Ç@ ŠC‰PÉô&U‰åƒìÉéÄWt&U‰åƒì‹E…Àt‰$èÛÿÿÿ1ÀÉô&U‰åSƒì‹]…Ût‹C…Àu‰$è³ÿÿÿƒÄ1À[]ËC‰$èPXëã´&¼'U‰åìø‰uø‹u‰]ô‹] ‰}ü…öt…Ût €>t€;uÇ$,¶L1ÿèˆ7þÿ‰ø‹]ô‹uø‹}ü‰ì]ÃèTþÿÿ…À‰ÇtæÇ@ÿÿÿÿÇ@Ç@ Ç@$ÇD$r‰$èúVÇD$w‰$ƒøÒƒÂƒøÀ÷Ѓàˆ•,ÿÿÿ‰…@ÿÿÿèÌVÇD$+‰$ƒøÀ÷Ѓà‰…Dÿÿÿè¬V¶•,ÿÿÿ…À•…8ÿÿÿub„Òu^Ç…<ÿÿÿÇD$a‰$è|V…À„8Ç…8ÿÿÿ»@‹…<ÿÿÿ ؉…<ÿÿÿu-‰<$1ÿècþÿÿ‰ø‹]ô‹uø‹}ü‰ì]Ãt&Ç…<ÿÿÿ€ë t&Ç$èüU…À‰G„r‰4$èVP¡¤÷Kƒøÿ„•…À…ӉЉ•,ÿÿÿ‰D$ ‰t$ÇD$‚¶LÇ$‡¶Lè„^ÿÿ‹•,ÿÿÿ‰…4ÿÿÿR‰$‰•,ÿÿÿèŒU‹•,ÿÿÿÇE䉅0ÿÿÿ‹…4ÿÿÿ…À„‡Eä‰D$‹…0ÿÿÿÇD$‰T$ÇD$ ÿÿÿÿ‰D$‹…4ÿÿÿÇD$Ç$‰D$è¤Xƒì …À„9‹Mä…É….Ç$€èÂX‰Â‹…Dÿÿÿƒì …@ÿÿÿ …8ÿÿÿ‰•,ÿÿÿÇD$‰D$1À…Û”À‰D$‹…<ÿÿÿÇD$€ÇD$ ‰D$‹…0ÿÿÿ‰$ènX‹•,ÿÿÿƒì‰Ã‰$èSX‹…0ÿÿÿƒì‰$èŽT‹…4ÿÿÿ‰$è€Tƒûÿ„‹…8ÿÿÿ‰_Ç€…CÇGP‡C‰GÇGP†CÇG `Cé#ýÿÿ…Pÿÿÿ‰•,ÿÿÿÇ…Pÿÿÿ”‰$è¹V‹•,ÿÿÿƒì…À„oƒ½`ÿÿÿ„bǤ÷K‰$‰•,ÿÿÿèìS‹•,ÿÿÿÇD$ ÿÿÿÿ‰t$ÇD$‰T$Ç$éý‰…4ÿÿÿ‰D$èÄVƒì…À„×Ç$€è]W‰Â‹…Dÿÿÿƒì …@ÿÿÿ …8ÿÿÿ‰•,ÿÿÿÇD$‰D$1À…Û”À‰D$‹…<ÿÿÿÇD$€ÇD$ ‰D$‹…4ÿÿÿ‰$èW‹•,ÿÿÿƒì‰Ã‰$èîV‹…4ÿÿÿƒì‰$è)Sé¤þÿÿ‹•Dÿÿÿ…Òu€½8ÿÿÿuÇ…8ÿÿÿ1Ûé³üÿÿÇ…8ÿÿÿ»@éŸüÿÿ‹…0ÿÿÿ‰$èÞR‹…4ÿÿÿ‰$èÐR‹G‰$èÅRÇGÇ$\¶Lè3þÿépüÿÿ‰4$‰•,ÿÿÿǤ÷Kè½R‹•,ÿÿÿƒÀé±üÿÿÇ$è+6þÿé9üÿÿ‹G‰$èkRÇG‰t$Ç$Œ¶Lè´2þÿéüÿÿë U‰åSƒì‹]…Ût8‹Cƒøÿt‰$èNUÇCÿÿÿÿƒì‹C…Àt‰$è RÇC‰$è*úÿÿ1À‹]üÉÃvU‰åƒì(‹EUöÇD$ ÇD$‰T$‰$ÿP·EöÉÃt&U‰åƒì(‹EUöÇD$ ÇD$‰T$‰$ÿP·EöɆÄÃfU‰åƒì(‹EUôÇD$ ÇD$‰T$‰$ÿP‹EôÉÃt&U‰åƒì(‹EUôÇD$ ÇD$‰T$‰$ÿP‹EôÉÈÃvU‰åƒì(‹EUð‰T$ÇD$ ÇD$‰$ÿP‹Eð‹UôÉÃfU‰åƒì(‹EUð‰T$ÇD$ ÇD$‰$ÿP‹Eð‹UôÉÈʒö¼'U‰åƒì(‹U ‹EÇD$ ÇD$f‰UôUô‰T$‰$ÿPÉÃU‰åƒì(‹U·E †Äf‰EôEôÇD$ ÇD$‰D$‰$ÿRÉô&¼'U‰åƒì‹EU ÇD$ ÇD$‰T$‰$ÿPÉô&U‰åƒì‹U‹E ȉE E ÇD$ ÇD$‰D$‰$ÿRÉÃU‰åƒì(‹U ‹EÇD$ ÇD$‰Uð‹U‰$‰UôUð‰T$ÿPÉö¿U‰åƒì(‹M‹U ‹EÊÈ’‰EôEð‰UðÇD$ ÇD$‰D$‰ $ÿQÉÃU‰åƒì8‰]ô‹]‰}ü‹=|M‰uøö…ÏÇ$ζLèEþÿ…Àt¡|M‹<9Ú„ŒÇ$ã¶LèðDþÿ‹|M‹²49Þt0‹E‰\$‰<$‰D$ ‹E ‰D$‹E‰D$èoÀ‹]ô‹uø‹}ü‰ì]Ãf‹W…ÒtÉ…Àt‰$èMO…À~¹‹W‹E‰t$‰<$‰D$ ‹E ‰D$‹E‰D$ÿÒ…Àuµë’f‹˜4‹C¶@<„_ÿÿÿ<EÚéUÿÿÿÇ$ ¶LèÔ.þÿ‹]ô1À‹uø‹}ü‰ì]Ãt&U‰åƒì‹E…Àt‹P‰D$¡|M‰$ÿÉÃÇ$ù¶Lè”.þÿ¸ÿÿÿÿÉö¼'U‰åƒì‹E…Àt‹P‰D$¡|M‰$ÿRÉÃë U‰åWVSƒì\‹E …À„ ‹U…Ò„•‹U¿¿p·x‹Z·@…É‹R‰EЉUĈK‰}̉]ÈÇE¸‹EÌ‹|MȉEÀ‹‚4‰U¼‰EÔ‹@9EÀl…öˆ‰‹]Ћ}ÄÇEÀ‹EÔ3‰U´‹P 9U´…ÿ~6‹EÈ…À~/1À…ÛƒÄ\[^_]ËE´)ЉEÔ¯EÄ+]Ô‰ÂÁú÷}Ð)Ç…ÿʃÄ\1À[^_]Ãf‹UÀ)‰Ð¯Ã‰UÀ‰ÂÁú÷ÿ)EÈ‹EÀ)EÌ…ö‰wÿÿÿ‹EÄ‹}Ä‹]ЯÆó1ö‰ÂÁú÷}Ð<8÷؉EÀé_ÿÿÿ¶·U¸·EÀf‰}æf‰uÚf‰Uà·UÈf‰Eâ·EÌf‰]Þf‰MØf‰Uä‹Uf‰EÜ‹BU؉T$ Uà‰T$‹U‰T$‹U¼‰$ÿPƒÄ\[^_]Ãt&‰È¯Ã ‰MÌ1ɉÂÁú÷ÿ÷؉UȉE¸éžþÿÿÇ$·Lè,þÿ¸ÿÿÿÿéåþÿÿ¶U‰åSƒì‹]…Ût$‹C…Àt‹|M‰\$‰$ÿP ‰]ƒÄ[]éîKƒÄ[]ÃU‰åWVSƒì‹E‹P‹H‹x(‹‰Uð‹p‰Mä‹MðH ‹P‹Eð‰Mè‹MðƒÀƒÁIÁÁø)Eè…ÿtc…ÒtWƒê‰Uì‹Uð…Ò~/1Ò1ÀëvÒ¨u¶ƒÃ‰ÑÀé¶É¶ ˆ ƒÀ;EðuÝuð‹Mì…Ét]èuäƒmìë·´&ƒÄ[^_]Ã…Òtôzÿ‰}ì‹}ð…ÿ~$1Ò1ÀëÒ¨u¶ƒÃ‰ÑÀéˆ ƒÀ9øuåþ‹Eì…Àt¼]èuäƒmìëÅU‰åWVSƒì‹M‹A‹Q ‹‹q‰Eð‹A‰Uè‹y(‹Q…À„€ƒè‹Mð‰Eì‹EèEð‰Eä‹EðƒÀƒÁIÁÁø)Eä‰ÐÁèЋUðƒàþ‰EèÒ‰Uà‹Eð…À~-1Ò1ÀëÒ¨u¶ƒÃ‰ÑÀé¶É· Of‰ FƒÀ;EðuÜuà‹Uì…Òt ]äuèƒmì빃Ä[^_]Ãv¼'U‰åWVSƒì ‹U‹B‹ ‹Z‹r‰Eì‹B‰Mð‹J ‰]è‹Z(‰uÜ…À„³ƒè‹Uì‰Eä‹EìMìƒÀƒÂIÂÁø)Á‹Eì‰Mà@‰EØv‹Mì…É~d1É‹Eè1ÒˆM×ëÐe×öÂu ‹Mð¶ ƒEðˆM×¶M׃ÂÀé‰Ïçÿ4½¶<»‰ùˆ¶|3‰ùˆH¶t3‰ñˆHƒÀ;Uìu®‹uØuè‹uä…öt‹Eà‹MÜEðMèƒmäéyÿÿÿƒÄ [^_]ÃU‰åWVSƒì‹M‹A‹Q ‹‹q‰Eð‹A‰Uè‹y(‹Q…À„Šƒè‹Mð‰Eì‹EèEð‰Eä‹EðƒÀƒÁIÁÁø)Eä…ÒBHЃâü‰Uè‹UðÁâ‰Uà´&‹Eð…À~.1Ò1ÀëvÒ¨u¶ƒÃ‰ÑÀé¶É‹ ‰ †ƒÀ;EðuÞuà‹Uì…Òt ]äuèƒmì븃Ä[^_]ÃU‰åWVSƒì‹E‹P‹x(‹H‹‰Uð‹P‹p‰Uà‹P$‹R ‰Uì‹UðP ‹Eð‰Uä‹UðƒÀƒÂIÂÁø)Eä…ÿt]…ÉtQƒé‰Mè‹Eð…À~11Ò1ÀëÒ¨u¶ƒÃ‰ÑÀé¶É;Mìt¶ ˆ ƒÀ;EðuØuð‹Uè…Òt ]äuàƒmè뵃Ä[^_]Ã…Étôƒé‰Mè‹Mð…É~-1Ò1ÀëÒ¨u¶ƒÃ‰ÑÀé¶ù;}ìtˆ ƒÀ;EðuÜuð‹}è…ÿt³]äuàƒmèë¹t&U‰åWVSƒì‹U‹J ‹B‹‹r‰Mà‹J‰Eð‹B‹z(‰Mä‹J$…À‹I ‰M섇ƒè‹Uð‰Eè‹EàEð‹Mð‰Eà‹EðƒÀƒÂIÂÉÁø)Eà‹Eä‰MÜÁèEäƒàþ‰Eä‹Mð…É~21Ò1ÀëÒ¨u¶ƒÃ‰ÑÀé¶É;Mìt· Of‰ FƒÀ;Eðu×uÜ‹Eè…Àt ]àuäƒmèë´ƒÄ[^_]ô&U‰åWVSƒì(‹E‹P‹‹H‹x‰Uì‹P‰]ð‹X …ɉ}à‰UÔ‹P$‹@(‹R ‰Eä‰Uè„­‹Eìƒé‹Uì‰MÜ‹Mì]ìƒÀƒÂIÂÁø)à I‰]؉Mд&‹Uì…Ò~]‹]à1Ò1À‰]ÌëÒ¨u ‹]ð¶ƒÃ‰]ð‰ÑÀé¶É;Mèt ‹}ä»41É‹}Ìüó¥öÃtf¥öÃt¤ƒẼÀ;Eìuµ‹}Ð}à‹MÜ…Ét‹EØ‹UÔEðUàƒmÜ냃Ä([^_]Ãt&¼'U‰åWVSƒì‹M‹A‹Q‹q$‹‰Eð‹A‰Uè‹Q ‹v ‹y(…À‰Uä‹Q‰u섈ƒè‹uè‰Eè‹EäEð‹Mð‰Eà‹EðƒÀƒÁIÁÁø)Eà…ÒBHЃâü‰Uä‹UðÁâ‰UÜ‹Eð…À~01Ò1ÀëÒ¨u¶ƒÃ‰ÑÀé¶É;Mìt‹ ‰ †ƒÀ;EðuÙuÜ‹Uè…Òt ]àuäƒmè붃Ä[^_]öU‰åWVSƒì\‹E‹P‹‹X‹p ‰U´‹P‰M¼‹H…Û‰U¨‹P$‰Mœ‹@,‹ ¶R$‹I‰UܶP‰M¬¶ÊˆUó‰M°„é‹U´ƒë‹M´u´‰]¤ƒÂƒÁIÑÁú‰u )U ‹U°¯U´‰U˜f‹M´…ÉŽ‹}¨ÆEãÇEìéòf€}ó„€}ó„€¶P 1Û1öˆU۶ʶP‰M¸¶H ‰UÔ¶P‰MжH ‰U̶P‰MȉUÄ1Ò‹Mè)ñ¯MÜÁÿÁéñ‰Mè‹Mä)Ù¯MÜÁÿÁé‹MÀ)ѯMÜÁÿÁéÑ€}ó‰Mä„É€}ó„€}óu3¶M̉ދ]è‹UäÓî¶MÐÓæ¶MÔÓë¶M¸Óã¶MÄ óÓê¶MÈÓâ Óf‰ƒEì‹U´}°9Uì„ÐeãöEìu ‹M¼¶ ƒE¼ˆMã¶Uã‹M¬Àê¶Ò‘¶ €}ó‰Mè¶J¶R‰Mä‰UÀ…Ïþÿÿ¶O¶WÁáÁâѶ¶H ‹p‹XˆM۶ɉM¸¶H!Ö!Ó‰MÔ¶MÛÓî¶MÔÓæ¶H ‰MжH‰M̶MÐ#PÓë¶MÌÓã¶H ‰MȶH‰MĶMÈÓê¶MÄÓâéþÿÿv¶MÌ‹uè‹UäÓë¶MÐÓã¶MÔÓî¶M¸Óæ¶MÄ óÓê¶MÈÓâ Ó‹U´‰ƒEì}°9Uì…úþÿÿ‹M˜M¨‹]¤…Û„˜‹U ‹MœU¼M¨ƒm¤éÇýÿÿ´&¶H ‹‹p‹XˆM۶ɉM¸¶H!Ö!Ó‰MÔ¶MÛÓî¶MÔÓæ¶H ‰MжH‰MÌé ÿÿÿ¶UÛ¶MèÀê¶Òˆ ¶P Àê¶Òˆ¶P ¶MäÀê¶Òˆ éFþÿÿ·é«þÿÿƒÄ\[^_]ö¿U‰åWVSƒì\‹E‹P‹‹X‹p ‰U¼‹P‰MÜ‹H…Û‰U¨‹P$‰Mœ‹@,‹ ‹I‰M¬¶J$‹R ‰Mä‰U°¶P¶ÊˆUî‰M´„‹U¼ƒë‹M¼u¼‰]¤ƒÂƒÁIÑÁú‰u )U ‹U´¯U¼‰U˜‹u¼…öŽ ‹u¨ÆEïÇEðéé€}î„t€}î„:¶P 1ÿ1ÛˆUã¶Ê¶P‰M¸¶H ‰UضP‰MÔ¶H ‰UжP‰M̉UÈ1Ò‹Mè)Ù¯MäÁÿÁùÙ‰Mè‹MÄ)ѯMäÁÿÁù‹UÀ)ú¯UäÂÿÁú€}î<:„€}î„€}îu.¶MЋUèÓû¶MÔÓã¶MØÓú¶M¸Óâ¶MÈ ÚÓÿ¶MÌÓç úf‰ƒEð‹U¼u´9Uð„ ÐeïöEðu ‹Mܶ ƒE܈Mï¶UïÀê¶Ò;U°tÈ‹M¬€}î‘¶ ‰Mè¶J¶R‰MĉUÀ…Ñþÿÿ¶V¶~‹XÁâÁçú¶><:¶P !û¶ÊˆUã¶P‰M¸¶Mã‰UØÓë‰Ñ¶P Óã¶H‰UÔ‹P‰MÐ!ú¶MÔ#xÓê¶MÐÓâ¶H ‰M̶H‰MȶMÌÓï¶MÈÓçé¡þÿÿt&¶MЉڋ]èÓú¶MÔÓâ¶MØÓû¶M¸Óã¶MÈ ÚÓÿ¶MÌÓç ú‰‹U¼ƒEðu´9Uð…öþÿÿ‹M˜M¨‹}¤…ÿ„º‹U ‹MœUÜM¨ƒm¤éÌýÿÿ¶Uã¶MèÀê¶Òˆ ¶P ‰ùÀê¶Òˆ¶P Àê¶Òˆ é‹þÿÿ¶¶H ·>‹XˆMã¶Ñ¶H‰U¸!û‰MضMãÓë¶MØéíþÿÿt&¶P ‹>‹X¶ÊˆUã¶P‰M¸¶Mã!û‰UØÓë‰Ñ¶P Óã¶H‰UÔ‹P‰MÐ!úéÀþÿÿƒÄ\[^_]Ãt&¼'U1À‰å‹US‹] ‹J€yt[]ËB01Ò‹‹@€xv¶Pƒût3~:ƒûtƒût&t1ÀëÏ1Àƒúº CMÂëÀ1ÀƒúºÀœCMÂ뱋•D·L먅ÛuÑ‹•0·Lë›U‰åWVSƒì‹M‹q‹Q ‹y‹Y…ö‹‰Uè‹Q‰}ä‹I(„ƒî‰uð‰ÞƒÆ{H÷ƒãÁþ‰]ì‹]ìÿ$X·L‰uà¶8ƒÀ¶<9‰ûˆƒÂ¶8ƒÀ¶<9‰ûˆƒÂ¶8ƒÀ¶<9‰ûˆƒÂ¶8ƒÀ¶<9‰ûˆƒÂ¶8ƒÀ¶<9‰ûˆƒÂ¶8ƒÀ¶<9‰ûˆƒÂƒmà‹}à…ÿ~_¶8ƒÀ¶<9‰ûˆƒÂ¶8ƒÀ¶<9‰ûˆƒÂéhÿÿÿv‰uàëâ‰uà럶‰uà냉uàéjÿÿÿv‰uàéNÿÿÿ‰uàë©v‰uàë…‹]ð…ÛtEèUäƒmðé ÿÿÿt&ƒÄ[^_]ô&U‰åWVSƒì‹M‹q‹Q ‹y‹Y…ö‹‰Uè‹Q‰}ä‹I(„ƒî‰uð‰ÞƒÆ{H÷ƒãÁþ‰]ì‹]ìÿ$x·L¶8‰óƒÀ·€û„B€û„1¶H ÇEìÇEðˆMã¶ù¶H‰}¸¶x ‰MضH‰}Ô¶x ‰MжH‰}Ì1ÿ‰MÈ‹Mä+Mð¯M˜ÁÿÁùMð‰Mä‹MÄ+Mì¯M˜ÁÿÁùMì‰Mð‹MÀ)ù¯M˜ÁÿÁùù€û‰Mì„g€û„€ûuI‹}ð¶MÐÓÿ¶MÔÓç¶M؉}ð‹}äÓÿ¶M¸Óç·Mð ù‹}ìf‰Mð¶MÈÓÿ¶MÌÓçf }ð·}ðf‰:t&U܃ƶ;M¼„‹}´€û ¶9‰}ä¶y¶I‰}ĉMÀ„ò€û„â€û„!¶H ÇEìÇEðˆMã¶ù¶H‰}¸¶x ‰MضH‰}Ô¶x ‰MжH‰}Ì1ÿ‰MÈ‹Mä+Mð¯M˜ÁÿÁùMð‰Mä‹MÄ+Mì¯M˜ÁÿÁùMì‰Mð‹MÀ)ù¯M˜ÁÿÁùù€û‰Mì„W€û„þ€ûuI‹}ð¶MÐÓÿ¶MÔÓç¶M؉}ð‹}äÓÿ¶M¸Óç·Mð ù‹}ìf‰Mð¶MÈÓÿ¶MÌÓçf }ð·}ðf‰:t&ƒm°ƒÆ‹M°U܅Ɏ˶>;}¼„‹M´€û<¹¶‰Mä¶O¶‰Mĉ}À„3 €û„# €û„- ¶H ÇEìÇEðˆMã¶ù¶H‰}¸¶x ‰MضH‰}Ô¶x ‰MжH‰}Ì1ÿ‰MÈ‹Mä+Mð¯M˜ÁÿÁùMð‰Mä‹MÄ+Mì¯M˜ÁÿÁùMì‰Mð‹MÀ)ù¯M˜ÁÿÁùù€û‰Mì„N €û„ €ûuJ‹}ð¶MÐÓÿ¶MÔÓç¶M؉}ð‹}äÓÿ¶M¸Óç·Mð ù‹}ìf‰Mð¶MÈÓÿ¶MÌÓçf }ð·}ðf‰:t&ƒÆUÜë‹M¬‰M°¶;M¼„‹}´€û ¶9‰}ä¶y¶I‰}ĉMÀ„ê€û„Ý€û„a¶H ÇEìÇEðˆMã¶ù¶H‰}¸¶x ‰MضH‰}Ô¶x ‰MжH‰}Ì1ÿ‰MÈ‹Mä+Mð¯M˜ÁÿÁùMð‰Mä‹MÄ+Mì¯M˜ÁÿÁùMì‰Mð‹MÀ)ù¯M˜ÁÿÁùù€û‰Mì„–€û„M€ûuE‹}ð¶MÐÓÿ¶MÔÓç¶M؉}ð‹}äÓÿ¶M¸Óç·Mð ù‹}ìf‰Mð¶MÈÓÿ¶MÌÓçf }ð·}ðf‰:ƒÆUÜégöÿÿ‹M¬‰M°éûÿÿt&‹M¬‰M°éÛùÿÿt&‹M¬‰M°é›øÿÿt&‹M¬‰M°é[÷ÿÿt&‹M¬‰M°éJýÿÿt&‹M¬‰M°éûûÿÿt&‹}¨…ÿ„\u Uœƒm¨éÖõÿÿ¶¶MãÀé¶ù¶Mäˆ :¶H Àé¶ù¶Mðˆ :¶H Àé¶ù¶Mìˆ :éÈüÿÿ·:¶H ˆMã¶É‰M¸¶H‰MØ‹H!ù‰Mð¶MãÓmð¶MØÓeð¶H ‰MÔ¶H‰MЋH!ù‰Mì¶MÔÓmì¶MÐÓeì¶H #x‰M̶H‰MȶMÌÓï¶MÈÓçé¬ûÿÿt&‹}ð¶MÐÓÿ¶MÔÓç¶M؉}ð‹}äÓÿ¶M¸Óç¶MÈ }ð‹}ìÓÿ¶MÌÓç }ð‹}ð‰:éüÿÿ‹:éDÿÿÿ¶z¶JÁçÁá<9¶ <9é(ÿÿÿ¶z¶JÁçÁá<9¶ <9¶H ˆMã¶É‰M¸¶H‰MØ‹H!ù‰Mð¶MãÓmð¶MØÓeð¶H ‰MÔ¶H‰MЋH!ù‰Mì¶MÔÓmì¶MÐÓeì¶H #x‰M̶H‰MȶMÌÓï¶MÈÓçéùÿÿ¶‹}ð¶MÐÓÿ¶MÔÓç¶M؉}ð‹}äÓÿ¶M¸Óç¶MÈ }ð‹}ìÓÿ¶MÌÓç }ð‹}ð‰:éðùÿÿ¶MãÀé¶ù¶Mäˆ :¶H Àé¶ù¶Mðˆ :¶H Àé¶ù¶Mìˆ :é¸ùÿÿ·:é ÿÿÿ‹:éÿÿÿ¶MãÀé¶ù¶Mäˆ :¶H Àé¶ù¶Mðˆ :¶H Àé¶ù¶Mìˆ :éAøÿÿ·:¶H ˆMã¶É‰M¸¶H‰MØ‹H!ù‰Mð¶MãÓmð¶MØÓeð¶H ‰MÔ¶H‰MЋH!ù‰Mì¶MÔÓmì¶MÐÓeì¶H #x‰M̶H‰MȶMÌÓï¶MÈÓçé$÷ÿÿ‹:댶z¶JÁçÁá<9¶ <9épÿÿÿ‹}ð¶MÐÓÿ¶MÔÓç¶M؉}ð‹}äÓÿ¶M¸Óç¶MÈ }ð‹}ìÓÿ¶MÌÓç }ð‹}ð‰:ém÷ÿÿ¶z¶JÁçÁá<9¶ <9¶H ˆMã¶É‰M¸¶H‰MØ‹H!ù‰Mð¶MãÓmð¶MØÓeð¶H ‰MÔ¶H‰MЋH!ù‰Mì¶MÔÓmì¶MÐÓeì¶H #x‰M̶H‰MȶMÌÓï¶MÈÓçé õÿÿ¶‹}ð¶MÐÓÿ¶MÔÓç¶M؉}ð‹}äÓÿ¶M¸Óç¶MÈ }ð‹}ìÓÿ¶MÌÓç }ð‹}ð‰:épõÿÿ¶MãÀé¶ù¶Mäˆ :¶H Àé¶ù¶Mðˆ :¶H Àé¶ù¶Mìˆ :é8õÿÿ·:é ÿÿÿ‹:éÿÿÿƒÄ\[^_]öMãÀé¶ù¶Mäˆ :¶H Àé¶ù¶Mðˆ :¶H Àé¶ù¶Mìˆ :é¸óÿÿ·:¶H ˆMã¶É‰M¸¶H‰MØ‹H!ù‰Mð¶MãÓmð¶MØÓeð¶H ‰MÔ¶H‰MЋH!ù‰Mì¶MÔÓmì¶MÐÓeì¶H #x‰M̶H‰MȶMÌÓï¶MÈÓçéœòÿÿt&‹}ð¶MÐÓÿ¶MÔÓç¶M؉}ð‹}äÓÿ¶M¸Óç¶MÈ }ð‹}ìÓÿ¶MÌÓç }ð‹}ð‰:éóÿÿ‹:éDÿÿÿ¶z¶JÁçÁá<9¶ <9é(ÿÿÿ¶z¶JÁçÁá<9¶ <9¶H ˆMã¶É‰M¸¶H‰MØ‹H!ù‰Mð¶MãÓmð¶MØÓeð¶H ‰MÔ¶H‰MЋH!ù‰Mì¶MÔÓmì¶MÐÓeì¶H #x‰M̶H‰MȶMÌÓï¶MÈÓçé}ðÿÿ¶‹}ð¶MÐÓÿ¶MÔÓç¶M؉}ð‹}äÓÿ¶M¸Óç¶MÈ }ð‹}ìÓÿ¶MÌÓç }ð‹}ð‰:éàðÿÿ¶MãÀé¶ù¶Mäˆ :¶H Àé¶ù¶Mðˆ :¶H Àé¶ù¶Mìˆ :é¨ðÿÿ·:é ÿÿÿ‹:éÿÿÿ‹}ð¶MÐÓÿ¶MÔÓç¶M؉}ð‹}äÓÿ¶M¸Óç¶MÈ }ð‹}ìÓÿ¶MÌÓç }ð‹}ð‰:é½øÿÿ¶MãÀé¶ù¶Mäˆ :¶H Àé¶ù¶Mðˆ :¶H Àé¶ù¶Mìˆ :é…øÿÿ·:¶H ˆMã¶É‰M¸¶H‰MØ‹H!ù‰Mð¶MãÓmð¶MØÓeð¶H ‰MÔ¶H‰MЋH!ù‰Mì¶MÔÓmì¶MÐÓeì¶H #x‰M̶H‰MȶMÌÓï¶MÈÓçél÷ÿÿ‹:댶z¶JÁçÁá<9¶ <9épÿÿÿ·:¶H ˆMã¶É‰M¸¶H‰MØ‹H!ù‰Mð¶MãÓmð¶MØÓeð¶H ‰MÔ¶H‰MЋH!ù‰Mì¶MÔÓmì¶MÐÓeì¶H #x‰M̶H‰MȶMÌÓï¶MÈÓçé õÿÿ‹}ð¶MÐÓÿ¶MÔÓç¶M؉}ð‹}äÓÿ¶M¸Óç¶MÈ }ð‹}ìÓÿ¶MÌÓç }ð‹}ð‰:é öÿÿ¶MãÀé¶ù¶Mäˆ :¶H Àé¶ù¶Mðˆ :¶H Àé¶ù¶Mìˆ :éÒõÿÿf‹:éÿÿÿ¶z¶JÁçÁá<9¶ <9éóþÿÿ¶¼'U1ɉå‹U‹E ‹R0‹‹R€zv¶Jƒøt2~<ƒøt ƒøt&t1À]Ã1Àºð²CƒùMÂ]Ã1Àº ½CƒùMÂ]ˬ¸L]Ãv…Àu΋˜¸L]ÃU‰åWVSƒì‹M‹A ‹Y‹y‹…ÀpIð‹AÁþ‰EØ‹A‹I(‰Eà…É„]…ÿ„ƒï‰ØƒÀ‰}è{Iø‹E؃ã‰}ìÁæÁ}ì‰]ä‰uÜ‹]äÿ$À¸L‹]ì‰]ð‹2ƒÂ‰ó‰÷ãàçàÁë æÀÁïÁî û 󶈃À‹2ƒÂ‰ó‰÷ãàçàÁë æÀÁïÁî û 󶈃À‹2ƒÂ‰ó‰÷ãàçàÁë æÀÁïÁî û 󶈃À‹2ƒÂ‰ó‰÷ãàçàÁë æÀÁïÁî û 󶈃À‹2ƒÂ‰ó‰÷ãàçàÁë æÀÁïÁî û 󶈃À‹2ƒÂ‰ó‰÷ãàçàÁë æÀÁïÁî û 󶈃Àƒmð‹uð…öŽÓ‹:ƒÂ‰û‰þãàæàÁë çÀÁîÁï ó û¶ˆƒÀ‹:ƒÂ‰û‰þãàæàÁë çÀÁîÁï ó û¶ˆƒÀédþÿÿ‹]ì‰]ðëÂt&‹]ì‰]ðéÿÿÿt&‹]ì‰]ðéÐþÿÿt&‹]ì‰]ðéþÿÿt&‹]ì‰]ðéNþÿÿt&‹]ì‰]ðéBÿÿÿt&‹]ì‰]ðéòþÿÿt&‹]è…ÛtIUÜEàƒmèéÒýÿÿ…ÿt6ƒï‰Ù‹E؃Á‰}ì{HσãÁùÁæ‰Mð‰]è‰uä‹Mèÿ$à¸L¶ƒÄ[^_]Ë}ð‹ ‰Î‰ËæàãàÁî áÀÁë óÁé ˈƒÀ‹ ‰Î‰ËæàãàÁî áÀÁë óÁé ˈƒÀ‹ ‰Î‰ËæàãàÁî áÀÁë óÁé ˈƒÀ‹ ‰Î‰ËæàãàÁî áÀÁë óÁé ˈƒÀ‹ ‰Î‰ËæàãàÁî áÀÁë óÁé ˈƒÀ‹ ƒï‰Î‰ËæàãàÁî áÀÁë óÁé ˈƒÀ…ÿŽ“‹ ‰Î‰ËæàãàÁî áÀÁë óÁé ˈƒÀ‹ ‰Î‰ËæàãàÁî áÀÁë óÁé ˈƒÀé þÿÿt&‹}ðé½þÿÿ‹}ðéßþÿÿ‹}ðéÿÿÿ‹}ðé#ÿÿÿ‹}ðéEÿÿÿ‹}ðérÿÿÿ‹}ðë—‹}ì…ÿ„PþÿÿUäEàƒmìé1þÿÿU‰åWVSƒì‹u‹~‹N‹‹^ …ÿ‹F‹v„ƒï‰}äy‰}ì‰ÏƒÇH}ìƒá‰MàKÁÿ…ÛHÙ‰ñ‰]ìÁéƒeìüñƒáþ‰}ð‰Mè‹Màÿ$¹Lt&‹Mð‹ƒÂ‰ß‰ÞçøæøÁïãøÁî þÁë Þf‰0ƒÀ‹ƒÂ‰ß‰ÞçøæøÁïãøÁî þÁë Þf‰0ƒÀ‹ƒÂ‰ß‰ÞçøæøÁïãøÁî þÁë Þf‰0ƒÀ‹ƒÂ‰ß‰ÞçøæøÁïãøÁî þÁë Þf‰0ƒÀ‹ƒÂ‰ß‰ÞçøæøÁïãøÁî þÁë Þf‰0ƒÀ‹ƒéƒÂ‰ß‰ÞçøæøÁïãøÁî þÁë Þf‰0ƒÀ…ÉŽ–‹ƒÂ‰ß‰ÞçøæøÁïãøÁî þÁë Þf‰0ƒÀ‹ƒÂ‰ß‰ÞçøæøÁïãøÁî þÁë Þf‰0ƒÀé€þÿÿ‹MðëÈ‹Mðé+ÿÿÿ‹Mðéõþÿÿ‹Mðé¿þÿÿ‹Mðé‰þÿÿ‹Mðérÿÿÿ‹Mðé1ÿÿÿ‹Mä…ÉtUìEèƒmäé$þÿÿfƒÄ[^_]ô&U‰åWVSƒì‹u‹~‹N‹‹^ …ÿ‹F‹v„ƒï‰}äy‰}ì‰ÏƒÇH}ìƒá‰MàKÁÿ…ÛHÙ‰ñ‰]ìÁéƒeìüñƒáþ‰}ð‰Mè‹Màÿ$ ¹Lt&‹Mð‹ƒÂ‰ß‰ÞçüæøÁïãøÁî þÁë Þf‰0ƒÀ‹ƒÂ‰ß‰ÞçüæøÁïãøÁî þÁë Þf‰0ƒÀ‹ƒÂ‰ß‰ÞçüæøÁïãøÁî þÁë Þf‰0ƒÀ‹ƒÂ‰ß‰ÞçüæøÁïãøÁî þÁë Þf‰0ƒÀ‹ƒÂ‰ß‰ÞçüæøÁïãøÁî þÁë Þf‰0ƒÀ‹ƒéƒÂ‰ß‰ÞçüæøÁïãøÁî þÁë Þf‰0ƒÀ…ÉŽ–‹ƒÂ‰ß‰ÞçüæøÁïãøÁî þÁë Þf‰0ƒÀ‹ƒÂ‰ß‰ÞçüæøÁïãøÁî þÁë Þf‰0ƒÀé€þÿÿ‹MðëÈ‹Mðé+ÿÿÿ‹Mðéõþÿÿ‹Mðé¿þÿÿ‹Mðé‰þÿÿ‹Mðérÿÿÿ‹Mðé1ÿÿÿ‹]ä…ÛtUìEèƒmäé$þÿÿfƒÄ[^_]ô&U‰åWVSƒì‹p‹x ‹X‹…ö‰}à‹x‹@„Kƒî‰uès‰uì‰ÞƒÆHuìƒã‰]äXÁþ…ÀHÃàü‰uð‰Eì‹Eäÿ$…@¹Lf‹Eð¶Y¶1ƒÁ‹\Úò‰ƒÇ¶Y¶1ƒÁ‹\Úò‰ƒÇ¶Y¶1ƒÁ‹\Úò‰ƒÇ¶Y¶1ƒÁ‹\Úò‰ƒÇ¶Y¶1ƒÁ‹\Úò‰ƒÇ¶Yƒè¶1ƒÁ‹\Úò‰ƒÇ…À~j¶Y¶1ƒÁ‹\Úò‰ƒÇ¶Y¶1ƒÁ‹\Úò‰ƒÇéDÿÿÿ‹Eðëß‹Eðë‘¶‹Eðémÿÿÿ‹EðéOÿÿÿ‹Eðé1ÿÿÿ‹Eðë¡v‹Eðéyÿÿÿ‹uè…ötMà}ìƒmèéæþÿÿfƒÄ[^_]ô&UºàÒL‰å‹E]éoþÿÿë UºàÊL‰å‹E]éOþÿÿë UºàÂL‰å‹E]é/þÿÿë UºàºL‰å‹E]éþÿÿë U‰åWVSƒì‹M‹y‹‹Q‹Y…ÿ‹q ‰Eð‹A‰UÜ‹I(„hƒï‹Uð‰}ä{‰}ì‰ßƒÇH}ìƒã‰]à^Áÿ…öHó‰uèƒeèü‰}ì‹]àÿ$`¹Lt&‹}ì‰}ð‹2ƒÂ‰ó‰÷ãàçàÁë æÀÁïÁî û 󶈃À‹2ƒÂ‰ó‰÷ãàçàÁë æÀÁïÁî û 󶈃À‹2ƒÂ‰ó‰÷ãàçàÁë æÀÁïÁî û 󶈃À‹2ƒÂ‰ó‰÷ãàçàÁë æÀÁïÁî û 󶈃À‹2ƒÂ‰ó‰÷ãàçàÁë æÀÁïÁî û 󶈃À‹2ƒÂ‰ó‰÷ãàçàÁë æÀÁïÁî û 󶈃Àƒmð‹]ð…ÛŽÕ‹:ƒÂ‰û‰þãàæàÁë çÀÁîÁï ó û¶ˆƒÀ‹:ƒÂ‰û‰þãàæàÁë çÀÁîÁï ó û¶ˆƒÀédþÿÿ‹]ì‰]ðë¶‹}ì‰}ðéÿÿÿt&‹]ì‰]ðéÎþÿÿt&‹}ì‰}ðéþÿÿt&‹]ì‰]ðéLþÿÿt&‹}ì‰}ðé@ÿÿÿt&‹]ì‰]ðéðþÿÿt&‹}ä…ÿtUèE܃mäéËýÿÿƒÄ[^_]ÃfU‰åWVSƒì,‹E‹X ‹p‹‹H‹x‰]Ô‹X‰uЋp(‹@$‰UÈ…ö¶PˆUë¶Ò‰Uä„/…ÿ„Yƒï‰ÊƒÂ‰}ØyIú‹Uȃá‰}ÜÁ}܉MÌ‹MÌÿ$€¹L‹MÜ€}ë‰Mà„x€}ë„€}넨1ÿ¶ >ˆ ƒÃUä€}ë„@€}ë„V€}ë„ì1ÿ¶ >ˆ ƒÃUä€}ë„ä€}ë„Z€}ë„ð1ÿ¶ >ˆ ƒÃUä€}너€}넞€}ë„41ÿ¶ >ˆ ƒÃUä€}ë„-€}ë„â€}ë„x1ÿ¶ >ˆ ƒÃUä€}ë„Ò€}ë„&€}넼1ÿ¶ >ˆ ƒÃƒmà‹MàUä…ÉŽ€}ë„• €}ë„R €}ë„Ñ1ÿ¶ >ˆ ƒÃUäë‹M܉Mà€}ë„€}ë„V€}ë„ì1ÿ¶ >ˆ ƒÃUä€}ë…ˆþÿÿ¶z¶JÁçÁá϶ é,‹M܉Màéoÿÿÿ‹MÜ€}ë‰Mà….ÿÿÿ¶z¶JÁçÁá ¶:<9‰}ðéç‹MÜ€}ë‰Mà…Óþÿÿ¶z¶JÁçÁá ¶:<9‰}ðéH‹MÜ€}ë‰Mà…xþÿÿ¶z¶JÁçÁá ¶:<9‰}ðé©‹MÜ€}ë‰Mà…þÿÿ¶z¶JÁçÁá ¶:<9‰}ðé ‹MÜ€}ë‰Mà…Àýÿÿ¶z¶JÁçÁá ¶:<9‰}ðé©‹}Ø…ÿ„‡UÔ]ЃmØé@ýÿÿ¶· ‰Mð‰Ï¶H #xÓï¶HÓç‹Mð#H‰Mì¶H Ómì¶HÓeìƒeìà‹Mð#HÁÿ }ì‰Mð¶H Ómð¶HÓeðÁ}ð‹MðÁá Ïéæýÿÿ‹:¶H #xÓï¶HÓç‹ #H‰Mì¶H Ómì¶HÓeìƒeìà‹ ë¦· ‰Mð‰Ï¶H #xÓï¶HÓç‹Mð#H‰Mì¶H Ómì¶HÓeìƒeìà‹Mð#HÁÿ }ì‰Mð¶H Ómð¶HÓeðÁ}ð‹MðÁá Ïé*ýÿÿ‹:¶H #xÓï¶HÓç‹ #H‰Mì¶H Ómì¶HÓeìƒeìà‹ ë¦· ‰Mð‰Ï¶H #xÓï¶HÓç‹Mð#H‰Mì¶H Ómì¶HÓeìƒeìà‹Mð#HÁÿ }ì‰Mð¶H Ómð¶HÓeðÁ}ð‹MðÁá Ïénüÿÿ‹:¶H #xÓï¶HÓç‹ #H‰Mì¶H Ómì¶HÓeìƒeìà‹ ë¦· ‰Mð‰Ï¶H #xÓï¶HÓç‹Mð#H‰Mì¶H Ómì¶HÓeìƒeìà‹Mð#HÁÿ }ì‰Mð¶H Ómð¶HÓeðÁ}ð‹MðÁá Ïé²ûÿÿ‹:¶H #xÓï¶HÓç‹ #H‰Mì¶H Ómì¶HÓeìƒeìà‹ ë¦…ÿt.ƒï‹Uȉ}ì‰ÏƒÇqHþƒá‰}ÜÁ}܉Mð‰]Ì‹Mðÿ$ ¹LƒÄ,[^_]ö· ‰Mð‰Ï¶H #xÓï¶HÓç‹Mð#H‰Mì¶H Ómì¶HÓeìƒeìà‹Mð#HÁÿ }ì‰Mð¶H Ómð¶HÓeðÁ}ð‹MðÁá Ïé¶úÿÿ‹:¶H #xÓï¶HÓç‹ #H‰Mì¶H Ómì¶HÓeìƒeìà‹ ë¦· ‹x‰Mð!϶H Óï¶HÓç‹Mð#H‰Mì¶H Ómì¶HÓeìƒeìà‹Mð#HÁÿ }ì‰Mð¶H Ómð¶HÓeðÁ}ð‹MðÁá Ïéúùÿÿ‹:¶H #xÓï¶HÓç‹ #H‰Mì¶H Ómì¶HÓeìƒeìà‹ ë¦· ‹x‰Mð!϶H Óï¶HÓç‹Mð#H‰Mì¶H Ómì¶HÓeìƒeìà‹Mð#HÁÿ }ì‰Mð¶H Ómð¶HÓeðÁ}ð‹MðÁá Ïé¶úÿÿ‹:¶H #xÓï¶HÓç‹ #H‰Mì¶H Ómì¶HÓeìƒeìà‹ ë¦¶z¶JÁçÁá϶ éXÿÿÿt&· ‹x‰Mð!϶H Óï¶HÓç‹Mð#H‰Mì¶H Ómì¶HÓeìƒeìà‹Mð#HÁÿ }ì‰Mð¶H Ómð¶HÓeðÁ}ð‹MðÁá ÏéÑùÿÿ‹MÜ€}ë‰Mà„€}넆€}ë„X1É‹üƒÆUä‰uÌ€}ë„'€}ë„€}ë„¥1É‹üƒÆUä‰uÌ€}ë„t€}ë„N€}ë„ð1É‹üƒÆUä‰uÌ€}ë„f€}ë„@€}ë„â1É‹üƒÆUä‰uÌ€}ë„­€}넎€}ë„+1É‹üƒÆUä‰uÌ€}ë„ú€}ë„Ô€}ë„v1É‹üƒÆƒmà‹}àUä‰uÌ…ÿŽ7€}ë„G€}ë„9€}ë„â1É‹üƒÆUä‰uÌ€}넯€}ë„€}ë„21É‹üƒÆUä€}ë‰uÌ…þÿÿ¶r¶J¶:ÁæÁá <9‹p¶H !þÓî¶H‰ó‹pÓã¶H !þÓî¶H#xÓæ¶H ÁþÁæÓï¶HÓç‰ÙÁïƒáà ù ñé6þÿÿ‹M܉Màé9þÿÿt&‹M܉MàéWþÿÿt&‹M܉Màéuþÿÿt&‹M܉Màé“þÿÿt&‹M܉Màé±þÿÿt&‹]܉]àéÞþÿÿt&‹M܉Màéüþÿÿt&‹]ì…Û„Wûÿÿ‹MÐUÔƒmìΉuÌé9ûÿÿ·:‹p¶H ¶X!þÓî‰]ضM؉ó‹pÓã¶H !þÓî¶H#xÓæ¶H ÁþÁæÓï¶HÓç‰ÙÁïƒáà ù ñé8þÿÿ‹:‹p¶H !þÓî¶H‰óë²´&¶z¶J¶2ÁçÁáÏ÷ëÏ·:‹p¶H ¶X!þÓî‰]ضM؉ó‹pÓã¶H !þÓî¶H#xÓæ¶H ÁþÁæÓï¶HÓç‰ÙÁïƒáà ù ñéƒýÿÿt&‹:‹p¶H !þÓî¶H‰óë­¶z¶J¶2ÁçÁáÏ÷ëÖt&·:‹p¶H ¶X!þÓî‰]ضM؉ó‹pÓã¶H !þÓî¶H#xÓæ¶H ÁþÁæÓï¶HÓç‰ÙÁïƒáà ù ñéÌüÿÿ‹:‹p¶H !þÓî¶H‰óë²´&¶z¶J¶2ÁçÁáÏ÷ëÏ‹:¶H #xÓï¶HÓç‹ #H‰Mì¶H Ómì¶HÓeìƒeìà‹ éŒûÿÿ´&¶z¶JÁçÁá϶ é8ûÿÿt&·:‹p¶H ¶X!þÓî‰]ضM؉ó‹pÓã¶H !þÓî¶H#xÓæ¶H ÁþÁæÓï¶HÓç‰ÙÁïƒáà ù ñé¾ûÿÿ‹:‹p¶H !þÓî¶H‰óë²´&¶z¶J¶2ÁçÁáÏ÷ëÏ·:‹p¶H ¶X!þÓî‰]ضM؉ó‹pÓã¶H !þÓî¶H#xÓæ¶H ÁþÁæÓï¶HÓç‰ÙÁïƒáà ù ñé ûÿÿt&‹:‹p¶H !þÓî¶H‰óë­¶z¶J¶2ÁçÁáÏ÷ëÖ·:‹p¶H ¶X!þÓî‰]؉ó¶MØéüÿÿt&‹:éÿûÿÿ·:‹p¶H ¶X!þÓî‰]ضM؉ó‹pÓã¶H !þÓî¶H#xÓæ¶H ÁþÁæÓï¶HÓç‰ÙÁïƒáà ù ñé|ûÿÿ‹:‹p¶H !þÓî¶H‰óë²¶r¶J¶:ÁæÁá <9ëÔ·:‹p¶H !þÓî¶H‰ó‹pÓã¶H !þ#xÓî¶HÓæ¶H ÁþÁæÓï¶HÓç‰ÙÁïƒáà ù ñéÓúÿÿ‹:ë²¶r¶J¶:ÁæÁá <9ë™¶¼'U‰åWVSƒì‹]‹C‹S ‹K‹{,‹s‰Eð‹‰Uè‹S‰Mä‹K$‹_…Ût>¶Y$¶O Óû¶O ‹}ðÓã…ÿt^‹Mð~ƒé‰Mð‰ñƒÁIùƒæÁÿ‰uì‹Mìÿ$À¹L‹}ð‹Y Y Y…ÿt'‹Mð~ƒé‰Mð‰ñƒÁIùƒæÁÿ‰uì‹Mìÿ$à¹LƒÄ[^_]Ë0‰ùƒÀ Þ‰2ƒÂ‹0ƒÀ Þ‰2ƒÂ‹0ƒÀ Þ‰2ƒÂ‹0ƒÀ Þ‰2ƒÂ‹0ƒÀ Þ‰2ƒÂ‹0ƒéƒÀ Þ‰2ƒÂ…ÉŽï‹0ƒÀ Þ‰2ƒÂ‹0ƒÀ Þ‰2‹0ƒÂƒÀ Þ‰2ƒÂë“t&‰ù늉ùë’‰ùëšt&‰ù랉ù릉ùë¹t&‰ù뽋0‰ùƒÀ!Þ‰2ƒÂ‹0ƒÀ!Þ‰2ƒÂ‹0ƒÀ!Þ‰2ƒÂ‹0ƒÀ!Þ‰2ƒÂ‹0ƒÀ!Þ‰2ƒÂ‹0ƒéƒÀ!Þ‰2ƒÂ…É~k‹0ƒÀ!Þ‰2ƒÂ‹0ƒÀ!Þ‰2‹0ƒÂƒÀ!Þ‰2ƒÂë—t&‰ù뎉ù뮉ùë¶t&‰ùëÁ‰ùëɉùë‚t&‰ù놋Mð…É„©þÿÿEèUäƒmðéYþÿÿf‹Mð…É„þÿÿEèUäƒmðétþÿÿ¶U‰åWVSƒì<‹UÇEÔ‹‹Z ‹z‹J‰Eð‹B‹r‰]ĉ}ì‰EÀ‹B$‹R,¶Xˆ]ë¶Zˆ]ê‹Z…Ût¶x$‰}Ô…ö„ö ƒî¶]ë‰ủ΃ÆyH÷ƒá‰MȶMêÁþ‰]à‹]ð‰uЉMä‹uÈÿ$µºL‹}Ѐ}ë‰}Ø„,€}ë„D €}ë„î ÇEðÇE¸ÇEÜ€}ê„X€}ê„y €}êuH¶J‹}Ü‹u¸Óï¶J Óç¶JÓî¶J Óæ¶J þ‹}ÔÓï¶J Óç¶J þ‹}ðÓï¶J Óç þ‹}ìf‰7‹MäMì]à€}ë„f€}ë„ü €}넬 ÇEðÇE¸ÇEÜ€}ê„”€}ê„3 €}êuH¶J‹}Ü‹u¸Óï¶J Óç¶JÓî¶J Óæ¶J þ‹}ÔÓï¶J Óç¶J þ‹}ðÓï¶J Óç‹Mì þf‰1‹MäMì]à€}ë„€}넾 €}ë„n ÇEðÇE¸ÇEÜ€}ê„@€}ê„õ €}êuH¶J‹}Ü‹u¸Óï¶J Óç¶JÓî¶J Óæ¶J þ‹}ÔÓï¶J Óç¶J þ‹}ðÓï¶J Óç‹Mì þf‰1‹MäMì]à€}넼€}ë„€ €}ë„0 ÇEðÇE¸ÇEÜ€}ê„ê€}ê„·€}êuH¶J‹}Ü‹u¸Óï¶J Óç¶JÓî¶J Óæ¶J þ‹}ÔÓï¶J Óç¶J þ‹}ðÓï¶J Óç‹Mì þf‰1‹MäMì]à€}ë„h€}ë„B€}ë„òÇEðÇE¸ÇEÜ€}ê„–€}ê„y€}êuH¶J‹}Ü‹u¸Óï¶J Óç¶JÓî¶J Óæ¶J þ‹}ÔÓï¶J Óç¶J þ‹}ðÓï¶J Óç‹Mì þf‰1‹MäMì]à€}넸€}ë„€}ë„´ÇEðÇE¸ÇEÜ€}ê„æ€}ê„>€}êuH¶J‹}Ü‹u¸Óï¶J Óç¶JÓî¶J Óæ¶J þ‹}ÔÓï¶J Óç¶J þ‹}ðÓï¶J Óç‹Mì þf‰1ƒmØ‹}Ø‹MäMì]à…ÿŽ»€}넯 €}ë„¡ €}ë„N ÇE¸ÇEðÇEÜ€}ê„è €}ê„’ €}êuX‹}ܶJ‹uðÓï¶J Óç¶JÓî¶J Óæ þ¶z f‰uÜ‹uÔ‰ùÓî¶J ‰÷Óç¶Jf }Ü‹}¸Óï¶J Óçf }Ü·MÜ‹}ìf‰‹uäuì]àë t&‹}Љ}Ø€}ë„Ô€}ë„ €}넳 ÇE¸ÇEðÇEÜ€}ê„M €}ê„ó€}êuX‹}ܶJ‹uðÓï¶J Óç¶JÓî¶J Óæ þ¶z f‰uÜ‹uÔ‰ùÓî¶J ‰÷Óç¶Jf }Ü‹}¸Óï¶J Óçf }Ü·MÜ‹}ìf‰‹uäuì]à€}ë…Ôúÿÿ¶s¶K¶;ÁæÁá 49‹x¶H !÷Óï¶HÓç‹H‰}Ü‹x!ñ‰M¸¶H !÷Óm¸¶HÓe¸¶H Óï¶HÓç€}ê‰}ð…¨úÿÿ¶J ‹}ìÀé¶É‰Î¶M܈ 7¶J ‹}ìÀé¶É‰Î¶M¸ˆ 7¶J ‹uìÀé¶ù¶Mðˆ >é»úÿÿ‹uЀ}ë‰uØ…˜üÿÿ¶s¶K¶;ÁæÁá 49‹H‹x!ñ‰MܶH !÷ÓmܶHÓeܶH Óï¶HÓç‹H‰}¸!ñ‰Mð¶H Ómð¶HÓeð€}ê…jüÿÿ¶J ‹}ìÀé¶É‰Î¶M܈ 7¶J ‹}ìÀé¶É‰Î¶M¸ˆ 7¶J ‹uìÀé¶ù¶Mðˆ >é}üÿÿ‹uЀ}ë‰uØ…Dûÿÿ¶s¶K¶;ÁæÁá 49‹H‹x!ñ‰MܶH !÷ÓmܶHÓeܶH Óï¶HÓç‹H‰}¸!ñ‰Mð¶H Ómð¶HÓeð€}ê…ûÿÿ¶J ‹}ìÀé¶É‰Î¶M܈ 7¶J ‹}ìÀé¶É‰Î¶M¸ˆ 7¶J ‹uìÀé¶ù¶Mðˆ >é)ûÿÿf‹uЀ}ë‰uØ…îùÿÿ¶s¶K¶;ÁæÁá 49‹H‹x!ñ‰MܶH !÷ÓmܶHÓeܶH Óï¶HÓç‹H‰}¸!ñ‰Mð¶H Ómð¶HÓeð€}ê…Àùÿÿ¶J ‹}ìÀé¶É‰Î¶M܈ 7¶J ‹}ìÀé¶É‰Î¶M¸ˆ 7¶J ‹uìÀé¶ù¶Mðˆ >éÓùÿÿ‹uЀ}ë‰uØ…šøÿÿ¶s¶K¶;ÁæÁá 49‹H‹x!ñ‰MܶH !÷ÓmܶHÓeܶH Óï¶HÓç‹H‰}¸!ñ‰Mð¶H Ómð¶HÓeð€}ê…løÿÿ¶J ‹}ìÀé¶É‰Î¶M܈ 7¶J ‹}ìÀé¶É‰Î¶M¸ˆ 7¶J ‹uìÀé¶ù¶Mðˆ >éøÿÿt&‹}Љ}Øéûÿÿt&‹uЀ}ë‰uØ…Húÿÿ¶s¶K¶;ÁæÁá 49‹H‹x!ñ‰MܶH !÷ÓmܶHÓeܶH Óï¶HÓç‹H‰}¸!ñ‰Mð¶H Ómð¶HÓeð€}ê…úÿÿ¶J ‹}ìÀé¶É‰Î¶M܈ 7¶J ‹}ìÀé¶É‰Î¶M¸ˆ 7¶J ‹uìÀé¶ù¶Mðˆ >é-úÿÿ‹uÌ…ö„/‹uÀ]ÄuìƒmÌéUöÿÿ¶J‹uÜ‹}¸Óî¶J Óæ¶JÓï¶J Óç¶J þ‹}ÔÓï¶J Óç¶J þ‹}ðÓï¶J Óç þ‹}ì‰7éÄùÿÿ·3‹x¶H !÷Óï¶HÓç‹H‰}Ü‹x!ñ‰M¸¶H !÷Óm¸¶HÓe¸¶H Óï¶HÓç‰}ðéùÿÿ‹3ë¹¶¶J‹uÜ‹}¸Óî¶J Óæ¶JÓï¶J Óç¶J þ‹}ÔÓï¶J Óç¶J þ‹}ðÓï¶J Óç þ‹}ì‰7鉸ÿÿt&·3‹x¶H !÷Óï¶HÓç‹H‰}Ü‹x!ñ‰M¸¶H !÷Óm¸¶HÓe¸¶H Óï¶HÓç‰}ðéÝ÷ÿÿ‹3ë¹¶¶J‹uÜ‹}¸Óî¶J Óæ¶JÓï¶J Óç¶J þ‹}ÔÓï¶J Óç¶J þ‹}ðÓï¶J Óç þ‹}ì‰7éK÷ÿÿt&·3‹x¶H !÷Óï¶HÓç‹H‰}Ü‹x!ñ‰M¸¶H !÷Óm¸¶HÓe¸¶H Óï¶HÓç‰}ðéŸöÿÿ‹3ë¹¶¶J‹uÜ‹}¸Óî¶J Óæ¶JÓï¶J Óç¶J þ‹}ÔÓï¶J Óç¶J þ‹}ðÓï¶J Óç þ‹}ì‰7é öÿÿt&·3‹x¶H !÷Óï¶HÓç‹H‰}Ü‹x!ñ‰M¸¶H !÷Óm¸¶HÓe¸¶H Óï¶HÓç‰}ðéaõÿÿ‹3ë¹¶¶J‹uÜ‹}¸Óî¶J Óæ¶JÓï¶J Óç¶J þ‹}ÔÓï¶J Óç¶J þ‹}ðÓï¶J Óç þ‹}ì‰7éÏôÿÿt&·3‹x¶H !÷Óï¶HÓç‹H‰}Ü‹x!ñ‰M¸¶H !÷Óm¸¶HÓe¸¶H Óï¶HÓç‰}ðé#ôÿÿ‹3ë¹¶ƒÄ<[^_]öJ‹uÜ‹}¸Óî¶J Óæ¶JÓï¶J Óç¶J þ‹}ÔÓï¶J Óç¶J þ‹}ðÓï¶J Óç þ‹}ì‰7é‰óÿÿ·3‹H‹x!ñ‰MܶH !÷ÓmܶHÓeܶH Óï¶HÓç‹H‰}¸!ñ‰Mð¶H Ómð¶HÓeðéßòÿÿt&‹3ë³¶{¶K‹pÁçÁá ¶;<9¶H !þÓî¶HÓæ‹H‰uÜ‹p!ù‰Mð¶H !þÓmð¶HÓeð¶H Óî¶HÓæ‰u¸éûöÿÿf¶J‹uÜ‹}ðÓî¶J Óæ¶JÓï¶J Óç¶J þ‹}ÔÓï¶J Óç¶J þ‹}¸Óï¶J Óç‹Mì þ‰1é÷ÿÿt&¶J ‹}ìÀé¶É‰Î¶M܈ 7¶J ‹}ìÀé¶É‰Î¶Mðˆ 7¶J ‹}ìÀé¶É‰Î¶M¸ˆ 7éÔöÿÿ·;‹H‹p!ù‰MܶH !þÓmܶHÓeܶH Óî¶HÓæ‹H‰uð!ù‰M¸¶H Óm¸¶HÓe¸éöÿÿ‹;ë¶¶J‹uÜ‹}ðÓî¶J Óæ¶JÓï¶J Óç¶J þ‹}ÔÓï¶J Óç¶J þ‹}¸Óï¶J Óç‹Mì þ‰1é€õÿÿ¶J ‹}ìÀé¶É‰Î¶M܈ 7¶J ‹}ìÀé¶É‰Î¶Mðˆ 7¶J ‹}ìÀé¶É‰Î¶M¸ˆ 7é9õÿÿ·;‹H‹p!ù‰MܶH !þÓmܶHÓeܶH Óî¶HÓæ‹H‰uð!ù‰M¸¶H Óm¸¶HÓe¸éôÿÿ‹;ë¶¶s¶K¶;ÁæÁá ‹p<9¶H !þÓî¶HÓæ‹H‰uÜ‹p!ù‰Mð¶H !þÓmð¶HÓeð¶H Óî¶HÓæ‰u¸é ôÿÿfU‰åWVSƒìH‹U‹B‹‹r ‹J‰EÈ‹B‰]Ô‹Z‰uąɉEЋB$‰]À‹R,¶X¶óˆ]ã¶Z‰uܶóˆ]â‰uØ„tƒé‰MÌ‹MܯuȯMȉu¼‰M¸t&‹uÈ…ö„1‹]È‹uЋMÔ‰]ä‰uì‰Mèé €}ㄤ€}ã„ñÇEð1ÿÇE¬ÇE°€}â„é€}â„€}âuE¶J‹u¬‹]°Óî¶J Óæ¶JÓë¶J Óã¶J ó‹uðÓï¶J Óç¶J ûÓî¶J Óæ‹Mì óf‰‹]Ø‹uÜ]ìuèƒmä„n€}ã…Vÿÿÿ‹Mè‹x¶Y¶IÁãÁá ‹]è¶3‹X41‹H!ó!÷!ñ‰M°¶H Óm°¶HÓe°¶H #pÓë¶HÓã¶H ‰]¬Óï¶HÓç¶H Óî¶H Óæ€}â‰uð…ÿÿÿ¶J ¶]°Àé¶ñ‹Mìˆ1¶J ¶]¬‹uìÀé¶Éˆ¶J ‰ûÀé¶Éˆé0ÿÿÿt&¶J‹u¬‹]°Óî¶J Óæ¶JÓë¶J Óã¶J Þ‹]ðÓï¶J Óç¶J þÓë¶J Óã‹Mì Þ‰1éãþÿÿ´&‹uè‹‹H‹p‹x!Ù‰M°¶H !ÞÓm°!ß¶HÓe°¶H #XÓî¶HÓæ¶H ‰u¬Óï¶HÓç¶H Óë¶H Óã‰]ðé&þÿÿ‹uè·릋M¼‹]¸MÐ]Ô‹}Ì…ÿt‹uÄ‹MÀuÔMЃmÌé¨ýÿÿƒÄH[^_]ÃU‰åWVSƒì4‹}‹‹W ‹O‹w‰Eð‹G‰UÄ‹_‰EÀ‹G$‹(‹P‰}ä÷Ò‰Uà¶P¶ú‰}Ü‹}äˆUë‹Uà#P …ÿ‰UØ„ª…ö„Ѓî‹Uð‰uȉ΃ÆyH÷ƒá‰uÌÁ}̉MЋ}Ðÿ$½ ºLt&‹MÌ€}ë‰MÔ„§€}ë„'€}ë„Ô1É1öÇEð1ÿ9MØt‹MðƒçàÁî þ‹}äÁéÁá ζ 7ˆ ƒÃUÜ€}ë„€}ë„<€}ë„z1É1öÇEð1ÿ9MØt‹MðƒçàÁî þ‹}äÁéÁá ζ 7ˆ ƒÃUÜ€}넌€}ë„r€}ë„1É1öÇEð1ÿ9MØt‹MðƒçàÁî þ‹}äÁéÁá ζ 7ˆ ƒÃUÜ€}ë„ €}ë„€}ë„81É1öÇEð1ÿ9MØt‹MðƒçàÁî þ‹}äÁéÁá ζ 7ˆ ƒÃUÜ€}ë„€}ë„®€}ë„V1É1öÇEð1ÿ9MØt‹MðƒçàÁî þ‹}äÁéÁá ζ 7ˆ ƒÃUÜ€}ë„F€}ë„Ì€}ë„r1É1öÇEð1ÿ9MØt‹MðƒçàÁî þ‹}äÁéÁá ζ 7ˆ ƒmԃËuÔUÜ…öŽ€}넉 €}ë„= €}ë„1É1ö1ÿÇEð9MØt‹MðÁîÁïÁçƒáà Î þ‹}ä¶ 7ˆ ƒÃUÜë‹M̉MÔ€}ë„€}ë„€}ë„h1É1öÇEð1ÿ9MØt‹MðƒçàÁî þ‹}äÁéÁá ζ 7ˆ ƒÃUÜ€}ë…Yýÿÿ¶r¶JÁæÁáζ ‰Mì‰Ïé'‹MÌ€}ë‰MÔ…qþÿÿ¶r¶J¶:ÁæÁá <9é‹MÌ€}ë‰MÔ…óýÿÿ¶r¶J¶:ÁæÁá <9é&‹MÌ€}ë‰MÔ…týÿÿ¶r¶J¶:ÁæÁá <9é‰t&‹MÌ€}ë‰MÔ…òüÿÿ¶r¶J¶:ÁæÁá <9¶H ‰}ì‹uì#x#pÓï¶HÓç‹Mì#H‰Mð¶H Ómð¶HÓeð¶H Óî¶HÓæ‹Mì#Màé¶üÿÿv‹M̉MÔé&þÿÿt&‹MÌ€}ë‰MÔ…ºýÿÿ¶r¶J¶:ÁæÁá <9ë*´&‹MÈ…É„…UÄ]ÀƒmÈéÇûÿÿ¶·:¶H ‰}ì‹uì#x#pÓï¶HÓç‹Mì#H‰Mð¶H Ómð¶HÓeð¶H Óî¶HÓæ‹Mì#MàéRýÿÿ´&‹:¶H #x‹2#pÓï¶HÓç‹ #H‰Mð¶H Ómð¶HÓeð¶H Óî¶HÓæ‹ #Màé ýÿÿ·:¶H ‰}ì‹uì#x#pÓï¶HÓç‹Mì#H‰Mð¶H Ómð¶HÓeð¶H Óî¶HÓæ‹Mì#Màénüÿÿt&‹:¶H #x‹2#pÓï¶HÓç‹ #H‰Mð¶H Ómð¶HÓeð¶H Óî¶HÓæ‹ #Màé'üÿÿ·:¶H ‰}ì‹uì#x#pÓï¶HÓç‹Mì#H‰Mð¶H Ómð¶HÓeð¶H Óî¶HÓæ‹Mì#MàéŒûÿÿt&‹:¶H #x‹2#pÓï¶HÓç‹ #H‰Mð¶H Ómð¶HÓeð¶H Óî¶HÓæ‹ #MàéEûÿÿ·:¶H ‰}ì‹uì#x#pÓï¶HÓç‹Mì#H‰Mð¶H Ómð¶HÓeð¶H Óî¶HÓæ‹Mì#Màéªúÿÿt&‹:¶H #x‹2#pÓï¶HÓç‹ #H‰Mð¶H Ómð¶HÓeð¶H Óî¶HÓæ‹ #Màécúÿÿ…öt*ƒî‰Ï‹UðƒÇ‰uÌqHþƒáÁÿ‰}Ô‰MÈ‹MÈÿ$@ºLƒÄ4[^_]Ë:¶H #x‹2#pÓï¶HÓç‹ #H‰Mð¶H Ómð¶HÓeð¶H Óî¶HÓæ‹ #Màé™ùÿÿ¶·:éüÿÿ·:‰}ì¶H #x‹uì#pÓï¶HÓç‹Mì#H‰Mð¶H Ómð¶HÓeð¶H Óî¶HÓæ‹Mì#Màéðøÿÿ‹:¶H #x‹2#pÓï¶HÓç‹ #H‰Mð¶H Ómð¶HÓeð¶H Óî¶HÓæ‹ #Mà鮸ÿÿ¶r¶JÁæÁáζ ‰Mì‰Ï¶H #x‹uì#pÓï¶HÓç‹Mì#H‰Mð¶H Ómð¶HÓeð¶H Óî¶HÓæ‹Mì#Màé¥úÿÿ·:‰}ìëµ´&‹:¶H #x‹2#pÓï¶HÓç‹ #H‰Mð¶H Ómð¶HÓeð¶H Óî¶HÓæ‹ #MàéTúÿÿ·:¶H ‰}ì#xÓï¶HÓç‰}ð¶H ‹}ì#x‹uì#pÓï¶HÓç¶H Óî¶HÓæ‹Mì#Màé³ùÿÿ´&‹}Ô€}ë‰}ð„€}ë„Ç€}넞1É1ÿÇEä1ö9MØtÁî‰ñ‹uäÁïÁáÁç ùÁî ñˆ U܃À}ë„2€}ë„æ€}ë„1É1ÿÇEä1ö9MØtÁî‰ñ‹uäÁïÁáÁç ùÁî ñˆ U܃À}ë„#€}ë„×€}ë„‚1É1ÿÇEä1ö9MØtÁî‰ñ‹uäÁïÁáÁç ùÁî ñˆ U܃À}ë„¢€}ë„V€}ë„þ1É1ÿÇEä1ö9MØtÁî‰ñ‹uäÁïÁáÁç ùÁî ñˆ U܃À}ë„’€}ë„F€}ë„î1É1ÿÇEä1ö9MØtÁî‰ñ‹uäÁïÁáÁç ùÁî ñˆ U܃À}ë„‚€}ë„6€}ë„Ü1É1ÿÇEä1ö9MØtÁî‰ñ‹uäÁïÁáÁç ùÁî ñˆ ƒmðƒÃ‹MðUÜ…ÉŽ{€}ë„l€}ë„"€}ë„Ï1É1ÿÇEä1ö9MØtÁî‰ñ‹uäÁáÁïÁîÁæ ñ ùˆ U܃À}ë„a€}ë„€}ë„À1É1ÿÇEä1ö9MØtÁî‰ñ‹uäÁïÁáÁç ùÁî ñˆ ƒÃUÜ€}ë…qýÿÿ¶r¶J¶:ÁæÁá ‹p<9¶H ‰}Ð!þÓî¶HÓæ¶H #xÓï¶HÓç‹MÐ#H‰Mä¶H Ómä¶HÓeä‹MÐ#Màé6ýÿÿt&‹}Ô‰}ðéKýÿÿt&‹}Ô‰}ðé‹ýÿÿt&‹}Ô‰}ðéËýÿÿt&‹}Ô‰}ðé þÿÿt&‹}Ô‰}ðéKþÿÿt&‹}Ô‰}ðéšþÿÿt&‹MÔ‰MðéÚþÿÿt&‹}Ì…ÿ„¥úÿÿUÄ]ÀƒmÌéŒúÿÿ¶· ‹p‰MЋ}Ð!ζH Óî¶HÓæ¶H #xÓï¶HÓç‹MÐ#H‰Mä¶H Ómä¶HÓeä‹MÐ#Màéæýÿÿt&‹2¶H #p‹:#xÓî¶HÓæ¶H Óï¶HÓç‹ #H‰Mä¶H Ómä¶HÓeä‹ #MàéŸýÿÿ¶r¶J¶:ÁæÁá ‹p<9¶H ‰}Ð!þÓî¶HÓæéXÿÿÿ· ‹p‰MЋ}Ð!ζH Óî¶HÓæ¶H #xÓï¶HÓç‹MÐ#H‰Mä¶H Ómä¶HÓeä‹MÐ#MàéÔüÿÿv‹2¶H #p‹:#xÓî¶HÓæ¶H Óï¶HÓç‹ #H‰Mä¶H Ómä¶HÓeä‹ #Màéüÿÿ¶r¶J¶:ÁæÁá ‹p<9¶H ‰}Ð!þÓî¶HÓæéZÿÿÿ· ‹p‰MЋ}Ð!ζH Óî¶HÓæ¶H #xÓï¶HÓç‹MÐ#H‰Mä¶H Ómä¶HÓeä‹MÐ#MàéÄûÿÿv‹2¶H #p‹:#xÓî¶HÓæ¶H Óï¶HÓç‹ #H‰Mä¶H Ómä¶HÓeä‹ #Màéûÿÿ¶r¶J¶:ÁæÁá ‹p<9¶H ‰}Ð!þÓî¶HÓæéZÿÿÿ‹ #H‹:#x‰Mð¶H Ómð¶HÓeð¶H ‹2#pÓï¶HÓç¶H Óî¶HÓæ‹ #Màé˜óÿÿ¶r¶JÁæÁáζ ‰Mì#H‰Mð¶H Ómð¶HÓeðé„ùÿÿ· ‹p‰MЋ}Ð!ζH Óî¶HÓæ¶H #xÓï¶HÓç‹MÐ#H‰Mä¶H Ómä¶HÓeä‹MÐ#Màé@úÿÿ‹2¶H #p‹:#xÓî¶HÓæ¶H Óï¶HÓç‹ #H‰Mä¶H Ómä¶HÓeä‹ #Màéþùÿÿ¶r¶J¶:ÁæÁá ‹p<9¶H ‰}Ð!þÓî¶HÓæé]ÿÿÿ· ‹p‰MЋ}Ð!ζH Óî¶HÓæ¶H #xÓï¶HÓç‹MÐ#H‰Mä¶H Ómä¶HÓeä‹MÐ#Màé3ùÿÿf‹2¶H #p‹:#xÓî¶HÓæ¶H Óï¶HÓç‹ #H‰Mä¶H Ómä¶HÓeä‹ #Màéïøÿÿ¶r¶J¶:ÁæÁá ‹p<9¶H ‰}Ð!þÓî¶HÓæé[ÿÿÿ· ‹p‰MЋ}Ð!ζH Óî¶HÓæééúÿÿ‹2¶H #p‹:#xÓî¶HÓæ¶H Óï¶HÓç‹ #H‰Mä¶H Ómä¶HÓeä‹ #Màéøÿÿ·:‹p¶H ‰}Ð!þÓî¶HÓæ¶H #xÓï¶HÓç‹MÐ#H‰Mä¶H Ómä¶HÓeä‹MÐ#Màéúÿÿ‹2¶H #p‹:#xÓî¶HÓæ¶H Óï¶HÓç‹ #H‰Mä¶H Ómä¶HÓeä‹ #MàéÃùÿÿv¶r¶JÁæÁáζ ‹p‰MЋ}Ð!ζH Óî¶HÓæéXÿÿÿ· ‹p‰MЋ}Ð!ζH #xÓî¶HÓæ¶H Óï¶HÓç‰}ä¶H ‹}Ð#xÓï¶HÓç‹MÐ#Màéõøÿÿ‹2¶H #p‹:#xÓî¶HÓæ¶H Óï¶HÓç¶H ‰}ä‹:#xÓï¶HÓç‹ #Màéµøÿÿ¶r¶JÁæÁáζ ‹p‰MÐ!ζH Óî¶HÓæ‹MÐ#H‰Mä¶H Ómä¶HÓeäé]ÿÿÿë U‰åWVSƒì‹E‹H ‹x‹p‹‰Mð‹H‰Mì‹H‹@$‰Mè‹H‹X ÷Ñ!Ë…ÿ„µƒï‰Ð‹Uì‰}à~‰}ä‰÷ƒÇH}äƒæ‰uÜ‹uðÁÿ‰}ìÁîuðƒæþ‰uä‹uèÁîuèƒæþ‰uè‹uÜÿ$µ`ºL´&·8‹uìf‰}ð·ÿ!Ï9ßt·}ðf‰:ƒÂƒÀ·8f‰}ð·ÿ!Ï9ßt·}ðf‰:ƒÂƒÀ·8f‰}ð·ÿ!Ï9ßt·}ðf‰:ƒÂƒÀ·8f‰}ð·ÿ!Ï9ßt·}ðf‰:ƒÂƒÀ·8f‰}ð·ÿ!Ï9ßt·}ðf‰:ƒÂƒÀ·8f‰}ð·ÿ!Ï9ßt·}ðf‰:ƒîƒÂƒÀ…öŽŒ·8f‰}ð·ÿ!Ï9ßt·}ðf‰:ƒÂƒÀ·8f‰}ð·ÿ!Ï9ßt·}ðf‰:ƒÀƒÂ·8f‰}ð·ÿ!Ï9ß… ÿÿÿé ÿÿÿ‹uìëÄ‹uì뢶‹uìélÿÿÿ‹uìéGÿÿÿ‹uìé"ÿÿÿ‹uìéýþÿÿ‹uìéØþÿÿ‹uà…ötEäUèƒmàé‘þÿÿfƒÄ[^_]ô&U‰åWVSƒì@‹UÇEÌ‹‹Z ‹J‹z‰Eì‹B‰]À‹r‰E¼‹B$‹R,‹X ‰]ð¶Xˆ]ë¶Zˆ]ê‹Z…Ût¶X$‰]Ì‹X÷Ó‰]ä#]ð…ÿ‰]à„Å ƒï‰ËƒÃ‰}ÈyIûƒá‹]ìÁÿ‰}ж}ê‰MĶMë‰}؉MÜ‹}Äÿ$½€ºL‹}Ѐ}ë‰}Ô„]€}ë„{ €}ë„} 1É1ÿ9Mà„‹H!ù‰Mð¶H Ómð¶HÓeð‹H!ù‰Mì¶H Ómì¶HÓeì‹H!ù‰M´¶H Óm´¶HÓe´€}ê„ €}ê„· €}êuf¶z‰}¸‹}ð¶M¸Óï¶J Óç¶J‰}ð‹}ìÓï¶J Óç·Mð ù¶z f‰Mð‰}ì‹}̶MìÓï¶J Óç¶Jf }ð‹}´Óï¶J Óçf }ð·Mðf‰uØ]Ü€}ë„*€}ë„à €}ë„Æ 1É1ÿ9Mà„É‹H!ù‰Mð¶H Ómð¶HÓeð‹H!ù‰Mì¶H Ómì¶HÓeì‹H!ù‰M´¶H Óm´¶HÓe´€}ê„ €}ê„4 €}êum¶z‰}¸‹}ð¶M¸Óï¶J Óç¶J‰}ð‹}ìÓï¶J Óç·Mð ù¶z f‰Mð‰}ì‹}̶MìÓï¶J Óç¶Jf }ð‹}´Óï¶J Óçf }ð·Mðf‰´&uØ]Ü€}ë„€}ë„6€}ë„1É1ÿ9Mà„‹H!ù‰Mð¶H Ómð¶HÓeð‹H!ù‰Mì¶H Ómì¶HÓeì‹H!ù‰M´¶H Óm´¶HÓe´€}ê„å€}ꄉ€}êuf¶z‰}¸‹}ð¶M¸Óï¶J Óç¶J‰}ð‹}ìÓï¶J Óç·Mð ù¶z f‰Mð‰}ì‹}̶MìÓï¶J Óç¶Jf }ð‹}´Óï¶J Óçf }ð·Mðf‰uØ]Ü€}ë„Ý€}ë„€}ë„é1É1ÿ9Mà„‹H!ù‰Mð¶H Ómð¶HÓeð‹H!ù‰Mì¶H Ómì¶HÓeì‹H!ù‰M´¶H Óm´¶HÓe´€}ê„B€}ê„æ€}êuf¶z‰}¸‹}ð¶M¸Óï¶J Óç¶J‰}ð‹}ìÓï¶J Óç·Mð ù¶z f‰Mð‰}ì‹}̶MìÓï¶J Óç¶Jf }ð‹}´Óï¶J Óçf }ð·Mðf‰uØ]Ü€}넺€}ë„ð€}ë„Ö1É1ÿ9Mà„É‹H!ù‰Mð¶H Ómð¶HÓeð‹H!ù‰Mì¶H Ómì¶HÓeì‹H!ù‰M´¶H Óm´¶HÓe´€}ꄟ€}ê„C€}êum¶z‰}¸‹}ð¶M¸Óï¶J Óç¶J‰}ð‹}ìÓï¶J Óç·Mð ù¶z f‰Mð‰}ì‹}̶MìÓï¶J Óç¶Jf }ð‹}´Óï¶J Óçf }ð·Mðf‰´&uØ]Ü€}ë„€}ë„Ö€}넼1É1ÿ9Mà„‹H!ù‰Mð¶H Ómð¶HÓeð‹H!ù‰Mì¶H Ómì¶HÓeì‹H!ù‰M´¶H Óm´¶HÓe´€}ê„€}ꄹ€}êuf¶z‰}¸‹}ð¶M¸Óï¶J Óç¶J‰}ð‹}ìÓï¶J Óç·Mð ù¶z f‰Mð‰}ì‹}̶MìÓï¶J Óç¶Jf }ð‹}´Óï¶J Óçf }ð·Mðf‰ƒmÔ‹MÔuØ]Ü…Éޏ€}ë„N€}ë„4€}ë„1É1ÿ9Màt`‹H!ù‰Mð¶H Ómð¶HÓeð‹H!ù‰Mì¶H Ómì¶HÓeì‹H!ù‰M´¶H Óm´¶HÓe´€}ê„W€}ê„û€}ê„AuØ]Üë‹}Љ}Ô€}ë„Z€}ë„€}ë„g1É1ÿ9Mà„È‹H!ù‰Mð¶H Ómð¶HÓeð‹H!ù‰Mì¶H Ómì¶HÓeì‹H!ù‰M´¶H Óm´¶HÓe´€}ê„~€}ê„"€}êul¶z‰}¸‹}ð¶M¸Óï¶J Óç¶J‰}ð‹}ìÓï¶J Óç·Mð ù¶z f‰Mð‰}ì‹}̶MìÓï¶J Óç¶Jf }ð‹}´Óï¶J Óçf }ð·Mðf‰¶uØ]Ü€}ë…£øÿÿ¶{¶KÁçÁá϶ Ï‹Mä!ùéœøÿÿ‹}Ѐ}ë‰}Ô…Füÿÿ¶{¶KÁçÁá϶ Ï‹Mä!ùé?üÿÿ‹}Ѐ}ë‰}Ô…#ûÿÿ¶{¶KÁçÁá϶ Ï‹Mä!ùéûÿÿ‹}Ѐ}ë‰}Ô…úÿÿ¶{¶KÁçÁá϶ Ï‹Mä!ùéùùÿÿ‹}Ѐ}ë‰}Ô…Öøÿÿ¶{¶KÁçÁá϶ Ï‹Mä!ùéÏøÿÿ‹MЉMÔé}ýÿÿt&‹}Ѐ}ë‰}Ô…püÿÿ¶{¶KÁçÁá϶ Ï‹Mä!ùéiüÿÿ‹}È…ÿ„õ]Àu¼ƒmÈéO÷ÿÿ¶·;‹Mä!ùé;üÿÿv‹;‹Mä!ùé,üÿÿt&·;‹Mä!ùé!ûÿÿv‹;‹Mä!ùéûÿÿt&·;‹Mä!ùéúÿÿv‹;‹Mä!ùéÿùÿÿt&‹}ð¶JÓï¶J Óç¶J‰}ð‹}ìÓï¶J Óç¶J }ð‹}ÌÓï¶J Óç¶J }ð‹}´Óï¶J Óç }ð‹Mð‰éaüÿÿ¶J Àé¶É‰Ï¶Mðˆ >¶J Àé¶É‰Ï¶Mìˆ >¶J Àé¶É‰Ï¶M´ˆ >é#üÿÿ‹}ð¶JÓï¶J Óç¶J‰}ð‹}ìÓï¶J Óç¶J }ð‹}ÌÓï¶J Óç¶J }ð‹}´Óï¶J Óç }ð‹Mð‰éÞúÿÿ¶J Àé¶É‰Ï¶Mðˆ >¶J Àé¶É‰Ï¶Mìˆ >¶J Àé¶É‰Ï¶M´ˆ >é úÿÿ·;‹Mä!ùéÛ÷ÿÿv‹;‹Mä!ùéÌ÷ÿÿt&‹}ð¶JÓï¶J Óç¶J‰}ð‹}ìÓï¶J Óç¶J }ð‹}ÌÓï¶J Óç¶J }ð‹}´Óï¶J Óç }ð‹Mð‰é4ùÿÿ¶J Àé¶É‰Ï¶Mðˆ >¶J Àé¶É‰Ï¶Mìˆ >¶J Àé¶É‰Ï¶M´ˆ >éöøÿÿ·;‹Mä!ùé1öÿÿv‹;‹Mä!ùé"öÿÿt&‹}ð¶JÓï¶J Óç¶J‰}ð‹}ìÓï¶J Óç¶J }ð‹}ÌÓï¶J Óç¶J }ð‹}´Óï¶J Óç }ð‹Mð‰é‘÷ÿÿ¶J Àé¶É‰Ï¶Mðˆ >¶J Àé¶É‰Ï¶Mìˆ >¶J Àé¶É‰Ï¶M´ˆ >éS÷ÿÿƒÄ@[^_]Ë;‹Mä!ùé‡ôÿÿ·;‹Mä!ùézôÿÿ‹}ð¶JÓï¶J Óç¶J‰}ð‹}ìÓï¶J Óç¶J }ð‹}ÌÓï¶J Óç¶J }ð‹}´Óï¶J Óç }ð‹Mð‰éíõÿÿ¶J Àé¶É‰Ï¶Mðˆ >¶J Àé¶É‰Ï¶Mìˆ >¶J Àé¶É‰Ï¶M´ˆ >é¯õÿÿ‹}ð¶JÓï¶J Óç¶J‰}ð‹}ìÓï¶J Óç¶J }ð‹}ÌÓï¶J Óç¶J }ð‹}´Óï¶J Óç }ð‹Mð‰écôÿÿ¶J Àé¶É‰Ï¶Mðˆ >¶J Àé¶É‰Ï¶Mìˆ >¶J Àé¶É‰Ï¶M´ˆ >é%ôÿÿ¶{¶KÁçÁá ¶;<9‹Mä!ùéùÿÿ·;‹Mä!ùéùÿÿ‹;‹Mä!ùéƒùÿÿt&‹}ð¶JÓï¶J Óç¶J‰}ð‹}ìÓï¶J Óç¶J }ð‹}ÌÓï¶J Óç¶J }ð‹}´Óï¶J Óç }ð‹Mð‰éþùÿÿ¶J Àé¶É‰Ï¶Mðˆ >¶J Àé¶É‰Ï¶Mìˆ >¶J Àé¶É‰Ï¶M´ˆ >éÀùÿÿ¶z‰}¸‹}ð¶M¸Óï¶J Óç¶J‰}ð‹}ìÓï¶J Óç·Mð ù¶z f‰Mð‰}ì‹}̶MìÓï¶J Óç¶Jf }ð‹}´Óï¶J Óçf }ð·Mðf‰éTøÿÿt&·;‹Mä!ùéÝ÷ÿÿv‹;‹Mä!ùéÎ÷ÿÿt&¶K¶{ÁáÁçù¶;<9‹Mä!ùéª÷ÿÿ‹}ð¶JÓï¶J Óç¶J‰}ð‹}ìÓï¶J Óç¶J }ð‹}ÌÓï¶J Óç¶J }ð‹}´Óï¶J Óç }ð‹Mð‰é½÷ÿÿ¶J Àé¶É‰Ï¶Mðˆ >¶J Àé¶É‰Ï¶Mìˆ >¶J Àé¶É‰Ï¶M´ˆ >é÷ÿÿU‰åWVSƒìD‹U‹‹Z ‹z‹r‰Eð‹B‰]¼‹J‰}ä‰E¸‹B$‹R,‹X÷Ó‰]ܶX‹}Ü#x …öˆ]ã¶Z‰}؈]â„O ƒî‰uĉ΃ÆyH÷ƒá‰MÀ¶Ë¶]ãÁþ‰uȉMÔ‰]Ћ]ð‹uÀÿ$µ ºLv‹uÈ€}ã‰uÌ„S€}ã„ €}ã„a 1ÉÇEèÇEìÇE°ÇE´9MØti€}â„ €}â„Ê €}âuO¶J‹}°‹u´Óï¶J Óç¶JÓî¶J Óæ¶J þ‹}ìÓï¶J Óç¶J þ‹}èÓï¶J Óç þ‹}äf‰7´&‹MÔMä]Ѐ}ã„]€}ㄳ €}ã„> 1ÉÇEèÇEìÇE°ÇE´9MØtf€}â„Ü €}â„‚ €}âuL¶J‹}°‹u´Óï¶J Óç¶JÓî¶J Óæ¶J þ‹}ìÓï¶J Óç¶J þ‹}èÓï¶J Óç þ‹}äf‰7t&‹MÔMä]Ѐ}ã„}€}ã„€}ã„1ÉÇEèÇEìÇE°ÇE´9MØtf€}â„ €}â„Æ€}âuL¶J‹}°‹u´Óï¶J Óç¶JÓî¶J Óæ¶J þ‹}ìÓï¶J Óç¶J þ‹}èÓï¶J Óç þ‹}äf‰7t&‹MÔMä]Ѐ}ã„€}ㄹ€}ã„I1ÉÇEèÇEìÇE°ÇE´9MØtf€}â„l€}â„€}âuL¶J‹}°‹u´Óï¶J Óç¶JÓî¶J Óæ¶J þ‹}ìÓï¶J Óç¶J þ‹}èÓï¶J Óç þ‹}äf‰7t&‹MÔMä]Ѐ}ㄽ€}ã„™€}ã„)1ÉÇEèÇEìÇE°ÇE´9MØtf€}ℽ€}â„g€}âuL¶J‹}°‹u´Óï¶J Óç¶JÓî¶J Óæ¶J þ‹}ìÓï¶J Óç¶J þ‹}èÓï¶J Óç þ‹}äf‰7t&‹MÔMä]Ѐ}ã„Ý€}ã„y€}ã„ 1ÉÇEèÇEìÇE°ÇE´9MØtf€}â„|€}â„"€}âuL¶J‹}°‹u´Óï¶J Óç¶JÓî¶J Óæ¶J þ‹}ìÓï¶J Óç¶J þ‹}èÓï¶J Óç þ‹}äf‰7t&ƒmÌ‹}Ì‹MÔMä]Ð…ÿŽH€}ã„e €}ã„W €}ã„ê 1É1ÿÇEìÇE´ÇEè9MØt€}â„Ô €}â„x €}â„C ‹uÔuä]Ðë v‹}ȉ}Ì€}ã„€}ã„{€}ã„l1ÉÇEèÇEìÇE°ÇE´9MØti€}℟€}â„E€}âuO¶J‹u°‹}´Óî¶J Óæ¶JÓï¶J Óç¶J ÷‹uìÓî¶J Óæ¶J ÷‹uèÓî¶J Óæ‹Mä ÷f‰9´&‹MÔMä]Ѐ}ã…­úÿÿ¶s¶K¶;ÁæÁá <9飋uÈ€}ã‰uÌ…Cýÿÿ¶s¶K¶;ÁæÁá <9égt&‹uÈ€}ã‰uÌ…cüÿÿ¶s¶K¶;ÁæÁá <9é§t&‹uÈ€}ã‰uÌ…ƒûÿÿ¶s¶K¶;ÁæÁá <9é t&‹uÈ€}ã‰uÌ…£úÿÿ¶s¶K¶;ÁæÁá <9éÜt&‹}ȉ}Ìéíýÿÿt&‹uÈ€}ã‰uÌ…#ýÿÿ¶s¶K¶;ÁæÁá <9ë*´&‹uÄ…ö„Š‹u¸]¼uäƒmÄéVùÿÿv·;‹H‹p!ù‰M´¶H !þÓm´¶HÓe´¶H Óî¶HÓæ‹H‰u°‹p!ù‰Mì¶H !þÓmì¶HÓeì¶H Óî¶H Óæ‹H‰uè÷Ñ#MÜ!ùé¯üÿÿ‹;ë™¶·;‹H‹p!ù‰M´¶H !þÓm´¶HÓe´¶H Óî¶HÓæ‹H‰u°‹p!ù‰Mì¶H !þÓmì¶HÓeì¶H Óî¶H Óæ‹H‰uè÷Ñ#MÜ!ùéûÿÿ‹;ë™¶·;‹H‹p!ù‰M´¶H !þÓm´¶HÓe´¶H Óî¶HÓæ‹H‰u°‹p!ù‰Mì¶H !þÓmì¶HÓeì¶H Óî¶H Óæ‹H‰uè÷Ñ#MÜ!ùéoúÿÿ‹;ë™¶¶J‹u°‹}´Óî¶J Óæ¶JÓï¶J Óç¶J þ‹}ìÓï¶J Óç¶J þ‹}èÓï¶J Óç þ‹}ä‰7éäûÿÿt&¶J ‹}äÀé¶É‰Î¶M´ˆ 7¶J ‹}äÀé¶É‰Î¶M°ˆ 7¶J ‹uäÀé¶ù¶Mìˆ >é›ûÿÿ¶J‹u°‹}´Óî¶J Óæ¶JÓï¶J Óç¶J þ‹}ìÓï¶J Óç¶J þ‹}èÓï¶J Óç þ‹}ä‰7éŸúÿÿ¶J ‹}äÀé¶É‰Î¶M´ˆ 7¶J ‹}äÀé¶É‰Î¶M°ˆ 7¶J ‹uäÀé¶ù¶Mìˆ >éZúÿÿ·;‹H‹p!ù‰M´¶H !þÓm´¶HÓe´¶H Óî¶HÓæ‹H‰u°‹p!ù‰Mì¶H !þÓmì¶HÓeì¶H Óî¶H Óæ‹H‰uè÷Ñ#MÜ!ùé)øÿÿt&‹;ë•¶J‹u°‹}´Óî¶J Óæ¶JÓï¶J Óç¶J þ‹}ìÓï¶J Óç¶J þ‹}èÓï¶J Óç þ‹}ä‰7éðøÿÿ¶J ‹}äÀé¶É‰Î¶M´ˆ 7¶J ‹}äÀé¶É‰Î¶M°ˆ 7¶J ‹uäÀé¶ù¶Mìˆ >髸ÿÿ·;‹H‹p!ù‰M´¶H !þÓm´¶HÓe´¶H Óî¶HÓæ‹H‰u°‹p!ù‰Mì¶H !þÓmì¶HÓeì¶H Óî¶H Óæ‹H‰uè÷Ñ#MÜ!ùézöÿÿt&‹;ë”¶J‹u°‹}´Óî¶J Óæ¶JÓï¶J Óç¶J þ‹}ìÓï¶J Óç¶J þ‹}èÓï¶J Óç þ‹}ä‰7é@÷ÿÿ¶J ‹}äÀé¶É‰Î¶M´ˆ 7¶J ‹}äÀé¶É‰Î¶M°ˆ 7¶J ‹uäÀé¶ù¶Mìˆ >éûöÿÿƒÄD[^_]Ãv‹;‹H‹p!ù‰M´¶H !þÓm´¶HÓe´¶H Óî¶HÓæ‹H‰u°‹p!ù‰Mì¶H !þÓmì¶HÓeì¶H Óî¶H Óæ‹H‰uè÷Ñ#MÜ!ùé½ôÿÿ·;똶¶J‹u°‹}´Óî¶J Óæ¶JÓï¶J Óç¶J þ‹}ìÓï¶J Óç¶J þ‹}èÓï¶J Óç þ‹}ä‰7é„õÿÿt&¶J ‹}äÀé¶É‰Î¶M´ˆ 7¶J ‹}äÀé¶É‰Î¶M°ˆ 7¶J ‹uäÀé¶ù¶Mìˆ >é;õÿÿ¶J‹u°‹}´Óî¶J Óæ¶JÓï¶J Óç¶J þ‹}ìÓï¶J Óç¶J þ‹}èÓï¶J Óç þ‹}ä‰7é?ôÿÿ¶J ‹}äÀé¶É‰Î¶M´ˆ 7¶J ‹}äÀé¶É‰Î¶M°ˆ 7¶J ‹uäÀé¶ù¶Mìˆ >éúóÿÿ¶s¶K¶;ÁæÁá <9‹H‹p!ù‰M´¶H !þÓm´¶HÓe´¶H Óî¶HÓæ‹H‰u°‹p!ù‰Mì¶H !þÓmì¶HÓeì¶H Óî¶H Óæ‹H‰uè÷Ñ#MÜ!ùé²÷ÿÿ·;똋;ë”´&¶J‹u°‹}´Óî¶J Óæ¶JÓï¶J Óç¶J þ‹}ìÓï¶J Óç¶J þ‹}èÓï¶J Óç þ‹}ä‰7éÄ÷ÿÿt&¶J ‹}äÀé¶É‰Î¶M´ˆ 7¶J ‹}äÀé¶É‰Î¶M°ˆ 7¶J ‹uäÀé¶ù¶Mìˆ >é{÷ÿÿ¶J‹u´Óî¶J Óæ¶J‰uð‹uèÓî¶J Óæ·Mð ñ¶rf‰Mè‰uð‹uì¶MðÓî¶J Óæ¶J f uèÓï¶J Óçf }è·Mè‹}äf‰éYöÿÿ´&·3‹H‹x!ñ‰Mè¶H !÷Ómè¶HÓeè¶H Óï¶HÓç‹H‰}´!ñ‰Mì¶H Ómì¶HÓeì‹x¶H !÷Óï¶H Óç‹H÷Ñ#MÜ!ñéÌõÿÿ‹3뜶s¶K‹xÁæÁáζ ζH !÷Óï¶HÓç‹H‰}è‹x!ñ‰M´¶H !÷Óm´¶HÓe´¶H Óï¶HÓç‰}ìë‡t&‹u´¶JÓî¶J Óæ¶J‰u´‹uèÓî¶J Óæ¶J u´‹uìÓî¶J Óæ¶J u´Óï¶J Óç }´‹M´‹}ä‰é@õÿÿ¶J ‹}äÀé¶É‰Î¶Mèˆ 7¶J ‹}äÀé¶É‰Î¶M´ˆ 7¶J ‹uäÀé¶ù¶Mìˆ >éûôÿÿ‰ö¼'U‰åƒì(‹E‰]ô‹] ‰uø‰}ü‹H0öËx‹Q‰Uä‹‹Rt‹]ô‹uø‹}ü‰ì]é„t&¶rÇE܉ð<†±ƒû„è‰ð<„X‹BÇEà…À…œ¶G‹4…¼ºL‹N …Étc^,‹9Gt…ÀuH‹F9Gt…Àu<‹F9Gt…Àu0‹F9Bt…Àu$‹F9Bt…Àu‹F9Bt…Àu ¶B9Á„‹K ‰ÞƒÃ,…Éu¡‹F ‹v$‹Mäþ`ïC‰A‰uÜt$‹EÜ‹]ô‹uø‹}ü‰ì]ÃɃáþƒÁ‰MàéPÿÿÿ€„÷ƒ}àºÐÿCEU܉UÜëÀ€„Ä€zÇEÜ Dt©‹OÇEÜpD…Ét›‹R…Òºð&DDU܉UÜëˆf‹Eà#F(9Eà…Tÿÿÿ‹F‰U؉EÜè3Iÿÿ‹UØ…À•À¶À#EÜ;F…/ÿÿÿé6ÿÿÿ´&€ÇEܰÞC…5ÿÿÿÿ…(ÿÿÿÿ…ÿÿÿÿ…ÿÿÿÇEÜÜCºàÐCƒyEU܉UÜéòþÿÿ‹YÇEÜpD…Û„*ÿÿÿéÛþÿÿ€z…ÿþÿÿ‹B9G…óþÿÿ‹J9O…çþÿÿ‹B9G…ÛþÿÿÇEÜ0íCé¡þÿÿU‰åWVSƒì(‹M ‹]‹U ‹u(‰ÈÁèȉÁÑù„†‹E$ƒé‰MÔ‹M$ÁèE$Ñø‰EØ‹E‰Eä‹E$‹}äG‰EÜ‹EE$‰EàqÀ‰EЋEØ…À„1À‹}¶4‹}‹ ³‹´³Á‰Mì¶ ‹}ì´‹‹Œ‹ Ɖuè‹uÁ¶4F‰uÌÎ}Ì‹<ºf <²‹uÌuèf <²‹uäf‰<†‹}¶|G‰}Ìω}ð‹}ì}Ì‹uð‹<ºf <²‹uÌuèf <²‹uäf‰|†‹}ඉ‹MܶLQƒÂ‰Mì‹}äÏ‹MðMì‰Mð‹ ¸‹}𠸋}ì}è ¸‹}à‰L>‰NƒÆ;UØ…Çþÿÿ‹UØ‹]ØUUÒ ÝUMÔUÜMЋuÌ…öt‹}$‹UÈ}}ÜUÔUЃmÌéqþÿÿƒÄ4[^_]Éö¼'U‰åWVSƒì4‹U ‹] ‹}‹u(‰ÐÁèЉÂÑú„‹‹M$ƒê‰Ủ}ÐN @O‰EÔ‹E$ÁèE$Ñø‰EØ‹EE$‰EÜ1@‰EÈf‹}Ø…ÿ„$‹UÔ‹EÐÇEð‰]Ät&‹}‹uð¶7‹}‹4Ÿ‹}Ɖuì‹uð¶47‰uè‹u‹¼ž‹]輞‹´ž ‹]ðlj}ä‹}ìÆ‰uà‹u¶^‹uà‰]ÀßÞ‹]Ä‹4³ 4»‹}À}ä 4»‰÷‰óÁïˆ\ÁXˆ‰ûˆ\ˆ\ˆXˆX‰óˆ\ˆ\ˆXˆX‹}‹uð‹]Ķtw‹}ì‰uÀ‹uàuÀ}À‹4³ 4»‹}À}ä 4»‰÷‰óÁïˆ\ Áîˆ\ˆX ˆX‰ûˆ\ ˆ\ˆX ˆX‰óˆ\ ˆ\ˆX ˆX‹}܃À ‹uð¶4w‰uÀ‹]Ä‹uàuÀ‹}ì}À‹4³ 4»‹}À}ä 4»‰÷‰óÁïˆ\ Áîˆ ˆZˆ‰ûˆ\ ˆ\ ˆZˆZ‰óˆ\ ˆ\ ˆZˆZ‹}Ü‹uð‹]Ķtw‹}ì‰uè‹uàuè}è‹4³ 4»‹}è}ä 4»‰÷‰óÁïˆ\ Áîˆ\ ˆZ ˆZ‰ûˆ\ ˆ\ ˆZ ˆZ‰óˆ\ ˆ\ ˆZ ˆZƒÂ ‹u؃Eð9uð…þÿÿ6‹]Ä0ÁâuuEUÐEÜUÔ‹EÌ…Àt‹}$‹EÈ}}ÜEÐEÔƒmÌé¯ýÿÿƒÄ4[^_]ô&U‰åWVSƒì8‹M ‹E ‹u(‰ÊÁêʉÓÑû„þ‹}$ƒë‹U‰]È ~‰UÐʉỦúÁêúÑú‰UÔ‹Uú‰UØIòÁâ4 ‰Uĉuà‰MÜf‹UÔ…Ò„„‹MÌ1Û‹UЋu¶<‹u‹4¾Æ‰uð‹u¶4‰uì‹u‹¼¾‰}è‹}싼¾}è‹uè‹}ìÆ‰uè‹u‹¼¾ ‹ulj}ä¶4^‰uÀ÷‹uðuÀ‰uì‹4¸‹}ì 4¸‹}À}è 4¸‹}܉4:‹}à‰4:‹}ä‰r‰2‹u¶t^‰uÀ÷‹uðuÀ‰uì‹4¸‹}ì 4¸‹}À}è 4¸‹}܉t:‹}à‰t:‹}ä‰r ‰r‹u؃¶4^‰uÀ÷‹uðuÀ‰uì‹4¸‹}ì 4¸‹}À}è 4¸‹}܉49‹}à‰49‹}ä‰q‰1‹uضt^ƒÃ‰uì÷‹uðuì‰uð‹4¸‹}ð 4¸‹}ì}è 4¸‹}܉t9‹}à‰t9‰q ‰qƒÁ;]Ô…¡þÿÿ‹UÔ‹MÔUUÒÁáUMÐUØMÌ‹MÈ…Ét‹M$‹uÄMMØuÐũmÈéOþÿÿƒÄ8[^_]ô&U‰åWVSƒì,‹u ‹M‹U ‹]$…ö„ ‰ØƒîÁèØÑø‰EÔ‹E‰uØ‹]Ô‹uÔ‰Eä‹E(ƒëÁæ‰]ÐÀ‰ẺuÜ‹EЋ]Ô‰Eð1À…Û„®‹}¶‹}‹4™‹œ™Æ‰uì¶4œ±‹¼± É]è‹]lj}ȶ4‹]ì÷óu苚f º‹}f ²‹uäf‰‹uì¶\‹}ÈÞß‹4²]èf 4ºf 4š‹]äf‰tƒÀƒmðƒ}ðÿ…cÿÿÿ‹uÜuuuó‰]ä‹uØ…öt‹}Ì}äƒmØé)ÿÿÿƒÄ,[^_]ÃU‰åWVSƒì4‹U ‹u‹] ‹}$…Ò‹E(„D‰ùƒêÁéùÑù‰MÐ@ƒé‰EÈ‹E‰MÌ‹MЉUØ‹UЉEÜIÁâÀ‰UÔ‰EÄ‹}Ð…ÿ„ë‹}Ì1É‹E܉MÀ‰}ì‹M‹UÀ¶<‹M‹¾‹¼¾Â‰Uð‹UÀ¶¼–‹”– lj}è‹}À‰Uä‹U¶ :‹}ä‹UðÏʉUà‹»‹}à »‹}è<9 »‰×ÁùÁêˆHˆP‹M‹UÀ¶|‹Uä‹Mðúù‹“}è ‹ »‰×ÁïˆP‰ùÁêˆHˆPƒÀƒmìƒEÀƒ}ìÿ…5ÿÿÿ‹}Ô‹EÄ}}}EÜ‹EØ…Àt‹UÈU܃mØéôþÿÿƒÄ4[^_]Ãt&U‰åWVSƒì0‹u ‹]‹U ‹M$…ö„‰ÈƒîÁèÈÑø‰EÔ‹E‰uÜ‹MÔ‹uÔ‹}Ô‰Eä‹E(ƒéÁæÁçÁà‰ẺMЉu؉}È´&‹MÐ1À‰Mð‹MÔ…É„±‹u‹}¶ ‹4‹‹Œ‹Æ‰uì¶4Œ³‹¼³ Á‰Mè‹Mlj}Ķ4‹Mì÷ñ‰Mà‹ º‹}àuè º‹} ²‹uä‰ F‹uì¶L‹}ÄÎÏMè‹<º <² <Š‹Mä‰|AƒÀƒmðƒ}ðÿ…cÿÿÿ‹}È‹uØuuuù‰Mä‹uÜ…öt‹EÌEäƒmÜé&ÿÿÿƒÄ0[^_]ô&¼'U‰åWVSƒì4‹E ‹u‹] ‹U$…À‹}(„:‹Mƒè‰EÔ‰øÁèø‰M؉ÑÁéÑøÑÐÑùÁà‰MÌ‹}̃é‰Eà‹ẺMÈÁçÁà‰}ЉEÄ‹}Ì…ÿ„Ø‹MÈ1Ò‰Mì‹MØ‹}¶‹<†‹„†Ç‰}ð‹}¶<„¾‰Eè‹„¾ ‰Eä‹E‹}䶉EÀÇ‹EðEÀ‰EÜ‹»‹}Ü »‹}À}è »‹}à‰9‹}ð‰‹E¶DƒÂ‰EÜ‹EäEÜ}܉}ð‹<ƒ‹Eð <ƒ‹EÜEè <ƒ‹Eà‰|‰yƒÁƒmìƒ}ìÿ…Eÿÿÿ‹MЋ}ÄMMM}Ø‹EÔ…Àt‹EàE؃mÔéÿÿÿƒÄ4[^_]ô&¼'U‰åWVSƒì0‹E ‹u ‹U$…À„ƒè‰Ñ‰EØ‹E(ÁéÑÑù‰MЃé‹]ÐP@‹E‰MÌ‹MЉEÜ[ÁáÁà‰MÔ‰EÈ‹MÐ…É„3‹}Ì1Û‹E܉]ĉ}ì‹]‹MĶ< ‹M‹¹‹MÉ]ð‹]Ķ‹M‹¼¹¼™‹Œ™ lj}è‹}Á‰Mä‹MĶ‹}ä‹MðßÙ‰Mà‹ ¾‹}à ¾‹}è<; ¾‰ÏÁïˆL‰ûˆ ˆHˆÁéˆ\ˆ\ˆXˆXˆLˆLˆHˆH‹MÄ‹]¶| ‹Mä‹]ðùû‹ Ž}è ž ¾‰ÏÁïˆL ‰ûˆLˆH ˆHÁéˆ\ ˆ\ˆX ˆXˆL ˆLˆH ˆHƒÀ ƒmìƒEă}ìÿ…îþÿÿ‹}Ô‹EÈ}}}EÜ‹]Ø…Ût U܃mØé¯þÿÿƒÄ0[^_]ÃU‰åWVSƒì8‹E ‹u‹] ‹U$…À„[‹Mƒè‰EЋE(‰MÔ‰ÑÁéPÑÑù<……‰MÈ‹Uȃé‰EÜ‹Eȉ}à‰MÄÁâÁà‰ẺUÀ‹}È…ÿ„ð‹MÄ‹EÔ‰Mì1Év‹}¶‹<–‹”–lj}ð‹}¶<”¾Â‰Uè‹”¾ ‰Uä‹U‹}ä¶ ‰U¼׋UðU¼‰UØ‹»‹}Ø »‹}¼}è »‹}܉8‹}à‰8‹}ð‰P‰‹U¶T ƒÁ‰UØ‹UäUØ}؉}ð‹<“‹Uð <“‹UØUè <“‹U܉|‹Uà‰|‰x ‰xƒÀƒmìƒ}ìÿ…0ÿÿÿ‹MÌ‹}ÀMMM}Ô‹EÐ…Àt‹EàEÔƒmÐéïþÿÿƒÄ8[^_]ÃU1À‰å]Éö¼'U‰å]Ãt&¼'U‰åVSƒì‹u ‹^…ÛtJ‹…Àt‰$è^ýÿ‹C…Àt‰$èA’‹C …Àt‰$è2’‹C…Àt‰$è#’‰$è’ÇFƒÄ[^]ö¼'U‰åWVSƒìl‹E‹u fƒ8‹~tZ‹…Û„åÇEÐÇEÜ‹=YVYU„ƒ‡”=YV12„R=YUY2„­Ç$àÜLèûqýÿ¸ÿÿÿÿƒÄl[^_]ÃfƒxuŸ·@·Ð;V|“‹M·If‰Mà·É;N|€‹]·[f9Øf‰]ä„4·EäÒ9Ð…^ÿÿÿ‹UÉ·B9È…MÿÿÿÇEÐé!=IYUV„¥=UYVY…lÿÿÿ‹F‹‰E؃À‰Eà‹E؃À‰EÔë‹F‹‰Eà‹MàƒÀ‰EÔƒÁ‰MØ‹K…É…:÷@….‹UÜ…Ò„÷‹‹H‹C¶@‰Eä·C‰ÂÁú÷}ä‰Eä‹EÐ…À„‰‹F‹Uä÷ØB‹U؉D$ ‹F‰D$‹F‰L$‹MÔ‰T$‰D$‹Eà‰L$ ‰D$‹G‰D$‹G ‰$ÿW‹K…Éu÷@t‰$èûVýÿ‹UÜ…Ò…“‹E‰$ÇD$‰D$è9ýÿƒÄl1À[^_]ËF‹Uä‰D$)‰T$ ‹F‹U؉L$‹MÔ‰D$‹Eà‰T$‰L$ ‰D$‹G‰D$‹G ‰$ÿWéxÿÿÿ‹C‹U¶@¿J‰Eä·C¯È‰MÄ¿ ¯MäMÄKéïþÿÿ‹_‹U‹M‰\$‰T$ ‰L$‹‰$èžwéIÿÿÿ‹F‹‹P‹@‰Mà‰UÔ‰EØé}þÿÿ‹F‹‹P‹@‰Mà‰UÔ‰EØédþÿÿ´&‹F‹‰Eà‹UàƒÀ‰Eԃ‰UØéAþÿÿt&‹E·]àf;X…»ýÿÿÇEЋ_ÇEÜé)ýÿÿ‹G‹@ÇD$‹P‰T$‹P‰T$‹P‰T$¶@‰D$ ‹F‰D$‹FÇ$‰D$èT[ýÿ‰Ã…Û‰¸ÿÿÿÿ…Åüÿÿéýÿÿ‰$èæTýÿ‰Â¸ÿÿÿÿ…Ò‰»ýÿÿéìüÿÿfU‰åWVSƒìl‹U‹]‹B¶@ƒè<‡³}YVYUtDw0}YV12t9}YUY2t0Ç$0ÝLè–nýÿÇEÀ‹EÀƒÄl[^_]Ã}IYUVt }UYVYuÐÇ$$èþ…À‰EÀ‰E¼„æ‹}À1À¹ ó«‹MÀ‹u‹E ‰Y‰1‰AÇA¨÷KÇ$0èÀ‹UÀ…À‰EĉB„_‹U ‹uÄ‹EljF¯Ã‰$è‹MĉA‰ÆÇ$è{‰Ã‹EĉX Ç$$èg‹MÄ…ö‰Â‰A€ ЉE´‰M°„…Û„…Ò¸€ÿÿÿ„Ù}âÝHÝL·Mâµ f‰Màt&‰EäÛEäÙÀØÊÙmàÛœƒÙmâÝPÝLØÉÙmàÛœƒÙmâÝXÝLØÉÙmàÛœƒ ÙmâÜ `ÝLÙmàÛœƒÙmâƒÀ=€u¢ÝØ‹u‹v‹N‹F‹^‰u¸‰MÔƒá‰EØ‹uØ1À‰]л‰MÌ‹MЃæ‰u܃á‰Mȶ‹MØ…É„Y‹MØ1öë ÑéƒÆ…Ét öÁuòÑé…Éuõ‹}܉Ù)ñ‰ÆÓþ1É…ÿu‹}Ø‹MÜë ÷Çu ƒÁÑïuñƒÁ Óæ‹MÔ‰´‚…É„ï‹MÔ1öë vÑéƒÆ…Ét öÁuòÑé…Éuõ‹}̉Ù)ñ‰ÆÓþ1É…ÿu‹}Ô‹MÌë v÷Çu ƒÁÑïuñƒÁ Óæ‹MЉ´‚…É„€‹MÐ1öë vÑéƒÆ…Ét öÁuòÑé…Éuõ‹}ȉÙ)ñ‰ÆÓþ1É…ÿu‹}ЋMÈë v÷Çu ƒÁÑïuñƒÁ Óæ‰´‚ƒÀ=…×þÿÿ‹]¸€{„c‚‹M´ºü‹]°‹u´Áü‰MÜ‹M°Ãü‰]̚Ɖ]È‹]܉EÜÁt&‹EÜ‹‰‹‰‚‹‰‚ ‹‰‚‹‰‚‹EÌ‹‰‚ ƒÂ;UÈuÆ}YVYU„†¦}IYUV„ä}UYVY„¢‹EÄ‹U¼ƒÀ‰B‹EăÀ$}YVYU‰Bt ‡s}YV12„ }YUY2…,üÿÿ‹]¼‹uÄ‹CÇC Àf‰F‹F‰F$é üÿÿ‰Æ¹ Áþé½þÿÿ‰Æ¹ ÁþéNþÿÿ‰Æ¹ Áþéßýÿÿ}YV12tB}YUY2…^ÿÿÿ‹U¸¶B<„d<„F<…?ÿÿÿ‹uÄÇF IDÇFMDé)ÿÿÿ‹U¸€z„´‹U¸¶B<„8<…ÿÿÿèé)ÿÿ…Àt}Ôÿu}Øÿu }Ðÿ„â‹uÄÇFÀ=D‹EÄÇ@PDDéÄþÿÿ‹M¼‹]Ä‹u¼‹A‹KÇF ‰Âf‰CfÑè·Ò‰K$f‰Cf‰C ‹^·À¯Ó¯Ã»Ñ‹UĉJ(‰ÂÁú÷û‹MĉA,éÓúÿÿ}IYUVtœ}UYVY…½úÿÿéŒþÿÿ‰Ñ‚‹±‰óÁã 󋱉™‰óÁã 󋱉™‰óÁã 󉙃Á9ÁuÀéVýÿÿ‹]ÄÇC°GDÇCàKDéëýÿÿ‹MÄÇA€FDÇApJDéÕýÿÿ‹MÄÇAP;DÇAADé¿ýÿÿÇ$èükýÿ‹MÀ‰ $è!<ÿÿÇEÀéúÿÿÇ$èÙkýÿ‹]¼‰$èþ;ÿÿÇEÀéãùÿÿÇ$è¶kýÿéÒùÿÿèL(ÿÿ…Àt}Ôàu}Øøuƒ}Ðt"‹]ÄÇC9D‹E‹uÄ‹@ÇF€?D‰E¸é þÿÿöE uØ‹MÄÇApÐDëÖÇ$ÝLèhýÿÇEÀéeùÿÿöE …þÿÿ‹]ÄÇCÀÎDéþÿÿU‰åWVSƒìP‹M‹A ‹y‹q‹‰E¼‹A‹Q…ÿ‰E¸‹A(‰EØ‹A$‹I,‰MȶHˆMã¶H$‰Mè„̓ï‰ñƒÁ‰}À~Hσæ‰u̶uãÁùƒ}̉MЉuĄӃ}Ì„ ‹}Ѓ}̉}Ô„º€}ã„­€}ã„ô€}ㄲÇEð1ÿÇE¤‹uȶ ‹6ÁáN¶1‰uì¶q¶I‰uä‹u¤+uì¯uè‰MÜ‹Mì+}ä¯}èÆÿÁîñ‹uð+uÜÇÿ¯uè‰Mì‹MÜÁï}äÆÿÁîçÿ ¶uìáÿƒ}Ø„'‹uìÁéÁïÁçæà ñ‹uØ ù¶ ˆ ƒÂ]Ä€}ãu@¶s¶K¶;ÁæÁá 49‹x¶H !÷Óï¶HÓç‰}¤éMt&‹}Ѐ}ã‰}ÔtÀ€}ã„[€}ã„ÇEð1ÿÇE¤‹uȶ ‹6ÁáN¶1‰uì¶q¶I‰uä‹u¤+uì¯uè‰MÜ‹Mì+}ä¯}èÆÿÁî ‹uð+uÜÇÿ¯uèÁï}äÆÿÁîu܉}ì¶ù‰}ð¶}ìæÿƒ}Ø„ïáàÁîÁï ÎÁç þ‹}ض 7ˆ ƒÂ]Ä€}ã„Ü€}ㄼ€}ã„sÇEð1ÿÇE¤‹MÈ‹ ‰M¬¶ ‹u¬ÁáN¶1‰uì¶q¶I‰uä‹u¤+uì¯uè‰MÜ‹Mì+}ä¯}èÆÿÁî ‹uð+uÜÇÿ¯uèÁï}äÆÿÁîu܉}ì¶ù‰}ð¶}ìæÿƒ}Ø„øáàÁîÁï ÎÁç þ‹}ض 7ˆ ]ă€}ã„}€}ã„¢€}ã„(ÇEð1ÿÇE¤‹uȶ ‹6ÁáN¶1‰uì¶q¶I‰uä‹u¤+uì¯uè‰MÜ‹Mì+}ä¯}èÆÿÁî ‹uð+uÜÇÿ¯uèÁï}äÆÿÁîu܉}ì¶ù‰}ð¶}ìæÿƒ}Ø„¹áàÁîÁï ÎÁç þ‹}ض 7ˆ ƒmԃ‹uÔ]Ä…öfüÿÿ‹MÀ…É„à]¼U¸ƒmÀƒ}Ì…-üÿÿ‹MЀ}ã‰MÔ…$þÿÿ¶s¶K¶;ÁæÁá 49‹H!ñ‰M¤¶H Óm¤¶HÓe¤ét&·3‹H!ñ‰M¤¶H Óm¤¶HÓe¤‹x¶H !÷Óï¶H#pÓç¶H Óî¶HÓæ‰uðé§þÿÿ¶s¶K¶;ÁæÁá 49‹x¶H !÷Óï¶HÓç‰}¤ë«f‹3ë·3‹x¶H !÷Óï¶HÓç‰}¤‹x¶H !÷Óï¶H#pÓç¶H Óî¶HÓæ‰uðé^ýÿÿ‹3ëÀ¶s¶K‹xÁæÁáζ ζH !÷Óï¶HÓç‰}¤‹x¶H !÷Óï¶H#pÓç¶H Óî¶HÓæ‰uðé&ûÿÿ‹3‹H!ñ‰M¤¶H Óm¤¶HÓe¤ë¾¶MðÁîÁïÁçƒáà ñ ùˆ éHþÿÿv·3‹H!ñ‰M¤¶H Óm¤¶HÓe¤‹x¶H !÷Óï¶H#pÓç¶H Óî¶HÓæ‰uðé¿ûÿÿ‹3뾃ÄP[^_]Ãv¶MðÁîÁïÁçƒáà ñ ùˆ é ýÿÿt&¶MðÁîÁïÁçƒáà ñ ùˆ éüÿÿt&·3é2ÿÿÿÁé‰Mð‰ñƒáà MðÁïÁç ùˆ éÛúÿÿt&¼'U‰åWVSƒì@‹M‹A ‹y‹q‹‰E¸‹A‹Q…ÿ‰E´‹A(‰EÔ‹A$‹I,‰MĶHˆMç„aƒï‰ñƒÁ‰}¼~Hσæ‰uȶuçÁùƒ}ȉM̉uÀ„؃}Ȅ܋}̃}ȉ}Єú€}ç„€}ç„3€}ç„I‹}Ķ ÇEì‹7ÁáN¶1¶y¶I‰uà1ö‰}Ü1ÿ‰MØ‹MàMìuÜ}؉uð¶ñ‰uìçÿ¶uðƒ}Ô„áàÁïÁî ÏÁæ ÷‹uÔ¶ >ˆ ƒÂ]À€}çu<¶{¶K¶3ÁçÁá϶H 47‰uè#pÓî¶H Óæ‰uðé5‹}Ì€}ç‰}ÐtÄ€}焵€}ç„û‹}Ķ ÇEì‹7ÁáN¶1¶y¶I‰uà1ö‰}Ü1ÿ‰MØ‹MàMìuÜ}؉uð¶ñ‰uìçÿ¶uðƒ}Ô„áàÁïÁî ÏÁæ ÷‹uÔ¶ >ˆ ƒÂ]À€}ç„`€}ç„€}ç„Ø‹}Ķ ÇEì‹7ÁáN¶1¶y¶I‰uà1ö‰}Ü1ÿ‰MØ‹MàMìuÜ}؉uð¶ñ‰uìçÿ¶uðƒ}Ô„OáàÁïÁî ÏÁæ ÷‹uÔ¶ >ˆ ]ÀƒÂ€}焤€}ç„Ê€}ç„æ‹}Ķ ÇEì‹7ÁáN¶1¶y¶I‰uà1ö‰}Ü1ÿ‰MØ‹MàMìuÜ}؉uð¶ñ‰uìçÿ¶uðƒ}Ô„[áàÁïÁî ÏÁæ ÷‹uÔ¶ >ˆ ƒmЃ‹uÐ]À…öaýÿÿ‹M¼…É„o]¸U´ƒm¼ƒ}È…(ýÿÿ‹}Ì€}ç‰}Ð… þÿÿ¶{¶K¶3ÁçÁá϶H 47‰uè#pÓî¶H Óæ‰uðév· ‰Mè#H‰Mð¶H Ómð¶H Óeð‹uĶ:‹Áç‹uè#py¶‰Mà¶H Óî¶HÓæ¶H +uà¯uðÆÿÁî‰uì¶w‰uÜ‹uè#p¶Óî¶H‰}Ø‹}èÓæ+uܯuðÆÿÁî¶H #xÓï¶HÓç+}د}ðÇÿÁïéþÿÿ¶{¶K¶3ÁçÁá϶H 47‰uè#pÓî¶H Óæ‰uðé@ÿÿÿ‹;¶H #x‹uÄÓï¶H Ó狉}ð¶:‹3#pÁçy¶‰Mà¶H Óî¶HÓæ¶H +uà¯uðÆÿÁî‰uì¶w¶‰uÜ‹3#p‰}Ø‹;Óî¶HÓæ+uܯuðÆÿÁîé*ÿÿÿ· ‰Mè#H‰Mð¶H Ómð¶H Óeð‹uĶ:‹Áç‹uè#py¶‰Mà¶H Óî¶HÓæ¶H +uà¯uðÆÿÁî‰uì¶w‰uÜ‹uè#p¶Óî¶H‰}Ø‹}èÓæ+uܯuðÆÿÁî¶H #xÓï¶HÓç+}د}ðÇÿÁïé«üÿÿv‹;¶H #x‹uÄÓï¶H Ó狉}ð¶:‹3#pÁçy¶‰Mà¶H Óî¶HÓæ¶H +uà¯uðÆÿÁî‰uì¶w¶‰uÜ‹3#p‰}Ø‹;Óî¶HÓæ+uܯuðÆÿÁîéWÿÿÿ¶s¶K¶;ÁæÁá <9¶H ‰}è#xÓï¶H Óç‰}ð‹uĶ:‹Áç‹uè#py¶‰Mà¶H Óî¶HÓæ¶H +uà¯uðÆÿÁî‰uì¶w‰uÜ‹uè#p¶Óî¶H‰}Ø‹}èÓæ+uܯuðÆÿÁî¶H #xÓï¶HÓç+}د}ðÇÿÁïéúÿÿf‹;¶H #x‹uÄÓï¶H Ó狉}ð¶:‹3#pÁçy¶‰Mà¶H Óî¶HÓæ¶H +uà¯uðÆÿÁî‰uì¶w¶‰uÜ‹3#p‰}Ø‹;Óî¶HÓæ+uܯuðÆÿÁîéXÿÿÿ¶MìÁïÁîÁæƒáà ù ñˆ é¦ûÿÿv· ‰Mè#H‰Mð¶H Ómð¶H Óeð‹uĶ:‹Áç‹uè#py¶‰Mà¶H Óî¶HÓæ¶H +uà¯uðÆÿÁî‰uì¶w‰uÜ‹uè#p¶Óî¶H‰}Ø‹}èÓæ+uܯuðÆÿÁî¶H #xÓï¶HÓç+}د}ðÇÿÁïéˆùÿÿ¶‹;¶H #x‹uÄÓï¶H Ó狉}ð¶:‹3#pÁçy¶‰Mà¶H Óî¶HÓæ¶H +uà¯uðÆÿÁî‰uì¶w¶‰uÜ‹3#p‰}Ø‹;Óî¶HÓæ+uܯuðÆÿÁîéTÿÿÿƒÄ@[^_]ö¶MìÁïÁîÁæƒáà ù ñˆ é²ùÿÿt&¶MìÁïÁîÁæƒáà ù ñˆ éüøÿÿt&· ‰Mè#H‰Mð¶H Ómð¶H Óeðé/ýÿÿ¶MìÁïÁîÁæƒáà ù ñˆ éî÷ÿÿt&U‰åWVSƒìD‹M‹A ‹y‹q‹‰E¸‹A‹Q…ÿ‰E´‹A(‰EØ‹A$‹I,‰M̶HˆMë‹H ‰MÔ¶H$‰Mä„ ƒï‰ñƒÁ‰}À~Hσæ‰u¼¶uëÁù‰MĉuЋM¼ÿ$hÝLt&‹MÄ€}ë‰MÈ„€}ë„ €}ë„@ ÇEì1ÿ1öÇEð;uÔ„‹MÌ‹1¶ ÁáN¶1‰u°¶q¶I+}°¯}ä‰uà‹uð‰MÜ‹M°+uàÇÿÁï ‹}ì¯uä+}ܯ}äÆÿÁîÇÿuàÁï}܉uà¶ñ‰uð¶uàçÿƒ}Ø„€ áàÁïÁî ÏÁæ ÷‹uض >ˆ ƒÂ]Ѐ}ë„ô€}넚€}ë„ÔÇEì1ÿ1öÇEð;uÔ„‹MÌ‹1¶ ÁáN¶1‰u°¶q¶I+}°¯}ä‰uà‹uð‰MÜ‹M°+uàÇÿÁï ‹}ì¯uä+}ܯ}äÆÿÁîÇÿuàÁï}܉uà¶ñ‰uð¶uàçÿƒ}Ø„„ áàÁïÁî ÏÁæ ÷‹uض >ˆ ƒÂ]Ѐ}ë„è€}ë„n€}넨ÇEì1ÿ1öÇEð;uÔ„‹MÌ‹1¶ ÁáN¶1‰u°¶q¶I+}°¯}ä‰uà‹uð‰MÜ‹M°+uàÇÿÁï ‹}ì¯uä+}ܯ}äÆÿÁîÇÿuàÁï}܉uà¶ñ‰uð¶uàçÿƒ}Ø„áàÁïÁî ÏÁæ ÷‹uض >ˆ ƒÂ]Ѐ}ë„Ü€}ë„B€}ë„|ÇEì1ÿ1öÇEð;uÔ„‹MÌ‹1¶ ÁáN¶1‰u°¶q¶I+}°¯}ä‰uà‹uð‰MÜ‹M°+uàÇÿÁï ‹}ì¯uä+}ܯ}äÆÿÁîÇÿuàÁï}܉uà¶ñ‰uð¶uàçÿƒ}Ø„áàÁïÁî ÏÁæ ÷‹uض >ˆ ƒÂ]Ѐ}ë„Ѐ}ë„€}ë„PÇEì1ÿ1öÇEð;uÔ„‹MÌ‹1¶ ÁáN¶1‰u°¶q¶I+}°¯}ä‰uà‹uð‰MÜ‹M°+uàÇÿÁï ‹}ì¯uä+}ܯ}äÆÿÁîÇÿuàÁï}܉uà¶ñ‰uð¶uàçÿƒ}Ø„ÓáàÁïÁî ÏÁæ ÷‹uض >ˆ ƒÂ]Ѐ}ë„Ä€}ë„ë€}ë„%ÇEì1ÿ1öÇEð;uÔ„‹MÌ‹1¶ ÁáN¶1‰u°¶q¶I+}°¯}ä‰uà‹uð‰MÜ‹M°+uàÇÿÁï ‹}ì¯uä+}ܯ}äÆÿÁîÇÿuàÁï}܉uà¶ñ‰uð¶uàçÿƒ}Ø„ÜáàÁïÁî ÏÁæ ÷‹uض >ˆ ƒmȃ‹uÈ]Ð…öŽú€}ë„i€}ë„T€}ë„1ÿ1öÇEìÇEð;uÔ„«‹MÌ‹1¶ ÁáN¶1‰u°¶q¶I‰uà‹u°‰MÜ‹Mð+M°¯Mä+}ܯ}äÁÿÁé41‹MìÇÿ+Mà¯MäÁï}ÜÁÿÁéMà‰Mð‰ñáÿ‰Mì¶Mð‰Mð‰ù‹}Øáÿ…ÿ„ãæàÁé ñ‹uðÁîÁæ ñ‹uض ˆ ƒÂ]Ðë ´&‹MĉMÈ€}ë„À€}ë„«€}ë„\ÇEì1ÿ1öÇEð;uÔ„¢‹MÌ‹1¶ ÁáN¶1‰uܶq¶I+}ܯ}ä‰uà‹uð‰M°‹MÜ+uàÇÿÁïù‹}ì¯uä+}°¯}ä‰MÜ‹M°ÆÿÁîÇÿuàÁï ¶}Üæÿáÿƒ}؄֋}ÜÁéÁîÁæçà ù ñ‹uض ˆ ƒÂ]Ѐ}ë…ïøÿÿ¶s¶K¶;ÁæÁáÎþéçt&‹MÄ€}ë‰MÈ…0üÿÿ¶s¶K¶;ÁæÁáÎþé8¶‹MÄ€}ë‰MÈ…$ûÿÿ¶s¶K¶;ÁæÁáÎþéX¶‹MÄ€}ë‰MÈ…úÿÿ¶s¶K¶;ÁæÁáÎþéx¶‹MÄ€}ë‰MÈ… ùÿÿ¶s¶K¶;ÁæÁáÎþ阶‹uĉuÈé2ýÿÿt&‹MÄ€}ë‰MÈ…<üÿÿ¶s¶K¶;ÁæÁáÎþë‹MÀ…É„ž]¸U´ƒmÀé¡÷ÿÿ‹3‹x¶H !÷Óï¶HÓç‹H!ñ‰Mð¶H Ómð¶HÓeð‹H!ñ‰Mì¶H Ómì¶HÓeìéíûÿÿ·3ë¹¶‹3‹x¶H !÷Óï¶HÓç‹H!ñ‰Mð¶H Ómð¶HÓeð‹H!ñ‰Mì¶H Ómì¶HÓeìéÂúÿÿ·3ë¹´&‹3‹x¶H !÷Óï¶HÓç‹H!ñ‰Mð¶H Ómð¶HÓeð‹H!ñ‰Mì¶H Ómì¶HÓeìé–ùÿÿ·3ë¹´&‹3‹x¶H !÷Óï¶HÓç‹H!ñ‰Mð¶H Ómð¶HÓeð‹H!ñ‰Mì¶H Ómì¶HÓeìéjøÿÿ·3ë¹´&‹3‹x¶H !÷Óï¶HÓç‹H!ñ‰Mð¶H Ómð¶HÓeð‹H!ñ‰Mì¶H Ómì¶HÓeìé>÷ÿÿ·3ë¹´&ƒÄD[^_]öMðÁïÁîÁæƒáà ù ñˆ é%ûÿÿ¶MðÁïÁîÁæƒáà ù ñˆ é.úÿÿf‹3‹x¶H !÷Óï¶HÓç‹H!ñ‰Mð¶H Ómð¶HÓeð‹H!ñ‰Mì¶H Ómì¶HÓeìéÒõÿÿ·3ë¹´&¶MðÁïÁîÁæƒáà ù ñˆ éåøÿÿt&¶MðÁïÁîÁæƒáà ù ñˆ éé÷ÿÿt&·3‹x¶H !÷Óï¶HÓç‹H!ñ‰Mð¶H Ómð¶HÓeð‹H!ñ‰Mì¶H Ómì¶HÓeìéqûÿÿ‹3뺴&¶s¶KÁæÁá ¶341ëš´&¶MðÁïÁîÁæƒáà ù ñˆ é}öÿÿt&¶MðÁïÁîÁæƒáà ù ñˆ éõÿÿt&·3‹H‹x!ñ‰Mð¶H !÷Ómð¶HÓeð‹H!ñ‰Mì¶H Ómì¶HÓeì¶H Óï¶HÓçéÈùÿÿ‹3뺴&¶K¶sÁáÁæñ¶341ë›Áé‰Mð‰ùƒáà MðÁîÁæ ñˆ é,ûÿÿ‰Ï‹uð¶MìÁïÁîƒáà ùÁæ ñˆ éúÿÿt&¼'U‰åWVSƒì4‹U‹B$‹Z,¶@$‰EìƒÀ€„‘‹B‹ ‹r ‹z‰EÄ‹B‹R‰M܉u؉EÔ‰UÐïíneìaäbä¶K ¾ÿ‰ò‰ðÓâ¶K Óà¶K ÂÓæ ò‰UìnEì`ÀÛàn{bÿ…ÿ„‹EЃï‹uØ‹]Ä‹UÔƒàü‹M܉EÔ‹Eăæüƒã‰]܉uØ‹u܉Åöt+n n`Í`ÕùÊÕÌqÑüÑgÕë×~ƒÁƒÂXÿ…ÛŽœsÁþƒã…¤oooÈoò`ÅhÍ`ÕhõùÂÕÄqÐüÐùÎÕÌqÑüñgÖë׃ÁƒÂoooÈoò`ÅhÍ`ÕhõùÂÕÄqÐüÐùÎÕÌqÑüñgÖë׃îƒÁƒÂ…ösÿÿÿ…ÿtM؃ïUÔéÿÿÿt&ƒût˜…ÿuäwƒÄ4[^_]ËC C C=ÿÿÿ…[þÿÿ‹‹J‹z‹r ‰EØ‹[‹B‹RÇEàþþþÁþÇEäþþþ‰]è‰EÜÁúoeàÇEàÇEäo]àn}èbÿ…ÿ„çÁâ‹]؃ï‰UЉÊÁæƒâ‰uÔ‰UØ‹u؉ʅöt9‹0‹ƒÃæþþþ‰u܉ֿþþþ‰uÌ‹uÜ#uÌâÑî U艃ÀQÿ…Ò~nrÁþƒâuuooòo oéÛôÛìþîÛÑrÕÛÓþÕë׃ÀƒÃooòo oéÛôÛìþîÛÑrÕÛÓþÕë׃îƒÀƒÃ…ö…ÿt]ÔƒïEÐé:ÿÿÿƒúuéë²wé þÿÿt&U‰åWVSƒì‹M‹q‹Q ‹Y‹y‰uè‹q$‹‰Uì‹Q‹Nïön~`ÿtÀoØïøoÇcÆcÞïØ¶v nî…ÿ„¾ƒï‰ÞƒÆ‰}ä{H÷ƒã‰]ð‹]ìÁþƒãü‰]ì‹]èƒãüƒ}ð‰]脃}ð„ƒ}ð‰ó„”‰Ï#8…(ƒÀƒÂ‰Ï#8t69Ï„wn`În`ÖnçÒåaäaäÛçùÊÕÌqÑüÑgÖ~ƒÀƒÂ‰Ï#8t69Ï„n`În`ÖnçÒåaäaäÛçùÊÕÌqÑüÑgÖ~ƒÀƒÂ‰Ï#8t29Ïton`În`ÖnçÒåaäaäÛçùÊÕÌqÑüÑgÖ~ƒëƒÀƒÂ…Û#ÿÿÿ‹}ä…ÿ„ŠEìUèƒmäƒ}ð…îþÿÿ‰óéOÿÿÿ‰óéÿÿÿvnnÛÈÛÓëÑ~ƒëƒÀƒÂ…ÛÐþÿÿë«9Ïtwn`În`ÖnçÒåaäaäÛçùÊÕÌqÑüÑgÖ~‰ö¼'é˜þÿÿwƒÄ[^_]fÃnnÛÈÛÓëÑ~éùþÿÿnnÛÈÛÓëÑ~é þÿÿnnÛÈÛÓëÑ~éFþÿÿ‰ö¼'U‰åWVSƒì ‹]‹C$¶p$þ€„Q‹S‹C‹ ‹{ …Ò‰Eä‹C‹[„(ƒêƒçü‰Uè‹Uäƒãü‰}؉]Ôƒâ‰UÜ‹]Ü‹Uä…ÛtW‹‹‰ßãÿçÿÿâÿÿ)ú¯ÖÁêú‹9ƒÁâÿÿçÿ)߯þÁïãÿ ÚÊÿ‰‹UäƒÀƒê…ÒŽ~zÁÿƒâ……‹‹âÿÿãÿÿ)Ú¯ÖÁêÚ‹‰Uì¶ß‰]ð‹¶×‹XãÿÁã Ó‹QeìÿÿMìÿâÿÁâ Uð)Ú¯ÖÁêÚ‹Xâÿÿ‰UðÁââÿÿ Uìãÿÿ‹U쉋QƒÁâÿÿ)Ú¯ÖÁêÚ‹]ðâÿÿÊÿÁë Ú‰PƒÀ‹‹âÿÿãÿÿ)Ú¯ÖÁêÚ‹‰Uì¶ß‰]ð‹¶×‹XãÿÁã Ó‹QeìÿÿMìÿâÿÁâ Uð)Ú¯ÖÁêÚ‹Xâÿÿ‰UðÁââÿÿ Uìãÿÿ‹U쉋QƒÁâÿÿ)Ú¯ÖÁêÚ‹]ðâÿÿÊÿÁë Ú‰PƒÀƒï…ÿ‘þÿÿ‹Uè…ÒtMØEÔƒmèéþÿÿƒú„$ÿÿÿ‹Uè…ÒuáƒÄ [^_]Ãt&‹{‹s ‹K‹‹C‹[ÁþÁû…ÿt؃ï‰}äy‰}ð‰ÏƒÇH}ðÁãÁæÁÿ‰]܉ˉ}ìƒã‰uàƒû„(ƒû„ƒû‹MìuD‹8ƒé‹2ƒÂçþþþ‰}ð‰÷çþþþ‰}è‹}ð#0}èæÑï47Îÿ‰0ƒÀ…Éް‹8‹2ƒÂçþþþ‰}ð‰÷çþþþ‰}è‹}ð#0}èæÑï47Îÿ‰0ƒÀ‹8‹2ƒÂçþþþ‰}ð‰÷çþþþ‰}è‹}ð#0}èæÑï47Îÿ‰0ƒÀ‹8‹2ƒÂçþþþ‰}ð‰÷çþþþ‰}è‹}ð#0}èæÑï47Îÿ‰0ƒÀé ÿÿÿ‹uä…ö„“þÿÿUàE܃mäéØþÿÿ‹Mìéfÿÿÿ‹MìëšvU‰åWVSƒì‹]‹{‹K‹‹s …ÿ‹S‹[„›ƒï‰}äy‰}ð‰ÏƒÇH}ðƒáƒæüƒãü‰MèÁÿƒ}è‰}ì‰uà‰]Ü„»ƒ}脺ƒ}è‹Mì„‹8‰ûÁë…ۅ΃ÀƒÂ‹8‰ûÁë…Ûtfûÿ„A‹2æÿÿ‰uð‰þçÿæÿÿ+uð¯óÁîuð‰uØ‹2eØÿÿæÿ)÷¯û‹Áïãÿ÷çÿ }Ø ]Ø‹}؉:ƒÀƒÂ‹8‰ûÁë…Ûtfûÿ„²‹2æÿÿ‰uð‰þçÿæÿÿ+uð¯óÁîuð‰uØ‹2eØÿÿæÿ)÷¯û‹Áïãÿ÷çÿ }Ø ]Ø‹}؉:ƒÀƒÂ‹8‰ûÁë…Ûtfûÿ„›‹2æÿÿ‰uð‰þçÿæÿÿ+uð¯óÁîuð‰uØ‹2eØÿÿæÿ)÷¯û‹Áïãÿ÷çÿ }Ø ]Ø‹}؉:ƒéƒÀƒÂ…É{þÿÿ‹}ä…ÿ„½EàU܃mäƒ}è…Eþÿÿ‹Mìéàþÿÿ‹Mìé`þÿÿ‹çÿÿÿƒéƒÀãÿ û‰ƒÂ…É(þÿÿë«vûÿ„›‹2æÿÿ‰uð‰þçÿæÿÿ+uð¯óÁîuð‰uØ‹2eØÿÿæÿ)÷¯û‹Áïãÿ÷çÿ }Ø ]Ø‹}؉:éÇýÿÿt&ƒÄ[^_]Ëçÿÿÿãÿ û‰é‘þÿÿ‹çÿÿÿãÿ û‰éþÿÿ‹çÿÿÿãÿ û‰étýÿÿfU‰åWVSƒì‹M‹q‹Q ‹Y‹y‰uè‹q$‹‰Uì‹Q‹N¶v ïönù`ÿtäoÜïüoçcæcÞïÜnî…ÿ„߃ï‰ÞƒÆ‰}ä{H÷ƒã‰]ð‹]ìÁþƒãü‰]ì‹]èƒãüƒ}ð‰]è„2ƒ}ð„/ƒ}ð‰ó„¬ @@ B@‰Ï#8…AƒÀƒÂ @@ B@‰Ï#8t69Ï„ˆnn n×ÒÕaÒbÒÛ×`Æ`ÎùÁÕÂqÐüÁgÀ~ƒÀƒÂ @@ B@‰Ï#8t69Ï„'nn n×ÒÕaÒbÒÛ×`Æ`ÎùÁÕÂqÐüÁgÀ~ƒÀƒÂ @@ B@‰Ï#8t29Ïtpnn n×ÒÕaÒbÒÛ×`Æ`ÎùÁÕÂqÐüÁgÀ~ƒëƒÀƒÂ…Ûÿÿÿ‹]ä…Û„‹EìUèƒmäƒ}ð…Îþÿÿ‰óé?ÿÿÿ‰óéîþÿÿt&nn ÛÄÛËëÈ~ ƒëƒÀƒÂ…Û¯þÿÿëª9Ïtwnn n×ÒÕaÒbÒÛ×`Æ`ÎùÁÕÂqÐüÁgÀ~‰ö¼'éþÿÿwƒÄ[^_]fÃnn ÛÄÛËëÈ~ éðþÿÿnn ÛÄÛËëÈ~ éþÿÿnn ÛÄÛËëÈ~ é-þÿÿ‰ö¼'U‰åWVSƒì4‹Hf‰UÖ‹P‹0‰Mà‹H ‰UЋP‹@Ñù\ þɃàþ‰EÌ·EÖ‰]ĉMÀ‰ÃÁã ÷EÖ‰]ì÷Ó‰]è÷Ðf‰Eʃmàƒ}àÿ„‰Ð1𨄋MÐö‰MÜt8·:·ƒÆ·MÖ·EÖ!ù!Ø·É·À!ûf#]ÊÑø‹]Ðf‰ƒÂƒë‰]܃}ÜF‰EØ‹Hü~l‹]Ü1À‰uä‰]ðëf‰ù‹]äÁé‹uè#4‹|‰ûÁãÙ‹]ì#!Î#MìÑëÑéˉƒÀƒmðƒ}ðË]܃ë‰ØÑè …÷ØCÊM؉ù‰EÜ‹EÜ…Àt0·2Áé·]Ö·EÖ!Ë!ñ!ð·Ûf#MÊ·ÀÑøf‰ƒÂƒEØ‹u؃màuÄŨ}àÿ…èþÿÿƒÄ4[^_]ËEÐ÷ƉEät8·:·ƒÆ·MÖ·EÖ!ù!Ø·É·À!û‹MÐf#]ÊÑøƒéf‰ƒÂ‰Mäƒ}ä~N‹}ä1À‹ƒï‹ #]ì#MìÑëÑé ‹##]èÙ‰ ƒÀƒÿÔ‹]äƒë‰ØÑè …÷ØCÎʉEä‹}ä…ÿt/·:·ƒÆ·MÖ·EÖ!ù!Ø·É·À!ûf#]ÊÑøf‰ƒÂuÀUÌé÷ýÿÿfU‰åWVSƒì,‹M‹A$¶X$û€„‚‹Aƒãø‰]èÁë‹qÇEì‹‹y ‰EÜ‹A‰]Ô‹IoEèaÀaÀsðÇEèààÇEìààoeèÇEèÇEìo}è…ö„‹]܃îƒçþƒáþ‰u؉}̃ã‰]ЉMÈ‹]ЋMÜ…ÛtG·ƒÂ·0‰ÙÁá Ù‰óÁãáøà óãøà)Ù¯MÔÁéÙáøà‰ËÁë Ùf‰‹M܃ÀƒéöÁ„‚·2ƒé·8‰óÁã ó‰þÁæãøà þ·xæøà)ó¯]ÔÁëóãøà‰ÞÁî óf‰·rƒÂ‰óÁã ó‰þÁæãøà þæøà)ó¯]ÔÁëóãøà‰ÞÁî óf‰XƒÀ…ÉŽòYÁûƒá…ùoooêoóqÕ qÖ ùîÕèqÕ ýõqö oÎoêoóÛìÛôùîåèqõýõëÎoêoóÛïÛ÷ùîÕèqÕ ýõÛ÷ë΃ƒÀoooêoóqÕ qÖ ùîÕèqÕ ýõqö oÎoêoóÛìÛôùîåèqõýõëÎoêoóÛïÛ÷ùîÕèqÕ ýõÛ÷ë΃ëƒÂƒÀ…Ûÿÿÿ‹MØ…ÉtUÌEȃmØéþÿÿƒù„jÿÿÿ‹MØ…ÉuáwƒÄ,[^_]úÞ÷‰ÈèóúÿÿëêU‰åWVSƒì,‹M‹A$¶X$û€„‘‹Aƒãø‰]èÁë‹qÇEì‹‹y ‰EÜ‹A‰]Ô‹IoEèaÀaÀsðÇEèààÇEìààoeèÇEèÇEìo}è…ö„!‹]܃îƒçþƒáþ‰u؉}̃ã‰]ЉMÈ‹}ЋMÜ…ÿtG·ƒÂ·0‰ÙÁá Ù‰óÁãá|à óã|à)Ù¯MÔÁéÙá|à‰ËÁë Ùf‰‹M܃ÀƒéöÁ„‚·2ƒé·8‰óÁã ó‰þÁæã|à þ·xæ|à)ó¯]ÔÁëóã|à‰ÞÁî óf‰·rƒÂ‰óÁã ó‰þÁæã|à þæ|à)ó¯]ÔÁëóã|à‰ÞÁî óf‰XƒÀ…ÉŽüYÁûƒá…oosôoêoóÛìÛôùîåèqõýõÛôsÔoÎoêoóÛìÛôùîåèqõýõëÎoêoóÛïÛ÷ùîÕèqÕ ýõÛ÷ë΃ƒÀoosôoêoóÛìÛôùîåèqõýõÛôsÔoÎoêoóÛìÛôùîåèqõýõëÎoêoóÛïÛ÷ùîÕèqÕ ýõÛ÷ë΃ëƒÂƒÀ…Ûÿÿÿ‹uØ…ötUÌEȃmØé þÿÿƒù„eÿÿÿ‹uØ…öuáwƒÄ,[^_]Ãt&ºÞû‰Èè4øÿÿëåfU‰åWVSƒì‹E‹P$¶r$þ€„±‹xÁî‹P ‹X‹…ÿ‰Uð‹P‰uè‹@„‡ƒï‰ÞƒÆ‰}ä{Iþƒã‰]ì‹]ðÁÿƒàþ‰E܉}ðƒãþƒ}ì‰]à„Dƒ}ì„?ƒ}ì‹uðuP¶·ƒîƒÁ·:‰ØÁà ؉ûÁã%øà ûãøà)دEèÁèØ%øà‰ÃÁë Øf‰ƒÂ…öŽÆ·ƒÁ·:‰ØÁà ؉ûÁã%øà ûãøà)دEèÁèØ%øà‰ÃÁë Øf‰ƒÂ·ƒÁ·:‰ØÁà ؉ûÁã%øà ûãøà)دEèÁèØ%øà‰ÃÁë Øf‰ƒÂ·ƒÁ·:‰ØÁà ؉ûÁã%øà ûãøà)دEèÁèØ%øà‰ÃÁë Øf‰ƒÂéôþÿÿt&‹Eä…Àt!MàU܃mäƒ}ì…¼þÿÿ‹uð똋uðéQÿÿÿƒÄ[^_]ÃĺÞ÷[^_]éOöÿÿë U‰åWVSƒì‹E‹P$¶r$þ€„±‹xÁî‹P ‹X‹…ÿ‰Uð‹P‰uè‹@„‡ƒï‰ÞƒÆ‰}ä{Iþƒã‰]ì‹]ðÁÿƒàþ‰E܉}ðƒãþƒ}ì‰]à„Dƒ}ì„?ƒ}ì‹uðuP¶·ƒîƒÁ·:‰ØÁà ؉ûÁã%|à ûã|à)دEèÁèØ%|à‰ÃÁë Øf‰ƒÂ…öŽÆ·ƒÁ·:‰ØÁà ؉ûÁã%|à ûã|à)دEèÁèØ%|à‰ÃÁë Øf‰ƒÂ·ƒÁ·:‰ØÁà ؉ûÁã%|à ûã|à)دEèÁèØ%|à‰ÃÁë Øf‰ƒÂ·ƒÁ·:‰ØÁà ؉ûÁã%|à ûã|à)دEèÁèØ%|à‰ÃÁë Øf‰ƒÂéôþÿÿt&‹]ä…Ût!MàU܃mäƒ}ì…¼þÿÿ‹uð똋uðéQÿÿÿƒÄ[^_]ÃĺÞû[^_]é_ôÿÿë U‰åWVSƒì ‹u‹^‹N‹‹~ …Û‹V‹v„σë‰]àY‰]ð‰ËƒÃH]ðƒáƒçüƒæþ‰MèÁûƒ}è‰}܉u؉]Ô„Öƒ}è„Úƒ}è‹MÔ„‹0‰óÁë…Û…þƒÀƒÂ‹0‰óÁë…Ûtoƒû„Œ·:‰}ä‰÷Áïçø‰}ð‰÷çüÁç ‰}ì‹}ðÁî}ìƒæ‰}ì‹}äuìÁç‰}ð‹}ä }ðeðøà+uð¯óÁîuðæøà‰÷Áï þf‰2ƒÀƒÂ‹0‰óÁë…Ûtoƒû„ä·:‰}ä‰÷Áïçø‰}ð‰÷çüÁç ‰}ì‹}ðÁî}ìƒæ‰}ì‹}äuìÁç‰}ð‹}ä }ðeðøà+uð¯óÁîuðæøà‰÷Áï þf‰2ƒÀƒÂ‹0‰÷Áï…ÿtoƒÿ„¬·‰]ä‰óÁëãø‰]ð‰óãüÁã ‰]ì‹]ðÁî]ìƒæ‰]ì‹]äuìÁã‰]ð‹]ä ]ðeðøà+uð¯÷Áîuðæøà‰÷Áï þf‰2ƒéƒÀƒÂ…É`þÿÿ‹uà…ö„ÖEÜU؃màƒ}è…*þÿÿ‹MÔéÎþÿÿ¶‹MÔé@þÿÿ‰÷ƒéÁïƒÀ‰û‰÷ÁïfãàfçøÁî߃æ÷f‰:ƒÂ…É÷ýÿÿë•fƒû„Ç·:‰}ä‰÷Áïçø‰}ð‰÷çüÁç ‰}ì‹}ðÁî}ìƒæ‰}ì‹}äuìÁç‰}ð‹}ä }ðeðøà+uð¯óÁîuðæøà‰÷Áï þf‰2éŽýÿÿƒÄ [^_]Ãt&‰÷Áï‰û‰÷ÁïfãàfçøÁî߃æ÷f‰:éZþÿÿ‰÷Áï‰û‰÷ÁïfãàfçøÁî߃æ÷f‰:é²ýÿÿ‰÷Áï‰û‰÷ÁïfãàfçøÁî߃æ÷f‰:é ýÿÿ´&U‰åWVSƒì ‹u‹^‹N‹‹~ …Û‹V‹v„σë‰]àY‰]ð‰ËƒÃH]ðƒáƒçüƒæþ‰MèÁûƒ}è‰}܉u؉]Ô„Öƒ}è„Úƒ}è‹MÔ„‹0‰óÁë…Û…þƒÀƒÂ‹0‰óÁë…Ûtoƒû„Œ·:‰}ä‰÷Áï ç|‰}ð‰÷çøÁç ‰}ì‹}ðÁî}ìƒæ‰}ì‹}äuìÁç‰}ð‹}ä }ðeð|à+uð¯óÁîuðæ|à‰÷Áï þf‰2ƒÀƒÂ‹0‰óÁë…Ûtoƒû„ä·:‰}ä‰÷Áï ç|‰}ð‰÷çøÁç ‰}ì‹}ðÁî}ìƒæ‰}ì‹}äuìÁç‰}ð‹}ä }ðeð|à+uð¯óÁîuðæ|à‰÷Áï þf‰2ƒÀƒÂ‹0‰÷Áï…ÿtoƒÿ„¬·‰]ä‰óÁë ã|‰]ð‰óãøÁã ‰]ì‹]ðÁî]ìƒæ‰]ì‹]äuìÁã‰]ð‹]ä ]ðeð|à+uð¯÷Áîuðæ|à‰÷Áï þf‰2ƒéƒÀƒÂ…É`þÿÿ‹}à…ÿ„ÖEÜU؃màƒ}è…*þÿÿ‹MÔéÎþÿÿ¶‹MÔé@þÿÿ‰÷ƒéÁïƒÀ‰û‰÷Áï fãàfç|Áî߃æ÷f‰:ƒÂ…É÷ýÿÿë•fƒû„Ç·:‰}ä‰÷Áï ç|‰}ð‰÷çøÁç ‰}ì‹}ðÁî}ìƒæ‰}ì‹}äuìÁç‰}ð‹}ä }ðeð|à+uð¯óÁîuðæ|à‰÷Áï þf‰2éŽýÿÿƒÄ [^_]Ãt&‰÷Áï‰û‰÷Áï fãàfç|Áî߃æ÷f‰:éZþÿÿ‰÷Áï‰û‰÷Áï fãàfç|Áî߃æ÷f‰:é²ýÿÿ‰÷Áï‰û‰÷Áï fãàfç|Áî߃æ÷f‰:é ýÿÿ´&U‰åWVSƒì\‹E‹‹X ‹x‹H‰UÜ‹P‹p‰]œ‰}ð‰U˜‹P$‹@,¶Zƒxˆ]Ó¶Xˆ]ë¶z$Û÷Óãÿ‰]Ô…ÿ‰}ØtX…ötTƒî‹]ð‰u ‰ÎƒÆyH÷ƒá¶}Ó‰M´¶Më‰u¬Á}¬ƒ}´‰}¨‰M¤„̃}´t$ƒ}´„ú‹M¬‰MÌéðƒÄ\[^_]ô&¶H €}Ó¶ùˆMÒ¶H‰}°¶x ‰MȶH‰}Ķx ‰MÀ¶H‰}¼‹}¬‰M¸‰}Ì„¥€}Ó„V €}Ó„ €}ëÇEàÇEäÇEì„Ô€}ë„Å €}ë„y ÇEð1ÿ1ö‹Mì)ñ¯MØÁÿÁéñ‹uà‰Mì‹Mä+uð¯uØ)ù¯MØÆÿÁîÁÿÁé<9‹Mðñ€}ë‰Mð„à€}ë„“€}ë„‹}¨}Ü]¤€}Ó„Ø€}Ó„ì€}Ó„”ÇEàÇEäÇEì€}ë„C€}ë„€}ë„ÅÇEð1ÿ1ö‹Mì)ñ¯MØÁÿÁéñ‹uà‰Mì‹Mä+uð¯uØ)ù¯MØÆÿÁîÁÿÁé<9‹Mðñ€}ë‰Mð„3€}ë„à€}ë„_‹}¨}Ü]¤€}ӄÀ}Ó„²€}Ó„_ÇEàÇEäÇEì€}ë„€}ë„á€}ë„•ÇEð1ÿ1ö‹Mì)ñ¯MØÁÿÁéñ‹uà‰Mì‹Mä+uð¯uØ)ù¯MØÆÿÁîÁÿÁé<9‹Mðñ€}ë‰Mð„ÿ€}넯€}ëuB¶MÈ‹uìÓî¶M°Óæ¶MÀÓï¶MÄÓç¶H ÷‹uÔÓî¶H Óæ¶M¸ ÷‹uðÓî¶M¼Óæ ÷f‰;ƒmÌ‹uÌ‹}¨}Ü]¤…öŽŸ€}Ó„€}Ó„²€}Ó„1 ÇEàÇEäÇEì€}ë„"€}ë„© €}ë„” ¶H 1öÇEðˆMÒ¶ù¶H‰}°¶x ‰MȶH‰}Ķx ‰MÀ¶H‰}¼1ÿ‰M¸‹Mì)ñ¯MØÁÿÁéñ‹uà‰Mì‹Mä+uð¯uØ)ù¯MØÆÿÁîÁÿÁé<9‹Mðñ€}ë‰Mð„€}넸€}ë„d‹}¨}Ü]¤€}Ó…[üÿÿ‹}ܶw¶OÁæÁá ¶7‹z41‹J!÷!ñ‰Mì¶J Ómì¶JÓeì¶J Óï¶JÓç‰}ä#r¶J ‰uàÓmà¶JÓeà€}ë…,üÿÿ¶s¶KÁæÁáζ ‹p‰Mð‹}ð!ζH Óî¶HÓæéž´&‹M …É„fûÿÿ‹MœMÜ]˜ƒm ƒ}´…4ûÿÿ¶H €}Ó¶ùˆMÒ¶H‰}°¶x ‰MȶH‰}Ķx ‰MÀ¶H‰}¼‹}¬‰M¸‰}Ì…(üÿÿ‹}ܶw¶O¶?ÁæÁá΋Jþ‹z!ñ‰Mì¶J !÷Ómì¶JÓeì¶J Óï¶JÓç‰}äé¹´&¶MÈ‹uìÓî¶M°Óæ¶MÀÓï¶MÄÓç¶H þ‹}ÔÓï¶H Óç¶M¸ þ‹}ðÓï¶M¼Óç þ‰3éSýÿÿ¶MÒÀé¶ñ¶Mìˆ 3¶H Àé¶ñ‰ùˆ 3¶H Àé¶ñ¶Mðˆ 3éýÿÿt&·;‹p¶H ‰}ð!þÓî¶HÓæ¶H #xÓï¶HÓç‹Mð#H‰Mð¶H Ómð¶HÓeðé4üÿÿ¶H ‹3#p‹;#xÓî¶HÓæ¶H Óï¶HÓç‹ ëÁ¶s¶KÁæÁáζ ‹p‰Mð‹}ð!ζH Óî¶HÓæë€‹MÜ·1‹z¶J !÷Óï¶JÓç‹J‰}ì!ñ‰Mä¶J Ómä¶JÓeä#r¶J ‰uàÓmà¶JÓeàémûÿÿ‹MÜ‹1ë¶‹}ܶw¶O¶?ÁæÁá΋Jþ‹z!ñ‰Mì¶J !÷Ómì¶JÓeì¶J Óï¶JÓç‰}äëœt&¶H ¶ùˆMÒ¶H‰}°¶x ‰MȶH‰}Ķx ‰MÀ¶H‰}¼‹}¬‰M¸‰}Ìé¯úÿÿt&¶MÈ‹uìÓî¶M°Óæ¶MÀÓï¶MÄÓç¶H ÷‹uÔÓî¶H Óæ¶M¸ ÷‹uðÓî¶M¼Óæ ÷f‰;¶H ˆMÒ¶ù¶H‰}°¶x ‰MȶH‰}Ķx ‰MÀ¶H‰}¼‰M¸é*úÿÿ¶MÈ‹uìÓî¶M°Óæ¶MÀÓï¶MÄÓç¶H þ‹}ÔÓï¶H Óç¶M¸ þ‹}ðÓï¶M¼Óç þ‰3눶¶MÒÀé¶ñ¶Mìˆ 3¶H Àé¶ñ‰ùˆ 3¶H Àé¶ñ¶Mðˆ 3éLÿÿÿ·;‹p¶H ‰}ð!þÓî¶HÓæ¶H #xÓï¶HÓç‹Mð#H‰Mð¶H Ómð¶HÓeðéùÿÿ¶H ‹3#p‹;#xÓî¶HÓæ¶H Óï¶HÓç‹ ëÁf¶s¶KÁæÁáζ ‹p‰Mð‹}ð!ζH Óî¶HÓæé{ÿÿÿ‹MÜ·1‹z¶J !÷Óï¶JÓç‹J‰}ì!ñ‰Mä¶J Ómä¶JÓeä#r¶J ‰uàÓmà¶JÓeàé8øÿÿt&‹MÜ‹1ë±¶MÈ‹uìÓî¶M°Óæ¶MÀÓï¶MÄÓç¶H ÷‹uÔÓî¶H Óæ¶M¸ ÷‹uðÓî¶M¼Óæ ÷f‰;¶H ˆMÒ¶ù¶H‰}°¶x ‰MȶH‰}Ķx ‰MÀ¶H‰}¼‰M¸éy÷ÿÿf¶MÈ‹uìÓî¶M°Óæ¶MÀÓï¶MÄÓç¶H þ‹}ÔÓï¶H Óç¶M¸ þ‹}ðÓï¶M¼Óç þ‰3놶MÒÀé¶ñ¶Mìˆ 3¶H Àé¶ñ‰ùˆ 3¶H Àé¶ñ¶Mðˆ 3éPÿÿÿ´&·;‹p¶H ‰}ð!þÓî¶HÓæ¶H #xÓï¶HÓç‹Mð#H‰Mð¶H Ómð¶HÓeðéPöÿÿ¶H ‹3#p‹;#xÓî¶HÓæ¶H Óï¶HÓç‹ ëÁ‹MÜ·1‹z¶J !÷Óï¶JÓç‹J‰}ì!ñ‰Mä¶J Ómä¶JÓeäéŒùÿÿv‹MÜ‹1ëÇ‹MÜ‹z‹1¶J !÷Óï¶JÓç‹J‰}ì!ñ‰Mä¶J Ómä¶JÓeä#r¶J ‰uàÓmà¶JÓeàé%øÿÿ‹MÜ‹}ܶq¶IÁæÁá ¶741‹J‹z!ñ‰Mì¶J !÷Ómì¶JÓeì¶J Óï¶JÓç‰}äë´&¶s¶KÁæÁáζ ‰Mð¶H ‹uð#pˆMÒ¶ù¶H‰}°¶x ‰MȶMÒ‰}Ä‹}ð#xÓî¶MÈÓæ¶H‰MÀ¶MÄÓï¶MÀÓç¶H ‰M¼¶H‰M¸‹Mð#H‰Mð¶M¼Ómð¶M¸Óeðé¤÷ÿÿ´&¶MÒÀé¶ñ¶Mìˆ 3¶H Àé¶ñ‰ùˆ 3¶H Àé¶ñ¶Mðˆ 3¶H ˆMÒ¶ù¶H‰}°¶x ‰MȶH‰}Ķx ‰MÀ¶H‰}¼‰M¸éœ÷ÿÿ¶MÈ‹uìÓî¶M°Óæ¶MÀÓï¶MÄÓç¶H ÷‹uÔÓî¶H Óæ¶M¸ ÷‹uðÓî¶M¼Óæ ÷f‰;뇶¶MÈ‹uìÓî¶M°Óæ¶MÀÓï¶MÄÓç¶H þ‹}ÔÓï¶H Óç¶M¸ þ‹}ðÓï¶M¼Óç þ‰3é;ÿÿÿ·;‰}ðéˆþÿÿ¶H ‹3#pˆMÒ¶ù¶H‰}°¶x ‰MȶMÒ‰}Ä‹;#xÓî¶MÈÓæ¶H‰MÀ¶MÄÓï¶MÀÓç¶H ‰M¼¶H‰M¸‹ é†þÿÿ¶‹}Ü·7éÒýÿÿt&U‰åWVSƒìh‹E‹‹X ‹x‹H‰Uð‹P‰]”‹p‰U‹P$‹@,‹Z ƒx‰]À¶Zˆ]ß¶Xˆ]Þ¶Z$ˆ]ØÛ÷Óãÿ…ÿ‰]ЄW ¶]؃ï‰} y‰]؉˃ÃIû‹]؃áÁÿ‰MĶMÞ‰}ȶ}ß…Û‹]ð•E›ƒ}ĉ}¼‰M¸„\ƒ}Ä„†‹}ȃ}ĉ}Ô„t€}ß„;€}ß„J€}ß„ 1ÿ;}À„k€}›„a‹J!ù‰Mì¶J Ómì¶JÓeì‹J!ù‰Mð¶J Ómð¶JÓeð¶J #zÓï¶JÓç€}Þ„F €}Þ„Ü €}Þ„R ¶H ÇEèÇEàÇEäˆM϶ɉMœ¶H‰M´¶H ‰M°¶H‰M¬¶H ‰M¨¶H‰M¤‹Mì+Mä¯MØ+}è¯}ØÁÿÁéMäÇÿÁï‰Mä‹Mð+Mà¯MØÁÿÁéMà‰Mð‹Mèù€}Þ‰Mì„{ €}Þ„ €}Þu_‹}ä¶M´Óï¶MœÓç¶M¬‰}ä‹}ðÓï¶M°Óç·Mä ù¶x f‰Mè‰}ð‹}жMðÓï¶H Óç¶M¤f }è‹}ìÓï¶M¨Óçf }è·}èf‰>]¼u¸€}ß…â¶{¶KÁçÁá϶ Ï;}Àt€}›…Ù¶]¼u¸€}ß„t€}ß„V€}ß„C1ÿ;}À„q€}›„g‹J!ù‰Mì¶J Ómì¶JÓeì‹J!ù‰Mð¶J Ómð¶JÓeð¶J #zÓï¶JÓç€}Þ„²€}Þ„h€}Þ„¶H ÇEèÇEàÇEäˆM϶ɉMœ¶H‰M´¶H ‰M°¶H‰M¬¶H ‰M¨¶H‰M¤‹Mì+Mä¯MØ+}è¯}ØÁÿÁéMäÇÿÁï‰Mä‹Mð+Mà¯MØÁÿÁéMà‰Mð‹Mèù€}Þ‰Mì„…€}Þ„€}Þue‹}ä¶M´Óï¶MœÓç¶M¬‰}ä‹}ðÓï¶M°Óç·Mä ù¶x f‰Mè‰}ð‹}жMðÓï¶H Óç¶M¤f }è‹}ìÓï¶M¨Óçf }è·}èf‰>¶]¼u¸€}ß„€}ß„¦€}ß„Ü1ÿ;}À„q€}›„g‹J!ù‰Mì¶J Ómì¶JÓeì‹J!ù‰Mð¶J Ómð¶JÓeð¶J #zÓï¶JÓç€}Þ‰}ä„s€}Þ„÷€}Þ„Û¶H ÇEèÇEàˆM϶ù¶H‰}Œ¶x ‰M°¶H‰}¬¶x ‰M¨¶H‰}¤1ÿ‰Mœ‹Mì)ù¯MØÁÿÁéù‹}ä‰M´‹Mð+Mà¯MØ+}è¯}ØÁÿÁéMàÇÿÁï‰Mð‹Mèù€}Þ‰Mì„Í€}Þ„ü€}Þuf‹}´¶M°Óï¶MŒÓç¶M¨‰}´‹}ðÓï¶M¬Óç·M´ ù¶x f‰Mè‰}ð‹}жMðÓï¶H Óç¶Mœf }è‹}ìÓï¶M¤Óçf }è·}èf‰>´&ƒmÔ‹MÔ]¼u¸…ÉÝúÿÿ‹} …ÿ„Ç]”uƒm ƒ}Ä…¤úÿÿ‹MÈ€}߉MÔ…Œüÿÿ¶{¶KÁçÁá϶ Ïéˆüÿÿf·;éþÿÿ‹MÈ€}߉MÔ„üÿÿ€}ß„^€}ß„L1ÿéüÿÿ‹J!ù‰Mì¶J Ómì¶JÓeì‹J!ù‰Mð¶J Ómð¶JÓeð¶J #zÓï¶JÓç€}Þ„;€}Þ„ñ€}Þ„L¶H ÇEèÇEàÇEäˆM϶ɉMœ¶H‰M´¶H ‰M°¶H‰M¬¶H ‰M¨¶H‰M¤‹Mì+Mä¯MØ+}è¯}ØÁÿÁéMäÇÿÁï‰Mä‹Mð+Mà¯MØÁÿÁéMà‰Mð‹Mèù€}Þ‰Mì„{€}Þ„€}Þ…'ûÿÿ‹}ä¶M´Óï¶MœÓç¶M¬‰}ä‹}ðÓï¶M°Óç·Mä ù¶x f‰Mè‰}ð‹}жMðÓï¶H Óç¶M¤f }è‹}ìÓï¶M¨Óçf }è·}èf‰>éÃúÿÿv¶{¶KÁçÁá϶ Ïélüÿÿ¶‹;é_üÿÿ·;é·úÿÿ‹;é¯úÿÿ¶{¶KÁçÁá ¶;<9é¿øÿÿ·‰Mè¶H ˆM϶ɉMœ¶H‰M´‹Mè#H‰Mä¶MÏÓmä¶M´Óeä¶H ‰M°¶H‰M¬‹Mè#H‰Mà¶M°Ómà¶M¬Óeà¶H ‰M¨¶H‰M¤‹Mè#H‰Mè¶M¨Ómè¶M¤ÓeèéÄúÿÿ¶H ˆM϶ɉMœ¶H‰M´‹#H‰Mä¶MÏÓmä¶M´Óeä¶H ‰M°¶H‰M¬‹#H‰Mà¶M°Ómà¶M¬Óeà¶H ‰M¨¶H‰M¤‹#H‰Mè¶M¨Ómè¶M¤Óeèéçýÿÿ¶‹;é»÷ÿÿ¶MÏÀé¶ù¶M´ˆ >¶H Àé¶ù¶Mðˆ >¶H Àé¶ù¶Mìˆ >éqüÿÿ¶M°‹}´Óï¶MŒÓç¶M¨‰}è‹}ðÓï¶M¬Óç¶H }è‹}ÐÓï¶H Óç¶Mœ }è‹}ìÓï¶M¤Óç }è‹}è‰>éüÿÿ¶H ˆM϶ù¶H‰}Œ‹>#x‰M°¶MÏÓï¶M°Óç¶H ‰M¬¶H‰M¨‹#H‰Mà¶M¬Ómà¶M¨Óeà¶H ‰M¤¶H‰Mœ‹#H‰Mè¶M¤Ómè¶MœÓeèéáúÿÿ¶~¶NÁçÁá϶ ‰Mè¶H ˆM϶ù¶H‰}Œ‹}è#x‰M°¶MÏÓï¶M°Óç¶H ‰M¬¶H‰M¨‹Mè#H‰Mà¶M¬Ómà¶M¨Óeà¶H ‰M¤¶H‰Mœ‹Mèémÿÿÿf·>‰}èë•·;éË÷ÿÿ‹;éÄ÷ÿÿƒÄh[^_]öNÁá‰Mä¶NÁáMä‰Mä¶MäéDýÿÿ¶M´‹}ä]¼Óï¶MœÓç¶M¬‰}è‹}ðÓï¶M°Óç¶H }è‹}ÐÓï¶H Óç¶M¤ }è‹}ìÓï¶M¨Óç }è‹}è‰>u¸éüøÿÿ¶¶MÏÀé¶ù¶Mäˆ >¶H Àé¶ù¶Mðˆ >¶H Àé¶ù¶Mìˆ >]¼u¸é¸øÿÿf¶H ˆM϶ɉMœ¶H‰M´‹#H‰Mä¶MÏÓmä¶M´Óeä¶H ‰M°¶H‰M¬‹#H‰Mà¶M°Ómà¶M¬Óeà¶H ‰M¨¶H‰M¤‹é§üÿÿ¶NÁá‰Mä¶NÁáMä‰Mä¶Mä‰Mè¶H ˆM϶ɉMœ¶H‰M´‹Mè#H‰Mä¶MÏÓmä¶M´Óeä¶H ‰M°¶H‰M¬‹Mè#H‰Mà¶M°Ómà¶M¬Óeà¶H ‰M¨¶H‰M¤‹Mèé˜üÿÿ´&·;éjôÿÿ¶M´‹}äÓï¶MœÓç¶M¬‰}è‹}ðÓï¶M°Óç¶H }è‹}ÐÓï¶H Óç¶M¤ }è‹}ìÓï¶M¨Óç }è‹}è‰>éÆõÿÿ¶¶MÏÀé¶ù¶Mäˆ >¶H Àé¶ù¶Mðˆ >¶H Àé¶ù¶Mìˆ >éˆõÿÿ·éðþÿÿ¶M´‹}äÓï¶MœÓç¶M¬‰}è‹}ðÓï¶M°Óç¶H }è‹}ÐÓï¶H Óç¶M¤ }è‹}ìÓï¶M¨Óç }è‹}è‰>éôôÿÿ¶MÏÀé¶ù¶Mäˆ >¶H Àé¶ù¶Mðˆ >¶H Àé¶ù¶Mìˆ >é¼ôÿÿ¶·‰Mè¶H ˆM϶ɉMœ¶H‰M´‹Mè#H‰Mä¶MÏÓmä¶M´Óeä¶H ‰M°¶H‰M¬‹Mè#H‰Mà¶M°Ómà¶M¬Óeà¶H ‰M¨¶H‰M¤‹Mè#H‰Mè¶M¨Ómè¶M¤Óeèésóÿÿ¶H ˆM϶ɉMœ¶H‰M´‹#H‰Mä¶MÏÓmä¶M´Óeä¶H ‰M°¶H‰M¬‹#H‰Mà¶M°Ómà¶M¬Óeà¶H ‰M¨¶H‰M¤‹ë‡¶NÁá‰Mä¶NÁáMä‰Mä¶Mäéÿÿÿ´&¼'U‰åWVSƒìd‹U‹‹Z ‹z‹J‰Eð‹B‰]”‹r…ÿ‰E‹B$‹R,¶Xˆ]×¶Zˆ]Ö„• ƒï‰ËƒÃ‰}œyIûƒá‹]ðÁÿ‰MĶMÖ‰}ȶ}׃}ĉM¼‰}À„îƒ}ÄtT‹}ȃ}ĉ}Ð„Š€}ׄV€}ׄ¡€}ׄ ]Àu¼€}×u&¶{¶KÁçÁá϶ Ïé?‹MÈ€}׉MÐtÚ€}×„æ €}ׄ]Àu¼€}×tt€}ׄ݀}ׄ<]Àu¼€}ׄ €}ׄù€}×t\ƒmЋMÐ]Àu¼…ÉGÿÿÿ‹}œ…ÿ„ƒ ]”uƒmœƒ}Ä…ÿÿÿ‹MÈ€}׉MÐuŒ¶{¶KÁçÁá϶ ÏéÅf·;‹H!ù‰Mð¶H Ómð¶HÓeð‹H!ù‰Mè¶H Ómè¶HÓeè‹H!ù‰Mà¶H Ómà¶HÓeà¶H #xÓï¶H Óç…ÿ„Hÿÿÿ€}Ö„±€}Ö„…€}Ö„Ö¶J ÇEìÇEØÇE܈M϶ɉM˜¶JÇEä‰M¸¶J ‰M´¶J‰M°¶J ‰M¬¶J‰M¨¶J ‰M¤¶J ‰M ‹Mð+Mä¯ÏÁÿÁéMä‰Mä‹Mè+MܯÏÁÿÁéM܉Mè‹Mà+MدÏÁÿÁéMØ€}Ö‰Mð„ì€}Ö„€}Ö…jþÿÿ‹}ä¶M¸Óï¶M˜Óç¶M°‰}ä‹}èÓï¶M´Óç·Mä ù‹}ìf‰Mè¶M Óï¶M¤Óç¶M¨f }è‹}ðÓï¶M¬Óçf }è·}èf‰>é þÿÿ‹;éeþÿÿf¶{¶KÁçÁá϶ ÏéIþÿÿ¶·;‹H!ù‰Mð¶H Ómð¶HÓeð‹H!ù‰Mè¶H Ómè¶HÓeè‹H!ù‰Mà¶H Ómà¶HÓeà¶H #xÓï¶H Óç…ÿ„hýÿÿ€}Ö„B€}Ö„ €}Ö„Ö¶J ÇEìÇEØÇE܈M϶ɉM˜¶JÇEä‰M¸¶J ‰M´¶J‰M°¶J ‰M¬¶J‰M¨¶J ‰M¤¶J ‰M ‹Mð+Mä¯ÏÁÿÁéMä‰Mä‹Mè+MܯÏÁÿÁéM܉Mè‹Mà+MدÏÁÿÁéMØ€}Ö‰Mð„J€}Ö„ç€}Ö…Šüÿÿ‹}ä¶M¸Óï¶M˜Óç¶M°‰}ä‹}èÓï¶M´Óç·Mä ù‹}ìf‰Mè¶M Óï¶M¤Óç¶M¨f }è‹}ðÓï¶M¬Óçf }è·}èf‰>é-üÿÿ‹;éeþÿÿf¶{¶KÁçÁá ¶;<9‹H!ù‰Mð¶H Ómð¶HÓeð‹H!ù‰Mè¶H Ómè¶HÓeè‹H!ù‰Mà¶H Ómà¶HÓeà¶H #xÓï¶H Óç…ÿ„Nûÿÿ€}Ö„] €}Ö„Ì €}Ö„ ¶J ÇEìÇEØÇE܈M϶ɉM˜¶JÇEä‰M¸¶J ‰M´¶J‰M°¶J ‰M¬¶J‰M¨¶J ‰M¤¶J ‰M ‹Mð+Mä¯ÏÁÿÁéMä‰Mä‹Mè+MܯÏÁÿÁéM܉Mè‹Mà+MدÏÁÿÁéMØ€}Ö‰Mð„6€}Ö„Ó€}Ö…púÿÿ‹}ä¶M¸Óï¶M˜Óç¶M°‰}ä‹}èÓï¶M´Óç·Mä ù‹}ìf‰Mè¶M Óï¶M¤Óç¶M¨f }è‹}ðÓï¶M¬Óçf }è·}èf‰>éúÿÿt&·‰Mì¶J ˆM϶ɉM˜¶J‰M¸‹Mì#J‰Mä¶MÏÓmä¶M¸Óeä¶J ‰M´¶J‰M°‹Mì#J‰MܶM´ÓmܶM°ÓeܶJ ‰M¬¶J‰M¨‹Mì#J‰MضM¬ÓmضM¨ÓeضJ ‰M¤¶J ‰M ‹Mì#J‰Mì¶M¤Ómì¶M Óeìéßüÿÿ‹;é»ýÿÿt&‹}ä¶M¸Óï¶M˜Óç¶M°‰}ä‹}èÓï¶M´Óç¶M  }ä‹}ìÓï¶M¤Óç¶M¨ }ä‹}ðÓï¶M¬Óç }ä‹}ä‰>é’ùÿÿ¶MÏÀé¶ù¶Mäˆ >¶J Àé¶ù¶Mèˆ >¶J Àé¶ù¶Mðˆ >éZùÿÿ¶·‰Mì¶J ˆM϶ɉM˜¶J‰M¸‹Mì#J‰Mä¶MÏÓmä¶M¸Óeä¶J ‰M´¶J‰M°‹Mì#J‰MܶM´ÓmܶM°ÓeܶJ ‰M¬¶J‰M¨‹Mì#J‰MضM¬ÓmضM¨ÓeضJ ‰M¤¶J ‰M ‹Mì#J‰Mì¶M¤Ómì¶M Óeìéßùÿÿ¶J ˆM϶ɉM˜¶J‰M¸‹#J‰Mä¶MÏÓmä¶M¸Óeä¶J ‰M´¶J‰M°‹#J‰MܶM´ÓmܶM°ÓeܶJ ‰M¬¶J‰M¨‹#J‰MضM¬ÓmضM¨ÓeضJ ‰M¤¶J ‰M ‹é`ÿÿÿt&·;‹H!ù‰Mð¶H Ómð¶HÓeð‹H!ù‰Mè¶H Ómè¶HÓeè‹H!ù‰Mà¶H Ómà¶HÓeà¶H #xÓï¶H Óç…ÿ„ˆ÷ÿÿ€}Ö„B€}Ö„€}Ö„í¶J ÇEìÇEØÇE܈M϶ɉM˜¶JÇEä‰M¸¶J ‰M´¶J‰M°¶J ‰M¬¶J‰M¨¶J ‰M¤¶J ‰M ‹Mð+Mä¯ÏÁÿÁéMä‰Mä‹Mè+MܯÏÁÿÁéM܉Mè‹Mà+MدÏÁÿÁéMØ€}Ö‰Mð„<€}Ö„à€}Ö…ªöÿÿ‹}ä¶M¸Óï¶M˜Óç¶M°‰}ä‹}èÓï¶M´Óç·Mä ù‹}ìf‰Mè¶M Óï¶M¤Óç¶M¨f }è‹}ðÓï¶M¬Óçf }è·}èf‰>éMöÿÿ¶NÁá‰Mì¶NÁáMì‰Mì¶Mìéýÿÿ´&‹;é<þÿÿƒÄd[^_]öJ ˆM϶ɉM˜¶J‰M¸‹#J‰Mä¶MÏÓmä¶M¸Óeä¶J ‰M´¶J‰M°‹#J‰MܶM´ÓmܶM°ÓeܶJ ‰M¬¶J‰M¨‹#J‰MضM¬ÓmضM¨ÓeضJ ‰M¤¶J ‰M ‹éÅûÿÿ‹}ä¶M¸Óï¶M˜Óç¶M°‰}ä‹}èÓï¶M´Óç¶M  }ä‹}ìÓï¶M¤Óç¶M¨ }ä‹}ðÓï¶M¬Óç }ä‹}ä‰>é[õÿÿ´&¶MÏÀé¶ù¶Mäˆ >¶J Àé¶ù¶Mèˆ >¶J Àé¶ù¶Mðˆ >éõÿÿ¶NÁá‰Mì¶NÁáMì‰Mì¶Mìé‰úÿÿ¶‹}ä¶M¸Óï¶M˜Óç¶M°‰}ä‹}èÓï¶M´Óç¶M  }ä‹}ìÓï¶M¤Óç¶M¨ }ä‹}ðÓï¶M¬Óç }ä‹}ä‰>é‚ôÿÿ¶MÏÀé¶ù¶Mäˆ >¶J Àé¶ù¶Mèˆ >¶J Àé¶ù¶Mðˆ >éJôÿÿ¶·;éOøÿÿ¶NÁá‰Mì¶NÁáMì‰Mì¶Mì‰Mì¶J ˆM϶ɉM˜¶J‰M¸‹Mì#J‰Mä¶MÏÓmä¶M¸Óeä¶J ‰M´¶J‰M°‹Mì#J‰MܶM´ÓmܶM°ÓeܶJ ‰M¬¶J‰M¨‹Mì#J‰MضM¬ÓmضM¨ÓeضJ ‰M¤¶J ‰M ‹Mì#J‰Mì¶M¤Ómì¶M Óeìémüÿÿ·éVÿÿÿ¶J ˆM϶ɉM˜¶J‰M¸‹#J‰Mä¶MÏÓmä¶M¸Óeä¶J ‰M´¶J‰M°‹#J‰MܶM´ÓmܶM°ÓeܶJ ‰M¬¶J‰M¨‹#J‰MضM¬ÓmضM¨ÓeضJ ‰M¤¶J ‰M ‹éWÿÿÿ‹}ä¶M¸Óï¶M˜Óç¶M°‰}ä‹}èÓï¶M´Óç¶M  }ä‹}ìÓï¶M¤Óç¶M¨ }ä‹}ðÓï¶M¬Óç }ä‹}ä‰>éUòÿÿ´&¶MÏÀé¶ù¶Mäˆ >¶J Àé¶ù¶Mèˆ >¶J Àé¶ù¶Mðˆ >éòÿÿ·‰Mì¶J ˆM϶ɉM˜¶J‰M¸‹Mì#J‰Mä¶MÏÓmä¶M¸Óeä¶J ‰M´¶J‰M°‹Mì#J‰MܶM´ÓmܶM°ÓeܶJ ‰M¬¶J‰M¨‹Mì#J‰MضM¬ÓmضM¨ÓeضJ ‰M¤¶J ‰M ‹Mì#J‰Mì¶M¤Ómì¶M Óeìé›öÿÿv¶J ˆM϶ɉM˜¶J‰M¸‹#J‰Mä¶MÏÓmä¶M¸Óeä¶J ‰M´¶J‰M°‹#J‰MܶM´ÓmܶM°ÓeܶJ ‰M¬¶J‰M¨‹#J‰MضM¬ÓmضM¨ÓeضJ ‰M¤¶J ‰M ‹é]ÿÿÿ¶NÁá‰Mì¶NÁáMì‰Mì¶Mìé²þÿÿ´&U‰åƒì‹E‰]ô‰uø‰}ü‹X‹H0‹s‹…ö‹Ru,‹öÄtU€z¸ðiDº@¦D‹]ô‹uøE‹}ü‰ì]ô&¶J€ùt\€ù„¸ð´D€ùºÀ`DD‹]ô‹uø‹}ü‰ì]ör‰ð<„’<„:‰ò¸@˜D‹]ô€úº0ZD‹uøD‹}ü‰ì]À{¸ð´Du²þÿuª{ÿu¡{ÿ„k{ÿ¸ð´Du†ƒzu€‹R¸@‘Dúà„lÿÿÿúà¸ð´DºÀ”DDÂéTÿÿÿf‹Y¸@˜D…Û„Bÿÿÿ‹Rúà„ïúà…'ÿÿÿèÀ»þÿ‰Â¸ ŠD…ÒºPDDÂé ÿÿÿ‹J¸ð´D9K…ûþÿÿ‹z9{…ïþÿÿ‹J9K…ãþÿÿ€{…Ùþÿÿf÷C uf÷C u €{ „Á¸ð´DþÿºðDDÂé§þÿÿt&‹K¸@˜D;J…‘þÿÿ‹s;r……þÿÿ‹z9{…yþÿÿ€{…oþÿÿf÷C uöC tG ñ¸@˜D Kº|DùÿÿÿDÂéDþÿÿèݺþÿ‰Â¸ð‡D…Òº`DDÂé)þÿÿƒz…‹þÿÿéšþÿÿ賺þÿ‰Â¸€vD…Ò…þÿÿ‹K‹sëè׺þÿ‰Â¸ƒD…Ò…êýÿÿ胺þÿ‰Â¸yD…Ò…Öýÿÿ‹séÿÿÿU‰åWVSƒì‹E ‹MÁà‰ÂÁú÷}‰Eì‹E…À~U1ö1Ò¸v=ÿÿ~/-‰ÇÁï‰Eð\9‰È¶¶ƒÀ9Øuö‹EðL9Áç)ø‹]ˆ3ƒÆ;utEìë·ƒÄ[^_]Ãë U‰åWVSƒì ‹E ‹]‹M‹uÁà‰ÂÁú÷û…Û‰Eè~Q¿1Ò‰ø‰÷‰]ð=ÿÿ~+-‰ÆÁî‰Eì\q‰Èf·ƒÀ9Øuö‹EìLqÁæ)ðf‰ƒmðtƒÇEèë½ƒÄ [^_]ÃU‰åWVSƒì ‹E ‹]‹M‹uÁà‰ÂÁú÷û…Û‰Eè~O¿1Ò‰ø‰÷‰]ð=ÿÿ~*-‰ÆÁî‰Eì\±‰Èf‹ƒÀ9Øu÷‹EìL±Áæ)ð‰ƒmðtƒÇEèë¿ƒÄ [^_]ÃvU‰åWVSƒì ‹E ‹MÁà‰ÂÁú÷ù…ɉEè~m‰Mð1Û1É1Ò¸f=ÿÿ~:-‹U‰ÇÁï‰Eìt‰Ð¶¶H¶XƒÀ9ÆuîDE‹EìÁç)ø‹uˆˆNˆ^ƒmðt ƒÆ‰uEèë£ƒÄ [^_]Ãt&¼'U‰åWVSƒìl‹U‹B¶HˆM»¶Ù‹M‰]´¶X‹Q8Z…‚‹U …Ò„ÿ‹E ·f…Òˆ@‰Á·@f…Àˆ1·I¿Ò‹];S‹M ˜·Q;C ‹E…À„Ô‹U·f…Àˆ‰Ñ·Rf…Òˆò·I˜‹];CÞ‹M¿Ò·A;S È‹U‹z…ÿu÷@ÇE¨t‹M‰ $è7Ýüÿ…ÀˆÄÇE¨‹]‹s…ö…“÷@ÇE¤…€‹U ‹]·B·K‹] Áà‰ÂÁú÷ù‹U¿RÑ9ʉUĉM°‰E¬·C›˜‰E¼ÇEÀÇEÈë €}»„+ƒEÄ‹MÄ9M°Žm‹]¬]È‹]‹U·K¿¯MįE´ÁK}Èÿÿ~L‹]‹E ‹}¼·s‹]È¿¯U´¯þë‰ØÁè¯ð42‹U‰uÀ‹RUÀ‹U¼TÁà)ÉU¼‰]È€}»„!†aÿÿÿ€}»„©€}»…Wÿÿÿ‹U ‹]·B·[Áà‰ÂÁú÷û…Û‰]Ô‰EÌ„1ÿÿÿ‹uÀ1Ò¸´&=ÿÿ~.-‰ÇÁï‰EÐ\¾‰ð¶‹ƒÀ9Øu÷‹EÐt¾Áç)ø‰ƒmÔ„ßþÿÿƒÁEÌë·‹E‰$è|Ûüÿ…ÀˆÇE¤éaþÿÿ‹]‹U ·C‰L$‹MÀ‰D$ ·B‰ $‰D$èsüÿÿƒEÄ‹MÄ9M°“þÿÿ‹M¨…É…!‹U¤1À…Òt‹U‰E ‰$èÛüÿ‹E ƒÄl[^_]ö‹U ‹]·B·[Áà‰ÂÁú÷û…Û‰]Ô‰EÌ„*þÿÿ‹uÀ1Ò¸=ÿÿ~/-‰ÇÁï‰EÐ\~‰ð¶·ƒÀ9Øuö‹EÐt~Áç)øf‰ƒmÔ„ÝýÿÿƒÁEÌ뵋E‹U ·X·BÁà‰ÂÁú÷û…Û‰EÌ„²ýÿÿ‹uÀ\ÿ1Ò‰]и=ÿÿ~/-‰ÇÁï‰EÔ\>‰ð¶¶ƒÀ9Øuö‹EÔt>Áç)øˆ;MЄ_ýÿÿƒÁEÌë·‹E‰$èlÚüÿéÏþÿÿ‹]fÇEàfÇEâ‹Cf‰Eä‹C f‰EæEà‰E é!üÿÿ‹]fÇEØfÇEÚ‹Cf‰EÜ‹C f‰EÞE؉EéLüÿÿÇ$­ÝLè«óüÿƒÈÿé…þÿÿÇ$ÌÝLè—óüÿƒÈÿéqþÿÿÇ$ˆÝLèƒóüÿƒÈÿé]þÿÿÇ$ðÝLèoóüÿƒÈÿéIþÿÿƒ}¨t ‹U‰$è¶ÙüÿÇ$ÞLèJóüÿƒÈÿé$þÿÿU‰åƒì‰]ø‹E$‹] ‹U‹M‰uü¯ØÇEð‰]ô‹](4XÁæ‰u(4™‹]jS‹]‰\$[S‹\$n [ïÿn`ÏbÉù ¸÷KoÁÕøKÕ øKqàqáobÓoâÛøKÛ%Ð÷KqÒoêoôíéíñgígöïÿ`õn `ÏbÉù ¸÷KoéÕ-øKÕ øKqåqáoÚoüíÝíýíØíøgÛgÿ`ûoÚoìíÙíégÛgí`ëïÒïäoÎoÝ`Ì`ÜoÑoÃaÙiÂïÒoÏ`ÑaÔëÓïÒ`áiâëàaïÒhòhéoÍaÎiînƒÂIvƒ$ƒÃƒEð9EðŒÈþÿÿÂM(u(ÇEð;UôŒ°þÿÿƒÄw‹]ø‹uü‰ì]Éö¼'U‰åƒì‰]ø‹E$‹] ‹U‹M‰uü¯ØÇEð‰]ô‹](4Xö‰u(4Y‹]jS‹]‰\$[nïÿS‹\$n [`Ç`Ïù¸÷Kù ¸÷KoÐoÙÕÀ÷Ko2ÕÈ÷KÛ5Ð÷KÕØ÷Ko:Õ à÷Kq×Õ5è÷KýÓÕ=è÷Koæýðoìýáýêqäoßqåýøqægägígö`ä`íÛ%ð÷Kqõ`öÛ-ø÷KÛ5ð÷KëåqÖ oëýÙýêqãëæqåo4qçgÛgígÿÛ5Ð÷K`Û`íÕ5è÷K`ÿqõÛ=ð÷KÛð÷Kq× Û-ø÷Këßo<ëÝq×oìaãÕ=è÷Kië!ioæýðoìýáýêqäoßqåýøqæoÃgäýÙgíýÂgö`ä`í`öqõÛ%ð÷KqãqàÛ5ð÷KÛ-ø÷KqÖ ëåqçëægÛgÀgÿ`Û`À`ÿÛð÷KÛ=ð÷Kqðq× Ûø÷KëßëØoìaãië&nƒEðƒÂƒ$ƒÃ9EðIvŒûýÿÿÂM(u(ÇEð;UôŒãýÿÿƒÄw‹]ø‹uü‰ì]Ãÿ%)Nÿ%)Nÿ% )Nÿ%ü(Nÿ%)Nÿ%)Nÿ% )Nÿ%$)Nÿ%)Nÿ%)Nÿ%)Nÿ%ì(Nÿ%ð(Nÿ%è(Nÿ%ø(Nÿ%ô(Nÿ%0(Nÿ%<(Nÿ%Ð(Nÿ%¼(Nÿ% (Nÿ%|(Nÿ%((Nÿ%(Nÿ%à(Nÿ%h(Nÿ%ˆ(Nÿ%´(Nÿ%D(Nÿ%(Nÿ%à'Nÿ%(Nÿ%ì'Nÿ%ð'Nÿ%d(Nÿ%˜(Nÿ%¤(Nÿ%Œ(Nÿ%\(Nÿ%X(Nÿ%H(Nÿ%Ø'Nÿ%¬(Nÿ%Ì(Nÿ%è'Nÿ%Ø(Nÿ%(Nÿ%„(Nÿ%Ô(Nÿ%l(Nÿ%”(Nÿ%(Nÿ%Ü(Nÿ%,(Nÿ%œ(Nÿ%`(Nÿ%(Nÿ%Ü'Nÿ%T(Nÿ%Ä(Nÿ%¸(Nÿ%À(Nÿ%(Nÿ%4(Nÿ%$(Nÿ%(Nÿ%ô'Nÿ%°(Nÿ% (Nÿ%ø'Nÿ%¨(Nÿ%È(Nÿ%ü'Nÿ% (Nÿ%x(Nÿ%ä'Nÿ%8(Nÿ%L(Nÿ%@(Nÿ%p(Nÿ%t(Nÿ%€(Nÿ%P(Nÿ%@%Nÿ% %Nÿ%<%Nÿ%%Nÿ%%Nÿ%\%Nÿ%8%Nÿ%T%Nÿ%4%Nÿ%L%Nÿ%D%Nÿ%%Nÿ%$%Nÿ%%Nÿ%,%Nÿ%0%Nÿ%%Nÿ%H%Nÿ%%Nÿ%(%Nÿ%X%Nÿ%%Nÿ%P%Nÿ% %NU‰åƒì ƒúA‰|$‹}‰$‰t$v1ۉ؋t$‹$‹|$‰ì]Ãt&ÿ$•`M1Û…ÿtÞ‹p1Û;p}ÔvƒÆÁãX‰p…ÛtÁ‰‰K‰{ë·…ÿt±…ÉuÑt&ë§1Û…Ét£‹p1Û;p}™ëö¿U‰åƒì‰$‰t$‹p;p}vƒÆÁãX‰p…Ûu1Û‹t$‰Ø‹$‰ì]Ã…Òtí…Étélj؉S‰K‹$‹t$‰ì]ô&U‰åW1ÿV‰ÆS‹¶€ùnt4AÐ< w<‹1ÀƒÂ¾É€DAЉ¶ YЀû væ‰Â÷Ú…ÿEÂ[^_]ÃPf¿‰¶Hë½1Àëßt&U‰åƒì …Ò‰$‰Ã‰t$‰|$u‹@ 1ö¶„ÒtƒÀ¾Ò‰C ƒúht@1öƒúvt‰ð‹$‹t$‹|$‰ì]ô&{ ‰øèFÿÿÿ‹C €8_uÖƒÀ‰C ‰øè1ÿÿÿëC è'ÿÿÿ‹C 1ö€8_uµƒÀf¾‰C ë©U‰åW‰ÏV‰ÖS‰Ãƒì‹@ ¶ë:„ÒuBuØ‹ƒˆUÜÆƒÇD$ÿ‰D$‹Eà‰$ÿ“ ¸1ɶUÜë¨vƒÄ,[^_]ô&U‰åƒì‰]ô‰Ã@ ‰uø‰}üèGúÿÿ1É…À~k‹S ‹s‰Uð)Ö9ðY‰ÑÁöC‰K t €9$uƒÁ‰K ƒø ~.‹uð¿pM¹ó¦u‹Uð‹uð¶JƒÆ€ù_t€ù.u-€~Nt.‹Uð‰Á‰Øè{ùÿÿ‰Á‰K,‹]ô‰È‹uø‹}ü‰ì]ô&€ù$uÔëÌ‹S0¹ƒÂ)‰؉S0ºyMè=ùÿÿ‰ÁëÀ‰ö¼'U‰åƒì(‰uø‹u‰}ü‹} ‰]ô‹F‹^D9Øv6‹V …Òt ‹]ô‹uø‹}ü‰ì]Ã…ÛuWƒø³wP‰\$‹‰$è …ÀtN‰‰^‹F …ÀuÊ‹‹UF‰|$‰T$‰$舋øFÆ~‹]ô‹uø‹}ü‰ì]ÃÛ9ØvªÛ9Øwôfë ‹‰$èDÇÇFÇFÇF é^ÿÿÿt&U‰åƒìH‰]ô‰Ã‰uø‰}ü‹H ¶‰~Œòþÿÿ1öé~ýÿÿ¶¼'U‰åWVS‰Ãƒì,‹p ‹x,1À€>ItƒÄ,[^_]ÃN‰K ¶V€úEu#ƒÆ‰Ø‰s 1ɺ+Ç$èêÿÿƒÄ,[^_]ÃÇEäuäë@f€úXt[€úItF‰Øèòÿÿ…Àt`‰Áº+‰ØÇ$èÆéÿÿ…À‰tE‹K ¶€úEtMp€úLu½‰Øè¦ ëÅt&‰ØèIÿÿÿ븴&ƒÁ‰Ø‰K è³ ‹S €:Et ƒÄ,1À[^_]ÉS 뉃Á‹Eä‰{,‰K ƒÄ,[^_]Ãt&U‰åƒìH‰]ô‰Ã‰uø‰}ü‹P ¶ƒèL<v$‰Øè üÿÿ‰Ç‹C €8I„­‰ø‹]ô‹uø‹}ü‰ì]öÀÿ$…”Mt&€zt„Ö1Ò‰Øèmìÿÿº‰Ç‹C €8IuÁ…Ò„f‰Øèþÿÿ‰ùº‰$‰Øè¾èÿÿ‰Çë‰Øè“ûÿÿ‹]ô‹uø‰Ç‰ø‹}ü‰ì]ÃfƒÂ‰Ø‰S 1Ò1ÿèï‰Æ‹C €8E…dÿÿÿP‰S ¶P€ús„£€úd¹ÿÿÿÿ„y‰Ø‰MÐèÿÿÿ‹MÐ…À‰Ât&‹ƒø>tƒø@t‰Ø1ÿ‰UÌè…ëÿÿ‹UÌ‹MÐ…À„ ÿÿÿƒùÿ‰Ðt)‹{1À;{}ƒÇÁàC‰{…Àt Ç?‰H‰P‰$‰ñº‰Øèæçÿÿ‰ÇéÂþÿÿƒÂ¹‰S ‰Ø1ÿUäè¨éÿÿ…À‰EÔ„ þÿÿ‹C ¶0‰ò„Ò„VŸ€úv%VЀú v‰ò€úDt€úCt€úLt €úU…£v‰ØèYúÿÿ…ÿ„ẉ$‰ù‰Øè`çÿÿ‰Ç‰ð1öé™þÿÿ¶ƒÂ‰Ø‰S èåÿÿ‰Æ‰Øèªïÿÿ‰Ç‹C €8I„1‰<$‰ñº‰Øè«Üÿÿ‰ÆéWþÿÿt&‹Mä‹I‰Mà‹Mà‹A 닉Øè¸ýÿÿ‰Æ‰Øè¯ýÿÿ‰Ç‰Øè¦ýÿÿ‰ùº4‰$‰ØèeÜÿÿ‰ñº3‰$‰ØèTÜÿÿ‹Mäº2‰$‰ØèBÜÿÿ‰Æéîýÿÿ‹Uä¿_M‹B‹‰Ø‰UÜèTýÿÿ‹Uܹ‰Ö‰Eàó¦t}¿bM¹‰Öó¦t¿eM¹‰Öó¦…„‰ØèÈîÿÿ‰Æ‹C €8I„}‹Màº1‰Ø‰4$èÈÛÿÿ‹Mäº0‰$‰Øè¶Ûÿÿ‰Æébýÿÿƒú.u‹C €8_td‰ØèËüÿÿéCþÿÿ‰Øèo‰Æë±‰Øè4ñÿÿ‰ùº‰$‰ØèsÛÿÿ‰$é²þÿÿ‰Øè”üÿÿ‰Æéƒÿÿÿ‰Øèñÿÿ‰ñº‰$‰ØèEÛÿÿ‰ÆédÿÿÿƒÀ‰C ‰ØèéÙýÿÿ¶¿U‰åVS‰Ãƒì ‹@ ÇEôuô€8Eu'ƒÀ1ɉC º*‰ØÇ$èéÚÿÿƒÄ [^]Ãfp‰Øèüÿÿ…Àt3‰Áº*‰ØÇ$è½Úÿÿ…À‰t‹S €:Euσ‹Eô‰S ƒÄ [^]ÃƒÄ 1À[^]öU‰åWVS‰Ã윅҉U”t‹…Òu‹U”‹ƒøAvǃÄœ[^_]Ãfÿ$…(M‹M”‰Ø‹Qè¬ÿÿÿëÝ‹“úÿ„í&B=ÿÆD:‰ƒƃ:„œ&PÆD:‰“ƃ:v‹}”‰Ø‹WèSÿÿÿë„‹ƒ¾ƒM{ë!‰ÁƒÀƒÆþŒMˆT ‰ƒˆ“tÀ=ÿ¶uÖ‹ƒƃˆU€ÇD$ÿ‰D$‰<$ÿ“ ¸1ɶU€ë©‹ƒ¾ƒM{ë(t&‰ÁƒÀƒÆþŒMˆT ‰ƒˆ“„n=ÿ¶uÒ‹ƒƃˆU€ÇD$ÿ‰D$‰<$ÿ“ ¸1ɶU€ë¥‹E”‹Pƒ:.„ò‰ØèJ:‹}”‰Ø‹Wèí:é{þÿÿ‹U”‹Bƒ81…bþÿÿ‹M”‹Qƒ:,„1"‹P‰Ø¿Mè»:‹E”¹‹P‹B‹‰E‰Æó¦…; ‹ƒ=ÿ„“&ÆD[ƒÀƃ[‹U”‰ƒ‹B‹P‰ØèÈýÿÿ‹ƒ=ÿ„1&ÆD]ƒÀ‰ƒƃ]‹}”‹Gƒ8,…Æýÿÿ‹@ƒx…¹ýÿÿ‹@€8>…­ýÿÿ»ÿ„¸&‹ƒƃ)ÆD)ƒÀ‰ƒé}ýÿÿ‹}”‰Ø‹Wè Ýÿÿ…À„;$ƒ8+…_ýÿÿ‹H1ÿ…ÉuéQýÿÿƒ8+u‹P…Òt ‰Ï‹@O…Àuè‹U”C1ö‰EŒ‰M‹R‰U”ë ƒÆ;uýÿÿ‹U”‰Ø‰³ èÔüÿÿ9÷~à‹“úÿ„ÛB=ÿÆD,‰ƒƃ,„ŠPÆD ‰“ƃ ë—‹U”‹Bƒ83…¡üÿÿ‹Pƒ:4…•üÿÿ‹P‰Øè9‹M”‰Ø‹QèE8‹}”‹G‹@‹P‰Øèâ8‰ØºMè¶Üÿÿ‹G‹@‹P‰ØèÆ8éTüÿÿ‹ƒ¾ëM{ë$‰ÁƒÀƒÆþùMˆT ‰ƒˆ“„ß=ÿ¶uÒ‹ƒƃˆU€ÇD$ÿ‰D$‰<$ÿ“ ¸1ɶU€ë¥‹M”1ö‹Qƒ:#„ß‹ƒ=ÿH„dÆD(‰Ø‰‹ƃ(èrûÿÿ‹ƒ=ÿP„nÆD)ƃ)‹M”‰“ƒ96„÷ƒþ„‹E”‹P‰Øè*ûÿÿéXûÿÿ‹ƒ¾M{ë)t&‰ÁƒÀƒÆþ›MˆT ‰ƒˆ“„3ûÿÿ=ÿ¶uÒ‹ƒƃˆU€ÇD$ÿ‰D$‰<$ÿ“ ¸1ɶU€ë¥‹E”¶P‹ƒ=ÿH„WˆT‰‹ˆ“é³úÿÿ‹U”u ‹BÇD$ M‰4$‰D$èSâ‰ñ‰u”‹ƒÁ‚ÿþþþ÷Ò!Ð%€€€€tê‰ÂÁê©€€DÂQEÑÀƒÚ)ò‰U”„XúÿÿK‹ƒ1ÿ‰Më&t&‰ÁƒÀˆT ƒÇˆ“9}”‰ƒ†"úÿÿ=ÿ¶>uÔ‹ƒƃˆU€ÇD$ÿ‰D$‹E‰$ÿ“ ¸1ɶU€ë¤‹ƒ¾œM{ë$‰ÁƒÀƒÆþ¦MˆT ‰ƒˆ“„=ÿ¶uÒ‹ƒƃˆU€ÇD$ÿ‰D$‰<$ÿ“ ¸1ɶU€ë¥‹ƒ¾§M{ë$‰ÁƒÀƒÆþÄMˆT ‰ƒˆ“„/=ÿ¶uÒ‹ƒƃˆU€ÇD$ÿ‰D$‰<$ÿ“ ¸1ɶU€ë¥‹}”‰Ø‹WèÂøÿÿ‹W‰Øè¸øÿÿéæøÿÿ‹ƒ¾ÅM{ë'v‰ÁƒÀƒÆþáMˆT ‰ƒˆ“„²=ÿ¶uÒ‹ƒƃˆU€ÇD$ÿ‰D$‰<$ÿ“ ¸1ɶU€ë¥‹ƒ¾âM{ë$‰ÁƒÀƒÆþêMˆT ‰ƒˆ“„T=ÿ¶uÒ‹ƒƃˆU€ÇD$ÿ‰D$‰<$ÿ“ ¸1ɶU€ë¥‹ƒ¾oM{ë$‰ÁƒÀƒÆþzMˆT ‰ƒˆ“„ã÷ÿÿ=ÿ¶uÒ‹ƒƃˆU€ÇD$ÿ‰D$‰<$ÿ“ ¸1ɶU€ë¥‹ƒ¾{M{ë$‰ÁƒÀƒÆþƒMˆT ‰ƒˆ“„P=ÿ¶uÒ‹ƒƃˆU€ÇD$ÿ‰D$‰<$ÿ“ ¸1ɶU€ë¥‹ƒ¾‰M{ë$‰ÁƒÀƒÆþ¡MˆT ‰ƒˆ“„M=ÿ¶uÒ‹ƒƃˆU€ÇD$ÿ‰D$‰<$ÿ“ ¸1ɶU€ë¥‹ƒ¾ÔM{ë$‰ÁƒÀƒÆþéMˆT ‰ƒˆ“„p=ÿ¶uÒ‹ƒƃˆU€ÇD$ÿ‰D$‰<$ÿ“ ¸1ɶU€ë¥‹ƒ¾êM{ë$‰ÁƒÀƒÆþûMˆT ‰ƒˆ“„=ÿ¶uÒ‹ƒƃˆU€ÇD$ÿ‰D$‰<$ÿ“ ¸1ɶU€ë¥ö…w‹M”‹E”‹I‹x…ɉM„³õÿÿS‹ƒ1ö‰U”ë!‰ÁƒÀˆT ƒÆˆ“9u‰ƒ†‚õÿÿ=ÿ¶7uÔÆƒ‹ƒ‹M”ˆU€ÇD$ÿ‰D$‰ $ÿ“ ¸1ɶU€ë¤‹M”‰Ø‹Qèõÿÿö„Oõÿÿ‹ƒ=ÿP„gÆD.‰“ƃ.énõÿÿ‹U”‹ƒǃ‹z‰Eˆ…ÿ„Öôÿÿ‹u ‹‹ÇE ‰³ƒèƒø‰}¤ÇE¨‰M‰M¬‡‡E°¹‹…ÿ„ôÿÿƒù„†ôÿÿ‹“‰xÇ@‰‰ÊƒÁÁ≓‹U‰P ‹ƒÀƒêƒúv¶‹ƒø„ôƒø…ž‹Wƒ:?„y‹ƒèƒø‡„ƒù‡ôÿÿAÿ‰EŒÁà‰}„‹}Œ‰tÿÿÿëƒÀƒù‡Åyÿ‹XÁç<>‰x‰ÏƒÁÁç‰X‹X<>‰PÇ@‰X‹X ‰X‹tÿÿÿ‰»‹}‰x ‹R‹:ƒïƒÿv¢‹}„‹E”‹P‰Ø‰M€èeóÿÿ‹M€ƒ?„á…É„¸ƒé‰ÈÁàt‹{‰}”‰Ï…Àu0‹ƒ=ÿ„¼ÆD ƒÀƃ ‹Vü‰ƒ‰Øè÷ƒî…ÿ„c‹ƒï…Àuì뺋»‹E”öǃ‰}‹Pt‹2…öu ƒz„‰Øè¼òÿÿ€»<„‹ƒ=ÿP„ÜÆD<‰ØÆƒ<‹}”‰“‹Wè|òÿÿ€»>„­‹ƒ=ÿP„ÍÆD>‰“ƃ>‹E‰ƒénòÿÿ‹ƒ¾°M{ë$‰ÁƒÀƒÆþÂMˆT ‰ƒˆ“„= =ÿ¶uÒ‹ƒƃˆU€ÇD$ÿ‰D$‰<$ÿ“ ¸1ɶU€ë¥‹ƒ¾ÃM{ë$‰ÁƒÀƒÆþÓMˆT ‰ƒˆ“„Þñÿÿ=ÿ¶uÒ‹ƒƃˆU€ÇD$ÿ‰D$‰<$ÿ“ ¸1ɶU€ë¥‹ƒ¾¢M{ë$‰ÁƒÀƒÆþ¯MˆT ‰ƒˆ“„K =ÿ¶uÒ‹ƒƃˆU€ÇD$ÿ‰D$‰<$ÿ“ ¸1ɶU€ë¥‹³…ö„ñÿÿ‹F‹M”‹@‹Q…Àué-…ÒŽp‹@ƒê…À„ƒ8+tåéÑðÿÿ‹ƒ¾hM{ë$‰ÁƒÀƒÆþnMˆT ‰ƒˆ“„„ =ÿ¶uÒ‹ƒƃˆU€ÇD$ÿ‰D$‰<$ÿ“ ¸1ɶU€ë¥‹ƒ=ÿP„ÆD~ƃ~‹E”‰“‹P‰Øèðÿÿé3ðÿÿö…ü ‹U”‹B‹H‹8…ɉM”„ðÿÿS‹ƒ1ö‰Uë"‰ÁƒÀˆT ƒÆˆ“9u”‰ƒ†âïÿÿ=ÿ¶7uÔÆƒ‹ƒ‹MˆU€ÇD$ÿ‰D$‰ $ÿ“ ¸1ɶU€ë¤‹ƒ¾üM{ë$‰ÁƒÀƒÆþMˆT ‰ƒˆ“„‚ïÿÿ=ÿ¶uÒ‹ƒƃˆU€ÇD$ÿ‰D$‰<$ÿ“ ¸1ɶU€ë¥‹ƒ¾M{ë$‰ÁƒÀƒÆþ&MˆT ‰ƒˆ“„ï=ÿ¶uÒ‹ƒƃˆU€ÇD$ÿ‰D$‰<$ÿ“ ¸1ɶU€ë¥‹ƒ¾'M{ë$‰ÁƒÀƒÆþ:MˆT ‰ƒˆ“„‘=ÿ¶uÒ‹ƒƃˆU€ÇD$ÿ‰D$‰<$ÿ“ ¸1ɶU€ë¥‹ƒ¾;M{ë$‰ÁƒÀƒÆþSMˆT ‰ƒˆ“„2îÿÿ=ÿ¶uÒ‹ƒƃˆU€ÇD$ÿ‰D$‰<$ÿ“ ¸1ɶU€ë¥‹ƒ¾TM{ë$‰ÁƒÀƒÆþeMˆT ‰ƒˆ“„Ÿ=ÿ¶uÒ‹ƒƃˆU€ÇD$ÿ‰D$‰<$ÿ“ ¸1ɶU€ë¥‹E”‹U”‹@‹z…À‰E„[íÿÿK‹ƒ1ö‰M”ë!‰ÁƒÀˆT ƒÆˆ“9u‰ƒ†*íÿÿ=ÿ¶7uÔ‹ƒƃˆU€ÇD$ÿ‰D$‹E”‰$ÿ“ ¸1ɶU€ë¤‹»…ÿt,‰ú‹J…Éu‹J‹ qéƒþw9È„Öìÿÿ‹…ÒuÞë‹»‰} ‹}”E ‰ƒ‹ƒÇE¨‹W‰E¬‰Ø‰}¤èUìÿÿ‹E¨…Àu ‰ú‰Øè5‹E ‰ƒéjìÿÿ‹ƒ‹U”ÇE¨‰E E ‰ƒ‹ƒ‰U¤‹R‰E¬‰Øèìÿÿ‹U¨…Òu¹‹U”‰Øèäë­‹}”fƒ …­ ‹E”‹Pz!M„! ‰ØèÊëÿÿ‹“úÿB„>ÆD ‰ƒƃ ‹U”¾mM{fƒz„‘¾fM{ë'v‰ÁƒÀƒÆþlMˆT ‰ƒˆ“„ëÿÿ=ÿ¶uÒ‹ƒƃˆU€ÇD$ÿ‰D$‰<$ÿ“ ¸1ɶU€ë¥‰ÁƒÀƒÆþsMˆT ‰ƒˆ“„/ëÿÿ=ÿ¶uÒ‹ƒƃˆU€ÇD$ÿ‰D$‰<$ÿ“ ¸1ɶU€ë¥‹M”‹Q…Òt‰Øè¯êÿÿ‹}”‹G…À„Ôêÿÿ‹“úÿ„cB=ÿÆD,‰ƒƃ,„pÆD ƃ ‹E”‰³‹P‰ØèMêÿÿ9³…têÿÿƒî‰³éfêÿÿ‹ƒ¾zM{ë'v‰ÁƒÀƒÆþ‚MˆT ‰ƒˆ“„Ì=ÿ¶uÒ‹ƒƃˆU€ÇD$ÿ‰D$‰<$ÿ“ ¸1ɶU€ë¥ö …_‹}”‹W…Ò„‹ƒÇE¨‰E E ‰ƒ‹E”‰E¤‹ƒ‰E¬‰Øèzéÿÿ‹u¨‹E …ö‰ƒ…™éÿÿö …éÿÿ‹“1Àúÿ„ÆD ƒÂ‰“ƃ …À…_éÿÿ‹ƒ‹M”‹U”‰$‰ØƒÁƒÂè é>éÿÿ‹“u ‹M”‰÷‹ƒ‰³…Ò‰Uˆ‰U ‰M¤ÇE¨‰E¬„¢‹B‹ƒèƒø‡‘‰Ð¹ÇE‰]„‰uŒë ‹P‹ƒêƒúwS‹X…ÛuFƒù‡½ ‹‰ÊƒÁÁât ‰\ ‹X‰^‹X‰^‹X ‰^ ‰| ‹}Œ׋U„‰ºÇ@‹…Àu ‹]„‹uŒ‰M‹M”‰Ø‹Qè9èÿÿ‹M¨‹}ˆ…ɉ»…Xèÿÿƒ}t.‹}ƒï‰øÁàtëƒï‹‰Øƒîèïƒÿu싃‰Eˆ‹U”‰Ø‹MˆƒÂèQéèÿÿ‹}”‰Ø‹WèÏçÿÿéýçÿÿ‹E”‹P‰Øè½çÿÿéëçÿÿ‹M”‰Ø‹Qè«çÿÿ‹“úÿ„ B=ÿÆD)‰ƒƃ)„! PÆD#u Æƒ#‹}”‰“‹GÇD$ M‰4$ƒÀ‰D$è4ωñ‰u”‹ƒÁ‚ÿþþþ÷Ò!Ð%€€€€tê‰ÂÁê©€€DÂQEÑÀƒÚ)ò‰U”tmS‹ƒ1ÿ‰Uë‰ÁƒÀˆT ƒÇˆ“9}”‰ƒvM=ÿ¶>uØÆƒ‹ƒ‹MˆU€ÇD$ÿ‰D$‰ $ÿ“ ¸1ɶU€ë¨‹ƒ´&=ÿP„VÆD}‰“ƃ}éžæÿÿ‹M”‰Ø‹Qè^æÿÿ‹ƒ=ÿP„ÛÆD)‰“ƃ)éfæÿÿv‹M”‹Q‹J¶ ƒéa€ùw&=ÿ„± ÆD ƒÀƃ ‹}”‰ƒ‹W‹B‹z…À‰E”„æÿÿS‹ƒ1ö‰Uë&t&‰ÁƒÀˆT ƒÆˆ“9u”‰ƒ†âåÿÿ=ÿ¶7uÔÆƒ‹ƒ‹MˆU€ÇD$ÿ‰D$‰ $ÿ“ ¸1ɶU€ë¤‹E”¾„M{‹P‰ØèZåÿÿ‹ƒë&f‰ÁƒÀƒÆþˆMˆT ‰ƒˆ“„ =ÿ¶uÒ‹ƒƃˆU€ÇD$ÿ‰D$‰<$ÿ“ ¸1ɶU€ë¥‹}”u ‹GÇD$ M‰4$ƒÀ‰D$èÀ̉ñ‰u”‹ƒÁ‚ÿþþþ÷Ò!Ð%€€€€tê‰ÂÁê©€€DÂQEÑÀƒÚ)ò‰U”„õýÿÿS‹ƒ1ÿ‰Uë#f‰ÁƒÀˆT ƒÇˆ“9}”‰ƒ†Ïýÿÿ=ÿ¶>uÔÆƒ‹ƒ‹MˆU€ÇD$ÿ‰D$‰ $ÿ“ ¸1ɶU€ë¤‹M”‰Ø‹Qèäÿÿé@äÿÿ‹}”u ‹GÇD$ M‰4$ƒÀ‰D$èÝˉñ‰u”‹ƒÁ‚ÿþþþ÷Ò!Ð%€€€€tê‰ÂÁê©€€DÂQEÑÀƒÚ)ò‰U”„ýÿÿS‹ƒ1ÿ‰Uë!‰ÁƒÀˆT ƒÇˆ“9}”‰ƒ†îüÿÿ=ÿ¶>uÔÆƒ‹ƒ‹MˆU€ÇD$ÿ‰D$‰ $ÿ“ ¸1ɶU€ë¤‹U”‰ØƒÂèé_ãÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ º1Àéyüÿÿ‹}”‹G‹P ‹x…Ò‰U”„ãÿÿK‹ƒ1ö‰Më%t&‰ÁƒÀˆT ƒÆˆ“9u”‰ƒ†ââÿÿ=ÿ¶7uÔ‹ƒƃˆU€ÇD$ÿ‰D$‹E‰$ÿ“ ¸1ɶU€ë¤‹ƒ=ÿ„ÌÆD(ƒÀƒÂ‰ƒ‰ØÆƒ(苃=ÿ„pÆD)ƒÀ‰ƒƃ)éºãÿÿƃ‹ƒ‹MŒÇD$ÿ‰D$‰ $ÿ“ º1ÀéHåÿÿƃ‹ƒ‹UŒÇD$ÿ‰D$‰$ÿ“ ¸ÆC,éåÿÿ‹ƒéöÿÿ‹ƒà égøÿÿ¹…Ò…·áÿÿ„É…¯áÿÿ‹P…Ò„¤áÿÿƒ:+„‹‰ƒ‰Øècáÿÿ‰³é‹áÿÿ‹ƒ‹M”‹U”‰$‰ØƒÁƒÂèLé€÷ÿÿ‹ƒ¾tM{ë+´&‰ÁƒÀƒÆþyMˆT ‰ƒˆ“„õÿÿ=ÿ¶uÒ‹ƒƃˆU€ÇD$ÿ‰D$‰<$ÿ“ ¸1ɶU€ë¥‹J‹qƒþ‚åÿÿƒþ†bƒþ…åÿÿ‹}”‹O‹9…ÿ…ðäÿÿƒy…æäÿÿƒø5…Ýäÿÿ‹A¶<0„¥ <1…ÇäÿÿºM‰ØèÚÀÿÿéˆàÿÿt&1Éé³þÿÿúÿv„TÆD-ƒÂ‰“ƃ-éàäÿÿ‹ƒ=ÿ„ýÆD[ƒÀƃ[‹}”‰ƒ‰Ø‹Wèíßÿÿ‹ƒ=ÿ„òÆD]ƒÀ‰ƒƃ]éõßÿÿ‹ƒ=ÿ„÷ÆD ƒÀ‰ƒƃ é.íÿÿ‹ƒ=ÿ„HÆD ƒÀ‰ƒƃ éÃìÿÿ‹ƒ …Àëƒ:+…€ßÿÿ…Àt&~ ‹Rƒè…Òuä…Ò„eßÿÿ…À…]ßÿÿ‹R…Ò…·ýÿÿéMßÿÿt&‹E”‹x‹pþ9÷ƒ@ßÿÿS‰Uë8t&¶<_trƒÇ‹“úÿJt)ˆD‰‹ˆƒ9þ†ßÿÿ‰ð)øƒøÄ¶ƒÇëÆ‹“ƃˆE€ÇD$ÿ‰T$‹U‰$ÿ“ ¹1Ò¶E€ë¢O‰M”€_„*‹}”éyÿÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ º1Àéô÷ÿÿ‹ƒƃˆU€ÇD$ÿ‰D$C‰$ÿ“ ¹1À¶U€éqãÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ º1Àé±íÿÿ‹]„ǃéöÝÿÿ‹u¿_M¹ó¦…‹M”‹A‹P‰Øè>é÷ßÿÿ‹Mˆ‰‹é¾Ýÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ ¸ÆC)éßõÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ º1Àé±õÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ ‹E”¹‹P1Àéeáÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ º1Àéaáÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ º1Àéóéÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ º1Àéêÿÿ‹ƒ¾ƃÇD$ÿ‰D$C‰$ÿ“ 1ÀéÀñÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ ¸ÆC,éŠñÿÿ‹Rƒz…ÂÝÿÿ‹R€:>…¶Ýÿÿ»ÿ„R‹ƒƃ(ÆD(‹}”ƒÀ‰ƒ‹Gé€Ýÿÿ‹r¿úM¹ó¦…Òèÿÿ‹M”‰Ø‹QèˆÛÿÿºM‰Øèü»ÿÿé.éÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ ¸1Òé‘ïÿÿ‹}”‹O‹9…ÿ…—ßÿÿƒø6„E‰Ê‰Øƒîè!Ûÿÿƒþ‡KÛÿÿÿ$µ0MºM‰Øè…»ÿÿé3Ûÿÿº M‰Øèt»ÿÿé"Ûÿÿ»ÿ„_‹ƒƃlÆDlƒÀ‰ƒéòÚÿÿ»ÿ„c‹ƒƃuÆDuƒÀ‰ƒéÂÚÿÿºM‰Øè»ÿÿé±Úÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ º1Àéhåÿÿ€U…ÌûÿÿƒÇ9þ†Áûÿÿ1ɉ]Œë¾Òƒê0ƒÇ9þ†"Áá ¶ZЀû vÞZ¿€ûw¾Òƒê7ëÔZŸ€û‡Ü¾ÒƒêWëÀ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ 1Àéâùÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ 1Àéd÷ÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ ‹M”1À‹Qé÷ÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ 1Àé#óÿÿÇEéâðÿÿ‹E‰}ä‰EàEà‰ƒéœåÿÿ‰ØèúéWûÿÿ‹tÿÿÿé#Ùÿÿ‹E”‹P‰Øèº$M‰Øèa¹ÿÿéÙÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ º1Àé6Ùÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ ¸ÆC:éÙÿÿ‹Eà‰ƒéåÿÿƃ‹ƒ‹U”ÇD$ÿ‰D$‰$ÿ“ 1Àéåÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ 1ÀéŒøÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ 1Àé×÷ÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ 1Òé€÷ÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ 1ÀéÝ÷ÿÿ‹Réãÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ 1Àé£Ùÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ 1ÀéAÙÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ ‹1Òƒà é´íÿÿ‹]Œ‹}”éü÷ÿÿ¹éÁâÿÿ»ÿ„Ž‹ƒƃ-ÆD-ƒÀ‰ƒ‹E”‹Hé…ûÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ ǃéÙÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ ǃézúÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ ǃé>ÿÿÿ9þ‹]Œ†”÷ÿÿùÿ‡ˆ÷ÿÿ€ú_…÷ÿÿ»ÿt2‹ƒƒÇˆ‹ˆLƒÀ‰ƒéôöÿÿºM‰Øè=¶ÿÿéëÕÿÿ‹ƒƃˆM€ÇD$ÿ‰D$‹E‰$ÿ“ ¶M€Çƒë–‹ƒƃÇD$ÿ‰D$C‰$ÿ“ ǃémúÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ ǃéiúÿÿ´&U‰åWVS‰Ãƒì,‹ƒèƒø&vƒÄ,‰Ø[^_]éíÔÿÿÿ$…„M¶K‹ƒ¾wM‰Mäë$‰ÇƒÀƒÆþMˆL;‰ƒˆ‹„=ÿ¶uÒ‹ƒ1ÿ‰UàˆMÜÆƒ‰D$‹EäÇD$ÿ‰$ÿ“ ¸¶MÜ‹Uàëœt&‹ƒ¾DM{ë$‰ÁƒÀƒÆþMMˆT ‰ƒˆ“„¡=ÿ¶uÒ‹ƒˆUàÆƒÇD$ÿ‰D$‰<$ÿ“ ¸1ɶUà륋Réíþÿÿ‹ƒ¾NM{ë$‰ÁƒÀƒÆþWMˆT ‰ƒˆ“„)=ÿ¶uÒ‹ƒˆUàÆƒÇD$ÿ‰D$‰<$ÿ“ ¸1ɶUà륋ƒ¾XM{ë$‰ÁƒÀƒÆþ^MˆT ‰ƒˆ“„¹=ÿ¶uÒ‹ƒˆUàÆƒÇD$ÿ‰D$‰<$ÿ“ ¸1ɶUà륋ƒ=ÿH„•ÆD ƃ ‹R‰‹éßýÿÿöuJ‹ƒ=ÿP„úÆD*‰“ƃ*ë"‹ƒ=ÿtNPÆD&‰“ƃ&ƒÄ,[^_]Ãv‹“úÿ„tB=ÿÆD&‰ƒƃ&u²‹ƒƃÇD$ÿ‰D$C‰$ÿ“ º1Àë‡t&‹ƒ¾_M{ë$‰ÁƒÀƒÆþgMˆT ‰ƒˆ“„aÿÿÿ=ÿ¶uÒ‹ƒˆUàÆƒÇD$ÿ‰D$‰<$ÿ“ ¸1ɶUà륋ƒ¾hM{ë$‰ÁƒÀƒÆþrMˆT ‰ƒˆ“„ñþÿÿ=ÿ¶uÒ‹ƒˆUàÆƒÇD$ÿ‰D$‰<$ÿ“ ¸1ɶUà륀»(t&‹ƒ=ÿH„ÆD ‰‹ƃ ‹R‰Ø¾sM{èÿÐÿÿ‹ƒë+´&‰ÁƒÀƒÆþvMˆT ‰ƒˆ“„Aþÿÿ=ÿ¶uÒ‹ƒˆUàÆƒÇD$ÿ‰D$‰<$ÿ“ ¸1ɶUà륋R‰Øè†Ðÿÿ‹ƒ=ÿPtNÆD)‰“ƃ)éÔýÿÿ‹ƒ‰UàÆƒÇD$ÿ‰D$C‰$ÿ“ ¹1À‹Uàé4ýÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ º1Àë„‹ƒƃÇD$ÿ‰D$C‰$ÿ“ ¸ÆC&é'ýÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ º1ÀéÕüÿÿ‹ƒ‰UàÆƒÇD$ÿ‰D$C‰$ÿ“ ¹1À‹Uàé<þÿÿë U‰åWV‰ÆS‰Óƒì\…Ò„‹…Ò…‰MÄëO‹S‹Hæƒùv2‹K ƒø%ÇC‹¾‰Žt\ƒø&t7ƒøtx‰ðèßùÿÿ‰¾‹…Ût7‹†…Àu-‹{…ÿué‹MÄ…Ét£‹S‹ë©‹ ƒÂ‰ð‰}Äè%‹}ĉ¾ƒÄ\[^_]ËJƒÂ‰}ĉ$‰ð蟋Eĉ†ƒÄ\[^_]ËR‰ð‰}Ä‹¾džèaÎÿÿö‰¾t]‹†=ÿ„$ÆD.ƒÀ‰†Ɔ.‹C‹X‹ƒø?uëq‹[‹ƒèƒøvó‰Ú‰ðè Îÿÿ‹Uĉ–ƒÄ\[^_]Ë–úÿ„#B=ÿÆD:‰†Ɔ:„ÒPÆD:‰–Ɔ:뀋†¿$MN‰]Àë ‰ÂƒÀƒÇÿ1Mˆ\‰†ˆžt;=ÿ¶uÖ‹†‰ $‰M¸Æ†‰D$ÇD$ÿÿ– ¸1Ò‹M¸ëª‹]ÀUωU´‹CÇD$ M‰$ƒÀ‰D$赋}´1ÀƒÉÿò®÷уétrV‹†1ÿ‰UÀ‰]¼ë‰ÂƒÀƒÇ9ùˆ\‰†ˆžv@=ÿ¶\=ÏuØ‹†‰M¸Æ†ÇD$ÿ‰D$‹EÀ‰$ÿ– ¸1Ò‹M¸ë©‹]¼‹†¿ MN‰]Àë ‰ÂƒÀƒÇÿ#Mˆ\‰†ˆžt;=ÿ¶uÖ‹†‰ $‰M¸Æ†‰D$ÇD$ÿÿ– ¸1Ò‹M¸ëª‹]À‹[‹éþÿÿ‹†ƆÇD$ÿ‰D$F‰$ÿ– 1Àé°ýÿÿ‹†ƆÇD$ÿ‰D$F‰$ÿ– º1Àéþÿÿ‹†ƆÇD$ÿ‰D$F‰$ÿ– ¸ÆF:éÊýÿÿU‰åV‰ÖS‰Êƒì …ɉÃt)‹A…À„Ÿ‰Èë ‹H…É„”‹…Àuï1ɉØèüÿÿ‹ƒ=ÿP„ùÆD ‰“ƃ úÿB„AÆD[ƃ[‹‰ƒ…Òt ‰ØèËÿÿ‹ƒ=ÿP„ÝÆD]‰“ƃ]ƒÄ [^]ÉÈf‹@ƒ8&„‹‹ùÿ„€A=ÿÆD  ‰ƒƃ „)HÆD(‰Ø‰‹1ÉÆƒ(è$ûÿÿ‹“úÿB„ÅÆD)‰ƒƃ)éùþÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ º1ÀéÖþÿÿ´&‹ƒƃÇD$ÿ‰D$C‰$ÿ“ º1Àéòþÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ ¸1ÒéŽþÿÿ1ɉØèUúÿÿ‹“ékþÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ ¸1Òé ÿÿÿ‹ƒ‰UôƃÇD$ÿ‰D$C‰$ÿ“ ¹1À‹Uôé£þÿÿ‹ƒ‰UôƃÇD$ÿ‰D$C‰$ÿ“ ¸‹UôÆC égþÿÿ‰ö¼'U‰åWVS‰Ãƒì,‹u‰Mä…ö„j‹~…ÿ…_‰ðºt&‹H‹ ƒéƒùw8‰×Óç÷ÇG ‰ù…Çá€t¶ƒ<(t<*…³‹ƒé׋…Àt‹H…Ét®‹»1ɉò‰ØÇƒèùÿÿ‹“úÿB„ ÆD(‹MäÆƒ(‰ƒ‹…Òt ‰ØèÈÿÿ‹ƒ=ÿP„ÆD)¹‰Ø‰“‰òƃ)è˜øÿÿ‰»ƒÄ,[^_]öƒ< „Eÿÿÿ‹“úÿB„XÆD ‰ƒƃ =ÿP„øÆD(‹»1ɉ“‰Ø‰òƃ(ǃèøÿÿ‹ƒ=ÿP„†úÿÆD)B‰“ƃ)…öþÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ ¸1ÒéÅþÿÿv‹ƒƃÇD$ÿ‰D$C‰$ÿ“ º1ÀéÇþÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ º1ÀéIÿÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ º1Àé×þÿÿ‹…Ò…Êýÿÿéðýÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ ¸1Òéwþÿÿ¶¼'U‰åƒì8‰]ô‰Ã‰uø‰Ö‰}ü‹ƒ:tèÆÿÿ‹]ô‹uø‹}ü‰ì]Ãt&‹¸Ç€‹€‰Uä‹R‰EàEà‰ƒ‰ØèÁÅÿÿ‹Eà€»<‰ƒtt‹ƒ=ÿP„ìÆD<ƃ<‹‰“‹P‰Øè}Åÿÿ€»>te‹ƒ=ÿP„€ÆD>‹uø‰»‹}ü‰“ƃ>‹]ô‰ì]Ë“úÿB„¨ÆD ‰ƒƃ éfÿÿÿ‹“úÿB„­ÆD ‰ƒƃ éuÿÿÿv‹ƒƃÇD$ÿ‰D$C‰$ÿ“ º1ÀéOÿÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ º1Àéãþÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ ¸1Òé'ÿÿÿ‹ƒƃÇD$ÿ‰D$C‰$ÿ“ ¸1Òé"ÿÿÿ¶¿U‰åWVS‰Ãƒì,ƒ:,tƒÄ,[^_]éôÃÿÿt&‹B‹P‹x…Ò‰UätpS‹ƒ1ö‰Uàë‰ÁƒÀˆT ƒÆ9u䉃ˆ“vC=ÿ¶7uØ‹ƒˆUÜÆƒÇD$ÿ‰D$‹Eà‰$ÿ“ ¸1ɶUÜë¨vƒÄ,[^_]ô&U‰åS‰Ãƒì$‹ƒøt…Àu ƒÄ$‰Ø[]é@Ãÿÿ‹ƒ=ÿHtpÆD(‰Ø‰‹ƃ(èÃÿÿ‹ƒ=ÿPtÆD)‰“ƃ)ƒÄ$[]˃ƃÇD$ÿ‰D$C‰$ÿ“ º1À뺋ƒ‰UôƃÇD$ÿ‰D$C‰$ÿ“ ¹1À‹UôéYÿÿÿ‰ö¼'U‰åWVS‰Ã쌉•„þÿÿ‰€þÿÿ€8_„}‰Þ¿pM¹ó¦—Â’À1ö8Âu3¶C<_t<.…C¶C œv¼'U‰åƒì‰]ø‰uüè#œ‰Ã‹E‰$èœƒì‰Æ‰$è‰ð‹]ø‹uüƒì‰ì]öU‰åƒì‹E ‰D$‹E‰$èÜœƒì…Àt1ÀÉÃÉéË›´&U‰åSƒì‹]ÇÿÿÿÿÇD$ ÇD$ÿÿÇD$Ç$蜉Cƒì‹]üÉÃU‰åƒì‹E‹@‰$èÈ›ƒìÉô&U‰åƒì‰]ø‹]‰uü1ö‰$èÛ›ƒì…Àu‰ð‹]ø‹uü‰ì]Ãt&ÇD$ÿÿÿÿ‹C‰$蛃ì…ÀtÖ‰$f¾è–›‰ð‹]ø‹uüƒì‰ì]Ãt&¼'U¸ÿÿÿÿ‰å1É‹Uð± ÷ÐÁè]ô&U‰åSƒì‹]‰$èJ›‰Âƒì1À…Òx&ÇD$ÇD$‹C‰$è4›ƒì …À”À¶À‹]üÉô&U‰åSƒì‹]ÇÿÿÿÿÇCÇCÇD$ ÇD$ÿÿÇD$Ç$蚉C ƒì‹]üÉÃvU‰åVSƒì‹]蔚‰$‰Æèªšƒì…Àt;stBÇD$ÿÿÿÿ‹C ‰$è[šƒì…ÀuÇC‰seø[^]É$ècš¸ƒìeø[^]É$èLš1ÀƒCƒìeø[^]ÃU‰åSƒì‹]èš1Ò‰Á¸ÿÿÿÿð±…Àx;K¸uƒC0ÀƒÄ[]ÃÇC1À‰KƒÄ[]ô&U‰åƒì‰]ø‹]‰uü1ö‹Cƒè…À‰Ct‰ð‹]ø‹uü‰ì]öÇC‰$è­™ƒì…ÀxØÇD$ÇD$‹C ‰$è›™‹]øƒì …À”À¶À‰Æ‰ð‹uü‰ì]ÃU‰åƒì(‰}ü‹}‹E‰]ô‹M‹] …ÿ‰uø‰E܉ΉEä‰Úu9ÙvG÷ñ‰Ð‹]ô1Ò‹uø‹}ü‰ì]Ã9ßwL½Çƒð‰EàuQ;Mä‡Ý‰Ú‹]ä)Ëú‰]ä‹Eä‹]ô‹uø‹}ü‰ì]Ã…Éu ¸1Ò÷ñ‰Á‰Ø1Ò÷ñ‹Eä÷ñ량ڋuø‹]ô‹}ü‰ì]öMà‰ø¿ +}à‰òÓà‰ùÓê¶Mà ‹E܉Uä‰ÚÓæ‰ùÓê¶Mà‰uØÓã‰ùÓè¶Mà Ø‹]Ü÷uäÓã‰]܉Ó÷æ‰Ö‰Â9ó‰ñr39EÜr*‹EÜ)Ð˶Mà‰Ú‹uøÓè‰ù‹}üÓâ¶Mà Љڋ]ô‰ì]ÓêÃ9óuÒ‰ñ‰Â+UØMäëÆ9ß‚ÿÿÿvéÿÿÿU‰åƒì(‹E‰uø‹M‹u‰]ô‹] …À‰}ü‰Ï‰uàu29ÙwX…Éu ¸1Ò÷ñ‰Á‰Ø1Ò÷ñ‰Ã‰ð÷ñ‰Ú‰Æ‰ð‹]ô‹uø‹}ü‰ì]Ã1Ò1ö9Øwé½Ðƒò‰Uäu7;Màv9؉òsÓ1Ò¾ëÊv‰Ú‰ð‹]ô÷ñ‰Æ‹}ü1Ò‰ð‹uø‰ì]ô&¶Mä‰Â¸ +Eä‰þÓâ‰ÁÓî¶Mä Ö‰Ú‰uÜ‹uàÓç‰ÁÓê¶MäÓã‰ÁÓî Þ‰ð÷u܉ӉÆ÷ç9Ór‹}à¶MäÓç9Çs9Óuƒî‰ð‹]ô1Ò‹uø‹}ü‰ì]Ãÿ%\&Nÿ%`&Nÿ%L&Nÿ%X&Nÿ%T&Nÿ%P&Nƒì,‰\$ ‰Ó‹8øK‰t$$‹t$0‰|$(…ÒtMƒøfÇD$--ÆD$tÆD$‹=œ&N‰L$ÇD$À)MƒÇ@‰<$èN•‹‰\$‰<$‰D$ D$‰D$è4•‹F ‹\$ ‹t$$‹|$(£<øK‹D$4ƒÄ,ô&U1À‰åWVSƒì\‹]ƒ=4øKžÀ ìñM…À£ìñM„ÕÇ4øK1ÉÇìñM‰ òM‰È‰Ê‰ òM‰ ðñMÇòM9Á:B£òM‰]ÀJ‰Ö9M ‰Ê‰ òM~`‹EÀ‰ðñM<‹£òM€8-„n‹]¶<-„‹0òM¾À…Ò…öÄ…6ƒø+Ç0òM…Sf¸£0òM¡òM£4øK¸ÿÿÿÿeô[^_]Ãv‹ 4øK¡òM9Á}ƒéé*ÿÿÿ‹ òMr9ñM‹=òM…ÿ„š¶7‰ñ„É„O‰ð‰MÔ¾À‰ òM‹M‰EУ<øK¶<-„v<+‰MÌ„k<:„{‹M̉Ủò‹uÌ8„‚ƒÁ¶„Àuî‰òƒ}„V¡8øK…À…ó‹}Ô…ÿt ‹MԉЀ9uB£4øKeô¸?[^_]ô&öÄuƒâ…Ò…öþÿÿ‹ òMéyþÿÿt& У0òM‰ÂëÚt&X‰òM¶X„Ûˆ]Ô„zþÿÿ€û-„"ƒ}ŽX‹u‹}ÇèñM…ö‰uÔ‰}´„*‹…À„ ‹òMƒÆ‰uÌ‹uÔÇEÐÇE¸ÿÿÿÿ‰]ȃÉ]¼‹]À‰uĉƋ}Ѓï‰}À‹}ȶ„Àt":…¥‹}¼ë ƒÇ:…˜¶ƒÆ„Àuë€>…‘‹E´ÇòM…Àt‹UÀ‹E´‰‹ òM‹=èñMB£4øK…ÿ„Û‹MÄ‹q…ö„‹UÄ‹B…À„{‹R ‰1ÀéÉýÿÿt&Ç$¸*Mèì…À„ª¡0òMƒÈéýÿÿ‹}¼<=„d‹}̃EЋ7‰}ălj}Ì…ö…ÿÿÿƒ}¸ÿ‰]À…jƒ}„¡òM€8„ýÿÿ‹]ÀéúƒÂ+ðñM‰eЕƒàðè"óÿÿL$ƒáð…ÒŽC‹=ðñM1À‰}Ô4»t&‹>ƒÆ‰<ƒÀ9Ðuñ‹EÔ‹5òMƒè9ð£ðñM‰uÔ|$‰ủ÷‰MÈ‹4ƒ ƒè9lj4‹~ð‹uÌ‹MÈ£ðñM…Ò~1À‹<ƃÀ9Љ<³‹uÔuîUÔ‰òM‹eЋ òMéüÿÿ¶ƒ}¸ÿ…5‹uÀ‰u¸éçþÿÿQÿ‹ ðñM‰ òMÇòMéÎûÿÿ‹]ÀÇE‹E‰\$‰D$ ‹U ‰T$‹M‰ $èFûÿÿé6üÿÿ‰=èñMéûýÿÿt&‹ ðñMé†ûÿÿt&‹E‹MƒÀ‰E̶A<:……üÿÿƒEÌ‹M̶‰Ủò‹uÌ8Â…~üÿÿ…ɉò‰MÌ„}üÿÿ€y:t[‹]ÔÇèñM…Ût€‰ðuB£4øK¡<øKeô[^_]ÃX‰]Ô€x„ò‹u…öŽ-þÿÿ‰òMÇEé»üÿÿ‹uÔ‰5èñM€u)€y:„…‹E )Ѓø޹ƒÂ‹“‰ òM£èñMÇòMéwÿÿÿ‹]ÀAÇòM£4øK‹‹£èñM¸éûÿÿ‹0òMƒâéìûÿÿ‹ 8øK…É…#ÇòMÇ<øKé¡ûÿÿ‹ 8øK‹…ÉtWƒ}‹œ&NfÇEå--•Àƒèƒà-ƒÃ@ÆEçˆEæ‰T$ÇD$À)M‰$誎‹uÄ‹ÇD$,*M‰$‰D$ Eå‰D$芎‹}Ä‹G £<øK¸?éZúÿÿ‹]Ä‹C éOúÿÿ‹uЉt$ ‹ÇD$*M‰D$¡œ&NƒÀ@‰$èEŽ‹=òM‹ òM‰}ÔéÔúÿÿ‹Măy…&üÿÿ9E Ž(£ òM‹ƒƒÂ‰4øK£èñMéüÿÿ‹5ðñM‰uÔéÑüÿÿÇèñMé‹þÿÿ‰=òM‰|$ ‹ÇD$ð)M‰D$¡œ&NƒÀ@‰$軋 òMéªþÿÿ‹58øK…ö……‹E¶€ú-t€ú+t€ú:¸:„iùÿÿ¸?é_ùÿÿ‹M¶Që߃=8øKAÇ<øKÇòM£4øKtÈ‹‹‰D$ ‹ÇD$|*M‰D$¡œ&NƒÀ@‰$è'¸?éùÿÿ‹}Љ|$ ‹ÇD$È)M‰D$¡œ&NƒÀ@‰$èøŒéQÿÿÿ‹u¶<-tw<+ts<:ºX*M•À¶ÀD€:‰D$‹Eĉ$‹ ‹Eè ÷ÿÿé øÿÿ¡òM‹]À9ЉEÔ}"‹‹T‹ü‰‹‰ñƒîV9UÔ|ì‹UÔ‰ ðñM‰“‹EÔƒÀ£òM£4øKƒÈÿéWøÿÿ‹}¶G넃=8øKA‹]ÀÇ<øKÇòM£4øK„¹þÿÿ‹‹‰D$ ‹ÇD$š*M‰D$éìþÿÿƒ}´ÇòMt‹U¸‹E´‰‹ òMƒ=èñMB£4øKt"‹u¸ÁæuÔƒ~tK‹F…Àt<‹V ‰1Àé·÷ÿÿ‹u¸ÁæuÔƒ~uÞ9E Ž‘£ òM‹ƒƒÂ‰4øK£èñM뽋F é÷ÿÿƒ=8øK‹tTƒ}‹œ&NfÇEå--•Àƒèƒà-ƒÃ@ÆEçˆEæ‰T$ÇD$À)M‰$èX‹‹ÇD$,*M‰$‰D$ Eå‰D$è;‹‹F £<øK¸?é÷ÿÿ‹M¶<-t+<+t'<:ºX*M•À¶ÀD€:‰D$‰4$‹ ‹EèYõÿÿéÙöÿÿ‹}¶GëÐt&¼'ƒì,‹D$@Ç$‰D$‹D$<‰D$‹D$8‰D$ ‹D$4‰D$‹D$0‰D$è™õÿÿƒÄ,Ãt&ƒì,‹D$@Ç$‰D$‹D$<‰D$‹D$8‰D$ ‹D$4‰D$‹D$0‰D$èYõÿÿƒÄ,Ãt&ƒì‹D$(Ç$‰D$ ‹D$$‰D$‹D$ ‰D$è)õÿÿƒÄÃì1À‹T$ …Òt ú?B°v ƒÄÃt&Âç¹ÓMb‰Ð÷áÁê‰$è:Š1ÀƒìƒÄÃì,‹D$8ÇD$Ç$0‰D$‹D$4‰D$ ‹D$0‰D$èÁ#ƒÄ,ÃìD$,‰D$ ‹D$(‰D$‹D$$‰D$‹D$ ‰$虃ÄÃUWVSƒìL‹l$d‹\$`…ít‹D$d‰ƒ|$h„ñ‹|$h…ÿˆåƒ|$h$Ú‹5¨&Në‹·Bƒà…Àt%ƒÃ‹p&N¾ƒ:tâÇD$‰$è·‡…ÀuÛ¶1ɉÚ<-”Á…ɉL$8…£<+„›‹t$h…ö…¢<0ÇD$h „k¾ÀpЃþ † ‹ p&Nƒ9„fÇD$‰$èF‡‰Â¾…Ò„`pɉðÁè;t$hq„À…i‹D$h‰÷‹ ¨&NÁÿÇD$4‰ÂÁú‰L$<‰D$ ‰T$$¾EXЃû v)‹ p&N‰Ãƒ9…B‹L$<‹·Bƒà…À„Iƒë7;\$h‰Ø÷МÂÁè…ЄM‹T$ ‹L$$Ç$ÿÿÿÿÇD$ÿÿÿÿ‰T$‰L$ èððÿÿƒÀƒÒ9×w[r9ÆfwS‰Ù‹D$ Áù‰L$‹L$ ‰\$‹\$$÷æ¯Ï¯Þ‰D$(ÙʉT$,‹T$(T$‹L$,L$;|$w‚‡;t$†}ÇD$4ƒÅéÿÿÿ螆1ö1ÿÇ!ƒÄL‰ð‰ú[^_]Ët$hƒÃ¶B…ö„^þÿÿƒ|$h„B¶k¾ÀpЃþ ‡`þÿÿ‰ðÁè;t$hŒþÿÿ1ö1ÿƒÄL‰ð‰ú[^_]Ët$‹|$é~ÿÿÿÇD$‰$舅¾]…À…·þÿÿ¡p&Nƒ8uA‹¨&N‹·Xƒà…ÀuB‹L$d…Ét‹L$d‰)‹T$4…Òu8‹D$8…À„9ÿÿÿ÷Þƒ×÷ßé-ÿÿÿÇD$‰$è!……Àt¾¾]ƒëWéOþÿÿ蜅¾ÿÿÿÿ¿ÿÿÿÿ‰úÇ"ƒÄL‰ð[^_]˨&N‹·Bƒâ…Ò… ýÿÿ‹p&Nƒ:…’‹¨&N‹·Bƒâ…Ò¸¾ÿÿÿÿ„éþÿÿ¾3ƒîWéÙþÿÿ¶<0…ýÿÿ¶Sk€úX”À€úxt)„Àu%¶éþüÿÿ¶S€úxvt€úXÇD$h…ÞüÿÿƒÃ¶kÇD$héËüÿÿ´&ÇD$‰$è(„‰ÂéfÿÿÿVS‹t$‹D$ ‹L$…öt…Àt…Ét1Òt&·f‰ƒÂƒéuð[^ËD$‹T$ ·L$…ÀuóÃ…Òtf9ut&ëƒÀf9tçƒêvuð1ÀÃóÃì,‰t$(‹t$4‰\$$‹D$8‹\$0‹T$<…öt9ƒî‰T$‰D$ ‰t$‰\$Ç$è²9ð‰ÂwÆ‹\$$‹t$(ƒÄ,Éòëì‰\$‰T$‰D$ ÇD$Ç$èx‹\$$‹t$(ƒÄ,ÃS‹D$‹T$·\$ …Àt…Òt ‰Áf‰ƒÁƒêuõ[ÃS1ÛƒìHD$<‰D$D$8‰D$ ‹D$TÇD$@øK‰D$‹D$P‰$è.‰Âƒâƒúw ÿ$•È*M»Àÿ¨tË€‰\$,ÙD$,ƒÄH[û€ëá1ÛëÝt&‹\$8‹T$<ÖÁãâÿÿ Óë½t&‹\$<벃ìLD$4‰D$D$<‰D$ ‹D$TÇD$TøK‰D$‹D$P‰$è-‰Âƒâƒúwÿ$•ä*M‹T$8Êð‰T$,‹T$4‰T$(¨tL$,€ÝD$(ƒÄLöÇD$(ÇD$,øÿëÔÇD$(ÇD$,ë‹T$4‹L$<‰T$(‹T$8Á3Ááâÿÿïÿ щL$,ë›t&‹T$4‰T$(‹T$8‰T$,ë„ÇD$(ÇD$,ðéoÿÿÿƒìLD$4‰D$D$<‰D$ ‹D$TÇD$(ÇD$,ÇD$0‰D$‹D$PÇD$høK‰$èy,‰Âƒâƒúw7ÿ$•+M‹T$@f‰T$0‹T$4f‰T$(Áêf‰T$*‹T$8f‰T$,Áêf‰T$.¨tfL$0€Ûl$(ƒÄLÃt&fÇD$0ÿfÇD$.€fÇD$(fÇD$*fÇD$,ëÃfÇD$(fÇD$*fÇD$,fÇD$.ÀfÇD$0ÿÿëž¶fÇD$0fÇD$.fÇD$,fÇD$*fÇD$(épÿÿÿfÇD$0éBÿÿÿVS1Ûƒì‹t$ t&‹Ý€+M‰4$‰D$者ÀtƒÃƒû uáƒÄ1À[^÷݄+MƒÄ[^Ãì<‹D$@ÇD$ÇD$ÇD$ f‰D$,D$(‰D$D$/‰D$D$,‰D$¡l&NÇD$ÇD$(‹‰$è ‚ƒì …Àu¸ÿÿÿÿƒÄ<Ãt&‹D$(…Àuê¾D$/ëèƒì<¸ÿÿÿÿ‹T$@ƒúÿtJD$,‰D$D$/‰D$¡l&NÇD$ÇD$ ÇD$‹ˆT$/fÇD$,ÿÿ‰$è!ƒì·D$,ƒÄ<Ãƒì ‰$‹\$‰t$‹D$‰|$‹T$…Ût"…Àt…Òt9Øw&1Ét&·4 f‰4ƒÁƒêuð‹$‹t$‹|$ƒÄ à <Ë1ɶ·t þf‰tþƒéƒêuî‹$‹t$‹|$ƒÄ Ãƒì ‹T$‰t$‹t$‰|$‹|$‰$…Òt)9÷t%…ö•Ã…ÿ•Á1À8Ëu&·· f9Ëu3ƒÀƒêuë1À‹$‹t$‹|$ƒÄ Ãþ‹$À‹t$ƒà‹|$ƒÄ ƒè÷÷ɋ$)È‹t$‹|$ƒÄ ÃìL…Éf‰T$,ufúÿw`ˆ¸ƒÄLÃfT$<‰T$‹T$P‰D$D$,ÇD$<ÇD$‰T$ÇD$ ‰D$ÇD$‰ $è€ƒì …Àt‹T$<…Òt§èà}Ç*¸ÿÿÿÿë•t&¼'UWVSƒì<¡l&N‹\$P‹‰D$¡p&N‹(‹D$T‹0…ötp…Ûtx‹L$X1ÿ…Éuë9ÃÇ€{ÿt?ƒÆ9|$Xv&·‰Ø‹L$‰,$èÿÿÿ…ÀØ¿ÿÿÿÿƒÄ<‰ø[^_]Ãf‹D$T‰0ƒÄ<‰ø[^_]ËD$TƒïǃÄ<‰ø[^_]Ã1ÿƒÄ<‰ø[^_]ËD$X1ÿ\$.…ÀuëäÇ€|-t 9|$Xv¢ƒÆ·‰Ø‹L$‰,$èšþÿÿ…ÀÙ냃ïë‚´&¼'ƒì,‹D$0·T$4…Àt ‹ p&N·Ò‹ ‰ $‹ l&N‹ èUþÿÿƒÄ,ÃD$ëÚƒìL‰\$@‰Ã1À…Ò‰t$D‹t$P‰|$H‹|$Tu‹\$@‹t$D‹|$HƒÄLÅɸþÿÿÿt拉D$<Ƕ„À„ ƒ|$X†¥€|$<tEˆD$=D$<ÇD$‰\$ÇD$ ‰D$ÇD$‰<$è¢}ƒì…À„°¸éxÿÿÿ¶À‰T$,‰L$(‰D$‰<$è^~ƒì…À‹T$,‹L$(t3ƒù†ÇD$‰\$ÇD$ ‰T$ë’fÇ1Àé#ÿÿÿt&…ÿu¶f‰¸é ÿÿÿÇD$‰\$ÇD$ ‰T$ÇD$‰<$èø|ƒì…Àt ¸éÒþÿÿvèC{Ç*ƒÈÿféºþÿÿ¶ˆ¸þÿÿÿé«þÿÿ¶¿Sƒì(‹p&N‹D$8‹‹l&N…À‹ º@òMt‰Â‰L$‹L$4D$‰$‹T$0‰\$fÇD$è:þÿÿƒÄ([Ãt&UWVSƒì<‹D$\‹|$P‹t$T‹l$X…ÀÇD$PòMt‰D$¡l&N…ö‹‰D$¡p&N‹‰D$to‹…Òti…ÿtu1Û…íuë]‹ÃÂ9݉v)ƒÇ‹D$‰é)Ù‰D$‹D$‰D$‹D$‰$‰øè¬ýÿÿ…ÀË…Àt ƒÄ<‰Ø[^_]Ã9ësòlj؃Ä<[^_]ö1ÛƒÄ<‰Ø[^_]Ãt&…ítì‰l$1Û‹l$fÇD$.|$.ët&‹ÃÂ9\$‰vž‹D$‰é‰l$‰D$‹D$‰$‰øè&ýÿÿ…ÀÒéyÿÿÿ¶¼'VSƒì$‹D$0‹L$<…Àt@‹p&N…É‹2‹l&N‹º`òMt‰Ê‰$‹L$8‹T$4‰t$‰\$fÇD$èÅüÿÿƒÄ$[^ÃD$ëºS‰ÂƒìH‹D$P‰D$ ‹D$T‰D$$‹D$X‰D$(‹D$\Ûl$ ‰D$,Ùå›ßàÝØ·ÀöÄtöÄ„ŽÇD$<¿D$(1ÉëöÄu[¿D$(1ÉÇD$<%€‹\$h‰D$8‰D$‹D$d‰T$‰L$Ç$|øK‰D$‹D$`‰D$D$<‰D$ D$ ‰D$èB@ƒÄH[ÃöÄ@t(ÇD$<¿D$(¹Ã¿ÿÿë›t&ÇD$<1É1ÀëŽf¿D$(ÇD$<‰Ááÿé>@égÿÿÿSƒì(‹JöÅ u‹Z9Z~€åu‹‹Jˆ ‹ZƒÃ‰ZƒÄ([Ë ‰T$‰$‰L$èžx‹T$‹ZƒÃ‰ZƒÄ([ö¿U‰ÅWV‰ÖS‰ËƒìLD$<‰D$D$,ÇD$‰$èçúÿÿ‹C …Àx9ƨ‹C9ÆŽ)ð…À‰C~ öC„‘‰\$ëGt&D$<‰D$·E‰D$D$,‰$è”úÿÿ…À‰Ã~%1ÿ¾D<,ƒÇ‹T$è ÿÿÿ‰Ø)ø…ÀçƒÅƒî…ö¹‹\$ëv‰Ú¸ èäþÿÿ‹CPÿ…À‰SçƒÄL[^_]ÃÇCÿÿÿÿéyÿÿÿv‰ÆéQÿÿÿƒè‰Cv‰Ú¸ è¤þÿÿ‹CPÿ…À‰SuçéHÿÿÿfU‰ÅWV‰ÎS‰Óƒì ‹A …Àx9Âh‹F9Ã}V)Ø…À‰F~öFtV…Ût.1ÿ¾D=‰òƒÇèMþÿÿ9ßuí‹FPÿ…À‰V~‰ò¸ è0þÿÿ‹FPÿ…À‰VçƒÄ [^_]ÃÇFÿÿÿÿë°f‰Ã딃è‰F¶‰ò¸ èôýÿÿ‹FPÿ…À‰Vuçëƒt&UWVSƒì…ÀÇA ÿÿÿÿt>‹i|$ ÆD$ -D$ 1öƒå ¶2ƒãß ëˆ7ƒÆƒþuìW)Âè ÿÿÿƒÄ[^_]Ãv‹i÷ÅtÆD$ +|$ D$ 븶D$ ÷Å@‰Çt¤ÆD$ |$ D$ ë•vU‰åW‰ÏV‰ÖS‰Ãƒì,‹Q ‹I‰ÐÁø÷Ð!ЃÀ9È}‰ÈƒÀƒàðèî×ÿÿD$ƒàð‰Eä‹G„Ày …öˆ•$‰G‰Ù‰ð‹]ä ÈtXt&‰ $‰t$ÇD$ ÇD$ ‰Màè¡ÝÿÿƒÀ0ˆ‹MàƒÃ‰t$ÇD$ ÇD$ ‰ $èÊÞÿÿ‰Á‰Ð ȉÖu°‹W …Ò~Uä)Ú…Ò~1ÀÆ0ƒÀ9ÐuõÃ;]ä„‹G…À~ZEä)Ø…À‰G~N‹O÷ÁÀ‰Êtƒè‰G‹G …Àˆ™öÅu.‹GPÿ…À‰W‰Ê~v‰ú¸ è$üÿÿ‹GPÿ…À‰Wç‹W„ÒyHÆ-ƒÃë ƒë‰ú¾èûûÿÿ9]ärî‹GPÿ…À‰W~‰ú¸ èÝûÿÿ‹GPÿ…À‰Wçeô[^_]ÃöÆtÆ+ƒÃëÀƒâ@t»Æ ƒÃ볉È%=…Uÿÿÿ‹GPÿ…À‰W‰ÊŽuÿÿÿÆ0‹GƒÃPÿ…À‰WíéZÿÿÿ÷ÛƒÖ÷Þédþÿÿt&‹W …Ò„ÝþÿÿÆ0ƒÃéÒþÿÿv¼'U‰åWVS1Ûƒì,ƒøo‹u”Ãëƒãúƒøo‰EÜ•À¶ø¶À<ýƒÀ‰}ä‹~ ‰EÔ‰øÁø÷Ð!øD‹^9Ø}‰ØƒÀƒàðè³ÕÿÿD$ƒàð‰Eà‰Ð‰Ê Á„Ö¶MÜ‹]à‹}Ô‰uÔƒá ˆMÛ¶Mä!Á‰ÎN0ˆ ƒÃ€ù9~ N7 MÛˆKÿ‰ù­ÐÓêöÁ t‰Ð1Ò‰Ñ ÁuÌ;]à‹uÔ„€‹~ …ÿŽ}à)ß…ÿŽ÷1ÀÆ0ƒÀ9øuõÃ;]à„:‹V‰Ø+Eà9ÂŽº)Â…Ò‰Uä‰V~"ƒ}ÜotöFt ƒmä‹Uä…Ò~‹F …ÀˆÁƒ}ÜotöFft ¶EÜÆC0ˆƒÃ‹}ä…ÿ~ öF‹}ätA;]àv‹}àƒë‰ò¾èÌùÿÿ9ßrï‹Mä…É~‹]ä‰ò¸ ƒëè¯ùÿÿ…Ûíeô[^_]Ãv‰ò¸ ƒïè‘ùÿÿ…ÿíÇEäÿÿÿÿë£t&ÇFÿÿÿÿÇEäÿÿÿÿfé_ÿÿÿƒ}Üo…ÿÿÿöF„ÿÿÿÆ0ƒÃéøþÿÿ‹F%=…,ÿÿÿ‹Uäf1ÀfÆ0ƒÀ9Ðuõ]äÇEäÿÿÿÿé ÿÿÿ¶‹N …É„»þÿÿÆ0ƒÃé°þÿÿ‹~ fÿ÷ÿÿ‹]àéqþÿÿ´&U‰åWV‰ÆSƒì<ƒxý„‘fƒ~th‹F‰eЃÀƒàðèƒÓÿÿD$ƒàð‰EÔEàÇEà‰D$·F‰D$‹UÔ‰$èøóÿÿ…À‰Ç~:1Û‹UÔ¾‰òƒÃèoøÿÿ‰ø)Ø…Àç‹eÐeô[^_]Éò¸.èPøÿÿeô[^_]Éò¸.è<øÿÿëÓÇEàè6qUà‰T$ ÇD$‹‰D$Eæ‰$è®öÿÿ…À~·Uæf‰V‰Fé/ÿÿÿv¼'U‰ÅW‰ÏVS‰Óƒì …É‹t$ Žl‹F9ÁŒ¼ÇFÿÿÿÿÇFÿÿÿÿ…í…8‹FöÄ…p¨@…׋V…Ò~‹F%=„h…ÿއ¶¸0„Òt¾ÂƒÃ‰òƒïèd÷ÿÿ…ÿà1ÿ‹F …ÀöFt ‰ðèjþÿÿ‹F …ÿt!é鶸0„Òt¾ÂƒÃ‰òè%÷ÿÿ‹F Pÿ…À‰V ÚƒÄ [^_]Ã)ȉF…Àˆ>ÿÿÿ‹V 9Â3ÿÿÿ)Ð…À‰FŽ-ÿÿÿ‹V …ÒŽƒè…À‰F„ÿÿÿ…íu‹V÷ÂÀ„׃è…À‰F„óþÿÿ‹V€æ…çþÿÿƒè‰F‰ò¸ è“öÿÿ‹FPÿ…À‰Vç…í„Èþÿÿ‰ò¸-èröÿÿféÉþÿÿ‹F…ÀŽUÿÿÿƒè‰FéRÿÿÿø‰F ‰ò¸0èDöÿÿƒÇxïéÿÿÿ‰ò¸+vè+öÿÿé„þÿÿ¶ƒê‰V‰ò¸0èöÿÿ‹FPÿ…À‰Vç…ÿyþÿÿ‰ò¸0èíõÿÿéŠþÿÿ‹Fé2ÿÿÿöF„ÿÿÿ¶éëþÿÿ‰ò¸ t&è»õÿÿéþÿÿ¶UƒéW‰ÕVºgfffS¾ƒì,‰D$‰È‹\$@÷ê‰L$ÁùÁú)ʉÑt¿gfff‰ÈƒÆ÷ïÁùÁú)ʉÑuí‹C 9Æ}‰Æ‹CƒÆ9ðYÇCÿÿÿÿ‹D$¹‰ê‰$èIýÿÿ‹C ‰Ú‰C ‹C À‰Cƒà ƒÈEèõÿÿ‹C‰ÙDÿ‰C‹D$ƒÄ,[^_]‰ÂÁúéª÷ÿÿ)ð‰Cë§vV‰ÆSƒìD‹@ …Àˆ‚ƒÀ‹T$P‹L$T‰D$‹\$X‰T$(‹D$(T$<‰L$,‰\$0‰T$T$8‰$‹D$,‰T$‰D$‹D$0‰D$‹D$4‰D$ ¸è†óÿÿ‹L$8ù€ÿÿ‰Ãt-‰Â‹D$<‰4$èºþÿÿ‰$èâKƒÄD[^ÃÇF ¸épÿÿÿ‰Â‹D$<‰ñè^öÿÿ‰$è¶KƒÄD[^ÃUWVS‰ÃƒìL‹@ …Àˆœ‹t$`T$<‹|$d‰D$‹l$h‰T$T$8‰t$(‹D$(‰|$,‰l$0‰T$‰$‹D$,‰D$‹D$0‰D$‹D$4‰D$ ¸èÇòÿÿ‹L$8ù€ÿÿ‰ÆtJ‰Â‹D$<‰$è»ûÿÿë ‰Ú¸ èóÿÿ‹CPÿ…À‰Sç‰4$èKƒÄL[^_]ÃÇC ¸éSÿÿÿ‰Â‹D$<‰Ùè‚õÿÿ‰4$èÚJƒÄL[^_]ÃfUWVS‰ÃƒìL‹@ ƒøŒ+„ ‹t$`T$<‹|$d‰D$‹l$h‰T$T$8‰t$(‹D$(‰|$,‰l$0‰T$‰$‹D$,‰D$‹D$0‰D$‹D$4‰D$ ¸èàñÿÿ‹|$8ÿ€ÿÿ‰Æ„Þƒÿý|i‹C 9ÇböC…¹‰4$è¸i)ø…À‰C ˆÃ‹D$<‰ù‰ò‰$è£úÿÿë ‰Ú¸ è„òÿÿ‹CPÿ…À‰Sç‰4$èïIƒÄL[^_]ô&öCu?‰4$èZiƒè‰C ‹D$<‰ù‰ò‰$èŒüÿÿ‰4$è´IƒÄL[^_]ÃÇC ¸éæþÿÿƒk ëÉt&ÇC ¸éÊþÿÿ)ø‰C éRÿÿÿt&‰Â‹D$<‰Ùèôÿÿ륋S…ÒŽ2ÿÿÿЉCé(ÿÿÿt&¼'UWVSƒì|‹„$‹œ$ ‰D$@‹„$”‹k ‰D$D‹„$˜ƒý‰D$H‹„$œ‰D$L†‹D$@‹T$D‰Ñ Á„-·L$Ht$^‰D$ ‹|$@‰t$0‹l$D‰t$‰Æf‰L$ ‹K‰T$‰\$,‰L$8á‰L$<¶L$8ƒá ˆL$7·L$ f‰L$ ëdv‹D$,‰ê‹p ‰ø…ö~‹T$,ƒî‰ø‰r ‰ê…Û„˃û ŽÛƒÃ7 \$7‹L$ˆƒÁ‰L$‰Õ‰Ç¬ïÁí‰î þ„º‰ø‰ê‰þ‰l$‰óƒã‰ÙÁù‰L$$‹L$‰\$ 3L$$3t$ Î…yÿÿÿ‹t$09t$w‹L$<…Éu ‹L$,‹q …ö~‹t$Æ.ƒÆ‰t$ƒúw ƒø†]ÿÿÿ·L$ ‰ø‰ê´&¬ÐƒéÑêƒúwòƒøwí…Ûf‰L$ …5ÿÿÿ‹L$09L$w‹t$,‹N …Ɉ9ÿÿÿƒÃ0é$ÿÿÿ·D$ ‹t$;t$0‹\$,‰|$@‰l$Df‰D$H„È‹S…Ò‰T$ŽM‹K ‰ð+D$0·T$H…É~È‹L$8¿Ò¿‰T$ºgfffáÀƒùÉl‹D$‹L$÷êÁùÁú)ʉÑt¸gfffƒÅ÷éƒÇÁùÁú)ʉÑuç9l${‹D$8ÇCÿÿÿÿ„Àˆ¸öąר@…ë‰Ú¸0è+ïÿÿ‹C‰Úƒà ƒÈXèïÿÿ‹C…À~%öCtƒè‰C‰Ú¸0èüîÿÿ‹CPÿ…À‰Sç;t$0vE‰ý‹|$0ë ‰ÚèÙîÿÿ9þvƒî¾ƒø.uê‰Øèãõÿÿ9þwê‹C ‰ïPÿ…À‰S ~‰Ú¸0è¤îÿÿ‹C Pÿ…À‰S ç‹C‰Ú¿ÿƒà ƒÈPè„îÿÿ‹D$‰Ù{KÀ‰ÂÁúèñÿÿƒÄ|[^_]Ãf‹T$D‹D$@úÿÿÿw¤ÂÀúÿÿÿvò¹¾)é1ÿÁá¬Ð¥÷ÑêÓæöÁ t‰÷1öðú…Òˆº¤ÂÀ¹)éÁá­ÐÓêöÁ t‰Ð1Ò‰D$@‰T$Détüÿÿ¶‹T$‹D$8)êöĉՉS…xþÿÿRÿ…í‰SŽjþÿÿ‰Ú¸ è®íÿÿ‹CPÿ…À‰Sç‹C„À‰Nþÿÿ¶‰Ú¸-è„íÿÿéHþÿÿ¿L$H¿‹D$8‰L$éþÿÿ‰Ú¸+è\íÿÿé þÿÿfƒD$HéAÿÿÿ‰Ú¸ è@íÿÿéþÿÿ‹Ct$^‰t$0‰D$8…í~ÆD$^.t$`D$_Æ0é8ýÿÿ‹k ëâ÷D$8uÜt$_‹D$0ëßv¼'UWVS켤$Ð0‹œ$Ü‹´$àÇ$à+MèÙc…À„ᾃè0ƒø‡Òº‹„$Ô‹Œ$ÐÇD$dÿÿÿÿÇD$hÿÿÿÿ‰D$\‹„$ЀÍÇD$lýÿÿÿfÇD$p‰D$`‹„$ØÇD$t‰T$|‰D$x¶‰L$L¾Â…À„—ƒø%{uu‹„$ÐL$d1íÇD$hÿÿÿÿÇD$dÿÿÿÿ‰D$`¶S‰û‰L$H1É„Òt¼¾Âƒê ƒÃ€úZvfƒø9Ž­T$\¸%èßëÿÿ‰û¶ëèãdº¨„!ÿÿÿéÿÿÿT$\è·ëÿÿ¶S‰û¾Â…À…iÿÿÿ‹D$tļ[^_]ô&¶Òÿ$•,M¶‰ð¶½¹‰Æébÿÿÿ€;l½uƒÃf½ƒL$`‰ð¶¹‰Æé;ÿÿÿvƒù‡Jÿÿÿƒø/ŽAÿÿÿ…É…¶±‹T$H…Òt#‹T$H‹…Ò‰T$<ˆœ‹T$<’DPЋT$H‰‰ð¶‰Æéåþÿÿƒíƒý†±‹>…ÿ„k‰<$è×a‰ÂL$\‰øè2ìÿÿƒÆ¶éoþÿÿ´&…Éu‹Œ$Ð9L$`„V‹~1Ét$\¸x‰4$‰þ‰Œ$¤‰”$ è3ïÿÿ¶é#þÿÿƒý‰ð„"ƒý„¹ƒýt ƒý„ƒ‹T$tƒÆ‹‰¶éîýÿÿ¶‰ð¶½¹‰Æéþÿÿ¶€úh„‰ð½¹‰Æéóýÿÿ‹D$`‰òƒÈ ¨‰D$`„Ä‹ƒÆ ‹J‹R‰$D$\‰L$‰T$èwöÿÿ¶éwýÿÿ‹D$`‰òƒÈ ¨‰D$`„¯‹ƒÆ ‹J‹R‰$D$\‰L$‰T$è[õÿÿ¶é;ýÿÿv‹D$`‰òƒÈ ¨‰D$`„™‹ƒÆ ‹J‹R‰$D$\‰L$‰T$è\ôÿÿ¶éüüÿÿt&ƒí‰ðƒýÇD$hÿÿÿÿ†{‹ºƒÆL$\ˆ„$ „$ èyêÿÿ¶é¹üÿÿL$`€ƒý‰ð„þƒý„)‹ƒÆ‰ÂÁúƒý‰„$ ‰”$¤„²ƒý„.‹”$¤L$\‹„$ èSëÿÿ¶éSüÿÿ‹T$`‰ðƒÊ ö‰T$`„Û(ƒÆ ÙÀÛ¼$Ùå›ßà%E=„¯·Œ$˜‰Ï瀅ìÙå›ßàÝØ%E=„Øfáÿf…Éf‰Œ$˜„Ïféÿ?f‰Œ$˜D$\‰D$‹„$‰$‹„$”‰D$‹„$˜‰D$‹„$œ‰D$ èöÿÿ¶éŠûÿÿfƒý‰ò„lƒýf„0‹ ƒÆƒýÇ„$¤‰Œ$ „jƒý„æƒøu„ÎþÿÿT$\‹Œ$¤‰$‹”$ è.ìÿÿ¶éûÿÿ¶¶€ú6„)€ú3„D‰ð½¹‰Æé/ûÿÿ´&‹D$`‰ò¨…<ýÿÿÝD$\ƒÆÛ<$èÁóÿÿ¶éÁúÿÿ‹D$`‰ò¨…QýÿÿÝD$\ƒÆÛ<$èºòÿÿ¶éšúÿÿf‹D$`‰ò¨…gýÿÿÝD$\ƒÆÛ<$èÑñÿÿ¶éqúÿÿÇD$hÿÿÿÿ‰ð‹ºƒÆL$\f‰„$®„$®èíæÿÿ¶é=úÿÿt&‹T$`‰ðöÂ…ìýÿÿ݃ÆÝ”$€Ùå›ßà%E=„¡·¬$†‰ïç€t€Ê€‰T$`Ý$èo>=„Ç‹„$€fÁí‹”$„fåÿf‰¬$ˆ¤ÂÁà‰”$„‰„$€·„$†f%ÿf…íf‰„$†…?‹„$„ „$€t fÇ„$ˆü‹„$€T$\‰T$‰$‹„$„‰D$‹„$ˆ‰D$‹„$Œ‰D$ èÁóÿÿ¶é1ùÿÿ…É…{ùÿÿL$`‰ð¶‰ÆéUùÿÿƒù†€‰ð¶¹‰Æé;ùÿÿv…É…?úÿÿL$`‰ð¶‰Æéùÿÿt&…É…úÿÿL$`‰ð¶‰Æéüøÿÿt&‹D$H…Àt¤…É”D$/ƒù„€|$/…ý‰ð¶¹ÇD$H‰Æé¼øÿÿt&T$\è·äÿÿ¶égøÿÿ…É…®ùÿÿL$`‰ð¶‰Æé‹øÿÿv…É…ùÿÿƒL$`@‰ð¶‰Æéoøÿÿ´&ƒù…Cùÿÿ±é<ùÿÿ€Ê€‰T$`éüÿÿt&‹„$” „$„*üÿÿéüÿÿ´&‹>…ÿ„º‰<$ƒÆèS\L$\‰Â‰øènäÿÿ¶é¾÷ÿÿ€{2…²üÿÿƒÃ‰ð¶½¹‰ÆéÛ÷ÿÿvF‹6‹T$H…ö‰2ˆÜ¶‰ÆÇD$Hé³÷ÿÿ‹ƒÆ‰ÁÁù‰„$ ‰Œ$¤éäúÿÿ‹T$tƒÆ‹f‰¶éB÷ÿÿ‹ ƒÆÇ„$¤‰Œ$ éÝûÿÿ‹T$Hƒè0‰‰ð¶‰ÆéQ÷ÿÿ‹JƒÆ‹‰Œ$¤‰”$ é­ûÿÿ‹T$tƒÆ‹ˆ¶éãöÿÿ€{4…×ûÿÿƒÃ‰ð¶½¹‰Æé÷ÿÿƒÃ‰ð¶½¹‰Æéçöÿÿ‹PƒÆ‹‰”$¤‰„$ éúÿÿ‰ð¹t$hÇD$h¶‰t$H‰Æé«öÿÿÝØëÝØº ,Mf1ÀL$\è¼äÿÿ¶éLöÿÿfíÿfƒýƒf‰¬$ˆŒÄüÿÿff‰„$†é³üÿÿº¿,Mé÷ÿÿº,M‰øL$\èmäÿÿ¶éýõÿÿ‹D$LÇD$h‰D$`é•÷ÿÿ·”$ Ç„$¤‰”$ é€úÿÿ¿„$ ‰ÁÁù‰„$ ‰Œ$¤é7ùÿÿ€|$/„„L$`1É÷\$d‰Æ¶ÇD$Hé¾õÿÿ‹T$tƒÆ‹‰ÑÁù‰‰H¶écõÿÿ¶”$ Ç„$¤‰”$ éûùÿÿ¾„$ ‰ÂÁú‰„$ ‰”$¤é²øÿÿ¿ø+Mé<ýÿÿÇD$hÿÿÿÿéˆýÿÿ‹T$‹JBLŠf‹…ÒuÇÿÿÿÿƒÀ9ÁwíóÃê‰Ãt&VSƒì‹\$$‹D$ sÁþ;pJ‰ÙƒãÁùƒûƒÙÿPtˆ9ò‰Hs‰ÑÇÿÿÿÿƒÁ9Îwó÷ÒòÁêT…Ût ¹ )ÙÓjüƒÄ[^É$èÖ;‰4$è<뤶¿VSƒì‹\$ ‹sCL³‹ƒúÿu*ǃÀ9Áwì;s‰ð}#ÇDƒƒÀ‰C‰ØƒÄ[^ɉ؃Ä[^ËCƒÀ‰$è±;‹S •S ‰Æ@ ‰L$‰T$‰$èW‰$‰óè5;‹F랃ìL‰|$D‰×T$,‰T$ T$(‰\$<‰t$@‹t$X‰l$H‰T$‰L$ÝÝ$è<‹/‹T$(‰Ã‹D$,)èÂ…À‰D$,‰T$(Ž;ƒý5t4ƒþtEƒþºt=‰Âƒê… ‹T$T…Ò„N‹SÑêƒâët&‹L$T…É„4ƒ …*1Ò‰T$‰D$‰$èèC‰$ƒø‰D$‹D$,ö÷Öƒæ‰D$è:G‹T$…Ò…¾‹T$(‹G9Â}s‰Á)Ñ9͉ʉD$(Ø‹D$\1öÇCÇP‹T$(‹L$‹D$P‰‰$‰\$‰l$èC‹D$\ 0¾‰$èí9‰ð‹\$<‹t$@‹|$D‹l$HƒÄLô&‹G9Â~¯‹T$\ƒÀ1ö‰D$(Ç£èÙVÇ"ÇC‹T$(ë„‹t$T…öt61ö…ÀÇD$„:ÿÿÿ÷Ø1ö‰$‰D$èT=‹T$(ÇD$‰Ãéÿÿÿ1öédÿÿÿ‹O…É…ÿÿÿ‹D$zÿ…À”À…ÿ~!„Àt)‰T$‰|$‰$èšB‹T$…À‰D$”À„Àt‹L$T…Ét±‰ø‰ùÁøƒáÇD$Ód$‹Lƒ!L$‰T$‰$èÇE‹T$‹D$\…ÒÇ…Á‹D$…À„¥‹T$(¾Péþÿÿ´&‰Ñ‰ÖÁùƒæ‹T‹‰ñÓêƒâéþÿÿ¶‰$èÈüÿÿ‰êƒâ‰Ãt ¸ )Љ‹C½Dƒƒð9Ât7‹t$…öu ‹Cƒà‰D$ÇD$¾ ‰$è E‹T$(ƒÂ‰T$(éæýÿÿ‹T$(¾ éØýÿÿf‹T$(éýýÿÿ´&‰$¾`èCüÿÿ‹T$(‰ÃéÞýÿÿ´&UWVSìüèÉU‹‰$‰D$Xè»S‹”$Ç„$äÇ„$Ô‰”$؉щD$`‹„$ÙîÝœ$È‹‰D$l¶<-†ŠÇD$x<0ÇD$T„ã‹”$¾ðƒþ/‹R‰”$¤Ž–ƒþ9‰L$P1í1Û1Ò‰Èë)›\^ЃÀƒÂ‰„$ؾ0ƒþ/Žüƒþ9óƒú~ÒƒúÔ|­l~ÐëɶÐÿ$•¬-Mt&ÇD$xƒÁ‰Œ$ض„À…Sÿÿÿ‹Œ$‹„$ÔÇ„$äÇD$x‰Œ$Ø‹¬$…ít‹”$Ø‹Œ$‰‹|$x…ÿu@…Àt*‹t$l‹¼$ ‰D$‰t$‰<$èi?‹„$Ô‰$èZ6‹„$äÄü[^_]ÃŒ$äë¶ÇD$xéIÿÿÿƒÁ‰Œ$ØéŽþÿÿ‰D$P‹D$X¾89÷„‰÷1ö‰L$\‰T$XÇD$hÇD$pƒÿE„œƒÿe„“1É‹D$X…À„8+L$hÇ„$ä‰L$P‹Œ$‹A ƒàƒø„Ùƒø„½…À”À¶À‰„$¬…Ò‰T$Tu‹D$X‰D$T‹t$Xƒþ~¾1Òƒþ ‰œ$°‰”$´ß¬$°Ý”$È~/Ü õ¸/M1Ò‰¬$°‰”$´ß¬$°ÞÁÝœ$Èë¶Ý؃|$X ƒ|$l5Žæ‹D$P‹l$X)õDƒøŽG‰ÂƒâtÝ„$ÈÜ Õ0MÝœ$ȃàð…&1ö„$àÝ„$ȉD$ „$܉D$Ý$èÉ5‹”$Ü‹Œ$àò‰Î+t$l‰„$Ô‰”$Ü…ö~)‰$‰t$èUA‹”$Ü‹D$lò‰„$à‰Á‰”$Ü‹¼$4+t$l‹GƒÀ9Ƶ‹o‰´$¨ÇD$p9î‰l$tñ‰×)ïƒÿŽ˜‹„$Ô‰|$‰$èÞ7¼$à‰„$Ô‹”$¤‹|$t…Ò‰¼$Ü„–ƒÆ9÷Ž‹‹„$Ô‹L$t‹”$Ç@Ç@Ç„$äP‰ é¿…ö…9‹\$T…Û…-‹L$p…É… ƒÿN„5ƒÿI´&…êœ$ØÇD$ -M‰$èó;…À„˃¬$ØÇD$£-M‰$èÓ;…Àuƒ„$Ø‹”$Ç„$äÇD$p‹B‹¬$ƒÀ‰E‹L$p…É„‰‹„$Ô‹”$¤…Ò…‹Œ$ä1ÒƒxŸÂƒáøÒ ÊöÂ0‰”$ä„ùûÿÿƒÊ@‰”$äè½OÇ"ë5¶A‹L$T‹D$X‰T$H‰L$‰$è¦2‰t$‰D$X‰$èæ/‰4$‰D$Lèú*‹D$L‹T$H‰Æ+T$hƒú%üÿÿ„-üÿÿ÷Ú‰T$‰4$è¯7éüÿÿ‹H…É…küÿÿ‹l$p…í„Ë„$Ü‹Œ$‰‰4$è›*‰<$è“*‹t$X‰4$è‡*‹|$|‰<$è{*‰$ès*‹¬$‹E;„$Üo÷ÿÿ‹E ƒàƒø„[ ƒø„A ƒø„¼‹„$Ô‰$è,*‹”$Ç„$䋌$‹´$ Ç„$Ô‹B‰‹ AÁø†9Æs‰òÇÿÿÿÿƒÂ9Ðwó‰Êƒâ„æöÿÿ¹ )ÑÓhüé×öÿÿt&‰T$‰T$H‰,$è5‹T$H‹H‰„$Ô‰L$<ƒé;MŒ¹‹L$p…É„¦‹„$àƒÀ9D$l‰„$à”À¶Àƒè!D$pé€üÿÿÝD$`Ü ð.MÝ„$ˆØ%ä.MÙÁÙàÝéßàž†íÝØÝ„$ˆÚéßàž†—üÿÿ‹„$„ „$äéSþÿÿf)éé€ýÿÿ‰ $‰T$HÇD$èÕ,‹T$Hƒ¬$܃¬$¨‰$‰„$ÔèÒ(‰,$èÊ(‹„$Ô‰$è«6‰D$hé8üÿÿfÙä.MƒýÜÉÙÉɃáƒÁƒýíƒåÝ\$`Ýè.MÝD$`ÙÉÝéßà‰Œ$„‰l$Tž‡íÝÙÝœ$ˆÇD$hÇ„$é’úÿÿÝéßàž†±ûÿÿØ-à.MÝ„$ˆÙÉÚéßàž†™ûÿÿéýþÿÿf‹”$¬…Ò„ßùÿÿ‹”$ 1ꉔ$„c …ít'Ç„$ä!Ç„$„ ÇD$Téúÿÿt&‹L$t9Œ$¨Ç„$ä„Çùÿÿƒ|$lŽô ‹„$Ô1É‹T$l‹h…íté£ùÿÿ‹lˆ…í…—ùÿÿƒê ƒÁƒúéƒú~)ƒÁƒê‹lˆ‰L$\¼ÍÓí‰L$T‹L$\;T$T‰lˆ^ùÿÿ‹”$¨‹l$l‰$ƒê‰”$܉¬$à‰l$èãêÿÿ‰„$ÔéXüÿÿ´&‹l$l‹„$Ô)Õ‰l$‰$è×*‹L$l)¬$܉Œ$à‰„$ÔéJùÿÿ‹L$<ƒÁ‰L$<½Lˆƒñ‰L$T‹L$<½Lƒñ9L$TÍùÿÿéýÿÿ´&÷؉$‰T$H‰D$èn3‹T$Hé:ùÿÿt&ÝØÙ¼$ºÝD$`ƒ¼$¬·„$º´ f‰„$¸Ù¬$¸Û\$hÙ¬$ºÛD$hÝD$`ØáÝ”$ˆ„£ƒ¼$¬„jÝêßàÝÙžrÝØƒD$h¸0+„$„ÛD$h‰„$„Ý\$`Ç„$é-øÿÿ´&‰T$HÇD$‰$è¬2‹T$Hƒ„$܃„$¨ÇD$héÌøÿÿÇ„$Ç„$„ ÇD$Té¹÷ÿÿ‹L$p…É„š÷ÿÿ‹”$ÔÇB‹T$tÇ„$äP‰”$Üé”úÿÿv‹D$<ƒÀ‰D$<½Dƒð‰D$T‹D$<½D…ƒð9D$TŽDøÿÿéøÿÿ‹|$p‹T$h‹L$\‰L$\1ö‰T$XÇD$hÇD$péïÿÿv‹„$1ɉ„$Øéþîÿÿ‹L$T…É…“òÿÿ‹¬$Ç„$ä‹„$Ô‰¬$ØéÿíÿÿÁø1ÿƒø~QÝ /M‰Á‹´$̃é‰òæÿÿ€Îð?âð‰´$ÌÁêƒùÝ„$ȼüÿÿØÉÝœ$ȼÝ؃à‹Œ$̉ÊâðÁê´üÿÿ‰Êâÿÿ€Êð?…À‰”$ÌŽKïÿÿÝ„$È1ÒëƒÂ¨tÜ Õ€/MÑøuîÝœ$Èé"ïÿÿ‹„$à‹l$l)Ńý…ÿ‹„$ÜÇD$péùÿÿ1öƒÿ0…yƒÀƒÆ‰„$ؾ8ƒÿ0tëGσø†ü‰L$\ÇD$XÇD$hÇD$péˆíÿÿ„ƒïÿÿ …ɉŒ$àŽñ‹„$Ô÷߉|$‰$è,0éWïÿÿÇD$tH‰Œ$ؾxé0ñÿÿƒ|$PêŒîÿÿkD$PøÝ„$È”$䋌$¬‹¼$ ܰ0M‰T$ „$ȉL$ÇD$‰<$Ýœ$È‹Œ$‹”$è–çÿÿ…À…fðÿÿ1Àé¯íÿÿ´&Ç@Ç„$äPèÁ?Ç"‹„$ÔéÜëÿÿÇD$p‹„$ÔÇ@Ç„$ä£è‰?‹¼$Ç"‹GéRïÿÿ‹t$x„$Ô‹¼$‹¬$‰D$ „$؉t$‰|$‰l$‰$èD0ƒø‰„$ä…¬ïÿÿ‹„$ÇD$x‰„$Ø‹„$Ôé7ëÿÿ‹|$xƒÇ‰¼$¬é?ìÿÿ‹t$x)ð‰„$¬é-ìÿÿ‰L$P1í1Û1Òé’ëÿÿ„Øìÿÿ‰Â÷ډЃàtÝ„$ÈÜ4Å0MÝœ$ȃâð„¯ìÿÿÁú1öƒú~ZÝà/M‰Ñ‹¼$̃鉸çÿÿ€Ïð?%ð‰¼$ÌÁèƒùÝ„$È´üÿÿØÉÝœ$ȽÝ؃ê‰ÐÁèkÀð‹Œ$̉È%ðÁè´üÿÿ‰È%ÿÿ€ ð?…Ò‰„$ÌŽìÿÿÝ„$È1ÀëƒÀöÂtÜ ÅÀ/MÑúuíéÉüÿÿÇD$téyýÿÿÝØÝÙ‹D$T…À…­úÿÿÙîÝ„$ˆÚéßàž†™úÿÿÝØévúÿÿÝØÝÙ‹T$T…Ò„‚úÿÿëÓ”$䋌$ ‰T$ ‹”$¬„$ÈÇD$‰ $‰T$énýÿÿ¸+D$XP9T$P%ëÿÿÝ„$È”$äÜ Å0M‹|$P‰T$ ‹¬$¬‹”$ ÇD$)ÇÜ ý0M‰l$„$ȉ$Ýœ$ÈéýÿÿŽI‹„$Ô‰l$‰$è¢#‰„$Ô‹„$ÜÇD$p)艄$Üéòôÿÿ‹„$؃ï01ɉt$h¾‰|$t‰D$p‰D$\éáïÿÿ1öƒ|$Xkí l$t‹D$pƒÀ‰„$Ø‹D$p¾xéŒïÿÿƒÿi„êëÿÿƒÿn…Ëîÿÿœ$ØÇD$©-M‰$èÔ'…À„¬îÿÿ‹Œ$Ç„$ä‹´$ÇD$p‹AP‰‹”$Ø€:(…éëÿÿ‹¼$ ‰Í‰L$‰$‰|$è*6ÇD$p‰„$ä‹Eé¹ëÿÿ‹„$Ì ¼Ð¸)Ðé²íÿÿƒýÀƒàƒÀ‰„$äéÂóÿÿƒýÀƒàƒÀƒ|$`‰„$ä¥óÿÿ…í…óÿÿ‹D$t9„$¨„Œóÿÿƒ|$p…óÿÿ‰$ÇD$è"‹T$X‰T$‰Ã‰$è^…ÀŽ&úÿÿÇ„$ä‹l$l‹„$Ô)¬$܉¬$à‰l$‰$è¦áÿÿ‰„$Ôéóÿÿ…í„/‹T$p…ÒtQ‹„$Ô‹Œ$àP‰T$P‰ÊÁúT9T$P‰T$\ƒƒxÿuP‰L$T‰Ñ‹T$\ëƒÁ9ʆ݃9ÿtðÇ„$ä‹D$p…Àu‹D$l9D$`Œhùÿÿ‹”$ÔöB„ˆòÿÿ…í…Vƒ|$`„¿÷ÿÿ‹BJT‚‹…À…áÇÿÿÿÿƒÁ9ÊwéÇ„$äéDòÿÿ‹\$x…Û…xúÿÿé·òÿÿ‹t$x…ö„gúÿÿ¶é òÿÿ‹D$XL0þqƒù‰t$XKýÿÿkÛ 1ö\$téMýÿÿ‹T$l1É‹„$Ôé*õÿÿƒ|$`taÇ„$ä!éÿÿÿ‰è÷؉D$‹„$Ô‰$èU)éµüÿÿƒùÿŒœèÿÿ‹„$ÔÇ„$àÇ@Ç@éRèÿÿ‰Ö镸ÿÿ‹Œ$¨9L$tÇ„$ä…þÿÿ‹„$ÔÇ„$ä!ƒx…Dñÿÿƒx…:ñÿÿÇ„$¤é*ñÿÿ‰$è!àÿÿ‹Œ$à‰Â‰„$Ô‹@½D‚‰Ê÷Úƒâƒð9Ât ƒÁ‰Œ$àÇ„$ä!éâðÿÿ‰L$P‹L$TƒátƒÊÿÓâ‹L$P ƒúÿ…þÿÿ‹T$l‹l$tÇ@Ç@Ç„$àD*ÿ‰„$ܸÇ„$ä!éV÷ÿÿƒè‰é"þÿÿU1ÒWVS윋œ$¼‹‰Åƒàƒåσø‰+‡iÿ$…/M„$Œ‰D$‰4$èÍ‹D$L‹L$HTÿÝ\$@‹L$D‰Ð‰T$xÁø‰D$(1Ð+D$(áÿÿÉð?‰L$D-5ÝD$@…ÀØ%$/MÜ (/MÜ0/MÛD$xÜ 8/MÞÁ~‰D$xÛD$xÜ @/MÞÁÙ|$~·D$~´ f‰D$|Ùl$|ÛT$(Ùl$~ÙîÝéßàžvÛD$(Úéßàž•ÀšD$P D$P¶À)D$(ëÝØ‰ÐÁàȃ|$(‰D$DÇD$dw%‹L$(ÇD$dÝÍ0MÝD$@ÙÉÚéßàžvƒl$(‹D$Hƒè)Ј8 ‰D$XÇD$\‹L$(…Ɉ ‹T$(T$XÇD$`‰T$hƒ¼$À ‡îƒ¼$ÀŽÝƒ¬$À1Àƒ¼$À„g k ƒ¼$À…¿ÇD$l‹”$Ä…ÒŽæ ‹”$ăú–Á!Á‰Ð‰”$Œ‰T$p‰T$PˆL$$‰$èÁ¶L$$‰Â‹„$°‹@ ƒèƒø‰D$Tt}ÇD$Tƒåt ¸+D$T‰D$T„Ét ‹l$T…턃|$(ŽÝ‹l$l…í…4 ‹|$`‹l$\ÇD$L‹L$X…É~…í~‹D$X9è~‰è)D$\)Å)D$X‰„$Œ‹D$`…À~V‹L$l…É„ …ÿ~:‹D$L‰T$ ‰|$‰$èþ‰t$‰D$L‰$è>‰4$‰D$$èR‹D$$‹T$ ‰Æ‹L$`)ù…å ‰T$ Ç$èl‹T$h…Ò‹T$ ‰D$@~‹L$h‰$‰L$蜋T$ ‰D$@ƒ¼$ÀŽÍ ÇD$4‹|$h¸…ÿt‹L$@‹A½Dƒð+D$X‹L$\xüƒç…À‰¼$Œ‰|$,~!‰4$‰T$ ‰D$è‚‹T$ ‰Æ‹„$Œ‰D$,‹D$,D$X…À~‹L$@‰T$ ‰D$‰ $èQ‹T$ ‰D$@‹L$d…É…­ ‹D$P…ÀŽ ‹D$l…À„X ï…ÿ~‹l$L‰T$ ‰|$‰,$è ‹T$ ‰D$L‹L$4‹|$L…É… ‰\$X‹\$LÇ„$Œ‰T$H‰T$,‹l$@‰4$‰l$è8‰\$‰4$ƒÀ0‰D$4è‰,$‰|$‰D$8è‰Å¸‹U …Ò„Ó‰D$$‰,$è§‹D$$…À…»‹Œ$À…É…¬‹T$T…Ò… ‹”$¸ö…ƒ|$49‰\$L‹T$H‹l$,‹\$X„ùƒ|$8ŽdƒD$4ÇD$0 ¶L$4ˆM‹D$(ƒÅƒÀ‰D$,´&‹D$@‰T$ ‰$è…ÿ‹T$ t.9|$Lt‹L$L…Ét‹L$L‰ $èî‹T$ ‰T$ ‰<$èÞ‹T$ ‰T$ ‰4$èÎÆE‹„$È‹L$,‹T$ ‰‹„$Ì…Àt ‹„$̉(‹L$0 Äœ‰Ð[^_]Ãf‹„$°1Ò‹8¸ ƒÿ ~ ÀƒÂ9Ç÷‰$躋”$¸‰ÆGÿÁø‚‰D$(‹„$¸N‰L$H‰Êt&‹ƒÀ‰ ƒÂ9D$(sð+T$HÁúD–ëv‰Êƒ8Jÿ…2ƒè…ÉuëÇFÇD$H‰4$èä"‹”$´‰T$L…À‰„$Œ…Ê‹F…À…Ïùÿÿ‰4$èÇ‹¬$È‹„$ÌÇEÇD$‰D$Ç$ /MèjÄœ[^_]‰Â‰ÐËŒ$È‹¬$ÌÇ€ÿÿ‰l$ÇD$Ç$ /Mè/Äœ[^_]‰Â‰ÐË„$È‹”$ÌÇ€ÿÿ‰T$ÇD$Ç$/MèôÄœ[^_]‰Â‰ÐÃt&‰D$‰4$èä ‹„$Œ‹Œ$´)D$HÁ‰L$Lé ÿÿÿ´&½D–‰VÁâƒð)‰T$HéËþÿÿ´&Ç„$À‰|$x1ÉÛD$xÜ H/MÇD$lÇD$pÿÿÿÿÇD$PÿÿÿÿÇ„$ÄÙl$|Û\$xÙl$~‹D$xƒÀ‰„$Œé&úÿÿÙÀ‹D$PØÁØ\/MÝ\$@l$D@…À…×ÙÀØ%`/MÝD$@ÙÉÝáßàž‡ÚÙÉÙàÚéßàž‡+ëÝØÝØë ÝØÝØÝØëÝØÝ\$@v‹L$L…Ɉúÿÿ‹D$P‹L$(…ÀÝÍ0MŽÝD$@jÙÀØòÙ|$~Ç„$Œ·D$~´ f‰D$|Ùl$|Û\$xÙl$~‹L$x‰L$xA0ÛD$xØÊˆÞéÙîÙÉÝáßàÝÙž„d ‹„$Œ9D$P„Y‰×ÙT/M‹T$Pë¶‹„$Œ9„2ƒÀÜɉ„$ŒÙÁØóÙl$|Û\$xÙl$~‹L$x‰L$xA0ÛD$xØËˆEƒÅÞêÙîÙÊÝâßàÝÚžu¯z­ÝØÝØÝ؉úëÝØÝØ‹L$(ÇD$0ƒÁ‰L$,é üÿÿ´&‹L$(…É…ìøÿÿ‹D$dÇ„$ŒÝD$@…À„Vþÿÿ‹l$P…íŽJþÿÿÙèÝéßàž†=þÿÿ‹L$p…ÉŽþÿÿÙÀ‹L$pØ T/MÇD$tÿÿÿÿÙÀØ X/MØ\/MÝ\$@l$D@‹l$l…í„/ÝD$@jÙd/MÜ4Íø/MÙ|$~Ç„$Œ·D$~´ f‰D$|ÞáÙÉÙl$|ÛT$xÙl$~‹D$x‰D$xƒÀ0ÛD$xÞéÙɈÝáßàž‡©ÙÁØ-P/MÙÉÝáßàÝÙž‡‹„$ŒƒÀ9ȉ„$Œ´ýÿÿÙT/Më7vÙÁØ-P/MÙÉÝáßàÝÙž‡Ü‹„$ŒƒÀ9ȉ„$ŒýÿÿÙÉÙÊÜÉÜÊÙÊÙl$|ÛT$xÙl$~‹D$x‰D$xƒÀ0ÛD$xÞéÙɈEƒÅÝáßàžvšÝØÝÙÝÙëÝØÝÙÙîÙÉÚéßàž… Š ‹L$tÇD$0ƒÁ‰L$,éGúÿÿÇD$l‹L$(Œ$ĉL$pƒÁ…ɉL$P‰Œ$ŒŽ^ƒù–Á!Á‹D$Pé¦öÿÿvƒ|$8Œ;u‹¬$À…íu‹”$¸ö„…À~Hƒ|$TtAƒ|$49‰\$L‹T$H‹l$,‹\$X„6 ¶D$4ƒÀˆE‹L$(ƒÅÇD$0 ƒÁ‰L$,éLùÿÿ‹T$,¶D$4ˆ‹L$PƒÂ9Œ$Œ‰T$,„K‰4$ÇD$ÇD$ è¡9û‰Æ„ï‰$ÇD$ÇD$ è‰<$ÇD$ÇD$ ‰Ãèe‰Çƒ„$Œéî÷ÿÿ¶‰l$‰4$è éøÿÿ‹L$()L$\ÇD$h÷Ù‰L$`éøôÿÿt&÷؉D$\ÇD$XéÁôÿÿƒ¼$ÀŽ;‹|$Pƒï9|$`Œ‹D$`)ø‰Ç‹L$P‹l$\…ɉȉŒ$Œˆ¯‰T$ D$\D$XÇ$è…‹T$ ‰D$Léwõÿÿ‰$ÇD$ÇD$ è‰Ã‰Çé$ÿÿÿƒ¼$À„fƒ¼$À…FúÿÿÇD$léÕýÿÿÝØëÝØÇD$@ÇD$L‹Œ$ĉՋ|$LÇD$0ÇD$L÷Ù‰L$,é÷ÿÿ‹D$@‰T$ ‰4$‰D$èÜ ‹T$ …À‰3öÿÿƒl$(‰4$ÇD$ÇD$ èã‹L$pƒ|$l‹T$ ‰L$P‰Æ„ýõÿÿ‹D$LÇD$ÇD$ ‰$讋L$p‹T$ ‰L$P‰D$LéÌõÿÿƒ|$H…(õÿÿ‹Œ$°‹AƒÀ9„$´ŽõÿÿƒD$\ƒD$XÇD$4éÿôÿÿ‰\$<‰Õ‹|$@Ç„$Œ‹\$P‰T$0ë"‰4$ÇD$ÇD$ è&ƒ„$Œ‰Æ‰|$‰4$èðƒÀ0ˆEƒÅ;œ$ŒÀ‹T$0‹\$<‹|$L‰D$4ÇD$L‹D$T…À„‡ƒ|$T„¼ƒ~ ét&‰Å¶MÿEÿ€ù9…9ÂuêÆ1‹L$(ÇD$0 ƒÁ‰L$,éÿõÿÿÝØ‰ú‹D$T…À„ÝØÝØƒ|$Tt$‹D$(ÇD$0ƒÀ‰D$,éöÿÿ‰ÅëÝØÝØt&¶MÿEÿ€ù9…Ê9ÂuàƒD$(‰Ð¹1Æ0ˆ‹D$(ÇD$0 ƒÀ‰D$,éÉõÿÿÇD$lé*òÿÿƒ|$PÇ„$Œ–Á!Á¸é:òÿÿÇ„$Äé òÿÿ‹D$`‰D$‰4$‰T$ èã‹T$ ‰Æé óÿÿƒ¼$ÀŽéóÿÿ‹L$P…É…Výÿÿ‹l$@‰T$ ÇD$ÇD$‰,$è~‰4$‰D$@‰D$è>‹T$ …ÀŽýÿÿ‹D$(ƒÀ‰D$,Æ1j‹|$LÇD$0 ÇD$Lé¨ôÿÿ‹¬$Ä…í‰Ü÷ÿÿ‹|$P…ÿ…ÃüÿÿØ `/MÝD$@ÙÉÚéßàžƒ®üÿÿƒÁ‰L$,ÇD$@ÇD$Lë–+|$`|$h|$`1ÿéôûÿÿÙÀ‹L$PÇD$téñøÿÿ‰L$éïþÿÿÝØÝØÝØÇD$,ÇD$@ÇD$LéDÿÿÿÙ|$~ÝD$@‰ÕÜ Íø/MÇ„$Œ·D$~´ ÙT/MÙÊf‰D$|ë ØÊƒÀ‰„$ŒÙl$|ÛT$xÙl$~‹D$x…Àt ‰D$xÛD$xÞéƒÀ0ˆE‹„$ŒƒÅ9ÈuÂÝÚÙÉÙd/MÙÂØÁÙÊÝâßàÝÚž‡ÛÞâÙÉÝéßàž††öÿÿÝÙÙîÚéßàž”À›Á!ȶÀƒèƒà‰D$0ë‰Å€}ÿ0Eÿtõ‹D$tƒÀ‰D$,ézóÿÿ‹¬$°+|$H‹MG‹l$L‰„$Œ)ý‹|$`‰l$@‹l$\9L$@Ãúÿÿ‹D$L)ȃÀ‰„$Œé®úÿÿØÀÝáßàž‡ýÿÿÙÉÚéßàžu z €á… ýÿÿ‹L$(ÇD$0‰L$téhÿÿÿÝØÝØÝØëÝØÝØÝØÝØëÝØÝØÝØÝØ‹L$t‰L$(éÎüÿÿ)Í1ÀÇ„$Œé=úÿÿ‹L$T‰\$L‹T$H‹l$,‹\$X…É„Ÿƒ~Ž‹ƒ|$T„í‰\$,‹\$@‰T$<ë4‰4$ƒÅÇD$ÇD$ è°‰\$‰Æ‰$è‚‹|$0ƒÀ0‰D$4‰|$‰$è[…Àޤ¶L$4ˆMÇD$ÇD$ ‰<$èc9|$L‰D$0uމD$L눉T$ ‰4$ÇD$è¯ ‰Æ‹D$@‰4$‰D$èý‹T$ ƒøbûÿÿu öD$4…Uûÿÿƒ~ŽƒÇD$0ë‰Å€}ÿ0Eÿtõ‹L$(ƒÁ‰L$,éSñÿÿ‹G‰T$ ‰$è´‹L$L‰Çh ‹AƒÁ ‰L$‰,$…‰D$è#‰<$ÇD$è ‹T$ ‰ÇéðÿÿƒÁˆ‹D$(ÇD$0 ƒÀ‰D$,éæðÿÿƒÁéAûÿÿ‰\$L‹T$H‹l$,‹\$Xésúÿÿƒ~…kþÿÿ…ÀÇD$0~G‰T$ ‰4$ÇD$èŸ ‰Æ‹D$@‰4$‰D$èí‹T$ ƒøŽ˜ƒ|$49t=ƒD$4ÇD$0 ƒ~ ƒ~„?ðÿÿÇD$0é2ðÿÿƒ|$49‹T$<‹\$,…ðÿÿÆE9ƒÅéúÿÿƒ~…øùÿÿÇD$0é­þÿÿ‹D$tÇD$0ƒÀ‰D$,éGðÿÿ‹ôÿÿé‘óÿÿƒ~f…qþÿÿë´&u öD$4…SÿÿÿÇD$0 éZÿÿÿƒ~f^ÿÿÿƒ~ÇD$0„‹ïÿÿéGÿÿÿ¸é#ìÿÿUWVSƒì\‹D$t‹L$p‹P1À;Qæ‹l$trÿƒÂ‰t$@‹t$t‰ÈƒÀ‹\$t‰D$Dl•‰l$8‹l$p‹L–ƒÃ‹D•1ÒƒÁ÷ñ…À‰D$<‰D$H„Õ‹L$D‰Þ1ÿ1íÇD$(ÇD$,‰\$L‹D$<÷&ÇD$4‰D$‹|$‹\$‰T$l$ƒÆ‹l$1Ò‰\$0‰ï1í+D$0T$4+D$(T$,ÇD$,‰ƒÁ‰Óƒã9t$8‰\$(sŸ‹D$@‹t$p‹\$LƒÀ‹L†…Éu?†9D$Ds+‹…Òu%‹L$D‹T$@ë ´&‹(…íu ƒèƒê9Árð‰T$@‹D$@‹l$p‰E‹T$t‹L$p‰T$‰ $è…Àˆ¤‹t$<1ÿ‹L$DƒÆ‰t$H1öf‹1҃ÉT$1ÒÇD$$‰D$‹l$‹‰l$ +D$ T$$)ðú1ÿ‰Öƒæ‰ƒÁ9\$8s¿‹D$@‹T$pƒÀ‹|‚…ÿu;‚9D$Ds'‹0…öu!‹L$D‹T$@ë v‹…Ûu ƒèƒê9Árð‰T$@‹\$@‹L$p‰Y‹D$HƒÄ\[^_]Ãt&ƒì ‹T$‹JüBüºÓâ‰H‰P‰D$ƒÄ ézv¼'S1ۃ츋L$ ƒùv ÀƒÃP9Êvô‰$蘉ƒÀƒÄ[ô&¼'VSƒì‹D$(‹\$ ‹t$$‰$è§ÿÿÿ¶ „Ɉ‰ÂtƒÃ¶ ƒÂƒÃ„Ɉ uñ…öt‰ƒÄ[^ÃÝD$Ùå›ßàÝØ%EÃƒì ‰$‹L$‹\$‰t$‰|$‹A‹S)Ðu"<•qT9L;ƒéƒê‹9u9Örð‹$‹t$‹|$ƒÄ ÃÀ‹$ƒÈ‹t$‹|$ƒÄ Ãt&¼'‹T$‹D$¶ „ɈtƒÂ¶ ƒÀƒÂ„ɈuñóÃt&¼'ƒì‹D$ ‰\$ ‰t$‹t$$‰|$‰l$‹PH|º ‹‰ý½Øƒó)Úƒû ‰Gº 1ö)Ú9ùs‹wü‰ÑÓî‰Ñ‰ÇÓïK‰úÓàÊð? ƉT$‰4$Ý$‹\$ ‹t$‹|$‹l$ƒÄÃ1Ò9ùrGƒë t4¾ 1ÿ)Þ9Ív‹}ü‰ñÓï‰Ù‰ÕÓà‰ñÓí‰Ù ð?Óâ è ׉D$‰<$ëª ð?‰D$‰$뜃íƒë ‹Wütçë±fS‰Ãƒì¡pòMƒøt{…Àuë&Ç$vè?ƒì¡pòMƒøtäƒøtTƒÄ[ÃÇD$Ç$pòMè¤ ƒì…ÀuNÇ$€òMèƒìÇ$˜òMèrƒìÇ$`ÅEèßJúÿÇpòM[Å€òM‰$èOƒìƒÄ[Ãø…zÿÿÿÇpòMëѶƒìÇD$Ç$pòMè ƒìƒøuÇ$€òMèñƒìÇ$˜òMèâƒìƒÄÃë ƒìƒ=pòMtƒÄÃ@Å€òM‰$èƒìƒÄô&Sƒì‹\$…Ût4ƒ{ "1Àè§þÿÿ‹C‹…°òM‰‰…°òMƒÄ1À[뜃Ä[éƒvƒÄ[Ãt&¼'ƒì1À‰|$‹|$ ‰\$‰t$èVþÿÿƒÿ ‹4½°òM…ötf‹‰½°òMë1»‰ùÓãÁèÁà‰$è…À‰Æt"´&‰~‰^1ÀèÿÿÿÇFÇF ‰ð‹\$‹t$‹|$ƒÄÃv‹5øK»‰ùÓãÁè‰òêàòMÁúú w‰Æ£øKë—´&ƒìLÝD$P‰l$HÝ\$(‹l$X‰\$<‰t$@‰|$DÇ$èÿÿÿ…À„‹‹L$,‰Êáÿÿÿ‰ÎâÿÿÁî…ötÊ‹|$(‰L$,…ÿtr¼ß‰ÙÓï…Û‰|$„ÇD$( ‰×)\$(¶L$(Óç‹L$ ωىxÓêƒú‰P҃…ö‰PtF‹L$\”3Íûÿÿ‰Uº5)Ú‰‹\$<‹t$@‹|$D‹l$HƒÄLüÊÇ@Óê…ö‰PY ºuº½L‹|$\Áâë2‰]ƒñ)ʉë³t&‹|$‰xéyÿÿÿt&UWVSƒìL‹l$`‹t$d‹]‹F)Ãû„Œb1Û‹E‰$èÝýÿÿ…À‰D$4„7‹U1ɉX E1Û‰Çl•‰T$<‹V‰l$0nT–‰Þ‰T$8‹T$4‰Ë‰\$‰t$ƒÂ‰Ñv‹E1ö1Ò‹)ÃÖ+\$t$ƒÇƒÅ‰ƒÁ‰ðƒà9l$8‰D$ÇD$wÉ;|$0‰Î‹\$‰ø‰ò‹L$s"‰Ï‰Ý‹1ö)ûîƒÀ‰÷1íƒç‰ƒÂ9D$0wã‹ZüBü…Ûu‹T$èZ ½PÇ"ƒÄ<‰è[^_]ËT$‰$èìÿÿè4 ½£Ç"ƒÄ<‰è[^_]ô&‰ÎÇD$ ÇD$$é@ûÿÿ‹L$‰Þ)þ‰t$‰ $è¥ïÿÿ)t$ ‰D$ƒÀ‰D$,é´ýÿÿÇD$(ƒÅ¶Ué-üÿÿÇD$(ëêf‹D$ ‰ÕÇD$ éäúÿÿ)ß1ö‰|$‰$èÝôÿÿ…Àt?Wÿ‹l$¸‰Ñf¾ƒáÓà‰ÑÁù…Dt…Ò~‰T$f¾‰,$è£ôÿÿ…Àu¾‹T$‰|$‰$èú÷ÿÿ|$ éýÿÿ‰Î‰ê‰ó¸ÇD$$é3úÿÿ‹L$`…É„¶þÿÿÇ$è1ëÿÿ‰D$Ç@Ç@‹D$‹l$\‹T$T‹L$X‰E½b‹B‰èÕÇ"éûÿÿ‹\$`…Û…_þÿÿë§‹A ƒø„ƒøt&„fƒø„3‹l$‰,$èeêÿÿé)þÿÿséRúÿÿ¸+D$`…À„ðüÿÿ‹D$‹p‰$èx®ÿÿƒý‰D$„2‹l$;u|ƒãt=½Dµº )Úƒð9Â~*‹D$ÇD$‰$èÖöÿÿ‹T$TƒD$ ‹L$ ;JÃýÿÿ½!é‚üÿÿ‹D$`…À…¹ýÿÿé©ùÿÿ‹T$`…Ò„¨ýÿÿé˜ùÿÿ‹l$$¸ 1Ò‰l$énûÿÿ…íŽÜûÿÿ‹D$‰l$‰$èøòÿÿ‰ÆéÅûÿÿ÷Æ„üÿÿ‹L$, 1ƒæ…ÿÿÿé üÿÿ‹D$`é ÿÿÿ‰ñ¶v陸ÿÿÇD$é;úÿÿ9ß…ÅþÿÿƒûvL‹T$‹L$,ÇBÇéEþÿÿƒ|$`„˜þÿÿëÙƒ|$`ftÐéˆþÿÿ‹T$T‹ƒè9Øt&½"éŽûÿÿ‹D$ƒë‰\$‰$è?òÿÿ…ÀuéUþÿÿ‰Ù¸ƒáÓà‹L$Áû…D™…Éþÿÿë»UWVSƒìL€=HþM„!‹D$d‹L$h‹‰ÂÁúƒà‘‰D$)úÿÇÀULøZLÉÃU‰åƒìÇ$ ºKÇÈOLh[Mè)úÿÇ$ðºKÇÄOL([Mèþ(úÿÉÃU‰åƒì‹ (vM…ÉuÉÃÇ$„DLè‚aÿÿÉÃU‰åƒì¡(vMÆ„CL…ÀtÇD$péEÇ$€CLèf`ÿÿ…À”„CLÇ$ÀºKè‘(úÿÉÀ=˜øKU‰åuƘøK€= øKuÆ øK€=8ùKuÆ8ùK€=HùKuÆHùK€=ùKuÆùK€=ØøKuÆØøK€=èøKuÆèøK€=¸øKuƸøK€=(ùKuÆ(ùK€=ùKuÆùK€=øøKuÆøøK€=ÈøKuÆÈøK]À=¨øKU‰åuƨøK€=°øKuưøK€=@ùKuÆ@ùK€=PùKuÆPùK€=ùKuÆùK€=àøKuÆàøK€=ðøKuÆðøK€=ÀøKuÆÀøK€=0ùKuÆ0ùK€= ùKuÆ ùK€=ùKuÆùK€=ÐøKuÆÐøK]ÃU1ɉåW1ÿVSƒì‰Uð¶ƒÀ¶ó‰òƒâÓâƒÁ ׄÛxçƒùwƒæ@t ºÿÿÿÿÓâ ׋Uð‰:ƒÄ[^_]ÃU‰åVSƒì‹u…öt1‹…Àuë‰Ø‹XƒÀ0‰$è9[ÿÿ…Ûuì‰uƒÄ[^]é÷÷ÿÿ´&ƒÄ[^]ÃU‰åS‰Ãƒì$¶H€ùÿ¶Át[‰ÁƒáƒùtH~ƒùtƒùt5t&èSøÿÿ…ÉuòÁâ÷Ú‹K Ñ‹S]ô‰$èo‹EôƒÄ$[]öÁâ÷Úë×Ò÷ÚëÑv1ÒëÊU‰åW‰ÏV‰ÆS1Àƒì,…ö‰Ót‰4$èCWÿÿ‰¶ƒÃ€úÿ„†¶Ò‰Uä‹Eä‰òè2W‰Ù‰$‰Â‹Eäèð‰Ã¶C€úÿˆWte1ö1ɶƒÀ‰ÚƒâÓâƒÁ Ö„Ûxê40‰w ¶1öƒÀ1ɈWv¶ƒÀ‰ÚƒâÓâƒÁ Ö„Ûxê40‰wƒÄ,[^_]ÉG¶C€úÿˆWu›ÇG ë²U‰åW‰×VSƒì<‹]‰EÔ‰MÐ÷ÓX 1ö1Év¶ƒÃ‰ÐƒàÓàƒÁ Æ„Òxê…ötR‹EÔ‰òèlþÿÿ‰<$‰Æ‹EЉEä‹ÿP„Àt‹E䋉Eä‹UäÇD$ ‰T$‰|$‰4$ÿP„ÀtšƒÄ<¸[^_]ÃÄ<1À[^_]ÃU‰åƒì<ÿt*ƒàpƒø t>~ƒø@t)ƒøPt&tƒø0t9èlöÿÿt&…Àu1ÀÉÃøuê1Àëô‰$è¦UÿÿÉÃt&‰$èÈUÿÿÉö‰$è¨UÿÿÉÃU‰åSƒì‹U ƒ}BÀw3¹ÿÿÿÿðÁƒùu‹@Z …ÀtZ ‰$ÿЉ]ƒÄ[]é0ÀƒÄ[]Ë@‰$èÿU‰åƒì8‰]ô‰Ã‰È€ûP‰uø‰Ö‰}ü„¶ӉUÔƒâƒú ‰MÐvè”õÿÿÿ$• Mt&‹ƒÀ…Òt‹MÔƒápƒùDuÐò„Ûy‹f‹M‰‹]ô‹uø‹}ü‰ì]˃ÀëÌ´&1Ò1ɉủ߉Öt&¶ƒÀ‰ÓƒãÓãƒÁ Þ„Òxê‰ò‰û‹uÌë–Uäèèûÿÿ‹Uäëˆv¿ƒÀézÿÿÿt&·ƒÀéjÿÿÿt&ƒÀƒàü‹ƒÀépÿÿÿU‰åƒìXEø‰EäEÄÇEܰ´KÇEàìÐKÇEè®íE‰eì‰$èARÿÿÇEÈÿUèšôÿÿƒÅ‹Ẻ$èDºëëU‰åƒìÿUèr„U‰åƒì‹EÇ8YMÉé«´U‰å‹EÇ8YM]ÃU‰åSƒì‹]ÇhYM‰$è@‰]ƒÄ[]ék´U‰åƒì‹EÇhYMÉéÛ?U‰åSƒì‹]ǨYM‰$è¸?‰]ƒÄ[]é´U‰åƒì‹EǨYMÉé‹?U‰åƒì‹EÇèYMÉéÛ³U‰å‹EÇèYM]ÃU‰åSƒì‹]ÇZM‰$è˜ÿÿÿ‰]ƒÄ[]雳U‰åƒì‹EÇZMÉékÿÿÿU‰åSƒì‹]ÇHZM‰$èøþÿÿ‰]ƒÄ[]éK³U‰åƒì‹EÇHZMÉéËþÿÿU‰åSƒì‹]LjZM‰$è¨þÿÿ‰]ƒÄ[]éû²U‰åƒì‹ELjZMÉé{þÿÿU‰åSƒì‹]ÇÈZM‰$èH>‰]ƒÄ[]髲U‰åƒì‹EÇÈZMÉé>U‰åƒì€8u€xuÆ@¸ÉÃt&1ÀÉÃÇ$è`µǨ\MÇD$@ FÇD$Ô9M‰$èâÂU‰åƒìXEø‰EäEÄÇEܰ´KÇEàtÌKÇEèìðE‰eì‰$èQOÿÿ€=XùKtEĉ$èÝOÿÿ¸àZLÉöÇ$XùKè´¿…ÀtØ¡(vM…ÀuÇ$XùKèÁëÁÇ$àZLÇEÈèÆWÿÿë݃Å‹EÌÇ$XùK‰EÀ课‹EÀÇEÈÿÿÿÿ‰$èmRÿÿU‰åƒì‹EÇ(dMÉé[±U‰å‹EÇ(dM]ÃU‰åƒì‹EÇ(dMÉé+±U‰å‹EÇ(dM]ÃU‰åƒì‹EÇ(dMÉéû°U‰å‹EÇ(dM]ÃU‰åƒì¡(vM…Àt Ç$CLè%XÿÿÇÀOLCLÉÃU‰åW‰ÏV‰ÖS‰Ãƒì,‰Mä‰|$‰t$‰$èö[ÿÿƒøÿt )ÇtÆvëàèñðÿÿƒ8tÖ‹EäƒÄ,[^)ø_]ÃU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà`ÄKÇEè½òE‰eìèMÿÿ‹(vM‹E…Ò‹tB‰$ÇEÈè#Wÿÿ…Àt/Ç$è³ÇØ\MÇD$à FÇD$ì9M‰$è•Àt&Eĉ$èÅMÿÿÉÃŃ}Ðÿ‹EÌt‰$ÇEÈÿÿÿÿè¨Pÿÿ‰$ÇEÈÿÿÿÿèùµU‰åƒìƒE(Éé@U‰åƒìƒE(Éé@U‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàfÆKÇEèõóE‰eìè¡Lÿÿ‹UÇEÈÿÿÿÿ‰$è/F‹E‹UǨ[MƒÀ(‰EÀ‹E ‰T$ÇEȉD$‹EÀ‰$è°‹UÀ‰$èµW„ÀuEĉ$èæLÿÿÉÃt&‹U‹E‰P0‹U‹E‰BD‰$è†+‹E‰ÂÆ@IÆ@J‹@@ÇBÇBÇB‰B‰B‰B Eĉ$èLÿÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$èÀH‹EÀÇEÈÿÿÿÿ‰$è^OÿÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàZÆKÇEèõE‰eìèKÿÿ‹UÇEÈÿÿÿÿ‰$èE‹E‹UǨ[MƒÀ(‰EÀ‹E ‰T$‰D$‹EÀ‰$è÷‹UÀ‰$èœV„Àu Eĉ$èÍKÿÿÉËU‹E‰P0‹U‹E‰BD‰$ÇEÈèj*‹E‰ÂÆ@IÆ@J‹@@ÇBÇBÇB‰B‰B‰B Eĉ$èqKÿÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$è¤G‹EÀÇEÈÿÿÿÿ‰$èBNÿÿU‰åSƒì‹]‰$è.DǨ[MƒÄ[]ÃU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà`ÆKÇEèEöE‰eìèQJÿÿ‹UÇEÈÿÿÿÿ‰$èßC‹E‹UǨ[MƒÀ(‰EÀ‹E ‰T$ÇEȉD$‹EÀ‰$è`‹UÀ‰$èeU„ÀuEĉ$è–JÿÿÉÃt&‹U‹E‰P0‹U‹E‰BD‰$è6)‹E‰ÂÆ@IÆ@J‹@@ÇBÇBÇB‰B‰B‰B Eĉ$è=JÿÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$èpF‹EÀÇEÈÿÿÿÿ‰$èMÿÿU‰åƒìh‰EÀEø‰EäEĉ$‰U´‰M¸ÇEܰ´KÇEà¼KÇEèf÷E‰eìè(Iÿÿ‹UÀÇEÈÿÿÿÿ‰$è¶B‹EÀ‹U¸Ç¨[MƒÀ(‰E¼‹E´‰T$‹U¼ÇEȉD$‰$è7‹E¼‰$èÿÿ‹UÇÈ`M‰$ÇEÈèÉC‹EÇEȃÀ(‰$褋EÇÈdMƒÀ‰$è0Ý‹U‰$èå Eĉ$èÊ>ÿÿÉÃÅ‹EÈ‹UÌ…À‰UÀtƒèt ‹EÇEȃÀ(‰$èL‹EÇÈdMƒÀ‰$èØÜ‹UÀÇEÈÿÿÿÿ‰$èvAÿÿU‰åƒìXEø‰EäEÄÇEܰ´KÇEàDÆKÇEèF‰eì‰$è¡=ÿÿ‹UÇÈ`M‰$ÇEÈèéB‹EÇEȃÀ(‰$èÄ‹EÇÈdMƒÀ‰$èPÜEĉ$èõ=ÿÿÉÃÅ‹EÈ‹UÌ…À‰UÀtƒèt ‹EÇEȃÀ(‰$èw‹EÇÈdMƒÀ‰$èÜ‹UÀÇEÈÿÿÿÿ‰$è¡@ÿÿU‰åƒìXEø‰EäEÄÇEܰ´KÇEàŒÆKÇEè]F‰eì‰$èÑ<ÿÿ‹UÇÈ`M‰$ÇEÈèB‹EÇEȃÀ(‰$èô‹EÇÈdMƒÀ‰$è€ÛEĉ$è%=ÿÿÉÃÅ‹EÈ‹UÌ…À‰UÀtƒèt ‹EÇEȃÀ(‰$è§‹EÇÈdMƒÀ‰$è3Û‹UÀÇEÈÿÿÿÿ‰$èÑ?ÿÿU‰åƒì‹(vM…Òt@‹E‰$èEGÿÿ…Àt1Ç$èÅ¡ÇØ\MÇD$à FÇD$ì9M‰$èG¯´&ÉÃU‰å‹E]‹@ ÃU‰åƒì‹E‹@ ‰EÉéËÝÿÿU‰åSƒì‹]‹S ‹Bƒè…À‰Bx‹ ¶ƒÁ‰ ‰C$ƒÄ[]Ãv‰$èÈÞÿÿ‰C$ƒÄ[]ÃU‰åƒì‰]ø‹]‰uü‹u ‹C ÇD$‰4$‰D$ ‹E‰D$è Þÿÿ…À~¶Tÿ‰S$‹]ø‹uü‰ì]ÃÇC$ÿÿÿÿ‹]ø‹uü‰ì]ÃU‰åƒì‹E‹@ ÇD$‰D$ ‹E‰D$‹E ‰$èÝÿÿÉÃU1À‰åVSƒì ‹U‹]‹u ‹M…ÒÇÿÿÿÿÇCÿÿÿÿÇCt 1Àƒú•ÀƒÀ‰D$‰L$‹F ‰$è|Ýÿÿ…Àu%‹F ‰$èuÝÿÿÇC‰ÂÁú‰Eè‰U쉋Eì‰CƒÄ ‰Ø[^]ÂU‰åƒìH‹U‹E ‰]ô‹M ‹]‰UØ‹U‰uø‹u؉}ü‰UÜ‹U‹}܉Uà‹U‰U䋉t$‰|$ ‰D$‰$‰L$ÇD$ÿR‰Ø‹uø‹]ô‹}üƒì‰ì]ÂU‰åƒì‹E ‹Uƒøÿt/‹R ‹Jƒé…ɉJx‹ ˆƒÁ¶À‰ ÉÉU ‰EÉéäÜÿÿt&‹B ‰$è¥ÛÿÿɃøÀ÷ÐÃU‰åSƒì‹E ‹]ƒøÿt‹S ‰$‰T$è§ÜÿÿÇC$ÿÿÿÿƒÄ[]Ãf‹S$ƒúÿté‹C ‰$‰D$èÜÿÿÇC$ÿÿÿÿƒÄ[]ÃU‰åSƒì‹]‹S ‹Bƒè…À‰Bx‹ ¶ƒÁ‰ ‰T$‰$è8ÜÿÿƒÄ[]É$è2Üÿÿ‹S ëáU‰åSƒì‹]CLjdMÇCÇCÇC ÇCÇCÇC‰$èÛÕ‹E Ç(\MÇC$ÿÿÿÿ‰C ƒÄ[]ÃU‰åSƒì‹]CLjdMÇCÇCÇC ÇCÇCÇC‰$è{Õ‹E Ç(\MÇC$ÿÿÿÿ‰C ƒÄ[]ÃU‰åSƒì‹]LjdMC‰$èÕÖ‰]ƒÄ[]鈚U‰åƒì‹ELjdMƒÀ‰EÉé¥ÖU‰å‹E]‹@ ÃU‰åƒì‹E‹@ ‰EÉé«ÙÿÿU‰åSƒì‹]‹C ‰$è«Úÿÿf‰C$ƒÄ[]ÃU‰åWVSƒì‹}‹u…ÿt'1Ûë‹U f‰ZƒÃ9ßt+‹F ‰$èpÚÿÿfƒøÿuá…Ûu1ÛfÇF$ÿÿ‰ØƒÄ[^_]Ãt&‹U ·DZþf‰F$ƒÄ‰Ø[^_]ÃU‰åWVS1Ûƒì,‹u‹U‹} …öuë,¶ƒÃ9Þt‹B ‰D$·_‰Uä‰$èëÙÿÿ‹UäfƒøÿuÚƒÄ,‰Ø[^_]ÃU1À‰åVSƒì ‹U‹]‹u ‹M…ÒÇÿÿÿÿÇCÿÿÿÿÇCt 1Àƒú•ÀƒÀ‰D$‰L$‹F ‰$è\Ùÿÿ…Àu%‹F ‰$èUÙÿÿÇC‰ÂÁú‰Eè‰U쉋Eì‰CƒÄ ‰Ø[^]ÂU‰åƒìH‹U‹E ‰]ô‹M ‹]‰UØ‹U‰uø‹u؉}ü‰UÜ‹U‹}܉Uà‹U‰U䋉t$‰|$ ‰D$‰$‰L$ÇD$ÿR‰Ø‹uø‹]ô‹}üƒì‰ì]ÂU‰åƒì·E ‹Ufƒøÿt‹R ·À‰E‰U ÉéÃØÿÿ‹B ‰$è ×ÿÿɃøÀ÷ÐÃU‰åSƒì·E ‹]fƒøÿt‹S ·À‰$‰T$è’ØÿÿfÇC$ÿÿƒÄ[]÷S$fƒúÿtê‹C ·Ò‰$‰D$èjØÿÿfÇC$ÿÿƒÄ[]ÃU‰åSƒì‹]‹C ‰$è;Øÿÿ‹S ‰T$·À‰$è1ØÿÿƒÄ[]ÃU‰åSƒì‹]CÇÈdMÇCÇCÇC ÇCÇCÇC‰$èûÑ‹E Çh\MfÇC$ÿÿ‰C ƒÄ[]ÃU‰åSƒì‹]CÇÈdMÇCÇCÇC ÇCÇCÇC‰$è›Ñ‹E Çh\MfÇC$ÿÿ‰C ƒÄ[]ÃU‰åSƒì‹]ÇÈdMC‰$èõÒ‰]ƒÄ[]騖U‰åƒì‹EÇÈdMƒÀ‰EÉéÅÒU‰åSƒì‹]Ǩ\M‰$è‰]ƒÄ[]é[–U‰åƒì‹EǨ\MÉéÛU‰åSƒì‹]ÇÀ\M‰$踉]ƒÄ[]é –U‰åƒì‹EÇÀ\MÉé‹U‰åSƒì‹]ÇØ\M‰$èh‰]ƒÄ[]黕U‰åƒì‹EÇØ\MÉé;U‰åƒìhEø‰EÔE´ÇḚ´KÇEÐÈÕKÇEØ^F‰e܉$è±2ÿÿ€=üZL…èÆüZLèøœ…À„(‹@‰E¬€8*ÇEôÿÿÿÿÇD$”À¶ÀE¬Eô‰D$ ‹E¬ÇD$ÇE¸ÿÿÿÿ‰$èî-ÿÿÇD$0ÇD$Ç$ÜM‰E¨¡œ&NƒÀ@‰E°‰D$ èxÔÿÿ‹Uô…ÒtI‹E°‰D$‹E¬‰$èÏÕÿÿ‹E°ÇD$ÇD$Ç$ M‰D$ è<Ôÿÿ‹Eô…ÀtNÇE¸èѤ‹E°‰D$‹E¨‰$è†Õÿÿ뵡œ&NÇD$ÇD$Ç$¼MƒÀ@‰D$ èìÓÿÿè÷Óÿÿ‹E¨‰$èDÓÿÿ륃Å‹E¼‹UÀ‰E¬‹E¸…ÀtRƒèt/ ¡œ&NÇD$-ÇD$Ç$MƒÀ@‰D$ è˜Óÿÿè£ÓÿÿÇE¸è¿›‹E¬ÇE¸ÿÿÿÿ‰$è½4ÿÿƒêt‹E¬‰$è-™ÇE¸ÿÿÿÿ葛뿋E¬‰$虋‰$‹BÇE¸ÿЉE¬‹E°ÇD$ ÇD$Ç$>M‰D$ èÓÿÿ‹E°‰D$‹E¬‰$èsÔÿÿ‹E°Ç$ ‰D$èXÔÿÿÇE¸ÿÿÿÿè›éGÿÿÿU‰åSƒì$‹U‹M ‹B…Àt¶ƒÄ$[]Ãf‹B ‹9Ëv=‰Â¶B<tír,<wö‹B ]÷‹‰\$ ‰$ÇD$‰L$ÿR¶E÷ƒÄ$[]ËB ë®)Ù‹R$ë¾U‰åSƒì$‹U‹M ‹B…Àt·HƒÄ$[]Ãf‹B ‹9Ëv=‰Â¶B<tír,<wö‹B ]ö‹‰\$ ‰$ÇD$‰L$ÿR·EöƒÄ$[]ËB ë®)Ù‹R$뾋 (vMU‰å…Éu ‹‰‰È]ÉÑðÁ]‰ÈÃU‰å‹E ‹U]‹9 ”ÀÃU‰å‹E ‹U]‹9 ”ÀÃU‰å‹E ‹U]‹9 ”ÀÃU‰å‹E ‹U]‹9 ”ÀÃU‰åƒì8‰]ô‹E‰uø‹] ‹u‰}ü‹}‰Eä‰\$‰4$è¶„Àu2ƒÿv ‹]ô‹uø‹}ü‰ì]Ë‹Uä‰u ‹}ü‰]‹uø‹]ô‰U‹@‰ì]ÿà‹]ô¸‹uø‹}ü‰ì]ÃU‰åSƒì‹E ‹]‰D$‹E‰$èD‰Â1À„Òt‹EÇC ÇC‰¸ƒÄ[]ÃU‰åSƒì$‹E‹]MèÇEèÇE싉L$ ‹ ÇEðÇEô‰$‰L$‹M ‰L$ÿR‹Uì1Àƒâƒúu ‹E艸ƒÄ$[]ÃU‰åƒì(‰]ô‹];] ‰uø‹u‰}ü‹}$t3‹E‰4$‰D$èt„Àt‹E‰ÇG ‰G‹]ô1À‹uø‹}ü‰ì]Ãf‹E‰4$‰D$èA„Àtº‹E‰GëÔU‰å‹E9E]”À¶ÀD€ÃU‰åƒì8‰]ô‹E‰uø‹] ‹u‰}ü‹}‰Eä‰\$‰4$èæ„Àur…Û„|‹‹@ü‰D$‹‹@ü‰$èÄ„Àt@÷Çt8‹F‰Â÷Ò…Su,‰úƒâþ¨‹Dú‹Uä‰}‹}ü‰] ‹]ô‰u‹uø‰U‹@‰ì]ÿà‹]ô1À‹uø‹}ü‰ì]Ë]ô¸‹uø‹}ü‰ì]ÃèY”U‰åƒì‹E‹M ‹@ ‹ƒE‹I ‰E‰M ‹BÉÿàU¸‰å]ÃU‰åƒì8‰]ô‹]‰uø‹U‰}ü‹u‹} ƒûv(‹F ƒÃ‹uø‹‰]‹]ô‰U‹W ‰E‹}ü‰U ‹A‰ì]ÿàÇD$lCM‹F ‰Uä‰$貋Uä„Àt»‹G ‹‰$ÿR ‹]ô‹uø‹}ü‰ì]ƒðÃU‰åƒì8‰]ô‹U‰uø‹] ‰}ü‹u‹}‰$‰Uä‰t$‰|$ ‰\$èþüÿÿ‹Uä„Àt‹]ô¸‹uø‹}ü‰ì]Ãt&‹B‹‰}‹}ü‰u‹uø‰] ‹]ô‰E‹B‰ì]ÿàU‰åƒìH‹E‹U‹M ‰]ô‹]‰}ü‹}‰Eà‹E ‰uø‹u‰]Ü‹]$‰T$‰UÔ‰M؉Eä‰<$è΋UÔ‹MØ„Àt,‹Uà…ɉ3‰Sx\1ÀÎ9uä”ÀD€‰C ‹]ô1À‹uø‹}ü‰ì]Ã;uätE‹‹‰]$‹]ä‰U‹Uà‰u‹uø‰}‹}ü‰] ‹]܉U‰M ‰]‹@‹]ô‰ì]ÿàƒùþu°ÇC ë§‹E܉UÔ‰M؉<$‰D$è9‹UÔ‹MØ„Àtœ‹Uà‰Së€U‰åƒì8‰]ô‹]‰uø‹u‰}ü‹U‹M ‹}9Þt%‹B‹‰u‹uø‰}‹}ü‰]‹]ô‰M ‰E‹B ‰ì]ÿà‰$‰Uä‰Mà‰|$èÇ‹Uä‹Mà„Àt¿‹]ô¸‹uø‹}ü‰ì]ÃU‰åWVSƒì<‹E‹U ‹}‰D$‹E‰T$‰|$ ‰$èûÿÿ‰Â¸„Ò…:‹W‰UЃâ…‹U¶EЋr ƒàˆEÏ\òë>v‹E܃ø~ €}Öuƒàý‰EÜ‹W …Ò„Á‹;EØ…\…À„î‹EÜ Gƒë…ö„3‹Cƒî‹UÐÇEØÇEܨ‰UàÇEä•EÖu€}ÏtÆ‹M‰ÂƒâˆU×1Ò…ÉtÁø€}×t‹U‹‹U‹‹E؉T$‹U ‰D$ ‰T$‹‰$ÿQ„À„zÿÿÿƒ}ä…8ÿÿÿ€}ׄ.ÿÿÿ‹‰Eäé$ÿÿÿt&‹E؉‹E܉G‹Uàƒø‰W‹Uä‰W ~¨tU‹UöB…+ÿÿÿ¸ƒÄ<[^_]ö‹Eäƒøtƒút‰T$‰$è„À…ñþÿÿÇG¸ƒÄ<[^_]èt´‹Eö@…Òþÿÿ륋E‹@‰EÐéqþÿÿ‹G…À•ÀƒÄ<[^_]ÃǸÇGƒÄ<[^_]ÃU‰åWVS쌋]$öCt ‹U‹B‰C‹M 9M„·‹U‹M‰T$‰ $èd„À…Ì‹u ‹E ÇE¼+E …öHE¼ÆE»ÆE³‰E¼‹EÆEºƒÈ‰E´‹U‹r …ö„D‹}ƒî‹KÇEÔÇEØ‹D÷‰M”ÇEÜÇEà‰ÂÁú¨‰UÄ‹U‰Mät‹M‹}Ä‹U´9‹‰MÄ‹M¼‹}Ä}…ɉ}Àt9}¼¶Mº’EÄ8MÄ„¨u ƒ} þ„ƒâý‹}MÔ‹D÷‹8‰L$‹M ‰T$‹U ‰$‰L$‹M‰T$‰L$‹MÀ‰L$‹M‰L$ ÿW‹}àˆEÀ‹EÜ Cƒÿ‰Â‰C„®ƒÿ„¥€}»…Û‹ …ɉMÄ„‹MÔ9MÄ„ï…É„òƒø‹S ŽÎ¨…n…Ò¸DÐ…ÿ‰}À‰Ñu ÇEÀf¿‹EÀ1ȃøŽƒ}À~‹EÔ‰ú‹MÀÆE»‰‹E؉CöÁ‰S …Dƒá„;‹Sƒú…oþÿÿ¶E»ë.‹}‹M‰{‹} ‰ …ÿˆú‹E È9E ”À¶ÀD€‰C 1ÀÄŒ[^_]Ë …ɉMÄ…%ÿÿÿ‹MÔ…Ét¤ƒø‹S 2ÿÿÿ…҉ю´‰}À…ÿCÿÿÿƒú~"ö¿ÇEÀ„)ÿÿÿ‹Eö@„ÿÿÿ‹} ‹EÔ…ÿˆàE 9E ”À¶ø|¿‰}À¶ø|¿éïþÿÿ#MÀƒùÇ‹SÇC ÆE»é ÿÿÿÆE³éyýÿÿöE”„nýÿÿéñýÿÿöC„ˆþÿÿ…Ò‰ÑfLÿÿÿƒÿ‰}À~#÷ǹº„|þÿÿ‹Eö@„oþÿÿ‹E …Àˆô‹EÄ1ÒE 9E ”ÂT’‰Ñéÿÿÿ‹EØ Cé€þÿÿ€}À…þÿÿéqþÿÿ‹EÔ‹MØ…À‰‰K„œ¶EÀ…ÒˆE»„Æüÿÿ‹MöA…Aþÿÿéyþÿÿ€}³„;þÿÿ€}º„1þÿÿÆEºé‘üÿÿ‹}‹E‰|$‰$è­ü„À„/üÿÿ‹U1À‰Sé5þÿÿ‹UÔ¶EÀ‰{ ‰‹U؉Séþÿÿ1Àƒ} þ…þÿÿÇC éþÿÿ1Àéþýÿÿ¶EÀˆE»éµýÿÿt&ƒ} þº„ÿÿÿ‹U‹M ‹‹U‰L$‹MĉT$ ‹U ‰L$‹M‰T$‰ $ÿP ‰Â‰Ñéãýÿÿƒ} þ¿ÇEÀ„ýÿÿ‹}‹?‰D$‹E ‰U¬‰M¨‰}¤‹} ‰D$‰|$‹}‰|$ ‹}‰<$‹}¤ÿW ‹M¨‹U¬‰Ç‰EÀéÕüÿÿǸÇC é;ýÿÿU‰åWVSƒìL‹};}‹]„Œ‹s ‰}Ô\ó ëU‹ƒîöÂtH‰Ð‰ÑÁøƒáˆMçt ƒ} ýt3‹}Ô‹‹Sü‹}EÔ‹ ‰|$‹}‰D$‹E ‰$‰|$ ‰D$ÿQ ƒøƒë…öu§¸ƒÄL[^_]ö‰ÂƒÊ€}çEƒÄL[^_]ËE‰$‰D$èÝú‰Â¸„ÒuÄéUÿÿÿU¸ M‰å]ÃU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÕÐKÇEè F‰eìè‘!ÿÿ‹Eƒ}Ç|TL„†ƒ}t\‹U…Òt4‹EÇD$ ÇD$Ù MÇEȉ$è?©Eĉ$èä!ÿÿ‹EÉÂÇD$ÇD$— M‰$ÇEÈè©ëÍ‹EÇD$ÇD$¿ MÇEȉ$èê¨ë©‹EÇD$ÇD$¦ MÇEȉ$èÆ¨ë…ƒÅ‹ẺEÀ‹E‰$耾‹EÀÇEÈÿÿÿÿ‰$èN$ÿÿU¸ˆ M‰å]ÃU‰åSƒì$‹E‹]‰$èÄÿÿU÷‰$‰T$‰D$èH¸‰ØƒÄ$[]ÂU¸€ M‰å]ÃU‰åSƒì$‹E‹]‰$è³ÃÿÿU÷‰$‰T$‰D$èø·‰ØƒÄ$[]ÂU¸pM‰å]ÃU¸”M‰å]ÃU‰å‹E‹M ‹¸9Ñr ‹BôB9Á—À]ÃU‰åSƒì‹] ‰$è¶Âÿÿ‰\$‰D$ ‹E‰D$‹E‰$èƒÄ[]ÃU‰åWVSƒì‹}‹u‹U‹…ö‹Xôt9…Ût5ƒë9ÚFÚë ´&‹ƒë‰t$·X‰D$‹E ‰$èä=ÿÿ…Àu …ÛuÜ»ÿÿÿÿƒÄ‰Ø[^_]ÃU‰åƒì‹E ‹‹Pô‰D$‹E‰T$ ‹U‰$‰T$èhÿÿÿÉÃU‰å·E ‰E ]é@U‰åSƒì‹] ‰$èÆÁÿÿ‰\$‰D$ ‹E‰D$‹E‰$èƒÄ[]ÃU‰åWVSƒì‹}‹u‹]…ÿu-»ÿÿÿÿƒÄ‰Ø[^_]É|$·X‰D$‹E ‰$è=ÿÿ…ÀuۃË;XôrÛëÊU‰åƒì‹E ‹‹Pô‰D$‹E‰T$ ‹U‰$‰T$èˆÿÿÿÉÃU‰åƒì·E ‰E Éé­U‰å‹E]ÂU‰åƒì‹E‹¸þÿÿ+BôE ;ErÉËE‰$è(-U‰åSƒì‹] ‰$è¦Àÿÿ‰\$‰D$ ‹E‰D$‹E‰$èƒÄ[]ÃU‰åWVS»ÿÿÿÿƒì,‹u‹} ‹M‹‹Pô…Òt9Zÿ9Ù‰uäFÙ‹uë‹Uäƒë‹‰t$·X‰<$‰D$èÔ;ÿÿ…Àt …ÛuÜ»ÿÿÿÿƒÄ,‰Ø[^_]ÃU‰åƒì‹E ‹‹Pô‰D$‹E‰T$ ‹U‰$‰T$èhÿÿÿÉÃU‰å‹EV·M S‹u‹¸ÿÿÿÿ‹Zô…ÛtCÿ9ÆFÆëƒèf9 Bu …Àuó¸ÿÿÿÿ[^]ÃU‰åSƒì‹] ‰$膿ÿÿ‰\$‰D$ ‹E‰D$‹E‰$èƒÄ[]ÃU‰åWVSƒì‹u‹]‹}‹;Xôrë5t&‹ƒÃ;Xôs&‰|$·X‰D$‹E ‰$è¿:ÿÿ…ÀuۃĉØ[^_]ûÿÿÿÿƒÄ‰Ø[^_]ÃU‰åƒì‹E ‹‹Pô‰D$‹E‰T$ ‹U‰$‰T$èxÿÿÿÉÃU‰å‹US‹E·] ‹‹Jô9Èrë´&ƒÀ9Ès f;Btó[]øÿÿÿÿ[]ÃU‰åƒì‹E‹U ‹;PôsPÉÃÇ$lMèÜ+U‰å‹E]‹‹PôPÃU‰å‹E]‹@ÁèÃU‰å‹E]‹@…ÀŸÀÃU‰å‹E]‹‹PôPÃU‰åƒì‹M‰uü‹E‰]ø‹u ‹U‹ ‹Yô9ØwQ)Ã9ÓGÚ…Ûu ‰Ø‹uü‹]ø‰ì]ÃûAt ‰\$‰4$‰D$è09ÿÿ‰Ø‹uü‹]ø‰ì]Ãt&·f‰‰Ø‹uü‹]ø‰ì]ÃÇ$}Mè+U‰å‹E]‹ÃU‰åSƒì‹] ‰$èv½ÿÿ‰\$‰D$ ‹E‰D$‹E‰$èƒÄ[]ÃU‰åWVSƒì,‹M‹E‹U ‹}‹1…À‹Nô„~9Èwj)Á9ùrdƒè_‰×‰EäB4^‰Eàë ƒÆ9ÙCrD‰Ã·Sÿf9Fþuè‹Eä‰U؉M܉4$‰D$‹Eà‰D$èú=ÿÿ‹UØ‹MÜ…Àu‰׃Ä,‰ø[^_]Ãt&¿ÿÿÿÿƒÄ,‰ø[^_]Ã9ϸÿÿÿÿGøƒÄ,‰ø[^_]ÃU‰åƒì‹E ‹‹Pô‰D$‹E‰T$ ‹U‰$‰T$èÿÿÿÉÃU‰åƒì‹U‰]ø‹E»ÿÿÿÿ‰uü·M ‹2‹Vô9Ðr ‰Ø‹uü‹]ø‰ì]Ã)·ÉF‰T$‰L$‰$è¸7ÿÿ…Àt؉Ã)ó‹uüÑû‰Ø‹]ø‰ì]ÃU‰å‹U ‹E‹‰]ÂU‰å‹E]‹‹@ôÃU‰å‹E]‹ÃU‰å‹E]‹ÃU‰å‹U ‹E‹‰]ÂU‰å‹E]‹‹@ô…À”ÀÃU‰åSƒì‹] ‰$èV»ÿÿ‰\$‰D$ ‹E‰D$‹E‰$èƒÄ[]ÃU‰åWVS»ÿÿÿÿƒì‹E‹}‹M‹‹Pô9×w6)ú‰Ë9ÊFÚ4Xëfƒë‹E ‰|$‰4$‰D$è <ÿÿ…Àt ƒî…Ûuß»ÿÿÿÿƒÄ‰Ø[^_]ÃU‰åƒì‹E ‹‹Pô‰D$‹E‰T$ ‹U‰$‰T$èxÿÿÿÉÃU‰å‹EV·M S‹u‹¸ÿÿÿÿ‹Zô…Ûtƒë9ÞFÞC…Àtƒèf; Buó[^]ô&¸ÿÿÿÿ[^]ÃU‰å‹E]‹ƒè ÃU‰å‹E]‹ÃU‰å‹E]‹‹@ôÃU‰å‹U ‹E‹‹JôJ‰]ÂU‰åSƒì‹U ‹M‹]‹;Hôw!‹E‰$‰L$‰T$‰D$ èâ‰ØƒÄ[]ÂÇ$¡Mè,'U‰å‹E]‹ÃU‰å‹E]‹‹PôPÃU‰åƒì8‰}ü‹}‰]ô‹U ‰uø‹‹pô‰$‰Uäèc¹ÿÿ‹Uä‰T$9ð‰Ã‰ðFÃ)Þ‰D$‹‰$èk:ÿÿ‹]ô‹}ü…ÀDÆ‹uø‰ì]ÃU‰åƒì‹E‹U ‰]ø‰uü‹‹‹pô‹Zô‰T$‰$‰ñ9óFË)Þ‰L$è:ÿÿ‹]ø…ÀDÆ‹uü‰ì]ÃU‰åƒì8‹U‰]ô‹] ‰uø‹E‰}ü‹M‹2‹~ô9ûwL)ß9ÇGø‰ $‰Uä‰Mà蟸ÿÿ‹Mà‹Uä‰L$9ø‰Æ‰øFÆÛ‰D$)÷‰$è¢9ÿÿ‹]ô‹uø…ÀDÇ‹}ü‰ì]ÃÇ$MèÔ%U‰åVSƒì‹U‹E ‹M‹]‹‹rô9ðw2)Æ9ÎGñ9ó‰ñFË)Þ‰L$‹MB‰$‰L$è=9ÿÿ…ÀDƃÄ[^]ÃÇ$Mèu%U‰åƒì(‹U‰]ô‹E ‰uø‹M‰}ü‹‹rô9ðw=)Æ9ÎGñ‹MB‹ ‹Yô‰L$‰$9Þ‰ßFþ)Þ‰|$èÔ8ÿÿ‹]ô‹}ü…ÀDÆ‹uø‰ì]ÃÇ$Mè%U‰åƒì(‹U‰}ü‹E ‰]ô‹}‰uø‹‹rô9ðwR‹M‹ ‹Yô9]wE)Æ9þG÷+]‰÷9]F]B‰$9óFû)Þ‰|$‹} y‰L$èO8ÿÿ‹]ô‹}ü…ÀDÆ‹uø‰ì]ÃÇ$Mè$U‰å‹U ‹E‹‹JôJ‰]ÂU‰åƒì‹U‹E ‹;BôwÉËE‰$è@$U‰å‹E‹U‹‹@ô+E ]9ÂFÂÃU‰å‹E]‹‹@øÃU¸þÿÿ‰å]ÃU‰å‹E]‹ÃU‰å‹E ‹U]ÀÃU‰å‹E]‹@ÃU‰å‹E]¶ÃU‰å‹E]¶ÃU‰å‹E‹M ‹¸9ÑrRô9Ñ—À]ÃU‰åSƒì‹] ‰$èÖ´ÿÿ‰\$‰D$ ‹E‰D$‹E‰$èƒÄ[]ÃU‰åWVSƒì‹U‹}‹E‹2…ÿ‹^ôt7…Ût3ƒë9ØFØë ´&ƒë‰|$¾‰D$‹E ‰$è–µÿÿ…Àu …ÛuÞ»ÿÿÿÿƒÄ‰Ø[^_]ÃU‰åƒì‹E ‹‹Pô‰D$‹E‰T$ ‹U‰$‰T$èhÿÿÿÉÃU‰å¾E ‰E ]é@U‰åSƒì‹] ‰$èæ³ÿÿ‰\$‰D$ ‹E‰D$‹E‰$èƒÄ[]ÃU‰åWVSƒì,‹}‹]…ÿt4‹E‹‹pô‰Eä9ós%‹Uä‰|$¾‰D$‹E ‰$è´´ÿÿ…Àu ƒÃ9órÛ»ÿÿÿÿƒÄ,‰Ø[^_]ÃU‰åƒì‹E ‹‹Pô‰D$‹E‰T$ ‹U‰$‰T$èxÿÿÿÉÃU‰åƒì¾E ‰E ÉéU‰å‹E]ÂU‰åƒì‹E‹¸üÿÿ?+BôE ;ErÉËE‰$èh U‰åSƒì‹] ‰$è¶²ÿÿ‰\$‰D$ ‹E‰D$‹E‰$èƒÄ[]ÃU‰åWVS»ÿÿÿÿƒì‹E‹} ‹U‹0‹Fô…Àt7Xÿ9ÚFÚë ¶ƒë‹E‰D$¾‰<$‰D$èv³ÿÿ…Àt …ÛuÞ»ÿÿÿÿƒÄ‰Ø[^_]ÃU‰åƒì‹E ‹‹Pô‰D$‹E‰T$ ‹U‰$‰T$èhÿÿÿÉÃU‰å‹EV¶M S‹u‹¸ÿÿÿÿ‹Zô…ÛtCÿ9ÆFÆëƒè8 u …Àuô¸ÿÿÿÿ[^]ÃU‰åSƒì‹] ‰$è–±ÿÿ‰\$‰D$ ‹E‰D$‹E‰$èƒÄ[]ÃU‰åWVSƒì,‹E‹]‹}‹0‹Fô9ÉEär ë0ƒÃ;]äs(‰|$¾‰D$‹E ‰$èa²ÿÿ…Àu݃Ä,‰Ø[^_]Ãv»ÿÿÿÿƒÄ,‰Ø[^_]ÃU‰åƒì‹E ‹‹Pô‰D$‹E‰T$ ‹U‰$‰T$èxÿÿÿÉÃU‰å‹US‹E¶] ‹‹Jô9Èrë´&ƒÀ9Ès :tô[]øÿÿÿÿ[]ÃU‰åƒì‹U‹E ‹;BôsÉÃÇ$˜MèU‰å‹E]‹@ôÃU‰å‹E]‹@ÁèÃU‰å‹E]‹@…ÀŸÀÃU‰å‹E]‹@ôÃU‰åƒì‹M‰uü‹E‰]ø‹u ‹U‹ ‹Yô9ØwP)Ã9ÓGÚ…Ûu ‰Ø‹uü‹]ø‰ì]Ãût ‰\$‰4$‰D$èÀ¯ÿÿ‰Ø‹uü‹]ø‰ì]Ãt&¶ˆ‰Ø‹uü‹]ø‰ì]ÃÇ$©MèSU‰å‹E]‹ÃU‰åSƒì‹] ‰$膯ÿÿ‰\$‰D$ ‹E‰D$‹E‰$èƒÄ[]ÃU‰åWVSƒì‹E‹M‹U‹…É‹Côtu9Áwa)È9ЉEìrX‹E ƒé¶‰MèˆEóBët&9EìPr8‰ÐPÿ¶Mó‰Uä8Lÿuæ‹Uè4‹} ‰ÑƒÇ9Òó¦uÒ‹UäƒÄ[^_‰Ð]Ãt&ºÿÿÿÿƒÄ‰Ð[^_]Ã9¸ÿÿÿÿGЃÄ‰Ð[^_]ÃU‰åƒì‹E ‹‹Pô‰D$‹E‰T$ ‹U‰$‰T$è(ÿÿÿÉÃU‰åƒì‹U‰]ø‹E»ÿÿÿÿ‰uü¶M ‹2‹Vô9Ðs!)¾ɉT$‰L$‰$èt¯ÿÿ‰Â)ò…ÀEډ؋uü‹]ø‰ì]ÃU‰å‹U ‹E‹‰]ÂU‰å‹E]‹‹@ôÃU‰å‹E]‹ÃU‰å‹E]‹ÃU‰å‹U ‹E‹‰]ÂU‰å‹E]‹‹@ô…À”ÀÃU‰åSƒì‹] ‰$èv­ÿÿ‰\$‰D$ ‹E‰D$‹E‰$èƒÄ[]ÃU‰åWVSƒì‹E‹U‹u‹¸ÿÿÿÿ‹Kô9Êw8)щð9ñFÁ‰]ðëfƒè‹uð‰Ñ‹} Æ9Òó¦—Á‰Î’Á‰ó8Ët …ÀuݸÿÿÿÿƒÄ[^_]ÃU‰åƒì‹E ‹‹Pô‰D$‹E‰T$ ‹U‰$‰T$èxÿÿÿÉÃU‰å‹EV¶M S‹u‹¸ÿÿÿÿ‹Zô…Ûtƒë9ÞFÞC…Àt ƒè: uô[^]øÿÿÿÿ[^]ÃU‰å‹E]‹ƒè ÃU‰å‹E]‹ÃU‰å‹E]‹‹@ôÃU‰å‹U ‹E‹Rô‰]ÂU‰åSƒì‹U ‹M‹]‹;Hôw!‹E‰$‰L$‰T$‰D$ è⢉؃Ä[]ÂÇ$ÍMè|U‰å‹E]‹ÃU‰å‹E]‹@ôÃU‰åƒì(‹E‰}ü‹} ‰]ô‰uø‹0‹^ô‰<$膫ÿÿ‰Ù9ØFÈ9Éó¦‹uø‹}ü—Â’Á(Ê)þ҅ÒDÓ‹]ô‰ì‰Ð]ÃU‰åƒì ‹E‰$‰t$‰|$‹0‹E ‹Vô‹8‰Ñ‹_ô9ÓFË9Éó¦‹t$‹|$—À’Á(È)Ú‹$¾À…ÀD‰ì]ÃU‰åƒì(‹U‰uø‹u ‰]ô‹E‰}ü‹:‹_ô9ÞwD)ó9ÃGØ‹E47‰$èÒªÿÿ‹}‰Ù9ØFÈ9Éó¦‹uø‹}ü—Â’Á(Ê)þ҅ÒDÓ‹]ô‰ì‰Ð]ÃÇ$¼Mè?U‰åƒì(‹U‰]ô‹E ‰uø‹M‰}ü‹]‹2‹Vô9Ðw6)‹}9ÊGÑƉÑ9ÓFË9Éó¦‹uø‹}ü—À’Á(È)Ú‹]ô¾À…ÀD‰ì]ÃÇ$¼MèÊU‰åƒì(‹U‰]ô‹E ‰uø‹M‰}ü‹2‹Vô9Ðw;)Â9ÊGÑ‹MÆ‹9‹_ô9Ú‰ÙFÊ9Éó¦‹uø‹}ü—À’Á(È)Ú‹]ô¾À…ÀD‰ì]ÃÇ$¼MèXU‰åƒì(‹U‰]ô‹E ‰uø‹M‰}ü‹2‹Vô9ÐwL‹]‹;‹_ô9Ùw@)Â;UGU)Ë9]F]ÆωÑ9ÓFË9Éó¦‹uø‹}ü—À’Á(È)Ú‹]ô¾À…ÀD‰ì]ÃÇ$¼Mè×U‰å‹U ‹E‹Rô‰]ÂU‰åƒì‹U‹E ‹;BôwÉËE‰$èU‰å‹E‹U‹‹@ô+E ]9ÂFÂÃU‰å‹E]‹‹@øÃU¸üÿÿ?‰å]ÃU‰å‹E]‹ÃU‰å‹U‹E ]ÃU¸p M‰å]ÃU‰åƒì‹U‹B‹‹‰T$‰$ÿQÉÃU‰åƒì‹E‹‰$ÿR(ÉÃU‰åƒì‹E‹‰$ÿR$ÉÃU‰åSƒì‹E ‹]‹‰D$‰$ÿR‰Ø‹]üƒìÉÂU‰åSƒì$‹]E÷‰D$‹E ‹@‹@‰$‰D$躉؃Ä$[]ÂU‰åƒì‹E‹‹B ÉÿàU‰åƒì‹E‹‹BÉÿàU‰å‹E]‹@‹@4ÃU‰å‹E]‹@‹@0ÃU‰åSƒì‹E ‹]‹‰D$‰$ÿR‰Ø‹]üƒìÉÂU‰åSƒì‹E ‹]‹‰D$‰$ÿR‰Ø‹]üƒìÉÂU‰åƒì‹E‹‹B ÉÿàU‰åSƒì$‹]E÷‰D$‹E ‹@‹@‰$‰D$誜‰ØƒÄ$[]ÂU‰å‹E]‹@‹@,ÃU‰å‹E]‹@¶@ÃU‰åSƒì$‹]E÷‰D$‹E ‹@‹@$‰$‰D$èZœ‰ØƒÄ$[]ÂU‰åSƒì$‹]E÷‰D$‹E ‹@‹@‰$‰D$è*œ‰ØƒÄ$[]ÂU‰å‹E]‹@¶@ÃU‰åSƒì‹E ‹]‹‰D$‰$ÿR‰Ø‹]üƒìÉÂU‰åƒì‹E‹‰$ÿR(ÉÃU‰åƒì‹E‹‰$ÿR$ÉÃU‰åSƒì‹E ‹]‹‰D$‰$ÿR‰Ø‹]üƒìÉÂU‰åSƒì$‹]E÷‰D$‹E ‹@‹@‰$‰D$èJ›‰ØƒÄ$[]ÂU‰åƒì‹E‹‹B ÉÿàU‰åƒì‹E‹‹BÉÿàU‰å‹E]‹@‹@4ÃU‰å‹E]‹@‹@0ÃU‰åSƒì‹E ‹]‹‰D$‰$ÿR‰Ø‹]üƒìÉÂU‰åSƒì‹E ‹]‹‰D$‰$ÿR‰Ø‹]üƒìÉÂU‰åƒì‹E‹‹B ÉÿàU‰åSƒì$‹]E÷‰D$‹E ‹@‹@‰$‰D$è:š‰ØƒÄ$[]ÂU‰å‹E]‹@‹@,ÃU‰å‹E]‹@¶@ÃU‰åSƒì$‹]E÷‰D$‹E ‹@‹@$‰$‰D$èꙉ؃Ä$[]ÂU‰åSƒì$‹]E÷‰D$‹E ‹@‹@‰$‰D$躙‰ØƒÄ$[]ÂU‰å‹E]‹@¶@ÃU‰åSƒì‹E ‹]‹‰D$‰$ÿR‰Ø‹]üƒìÉÂU‰åƒì‹E‹‰$ÿR(ÉÃU‰åƒì‹E‹‰$ÿR$ÉÃU‰åSƒì‹E ‹]‹‰D$‰$ÿR‰Ø‹]üƒìÉÂU‰åSƒì$‹]E÷‰D$‹E ‹@‹@‰$‰D$èÚ˜‰ØƒÄ$[]ÂU‰åƒì‹E‹‹B ÉÿàU‰åƒì‹E‹‹BÉÿàU‰å‹E]‹@‹@8ÃU‰å‹E]‹@‹@4ÃU‰åSƒì‹E ‹]‹‰D$‰$ÿR‰Ø‹]üƒìÉÂU‰åSƒì‹E ‹]‹‰D$‰$ÿR‰Ø‹]üƒìÉÂU‰åƒì‹E‹‹B ÉÿàU‰åSƒì$‹]E÷‰D$‹E ‹@‹@‰$‰D$èù‰ØƒÄ$[]ÂU‰å‹E]‹@‹@0ÃU‰å‹E]‹@·@ÃU‰åSƒì$‹]E÷‰D$‹E ‹@‹@(‰$‰D$èÊø‰ØƒÄ$[]ÂU‰åSƒì$‹]E÷‰D$‹E ‹@‹@ ‰$‰D$èšø‰ØƒÄ$[]ÂU‰å‹E]‹@·@ÃU‰åSƒì‹E ‹]‹‰D$‰$ÿR‰Ø‹]üƒìÉÂU‰åƒì‹E‹‰$ÿR(ÉÃU‰åƒì‹E‹‰$ÿR$ÉÃU‰åSƒì‹E ‹]‹‰D$‰$ÿR‰Ø‹]üƒìÉÂU‰åSƒì$‹]E÷‰D$‹E ‹@‹@‰$‰D$èj–‰ØƒÄ$[]ÂU‰åƒì‹E‹‹B ÉÿàU‰åƒì‹E‹‹BÉÿàU‰å‹E]‹@‹@8ÃU‰å‹E]‹@‹@4ÃU‰åSƒì‹E ‹]‹‰D$‰$ÿR‰Ø‹]üƒìÉÂU‰åSƒì‹E ‹]‹‰D$‰$ÿR‰Ø‹]üƒìÉÂU‰åƒì‹E‹‹B ÉÿàU‰åSƒì$‹]E÷‰D$‹E ‹@‹@‰$‰D$èªö‰ØƒÄ$[]ÂU‰å‹E]‹@‹@0ÃU‰å‹E]‹@·@ÃU‰åSƒì$‹]E÷‰D$‹E ‹@‹@(‰$‰D$èZö‰ØƒÄ$[]ÂU‰åSƒì$‹]E÷‰D$‹E ‹@‹@ ‰$‰D$è*ö‰ØƒÄ$[]ÂU‰å‹E]‹@·@ÃU‰åSƒì‹E ‹]‹‰D$‰$ÿR‰Ø‹]üƒìÉÂU‰å]ÃU‰å‹U‹E ‹R‹J‰‹R ‰P]ÃU‰å‹U‹E ‹R‹J‰‹R‰P]ÃU‰å‹U‹E ‹R‹JH‰‹JL‰H‹JP‰H‹JT‰H ‹JX‰H‹J\‰H‹R`‰P]ÃU‰å‹U‹E ‹R‹J‰‹R‰P]ÃU‰å‹U‹E ‹R‹Š”‰‹Š˜‰H‹Šœ‰H‹Š ‰H ‹Š¤‰H‹Š¨‰H‹Š¬‰H‹Š°‰H‹Š´‰H ‹Š¸‰H$‹Š¼‰H(‹’À‰P,]ÃU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà¨ÕKÇEèWEF‰eìèQûþÿÇD$Ç$襞ÿÿ‰$‰EÀèÿÿÇEȃÀ‰E¸‰$èí]‰E¼‹E¸‰D$‹EÀ‰D$‹E¼‰$èÑœÿÿ‹E‹@Ç$‰D$èSžÿÿ‹E‰D$ ‹E‰D$‹E‰D$‹E ‰$è{žÿÿ‰EÀ‹E¼Ç$‰D$èžÿÿ‹U¼…Òt ‹E¼‰$èC]‹EÀ…Àu‹E ÆEĉ$è+ûþÿÉÃŃ}Ðÿ‹EÌt‰$ÇEÈÿÿÿÿèþþÿ‰$ÇEÈÿÿÿÿè_cU‰å‹U‹E ‹R‹J,‰‹J0‰H‹J4‰H‹J8‰H ‹J<‰H‹J@‰H‹RD‰P]ÃU‰å‹U‹E ‹R‹J ‰‹R$‰P]ÃU‰å‹U‹E ‹R‹Jd‰‹Jh‰H‹Jl‰H‹Jp‰H ‹Jt‰H‹Jx‰H‹J|‰H‹Š€‰H‹Š„‰H ‹Šˆ‰H$‹ŠŒ‰H(‹’‰P,]ÃU‰å]ÃU‰å‹U‹E ‹R‹J‰‹R ‰P]ÃU‰å‹U‹E ‹R‹J‰‹R‰P]ÃU‰å‹U‹E ‹R‹JH‰‹JL‰H‹JP‰H‹JT‰H ‹JX‰H‹J\‰H‹R`‰P]ÃU‰å‹U‹E ‹R‹J‰‹R‰P]ÃU‰å‹U‹E ‹R‹Š”‰‹Š˜‰H‹Šœ‰H‹Š ‰H ‹Š¤‰H‹Š¨‰H‹Š¬‰H‹Š°‰H‹Š´‰H ‹Š¸‰H$‹Š¼‰H(‹’À‰P,]ÃU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà¸ÕKÇEè‰HF‰eìè!øþÿÇD$Ç$èu›ÿÿ‰$‰EÀèê™ÿÿÇEȃÀ‰E¸‰$è½Z‰E¼‹E¸‰D$‹EÀ‰D$‹E¼‰$è¡™ÿÿ‹E‹@Ç$‰D$è#›ÿÿ‹E‰D$ ‹E‰D$‹E‰D$‹E ‰$èS›ÿÿÇ$‰EÀ‹E¼‰D$èíšÿÿ‹E¼…Àt ‹E¼‰$èZ‹MÀ…Éu‹E fÇEĉ$èù÷þÿÉÃŃ}Ðÿ‹EÌt‰$ÇEÈÿÿÿÿèÜúþÿ‰$ÇEÈÿÿÿÿè-`U‰å‹U‹E ‹R‹J,‰‹J0‰H‹J4‰H‹J8‰H ‹J<‰H‹J@‰H‹RD‰P]ÃU‰å‹U‹E ‹R‹J ‰‹R$‰P]ÃU‰å‹U‹E ‹R‹Jd‰‹Jh‰H‹Jl‰H‹Jp‰H ‹Jt‰H‹Jx‰H‹J|‰H‹Š€‰H‹Š„‰H ‹Šˆ‰H$‹ŠŒ‰H(‹’‰P,]ÃU‰åƒìhEø‰EäEĉ$ÇEܰ´KÇEà ÏKÇEè´JF‰eìè!öþÿÇ$œULè ‹U ‰E¸‹‹U¸Áâ‰UÀ‹P UÀ‹EÀ‹…À‰E¼tEĉ$è‡öþÿ‹E¼ÉÃfÇ$¨ÇEÈèY‹U Ç@Ç fMÇ@Ç@ Æ@Ç@Ç@Ç@Ç@ fÇ@$fÇ@&Æ€¤‰E´‰T$‰$ÇEÈè&#‹U´‹E¸‰T$‹U ‰D$‹ÇEÈÿÿÿÿ‰$ès‹EÀ‹‰E¼Eĉ$èÑõþÿ‹E¼ÉÃÅ‹ẺEÀ‹Eȃøt ƒøtU…Àt  ÇEÈè”_‹UÀÇEÈÿÿÿÿ‰$è’øþÿ‹UÀ‰$è]ƒ}´t‹U´‹‰$‹@ÇEÈÿÐÇEÈèÁg‹EÀ‰$èÖ\ëçU‰å‹E]‹@ÃU‰å‹E]‹…À•ÀÃU‰åVSEøƒì`‰EÔE´‰$ÇḚ´KÇEÐÈÐKÇEØLF‰eÜè_ôþÿ‹UMð‹u‹B ‹^‹‰\$‰D$‰ $‹B ÇE¸ÿЋEðƒì‰E°ƒè =pTLuE´‰$è¹ôþÿ‹E°eø[^]Ã=(vMu‹PJÿ‰H…ÒÕU÷‰T$‰$èªsëăÊÿðÁPëáƒÅƒ}Àÿ‹E¼t‰$ÇE¸ÿÿÿÿèc÷þÿ‰$ÇE¸ÿÿÿÿè´\U¸; M‰å]ÃU‰åƒìƒE(ÉéðþÿÿU‰åƒìƒE(ÉéàþÿÿU‰å‹E]ƒÀ ÃU‰åƒìƒE4ÉéÀþÿÿU‰å‹E]ƒÀ ÃU‰åƒìƒE4Éé þÿÿU‰å‹E]‹@ÃU‰å‹E]¶ÃU‰å‹E]¶ÃU‰å‹E]‹@ÃU‰å‹E]ƒÀÃU‰åƒìƒE0Éé@þÿÿU‰å‹E]ƒÀÃU‰åƒìƒE0Éé þÿÿU‰å‹E]ƒÀÃU‰åƒìƒE,ÉéþÿÿU‰å‹E]ƒÀÃU‰åƒìƒE,ÉéàýÿÿU1À‰å‹U ‹M9Jt]ËE9]”ÀÃU‰åSƒì‹E‹M ‹]‹‰L$‰$ÿR1É9St ƒÄ‰È[]Ãt&9”ÁƒÄ‰È[]ÃU‰å‹E ‹U]ÃU‰å‹E]‹@ÃU‰å‹E]‹@ÃU‰å‹E]‹@ÃU‰å‹E]‹@ ÃU‰å‹E]‹@ÃU‰å‹E]‹@ÃU‰åSƒì‹E ‹]ƒÀ‰D$‰$èÄŽ‰ØƒÄ[]ÂU‰å‹E]‹@ÃU‰å‹E]‹@ÃU‰å‹E]‹@ÃU‰å‹E]‹@ ÃU‰å‹E]‹@ÃU‰å‹E]‹@ÃU‰åSƒì‹E ‹]ƒÀ‰D$‰$è4Ž‰ØƒÄ[]ÂU¸ÿÿÿÿ‰åSƒì‹]‹…Òt‹CƒøÿtƒÄ[]ËB;B s ¶‰CƒÄ[]ˉ$ÿP$ƒøÿuêǃÄ[]ÃU¸ÿÿÿÿ‰åSƒì‹]‹…Òt ·CfƒøÿtƒÄ[]ËB;B s·fƒøÿt f‰CƒÄ[]ÃǃÄ[]ˉ$ÿP$ëÚU‰åWVSƒì‹] ‹}‹u9ûs¾‹‰4$‰T$ÿPˆƒÃ9ßwèƒÄ‰ø[^_]ÃU‰å‹U¶E S‹J¶ØP öY[]EÂÃU‰åWVSƒì‹] ‹}‹u9ûs¾‹‰4$‰T$ÿPˆƒÃ9ßwèƒÄ‰ø[^_]ÃU‰å‹U¶E S‹J¶ØPàöY[]EÂÃU1À‰åWVSì‹]µèþÿÿˆƒÀ=uó‹{Uè‰|$ ‰t$‰T$‰$ÿP¹ÆCó¦tÆCÄ[^_]ÃU1À‰åWVSìL‹UçþÿÿˆƒÀ=u󋺉ÞMç‰|$‰L$‰$‰•ÔþÿÿÇD$ ‰\$ÿP$‹•Ôþÿÿ¹Æ‚ó¦tÆ‚ÄL[^_]ËMç‰L$èþÿÿ‰$‰•ÔþÿÿÇD$ ‰L$‰\$ÿP$‹•Ôþÿÿ€}çt·ÄL[^_]ÃU‰åSƒì‹]‹E ‰Ú)‰D$‹E‰T$‰$è ÿÿ‰ØƒÄ[]ÃU‰å¶E ]ÃU‰åSƒì‹]‹E ‰Ú)‰D$‹E‰T$‰$èÌÿÿ‰ØƒÄ[]ÃU‰å¶E ]ÃU‰åWVSƒì,‹]‹}‹u·E 9ûr ƒÄ,‰Ø[^_]÷À‰Eä·‹‰4$‰T$‹Uä‰T$ÿP„ÀuÖƒÃ9ßw߃Ä,‰Ø[^_]ÃU‰åVSƒì‹] ‹u9ós·‰$èÛÿÿf‰ƒÃ9ÞwëƒÄ‰ð[^]ÃU‰åƒì·E ‰EÉéµÿÿU‰åVSƒì‹] ‹u9ós·‰$èƒÿÿf‰ƒÃ9ÞwëƒÄ‰ð[^]ÃU‰åƒì·E ‰EÉé]ÿÿU‰åWVSƒì,‹]‹}‹u·E 9ûr ƒÄ,‰Ø[^_]÷À‰Eä·‹‰4$‰T$‹Uä‰T$ÿP„ÀtÖƒÃ9ßw߃Ä,‰Ø[^_]ÃU‰åƒì·E fƒø„ v*f=„àwNfƒø „´fƒø@„š1ÀÉöfƒø„ÆvDfƒø„šfƒø uÚÇE MÉé—ÿÿ´&f=t:f= uºÇE% MÉéwÿÿ´&fƒøt*fƒøušÇE MÉéWÿÿ´&ÇE MÉéCÿÿvÇEú MÉé3ÿÿvÇEî MÉé#ÿÿvÇEè MÉéÿÿvÇE MÉéÿÿvÇEô MÉéó ÿÿvÇE MÉéã ÿÿvÇE MÉéÓ ÿÿU‰åWVSƒì,‹} ;}‹usU1ÛfÇEæt&·„^®‰D$·‰$虎ÿÿ…Àt ·„^Žf EæƒÃƒûuÑ·EæƒÇ‹U9}f‰vƒÂ‰Uë«‹EƒÄ,[^_]ÃU‰åWVS1Ûƒì,·E‹u·} ‰Eä´&f…¼^ŽuƒÃƒûuîƒÄ,1À[^_]Ãt&·„^®‰D$‹Eä‰$èùÿÿ…ÀtσÄ,¸[^_]ÃU‰å‹U ‹EV‹MS‹u9Âs¶ƒÂ·œ^Žf‰ƒÁ9Ðwè[^]ÃU‰å¶U ‹E]·„PŽÃU‰åWVSƒì<‹U¶E‹] ‹}€z ‹uˆEØu>9ûr ƒÄ<‰ø[^_]ÃÆ·‰$è’ ÿÿ¶U؃øÿDƒÃ9߈w߃Ä<‰ø[^_]Ãt&9ûs·fƒøw v·À¶D ˆƒÃ9ßv¥·ƒÆfƒøvã·À‰UÔ‰$è5 ÿÿ¶M؃øÿDÁˆ‹UÔëÎU‰åSƒì·E ‹U¶]fƒøw€z u·À‰$è÷ ÿÿƒøÿE؃ĉØ[]÷À¶\ ƒÄ‰Ø[]ÃU‰å‹U‹…Àtƒè]Ë (vM…Éu¡LULƒÀ£LUL‰ƒè]ððÁLULƒÀ‰ëéU‰åEøSƒìt‰EäEĉ$ÇEܰ´KÇEàmÄKÇEèZF‰eìè€èþÿ‹M ‹U‹Ç|TL‰U¸‹@‹‰E´…Û‰]°„²‹E´‹@ÇE¼‰EÀ‹UÀ‹E°…Ò„4‹MÀ‰$ƒE¼‰L$è[‹ÿÿ…À„‹UÇD$€ÇEȉ$èé|‹ 4M‹ ‰ $‰M¼èÞ‰ÿÿ‹]¼‰\$‰D$‹E‰$è l‹U‹‹PôHôZ;Y‰]¼† ‹E¼‹UÇEȉD$‰$è|‹M‹‹PôÆ=‹]‹Bô=pTL…S‹] ‹‹@‹‰$‰E¼èa‰ÿÿ‹UÇEȉ$‰D$‹E¼‰D$èœkÇE¼éÏ‹4M‹E¼‹‰$‰EÀè!‰ÿÿ‹UÀ‹M¸ÇEȉT$‰ $‰D$è\k‹]¸‹‹PôHôZ;Y‰]Àw‹Y…Û~!‹EÀ‹U¸ÇEȉD$‰$èÆ{‹M¸‹‹PôÆ=‹]¸¹pTL‹Bô9Á…M‹U ‹M¼‹‹@‹‰$‰EÀ蔈ÿÿ‹]ÀÇEȉ\$‰D$‹E¸‰$èÏjƒE¼ƒ}¼„œ‹M¸‹‹PôHôZ;Y‰]Àw‹I…É~!‹EÀ‹U¸ÇEȉD$‰$è+{‹M¸‹‹PôÆ;‹]¸¹pTL‹Bô9Á„Úþÿÿ‹]ÀÇ@‰ZôÆD éÃþÿÿvƒ}¼u;‹]°‰$èç‡ÿÿ‰\$ÇEȉD$‹E‰$èÕmEĉ$èzæþÿ‹EƒÄt[]‹U¼‹M´‹EÀ‹T‘‰UÀé|ýÿÿ‹Y…Ûéýÿÿéþÿÿ¡pTLÇD$*ÇD$ ÇD$‰D$‰$ÇEÈèJcë“‹]ÀÇ@‰ZôÆD éœþÿÿƒÅ‹UÌ‹M‰U¸‰ $è ƒ‹]¸ÇEÈÿÿÿÿ‰$èÛèþÿ‹M¼Ç@‰JôÆD é–ýÿÿU‰åWVEøƒìp‰EÔE´‰$ÇḚ´KÇEÐtÄKÇEØ6\F‰eÜèïäþÿ‹U‹M ‹‹9Є݋@‰E¨‹…À„°‹R‰U¤‹…Ò„ ‰T$‰$èá‡ÿÿ…À…Œ‹E¨‹p…ö„‹‹M Eì‰$ÇE¸‰L$èÒûÿÿ‹UƒìEð‰$ÇE¸‰T$è¶ûÿÿ‹uðƒì‹}ìÆE°Nô‰M¨‹NôGô;Oô‰E¬tK}¨pTLur}¬pTLuCE´‰$èÈäþÿ¶E°eø^_]ÃÆE°ëä´&‹U¤‹J…É…gÿÿÿfÆE°ëÇ9Éó¦”E°ë«‹E¬ƒÊÿƒÀèB´ÿÿ…À«‹M¬Eö‰D$‰ $èŒcë—‹E¨ƒÊÿƒÀè´ÿÿ…À~+‹Eìƒè ‰E¬énÿÿÿƒÅ‹E¼‹UÀ‰E°‹E¸‰U¬…Àt@ƒèt ‹U¨E÷‰D$‰$è;cëÁEì‰$è.‹E°‹U¬ƒÂt‰$ÇE¸ÿÿÿÿèôæþÿ‹E°‹U¬ëä‰$ÇE¸ÿÿÿÿè=LU‰å‹E‹U‰¸]ÃU¸‰å]ÃU¸‰å]ÃU¸‰å]ÃU‰å‹E‹U‰‹E$‹U‰¸]ÃU‰å‹E‹U‰‹E$‹U‰¸]ÃU‰å‹U‹E+E]9ÐGÂÃU‰å‹E‹U‰¸]áp&NU‰å]ƒ8”À¶Àáp&NU‰å]‹ÃU1À‰å]ÃU‰åWVSƒì,‹U ‹]‹}‹u‹9û’Â;u ‰Eä‰Ðsj„Òu/ëdt&ƒøþt`…Àufǰ‹UäÃÆ‹M 9ß—À‰v<9u v7‰ø)ØMä‰L$ ‰D$‰\$‰4$è, ÿÿƒøÿu·¸‹U‰‹U$‰2ƒÄ,[^_]Ãàëé¸ëâU‰åWVSƒì<‹U ‹u‹]‹‹p&N‰Eà‹E)ðÑø¯+E …ÀŽ‹;] s{9uMà‰MÔw9ën‹E )Ø9LJ¬MæƒÆ‰$û‰|$‰L$èä‚ÿÿ‹Eà‹U 9] ‰v<9uv7‹EÔUæ‰D$·‰$‰D$è9ÿÿƒøÿ‰Çu©¸‹U‰2‹U$‰ƒÄ<[^_]Ã1À;u’Àëä9uvðEà‰Çët&‹UàÃÆ‹M 9u‰vÓ‰|$·‰$‰D$èÛÿÿƒøÿuÖë¢t&¸ëœU‰åWVSƒì<‹U ‹u‹]‹}‹…ö‰Eäth9ûsdÇEÔë,t&ƒøþtF…Àº‹M D‹UäƒîÉEÔ9ßv(…öt$‰ø)ØMä‰L$ ‰D$‰\$Ç$èz ÿÿƒøÿuµ‹EÔƒÄ<[^_]ÃÇEÔëìU‰åƒì‹E‰D$‹E ‰$èXƒÿÿɉÂ1À…Ò•ÀÁú ÐÃU‰åƒìxEø‰EÔE´‰$ÇḚ´KÇEÐxÑKÇE؉aF‰eÜèßþÿÇE¸ÿÿÿÿˆD$ E÷‰D$‹E‰D$‹E ‰$è-ZÇE¸‰EðˆD$ Eö‰D$‹E‰D$‹E‰$èZ‰E¬‹Uðƒè ‹M¬‰Eœ‰U°IôRô‰M ‰U¤ëM¶‹E°‰$èí€ÿÿ‹U¬E°‰$‰E°èÜ€ÿÿ‹M¤E¬9M°”Â;E ”Átc„Òu|„Éuh‹U°ƒÀ‰E¬ƒÂ‰U°‹E¬‹U°‹M‰D$‰T$‰ $èÐþÿÿ…À‰E¨t™}œpTL…•‹EðºpTLƒè 9Âu\E´‰$è"ßþÿ‹E¨ÉÄÒuЄÉtt&ÇE¨ë¾´&ÇE¨ÿÿÿÿ뮃Å‹U¼Eð‰U¬‰$è|‹M¬ÇE¸ÿÿÿÿ‰ $èÑáþÿƒ=(vMuX‹PJÿ‰H…ÒŽUô‰T$‰$èÌ]ézÿÿÿƒ=(vMu8‹Uœ‹Mœ‹BPÿ‰Q…ÀKÿÿÿEõ‰D$‹Eœ‰$è•]é4ÿÿÿƒÊÿðÁPë§‹MœƒÈÿðÁAëÊU‰åƒì‹E ‹U‹M‰E‰U ‰MÉé*ÿÿU‰åEøSƒìt‰EÔE´‰$ÇḚ´KÇEЀÑKÇEØ+dF‰eÜè`Ýþÿ‹U‹M‹]Ç|TL‰U¤ˆD$ E÷‰D$‰L$‰$ÇE¸èX‰E°‰Eð@ôÇE¸‰Eœ‹E)ØÀ‰E¨‰$èÛ?‰E¬ëd¶‹M¤‹‹PôHôZ;Y‰] w‹I…É~!‹E ‹U¤ÇE¸‰D$‰$èªq‹M¤‹‹PôÆ‹]¤‹Bô=pTL…ß‹E°ƒÀ‰E°‹U¨‹M°‹]¬‹E ‰T$ ‰L$‰\$‰$èÒþÿÿ9E¨wDƒÀ…Û‰E¨t‰$è ?‹U¨ÇE¸‰$è)?‰E¬‹M¨‹]°‰D$‹E ‰L$ ‰\$‰$è‰þÿÿ‹U¬‹M¤‰D$ÇE¸‰T$‰ $è\`‹]°‰$èù}ÿÿ‹UœØ9ЉE°…ÿÿÿ‹U¬…Òt ‹]¬‰$è>‹Eðƒè =pTLu@E´‰$èwÜþÿ‹EƒÄt[]‹M Ç@‰JôÆD é ÿÿÿƒÅ‹]¼‹E¸‰]°ÿ$…è Mƒ=(vMuR‹PJÿ‰H…ÒªUö‰T$‰$è=[ë™ÇE¸èÿEEð‰$è$y‹E‰$èy‹U°ÇE¸ÿÿÿÿ‰$èçÞþÿƒÊÿðÁPë­‹U°‰$èRCƒ}¬t ‹M¬‰ $èÁ=ÇE¸èN‹E°‰$è*CëçU‰åƒì‹E‹‹BÉÿàU‰åƒì‹E‹‹BÉÿàU1À‰å‹U S‹]9Ús¾ ÁÀƒÂÈ9Ówñ[]ÃU‰åSƒì‹E ‹M‹]‹‰L$ ‹M‰D$‰$‰L$ÿR ‰Ø‹]üƒìÉÂU‰åƒì‹E‰D$‹E ‰$èØ}ÿÿɉÂ1À…Ò•ÀÁú ÐÃU‰åƒìxEø‰EÔE´‰$ÇḚ´KÇEÐÍKÇEØgF‰eÜèñÙþÿÇE¸ÿÿÿÿˆD$ E÷‰D$‹E‰D$‹E ‰$èÍ´ÇE¸‰EðˆD$ Eö‰D$‹E‰D$‹E‰$覴‹Uð‰E¬‰Ñ‰U°‹RôQ‰U¤Pô‰Uœ‹PôP‰U ëN‹M°‰ $è|ÿÿ‹U°‹M¬‰ $B‰E°èy|ÿÿ‹U¬‹M¤9M°B”Â;E ”Átj„Òuw„Éuj‹U°ƒÀ‰E¬ƒÂ‰U°‹M¬‹E°‹U‰L$‰D$‰$èÊþÿÿ…À‰E¨t“}œ`TL…‹Eðº`TLƒè 9ÂuWE´‰$èŒÙþÿ‹E¨Éô&„ÒuÉ„Ét–ÇE¨ë¼ÇE¨ÿÿÿÿ볃Å‹U¼Eð‰U°‰$èÂ׋M°ÇE¸ÿÿÿÿ‰ $è@Üþÿƒ=(vMuU‹PJÿ‰H…Ò“Uô‰T$‰$èk¸낃=(vMu8‹Uœ‹Mœ‹BPÿ‰Q…ÀSÿÿÿEõ‰D$‹Eœ‰$è7¸é<ÿÿÿƒÊÿðÁP몋MœƒÈÿðÁAëÊU‰åƒì‹E ‹U‹M‰E‰U ‰MÉéª{ÿÿU‰åEøSƒìt‰EÔE´‰$ÇḚ´KÇEÐÍKÇEØÁiF‰eÜèÐ×þÿ‹U‹]ÇlTL‰U¤ˆD$ E÷‰D$‹E‰\$ÇE¸‰$è ²‰Â‰E°‰Eð‹@ô+]ÇE¸B‰Eœ‰]¨‰$èG:‰E¬ë^f‹]¤‹‹HôPôY;Z‰] w‹Z…Û~$‹E ‹U¤ÇE¸‰D$‰$è*Í‹]¤‹‹HôPôú`TLfÇH…æ‹]°ƒÃ‰]°‹E¨‹U°‹]¬‰D$ ‹E ‰T$‰\$‰$èÔþÿÿ9E¨wJƒÀ…Û‰E¨t‰$è}9‹U¨ÇE¸‰$è˜9‹]¨‰E¬‹E°‹U¬‰\$ ‹] ‰D$‰T$‰$è…þÿÿ‰D$‹U¤‹E¬ÇE¸‰$‰D$èøº‹]°‰$è•yÿÿ‹UœC9ЉE°…üþÿÿ‹U¬…Òt ‹U¬‰$èú8‹Eðƒè =`TLuAE´‰$èâÖþÿ‹EƒÄt[]‹E ÇB‰fÇDB éÿÿÿƒÅ‹]¼‹E¸‰]°ÿ$…ÌMƒ=(vMuR‹PJÿ‰H…Ò©Uö‰T$‰$è×µë˜ÇE¸èi@Eð‰$èÞÔ‹E‰$èÓÔ‹U°ÇE¸ÿÿÿÿ‰$èQÙþÿƒÊÿðÁPë­‹E°‰$è¼=ƒ}¬t ‹U¬‰$è+8ÇE¸èH‹]°‰$è”=ëçU‰åƒì‹E‹‹BÉÿàU‰åƒì‹E‹‹BÉÿàU1À‰å‹U S‹]9Ús· ÁÀƒÂÈ9Ówñ[]ÃU‰åSƒì‹E ‹M‹]‹‰L$ ‹M‰D$‰$‰L$ÿR ‰Ø‹]üƒìÉÂU‰åEøS씉EÔE´‰$ÇḚ´KÇEÐÕKÇEØ«sF‰eÜèÔþÿÇ$˜ULèëÿÿ‹U‰E ‹Bl‹M ‹X ‹‹‰M¨…À„»‹]‰E ÇE‹[ ƒãJƒû@‰]œtÇE¸ ƒ}œDE‰E] ‰$ÇE¸ÿÿÿÿè.ãÿÿ‰E¨E‰$è ãÿÿƒ}¨ÿÆ…{ÿÿÿÆE¨”ƒøÿ”À8Â…°‹M ÆEÇE˜ÆE‡¶Aƒ}ÇE”t ‹M ¶A‹]‰]”„ÀÇEð|TL…‚1Ò¸ÿÿÿÿ÷u‹U ‰E€‹E ƒÀN€zd‰Eˆ„?€}…œÇE¤ÆEœ‹U €zt ¶M¨8J%„v‹U ¶E¨8B$„¡‹M”¾À‹]ˆ‰D$‰L$‰$èZvÿÿ…À„€)ØPúƒøM‹U¤9U€‚¯U‰Á÷Ñ9Ñ’Á¶ÉƒE˜Mœ‰U¤‹E …Àt‹P;P ƒLƒÂ‰PÇEÿÿÿÿM ‰ $ÇE¸èÜáÿÿ]‰E¨‰$èÎáÿÿƒ}¨ÿ”ƒøÿ”À8Â…©ÆE¨ÆE‹Eð‹XôPô…Û…ó‹M˜…Éu €}‡u‹…Àu‹]$‹E ÇÇë"€}¨uæ€}œ„a‹M$‹] ÇÿÿÿÿÇ€}t‹] ƒ ‹M úpTL‹]‰M¨‰]¬…ªE´‰$è¸Òþÿ‹E¨‹U¬Ä”[]ÃÆEœéÿÿÿE ‰$èáÿÿˆE¨étþÿÿ‹E˜…À„¾E˜]ð‰$ÇE¸‰D$èiÇE˜é¾þÿÿ€}¨/X‹EðÆE¨‹XôPô…Û„ ÿÿÿ¾E˜ÇE¸‰D$Eð‰$èÓh‹U Eð‰D$‹B ‰D$‹B‰$è§Ú„Àu ‹M Ç‹Uðƒê é¿þÿÿ€}…]¶M”ÇE¤ÆEœƒÁ0ˆMˆƒ}” ¾E¨†fÿÿÿ¶U¨ƒê0€ú †Å¶U¨ƒêa€ú‡òƒèWƒøÿ„Dÿÿÿ‹U¤9U€‚НU‰Á÷Ñ9Ñ’ÁжɃE˜Mœ‰E¤‹E …Àt‹P;P ƒðƒÂ‰PÇEÿÿÿÿM ‰ $ÇE¸è¬ßÿÿ]‰E¨‰$èžßÿÿƒ}¨ÿ”ƒøÿ”À8„ÐýÿÿE ‰$è~ßÿÿˆE¨é6ÿÿÿ¶ÆEœëŒ¶]¨8]ˆŽ›þÿÿƒè0éFÿÿÿt&‰$èHßÿÿ‹U ˆE¨8BJ”…{ÿÿÿ„D8BK„;‹U ¶BÇE˜ÆE‡´&„Àt‹M ¶U¨8Q%„3‹U ¶]¨8Z$„#8ZN„£€}‡„‹] ¶M¨8KLt 8KM…û‹Uœ…Ò„_ƒ}…ïÇE˜ÆE‡‹E …Àt‹P;P ƒÌƒÂ‰PÇEÿÿÿÿE ‰$ÇE¸ÿÿÿÿèrÞÿÿU‰$‰E¤èdÞÿÿƒ}¤ÿ”ƒøÿ”À8Â…?‹M ÆE¶AéUûÿÿEðÇD$ ‰$ÇE¸èõcé_ûÿÿ¶U¨ƒêA€ú‡Nýÿÿƒè7éùýÿÿ‹E¤‹M$÷Ø€½{ÿÿÿDE¤‰é—üÿÿ‹M ¶A„Àt ¶]¨8Y%„´þÿÿ‹M ¶U¨8Q$„¤þÿÿ‹E …Àt‹P;P ƒXƒÂ‰PÇEÿÿÿÿ] ‰$ÇE¸ÿÿÿÿè”Ýÿÿ‰E¤E‰$è†Ýÿÿƒ}¤ÿ”ƒøÿ”À8„qúÿÿ‰$èiÝÿÿ‹U ˆE¨¶Bé8þÿÿÇE˜ÆE‡ÇEéŸþÿÿv€}‡t ƒ} …Wþÿÿ‹Mœ…ÉtIƒ}„†ƒE˜ÆE‡énþÿÿf] ‰$ÇE¸ÿÿÿÿèþÜÿÿ€}‡ˆE¨„é‹] ¶CéÕýÿÿt&ÇE˜ÆE‡ÇEé%þÿÿÆEéÖùÿÿÆEéáùÿÿÇ$hÇE¸èä0Æ@$Æ@%Ç@ÇfMÇ@Ç@ Æ@Ç@Ç@Ç@Ç@ Æ@d‰…|ÿÿÿ‹EÇE¸ƒÀl‰D$‹…|ÿÿÿ‰$èèò‹M ‹|ÿÿÿ‹U‰L$‰\$‹BlÇE¸ÿÿÿÿ‰$èÂJ‹M¨‹é–øÿÿ‹U ÆE¶BéùÿÿÇE¤ÆEœÆE¨é3úÿÿÆE¨é*úÿÿ‹‰$‹B(ÇE¸ÿÐéüÿÿ‹‰$‹B(ÇE¸ÿÿÿÿÿÐé$ýÿÿ‹‰$‹B(ÇE¸ÿÐé¤ùÿÿÇE˜ÆE‡éåüÿÿƒ=(vMuZ‹BHÿ‰J…À<úÿÿE÷‰D$‰$èLé(úÿÿ‹‰$‹B(ÇE¸ÿÿÿÿÿÐé˜ýÿÿƒÅ‹E¸‹]¼ƒø‰]¨t}~Zƒøt(ƒøt  ƒÈÿðÁB륋U¨‰$è!4ÇE¸èõ>‹U¨‰$è 4ƒ½|ÿÿÿtà‹|ÿÿÿ‹‰ $‹@ÇE¸ÿÐëÇ…Àu¢Eð‰$èyi‹E¨ÇE¸ÿÿÿÿ‰$èGÏþÿÇE¸è+6‹E¨ÇE¸ÿÿÿÿ‰$è)ÏþÿU‰åEøS줉EÔE´‰$ÇḚ´KÇEÐÄÔKÇEØK}F‰eÜèMËþÿÇ$˜ULèAâÿÿ‹U‰E¤‹Bl‹M¤‹X ‹‹‰M¨…À„+‹]‰E¤ÇE‹[ ƒãJƒû@‰]œtÇE¸ ƒ}œDE‰E] ‰$ÇE¸ÿÿÿÿèîÙÿÿ‰E¨E‰$èàÙÿÿƒ}¨ÿÆ…{ÿÿÿÆE¨”ƒøÿ”À8Â…W‹M¤ÆEÇE˜ÆE‡¶Aƒ}ÇE”t ‹M¤¶A‹]‰]”„ÀÇEð|TL…ù€½{ÿÿÿ‹M¤À1Ò-€‰…|ÿÿÿ÷u‹U¤ƒÂN€yd‰Uˆ‰E€„Ÿ€}…ýÇE ÆEœ‹M¤€yt ¶]¨8Y%„—‹U¤¶E¨8B$„þ‹M”¾À‹]ˆ‰D$‰L$‰$è mÿÿ…À„Ý)ØPúƒøM‹U 9U€‚,‹|ÿÿÿ¯U)Á9Ñ’Á¶ÉƒE˜Mœ‰U ‹E …Àt‹P;P ƒ©ƒÂ‰PÇEÿÿÿÿM ‰ $ÇE¸è‰Øÿÿ]‰E¨‰$è{Øÿÿƒ}¨ÿ”ƒøÿ”À8Â…ÆÆE¨ÆE‹EðPô‹@ô…À…L‹]˜…Ûu&€}‡u ‹ …Éu‹]$‹E ÇÇë2¶€}¨uà€}œ„±€½{ÿÿÿ‹M$‹] À-€‰Ç€}t‹] ƒ ‹M úpTL‹]‰M¨‰]¬…NE´‰$èUÉþÿ‹E¨‹U¬Ä¤[]öÆEœéìþÿÿ´&E ‰$è•×ÿÿˆE¨éSþÿÿ‹]˜…Û„N‹Eð‹PôHôZ;Y‰]¨w‹I…É~‹E¨Uð‰$ÇE¸‰D$è]‹Eð‹Pô¶M˜ˆ ‹UðBô=pTL…GÇE˜éiþÿÿt&€}¨/\‹EðÆE¨Pô‹@ô…À„´þÿÿ¾E˜ÇE¸‰D$Eð‰$è'_‹U¤Eð‰D$‹B ‰D$‹B‰$èûЄÀu ‹M Ç‹Uðƒê éfþÿÿv€}…^¶]”ÇE ÆEœƒÃ0ˆ]ˆƒ}” ¾E¨†cÿÿÿ¶U¨ƒê0€ú †Æ¶U¨ƒêa€ú‡ÃƒèWƒøÿ„Aÿÿÿ‹M 9M€‚‹‹U¯Ñ‹|ÿÿÿ)Á9Ñ’ÁжɃE˜Mœ‰E ‹E …Àt‹P;P ƒëƒÂ‰PÇEÿÿÿÿ] ‰$ÇE¸è÷Õÿÿ‰E¨E‰$èéÕÿÿƒ}¨ÿ”ƒøÿ”À8„nýÿÿ‰$èÌÕÿÿˆE¨é3ÿÿÿt&ÆEœë‘¶U¨8UˆŽ—þÿÿƒè0éEÿÿÿt&¶U¨ƒêA€ú‡zþÿÿƒè7é(ÿÿÿEðÇD$ ‰$ÇE¸è>[éèûÿÿ‰$èaÕÿÿ‹U¤ˆE¨8BJ”…{ÿÿÿ„ 8BK„‹U¤¶BÇE˜ÆE‡„Àt‹M¤¶U¨8Q%„‹U¤¶]¨8Z$„ó8ZN„s€}‡„à‹]¤¶M¨8KLt 8KM…Ë‹Uœ…Ò„-ƒ}…¿ÇE˜ÆE‡‹E …Àt‹P;P ƒœƒÂ‰PÇEÿÿÿÿE ‰$ÇE¸ÿÿÿÿè’ÔÿÿU‰$‰E è„Ôÿÿƒ} ÿ”ƒøÿ”À8Â…‹M¤ÆE¶Aéµúÿÿ‹E ‹M$÷Ø€½{ÿÿÿDE ‰éQüÿÿt&‹M¤¶A„Àt ¶]¨8Y%„íþÿÿ‹M¤¶U¨8Q$„Ýþÿÿ‹E …Àt‹P;P ƒJƒÂ‰PÇEÿÿÿÿ] ‰$ÇE¸ÿÿÿÿèæÓÿÿ‰E E‰$èØÓÿÿƒ} ÿ”ƒøÿ”À8„úÿÿ‰$è»Óÿÿ‹U¤ˆE¨¶BéqþÿÿÇE˜ÆE‡ÇEéÑþÿÿt&€}‡t ƒ} …‡þÿÿ‹Mœ…ÉtIƒ}„¤ƒE˜ÆE‡éžþÿÿf] ‰$ÇE¸ÿÿÿÿèNÓÿÿ€}‡ˆE¨„é‹]¤¶Céþÿÿt&ÇE˜ÆE‡ÇEéUþÿÿÆEéfùÿÿÆEéqùÿÿÇ$hÇE¸è4'Æ@$Æ@%Ç@ÇfMÇ@Ç@ Æ@Ç@Ç@Ç@Ç@ Æ@d‰…tÿÿÿ‹EÇE¸ƒÀl‰D$‹…tÿÿÿ‰$è8é‹M¤‹tÿÿÿ‹U‰L$‰\$‹BlÇE¸ÿÿÿÿ‰$èA‹M¨‹é&øÿÿ‹U¤ÆE¶BéžøÿÿÇE ÆEœÆE¨éÖùÿÿÆE¨éÍùÿÿ‹‰$‹B(ÇE¸ÿÐéüÿÿ‹‰$‹B(ÇE¸ÿÿÿÿÿÐéTýÿÿ‹‰$‹B(ÇE¸ÿÐéGùÿÿ‹]¨Ç@‰ZôÆD ÇE˜éùÿÿÇE˜ÆE‡é÷üÿÿ‹‰$‹B(ÇE¸ÿÿÿÿÿÐé¦ýÿÿƒÅ‹E¸‹]¼ƒø‰]¨t|~Yƒø„ƒøt4 ƒ=(vM…¨‹BHÿ‰J…À”ùÿÿE÷‰D$‰$èBé€ùÿÿ‹U¨‰$èU*ÇE¸è)5…Àu£Eð‰$èÚ_‹E¨ÇE¸ÿÿÿÿ‰$è¨ÅþÿÇE¸èŒ,‹E¨ÇE¸ÿÿÿÿ‰$èŠÅþÿ‹U¨‰$èÿ)ƒ½tÿÿÿt¡‹tÿÿÿ‹‰ $‹@ÇE¸ÿÐ눃ÈÿðÁBéTÿÿÿU‰åEøS씉EÔE´‰$ÇḚ´KÇEÐìÔKÇEØ»†F‰eÜè}ÁþÿÇ$˜ULèqØÿÿ‹U‰E ‹Bl‹M ‹X ‹‹‰M¨…À„»‹]‰E ÇE‹[ ƒãJƒû@‰]œtÇE¸ ƒ}œDE‰E] ‰$ÇE¸ÿÿÿÿèÐÿÿ‰E¨E‰$èÐÿÿƒ}¨ÿÆ…{ÿÿÿÆE¨”ƒøÿ”À8Â…°‹M ÆEÇE˜ÆE‡¶Aƒ}ÇE”t ‹M ¶A‹]‰]”„ÀÇEð|TL…‚1Ò¸ÿÿÿÿ÷u‹U ‰E€‹E ƒÀN€zd‰Eˆ„?€}…œÇE¤ÆEœ‹U €zt ¶M¨8J%„v‹U ¶E¨8B$„¡‹M”¾À‹]ˆ‰D$‰L$‰$èJcÿÿ…À„€)ØPúƒøM‹U¤9U€‚¯U‰Á÷Ñ9Ñ’Á¶ÉƒE˜Mœ‰U¤‹E …Àt‹P;P ƒLƒÂ‰PÇEÿÿÿÿM ‰ $ÇE¸èÌÎÿÿ]‰E¨‰$è¾Îÿÿƒ}¨ÿ”ƒøÿ”À8Â…©ÆE¨ÆE‹EðPô‹@ô…À…ó‹]˜…Ûu €}‡u‹ …Éu‹]$‹E ÇÇë"€}¨uæ€}œ„a‹M$‹] ÇÿÿÿÿÇ€}t‹] ƒ ‹M úpTL‹]‰M¨‰]¬…ªE´‰$訿þÿ‹E¨‹U¬Ä”[]ÃÆEœéÿÿÿE ‰$èõÍÿÿˆE¨étþÿÿ‹U˜…Ò„¾E˜]ð‰$ÇE¸‰D$èVÇE˜é¾þÿÿ€}¨/X‹EðÆE¨Pô‹@ô…À„ ÿÿÿ¾E˜ÇE¸‰D$Eð‰$èÃU‹U Eð‰D$‹B ‰D$‹B‰$è—Ç„Àu ‹M Ç‹Uðƒê é¿þÿÿ€}…]¶M”ÇE¤ÆEœƒÁ0ˆMˆƒ}” ¾E¨†fÿÿÿ¶U¨ƒê0€ú †Å¶U¨ƒêa€ú‡òƒèWƒøÿ„Dÿÿÿ‹U¤9U€‚НU‰Á÷Ñ9Ñ’ÁжɃE˜Mœ‰E¤‹E …Àt‹P;P ƒðƒÂ‰PÇEÿÿÿÿM ‰ $ÇE¸èœÌÿÿ]‰E¨‰$èŽÌÿÿƒ}¨ÿ”ƒøÿ”À8„ÐýÿÿE ‰$ènÌÿÿˆE¨é6ÿÿÿ¶ÆEœëŒ¶]¨8]ˆŽ›þÿÿƒè0éFÿÿÿt&‰$è8Ìÿÿ‹U ˆE¨8BJ”…{ÿÿÿ„D8BK„;‹U ¶BÇE˜ÆE‡´&„Àt‹M ¶U¨8Q%„3‹U ¶]¨8Z$„#8ZN„£€}‡„‹] ¶M¨8KLt 8KM…û‹Mœ…É„_ƒ}…ïÇE˜ÆE‡‹E …Àt‹P;P ƒÌƒÂ‰PÇEÿÿÿÿE ‰$ÇE¸ÿÿÿÿèbËÿÿU‰$‰E¤èTËÿÿƒ}¤ÿ”ƒøÿ”À8Â…?‹M ÆE¶AéUûÿÿEðÇD$ ‰$ÇE¸èåPé_ûÿÿ¶U¨ƒêA€ú‡Nýÿÿƒè7éùýÿÿ‹E¤‹M$÷Ø€½{ÿÿÿDE¤‰é—üÿÿ‹M ¶A„Àt ¶]¨8Y%„´þÿÿ‹M ¶U¨8Q$„¤þÿÿ‹E …Àt‹P;P ƒXƒÂ‰PÇEÿÿÿÿ] ‰$ÇE¸ÿÿÿÿè„Êÿÿ‰E¤E‰$èvÊÿÿƒ}¤ÿ”ƒøÿ”À8„qúÿÿ‰$èYÊÿÿ‹U ˆE¨¶Bé8þÿÿÇE˜ÆE‡ÇEéŸþÿÿv€}‡t ƒ} …Wþÿÿ‹]œ…ÛtIƒ}„†ƒE˜ÆE‡énþÿÿf] ‰$ÇE¸ÿÿÿÿèîÉÿÿ€}‡ˆE¨„é‹] ¶CéÕýÿÿt&ÇE˜ÆE‡ÇEé%þÿÿÆEéÖùÿÿÆEéáùÿÿÇ$hÇE¸èÔÆ@$Æ@%Ç@ÇfMÇ@Ç@ Æ@Ç@Ç@Ç@Ç@ Æ@d‰…|ÿÿÿ‹EÇE¸ƒÀl‰D$‹…|ÿÿÿ‰$èØß‹M ‹|ÿÿÿ‹U‰L$‰\$‹BlÇE¸ÿÿÿÿ‰$è²7‹M¨‹é–øÿÿ‹U ÆE¶BéùÿÿÇE¤ÆEœÆE¨é3úÿÿÆE¨é*úÿÿ‹‰$‹B(ÇE¸ÿÐéüÿÿ‹‰$‹B(ÇE¸ÿÿÿÿÿÐé$ýÿÿ‹‰$‹B(ÇE¸ÿÐé¤ùÿÿÇE˜ÆE‡éåüÿÿƒ=(vMuZ‹BHÿ‰J…À<úÿÿE÷‰D$‰$è9é(úÿÿ‹‰$‹B(ÇE¸ÿÿÿÿÿÐé˜ýÿÿƒÅ‹E¸‹]¼ƒø‰]¨t}~Zƒøt(ƒøt  ƒÈÿðÁB륋U¨‰$è!ÇE¸èå+‹U¨‰$èú ƒ½|ÿÿÿtà‹|ÿÿÿ‹‰ $‹@ÇE¸ÿÐëÇ…Àu¢Eð‰$èiV‹E¨ÇE¸ÿÿÿÿ‰$è7¼þÿÇE¸è#‹E¨ÇE¸ÿÿÿÿ‰$è¼þÿU‰åEøS줉EÔE´‰$ÇḚ´KÇEМÔKÇEØ]F‰eÜè=¸þÿÇ$˜ULè1Ïÿÿ‹U‰E”‹Bl‹M”‹X ‹‹‰M¨…À„‹]‰E”ÇE„‹[ ƒãJƒû@‰]tÇE„¸ ƒ}DE„‰E„] ‰$ÇE¸ÿÿÿÿèÞÆÿÿ‰E¨E‰$èÐÆÿÿƒ}¨ÿÆ…wÿÿÿÆE¨”ƒøÿ”À8Â…ð‹M”ÆEƒÇEŒÆ…{ÿÿÿ¶A´&ƒ}„ÇEˆt ‹M”¶A‹]„‰]ˆ„ÀÇEð|TL…¾¸ÿÿ‰ÂÁú÷}„‹U”f‰…xÿÿÿ‹E”ƒÀN€zd‰…|ÿÿÿ„[€}ƒ…èfÇE˜ÆE‹U”€zt ¶M¨8J%„“‹U”¶E¨8B$„¾‹Mˆ¾À‹|ÿÿÿ‰D$‰L$‰$èôYÿÿ…À„š)ØPúƒøM·U˜f9•xÿÿÿ‚ f¯U„»ÿÿ)÷Ê9ÙŸÁ¶ɃEŒMf‰U˜‹E …Àt‹P;P ƒ‰ƒÂ‰PÇEÿÿÿÿM ‰ $ÇE¸èjÅÿÿ]‰E¨‰$è\Åÿÿƒ}¨ÿ”ƒøÿ”À8Â…·ÆE¨ÆEƒ‹Eð‹HôPô…É…‹EŒ…Àu'€½{ÿÿÿu‹…Ûu‹]$‹E fÇÇë&t&€}¨uâ€}„€‹M$‹] fÇÿÿÇ€}ƒt‹E ƒ‹M úpTL‹]‰M¨‰]¬…äE´‰$è@¶þÿ‹E¨‹U¬Ä¤[]ÃÆEéûþÿÿ´&E ‰$è…ÄÿÿˆE¨éWþÿÿ‹]Œ…Û„=¾EŒ]ð‰$ÇE¸‰D$è˜LÇEŒé°þÿÿ€}¨/h‹EðÆE¨‹HôPô…É„ÿþÿÿ¾EŒÇE¸‰D$Eð‰$èSL‹U”Eð‰D$‹B ‰D$‹B‰$è'¾„Àu ‹M Ç‹Uðƒê é±þÿÿ€}ƒ…¶MˆfÇE˜ÆEƒÁ0ˆ|ÿÿÿƒ}ˆ ¾E¨†dÿÿÿ¶U¨ƒê0€ú †Ö¶U¨ƒêa€ú‡ƒèWƒøÿ„Bÿÿÿ·U˜f9•xÿÿÿ‚“f¯U„¹ÿÿ)Á·Ú9ËŸÁ¶ÉƒEŒMf‰E˜‹E …Àt‹P;P ƒƒÂ‰PÇEÿÿÿÿM ‰ $ÇE¸èÃÿÿ]‰E¨‰$èÃÿÿƒ}¨ÿ”ƒøÿ”À8„²ýÿÿE ‰$èîÂÿÿˆE¨é(ÿÿÿ¶ÆE댶]¨8|ÿÿÿŽˆþÿÿƒè0é5ÿÿÿf‰$è¸Âÿÿ‹U”ˆE¨8BJ”…wÿÿÿ„R8BK„I‹U”¶BÇEŒÆ…{ÿÿÿt&„Àt‹M”¶U¨8Q%„L‹U”¶]¨8Z$„<8ZN„³€½{ÿÿÿ„&‹]”¶M¨8KLt 8KM…‹U…Ò„jƒ}„… ÇEŒÆ…{ÿÿÿ‹E …Àt‹P;P ƒåƒÂ‰PÇEÿÿÿÿE ‰$ÇE¸ÿÿÿÿèÜÁÿÿU‰$‰E˜èÎÁÿÿƒ}˜ÿ”ƒøÿ”À8Â…M‹M”ÆEƒ¶AéûÿÿEðÇD$ ‰$ÇE¸è_Gé#ûÿÿ¶U¨ƒêA€ú‡8ýÿÿƒè7éåýÿÿf·E˜·M˜‹]$÷Ø€½wÿÿÿEÈf‰ érüÿÿ‹M”¶A„Àt ¶]¨8Y%„¦þÿÿ‹M”¶U¨8Q$„–þÿÿ‹E …Àt‹P;P ƒlƒÂ‰PÇEÿÿÿÿ] ‰$ÇE¸ÿÿÿÿèöÀÿÿ‰E˜E‰$èèÀÿÿƒ}˜ÿ”ƒøÿ”À8„#úÿÿ‰$èËÀÿÿ‹U”ˆE¨¶Bé*þÿÿÇEŒÆ…{ÿÿÿÇE„é”þÿÿf€½{ÿÿÿt ƒ}„ …Gþÿÿ‹M…ÉtHƒ}„„’ƒEŒÆ…{ÿÿÿé^þÿÿ] ‰$ÇE¸ÿÿÿÿèZÀÿÿ€½{ÿÿÿˆE¨„ò‹]”¶Cé¾ýÿÿÇEŒÆ…{ÿÿÿÇE„éþÿÿt&ÆEƒé‡ùÿÿ´&ÆEƒé‹ùÿÿÇ$hÇE¸è4Æ@$Æ@%Ç@ÇfMÇ@Ç@ Æ@Ç@Ç@Ç@Ç@ Æ@d‰…pÿÿÿ‹EÇE¸ƒÀl‰D$‹…pÿÿÿ‰$è8Ö‹M”‹pÿÿÿ‹U‰L$‰\$‹BlÇE¸ÿÿÿÿ‰$è.‹M¨‹é6øÿÿ‹U”ÆEƒ¶B鏸ÿÿfÇE˜ÆEÆE¨éöùÿÿÆE¨éíùÿÿ‹‰$‹B(ÇE¸ÿÐéáûÿÿ‹‰$‹B(ÇE¸ÿÿÿÿÿÐé ýÿÿ‹‰$‹B(ÇE¸ÿÐégùÿÿÇEŒÆ…{ÿÿÿéÉüÿÿƒ=(vMuZ‹BHÿ‰J…ÀúÿÿE÷‰D$‰$è^/éîùÿÿ‹‰$‹B(ÇE¸ÿÿÿÿÿÐé„ýÿÿƒÅ‹E¸‹]¼ƒø‰]¨t}~Zƒøt(ƒøt  ƒÈÿðÁB륋U¨‰$èoÇE¸èC"‹U¨‰$èXƒ½pÿÿÿtà‹pÿÿÿ‹‰ $‹@ÇE¸ÿÐëÇ…Àu¢Eð‰$èÇL‹E¨ÇE¸ÿÿÿÿ‰$蕲þÿÇE¸èy‹E¨ÇE¸ÿÿÿÿ‰$èw²þÿU‰åVSEøì°‰EÔE´‰$ÇḚ´KÇEаÔKÇEر›F‰eÜ蜮þÿÇ$˜ULèÅÿÿ‹U‰Eœ‹Bl‹Mœ‹X ‹‹‰M¨…À„º‹]‰EœÇE˜‹[ ƒãJƒû@‰]tÇE˜¸ ƒ}DE˜‰E˜] ‰$ÇE¸ÿÿÿÿè=½ÿÿ‰E¨E‰$è/½ÿÿƒ}¨ÿÆ…kÿÿÿÆE¨”ƒøÿ”À8Â…¥‹MœÆE‡ÇEŒÆ…ÿÿÿ¶A¶ƒ}˜ÇEˆt ‹Mœ¶A‹]˜‰]ˆ„ÀÇEð|TL…>€½kÿÿÿÇ…pÿÿÿÿÿÿÿÇ…tÿÿÿÿÿÿtÇ…pÿÿÿÇ…tÿÿÿ€‹E˜‹tÿÿÿ‰ÂÁú‰U”‰T$ ‹•pÿÿÿ‰L$‰D$‰E‰$èXºþÿ‹Mœ‹]œƒÁN€{d‰…lÿÿÿ‰•xÿÿÿ‰M€„&€}‡…4ÇE ÇE¤ÆE˜‹Eœ€xt ¶U¨8P%„‹Uœ¶E¨8B$„~‹Mˆ¾À‹]€‰D$‰L$‰$èûOÿÿ…À„]‰Á)ÙAúƒùMÈ‹E¤9…xÿÿÿ‚§w‹U 9•lÿÿÿ‚–‹]¤¾‹E”¯E ¯]ËE ÷e‰E ‹…pÿÿÿډˉU¤Áû‹•tÿÿÿ)ȉE¨‹E¤Ú‰U¬9Âr‡‹U 9U¨ƒõ‰ð‹U¤E˜‹E ÈÚƒEŒ‰E ‰U¤‹E …Àt‹P;P ƒ{ƒÂ‰PÇEÿÿÿÿU ‰$ÇE¸è»ÿÿM‰E¨‰ $è»ÿÿƒ}¨ÿ”ƒøÿ”À8Â…áÆE¨ÆE‡‹EðPô‹@ô…À…g‹uŒ…öuq€½ÿÿÿuh‹…Ûub‹]$‹E ÇÇCÇ€}‡t‹M ƒ ‹M úpTL‹]‰M¨‰]¬…ãE´‰$è ¬þÿ‹E¨‹U¬Ä°[^]Ã1öéÿÿÿv€}¨u˜€}˜„€½kÿÿÿ…­‹]$ÇÿÿÿÿÇCÿÿÿ‹E Çé|ÿÿÿt&ÆE˜éÑþÿÿ´&] ‰$èºÿÿˆE¨éÓýÿÿ‹]Œ…Û„‹Eð‹PôHôZ;Y‰]¨w‹I…É~‹E¨Uð‰$ÇE¸‰D$èŽ?‹Eð‹Pô¶MŒˆ ‹UðBô=pTL…CÇEŒéNþÿÿt&€}¨/Ì‹EðÆE¨Pô‹@ô…À„™þÿÿ¾EŒÇE¸‰D$Eð‰$è—A‹UœEð‰D$‹B ‰D$‹B‰$èk³„Àu ‹M Ç‹Uðƒê éKþÿÿv€}‡…¶EˆÇE ÇE¤ÆE˜ƒÀ0ˆE€ƒ}ˆ ¾]¨†\ÿÿÿ¶E¨ƒè0< †0¶E¨ƒèa<‡.ƒëWƒûÿ„<ÿÿÿ‹M¤9xÿÿÿ‚ów‹E 9…lÿÿÿ‚â‹u¤‰Ù‹E”Áû¯E ¯uÆ‹E ÷e‰E ‹…pÿÿÿò‰U¤‹•tÿÿÿ¾)ȉE¨‹E¤Ú‰U¬9Âr‡‹U 9U¨ƒ‰ð‹U¤E˜‹E ÈÚƒEŒ‰E ‰U¤‹E …Àt‹P;P ƒ;ƒÂ‰PÇEÿÿÿÿU ‰$ÇE¸è¸ÿÿM‰E¨‰ $èò·ÿÿƒ}¨ÿ”ƒøÿ”À8„ìüÿÿ] ‰$èÒ·ÿÿˆE¨éÐþÿÿ1öéxÿÿÿvÆE˜ëˆ¶U¨8U€Ž'þÿÿƒë0éÚþÿÿt&¶E¨ƒèA<‡ þÿÿƒë7é¾þÿÿEðÇD$ ‰$ÇE¸è?=é£úÿÿ‰$èb·ÿÿ‹UœˆE¨8BJ”…kÿÿÿ„"8BK„‹Uœ¶BÇEŒÆ…ÿÿÿ„Àt‹Mœ¶U¨8Q%„:‹Uœ¶]¨8Z$„*8ZN„¡€½ÿÿÿ„‹]œ¶M¨8KLt 8KM…ÿ‹u…ö„Tƒ}˜…úÇEŒÆ…ÿÿÿ‹E …Àt‹P;P ƒÛƒÂ‰PÇEÿÿÿÿE ‰$ÇE¸ÿÿÿÿ芶ÿÿU‰$‰E è|¶ÿÿƒ} ÿ”ƒøÿ”À8Â…;‹MœÆE‡¶Aégùÿÿ´&€½kÿÿÿt ÷] ƒU¤÷]¤‹M ‹]¤‹E$‰‰Xéûÿÿ‹Mœ¶A„Àt ¶]¨8Y%„Öþÿÿ‹Mœ¶U¨8Q$„Æþÿÿ‹E …Àt‹P;P ƒÓƒÂ‰PÇEÿÿÿÿ] ‰$ÇE¸ÿÿÿÿèеÿÿ‰E E‰$èµÿÿƒ} ÿ”ƒøÿ”À8„žøÿÿ‰$襵ÿÿ‹UœˆE¨¶BéZþÿÿ‹M$ÇÇA€éNûÿÿÇEŒÆ…ÿÿÿÇE˜éªþÿÿ¶€½ÿÿÿt ƒ}˜ …Yþÿÿ‹E…ÀtHƒ}˜„̃EŒÆ…ÿÿÿépþÿÿ] ‰$ÇE¸ÿÿÿÿèµÿÿ€½ÿÿÿˆE¨„ò‹]œ¶CéÐýÿÿÇEŒÆ…ÿÿÿÇE˜é(þÿÿt&ÆE‡éç÷ÿÿ´&ÆE‡éë÷ÿÿÇ$hÇE¸èôÆ@$Æ@%Ç@ÇfMÇ@Ç@ Æ@Ç@Ç@Ç@Ç@ Æ@d‰…dÿÿÿ‹EÇE¸ƒÀl‰D$‹…dÿÿÿ‰$èøÊ‹Mœ‹dÿÿÿ‹U‰L$‰\$‹BlÇE¸ÿÿÿÿ‰$èÒ"‹M¨‹é—öÿÿ‹UœÆE‡¶Bé÷ÿÿÇE ÇE¤ÆE˜ÆE¨éùÿÿÆE¨éûøÿÿ‹‰$‹B(ÇE¸ÿÐéµûÿÿ‹‰$‹B(ÇE¸ÿÿÿÿÿÐéýÿÿ‹‰$‹B(ÇE¸ÿÐéuøÿÿƒ=(vM…‹BHÿ‰J…ÀÿøÿÿE÷‰D$‰$è%$éëøÿÿÇEŒÆ…ÿÿÿé¡üÿÿ‹]¨Ç@‰ZôÆD ÇEŒéù÷ÿÿƒÅ‹E¸‹]¼ƒø‰]¨„–~sƒøtAƒøt% ‹‰$‹B(ÇE¸ÿÿÿÿÿÐéýÿÿƒÈÿðÁBémÿÿÿ‹U¨‰$èþ ÇE¸èÒ‹U¨‰$èç ƒ½dÿÿÿtà‹dÿÿÿ‹‰ $‹@ÇE¸ÿÐëÇ…Àu‰Eð‰$èVA‹E¨ÇE¸ÿÿÿÿ‰$è$§þÿÇE¸è‹E¨ÇE¸ÿÿÿÿ‰$è§þÿU‰åWVSEè쬉EÄE¤‰$ÇE¼°´KÇEÀ$ÔKÇEÈ®¦F‰eÌè+£þÿÇ$˜ULèºÿÿ‹U‰EŒ‹Bl‹MŒ‹X ‹‹‰M˜…À„L‹]‰EŒÇEˆ‹[ ƒãJƒû@‰]€tÇEˆ¸ ƒ}€DEˆ‰Eˆ] ‰$ÇE¨ÿÿÿÿè̱ÿÿ‰E˜E‰$è¾±ÿÿƒ}˜ÿÆ…_ÿÿÿÆE˜”ƒøÿ”À8Â…‹MŒÆ…wÿÿÿÇ…|ÿÿÿÆ…oÿÿÿ¶Aƒ}ˆÇ…xÿÿÿt‹MŒ¶A‹]ˆ‰xÿÿÿ„ÀÇEà|TL…à‹EˆÇ$ÿÿÿÿÇD$ÿÿÿÿ‰ÂÁú‰D$‰T$ ‰E€‰U„è¯þÿ‹MŒ‰•hÿÿÿ‹UŒ‰…dÿÿÿƒÂN€yd‰•pÿÿÿ„ñ€½wÿÿÿ…òÇEÇE”ÆEˆ‹UŒ€zt ¶M˜8J%„‹UŒ¶E˜8B$„F‹xÿÿÿ¾À‹pÿÿÿ‰D$‰L$‰$è­Dÿÿ…À„‰Á)ÙAúƒùMÈ‹E”9…hÿÿÿ‚™w‹U9•dÿÿÿ‚ˆ‹]”‰Î‹E„Áþ¯E‰÷¯]€÷×ËE÷e€ډˉE9׉ȉU”÷йr‡Ð;EƒÇv‹UMˆ‹M”Ú‰Uñƒ…|ÿÿÿ‰M”‹E …Àt‹P;P ƒAƒÂ‰PÇEÿÿÿÿM ‰ $ÇE¨èÔ¯ÿÿ]‰E˜‰$èÆ¯ÿÿƒ}˜ÿ”ƒøÿ”À8Â…áÆE˜Æ…wÿÿÿ‹Eà‹xôPô…ÿ…4t&‹µ|ÿÿÿ…öu6€½oÿÿÿu-‹…Ûu'‹]$‹E ÇÇCÇë51Éé5ÿÿÿt&€}˜uÓ€}ˆ„‹M$‹] ÇÿÿÿÿÇAÿÿÿÿÇ€½wÿÿÿt‹M ƒ ‹M úpTL‹]‰M˜‰]œ…zE¤‰$è… þÿ‹E˜‹UœÄ¬[^_]Ãt&ÆEˆéÑþÿÿ´&E ‰$èÅ®ÿÿˆE˜éÛýÿÿ‹…|ÿÿÿ…À„Ⱦ…|ÿÿÿ]à‰$ÇE¨‰D$èÒ6Ç…|ÿÿÿé}þÿÿv€}˜/Ì‹EàÆE˜‹xôPô…ÿ„Ñþÿÿ¾…|ÿÿÿÇE¨‰D$Eà‰$è„6‹UŒEà‰D$‹B ‰D$‹B‰$èX¨„Àu ‹M Ç‹Uàƒê é€þÿÿ€½wÿÿÿ…¶xÿÿÿÇEÇE”ÆEˆƒÃ0ˆpÿÿÿƒ½xÿÿÿ ¾M˜†Pÿÿÿ¶E˜ƒè0< †'¶E˜ƒèa<‡bƒéWƒùÿ„0ÿÿÿ‹U”9•hÿÿÿ‚çw‹]9dÿÿÿ‚Ö‹]”‰Î‹E„Áþ¯E‰÷¯]€÷×ËE÷e€ډˉE9׉ȉU”÷йr‡Œ;Eƒƒ‹UMˆ‹M”Ú‰Uñƒ…|ÿÿÿ‰M”‹E …Àt‹P;P ƒ5ƒÂ‰PÇEÿÿÿÿM ‰ $ÇE¨èô¬ÿÿ]‰E˜‰$èæ¬ÿÿƒ}˜ÿ”ƒøÿ”À8„ ýÿÿE ‰$èÆ¬ÿÿˆE˜éÝþÿÿ1Ééwÿÿÿ´&ÆEˆë„¶E˜8…pÿÿÿŽ$þÿÿƒé0éãþÿÿf‰$般ÿÿ‹UŒˆE˜8BJ”…_ÿÿÿ„b8BK„Y‹UŒ¶BÇ…|ÿÿÿÆ…oÿÿÿ„Àt‹MŒ¶U˜8Q%„_‹UŒ¶]˜8Z$„O8ZN„Ä€½oÿÿÿ„9‹]Œ¶M˜8KLt 8KM…$‹U€…Ò„zƒ}ˆ…Ç…|ÿÿÿÆ…oÿÿÿ‹E …Àt‹P;P ƒƒÂ‰PÇEÿÿÿÿE ‰$ÇE¨ÿÿÿÿè©«ÿÿU‰$‰E蛫ÿÿƒ}ÿ”ƒøÿ”À8Â…^‹MŒÆ…wÿÿÿ¶AéôùÿÿvEàÇD$ ‰$ÇE¨è&1éúÿÿ¶E˜ƒèA<‡Ëüÿÿƒé7éŠýÿÿ€½_ÿÿÿt ÷]ƒU”÷]”‹M‹]”‹E$‰‰Xéìûÿÿv‹MŒ¶A„Àt ¶]˜8Y%„–þÿÿ‹MŒ¶U˜8Q$„†þÿÿ‹E …Àt‹P;P ƒ}ƒÂ‰PÇEÿÿÿÿ] ‰$ÇE¨ÿÿÿÿ趪ÿÿ‰EE‰$訪ÿÿƒ}ÿ”ƒøÿ”À8„õøÿÿ‰$苪ÿÿ‹UŒˆE˜¶BéþÿÿÇ…|ÿÿÿÆ…oÿÿÿÇEˆé„þÿÿ€½oÿÿÿt ƒ}ˆ …6þÿÿ‹M€…ÉtKƒ}ˆ„Ÿƒ…|ÿÿÿÆ…oÿÿÿéMþÿÿ] ‰$ÇE¨ÿÿÿÿèªÿÿ€½oÿÿÿˆE˜„ñ‹]Œ¶CéªýÿÿÇ…|ÿÿÿÆ…oÿÿÿÇEˆéþÿÿÆ…wÿÿÿéRøÿÿÆ…wÿÿÿé\øÿÿÇ$hÇE¨èñýÆ@$Æ@%Ç@ÇfMÇ@Ç@ Æ@Ç@Ç@Ç@Ç@ Æ@d‰…`ÿÿÿ‹EÇE¨ƒÀl‰D$‹…`ÿÿÿ‰$èõ¿‹MŒ‹`ÿÿÿ‹U‰L$‰\$‹BlÇE¨ÿÿÿÿ‰$èÏ‹M˜‹é÷ÿÿ‹UŒÆ…wÿÿÿ¶Béƒ÷ÿÿÇEÇE”ÆEˆÆE˜éAùÿÿÆE˜é8ùÿÿ‹‰$‹B(ÇE¨ÿÐé»ûÿÿ‹‰$‹B(ÇE¨ÿÿÿÿÿÐéðüÿÿ‹‰$‹B(ÇE¨ÿÐ靸ÿÿÇ…|ÿÿÿÆ…oÿÿÿé«üÿÿƒ=(vMuZ‹BHÿ‰J…ÀlùÿÿEç‰D$‰$è éXùÿÿ‹‰$‹B(ÇE¨ÿÿÿÿÿÐésýÿÿƒÅ‹E¨‹]¬ƒø‰]˜t}~Zƒøt(ƒøt  ƒÈÿðÁB륋U˜‰$èÇE¨èò ‹U˜‰$能`ÿÿÿtà‹`ÿÿÿ‹‰ $‹@ÇE¨ÿÐëÇ…Àu¢Eà‰$èv6‹E˜ÇE¨ÿÿÿÿ‰$èDœþÿÇE¨è(‹E˜ÇE¨ÿÿÿÿ‰$è&œþÿU‰åEøS씉EÔE´‰$ÇḚ´KÇEÐtÔKÇEØè³F‰eÜèM˜þÿÇ$˜ULèA¯ÿÿ‹U‰E˜‹Bl‹M˜‹X ‹‹‰M¨…À„ú ] ‰E¤‰$ÇE¸ÿÿÿÿè§ÿÿ‰E¨E‰$è§ÿÿƒ}¨ÿ”ƒøÿ”À8Â…JÆE¨‹]¤ÇE˜ÆEœÆE ¶C„ÀÇEð|TL… ‹E¤‹U¤ƒÀN€zd‰EŒ„Ѐ} … ‹M¤¶]ŒÆE‹0(]‹¶AÆE ÆE—„Àt‹U¤¶E¨8B%„‹]¤¶M¨8K$„©¾E¨‹]ŒÇD$ ‰D$‰$èg:ÿÿ…À‰E„‹U$‹‹PôHôZ;Y‰]¨w‹I…É~!‹E¨‹U$ÇE¸‰D$‰$èæ+‹M$‹‹Pô¶M‹Mˆ ‹]$‹Bô=pTL…s ƒE˜ÆEœ‹E …Àt‹P;P ƒ— ƒÂ‰PÇEÿÿÿÿE ‰$ÇE¸è·¥ÿÿU‰E¨‰$è©¥ÿÿƒ}¨ÿ”ƒøÿ”À8„„M ‰ $艥ÿÿ‹]¤ˆE¨¶C„À„õþÿÿ‹U¤¶E¨8B%…åþÿÿ€}—…M€} …C‹]˜…ۄËEð‹PôHôZ;Y‰]¨w‹I…É~‹E¨Uð‰$ÇE¸‰D$èä*‹Eð‹Pô¶M˜ˆ ‹UðBô=pTL…ª ÇE˜éÿÿÿ€} …NÆE ÆE—€}¨/S‹E¤¶]¨8X$„¾‹]¤¶M¨8K\t 8Kb…™€} …€}œ„…‹U$‹‹PôHôZ;Y‰]¨w‹Y…Û~!‹E¨‹U$ÇE¸‰D$‰$è/*‹M$‹‹PôÆe‹]$‹Bô=pTL…y‹E …Àt‹P;P ƒPƒÂ‰PÇEÿÿÿÿ] ‰$ÇE¸è¤ÿÿ‰E¨E‰$è¤ÿÿƒ}¨ÿ”ƒøÿ”À8„ª‰$èã£ÿÿ‹M¤ˆE¨ÆE +8AKtÆE 8AJ…ïþÿÿÆE -‹]$‹‹PôHôZ;Y‰]¨w‹I…É~!‹E¨‹U$ÇE¸‰D$‰$è])‹M$‹‹Pô¶] ¹pTLˆ‹E$‹Bô9Á…ÆE ‹E …Àt‹P;P ƒ)ƒÂ‰PÇEÿÿÿÿ] ‰$ÇE¸è3£ÿÿ‰E¨E‰$è%£ÿÿƒ}¨ÿ”ƒøÿ”À8Â…€‹UðBô‹Rô…Òt?€}—u €} „ ‹U¤Eð‰D$‹B ‰D$‹B‰$è„Àu ‹E Ç‹Eðƒè ‹M =pTL‹]‰M¨‰]¬…wE´‰$è2”þÿ‹E¨‹U¬Ä”[]Ãv‰$舢ÿÿˆE¨€}¨/Ž­ýÿÿ€}¨9£ýÿÿ¾E¨‹M$ƒè0‰E¨‹‹HôPôY;Z‰]œw‹R…Ò~!‹Eœ‹U$ÇE¸‰D$‰$è(‹M$‹‹Hô¶U¨ƒÂ0ˆ‹]$‹Bô=pTL…ÆEœéžþÿÿv€}—…8ýÿÿ€} ….ýÿÿ‹U$ÇD$.ÇE¸‰$è*ÆE—édþÿÿ€}—…¯þÿÿ€} …¥þÿÿ‹Eð‹@ô…Àt¾E˜ÇE¸‰D$Eð‰$èÑ)‹U$‹‹PôHôZ;Y‰]¨w‹Y…Û~!‹E¨‹U$ÇE¸‰D$‰$è+'‹M$‹‹PôÆ.‹]$‹Bô=pTL…£ÆE—éJûÿÿv‹E¤¶]¨8X\t 8Xb… þÿÿ€} …þÿÿ€}œ„÷ýÿÿ‹Eð‹Xô…Ût €}—u¾E˜Uð‰$ÇE¸‰D$è)‹M$‹‹PôHôZ;Y‰]¨w‹I…É~!‹E¨‹U$ÇE¸‰D$‰$èw&‹M$‹‹PôÆe‹]$‹Bô=pTL…Ø‹E …Àt‹P;P ƒƒÂ‰PÇEÿÿÿÿ] ‰$ÇE¸èV ÿÿ‰E¨E‰$èH ÿÿƒ}¨ÿ”ƒøÿ”À8„ò‰$è+ ÿÿ‹M¤ˆE¨8AK”Ât8AJt ¶AÆE éuùÿÿ‹]¤¶C„Àt ¶M¨8K%t7‹M¤¶]¨8Y$t+€ú‹]$ÀƒàƒÀ+‰D$‰$ÇE¸è (ÆE éØùÿÿÆE é!ùÿÿ´&] ‰$ÇE¸ÿÿÿÿ螟ÿÿ‹U¤ˆE¨8BK”„ì‹M¤8AJ„à‹U¤¶BÇE˜ÆEœ„Àt‹M¤¶U¨8Q%„‹U¤¶]¨8Z$„8ZN…÷€}œ„‹E ƒE˜…Àt‹P;P ƒËƒÂ‰PÇEÿÿÿÿ] ‰$ÇE¸ÿÿÿÿèŸÿÿ‰E E‰$èóžÿÿƒ} ÿ”ƒøÿ”À8Â…‹U¤ÆE ÇEð|TL¶B„À„ô÷ÿÿEðÇD$ ‰$ÇE¸èz$éÕ÷ÿÿt&‹]¤¶C„Àt ¶M¨8K%„ÿÿÿ‹M¤¶]¨8Y$„ÿþÿÿ€ú‹]$ÀƒàƒÀ+‰D$‰$ÇE¸ÿÿÿÿè—&‹E …Àt‹P;P ƒøƒÂ‰PÇEÿÿÿÿE ‰$ÇE¸ÿÿÿÿè%žÿÿ‰E˜E‰$èžÿÿƒ}˜ÿ”ƒøÿ”À8„ ÷ÿÿU ‰$è÷ÿÿ‹M¤ˆE¨¶Aéoþÿÿ¾E˜ÇE¸‰D$Eð‰$è&éÖúÿÿM ‰ $ÇE¸ÿÿÿÿè·ÿÿ‹]¤ˆE¨¶Cé:þÿÿ‹M$‹‹PôHôZ;Y‰]œw‹I…É~!‹Eœ‹U$ÇE¸ÿÿÿÿ‰D$‰$èB#‹M$‹‹PôÆ0‹]$‹Bô=pTL…@ÆEœéþÿÿÆE éaöÿÿÆE é(úÿÿÇ$hÇE¸èeñÆ@$Æ@%Ç@ÇfMÇ@Ç@ Æ@Ç@Ç@Ç@Ç@ Æ@d‰E„‹EÇE¸ƒÀl‰D$‹E„‰$èo³‹M˜‹]„‹U‰L$‰\$‹BlÇE¸ÿÿÿÿ‰$èL ‹M¨‹é`õÿÿÆE ÆE—éuùÿÿ‹U$ÇD$ ‹‹@ôÇD$‰$ÇE¸‰D$èú"éEùÿÿ‹‰$‹B(ÇE¸ÿÿÿÿÿÐé%ýÿÿ‹‰$‹B(ÇE¸ÿÐéYöÿÿ‹‰$‹B(ÇE¸ÿÐéÇøÿÿ‹MœÇ@‰JôÆD ÆEœéÁüÿÿ‹MœÇ@‰JôÆD ÆEœéxøÿÿ‹‰$‹B(ÇE¸ÿÐé ÷ÿÿ‹M¨Ç@‰JôÆD ép÷ÿÿ‹M¨Ç@‰JôÆD éûÿÿ‹M¨Ç@‰JôÆD ÆE—é•õÿÿ‹M¨Ç@‰JôÆD évõÿÿ‹M¨Ç@‰JôÆD ÆE éç÷ÿÿ‹‰$‹B(ÇE¸ÿÿÿÿÿÐéøüÿÿƒ=(vMuD‹PJÿ‰H…ÒoøÿÿU÷‰T$‰$è½ é[øÿÿƒÅ‹E¸‹]¼ƒø‰]¨tw~Tƒøt(ƒøt  ƒÊÿðÁP뻋U¨‰$èäóÇE¸è¸þ‹U¨‰$èÍóƒ}„tã‹M„‹‰ $‹@ÇE¸ÿÐëÍ…Àu¨Eð‰$èB)‹E¨ÇE¸ÿÿÿÿ‰$èþÿÇE¸èôõ‹E¨ÇE¸ÿÿÿÿ‰$èòŽþÿ‹‰$‹B(ÇE¸ÿÐéÝùÿÿ‹]¨Ç@‰ZôÆD ÇE˜éEôÿÿU‰åSƒì$‹E‹M$‹]‹‰L$‹M ‰\$‹]‰$‰L$‹M‰\$‰L$‹M‰L$ ‹M ‰L$ÿR0ƒÄ$[]ÃU‰åSƒì$‹E‹M$‹]‹‰L$‹M ‰\$‹]‰$‰L$‹M‰\$‰L$‹M‰L$ ‹M ‰L$ÿRƒÄ$[]ÃU‰åSƒì$‹E‹M$‹]‹‰L$‹M ‰\$‹]‰$‰L$‹M‰\$‰L$‹M‰L$ ‹M ‰L$ÿR(ƒÄ$[]ÃU‰åSƒì$‹E‹M$‹]‹‰L$‹M ‰\$‹]‰$‰L$‹M‰\$‰L$‹M‰L$ ‹M ‰L$ÿR,ƒÄ$[]ÃU‰åSƒì$‹E‹M$‹]‹‰L$‹M ‰\$‹]‰$‰L$‹M‰\$‰L$‹M‰L$ ‹M ‰L$ÿR$ƒÄ$[]ÃU‰åSƒì$‹E‹M$‹]‹‰L$‹M ‰\$‹]‰$‰L$‹M‰\$‰L$‹M‰L$ ‹M ‰L$ÿRƒÄ$[]ÃU‰åSƒì$‹E‹M$‹]‹‰L$‹M ‰\$‹]‰$‰L$‹M‰\$‰L$‹M‰L$ ‹M ‰L$ÿR ƒÄ$[]ÃU‰åSƒì$‹E‹M$‹]‹‰L$‹M ‰\$‹]‰$‰L$‹M‰\$‰L$‹M‰L$ ‹M ‰L$ÿRƒÄ$[]ÃU‰åSƒì$‹E‹M$‹]‹‰L$‹M ‰\$‹]‰$‰L$‹M‰\$‰L$‹M‰L$ ‹M ‰L$ÿRƒÄ$[]ÃU‰åSƒì$‹E‹M$‹]‹‰L$‹M ‰\$‹]‰$‰L$‹M‰\$‰L$‹M‰L$ ‹M ‰L$ÿRƒÄ$[]ÃU‰åSƒì$‹E‹M$‹]‹‰L$‹M ‰\$‹]‰$‰L$‹M‰\$‰L$‹M‰L$ ‹M ‰L$ÿR ƒÄ$[]ÃU‰åƒìX‰]ô‹]‰uø‹E ‰}ü‹u‹}‹K ‹U‰MԃᵃɉK Mä‰L$‹M ‰D$‹E‰\$‰t$ ‰L$‰|$‰T$‰$è–Åÿÿ‹}Ô‹M$‰{ ‹]䉋]ô‹uø‹}ü‰ì]ÃU‰åì˜Eø‰EÔE´ÇḚ´KÇEÐØÔKÇEØ‘¼F‰e܉$èî†þÿ‹UöB …ÁEô‹M ‰D$‹E‰T$‹UÇEôÿÿÿÿ‰L$‰D$ ‹E ‰T$‹UÇE¸ÿÿÿÿ‰D$‹E‰T$‰$è»ÿÿ‰E ‹Eô‰Uƒø†X‹M$‹E ÆÇE ‰$ÇE¸ÿÿÿÿèw•ÿÿ‰E¨E‰$èi•ÿÿƒ}¨ÿ”ƒøÿ”À8Âu‹U ƒ f‹E ‹U‰E¨E´‰U¬‰$èɆþÿ‹E¨‹U¬ÉÃÇ$˜ULèÿÿ‹M‰E ‹Al‹U ‹H ‘‹‰U¤…À„Ï‹P ‹H‰E”ÇE¨…Ò”E¤…É”EœÆE›ÆE €}¤…÷U ‰$ÇE¸ÿÿÿÿèÄ”ÿÿM‰ $‰Eè¶”ÿÿƒ}ÿ”ƒøÿ”À8„M ‰ $ÇE¸ÿÿÿÿè”ÿÿ€}¤u‹M”‹Q‹M¨8 ”E €} …߀}œ…å‹M”‹Q‹M¨8 ”E›€}›u€}¤ut€} „¿‹E ƒE¨…Àt‹P;P ƒ³ƒÂ‰PÇEÿÿÿÿ€} ÆE¤t ‹E”‹U¨;P “E¤€}›ÆEœ„ÿÿÿ‹M”‹E¨;A“Eœ€}¤„ ÿÿÿ€}œ„ÿþÿÿ‹U¨1À€} tL…ÒtH‹M”9Q u@‹M$€}›Æt ‹M”9Q„#‹U ÁàÁøƒà‰éCþÿÿv€}œ…1ÿÿÿéÿÿÿ1À€}›t‹U¨…Òt‹M”‹U¨9Qu‹M$Æë¸<‹M$‹U ÀƒàþƒÀƉéôýÿÿt&‹U$ˆéæýÿÿÇ$hÇE¸ècçÆ@$Æ@%Ç@ÇfMÇ@Ç@ Æ@Ç@Ç@Ç@Ç@ Æ@d‰Eœ‹EÇE¸ƒÀl‰D$‹Eœ‰$èm©‹M ‹Eœ‹U‰L$‰D$‹BlÇE¸ÿÿÿÿ‰$èJ‹M¤‹é‹ýÿÿ‹U¨¸é³þÿÿ‹E Çé%ýÿÿ‹‰$‹B(ÇE¸ÿÿÿÿÿÐé=þÿÿƒÅ‹E¼‰E¨‹E¸ƒøt ƒøtU…Àt3 ‹U¨‰$èHëƒ}œt‹Uœ‹‰$‹@ÇE¸ÿÐÇE¸èöÇE¸è†í‹U¨ÇE¸ÿÿÿÿ‰$脆þÿ‹M¨‰ $èùêëÉU‰åìˆEø‰EÔE´‰$ÇḚ´KÇEÐŽÔKÇEØZ¾F‰eÜèž‚þÿEðÇEð|TLÇD$ ‰$ÇE¸è]Eð‹U ‰D$‹E‰T$‹U‰D$‹E‰T$‹U‰D$ ‹E ‰T$‰D$‹E‰$èÁéÿÿ‰E ‰Uèö‰EìEì‰D$ ‹E ‰D$‹E$‰D$‹Eð‰$è£xE ‰$è‘ÿÿ‰E¤E‰$è ‘ÿÿƒ}¤ÿ”ƒøÿ”À8Âu‹U ƒ ‹E ‹U‰E¨‹Eð‰U¬ƒè =pTLuE´‰$è_‚þÿ‹E¨‹U¬ÉÃ=(vMu‹PJÿ‰H…Ò×U÷‰T$‰$èRëÆƒÊÿðÁPëáƒÅ‹U¼Eð‰$‰U¨è2‹E¨ÇE¸ÿÿÿÿ‰$è…þÿU‰åìˆEø‰EÔE´‰$ÇḚ´KÇEЈÔKÇEØÊ¿F‰eÜè.þÿEðÇEð|TLÇD$ ‰$ÇE¸èíEð‹U ‰D$‹E‰T$‹U‰D$‹E‰T$‹U‰D$ ‹E ‰T$‰D$‹E‰$èQèÿÿ‰E ‰U膉EìEì‰D$ ‹E ‰D$‹E$‰D$‹Eð‰$è³xE ‰$è¨ÿÿ‰E¤E‰$èšÿÿƒ}¤ÿ”ƒøÿ”À8Âu‹U ƒ ‹E ‹U‰E¨‹Eð‰U¬ƒè =pTLuE´‰$èï€þÿ‹E¨‹U¬ÉÃ=(vMu‹PJÿ‰H…Ò×U÷‰T$‰$èâÿëÆƒÊÿðÁPëáƒÅ‹U¼Eð‰$‰U¨è‹E¨ÇE¸ÿÿÿÿ‰$èƒþÿU‰åìˆEø‰EÔE´‰$ÇḚ´KÇEДÔKÇEØ:ÁF‰eÜè¾þÿEðÇEð|TLÇD$ ‰$ÇE¸è}Eð‹U ‰D$‹E‰T$‹U‰D$‹E‰T$‹U‰D$ ‹E ‰T$‰D$‹E‰$èáæÿÿ‰E ‰Uè‰EìEì‰D$ ‹E ‰D$‹E$‰D$‹Eð‰$èÓxE ‰$è8Žÿÿ‰E¤E‰$è*Žÿÿƒ}¤ÿ”ƒøÿ”À8Âu‹U ƒ ‹E ‹U‰E¨‹Eð‰U¬ƒè =pTLuE´‰$èþÿ‹E¨‹U¬ÉÃ=(vMu‹PJÿ‰H…Ò×U÷‰T$‰$èrþëÆƒÊÿðÁPëáƒÅ‹U¼Eð‰$‰U¨èR‹E¨ÇE¸ÿÿÿÿ‰$è ‚þÿU‰åƒì(‹E$‹U‰D$‹E ‰T$‹U‰D$‹E‰T$‰D$‹E‰D$ ‹E ‰D$‹E‰$è~©ÿÿÉÃU‰åƒì(‹E$‹U‰D$‹E ‰T$‹U‰D$‹E‰T$‰D$‹E‰D$ ‹E ‰D$‹E‰$èn²ÿÿÉÃU‰åƒì(‹E$‹U‰D$‹E ‰T$‹U‰D$‹E‰T$‰D$‹E‰D$ ‹E ‰D$‹E‰$èî»ÿÿÉÃU‰åƒì(‹E$‹U‰D$‹E ‰T$‹U‰D$‹E‰T$‰D$‹E‰D$ ‹E ‰D$‹E‰$èÞÄÿÿÉÃU‰åƒì(‹E$‹U‰D$‹E ‰T$‹U‰D$‹E‰T$‰D$‹E‰D$ ‹E ‰D$‹E‰$è.ÎÿÿÉÃU‰åƒì(‹E$‹U‰D$‹E ‰T$‹U‰D$‹E‰T$‰D$‹E‰D$ ‹E ‰D$‹E‰$èNÙÿÿÉÃU‰åEøS씉EÔE´‰$ÇḚ´KÇEÐTÐKÇEØ3ÌF‰eÜèm|þÿÇ$œULèa“ÿÿ‹U‰E ‹Bl‹M ‹X ‹‹‰M¨…À„,‹]‰E ÇE‹[ ƒãJƒû@‰]œtÇE¸ ƒ}œDE‰E] ‰$ÇE¸ÿÿÿÿè^‹ÿÿf‰E¨E‰$èO‹ÿÿfƒ}¨ÿÆ…{ÿÿÿfÇE¨”Âfƒøÿ”À8Â…K‹M ÆEÇE˜ÆE‡¶At&ƒ}ÇE”t ‹M ¶A‹]‰]”„ÀÇEð|TL…ç1Ò¸ÿÿÿÿ÷u‹U ‰E€‹E ƒÀx€º¤‰Eˆ„‘€}…ÇE¤ÆEœ‹U €zt·M¨f9J&„‰‹E ·U¨f9P$„ï‹M”·Â‹]ˆ‰D$‰L$‰$èË™þÿ…À„Î)ØÑøPúƒøM‹U¤9U€‚¯U‰Á÷Ñ9Ñ’Á¶ÉƒE˜Mœ‰U¤‹E …Àt‹P;P ƒ³ƒÂ‰PfÇEÿÿM ‰ $ÇE¸èü‰ÿÿ]f‰E¨‰$èí‰ÿÿfƒ}¨ÿ”Âfƒøÿ”À8Â…¶ÆE¨ÆE‹Eð‹HôPô…É…=‹E˜…Àu&€}‡u ‹…Ûu‹]$‹E ÇÇë(¶€}¨uà€}œ„¸‹M$‹] ÇÿÿÿÿÇ€}t‹] ƒ ‹M úpTL‹]‰M¨‰]¬…`E´‰$èzþÿ‹E¨‹U¬Ä”[]ÃÆEœéúþÿÿ´&E ‰$è‰ÿÿf‰E¨é`þÿÿ‹E˜…À„e‹Eð‹PôHôZ;Y‰]¨w‹Y…Û~‹E¨Uð‰$ÇE¸‰D$èM‹Eð‹Pô¶M˜ˆ ‹UðBô=pTL…^ÇE˜évþÿÿvfƒ}¨/‡[‹EðÆE¨‹HôPô…É„Ãþÿÿ¾E˜ÇE¸‰D$Eð‰$èV‹U Eð‰D$‹B ‰D$‹B‰$è*‚„Àu ‹M Ç‹Uðƒê éuþÿÿf€}…v·M”ÇE¤ÆEœƒÁ0f‰Mˆƒ}” ·E¨†bÿÿÿ·U¨ƒê0fƒú †Å·U¨ƒêafƒú‡ÀƒèWƒøÿ„?ÿÿÿ‹U¤9U€‚ˆ¯U‰Á÷Ñ9Ñ’ÁжɃE˜Mœ‰E¤‹E …Àt‹P;P ƒƒÂ‰PfÇEÿÿM ‰ $ÇE¸è{‡ÿÿ]f‰E¨‰$èl‡ÿÿfƒ}¨ÿ”Âfƒøÿ”À8„ýÿÿE ‰$èJ‡ÿÿf‰E¨é1ÿÿÿÆEœëŽ·]¨f9]ˆ†—þÿÿƒè0éGÿÿÿt&·U¨ƒêAfƒú‡zþÿÿƒè7é*ÿÿÿ´&EðÇD$ ‰$ÇE¸èf éúûÿÿ‰$èØ†ÿÿ‹U f9Bpf‰E¨”…{ÿÿÿ„f9Br„‹U ¶BÇE˜ÆE‡t&„Àt‹U ·M¨f9J&„‹] ·U¨f9S$„òf9Sx„w€}‡„Þ‹M ·]¨f9Ytt f9Yv…Ç‹Uœ…Ò„4ƒ}…»ÇE˜ÆE‡‹E …Àt‹P;P ƒŸƒÂ‰PfÇEÿÿE ‰$ÇE¸ÿÿÿÿèþ…ÿÿU‰$f‰E¤èï…ÿÿfƒ}¤ÿ”Âfƒøÿ”À8Â… ‹M ÆE¶Aé¸úÿÿ‹E¤‹M$÷Ø€½{ÿÿÿDE¤‰é@üÿÿ‹M ¶A„Àt·]¨f9Y&„æþÿÿ‹U ·M¨f9J$„Õþÿÿ‹E …Àt‹P;P ƒNƒÂ‰PfÇEÿÿ] ‰$ÇE¸ÿÿÿÿèS…ÿÿf‰E¤E‰$èD…ÿÿfƒ}¤ÿ”Âfƒøÿ”À8„úÿÿ‰$è%…ÿÿ‹U f‰E¨¶Béfþÿÿt&ÇE˜ÆE‡ÇEéÊþÿÿ€}‡t ƒ} …ƒþÿÿ‹Mœ…ÉtCƒ}„¥ƒE˜ÆE‡éœþÿÿ] ‰$ÇE¸ÿÿÿÿ蹄ÿÿ€}‡f‰E¨„ë‹] ¶CéÿýÿÿÇE˜ÆE‡ÇEéYþÿÿÆEéoùÿÿÆEézùÿÿÇ$¨ÇE¸èSØÇ@Ç fMÇ@Ç@ Æ@Ç@Ç@Ç@Ç@ fÇ@$fÇ@&Æ€¤‰…|ÿÿÿ‹EÇE¸ƒÀl‰D$‹…|ÿÿÿ‰$èP¢‹M ‹|ÿÿÿ‹U‰L$‰\$‹BlÇE¸ÿÿÿÿ‰$è*ò‹M¨‹éøÿÿ‹U ÆE¶Bé øÿÿÇE¤ÆEœÆE¨éÎùÿÿÆE¨éÅùÿÿ‹‰$‹B(ÇE¸ÿÐéêûÿÿ‹‰$‹B(ÇE¸ÿÿÿÿÿÐéQýÿÿ‹‰$‹B(ÇE¸ÿÐé=ùÿÿ‹]¨Ç@‰ZôÆD ÇE˜éùÿÿÇE˜ÆE‡éôüÿÿ‹‰$‹B(ÇE¸ÿÿÿÿÿÐé¢ýÿÿƒÅ‹E¸‹]¼ƒø‰]¨t|~Yƒø„žƒøt4 ƒ=(vM…¨‹BHÿ‰J…À‚ùÿÿE÷‰D$‰$èóénùÿÿ‹U¨‰$èmÛÇE¸èAæ…Àu£Eð‰$èò‹E¨ÇE¸ÿÿÿÿ‰$èÀvþÿ‹U¨‰$è5Ûƒ½|ÿÿÿt¿‹|ÿÿÿ‹‰ $‹@ÇE¸ÿÐë¦ÇE¸èwÝ‹E¨ÇE¸ÿÿÿÿ‰$èuvþÿƒÈÿðÁBéTÿÿÿU‰åEøS줉EÔE´‰$ÇḚ´KÇEÐ,ÐKÇEØ3ÖF‰eÜèrþÿÇ$œULè‰ÿÿ‹U‰E¤‹Bl‹M¤‹X ‹‹‰M¨…À„L‹]‰E¤ÇE‹[ ƒãJƒû@‰]œtÇE¸ ƒ}œDE‰E] ‰$ÇE¸ÿÿÿÿè~ÿÿf‰E¨E‰$èoÿÿfƒ}¨ÿÆ…{ÿÿÿfÇE¨”Âfƒøÿ”À8Â…k‹M¤ÆEÇE˜ÆE‡¶At&ƒ}ÇE”t ‹M¤¶A‹]‰]”„ÀÇEð|TL…€½{ÿÿÿ‹M¤À1Ò-€‰…|ÿÿÿ÷u‹U¤ƒÂx€¹¤‰Uˆ‰E€„¢€}…ÇE ÆEœ‹M¤€yt·]¨f9Y&„š‹E¤·U¨f9P$„‹M”·Â‹]ˆ‰D$‰L$‰$èÜþÿ…À„ß)ØÑøPúƒøM‹U 9U€‚+‹|ÿÿÿ¯U)Á9Ñ’Á¶ÉƒE˜Mœ‰U ‹E …Àt‹P;P ƒÀƒÂ‰PfÇEÿÿM ‰ $ÇE¸è €ÿÿ]f‰E¨‰$èúÿÿfƒ}¨ÿ”Âfƒøÿ”À8Â…ÃÆE¨ÆE‹Eð‹HôPô…É…J‹E˜…Àu#€}‡u‹…Ûu‹]$‹E ÇÇë/v€}¨uã€}œ„È€½{ÿÿÿ‹M$‹] À-€‰Ç€}t‹] ƒ ‹M úpTL‹]‰M¨‰]¬…fE´‰$è…pþÿ‹E¨‹U¬Ä¤[]öÆEœéíþÿÿ´&E ‰$èÿÿf‰E¨éOþÿÿ‹E˜…À„e‹Eð‹PôHôZ;Y‰]¨w‹Y…Û~‹E¨Uð‰$ÇE¸‰D$èM‹Eð‹Pô¶M˜ˆ ‹UðBô=pTL…^ÇE˜éiþÿÿvfƒ}¨/‡]‹EðÆE¨‹HôPô…É„¶þÿÿ¾E˜ÇE¸‰D$Eð‰$èV‹U¤Eð‰D$‹B ‰D$‹B‰$è*x„Àu ‹M Ç‹Uðƒê éhþÿÿf€}…v·]”ÇE ÆEœƒÃ0f‰]ˆƒ}” ·E¨†bÿÿÿ·U¨ƒê0fƒú †Ç·U¨ƒêafƒú‡ÀƒèWƒøÿ„?ÿÿÿ‹M 9M€‚Š‹U¯Ñ‹|ÿÿÿ)Á9Ñ’ÁжɃE˜Mœ‰E ‹E …Àt‹P;P ƒƒÂ‰PfÇEÿÿ] ‰$ÇE¸èu}ÿÿf‰E¨E‰$èf}ÿÿfƒ}¨ÿ”Âfƒøÿ”À8„lýÿÿ‰$èG}ÿÿf‰E¨é.ÿÿÿÆEœë’·U¨f9Uˆ†•þÿÿƒè0éEÿÿÿf·U¨ƒêAfƒú‡zþÿÿƒè7é*ÿÿÿ´&EðÇD$ ‰$ÇE¸èféÚûÿÿ‰$èØ|ÿÿ‹U¤f9Bpf‰E¨”…{ÿÿÿ„f9Br„‹U¤¶BÇE˜ÆE‡t&„Àt‹U¤·M¨f9J&„‹]¤·U¨f9S$„òf9Sx„w€}‡„Þ‹M¤·]¨f9Ytt f9Yv…Ç‹Uœ…Ò„4ƒ}…»ÇE˜ÆE‡‹E …Àt‹P;P ƒŸƒÂ‰PfÇEÿÿE ‰$ÇE¸ÿÿÿÿèþ{ÿÿU‰$f‰E èï{ÿÿfƒ} ÿ”Âfƒøÿ”À8Â… ‹M¤ÆE¶Aé˜úÿÿ‹E ‹M$÷Ø€½{ÿÿÿDE ‰é:üÿÿ‹M¤¶A„Àt·]¨f9Y&„æþÿÿ‹U¤·M¨f9J$„Õþÿÿ‹E …Àt‹P;P ƒNƒÂ‰PfÇEÿÿ] ‰$ÇE¸ÿÿÿÿèS{ÿÿf‰E E‰$èD{ÿÿfƒ} ÿ”Âfƒøÿ”À8„âùÿÿ‰$è%{ÿÿ‹U¤f‰E¨¶Béfþÿÿt&ÇE˜ÆE‡ÇEéÊþÿÿ€}‡t ƒ} …ƒþÿÿ‹Mœ…ÉtCƒ}„¥ƒE˜ÆE‡éœþÿÿ] ‰$ÇE¸ÿÿÿÿè¹zÿÿ€}‡f‰E¨„ë‹]¤¶CéÿýÿÿÇE˜ÆE‡ÇEéYþÿÿÆEéOùÿÿÆEéZùÿÿÇ$¨ÇE¸èSÎÇ@Ç fMÇ@Ç@ Æ@Ç@Ç@Ç@Ç@ fÇ@$fÇ@&Æ€¤‰…tÿÿÿ‹EÇE¸ƒÀl‰D$‹…tÿÿÿ‰$èP˜‹M¤‹tÿÿÿ‹U‰L$‰\$‹BlÇE¸ÿÿÿÿ‰$è*è‹M¨‹éþ÷ÿÿ‹U¤ÆE¶B逸ÿÿÇE ÆEœÆE¨éÁùÿÿÆE¨é¸ùÿÿ‹‰$‹B(ÇE¸ÿÐéðûÿÿ‹‰$‹B(ÇE¸ÿÿÿÿÿÐéQýÿÿ‹‰$‹B(ÇE¸ÿÐé0ùÿÿ‹]¨Ç@‰ZôÆD ÇE˜éùøÿÿÇE˜ÆE‡éôüÿÿ‹‰$‹B(ÇE¸ÿÿÿÿÿÐé¢ýÿÿƒÅ‹E¸‹]¼ƒø‰]¨t|~Yƒø„žƒøt4 ƒ=(vM…¨‹BHÿ‰J…À|ùÿÿE÷‰D$‰$èééhùÿÿ‹U¨‰$èmÑÇE¸èAÜ…Àu£Eð‰$èò‹E¨ÇE¸ÿÿÿÿ‰$èÀlþÿ‹U¨‰$è5у½tÿÿÿt¿‹tÿÿÿ‹‰ $‹@ÇE¸ÿÐë¦ÇE¸èwÓ‹E¨ÇE¸ÿÿÿÿ‰$èulþÿƒÈÿðÁBéTÿÿÿU‰åEøS씉EÔE´‰$ÇḚ´KÇEдÏKÇEØàF‰eÜèhþÿÇ$œULèÿÿ‹U‰E ‹Bl‹M ‹X ‹‹‰M¨…À„,‹]‰E ÇE‹[ ƒãJƒû@‰]œtÇE¸ ƒ}œDE‰E] ‰$ÇE¸ÿÿÿÿè~wÿÿf‰E¨E‰$èowÿÿfƒ}¨ÿÆ…{ÿÿÿfÇE¨”Âfƒøÿ”À8Â…K‹M ÆEÇE˜ÆE‡¶At&ƒ}ÇE”t ‹M ¶A‹]‰]”„ÀÇEð|TL…ç1Ò¸ÿÿÿÿ÷u‹U ‰E€‹E ƒÀx€º¤‰Eˆ„‘€}…ÇE¤ÆEœ‹U €zt·M¨f9J&„‰‹E ·U¨f9P$„ï‹M”·Â‹]ˆ‰D$‰L$‰$èë…þÿ…À„Î)ØÑøPúƒøM‹U¤9U€‚¯U‰Á÷Ñ9Ñ’Á¶ÉƒE˜Mœ‰U¤‹E …Àt‹P;P ƒ³ƒÂ‰PfÇEÿÿM ‰ $ÇE¸èvÿÿ]f‰E¨‰$è vÿÿfƒ}¨ÿ”Âfƒøÿ”À8Â…¶ÆE¨ÆE‹Eð‹XôPô…Û…=‹M˜…Éu&€}‡u ‹…Àu‹]$‹E ÇÇë(¶€}¨uà€}œ„¸‹M$‹] ÇÿÿÿÿÇ€}t‹] ƒ ‹M úpTL‹]‰M¨‰]¬…`E´‰$èŸfþÿ‹E¨‹U¬Ä”[]ÃÆEœéúþÿÿ´&E ‰$è5uÿÿf‰E¨é`þÿÿ‹]˜…Û„e‹Eð‹PôHôZ;Y‰]¨w‹I…É~‹E¨Uð‰$ÇE¸‰D$èmú‹Eð‹Pô¶M˜ˆ ‹UðBô=pTL…^ÇE˜évþÿÿvfƒ}¨/‡[‹EðÆE¨‹XôPô…Û„Ãþÿÿ¾E˜ÇE¸‰D$Eð‰$èvü‹U Eð‰D$‹B ‰D$‹B‰$èJn„Àu ‹M Ç‹Uðƒê éuþÿÿf€}…v·M”ÇE¤ÆEœƒÁ0f‰Mˆƒ}” ·E¨†bÿÿÿ·U¨ƒê0fƒú †Å·U¨ƒêafƒú‡ÀƒèWƒøÿ„?ÿÿÿ‹U¤9U€‚ˆ¯U‰Á÷Ñ9Ñ’ÁжɃE˜Mœ‰E¤‹E …Àt‹P;P ƒƒÂ‰PfÇEÿÿM ‰ $ÇE¸è›sÿÿ]f‰E¨‰$èŒsÿÿfƒ}¨ÿ”Âfƒøÿ”À8„ýÿÿE ‰$èjsÿÿf‰E¨é1ÿÿÿÆEœëŽ·]¨f9]ˆ†—þÿÿƒè0éGÿÿÿt&·U¨ƒêAfƒú‡zþÿÿƒè7é*ÿÿÿ´&EðÇD$ ‰$ÇE¸è†øéúûÿÿ‰$èørÿÿ‹U f9Bpf‰E¨”…{ÿÿÿ„f9Br„‹U ¶BÇE˜ÆE‡t&„Àt‹U ·M¨f9J&„‹] ·U¨f9S$„òf9Sx„w€}‡„Þ‹M ·]¨f9Ytt f9Yv…Ç‹Uœ…Ò„4ƒ}…»ÇE˜ÆE‡‹E …Àt‹P;P ƒŸƒÂ‰PfÇEÿÿE ‰$ÇE¸ÿÿÿÿèrÿÿU‰$f‰E¤èrÿÿfƒ}¤ÿ”Âfƒøÿ”À8Â… ‹M ÆE¶Aé¸úÿÿ‹E¤‹M$÷Ø€½{ÿÿÿDE¤‰é@üÿÿ‹M ¶A„Àt·]¨f9Y&„æþÿÿ‹U ·M¨f9J$„Õþÿÿ‹E …Àt‹P;P ƒNƒÂ‰PfÇEÿÿ] ‰$ÇE¸ÿÿÿÿèsqÿÿf‰E¤E‰$èdqÿÿfƒ}¤ÿ”Âfƒøÿ”À8„úÿÿ‰$èEqÿÿ‹U f‰E¨¶Béfþÿÿt&ÇE˜ÆE‡ÇEéÊþÿÿ€}‡t ƒ} …ƒþÿÿ‹Mœ…ÉtCƒ}„¥ƒE˜ÆE‡éœþÿÿ] ‰$ÇE¸ÿÿÿÿèÙpÿÿ€}‡f‰E¨„ë‹] ¶CéÿýÿÿÇE˜ÆE‡ÇEéYþÿÿÆEéoùÿÿÆEézùÿÿÇ$¨ÇE¸èsÄÇ@Ç fMÇ@Ç@ Æ@Ç@Ç@Ç@Ç@ fÇ@$fÇ@&Æ€¤‰…|ÿÿÿ‹EÇE¸ƒÀl‰D$‹…|ÿÿÿ‰$èpŽ‹M ‹|ÿÿÿ‹U‰L$‰\$‹BlÇE¸ÿÿÿÿ‰$èJÞ‹M¨‹éøÿÿ‹U ÆE¶Bé øÿÿÇE¤ÆEœÆE¨éÎùÿÿÆE¨éÅùÿÿ‹‰$‹B(ÇE¸ÿÐéêûÿÿ‹‰$‹B(ÇE¸ÿÿÿÿÿÐéQýÿÿ‹‰$‹B(ÇE¸ÿÐé=ùÿÿ‹]¨Ç@‰ZôÆD ÇE˜éùÿÿÇE˜ÆE‡éôüÿÿ‹‰$‹B(ÇE¸ÿÿÿÿÿÐé¢ýÿÿƒÅ‹E¸‹]¼ƒø‰]¨t|~Yƒø„žƒøt4 ƒ=(vM…¨‹BHÿ‰J…À‚ùÿÿE÷‰D$‰$è=ßénùÿÿ‹U¨‰$èÇÇE¸èaÒ…Àu£Eð‰$èý‹E¨ÇE¸ÿÿÿÿ‰$èàbþÿ‹U¨‰$èUǃ½|ÿÿÿt¿‹|ÿÿÿ‹‰ $‹@ÇE¸ÿÐë¦ÇE¸è—É‹E¨ÇE¸ÿÿÿÿ‰$è•bþÿƒÈÿðÁBéTÿÿÿU‰åEøS줉EÔE´‰$ÇḚ´KÇEÐ|ÐKÇEØTêF‰eÜè­^þÿÇ$œULè¡uÿÿ‹U‰E”‹Bl‹M”‹X ‹‹‰M¨…À„‹‹]‰E”ÇE„‹[ ƒãJƒû@‰]tÇE„¸ ƒ}DE„‰E„] ‰$ÇE¸ÿÿÿÿèžmÿÿf‰E¨E‰$èmÿÿfƒ}¨ÿÆ…wÿÿÿfÇE¨”Âfƒøÿ”À8Â…{‹M”ÆEƒÇEŒÆ…{ÿÿÿ¶Afƒ}„ÇEˆt ‹M”¶A‹]„‰]ˆ„ÀÇEð|TL…¸ÿÿ‰ÂÁú÷}„‹U”f‰…xÿÿÿ‹E”ƒÀx€º¤‰…|ÿÿÿ„§€}ƒ…\fÇE˜ÆE‹U”€zt·M¨f9J&„ ‹E”·U¨f9P$„‹Mˆ·Â‹|ÿÿÿ‰D$‰L$‰$èÿ{þÿ…À„â)ØÑøPúƒøM·U˜f9•xÿÿÿ‚)f¯U„»ÿÿ)÷Ê9ÙŸÁ¶ɃEŒMf‰U˜‹E …Àt‹P;P ƒùƒÂ‰PfÇEÿÿM ‰ $ÇE¸è$lÿÿ]f‰E¨‰$èlÿÿfƒ}¨ÿ”Âfƒøÿ”À8Â…¾ÆE¨ÆEƒ‹Eð‹XôPô…Û…Et&‹MŒ…Éu)€½{ÿÿÿu ‹…Àu‹]$‹E fÇÇë(´&€}¨uà€}„ЋM$‹] fÇÿÿÇ€}ƒt‹E ƒ‹M úpTL‹]‰M¨‰]¬…¢E´‰$è \þÿ‹E¨‹U¬Ä¤[]ÃÆEéòþÿÿ´&E ‰$è5kÿÿf‰E¨éIþÿÿ‹]Œ…Û„£‹Eð‹PôHôZ;Y‰]¨w‹I…É~‹E¨Uð‰$ÇE¸‰D$èmð‹Eð‹Pô¶MŒˆ ‹UðBô=pTL…œÇEŒénþÿÿvfƒ}¨/‡k‹EðÆE¨‹XôPô…Û„Àþÿÿ¾EŒÇE¸‰D$Eð‰$èvò‹U”Eð‰D$‹B ‰D$‹B‰$èJd„Àu ‹M Ç‹Uðƒê érþÿÿf€}ƒ…µ·MˆfÇE˜ÆEƒÁ0f‰|ÿÿÿƒ}ˆ ·E¨†`ÿÿÿ·U¨ƒê0fƒú †Ö·U¨ƒêafƒú‡ÎƒèWƒøÿ„=ÿÿÿ·U˜f9•xÿÿÿ‚‘f¯U„¹ÿÿ)Á·Ú9ËŸÁ¶ÉƒEŒMf‰E˜‹E …Àt‹P;P ƒ4ƒÂ‰PfÇEÿÿM ‰ $ÇE¸è‹iÿÿ]f‰E¨‰$è|iÿÿfƒ}¨ÿ”Âfƒøÿ”À8„gýÿÿE ‰$èZiÿÿf‰E¨é#ÿÿÿÆE뎷]¨f9|ÿÿÿ†„þÿÿƒè0é6ÿÿÿ·U¨ƒêAfƒú‡jþÿÿƒè7éÿÿÿ´&EðÇD$ ‰$ÇE¸èvîéÊûÿÿ‰$èèhÿÿ‹U”f9Bpf‰E¨”…wÿÿÿ„ f9Br„‹U”¶BÇEŒÆ…{ÿÿÿ„Àt‹U”·M¨f9J&„+‹]”·U¨f9S$„f9Sx„€½{ÿÿÿ„‹M”·]¨f9Ytt f9Yv…ì‹U…Ò„Aƒ}„…çÇEŒÆ…{ÿÿÿ‹E …Àt‹P;P ƒÇƒÂ‰PfÇEÿÿE ‰$ÇE¸ÿÿÿÿèhÿÿU‰$f‰E˜èùgÿÿfƒ}˜ÿ”Âfƒøÿ”À8Â…&‹M”ÆEƒ¶Aé‚úÿÿf·E˜·M˜‹]$÷Ø€½wÿÿÿEÈf‰ é"üÿÿ‹M”¶A„Àt·]¨f9Y&„Øþÿÿ‹U”·M¨f9J$„Çþÿÿ‹E …Àt‹P;P ƒqƒÂ‰PfÇEÿÿ] ‰$ÇE¸ÿÿÿÿèUgÿÿf‰E˜E‰$èFgÿÿfƒ}˜ÿ”Âfƒøÿ”À8„Äùÿÿ‰$è'gÿÿ‹U”f‰E¨¶BéXþÿÿ´&ÇEŒÆ…{ÿÿÿÇE„é½þÿÿ¶€½{ÿÿÿt ƒ}„ …jþÿÿ‹M…ÉtIƒ}„„·ƒEŒÆ…{ÿÿÿéƒþÿÿ] ‰$ÇE¸ÿÿÿÿèªfÿÿ€½{ÿÿÿf‰E¨„ø‹]”¶CéÝýÿÿÇEŒÆ…{ÿÿÿÇE„é:þÿÿvÆEƒéùÿÿ´&ÆEƒéùÿÿÇ$¨ÇE¸è4ºÇ@Ç fMÇ@Ç@ Æ@Ç@Ç@Ç@Ç@ fÇ@$fÇ@&Æ€¤‰…pÿÿÿ‹EÇE¸ƒÀl‰D$‹…pÿÿÿ‰$è1„‹M”‹pÿÿÿ‹U‰L$‰\$‹BlÇE¸ÿÿÿÿ‰$è Ô‹M¨‹é¿÷ÿÿ‹U”ÆEƒ¶BéAøÿÿfÇE˜ÆEÆE¨éˆùÿÿÆE¨éùÿÿ‹‰$‹B(ÇE¸ÿÐé¼ûÿÿ‹‰$‹B(ÇE¸ÿÿÿÿÿÐé)ýÿÿ‹‰$‹B(ÇE¸ÿÐé÷øÿÿ‹]¨Ç@‰ZôÆD ÇEŒéÀøÿÿÇEŒÆ…{ÿÿÿéÉüÿÿ‹‰$‹B(ÇE¸ÿÿÿÿÿÐéýÿÿƒÅ‹E¸‹]¼ƒø‰]¨t|~Yƒø„žƒøt4 ƒ=(vM…¨‹BHÿ‰J…À@ùÿÿE÷‰D$‰$èüÔé,ùÿÿ‹U¨‰$èL½ÇE¸è È…Àu£Eð‰$èÑò‹E¨ÇE¸ÿÿÿÿ‰$èŸXþÿ‹U¨‰$轃½pÿÿÿt¿‹pÿÿÿ‹‰ $‹@ÇE¸ÿÐë¦ÇE¸èV¿‹E¨ÇE¸ÿÿÿÿ‰$èTXþÿƒÈÿðÁBéTÿÿÿU‰åVSEøì°‰EÔE´‰$ÇḚ´KÇEÐ@ÐKÇEØöF‰eÜèlTþÿÇ$œULè`kÿÿ‹U‰Eœ‹Bl‹Mœ‹X ‹‹‰M¨…À„ê‹]‰EœÇE˜‹[ ƒãJƒû@‰]tÇE˜¸ ƒ}DE˜‰E˜] ‰$ÇE¸ÿÿÿÿè]cÿÿf‰E¨E‰$èNcÿÿfƒ}¨ÿÆ…kÿÿÿfÇE¨”Âfƒøÿ”À8Â…Ê‹MœÆE‡ÇEŒÆ…ÿÿÿ¶Aƒ}˜ÇEˆt ‹Mœ¶A‹]˜‰]ˆ„ÀÇEð|TL…g€½kÿÿÿÇ…pÿÿÿÿÿÿÿÇ…tÿÿÿÿÿÿtÇ…pÿÿÿÇ…tÿÿÿ€‹E˜‹tÿÿÿ‰ÂÁú‰U”‰T$ ‹•pÿÿÿ‰L$‰D$‰E‰$è(`þÿ‹Mœ‹]œƒÁx€»¤‰…lÿÿÿ‰•xÿÿÿ‰M€„3€}‡…hÇE ÇE¤ÆE˜‹Eœ€xt·U¨f9P&„$‹Eœ·U¨f9P$„Š‹Mˆ·Â‹]€‰D$‰L$‰$èfqþÿ…À„i‰Æ‹E¤)ÞÑþƒþNúMñ9…xÿÿÿ‚°w‹U 9•lÿÿÿ‚Ÿ‹M¤‰ó‹E”Áû¯E ¯MÁ‹E ÷e‰E ‹…pÿÿÿʉU¤‹•tÿÿÿ‰ñ)ð¾‰E¨‹E¤Ú‰U¬9Âr‡‹U 9U¨ƒ¶‰ð‹U¤E˜‹E ÈÚƒEŒ‰E ‰U¤‹E …Àt‹P;P ƒ£ƒÂ‰PfÇEÿÿU ‰$ÇE¸è&aÿÿMf‰E¨‰ $èaÿÿfƒ}¨ÿ”Âfƒøÿ”À8Â…àÆE¨ÆE‡‹Eð‹XôPô…Û…g´&‹MŒ…Éup€½ÿÿÿug‹…Àua‹]$‹E ÇÇCÇ€}‡t‹M ƒ ‹M úpTL‹]‰M¨‰]¬…E´‰$èÂQþÿ‹E¨‹U¬Ä°[^]Ãf1öéùþÿÿ€}¨u™€}˜„€½kÿÿÿ…Ë‹]$ÇÿÿÿÿÇCÿÿÿ‹E Çë€ÆE˜éÐþÿÿ´&] ‰$è`ÿÿf‰E¨éÅýÿÿ‹EŒ…À„+‹Eð‹PôHôZ;Y‰]¨w‹q…ö~‹E¨Uð‰$ÇE¸‰D$èMå‹Eð‹Pô¶MŒˆ ‹UðBô=pTL…iÇEŒéLþÿÿvfƒ}¨/‡Û‹EðÆE¨‹XôPô…Û„ þÿÿ¾EŒÇE¸‰D$Eð‰$èVç‹UœEð‰D$‹B ‰D$‹B‰$è*Y„Àu ‹M Ç‹Uðƒê éRþÿÿf€}‡…5·EˆÇE ÇE¤ÆE˜ƒÀ0f‰E€ƒ}ˆ ·M¨†[ÿÿÿ·E¨ƒè0fƒø †>·E¨ƒèafƒø‡9ƒéWƒùÿ„8ÿÿÿ‹]¤9xÿÿÿ‚þw‹E 9…lÿÿÿ‚í‹u¤‰Ë‹E”Áû¯E ¯uÆ‹E ÷e‰E ‹…pÿÿÿò‰U¤‹•tÿÿÿ¾)ȉE¨‹E¤Ú‰U¬9Âr‡–‹U 9U¨ƒŠ¶‰ð‹U¤E˜‹E ÈÚƒEŒ‰E ‰U¤‹E …Àt‹P;P ƒWƒÂ‰PfÇEÿÿU ‰$ÇE¸è^ÿÿMf‰E¨‰ $è÷]ÿÿfƒ}¨ÿ”Âfƒøÿ”À8„àüÿÿ] ‰$èÕ]ÿÿf‰E¨éÃþÿÿ1öéuÿÿÿt&ÆE˜ëƒ·U¨f9U€†þÿÿƒé0éÎþÿÿt&·E¨ƒèAfƒø‡úýÿÿƒé7é±þÿÿ´&EðÇD$ ‰$ÇE¸èæâézúÿÿ‰$èX]ÿÿ‹Uœf9Bpf‰E¨”…kÿÿÿ„&f9Br„‹Uœ¶BÇEŒÆ…ÿÿÿ„Àt‹Uœ·M¨f9J&„;‹]œ·U¨f9S$„*f9Sx„ €½ÿÿÿ„‹Mœ·]¨f9Ytt f9Yv…ü‹U…Ò„Uƒ}˜…÷ÇEŒÆ…ÿÿÿ‹E …Àt‹P;P ƒßƒÂ‰PfÇEÿÿE ‰$ÇE¸ÿÿÿÿèx\ÿÿU‰$f‰E èi\ÿÿfƒ} ÿ”Âfƒøÿ”À8Â…6‹MœÆE‡¶Aé2ùÿÿf€½kÿÿÿt ÷] ƒU¤÷]¤‹M ‹]¤‹E$‰‰Xéiûÿÿ‹Mœ¶A„Àt·]¨f9Y&„Òþÿÿ‹Uœ·M¨f9J$„Áþÿÿ‹E …Àt‹P;P ƒØƒÂ‰PfÇEÿÿ] ‰$ÇE¸ÿÿÿÿè¿[ÿÿf‰E E‰$è°[ÿÿfƒ} ÿ”Âfƒøÿ”À8„oøÿÿ‰$è‘[ÿÿ‹Uœf‰E¨¶BéRþÿÿ‹M$ÇÇA€é0ûÿÿÇEŒÆ…ÿÿÿÇE˜é©þÿÿf€½ÿÿÿt ƒ}˜ …Zþÿÿ‹M…ÉtIƒ}˜„ÓƒEŒÆ…ÿÿÿésþÿÿ] ‰$ÇE¸ÿÿÿÿè [ÿÿ€½ÿÿÿf‰E¨„ø‹]œ¶CéÍýÿÿÇEŒÆ…ÿÿÿÇE˜é*þÿÿvÆE‡é·÷ÿÿ´&ÆE‡é»÷ÿÿÇ$¨ÇE¸è”®Ç@Ç fMÇ@Ç@ Æ@Ç@Ç@Ç@Ç@ fÇ@$fÇ@&Æ€¤‰…dÿÿÿ‹EÇE¸ƒÀl‰D$‹…dÿÿÿ‰$è‘x‹Mœ‹dÿÿÿ‹U‰L$‰\$‹BlÇE¸ÿÿÿÿ‰$èkÈ‹M¨‹é`öÿÿ‹UœÆE‡¶BéáöÿÿÇE ÇE¤ÆE˜ÆE¨éÞøÿÿÆE¨éÕøÿÿ‹‰$‹B(ÇE¸ÿÐé™ûÿÿ‹‰$‹B(ÇE¸ÿÿÿÿÿÐéýÿÿ‹‰$‹B(ÇE¸ÿÐéMøÿÿƒ=(vM…‹BHÿ‰J…ÀàøÿÿE÷‰D$‰$è¾ÉéÌøÿÿÇEŒÆ…ÿÿÿéüÿÿ‹]¨Ç@‰ZôÆD ÇEŒéÑ÷ÿÿƒÅ‹E¸‹]¼ƒø‰]¨„‡~dƒøtAƒøt% ‹‰$‹B(ÇE¸ÿÿÿÿÿÐéýÿÿƒÈÿðÁBémÿÿÿ‹U¨‰$è—±ÇE¸èk¼ÇE¸èﳋE¨ÇE¸ÿÿÿÿ‰$èíLþÿ…Àu˜Eð‰$èþæ‹E¨ÇE¸ÿÿÿÿ‰$èÌLþÿ‹U¨‰$èA±ƒ½dÿÿÿt¡‹dÿÿÿ‹‰ $‹@ÇE¸ÿÐëˆU‰åWVSEè쬉EÄE¤‰$ÇE¼°´KÇEÀhÐKÇEȤG‰eÌè»HþÿÇ$œULè¯_ÿÿ‹U‰EŒ‹Bl‹MŒ‹X ‹‹‰M˜…À„¼‹]‰EŒÇEˆ‹[ ƒãJƒû@‰]€tÇEˆ¸ ƒ}€DEˆ‰Eˆ] ‰$ÇE¨ÿÿÿÿè¬Wÿÿf‰E˜E‰$èWÿÿfƒ}˜ÿÆ…_ÿÿÿfÇE˜”Âfƒøÿ”À8Â…™‹MŒÆ…wÿÿÿÇ…|ÿÿÿÆ…oÿÿÿ¶Aƒ}ˆÇ…xÿÿÿt‹MŒ¶A‹]ˆ‰xÿÿÿ„ÀÇEà|TL…+‹EˆÇ$ÿÿÿÿÇD$ÿÿÿÿ‰ÂÁú‰D$‰T$ ‰E€‰U„è¡Tþÿ‹MŒ‰•hÿÿÿ‹UŒ‰…dÿÿÿƒÂx€¹¤‰•pÿÿÿ„0€½wÿÿÿ…aÇEÇE”ÆEˆ‹UŒ€zt·M˜f9J&„‹EŒ·U˜f9P$„ƒ‹xÿÿÿ·Â‹pÿÿÿ‰D$‰L$‰$èÓeþÿ…À„\‰Ç)ßÑÿGúƒÿMø‹E”9…hÿÿÿ‚w‹U9•dÿÿÿ‚Œ‹M”‰û‹E„Áû¯E‰Þ¯M€÷ÖÁ‹E÷e€ʉù‰E9Ö‰ø‰U”÷пr‡Ô;EƒË´&‹E‰úUˆ‹U”ȉEÚƒ…|ÿÿÿ‰U”‹E …Àt‹P;P ƒ¦ƒÂ‰PfÇEÿÿU ‰$ÇE¨è£UÿÿMf‰E˜‰ $è”Uÿÿfƒ}˜ÿ”Âfƒøÿ”À8Â…ÝÆE˜Æ…wÿÿÿ‹Eà‹xôPô…ÿ…g‹µ|ÿÿÿ…öu6€½oÿÿÿu-‹…Ûu'‹]$‹E ÇÇCÇë51ÿé5ÿÿÿt&€}˜uÓ€}ˆ„V‹M$‹] ÇÿÿÿÿÇAÿÿÿÿÇ€½wÿÿÿt‹M ƒ ‹M úpTL‹]‰M˜‰]œ…ËE¤‰$èFþÿ‹E˜‹UœÄ¬[^_]Ãt&ÆEˆéÓþÿÿ´&] ‰$è•Tÿÿf‰E˜éÒýÿÿ‹|ÿÿÿ…Û„.‹Eà‹PôHôZ;Y‰]˜w‹I…É~‹E˜Uà‰$ÇE¨‰D$èÊÙ‹Eà‹Pô¶|ÿÿÿˆ ‹UàBô=pTL…lÇ…|ÿÿÿéFþÿÿfƒ}˜/‡Õ‹EàÆE˜‹xôPô…ÿ„šþÿÿ¾…|ÿÿÿÇE¨‰D$Eà‰$èÍÛ‹UŒEà‰D$‹B ‰D$‹B‰$è¡M„Àu ‹M Ç‹Uàƒê éIþÿÿ€½wÿÿÿ…1·xÿÿÿÇEÇE”ÆEˆƒÃ0f‰pÿÿÿƒ½xÿÿÿ ·M˜†Nÿÿÿ·E˜ƒè0fƒø †.·E˜ƒèafƒø‡&ƒéWƒùÿ„+ÿÿÿ‹U”9•hÿÿÿ‚ëw‹]9dÿÿÿ‚Ú‹]”‰Î‹E„Áþ¯E‰÷¯]€÷×ËE÷e€ډˉE9׉ȉU”÷йr‡“;EƒŠt&‹UMˆ‹M”Ú‰Uñƒ…|ÿÿÿ‰M”‹E …Àt‹P;P ƒ\ƒÂ‰PfÇEÿÿM ‰ $ÇE¨è…Rÿÿ]f‰E˜‰$èvRÿÿfƒ}˜ÿ”Âfƒøÿ”À8„âüÿÿE ‰$èTRÿÿf‰E˜éÒþÿÿ1Éétÿÿÿt&ÆEˆë„·E˜f9…pÿÿÿ†þÿÿƒé0éÞþÿÿ·E˜ƒèAfƒø‡þÿÿƒé7éÄþÿÿ´&EàÇD$ ‰$ÇE¨èf×é¶úÿÿ‰$èØQÿÿ‹UŒf9Bpf‰E˜”…_ÿÿÿ„0f9Br„&‹UŒ¶BÇ…|ÿÿÿÆ…oÿÿÿ„Àt‹UŒ·M˜f9J&„<‹]Œ·U˜f9S$„+f9Sx„ž€½oÿÿÿ„‹MŒ·]˜f9Ytt f9Yv…ý‹u€…ö„Oƒ}ˆ…õÇ…|ÿÿÿÆ…oÿÿÿ‹E …Àt‹P;P ƒàƒÂ‰PfÇEÿÿE ‰$ÇE¨ÿÿÿÿèóPÿÿU‰$f‰EèäPÿÿfƒ}ÿ”Âfƒøÿ”À8Â…4‹MŒÆ…wÿÿÿ¶Aé`ùÿÿ€½_ÿÿÿt ÷]ƒU”÷]”‹M‹]”‹E$‰‰Xéûÿÿt&‹MŒ¶A„Àt·]˜f9Y&„Èþÿÿ‹UŒ·M˜f9J$„·þÿÿ‹E …Àt‹P;P ƒÚƒÂ‰PfÇEÿÿ] ‰$ÇE¨ÿÿÿÿè5Pÿÿf‰EE‰$è&Pÿÿfƒ}ÿ”Âfƒøÿ”À8„–øÿÿ‰$èPÿÿ‹UŒf‰E˜¶BéHþÿÿ´&Ç…|ÿÿÿÆ…oÿÿÿÇEˆé¯þÿÿv€½oÿÿÿt ƒ}ˆ …\þÿÿ‹}€…ÿtLƒ}ˆ„Ùƒ…|ÿÿÿÆ…oÿÿÿéuþÿÿ] ‰$ÇE¨ÿÿÿÿè‡Oÿÿ€½oÿÿÿf‰E˜„ø‹]Œ¶CéÌýÿÿÇ…|ÿÿÿÆ…oÿÿÿÇEˆé)þÿÿÆ…wÿÿÿéç÷ÿÿÆ…wÿÿÿéñ÷ÿÿÇ$¨ÇE¨è£Ç@Ç fMÇ@Ç@ Æ@Ç@Ç@Ç@Ç@ fÇ@$fÇ@&Æ€¤‰…`ÿÿÿ‹EÇE¨ƒÀl‰D$‹…`ÿÿÿ‰$èm‹MŒ‹`ÿÿÿ‹U‰L$‰\$‹BlÇE¨ÿÿÿÿ‰$è輋M˜‹éŽöÿÿ‹UŒÆ…wÿÿÿ¶Bé÷ÿÿÇEÇE”ÆEˆÆE˜éÞøÿÿÆE˜éÕøÿÿ‹‰$‹B(ÇE¨ÿÐé”ûÿÿ‹‰$‹B(ÇE¨ÿÿÿÿÿÐéýÿÿ‹‰$‹B(ÇE¨ÿÐéJøÿÿƒ=(vM…•‹BHÿ‰J…ÀùÿÿEç‰D$‰$è8¾éùÿÿÇ…|ÿÿÿÆ…oÿÿÿé™üÿÿ‹]˜Ç@‰ZôÆD Ç…|ÿÿÿéÈ÷ÿÿƒÅ‹E¨‹]¬ƒø‰]˜„‡~dƒøtAƒøt% ‹‰$‹B(ÇE¨ÿÿÿÿÿÐéýÿÿƒÈÿðÁBégÿÿÿ‹U˜‰$è ¦ÇE¨èß°ÇE¨èc¨‹E˜ÇE¨ÿÿÿÿ‰$èaAþÿ…Àu˜Eà‰$èrÛ‹E˜ÇE¨ÿÿÿÿ‰$è@Aþÿ‹U˜‰$èµ¥ƒ½`ÿÿÿt¡‹`ÿÿÿ‹‰ $‹@ÇE¨ÿÐëˆU‰åEøS섉EÔE´‰$ÇḚ´KÇEÐÐKÇEØdG‰eÜè==þÿÇ$œULè1Tÿÿ‹U‰E˜‹Bl‹M˜‹X ‹‹‰M¨…À„õ ] ‰E¤‰$ÇE¸ÿÿÿÿè]Lÿÿf‰E¨E‰$èNLÿÿfƒ}¨ÿ”Âfƒøÿ”À8Â…GfÇE¨‹]¤ÇE˜ÆEœÆE ¶C„ÀÇEð|TL…ü‹E¤‹U¤ƒÀx€º¤‰EŒ„€} … ‹M¤ÆE ÆE—¶A„Àt‹]¤·E¨f9C&„Z‹M¤·]¨f9Y$…4€}—…§€} …‹Eð‹PôHô…ÒtIZ;Y‰]¨w‹Y…Û~‹E¨Uð‰$ÇE¸‰D$èèЋEð‹Pô¶M˜ˆ ‹UðBô=pTL…© ‹U$‹‹PôHôZ;Y‰]¨w‹I…É~!‹E¨‹U$ÇE¸‰D$‰$è”ЋM$‹‹PôÆ.‹]$‹Bô=pTL…Ö ÆE—‹E …Àt‹P;P ƒa ƒÂ‰PfÇEÿÿE ‰$ÇE¸èÀJÿÿUf‰E¨‰$è±Jÿÿfƒ}¨ÿ”Âfƒøÿ”À8„—M ‰ $èJÿÿ‹]¤f‰E¨¶C„À„·þÿÿ‹]¤·E¨f9C&…¦þÿÿ€}—…^€} …T‹]˜…Û„‰ ‹Eð‹PôHôZ;Y‰]¨w‹I…É~‹E¨Uð‰$ÇE¸‰D$è˜Ï‹Eð‹Pô¶M˜ˆ ‹UðBô=pTL…ê ÇE˜éýþÿÿ€} … ÆE ÆE—fƒ}¨/‡ú‹]¤·E¨f9C$„b‹M¤·]¨f9™”t f9™ … €} …–€}œ„Œ‹U$‹‹PôHôZ;Y‰]¨w‹Y…Û~!‹E¨‹U$ÇE¸‰D$‰$èÙ΋M$‹‹PôÆe‹]$‹Bô=pTL…l ‹E …Àt‹P;P ƒp ƒÂ‰PfÇEÿÿ] ‰$ÇE¸è Iÿÿf‰E¨E‰$èúHÿÿfƒ}¨ÿ”Âfƒøÿ”À8„]‰$èÛHÿÿ‹M¤f‰E¨ÆE +f9Artf9ApÆE …àþÿÿÆE -‹]$‹‹PôHôZ;Y‰]¨w‹I…É~!‹E¨‹U$ÇE¸‰D$‰$è΋M$‹‹Pô¶] ¹pTLˆ‹E$‹Bô9Á…uÆE ‹E …Àt‹P;P ƒàƒÂ‰PfÇEÿÿ] ‰$ÇE¸è)Hÿÿf‰E¨E‰$èHÿÿfƒ}¨ÿ”Âfƒøÿ”À8Â…‹UðBô‹Rô…Òt?€}—u €} „A‹U¤Eð‰D$‹B ‰D$‹B‰$èªA„Àu ‹E Ç‹Eðƒè ‹M =pTL‹]‰M¨‰]¬…^E´‰$èÕ8þÿ‹E¨‹U¬Ä„[]ö·E¨‹]ŒÇD$ ‰D$‰$èÅVþÿ…À‰E„:‹U$‹‹PôHôZ;Y‰]¨w‹Y…Û~!‹E¨‹U$ÇE¸‰D$‰$è¤Ì‹M$‹‹Pô‹M+MŒÑùƒÁ0ˆ ‹]$‹Bô=pTL…ŃE˜ÆEœéýûÿÿ‰$èæFÿÿf‰E¨fƒ}¨/†ýÿÿfƒ}¨9‡ûüÿÿ·E¨‹M$ƒè0‰E¨‹‹HôPôY;Z‰]œw‹R…Ò~!‹Eœ‹U$ÇE¸‰D$‰$è Ì‹M$‹‹Hô¶U¨ƒÂ0ˆ‹]$‹Bô=pTL…cÆEœéþÿÿ€}—…”üÿÿ€} …Šüÿÿ‹U$ÇD$.ÇE¸‰$è ÎÆE—éÍýÿÿ´&‹]¤·E¨f9ƒ”t f9ƒ …þÿÿ€} …öýÿÿ€}œ„ìýÿÿ‹Eð‹PôHô…ÒtL€}—uFZ;Y‰]¨†‹E¨Uð‰$ÇE¸‰D$è4Ë‹Eð‹Pô¶M˜ˆ ‹UðBô=pTL…"‹U$‹‹PôHôZ;Y‰]¨w‹Y…Û~!‹E¨‹U$ÇE¸‰D$‰$èàÊ‹M$‹‹PôÆe‹]$‹Bô=pTL…ˆ‹E …Àt‹P;P ƒ<ƒÂ‰PfÇEÿÿ] ‰$ÇE¸èEÿÿf‰E¨E‰$èEÿÿfƒ}¨ÿ”Âfƒøÿ”À8„d‰$èâDÿÿ‹M¤f‰E¨f9Ar”Ât#f9Apt¶AÆE éåøÿÿ‹I…Éçþÿÿéÿÿÿ‹]¤¶C„Àt·M¨f9K&„–‹]¤·M¨f9K$„…€ú‹U$ÛƒãƒÃ+‹ˆ]¨‹PôHôZ;Y‰] w‹I…É~!‹E ‹U$ÇE¸‰D$‰$èÁÉ‹M$‹‹Pô¶]¨¹pTLˆ‹E$‹Bô9Á…ÀÆE é#ùÿÿt&EðÇD$ ‰$ÇE¸èvÉéå÷ÿÿ] ‰$ÇE¸ÿÿÿÿèÞCÿÿ‹U¤f9Brf‰E¨”„ڋM¤f9Ap„Í‹U¤¶BÇE˜ÆEœ„Àt‹U¤·M¨f9J&„è‹]¤·U¨f9S$„×f9Sx…Í€}œ„A‹E ƒE˜…Àt‹P;P ƒÇƒÂ‰PfÇEÿÿ] ‰$ÇE¸ÿÿÿÿèÍÿÿÉÃU‰åƒì(‹E$‹U‰D$‹E ‰T$‹U‰D$‹E‰T$‰D$‹E‰D$ ‹E ‰D$‹E‰$èžØÿÿÉÃU‰åƒì ‰]ø‹]$‹E ‰uü¾U‹u‹ ‰D$‰T$‰4$Á‹E‰L$‰D$ ‹E ‰D$èq)ð‰‹]ø‹uü‰ì]ÃU‰åS줋E ‹U]ø¶M‰]Ô‰EŒE´‰UˆMƒ‰$ÇḚ´KÇEÐÔÓKÇEØB"G‰eÜèê þÿÇ$˜ULèÞ7ÿÿ‹U‰E¬‹Bl‹M¬‹X ‹‹‰M°…À„‹]ƒì0T$/ƒâð‰E”ƒÀ&‹[ ‰U¬‰]ˆƒãJƒû•E°ƒû@• U°‹U‰]„…ÒŽ¢‹M‰D$‹E¬¶U°‹]ˆ‰L$ƒÀ‰T$‰\$ ‰$èZ‹U¬‹M”)ƒÂ€y‰Eô…€}°„.‹]…Ûˆa÷Eˆ…Å‹Mô‰M°‹E‹M°‹@9ȉE¬~MƒÀƒàðè¯%þÿ‹Eô‰T$ ‹U\$/‰D$‹E¬ƒãð‰\$ÇE¸ÿÿÿÿ‰$‰D$¾Eƒ‰D$èh’‹M¬‰Ú‰Mô‰M°¶E‹]„ÀÇCˆE˜u0‹MŒ‹]°‹‰T$‰\$‰ $‹@0ÇE¸ÿÿÿÿÿжU˜9øEЈU˜¶M˜E´‰$ˆMè þÿ‹EŒ‹U‹]üÉË]”ƒÀƒê¶K'ˆ ‰E°‰Eôé'ÿÿÿD ƒàðèä$þÿD$/ƒàðƒÀ‰E¬Eô‹]¬‰D$‹E‰T$‰\$‰D$¾A%‰D$ ‹A ‰D$‹A‰D$‹E‰$èmýÿÿ‹Eô‰Úé¡þÿÿv€}°„Tþÿÿ‹M÷ÙéMþÿÿ‹]”ƒÀƒê¶K&ˆ ‰E°‰Eôé˜þÿÿfÇ$hÇE¸èíÆ@$Æ@%Ç@ÇfMÇ@Ç@ Æ@Ç@Ç@Ç@Ç@ Æ@d‰E”‹EÇE¸ƒÀl‰D$‹E”‰$è÷C‹M¬‹]”‹U‰L$‰\$‹BlÇE¸ÿÿÿÿ‰$èÔ›‹M°‹éKýÿÿ÷Eˆu ‹Eô‰E°éÜýÿÿƒ}„Ìýÿÿƒ}„@t.‹]”1É÷Eˆ@•ÁƒÀ¶L (ˆJÿ¶K*ƒêˆ ‰E°‰Eôéžýÿÿ‹]”ƒÀƒê¶K*ˆ ‰E°‰Eôé„ýÿÿƒÅ‹E¸‹M¼ƒø‰Mt ƒøtU…Àt3 ‹U‰$è—…ƒ}”t‹U”‹‰$‹@ÇE¸ÿÐÇE¸èQÇE¸èÕ‡‹]ÇE¸ÿÿÿÿ‰$èÓ þÿ‹E‰$èH…ëÉU‰å쨋E ‹U¶MÇḚ´K‰EˆEø‰EÔE´‰UŒˆ{ÿÿÿ‰$ÇEÐÀÓKÇEØ&G‰eÜèØþÿÇ$˜ULèÌ3ÿÿ‹U‰E”‹Bl‹M”‹P Š‹‰M°…À„´‰E„‹Eƒì0T$/ƒâð‰U‹@ ‰E€ƒàJ‹M€ƒø•E”ƒø@‰…|ÿÿÿ•À E”¶E”‰L$ ‰D$‹E„ƒÀ&‰D$‹E‰D$‰ÐƒÀ‰$èN ‹M„‰E°‰Eô‹E+E°€yP…Ò€}”„Õ‹M‹I9M°‰M”}V‰ÈƒÀƒàðè½!þÿD$/ƒàð‰E‹Eô‰L$‹M‰T$ ‹UÇE¸ÿÿÿÿ‰D$¾…{ÿÿÿ‰ $‰T$‰D$èpŽ‹E”‹U‰Eô‰E°¶EŒ‹M„ÀÇAˆE˜u4‹Mˆ‹‹M°‰T$‹Uˆ‰L$‰$‹@0ÇE¸ÿÿÿÿÿжM˜9E°¸EȈM˜¶E˜ˆEŒE´‰$è þÿ‹Eˆ‹UŒÉËM°D ƒàðè!þÿ‹M„D$/ƒàðƒÀ‰EEô‰D$‹E‰T$‹U‰D$‰T$¾A%‰D$ ‹A ‰D$‹A‰D$‹E‰$è‡ùÿÿ‹Eô‹U‰E°éÇþÿÿÇ$hÇE¸è6~Æ@$Æ@%Ç@ÇfMÇ@Ç@ Æ@Ç@Ç@Ç@Ç@ Æ@d‰E‹E‹MÇE¸ƒÀl‰D$‰ $è@@‹U”‹M‰T$‹U‰L$‹BlÇE¸ÿÿÿÿ‰$蘋M°‹é¦ýÿÿ÷E€u ‹Mô‰M°éþÿÿƒ}u ‹Eô‰E°éþÿÿƒ½|ÿÿÿ@t/‹M„1À÷E€@•À¶D(ˆBÿ¶A*ƒêˆƒE°‹E°‰EôéÎýÿÿ‹M„ƒê¶A*ˆƒE°‹E°‰Eôé³ýÿÿƒÅ‹E¼‰E°‹E¸ƒøt ƒøtU…Àt3 ‹E°‰$èÔƒ}t‹U‹‰$‹@ÇE¸ÿÐÇE¸莌ÇE¸è„‹U°ÇE¸ÿÿÿÿ‰$èþÿ‹M°‰ $è…ëÉU‰åS줋] ‹E ‹U‹M‰]Œ¶]‰E„Eø‰EÔE´‰U‰Mˆˆ{ÿÿÿ‰$ÇḚ´KÇEÐÔKÇEØV*G‰eÜè þÿÇ$˜ULèÿ/ÿÿ‹U‰E¬‹Bl‹M¬‹X ‹‹‰M°…À„8‰Ãƒì@‰E”‹ET$/ƒâðƒÃ&‰U¬‹@ ‰E€ƒàJƒø•E°ƒø@‰…|ÿÿÿ•À E°ƒ}ŒŽÏ‹Eˆ‹UŒ¶M°‰D$‹E¬‰\$ ‰T$‰L$‹M€ƒÀ(‰$‰L$è ‹U¬‹]”)ƒÂ(€{‰Eô…€}°„L‹MŒ…ɈS÷E€…È‹Mô‰M°‹E‹M°‹@9ȉE¬~PƒÀƒàðèÅþÿ‹Eô‰T$ ‹U\$/‰D$‹E¬ƒãð‰\$ÇE¸ÿÿÿÿ‰$‰D$¾…{ÿÿÿ‰D$è{Š‹M¬‰Ú‰Mô‰M°¶E‹]„ÀÇCˆE˜u0‹M„‹]°‹‰T$‰\$‰ $‹@0ÇE¸ÿÿÿÿÿжU˜9øEЈU˜¶M˜E´‰$ˆMèþÿ‹E„‹U‹]üÉË]”ƒÀƒê¶K'ˆ ‰E°‰Eôé$ÿÿÿt&D ƒàðèôþÿD$/ƒàðƒÀ‰E¬Eô‰D$‹E¬‰T$‹U‰D$‰T$¾C%‰D$ ‹C ‰D$‹C‰D$‹E‰$è}õÿÿ‹Eô‹U¬éšþÿÿf‹]”ƒÀƒê¶K&ˆ ‰E°‰Eôé¦þÿÿ¶| ƒ}ˆ‡%þÿÿ€}°„þÿÿ‹Eˆ‹UŒ÷؃Ò÷ÚéþÿÿÇ$hÇE¸èåyÆ@$Æ@%Ç@ÇfMÇ@Ç@ Æ@Ç@Ç@Ç@Ç@ Æ@d‰E”‹EÇE¸ƒÀl‰D$‹E”‰$èï;‹M¬‹]”‹U‰L$‰\$‹BlÇE¸ÿÿÿÿ‰$èÌ“‹M°‹é"ýÿÿ÷E€u ‹Eô‰E°é¾ýÿÿ‹MŒ Mˆu ‹]ô‰]°é«ýÿÿƒ½|ÿÿÿ@t.‹]”1É÷E€@•ÁƒÀ¶L (ˆJÿ¶K*ƒêˆ ‰E°‰Eôétýÿÿ‹]”ƒÀƒê¶K*ˆ ‰E°‰EôéZýÿÿƒÅ‹E¸‹M¼ƒø‰Mt ƒøtU…Àt3 ‹U‰$èƒ}ƒ}”t‹U”‹‰$‹@ÇE¸ÿÐÇE¸è=ˆÇE¸èÁ‹]ÇE¸ÿÿÿÿ‰$è¿þÿ‹E‰$è4}ëÉU‰å츋E ‹U‹MÇḚ´K‰Eˆ‹E ‰UŒ¶U‰xÿÿÿMø‰MÔ‰…tÿÿÿE´ˆ•sÿÿÿ‰$ÇEÐüÓKÇEØ2.G‰eÜè¶þÿÇ$˜ULèª+ÿÿ‹U‰E”‹Bl‹M”‹P Š‹‰M°…À„‰E„‹Eƒì@T$/ƒâð‰U‹•tÿÿÿ‹@ ‰T$‰E€ƒàJ‹M€ƒø•E”ƒø@‰…|ÿÿÿ•À E”¶E”‰L$‰D$‹E„ƒÀ&‰D$ ‹…xÿÿÿ‰D$‹EƒÀ(‰$辋M„‰E°‰Eô‹E+E°€yP(…Ò€}”„Õ‹M‹I9M°‰M”}V‰ÈƒÀƒàðèþÿD$/ƒàð‰E‹Eô‰L$‹M‰T$ ‹UÇE¸ÿÿÿÿ‰D$¾…sÿÿÿ‰ $‰T$‰D$è@†‹E”‹U‰Eô‰E°¶EŒ‹M„ÀÇAˆE˜u4‹Mˆ‹‹M°‰T$‹Uˆ‰L$‰$‹@0ÇE¸ÿÿÿÿÿжM˜9E°¸EȈM˜¶E˜ˆEŒE´‰$èÙþÿ‹Eˆ‹UŒÉËM°D ƒàðèÑþÿ‹M„D$/ƒàðƒÀ‰EEô‰D$‹E‰T$‹U‰D$‰T$¾A%‰D$ ‹A ‰D$‹A‰D$‹E‰$èWñÿÿ‹Eô‹U‰E°éÇþÿÿÇ$hÇE¸èvÆ@$Æ@%Ç@ÇfMÇ@Ç@ Æ@Ç@Ç@Ç@Ç@ Æ@d‰E‹E‹MÇE¸ƒÀl‰D$‰ $è8‹U”‹M‰T$‹U‰L$‹BlÇE¸ÿÿÿÿ‰$èí‹M°‹é˜ýÿÿ÷E€tF‹…tÿÿÿ …xÿÿÿt8ƒ½|ÿÿÿ@t:‹M„1À÷E€@•À¶D(ˆBÿ¶A*ƒêˆƒE°‹E°‰EôéÜýÿÿ‹Mô‰M°éÑýÿÿ‹M„ƒê¶A*ˆƒE°‹E°‰Eôé¶ýÿÿƒÅ‹E¼‰E°‹E¸ƒøt ƒøtU…Àt3 ‹E°‰$è§yƒ}t‹U‹‰$‹@ÇE¸ÿÐÇE¸èa„ÇE¸èå{‹U°ÇE¸ÿÿÿÿ‰$èãþÿ‹M°‰ $èXyëÉU‰åƒìH‰]ô‹]‰uø‹E ‰}ü‹u$‹} …Û¶Ut]‰Ù¾Ò)Á‰Mä‹M‰D$‹E‰\$‰|$‰T$‰ $‰D$ è‰Ç‹+Eä‰\$‰<$‰D$èš²þÿ‹+E+E䉋]ô‹uø‹}ü‰ì]˾҉D$‹M‰|$‰T$ËE‰\$‰ $‰D$ è·+E‰‹]ô‹uø‹}ü‰ì]ÃU‰åSì´‹E ‹UMøÝE ‰MÄÝ]‰…|ÿÿÿ¶E‰U„¶UÇE¼°´KÇEÀ¬ÓKˆ…sÿÿÿE¤ˆUŒ‰$ÇEÈ34G‰eÌèþÿ‹]Ç$˜ULƒÃl‰]ˆè'ÿÿ‹U‰Eœ‹Bl‹Mœ‹X ‹‹‰M …À„s‹]‰E€¸‹U‹[‰$…ÛIÉEœ¾EŒ‰D$E܉D$èïƒì@L$/ƒáð‰M ÇE¨ÿÿÿÿèZ©‹M U܉T$ ÇD$-‰L$‰Eð‹EœÝEÝ\$‰D$Eð‰$èØ ƒø,‰EôÔ‹]ˆÇE¨ÿÿÿÿ‰$è D‹Uô‰EˆBƒàðèéþÿ‹]ˆ‹M D$/ƒàð‰EщEŒ¶C‰Uœ‰•xÿÿÿ‰tÿÿÿ<„<„À„Ñ‹]ˆ‹U‹tÿÿÿ‹‰T$ ‹] ‹Uˆ‰L$‰\$‰$‹@ÇE¨ÿÿÿÿÿЋMô‰Mœ‰xÿÿÿ‹E ‹xÿÿÿÇD$.‰$‰\$èɱþÿ1Ò…Àt‹U‹M€+E Â¶A$ˆ‹]€€{t.…Ò…qƒ}œŽg‹M ¶A<9¶I€ù9‹Uô‰EBƒàðè±þÿ‹]‹M D$/ƒàð‰E˜щE”¶C‰Uœ‰U€‰|ÿÿÿ<„4„À„Ë]‹U˜‹|ÿÿÿ‹‰T$ ‹] ‹U‰L$‰\$‰$‹@ÇE¨ÿÿÿÿÿЋMô‰Mœ‰M€‹E ‹]€ÇD$.‰$‰\$蚬þÿ1Ò…Àt‹U˜‹Mˆ+E Â¶A$ˆ‹]ˆ€{t.…Ò…rƒ}œŽh‹M ¶A<9¶I€ù9êýÿ‹Eô‰T$‹U\$/‰D$‹Eƒãð‰\$ÇE¨ÿÿÿÿ‰$‰D$ ·E‚‰D$èWY‹M ‰]‰Mô‰Mœ¶E”‹]„ÀÇCˆE u4‹Uˆ‹Mœ‹]‹‰$‰L$‰\$‹@0ÇE¨ÿÿÿÿÿжU ;Eœ¸EЈU ¶M E¤‰$ˆM”èäýÿ‹Eˆ‹U”‹]üÉÃt&HƒÀƒàð‰M„èéýÿ\$/ƒãð‰] è€}‹M„U܉T$ ‰\$‰L$‰Eì‹EœÛm ‰D$EìÛ|$‰$è߉Eôé$þÿÿ€ù/Ž×þÿÿ‹M„ƒàðèéýÿ‹M \$/ƒãð‰]¶<+t]1É<-ÇE tPEô‹]Œ‰D$‹E˜‰T$ÈM‰D$‰L$·C&‰D$ ‹C ‰D$‹C‰D$‹E‰$èþöÿÿ‹E Eô‰Eœ‰EôéSþÿÿ‹]˜‹M·f‰¹ƒmôÇE ë’Ç$¨ÇE¨èF‹MÇ@Ç fMÇ@Ç@ Æ@Ç@Ç@Ç@Ç@ fÇ@$fÇ@&Æ€¤‰EŒ‰L$‰$ÇE¨è%‹Eœ‹UŒ‹M‰D$‰T$‹AlÇE¨ÿÿÿÿ‰$è`‹] ‹éJüÿÿƒÅ‹E¨‹M¬ƒø‰M t ƒøtU…Àt3 ‹] ‰$è1Jƒ}Œt‹UŒ‹‰$‹@ÇE¨ÿÐÇE¨èëTÇE¨èoL‹] ÇE¨ÿÿÿÿ‰$èmåýÿ‹E ‰$èâIëÉU‰åSƒì$‹E·M‹]‹‰L$‹M‰\$‹]‰$‰L$ ‹M ‰\$‰L$ÿR$ƒÄ$[]ÃU‰åSƒì$‹E·M¶]‹‰L$‹M‰\$‹]‰$‰L$ ‹M ‰\$‰L$ÿRƒÄ$[]ÃU‰åSƒì$‹E·M‹]ÝE‹Ý\$‰L$‹M‰\$‰$‰L$ ‹M ‰L$ÿRƒÄ$[]ÃU‰åƒì8‹E·M‰]ô‹]‰uø‹u ‰}ü‹‰L$‹M‹}$‰\$‹]‰t$‰L$ ‹M ‰|$‰\$‰$‰L$ÿR ‹]ô‹uø‹}ü‰ì]ÃU‰åSƒì$‹E·M‹]‹‰L$‹M‰\$‹]‰$‰L$ ‹M ‰\$‰L$ÿR ƒÄ$[]ÃU‰åSƒì$‹E·M‹]‹‰L$‹M‰\$‹]‰$‰L$ ‹M ‰\$‰L$ÿRƒÄ$[]ÃU‰åƒì(‹E·M‰]ø‹]‰uü‹u ‹‰L$‹M‰\$‹]‰t$‰$‰L$ ‹M ‰\$‰L$ÿR‹]ø‹uü‰ì]ÃU‰åƒì(‹E·M‰]ø‹]‰uü‹u ‹‰L$‹M‰\$‹]‰t$‰$‰L$ ‹M ‰\$‰L$ÿR‹]ø‹uü‰ì]ÃU‰åƒì(‰]ø‹] ‰uü·E ‹u‹‰D$‹E‰t$‰T$‹U‰$‰T$ ‹U‰T$èCT‰3‹]ø‹uü‰ì]ÃU‰åVSƒì0‹]·U‹s ‰ð%µ¿ÿÿ ‰C ‹E‰T$‹U‰\$ ‰D$‹E ‰T$‰D$‹E‰$è—æÿÿ‰s ‰Uô‰E ‰Eð¶EôˆE‹E ‹UƒÄ0[^]ÃU‰åWVSƒì|‹]·U¶}‹s ÷ÆuQ‹E ·Òçÿ‰T$‹U‰|$‰\$ ‰D$‹E‰T$‰$èóáÿÿ‰Uà‰E ‰EܶEàˆE‹E ‹Ueô[^_]Ãt&Cl‰D$Eç‰Uœ‰$èëçþÿ‰ù‹Uœ„É…¾‹H‹x ‹C‰M 9Ǿ)ø‰E¤Dƒàðè¹ãýÿ‹E¤L$'·Òƒáðæ°‰ $‰Mœ‰D$‰T$èsýýÿƒþ ‹MœÇC„²¶E‹u‹] „Àu‹‹U¤‰L$‰$‰T$ÿP09E¤•À‰ñˆÁ‰Î„ɉ]ĉȉuȉ] ˆMu_‹‹U ‰|$‰$‰T$ÿP09Ç•ÀëE´&‹H‹x‹C‰M 9ÇŒBÿÿÿ¶EÇC‹] „Àu‹‹M ‰|$‰$‰L$ÿP09Ç•À‰] ˆE‹E ‹Ueô[^_]öE‹u‹] „Àu‹‹U ‰|$‰$‰T$ÿP0‹Mœ9Ç•À‰òˆÂ‰Ö„Ò‰]ԉЉu؉] ˆUu«‹‹U¤‰L$‰$‰T$ÿP09E¤•ÀëU‰åƒì(·E‹UÝEÝ\$‰D$‹EÇD$‰T$‰D$ ‹E ‰D$‹E‰$èCñÿÿÉÃU‰åSƒì4·E‹U‹]$‹M ‰D$‹E‰T$‹U‰\$ ‰L$‰D$ ‹E ÇD$L‰T$‰D$‹E‰$èÄõÿÿƒÄ4[]ÃU‰åƒì(·E‹U‰D$‹E‰T$‹U‰D$ ‹E ‰T$‰D$‹E‰$èkßÿÿÉÃU‰åƒì(·E‹U‰D$‹E‰T$‹U‰D$ ‹E ‰T$‰D$‹E‰$è[ãÿÿÉÃU‰åƒì(·E‹U‹M ‰D$‹E‰T$‹U‰L$‰D$ ‹E ‰T$‰D$‹E‰$èôæÿÿÉÃU‰åƒì(·E‹U‹M ‰D$‹E‰T$‹U‰L$‰D$ ‹E ‰T$‰D$‹E‰$è$ëÿÿÉÃU¸` M‰å]ÃU‰å‹E]‹@ÃU‰å‹E ]‹ÃU‰å‹EÇ|TL]ÂU‰åSƒì$‹E ‹M‹]‹‰L$‹M‰D$‰$‰L$‹M‰L$ ‹M‰L$ÿR ‰Ø‹]üƒìÉÂU‰åƒì‹E‹‹BÉÿàU‰åƒì‹E‹‹BÉÿàU‰åƒì‹E‹‹BÉÿàU‰åSƒì‹]‹E‰$‰D$è—r‰ØƒÄ[]ÂU1À‰å]ÃU‰å]ÃU‰å‹E ]‹ÃU‰å‹EÇlTL]ÂU‰åSƒì$‹E ‹M‹]‹‰L$‹M‰D$‰$‰L$‹M‰L$ ‹M‰L$ÿR ‰Ø‹]üƒìÉÂU‰åƒì‹E‹‹BÉÿàU‰åƒì‹E‹‹BÉÿàU‰åƒì‹E‹‹BÉÿàU‰åSƒì‹]‹E‰$‰D$èÇ҉؃Ä[]ÂU1À‰å]ÃU‰å]ÃU‰åSƒì$‹]E÷‰D$‹E ‹@‹@‰$‰D$èzp‰ØƒÄ$[]ÂU‰åSƒì$‹]E÷‰D$‹E ‹@‹@‰$‰D$èJp‰ØƒÄ$[]ÂU‰åSƒì$‹]E÷‰D$‹E ‹@‹@‰$‰D$èp‰ØƒÄ$[]ÂU‰åƒì‹E‹‹BÉÿàU‰åƒì‹E‹‹B ÉÿàU‰å‹E]‹@¶@$ÃU‰å‹E]‹@¶@%ÃU‰åSƒì‹E ‹]‹‰D$‰$ÿR‰Ø‹]üƒìÉÂU‰åSƒì‹E ‹]‹‰D$‰$ÿR‰Ø‹]üƒìÉÂU‰åSƒì‹E ‹]‹‰D$‰$ÿR‰Ø‹]üƒìÉÂU‰åSƒì$‹]E÷‰D$‹E ‹@‹@‰$‰D$èún‰ØƒÄ$[]ÂU‰åSƒì$‹]E÷‰D$‹E ‹@‹@‰$‰D$èЉ؃Ä$[]ÂU‰åSƒì$‹]E÷‰D$‹E ‹@‹@‰$‰D$èêω؃Ä$[]ÂU‰åƒì‹E‹‹BÉÿàU‰åƒì‹E‹‹B ÉÿàU‰å‹E]‹@·@$ÃU‰å‹E]‹@·@&ÃU‰åSƒì‹E ‹]‹‰D$‰$ÿR‰Ø‹]üƒìÉÂU‰åSƒì‹E ‹]‹‰D$‰$ÿR‰Ø‹]üƒìÉÂU‰åSƒì‹E ‹]‹‰D$‰$ÿR‰Ø‹]üƒìÉÂU‰åƒì‹E‹‹BÉÿàU‰åVSƒì0‹u‹] Fl‰$è‡ ‹U‹@‹@‰T$‹U‰t$‰\$‰D$ ‹E$‰T$‰D$‹E‰D$ ‹E ‰D$‹E‰$è§ ‰E E ‰U‰$èFäþÿ‰ÆE‰$è9äþÿƒþÿ”ƒøÿ”À8Âuƒ ‹E ‹UƒÄ0[^]ÃU‰åVSƒì0‹u‹] Fl‰$èç‹U‹@‹@‰T$‹U‰t$‰\$‰D$ ‹E$‰T$‰D$‹E‰D$ ‹E ‰D$‹E‰$è ‰E E ‰U‰$è¦ãþÿ‰ÆE‰$è™ãþÿƒþÿ”ƒøÿ”À8Âuƒ ‹E ‹UƒÄ0[^]ÃU‰åVSƒì@‹u‹] Fl‰$è Eð‹U‰D$(Eô‰D$‹E‰t$$‰T$‹UÇEð‰D$ ‹E ÇD$ ÇD$'ÇD$‰D$‹E‰T$‰$è‹uð…ö‰E ‰UuR‹UôBd…ÒŠ”øÿÿ‹U$IÁ‰BE ‰$èÐâþÿ‰ÆE‰$èÃâþÿƒþÿ”ƒøÿ”À8Âuƒ ‹E ‹UƒÄ@[^]Ãvƒ ëÀU‰åSƒì$‹E‹M$‹]‹‰L$‹M ‰\$‹]‰$‰L$‹M‰\$‰L$‹M‰L$ ‹M ‰L$ÿRƒÄ$[]ÃU1À‰å]ÃU‰åSƒì$‹E‹M$‹]‹‰L$‹M ‰\$‹]‰$‰L$‹M‰\$‰L$‹M‰L$ ‹M ‰L$ÿRƒÄ$[]ÃU‰åWVS» ƒì<‹E,ƒÀl‰$ètƒ}(‰Eàtƒ}(f»è¸EØ1ö1ÿ´&M ‰ $è•áþÿ‰EäE‰$è‡áþÿƒ}äÿ”ƒøÿ”À8Âu&9}(„ýƒÿ„Ô‹E0‹Uƒ‹E ƒÄ<[^_]Ã;}(sÕM ‰ $è@áþÿ‹Mà¶ÐˆEä¶„„Àt\PЀú w­¾À¶tPЉð¯Ã;E$™Ø9E }’¸gfff÷ë‹E ÁûÁú)Ú…À‰Ót‹P;P ƒ‡ƒÂ‰PÇEÿÿÿÿƒÇé/ÿÿÿ¾Mä‹Eà‹‰L$‹Mà‰UÜÇD$*‰EÔ‰ $ÿP ‹UÜ<*„*ÿÿÿ‹Màˆ„éfÿÿÿƒ}(…"ÿÿÿ‹Mƒîd‰1‹E ‹UƒÄ<[^_]ËE‰0‹E ‹UƒÄ<[^_]ˉ$ÿR(érÿÿÿU‰åWVS쌋u‹] ~l‰<$è#‰<$‰E¤èØ‹U¤ÇEà‹B‹PH‰U¨‹PL‰U¬‹PP‰U°‹PT‰U´‹PX‰U¸‹P\‰U¼‹P`‰UÀ‹P,‰UÄ‹P0‰UÈ‹P4‰UÌ‹P8‰UЋP<‰UÔ‹P@‹@D‰t$ ‰U؉EÜEà‰D$$E¨ÇD$‹U‰D$Eä‰D$‹E‰T$‹U‰D$ ‹E ‰T$‰D$‹E‰$è_‹Mà…ɉE ‰UuE‹Uä‹E$‰PE ‰$è^ßþÿ‰ÆE‰$èQßþÿƒþÿ”ƒøÿ”À8Âuƒ ‹E ‹UÄŒ[^_]à ë¿U‰åWVSƒì,‹E(ƒÀl‰$蹋U$‰Æ•ƒàðè•ÕýÿM ‰ $|$èæÞþÿƒçð‰ÃE‰$èÖÞþÿƒûÿ”ƒøÿ”À8Âu‹U,ƒ ‹E ‹Ueô[^_]ÃU ‰$è§Þþÿ‹]$…ÛtÚ‰}Ü1Û‹U ÇEä‰Çë‹Eä‹M܉ƒÀƒÃ9]$‰Eäv/‹š‰ù¶8ÈtÝ‹¾À‰U؉D$‰4$ÿQ‰ù‹UØ8ÁtƒÃ9]$wу}ä‹}܆ÀÇEà‹»‹U ‹‚‰$èöpþÿ‰ú‹} ‰Æ´&‹š‹‡‰U؉$è×pþÿ‹UØ9ÆGðƒÃ;]ärß‹E ‰×…Àt‹P;P ƒlƒÂ‰PÇEÿÿÿÿƒEà9uàƒúþÿÿM ‰ $èµÝþÿ‰ÃE‰$è¨Ýþÿƒûÿ”ƒøÿ”À8„Îþÿÿ1ö·‹U ‹‹Mà‹‚¶ˆEÜE ‰$èrÝþÿ8EÜt}ƒmä‹Uä‹—‰9uäwʃ}ä‡ÿÿÿƒ}ä…‚þÿÿ‹E …Àt‹P;P ƒÔƒÂ‰PÇEÿÿÿÿ‹‹M ‹]à‹ƒÃ‰$‰Eàèçoþÿ9ÉÆr29ó…;þÿÿ‹‹E‰é5þÿÿt&ƒÆ늃‰PÇEÿÿÿÿƒÃ9ósÎE ‰$èÌÜþÿU‰$‰Eäè¾Üþÿƒ}äÿ”ƒøÿ”À8Ât¤‹MàE ¶ ‰$ˆMäè˜Üþÿ8EäuŠ‹E …Àt®‹P;P r™‹‰$ÿR(ë•ÇEàéÿÿÿ‹‰$ÿR(éþÿÿ‹‰$ÿR(é%ÿÿÿU‰åWVS켋u‹] ~l‰<$è#‰<$‰…tÿÿÿèÕ‹•tÿÿÿ‹B‹”‰U€‹˜‰U„‹œ‰Uˆ‹ ‰UŒ‹¤‰U‹¨‰U”‹¬‰U˜‹°‰Uœ‹´‰U ‹¸‰U¤‹¼‰U¨‹À‰U¬‹Pd‰U°‹Ph‰U´‹Pl‰U¸‹Pp‰U¼‹PtÇEà‰UÀ‹Px‰UÄ‹P|‰UÈ‹€‰UÌ‹„‰UЋˆ‰UÔ‹Œ‹€‰t$ ÇD$ ‰UØ‹U‰EÜEà‰D$$E€‰D$Eä‰D$‹E‰T$‹U‰D$ ‹E ‰T$‰D$‹E‰$èê ‰U‹Uà‰E …ÒuE‹Uä‹E$‰PE ‰$èéÚþÿ‰ÆE‰$èÜÚþÿƒþÿ”ƒøÿ”À8Âuƒ ‹E ‹Uļ[^_]à ë¿U‰åWVSì‹]} ƒÃl‰$èƒÿ‰$1Û‰…,ÿÿÿè3‰Æ‹E(‰$èNmþÿ‹U$ÇEä‰ÿÿÿƒÂ‰•(ÿÿÿ‰…0ÿÿÿ´&‰<$èHÚþÿ‰ÃE‰$è;Úþÿƒûÿ”ƒøÿ”À8„ϋ•0ÿÿÿ9•ÿÿÿ‹E䃽…À…µ‹U(•ÿÿÿ¶ ¶Ù‰4ÿÿÿ¶„„À„Ü<%…£ƒ…ÿÿÿ‹E(‹ÿÿÿ¶ ¶Ñ¶„„À„öùÿÿ‹•lþÿÿ‹M$‹B‹U‹@‰T$‹U‰L$‹M‰D$ Eä‰D$‹E‰T$‹U‰ $‰D$ ‹E ‰T$‰D$è6øÿÿ‰…Lÿÿÿ‰•Pÿÿÿ‰·…Pÿÿÿf‰FéÔøÿÿ‰4$è@¸þÿ‹ÇD$‰<$·À‰D$ÿR„À„©øÿÿ‹EU܉T$‹UMä‰L$$‹MÇD$‰D$ ‹E‰T$‹U‰ $ÇD$UL‰D$ ‹E ‰T$‰D$èõòÿÿ‰•@ÿÿÿ‰‰…<ÿÿÿ·…@ÿÿÿf‰F‰4$è´·þÿf‰…vþÿÿE‰$袷þÿfƒ½vþÿÿÿ”Âfƒøÿ”À8„øÿÿ‹Uä…Ò… øÿÿƒ}Ü…ÿ÷ÿÿ‰4$èk·þÿf‰…vþÿÿ‹ÇD$-‰<$ÿP(f9…vþÿÿ…WUä‹M‰T$(‹UE܉D$‹EÇD$ ‰L$$‰T$‹U‰D$ ‹E ÇD$ÇD$‰T$‹U‰D$‰$èsïÿÿM䉉•8ÿÿÿU܉…4ÿÿÿ·…8ÿÿÿf‰F‹E‰T$‹U‰L$(‹MÇD$ ‰D$$‹E‰T$‹UÇD$;ÇD$‰D$ ‹E ‰T$‰ $‰D$èïÿÿ‰…,ÿÿÿ‰•0ÿÿÿ‰·…0ÿÿÿf‰Féôöÿÿ‹•lþÿÿMä‹B‹PH‰•üþÿÿ‹PL‰•ÿÿÿ‹PP‰•ÿÿÿ‹PT‰•ÿÿÿ‹PX‰• ÿÿÿ‹P\‹@`‰L$$ÇD$‰•ÿÿÿ‹U‰…ÿÿÿ‹E‰T$‹U‰D$ …üþÿÿ‰D$‹E$‰T$‹UƒÀ‰D$‹E‰$‰D$ ‹E ‰D$èïðÿÿ‰EÔ‰U؉·EØf‰FéFöÿÿ‹•lþÿÿMä‹B‹”‰•°þÿÿ‹˜‰•´þÿÿ‹œ‰•¸þÿÿ‹ ‰•¼þÿÿ‹¤‰•Àþÿÿ‹¨‰•Äþÿÿ‹¬‰•Èþÿÿ‹°‰•Ìþÿÿ‹´‰•Ðþÿÿ‹¸‰•Ôþÿÿ‹¼‹€À‰L$$ÇD$ ‰•Øþÿÿ‹U‰…Üþÿÿ‹E‰D$ …°þÿÿ‰D$‹E$ƒÀ‰D$‹E‰D$ ‹E ‰T$‹U‰D$‰T$‹U‰$èðïÿÿ‰EĉUȉ·EÈf‰FéGõÿÿ‹•lþÿÿ‹M$‹B‹U‹@‰T$‹U‰L$‹M‰D$ Eä‰D$‹E‰T$‹U‰ $‰D$ ‹E ‰T$‰D$è?ôÿÿ‰E´‰U¸‰·E¸f‰FéæôÿÿEä‹U‰D$(‹E$‹MÇD$ ‰T$$‹UƒÀ ‰D$‹EÇD$‰T$‹UÇD$‰D$ ‹E ‰ $‰T$‰D$èƒìÿÿ‰E¬‰U°‰·E°f‰Fézôÿÿ‰4$èæ³þÿ‹ÇD$ ‰<$·À‰D$ÿR„À„k‹M$‹E ƒÁ …Àt‹P;P ƒüƒÂ‰PfÇEÿÿ‹UEä‰D$(‹E‰L$‹MÇD$ ‰T$$‹U‰D$ ‹E ÇD$ ÇD$‰T$‹U‰D$‰ $‰T$èÑëÿÿ‰E¤‰U¨‰·E¨f‰FéÈóÿÿUä‹M‰T$(‹UEà‰D$‹EÇD$ ‰L$$‰T$‹U‰D$ ‹E ÇD$ ÇD$‰T$‹U‰D$‰$èhëÿÿ‰…|ÿÿÿ‰U€‰·E€f‰F‹Eä…À…Vóÿÿ‹Eà‹M$ƒè‰AéEóÿÿ‰4$è±²þÿ‹ÇD$‰<$·À‰D$ÿR0< …óÿÿ‰4$èJéóÿÿ‰4$è}²þÿ‹ÇD$‰<$·À‰D$ÿR0< …æòÿÿëÊEä‹U‰D$(‹E$‹MÇD$ ‰T$$‹UƒÀ ‰D$‹EÇD$‰T$‹UÇD$ ‰D$ ‹E ‰ $‰T$‰D$è…êÿÿ‰Eœ‰U ‰·E f‰Fé|òÿÿ‰4$èè±þÿf‰…vþÿÿ‹ÇD$+‰<$ÿP(f9…vþÿÿ…Pòÿÿéxúÿÿ‹‰$ÿR(éòòÿÿ‹‰dþÿÿ‰$ÿR(‹dþÿÿéñýÿÿU‰åWVSƒì\‹E(ƒÀl‰$è9׋U$‰EÜÕƒàðè´§ýÿM ‰ $}èV±þÿt$‰<$ƒæð‰ÃèE±þÿfƒûÿ”Âfƒøÿ”À8Â…71ÛÇEàÇEäE ‰$è±þÿU‰$‰Çè±þÿfƒÿÿ”Âfƒøÿ”À8„ð} ‰<$èæ°þÿ…Ûf‰EØ„΋EàÇE܉uÀÀ‰EÔ1Àët&ƒE܃À9ØsN‹MÀ…‹} Ñ‹1Uä‹4·‰U´‰uÄ‹uà;2sÑ‹UÄ‹}Ô·uØf94:tQ‹UÀƒë‹uä9Ø‹<š‰9‹}´‹ ž‰r²;]Ü‹uÀ„Z‹U …Òt‹B;B ƒžƒÀ‰BfÇEÿÿƒEàéÿÿÿvƒÀéoÿÿÿƒûu‹Eä‹Uà9„+9P„"‹M,‹E ‹Uƒ eô[^_]ÃE ‰$èí¯þÿ‹M$ɉMä„°þÿÿ1Û1ÿ‹U ‰]à‰Ã‰uØ‹uÜë‹Eà‹M؉<ƒÀƒÇ;}ä‰Eàs-‹º·f9ØtÞ‹·À‰UЉD$‰4$ÿQ‹UÐf9ÃtăÇ;}ärÓ‹]à‹uØ…Û„¼‹U …Òt‹B;B ƒœƒÀ‰BfÇEÿÿƒàð蛥ýÿ‰ò‹u |$ƒçð‰}à‰}ä1ÿ´&‹º‹†‰UЉ$è×Bþÿ‹Mà‹UЉ¹ƒÇ9ûw߉ÖÇEàéâýÿÿƒû…Ðþÿÿ‹Mä‹}à99…Þþÿÿ‹‰Â+U$9E$F‹U‰‹E ‹Ueô[^_]ˉ$ÿP(é]ÿÿÿÇEàÇEäé‹ýÿÿ‹‰$ÿP(é[þÿÿU‰åSƒì$‹E‹M$‹]‹‰L$‹M ‰\$‹]‰$‰L$‹M‰\$‰L$‹M‰L$ ‹M ‰L$ÿRƒÄ$[]ÃU‰åSƒì$‹E‹M$‹]‹‰L$‹M ‰\$‹]‰$‰L$‹M‰\$‰L$‹M‰L$ ‹M ‰L$ÿR ƒÄ$[]ÃU‰åSƒì$‹E‹M$‹]‹‰L$‹M ‰\$‹]‰$‰L$‹M‰\$‰L$‹M‰L$ ‹M ‰L$ÿRƒÄ$[]ÃU‰åWVSƒì\¶E‹] ‹}$ˆEÔ‹EƒÀl‰$èÜÒ9û‰Æ„¾UÔ‰UÐé¶¶ƒÃ9߄嶶ȉMÔ¶”„Ò„ €úO…;ƒÃ9ß„¸¶ ¶ÁˆMljEÔ¶„„À„,¾Ê¾À‹U‹‰L$‹M‰D$‹EЉUÀ‹U‰L$‹MÀ‰D$‹E ‰T$ ‹U‰D$‰T$‹U‰$ÿQ‰Eà‰Uä‰E ¶EäˆEƒÃ9ßt@¶ ¶Ñ¶„„Àt><%„6ÿÿÿ€}¶uÖ‹E ‹H;HƒÝƒÃˆƒ@9ßuÁ‹E ‹UƒÄ\[^_]Ãf‹¾É‰UÌÇD$‰L$‰4$ÿP ‹UÌ„Àt©ˆ„똶‹¾ÀÇD$‰D$‰4$ÿR 1ɉÂ1À„Ò„ÿÿÿ‹EÔ€úOˆ”„Åþÿÿ€úE„¼þÿÿ¾Â1Ééßþÿÿt&‹¾MLjUÌÇD$‰4$‰L$ÿP ¶UÌ„Àu ¾Ê1Àé­þÿÿv‹MÔˆ„é•þÿÿ‹¶Ò‰T$‰$ÿQ4ƒÀ…ÒþÿÿÆEéÉþÿÿU‰åVSƒì ‹E¾M¾] ¾u$‹‰L$‹M‰\$‹]‰t$‰$‰L$ ‹M ‰\$‹]‰L$‰\$ÿRƒÄ [^]ÃU‰åWVSìÌ‹E‹}¶M ‹] ‰…Pÿÿÿ¶E$ƒÇlˆVÿÿÿ‰<$ˆ…WÿÿÿèVЉ<$‰ÆèŒÏ€~‰Ç„ð¶FB€½WÿÿÿˆEä„ö…Wÿÿÿ¶VÿÿÿÆEçˆEåˆMæ‹EÇD$€‰<$‰D$Eä‰D$ …dÿÿÿ‰D$‰…Lÿÿÿ覟þÿ‹…Lÿÿÿ‰Æ‹ƒÆ‘ÿþþþ÷Ñ!Ê €€té‰ÑÁé÷€€DÑNDñÒ‹•PÿÿÿƒÞ)Ƅ҉×u&‹ ‰•Lÿÿÿ‰t$‰D$‰$ÿQ0‹•Lÿÿÿ9ƸEø‰øÄ̈‰Ø[^_]öVÿÿÿÆEæˆMåéBÿÿÿ¶‰4$è«þÿ‹ÇD$%‰4$ÿPé÷þÿÿU‰åWVSƒì\·E‹] ‹}$f‰EÔ‹EƒÀl‰$èkÏ9û‰Æ„ ·MÔ‰MÔë6€}·u"‹U ‹J;Jƒ f‰ƒÁ‰Jfƒøÿ„ñƒÃ9߄̋ÇD$·‰4$‰T$ÿP0<%u¯ƒÃ9ß„¦‹ÇD$·‰4$‰T$ÿP0€{tæÿ¶D3‹]ø‹uü‰ì]É$èæþÿ‹‰ò¾ò‰u ‹uü‰]‹]ø‹@‰ì]ÿà蓞U‰åƒì8‹E‰]ô¶M ‰uø¶U‰}ü‹X|…ÛtT¶ñ¶„3„Àt‹]ô‹uø‹}ü‰ì]Ãv‹¾ú¾ÉˆUä‰|$‰L$‰$ÿP ¶Uä8Âtψ„3‹]ô‹uø‹}ü‰ì]ÃèžU‰å‹E]‹@ÃU1À‰å‹U]öBDÂÃU‰å‹E]ö@•ÀÃU‰å‹E]‹@ÃU‰å‹E]‹@ƒàÃU‰å‹E]ö@•ÀÃU‰å‹E]‹@pÃU‰å‹E]ö@•ÀÃU‰åSƒì‹]€{vt·CtƒÄ[]ö‹C|…Àt‹ÇD$ ‰$ÿR(ÆCvf‰CtƒÄ[]Ãè6U‰å‹E]‹@…À”ÀÃU‰å‹E]‹@xÃU‰åƒì‹E¶U ‹@|…Àt‹¾Ò‰U ‰E‹A(ÉÿàèæœU‰åSƒì‹E·U ¶M‹@|…Àt‹¾É·Ò‰M‰U ‰E‹C0ƒÄ[]ÿàè§œU‰å‹E]‹@ÃU1À‰å‹U]öBDÂÃU‰å‹E]ö@•ÀÃU¸, M‰å]ÃU‰åEøSìĉEÔE´‰$ÇḚ´KÇEÐPÔKÇEØô·G‰eÜè­“ýÿ‹UÇE¸ÿÿÿÿƒÂl‰U”‰$èUÈÇ$ŒTL‰E„膪þÿ‹M‰E˜‹Al‹]˜‹P š‹‰]¨…À„ý ‰EŒƒÀ8‰E€‹EŒ‹X …Û„Š‹EŒ‹UŒÇEð|TLƒx(•…gÿÿÿ€z…ƒEìÇEì|TLÇD$ ‰$ÇE¸èí'‹]Œ‹MŒÇ…|ÿÿÿÇ…xÿÿÿ‹C4ƒÁ9‰MˆÆ…wÿÿÿ‰EèÇ…hÿÿÿÇE”Ç…pÿÿÿÆ…fÿÿÿ‹•xÿÿÿÆE˜¾Dèƒø‡Üÿ$…HM‹ˆTL+E€¶‹EìˆU˜‹PôHôZ;Y‰]¨w‹I…É~‹E¨Uì‰$ÇE¸‰D$è;'‹Eì‹Pô¶M˜ˆ ‹UìBô=pTL…Ä ƒE”‹E …Àt‹P;P ƒÄ ƒÂ‰PÇEÿÿÿÿE ‰$ÇE¸è¡þÿU‰E¨‰$è ¡þÿƒ}¨ÿ”ƒøÿ”À8„ü] ‰$ÇE¸èâ þÿˆE¨¾À‰D$‹EˆÇD$ ‰$èÕ4þÿ…À…ÿÿÿ‹UŒ¶E¨8B„…‹]Œ€{„¨¶E¨8C…›€½wÿÿÿ…Ž‹]”…Û„r‹Eð‹PôHôZ;Y‰]¨w‹I…É~‹E¨Uð‰$ÇE¸‰D$è&‹Eð‹Pô¶M”ˆ ‹UðBô=pTL…ãÇE”éÔþÿÿ‹UŒ‹B …À…ó‹UŒ‹R(…Ò…k‹MŒ‹A …À„z‹UŒ‹Z(…Û…lÆE˜Æ…fÿÿÿƒ½|ÿÿÿƒ…xÿÿÿƒ…|ÿÿÿ€}˜…ëýÿÿƒ½pÿÿÿ†q€}˜„b€½fÿÿÿ„ÿ‹MŒ‹I$‰MÇE¨t&E ‰$ÇE¸ènŸþÿU‰E˜‰$è`Ÿþÿƒ}˜ÿ”ƒøÿ”À8Ât‹pÿÿÿ9M¨‚‹pÿÿÿ9]¨…ñ‹Eìƒxôv`EìÇD$ÇD$0‰$ÇE¸èþÿ…Àt:ƒøÿ„q‹UìÇD$ ‹RôÇD$ÇE¸9ÐG‰D$Eì‰$èh%€½fÿÿÿ…¥‹Eð‹Hô…ÉtQ¾E”¾•hÿÿÿ€½wÿÿÿÇE¸E‰D$Eð‰$èÆ&‹]ŒEð‰D$‹C ‰D$‹C‰$蚘„Àu‹E ƒ€½wÿÿÿ„·‹MŒ‹U”9Q,„¨t&‹] ƒ E ‰$ÇE¸è(žþÿ‰E¨E‰$èžþÿƒ}¨ÿ”ƒøÿ”À8Âu‹E ƒ‹Eì‹U ‹Mƒè =pTL‰U¨‰M¬…‹EðºpTLƒè 9Â…¸E´‰$èXýÿ‹E¨‹U¬ÄÄ[]ËEö@ „Ô‹UŒÇE¨‹R‰UM ‰ $ÇE¸èŠþÿ]‰E˜‰$è|þÿƒ}˜ÿ”ƒøÿ”À8Ât ‹E9E¨‚ñ‹E9E¨t‹U¨ÆE˜…Ò…nýÿÿ‹Eö@ …aýÿÿÆE˜éXýÿÿE ‰$ÇE¸è þÿU‰E¨‰$èþÿƒ}¨ÿ”ƒøÿ”À8Â…–ÆE˜ƒ½xÿÿÿ„3ýÿÿE ‰$ÇE¸èÚœþÿU‰E¨‰$èÌœþÿƒ}¨ÿ”ƒøÿ”À8„ÝüÿÿM ‰ $謜þÿ‹]„¶À‹SöB „¿üÿÿ‹U …Òt¦‹B;B ƒZƒÀ‰BÇEÿÿÿÿë‹ÆE˜éuÿÿÿU ‰$ècœþÿ‹MŒ‹]¨‹Q8…úþÿÿ‹E …Àt‹P;P ƒŸƒÂ‰PÇEÿÿÿÿƒE¨éŒþÿÿ€½wÿÿÿ…nûÿÿ‹B,…À~‹M”Æ…wÿÿÿÇE”‰hÿÿÿé¯úÿÿÆE˜‹E칋Xô…Û¶]˜EˈM˜éþûÿÿ‹xÿÿÿ…É„þÿÿƒ½pÿÿÿ‡þÿÿƒ½xÿÿÿ„°ƒ½xÿÿÿÆE˜…Åûÿÿ¶Eë<„çýÿÿ€½gÿÿÿ„µûÿÿ<…­ûÿÿéÍýÿÿ¶gÿÿÿƒñˆM˜éûÿÿM ‰ $è\›þÿ‹]„¶Ð‹CöP „Lþÿÿ‹U …Ò„Çþÿÿ‹B;B ƒIƒÀ‰BÇEÿÿÿÿÆE˜é#þÿÿM ‰ $ÇE¸è ›þÿ]‰E¨‰$èüšþÿƒ}¨ÿ”ƒøÿ”À8„ØúÿÿE ‰$èÜšþÿ‹MŒ‰Â‹A8…½úÿÿ‹U ‹Y …Ò‰pÿÿÿ„}ýÿÿ‹B;B ƒšƒÀ‰BÇEÿÿÿÿÆE˜é¼úÿÿE ‰$ÇE¸脚þÿU‰E¨‰$èvšþÿƒ}¨ÿ”ƒøÿ”À8„`úÿÿM ‰ $èVšþÿ‹]Œ‰Â‹C$8…Eúÿÿ‹U ‹C(…Ò‰…pÿÿÿ„Múÿÿ‹B;B ƒþƒÀ‰BÇEÿÿÿÿÆE˜Æ…fÿÿÿé/úÿÿÆE˜é þÿÿ€½gÿÿÿ…Güÿÿ€}è„=üÿÿ€}ê„3üÿÿÆE˜éúÿÿ‹UŒÆ…gÿÿÿÇEð|TL€z„}÷ÿÿEðÇD$ ‰$ÇE¸èqé^÷ÿÿEì‰D$‹E$ÇE¸‰$èà éDûÿÿ] ‰$ès™þÿ‹M‹U¨8…$ûÿÿ‹E …Àt‹P;P ƒõƒÂ‰PÇEÿÿÿÿƒE¨é»ùÿÿ€}˜…úÿÿéìúÿÿ‹‰$‹@(ÇE¸ÿÐé–üÿÿ‹EìƒxüxEì‰$ÇE¸è;‹Eì€80„4úÿÿƒxüxEì‰$ÇE¸èEìÇD$-ÇD$ ÇD$ÇD$‰$ÇE¸èe‹EìÇ@üÿÿÿÿéÛùÿÿ‹]Œ‹[‰]éüøÿÿ‹Eì‹@ôƒèéùÿÿÇ$DÇE¸è§ìÆ@Æ@Æ@0Æ@1Æ@2Æ@3Æ@4Æ@5Æ@6Æ@7‹M”Ç@ÇhMÇ@Ç@ Æ@Ç@Ç@Ç@Ç@ Ç@$Ç@(Ç@,Æ@C‰…lÿÿÿ‰L$‰$ÇE¸èßÒ‹E˜‹•lÿÿÿ‹M‰D$‰T$‹AlÇE¸ÿÿÿÿ‰$èY‹]¨‹é(õÿÿ‹‰$‹B(ÇE¸ÿÐéQûÿÿ‹]¨Ç@‰ZôÆD é%öÿÿ‹‰$‹B(ÇE¸ÿÐé,öÿÿ‹‰$‹B(ÇE¸ÿÐéûýÿÿ‹]¨Ç@‰ZôÆD ÇE”éßõÿÿ‹‰$‹@(ÇE¸ÿÐéòüÿÿ‹‰$‹@(ÇE¸ÿÐéVüÿÿƒÅ‹M¼‹E¸‰M¨ÿ$…\M‹‰$‹@(ÇE¸ÿÐé§ûÿÿEì‰$èx%Eð‰$èm%‹]¨ÇE¸ÿÿÿÿ‰$è;‹ýÿÇE¸èò‹U¨ÇE¸ÿÿÿÿ‰$è‹ýÿ‹]¨‰$è’lÿÿÿt‹lÿÿÿ‹‰$‹@ÇE¸ÿÐÇE¸èFú‹M¨‰ $è[ïëçƒ=(vMuS‹PJÿ‰H…ÒIøÿÿU÷‰T$‰$èÐé5øÿÿƒ=(vMu/‹PJÿ‰H…Ò.øÿÿUö‰T$‰$è¢éøÿÿƒÊÿðÁP묃ÊÿðÁPëÐU‰åEøSìĉEÔE´‰$ÇḚ´KÇEÐ8ÔKÇEØÅG‰eÜè†ýÿ‹UÇE¸ÿÿÿÿƒÂl‰U”‰$è5»Ç$TL‰E„èfþÿ‹M‰E˜‹Al‹]˜‹P š‹‰]¨…À„ý ‰EŒƒÀ8‰E€‹EŒ‹X …Û„Š‹EŒ‹UŒÇEð|TLƒx(•…gÿÿÿ€z…ƒEìÇEì|TLÇD$ ‰$ÇE¸èÍ‹]Œ‹MŒÇ…|ÿÿÿÇ…xÿÿÿ‹C4ƒÁ9‰MˆÆ…wÿÿÿ‰EèÇ…hÿÿÿÇE”Ç…pÿÿÿÆ…fÿÿÿ‹•xÿÿÿÆE˜¾Dèƒø‡Üÿ$… M‹ˆTL+E€¶‹EìˆU˜‹PôHôZ;Y‰]¨w‹I…É~‹E¨Uì‰$ÇE¸‰D$è‹Eì‹Pô¶M˜ˆ ‹UìBô=pTL…Ä ƒE”‹E …Àt‹P;P ƒÄ ƒÂ‰PÇEÿÿÿÿE ‰$ÇE¸è÷“þÿU‰E¨‰$èé“þÿƒ}¨ÿ”ƒøÿ”À8„ü] ‰$ÇE¸è“þÿˆE¨¾À‰D$‹EˆÇD$ ‰$èµ'þÿ…À…ÿÿÿ‹UŒ¶E¨8B„…‹]Œ€{„¨¶E¨8C…›€½wÿÿÿ…Ž‹]”…Û„r‹Eð‹PôHôZ;Y‰]¨w‹I…É~‹E¨Uð‰$ÇE¸‰D$è÷‹Eð‹Pô¶M”ˆ ‹UðBô=pTL…ãÇE”éÔþÿÿ‹UŒ‹B …À…ó‹UŒ‹R(…Ò…k‹MŒ‹A …À„z‹UŒ‹Z(…Û…lÆE˜Æ…fÿÿÿƒ½|ÿÿÿƒ…xÿÿÿƒ…|ÿÿÿ€}˜…ëýÿÿƒ½pÿÿÿ†q€}˜„b€½fÿÿÿ„ÿ‹MŒ‹I$‰MÇE¨t&E ‰$ÇE¸èN’þÿU‰E˜‰$è@’þÿƒ}˜ÿ”ƒøÿ”À8Ât‹pÿÿÿ9M¨‚‹pÿÿÿ9]¨…ñ‹Eìƒxôv`EìÇD$ÇD$0‰$ÇE¸èæsþÿ…Àt:ƒøÿ„q‹UìÇD$ ‹RôÇD$ÇE¸9ÐG‰D$Eì‰$èH€½fÿÿÿ…¥‹Eð‹Hô…ÉtQ¾E”¾•hÿÿÿ€½wÿÿÿÇE¸E‰D$Eð‰$見]ŒEð‰D$‹C ‰D$‹C‰$èz‹„Àu‹E ƒ€½wÿÿÿ„·‹MŒ‹U”9Q,„¨t&‹] ƒ E ‰$ÇE¸è‘þÿ‰E¨E‰$èúþÿƒ}¨ÿ”ƒøÿ”À8Âu‹E ƒ‹Eì‹U ‹Mƒè =pTL‰U¨‰M¬…‹EðºpTLƒè 9Â…¸E´‰$è8‚ýÿ‹E¨‹U¬ÄÄ[]ËEö@ „Ô‹UŒÇE¨‹R‰UM ‰ $ÇE¸èjþÿ]‰E˜‰$è\þÿƒ}˜ÿ”ƒøÿ”À8Ât ‹E9E¨‚ñ‹E9E¨t‹U¨ÆE˜…Ò…nýÿÿ‹Eö@ …aýÿÿÆE˜éXýÿÿE ‰$ÇE¸èþÿU‰E¨‰$èòþÿƒ}¨ÿ”ƒøÿ”À8Â…–ÆE˜ƒ½xÿÿÿ„3ýÿÿE ‰$ÇE¸èºþÿU‰E¨‰$è¬þÿƒ}¨ÿ”ƒøÿ”À8„ÝüÿÿM ‰ $èŒþÿ‹]„¶À‹SöB „¿üÿÿ‹U …Òt¦‹B;B ƒZƒÀ‰BÇEÿÿÿÿë‹ÆE˜éuÿÿÿU ‰$èCþÿ‹MŒ‹]¨‹Q8…úþÿÿ‹E …Àt‹P;P ƒŸƒÂ‰PÇEÿÿÿÿƒE¨éŒþÿÿ€½wÿÿÿ…nûÿÿ‹B,…À~‹M”Æ…wÿÿÿÇE”‰hÿÿÿé¯úÿÿÆE˜‹E칋Xô…Û¶]˜EˈM˜éþûÿÿ‹xÿÿÿ…É„þÿÿƒ½pÿÿÿ‡þÿÿƒ½xÿÿÿ„°ƒ½xÿÿÿÆE˜…Åûÿÿ¶Eë<„çýÿÿ€½gÿÿÿ„µûÿÿ<…­ûÿÿéÍýÿÿ¶gÿÿÿƒñˆM˜éûÿÿM ‰ $è<Žþÿ‹]„¶Ð‹CöP „Lþÿÿ‹U …Ò„Çþÿÿ‹B;B ƒIƒÀ‰BÇEÿÿÿÿÆE˜é#þÿÿM ‰ $ÇE¸èêþÿ]‰E¨‰$èÜþÿƒ}¨ÿ”ƒøÿ”À8„ØúÿÿE ‰$è¼þÿ‹MŒ‰Â‹A8…½úÿÿ‹U ‹Y …Ò‰pÿÿÿ„}ýÿÿ‹B;B ƒšƒÀ‰BÇEÿÿÿÿÆE˜é¼úÿÿE ‰$ÇE¸èdþÿU‰E¨‰$èVþÿƒ}¨ÿ”ƒøÿ”À8„`úÿÿM ‰ $è6þÿ‹]Œ‰Â‹C$8…Eúÿÿ‹U ‹C(…Ò‰…pÿÿÿ„Múÿÿ‹B;B ƒþƒÀ‰BÇEÿÿÿÿÆE˜Æ…fÿÿÿé/úÿÿÆE˜é þÿÿ€½gÿÿÿ…Güÿÿ€}è„=üÿÿ€}ê„3üÿÿÆE˜éúÿÿ‹UŒÆ…gÿÿÿÇEð|TL€z„}÷ÿÿEðÇD$ ‰$ÇE¸èQé^÷ÿÿEì‰D$‹E$ÇE¸‰$è£ÿéDûÿÿ] ‰$èSŒþÿ‹M‹U¨8…$ûÿÿ‹E …Àt‹P;P ƒõƒÂ‰PÇEÿÿÿÿƒE¨é»ùÿÿ€}˜…úÿÿéìúÿÿ‹‰$‹@(ÇE¸ÿÐé–üÿÿ‹EìƒxüxEì‰$ÇE¸èö‹Eì€80„4úÿÿƒxüxEì‰$ÇE¸è÷õEìÇD$-ÇD$ ÇD$ÇD$‰$ÇE¸èEú‹EìÇ@üÿÿÿÿéÛùÿÿ‹]Œ‹[‰]éüøÿÿ‹Eì‹@ôƒèéùÿÿÇ$DÇE¸è‡ßÆ@Æ@Æ@0Æ@1Æ@2Æ@3Æ@4Æ@5Æ@6Æ@7‹M”Ç@ÇhMÇ@Ç@ Æ@Ç@Ç@Ç@Ç@ Ç@$Ç@(Ç@,Æ@C‰…lÿÿÿ‰L$‰$ÇE¸èÏÏ‹E˜‹•lÿÿÿ‹M‰D$‰T$‹AlÇE¸ÿÿÿÿ‰$è9ù‹]¨‹é(õÿÿ‹‰$‹B(ÇE¸ÿÐéQûÿÿ‹]¨Ç@‰ZôÆD é%öÿÿ‹‰$‹B(ÇE¸ÿÐé,öÿÿ‹‰$‹B(ÇE¸ÿÐéûýÿÿ‹]¨Ç@‰ZôÆD ÇE”éßõÿÿ‹‰$‹@(ÇE¸ÿÐéòüÿÿ‹‰$‹@(ÇE¸ÿÐéVüÿÿƒÅ‹M¼‹E¸‰M¨ÿ$…4M‹‰$‹@(ÇE¸ÿÐé§ûÿÿEì‰$èXEð‰$èM‹]¨ÇE¸ÿÿÿÿ‰$è~ýÿÇE¸èÿä‹U¨ÇE¸ÿÿÿÿ‰$èý}ýÿ‹]¨‰$èr⃽lÿÿÿt‹lÿÿÿ‹‰$‹@ÇE¸ÿÐÇE¸è&í‹M¨‰ $è;âëçƒ=(vMuS‹PJÿ‰H…ÒIøÿÿU÷‰T$‰$è°ùé5øÿÿƒ=(vMu/‹PJÿ‰H…Ò.øÿÿUö‰T$‰$è‚ùéøÿÿƒÊÿðÁP묃ÊÿðÁPëÐU‰åSƒì4‹E‹M(‹]‹‰L$ ‹M$‰\$‹]‰$‰L$‹M ‰\$‰L$¶M‰L$‹M‰L$ ‹M ‰L$ÿR ƒÄ4[]ÃU‰åSƒì4‹E‹M(‹]‹‰L$ ‹M$‰\$‹]‰$‰L$‹M ‰\$‰L$¶M‰L$‹M‰L$ ‹M ‰L$ÿRƒÄ4[]ÃU‰å숶EUø‰UÔÇḚ´KÇEÐhÔKˆE›E´‰$ÇEØ?ÉG‰eÜè§xýÿ‹E ÇE¸ÿÿÿÿƒÀl‰$èR­€}›ÇEð|TL‰Eœ„‹UEð‹M$‰D$‹E ÇE¸‰T$ ‹U‰L$‹M‰D$‹E ‰T$‹U‰L$‰D$‰$è{ñÿÿ‰U‹Uð‰E Bô‹Rô…Ò‰U°„•‹M(ÇD$‰T$ÇE¸‰ $è3‹E(‹‰E ‹@ü…Àx‹U(‰$è9ñ‹M(‹ ‰M ‹Eð‹Uœ‰E¤E°‰E°¶B<„Æ„À„¦‹Mœ‹U ‹‹M°‰T$ ‹U¤‰L$‹Mœ‰T$‰ $‹@ÇE¸ÿЋEðƒè ‹U =pTL‹M‰U¨‰M¬…œE´‰$è xýÿ‹E¨‹U¬ÉÃf‹UEð‹M$‰D$‹E ÇE¸‰T$ ‹U‰L$‹M‰D$‹E ‰T$‹U‰L$‰D$‰$è=ãÿÿéÝþÿÿ‹UœÇE¸‰$膇þÿéCÿÿÿ‹E°+E¤‹M¤‰D$‹E ‰L$‰$è´þÿ‹Eðƒè éMÿÿÿƒ=(vMu%‹PJÿ‰H…ÒJÿÿÿU÷‰T$‰$èpöé6ÿÿÿƒÊÿðÁPëڃŋM¼Eð‰$‰M¨èM‹E¨ÇE¸ÿÿÿÿ‰$èzýÿU‰å숶EUøÇḚ´KÇEÐnÔK‰UÔˆE§E´ÇEØÜÊG‰e܉$è7výÿ€}§ÇEð|TL„¦‹U Eð‰D$‹E$ÇE¸‰T$‹U‰D$‹E‰T$‹U‰D$ ‹E ‰T$‹U‰D$‰$è#ïÿÿ‰E ‰UÇE¸è‘‰EìEì‰D$ ‹E$‰D$‹E(‰D$‹Eð‰$è¾m‹E ‹U‰E¨‹Eð‰U¬ƒè =pTLu]E´‰$è*výÿ‹E¨‹U¬ÉÃf‹U Eð‰D$‹E$ÇE¸‰T$‹U‰D$‹E‰T$‹U‰D$ ‹E ‰T$‹U‰D$‰$è]áÿÿéUÿÿÿƒ=(vMu!‹PJÿ‰H…ÒU÷‰T$‰$èÓôéyÿÿÿƒÊÿðÁPëރŋU¼Eð‰$‰U¨è°‹E¨ÇE¸ÿÿÿÿ‰$è~xýÿU‰åEøSìĉEÔE´‰$ÇḚ´KÇEÐàÏKÇEØ ×G‰eÜètýÿ‹UÇE¸ÿÿÿÿƒÂl‰U”‰$襩Ç$”TL‰Eèv‹þÿ‹M‰E˜‹Al‹]˜‹P š‹‰]¨…À„3 ‰EˆƒÀ<‰E€‹Eˆ‹X$…Û„Ž‹Eˆƒx,•…gÿÿÿ‹UˆÇEð|TL€z…ÙEìÇEì|TLÇD$ ‰$ÇE¸èÝ‹]ˆ‹MˆÇ…|ÿÿÿÇ…xÿÿÿ‹C8ƒÁ>‰M„Æ…wÿÿÿ‰EèÇ…hÿÿÿÇE”Ç…pÿÿÿÆ…fÿÿÿ‹•xÿÿÿÆE˜¾Dèƒø‡æÿ$…, M+E€‹ˆTLÑø¶‹EìˆU˜‹PôHôZ;Y‰]¨w‹I…É~‹E¨Uì‰$ÇE¸‰D$è)‹Eì‹Pô¶M˜ˆ ‹UìBô=pTL…æ ƒE”‹E …Àt‹P;P ƒæ ƒÂ‰PfÇEÿÿE ‰$ÇE¸èV‚þÿUf‰E¨‰$èG‚þÿfƒ}¨ÿ”Âfƒøÿ”À8„è] ‰$ÇE¸è‚þÿf‰E¨·À‰D$‹E„ÇD$ ‰$è`‘ýÿ…À… ÿÿÿ‹Eˆ·U¨f9P„o‹]ˆ€{„’·E¨f9C…„€½wÿÿÿ…w‹E”…À„o‹Eð‹PôHôZ;Y‰]¨w‹Y…Û~‹E¨Uð‰$ÇE¸‰D$è‹Eð‹Pô¶M”ˆ ‹UðBô=pTL…k ÇE”éÏþÿÿ‹Uˆ‹B$…À…ê‹Uˆ‹R,…Ò…e‹Mˆ‹A$…À„c‹Uˆ‹Z,…Û…UÆE˜Æ…fÿÿÿvƒ½|ÿÿÿƒ…xÿÿÿƒ…|ÿÿÿ€}˜…áýÿÿƒ½pÿÿÿ†\€}˜„#€½fÿÿÿ„j‹Mˆ‹I(‰MÇE¨E ‰$ÇE¸è©€þÿUf‰E˜‰$蚀þÿfƒ}˜ÿ”Âfƒøÿ”À8Ât‹pÿÿÿ9M¨‚‹pÿÿÿ9]¨…´‹Eìƒxôv*EìÇD$ÇD$0‰$ÇE¸èîaþÿ…À…fÿÿÿ…%‹EðƒxôtO¾E”¾•hÿÿÿ€½wÿÿÿÇE¸E‰D$Eð‰$èå‹]ˆEð‰D$‹C ‰D$‹C‰$è¹y„À„~€½wÿÿÿ„¾‹Mˆ‹U”9Q0„¯‹] ƒ E ‰$ÇE¸èþÿf‰E¨E‰$èŽþÿfƒ}¨ÿ”Âfƒøÿ”À8Âu‹E ƒ‹Eì‹U ‹Mƒè =pTL‰U¨‰M¬…­‹EðºpTLƒè 9Â…lE´‰$èzpýÿ‹E¨‹U¬ÄÄ[]ËEö@ „ö‹UˆÇE¨‹R‰UŒM ‰ $ÇE¸èü~þÿ]f‰E˜‰$èí~þÿfƒ}˜ÿ”Âfƒøÿ”À8Ât ‹EŒ9E¨‚‹EŒ9E¨t‹U¨ÆE˜…Ò…§ýÿÿ‹Eö@ …šýÿÿÆE˜é‘ýÿÿE ‰$ÇE¸è~þÿUf‰E¨‰$è€~þÿfƒ}¨ÿ”Âfƒøÿ”À8Â…²ÆE˜ƒ½xÿÿÿ„iýÿÿE ‰$ÇE¸èF~þÿUf‰E¨‰$è7~þÿfƒ}¨ÿ”Âfƒøÿ”À8„ýÿÿM ‰ $è~þÿ‹]·À‹‰D$ÇD$ ‰$ÿR„À„ãüÿÿ‹U …Òt”‹B;B ƒiƒÀ‰BfÇEÿÿéwÿÿÿÆE˜éaÿÿÿ¶U ‰$èµ}þÿ‹Mˆ‰Â‹]¨‹Af9X…Úþÿÿ‹E …Àt‹P;P ƒƒÂ‰PfÇEÿÿƒE¨éjþÿÿ€½wÿÿÿ…„ûÿÿ‹P0…Ò~‹M”Æ…wÿÿÿÇE”‰hÿÿÿéÁúÿÿÆE˜‹Eì¶]˜‹Hô…ɹEˈM˜éüÿÿ‹xÿÿÿ…É„üýÿÿƒ½pÿÿÿ‡ïýÿÿƒ½xÿÿÿ„ă½xÿÿÿÆE˜…ßûÿÿ¶Eë<„Åýÿÿ€½gÿÿÿ„Ïûÿÿ<…Çûÿÿé«ýÿÿ¶gÿÿÿƒñˆM˜é§ûÿÿM ‰ $è¬|þÿ‹]·À‹‰D$ÇD$ ‰$ÿR„À„!þÿÿ‹U …Ò„°þÿÿ‹B;B ƒfƒÀ‰BfÇEÿÿÆE˜éùýÿÿM ‰ $ÇE¸èL|þÿ]f‰E¨‰$è=|þÿfƒ}¨ÿ”Âfƒøÿ”À8„ÞúÿÿE ‰$è|þÿ‹Mˆ‰Â‹A f9…Âúÿÿ‹U ‹Y$…Ò‰pÿÿÿ„Lýÿÿ‹B;B ƒˆƒÀ‰BfÇEÿÿÆE˜éÅúÿÿE ‰$ÇE¸èÃ{þÿUf‰E¨‰$è´{þÿfƒ}¨ÿ”Âfƒøÿ”À8„cúÿÿM ‰ $è’{þÿ‹]ˆ‰Â‹C(f9…Gúÿÿ‹U ‹C,…Ò‰…pÿÿÿ„Oúÿÿ‹B;B ƒ+ƒÀ‰BfÇEÿÿÆE˜Æ…fÿÿÿé5úÿÿÆE˜éøýÿÿ€½gÿÿÿ…üÿÿ€}è„üÿÿ€}ê„ýûÿÿÆE˜é úÿÿÆ…gÿÿÿét÷ÿÿEì‰D$‹E$ÇE¸‰$èÝíé9ûÿÿ] ‰$èÝzþÿ‹U¨‹Mf9Q…ûÿÿ‹E …Àt‹P;P ƒnƒÂ‰PfÇEÿÿƒE¨éêùÿÿEðÇD$ ‰$ÇE¸è é÷ÿÿ€}˜…úÿÿéÂúÿÿ‹‰$‹@(ÇE¸ÿÐé‡üÿÿ‹]ˆ‹[ ‰]é‘ùÿÿ‹E ƒéwúÿÿƒøÿu ‹Eì‹@ôƒè‹UìÇD$ ‹RôÇD$ÇE¸9ÐG‰D$Eì‰$èYéÎùÿÿ‹EìƒxüxEì‰$ÇE¸èÙã‹Eì€80„´ùÿÿƒxüxEì‰$ÇE¸èµãEìÇD$-ÇD$ ÇD$ÇD$‰$ÇE¸èè‹EìÇ@üÿÿÿÿé[ùÿÿÇ$TÇE¸èaÍÆ@4Æ@5Æ@6Æ@7Æ@8Æ@9Æ@:Æ@;‹M”Ç@Ç(hMÇ@Ç@ Æ@fÇ@fÇ@Ç@Ç@Ç@ Ç@$Ç@(Ç@,Ç@0Æ@R‰…lÿÿÿ‰L$‰$ÇE¸èµÇ‹E˜‹•lÿÿÿ‹M‰D$‰T$‹AlÇE¸ÿÿÿÿ‰$èç‹]¨‹éîôÿÿ‹]¨Ç@‰ZôÆD éöÿÿ‹‰$‹B(ÇE¸ÿÐé öÿÿ‹‰$‹B(ÇE¸ÿÐéÛúÿÿ‹‰$‹@(ÇE¸ÿÐéhüÿÿ‹‰$‹B(ÇE¸ÿÐé‚ýÿÿ‹‰$‹@(ÇE¸ÿÐéÅüÿÿƒÅ‹M¼‹E¸‰M¨ÿ$…@ M‹‰$‹@(ÇE¸ÿÐéŠûÿÿ‹]¨Ç@‰ZôÆD ÇE”éRõÿÿƒ=(vMu{‹PJÿ‰H…ÒzøÿÿUö‰T$‰$èèéføÿÿƒ=(vMuW‹PJÿ‰H…Ò9øÿÿU÷‰T$‰$èâçé%øÿÿEì‰$èÒEð‰$èÇ‹]¨ÇE¸ÿÿÿÿ‰$è•kýÿƒÊÿðÁP넃ÊÿðÁPë¨ÇE¸èeÒ‹U¨ÇE¸ÿÿÿÿ‰$èckýÿ‹]¨‰$èØÏƒ½lÿÿÿt‹lÿÿÿ‹‰$‹@ÇE¸ÿÐÇE¸èŒÚ‹M¨‰ $è¡ÏëçU‰åEøSìĉEÔE´‰$ÇḚ´KÇEÐÈÏKÇEØ€äG‰eÜè=gýÿ‹UÇE¸ÿÿÿÿƒÂl‰U”‰$èEœÇ$˜TL‰Eè~þÿ‹M‰E˜‹Al‹]˜‹P š‹‰]¨…À„3 ‰EˆƒÀ<‰E€‹Eˆ‹X$…Û„Ž‹Eˆƒx,•…gÿÿÿ‹UˆÇEð|TL€z…ÙEìÇEì|TLÇD$ ‰$ÇE¸è}û‹]ˆ‹MˆÇ…|ÿÿÿÇ…xÿÿÿ‹C8ƒÁ>‰M„Æ…wÿÿÿ‰EèÇ…hÿÿÿÇE”Ç…pÿÿÿÆ…fÿÿÿ‹•xÿÿÿÆE˜¾Dèƒø‡æÿ$… M+E€‹ˆTLÑø¶‹EìˆU˜‹PôHôZ;Y‰]¨w‹I…É~‹E¨Uì‰$ÇE¸‰D$èÉú‹Eì‹Pô¶M˜ˆ ‹UìBô=pTL…æ ƒE”‹E …Àt‹P;P ƒæ ƒÂ‰PfÇEÿÿE ‰$ÇE¸èötþÿUf‰E¨‰$èçtþÿfƒ}¨ÿ”Âfƒøÿ”À8„è] ‰$ÇE¸è¾tþÿf‰E¨·À‰D$‹E„ÇD$ ‰$è„ýÿ…À… ÿÿÿ‹Eˆ·U¨f9P„o‹]ˆ€{„’·E¨f9C…„€½wÿÿÿ…w‹]”…Û„o‹Eð‹PôHôZ;Y‰]¨w‹I…É~‹E¨Uð‰$ÇE¸‰D$è ù‹Eð‹Pô¶M”ˆ ‹UðBô=pTL…k ÇE”éÏþÿÿ‹Uˆ‹B$…À…ê‹Uˆ‹B,…À…e‹Mˆ‹Y$…Û„c‹Uˆ‹Z,…Û…UÆE˜Æ…fÿÿÿvƒ½|ÿÿÿƒ…xÿÿÿƒ…|ÿÿÿ€}˜…áýÿÿƒ½pÿÿÿ†\€}˜„#€½fÿÿÿ„j‹Mˆ‹I(‰MÇE¨E ‰$ÇE¸èIsþÿUf‰E˜‰$è:sþÿfƒ}˜ÿ”Âfƒøÿ”À8Ât‹pÿÿÿ9M¨‚‹pÿÿÿ9]¨…´‹Eìƒxôv*EìÇD$ÇD$0‰$ÇE¸èŽTþÿ…À…fÿÿÿ…%‹EðƒxôtO¾E”¾•hÿÿÿ€½wÿÿÿÇE¸E‰D$Eð‰$è…ú‹]ˆEð‰D$‹C ‰D$‹C‰$èYl„À„~€½wÿÿÿ„¾‹Mˆ‹U”9Q0„¯‹] ƒ E ‰$ÇE¸è=rþÿf‰E¨E‰$è.rþÿfƒ}¨ÿ”Âfƒøÿ”À8Âu‹E ƒ‹Eì‹U ‹Mƒè =pTL‰U¨‰M¬…­‹EðºpTLƒè 9Â…lE´‰$ècýÿ‹E¨‹U¬ÄÄ[]ËEö@ „ö‹UˆÇE¨‹R‰UŒM ‰ $ÇE¸èœqþÿ]f‰E˜‰$èqþÿfƒ}˜ÿ”Âfƒøÿ”À8Ât ‹EŒ9E¨‚‹EŒ9E¨t‹U¨ÆE˜…Ò…§ýÿÿ‹Eö@ …šýÿÿÆE˜é‘ýÿÿE ‰$ÇE¸è/qþÿUf‰E¨‰$è qþÿfƒ}¨ÿ”Âfƒøÿ”À8Â…²ÆE˜ƒ½xÿÿÿ„iýÿÿE ‰$ÇE¸èæpþÿUf‰E¨‰$è×pþÿfƒ}¨ÿ”Âfƒøÿ”À8„ýÿÿM ‰ $èµpþÿ‹]·À‹‰D$ÇD$ ‰$ÿR„À„ãüÿÿ‹U …Òt”‹B;B ƒiƒÀ‰BfÇEÿÿéwÿÿÿÆE˜éaÿÿÿ¶U ‰$èUpþÿ‹Mˆ‰Â‹]¨‹Af9X…Úþÿÿ‹E …Àt‹P;P ƒƒÂ‰PfÇEÿÿƒE¨éjþÿÿ€½wÿÿÿ…„ûÿÿ‹@0…À~‹M”Æ…wÿÿÿÇE”‰hÿÿÿéÁúÿÿÆE˜‹Eì¹¶]˜‹Pô…ÒEˈM˜éüÿÿ‹xÿÿÿ…É„üýÿÿƒ½pÿÿÿ‡ïýÿÿƒ½xÿÿÿ„ă½xÿÿÿÆE˜…ßûÿÿ¶Eë<„Åýÿÿ€½gÿÿÿ„Ïûÿÿ<…Çûÿÿé«ýÿÿ¶gÿÿÿƒñˆM˜é§ûÿÿM ‰ $èLoþÿ‹]·À‹‰D$ÇD$ ‰$ÿR„À„!þÿÿ‹U …Ò„°þÿÿ‹B;B ƒfƒÀ‰BfÇEÿÿÆE˜éùýÿÿM ‰ $ÇE¸èìnþÿ]f‰E¨‰$èÝnþÿfƒ}¨ÿ”Âfƒøÿ”À8„ÞúÿÿE ‰$è»nþÿ‹Mˆ‰Â‹A f9…Âúÿÿ‹U ‹Y$…Ò‰pÿÿÿ„Lýÿÿ‹B;B ƒˆƒÀ‰BfÇEÿÿÆE˜éÅúÿÿE ‰$ÇE¸ècnþÿUf‰E¨‰$èTnþÿfƒ}¨ÿ”Âfƒøÿ”À8„cúÿÿM ‰ $è2nþÿ‹]ˆ‰Â‹C(f9…Gúÿÿ‹U ‹C,…Ò‰…pÿÿÿ„Oúÿÿ‹B;B ƒ+ƒÀ‰BfÇEÿÿÆE˜Æ…fÿÿÿé5úÿÿÆE˜éøýÿÿ€½gÿÿÿ…üÿÿ€}è„üÿÿ€}ê„ýûÿÿÆE˜é úÿÿÆ…gÿÿÿét÷ÿÿEì‰D$‹E$ÇE¸‰$è}àé9ûÿÿ] ‰$è}mþÿ‹U¨‹Mf9Q…ûÿÿ‹E …Àt‹P;P ƒnƒÂ‰PfÇEÿÿƒE¨éêùÿÿEðÇD$ ‰$ÇE¸è«òé÷ÿÿ€}˜…úÿÿéÂúÿÿ‹‰$‹@(ÇE¸ÿÐé‡üÿÿ‹]ˆ‹[ ‰]é‘ùÿÿ‹E ƒéwúÿÿƒøÿu ‹Eì‹@ôƒè‹UìÇD$ ‹RôÇD$ÇE¸9ÐG‰D$Eì‰$èùòéÎùÿÿ‹EìƒxüxEì‰$ÇE¸èyÖ‹Eì€80„´ùÿÿƒxüxEì‰$ÇE¸èUÖEìÇD$-ÇD$ ÇD$ÇD$‰$ÇE¸è£Ú‹EìÇ@üÿÿÿÿé[ùÿÿÇ$TÇE¸èÀÆ@4Æ@5Æ@6Æ@7Æ@8Æ@9Æ@:Æ@;‹M”Ç@Ç8hMÇ@Ç@ Æ@fÇ@fÇ@Ç@Ç@Ç@ Ç@$Ç@(Ç@,Ç@0Æ@R‰…lÿÿÿ‰L$‰$ÇE¸èÅËE˜‹•lÿÿÿ‹M‰D$‰T$‹AlÇE¸ÿÿÿÿ‰$è¯Ù‹]¨‹éîôÿÿ‹]¨Ç@‰ZôÆD éöÿÿ‹‰$‹B(ÇE¸ÿÐé öÿÿ‹‰$‹B(ÇE¸ÿÐéÛúÿÿ‹‰$‹@(ÇE¸ÿÐéhüÿÿ‹‰$‹B(ÇE¸ÿÐé‚ýÿÿ‹‰$‹@(ÇE¸ÿÐéÅüÿÿƒÅ‹M¼‹E¸‰M¨ÿ$… M‹‰$‹@(ÇE¸ÿÐéŠûÿÿ‹]¨Ç@‰ZôÆD ÇE”éRõÿÿƒ=(vMu{‹PJÿ‰H…ÒzøÿÿUö‰T$‰$è°Úéføÿÿƒ=(vMuW‹PJÿ‰H…Ò9øÿÿU÷‰T$‰$è‚Úé%øÿÿEì‰$èrøEð‰$ègø‹]¨ÇE¸ÿÿÿÿ‰$è5^ýÿƒÊÿðÁP넃ÊÿðÁPë¨ÇE¸èÅ‹U¨ÇE¸ÿÿÿÿ‰$è^ýÿ‹]¨‰$èxƒ½lÿÿÿt‹lÿÿÿ‹‰$‹@ÇE¸ÿÐÇE¸è,Í‹M¨‰ $èAÂëçU‰åSƒì4‹E‹M(‹]‹‰L$ ‹M$‰\$‹]‰$‰L$‹M ‰\$‰L$¶M‰L$‹M‰L$ ‹M ‰L$ÿR ƒÄ4[]ÃU‰åSƒì4‹E‹M(‹]‹‰L$ ‹M$‰\$‹]‰$‰L$‹M ‰\$‰L$¶M‰L$‹M‰L$ ‹M ‰L$ÿRƒÄ4[]ÃU‰åSì„¶EUø‰UÔÇḚ´KˆE£E´‰$ÇEÐøÏKÇEØlèG‰eÜèYýÿ‹E ÇE¸ÿÿÿÿƒÀl‰$è!Ž€}£ÇEð|TL‰E¤„ý‹UEð‰D$‹E‹M$‹] ‰T$‹U‰D$ ‹E ‰L$‰\$‰T$‹U‰D$ÇE¸‰$è:ñÿÿ‰Eè‹Eè‰Uì‹Uð‰E ·Eìf‰EBô‹Rô…Ò‰U¨tc‹M(ÇD$‰T$ÇE¸‰ $èG‹](‹‹Pü…Òx ‰$èÔ1‹‹]¤‹Uð‹ ‰D$ ‹E¨‰T$‰$‰D$‹A,ÇE¸ÿЋEðƒè ‹U =pTL‹M‰U¨‰M¬uhE´‰$è¥Xýÿ‹E¨‹U¬Ä„[]ö‹UEð‰D$‹E‹M$‹] ‰T$‹U‰D$ ‹E ‰L$‰\$‰T$‹U‰D$ÇE¸‰$èÝâÿÿéþþÿÿƒ=(vMu!‹PJÿ‰H…Ò‚U÷‰T$‰$èC×énÿÿÿƒÊÿðÁPëރŋM¼Eð‰M¨‰$è õ‹]¨ÇE¸ÿÿÿÿ‰$èîZýÿU‰å옶EUøÇE¼°´KÇEÀþÏK‰UĈE—E¤ÇEÈêG‰ẻ$èWýÿ€}—ÇEð|TL„¶‹U Eð‰D$‹E$ÇE¨‰T$‹U‰D$‹E‰T$‹U‰D$ ‹E ‰T$‹U‰D$‰$èCïÿÿ‰Eä‹Eä‰UèÇE¨‰E ·Eèf‰EèSð‰EìEì‰D$ ‹E$‰D$‹E(‰D$‹Eð‰$è€N‹E ‹U‰E˜‹Eð‰Uœƒè =pTLu_E¤‰$èìVýÿ‹E˜‹UœÉÃt&‹U Eð‰D$‹E$ÇE¨‰T$‹U‰D$‹E‰T$‹U‰D$ ‹E ‰T$‹U‰D$‰$è-áÿÿéEÿÿÿƒ=(vMu!‹PJÿ‰H…Ò‹U÷‰T$‰$è“ÕéwÿÿÿƒÊÿðÁPëރŋU¬Eð‰$‰U˜èpó‹E˜ÇE¨ÿÿÿÿ‰$è>YýÿU‰åSƒì$‹E¾M‹] ‹‰L$‹M‰\$‹]‰$‰L$¶M‰\$‰L$ ‹M ‰L$ÿR ƒÄ$[]ÃU‰åƒìH‹E¾M‰]ô‹] ‰uø‹u$‰}ü‹‰L$‹M‹}(‰\$‹]‰t$‰L$¶M‰|$ ‰\$‰$‰L$ ‹M ‰L$ÿR‹]ô‹uø‹}ü‰ì]ÃU‰åƒì8€}‰]ô‹U ‰uø‹M‰}ü‹]‹} ¶uu1‰ð¾ð‹E‰|$‰t$‰\$ ‰T$‰L$‰$èG‹]ô‹uø‹}ü‰ì]Éð¾ð‹E‰|$‰t$‰\$ ‰T$‰L$‰$èv ‹]ô‹uø‹}ü‰ì]ÃU‰å옶E¶UÇE¼°´KÇEÀÓKˆE‹Eø‰EÄE¤ˆUЉ$ÇEÈ`îG‰eÌèTýÿ‹EUð‰$ƒÀl‰D$èñEð‰$ÇE¨虈ƒìPT$/ƒâð‰EŒ‰U˜è„í‰Eì‹E˜Ûm ÇD$ÇD$ M‰D$EìÛ|$ÇD$@‰$èOƒø?~SPƒÀƒàð‰Uè*YýÿD$/ƒàð‰E˜è+í‰Eè‹E‹U˜Ûm ÇD$‰D$EèÛ|$ÇD$ M‰T$‰$è¨N‰EE÷‰D$ ‹EÇD$ÇE¨‰D$Eä‰$èýì‹Uä‹Jü‰U”…ÉxEä‰$ÇE¨è>Ì‹Eä‰E”‹U˜U‰U‹UŒ¶B<„÷„À„Ø‹UŒ‹‹U”‰T$ ‹U‰T$‹U˜‰T$‹UŒ‰$‹@ÇE¨ÿЀ}‹tkEä‹U‰D$¾EŠÇE¨‰T$‹U‰D$‹E‰$‰D$ ‹E ‰D$è€ ‰E˜‹Eä‰Uœƒè =pTL…‘Eð‰$è.ñE¤‰$èÓRýÿ‹E˜‹UœÉÃEä‹U‰D$¾EŠÇE¨‰T$‹U‰D$‹E‰$‰D$ ‹E ‰D$èµë“v‹EŒÇE¨‰$è^bþÿéÿÿÿ‹E+E˜‹U”‰D$‹E˜‰$‰D$èóýÿéÿÿÿƒ=(vMu%‹PJÿ‰H…ÒUÿÿÿUö‰T$‰$èOÑéAÿÿÿƒÊÿðÁPëڃŋE¨‹U¬…À‰U˜tƒèt Eä‰$èïEð‰$èCð‹E˜ÇE¨ÿÿÿÿ‰$èáTýÿU‰åSìĶEUø‰UÄÇE¼°´Kˆ…cÿÿÿE¤‰$ÇEÀxÓKÇEÈB÷G‰eÌèQýÿ‹MÇE¨ÿÿÿÿƒÁl‰xÿÿÿ‰ $訅Ç$ŒTL‰…tÿÿÿèÖgþÿ‹U‰E”‹Bl‹M”‹P Š‹‰M˜…À„§‰…xÿÿÿ‹E‹•xÿÿÿ‹¶R8‰E˜8„¿‹xÿÿÿ‹A0‹Q ‰Eò‹A‹M˜‰•lÿÿÿ‰…Xÿÿÿ‹Yô]˜9]˜ƒG‹…tÿÿÿ‹H‹E˜¶öQ„.ƒÀ9ÇS+E˜‰…tÿÿÿ‹•tÿÿÿ‰E”…Ò„ ‹•tÿÿÿÇEì|TLÇE¨‰D$Eì‰$èãä‹xÿÿÿ‹•tÿÿÿ‹A,)Â…Ò‰•pÿÿÿŽ1…À‹…xÿÿÿ‹M”‹@ Iʉpÿÿÿ…À„% ‰D$ ‹EìÇD$‹@ôÇD$ÇE¨‰D$Eì‰$èbÍ‹•xÿÿÿ‹xÿÿÿ‹…xÿÿÿ‹R ‹I¶@‰U”‹Uì‰dÿÿÿˆ…\ÿÿÿ‹Zü…ÛxEì‰$è¢È‹Uì‹E˜…pÿÿÿ‹M˜‰$‰D$‹E”‰L$‹dÿÿÿ‰D$ ¾…\ÿÿÿ‰L$‰D$èGB‰E”‹EìPô‹J…ÉxEì‰$ÇE¨èEÈ‹EìPô‹M”‹)Á9чU)ÊEìÇD$ ‰T$‰L$‰$ÇE¨èlä‹•xÿÿÿ‹B,…À~S‹xÿÿÿ¾AÇE¨‰D$Eì‰$èßå‹pÿÿÿ…ÛˆQ‹•xÿÿÿ‹B,‰D$‹E˜…pÿÿÿ‰D$Eì‰$èœÒ‹M‹Eì‹•lÿÿÿ‹I Pô1À‰M˜€å…^‰D$E艕pÿÿÿÇEè|TL‰$ÇE¨èôâ‹U‹E˜¾cÿÿÿÇE˜‹R%°9•pÿÿÿ‰…dÿÿÿ‰U”’…tÿÿÿƒø”À+•pÿÿÿ …tÿÿÿ‰\ÿÿÿ‰•pÿÿÿ‹U˜¾Dòƒøw:ÿ$…ð M€½tÿÿÿ„+‹\ÿÿÿUè‹…pÿÿÿ‰$ÇE¨‰L$‰D$è=ÔƒE˜ƒ}˜u¯ƒ½lÿÿÿv,‹…lÿÿÿÇE¨ƒè‰D$‹…XÿÿÿƒÀ‰D$Eè‰$è~Ñ‹Eè‹Pô9U”‰U˜vMƒ½dÿÿÿ „Ú¾…cÿÿÿÇD$ÇD$ÇE¨‰D$‹E”+E˜‰D$ Eè‰$è¼Ê‹U”‹Eè‰U˜‹M‹U ‰tÿÿÿ¶M‰U”„Ɉxÿÿÿu7‹‹M˜‰D$‹E”‰L$‰$‹B0ÇE¨ÿж•xÿÿÿ9E˜¸EЈ•xÿÿÿ‹E”¶xÿÿÿ‰Eà‰E ‹Eèˆtÿÿÿ‹•tÿÿÿƒè =pTL‰UäˆU…y‹EìºpTLƒè 9Ât-ƒ=(vM…‹‹PJÿ‰H…ÒUö‰T$‰$èäËt&‹E ‹M‹U‰E˜E¤ÇA‰Uœ‰$èŸLýÿ‹E˜‹UœÄÄ[]ööQ…•ûÿÿé›ûÿÿ‹xÿÿÿ‹Aé”ýÿÿ€½tÿÿÿ„Fþÿÿ‹•\ÿÿÿEè‹pÿÿÿ‰$ÇE¨‰T$‰L$è]ÒƒE˜ƒ}˜…ËýÿÿéþÿÿEìUè‰D$‰$ÇE¨è¡ÐƒE˜ƒ}˜…Ÿýÿÿéëýÿÿ‹lÿÿÿ…É„Óýÿÿ‹•XÿÿÿM辉 $ÇE¨‰D$èâƒE˜ƒ}˜…_ýÿÿé«ýÿÿ‹MöA „”ýÿÿ‹•xÿÿÿMè‹B‰D$‹B‰ $ÇE¨‰D$è+σE˜ƒ}˜…ýÿÿéeýÿÿ‹•xÿÿÿ‹B4‹J$‰Eò‹B(‹U˜‰Xÿÿÿ‰…lÿÿÿ‹Zô…Û„ŒþÿÿƒÂ‰U˜é.úÿÿ‹E˜‹pÿÿÿÇE¨‰D$Eì‰L$‰$èmÒé¼ûÿÿ‹\ÿÿÿEè‰$ÇE¨‰L$è¬áƒE˜ƒ}˜…ŠüÿÿéÖüÿÿ¾…cÿÿÿÇE¨‰D$‹E”)ЉD$Eè‰$èãЋM”‹Eè‰M˜é2ýÿÿt&Ç$DÇE¨èM­Æ@Æ@Æ@0Æ@1Æ@2Æ@3Æ@4Æ@5Æ@6Æ@7‹xÿÿÿÇ@ÇhMÇ@Ç@ Æ@Ç@Ç@Ç@Ç@ Ç@$Ç@(Ç@,Æ@C‰…hÿÿÿ‰L$‰$ÇE¨è‚“‹U”‹hÿÿÿ‰T$‹U‰L$‹BlÇE¨ÿÿÿÿ‰$èüÆ‹M˜‹é{øÿÿf‹xÿÿÿ¾A9ÇE¨‰D$‹…pÿÿÿ÷؉D$Eì‰$èÄÏ‹…tÿÿÿ‹U˜‰D$Eì‰T$‰$è(Íé‡úÿÿƒ=(vMu2‹PJÿ‰H…ÒmüÿÿU÷‰T$‰$èzÈéYüÿÿƒÊÿðÁPéqüÿÿƒÊÿðÁPë̓Å‹U¬‹E¨‰U˜ÿ$…MÇ$´ MÇE¨èYEè‰$è-æEì‰$è"æ‹M˜ÇE¨ÿÿÿÿ‰ $èðKýÿÇE¨èÔ²‹M˜ÇE¨ÿÿÿÿ‰ $èÒKýÿ‹E˜‰$èG°ƒ½hÿÿÿt‹•hÿÿÿ‹‰$‹@ÇE¨ÿÐÇE¨èûº‹E˜‰$è°ëçU‰åSìĶEUø‰UÄÇE¼°´Kˆ…cÿÿÿE¤‰$ÇEÀ`ÓKÇEÈ¢H‰eÌè£Gýÿ‹MÇE¨ÿÿÿÿƒÁl‰xÿÿÿ‰ $èH|Ç$TL‰…tÿÿÿèv^þÿ‹U‰E”‹Bl‹M”‹P Š‹‰M˜…À„§‰…xÿÿÿ‹E‹•xÿÿÿ‹¶R8‰E˜8„¿‹xÿÿÿ‹A0‹Q ‰Eò‹A‹M˜‰•lÿÿÿ‰…Xÿÿÿ‹Yô]˜9]˜ƒG‹…tÿÿÿ‹H‹E˜¶öQ„.ƒÀ9ÇS+E˜‰…tÿÿÿ‹•tÿÿÿ‰E”…Ò„ ‹•tÿÿÿÇEì|TLÇE¨‰D$Eì‰$èƒÛ‹xÿÿÿ‹•tÿÿÿ‹A,)Â…Ò‰•pÿÿÿŽ1…À‹…xÿÿÿ‹M”‹@ Iʉpÿÿÿ…À„% ‰D$ ‹EìÇD$‹@ôÇD$ÇE¨‰D$Eì‰$èÄ‹•xÿÿÿ‹xÿÿÿ‹…xÿÿÿ‹R ‹I¶@‰U”‹Uì‰dÿÿÿˆ…\ÿÿÿ‹Zü…ÛxEì‰$èB¿‹Uì‹E˜…pÿÿÿ‹M˜‰$‰D$‹E”‰L$‹dÿÿÿ‰D$ ¾…\ÿÿÿ‰L$‰D$èç8‰E”‹EìPô‹J…ÉxEì‰$ÇE¨è律EìPô‹M”‹)Á9чU)ÊEìÇD$ ‰T$‰L$‰$ÇE¨è Û‹•xÿÿÿ‹B,…À~S‹xÿÿÿ¾AÇE¨‰D$Eì‰$èÜ‹pÿÿÿ…ÛˆQ‹•xÿÿÿ‹B,‰D$‹E˜…pÿÿÿ‰D$Eì‰$è<É‹M‹Eì‹•lÿÿÿ‹I Pô1À‰M˜€å…^‰D$E艕pÿÿÿÇEè|TL‰$ÇE¨è”Ù‹U‹E˜¾cÿÿÿÇE˜‹R%°9•pÿÿÿ‰…dÿÿÿ‰U”’…tÿÿÿƒø”À+•pÿÿÿ …tÿÿÿ‰\ÿÿÿ‰•pÿÿÿ‹U˜¾Dòƒøw:ÿ$…È M€½tÿÿÿ„+‹\ÿÿÿUè‹…pÿÿÿ‰$ÇE¨‰L$‰D$èÝʃE˜ƒ}˜u¯ƒ½lÿÿÿv,‹…lÿÿÿÇE¨ƒè‰D$‹…XÿÿÿƒÀ‰D$Eè‰$èÈ‹Eè‹Pô9U”‰U˜vMƒ½dÿÿÿ „Ú¾…cÿÿÿÇD$ÇD$ÇE¨‰D$‹E”+E˜‰D$ Eè‰$è\Á‹U”‹Eè‰U˜‹M‹U ‰tÿÿÿ¶M‰U”„Ɉxÿÿÿu7‹‹M˜‰D$‹E”‰L$‰$‹B0ÇE¨ÿж•xÿÿÿ9E˜¸EЈ•xÿÿÿ‹E”¶xÿÿÿ‰Eà‰E ‹Eèˆtÿÿÿ‹•tÿÿÿƒè =pTL‰UäˆU…y‹EìºpTLƒè 9Ât-ƒ=(vM…‹‹PJÿ‰H…ÒUö‰T$‰$è„Ât&‹E ‹M‹U‰E˜E¤ÇA‰Uœ‰$è?Cýÿ‹E˜‹UœÄÄ[]ööQ…•ûÿÿé›ûÿÿ‹xÿÿÿ‹Aé”ýÿÿ€½tÿÿÿ„Fþÿÿ‹•\ÿÿÿEè‹pÿÿÿ‰$ÇE¨‰T$‰L$èýȃE˜ƒ}˜…ËýÿÿéþÿÿEìUè‰D$‰$ÇE¨èAǃE˜ƒ}˜…Ÿýÿÿéëýÿÿ‹lÿÿÿ…É„Óýÿÿ‹•XÿÿÿM辉 $ÇE¨‰D$è!ÙƒE˜ƒ}˜…_ýÿÿé«ýÿÿ‹MöA „”ýÿÿ‹•xÿÿÿMè‹B‰D$‹B‰ $ÇE¨‰D$èËŃE˜ƒ}˜…ýÿÿéeýÿÿ‹•xÿÿÿ‹B4‹J$‰Eò‹B(‹U˜‰Xÿÿÿ‰…lÿÿÿ‹Zô…Û„ŒþÿÿƒÂ‰U˜é.úÿÿ‹E˜‹pÿÿÿÇE¨‰D$Eì‰L$‰$è Éé¼ûÿÿ‹\ÿÿÿEè‰$ÇE¨‰L$èL؃E˜ƒ}˜…ŠüÿÿéÖüÿÿ¾…cÿÿÿÇE¨‰D$‹E”)ЉD$Eè‰$èƒÇ‹M”‹Eè‰M˜é2ýÿÿt&Ç$DÇE¨èí£Æ@Æ@Æ@0Æ@1Æ@2Æ@3Æ@4Æ@5Æ@6Æ@7‹xÿÿÿÇ@ÇhMÇ@Ç@ Æ@Ç@Ç@Ç@Ç@ Ç@$Ç@(Ç@,Æ@C‰…hÿÿÿ‰L$‰$ÇE¨è2”‹U”‹hÿÿÿ‰T$‹U‰L$‹BlÇE¨ÿÿÿÿ‰$蜽‹M˜‹é{øÿÿf‹xÿÿÿ¾A9ÇE¨‰D$‹…pÿÿÿ÷؉D$Eì‰$èdÆ‹…tÿÿÿ‹U˜‰D$Eì‰T$‰$èÈÃé‡úÿÿƒ=(vMu2‹PJÿ‰H…ÒmüÿÿU÷‰T$‰$è¿éYüÿÿƒÊÿðÁPéqüÿÿƒÊÿðÁPë̓Å‹U¬‹E¨‰U˜ÿ$…Ü MÇ$´ MÇE¨è¨OEè‰$èÍÜEì‰$èÂÜ‹M˜ÇE¨ÿÿÿÿ‰ $èBýÿÇE¨èt©‹M˜ÇE¨ÿÿÿÿ‰ $èrBýÿ‹E˜‰$è禃½hÿÿÿt‹•hÿÿÿ‹‰$‹@ÇE¨ÿÐÇE¨è›±‹E˜‰$è°¦ëçU‰åSƒì$‹E·M‹] ‹‰L$‹M‰\$‹]‰$‰L$¶M‰\$‰L$ ‹M ‰L$ÿR ƒÄ$[]ÃU‰åƒìH‹E·M‰]ô‹] ‰uø‹u$‰}ü‹‰L$‹M‹}(‰\$‹]‰t$‰L$¶M‰|$ ‰\$‰$‰L$ ‹M ‰L$ÿR‹]ô‹uø‹}ü‰ì]ÃU‰åƒì8€}‰]ô‹E‰uø‹U ‰}ü‹M‹]‹} ·uu,·ö‰|$‰t$‰\$ ‰T$‰L$‰$èÉ‹]ô‹uø‹}ü‰ì]÷ö‰|$‰t$‰\$ ‰T$‰L$‰$èM ‹]ô‹uø‹}ü‰ì]ÃU‰å옶EMø·U‰MÄÇE¼°´KˆEE¤f‰UŒ‰$ÇEÀ ÏKÇEÈëH‰eÌèÿ<ýÿ‹EƒÀl‰D$Eð‰$èÚUð‰$ÇE¨èøqƒìPL$/ƒáð‰E‰M˜èƒÖ‰Eì‹E˜Ûm ÇD$ÇD$ ü M‰D$EìÛ|$ÇD$@‰$èÿ7ƒø?~SPƒÀƒàð‰Uˆè)BýÿL$/ƒáð‰M˜è*Ö‰Eè‹Eˆ‹U˜Ûm ÇD$‰D$EèÛ|$ÇD$ ü M‰T$‰$è§7‰E”‹M”E÷‰D$ EäÇD$‰$‰L$ÇE¨èL7‹Eä‹Hü…ÉxEä‰$ÇE¨èp‹Eä‹M‹‰D$ ‹E˜E”‰ $‰D$‹E˜‰D$‹B,ÇE¨ÿЀ}t`‹UEä‰D$·EŒ‰T$ ‹U‰D$‹E ‰T$‹U‰D$‰$è ‰E˜‹Eä‰Uœƒè =`TLuVEð‰$èaÚE¤‰$è<ýÿ‹E˜‹UœÉÃEä‹U‰D$·EŒ‹MÇE¨‰T$‹U‰D$‹E ‰L$ ‰$‰D$èxë—ƒ=(vMu‹PJÿ‰H…Ò”Uö‰T$‰$èñ냃ÊÿðÁPëáƒÅ‹E¨‹M¬…À‰M˜tƒèt Eä‰$èã9Eð‰$è¸Ù‹E˜ÇE¨ÿÿÿÿ‰$èV>ýÿU‰åSì´·EUø‰UÄÇE¼°´Kf‰…zÿÿÿE¤‰$ÇEÀÏKÇEÈH‰eÌèr:ýÿ‹MÇE¨ÿÿÿÿƒÁl‰M”‰ $èzoÇ$”TL‰EèKQþÿ‹]‰EŒ‹Cl‹UŒ‹H ‘‹‰U˜…À„‰E”‹E‹M”‹·IÇE¨‰D$‹E÷؉D$Eì‰$èu‹MˆEì‹]˜‰$‰L$‰\$è¼énúÿÿƒ=(vM…›‹PJÿ‰H…Ò/üÿÿUö‰T$‰$è éüÿÿƒ=(vMu%‹PJÿ‰H…ÒîûÿÿU÷‰T$‰$èÜéÚûÿÿƒÊÿðÁPëÚ‹E„ÇB‰fÇDB é¸ùÿÿƒÅ‹]¬‹E¨‰]˜ÿ$…è MÇ$˜ MÇE¨è/BƒÊÿðÁPéaÿÿÿEè‰$è—0Eì‰$èŒ0‹E˜ÇE¨ÿÿÿÿ‰$è 5ýÿÇE¨è]˜ÇE¨ÿÿÿÿ‰$èì4ýÿ‹E˜‰$èa™ƒ½|ÿÿÿt‹•|ÿÿÿ‹‰$‹@ÇE¨ÿÐÇE¨è¤‹E˜‰$è*™ëçU‰åSì´·EUø‰UÄÇE¼°´Kf‰…zÿÿÿE¤‰$ÇEÀðÎKÇEÈËH‰eÌèÂ0ýÿ‹MÇE¨ÿÿÿÿƒÁl‰M”‰ $èÊeÇ$˜TL‰Eè›Gþÿ‹]‰EŒ‹Cl‹UŒ‹H ‘‹‰U˜…À„‰E”‹E‹M”‹·IÇE¨‰D$‹E÷؉D$Eì‰$èÅ‹MˆEì‹]˜‰$‰L$‰\$è énúÿÿƒ=(vM…›‹PJÿ‰H…Ò/üÿÿUö‰T$‰$èZéüÿÿƒ=(vMu%‹PJÿ‰H…ÒîûÿÿU÷‰T$‰$è,éÚûÿÿƒÊÿðÁPëÚ‹E„ÇB‰fÇDB é¸ùÿÿƒÅ‹]¬‹E¨‰]˜ÿ$…À MÇ$˜ MÇE¨è8ƒÊÿðÁPéaÿÿÿEè‰$èç&Eì‰$èÜ&‹E˜ÇE¨ÿÿÿÿ‰$èZ+ýÿÇE¨è>’‹]˜ÇE¨ÿÿÿÿ‰$è<+ýÿ‹E˜‰$豃½|ÿÿÿt‹•|ÿÿÿ‹‰$‹@ÇE¨ÿÐÇE¨èeš‹E˜‰$èzëçU‰åƒìÉé4U1À‰å]ÃU1À‰å]ÃU1À‰å]ÃU¸‰åSƒì‹U‹M 9Ñt3‹B¶€û*t/‹Q1É€:*”ÁÊ1É€û*”ÁȉT$‰$èüÉýÿ…À”ÀƒÄ[]Àx*u˃Ä1À[]ÃU‰å‹E+E ]ÃU‰å‹U ‹E‰]ÃU‰å‹U ‹E‰]ÃU‰åSƒì‹]‹ƒè =`TLt3‹P…Ò~%ÇD$ ÇD$ÇD$‰$苃è Ç@ÿÿÿÿƒÄ[]ÃU‰åƒì8‰]ô‹]‰}ü‹} ‰uø¾lTL…Û‰ùu‰ð‹]ô‹uø‹}ü‰ì]ËE‰MäÇD$‰$‰D$覃û‹Mä‰Âp t9·É‰\$‰L$‰4$‰EäèSEýÿ‹Uäú`TLt¨ÇB‰fÇ^ë—´&f‰x ëÚU‰åƒì8‰]ô‹]‰}ü‹} ‰uø¾lTL9ßu‰ð‹]ô‹uø‹}ü‰ì]Ãv‹E)ßÑÿÇD$‰<$‰D$èƒÿ‰Âp t/‰|$‰\$‰4$‰Eäè¨Cýÿ‹Uäú`TLt«ÇB‰:fÇ~ëš·f‰B ëÞU‰åƒì8‰]ô‹]‰uø‹u ‰}ü‹E¿lTL9ótD…Ût[)ÞÑþ‰D$ÇD$‰4$胃þ‰Âx t-‰Uä‰t$‰\$‰<$è&Cýÿ‹Uäú`TLu+‰ø‹]ô‹uø‹}ü‰ì]÷f‰B ëàv…ötÇ$\Mè/ÇB‰2fÇwëĉD$1öÇD$Ç$è‰Âx ë…U‰åƒì8‰]ô‹]‰uø‹u ‰}ü‹E¿lTL9ótD…Ût[)ÞÑþ‰D$ÇD$‰4$賃þ‰Âx t-‰Uä‰t$‰\$‰<$èVBýÿ‹Uäú`TLu+‰ø‹]ô‹uø‹}ü‰ì]÷f‰B ëàv…ötÇ$\MèÀ.ÇB‰2fÇwëĉD$1öÇD$Ç$è5‰Âx ë…U¸`TL‰å]ÃU‰åƒì‹U ‹E‹M)ÐÑøƒøt‰E‰U ‰MÉé©Aýÿ·f‰ÉÃU‰åƒì‹U ‹E‹M)ÐÑøƒøt‰E‰U ‰MÉéyAýÿ·f‰ÉÃU‰åƒì‹U ‹E‹M)ÐÑøƒøt‰E‰U ‰MÉéIAýÿ·f‰ÉÃU‰åƒì‹U ‹E‹M)ÐÑøƒøt‰E‰U ‰MÉéAýÿ·f‰ÉÃU‰åƒìhEè‰EÔE´‰$‰]ô‰uø‰}üÇḚ´KÇEÐÕKÇEغH‰eÜèX"ýÿ‹EÇD$ÇE¸‰$è.E´‰$èÓ"ýÿ‹]ô‹uø‹}ü‰ì]ÃÅ‹E¼‰$è8ŠÇE¸ÿÿÿÿ蜌ëÌU‰åƒì8‰]ô‹U‹]‰uø‹E‰}ü‹u‰Uä‹} f‰U⋉Á+Jô‰ÊÂþÿÿ9Öwn‰t$ ‰D$‰|$‰$èt…öu‰Ø‹uø‹]ô‹}ü‰ì]Ãÿ;ƒþt'·Eâ‰t$‰<$‰D$èAýÿ‰Ø‹uø‹]ô‹}ü‰ì]Ãt&·Eäf‰‰Ø‹uø‹]ô‹}ü‰ì]ÃÇ$ÓMèÎ0U‰åƒì(‰]ô‹E‰uø‹]‹u‰}ü‹} ‰D$‰$‰t$ ‰|$èÑ…öu‰Ø‹uø‹]ô‹}ü‰ì]Ãÿ;ƒþt%‹E‰t$‰<$‰D$èb?ýÿ‰Ø‹uø‹]ô‹}ü‰ì]Ãv‹U·f‰‰Ø‹uø‹]ô‹}ü‰ì]ÃU‰åƒì·E ‰E ÉémúÿÿU‰åƒì‰]ø‹]‰uü‹u ‹;pôPôs‹R…Òx ‰$èåùÿÿ‹p‹]ø‹uü‰ì]ÃÇ$lMèÚ0U‰åSƒì‹]‹Pô‹J…Éx ‰$è¢ùÿÿ‹Pô‹ƒÄ[]PÃU‰åƒìÉé´‚U‰åƒì‹E=`TLuÉÃ=(vMu‹PJÿ‰H…Òè‰EÉ邃ÊÿðÁPëéU‰å‹E=`TLuƒÀ ]Ã=(vMuƒ@ëìðƒ@ëåU‰å‹E]ƒÀ ÃU¸`TL‰å]ÃU‰å‹EÇ@ÿÿÿÿ]ÃU‰å‹EÇ@]ÃU‰å‹E‹U =`TLu]ÃÇ@‰fÇDP ]ÃU‰åƒì‹E‹M ‹P…Òx =`TLuƒÀ ÉÃÇE‰M ‰EÉéƒ=(vMuƒÂ‰PëÖðƒ@ëÏU‰åƒì(‰]ô‹U ‹]‰uø‹E‰}ü‰T$‹S‰T$‰$èc‰Æ‹~ …Àuþ`TLu?‰ø‹]ô‹uø‹}ü‰ì]ÃøS ~ t‰D$‰T$‰<$èå<ýÿ‹ëÉ·C f‰F ¸ë¹ÇF‰fÇGë°U‰åSƒì‹]‹U ûþÿÿw]9ÓDv=9ÃBØDHùv&9Ús"áÿ¸)ÈÑèØ»þÿÿ=þÿÿFØD‰$è.‰XÇ@ƒÄ[]ÃÇ$¦MèB-U‰åƒì‰]ø‹] ‰uü‹u‹‹Jü…Éx ‰$è÷ÿÿ‹‰‰ð‹]ø‹uü‰ì]ÂU‰åƒì‹M‰$‹E ‰t$‹Zô‹s…öx!‹sôƒ~x(‰‰‹$‹t$‰ì]ô&ÇC‹sôƒ~yØÇF‰‰‹$‹t$‰ì]ÃU‰åSƒì‹]‹‹Pü…Òx ‰$èuöÿÿ‹ƒÄ[]ÃU‰åƒì‹EÇD$ ‹‹RôÇD$‰$‰T$èvÉÃU‰åƒì‰uü‹u‰]ø‹] +‰4$ÇD$ Ñû‰\$ÇD$è>‹Ç@üÿÿÿÿX‹uü‹]ø‰ì]ÃU‰åƒì‹U‹E ‰]ø‹]‰uü)ÂÑút*‰Æ+3ÇD$ ‰T$Ñþ‰t$‰$èç‹Ç@üÿÿÿÿp‹]ø‹uü‰ì]ÃU‰åSƒì‹]‹E ‹M‹‹Rô9Ðw')Â9ÊGщD$‰$ÇD$ ‰T$蘉؃Ä[]ÃÇ$MèT,U‰åSƒì‹] ‰$èÆ¾ýÿ‰\$‰D$‹E‰$è ƒÄ[]ÃU‰åƒì8‰}ü‹}‰]ô‹]‰uø…ÿu‰Ø‹uø‹]ô‹}ü‰ì]Ë‹PôHô‰Ö÷ÞÆþÿÿ9÷‡§4;qwƒy~!9E rP9U vc‰t$‰$è‹‹PôHôƒÿPt7‹U ‰|$‰$‰T$è„9ýÿ‹ ƒé ù`TLt€ÇA‰1fÇDq ékÿÿÿf‹} ·f‰ëÖt&‹U ‰t$‰$)ÂÑú‰Uä誋‹UäHôP‰U ‹PôëˆÇ$/Mè*U‰åƒìH‹E ‰]ô‹]‰uø‰}ü‹‹rô…ötc‹‹xôHô‰}Ô÷;y‰}äw‹y…ÿ~‹Eä‰$‰D$è7‹} ‹‹‹xôHô‰}Ô‹}Ôƒþxt,‰t$‰T$‰$èœ8ýÿ‹ ƒé ù`TLu‰Ø‹uø‹]ô‹}ü‰ì]÷f‰ëá‹EäÇA‰fÇDA ëÔU‰åƒì8‹M ‰]ô‹E‰uø‹]‰}ü‹‹zô9}‡§+}9ÇGø…ÿti‹‹pôHô‰uäþ;q‰uàw‹q…ö~‹Eà‰$‰D$ès‹‹M ‹pô‹Hô‰uä‹uƒÿr‹uäpt2‰|$‰T$‰$èÒ7ýÿ‹ ƒé ù`TLu‰Ø‹uø‹]ô‹}ü‰ì]ö·f‰ëÛ‹EàÇA‰fÇDA ëÎÇ$/Mè—)U‰åƒìÉédýÿÿU‰åƒìH‰uø‹u ·E‰]ô‹]‰}ü…öf‰EÖu‰Ø‹uø‹]ô‹}ü‰ì]Ë‹HôPô‰Ï÷ßÇþÿÿ9þws<;z‰}äw‹z…ÿ~‹Eä‰$‰D$èy‹‹HôPôƒþHt9·}Ö‰t$‰$‰|$èõ7ýÿ‹ƒê ú`TLt‰‹}äÇB‰:fÇDz éqÿÿÿ·MÖf‰ë×Ç$/Mè«'U‰åSƒì‹]‹E ‰$‰D$è‡úÿÿ‰ØƒÄ[]ÃU‰åSƒì‹] ‰$èöºýÿ‰\$‰D$‹E‰$è ƒÄ[]ÃU‰åƒì8‰]ô‹]‰uø‹U ‰}ü}þÿÿ‹Hô‹pô‡¾9Âs2‹E‰$‰T$ ‰t$‰D$ÇD$è3öÿÿ‰Ã‰Ø‹uø‹]ô‹}ü‰ì]ÃfƒÈ‹M‹‹RôÊ B‰$ÇE¨ÿÿÿÿ‰D$苽E¤‰$èPâüÿ‹EƒÄl[^_]Ãt&…Àtá뿸ëž‹U ‹‰$‹@(ÇE¨ÿЉƒÈÿƒÂ„gÿÿÿ‹M ‹A‹Q éNÿÿÿ‹U ‹‰$‹@$ÇE¨ÿÐé@ÿÿÿƒÅ‹E¨‹M¬‹U°ƒø‰M t ƒøth…Àt  ÇE¨è¯K‹E ÇE¨ÿÿÿÿ‰$è­äüÿƒêt]‹M ‰ $èI‹U¹‹‹@ôÐP‹@ÇE¨èܺÇE¨ÿÿÿÿè`K1ÀéÔþÿÿÇE¨èMK‹U ÇE¨ÿÿÿÿ‰$èKäüÿ‹E ‰$èÀH‹U¹‹‹@ôÐP‹@ÇE¨èºèzSU‰åVSƒì‹]‹‹@ô‹t|…ötB€~t"¶F'¾À‰D$‹E ‰$‰D$è(ƒÄ[^]É4$è¨ðýÿ‹ÇD$ ‰4$ÿPëÈèèU‰åWVSƒìl¶EUè‰UÄÇE¼°´KˆE˜E¤‰$ÇEÀ´ÇKÇEÈaH‰eÌè×ßüÿ‹MEçÇA‰$ÇD$‰L$ÇE¨ÿÿÿÿèŸ1À€}ç„§‹U‹‹@ô‹Dx‰Á‰Eœ‹@;A ƒ"¶‰E ¶M˜‹E ‰M˜9Á‰Âtr‹M ‹A;AsAˆƒA‹E‹Uœƒ@‹B‹R 9Ѓ”‹MœƒÀ‰A9Ѓ£¶‰E ‹M 9M˜t*‰Êë´‹M ¶Ò‹‰T$‰ $‹@4ÇE¨ÿЃÀu¥ƒ} ÿtd1À‹U‹Z…Ûu9ƒÈ‹M‹‹RôÊ B‰$ÇE¨ÿÿÿÿ‰D$蟺E¤‰$èdßüÿ‹EƒÄl[^_]Ã…ÀtæëÄ‹Uœ‹‰$‹@(ÇE¨ÿЃÀu(¸ë—‹Uœ‹‰$‹@$ÇE¨ÿЉE ƒÀtÝéBÿÿÿ‹Mœ‹A‹Q é&ÿÿÿ‹Uœ‹‰$‹@$ÇE¨ÿЉE ƒÀt®éÃþÿÿƒÅ‹E¨‹M¬‹U°ƒø‰M t ƒøth…Àt  ÇE¨è¨H‹E ÇE¨ÿÿÿÿ‰$è¦áüÿƒêt]‹M ‰ $èF‹U¹‹‹@ôÐP‹@ÇE¨èÕ·ÇE¨ÿÿÿÿèYH1ÀéÆþÿÿÇE¨èFH‹U ÇE¨ÿÿÿÿ‰$èDáüÿ‹E ‰$è¹E‹U¹‹‹@ôÐP‹@ÇE¨èx·èsPU‰åƒìxEè‰EÄE¤‰$‰]ô‰uø‰}üÇE¼°´KÇEÀäÇKÇEÈscH‰eÌè8Ýüÿ‹UEçÇB‰T$ÇD$‰$ÇE¨ÿÿÿÿè1Ò€}çt.‹M‹‹@ô‹Tx‹J;J sj¶ƒÁ‰J‹UÇB‹U ˆ1Ò‹M‹A…Àu@ƒÊ‹M‹‹@ôÈ P‰$ÇE¨ÿÿÿÿ‰T$è}¸E¤‰$èBÝüÿ‹E‹]ô‹uø‹}ü‰ì]Ãf…Òtß뽋‰$‹@(ÇE¨ÿЃøÿºt•낃Å‹E¨‹M¬‹U°ƒø‰M t ƒøth…Àt  ÇE¨èÒF‹E ÇE¨ÿÿÿÿ‰$èÐßüÿƒêt]‹M ‰ $è@D‹U¹‹‹@ôÐP‹@ÇE¨èÿµÇE¨ÿÿÿÿèƒF1ÒéÿÿÿÇE¨èpF‹U ÇE¨ÿÿÿÿ‰$ènßüÿ‹E ‰$èãC‹U¹‹‹@ôÐP‹@ÇE¨袵èNU‰åƒìxEè‰EÄE¤‰$‰]ô‰uø‰}üÇE¼°´KÇEÀüÇKÇEȵeH‰eÌèXÛüÿ‹UEçÇB‰$ÇD$‰T$ÇE¨ÿÿÿÿè 1À€}焌‹M‹‹@ô‹Dx‹P;P ƒ½¶ ƒÂ‰P‰M ‹EÇ@E¤‰$è‹Ûüÿ‹E ‹]ô‹uø‹}ü‰ì]Ãê„‹M ‰ $èçB‹U¹‹‹@ôÐP‹@ÇE¨覴ÇE¨ÿÿÿÿè*E1À‹U‹R…Òu/ƒÈ‹M‹‹RôÊ B‰$ÇE¨ÿÿÿÿ‰D$è;¶ÇE ÿÿÿÿéiÿÿÿ…ÀuÐÇE ÿÿÿÿéYÿÿÿ‹‰$‹B(ÇE¨ÿЉE ¸ƒ} ÿt˜é+ÿÿÿƒÅ‹E¨‹M¬‹U°ƒø‰M tƒøt(…À„/ÿÿÿ ÇE¨èŒD‹E ÇE¨ÿÿÿÿ‰$èŠÝüÿÇE¨ènD‹U ÇE¨ÿÿÿÿ‰$èlÝüÿ‹E ‰$èáA‹U¹‹‹@ôÐP‹@ÇE¨è ³è›LU‰åƒìxEè‰EÄE¤‰$‰]ô‰uø‰}üÇE¼°´KÇEÀ„ÇKÇEÈ5gH‰eÌèXÙüÿ‹UEçÇBÇD$‰T$‰$ÇE¨ÿÿÿÿè €}çt:‹U‹‹@ô‹Dx‹P;P s/¶‰U E¤‰$è¥Ùüÿ‹E ‹]ô‹uø‹}ü‰ì]Ãt&ÇE ÿÿÿÿë׋‰$‹B$ÇE¨ÿЉE ƒÀu¾‹U‹Pô‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$è}´뛃Å‹E¬‹U°‰E ‹E¨ƒøt ƒøtm…Àt  ÇE¨èC‹E ÇE¨ÿÿÿÿ‰$èÜüÿƒêtb‹E ‰$è~@‹U¹‹‹@ôÐP‹@ÇE¨è=²ÇE¨ÿÿÿÿèÁBÇE ÿÿÿÿéÿÿÿÇE¨è©B‹U ÇE¨ÿÿÿÿ‰$è§Ûüÿ‹U ‰$è@‹U¹‹‹@ôÐP‹@ÇE¨èÛ±èÖJU‰åƒìxEè‰EÄE¤‰$‰]ô‰uø‰}üÇE¼°´KÇEÀlÇKÇEÈìhH‰eÌè˜×üÿ‹UEçÇBÇD$‰T$‰$ÇE¨ÿÿÿÿè`€}çuE¤‰$èÿ×üÿ‹E‹]ô‹uø‹}ü‰ì]ËM‹‹@ô‹Dx‹M‹‰L$‹M ‰$‰L$‹B ÇE¨ÿЋU9E‰Bt¯‹M‹‹PôÊ‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$èÆ²늃Å‹E¨‹U¬ƒø‰U ‹U°t ƒøtf…Àt  ÇE¨èYA‹M ÇE¨ÿÿÿÿ‰ $èWÚüÿƒêt[‹M ‰ $èÇ>‹U¹‹‹@ôÐP‹@ÇE¨膰ÇE¨ÿÿÿÿè Aé ÿÿÿÇE¨èù@‹E ÇE¨ÿÿÿÿ‰$è÷Ùüÿ‹M ‰ $èl>‹U¹‹‹@ôÐP‹@ÇE¨è+°è&IU‰åƒìxEè‰EÄE¤‰$‰]ô‰uø‰}üÇE¼°´KÇEÀ ÇKÇEÈœjH‰eÌèèÕüÿ‹UEçÇD$‰$ÇE¨ÿÿÿÿ‰T$è·€}çt1‹U‹‹@ô‹Dx…Àt!‹‰$‹BÇE¨ÿЃøÿt-ÇE ë fÇE ÿÿÿÿE¤‰$èÖüÿ‹E ‹]ô‹uø‹}ü‰ì]ËU‹Pô‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$è±ÇE ÿÿÿÿ뻃Å‹E¬‹U°‰Eœ‹E¨ƒøt ƒøtm…Àt  ÇE¨è©?‹EœÇE¨ÿÿÿÿ‰$è§Øüÿƒêtb‹Eœ‰$è=‹U¹‹‹@ôÐP‹@ÇE¨èÖ®ÇE¨ÿÿÿÿèZ?ÇE ÿÿÿÿé5ÿÿÿÇE¨èB?‹UœÇE¨ÿÿÿÿ‰$è@Øüÿ‹Uœ‰$èµ<‹U¹‹‹@ôÐP‹@ÇE¨èt®èoGU‰å쨋E ‰]ô‰uø‰}ü‰E¸‹EÇEœ°´KÇE ÔÆKÇE¨lH‰E¼‹E‰e¬‰EÀ‹E‰EÄEè‰E¤E„‰$è Ôüÿ‹U‹‹@ôÐö@tE„‰$è’Ôüÿ‹E‹]ô‹uø‹}ü‰ì]Ãf‹U¸MØ‹@x‰UÈ‹U¼‹]ȉUÌ‹UÀ‰UЋUĉUÔ‹‰\$‹]ÌÇD$‰D$‰ $‰\$ ‹]Љ\$‹]Ô‰\$‹BÇEˆÿЋE؃ì#E܃øÿ…zÿÿÿ‹U‹Pô‹B‰$ÇEˆÿÿÿÿƒÈ‰D$è&¯éTÿÿÿƒÅ‹EŒ‹U‰E€‹Eˆƒøt ƒøtf…Àt  ÇEˆè¶=‹E€ÇEˆÿÿÿÿ‰$è´Öüÿƒêt[‹E€‰$è$;‹U¹‹‹@ôÐP‹@ÇEˆèã¬ÇEˆÿÿÿÿèg=éÕþÿÿÇEˆèV=‹U€ÇEˆÿÿÿÿ‰$èTÖüÿ‹U€‰$èÉ:‹U¹‹‹@ôÐP‹@ÇEˆ般èƒEU‰å숋E ‹U‰]ô‰uø‰E˜E¤‰UœUè‰$‰}üÇE¼°´KÇEÀìÆK‰UÄÇEÈ@nH‰eÌè9Òüÿ‹]‹‹@ôØö@tE¤‰$è¾Òüÿ‹E‹]ô‹uø‹}ü‰ì]Ë@xMØ‹]‹uœ‹‰\$‹]˜ÇD$‰t$ ‰D$‰\$‰ $‹BÇE¨ÿЋE؃ì#E܃øÿuŸ‹]‹‹PôÚ‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$èu­éwÿÿÿƒÅ‹E¨‹U¬ƒø‰U˜‹U°t ƒøtf…Àt  ÇE¨è<‹u˜ÇE¨ÿÿÿÿ‰4$èÕüÿƒêt[‹E˜‰$ès9‹U¹‹‹@ôÐP‹@ÇE¨è2«ÇE¨ÿÿÿÿè¶;éøþÿÿÇE¨è¥;‹E˜ÇE¨ÿÿÿÿ‰$è£Ôüÿ‹]˜‰$è9‹u¹‹‹@ôðP‹@ÇE¨èתèÒCU‰åìˆEè‰EÄE¤‰$‰]ô‰uø‰}üÇE¼°´KÇEÀ¼ÆKÇEÈäoH‰eÌè•Ðüÿ‹UÇÿÿÿÿÇBÇBÿÿÿÿ‹U ‹‹@ôÐö@tE¤‰$èÑüÿ‹E‹]ô‹uø‹}ü‰ì]‹@xMØ‹ÇD$ÇD$ÇD$ÇD$ ‰D$‰ $‹BÇE¨ÿЋUƒì‹E؉‹E܉B‹Eà‰B뎃Å‹E¬‹U°‰E ‹E¨ƒøt ƒøtf…Àt  ÇE¨èa:‹E ÇE¨ÿÿÿÿ‰$è_Óüÿƒêt[‹E ‰$èÏ7‹U ¹‹‹@ôÐP‹@ÇE¨莩ÇE¨ÿÿÿÿè:éÿÿÿÇE¨è:‹U ÇE¨ÿÿÿÿ‰$èÿÒüÿ‹U ‰$èt7‹U ¹‹‹@ôÐP‹@ÇE¨è3©è.BU‰åƒìxEè‰EÄE¤‰$‰]ô‰uø‰}üÇE¼°´KÇEÀ$ÇKÇEÈŸqH‰eÌèèÎüÿ‹UEçÇBÇD$‰T$‰$ÇE¨ÿÿÿÿè° €}çt‹U‹Pô‹Bx…ÀtO‹P9Ps!ƒê‰PE¤‰$è2Ïüÿ‹E‹]ô‹uø‹}ü‰ì]ËÇD$ÿÿÿÿ‰$‹B,ÇE¨ÿЃÀuÇ‹U‹Pô‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$èª뤃Å‹E¬‹U°‰E ‹E¨ƒøt ƒøtf…Àt  ÇE¨è¦8‹E ÇE¨ÿÿÿÿ‰$è¤Ñüÿƒêt[‹E ‰$è6‹U¹‹‹@ôÐP‹@ÇE¨èÓ§ÇE¨ÿÿÿÿèW8é%ÿÿÿÇE¨èF8‹U ÇE¨ÿÿÿÿ‰$èDÑüÿ‹U ‰$è¹5‹U¹‹‹@ôÐP‹@ÇE¨èx§ès@U‰åWVSEèƒì|‰EÄE¤ÇE¼°´KÇEÀ<ÕKÇEÈstH‰ẻ$è>Íüÿƒ} „,‹MEçÇA‰$ÇD$‰L$ÇE¨ÿÿÿÿèü‹E …ÀŽ›€}ç„‘‹]‹‰]”‹@ô‹Dx‰Æ‰Eœ‹@;F ƒQ¶‹MÆE›‹Q9U ~Aƒøÿt<‹]œ‹u ‹C ‹K)Ö‰Ã)Ë9ÞNÞƒû~tÙÚ‹uœ‹]9ȉN‰S†Ä9U ¶¿} ÿÿÿt+€}›t ‹UÇBÿÿÿƒøÿtuE¤‰$èûÌüÿ‹EƒÄ|[^_]ÃøÿtЋuº€ÆE›ÇF€éiÿÿÿv‹]ƒÂ9ȉSvq‹uœƒÁ‰N9ÁsN¶‹M‹Qé>ÿÿÿ‹UÇE¨ÿÿÿÿ‰$è6‰Eë‹‹u‹U”‹Pô‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$è§ébÿÿÿ‹uœ‹‰4$‹@$ÇE¨ÿÐ럋Uœ‹‰$‹@(ÇE¨ÿЉƒÈÿƒÂt‹]œ‹K‹C élÿÿÿ‹]œ‹‰$‹@$ÇE¨ÿÐé™þÿÿƒÅ‹E¨‹u¬‹U°ƒø‰u t ƒøt\…Àt  ÇE¨èÒ5‹M ÇE¨ÿÿÿÿ‰ $èÐÎüÿƒêt]‹M ‰ $è@3‹]‹‹@ôE”‹PƒH€âu/ÇE¨ÿÿÿÿè5é’þÿÿÇE¨è|5‹] ÇE¨ÿÿÿÿ‰$èzÎüÿÇE¨èÎ=‹E ‰$èã2‹U‹‹@ôE”‹PƒH€ât ÇE¨è =ÇE¨è”=U‰åWVSEè쌉EÄE¤ÇE¼°´KÇEÀÅKÇEÈxH‰ẻ$è[Êüÿƒ}ÿ„Ò‹EÇ@‰D$EçÇD$‰$ÇE¨ÿÿÿÿè‹M …ÉŽ!€}ç„‹M¶U‹ˆUœ‰M€‹@ô‹Dx‰Â‰EŒ‹@;B ƒm¶‹M¾UœÆE‡‹I‰Uˆ‰M ¶‹U 9U Žœƒøÿ„“9E„Š‹MŒ‹EŒ‹U +U ‹I ‹@‰M‰E˜‰È+E˜9ÂNƒø‰EœŽÈ‹Eœ‹Uˆ‹M˜‰D$‰T$‰ $‰E”èˆlýÿ…Àt +E˜‰Eœ‰E”‹UŒ‹E˜E”‹MœM ‹M ‰B‹U9E‰J†+‹U 9U ¶dÿÿÿ} ÿÿÿt?€}‡t ‹MÇAÿÿÿƒøÿ„Ñ9E„ŸE¤‰$è’Éüÿ‹EÄŒ[^_]Ãt&ƒøÿt¼9Et·‹UÇE €ÆE‡ÇB€éìþÿÿ‹E ‹U‹M˜ƒÀ9M‰B†ñ‹UŒ‰ÈƒÀ‰B9E†„¶‹M‹I‰M é¯þÿÿ‹U ‹MÇE¨ÿÿÿÿ‰T$‰ $èöúÿÿ‰Eéaÿÿÿ‹U‹B=ÿÿÿtƒÀ‰B‹MŒ‹A;A sMƒÀ‰Aé8ÿÿÿ‹M‹U€‹Pô‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$èá£éÿÿÿ‹UŒ‹‰$‹@$ÇE¨ÿÐéfÿÿÿ‹UŒ‹‰$‹@(ÇE¨ÿÐéÝþÿÿƒÅ‹E¨‹M¬‹U°ƒø‰M „·ƒø„…ÀtN ‹MŒ‹‰ $‹@(ÇE¨ÿЉƒÈÿƒÂ„ÿÿÿ‹UŒ‹J ‹B‰Méçþÿÿ‹MŒ‹‰ $‹@$ÇE¨ÿÐé}ýÿÿƒêtu‹M ‰ $èw/‹U‹‹@ôE€P‹@ÇE¨èZ¡ÇE¨ÿÿÿÿè¾1é,þÿÿÇE¨è­1‹U ÇE¨ÿÿÿÿ‰$è«ÊüÿÇE¨è1‹E ÇE¨ÿÿÿÿ‰$èÊüÿ‹E ‰$è/‹U‹‹@ôE€P‹@ÇE¨èå èÀ9U‰åƒìxEè‰EÄE¤‰$‰]ô‰uø‰}üÇE¼°´KÇEÀœÇKÇEÈþyH‰eÌèˆÆüÿ‹UEçÇBÇD$‰T$‰$ÇE¨ÿÿÿÿèP€}çt$‹U‹‹@ô‹Dx‹P;P s+ƒÂ‰P‹EÇ@E¤‰$èËÆüÿ‹E‹]ô‹uø‹}ü‰ì]ˉ$‹B(ÇE¨ÿЃÀuÅ‹U‹Pô‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$è´¡묃Å‹E¬‹U°‰E ‹E¨ƒøt ƒøtf…Àt  ÇE¨èG0‹E ÇE¨ÿÿÿÿ‰$èEÉüÿƒêt[‹E ‰$èµ-‹U¹‹‹@ôÐP‹@ÇE¨ètŸÇE¨ÿÿÿÿèø/é-ÿÿÿÇE¨èç/‹U ÇE¨ÿÿÿÿ‰$èåÈüÿ‹U ‰$èZ-‹U¹‹‹@ôÐP‹@ÇE¨èŸè8U‰åWVSƒì,‹E‹] ‰Eà¶EˆEß‹EàÆ‹‹xôÇEä ;‹q‰Ê…öuI‹qp…öt‰4$è*‹‹xô ;‰Ê€}ßÇEätCv‹r…öu‹Mä…Éu‹EàÆƒÄ,[^_]Ãt&‹Eä‰UƒÈ ð‰E ƒÄ,[^_]éF ¶öD; ti‹qx‹N;N ƒ›¶ ‹z|…ÿ„ˆƒùÿt]‹W¶ÉöJ t%‹F‹V 9ÐsXƒÀ‰F9Ðs.¶‹W¶ÀöB uÝ‹‹PôÇEäÚéUÿÿÿt&‰ÊéIÿÿÿ‹‰4$ÿP$ƒøÿuÈ‹‹PôÇEäÚé)ÿÿÿ‹‰4$ÿP(ƒÀtà‹F‹V ë™è/Ì‹‰4$ÿP$‰Á‹‹PôÚéRÿÿÿU‰åWVSƒì,‹E‹] ‰Eà¶EˆEß‹EàÆ‹‹xôÇEä ;‹q‰Ê…öuI‹qp…öt‰4$躋‹xô ;‰Ê€}ßÇEätCv‹r…öu‹Eä…Àu‹EàÆƒÄ,[^_]Ãt&‹Eä‰UƒÈ ð‰E ƒÄ,[^_]éÖž¶öD; ti‹qx‹N;N ƒ›¶ ‹z|…ÿ„ˆƒùÿt]‹W¶ÉöJ t%‹F‹V 9ÐsXƒÀ‰F9Ðs.¶‹W¶ÀöB uÝ‹‹PôÇEäÚéUÿÿÿt&‰ÊéIÿÿÿ‹‰4$ÿP$ƒøÿuÈ‹‹PôÇEäÚé)ÿÿÿ‹‰4$ÿP(ƒÀtà‹F‹V ë™è¿Ê‹‰4$ÿP$‰Á‹‹PôÚéRÿÿÿU‰åVSƒì‹]‹‹@ô‹t|…ötH€~t(¶F'¾À‰D$ ‹E‰$‰D$‹E ‰D$è1ƒÄ[^]É4$èbÒýÿ‹ÇD$ ‰4$ÿPëÂè;ÊU‰åWVSƒì|¶EUè‰UÄÇE¼°´KˆE E¤‰$ÇEÀèÄKÇEȤ€H‰eÌè‡Áüÿ‹MEçÇA‰L$ÇD$‰$ÇE¨ÿÿÿÿèOüÿÿ1É€}ç„(‹U¶] ‹‰]Œ‹@ô‹Dx‰Á‰E˜‹@;A ƒ1¶‹]¾U ‹K‰U騃øÿ„á9EŒ„¸‹]˜÷ÑM‹[‰]”‹]˜‹S +U”9ÑNуú‰U Ž‹] ‹E‹U”‰\$‰D$‰$‰]œèäcýÿ…Àt +E”‰E ‰Eœ‹Mœ‹]”‹E ‰L$‰\$‰$ènbýÿ‹Uœ‹M˜U ‹]‰Ð‹U˜A‰A‹M K;B ‰KƒÛ¶Q;UŒLÿÿÿƒøÿt19EŒ¹u,´&‹E‰P‹U˜‹B;B ƒ"ƒÀ1ɉB빋U…Ò~‹] Æ‹E‹@…ÀutƒÉ‹U‹‹@ôÐ H‰$ÇE¨ÿÿÿÿ‰L$èÁ›E¤‰$è†Àüÿ‹EƒÄ|[^_]ËU ˆ‹]˜ƒÂ‰U ‹M‹C‹S ƒA9ÐsWƒÀ‰C9Âv7¶‹U‹Jé2ÿÿÿt&…Ét«ë‰‹M˜‹‰ $‹@$ÇE¨ÿЋ]‹Ké ÿÿÿ‹]˜‹‰$‹@$ÇE¨ÿÐë¶‹U˜‹‰$‹@(ÇE¨ÿЉƒÈÿƒÂt˜‹M˜‹A‹Q 놃Å‹E¬‹U°‰E ‹E¨ƒø„—ƒøtt…Àt6 ‹M˜‹‰ $‹@(ÇE¨ÿÐ1ÉéÓþÿÿ‹M˜‹‰ $‹@$ÇE¨ÿÐé¹ýÿÿƒêtq‹] ‰$èõ&‹U‹‹@ôÐP‹@ÇE¨èÙ˜ÇE¨ÿÿÿÿè=)ë¦ÇE¨è/)‹] ÇE¨ÿÿÿÿ‰$è-ÂüÿÇE¨è)‹M ÇE¨ÿÿÿÿ‰ $èÂüÿ‹U ‰$è„&‹M‹‹@ôÈP‹@ÇE¨èh˜èC1U‰åƒìx¶E Uè‰]ô‰UĉuøˆE E¤‰$‰}üÇE¼°´KÇEÀ<ÇKÇEÈ•‚H‰eÌè¾üÿ‹]EçÇCÇD$‰\$‰$ÇE¨ÿÿÿÿèÉøÿÿ€}çta‹‹PôÚ‹Bx…Àt:‹P9Ps ¶] Jÿ:Zÿta‹¶M ‰$‰L$‹B,ÇE¨ÿЃøÿu!‹U‹Pô‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$èB™E¤‰$è¾üÿ‹E‹]ô‹uø‹}ü‰ì]ô&‰HëكŋE¨‹U¬ƒø‰U ‹U°t ƒøtf…Àt  ÇE¨è°'‹] ÇE¨ÿÿÿÿ‰$è®Àüÿƒêt[‹] ‰$è%‹U¹‹‹@ôÐP‹@ÇE¨èÝ–ÇE¨ÿÿÿÿèa'éZÿÿÿÇE¨èP'‹E ÇE¨ÿÿÿÿ‰$èNÀüÿ‹] ‰$èÃ$‹U¹‹‹@ôÐP‹@ÇE¨è‚–è}/U‰åƒìxEè‰EÄE¤‰$‰]ô‰uø‰}üÇE¼°´KÇEÀTÇKÇEȆ„H‰eÌè8¼üÿ‹UEçÇBÇD$‰T$‰$ÇE¨ÿÿÿÿè÷ÿÿ€}çtM‹M‹‹@ô‹Tx‹B +Bt]…À~n‹M;EOE‹‹Rô‹Tx‹ ‰D$‹E ‰$‰D$‹A ÇE¨ÿЋU‰B‹ME¤‹I‰$‰M èI¼üÿ‹E ‹]ô‹uø‹}ü‰ì]ˉ$‹@ÇE¨ÿÐ…À’ƒøÿu‹M‹‹PôÊ‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$è,—ëƒÅ‹E¨‹M¬‹U°ƒø‰Mœt ƒøtf…Àt  ÇE¨è¿%‹EœÇE¨ÿÿÿÿ‰$è½¾üÿƒêt[‹Mœ‰ $è-#‹U¹‹‹@ôÐP‹@ÇE¨èì”ÇE¨ÿÿÿÿèp%éÿÿÿÇE¨è_%‹UœÇE¨ÿÿÿÿ‰$è]¾üÿ‹Eœ‰$èÒ"‹U¹‹‹@ôÐP‹@ÇE¨è‘”èŒ-U‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà´ÆKÇEè†H‰eìèQºüÿ‹EƒÀ‰EÀ‰$èÀ}‹EÀÆ@tÇ@pÆ@uÇ@xÇ@|Ç€€Ç€„‹EÇl]MÇ@€]MÇ@‹E ÇEȉD$‹EÀ‰$èL•Eĉ$èqºüÿÉÃÅ‹ẺE¼‹EÇ@PmM‹EÀÇEȉ$èÊ}‹E¼ÇEÈÿÿÿÿ‰$è8½üÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÇKÇEè‡H‰eìèa¹üÿ‹EƒÀ‰EÀ‰$èÐ|‹EÀÆ@tÇ@pÆ@uÇ@xÇ@|Ç€€Ç€„‹EÇl]MÇ@€]MÇ@‹EÀÇD$ÇEȉ$è[”Eĉ$耹üÿÉÃÅ‹ẺE¼‹EÇ@PmM‹EÀÇEȉ$èÙ|‹E¼ÇEÈÿÿÿÿ‰$èG¼üÿU‰åSƒì‹M ‹E‹‹I‹Zô‰‰ ‹MÇ@‰M Bô‰EƒÄ[]éÙ“U‰åSƒì‹M ‹E‹‹I‹Zô‰‰ Ç@ÇE Bô‰EƒÄ[]阓U‰åSƒì‹]Çl]MCÇCÇCPmM‰$è|‰]ƒÄ[]éšU‰åƒì‹EPÇl]MÇ@Ç@PmM‰UÉé×{U‰å‹U ‹E‹ ‹R‰‹Iô‰Ç@]ÃU‰åƒì‹E ÉÿàU‰åSƒì‹]‹‹@ô‰$ÿU ‰ØƒÄ[]ÃU‰åSƒì‹]‹‹@ô‰$ÿU ‰ØƒÄ[]ÃU‰åƒìxEè‰EÄE¤‰$‰]ô‰uø‰}üÇE¼°´KÇEÀÈKÇEȪ‰H‰eÌè·üÿ‹UEçÇD$‰$ÇE¨ÿÿÿÿ‰T$è×ñÿÿ€}ç„‹] …Û„‰‹E‹M‹U ‰EœEæ‰D$‰T$‹‹@ô‹DxÇE¨‰$èƒÉƒøÀƒà€}ætYƒÈ‹M‹‹RôUœ B‰$ÇE¨ÿÿÿÿ‰D$èA’E¤‰$è·üÿ‹E‹]ô‹uø‹}ü‰ì]ö‹M …ÉuØ‹M¸‰Mœëª…Àu¦ëŃÅ‹E¨‹M¬‹U°ƒø‰M t ƒøtf…Àt  ÇE¨è› ‹E ÇE¨ÿÿÿÿ‰$虹üÿƒêt[‹M ‰ $è ‹U¹‹‹@ôÐP‹@ÇE¨èÈÇE¨ÿÿÿÿèL éFÿÿÿÇE¨è; ‹U ÇE¨ÿÿÿÿ‰$è9¹üÿ‹E ‰$讋U¹‹‹@ôÐP‹@ÇE¨èmèh(U‰åƒìÉé´¼ÿÿU‰åƒìÉ锾ÿÿU‰åƒìÉétÀÿÿU‰åƒìÉéTÂÿÿU‰åƒìÉé4ÄÿÿU‰åWVSEèƒì|‰EÄE¤‰$ÇE¼°´KÇEÀ,ÈKÇEÈÞ‹H‰eÌèÞ´üÿ‹UEçÇD$‰$ÇE¨ÿÿÿÿ‰T$è­ïÿÿ€}çtp‹MÇEà‹‹PôÊ‹‚„…À„Š‹uÜ‹Zx‰t$uà‰t$‰T$ÇD$ ÇD$ÿÿÿÿ‰\$ÇD$ÿÿÿÿ‰$‹A ÇE¨ÿЋUÜ‹E ‰‹Eà…ÀuE¤‰$èÜ´üÿ‹EƒÄ|[^_]ËM‹‹RôÊ B‰$ÇE¨ÿÿÿÿ‰D$èàëÇÇE¨èr¼ƒÅ‹E¨‹M¬‹U°ƒø‰M t ƒøtf…Àt  ÇE¨èg‹E ÇE¨ÿÿÿÿ‰$èe·üÿƒêt[‹M ‰ $èÕ‹U¹‹‹@ôÐP‹@ÇE¨è”ÇE¨ÿÿÿÿèé5ÿÿÿÇE¨è‹U ÇE¨ÿÿÿÿ‰$è·üÿ‹E ‰$èz‹U¹‹‹@ôÐP‹@ÇE¨è9è4&U‰åƒìÉé4ÄÿÿU‰åƒìÉéÆÿÿU‰åƒìÉéôÇÿÿU‰åWVSEèƒì|‰EÄE¤‰$ÇE¼°´KÇEÀDÈKÇEÈ%ŽH‰eÌèβüÿ‹UEçÇD$‰$ÇE¨ÿÿÿÿ‰T$èíÿÿ€}焜‹MÇEà‹‹PôÊ‹‚„…À„½‹uÜ‹Zx‰t$uà‰t$‰T$ÇD$ ÇD$ÿÿÿÿ‰\$ÇD$ÿÿÿÿ‰$‹A ÇE¨ÿЋEÜ=€ÿÿ}H‹Eà‹U ƒÈ‰EàfÇ€‹M‹‹RôÊ B‰$ÇE¨ÿÿÿÿ‰D$è×E¤‰$蜲üÿ‹EƒÄ|[^_]Ã=ÿ‹U f‰‹Eà…ÀtÕ볋Eà‹M ƒÈ‰EàfÇÿë ÇE¨è+ºƒÅ‹E¨‹M¬‹U°ƒø‰M t ƒøti…Àt  ÇE¨è ‹E ÇE¨ÿÿÿÿ‰$èµüÿƒêt^‹M ‰ $莋U¹‹‹@ôÐP‹@ÇE¨èM‹ÇE¨ÿÿÿÿèÑ‹EàéYÿÿÿÇE¨è½‹U ÇE¨ÿÿÿÿ‰$è»´üÿ‹E ‰$è0‹U¹‹‹@ôÐP‹@ÇE¨èïŠèê#U‰åƒìÉé´ÇÿÿU‰åƒìÉé”ÉÿÿU‰åƒìÉétËÿÿU‰åWVSƒìl‹E Uè‰UÄÇE¼°´K‰E ˆEœE¤‰$ÇEÀÀ¼KÇEÈqH‰eÌèu°üÿ‹MEà‰$ÇE¨ÿÿÿÿ‰L$èL €}àt"‹U‹‹@ô‹Dx‹P;Pƒ‡¶M ˆ ƒ@‹Eä‰Â‰E ‹‹@ôöD ‰Eœt-躄Àu$‹U ‹Mœ‹D x…Àt‹‰$‹BÇE¨ÿÿÿÿÿЃøÿtE¤‰$è…°üÿ‹EƒÄl[^_]ËUä‹Pô‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$艋ëÇ‹¶Mœ‰$‰L$‹B4ÇE¨ÿЃÀ…aÿÿÿ‹U‹Pô‹B‰$ÇE¨ƒÈ‰D$èD‹é;ÿÿÿƒÅ‹E¨‹M¬‹U°ƒø‰M t~=ƒøtƒøt ÇE¨èÐEà‰$ÇE¨èþ ‹M ÇE¨ÿÿÿÿ‰ $è¼²üÿ…Àu¿ƒêt=‹M ‰ $è(‹U¹‹‹@ôÐP‹@ÇE¨览ÇE¨èké¢þÿÿ‹E ‰$èë‹U¹‹‹@ôÐP‹@ÇE¨èjˆè¥!U‰åƒìhEè‰EÔE´‰$‰]ô‰uø‰}üÇḚ´KÇEÐ<¼KÇEØÚ‘H‰eÜèh®üÿ‹U‹‹@ô‹Dx…Àt7‹‰$‹BÇE¸ÿЃøÿu!‹U‹Pô‹B‰$ÇE¸ÿÿÿÿƒÈ‰D$èñ‰E´‰$è¶®üÿ‹E‹]ô‹uø‹}ü‰ì]ÃÅ‹E¼‹UÀ‰E°‹E¸ƒøt ƒøtf…Àt  ÇE¸èk‹E°ÇE¸ÿÿÿÿ‰$èi±üÿƒêt[‹E°‰$èÙ‹U¹‹‹@ôÐP‹@ÇE¸èX‡ÇE¸ÿÿÿÿèéfÿÿÿÇE¸è ‹U°ÇE¸ÿÿÿÿ‰$è ±üÿ‹U°‰$è~‹U¹‹‹@ôÐP‹@ÇE¸èý†è8 U‰å쨋E ‰]ô‰uø‰}ü‰E¸‹EÇEœ°´KÇE l¼KÇE¨¿“H‰E¼‹E‰e¬‰EÀ‹E‰EÄEè‰E¤E„‰$èݬüÿ‹U‹‹@ôÐö@tE„‰$èb­üÿ‹E‹]ô‹uø‹}ü‰ì]Ãf‹U¸MØ‹@x‰UÈ‹U¼‹]ȉUÌ‹UÀ‰UЋUĉUÔ‹‰\$‹]ÌÇD$‰D$‰ $‰\$ ‹]Љ\$‹]Ô‰\$‹BÇEˆÿЋE؃ì#E܃øÿ…zÿÿÿ‹U‹Pô‹B‰$ÇEˆÿÿÿÿƒÈ‰D$èö‡éTÿÿÿƒÅ‹EŒ‹U‰E€‹Eˆƒøt ƒøtf…Àt  ÇEˆè†‹E€ÇEˆÿÿÿÿ‰$脯üÿƒêt[‹E€‰$èô‹U¹‹‹@ôÐP‹@ÇEˆès…ÇEˆÿÿÿÿè7éÕþÿÿÇEˆè&‹U€ÇEˆÿÿÿÿ‰$è$¯üÿ‹U€‰$虋U¹‹‹@ôÐP‹@ÇEˆè…èSU‰å숋E ‹U‰]ô‰uø‰E˜E¤‰UœUè‰$‰}üÇE¼°´KÇEÀ„¼K‰UÄÇEÈp•H‰eÌè «üÿ‹]‹‹@ôØö@tE¤‰$莫üÿ‹E‹]ô‹uø‹}ü‰ì]Ë@xMØ‹]‹uœ‹‰\$‹]˜ÇD$‰t$ ‰D$‰\$‰ $‹BÇE¨ÿЋE؃ì#E܃øÿuŸ‹]‹‹PôÚ‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$èE†éwÿÿÿƒÅ‹E¨‹U¬ƒø‰U˜‹U°t ƒøtf…Àt  ÇE¨èÕ‹u˜ÇE¨ÿÿÿÿ‰4$èÓ­üÿƒêt[‹E˜‰$èC‹U¹‹‹@ôÐP‹@ÇE¨èƒÇE¨ÿÿÿÿè†éøþÿÿÇE¨èu‹E˜ÇE¨ÿÿÿÿ‰$ès­üÿ‹]˜‰$èè‹u¹‹‹@ôðP‹@ÇE¨ègƒè¢U‰åìˆEè‰EÄE¤‰$‰]ô‰uø‰}üÇE¼°´KÇEÀT¼KÇEÈ—H‰eÌèe©üÿ‹UÇÿÿÿÿÇBÇBÿÿÿÿ‹U ‹‹@ôÐö@tE¤‰$èÓ©üÿ‹E‹]ô‹uø‹}ü‰ì]‹@xMØ‹ÇD$ÇD$ÇD$ÇD$ ‰D$‰ $‹BÇE¨ÿЋUƒì‹E؉‹E܉B‹Eà‰B뎃Å‹E¬‹U°‰E ‹E¨ƒøt ƒøtf…Àt  ÇE¨è1‹E ÇE¨ÿÿÿÿ‰$è/¬üÿƒêt[‹E ‰$蟋U ¹‹‹@ôÐP‹@ÇE¨è‚ÇE¨ÿÿÿÿèâéÿÿÿÇE¨èÑ‹U ÇE¨ÿÿÿÿ‰$èÏ«üÿ‹U ‰$èD‹U ¹‹‹@ôÐP‹@ÇE¨èÃèþU‰åWVSEèƒìl‰EÄE¤‰$ÇE¼°´KÇEÀ¤¼KÇEÈ™H‰eÌè¾§üÿ‹UEà‰$ÇE¨ÿÿÿÿ‰T$è•€}àtJ‹M‹‹@ô‹Dx‹M‹‰L$‹M ‰$‰L$‹B0ÇE¨ÿÐ9Et‹U‹Pô‹B‰$ƒÈ‰D$è%ƒ‹M䋉M ‹@ôöD ‰Eœt-è;±„Àu$‹M ‹Uœ‹Dx…Àt‹‰$‹BÇE¨ÿÿÿÿÿЃøÿtE¤‰$訧üÿ‹EƒÄl[^_]ËUä‹Pô‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$謂ëǃÅ‹E¬‹U°‰E ‹E¨ƒøt~<ƒøtƒøt ÇE¨è<Eà‰$ÇE¨èj‹M ÇE¨ÿÿÿÿ‰ $è(ªüÿ…ÀuÀƒêt=‹E ‰$蔋U¹‹‹@ôÐP‹@ÇE¨è€ÇE¨è×éíþÿÿ‹U ‰$èW‹M‹‹@ôȹP‹@ÇE¨èÖèU‰åƒì‰]ø‹] ‰uü‹u‹Æ‰^‹@ô‹Hp…Ét‹P…Òu#‰ $è:÷ÿÿ‹Xô‰Ø‹P…Òu Æ‹]ø‹uü‰ì]ÃÊ‹]ø‰U ‹uü‰E‰ì]éxU‰åƒì‰]ø‹] ‰uü‹u‹Æ‰^‹@ô‹Hp…Ét‹P…Òu#‰ $èÊöÿÿ‹Xô‰Ø‹P…Òu Æ‹]ø‹uü‰ì]ÃÊ‹]ø‰U ‹uü‰E‰ì]éU‰åƒì(‰}ü‹}‰]ô‰uø‹_‹‹pôöD3 tè ¯„Àu‹D3x…Àt ‹‰$ÿRƒøÿt‹]ô‹uø‹}ü‰ì]Ãt&‹W‹Pô‹B‰$ƒÈ‰D$è–€‹]ô‹uø‹}ü‰ì]ÃU‰åƒì(‰}ü‹}‰]ô‰uø‹_‹‹pôöD3 t芮„Àu‹D3x…Àt ‹‰$ÿRƒøÿt‹]ô‹uø‹}ü‰ì]Ãt&‹W‹Pô‹B‰$ƒÈ‰D$耋]ô‹uø‹}ü‰ì]ÃU‰åƒì‰]ø‹]‰uü‹M ‹u‹‹@ô‹Dx‹‰t$‰L$‰$ÿR09Æt‹‹uüXô‹C‰]‹]øƒÈ‰E ‰ì]鯋]ø‹uü‰ì]ÃU‰åWVSEèƒì|‰EÄE¤‰$ÇE¼°´KÇEÀؽKÇEÈùH‰eÌ螣üÿ‹UEà‰$ÇE¨ÿÿÿÿ‰T$èuýÿÿ€}à„Ï‹M‹‹PôÑ‹¹€‰M …ÿ‰}œ„j‹E €xu…‹} ‹|…ÿ‰}˜„z‹E˜€x„¶@=‹U ˆBt‹MÆBu‹‹RôщM ‹} ¾À¹‹_x‹}œ…Û‹7”Á‰D$‹} ‹EœU‰\$‰|$‰T$ ‰L$‰$‹F$ÇE¨ÿЄÒt#‹}‹‹Pôú‹B‰$ÇE¨ƒÈ‰D$è|~‹U䋉U ‹@ôöD ‰Eœt-è’¬„Àu$‹} ‹Mœ‹Dx…Àt‹‰$‹BÇE¨ÿÿÿÿÿЃøÿt*E¤‰$èÿ¢üÿ‹EƒÄ|[^_]Ãt&¶@té0ÿÿÿ´&‹Uä‹Pô‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$èï}볋M˜ÇE¨‰ $苲ýÿ‹}˜‹ÇD$ ‰<$ÿPéÅþÿÿÇE¨èWªƒÅ‹E¬‹U°‰E ‹E¨ƒøt&~Hƒøtƒøt ÇE¨è)ªÇE¨è= Eà‰$ÇE¨èküÿÿ‹M ÇE¨ÿÿÿÿ‰ $è)¥üÿ…Àu´ƒêt=‹} ‰<$è• ‹U¹‹‹@ôÐP‹@ÇE¨è{ÇE¨èØ é—þÿÿ‹U ‰$èX ‹M‹‹@ôȹP‹@ÇE¨è×zèU‰åWVS쌶E Uè‰UÄÇE¼°´KˆE—E¤‰$ÇEÀL½KÇEÈÉ H‰eÌèÔ üÿ‹MEà‰$ÇE¨ÿÿÿÿ‰L$è«úÿÿ€}à„Ћu‹‹PôÖ‹†€‰u …À‰Eœ„p‹M €yu…‹u ‹v|…ö‰u˜„€‹E˜€x„¶@=‹U ˆBt‹MÆBu‹‹RôщM ‹u ¾À¹‹^x‹uœ…Û‹>”Á‰D$¶u—‹EœU‰\$‰t$‰T$ ‰L$‰$‹GÇE¨ÿЄÒt#‹u‹‹Pôò‹B‰$ÇE¨ƒÈ‰D$è±{‹U䋉U ‹@ôöD ‰Eœt-èÇ©„Àu$‹u ‹Mœ‹Dx…Àt‹‰$‹BÇE¨ÿÿÿÿÿЃøÿt/E¤‰$è4 üÿ‹EÄŒ[^_]ö¶Até*ÿÿÿ´&‹Uä‹Pô‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$è{뮋M˜ÇE¨‰ $軯ýÿ‹u˜‹ÇD$ ‰4$ÿPé¿þÿÿÇE¨臧ƒÅ‹E¬‹U°‰E ‹E¨ƒøt&~Hƒøtƒøt ÇE¨èY§ÇE¨èm Eà‰$ÇE¨è›ùÿÿ‹M ÇE¨ÿÿÿÿ‰ $èY¢üÿ…Àu´ƒêt=‹u ‰4$èÅ‹U¹‹‹@ôÐP‹@ÇE¨èDxÇE¨è é’þÿÿ‹U ‰$舋M‹‹@ôȹP‹@ÇE¨èxèBU‰åWVSìŒEèÝE ‰EÄE¤Ý]‰$ÇE¼°´KÇEÀ ½KÇEȉ£H‰eÌèžüÿ‹UEà‰$ÇE¨ÿÿÿÿ‰T$èÜ÷ÿÿ€}à„Ì‹M‹‹PôÑ‹¹€‰M …ÿ‰}œ„a‹E €xu…þ‹} ‹|…ÿ‰}˜„q‹E˜€x„ ¶@=‹U ˆBt‹MÆBu‹‹RôщM ‹} ¹¾ÀÝE‹_x‹}œ…Û‹7”ÁUÝ\$‰D$‰T$ ‰\$‰L$‰<$‹FÇE¨ÿЄÒt#‹}‹‹Pôú‹B‰$ÇE¨ƒÈ‰D$èæx‹Eä‰Â‰E ‹‹@ôöD ‰Eœt-èú¦„Àu$‹} ‹Mœ‹Dx…Àt‹‰$‹BÇE¨ÿÿÿÿÿЃøÿt"E¤‰$ègüÿ‹EÄŒ[^_]ö@té2ÿÿÿ‹Uä‹Pô‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$è_x뻋M˜ÇE¨‰ $èû¬ýÿ‹}˜‹ÇD$ ‰<$ÿPéÎþÿÿÇE¨èǤƒÅ‹E¬‹U°‰E ‹E¨ƒøt&~Hƒøtƒøt ÇE¨虤ÇE¨è­Eà‰$ÇE¨èÛöÿÿ‹M ÇE¨ÿÿÿÿ‰ $號üÿ…Àu´ƒêt=‹} ‰<$è‹U¹‹‹@ôÐP‹@ÇE¨è„uÇE¨èHéþÿÿ‹U ‰$èÈ‹M‹‹@ôȹP‹@ÇE¨èGuè‚U‰åWVSEèƒì|‰EÄE¤‰$ÇE¼°´KÇEÀ¼½KÇEÈI¦H‰eÌèN›üÿ‹UEà‰$ÇE¨ÿÿÿÿ‰T$è%õÿÿ€}à„Ì‹M‹‹PôÑ‹¹€‰M …ÿ‰}œ„j‹E €xu…‹} ‹|…ÿ‰}˜„z‹E˜€x„¶@=‹U ˆBt‹MÆBu‹‹RôщM ‹} ¹¾ÀÛm ‹_x‹}œ…Û‹7”ÁUÛ|$‰D$‰T$ ‰\$‰L$‰<$‹F ÇE¨ÿЄÒt#‹}‹‹Pôú‹B‰$ÇE¨ƒÈ‰D$è/v‹Eä‰Â‰E ‹‹@ôöD ‰Eœt-èC¤„Àu$‹} ‹Mœ‹Dx…Àt‹‰$‹BÇE¨ÿÿÿÿÿЃøÿt+E¤‰$è°šüÿ‹EƒÄ|[^_]Ãt&¶@té0ÿÿÿ´&‹Uä‹Pô‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$èŸu벋M˜ÇE¨‰ $è;ªýÿ‹}˜‹ÇD$ ‰<$ÿPéÅþÿÿÇE¨è¢ƒÅ‹E¬‹U°‰E ‹E¨ƒøt&~Hƒøtƒøt ÇE¨èÙ¡ÇE¨èíEà‰$ÇE¨èôÿÿ‹M ÇE¨ÿÿÿÿ‰ $èÙœüÿ…Àu´ƒêt=‹} ‰<$èE‹U¹‹‹@ôÐP‹@ÇE¨èÄrÇE¨èˆé”þÿÿ‹U ‰$è‹M‹‹@ôȹP‹@ÇE¨è‡rè U‰åWVSEèƒì|‰EÄE¤‰$ÇE¼°´KÇEÀ½KÇEÈ ©H‰eÌ莘üÿ‹UEà‰$ÇE¨ÿÿÿÿ‰T$èeòÿÿ€}à„Ï‹M‹‹PôÑ‹¹€‰M …ÿ‰}œ„j‹E €xu…‹} ‹|…ÿ‰}˜„z‹E˜€x„¶@=‹U ˆBt‹MÆBu‹‹RôщM ‹} ¾À¹‹_x‹}œ…Û‹7”Á‰D$‹} ‹EœU‰\$‰|$‰T$ ‰L$‰$‹F ÇE¨ÿЄÒt#‹}‹‹Pôú‹B‰$ÇE¨ƒÈ‰D$èls‹U䋉U ‹@ôöD ‰Eœt-è‚¡„Àu$‹} ‹Mœ‹Dx…Àt‹‰$‹BÇE¨ÿÿÿÿÿЃøÿt*E¤‰$èï—üÿ‹EƒÄ|[^_]Ãt&¶@té0ÿÿÿ´&‹Uä‹Pô‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$èßr볋M˜ÇE¨‰ $è{§ýÿ‹}˜‹ÇD$ ‰<$ÿPéÅþÿÿÇE¨èGŸƒÅ‹E¬‹U°‰E ‹E¨ƒøt&~Hƒøtƒøt ÇE¨èŸÇE¨è-Eà‰$ÇE¨è[ñÿÿ‹M ÇE¨ÿÿÿÿ‰ $èšüÿ…Àu´ƒêt=‹} ‰<$è…þ‹U¹‹‹@ôÐP‹@ÇE¨èpÇE¨èÈé—þÿÿ‹U ‰$èHþ‹M‹‹@ôȹP‹@ÇE¨èÇoè U‰åWVSEèƒì|‰EÄE¤‰$ÇE¼°´KÇEÀ0½KÇEÈÉ«H‰eÌèΕüÿ‹UEà‰$ÇE¨ÿÿÿÿ‰T$è¥ïÿÿ€}à„Ï‹M‹‹PôÑ‹¹€‰M …ÿ‰}œ„j‹E €xu…‹} ‹|…ÿ‰}˜„z‹E˜€x„¶@=‹U ˆBt‹MÆBu‹‹RôщM ‹} ¾À¹‹_x‹}œ…Û‹7”Á‰D$‹} ‹EœU‰\$‰|$‰T$ ‰L$‰$‹FÇE¨ÿЄÒt#‹}‹‹Pôú‹B‰$ÇE¨ƒÈ‰D$è¬p‹U䋉U ‹@ôöD ‰Eœt-èž„Àu$‹} ‹Mœ‹Dx…Àt‹‰$‹BÇE¨ÿÿÿÿÿЃøÿt*E¤‰$è/•üÿ‹EƒÄ|[^_]Ãt&¶@té0ÿÿÿ´&‹Uä‹Pô‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$èp볋M˜ÇE¨‰ $軤ýÿ‹}˜‹ÇD$ ‰<$ÿPéÅþÿÿÇE¨臜ƒÅ‹E¬‹U°‰E ‹E¨ƒøt&~Hƒøtƒøt ÇE¨èYœÇE¨èmþEà‰$ÇE¨è›îÿÿ‹M ÇE¨ÿÿÿÿ‰ $èY—üÿ…Àu´ƒêt=‹} ‰<$èÅû‹U¹‹‹@ôÐP‹@ÇE¨èDmÇE¨èþé—þÿÿ‹U ‰$èˆû‹M‹‹@ôȹP‹@ÇE¨èmèBU‰åWVS쌋E ‹UÇE¼°´KÇEÀh½K‰EE¤‰U”Uè‰Uĉ$ÇEÈ©®H‰eÌèÿ’üÿ‹MEà‰$ÇE¨ÿÿÿÿ‰L$èÖìÿÿ€}à„Ú‹u‹‹PôÖ‹¾€‰u …ÿ‰}œ„{‹E €xu…‹u ‹v|…ö‰u˜„‹‹}˜€„&¶G=‹M ˆAt‹uÆAu‹‹RôÖ‰u ‹} ¹¾À‹uœ‹_x‹6‹}”‰D$…Û”ÁU‰u ‹u‰|$‹}œ‰T$ ‹U ‰\$‰t$‰L$‰<$‹BÇE¨ÿЄÒt!‹U‹Pô‹B‰$ÇE¨ƒÈ‰D$èÒm‹M䋉M ‹@ôöD ‰Eœt-è蛄Àu$‹} ‹uœ‹D7x…Àt‹‰$‹BÇE¨ÿÿÿÿÿЃøÿt0E¤‰$èU’üÿ‹EÄŒ[^_]ô&¶@téÿÿÿ´&‹Uä‹Pô‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$è?më­‹E˜ÇE¨‰$èÛ¡ýÿ‹U˜‹ÇD$ ‰$ÿPé´þÿÿÇE¨è§™ƒÅ‹E¬‹U°‰E ‹E¨ƒøt&~Hƒøtƒøt ÇE¨èy™ÇE¨èûEà‰$ÇE¨è»ëÿÿ‹E ÇE¨ÿÿÿÿ‰$èy”üÿ…Àu´ƒêt=‹u ‰4$èåø‹}¹‹‹@ôøP‹@ÇE¨èdjÇE¨è(ûé‘þÿÿ‹U ‰$è¨ø‹M‹‹@ôȹP‹@ÇE¨è'jèbU‰åWVS쌋E ‹UÇE¼°´KÇEÀ„½K‰EE¤‰U”Uè‰Uĉ$ÇEȉ±H‰eÌèüÿ‹MEà‰$ÇE¨ÿÿÿÿ‰L$èöéÿÿ€}à„Ú‹u‹‹PôÖ‹¾€‰u …ÿ‰}œ„{‹E €xu…‹u ‹v|…ö‰u˜„‹‹}˜€„&¶G=‹M ˆAt‹uÆAu‹‹RôÖ‰u ‹} ¹¾À‹uœ‹_x‹6‹}”‰D$…Û”ÁU‰u ‹u‰|$‹}œ‰T$ ‹U ‰\$‰t$‰L$‰<$‹BÇE¨ÿЄÒt!‹U‹Pô‹B‰$ÇE¨ƒÈ‰D$èòj‹M䋉M ‹@ôöD ‰Eœt-虄Àu$‹} ‹uœ‹D7x…Àt‹‰$‹BÇE¨ÿÿÿÿÿЃøÿt0E¤‰$èuüÿ‹EÄŒ[^_]ô&¶@téÿÿÿ´&‹Uä‹Pô‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$è_jë­‹E˜ÇE¨‰$èûžýÿ‹U˜‹ÇD$ ‰$ÿPé´þÿÿÇE¨èÇ–ƒÅ‹E¬‹U°‰E ‹E¨ƒøt&~Hƒøtƒøt ÇE¨è™–ÇE¨è­øEà‰$ÇE¨èÛèÿÿ‹E ÇE¨ÿÿÿÿ‰$虑üÿ…Àu´ƒêt=‹u ‰4$èö‹}¹‹‹@ôøP‹@ÇE¨è„gÇE¨èHøé‘þÿÿ‹U ‰$èÈõ‹M‹‹@ôȹP‹@ÇE¨èGgè‚U‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà4¼KÇEè ³H‰eìèQüÿ‹EƒÀ‰EÀ‰$èÀP‹EÀÆ@tÇ@pÆ@uÇ@xÇ@|Ç€€Ç€„‹EǬ]MÇ@À]M‹E ÇEȉD$‹EÀ‰$èShEĉ$èxüÿÉÃÅ‹ẺE¼‹EÇ@PmM‹EÀÇEȉ$èÑP‹E¼ÇEÈÿÿÿÿ‰$è?üÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàœ¼KÇEèû³H‰eìèaŒüÿ‹EƒÀ‰EÀ‰$èÐO‹EÀÆ@tÇ@pÆ@uÇ@xÇ@|Ç€€Ç€„‹EǬ]MÇ@À]M‹EÀÇD$ÇEȉ$èbgEĉ$臌üÿÉÃÅ‹ẺE¼‹EÇ@PmM‹EÀÇEȉ$èàO‹E¼ÇEÈÿÿÿÿ‰$èNüÿU‰åƒì‹U ‹E‹ ‹R‰Aô‰‹U‰E‰U ÉééfU‰åƒì‹U ‹E‹ ‹R‰Aô‰ÇE ‰EÉé¸fU‰åSƒì‹]Ǭ]MCÇCPmM‰$è>O‰]ƒÄ[]éÁíU‰åƒì‹EPǬ]MÇ@PmM‰UÉéOU‰å‹U ‹E‹ ‹R‰‹Iô‰]ÃU‰åƒì‹E ÉÿàU‰åSƒì‹]‹‹@ô‰$ÿU ‰ØƒÄ[]ÃU‰åSƒì‹]‹‹@ô‰$ÿU ‰ØƒÄ[]ÃU‰åƒìÉ锿ÿÿU‰åWVSEèƒìl‰EÄE¤‰$ÇE¼°´KÇEÀܼKÇEÈð¶H‰eÌè.Šüÿ‹UE܉$ÇE¨ÿÿÿÿ‰T$èäÿÿ€}܄ˋU …Ò„‹E‹U‹M ‰EœEç‰D$‹‹@ô‹Dx‰ $ÇE¨‰D$豜…Àu-º‹M‹‹@ôEœ P‰$ÇE¨‰T$èwe´&‹Eà‰Â‰E ‹‹@ôöD ‰Eœt-è„“„Àu$‹U ‹Mœ‹D x…Àt‹‰$‹BÇE¨ÿÿÿÿÿЃøÿt3E¤‰$èñ‰üÿ‹EƒÄl[^_]ö‹E …Àu™‹Eº‰Eœéaÿÿÿ‹Uà‹Pô‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$èØd몶‹Mº‰Mœé(ÿÿÿƒÅ‹E¨‹M¬‹U°ƒø‰M t~>ƒøt ƒøft ÇE¨èPóE܉$ÇE¨è~ãÿÿ‹M ÇE¨ÿÿÿÿ‰ $è<Œüÿ…Àu¾ƒêt>‹M ‰ $è¨ð‹U¹‹‹@ôEœP‹@ÇE¨è&bÇE¨èêòéµþÿÿ‹E ‰$èjð‹U¹‹‹@ôEœP‹@ÇE¨èèaè#ûU‰åƒì¶E ‰E ÉéýæÿÿU‰åƒìÉé´éÿÿU‰åƒìÉédìÿÿU‰åƒì‹EÙE Ý\$‰$èˆéÿÿÉÃU‰åƒì‹U‹M ‰U‰M ÉéèîÿÿU‰åƒìÉé”ñÿÿU‰åƒìÉéÄîÿÿU‰åƒìÉétñÿÿU‰åƒì‹U·M ‹‹@ô‹D ƒàJƒøtƒø@t¿É‰M ‰UÉé~îÿÿ·É‰M ‰UÉéoîÿÿU‰åƒì·E ‰E Éé ñÿÿU‰åƒìÉé´óÿÿU‰åƒìÉé„öÿÿU‰å‹E+E ]ÃU‰å‹U ‹E‰]ÃU‰å‹U ‹E‰]ÃU‰åSƒì‹]‹ƒè =pTLt3‹P…Ò~%ÇD$ ÇD$ÇD$‰$è#‹ƒè Ç@ÿÿÿÿƒÄ[]ÃU‰åƒì8‰]ô‹]‰}ü‹} ‰uø¾|TL…Û‰ùu‰ð‹]ô‹uø‹}ü‰ì]ËEˆMäÇD$‰$‰D$覃û¶Mä‰Âp t8¾É‰\$‰L$‰4$‰Eäèº'ýÿ‹UäúpTLt§ÇB‰ÆD ë—´&‰øˆB ëÚU‰åƒì8‰]ô‹]‰}ü‹} ‰uø¾|TL9ßu‰ð‹]ô‹uø‹}ü‰ì]Ãv‹E)ßÇD$‰<$‰D$èƒÿ‰Âp t.‰|$‰\$‰4$‰Eäè*'ýÿ‹UäúpTLt­ÇB‰:ÆD: 불B ëàU‰åƒì8‰]ô‹]‰}ü‹} ‰uø‹E¾|TL9ûtB…Ût[)߉D$ÇD$‰<$è…ƒÿ‰Âp t-‰Uä‰|$‰\$‰4$è¨&ýÿ‹UäúpTLu-‰ð‹]ô‹uø‹}ü‰ì]öˆB ëá¶…ÿtÇ$ˆMèÀÇB‰:Æ>ëĉD$1ÿÇD$Ç$è‰Âp ë„U‰åƒì8‰]ô‹]‰}ü‹} ‰uø‹E¾|TL9ûtB…Ût[)߉D$ÇD$‰<$赃ÿ‰Âp t-‰Uä‰|$‰\$‰4$èØ%ýÿ‹UäúpTLu-‰ð‹]ô‹uø‹}ü‰ì]öˆB ëá¶…ÿtÇ$ˆMèðŽÇB‰:Æ>ëĉD$1ÿÇD$Ç$è6‰Âp ë„U¸pTL‰å]ÃU‰åƒì‹U ‹E‹M)Ѓøt‰E‰U ‰MÉé+%ýÿ¶ˆÉÃU‰åƒì‹U ‹E‹M)Ѓøt‰E‰U ‰MÉéû$ýÿ¶ˆÉÃU‰åƒì‹U ‹E‹M)Ѓøt‰E‰U ‰MÉéË$ýÿ¶ˆÉÃU‰åƒì‹U ‹E‹M)Ѓøt‰E‰U ‰MÉé›$ýÿ¶ˆÉÃU‰åƒìhEè‰EÔE´‰$‰]ô‰uø‰}üÇḚ´KÇEÐÜÃKÇEØŠ½H‰eÜ舂üÿ‹EÇD$ÇE¸‰$èNE´‰$èƒüÿ‹]ô‹uø‹}ü‰ì]ÃÅ‹E¼‰$èhêÇE¸ÿÿÿÿèÌìëÌU‰åƒì8‰]ô‹U‹]‰uø‹E‰}ü‹u‰Uä‹} ˆU㋉Á+Jô‰ÊÂüÿÿ?9Öwn‰t$ ‰D$‰|$‰$è•…öu‰Ø‹uø‹]ô‹}ü‰ì]Ãf;ƒþt)¾Eã‰t$‰<$‰D$è}#ýÿ‰Ø‹uø‹]ô‹}ü‰ì]ö¶E䈉؋uø‹]ô‹}ü‰ì]ÃÇ$ÿMèÿU‰åƒì(‰]ô‹E‰uø‹]‹u‰}ü‹} ‰D$‰$‰t$ ‰|$èñ…öu‰Ø‹uø‹]ô‹}ü‰ì]Ã;ƒþt'‹E‰t$‰<$‰D$èä"ýÿ‰Ø‹uø‹]ô‹}ü‰ì]Ãt&‹U¶ˆ‰Ø‹uø‹]ô‹}ü‰ì]ÃU‰åƒì¾E ‰E ÉémúÿÿU‰åƒì‰]ø‹]‰uü‹u ‹;pôPôs‹R…Òx ‰$èåùÿÿ‹ð‹]ø‹uü‰ì]ÃÇ$˜Mè ‘U‰åSƒì‹]‹Pô‹J…Éx ‰$è¢ùÿÿ‹PôƒÄ[]ÃU‰åƒìÉéäâU‰åƒì‹E=pTLuÉÃ=(vMu‹PJÿ‰H…Òè‰EÉé¯âƒÊÿðÁPëéU‰å‹E=pTLuƒÀ ]Ã=(vMuƒ@ëìðƒ@ëåU‰å‹E]ƒÀ ÃU¸pTL‰å]ÃU‰å‹EÇ@ÿÿÿÿ]ÃU‰å‹EÇ@]ÃU‰å‹E‹U =pTLu]ÃÇ@‰ÆD ]ÃU‰åƒì‹E‹M ‹P…Òx =pTLuƒÀ ÉÃÇE‰M ‰EÉéƒ=(vMuƒÂ‰PëÖðƒ@ëÏU‰åƒì(‰]ô‹U ‹]‰uø‹E‰}ü‰T$‹S‰T$‰$èc‰Æ‹~ …ÀuþpTLu;‰ø‹]ô‹uø‹}ü‰ì]ÃøS ~ t‰D$‰T$‰<$èe ýÿ‹ëɶC ˆF ‹ë½ÇF‰Æë¶U‰åSƒì‹]‹E ûüÿÿ?wT9Ãv59ÓBÚKùS v"9Øsƒáÿ)È»üÿÿ?=üÿÿ?FØS ‰$ègá‰XÇ@ƒÄ[]ÃÇ$ÒMè{U‰åƒì‰]ø‹] ‰uü‹u‹‹Jü…Éx ‰$è÷ÿÿ‹‰‰ð‹]ø‹uü‰ì]ÂU‰åƒì‹M‰$‹E ‰t$‹Zô‹s…öx!‹sôƒ~x(‰‰‹$‹t$‰ì]ô&ÇC‹sôƒ~yØÇF‰‰‹$‹t$‰ì]ÃU‰åSƒì‹]‹‹Pü…Òx ‰$èuöÿÿ‹ƒÄ[]ÃU‰åƒì‹EÇD$ ‹‹RôÇD$‰$‰T$è–ÉÃU‰åƒì‰uü‹u‰]ø‹] +‰4$ÇD$ ‰\$ÇD$è`‹Ç@üÿÿÿÿØ‹uü‹]ø‰ì]ÃU‰åƒì‹U‹E ‰]ø‹]‰uü)Ât'‰Æ+3ÇD$ ‰T$‰t$‰$è ‹Ç@üÿÿÿÿð‹]ø‹uü‰ì]ÃU‰åSƒì‹]‹E ‹M‹‹Rô9Ðw')Â9ÊGщD$‰$ÇD$ ‰T$踉؃Ä[]ÃÇ$GM脌U‰åSƒì‹] ‰$èÆýÿ‰\$‰D$‹E‰$è ƒÄ[]ÃU‰åƒì8‰}ü‹}‰]ô‹]‰uø…ÿu‰Ø‹uø‹]ô‹}ü‰ì]Ë‹PôHô‰Ö÷ÞÆüÿÿ?9÷‡¡4;qw‹I…É~9E r9U vb‰t$‰$è6‹‹PôЃÿt:‹U ‰|$‰$‰T$èýÿ‹Bô=pTLt„Ç@‰rôÆD0 épÿÿÿ´&‹M ¶ˆë϶‹M ‰t$‰$)Á‰MäèÌ‹‹Uä‰U ‹PôëŒÇ$[MèQŠU‰åƒìX‹E ‰]ô‹]‰uø‰}ü‹‹rô…öt_‹‹xôHô‰MÔ‰}Ä÷;y‰}äw‹y…ÿ~‹Eä‰$‰D$èd‹‹M ‹xô‹‰}ÄEăþt/‰t$‰T$‰$è/ýÿ‹Bô=pTLu‰Ø‹uø‹]ô‹}ü‰ì]Ãt&¶ˆëÚ‹MäÇ@‰JôÆD ëÒU‰åƒìH‹M ‰]ô‹E‰uø‹]‰}ü‹‹zô9}‡›+}9ÇGø…ÿte‹‹Hôpô‰uä‰MÔù;N‰Màw‹v…ö~‹uà‰$‰t$è ‹E ‹‹‹Hô‰MÔ‹uEÔƒÿ42t+‰|$‰t$‰$èeýÿ‹Bô=pTLu‰Ø‹uø‹]ô‹}ü‰ì]öˆëÞ‹uàÇ@‰rôÆD0 ëÖÇ$[Mèã‰U‰åƒìÉé„ýÿÿU‰åƒìX‰uø‹u ¶E‰]ô‹]‰}ü…öˆEÇu‰Ø‹uø‹]ô‹}ü‰ì]ËPô‰UÔ‹Pô‰Ñ÷ÙÁüÿÿ?9Îwo‹MÔ<‰}ä;yw‹y…ÿ~‹}ä‰$‰|$è³ ‹‹PôЃþt7¾Mljt$‰$‰L$è{ýÿ‹Bô=pTLt‡‹MäÇ@‰JôÆD épÿÿÿ¶ULjëÕÇ$[Mèü‡U‰åSƒì‹]‹E ‰$‰D$è§úÿÿ‰ØƒÄ[]ÃU‰åSƒì‹] ‰$èýÿ‰\$‰D$‹E‰$è ƒÄ[]ÃU‰åƒìH‰]ô‹]‰uø‹U ‰}ü}üÿÿ?‹Hô‹xô‡¸9Âs2‹E‰$‰T$ ‰|$‰D$ÇD$èSöÿÿ‰Ã‰Ø‹uø‹]ô‹}ü‰ì]Ãf489òwÇ‹q…öÀ‰×)Ç9}v…ÿu;ùpTLtÌ‹EÇA‰ÆD 빃}t:‹M‰T$‰$‰L$è1ýÿ‹ ƒé ëŃ}t‹u‰T$‰$‰t$èñýÿ‹ ƒé 륶ˆ‹ ƒé ë™Ç$êM袆U‰åƒì8‰]ø‹E ‹]‰uü‹‹9Ât!ƒè ‹H…Éx#=pTLu_ƒÀ ƒê úpTLu)‰‰Ø‹uü‹]ø‰ì]ÃU÷‰T$ÇD$‰$èÂ÷ÿÿ‹ë̃=(vMu0‹Jqÿ‰r…ÉÁ‰Eä‰$èMÙ‹Eä‰뱃=(vMuƒÁ‰HëƒÉÿðÁJëÏðƒ@‹ézÿÿÿU‰åƒì‹U ‰]ø‹E‰uü‹]‹u‹‹Jô9Èw!)Á9ÙGË‹]ø‰u‹uü‰M‰E ‰ì]éþÿÿÇ$êM袆U‰åƒìÉéôýÿÿU‰åƒì(¾U‹E‰T$‹U ‰T$ ‹‹RôÇD$‰$‰T$èŸóÿÿÉÃU‰åƒì‹U‹E +‰E ÉéÙU‰åƒì(‰uü‹u‰]ø¾E‹] +‰4$‰D$‰\$ÇD$ ÇD$è8óÿÿ‹Ç@üÿÿÿÿØ‹uü‹]ø‰ì]ÃU‰åƒì(¾M‹U‹E ÇD$‰L$‹M‰L$ +‰$‰D$èïòÿÿÉÃU‰åSƒì‹]‰$èæýÿ‰\$‰D$ ‹E ‰D$‹E‰$èƒÄ[]ÃU‰åƒìH‰]ô‹]‰uø‹M‰}ü‹u‹Pô‰Uä‹Pô9U ‡j‰×÷ßÇüÿÿ?9þ‡L9Ás0‹E ‰$‰t$‰L$ ÇD$‰D$èÿòÿÿ‰Ã‰Ø‹uø‹]ô‹}ü‰ì]Ã9ÑwÉ‹Uä‹z…ÿ¿)Á‹E ‰Mà‰t$ ÇD$‰D$‰$èÝ ‹;‹Mà } 19Çs9ùsW‰ú)ʃú„ž‰T$‰Uà‰L$‰<$èÇýÿ‹Uà‰ð)Ð47׃øtf‰t$‰<$‰D$è¦ýÿ‰Ø‹uø‹]ô‹}ü‰ì]ô&ƒþt[‰t$‰<$‰D$è{ýÿ‰Ø‹uø‹]ô‹}ü‰ì]ÃþtG‰t$‰L$‰<$èWýÿéÿÿÿf¶ˆ‰Ø‹uø‹]ô‹}ü‰ì]öˆénÿÿÿf¶ˆééþÿÿ¶¶ˆéÙþÿÿÇ$2M躂Ç$2M较U‰åƒì‹E‹‹Pô‰D$‹E ‰T$ ‰D$‹E‰$è(þÿÿÉÃU‰åƒì(‹U‰]ô‹E‰uø‹]‰}ü‹u‹‹} ‹Jô9Èw')Á9ÙGË‹]ô‰} ‹}ü‰u‹uø‰M‰E‰ì]éÒýÿÿÇ$2Mè&ƒU‰åSƒì$‹E‹U ¶]‹;Qôw(‹M¾Û‰\$ÇD$‰T$‰L$ ‰$è&ðÿÿƒÄ$[]ÃÇ$2MèÔ‚U‰åƒì‰]ø‹] ‰uü‹u‹Jô‹A…Àx ‰$èjëÿÿ‹Jô‰ð‰‹]ø‹uü‰ì]ÂU‰åƒì‹E ÇD$‰D$‹E‰$èÉÃU‰åSƒì‹U‹E ¶]‹ =üÿÿ?‹IôwK9Èw/r ƒÄ[]ô&)ÁÇD$ ‰L$‰D$‰$è6ƒÄ[]þÛ)ȉ]‰E ‰UƒÄ[]é(øÿÿÇ$pMèÜ€U‰åƒì‹E‹U‹M ƒøt‰E‰M ‰UÉéýýÿ¶ˆÉÃU‰å‹E ‹U‰]ÃU‰åƒì‹E‹‹Jü…ÉxÉéHêÿÿÉÃU‰åƒì‹E‹U‹M ƒøt‰E‰M ‰UÉé}ýÿ¶ˆÉÃU‰åSƒì‹M ‹E‹U‹])])ȉE+ ‰M ƒÄ[]éU‰åƒì8‰}ü‹}‰]ô‹]‰uø‹u ‰<$èXýÿ‰|$ ‰D$‹E)ð‰D$+3‰$‰t$èÁ‹]ô‹uø‹}ü‰ì]ÃU‰åSƒì‹M ‹E‹U‹])])ȉE+ ‰M ƒÄ[]é†U‰åSƒì‹M ‹E‹U)ȉE+ ‰M ƒÄ[]é\U‰åƒì(‰]ø‹]‰uü‹M ‹E‹U‹)È‹sô‰\$ ‰D$‰t$+ ‰$‰L$è‹]ø‹uü‰ì]ÃU‰åSƒì‹M ‹E‹U‹])])ȉE+ ‰M ƒÄ[]éÖU‰åSƒì‹M ‹E‹U‹])])ȉE+ ‰M ƒÄ[]é¦U‰åSƒì‹M ‹E‹U)ȉE+ ‰M ƒÄ[]é|U‰åSƒì‹M ‹E‹U¾])ȉE+ ‰]‰M ƒÄ[]é¥ìÿÿU‰åSƒì$‹]‰$è¦ýÿ‰\$ ‰D$‹E‰D$‹E ‰D$‹E‰$è ƒÄ$[]ÃU‰åEøSƒìt‰EÔE´‰$ÇḚ´KÇEÐþÃKÇEØfÓH‰eÜè`nüÿ‹U‹‹PôXô9U ‡¿‰Ñ+M ;MGM‰M°)ÑÁüÿÿ?9M‡Œ9EsG‹M‹E‹U°ÇE¸ÿÿÿÿ‰L$‹M ‰D$ ‹E‰T$‰L$‰$è‰ìÿÿ‰EE´‰$è‹nüÿ‹EƒÄt[]Ãf9Uw±‹[…Ûª‹M ‹UU 9Êwa‹M)Á‰M¨‹M‹E°‹U ÇE¸ÿÿÿÿ‰L$ ‹M‰D$‰T$‰ $èB‹U‹‹U¨E ƒ}t@‹M‰T$‰$‰L$è;ýÿépÿÿÿ¶‹U°U 9Ur"‹U)‰ЋU+U°‰U¨ë…¶ˆé>ÿÿÿt&E÷‹M‰D$ ‹EÇE¸ÿÿÿÿ‰L$‰D$Eð‰$è)‹U‹Eð‹M°ÇE¸‰T$‹U‰D$ ‹E ‰L$‰$‰D$èkëÿÿ‰E‹Eðƒè =pTL„Ñþÿÿƒ=(vMuj‹PJÿ‰H…Ò·þÿÿ‰$èUÏéªþÿÿÇ$MÇE¸ÿÿÿÿè |Ç$MÇE¸ÿÿÿÿè }ƒÅ‹E¼‰E¬Eð‰$è& ‹U¬ÇE¸ÿÿÿÿ‰$èôoüÿƒÊÿðÁPë•U‰åƒì(‹E‹‹Pô‰D$ ‹E‰T$‰D$‹E ‰D$‹E‰$èýÿÿÉÃU‰åƒì8‹U‰]ô‹E‰uø‹]‰}ü‹u ‹‰Eä‹E‹}‹Jô9Èw-)Á9Ù‰E‹EäGˉ}‹]ô‰u ‹}ü‰M‹uø‰E‰ì]éýÿÿÇ$Mè*|U‰åƒì8‹M‹U‰uø‹E ‰}ü‹u‰]ô¶}‰Mä‹ ‹Iô9Èw.)Á‰û;Mä¾ûGMä‰}‹]ô‰u‹}ü‰M‹uø‰E ‰U‰ì]ééÿÿÇ$Mè»{U‰åƒì8‰]ø‹]‰uü‹U ‹ Aô;Pt6‹Iô‰$9ÊBÑ)ʉT$U÷‰T$èçëÿÿ‹ƒê úpTLu‰‹]ø‹uü‰ì]Ëp…öÃëíƒ=(vMu‹Jqÿ‰r…ÉÕ‰Eä‰$èTÍ‹EäëŃÉÿðÁJëâU‰åSƒì‹E ‹M‹Uƒøt¾Ú‰] ‰E‰MƒÄ[]é- ýÿt&ˆƒÄ[]ÃU‰åƒìH‰uø‹u‰}ü‹}‰]ô+}‹‹ZôBô‹Hß+] +]9ÏvREç‰D$‰L$‰<$èžëÿÿ‹U …ÒuwP …Û…œ‹ƒè =pTL…ú‰Bô=pTL…׋]ô‹uø‹}ü‰ì]Ãx¨‹M9MtÚ…ÛtÖ‹E‹ME M ʃûtx‰\$‰D$‰$èG ýÿ‹ƒè 멃} ‹P tu‹E ‰$‰UÔ‰L$‰D$è? ýÿ‹UÔécÿÿÿ´&‹MM ‹EE ƒû t*‰UÔ‰\$‰D$‰ $è ýÿ‹UÔé3ÿÿÿ¶ˆ‹ƒè é9ÿÿÿ¶ˆéÿÿÿ¶¶ ˆH éÿÿÿÇ@‰8ÆD8 éÿÿÿƒ=(vMu$‹HYÿ‰X…Éìþÿÿ‰UÔ‰$è}Ë‹UÔéÙþÿÿƒÉÿðÁHëÛU‰åƒì(‰]ô‹]‰uø‰}ü¶} ‹‹PôHôr;qv/‰t$‰$è^ýÿÿ‹‹Pô‰ùˆ ‹Bô=pTLu‹]ô‹uø‹}ü‰ì]ËI…ÉÊëÙÇ@‰rôÆD0 ëÙU‰å‹E ‹U‹‰ Ç|TL]ÃU¸ÿÿÿÿ‰åSƒì‹] …Ût ‰$èí ýÿˆT$ ‹U‰$‰D$‰T$è»âÿÿ‹U‰ƒÄ[]ÃU‰åƒìˆT$ ‹U‹E ‰T$‹U‰$‰T$è‹âÿÿ‹U‰ÉÃU‰åƒì‹E ÇD$Ç$‰D$è/áÿÿ‹U‰ÉÃU‰åƒì(‹E ‹ƒè ‹P…Òx=pTLu(‹UƒÀ ‰ÉÃU÷‰T$ÇD$‰$èCèÿÿ‹U‰ÉÃ=(vMuƒÂ‰PëÇðƒ@ëÀU‰åƒì8‹U ‰}ü‹E‰]ô‹}‰uø‹‹Jô9Èw:)Á‰ó9ùGÏÁuç ˆ\$ ‰t$‰L$‰$èwâÿÿ‹U‰‹]ô‹uø‹}ü‰ì]ÃÇ$²MèIwU‰åƒì(‹U ‰}ü‹E‰]ô‹}‰uø‹‹Jô9Èw:)Á‰ó‹u9ùGÏÁ ˆ\$ ‰t$‰L$‰$èâÿÿ‹U‰‹]ô‹uø‹}ü‰ì]ÃÇ$²MèÙvU‰åƒì‹E ‹UˆL$ ‹M‰$‰T$‰L$èëàÿÿ‹U‰ÉÃU‰åƒì¾E‹U‰D$‹E ‰T$‰$èßÿÿ‹U‰ÉÃU‰å‹EÇ|TL]ÃU‰åƒìˆD$ ‹E‰D$‹E‰D$‹E ‰$èíßÿÿ‹U‰ÉÃU‰åƒìˆD$ ‹E‰D$‹E‰D$‹E ‰$èMàÿÿ‹U‰ÉÃU‰åƒìˆD$ ‹E‰D$‹E‰D$‹E ‰$èíàÿÿ‹U‰ÉÃU‰å‹E ‹U‹‰ Ç|TL]ÃU¸ÿÿÿÿ‰åSƒì‹] …Ût ‰$èíýÿˆT$ ‹U‰$‰D$‰T$è»ßÿÿ‹U‰ƒÄ[]ÃU‰åƒìˆT$ ‹U‹E ‰T$‹U‰$‰T$è‹ßÿÿ‹U‰ÉÃU‰åƒì‹E ÇD$Ç$‰D$è/Þÿÿ‹U‰ÉÃU‰åƒì(‹E ‹ƒè ‹P…Òx=pTLu(‹UƒÀ ‰ÉÃU÷‰T$ÇD$‰$èCåÿÿ‹U‰ÉÃ=(vMuƒÂ‰PëÇðƒ@ëÀU‰åƒì8‹U ‰}ü‹E‰]ô‹}‰uø‹‹Jô9Èw:)Á‰ó9ùGÏÁuç ˆ\$ ‰t$‰L$‰$èwßÿÿ‹U‰‹]ô‹uø‹}ü‰ì]ÃÇ$²MèItU‰åƒì(‹U ‰}ü‹E‰]ô‹}‰uø‹‹Jô9Èw:)Á‰ó‹u9ùGÏÁ ˆ\$ ‰t$‰L$‰$èßÿÿ‹U‰‹]ô‹uø‹}ü‰ì]ÃÇ$²MèÙsU‰åƒì‹E ‹UˆL$ ‹M‰$‰T$‰L$èëÝÿÿ‹U‰ÉÃU‰åƒì¾E‹U‰D$‹E ‰T$‰$èÜÿÿ‹U‰ÉÃU‰å‹EÇ|TL]ÃU‰åƒìˆD$ ‹E‰D$‹E‰D$‹E ‰$èíÜÿÿ‹U‰ÉÃU‰åƒìˆD$ ‹E‰D$‹E‰D$‹E ‰$èMÝÿÿ‹U‰ÉÃU‰åƒìˆD$ ‹E‰D$‹E‰D$‹E ‰$èíÝÿÿ‹U‰ÉÃU‰åƒì‹E‹ƒè =pTLuÉÃ=(vMu‹PJÿ‰H…Òè‰EÉéºÄƒÊÿðÁPëéU‰åƒì‹E‹ƒè =pTLuÉÃ=(vMu‹PJÿ‰H…Òè‰EÉézăÊÿðÁPëéU‰åSƒì‹]‹E ‰$‰D$è÷ãÿÿ‰ØƒÄ[]ÃU‰åSƒì‹] ‰$èfýÿ‰\$‰D$‹E‰$è[éÿÿƒÄ[]ÃU‰åƒìÉé4êÿÿU‰åSƒì‹E‹]‰D$‹E ‰$‰D$è éÿÿ‰ØƒÄ[]ÃU‰åSƒì$‹]¾E ÇD$ ‰D$‹‹@ô‰$ÇD$‰D$è½Þÿÿ‰ØƒÄ$[]ÃU‰åSƒì‹]‹‹Pü…Òx ‰$èÚÿÿ‹E ƒÄ[]ÃU‰åSƒì‹] ‰$è†ýÿ‰\$‰D$‹E‰$èËäÿÿƒÄ[]ÃU‰åƒìÉé¤åÿÿU‰åƒìÉé¤äÿÿU‰åƒì(‰]ô‹]‰uø‰}ü¶} ‹‹PôHôr;qw‹I…É~‰t$‰$èõÿÿ‹‹Pô‰ùˆ ‹Bô=pTLu‰Ø‹uø‹]ô‹}ü‰ì]ÃÇ@‰rôÆD0 ëàU‰å‹ES‹M ¶]‹P Æ%AöÆtÆA+AöÆtÆ#ƒÀ„ÛÆ.HÆ@*tˆXH‰Ð%ƒøtB=tâ@ƒúÀƒà ƒÀGˆƒÁÆ[]Ãâ@ƒúÀƒà ƒÀEˆƒÁÆ[]ÃvÆfƒÁÆ[]ÃU‰åSƒì‹]Çè]M‰$èˆJ‰]ƒÄ[]éÛÁU‰åƒì‹EÇè]MÉé[JU¡Ü3M‰å]ÃU‰åSƒì‹]‹C…Àtu‹Ü3MÆ@.Æ@,‹ˆTLÇ@ÜM‰P0‰P41ÒÇ@ Ç@ÜMÇ@Ç@ÜMÇ@ Ç@$ÜMÇ@(Ç@,t&¶ ˆL8ƒÂƒú uðƒÄ[]ÃÇ$Dè®ÁÇ@ÇhMÇ@Ç@ Æ@Æ@Æ@Ç@Ç@Ç@Ç@ Ç@$Ç@(Ç@,Æ@0Æ@1Æ@2Æ@3Æ@4Æ@5Æ@6Æ@7Æ@C‰CéûþÿÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàªÑKÇEè†âH‰eìè¡]üÿ‹U1Àƒ}•À‰B‹E Ç^M‰BÇD$ÇD$‰$ÇEÈèwþÿÿEĉ$èü]üÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$èß÷‹EÀÇEÈÿÿÿÿ‰$èÍ`üÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà¶ÑKÇEè5ãH‰eìèñ\üÿ‹U1Àƒ}•À‰B‹EÇ^MÇB‰$‰D$‹E ÇEȉD$èÈýÿÿEĉ$èM]üÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$è0÷‹EÀÇEÈÿÿÿÿ‰$è`üÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàžÑKÇEèçãH‰eìèA\üÿ‹U1Àƒ} •À‰BÇ^MÇBÇD$ÇD$‰$ÇEÈèýÿÿEĉ$è›\üÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$è~ö‹EÀÇEÈÿÿÿÿ‰$èl_üÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà¤ÑKÇEè–äH‰eìè‘[üÿ‹U1Àƒ}•À‰B‹E Ç^M‰BÇD$ÇD$‰$ÇEÈègüÿÿEĉ$èì[üÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$èÏõ‹EÀÇEÈÿÿÿÿ‰$è½^üÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà°ÑKÇEèEåH‰eìèáZüÿ‹U1Àƒ}•À‰B‹EÇ^MÇB‰$‰D$‹E ÇEȉD$è¸ûÿÿEĉ$è=[üÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$è õ‹EÀÇEÈÿÿÿÿ‰$è^üÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà˜ÑKÇEè÷åH‰eìè1Züÿ‹U1Àƒ} •À‰BÇ^MÇBÇD$ÇD$‰$ÇEÈèûÿÿEĉ$è‹ZüÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$ènô‹EÀÇEÈÿÿÿÿ‰$è\]üÿU‰åSƒì‹]‰$è‰]ƒÄ[]éA¼U‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà–ÕKÇEè¿æH‰eìèaYüÿ‹U‹BÇ^M…Àt‹‰$‹BÇEÈÿЋEÇEÈÿÿÿÿ‰$èÎóEĉ$èÃYüÿÉÃÅ‹UÌ‹EÇEȉUÀ‰$è¦ó‹UÀÇEÈÿÿÿÿ‰$è”\üÿU‰åSƒì‹]‹C…Àtu‹Ü3MÆ@.Æ@,‹ˆTLÇ@ÜM‰P0‰P41ÒÇ@ Ç@ÜMÇ@Ç@ÜMÇ@ Ç@$ÜMÇ@(Ç@,t&¶ ˆL8ƒÂƒú uðƒÄ[]ÃÇ$Dè®»Ç@ÇhMÇ@Ç@ Æ@Æ@Æ@Ç@Ç@Ç@Ç@ Ç@$Ç@(Ç@,Æ@0Æ@1Æ@2Æ@3Æ@4Æ@5Æ@6Æ@7Æ@C‰CéûþÿÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÎÑKÇEè†èH‰eìè¡Wüÿ‹U1Àƒ}•À‰B‹E ÇH^M‰BÇD$ÇD$‰$ÇEÈèwþÿÿEĉ$èüWüÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$èßñ‹EÀÇEÈÿÿÿÿ‰$èÍZüÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÚÑKÇEè5éH‰eìèñVüÿ‹U1Àƒ}•À‰B‹EÇH^MÇB‰$‰D$‹E ÇEȉD$èÈýÿÿEĉ$èMWüÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$è0ñ‹EÀÇEÈÿÿÿÿ‰$èZüÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÂÑKÇEèçéH‰eìèAVüÿ‹U1Àƒ} •À‰BÇH^MÇBÇD$ÇD$‰$ÇEÈèýÿÿEĉ$è›VüÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$è~ð‹EÀÇEÈÿÿÿÿ‰$èlYüÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÈÑKÇEè–êH‰eìè‘Uüÿ‹U1Àƒ}•À‰B‹E ÇH^M‰BÇD$ÇD$‰$ÇEÈègüÿÿEĉ$èìUüÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$èÏï‹EÀÇEÈÿÿÿÿ‰$è½XüÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÔÑKÇEèEëH‰eìèáTüÿ‹U1Àƒ}•À‰B‹EÇH^MÇB‰$‰D$‹E ÇEȉD$è¸ûÿÿEĉ$è=UüÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$è ï‹EÀÇEÈÿÿÿÿ‰$èXüÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà¼ÑKÇEè÷ëH‰eìè1Tüÿ‹U1Àƒ} •À‰BÇH^MÇBÇD$ÇD$‰$ÇEÈèûÿÿEĉ$è‹TüÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$ènî‹EÀÇEÈÿÿÿÿ‰$è\WüÿU‰åSƒì‹]‰$è‰]ƒÄ[]éA¶U‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÕKÇEè¿ìH‰eìèaSüÿ‹U‹BÇH^M…Àt‹‰$‹BÇEÈÿЋEÇEÈÿÿÿÿ‰$èÎíEĉ$èÃSüÿÉÃÅ‹UÌ‹EÇEȉUÀ‰$è¦í‹UÀÇEÈÿÿÿÿ‰$è”VüÿU‰åSƒì‹]‹C…Àtw‹Ü3M‹ˆTLfÇ@.fÇ@,‰P4‰P81ÒÇ@ÜMÇ@ Ç@ÞMÇ@Ç@ ÞMÇ@$Ç@(ÞMÇ@,Ç@0f¾ f‰LP<ƒÂƒú uîƒÄ[]ÃÇ$T謵Ç@Ç(hMÇ@Ç@ Æ@fÇ@fÇ@Ç@Ç@Ç@ Ç@$Ç@(Ç@,Ç@0Æ@4Æ@5Æ@6Æ@7Æ@8Æ@9Æ@:Æ@;Æ@R‰CéõþÿÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà:ÍKÇEè†îH‰eìè¡Qüÿ‹U1Àƒ}•À‰B‹E Lj^M‰BÇD$ÇD$‰$ÇEÈèwþÿÿEĉ$èüQüÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$èßë‹EÀÇEÈÿÿÿÿ‰$èÍTüÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàFÍKÇEè5ïH‰eìèñPüÿ‹U1Àƒ}•À‰B‹ELj^MÇB‰$‰D$‹E ÇEȉD$èÈýÿÿEĉ$èMQüÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$è0ë‹EÀÇEÈÿÿÿÿ‰$èTüÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà.ÍKÇEèçïH‰eìèAPüÿ‹U1Àƒ} •À‰BLj^MÇBÇD$ÇD$‰$ÇEÈèýÿÿEĉ$è›PüÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$è~ê‹EÀÇEÈÿÿÿÿ‰$èlSüÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà4ÍKÇEè–ðH‰eìè‘Oüÿ‹U1Àƒ}•À‰B‹E Lj^M‰BÇD$ÇD$‰$ÇEÈègüÿÿEĉ$èìOüÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$èÏé‹EÀÇEÈÿÿÿÿ‰$è½RüÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà@ÍKÇEèEñH‰eìèáNüÿ‹U1Àƒ}•À‰B‹ELj^MÇB‰$‰D$‹E ÇEȉD$è¸ûÿÿEĉ$è=OüÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$è é‹EÀÇEÈÿÿÿÿ‰$èRüÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà(ÍKÇEè÷ñH‰eìè1Nüÿ‹U1Àƒ} •À‰BLj^MÇBÇD$ÇD$‰$ÇEÈèûÿÿEĉ$è‹NüÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$ènè‹EÀÇEÈÿÿÿÿ‰$è\QüÿU‰åSƒì‹]‰$è‰]ƒÄ[]éA°U‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà¢ÕKÇEè¿òH‰eìèaMüÿ‹U‹BLj^M…Àt‹‰$‹BÇEÈÿЋEÇEÈÿÿÿÿ‰$èÎçEĉ$èÃMüÿÉÃÅ‹UÌ‹EÇEȉUÀ‰$è¦ç‹UÀÇEÈÿÿÿÿ‰$è”PüÿU‰åSƒì‹]‹C…Àtw‹Ü3M‹ˆTLfÇ@.fÇ@,‰P4‰P81ÒÇ@ÜMÇ@ Ç@ÞMÇ@Ç@ ÞMÇ@$Ç@(ÞMÇ@,Ç@0f¾ f‰LP<ƒÂƒú uîƒÄ[]ÃÇ$T謯Ç@Ç8hMÇ@Ç@ Æ@fÇ@fÇ@Ç@Ç@Ç@ Ç@$Ç@(Ç@,Ç@0Æ@4Æ@5Æ@6Æ@7Æ@8Æ@9Æ@:Æ@;Æ@R‰CéõþÿÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà^ÍKÇEè†ôH‰eìè¡Küÿ‹U1Àƒ}•À‰B‹E ÇÈ^M‰BÇD$ÇD$‰$ÇEÈèwþÿÿEĉ$èüKüÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$èßå‹EÀÇEÈÿÿÿÿ‰$èÍNüÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàjÍKÇEè5õH‰eìèñJüÿ‹U1Àƒ}•À‰B‹EÇÈ^MÇB‰$‰D$‹E ÇEȉD$èÈýÿÿEĉ$èMKüÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$è0å‹EÀÇEÈÿÿÿÿ‰$èNüÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàRÍKÇEèçõH‰eìèAJüÿ‹U1Àƒ} •À‰BÇÈ^MÇBÇD$ÇD$‰$ÇEÈèýÿÿEĉ$è›JüÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$è~ä‹EÀÇEÈÿÿÿÿ‰$èlMüÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàXÍKÇEè–öH‰eìè‘Iüÿ‹U1Àƒ}•À‰B‹E ÇÈ^M‰BÇD$ÇD$‰$ÇEÈègüÿÿEĉ$èìIüÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$èÏã‹EÀÇEÈÿÿÿÿ‰$è½LüÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàdÍKÇEèE÷H‰eìèáHüÿ‹U1Àƒ}•À‰B‹EÇÈ^MÇB‰$‰D$‹E ÇEȉD$è¸ûÿÿEĉ$è=IüÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$è ã‹EÀÇEÈÿÿÿÿ‰$èLüÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàLÍKÇEè÷÷H‰eìè1Hüÿ‹U1Àƒ} •À‰BÇÈ^MÇBÇD$ÇD$‰$ÇEÈèûÿÿEĉ$è‹HüÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$ènâ‹EÀÇEÈÿÿÿÿ‰$è\KüÿU‰åSƒì‹]‰$è‰]ƒÄ[]éAªU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàœÕKÇEè¿øH‰eìèaGüÿ‹U‹BÇÈ^M…Àt‹‰$‹BÇEÈÿЋEÇEÈÿÿÿÿ‰$èÎáEĉ$èÃGüÿÉÃÅ‹UÌ‹EÇEȉUÀ‰$è¦á‹UÀÇEÈÿÿÿÿ‰$è”JüÿU‰åSƒì‹]‹C…À„‚Ç@ÐMÇ@ ÐMÇ@ÙMÇ@ÙMÇ@âMÇ@âMÇ@ ãMÇ@$æMÇ@(âMÇ@,éMÇ@0ðMÇ@4÷MÇ@8ÿMÇ@< MÇ@@MÇ@DMÇ@H"MÇ@L&MÇ@P*MÇ@T.MÇ@X2MÇ@\6MÇ@`:MÇ@d>MÇ@hFMÇ@lOMÇ@pUMÇ@t[MÇ@x_MÇ@|dMÇ€€iMÇ€„pMÇ€ˆzMÇ€Œ‚MÇ€‹MÇ€””MÇ€˜˜MÇ€œœMÇ€  MÇ€¤[MÇ€¨¤MÇ€¬¨MÇ€°¬MÇ€´°MÇ€¸´MÇ€¼¸MÇ€À¼MƒÄ[]ÃÇ$Èè¨Ç@ÇÈfMÇ@Ç@ Ç@Ç@Ç@Ç@Ç@ Ç@$Ç@(Ç@,Ç@0Ç@4Ç@8Ç@<Ç@@Ç@DÇ@HÇ@LÇ@PÇ@TÇ@XÇ@\Ç@`Ç@dÇ@hÇ@lÇ@pÇ@tÇ@xÇ@|Ç€€Ç€„Ç€ˆÇ€ŒÇ€Ç€”Ç€˜Ç€œÇ€ Ç€¤Ç€¨Ç€¬Ç€°Ç€´Ç€¸Ç€¼Ç€ÀƀĉCéÚüÿÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàFÒKÇEè©üH‰eìèCüÿ‹U1Àƒ}•À‰B‹E Ç_M‰BèÝ‹U‰BÇD$‰$ÇEÈèTüÿÿEĉ$èÙCüÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$è¼Ý‹EÀÇEÈÿÿÿÿ‰$èªFüÿU‰åƒìhEø‰EäEĉ$ÇEܰ´KÇEà`ÒKÇEèÙýH‰eìèÑBüÿ‹U1Àƒ}•À‰BÇ_MÇBè`܉E¸‰D$‹E‰$èÎåüÿ…Àu/‹E¸‹U‰B‹E ‹UÇEȉD$‰$èˆûÿÿEĉ$è CüÿÉËU‰$èHäüÿÇEȉE´ƒÀ‰EÀ‰$襃}´ÿ‰E¼t1À‹U¼ÆƒÀ9EÀuñ‹EÀ‹U‰D$‹E¼‰T$‰$èåãüÿ‹E¼‹U‰BévÿÿÿƒÅ‹ẺEÀ‹Eȃøt ƒøt4…Àt< ‹EÀ‰$誋U‹B9E¸t …Àt‰$èi¤ÇEÈè½´ÇEÈèA¬‹UÇEȉ$è?Ü‹EÀÇEÈÿÿÿÿ‰$è-EüÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà:ÒKÇEèÚþH‰eìèQAüÿ‹U1Àƒ} •À‰BÇ_MÇBèàÚ‹U‰BÇD$‰$ÇEÈè#úÿÿEĉ$è¨AüÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$è‹Û‹EÀÇEÈÿÿÿÿ‰$èyDüÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà@ÒKÇEè‰ÿH‰eìè¡@üÿ‹U1Àƒ}•À‰B‹E Ç_M‰Bè1Ú‹U‰BÇD$‰$ÇEÈètùÿÿEĉ$èù@üÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$èÜÚ‹EÀÇEÈÿÿÿÿ‰$èÊCüÿU‰åƒìhEø‰EäEĉ$ÇEܰ´KÇEàLÒKÇEè¹I‰eìèñ?üÿ‹U1Àƒ}•À‰BÇ_MÇBè€Ù‰E¸‰D$‹E‰$èîâüÿ…Àu/‹E¸‹U‰B‹E ‹UÇEȉD$‰$è¨øÿÿEĉ$è-@üÿÉËU‰$èháüÿÇEȉE´ƒÀ‰EÀ‰$è8¢ƒ}´ÿ‰E¼t1À‹U¼ÆƒÀ9EÀuñ‹EÀ‹U‰D$‹E¼‰T$‰$èáüÿ‹E¼‹U‰BévÿÿÿƒÅ‹ẺEÀ‹Eȃøt ƒøt4…Àt< ‹EÀ‰$è §‹U‹B9E¸t …Àt‰$艡ÇEÈèݱÇEÈèa©‹UÇEȉ$è_Ù‹EÀÇEÈÿÿÿÿ‰$èMBüÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà4ÒKÇEèºI‰eìèq>üÿ‹U1Àƒ} •À‰BÇ_MÇBèØ‹U‰BÇD$‰$ÇEÈèC÷ÿÿEĉ$èÈ>üÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$è«Ø‹EÀÇEÈÿÿÿÿ‰$è™AüÿU‰åSƒì‹]‰$è‰]ƒÄ[]é U‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà`ÑKÇEè¹I‰eìè¡=üÿ‹U‹BÇ_M‰EÀè=×9EÀt‹EÀ…Àt ‹UÀ‰$è ‹U‹B…Àt‹‰$‹BÇEÈÿЋEÇEȃÀ ‰$è¦×‹EÇEÈÿÿÿÿ‰$èÔ×Eĉ$èÉ=üÿÉÃÅ‹UÌ‹EÇEȉUÀ‰$è¬×‹UÀÇEÈÿÿÿÿ‰$èš@üÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàtÒKÇEè™I‰eìèÁ<üÿ‹U‹BÇ_M‰EÀè]Ö9EÀt‹EÀ…Àt ‹UÀ‰$è6Ÿ‹U‹B…Àt‹‰$‹BÇEÈÿЋEÇEȃÀ ‰$èÆÖ‹EÇEÈÿÿÿÿ‰$èôÖEĉ$èé<üÿÉÃÅ‹UÌ‹EÇEȉUÀ‰$èÌÖ‹UÀÇEÈÿÿÿÿ‰$èº?üÿU‰åSƒì‹]‹C…À„‚Ç@ÀMÇ@ ÀMÇ@ÒMÇ@ÒMÇ@äMÇ@äMÇ@ æMÇ@$ìMÇ@(äMÇ@,òMÇ@0MÇ@4MÇ@8MÇ@<2MÇ@@DMÇ@DRMÇ@HdMÇ@LlMÇ@PtMÇ@T|MÇ@X„MÇ@\ŒMÇ@`”MÇ@dœMÇ@h¬MÇ@l¾MÇ@pÊMÇ@tÖMÇ@xÞMÇ@|èMÇ€€òMÇ€„MÇ€ˆMÇ€Œ$MÇ€6MÇ€”HMÇ€˜PMÇ€œXMÇ€ `MÇ€¤ÖMÇ€¨hMÇ€¬pMÇ€°xMÇ€´€MÇ€¸ˆMÇ€¼MÇ€À˜MƒÄ[]ÃÇ$Èè½Ç@ÇØfMÇ@Ç@ Ç@Ç@Ç@Ç@Ç@ Ç@$Ç@(Ç@,Ç@0Ç@4Ç@8Ç@<Ç@@Ç@DÇ@HÇ@LÇ@PÇ@TÇ@XÇ@\Ç@`Ç@dÇ@hÇ@lÇ@pÇ@tÇ@xÇ@|Ç€€Ç€„Ç€ˆÇ€ŒÇ€Ç€”Ç€˜Ç€œÇ€ Ç€¤Ç€¨Ç€¬Ç€°Ç€´Ç€¸Ç€¼Ç€ÀƀĉCéÚüÿÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÖÍKÇEè‰I‰eìè¡8üÿ‹U1Àƒ}•À‰B‹E Ç_M‰Bè1Ò‹U‰BÇD$‰$ÇEÈèTüÿÿEĉ$èù8üÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$èÜÒ‹EÀÇEÈÿÿÿÿ‰$èÊ;üÿU‰åƒìhEø‰EäEĉ$ÇEܰ´KÇEàðÍKÇEè¹I‰eìèñ7üÿ‹U1Àƒ}•À‰BÇ_MÇBè€Ñ‰E¸‰D$‹E‰$èîÚüÿ…Àu/‹E¸‹U‰B‹E ‹UÇEȉD$‰$èˆûÿÿEĉ$è-8üÿÉËU‰$èhÙüÿÇEȉE´ƒÀ‰EÀ‰$è8šƒ}´ÿ‰E¼t1À‹U¼ÆƒÀ9EÀuñ‹EÀ‹U‰D$‹E¼‰T$‰$èÙüÿ‹E¼‹U‰BévÿÿÿƒÅ‹ẺEÀ‹Eȃøt ƒøt4…Àt< ‹EÀ‰$è Ÿ‹U‹B9E¸t …Àt‰$艙ÇEÈèÝ©ÇEÈèa¡‹UÇEȉ$è_Ñ‹EÀÇEÈÿÿÿÿ‰$èM:üÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÊÍKÇEèº I‰eìèq6üÿ‹U1Àƒ} •À‰BÇ_MÇBèЋU‰BÇD$‰$ÇEÈè#úÿÿEĉ$èÈ6üÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$è«Ð‹EÀÇEÈÿÿÿÿ‰$è™9üÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÐÍKÇEèi I‰eìèÁ5üÿ‹U1Àƒ}•À‰B‹E Ç_M‰BèQÏ‹U‰BÇD$‰$ÇEÈètùÿÿEĉ$è6üÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$èüÏ‹EÀÇEÈÿÿÿÿ‰$èê8üÿU‰åƒìhEø‰EäEĉ$ÇEܰ´KÇEàÜÍKÇEè™ I‰eìè5üÿ‹U1Àƒ}•À‰BÇ_MÇBè Î‰E¸‰D$‹E‰$èØüÿ…Àu/‹E¸‹U‰B‹E ‹UÇEȉD$‰$è¨øÿÿEĉ$èM5üÿÉËU‰$èˆÖüÿÇEȉE´ƒÀ‰EÀ‰$èX—ƒ}´ÿ‰E¼t1À‹U¼ÆƒÀ9EÀuñ‹EÀ‹U‰D$‹E¼‰T$‰$è%Öüÿ‹E¼‹U‰BévÿÿÿƒÅ‹ẺEÀ‹Eȃøt ƒøt4…Àt< ‹EÀ‰$è@œ‹U‹B9E¸t …Àt‰$è©–ÇEÈèý¦ÇEÈèž‹UÇEȉ$è΋EÀÇEÈÿÿÿÿ‰$èm7üÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÄÍKÇEèš I‰eìè‘3üÿ‹U1Àƒ} •À‰BÇ_MÇBè Í‹U‰BÇD$‰$ÇEÈèC÷ÿÿEĉ$èè3üÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$èËÍ‹EÀÇEÈÿÿÿÿ‰$è¹6üÿU‰åSƒì‹]‰$è‰]ƒÄ[]é¡•U‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàðÌKÇEè™ I‰eìèÁ2üÿ‹U‹BÇ_M‰EÀè]Ì9EÀt‹EÀ…Àt ‹UÀ‰$è6•‹U‹B…Àt‹‰$‹BÇEÈÿЋEÇEȃÀ ‰$èÆÌ‹EÇEÈÿÿÿÿ‰$èôÌEĉ$èé2üÿÉÃÅ‹UÌ‹EÇEȉUÀ‰$èÌÌ‹UÀÇEÈÿÿÿÿ‰$èº5üÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÎKÇEèyI‰eìèá1üÿ‹U‹BÇ_M‰EÀè}Ë9EÀt‹EÀ…Àt ‹UÀ‰$èV”‹U‹B…Àt‹‰$‹BÇEÈÿЋEÇEȃÀ ‰$èæË‹EÇEÈÿÿÿÿ‰$èÌEĉ$è 2üÿÉÃÅ‹UÌ‹EÇEȉUÀ‰$èìË‹UÀÇEÈÿÿÿÿ‰$èÚ4üÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÀÅKÇEèI‰eìè1üÿ‹EÇ(_M‹E ÇEȉD$‹EƒÀ‰$è\ÉÿÿEĉ$èq1üÿÉÃÅ‹ẺEÀ‹E‰$è ‹EÀÇEÈÿÿÿÿ‰$èI4üÿU‰åSƒì‹]‰$è‰]ƒÄ[]é1“U‰åSƒì$‹]‹CÇ(_Mƒè =pTLu‰$諃Ä$[]Ã=(vMu‹PJÿ‰H…ÒÜU÷‰T$‰$èð¯ÿÿë˃ÊÿðÁPëáU‰åSƒì‹]‹E ‰$‰D$è÷èÇ@_MƒÄ[]ÃU‰åSƒì‹]Ç@_M‰$èxé‰]ƒÄ[]é{’U‰åƒì‹EÇ@_MÉéKéU‰å‹E]‹‹@ÃU‰å‹E]‹ÃU‰åƒì‹E‰]ø1Û‰uü‹uƒà=ƒèƒø;w‹…1M…Àt‹…Ét ‰Ø‹uü‹]ø‰ì]ÉD$‹E ‰$èÅÑüÿ…À‰t߯F‰óë×U‰åƒì‹E‹‰EÉé,ÑüÿU1À‰åSƒì‹]‹…ÒuƒÄ[]À{ulj؃Ä[]Ãt&èóÑüÿÇ‹‰$è[Ñüÿ…ÀtÕèÚÑüÿƒ8tèÇ1ÀƒÄ[]ÃU‰åWVSƒì‹} ‹u‹U‰t$‰|$‹‹@‰$è‘<üÿƒøÿ‰Ãt ƒÄ‰Ø[^_]Ãè{Ñüÿƒ8t̓ĉØ[^_]ÃU‰åƒì‹E‹M‹U ‹‹@Éé&àüÿU‰åƒì‹E‹U ƒø~¸ÿÿÿÿºÿÿÿÿÉÃv|úÿÿÿwçƒøÿ~"‹E‰T$‰D$‹E‹‹@‰$è<üÿɉÂÁúÃ|¾ú€sÔt&ë¯U‰åƒì‰]ø‹]‰uü‹u ‹…Àt 1À‹]ø‹uü‰ì]Ã1À…ötðè©ÐüÿÇ‹‰$è‘Ïüÿ…Àu ‰3‰ØÆCëÍè†Ðüÿƒ8uÁëÜU‰åƒì(‹E‰]ô1Û‰uø‹u‰}ü‹} ƒà=ƒèƒø;w‹…1M…Àt‹…Òt‰Ø‹uø‹]ô‹}ü‰ì]ÉD$‰<$è;üÿ…À‰tß…ÿ‰óÆFuÕÇD$ ÇD$ÇD$‰$èOÏüÿ‰Ø‹uø‹]ô‹}ü‰ì]ÃU‰åƒì‰uø‹u‰]ô1Û‰}ü‹}…öu%‹‹M‹U‹@è•Þüÿ‹uø‹}üÉ؋]ô‰ì]Ãt&‹‰ñ‹U ‹@èqÞüÿ9ƉÃtƉ؋uø‹]ô‹}ü‰ì]ÃU‰åƒìH‰]ø‹]EÔ‰uü‰D$‹‹@‰$èe:üÿ‰Â1À…Òu·UÚâðú€t ‹]ø‹uü‰ì]ÃÇD$‹uèÇD$‹‹@‰$è:üÿ‹]ø)Ɖð‹uü‰ì]ÃU‰å‹EÇÆ@]ÃU‰åƒìÉé¤üÿÿU‰åW¿à MVEøƒìP‰EäEĉ$ÇEܰ´KÇEàÀÐKÇEè I‰eìèj+üÿ‹EÇD$ÇD$ÇEÈÿÿÿÿ‰D$ ‹E‰$èA¢‹E¹‹u Çh_Mó¦t‹u ¿â M¹ó¦uEĉ$è°+üÿƒÄP^_]ËEÇEȃÀ‰E¼‰$èQÅ‹E ÇD$‰D$‹E¼‰$èÇÄ뺃Å‹EÌÇEȉEÀ‹E‰$èz¤‹EÀÇEÈÿÿÿÿ‰$èH.üÿU‰åSƒì‹]Çh_M‰$èH¤‰]ƒÄ[]é+U‰åƒì‹EÇh_MÉé¤U‰åW¿MVEøƒìP‰EäEĉ$ÇEܰ´KÇEàâ¿KÇEèVI‰eìè*üÿ‹EÇEÈÿÿÿÿ‰D$‹E‰$èQ¥‹E¹‹u Ǩ_Mó¦t‹u ¿M¹ó¦uEĉ$èp*üÿƒÄP^_]ËEÇEȃÀ‰E¼‰$èÄ‹E ÇD$‰D$‹E¼‰$è‡Ã‹E‰$èü£믃Å‹EÌÇEȉEÀ‹E‰$襋EÀÇEÈÿÿÿÿ‰$èý,üÿU‰åSƒì‹]Ǩ_M‰$èX¥‰]ƒÄ[]éÛ‹U‰åƒì‹EǨ_MÉé+¥U‰åSƒì‹]‹E ‰$‰D$è·÷ÿÿÇè_MƒÄ[]ÃU‰åSƒì‹]Çè_M‰$è8øÿÿ‰]ƒÄ[]é[‹U‰åƒì‹EÇè_MÉé øÿÿU‰åSƒì‹]Ç`M‰$èè÷ÿÿ‰]ƒÄ[]é ‹U‰åƒì‹EÇ`MÉé»÷ÿÿU‰åSƒì‹]‹E ‰$‰D$èçöÿÿÇ`MƒÄ[]ÃU‰åSƒì‹]Ç`M‰$èh÷ÿÿ‰]ƒÄ[]鋊U‰åƒì‹EÇ`MÉé;÷ÿÿU‰åSƒì‹]‹E ‰$‰D$ègöÿÿÇ0`MƒÄ[]ÃU‰åSƒì‹]Ç0`M‰$èèöÿÿ‰]ƒÄ[]é ŠU‰åƒì‹EÇ0`MÉé»öÿÿU‰åSƒì‹]ÇH`M‰$è¸à‰]ƒÄ[]黉U‰åƒì‹EÇH`MÉé‹àU‰åƒì‹EÇpmMÉé{‰U‰å‹EÇpmM]ÃU‰åƒì‹E‰$‹M ‰t$‹P0‰Óƒãƒât7…É~3‹P@…Û4 ‰P‰P‰p u0Ç@Ç@Ç@‹$‹t$‰ì]ËP@…Û‰P‰P‰P tÐ…ÉuÌ‹HDƒùvĉP‰PT ÿ‰P‹$‹t$‰ì]ÃU‰å‹E€xTu‹PÆ@T‰PL‹P ‰PPPK‰P‰PPL‰P ]ÃU‰å‹ES€xTt%‹P9P‹HP‹X@•¶ÒPL‰X‰H ‰PL‰PÆ@T[]ÃU‰åì(Eø‰…Tÿÿÿ…4ÿÿÿÇ…Lÿÿÿ°´KÇ…PÿÿÿÁKÇ…Xÿÿÿ;I‰¥\ÿÿÿ‰$èl%üÿ‹UÆ…ÿÿÿ‹J9J‚w‹E€xJ„Ç‹@X…À„Š‹‰$‹BÇ…8ÿÿÿÿЄÀ… €½ÿÿÿ„“‹Etÿÿÿ‹UÇ…,ÿÿÿ‰ÿÿÿƒÀ8ƒÂ(‰…(ÿÿÿ‰•ÿÿÿ‹M‹AXMô‹‰L$‰L$ tÿÿÿ‰L$‹(ÿÿÿ‰$‰L$‹B Ç…8ÿÿÿÿÿÿÿÿЃø‰…0ÿÿÿt8ƒøvn‹•,ÿÿÿ…Ò~0ƒ½0ÿÿÿu'€½ÿÿÿu›…4ÿÿÿ‰$è%üÿ¶…ÿÿÿÉÃÆ…ÿÿÿ€½ÿÿÿtÙ‹U‹ÇD$ÿÿÿÿ‰$‹@4Ç…8ÿÿÿÿÿÿÿÿЃøÿ•…ÿÿÿ뮋Eô‹•ÿÿÿ)Ð…À‰…,ÿÿÿ~·‰D$‹…ÿÿÿtÿÿÿ‰L$‰$è¿õÿÿ¶ÿÿÿº9…,ÿÿÿDш•ÿÿÿéAÿÿÿ‹ÇD$ÿÿÿÿ‰$‹@4Ç…8ÿÿÿÿÿÿÿÿЃøÿ•…ÿÿÿé^þÿÿÇ…8ÿÿÿÿÿÿÿè,ƒÅƒ½@ÿÿÿÿ‹…<ÿÿÿt‰$Ç…8ÿÿÿÿÿÿÿè!'üÿ‰$Ç…8ÿÿÿÿÿÿÿèoŒU‰åVSEøƒÄ€‰EÔE´‰$ÇḚ´KÇEÐøÀKÇEØžI‰eÜè/#üÿ‹U‹BX…À„¸‹‰$‹BÇE¸ÿЄÀ…Ø‹u‹FX‹‰$‹B ÇE¸ÿЋU¯ÐBƒàðè(üÿ‹MD$/ƒÆ8ƒàð‰E¨‹AX]ôU¨‰uœ‹u¨‹‰T$Uð‰\$‹] ‰t$‹uœ‰T$‹U U‰\$‰t$‰T$ ‰$‹AÇE¸ÿÿÿÿÿЃø‰E v]ƒ} …‹E‹U ‰D$‰T$‹EÇE¸ÿÿÿÿƒÀ(‰$èôÿÿ‹U9ÐE´”E°‰$èÜ"üÿ¶E°eø[^]ËM‹] ‰L$‰\$뻋U¨‹Eô‹MÇE¸ÿÿÿÿ‰T$)ЃÁ(‰E¬‰M¤‰D$‰ $èµóÿÿ9E¬…¢€} „˜‹]uô‹U¨U¬‹Mð‹CX‹‰t$uð‰T$‹U¨‰t$‹u‰T$‹V‰L$‰$‰T$ ‹Uœ‰T$‹CÇE¸ÿÿÿÿÿЃøt2‹]¨‹Mô‹u¤‰\$)Ù‰M°‰L$‰4$è1óÿÿ‹U°éÿÿÿÇE¸ÿÿÿÿèÍ)Ç$`MÇE¸ÿÿÿÿèÊ+‹U¬éõþÿÿƒÅ‹M¸‹E¼‹UÀ…Étƒét ƒÂt‰$ÇE¸ÿÿÿÿè·$üÿ‰$ÇE¸ÿÿÿÿèŠU‰åSƒì‹]€{Ht‹C@…Àt‰$èƒÇC@ÆCH‹C\…Àt‰$ègƒÇC\ÇC`ÇCdÇChƒÄ[]ÃU‰åSƒì‹]€{Hu‹C@…Àt ƒÄ[]Ãv‹CD‰$èEƒÆCH‰C@ëãU‰åƒìH‰]ô‹]‰uø‰}ü1ÿs(‰4$è¡+ýÿ„Àt‰ø‹]ô‹uø‹}ü‰ì]ËEÇD$ ´‰4$‰D$‹E ‰D$èðÿÿ‰4$èh+ýÿ„Àtlj$‰ßèZÿÿÿ‹C@‹MÆCIÆCJ‰C‰CöÁ‰C ‹C4‰K0ÇCÇCÇC‰C8‰C‹U‹B\ÇBÇBÇB‰BdE¬‰Bh‹B@‰B‰B‰B ‹B4‰B8‰B<éôýÿÿ‰T$‰D$‹C\‰U¬‰$èT¼üÿëªÇE°é¾ýÿÿÇE¸ÿÿÿÿèú"¸é®þÿÿƒÅ‹M¸‹E¼‹UÀƒùt ƒùt…Ét ƒÂt‰$ÇE¸ÿÿÿÿèðüÿ‰$ÇE¸ÿÿÿÿèAƒU‰åƒì(‰]ô‹]‰uø‹u‰}ü‹} C(‰$è}%ýÿ„Àu…öt%…öv~ …ÿt‰{@‰sD‰Ø‹uø‹]ô‹}ü‰ì]Ãt&…ÿu×ÇCD‰Ø‹uø‹]ô‹}ü‰ì]ÃU‰åEøSƒìT‰EäEÄÇEܰ´KÇEà„ÀKÇEè›(I‰eì‰$è üÿ‹UÇEÀ€zTt?‹M…ÉŽ&‹B‰Ñ‹R9Єç‹]9•À¶À‹KP‹S@CLÆCT‰K ‰CL‰S‰C‹M‹E‹QD‹@0ƒú‰E¼Jÿ¸CÁ9E~#‹]‹CX…À„÷‹‰$‹BÇEÈÿЄÀu<‹M‹] ‹EÇEÈÿÿÿÿ‰L$‰\$‰$è,$EÀEĉ$è~üÿ‹EÀƒÄT[]Ãt&öE¼t¾‹E€xJuµ‰Â‹@‹R )‰U¼…~‹MƒÁ(‰M¼ëvEÀ)E„´E ‹]‹E ‹U¼ÇEÈÿÿÿÿ‰\$‰D$‰$èáéÿÿƒøÿ„…ÀuÄ‹E…Àt}‹U‹B@ÇBÇBÇB‰B‰B‰B ÆBIéGÿÿÿƒúu+¶‹] ˆÇE¸‹E‹]¸‹U¼] XUÀ)UéTÿÿÿf‹U¼‹M ‰D$‰U¸‰T$‰ $è·¹üÿëÉt&‹M‹Q0‹A@ƒâ‰A‰A‰A t‹QDƒúv‰A‰ADÿ‰Aë‹]ÇCÇCÇC‹EÆ@Ié¥þÿÿ¶‹] ˆƒÃƒAƒm€yT‰] u ÇEÀéþÿÿÇEÀ‹U‹B‹RéÜýÿÿÇ$TMèÅ!ƒÅƒ}Ðÿ‹EÌt‰$ÇEÈÿÿÿÿèÊüÿÇEÈÿÿÿÿ莉$ÇEÈÿÿÿÿè€U‰åEøSƒìd‰EäEĉ$ÇEܰ´KÇEà¤ÀKÇEè£*I‰eìèÐüÿ‹M‹U‹AX‹R0…À‰U¼„p‹‰$‹BÇEÈÿЄÀ„¦öE¼„œ‹]€{I…‰Ø‹[‰Â‹@)Ø€zJu ‹RDJÿƒúCÁ=ºNÐ9UŒ•‹U‹M‹B‰L$ÇEÈÿÿÿÿ)ÉD$‹E‰]¼‹] ‹U¼ƒÀ(‰\$ ‰T$‰$è\éÿÿ‹UU¼9ÐtwÇEÀ‰Â+U¼9E¼MUÀ‰UÀë#‹M‹] ‹EÇEÈÿÿÿÿ‰L$‰\$‰$èš!‰EÀEĉ$èlüÿ‹EÀƒÄd[]Ãv‹]‹E ‹UÇEÈÿÿÿÿ‰\$‰D$‰$è`!‰EÀëÄ‹]‹K0‹S@ƒá‰S‰S‰S t‹KDƒùv‰S‰ST ÿ‰Së‹UÇBÇBÇB‹MÆAJé7ÿÿÿÇEÈÿÿÿÿ譃Ń}Ðÿ‹EÌt‰$ÇEÈÿÿÿÿèÂüÿ‰$ÇEÈÿÿÿÿè~U‰åƒìH‰]ô‹]‰uø‹E‹u ‹U‰}ü‹}ÇÿÿÿÿÇCÿÿÿÿÇC‰EЉUÔ‰4$è ïÿÿ„Àu‰Ø‹uø‹]ô‹}ü‰ì]‹E‹UÔ‰D$ ‹EЉT$‰D$F(‰$è{æÿÿÇC‰Ñ‰Â‰E؉‰È!Ѓøÿ‰M܉Kt°‹F\ÆFIÆFJÇF‰Fh‰Fd‹F@ÇFÇF‰~8‰F‰F‰F ‰{ésÿÿÿU‰åSì„‹E‹UMøÇḚ´KÇEÐ,ÁK‰E E´‰$‰Uœ‰MÔÇEØç-I‰eÜèñüÿ‹] ‹CX…À„S‹‰$‹BÇE¸ÿÐ…À‰E¨ˆ÷‹]¨…ÛžE¤‹EÇÿÿÿÿÇ@ÿÿÿÿÇ@‹E ƒÀ(‰$èùýÿ„À„¬‹U  Uœ•À„E¤…š‹M €yT…²‹E ‹M¨‹@4‰Ë‹M Áû‰E¤‹Eœ¯E¨¯ËÁ‹E¨÷e ʉU¬‹U ‰E¨€zIt ƒ}„±‹MEè‹U¤‰$ÇE¸ÿÿÿÿ‰L$‹M¬‰T$‹U¨‰L$ ‹M ‰T$‰L$èìýÿÿ‹]‹E艋Eìƒì‰C‹Eð‰CE´‰$èzüÿ‹E‹]üÉÂÆE¤ÇE¨éÿÿÿ‹Y1À‰Ê9Y‰Ó‹R@ÆCT•ÀAL‰S‰AL‹IP‰C‰K é!ÿÿÿvÇE¨é½þÿÿt&‹RX‹‰$‹@ÇE¸ÿЄÀt‹] ‹C+C ‰ÂÁúE¨U¬éÿÿÿ‹E ‹PX‰Ã‹@+C‹ ‰D$‹Cd‰D$ ‹C\‰$‰D$‰ØƒÀ<‰D$‹AÇE¸ÿÿÿÿÿÐC\+Ch‰ÂÁúE¨‹C<U¬‰E¤éÈþÿÿƒÅ‹M¸‹E¼‹UÀ…Étƒét ƒÂt‰$ÇE¸ÿÿÿÿènüÿ‰$ÇE¸ÿÿÿÿè¿zU‰åVSƒì@‹E‹u ‹]‰EØ‹EÇÿÿÿÿÇCÿÿÿÿ‰EÜ‹EÇC‰Eà‹E‰EäF(‰$èËýÿ„ÀtF€~TuQ‹UàEè‹M܉$ÇD$‰T$‹U؉L$ ‰t$‰T$è%üÿÿ‹E艋Eìƒì‰C‹Eð‰Ceø‰Ø[^]¶‹F9F‹VP‹N@•À¶ÀFL‰N‰V ‰FL‰FÆFTëˆU‰åƒì8‰]ô‹]‰uø¾ÿÿÿÿ‰}ü‹} öC0tx€{Iur‹Cƒÿÿ‹S”Á9Ðsq„Éu‰øˆ‹S‹CƒÂ‰S)¾ÿÿÿÿ‰T$‰D$‰$èíÿÿ„Àt3‹S0‹C@ƒâ‰C‰C‰C tw‹SDƒúvo‰C‰CDÿ‰Cf1öƒÿÿE÷‰ð‹]ô‹uø‹}ü‰ì]ËSDƒúv1‹C@„ÉÆCJTÿ‰C‰C‰C ‰C‰C‰SuÀ‰úˆƒCë¶¶‰ø„ɈEçtÆCJë¡ÇCÇCÇCë‰EçÇD$‰D$‰$èbìÿÿ„À„rÿÿÿëÁU‰åƒìX‰]ô‹]‰uø¾ÿÿÿÿ‰}ü‹} öC0tE€{Ju?‹C9C¶STsBHÿ‰K¶@ÿ1öƒÿÿt"9ljþt„Ò¾ÿÿÿÿu€{Ttx‹C‰ú‰þÆCIˆ‰ð‹]ô‹uø‹}ü‰ì]ËMØÇD$ÇD$ÇD$ÿÿÿÿÇD$ ÿÿÿÿ‰\$‰ $ˆUÔÿP‹EØ#E܃ìƒøÿt±‹‰$ÿP$¶UÔƒøÿ…sÿÿÿëšt&‹CSLÆCT‰CL‹C ‰S ‰CPCK‰C‰CégÿÿÿU‰åƒìhEø‰EäEÄÇEܰ´KÇEàdÀKÇEè$2I‰eì‰$èüÿ‹UÇEÀÿÿÿÿ‹R0‰U¼ƒâ„‹EƒÀ(‰$‰E¸è·ýÿ„Àt{‹U‹E‹R ‹@‰UÀ‹U‰E´‹BX…Àto‹‰$‹BÇEÈÿЋUÀ+U´…À‰UÀxAöE¼t;‹E¸ÇEÈÿÿÿÿ‰$è±áÿÿ‹U‰E¼‹BX‹‰$‹B ÇEÈÿЉÁ‹E¼‰ÂÁú÷ùEÀEĉ$èmüÿ‹EÀÉÃÇEÈÿÿÿÿè,ƒÅ‹MÈ‹EÌ‹UÐ…Étƒét ƒÂt‰$ÇEÈÿÿÿÿè1üÿ‰$ÇEÈÿÿÿÿè‚vU‰åWVSEè윉EÄE¤ÇE¼°´KÇEÀÄÀKÇEÈ‹7I‰ẻ$èK üÿ‹UÇE ÿÿÿÿöB0„Ç€zJ…½€zT…Ó‹B‹R 9ЂŒ‹U‹MÇE”‹BDƒøPÿ‹AXBU”…À‰U”„Œ‹‰$‹BÇE¨ÿЄÀ„´‹u‹]”‰\$‹FÇE¨ÿÿÿÿ‰D$‰ðƒÀ(‰$èÞÿÿ…À‰E …&‹MÇE ÿÿÿÿ‹A@ÇAÇAÇA‰A‰A‰A ÆAIt&E¤‰$è üÿ‹E Äœ[^_]ô&‹]1À‹s9s‹SP‹K@•ÀCL‰S ‰K‰CL‰CÆCTéÿÿÿt&‹U‹BX‹‰$‹BÇE¨ÿÐ…ÀŽD¯E”‰E˜‹u1Û‹Vd‹Nh)щM ‰Á+M ;E NË€~I‰M„t‹F9F u‹u …öDÙ‰]„v‹M‹]˜;Y`‰‹M …É…6‹MÇE ‹I\‰Mœ‹Mœ‹E ‹U‹uÇEœȉӉJdƒÆd‰Bh‹R8‰uŒ‰S<‹UƒÃ(‰]ƒÂ8‰Uˆ‹U„…ÒŽÛ‹]‰Ñ+K\ ;K`Ë‹u‰T$‰D$ÇE¨ÿÿÿÿ‰4$è•ÜÿÿÆE˜…Àt ƒøÿ„¿ÆE˜‹UBh‰Bh‹M‹Q‰Ë‹Id‰Uä9Á‚ôƒ}œ„<‹Eä)Ѓ}œ‰E t ‹U …Ò„‚ƒ} Že‹MöA0„{‹A@‹U ‰A‰A‰Q ‹uÇFÇFÇFÆFI¶‰E éþÿÿÇEœÆE˜ë£‹u‹] ‰T$‰\$‹F\‰$è¬üÿ‹F\‰Eœé¶þÿÿ€}˜„Ó‹Uƒ}œ‹B@ÇBÇBÇB‰B‰B‰B ÆBI…×Ç$ÀMÇE¨ÿÿÿÿè}‹[Xuä‹;‰t$‹u”‰T$‰L$‹Mˆ‰$42‹UŒ‰t$‰D$ ‰L$‰T$‹GÇE¨ÿÿÿÿÿЋ]‹S‰Eœƒ}œ…Äþÿÿ‹u‹F\‹Nh‰$‰D$)Á9M”FM”‰M ‰L$èV«üÿ‹E F\‰FdéŸþÿÿÆE˜éhþÿÿ‹U‹Bhºéþÿÿ€}˜…ÿÿÿƒ}œtÇ$0MÇE¨ÿÿÿÿ輋]‹C@‰C‰C‰C éƒþÿÿ‰$ÇE¨ÿÿÿÿèék…Û‰Eœt‰ÂÚÆƒÀ9Ðuö‹] …Ûuh‹]‹C\…Àt‰$è‹k‹u‹Eœ‹U˜‰F\‰V`éAýÿÿ´&Ç$øMÇE¨ÿÿÿÿè=‹M‹AX‹‰$‹B ÇE¨ÿЋ]”Dÿ‰E˜‰Øé›üÿÿ‹u‹U ‹Mœ‹Fd‰T$‰ $‰D$èIªüÿéwÿÿÿÇ$„MÇE¨ÿÿÿÿèáÇE¨ÿÿÿÿèŃŋM¨‹E¬‹U°ƒùtƒùt…Ét ÇE ÿÿÿÿé½ûÿÿƒÂt‰$ÇE¨ÿÿÿÿè¹ üÿ‰$ÇE¨ÿÿÿÿè qU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàïÀKÇEè59I‰eìèÑüÿ‹ULjdMÇBÇBÇB ÇBÇBÇBƒÂ‰UÀ‰$èð¤‹ELj`MÇ@ Ç@$ƒÀ(‰E¼‹E‹U¼ƒÀ ‰D$‰$èŽÛÿÿ‹EÆ@K‹UÀÇ@0Ç@4Ç@8Ç@<Ç@@Ç@DÆ@HÆ@IÆ@JÇ@LÇ@PÆ@TÇ@XÇ@\Ç@`Ç@dÇ@h‰$è!1„Àu Eĉ$èrüÿÉËEÀÇEȉ$è><‹U‰BXEĉ$èMüÿÉÃÅ‹U¼‹EÌÇEȉ$‰EÀèàÚÿÿ‹ELjdMƒÀ‰$èl¥‹UÀÇEÈÿÿÿÿ‰$è üÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàéÀKÇEèÕ:I‰eìè1üÿ‹ULjdMÇBÇBÇB ÇBÇBÇBƒÂ‰UÀ‰$èP£‹ELj`MÇ@ Ç@$ƒÀ(‰E¼‹E‹U¼ƒÀ ‰D$‰$èîÙÿÿ‹EÆ@K‹UÀÇ@0Ç@4Ç@8Ç@<Ç@@Ç@DÆ@HÆ@IÆ@JÇ@LÇ@PÆ@TÇ@XÇ@\Ç@`Ç@dÇ@h‰$è/„Àu Eĉ$èÒüÿÉËEÀÇEȉ$èž:‹U‰BXEĉ$è­üÿÉÃÅ‹U¼‹EÌÇEȉ$‰EÀè@Ùÿÿ‹ELjdMƒÀ‰$èÌ£‹UÀÇEÈÿÿÿÿ‰$èjüÿU‰åƒìXEø‰EäEÄÇEܰ´KÇEà|ÁKÇEè¨;I‰eì‰$è‘üÿ‹ULj`M‰$ÇEÈèiåÿÿ‹EÇEȃÀ(‰$è´Øÿÿ‹ELjdMƒÀ‰$è@£‹U‰$èõfEĉ$èÚüÿÉÃÅ‹EÈ‹UÌ…À‰UÀtƒèt ‹EÇEȃÀ(‰$è\Øÿÿ‹ELjdMƒÀ‰$è袋UÀÇEÈÿÿÿÿ‰$è†üÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàTÁKÇEè}‹U‹B`ÇBÇBÇB‰BhE¬‰Bl‹B@‰B‰B‰B ‹B4‰B8‰B<éòýÿÿ‰T$‰D$‹C`‰U¬‰$èâ—üÿëªÇE°é¼ýÿÿÇE¸ÿÿÿÿèˆþ¸é¬þÿÿƒÅ‹M¸‹E¼‹UÀƒùt ƒùt…Ét ƒÂt‰$ÇE¸ÿÿÿÿè~ùûÿ‰$ÇE¸ÿÿÿÿèÏ^U‰åƒì(‰]ô‹]‰uø‹u‰}ü‹} C(‰$èýýÿ„Àu…öt%…öv~ …ÿt‰{@‰sD‰Ø‹uø‹]ô‹}ü‰ì]Ãt&…ÿu×ÇCD‰Ø‹uø‹]ô‹}ü‰ì]ÃU‰åEøSƒìT‰EäEÄÇEܰ´KÇEà”ÀKÇEè3MI‰eì‰$è õûÿ‹UÇEÀ€zXtB‹E…ÀŽe‹M‹A;A„‹M¸‹QP‹E‰Ã‹HT‰PP‹@@‰SÆCX‰K ‰C‹M‹E‹QD‹@0ƒú‰E¼Jÿ¸CÁ9E~#‹]‹C\…À„ ‹‰$‹BÇEÈÿЄÀu9‹M‹] ‹EÇEÈÿÿÿÿ‰L$‰\$‰$è‰EÀEĉ$èûôûÿ‹EÀƒÄT[]ÃföE¼tÁ‹E€xJu¸‹P‹@ )ÐÑø‰E¼…©‹]ƒÃ(‰]¼ëvEÀ)E„å‹] C‰] ‹E‹U ‹M¼ÇEÈÿÿÿÿ‰D$‰T$‰ $è[Åÿÿƒøÿ„)…Àu¾‹]…Û„¤‹U‹B@ÇBÇBÇB‰B‰B‰B ÆBIé@ÿÿÿ¶‹B‹J‹]9Á•À¶ÀÀ‹SPéšþÿÿƒøu0·‹] f‰ÇE¸‹]¸‹M¼MÀ)ME ‹U‰Bé"ÿÿÿ‹E¼‰T$‹U ‰E¸‰$‰D$è·üÿ‹M‹Që¿‹E‹P0‰Á‹@@ƒâ‰A‰A‰A t‹QDƒúv‰A‰ADPþ‰Aë‹]ÇCÇCÇC‹EÆ@Iéuþÿÿ·H‹] f‰ƒÃ‰] ƒmÇEÀéÿÿÿÇ$TMè-ýƒÅƒ}Ðÿ‹EÌt‰$ÇEÈÿÿÿÿè2öûÿÇEÈÿÿÿÿèöú‰$ÇEÈÿÿÿÿèw[U‰åEøSƒìd‰EäEĉ$ÇEܰ´KÇEà´ÀKÇEè@OI‰eìè@òûÿ‹M‹U‹A\‹R0…À‰U¼„}‹‰$‹BÇEÈÿЄÀ„°öE¼„¦‹]€{I…™‰Ø‹[‰Â‹@)ØÑø€zJu ‹RDJÿƒúCÁ=ºNÐ9UŒš‹U‹M‹B‰L$ÇEÈÿÿÿÿ)ÃÑû‰D$‹E‰]¼‹] ‹U¼ƒÀ(‰\$ ‰T$‰$èÈÄÿÿ‹UU¼9Ðt~ÇEÀ‰Â+U¼9E¼MUÀ‰UÀë)¶‹M‹] ‹EÇEÈÿÿÿÿ‰L$‰\$‰$èà‰EÀEĉ$èÒñûÿ‹EÀƒÄd[]Ë]‹E ‹UÇEÈÿÿÿÿ‰\$‰D$‰$詉EÀëÇt&‹]‹K0‹S@ƒá‰S‰S‰S t‹KDƒùv‰S‰STJþ‰Sëf‹UÇBÇBÇB‹MÆAJé.ÿÿÿÇEÈÿÿÿÿèùƒÅƒ}Ðÿ‹EÌt‰$ÇEÈÿÿÿÿè%ôûÿ‰$ÇEÈÿÿÿÿèvYU‰åƒìH‰]ô‹]‰uø‹E‹u ‹U‰}ü‹}ÇÿÿÿÿÇCÿÿÿÿÇC‰EЉUÔ‰4$èðîÿÿ„Àu‰Ø‹uø‹]ô‹}ü‰ì]‹E‹UÔ‰D$ ‹EЉT$‰D$F(‰$èÛÁÿÿÇC‰Ñ‰Â‰E؉‰È!Ѓøÿ‰M܉Kt°‹F`ÆFIÆFJÇF‰Fl‰Fh‹F@ÇFÇF‰~8‰F‰F‰F ‰{ésÿÿÿU‰åSì„‹E‹UMøÇḚ´KÇEФÂK‰E E´‰$‰Uœ‰MÔÇEØ‹RI‰eÜèQïûÿ‹] ‹C\…À„S‹‰$‹BÇE¸ÿÐ…À‰E¨ˆ÷‹]¨…ÛžE¤‹EÇÿÿÿÿÇ@ÿÿÿÿÇ@‹E ƒÀ(‰$èYúüÿ„À„¬‹U  Uœ•À„E¤…š‹M €yX…²‹E ‹M¨‹@4‰Ë‹M Áû‰E¤‹Eœ¯E¨¯ËÁ‹E¨÷e ʉU¬‹U ‰E¨€zIt ƒ}„±‹MEè‹U¤‰$ÇE¸ÿÿÿÿ‰L$‹M¬‰T$‹U¨‰L$ ‹M ‰T$‰L$èìýÿÿ‹]‹E艋Eìƒì‰C‹Eð‰CE´‰$èÚîûÿ‹E‹]üÉÂÆE¤ÇE¨éÿÿÿ‹Y1À‰Ê9Y‰Ó‹R@ÆCX•ÀÀAP‰S‰AP‹IT‰C‰K éÿÿÿÇE¨é½þÿÿt&‹R\‹‰$‹@ÇE¸ÿЄÀt‹] ‹C+C Ñø‰ÂÁúE¨U¬éÿÿÿ‹E ‹P\‰Ã‹@+C‹ Ñø‰D$‹Ch‰D$ ‹C`‰$‰D$‰ØƒÀ<‰D$‹AÇE¸ÿÿÿÿÿÐC`+Cl‰ÂÁúE¨‹C<U¬‰E¤éÄþÿÿƒÅ‹M¸‹E¼‹UÀ…Étƒét ƒÂt‰$ÇE¸ÿÿÿÿèÊðûÿ‰$ÇE¸ÿÿÿÿèVU‰åVSƒì@‹E‹u ‹]‰EØ‹EÇÿÿÿÿÇCÿÿÿÿ‰EÜ‹EÇC‰Eà‹E‰EäF(‰$è+øüÿ„ÀtF€~XuQ‹UàEè‹M܉$ÇD$‰T$‹U؉L$ ‰t$‰T$è%üÿÿ‹E艋Eìƒì‰C‹Eð‰Ceø‰Ø[^]¶‹F9F‹VT‹N@•À¶ÀÀFP‰N‰V ‰FP‰FÆFXë†U‰åƒìH‰]ô‹]‰}ü‹} ‰uø¾ÿÿÿÿöC0‰ú„«€{I…¡‹Kfƒÿÿ‹C”E×9Áƒš€}×u f‰8ƒÀ‰C)ȾÿÿÿÿÑø‰UЉD$‰L$‰$èßìÿÿ‹UЄÀtY‹K0‹C@ƒá‰C‰C‰C „¢‹KDƒù†–‰C‰CDHþ‰Cé™fEæÇD$‰D$‰$è‰ìÿÿ„ÀtÆCJ‰þ‰ð‹]ô‹uø‹}ü‰ì]ËSDƒúv8‹C@1ö€}ׯCJTPþ‰C‰C‰C ‰C‰C‰SuÄf‰8ƒÀ‰þ‰Cë·¶€}×f‰}æt†ÆCJ1öëŸÇCÇCÇC1ö€}×Dòé|ÿÿÿU‰åƒìX‰]ô‹]‰uø¾ÿÿÿÿ‰}ü·} öC0tF€{Ju@‹C9C¶SXsCHþ·@þ‰K1öfƒÿÿt"f9ljþt„Ò¾ÿÿÿÿu€{Xtu‹CÆCI‰þf‰8‰ð‹]ô‹uø‹}ü‰ì]ËMØÇD$ÇD$ÇD$ÿÿÿÿÇD$ ÿÿÿÿ‰\$‰ $ˆUÔÿP‹EØ#E܃ìƒøÿt±‹‰$ÿP$¶UÔfƒøÿ…qÿÿÿë™f‹CSNÆCX‰CP‹C ‰S ‰CTCL‰C‰CéjÿÿÿU‰åƒìhEø‰EäEÄÇEܰ´KÇEàtÀKÇEèWI‰eì‰$è±éûÿ‹UÇEÀÿÿÿÿ‹R0‰U¸ƒâ„œ‹EƒÀ(‰$‰E´èçôüÿ„À„ƒ‹U‹E‹R ‹@‰U¼‹U‰EÀ‹B\…Àtw‹‰$‹BÇEÈÿЋU¼+UÀÑú…À‰U¼‰UÀxDöE¸t>‹E´ÇEÈÿÿÿÿ‰$èØ¼ÿÿ‹U‰EÀ‹B\‹‰$‹B ÇEÈÿЉÁ‹EÀ‰ÂÁú÷ùE¼‰EÀEĉ$è‘éûÿ‹EÀÉÃÇEÈÿÿÿÿèPñƒÅ‹MÈ‹EÌ‹UÐ…Étƒét ƒÂt‰$ÇEÈÿÿÿÿèUìûÿ‰$ÇEÈÿÿÿÿè¦QU‰åWVSEè윉EÄE¤ÇE¼°´KÇEÀØÀKÇEÈ{\I‰ẻ$èkèûÿ‹UfÇE ÿÿöB0„È€zJ…¾€zX…Ô‹B‹R 9‡—‹U‹MÇE”‹BDƒøPÿ‹A\BU”…À‰U”„‹‰$‹BÇE¨ÿЄÀ„µ‹u‹]”‰\$‹FÇE¨ÿÿÿÿ‰D$‰ðƒÀ(‰$è@¹ÿÿ…À‰E …5‹]fÇE ÿÿ‹C@ÇCÇCÇC‰C‰C‰C ÆCI´&E¤‰$è%èûÿ·E Äœ[^_]ö‹]1À‹s9s‹ST‹K@•ÀÀCP‰K‰S ‰CP‰CÆCXéÿÿÿf‹U‹B\‹‰$‹BÇE¨ÿÐ…ÀŽT¯E”‰E˜‹u1Û‹Vh‹Nl)щM ‰Á+M ;E NË€~I‰M€t‹F9F u‹u …öDÙ‰]€v‹M‹]˜;Yd™‹E …À…F‹MÇE ‹I`‰Mœ‹Mœ‹E ‹U‹u”ÇEœȉӉJh‹Mö‰Bl‹R8‰uŒƒÁ8‰S<‹UƒÃ(‰]‰M„ƒÂh‰Uˆ‹U€…ÒŽã‹]‰Ñ+K` ;KdÓ‹u‰T$‰D$ÇE¨ÿÿÿÿ‰4$è­·ÿÿÆE˜…Àt ƒøÿ„ÇÆE˜‹UBl‰Bl‹M‹Q‰Ë‹Ih‰Uä9Á‚üƒ}œ„D‹Eä)ÐÑøƒ}œ‰E t ‹} …ÿ„ˆƒ} Žk‹MöA0„‹A@‹] ‰AX‰A‰Q ‹UÇBÇBÇBÆBI·f‰E éþÿÿvÇEœÆE˜ëŸv‹u‹] ‰T$‰\$‹F`‰$è‡üÿ‹F`‰Eœé¦þÿÿ€}˜„Ó‹Mƒ}œ‹A@ÇAÇAÇA‰A‰A‰A ÆAI…×Ç$ÀMÇE¨ÿÿÿÿèï‹[\uä‹;‰t$‹uŒ‰T$‰L$‹M„‰$42‹Uˆ‰t$‰D$ ‰L$‰T$‹GÇE¨ÿÿÿÿÿЋ]‹S‰Eœƒ}œ…¼þÿÿ‹u‹F`‹Nl‰$‰D$)Á9M”FM”‰M ‰L$èüÿ‹E F`‰Fhé™þÿÿÆE˜é`þÿÿ‹U‹Blºéüýÿÿ€}˜…ÿÿÿƒ}œtÇ$0MÇE¨ÿÿÿÿèÌî‹u‹F@‰F‰F‰F é}þÿÿ‰$ÇE¨ÿÿÿÿèùF…Û‰Eœt‰ÂÚÆƒÀ9Ðuö‹U …Òuh‹]‹C`…Àt‰$è›F‹u‹Eœ‹U˜‰F`‰Vdé1ýÿÿ´&Ç$øMÇE¨ÿÿÿÿèMî‹M‹A\‹‰$‹B ÇE¨ÿЋ]”Dÿ‰E˜‰Øé‹üÿÿ‹u‹U ‹Mœ‹Fh‰T$‰ $‰D$èY…üÿéwÿÿÿÇ$„MÇE¨ÿÿÿÿèñíÇE¨ÿÿÿÿèÕëƒÅ‹M¨‹E¬‹U°ƒùtƒùt…Ét  fÇE ÿÿé®ûÿÿƒÂt‰$ÇE¨ÿÿÿÿèÊæûÿ‰$ÇE¨ÿÿÿÿèLU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàhÂKÇEè'^I‰eìèáâûÿ‹UÇÈdMÇBÇBÇB ÇBÇBÇBƒÂ‰UÀ‰$耋EÇÈ`MÇ@ Ç@$ƒÀ(‰E¼‹E‹U¼ƒÀ ‰D$‰$èž¶ÿÿ‹E‹UÀÇ@0Ç@4Ç@8Ç@<Ç@@Ç@DÆ@HÆ@IÆ@JfÇ@LÇ@PÇ@TÆ@XÇ@\Ç@`Ç@dÇ@hÇ@l‰$è „Àu Eĉ$è€âûÿÉËEÀÇEȉ$謋U‰B\Eĉ$è[âûÿÉÃÅ‹U¼‹EÌÇEȉ$‰EÀèîµÿÿ‹EÇÈdMƒÀ‰$èz€‹UÀÇEÈÿÿÿÿ‰$èåûÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàbÂKÇEèÇ_I‰eìèAáûÿ‹UÇÈdMÇBÇBÇB ÇBÇBÇBƒÂ‰UÀ‰$è`~‹EÇÈ`MÇ@ Ç@$ƒÀ(‰E¼‹E‹U¼ƒÀ ‰D$‰$èþ´ÿÿ‹E‹UÀÇ@0Ç@4Ç@8Ç@<Ç@@Ç@DÆ@HÆ@IÆ@JfÇ@LÇ@PÇ@TÆ@XÇ@\Ç@`Ç@dÇ@hÇ@l‰$èï „Àu Eĉ$èààûÿÉËEÀÇEȉ$è ‹U‰B\Eĉ$è»àûÿÉÃÅ‹U¼‹EÌÇEȉ$‰EÀèN´ÿÿ‹EÇÈdMƒÀ‰$èÚ~‹UÀÇEÈÿÿÿÿ‰$èxãûÿU‰åƒìXEø‰EäEÄÇEܰ´KÇEàôÂKÇEè˜`I‰eì‰$è¡ßûÿ‹UÇÈ`M‰$ÇEÈèéäÿÿ‹EÇEȃÀ(‰$èijÿÿ‹EÇÈdMƒÀ‰$èP~‹U‰$èBEĉ$èêßûÿÉÃÅ‹EÈ‹UÌ…À‰UÀtƒèt ‹EÇEȃÀ(‰$èl³ÿÿ‹EÇÈdMƒÀ‰$èø}‹UÀÇEÈÿÿÿÿ‰$è–âûÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÌÂKÇEèmaI‰eìèÁÞûÿ‹EÇÈ`M‰$ÇEÈè äÿÿ‹EÇEȃÀ(‰$èä²ÿÿ‹EÇÈdMƒÀ‰$èp}Eĉ$èßûÿÉÃÅ‹ẺEÀ‹EÈ…Àtƒèt ‹EÇEȃÀ(‰$è—²ÿÿ‹EÇÈdMƒÀ‰$è#}‹EÀÇEÈÿÿÿÿ‰$èÁáûÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÔÂKÇEè=bI‰eìèñÝûÿ‹EÇÈ`M‰$ÇEÈè9ãÿÿ‹EÇEȃÀ(‰$è²ÿÿ‹EÇÈdMƒÀ‰$è |Eĉ$èEÞûÿÉÃÅ‹ẺEÀ‹EÈ…Àtƒèt ‹EÇEȃÀ(‰$èDZÿÿ‹EÇÈdMƒÀ‰$èS|‹EÀÇEÈÿÿÿÿ‰$èñàûÿU‰åSƒì‹E‹]‰D$‹E ‰D$C ‰$èͼÿÿ…ÀtÇE ‹Xô‰]ƒÄ[]éซXô‹C‰]ƒÈ‰E ƒÄ[]éŸU‰åSƒì‹E‹]‰D$‹E ‹‰D$C ‰$èk¼ÿÿ…ÀtÇE ‹Xô‰]ƒÄ[]é~¸‹Xô‹C‰]ƒÈ‰E ƒÄ[]éc¸U‰åSƒì‹]C ‰$èk½ÿÿ…ÀtƒÄ[]ËXô‹C‰$ƒÈ‰D$è)¸ƒÄ[]ÃU‰åƒìƒE4Éé çüÿU‰åƒìhEø‰EäEĉ$ÇEܰ´KÇEà8ÂKÇEè\eI‰eìèÜûÿ‹UƒÂx‰UÀ‰$耟‹EÀ‹M‹HXMÆ@tÇ@pÆ@uÇ@xÇ@|Ç€€Ç€„‹Bô‰‹LXMÇAxPmM‰‰ÈÇA‹ HXMÇD$AôÇEȉ$èõ¶‹E‹PXM‰E¸‰PƒÀBô‹TXM‰ÇD$‰$ÇEÈèÁ¶¡DXM‹M‹XXM‹@ô‰Ç aMÇAx4aMÇA aMƒÁ ‰M¼‰ $ÇEÈèÓÿÿ‹EÇEȃÀ ‰D$‹EÀ‰$èh¶‹E‹U¼‰D$‹E ‰$‰D$èºÿÿ…Àt.‹UÇD$‹‹@ôÇEÈЉ$芶Eĉ$èOÛûÿÉËM‹‹PôÊ‹B‰$ƒÈ‰D$èa¶Eĉ$è&ÛûÿÉÃÅ‹ẺE°‹EȃøtŽžƒøt|ƒøt&tI ‹U°‰U´‹MÇD$DXM‰ $ècáþÿ‹M‹EÀÇAxPmM‰$ÇEÈèGž‹U´ÇEÈÿÿÿÿ‰$èµÝûÿ‹HXM‹E¸‹M¸‰‹Bô‹LXM‰ÇA‹M°‰M´ë©‹M¼ÇEȉ $èúÕÿÿ‹E°‰E´éyÿÿÿ‹U°…À‰U´t‚éSÿÿÿU‰åƒìhEø‰EäEĉ$ÇEܰ´KÇEàNÂKÇEèÞgI‰eìè‘Ùûÿ‹UƒÂx‰UÀ‰$è‹EÀ‹M‹HXMÆ@tÇ@pÆ@uÇ@xÇ@|Ç€€Ç€„‹Bô‰‹LXMÇAxPmM‰‰ÈÇA‹ HXMÇD$AôÇEȉ$èu´‹E‹PXM‰E¸‰PƒÀBô‹TXM‰ÇD$‰$ÇEÈèA´¡DXM‹M‹XXM‹@ô‰Ç aMÇAx4aMÇA aMƒÁ ‰M¼‰ $ÇEÈè”Ðÿÿ‹EÇEȃÀ ‰D$‹EÀ‰$è賋E‹U¼‰D$‹E ‹‰$‰D$èý·ÿÿ…Àt.‹UÇD$‹‹@ôÇEÈЉ$è´Eĉ$èÍØûÿÉËM‹‹PôÊ‹B‰$ƒÈ‰D$èß³Eĉ$è¤ØûÿÉÃÅ‹ẺE°‹EȃøtŽœƒøtzƒøvtI ‹U°‰U´‹MÇD$DXM‰ $èãÞþÿ‹M‹EÀÇAxPmM‰$ÇEÈèÇ›‹U´ÇEÈÿÿÿÿ‰$è5Ûûÿ‹HXM‹E¸‹M¸‰‹Bô‹LXM‰ÇA‹M°‰M´ë©‹M¼ÇEȉ $èzÓÿÿ‹E°‰E´éyÿÿÿ‹U°…À‰U´t‚éUÿÿÿU‰åƒìhEø‰EäEĉ$ÇEܰ´KÇEà"ÂKÇEèõiI‰eìè×ûÿ‹UƒÂx‰UÀ‰$耚‹EÀ‹M‹HXMÆ@tÇ@pÆ@uÇ@xÇ@|Ç€€Ç€„‹Bô‰‹LXMÇAxPmM‰‰ÈÇA‹ HXMÇD$AôÇEȉ$èõ±‹E‹PXM‰E¸‰PƒÀBô‹TXM‰ÇD$‰$ÇEÈèÁ±¡DXM‹M‹XXM‹@ô‰Ç aMÇAx4aMÇA aMƒÁ ‰M¼‰ $ÇEÈèÎÿÿ‹EÇEȃÀ ‰D$‹EÀ‰$èh±Eĉ$èÖûÿÉÃÅ‹EÈ‹M̃ø‰M°tŽ™ƒøtwƒøtI ‹E°‰E´‹UÇD$DXM‰$èÏÜþÿ‹E‹UÀÇ@xPmM‰$ÇEÈè³™‹M´ÇEÈÿÿÿÿ‰ $è!Ùûÿ‹HXM‹E¸‹M¸‰‹Bô‹LXM‰ÇA‹M°‰M´ë©‹U¼ÇEȉ$èfÑÿÿ‹M°‰M´éyÿÿÿ…À‰M´t…é[ÿÿÿU‰åEøSƒìT‰EäEĉ$ÇEܰ´KÇEà.ÂKÇEè>lI‰eìèðÔûÿ‹M ‹]‹U ‹AƒÂ‰U¼‰‹] ‹Hô‹S ‹]‰ ÇCÇD$‹@ôÇEÈÿÿÿÿ؉$è°‹E ‹M ‹P‰ØƒÀ‰SBô‹Q‰ÇD$‰$ÇEÈèꯋ] ‹M¼‹C‹Q‹]‹@ô‰‹U ‹‰Ñ‹R ‰‹@ô‰‹A$‰CƒÃ ‰]À‰$ÇEÈè8Ìÿÿ‹E‹UƒÀ ‰D$‹‹@ôÇEÈЉ$è…¯‹E‹MÀ‰D$‹E‰ $‰D$蜳ÿÿ…Àt8‹UÇD$‹‹@ôÇEÈЉ$觯Eĉ$èlÔûÿƒÄT[]ö‹]‹‹PôÚ‹B‰$ƒÈ‰D$èt¯ë˃Å‹EÈ‹]̃ø‰]¸t ƒøt<…Àt ‹MÀÇEȉ $è”Ïÿÿ‹E¼‹U‰D$‰$è‚Úþÿ‹M¸ÇEÈÿÿÿÿ‰ $èðÖûÿ‹] ‹U‹M‹C‰‹S ‹@ô‹]¸‰ÇA‰$ÇEÈÿÿÿÿèÀÖûÿU‰åEøSƒìT‰EäEĉ$ÇEܰ´KÇEàDÂKÇEè>nI‰eìèðÒûÿ‹M ‹]‹U ‹AƒÂ‰U¼‰‹] ‹Hô‹S ‹]‰ ÇCÇD$‹@ôÇEÈÿÿÿÿ؉$讋E ‹M ‹P‰ØƒÀ‰SBô‹Q‰ÇD$‰$ÇEÈèê­‹] ‹M¼‹C‹Q‹]‹@ô‰‹U ‹‰Ñ‹R ‰‹@ô‰‹A$‰CƒÃ ‰]À‰$ÇEÈè8Êÿÿ‹E‹UƒÀ ‰D$‹‹@ôÇEÈЉ$è…­‹E‹MÀ‰D$‹E‹‰ $‰D$èš±ÿÿ…Àt6‹UÇD$‹‹@ôÇEÈЉ$襭Eĉ$èjÒûÿƒÄT[]Ãt&‹]‹‹PôÚ‹B‰$ƒÈ‰D$èt­ë̓Å‹EÈ‹]̃ø‰]¸t ƒøt<…Àt ‹MÀÇEȉ $è”Íÿÿ‹E¼‹U‰D$‰$è‚Øþÿ‹M¸ÇEÈÿÿÿÿ‰ $èðÔûÿ‹] ‹U‹M‹C‰‹S ‹@ô‹]¸‰ÇA‰$ÇEÈÿÿÿÿèÀÔûÿU‰åEøSƒìT‰EäEĉ$ÇEܰ´KÇEàÂKÇEèÜoI‰eìèðÐûÿ‹M ‹]‹U ‹AƒÂ‰UÀ‰‹] ‹Hô‹S ‹]‰ ÇCÇD$‹@ôÇEÈÿÿÿÿ؉$謋E ‹M ‹P‰ØƒÀ‰SBô‹Q‰ÇD$‰$ÇEÈèê«‹] ‹MÀ‹C‹Q‹]‹@ô‰‹U ‹‰Ñ‹R ‰‹@ô‰‹A$‰CƒÃ ‰]¼‰$ÇEÈè8Èÿÿ‹E‹UƒÀ ‰D$‹‹@ôÇEÈЉ$è…«Eĉ$èªÐûÿƒÄT[]ÃÅ‹EÈ‹]̃ø‰]¸t ƒøt<…Àt ‹M¼ÇEȉ $èöËÿÿ‹EÀ‹U‰D$‰$èäÖþÿ‹M¸ÇEÈÿÿÿÿ‰ $èRÓûÿ‹] ‹U‹M‹C‰‹S ‹@ô‹]¸‰ÇA‰$ÇEÈÿÿÿÿè"ÓûÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà„ÁKÇEèoqI‰eìèQÏûÿ‹M‹U‹EÇA aMÇ aMƒÂxÇAx4aMƒÁ Ç@ ˆ`M‰U¼‰MÀ‰ $ÇEÈè°ÿÿ‹EÇEȃÀ4‰$èM£ÿÿ‹U‹EÀÇB ˆdMƒÀ‰$èÕm¡DXM‹M‹XXM‹@ô‰¡PXM‹TXM‰A‹@ô‰T¡HXM‹LXM‰‹@ô‰‹E¼ÇAÇAxPmMÇEÈÿÿÿÿ‰$è©’‹U‰$è.1Eĉ$èÏûÿÉÃÅ‹EÈ‹MÌ…À‰M¸tƒèt ‹EÇEȃÀ4‰$è•¢ÿÿ‹EÇ@ ˆdM‹EÀƒÀ‰$èm‹UÇD$DXM‰$è:Õþÿ‹M‹E¼ÇAxPmM‰$ÇEÈè’‹U¸ÇEÈÿÿÿÿ‰$èŒÑûÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàlÁKÇEèsI‰eìè±Íûÿ‹M‹U‹EÇA aMÇ aMƒÂxÇAx4aMƒÁ Ç@ ˆ`M‰U¼‰MÀ‰ $ÇEÈèb®ÿÿ‹EÇEȃÀ4‰$è­¡ÿÿ‹U‹EÀÇB ˆdMƒÀ‰$è5l¡DXM‹M‹XXM‹@ô‰¡PXM‹TXM‰A‹@ô‰T¡HXM‹LXM‰‹@ô‰‹E¼ÇAÇAxPmMÇEÈÿÿÿÿ‰$è ‘Eĉ$è~ÍûÿÉÃÅ‹EÈ‹UÌ…À‰U¸tƒèt ‹EÇEȃÀ4‰$è¡ÿÿ‹M‹EÀÇA ˆdMƒÀ‰$èˆk‹EÇD$DXM‰$è¥Óþÿ‹U‹M¼ÇBxPmM‰ $ÇEÈ艋E¸ÇEÈÿÿÿÿ‰$è÷ÏûÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàZÂKÇEè}tI‰eìè!Ìûÿ‹U ‹M‹‹R ‰‹@ô‹M‰‹U ‹B$‰AƒÁ ‰MÀ‹M‹EÀÇA ˆ`M‰$ÇEÈèЬÿÿ‹EÇEȃÀ4‰$è ÿÿ‹U‹EÀÇB ˆdMƒÀ‰$è£j‹M ‹A‹Q‹M‹@ô‰‹U ‹B‹R‰A‹@ô‹M‰T‹U ‹B‹R ‰‹@ô‹M‰EÄÇA‰$èÌûÿÉÃÅ‹EÈ‹UÌ…À‰U¼tƒèt ‹EÇEȃÀ4‰$臟ÿÿ‹M‹EÀÇA ˆdMƒÀ‰$èj‹E ƒÀ‰D$‹E‰$è*Òþÿ‹U¼ÇEÈÿÿÿÿ‰$è˜ÎûÿU‰åSƒì‹E‹]‰D$‹E ‰D$C ‰$èÝÎÿÿ…ÀtÇE ‹Xô‰]ƒÄ[]é0¯‹Xô‹C‰]ƒÈ‰E ƒÄ[]é¯U‰åSƒì‹E‹]‰D$‹E ‹‰D$C ‰$è{Îÿÿ…ÀtÇE ‹Xô‰]ƒÄ[]éή‹Xô‹C‰]ƒÈ‰E ƒÄ[]é³®U‰åSƒì‹]C ‰$è{Ïÿÿ…ÀtƒÄ[]ËXô‹C‰$ƒÈ‰D$èy®ƒÄ[]ÃU‰åƒìƒE4Éé@ÕüÿU‰åƒìhEø‰EäEĉ$ÇEܰ´KÇEà°ÃKÇEè¾wI‰eìè±Éûÿ‹UƒÂ|‰UÀ‰$è ‹EÀ‹M‹ˆXMÇ@pfÇ@tÆ@vÇ@xÇ@|Ç€€Ç€„‹Bô‰‹ŒXMÇA|`mM‰‰ÈÇA‹ ˆXMÇD$AôÇEȉ$èC­‹E‹XM‰E¸‰PƒÀBô‹”XM‰ÇD$‰$ÇEÈè­¡„XM‹M‹˜XM‹@ô‰ÇLaMÇA|taMÇA`aMƒÁ ‰M¼‰ $ÇEÈè¢åÿÿ‹EÇEȃÀ ‰D$‹EÀ‰$趬‹E‹U¼‰D$‹E ‰$‰D$èÌÿÿ…Àt.‹UÇD$‹‹@ôÇEÈЉ$èØ¬Eĉ$èíÈûÿÉËM‹‹PôÊ‹B‰$ƒÈ‰D$诬Eĉ$èÄÈûÿÉÃÅ‹ẺE°‹EȃøtŽœƒøtzƒøvtI ‹U°‰U´‹MÇD$„XM‰ $èS¥‹M‹EÀÇA|`mM‰$ÇEÈèç‹‹U´ÇEÈÿÿÿÿ‰$èUËûÿ‹ˆXM‹E¸‹M¸‰‹Bô‹ŒXM‰ÇA‹M°‰M´ë©‹M¼ÇEȉ $èŠèÿÿ‹E°‰E´éyÿÿÿ‹U°…À‰U´t‚éUÿÿÿU‰åƒìhEø‰EäEĉ$ÇEܰ´KÇEàÆÃKÇEè@zI‰eìè1Çûÿ‹UƒÂ|‰UÀ‰$è Š‹EÀ‹M‹ˆXMÇ@pfÇ@tÆ@vÇ@xÇ@|Ç€€Ç€„‹Bô‰‹ŒXMÇA|`mM‰‰ÈÇA‹ ˆXMÇD$AôÇEȉ$èê‹E‹XM‰E¸‰PƒÀBô‹”XM‰ÇD$‰$ÇEÈ誡„XM‹M‹˜XM‹@ô‰ÇLaMÇA|taMÇA`aMƒÁ ‰M¼‰ $ÇEÈè"ãÿÿ‹EÇEȃÀ ‰D$‹EÀ‰$è6ª‹E‹U¼‰D$‹E ‹‰$‰D$è Êÿÿ…Àt.‹UÇD$‹‹@ôÇEÈЉ$èVªEĉ$èkÆûÿÉËM‹‹PôÊ‹B‰$ƒÈ‰D$è-ªEĉ$èBÆûÿÉÃÅ‹ẺE°‹EȃøtŽšƒøtxƒøtI ‹U°‰U´‹MÇD$„XM‰ $èÓ¢‹M‹EÀÇA|`mM‰$ÇEÈèg‰‹U´ÇEÈÿÿÿÿ‰$èÕÈûÿ‹ˆXM‹E¸‹M¸‰‹Bô‹ŒXM‰ÇA‹M°‰M´ë©‹M¼ÇEȉ $è æÿÿ‹E°‰E´éyÿÿÿ‹U°…À‰U´t‚éWÿÿÿU‰åƒìhEø‰EäEĉ$ÇEܰ´KÇEàšÃKÇEèW|I‰eìè±Äûÿ‹UƒÂ|‰UÀ‰$è ˆ‹EÀ‹M‹ˆXMÇ@pfÇ@tÆ@vÇ@xÇ@|Ç€€Ç€„‹Bô‰‹ŒXMÇA|`mM‰‰ÈÇA‹ ˆXMÇD$AôÇEȉ$èC¨‹E‹XM‰E¸‰PƒÀBô‹”XM‰ÇD$‰$ÇEÈ訡„XM‹M‹˜XM‹@ô‰ÇLaMÇA|taMÇA`aMƒÁ ‰M¼‰ $ÇEÈè¢àÿÿ‹EÇEȃÀ ‰D$‹EÀ‰$è¶§Eĉ$è+ÄûÿÉÃÅ‹EÈ‹M̃ø‰M°tŽ™ƒøtwƒøtI ‹E°‰E´‹UÇD$„XM‰$è½ ‹E‹UÀÇ@|`mM‰$ÇEÈèQ‡‹M´ÇEÈÿÿÿÿ‰ $è¿Æûÿ‹ˆXM‹E¸‹M¸‰‹Bô‹ŒXM‰ÇA‹M°‰M´ë©‹U¼ÇEȉ$èôãÿÿ‹M°‰M´éyÿÿÿ…À‰M´t…é[ÿÿÿU‰åEøSƒìT‰EäEĉ$ÇEܰ´KÇEà¦ÃKÇEèž~I‰eìèÂûÿ‹M ‹]‹U ‹AƒÂ‰U¼‰‹] ‹Hô‹S ‹]‰ ÇCÇD$‹@ôÇEÈÿÿÿÿ؉$èj¦‹E ‹M ‹P‰ØƒÀ‰SBô‹Q‰ÇD$‰$ÇEÈè:¦‹] ‹M¼‹C‹Q‹]‹@ô‰‹U ‹‰Ñ‹R ‰‹@ô‰‹A$‰CƒÃ ‰]À‰$ÇEÈèÈÞÿÿ‹E‹UƒÀ ‰D$‹‹@ôÇEÈЉ$èÕ¥‹E‹MÀ‰D$‹E‰ $‰D$è¬Åÿÿ…Àt8‹UÇD$‹‹@ôÇEÈЉ$è÷¥Eĉ$è ÂûÿƒÄT[]ö‹]‹‹PôÚ‹B‰$ƒÈ‰D$èÄ¥ë˃Å‹EÈ‹]̃ø‰]¸t ƒøt<…Àt ‹MÀÇEȉ $è$âÿÿ‹E¼‹U‰D$‰$èrž‹M¸ÇEÈÿÿÿÿ‰ $èÄûÿ‹] ‹U‹M‹C‰‹S ‹@ô‹]¸‰ÇA‰$ÇEÈÿÿÿÿè`ÄûÿU‰åEøSƒìT‰EäEĉ$ÇEܰ´KÇEà¼ÃKÇE螀I‰eìèÀûÿ‹M ‹]‹U ‹AƒÂ‰U¼‰‹] ‹Hô‹S ‹]‰ ÇCÇD$‹@ôÇEÈÿÿÿÿ؉$èj¤‹E ‹M ‹P‰ØƒÀ‰SBô‹Q‰ÇD$‰$ÇEÈè:¤‹] ‹M¼‹C‹Q‹]‹@ô‰‹U ‹‰Ñ‹R ‰‹@ô‰‹A$‰CƒÃ ‰]À‰$ÇEÈèÈÜÿÿ‹E‹UƒÀ ‰D$‹‹@ôÇEÈЉ$èÕ£‹E‹MÀ‰D$‹E‹‰ $‰D$èªÃÿÿ…Àt6‹UÇD$‹‹@ôÇEÈЉ$èõ£Eĉ$è ÀûÿƒÄT[]Ãt&‹]‹‹PôÚ‹B‰$ƒÈ‰D$èÄ£ë̓Å‹EÈ‹]̃ø‰]¸t ƒøt<…Àt ‹MÀÇEȉ $è$àÿÿ‹E¼‹U‰D$‰$èrœ‹M¸ÇEÈÿÿÿÿ‰ $èÂûÿ‹] ‹U‹M‹C‰‹S ‹@ô‹]¸‰ÇA‰$ÇEÈÿÿÿÿè`ÂûÿU‰åEøSƒìT‰EäEĉ$ÇEܰ´KÇEàÃKÇEè<‚I‰eìè¾ûÿ‹M ‹]‹U ‹AƒÂ‰UÀ‰‹] ‹Hô‹S ‹]‰ ÇCÇD$‹@ôÇEÈÿÿÿÿ؉$èj¢‹E ‹M ‹P‰ØƒÀ‰SBô‹Q‰ÇD$‰$ÇEÈè:¢‹] ‹MÀ‹C‹Q‹]‹@ô‰‹U ‹‰Ñ‹R ‰‹@ô‰‹A$‰CƒÃ ‰]¼‰$ÇEÈèÈÚÿÿ‹E‹UƒÀ ‰D$‹‹@ôÇEÈЉ$èÕ¡Eĉ$èJ¾ûÿƒÄT[]ÃÅ‹EÈ‹]̃ø‰]¸t ƒøt<…Àt ‹M¼ÇEȉ $è†Þÿÿ‹EÀ‹U‰D$‰$èÔš‹M¸ÇEÈÿÿÿÿ‰ $èòÀûÿ‹] ‹U‹M‹C‰‹S ‹@ô‹]¸‰ÇA‰$ÇEÈÿÿÿÿèÂÀûÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàüÂKÇEèσI‰eìèñ¼ûÿ‹M‹U‹EÇA`aMÇLaMƒÂ|ÇA|taMƒÁ Ç@ È`M‰U¼‰MÀ‰ $ÇEÈèÂÿÿ‹EÇEȃÀ4‰$èíÿÿ‹U‹EÀÇB ÈdMƒÀ‰$èu[¡„XM‹M‹˜XM‹@ô‰¡XM‹”XM‰A‹@ô‰T¡ˆXM‹ŒXM‰‹@ô‰‹E¼ÇAÇA|`mMÇEÈÿÿÿÿ‰$èI€‹U‰$èÎEĉ$è³¼ûÿÉÃÅ‹EÈ‹MÌ…À‰M¸tƒèt ‹EÇEȃÀ4‰$è5ÿÿ‹EÇ@ ÈdM‹EÀƒÀ‰$è½Z‹UÇD$„XM‰$è*™‹M‹E¼ÇA|`mM‰$ÇEÈ辋U¸ÇEÈÿÿÿÿ‰$è,¿ûÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÜÂKÇEèd…I‰eìèQ»ûÿ‹M‹U‹EÇA`aMÇLaMƒÂ|ÇA|taMƒÁ Ç@ È`M‰U¼‰MÀ‰ $ÇEÈèrÀÿÿ‹EÇEȃÀ4‰$èMÿÿ‹U‹EÀÇB ÈdMƒÀ‰$èÕY¡„XM‹M‹˜XM‹@ô‰¡XM‹”XM‰A‹@ô‰T¡ˆXM‹ŒXM‰‹@ô‰‹E¼ÇAÇA|`mMÇEÈÿÿÿÿ‰$è©~Eĉ$è»ûÿÉÃÅ‹EÈ‹UÌ…À‰U¸tƒèt ‹EÇEȃÀ4‰$è Žÿÿ‹M‹EÀÇA ÈdMƒÀ‰$è(Y‹EÇD$„XM‰$è•—‹U‹M¼ÇB|`mM‰ $ÇEÈè)~‹E¸ÇEÈÿÿÿÿ‰$è—½ûÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÒÃKÇEè݆I‰eìèÁ¹ûÿ‹U ‹M‹‹R ‰‹@ô‹M‰‹U ‹B$‰AƒÁ ‰MÀ‹M‹EÀÇA È`M‰$ÇEÈèà¾ÿÿ‹EÇEȃÀ4‰$è»ÿÿ‹U‹EÀÇB ÈdMƒÀ‰$èCX‹M ‹A‹Q‹M‹@ô‰‹U ‹B‹R‰A‹@ô‹M‰T‹U ‹B‹R ‰‹@ô‹M‰EÄÇA‰$襹ûÿÉÃÅ‹EÈ‹UÌ…À‰U¼tƒèt ‹EÇEȃÀ4‰$è'ÿÿ‹M‹EÀÇA ÈdMƒÀ‰$è¯W‹E ƒÀ‰D$‹E‰$è–‹U¼ÇEÈÿÿÿÿ‰$è8¼ûÿU‰åìˆEè‰EÄE¤‰$‰]ô‰uø‰}üÇE¼°´KÇEÀ\ÌKÇEÈcˆI‰eÌèU¸ûÿ‹UEçÇD$‰$ÇE¨ÿÿÿÿ‰T$èÄ3€}çth‹MÇEà‹‹PôÊ‹‚„…À„†‹u ‹‹Zx‰T$‰t$uà‰t$ÇD$ ÇD$ÿÿ‰\$ÇD$ÿÿ‰$‹A0ÇE¨ÿЋEà…ÀuE¤‰$è[¸ûÿ‹E‹]ô‹uø‹}ü‰ì]ËM‹‹RôÊ B‰$ÇE¨ÿÿÿÿ‰D$è œëÃÇE¨èí¿ƒÅ‹E¨‹M¬‹U°ƒø‰M t ƒøtf…Àt  ÇE¨èâ!‹E ÇE¨ÿÿÿÿ‰$èàºûÿƒêt[‹M ‰ $èP‹U¹‹‹@ôÐP‹@ÇE¨èÿ™ÇE¨ÿÿÿÿè“!é1ÿÿÿÇE¨è‚!‹U ÇE¨ÿÿÿÿ‰$耺ûÿ‹E ‰$èõ‹U¹‹‹@ôÐP‹@ÇE¨褙è¯)U‰åìˆEè‰EÄE¤‰$‰]ô‰uø‰}üÇE¼°´KÇEÀÌËKÇEÈSŠI‰eÌèe¶ûÿ‹UEçÇD$‰$ÇE¨ÿÿÿÿ‰T$èÔ1€}çth‹MÇEà‹‹PôÊ‹‚„…À„†‹u ‹‹Zx‰T$‰t$uà‰t$ÇD$ ÇD$ÿÿ‰\$ÇD$ÿÿ‰$‹AÇE¨ÿЋEà…ÀuE¤‰$èk¶ûÿ‹E‹]ô‹uø‹}ü‰ì]ËM‹‹RôÊ B‰$ÇE¨ÿÿÿÿ‰D$èšëÃÇE¨èý½ƒÅ‹E¨‹M¬‹U°ƒø‰M t ƒøtf…Àt  ÇE¨èò‹E ÇE¨ÿÿÿÿ‰$èð¸ûÿƒêt[‹M ‰ $è`‹U¹‹‹@ôÐP‹@ÇE¨è˜ÇE¨ÿÿÿÿè£é1ÿÿÿÇE¨è’‹U ÇE¨ÿÿÿÿ‰$è¸ûÿ‹E ‰$è‹U¹‹‹@ôÐP‹@ÇE¨è´—è¿'U‰åìˆEè‰EÄE¤‰$‰]ô‰uø‰}üÇE¼°´KÇEÀ,ÌKÇEÈCŒI‰eÌèu´ûÿ‹UEçÇD$‰$ÇE¨ÿÿÿÿ‰T$èä/€}çth‹MÇEà‹‹PôÊ‹‚„…À„†‹u ‹‹Zx‰T$‰t$uà‰t$ÇD$ ÇD$ÿÿ‰\$ÇD$ÿÿ‰$‹A(ÇE¨ÿЋEà…ÀuE¤‰$è{´ûÿ‹E‹]ô‹uø‹}ü‰ì]ËM‹‹RôÊ B‰$ÇE¨ÿÿÿÿ‰D$è+˜ëÃÇE¨è ¼ƒÅ‹E¨‹M¬‹U°ƒø‰M t ƒøtf…Àt  ÇE¨è‹E ÇE¨ÿÿÿÿ‰$è·ûÿƒêt[‹M ‰ $èp‹U¹‹‹@ôÐP‹@ÇE¨è–ÇE¨ÿÿÿÿè³é1ÿÿÿÇE¨è¢‹U ÇE¨ÿÿÿÿ‰$è ¶ûÿ‹E ‰$è‹U¹‹‹@ôÐP‹@ÇE¨èÄ•èÏ%U‰åìˆEè‰EÄE¤‰$‰]ô‰uø‰}üÇE¼°´KÇEÀDÌKÇEÈ3ŽI‰eÌè…²ûÿ‹UEçÇD$‰$ÇE¨ÿÿÿÿ‰T$èô-€}çth‹MÇEà‹‹PôÊ‹‚„…À„†‹u ‹‹Zx‰T$‰t$uà‰t$ÇD$ ÇD$ÿÿ‰\$ÇD$ÿÿ‰$‹A,ÇE¨ÿЋEà…ÀuE¤‰$苲ûÿ‹E‹]ô‹uø‹}ü‰ì]ËM‹‹RôÊ B‰$ÇE¨ÿÿÿÿ‰D$è;–ëÃÇE¨èºƒÅ‹E¨‹M¬‹U°ƒø‰M t ƒøtf…Àt  ÇE¨è‹E ÇE¨ÿÿÿÿ‰$èµûÿƒêt[‹M ‰ $耋U¹‹‹@ôÐP‹@ÇE¨è/”ÇE¨ÿÿÿÿèÃé1ÿÿÿÇE¨è²‹U ÇE¨ÿÿÿÿ‰$è°´ûÿ‹E ‰$è%‹U¹‹‹@ôÐP‹@ÇE¨èÔ“èß#U‰åìˆEè‰EÄE¤‰$‰]ô‰uø‰}üÇE¼°´KÇEÀÌKÇEÈ#I‰eÌè•°ûÿ‹UEçÇD$‰$ÇE¨ÿÿÿÿ‰T$è,€}çth‹MÇEà‹‹PôÊ‹‚„…À„†‹u ‹‹Zx‰T$‰t$uà‰t$ÇD$ ÇD$ÿÿ‰\$ÇD$ÿÿ‰$‹A$ÇE¨ÿЋEà…ÀuE¤‰$è›°ûÿ‹E‹]ô‹uø‹}ü‰ì]ËM‹‹RôÊ B‰$ÇE¨ÿÿÿÿ‰D$èK”ëÃÇE¨è-¸ƒÅ‹E¨‹M¬‹U°ƒø‰M t ƒøtf…Àt  ÇE¨è"‹E ÇE¨ÿÿÿÿ‰$è ³ûÿƒêt[‹M ‰ $è‹U¹‹‹@ôÐP‹@ÇE¨è?’ÇE¨ÿÿÿÿèÓé1ÿÿÿÇE¨è‹U ÇE¨ÿÿÿÿ‰$èÀ²ûÿ‹E ‰$è5‹U¹‹‹@ôÐP‹@ÇE¨èä‘èï!U‰åìˆEè‰EÄE¤‰$‰]ô‰uø‰}üÇE¼°´KÇEÀ„ËKÇEÈ’I‰eÌ襮ûÿ‹UEçÇD$‰$ÇE¨ÿÿÿÿ‰T$è*€}çth‹MÇEà‹‹PôÊ‹‚„…À„†‹u ‹‹Zx‰T$‰t$uà‰t$ÇD$ ÇD$ÿÿ‰\$ÇD$ÿÿ‰$‹AÇE¨ÿЋEà…ÀuE¤‰$è«®ûÿ‹E‹]ô‹uø‹}ü‰ì]ËM‹‹RôÊ B‰$ÇE¨ÿÿÿÿ‰D$è[’ëÃÇE¨è=¶ƒÅ‹E¨‹M¬‹U°ƒø‰M t ƒøtf…Àt  ÇE¨è2‹E ÇE¨ÿÿÿÿ‰$è0±ûÿƒêt[‹M ‰ $è ‹U¹‹‹@ôÐP‹@ÇE¨èOÇE¨ÿÿÿÿèãé1ÿÿÿÇE¨èÒ‹U ÇE¨ÿÿÿÿ‰$èаûÿ‹E ‰$èE‹U¹‹‹@ôÐP‹@ÇE¨èôèÿU‰åìˆEè‰EÄE¤‰$‰]ô‰uø‰}üÇE¼°´KÇEÀœËKÇEÈ”I‰eÌ赬ûÿ‹UEçÇD$‰$ÇE¨ÿÿÿÿ‰T$è$(€}çth‹MÇEà‹‹PôÊ‹‚„…À„†‹u ‹‹Zx‰T$‰t$uà‰t$ÇD$ ÇD$ÿÿ‰\$ÇD$ÿÿ‰$‹A ÇE¨ÿЋEà…ÀuE¤‰$軬ûÿ‹E‹]ô‹uø‹}ü‰ì]ËM‹‹RôÊ B‰$ÇE¨ÿÿÿÿ‰D$èkëÃÇE¨èM´ƒÅ‹E¨‹M¬‹U°ƒø‰M t ƒøtf…Àt  ÇE¨èB‹E ÇE¨ÿÿÿÿ‰$è@¯ûÿƒêt[‹M ‰ $è°‹U¹‹‹@ôÐP‹@ÇE¨è_ŽÇE¨ÿÿÿÿèóé1ÿÿÿÇE¨èâ‹U ÇE¨ÿÿÿÿ‰$èà®ûÿ‹E ‰$èU‹U¹‹‹@ôÐP‹@ÇE¨èŽèU‰åìˆEè‰EÄE¤‰$‰]ô‰uø‰}üÇE¼°´KÇEÀ´ËKÇEÈó•I‰eÌèŪûÿ‹UEçÇD$‰$ÇE¨ÿÿÿÿ‰T$è4&€}çth‹MÇEà‹‹PôÊ‹‚„…À„†‹u ‹‹Zx‰T$‰t$uà‰t$ÇD$ ÇD$ÿÿ‰\$ÇD$ÿÿ‰$‹AÇE¨ÿЋEà…ÀuE¤‰$è˪ûÿ‹E‹]ô‹uø‹}ü‰ì]ËM‹‹RôÊ B‰$ÇE¨ÿÿÿÿ‰D$è{ŽëÃÇE¨è]²ƒÅ‹E¨‹M¬‹U°ƒø‰M t ƒøtf…Àt  ÇE¨èR‹E ÇE¨ÿÿÿÿ‰$èP­ûÿƒêt[‹M ‰ $èÀ‹U¹‹‹@ôÐP‹@ÇE¨èoŒÇE¨ÿÿÿÿèé1ÿÿÿÇE¨èò‹U ÇE¨ÿÿÿÿ‰$èð¬ûÿ‹E ‰$èe‹U¹‹‹@ôÐP‹@ÇE¨èŒèU‰åìˆEè‰EÄE¤‰$‰]ô‰uø‰}üÇE¼°´KÇEÀlËKÇEÈã—I‰eÌèÕ¨ûÿ‹UEçÇD$‰$ÇE¨ÿÿÿÿ‰T$èD$€}çth‹MÇEà‹‹PôÊ‹‚„…À„†‹u ‹‹Zx‰T$‰t$uà‰t$ÇD$ ÇD$ÿÿ‰\$ÇD$ÿÿ‰$‹AÇE¨ÿЋEà…ÀuE¤‰$èÛ¨ûÿ‹E‹]ô‹uø‹}ü‰ì]ËM‹‹RôÊ B‰$ÇE¨ÿÿÿÿ‰D$苌ëÃÇE¨èm°ƒÅ‹E¨‹M¬‹U°ƒø‰M t ƒøtf…Àt  ÇE¨èb‹E ÇE¨ÿÿÿÿ‰$è`«ûÿƒêt[‹M ‰ $èЋU¹‹‹@ôÐP‹@ÇE¨èŠÇE¨ÿÿÿÿèé1ÿÿÿÇE¨è‹U ÇE¨ÿÿÿÿ‰$è«ûÿ‹E ‰$èu‹U¹‹‹@ôÐP‹@ÇE¨è$Šè/U‰åìˆEè‰EÄE¤‰$‰]ô‰uø‰}üÇE¼°´KÇEÀäËKÇEÈÓ™I‰eÌèå¦ûÿ‹UEçÇD$‰$ÇE¨ÿÿÿÿ‰T$èT"€}çth‹MÇEà‹‹PôÊ‹‚„…À„†‹u ‹‹Zx‰T$‰t$uà‰t$ÇD$ ÇD$ÿÿ‰\$ÇD$ÿÿ‰$‹AÇE¨ÿЋEà…ÀuE¤‰$èë¦ûÿ‹E‹]ô‹uø‹}ü‰ì]ËM‹‹RôÊ B‰$ÇE¨ÿÿÿÿ‰D$蛊ëÃÇE¨è}®ƒÅ‹E¨‹M¬‹U°ƒø‰M t ƒøtf…Àt  ÇE¨èr‹E ÇE¨ÿÿÿÿ‰$èp©ûÿƒêt[‹M ‰ $èà ‹U¹‹‹@ôÐP‹@ÇE¨èˆÇE¨ÿÿÿÿè#é1ÿÿÿÇE¨è‹U ÇE¨ÿÿÿÿ‰$è©ûÿ‹E ‰$è… ‹U¹‹‹@ôÐP‹@ÇE¨è4ˆè?U‰åìˆEè‰EÄE¤‰$‰]ô‰uø‰}üÇE¼°´KÇEÀüËKÇEÈÛI‰eÌèõ¤ûÿ‹UEçÇD$‰$ÇE¨ÿÿÿÿ‰T$èd €}çth‹MÇEà‹‹PôÊ‹‚„…À„†‹u ‹‹Zx‰T$‰t$uà‰t$ÇD$ ÇD$ÿÿ‰\$ÇD$ÿÿ‰$‹A ÇE¨ÿЋEà…ÀuE¤‰$èû¤ûÿ‹E‹]ô‹uø‹}ü‰ì]ËM‹‹RôÊ B‰$ÇE¨ÿÿÿÿ‰D$諈ëÃÇE¨è¬ƒÅ‹E¨‹M¬‹U°ƒø‰M t ƒøtf…Àt  ÇE¨è‚‹E ÇE¨ÿÿÿÿ‰$耧ûÿƒêt[‹M ‰ $èð ‹U¹‹‹@ôÐP‹@ÇE¨蟆ÇE¨ÿÿÿÿè3é1ÿÿÿÇE¨è"‹U ÇE¨ÿÿÿÿ‰$è §ûÿ‹E ‰$è• ‹U¹‹‹@ôÐP‹@ÇE¨èD†èOU‰åSƒì‹]‹‹@ô‹D|…Àt3‹ÇD$ ‰$ÿR(‰$·À‰D$ ‹E‰D$‹E ‰D$è ƒÄ[]Ãèa«U‰åWVSƒìl·EUè‰UÄÇE¼°´Kf‰EžE¤‰$ÇEÀœÊKÇEÈäžI‰eÌè¶¢ûÿ‹MEçÇAÇD$‰L$‰$ÇE¨ÿÿÿÿè€}ç„*‹U‹‹@ô‹Dx‰Á‰E ‹@;A rcéI¶fƒøÿ„f9Ežfta‹M f‰ƒÁ‹E‰M ‹M ‰P‹Q;Q ƒ÷‹M ·ƒÂ‰Qfƒøÿ„‹M ‹A;A ƒë·‹U‹JQ;U|—fƒøÿ„­1À‹]…Û~‹U fÇ…É…‡ƒÈ‹M‹‹RôÊ B‰$ÇE¨ÿÿÿÿ‰D$è1†E¤‰$èF¢ûÿ‹EƒÄl[^_]Ãê„õ‹M ‰ $è§ ‹U¹‹‹@ôÐP‹@ÇE¨èV„ÇE¨ÿÿÿÿèê ‹E‹H1Àébÿÿÿ…Àt˜ésÿÿÿt&¸éKÿÿÿ‹U ‹‰$‹@(ÇE¨ÿÐéüþÿÿ‹U ‹‰$‹@$ÇE¨ÿÐéÿþÿÿƒÈÿé÷þÿÿƒÅ‹E¨‹M¬‹U°ƒø‰M tƒøt(…À„@ÿÿÿ ÇE¨è] ‹E ÇE¨ÿÿÿÿ‰$è[¤ûÿÇE¨è? ‹U ÇE¨ÿÿÿÿ‰$è=¤ûÿ‹E ‰$貋U¹‹‹@ôÐP‹@ÇE¨èaƒèlU‰åSƒì‹]‹‹@ô‹D|…Àt,‹ÇD$ ‰$ÿR(‰$·À‰D$‹E ‰D$èƒÄ[]Ã舨U‰åWVSƒìl·EUè‰UÄÇE¼°´Kf‰EšE¤‰$ÇEÀ„ÊKÇEÈ¿¡I‰eÌèÖŸûÿ‹MEçÇA‰$ÇD$‰L$ÇE¨ÿÿÿÿè>1À€}ç„®‹U‹‹@ô‹Dx‰Á‰Eœ‹@;A ƒK·f‰E fƒ} ÿ„ù·E f9Ešts‹U ‹B;Bƒ°·M f‰ƒÀ‰B‹Mœ‹E‹Qƒ@;Q ƒÇ‹Mœ·ƒÂ‰Qfƒøÿ„§‹Mœ‹A;A ƒ»·f‰E fƒ} ÿ„†·M f9Mšu1À‹U‹R…Òu:ƒÈ‹M‹‹RôÊ B‰$ÇE¨ÿÿÿÿ‰D$èGƒE¤‰$è\Ÿûÿ‹EƒÄl[^_]Ã…ÀtåëËE ‹M ‹·E ‰ $‰D$‹B4ÇE¨ÿÐfƒÀ…4ÿÿÿfƒ} ÿu„¸é|ÿÿÿ‹Uœ‹‰$‹@(ÇE¨ÿÐé,ÿÿÿ‹Uœ‹‰$‹@$ÇE¨ÿÐf‰E é/ÿÿÿ‹Uœ‹‰$‹@$ÇE¨ÿÐéŸþÿÿƒÅ‹E¨‹M¬‹U°ƒø‰M t ƒøth…Àt  ÇE¨è†‹E ÇE¨ÿÿÿÿ‰$è„¡ûÿƒêt]‹M ‰ $èô‹U¹‹‹@ôÐP‹@ÇE¨裀ÇE¨ÿÿÿÿè71Àé¬þÿÿÇE¨è$‹U ÇE¨ÿÿÿÿ‰$è"¡ûÿ‹E ‰$è—‹U¹‹‹@ôÐP‹@ÇE¨èF€èQU‰åƒìxEè‰EÄE¤‰$‰]ô‰uø‰}üÇE¼°´KÇEÀ´ÊKÇEÈë£I‰eÌèûÿ‹UEçÇBÇD$‰T$‰$ÇE¨ÿÿÿÿ耀}çt~‹U‹‹@ô‹Tx‹J;J ƒÇ·ƒÁ‰Jfƒøÿ„Ÿ‹UÇB‹U f‰ëpƒê„‹M ‰ $蹋U¹‹‹@ôÐP‹@ÇE¨èhÇE¨ÿÿÿÿèü‹M1À‹Q…ÒuOƒÈ‹M‹‹RôÊ B‰$ÇE¨ÿÿÿÿ‰D$è½€E¤‰$èÒœûÿ‹E‹]ô‹uø‹}ü‰ì]Ãf‹E‹P¸…Òt±…ÀtÐ뮋‰$‹@(ÇE¨ÿÐé,ÿÿÿƒÅ‹E¨‹M¬‹U°ƒø‰M tƒøt(…À„'ÿÿÿ ÇE¨èV‹E ÇE¨ÿÿÿÿ‰$èTŸûÿÇE¨è8‹U ÇE¨ÿÿÿÿ‰$è6Ÿûÿ‹E ‰$è«‹U¹‹‹@ôÐP‹@ÇE¨èZ~èeU‰åƒìxEè‰EÄE¤‰$‰]ô‰uø‰}üÇE¼°´KÇEÀÌÊKÇEÈø¥I‰eÌè(›ûÿ‹UEçÇB‰$ÇD$‰T$ÇE¨ÿÿÿÿè1À€}ç„™‹M‹‹@ô‹Dx‹P;P ƒÚ· ƒÂ‰Pf‰M fƒ} ÿ„¤‹EÇ@E¤‰$èO›ûÿ·E ‹]ô‹uø‹}ü‰ì]Ãê„ ‹M ‰ $誋U¹‹‹@ôÐP‹@ÇE¨èY}ÇE¨ÿÿÿÿèí1À‹U‹r…öu@ƒÈ‹M‹‹RôÊ B‰$ÇE¨ÿÿÿÿ‰D$è®~fÇE ÿÿéiÿÿÿv‹U¸‹r…ötÀ…Àu¿fÇE ÿÿéHÿÿÿ‹‰$‹B(ÇE¨ÿÐf‰E éÿÿÿƒÅ‹E¨‹M¬‹U°ƒø‰M tƒøt(…À„)ÿÿÿ ÇE¨èI‹E ÇE¨ÿÿÿÿ‰$èGûÿÇE¨è+‹U ÇE¨ÿÿÿÿ‰$è)ûÿ‹E ‰$èž‹U¹‹‹@ôÐP‹@ÇE¨èM|èX U‰åƒìxEè‰EÄE¤‰$‰]ô‰uø‰}üÇE¼°´KÇEÀTÊKÇEÈz§I‰eÌè™ûÿ‹UEçÇBÇD$‰T$‰$ÇE¨ÿÿÿÿ耀}çt>‹U‹‹@ô‹Dx‹P;P sY·f‰U fƒ} ÿt(E¤‰$è]™ûÿ·E ‹]ô‹uø‹}ü‰ì]ÃfÇE ÿÿëÜt&‹U‹Pô‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$èÿ|뵋‰$‹B$ÇE¨ÿÐf‰E ë—ƒÅ‹E¬‹U°‰E ‹E¨ƒøt ƒøtl…Àt  ÇE¨èË‹E ÇE¨ÿÿÿÿ‰$èÉ›ûÿƒêta‹E ‰$è9‹U¹‹‹@ôÐP‹@ÇE¨èèzÇE¨ÿÿÿÿè|fÇE ÿÿéÿÿÿÇE¨èe‹U ÇE¨ÿÿÿÿ‰$èc›ûÿ‹U ‰$èØÿ‹U¹‹‹@ôÐP‹@ÇE¨è‡zè’ U‰åƒìxEè‰EÄE¤‰$‰]ô‰uø‰}üÇE¼°´KÇEÀ<ÊKÇEÈ,©I‰eÌèX—ûÿ‹UEçÇBÇD$‰T$‰$ÇE¨ÿÿÿÿèÀ€}çuE¤‰$è¿—ûÿ‹E‹]ô‹uø‹}ü‰ì]ËM‹‹@ô‹Dx‹M‹‰L$‹M ‰$‰L$‹B ÇE¨ÿЋU9E‰Bt¯‹M‹‹PôÊ‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$è6{늃Å‹E¨‹U¬ƒø‰U ‹U°t ƒøtf…Àt  ÇE¨è‹M ÇE¨ÿÿÿÿ‰ $èšûÿƒêt[‹M ‰ $è‡þ‹U¹‹‹@ôÐP‹@ÇE¨è6yÇE¨ÿÿÿÿèÊé ÿÿÿÇE¨è¹‹E ÇE¨ÿÿÿÿ‰$è·™ûÿ‹M ‰ $è,þ‹U¹‹‹@ôÐP‹@ÇE¨èÛxèæU‰åƒìxEè‰EÄE¤‰$‰]ô‰uø‰}üÇE¼°´KÇEÀÜÉKÇEÈܪI‰eÌ訕ûÿ‹UEçÇD$‰$ÇE¨ÿÿÿÿ‰T$è€}çt1‹U‹‹@ô‹Dx…Àt!‹‰$‹BÇE¨ÿЃøÿt-ÇE ë fÇE ÿÿÿÿE¤‰$èÞ•ûÿ‹E ‹]ô‹uø‹}ü‰ì]ËU‹Pô‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$èyÇE ÿÿÿÿ뻃Å‹E¬‹U°‰Eœ‹E¨ƒøt ƒøtm…Àt  ÇE¨èiÿ‹EœÇE¨ÿÿÿÿ‰$èg˜ûÿƒêtb‹Eœ‰$è×ü‹U¹‹‹@ôÐP‹@ÇE¨è†wÇE¨ÿÿÿÿèÿÇE ÿÿÿÿé5ÿÿÿÇE¨èÿ‹UœÇE¨ÿÿÿÿ‰$è˜ûÿ‹Uœ‰$èuü‹U¹‹‹@ôÐP‹@ÇE¨è$wè/U‰å쨋E ‰]ô‰uø‰}ü‰E¸‹EÇEœ°´KÇE ¤ÉKÇE¨Ï¬I‰E¼‹E‰e¬‰EÀ‹E‰EÄEè‰E¤E„‰$èÍ“ûÿ‹U‹‹@ôÐö@tE„‰$èR”ûÿ‹E‹]ô‹uø‹}ü‰ì]Ãf‹U¸MØ‹@x‰UÈ‹U¼‹]ȉUÌ‹UÀ‰UЋUĉUÔ‹‰\$‹]ÌÇD$‰D$‰ $‰\$ ‹]Љ\$‹]Ô‰\$‹BÇEˆÿЋE؃ì#E܃øÿ…zÿÿÿ‹U‹Pô‹B‰$ÇEˆÿÿÿÿƒÈ‰D$è–wéTÿÿÿƒÅ‹EŒ‹U‰E€‹Eˆƒøt ƒøtf…Àt  ÇEˆèvý‹E€ÇEˆÿÿÿÿ‰$èt–ûÿƒêt[‹E€‰$èäú‹U¹‹‹@ôÐP‹@ÇEˆè“uÇEˆÿÿÿÿè'ýéÕþÿÿÇEˆèý‹U€ÇEˆÿÿÿÿ‰$è–ûÿ‹U€‰$è‰ú‹U¹‹‹@ôÐP‹@ÇEˆè8uèCU‰å숋E ‹U‰]ô‰uø‰E˜E¤‰UœUè‰$‰}üÇE¼°´KÇEÀ¼ÉK‰UÄÇEÈ€®I‰eÌèù‘ûÿ‹]‹‹@ôØö@tE¤‰$è~’ûÿ‹E‹]ô‹uø‹}ü‰ì]Ë@xMØ‹]‹uœ‹‰\$‹]˜ÇD$‰t$ ‰D$‰\$‰ $‹BÇE¨ÿЋE؃ì#E܃øÿuŸ‹]‹‹PôÚ‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$èåuéwÿÿÿƒÅ‹E¨‹U¬ƒø‰U˜‹U°t ƒøtf…Àt  ÇE¨èÅû‹u˜ÇE¨ÿÿÿÿ‰4$èÔûÿƒêt[‹E˜‰$è3ù‹U¹‹‹@ôÐP‹@ÇE¨èâsÇE¨ÿÿÿÿèvûéøþÿÿÇE¨èeû‹E˜ÇE¨ÿÿÿÿ‰$èc”ûÿ‹]˜‰$èØø‹u¹‹‹@ôðP‹@ÇE¨è‡sè’U‰åìˆEè‰EÄE¤‰$‰]ô‰uø‰}üÇE¼°´KÇEÀŒÉKÇEÈ$°I‰eÌèUûÿ‹UÇÿÿÿÿÇBÇBÿÿÿÿ‹U ‹‹@ôÐö@tE¤‰$èÃûÿ‹E‹]ô‹uø‹}ü‰ì]‹@xMØ‹ÇD$ÇD$ÇD$ÇD$ ‰D$‰ $‹BÇE¨ÿЋUƒì‹E؉‹E܉B‹Eà‰B뎃Å‹E¬‹U°‰E ‹E¨ƒøt ƒøtf…Àt  ÇE¨è!ú‹E ÇE¨ÿÿÿÿ‰$è“ûÿƒêt[‹E ‰$è÷‹U ¹‹‹@ôÐP‹@ÇE¨è>rÇE¨ÿÿÿÿèÒùéÿÿÿÇE¨èÁù‹U ÇE¨ÿÿÿÿ‰$è¿’ûÿ‹U ‰$è4÷‹U ¹‹‹@ôÐP‹@ÇE¨èãqèîU‰åƒìxEè‰EÄE¤‰$‰]ô‰uø‰}üÇE¼°´KÇEÀôÉKÇEÈæ±I‰eÌ討ûÿ‹UEçÇBÇD$‰T$‰$ÇE¨ÿÿÿÿè €}çt'‹U‹Pô‹Bx…Àt;‹P9PsNJþ‰H·BþfƒøÿtE¤‰$èèŽûÿ‹E‹]ô‹uø‹}ü‰ì]ËU‹Pô‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$è—rë‹ÇD$ÿÿ‰$‹B,ÇE¨ÿÐ롃Å‹E¬‹U°‰E ‹E¨ƒøt ƒøtf…Àt  ÇE¨è_ø‹E ÇE¨ÿÿÿÿ‰$è]‘ûÿƒêt[‹E ‰$èÍõ‹U¹‹‹@ôÐP‹@ÇE¨è|pÇE¨ÿÿÿÿèøé(ÿÿÿÇE¨èÿ÷‹U ÇE¨ÿÿÿÿ‰$èýûÿ‹U ‰$èrõ‹U¹‹‹@ôÐP‹@ÇE¨è!pè,U‰åWVSEèƒì|‰EÄE¤ÇE¼°´KÇEÀTÕKÇEÈ´I‰ẻ$èîŒûÿƒ} „T‹MEçÇAÇD$‰L$‰$ÇE¨ÿÿÿÿèL‹U …Òލ€}焞‹u‹‰u”‹@ô‹Dx‰Â‰Eœ‹@;B ƒ”·‹MÆE›‹Q9U ~IfƒøÿtC‹Eœ‹u ‹X ‹H)Ö‰Ø)ÈÑø9ÆNƃøŽ} A‹uœ‹E9ˉN‰P†ç9U ··} ÿÿÿt3€}›t ‹MÇAÿÿÿfƒøÿ„“E¤‰$螌ûÿ‹EƒÄ|[^_]ÃvfƒøÿtÇ‹UÆE›ÇB€º€éXÿÿÿf‹uƒÂ9ˉV†ˆ‹Uœ·ƒÁ‰Jfƒøÿ„®‹uœ‹F;F sQ·‹M‹Qéÿÿÿ‹UÇE¨ÿÿÿÿ‰$èN‰Eémÿÿÿ‹M‹U”‹Pô‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$èÒoéDÿÿÿ‹Uœ‹‰$‹@$ÇE¨ÿÐ뜋Mœ‹‰ $‹@(ÇE¨ÿÐékÿÿÿƒÅ‹E¨‹U¬ƒø‰U ‹U°„‚ƒøt_…Àt# ƒÈÿéXÿÿÿ‹uœ‹‰4$‹@$ÇE¨ÿÐéVþÿÿƒêt{‹E ‰$èêò‹U‹‹@ôE”‹PƒH€âuMÇE¨ÿÿÿÿè7õé™þÿÿÇE¨è&õ‹E ÇE¨ÿÿÿÿ‰$è$ŽûÿÇE¨èõ‹u ÇE¨ÿÿÿÿ‰4$èŽûÿÇE¨èZý‹M ‰ $èoò‹u‹‹@ôE”‹PƒH€ât ÇE¨è,ýÇE¨è ýU‰åWVSƒì|·EUèÇE¼°´KÇEÀŒÅKf‰E–E¤‰UÄÇEÈϸI‰ẻ$èæ‰ûÿfƒ}–ÿ„΋UEçÇBÇD$‰T$‰$ÇE¨ÿÿÿÿèC‹u …öŽ€}ç„‹M‹‰Mˆ‹@ô‹Dx‰Â‰Eœ‹@;B ƒT·‹MÆE‹Q·M–‰M;U šfƒøÿ„f9E–„†‹Eœ‹] ‹p ‹H)Ó‰ð)ÈÑø9ÃNÃø‰E ŽÌ‹E ‹U‰ $‰E˜‰D$‰T$èϧûÿ…À„ï‹Mœ‹Q)ÐÑø‰E ‰E˜‹M˜J‹Uœ‹M‰B‹U Q‰Q‹Mœ;A ƒ=;U ·Œfÿÿÿ} ÿÿÿt>€}t ‹MÇAÿÿÿfƒøÿ„åf9E–„®E¤‰$è/‰ûÿ‹EƒÄ|[^_]Ãt&fƒøÿt¼f9E–t¶‹UÆEÇB€º€éòþÿÿ‹EƒÂ9ΉP†Î‹Uœ·ƒÁ‰Jfƒøÿ„Ñ‹Uœ‹B;B ƒÊ·‹M‹Qé®þÿÿ‹Mœ‹Qéÿÿÿ‹M ‹EÇE¨ÿÿÿÿ‰L$‰$èÔúÿÿ‰EéRÿÿÿ‹U‹B=ÿÿÿtƒÀ‰B‹Mœ‹A;A ƒ‡ƒÀ‰Aé%ÿÿÿ‹M‹Uˆ‹Pô‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$èléüþÿÿ‹Uœ‹‰$‹@$ÇE¨ÿÐéZÿÿÿ‹Mœ‹‰ $‹@(ÇE¨ÿÐé%ÿÿÿƒÈÿé9ÿÿÿ‹Mœ‹‰ $‹@$ÇE¨ÿÐé ÿÿÿ‹Uœ‹‰$‹@(ÇE¨ÿÐéþÿÿ‹Uœ‹‰$‹@$ÇE¨ÿÐé–ýÿÿƒÅ‹E¨‹M¬‹U°ƒø‰M t ƒøt\…Àt  ÇE¨èvñ‹E ÇE¨ÿÿÿÿ‰$ètŠûÿƒêt]‹M ‰ $èäî‹U‹‹@ôEˆ‹PƒH€âu/ÇE¨ÿÿÿÿè1ñéþÿÿÇE¨è ñ‹U ÇE¨ÿÿÿÿ‰$èŠûÿÇE¨èrù‹E ‰$è‡î‹U‹‹@ôEˆ‹PƒH€ât ÇE¨èDùÇE¨è8ùU‰åƒìxEè‰EÄE¤‰$‰]ô‰uø‰}üÇE¼°´KÇEÀlÊKÇEÈ–ºI‰eÌèø…ûÿ‹UEçÇBÇD$‰T$‰$ÇE¨ÿÿÿÿè`€}çt-‹M‹‹@ô‹Tx‹J;J sY·ƒÁ‰Jfƒøÿt'‹EÇ@E¤‰$è2†ûÿ‹E‹]ô‹uø‹}ü‰ì]Ãf‹U‹Pô‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$èßiëÀ‹‰$‹@(ÇE¨ÿÐëƒÅ‹E¨‹U¬ƒø‰U ‹U°t ƒøtf…Àt  ÇE¨è¯ï‹M ÇE¨ÿÿÿÿ‰ $è­ˆûÿƒêt[‹M ‰ $èí‹U¹‹‹@ôÐP‹@ÇE¨èÌgÇE¨ÿÿÿÿè`ïé.ÿÿÿÇE¨èOï‹E ÇE¨ÿÿÿÿ‰$èMˆûÿ‹M ‰ $èÂì‹U¹‹‹@ôÐP‹@ÇE¨èqgè|÷U‰åWVSƒì,‹E‹} ‰Eà¶E‹ˆEß‹Eà‹qôÇEäÆ7‹X‰Â…ÛuI‹Xp…Ût‰$芋‹qô7‰Â€}ßÇEätC‹Z…Ûu‹}ä…ÿu‹EàÆƒÄ,[^_]ô&‹Eä‰UƒÈ ؉E ƒÄ,[^_]éVh¶öD7 t:‹Xx‹C;C ƒÏ·0‹R|…Ò„µfƒþÿu¶‹QôÇEäúé|ÿÿÿ‰Âéuÿÿÿ‰}ä‰×v‹·Ö‰T$ÇD$ ‰<$ÿP„Àt5‹S;S sI·ƒÂ‰Sfƒøÿt‹C;C s<·0fƒþÿu½‹}ä‹ë–¶fƒþÿ‹}ät)‹‹PôÇEäúéÿÿÿ‹‰$ÿP(ë¶‹‰$ÿP$‰Æë»‹éWÿÿÿ´&è[‹‹‰$ÿP$‹‹Qô‰ÆúéÿÿÿU‰åWVSƒì,‹E‹} ‰Eà¶E‹ˆEß‹Eà‹qôÇEäÆ7‹X‰Â…ÛuI‹Xp…Ût‰$èê‹‹qô7‰Â€}ßÇEätC‹Z…Ûu‹uä…öu‹EàÆƒÄ,[^_]ô&‹Eä‰UƒÈ ؉E ƒÄ,[^_]é¶f¶öD7 t:‹Xx‹C;C ƒÏ·0‹R|…Ò„µfƒþÿu¶‹QôÇEäúé|ÿÿÿ‰Âéuÿÿÿ‰}ä‰×v‹·Ö‰T$ÇD$ ‰<$ÿP„Àt5‹S;S sI·ƒÂ‰Sfƒøÿt‹C;C s<·0fƒþÿu½‹}ä‹ë–¶fƒþÿ‹}ät)‹‹PôÇEäúéÿÿÿ‹‰$ÿP(ë¶‹‰$ÿP$‰Æë»‹éWÿÿÿ´&軉‹‰$ÿP$‹‹Qô‰ÆúéÿÿÿU‰åSƒì‹]‹‹@ô‹D|…Àt3‹ÇD$ ‰$ÿR(‰$·À‰D$ ‹E‰D$‹E ‰D$è ƒÄ[]ÃèQ‰U‰åWVSƒì|·EUè‰UÄÇE¼°´Kf‰E’E¤‰$ÇEÀtÅKÇEÈ ÁI‰eÌ覀ûÿ‹MEçÇAÇD$‰L$‰$ÇE¨ÿÿÿÿèüÿÿ€}ç„å‹U‹‹@ô‹Dx‰Á‰Eœ‹@;A ƒ:·‹]·U’‹{‰U”´&O;M¶fƒøÿ„+f9E’„³‹Uœ÷×}‹r ‹R‰ó)ÓÑû9ßN߃û‰] ޝ‹] ‹E”‰$‰]˜‰\$‰D$袞ûÿ…À„,‹]œ‹S)ÐÑø‰E ‰E˜‹E˜‰T$‹U ‰D$‰$è4žûÿ‹]œ‹U‹M˜‹} z E C;C ‰C‰zƒO·;MŒJÿÿÿfƒøÿtyf9E’ºus‹E‹Uœ‰H‹B;B ƒµƒÀ‰Ï‰B1ÒëR‹] f‰‹EƒÃ9Ö‰] ‰H†Ù‹Mœ·ƒÂ‰Qfƒøÿ„»‹Uœ‹B;B ƒ“·‹]‹{é¿þÿÿº‹]…Û~‹E fÇ…ÿugƒÊ‹M‹‹@ôÈ P‰$ÇE¨ÿÿÿÿ‰T$èDcE¤‰$èYûÿ‹EƒÄ|[^_]ËMœ‹QéÙþÿÿ‹Mœ‹‰ $‹@(ÇE¨ÿЋ]1Ò‹{ë‹t&…Òt¸ë–‹Mœ‹‰ $‹@$ÇE¨ÿÐéWÿÿÿƒÈÿéOÿÿÿ‹]œ‹‰$‹@(ÇE¨ÿÐéÿÿÿƒÅ‹E¨‹U¬ƒø‰U ‹U°„…ƒøtb…Àt ‹Mœ‹‰ $‹@$ÇE¨ÿÐé°ýÿÿƒê„‚‹E ‰$èæ‹U‹‹@ôЋPƒH€âuUÇE¨ÿÿÿÿè^è‹M1Ò‹yéÇþÿÿÇE¨èEè‹E ÇE¨ÿÿÿÿ‰$èCûÿÇE¨è'è‹] ÇE¨ÿÿÿÿ‰$è%ûÿÇE¨èyð‹M ‰ $èŽå‹]‹‹@ôØ‹PƒH€ât ÇE¨èLðÇE¨è@ðU‰åƒìx‹E Uè‰Uĉ]ô‰uø‰E f‰EžE¤‰$‰}üÇE¼°´KÇEÀ ÊKÇEÈŸÃI‰eÌèþ|ûÿ‹MEçÇAÇD$‰L$‰$ÇE¨ÿÿÿÿèføÿÿ€}çt@‹U‹Pô‹Bx…ÀtY‹P9Ps ·Mžf;Jþtb‹·Mž‰$‰L$‹B,ÇE¨ÿÐfƒøÿt E¤‰$è%}ûÿ‹E‹]ô‹uø‹}ü‰ì]Ãt&‹U‹Pô‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$èÏ`뽃ê‰P·E ë«ƒÅ‹E¨‹U¬ƒø‰U ‹U°t ƒøtf…Àt  ÇE¨è¦æ‹M ÇE¨ÿÿÿÿ‰ $è¤ûÿƒêt[‹M ‰ $èä‹U¹‹‹@ôÐP‹@ÇE¨èÃ^ÇE¨ÿÿÿÿèWæé2ÿÿÿÇE¨èFæ‹E ÇE¨ÿÿÿÿ‰$èDûÿ‹M ‰ $è¹ã‹U¹‹‹@ôÐP‹@ÇE¨èh^èsîU‰åWVSEèƒìl‰EÄE¤‰$ÇE¼°´KÇEÀ$ÊKÇEÈÅI‰eÌè>{ûÿ‹UEçÇBÇD$‰T$‰$ÇE¨ÿÿÿÿè¦öÿÿ€}çtQ‹M‹‹@ô‹Tx‹B +BÑø…ÀtX…À~i‹M;EOE‹‹Rô‹Tx‹ ‰D$‹E ‰$‰D$‹A ÇE¨ÿЋU‰B‹ME¤‹I‰$‰M èK{ûÿ‹E ƒÄl[^_]ˉ$‹@ÇE¨ÿÐ…À—ƒøÿuÇ‹M‹‹PôÊ‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$èã^뢃Å‹E¨‹M¬‹U°ƒø‰Mœt ƒøtf…Àt  ÇE¨èÆä‹EœÇE¨ÿÿÿÿ‰$èÄ}ûÿƒêt[‹Mœ‰ $è4â‹U¹‹‹@ôÐP‹@ÇE¨èã\ÇE¨ÿÿÿÿèwäé#ÿÿÿÇE¨èfä‹UœÇE¨ÿÿÿÿ‰$èd}ûÿ‹Eœ‰$èÙá‹U¹‹‹@ôÐP‹@ÇE¨èˆ\è“ìU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà„ÉKÇEèÇI‰eìèayûÿ‹EƒÀ‰EÀ‰$èÐ<‹EÀÇ@pfÇ@tÆ@vÇ@xÇ@|Ç€€Ç€„‹EÇŒaMÇ@ aMÇ@‹E ÇEȉD$‹EÀ‰$è ]Eĉ$èyûÿÉÃÅ‹ẺE¼‹EÇ@`mM‹EÀÇEȉ$èØ<‹E¼ÇEÈÿÿÿÿ‰$èF|ûÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÔÉKÇEèôÇI‰eìèqxûÿ‹EƒÀ‰EÀ‰$èà;‹EÀÇ@pfÇ@tÆ@vÇ@xÇ@|Ç€€Ç€„‹EÇŒaMÇ@ aMÇ@‹EÀÇD$ÇEȉ$è\Eĉ$èŽxûÿÉÃÅ‹ẺE¼‹EÇ@`mM‹EÀÇEȉ$èç;‹E¼ÇEÈÿÿÿÿ‰$èU{ûÿU‰åSƒì‹M ‹E‹‹I‹Zô‰‰ ‹MÇ@‰M Bô‰EƒÄ[]é™[U‰åSƒì‹M ‹E‹‹I‹Zô‰‰ Ç@ÇE Bô‰EƒÄ[]éX[U‰åSƒì‹]ÇŒaMCÇCÇC`mM‰$è';‰]ƒÄ[]éªÙU‰åƒì‹EPÇŒaMÇ@Ç@`mM‰UÉéç:U‰å‹U ‹E‹ ‹R‰‹Iô‰Ç@]ÃU‰åƒì‹E ÉÿàU‰åSƒì‹]‹‹@ô‰$ÿU ‰ØƒÄ[]ÃU‰åSƒì‹]‹‹@ô‰$ÿU ‰ØƒÄ[]ÃU‰åƒìxEè‰EÄE¤‰$‰]ô‰uø‰}üÇE¼°´KÇEÀäÊKÇEÈšÊI‰eÌèvûÿ‹UEçÇD$‰$ÇE¨ÿÿÿÿ‰T$è‡ñÿÿ€}ç„‹E …À„‰‹E‹M‹U ‰EœEæ‰D$‰T$‹‹@ô‹DxÇE¨‰$蓉ƒøÀƒà€}ætYƒÈ‹M‹‹RôUœ B‰$ÇE¨ÿÿÿÿ‰D$èZE¤‰$èvûÿ‹E‹]ô‹uø‹}ü‰ì]ö‹} …ÿuØ‹M¸‰Mœëª…Àu¦ëŃÅ‹E¨‹M¬‹U°ƒø‰M t ƒøtf…Àt  ÇE¨è«ß‹E ÇE¨ÿÿÿÿ‰$è©xûÿƒêt[‹M ‰ $èÝ‹U¹‹‹@ôÐP‹@ÇE¨èÈWÇE¨ÿÿÿÿè\ßéFÿÿÿÇE¨èKß‹U ÇE¨ÿÿÿÿ‰$èIxûÿ‹E ‰$è¾Ü‹U¹‹‹@ôÐP‹@ÇE¨èmWèxçU‰åƒìÉéÔ»ÿÿU‰åƒìÉé´½ÿÿU‰åƒìÉ锿ÿÿU‰åƒìÉétÁÿÿU‰åƒìÉéTÃÿÿU‰åWVSEèƒì|‰EÄE¤‰$ÇE¼°´KÇEÀüÊKÇEÈÎÌI‰eÌèîsûÿ‹UEçÇD$‰$ÇE¨ÿÿÿÿ‰T$è]ïÿÿ€}çtp‹MÇEà‹‹PôÊ‹‚„…À„Š‹uÜ‹Zx‰t$uà‰t$‰T$ÇD$ ÇD$ÿÿ‰\$ÇD$ÿÿ‰$‹A ÇE¨ÿЋUÜ‹E ‰‹Eà…ÀuE¤‰$èìsûÿ‹EƒÄ|[^_]ËM‹‹RôÊ B‰$ÇE¨ÿÿÿÿ‰D$è WëÇÇE¨è‚{ƒÅ‹E¨‹M¬‹U°ƒø‰M t ƒøtf…Àt  ÇE¨èwÝ‹E ÇE¨ÿÿÿÿ‰$èuvûÿƒêt[‹M ‰ $èåÚ‹U¹‹‹@ôÐP‹@ÇE¨è”UÇE¨ÿÿÿÿè(Ýé5ÿÿÿÇE¨èÝ‹U ÇE¨ÿÿÿÿ‰$èvûÿ‹E ‰$èŠÚ‹U¹‹‹@ôÐP‹@ÇE¨è9UèDåU‰åƒìÉéTÃÿÿU‰åƒìÉé4ÅÿÿU‰åƒìÉéÇÿÿU‰åWVSEèƒì|‰EÄE¤‰$ÇE¼°´KÇEÀËKÇEÈÏI‰eÌèÞqûÿ‹UEçÇD$‰$ÇE¨ÿÿÿÿ‰T$èMíÿÿ€}焜‹MÇEà‹‹PôÊ‹‚„…À„½‹uÜ‹Zx‰t$uà‰t$‰T$ÇD$ ÇD$ÿÿ‰\$ÇD$ÿÿ‰$‹A ÇE¨ÿЋEÜ=€ÿÿ}H‹Eà‹U ƒÈ‰EàfÇ€‹M‹‹RôÊ B‰$ÇE¨ÿÿÿÿ‰D$è—UE¤‰$è¬qûÿ‹EƒÄ|[^_]Ã=ÿ‹U f‰‹Eà…ÀtÕ볋Eà‹M ƒÈ‰EàfÇÿë ÇE¨è;yƒÅ‹E¨‹M¬‹U°ƒø‰M t ƒøti…Àt  ÇE¨è0Û‹E ÇE¨ÿÿÿÿ‰$è.tûÿƒêt^‹M ‰ $èžØ‹U¹‹‹@ôÐP‹@ÇE¨èMSÇE¨ÿÿÿÿèáÚ‹EàéYÿÿÿÇE¨èÍÚ‹U ÇE¨ÿÿÿÿ‰$èËsûÿ‹E ‰$è@Ø‹U¹‹‹@ôÐP‹@ÇE¨èïRèúâU‰åƒìÉéÔÆÿÿU‰åƒìÉé´ÈÿÿU‰åƒìÉé”ÊÿÿU‰åWVSƒìl‹E Uè‰UÄÇE¼°´K‰E f‰EœE¤‰$ÇEÀ€¾KÇEÈiÑI‰eÌè„oûÿ‹MEà‰$ÇE¨ÿÿÿÿ‰L$è[ €}àt,‹U‹‹@ô‹Dx‹P;Pƒ´·M f‰ ƒÂ‰Pfƒ}œÿtZ‹Eä‰Â‰E ‹‹@ôöD ‰Eœt-èy„Àu$‹U ‹Mœ‹D x…Àt‹‰$‹BÇE¨ÿÿÿÿÿЃøÿt9E¤‰$èŠoûÿ‹EƒÄl[^_]ËU‹Pô‹B‰$ÇE¨ƒÈ‰D$è>S냋Uä‹Pô‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$èS뤋·Mœ‰$‰L$‹B4ÇE¨ÿÐf‰Eœé7ÿÿÿƒÅ‹E¨‹M¬‹U°ƒø‰M t~<ƒøtƒøt ÇE¨èÙØEà‰$ÇE¨è ‹M ÇE¨ÿÿÿÿ‰ $èÅqûÿ…ÀuÀƒêt=‹M ‰ $è1Ö‹U¹‹‹@ôÐP‹@ÇE¨è PÇE¨ètØé¦þÿÿ‹E ‰$èôÕ‹U¹‹‹@ôÐP‹@ÇE¨ècPè®àU‰åƒìhEè‰EÔE´‰$‰]ô‰uø‰}üÇḚ´KÇEÐü½KÇEØÚÒI‰eÜèhmûÿ‹U‹‹@ô‹Dx…Àt7‹‰$‹BÇE¸ÿЃøÿu!‹U‹Pô‹B‰$ÇE¸ÿÿÿÿƒÈ‰D$è¡QE´‰$è¶mûÿ‹E‹]ô‹uø‹}ü‰ì]ÃÅ‹E¼‹UÀ‰E°‹E¸ƒøt ƒøtf…Àt  ÇE¸èk׋E°ÇE¸ÿÿÿÿ‰$èipûÿƒêt[‹E°‰$èÙÔ‹U¹‹‹@ôÐP‹@ÇE¸èHOÇE¸ÿÿÿÿè×éfÿÿÿÇE¸è ׋U°ÇE¸ÿÿÿÿ‰$è pûÿ‹U°‰$è~Ô‹U¹‹‹@ôÐP‹@ÇE¸èíNè8ßU‰å쨋E ‰]ô‰uø‰}ü‰E¸‹EÇEœ°´KÇE ,¾KÇE¨¿ÔI‰E¼‹E‰e¬‰EÀ‹E‰EÄEè‰E¤E„‰$èÝkûÿ‹U‹‹@ôÐö@tE„‰$èblûÿ‹E‹]ô‹uø‹}ü‰ì]Ãf‹U¸MØ‹@x‰UÈ‹U¼‹]ȉUÌ‹UÀ‰UЋUĉUÔ‹‰\$‹]ÌÇD$‰D$‰ $‰\$ ‹]Љ\$‹]Ô‰\$‹BÇEˆÿЋE؃ì#E܃øÿ…zÿÿÿ‹U‹Pô‹B‰$ÇEˆÿÿÿÿƒÈ‰D$è¦OéTÿÿÿƒÅ‹EŒ‹U‰E€‹Eˆƒøt ƒøtf…Àt  ÇEˆè†Õ‹E€ÇEˆÿÿÿÿ‰$è„nûÿƒêt[‹E€‰$èôÒ‹U¹‹‹@ôÐP‹@ÇEˆècMÇEˆÿÿÿÿè7ÕéÕþÿÿÇEˆè&Õ‹U€ÇEˆÿÿÿÿ‰$è$nûÿ‹U€‰$è™Ò‹U¹‹‹@ôÐP‹@ÇEˆèMèSÝU‰å숋E ‹U‰]ô‰uø‰E˜E¤‰UœUè‰$‰}üÇE¼°´KÇEÀD¾K‰UÄÇEÈpÖI‰eÌè jûÿ‹]‹‹@ôØö@tE¤‰$èŽjûÿ‹E‹]ô‹uø‹}ü‰ì]Ë@xMØ‹]‹uœ‹‰\$‹]˜ÇD$‰t$ ‰D$‰\$‰ $‹BÇE¨ÿЋE؃ì#E܃øÿuŸ‹]‹‹PôÚ‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$èõMéwÿÿÿƒÅ‹E¨‹U¬ƒø‰U˜‹U°t ƒøtf…Àt  ÇE¨èÕÓ‹u˜ÇE¨ÿÿÿÿ‰4$èÓlûÿƒêt[‹E˜‰$èCÑ‹U¹‹‹@ôÐP‹@ÇE¨è²KÇE¨ÿÿÿÿè†ÓéøþÿÿÇE¨èuÓ‹E˜ÇE¨ÿÿÿÿ‰$èslûÿ‹]˜‰$èèЋu¹‹‹@ôðP‹@ÇE¨èWKè¢ÛU‰åìˆEè‰EÄE¤‰$‰]ô‰uø‰}üÇE¼°´KÇEÀ¾KÇEÈØI‰eÌèehûÿ‹UÇÿÿÿÿÇBÇBÿÿÿÿ‹U ‹‹@ôÐö@tE¤‰$èÓhûÿ‹E‹]ô‹uø‹}ü‰ì]‹@xMØ‹ÇD$ÇD$ÇD$ÇD$ ‰D$‰ $‹BÇE¨ÿЋUƒì‹E؉‹E܉B‹Eà‰B뎃Å‹E¬‹U°‰E ‹E¨ƒøt ƒøtf…Àt  ÇE¨è1Ò‹E ÇE¨ÿÿÿÿ‰$è/kûÿƒêt[‹E ‰$èŸÏ‹U ¹‹‹@ôÐP‹@ÇE¨èJÇE¨ÿÿÿÿèâÑéÿÿÿÇE¨èÑÑ‹U ÇE¨ÿÿÿÿ‰$èÏjûÿ‹U ‰$èDÏ‹U ¹‹‹@ôÐP‹@ÇE¨è³IèþÙU‰åWVSEèƒìl‰EÄE¤‰$ÇE¼°´KÇEÀd¾KÇEÈÚI‰eÌè¾fûÿ‹UEà‰$ÇE¨ÿÿÿÿ‰T$è•€}àtJ‹M‹‹@ô‹Dx‹M‹‰L$‹M ‰$‰L$‹B0ÇE¨ÿÐ9Et‹U‹Pô‹B‰$ƒÈ‰D$èÕJ‹M䋉M ‹@ôöD ‰Eœt-è;p„Àu$‹M ‹Uœ‹Dx…Àt‹‰$‹BÇE¨ÿÿÿÿÿЃøÿtE¤‰$è¨fûÿ‹EƒÄl[^_]ËUä‹Pô‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$è\JëǃÅ‹E¬‹U°‰E ‹E¨ƒøt~<ƒøtƒøt ÇE¨è<ÐEà‰$ÇE¨èj‹M ÇE¨ÿÿÿÿ‰ $è(iûÿ…ÀuÀƒêt=‹E ‰$è”Í‹U¹‹‹@ôÐP‹@ÇE¨èHÇE¨è×Ïéíþÿÿ‹U ‰$èWÍ‹M‹‹@ôȹP‹@ÇE¨èÆGèØU‰åƒì‰]ø‹] ‰uü‹u‹Æ‰^‹@ô‹Hp…Ét‹P…Òu#‰ $è:÷ÿÿ‹Xô‰Ø‹P…Òu Æ‹]ø‹uü‰ì]ÃÊ‹]ø‰U ‹uü‰E‰ì]é(IU‰åƒì‰]ø‹] ‰uü‹u‹Æ‰^‹@ô‹Hp…Ét‹P…Òu#‰ $èÊöÿÿ‹Xô‰Ø‹P…Òu Æ‹]ø‹uü‰ì]ÃÊ‹]ø‰U ‹uü‰E‰ì]é¸HU‰åƒì(‰}ü‹}‰]ô‰uø‹_‹‹pôöD3 tè n„Àu‹D3x…Àt ‹‰$ÿRƒøÿt‹]ô‹uø‹}ü‰ì]Ãt&‹W‹Pô‹B‰$ƒÈ‰D$èFH‹]ô‹uø‹}ü‰ì]ÃU‰åƒì(‰}ü‹}‰]ô‰uø‹_‹‹pôöD3 tèŠm„Àu‹D3x…Àt ‹‰$ÿRƒøÿt‹]ô‹uø‹}ü‰ì]Ãt&‹W‹Pô‹B‰$ƒÈ‰D$èÆG‹]ô‹uø‹}ü‰ì]ÃU‰åƒì‰]ø‹]‰uü‹M ‹u‹‹@ô‹Dx‹‰t$‰L$‰$ÿR09Æt‹‹uüXô‹C‰]‹]øƒÈ‰E ‰ì]é_G‹]ø‹uü‰ì]ÃU‰åWVSEèƒì|‰EÄE¤‰$ÇE¼°´KÇEÀ´¿KÇEÈÒÞI‰eÌèžbûÿ‹UEà‰$ÇE¨ÿÿÿÿ‰T$èuýÿÿ€}à„š‹M‹‹PôÑ‹¹€‰M …ÿ‰}œ„C‹E €xv„Ç·@t‹} ·À¹‹_x‹}œ…Û‹7”Á‰D$‹} ‹EœU‰\$‰|$‰T$ ‰L$‰$‹F$ÇE¨ÿЄÒt#‹}‹‹Pôú‹B‰$ÇE¨ƒÈ‰D$èaF‹U䋉U ‹@ôöD ‰Eœt-èÇk„Àu$‹} ‹Mœ‹Dx…Àt‹‰$‹BÇE¨ÿÿÿÿÿЃøÿt_E¤‰$è4bûÿ‹EƒÄ|[^_]Ë} ‹G|…À„‹ÇD$ ‰$‹B(ÇE¨ÿЋU ‹Mf‰BtÆBv‹‹RôщM éùþÿÿt&‹Uä‹Pô‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$èŸEé{ÿÿÿÇE¨è~iƒÅ‹E¬‹U°‰E ‹E¨ƒøt&~Hƒøtƒøt ÇE¨èPiÇE¨èdËEà‰$ÇE¨è’üÿÿ‹M ÇE¨ÿÿÿÿ‰ $èPdûÿ…Àu´ƒêt=‹} ‰<$è¼È‹U¹‹‹@ôÐP‹@ÇE¨è+CÇE¨èÿÊé‰þÿÿ‹U ‰$èÈ‹M‹‹@ôȹP‹@ÇE¨èîBè9ÓU‰åWVSƒì|¶E Uè‰UÄÇE¼°´KˆE›E¤‰$ÇEÀ(¿KÇEÈsáI‰eÌè÷_ûÿ‹MEà‰$ÇE¨ÿÿÿÿ‰L$èÎúÿÿ€}à„›‹u‹‹PôÖ‹†€‰u …À‰Eœ„=‹M €yv„É·At‹u ·À¹‹^x‹uœ…Û‹>”Á‰D$¶u›‹EœU‰\$‰t$‰T$ ‰L$‰$‹GÇE¨ÿЄÒt#‹u‹‹Pôò‹B‰$ÇE¨ƒÈ‰D$è¹C‹U䋉U ‹@ôöD ‰Eœt-èi„Àu$‹u ‹Mœ‹Dx…Àt‹‰$‹BÇE¨ÿÿÿÿÿЃøÿt[E¤‰$èŒ_ûÿ‹EƒÄ|[^_]Ëu ‹F|…À„‡‹ÇD$ ‰$‹B(ÇE¨ÿЋU ‹Mf‰BtÆBv‹‹RôщM é÷þÿÿ‹Uä‹Pô‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$èûBë‚ÇE¨èÝfƒÅ‹E¬‹U°‰E ‹E¨ƒøt&~Hƒøtƒøt ÇE¨è¯fÇE¨èÃÈEà‰$ÇE¨èñùÿÿ‹M ÇE¨ÿÿÿÿ‰ $è¯aûÿ…Àu´ƒêt=‹u ‰4$èÆ‹U¹‹‹@ôÐP‹@ÇE¨èŠ@ÇE¨è^Èéþÿÿ‹U ‰$èÞÅ‹M‹‹@ôȹP‹@ÇE¨èM@è˜ÐU‰åWVSìŒEèÝE ‰EÄE¤Ý]‰$ÇE¼°´KÇEÀ|¿KÇEÈäI‰eÌèU]ûÿ‹UEà‰$ÇE¨ÿÿÿÿ‰T$è,øÿÿ€}à„—‹M‹‹PôÑ‹¹€‰M …ÿ‰}œ„=‹E €xv„É·@t‹} ¹·ÀÝE‹_x‹}œ…Û‹7”ÁUÝ\$‰D$‰T$ ‰\$‰L$‰<$‹FÇE¨ÿЄÒt#‹}‹‹Pôú‹B‰$ÇE¨ƒÈ‰D$èA‹Eä‰Â‰E ‹‹@ôöD ‰Eœt-èf„Àu$‹} ‹Mœ‹Dx…Àt‹‰$‹BÇE¨ÿÿÿÿÿЃøÿt]E¤‰$èì\ûÿ‹EÄŒ[^_]Ë} ‹G|…À„‡‹ÇD$ ‰$‹B(ÇE¨ÿЋU ‹Mf‰BtÆBv‹‹RôщM é÷þÿÿ‹Uä‹Pô‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$èY@ë€ÇE¨è;dƒÅ‹E¬‹U°‰E ‹E¨ƒøt&~Hƒøtƒøt ÇE¨è dÇE¨è!ÆEà‰$ÇE¨èO÷ÿÿ‹M ÇE¨ÿÿÿÿ‰ $è _ûÿ…Àu´ƒêt=‹} ‰<$èyËU¹‹‹@ôÐP‹@ÇE¨èè=ÇE¨è¼ÅéŒþÿÿ‹U ‰$è<ËM‹‹@ôȹP‹@ÇE¨è«=èöÍU‰åWVSEèƒì|‰EÄE¤‰$ÇE¼°´KÇEÀ˜¿KÇEȲæI‰eÌè¾Zûÿ‹UEà‰$ÇE¨ÿÿÿÿ‰T$è•õÿÿ€}à„—‹M‹‹PôÑ‹¹€‰M …ÿ‰}œ„C‹E €xv„Æ·@t‹} ¹·ÀÛm ‹_x‹}œ…Û‹7”ÁUÛ|$‰D$‰T$ ‰\$‰L$‰<$‹F ÇE¨ÿЄÒt#‹}‹‹Pôú‹B‰$ÇE¨ƒÈ‰D$è„>‹Eä‰Â‰E ‹‹@ôöD ‰Eœt-èèc„Àu$‹} ‹Mœ‹Dx…Àt‹‰$‹BÇE¨ÿÿÿÿÿЃøÿt`E¤‰$èUZûÿ‹EƒÄ|[^_]Ë} ‹G|…À„‹ÇD$ ‰$‹B(ÇE¨ÿЋU ‹Mf‰BtÆBv‹‹RôщM éúþÿÿ¶‹Uä‹Pô‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$è¿=ézÿÿÿÇE¨èžaƒÅ‹E¬‹U°‰E ‹E¨ƒøt&~Hƒøtƒøt ÇE¨èpaÇE¨è„ÃEà‰$ÇE¨è²ôÿÿ‹M ÇE¨ÿÿÿÿ‰ $èp\ûÿ…Àu´ƒêt=‹} ‰<$èÜÀ‹U¹‹‹@ôÐP‹@ÇE¨èK;ÇE¨èÃé†þÿÿ‹U ‰$èŸÀ‹M‹‹@ôȹP‹@ÇE¨è;èYËU‰åWVSEèƒì|‰EÄE¤‰$ÇE¼°´KÇEÀð¾KÇEÈRéI‰eÌèXûÿ‹UEà‰$ÇE¨ÿÿÿÿ‰T$èõòÿÿ€}à„š‹M‹‹PôÑ‹¹€‰M …ÿ‰}œ„C‹E €xv„Ç·@t‹} ·À¹‹_x‹}œ…Û‹7”Á‰D$‹} ‹EœU‰\$‰|$‰T$ ‰L$‰$‹F ÇE¨ÿЄÒt#‹}‹‹Pôú‹B‰$ÇE¨ƒÈ‰D$èá;‹U䋉U ‹@ôöD ‰Eœt-èGa„Àu$‹} ‹Mœ‹Dx…Àt‹‰$‹BÇE¨ÿÿÿÿÿЃøÿt_E¤‰$è´Wûÿ‹EƒÄ|[^_]Ë} ‹G|…À„‹ÇD$ ‰$‹B(ÇE¨ÿЋU ‹Mf‰BtÆBv‹‹RôщM éùþÿÿt&‹Uä‹Pô‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$è;é{ÿÿÿÇE¨èþ^ƒÅ‹E¬‹U°‰E ‹E¨ƒøt&~Hƒøtƒøt ÇE¨èÐ^ÇE¨èäÀEà‰$ÇE¨èòÿÿ‹M ÇE¨ÿÿÿÿ‰ $èÐYûÿ…Àu´ƒêt=‹} ‰<$è<¾‹U¹‹‹@ôÐP‹@ÇE¨è«8ÇE¨èÀé‰þÿÿ‹U ‰$èÿ½‹M‹‹@ôȹP‹@ÇE¨èn8è¹ÈU‰åWVSEèƒì|‰EÄE¤‰$ÇE¼°´KÇEÀ ¿KÇEÈòëI‰eÌè~Uûÿ‹UEà‰$ÇE¨ÿÿÿÿ‰T$èUðÿÿ€}à„š‹M‹‹PôÑ‹¹€‰M …ÿ‰}œ„C‹E €xv„Ç·@t‹} ·À¹‹_x‹}œ…Û‹7”Á‰D$‹} ‹EœU‰\$‰|$‰T$ ‰L$‰$‹FÇE¨ÿЄÒt#‹}‹‹Pôú‹B‰$ÇE¨ƒÈ‰D$èA9‹U䋉U ‹@ôöD ‰Eœt-è§^„Àu$‹} ‹Mœ‹Dx…Àt‹‰$‹BÇE¨ÿÿÿÿÿЃøÿt_E¤‰$èUûÿ‹EƒÄ|[^_]Ë} ‹G|…À„‹ÇD$ ‰$‹B(ÇE¨ÿЋU ‹Mf‰BtÆBv‹‹RôщM éùþÿÿt&‹Uä‹Pô‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$è8é{ÿÿÿÇE¨è^\ƒÅ‹E¬‹U°‰E ‹E¨ƒøt&~Hƒøtƒøt ÇE¨è0\ÇE¨èD¾Eà‰$ÇE¨èrïÿÿ‹M ÇE¨ÿÿÿÿ‰ $è0Wûÿ…Àu´ƒêt=‹} ‰<$蜻‹U¹‹‹@ôÐP‹@ÇE¨è 6ÇE¨èß½é‰þÿÿ‹U ‰$è_»‹M‹‹@ôȹP‹@ÇE¨èÎ5èÆU‰åWVS쌋E ‹UÇE¼°´KÇEÀD¿K‰EE¤‰U”Uè‰Uĉ$ÇEȧîI‰eÌèÏRûÿ‹MEà‰$ÇE¨ÿÿÿÿ‰L$è¦íÿÿ€}à„¥‹u‹‹PôÖ‹¾€‰u …ÿ‰}œ„I‹E €xv„Õ·@t‹u ¹·À‹}œ‹^x‹?‹u‰D$…Û‰} ‹}””ÁU‰t$‰\$‰|$‹}œ‰T$ ‹U ‰L$‰<$‹BÇE¨ÿЄÒt!‹U‹Pô‹B‰$ÇE¨ƒÈ‰D$è‡6‹M䋉M ‹@ôöD ‰Eœt-èí[„Àu$‹} ‹uœ‹D7x…Àt‹‰$‹BÇE¨ÿÿÿÿÿЃøÿt]E¤‰$èZRûÿ‹EÄŒ[^_]Ëu ‹F|…À„‡‹ÇD$ ‰$‹B(ÇE¨ÿЋM‹} ‹f‰GtÆGv‹RôщM éëþÿÿ‹Uä‹Pô‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$èÇ5ë€ÇE¨è©YƒÅ‹E¬‹U°‰E ‹E¨ƒøt&~Hƒøtƒøt ÇE¨è{YÇE¨è»Eà‰$ÇE¨è½ìÿÿ‹E ÇE¨ÿÿÿÿ‰$è{Tûÿ…Àu´ƒêt=‹u ‰4$è縋}¹‹‹@ôøP‹@ÇE¨èV3ÇE¨è*»éŽþÿÿ‹U ‰$誸‹M‹‹@ôȹP‹@ÇE¨è3èdÃU‰åWVS쌋E ‹UÇE¼°´KÇEÀ`¿K‰EE¤‰U”Uè‰Uĉ$ÇEÈWñI‰eÌèPûÿ‹MEà‰$ÇE¨ÿÿÿÿ‰L$èöêÿÿ€}à„¥‹u‹‹PôÖ‹¾€‰u …ÿ‰}œ„I‹E €xv„Õ·@t‹u ¹·À‹}œ‹^x‹?‹u‰D$…Û‰} ‹}””ÁU‰t$‰\$‰|$‹}œ‰T$ ‹U ‰L$‰<$‹BÇE¨ÿЄÒt!‹U‹Pô‹B‰$ÇE¨ƒÈ‰D$è×3‹M䋉M ‹@ôöD ‰Eœt-è=Y„Àu$‹} ‹uœ‹D7x…Àt‹‰$‹BÇE¨ÿÿÿÿÿЃøÿt]E¤‰$èªOûÿ‹EÄŒ[^_]Ëu ‹F|…À„‡‹ÇD$ ‰$‹B(ÇE¨ÿЋM‹} ‹f‰GtÆGv‹RôщM éëþÿÿ‹Uä‹Pô‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$è3ë€ÇE¨èùVƒÅ‹E¬‹U°‰E ‹E¨ƒøt&~Hƒøtƒøt ÇE¨èËVÇE¨è߸Eà‰$ÇE¨è êÿÿ‹E ÇE¨ÿÿÿÿ‰$èËQûÿ…Àu´ƒêt=‹u ‰4$è7¶‹}¹‹‹@ôøP‹@ÇE¨è¦0ÇE¨èz¸éŽþÿÿ‹U ‰$èúµ‹M‹‹@ôȹP‹@ÇE¨èi0è´ÀU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàô½KÇEèÜòI‰eìèMûÿ‹EƒÀ‰EÀ‰$èð‹EÀÇ@pfÇ@tÆ@vÇ@xÇ@|Ç€€Ç€„‹EÇÌaMÇ@àaM‹E ÇEȉD$‹EÀ‰$è11Eĉ$è¦MûÿÉÃÅ‹ẺE¼‹EÇ@`mM‹EÀÇEȉ$èÿ‹E¼ÇEÈÿÿÿÿ‰$èmPûÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà\¾KÇEèÍóI‰eìè‘Lûÿ‹EƒÀ‰EÀ‰$è‹EÀÇ@pfÇ@tÆ@vÇ@xÇ@|Ç€€Ç€„‹EÇÌaMÇ@àaM‹EÀÇD$ÇEȉ$è@0Eĉ$èµLûÿÉÃÅ‹ẺE¼‹EÇ@`mM‹EÀÇEȉ$è‹E¼ÇEÈÿÿÿÿ‰$è|OûÿU‰åƒì‹U ‹E‹ ‹R‰Aô‰‹U‰E‰U ÉéÉ/U‰åƒì‹U ‹E‹ ‹R‰Aô‰ÇE ‰EÉé˜/U‰åSƒì‹]ÇÌaMCÇC`mM‰$èn‰]ƒÄ[]éñ­U‰åƒì‹EPÇÌaMÇ@`mM‰UÉé>U‰å‹U ‹E‹ ‹R‰‹Iô‰]ÃU‰åƒì‹E ÉÿàU‰åSƒì‹]‹‹@ô‰$ÿU ‰ØƒÄ[]ÃU‰åSƒì‹]‹‹@ô‰$ÿU ‰ØƒÄ[]ÃU‰åƒìÉéÄçÿÿU‰åWVSEèƒìl‰EÄE¤‰$ÇE¼°´KÇEÀœ¾KÇEÈÀöI‰eÌè^Jûÿ‹UE܉$ÇE¨ÿÿÿÿ‰T$è5åÿÿ€}܄ˋU …Ò„‹E‹U‹M ‰EœEç‰D$‹‹@ô‹Dx‰ $ÇE¨‰D$èá]…Àu-º‹M‹‹@ôEœ P‰$ÇE¨‰T$èW.´&‹Eà‰Â‰E ‹‹@ôöD ‰Eœt-è´S„Àu$‹U ‹Mœ‹D x…Àt‹‰$‹BÇE¨ÿÿÿÿÿЃøÿt3E¤‰$è!Jûÿ‹EƒÄl[^_]ö‹E …Àu™‹Eº‰Eœéaÿÿÿ‹Uà‹Pô‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$è¸-몶‹Mº‰Mœé(ÿÿÿƒÅ‹E¨‹M¬‹U°ƒø‰M t~>ƒøt ƒøft ÇE¨è€³E܉$ÇE¨è®äÿÿ‹M ÇE¨ÿÿÿÿ‰ $èlLûÿ…Àu¾ƒêt>‹M ‰ $èØ°‹U¹‹‹@ôEœP‹@ÇE¨èF+ÇE¨è³éµþÿÿ‹E ‰$èš°‹U¹‹‹@ôEœP‹@ÇE¨è+èS»U‰åƒì¶E ‰E Éé èÿÿU‰åƒìÉé”êÿÿU‰åƒìÉé$íÿÿU‰åƒì‹EÙE Ý\$‰$èhêÿÿÉÃU‰åƒì‹U‹M ‰U‰M ÉéˆïÿÿU‰åƒìÉéòÿÿU‰åƒìÉédïÿÿU‰åƒìÉéôñÿÿU‰åƒì‹U·M ‹‹@ô‹D ƒàJƒøtƒø@t¿É‰M ‰UÉéïÿÿ·É‰M ‰UÉéïÿÿU‰åƒì·E ‰E ÉéñÿÿU‰åƒìÉéôÿÿU‰åƒìÉé´öÿÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÆÅKÇEè1ùI‰eìèáFûÿ‹EÇbM‹E ÇEȉD$‹EƒÀ‰$è<ßþÿEĉ$èQGûÿÉÃÅ‹ẺEÀ‹E‰$èë1‹EÀÇEÈÿÿÿÿ‰$è)JûÿU‰åSƒì‹]‰$è‰]ƒÄ[]é©U‰åSƒì$‹]‹CÇbMƒè =pTLu‰$è‹1ƒÄ$[]Ã=(vMu‹PJÿ‰H…ÒÜU÷‰T$‰$èÐÅþÿë˃ÊÿðÁPëáU‰åSƒì‹E‹]ƒÈ‰D$‹E ‰D$C‰$èz%ÿÿ…ÀtÇE ‹Xô‰]ƒÄ[]é!‹Xô‹C‰]ƒÈ‰E ƒÄ[]ér!U‰åSƒì‹E‹]ƒÈ‰D$‹E ‹‰D$C‰$è%ÿÿ…ÀtÇE ‹Xô‰]ƒÄ[]é+!‹Xô‹C‰]ƒÈ‰E ƒÄ[]é!U‰åSƒì‹]C‰$è&ÿÿ…ÀtƒÄ[]ËXô‹C‰$ƒÈ‰D$èÙ ƒÄ[]ÃU‰åƒìƒE0ÉéPPüÿU‰åEøSƒìT‰EäEĉ$ÇEܰ´KÇEà¶ÁKÇEèQüI‰eìèÀDûÿ‹UƒÂt‰UÀ‰$è/‹]À‹M¡ÔXMÆCtÇAtPmM‹PôÇCpÆCuÇCxÇC|ǃ€Çƒ„‹]‰‹ ØXM‰ ÇCÇD$‹@ôÇEÈ؉$è¨Ç,bMÇCt@bMƒÃ‰]¼‰$ÇEÈè<ÿÿ‹EÇEȃÀ‰D$‹EÀ‰$èj‹E‰$ƒÈ‰D$‹E ‰D$è#ÿÿ…Àt2‹MÇD$‹‹@ôÇEÈȉ$èŒEĉ$èQDûÿƒÄT[]ËU‹Pô‹B‰$ƒÈ‰D$èaëӃŋẺE¸‹Eȃøt ƒøt[…Àt) ‹E¸‹ÔXM‹M‹]‰‹Rô‹ ØXM‰E¸‰ ÇC‹U‹MÀÇBtPmM‰ $ÇEÈèP‹]¸ÇEÈÿÿÿÿ‰$è¾Fûÿ‹]¼ÇEȉ$è,?ÿÿ‹E¸ë—U‰åEøSƒìT‰EäEĉ$ÇEܰ´KÇEàÈÁKÇEèCþI‰eìèÐBûÿ‹UƒÂt‰UÀ‰$è?‹]À‹M¡ÔXMÆCtÇAtPmM‹PôÇCpÆCuÇCxÇC|ǃ€Çƒ„‹]‰‹ ØXM‰ ÇCÇD$‹@ôÇEÈ؉$è¸Ç,bMÇCt@bMƒÃ‰]¼‰$ÇEÈè&:ÿÿ‹EÇEȃÀ‰D$‹EÀ‰$èz‹EƒÈ‰D$‹E ‹‰$‰D$è!ÿÿ…Àt2‹MÇD$‹‹@ôÇEÈȉ$èšEĉ$è_BûÿƒÄT[]ËU‹Pô‹B‰$ƒÈ‰D$èoëӃŋẺE¸‹Eȃøt ƒøt[…Àt) ‹E¸‹ÔXM‹M‹]‰‹Rô‹ ØXM‰E¸‰ ÇC‹U‹MÀÇBtPmM‰ $ÇEÈè^‹]¸ÇEÈÿÿÿÿ‰$èÌDûÿ‹]¼ÇEȉ$è:=ÿÿ‹E¸ë—U‰åEøSƒìT‰EäEĉ$ÇEܰ´KÇEà¤ÁKÇEèÙÿI‰eìèà@ûÿ‹UƒÂt‰UÀ‰$èO‹]À‹M¡ÔXMÆCtÇCpÆCu‰ÂÇCxÇC|ǃ€Çƒ„‹ØXM‰‹@ôÇAtPmM‰ÇAÇD$‹BôÇEÈȉ$èÉ‹EÇ,bMÇ@t@bMƒÀ‰E¼‰$ÇEÈè48ÿÿ‹E‹UÀÇEȃÀ‰D$‰$èˆEĉ$è­@ûÿƒÄT[]ÃÅ‹EÈ‹]̃ø‰]¸t ƒøtX…Àt& ‹E¸‹]‹ÔXM‹ ØXM‰‹Rô‰E¸‰ ÇC‹E‹UÀÇ@tPmM‰$ÇEÈèË‹M¸ÇEÈÿÿÿÿ‰ $è9Cûÿ‹M¼ÇEȉ $è§;ÿÿ‹E¸ëšU‰åEøSƒìT‰EäEĉ$ÇEܰ´KÇEà®ÁKÇEè‚J‰eìèP?ûÿ‹U ‹M‹] ‹B‹Pô‰‹K‹]‰ ÇCÇD$‹@ôÇEÈÿÿÿÿ؉$胋U ‹‹R ‰‹@ô‰ƒÃ‰]À‰$ÇEÈèî6ÿÿ‹E‹]ƒÀ‰D$‹‹@ôÇEÈ؉$è;‹EƒÈ‰D$‹E‰D$‹EÀ‰$èOÿÿ…Àt2‹UÇD$‹‹@ôÇEÈЉ$èZEĉ$è?ûÿƒÄT[]Ë‹PôÚ‹B‰$ƒÈ‰D$è0ëԃŋEÈ‹]Ì…À‰]¼tƒèt ‹MÀÇEȉ $èU:ÿÿ‹U ‹M‹B‹R‰‹@ô‰‹E¼ÇAÇEÈÿÿÿÿ‰$è¨AûÿU‰åEøSƒìT‰EäEĉ$ÇEܰ´KÇEàÀÁKÇEè J‰eìèÐ=ûÿ‹U ‹M‹] ‹B‹Pô‰‹K‹]‰ ÇCÇD$‹@ôÇEÈÿÿÿÿ؉$è‹U ‹‹R ‰‹@ô‰ƒÃ‰]À‰$ÇEÈèn5ÿÿ‹E‹]ƒÀ‰D$‹‹@ôÇEÈ؉$軋EƒÈ‰D$‹E‹‰D$‹EÀ‰$èÍÿÿ…Àt9‹UÇD$‹‹@ôÇEÈЉ$èØEĉ$è=ûÿƒÄT[]ô&‹‹PôÚ‹B‰$ƒÈ‰D$è§ë̓Å‹EÈ‹]Ì…À‰]¼tƒèt ‹MÀÇEȉ $èÌ8ÿÿ‹U ‹M‹B‹R‰‹@ô‰‹E¼ÇAÇEÈÿÿÿÿ‰$è@ûÿU‰åEøSƒìT‰EäEĉ$ÇEܰ´KÇEàœÁKÇEè6J‰eìè@<ûÿ‹U ‹M‹] ‹B‹Pô‰‹K‹]‰ ÇCÇD$‹@ôÇEÈÿÿÿÿ؉$ès‹U ‹‹R ‰‹@ô‰ƒÃ‰]À‰$ÇEÈèÞ3ÿÿ‹E‹]ƒÀ‰D$‹‹@ôÇEÈ؉$è+Eĉ$èP<ûÿƒÄT[]ÃÅ‹EÈ‹UÌ…À‰U¼tƒèt ‹EÀÇEȉ$è¡7ÿÿ‹M ‹]‹A‹Q‰‹@ô‰‹E¼ÇCÇEÈÿÿÿÿ‰$èô>ûÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà”ÁKÇEèrJ‰eìè!;ûÿ‹U‹M‹EÇ,bMƒÂtÇAt@bMƒÁÇ@ˆ`M‰U¼‰MÀ‰ $ÇEÈèÙÿÿ‹EÇEȃÀ0‰$è$ÿÿ‹U‹EÀÇBˆdMƒÀ‰$è¬Ù‹M¡ÔXM‹ØXM‰‹@ô‰‹E¼ÇAÇAtPmMÇEÈÿÿÿÿ‰$è¦þ‹U‰$è+Eĉ$è;ûÿÉÃÅ‹EÈ‹MÌ…À‰M¸tƒèt ‹EÇEȃÀ0‰$è’ÿÿ‹EÇ@ˆdM‹EÀƒÀ‰$èÙ¡ÔXM‹U‹M‰‹@ô‹ØXM‰‹E¼ÇAÇAtPmMÇEȉ$èþ‹U¸ÇEÈÿÿÿÿ‰$è=ûÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàtÁKÇEèçJ‰eìè¡9ûÿ‹U‹M‹EÇ,bMƒÂtÇAt@bMƒÁÇ@ˆ`M‰U¼‰MÀ‰ $ÇEÈèYÿÿ‹EÇEȃÀ0‰$è¤ ÿÿ‹U‹EÀÇBˆdMƒÀ‰$è,Ø‹M¡ÔXM‹ØXM‰‹@ô‰‹E¼ÇAÇAtPmMÇEÈÿÿÿÿ‰$è&ýEĉ$è›9ûÿÉÃÅ‹EÈ‹UÌ…À‰U¸tƒèt ‹EÇEȃÀ0‰$è ÿÿ‹M‹EÀÇAˆdMƒÀ‰$è¥×¡ÔXM‹U‹M‰‹@ô‹ØXM‰‹E¼ÇAÇAtPmMÇEȉ$èœü‹U¸ÇEÈÿÿÿÿ‰$è <ûÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÒÁKÇEè<J‰eìè18ûÿ‹U ‹M‹‹R ‰‹@ô‹M‰‹EƒÁ‰MÀÇ@ˆ`M‰ $ÇEÈèìÿÿ‹EÇEȃÀ0‰$è7 ÿÿ‹U‹EÀÇBˆdMƒÀ‰$è¿Ö‹M ‹U‹A‰‹@ô‹Q‹M‰EÄÇA‰$èF8ûÿÉÃÅ‹EÈ‹UÌ…À‰U¼tƒèt ‹EÇEȃÀ0‰$èÈ ÿÿ‹M‹EÀÇAˆdMƒÀ‰$èPÖ‹U ‹M‹B‹R‰‹@ô‹M‰‹E¼ÇAÇEÈÿÿÿÿ‰$èÐ:ûÿU‰åSƒì‹E‹]ƒÈ‰D$‹E ‰D$C‰$è;ÿÿ…ÀtÇE ‹Xô‰]ƒÄ[]ém‹Xô‹C‰]ƒÈ‰E ƒÄ[]éRU‰åSƒì‹E‹]ƒÈ‰D$‹E ‹‰D$C‰$è¸:ÿÿ…ÀtÇE ‹Xô‰]ƒÄ[]é ‹Xô‹C‰]ƒÈ‰E ƒÄ[]éðU‰åSƒì‹]C‰$è»;ÿÿ…ÀtƒÄ[]ËXô‹C‰$ƒÈ‰D$蹃Ä[]ÃU‰åƒìƒE0Éé€AüÿU‰åEøSƒìT‰EäEĉ$ÇEܰ´KÇEà.ÃKÇEè# J‰eìèð5ûÿ‹UƒÂx‰UÀ‰$è_ù‹]À‹M¡äXMÇCpÇAx`mM‹PôfÇCtÆCvÇCxÇC|ǃ€Çƒ„‹]‰‹ èXM‰ ÇCÇD$‹@ôÇEÈ؉$è†ÇlbMÇCx€bMƒÃ‰]¼‰$ÇEÈè4Rÿÿ‹EÇEȃÀ‰D$‹EÀ‰$èH‹E‰$ƒÈ‰D$‹E ‰D$è9ÿÿ…Àt2‹MÇD$‹‹@ôÇEÈȉ$èjEĉ$è5ûÿƒÄT[]ËU‹Pô‹B‰$ƒÈ‰D$è?ëӃŋẺE¸‹Eȃøt ƒøt[…Àt) ‹E¸‹äXM‹M‹]‰‹Rô‹ èXM‰E¸‰ ÇC‹U‹MÀÇBx`mM‰ $ÇEÈè~ø‹]¸ÇEÈÿÿÿÿ‰$èì7ûÿ‹]¼ÇEȉ$èJUÿÿ‹E¸ë—U‰åEøSƒìT‰EäEĉ$ÇEܰ´KÇEà@ÃKÇEè J‰eìè4ûÿ‹UƒÂx‰UÀ‰$èo÷‹]À‹M¡äXMÇCpÇAx`mM‹PôfÇCtÆCvÇCxÇC|ǃ€Çƒ„‹]‰‹ èXM‰ ÇCÇD$‹@ôÇEÈ؉$è–ÇlbMÇCx€bMƒÃ‰]¼‰$ÇEÈèDPÿÿ‹EÇEȃÀ‰D$‹EÀ‰$èX‹EƒÈ‰D$‹E ‹‰$‰D$è-7ÿÿ…Àt9‹MÇD$‹‹@ôÇEÈȉ$èxEĉ$è3ûÿƒÄT[]ô&‹U‹Pô‹B‰$ƒÈ‰D$èFë̃Å‹ẺE¸‹Eȃøt ƒøt[…Àt) ‹E¸‹äXM‹M‹]‰‹Rô‹ èXM‰E¸‰ ÇC‹U‹MÀÇBx`mM‰ $ÇEÈè…ö‹]¸ÇEÈÿÿÿÿ‰$èó5ûÿ‹]¼ÇEȉ$èQSÿÿ‹E¸ë—U‰åEøSƒìT‰EäEĉ$ÇEܰ´KÇEàÃKÇEè»J‰eìè2ûÿ‹UƒÂx‰UÀ‰$èoõ‹]À‹M¡äXMÇCpfÇCtÆCv‰ÂÇCxÇC|ǃ€Çƒ„‹èXM‰‹@ôÇAx`mM‰ÇAÇD$‹BôÇEÈȉ$è—‹EÇlbMÇ@x€bMƒÀ‰E¼‰$ÇEÈèBNÿÿ‹E‹UÀÇEȃÀ‰D$‰$èVEĉ$èË1ûÿƒÄT[]ÃÅ‹EÈ‹]̃ø‰]¸t ƒøtX…Àt& ‹E¸‹]‹äXM‹ èXM‰‹Rô‰E¸‰ ÇC‹E‹UÀÇ@x`mM‰$ÇEÈèéô‹M¸ÇEÈÿÿÿÿ‰ $èW4ûÿ‹M¼ÇEȉ $èµQÿÿ‹E¸ëšU‰åEøSƒìT‰EäEĉ$ÇEܰ´KÇEà&ÃKÇEèbJ‰eìèp0ûÿ‹U ‹M‹] ‹B‹Pô‰‹K‹]‰ ÇCÇD$‹@ôÇEÈÿÿÿÿ؉$èS‹U ‹‹R ‰‹@ô‰ƒÃ‰]À‰$ÇEÈèþLÿÿ‹E‹]ƒÀ‰D$‹‹@ôÇEÈ؉$è ‹EƒÈ‰D$‹E‰D$‹EÀ‰$èß3ÿÿ…Àt2‹UÇD$‹‹@ôÇEÈЉ$è*Eĉ$è?0ûÿƒÄT[]Ë‹PôÚ‹B‰$ƒÈ‰D$èëԃŋEÈ‹]Ì…À‰]¼tƒèt ‹MÀÇEȉ $èePÿÿ‹U ‹M‹B‹R‰‹@ô‰‹E¼ÇAÇEÈÿÿÿÿ‰$èÈ2ûÿU‰åEøSƒìT‰EäEĉ$ÇEܰ´KÇEà8ÃKÇEèëJ‰eìèð.ûÿ‹U ‹M‹] ‹B‹Pô‰‹K‹]‰ ÇCÇD$‹@ôÇEÈÿÿÿÿ؉$èÓ‹U ‹‹R ‰‹@ô‰ƒÃ‰]À‰$ÇEÈè~Kÿÿ‹E‹]ƒÀ‰D$‹‹@ôÇEÈ؉$è‹‹EƒÈ‰D$‹E‹‰D$‹EÀ‰$è]2ÿÿ…Àt9‹UÇD$‹‹@ôÇEÈЉ$è¨Eĉ$è½.ûÿƒÄT[]ô&‹‹PôÚ‹B‰$ƒÈ‰D$èwë̓Å‹EÈ‹]Ì…À‰]¼tƒèt ‹MÀÇEȉ $èÜNÿÿ‹U ‹M‹B‹R‰‹@ô‰‹E¼ÇAÇEÈÿÿÿÿ‰$è?1ûÿU‰åEøSƒìT‰EäEĉ$ÇEܰ´KÇEàÃKÇEèJ‰eìè`-ûÿ‹U ‹M‹] ‹B‹Pô‰‹K‹]‰ ÇCÇD$‹@ôÇEÈÿÿÿÿ؉$èC‹U ‹‹R ‰‹@ô‰ƒÃ‰]À‰$ÇEÈèîIÿÿ‹E‹]ƒÀ‰D$‹‹@ôÇEÈ؉$èûEĉ$èp-ûÿƒÄT[]ÃÅ‹EÈ‹UÌ…À‰U¼tƒèt ‹EÀÇEȉ$è±Mÿÿ‹M ‹]‹A‹Q‰‹@ô‰‹E¼ÇCÇEÈÿÿÿÿ‰$è0ûÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà ÃKÇEèRJ‰eìèA,ûÿ‹U‹M‹EÇlbMƒÂxÇAx€bMƒÁÇ@È`M‰U¼‰MÀ‰ $ÇEÈèi1ÿÿ‹EÇEȃÀ0‰$èDÿÿ‹U‹EÀÇBÈdMƒÀ‰$èÌÊ‹M¡äXM‹èXM‰‹@ô‰‹E¼ÇAÇAx`mMÇEÈÿÿÿÿ‰$èÆï‹U‰$èKŽEĉ$è0,ûÿÉÃÅ‹EÈ‹MÌ…À‰M¸tƒèt ‹EÇEȃÀ0‰$è²ÿþÿ‹EÇ@ÈdM‹EÀƒÀ‰$è:Ê¡äXM‹U‹M‰‹@ô‹èXM‰‹E¼ÇAÇAx`mMÇEȉ$è1ï‹U¸ÇEÈÿÿÿÿ‰$èŸ.ûÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàìÂKÇEèÇJ‰eìèÁ*ûÿ‹U‹M‹EÇlbMƒÂxÇAx€bMƒÁÇ@È`M‰U¼‰MÀ‰ $ÇEÈèé/ÿÿ‹EÇEȃÀ0‰$èÄþþÿ‹U‹EÀÇBÈdMƒÀ‰$èLÉ‹M¡äXM‹èXM‰‹@ô‰‹E¼ÇAÇAx`mMÇEÈÿÿÿÿ‰$èFîEĉ$è»*ûÿÉÃÅ‹EÈ‹UÌ…À‰U¸tƒèt ‹EÇEȃÀ0‰$è=þþÿ‹M‹EÀÇAÈdMƒÀ‰$èÅÈ¡äXM‹U‹M‰‹@ô‹èXM‰‹E¼ÇAÇAx`mMÇEȉ$è¼í‹U¸ÇEÈÿÿÿÿ‰$è*-ûÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàJÃKÇEèJ‰eìèQ)ûÿ‹U ‹M‹‹R ‰‹@ô‹M‰‹EƒÁ‰MÀÇ@È`M‰ $ÇEÈè|.ÿÿ‹EÇEȃÀ0‰$èWýþÿ‹U‹EÀÇBÈdMƒÀ‰$èßÇ‹M ‹U‹A‰‹@ô‹Q‹M‰EÄÇA‰$èf)ûÿÉÃÅ‹EÈ‹UÌ…À‰U¼tƒèt ‹EÇEȃÀ0‰$èèüþÿ‹M‹EÀÇAÈdMƒÀ‰$èpÇ‹U ‹M‹B‹R‰‹@ô‹M‰‹E¼ÇAÇEÈÿÿÿÿ‰$èð+ûÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà>ÑKÇEè£J‰eìè!(ûÿ‹UƒÂ ‰UÀ‰$èë‹EÀ‹M‹ôXMÇ@pfÇ@tÆ@vÇ@xÇ@|Ç€€Ç€„‹Bô‰‹øXMÇA `mM‰‹ôXMÇA‹M ‹E‰L$BôÇEȉ$è³ ‹M‹üXM‰È‰QƒÀBô‹YM‰‹U ‰$ÇEȉT$è ‹MEÄǬbMÇA ÔbMÇAÀbM‰$èß'ûÿÉÃÅ‹EÈ‹MÌ…À‰M¼t(ƒèt ‹ôXM‹E‹M‰‹Bô‹øXM‰ÇA‹E‹UÀÇ@ `mM‰$ÇEÈè ë‹M¼ÇEÈÿÿÿÿ‰ $èw*ûÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàLÑKÇEè"J‰eìè¡&ûÿ‹UƒÂ ‰UÀ‰$èê‹EÀ‹M‹ôXMÇ@pfÇ@tÆ@vÇ@xÇ@|Ç€€Ç€„‹Bô‰‹øXMÇA `mM‰‰ÈÇA‹ ôXMÇD$AôÇEȉ$è3 ‹üXM‹E‰PƒÀBô‹YM‰ÇD$‰$ÇEÈè ‹UEÄǬbMÇB ÔbMÇBÀbM‰$è`&ûÿÉÃÅ‹EÈ‹MÌ…À‰M¼t$ƒèt ‹M¡ôXM‹øXM‰‹@ô‰ÇA‹E‹UÀÇ@ `mM‰$ÇEÈèŽé‹M¼ÇEÈÿÿÿÿ‰ $èü(ûÿU‰åEøSƒìT‰EäEĉ$ÇEܰ´KÇEà8ÑKÇEèTJ‰eìè %ûÿ‹U ‹M‹] ‹B‹Pô‰‹K‹]‰ ‹UÇC‰T$‹@ôÇEÈÿÿÿÿ؉$è ‹M ‰ØƒÀ‹Q ‰S‹]Bô‹Q‰‰\$‰$ÇEÈèØ‹U ‹M‹‰Ó‹R‰‹@ô‰‹C‰AEĉ$è2%ûÿƒÄT[]ÃÅ‹M ‹]‹UÌ‹A‹I‰‹@ô‹]‰ ÇC‰$ÇEÈÿÿÿÿèù'ûÿU‰åEøSƒìT‰EäEĉ$ÇEܰ´KÇEàFÑKÇEèZJ‰eìè $ûÿ‹U ‹M‹] ‹B‹Pô‰‹K‹]‰ ÇCÇD$‹@ôÇEÈÿÿÿÿ؉$è‹E ‹M ‹P ‰ØƒÀ‰SBô‹Q‰ÇD$‰$ÇEÈèÓ‹] ‹U‹M‹‰‹@ô‹S‰‹C‰AEĉ$è,$ûÿƒÄT[]ÃÅ‹] ‹M‹UÌ‹C‰‹@ô‹K‹]‰ ÇC‰$ÇEÈÿÿÿÿèó&ûÿU‰åSƒì‹]¡üXM‹ YMS ‰C‹@ô‰L¡ôXM‹ øXM‰‹@ô‰ ÇCÇC `mM‰$è%ç‰]ƒÄ[]騅U‰åSƒì‹E‹üXM‹YMH ‰P‹Rô‰\‹ôXM‹øXM‰‹Rô‰Ç@Ç@ `mM‰MƒÄ[]龿U‰å‹U S‹E‹ ‹Z‹Iô‰‹J ‹Z‰H‹Iô‰\‹J‹R‰‹Iô‰Ç@[]ÃU‰åSƒì‹E‹]ƒÈ‰D$‹E ‰D$C‰$èÊÿÿ…ÀtÇE ‹Xô‰]ƒÄ[]éÝý‹Xô‹C‰]ƒÈ‰E ƒÄ[]éÂýU‰åSƒì‹E‹]ƒÈ‰D$‹E ‹‰D$C‰$èhÿÿ…ÀtÇE ‹Xô‰]ƒÄ[]é{ý‹Xô‹C‰]ƒÈ‰E ƒÄ[]é`ýU‰åSƒì‹]C‰$èkÿÿ…ÀtƒÄ[]ËXô‹C‰$ƒÈ‰D$è)ýƒÄ[]ÃU‰åƒìƒE,Éé ,üÿU‰åEøSƒìT‰EäEĉ$ÇEܰ´KÇEàôÁKÇEèþJ‰eìè!ûÿ‹UƒÂp‰UÀ‰$èä‹]À‹M¡YM‹YMÆCtÇCpÆCuÇCxÇC|ǃ€Çƒ„‰‹@ôÇApPmMȉÇD$‰$ÇEÈèü‹EÇìbMÇ@pcMƒÀ‰E¼‰$ÇEÈèqÿÿ‹E‰$ÇEȃÀ‰D$èÈû‹E‹U¼ƒÈ‰D$‹E ‰$‰D$èÜÿþÿ…Àt8‹]ÇD$‹‹@ôÇEÈ؉$èçûEĉ$è¬ ûÿƒÄT[]ö‹M‹‹PôÊ‹B‰$ƒÈ‰D$è´ûë˃Å‹ẺE¸‹Eȃøt ƒøtT…Àt" ‹E¸‹YM‹M‹]‰‹Rô‹ YM‰E¸‰ ‹U‹MÀÇBpPmM‰ $ÇEÈèªã‹]¸ÇEÈÿÿÿÿ‰$è#ûÿ‹E¼ÇEȉ$è†ÿÿ‹E¸ëžU‰åEøSƒìT‰EäEĉ$ÇEܰ´KÇEàÂKÇEèÞ!J‰eìè0ûÿ‹UƒÂp‰UÀ‰$èŸâ‹]À‹M¡YM‹YMÆCtÇCpÆCuÇCxÇC|ǃ€Çƒ„‰‹@ôÇApPmMȉÇD$‰$ÇEÈè&ú‹EÇìbMÇ@pcMƒÀ‰E¼‰$ÇEÈè‘ÿÿ‹E‰$ÇEȃÀ‰D$èèù‹E‹U¼ƒÈ‰D$‹E ‹‰$‰D$èúýþÿ…Àt6‹]ÇD$‹‹@ôÇEÈ؉$èúEĉ$èÊûÿƒÄT[]Ãt&‹M‹‹PôÊ‹B‰$ƒÈ‰D$èÔùë̓Å‹ẺE¸‹Eȃøt ƒøtT…Àt" ‹E¸‹YM‹M‹]‰‹Rô‹ YM‰E¸‰ ‹U‹MÀÇBpPmM‰ $ÇEÈèÊá‹]¸ÇEÈÿÿÿÿ‰$è8!ûÿ‹E¼ÇEȉ$è¦ÿÿ‹E¸ëžU‰åEøSƒìT‰EäEĉ$ÇEܰ´KÇEàâÁKÇEèb#J‰eìèPûÿ‹UƒÂp‰UÀ‰$è¿à‹]À‹M¡YM‹YMÆCtÇApPmMÇCpÆCuÇCxÇC|ǃ€Çƒ„‰‰È‹ YMBô‰ÇD$‰$ÇEÈè@ø‹]ÇìbMÇCpcMƒÃ‰]¼‰$ÇEÈè«ÿÿ‹EÇEȃÀ‰D$‹EÀ‰$èÿ÷Eĉ$è$ûÿƒÄT[]ÃÅ‹ẺE¸‹Eȃøt ƒøtQ…Àt ‹E¸‹YM‹M‹Sô‰‹YM‰E¸‰‹U‹MÀÇBpPmM‰ $ÇEÈèIà‹]¸ÇEÈÿÿÿÿ‰$è·ûÿ‹U¼ÇEȉ$è%ÿÿ‹E¸ë¡U‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàìÁKÇEèþ$J‰eìèÑûÿ‹U ‹M‹B‹R‰‹@ôȉ‰$ÇD$ÇEÈÿÿÿÿè÷‹U ‹M‹‹R ‰‹@ô‹M‰ƒÁ‰MÀ‰ $ÇEÈèzÿÿ‹E‹UƒÀ‰D$‹‹@ôÇEÈЉ$èÇö‹E‹MÀƒÈ‰D$‹E‰ $‰D$èÛúþÿ…Àt.‹MÇD$‹‹@ôÇEÈȉ$èæöEĉ$è«ûÿÉËU‹Pô‹B‰$ƒÈ‰D$è¿öEĉ$è„ûÿÉÃÅ‹EÈ‹UÌ…À‰U¼tƒèt ‹EÀÇEȉ$èÙÿÿ‹M ‹U‹A‰‹@ô‹Q‹M‰‹E¼ÇEÈÿÿÿÿ‰$è0ûÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàþÁKÇEèw&J‰eìèaûÿ‹U ‹M‹B‹R‰‹@ôȉ‰$ÇD$ÇEÈÿÿÿÿè¥õ‹U ‹M‹‹R ‰‹@ô‹M‰ƒÁ‰MÀ‰ $ÇEÈè ÿÿ‹E‹UƒÀ‰D$‹‹@ôÇEÈЉ$èWõ‹E‹MÀƒÈ‰D$‹E‹‰ $‰D$èiùþÿ…Àt5‹MÇD$‹‹@ôÇEÈȉ$ètõEĉ$è9ûÿÉô&‹U‹Pô‹B‰$ƒÈ‰D$èFõEĉ$è ûÿÉÃÅ‹EÈ‹UÌ…À‰U¼tƒèt ‹EÀÇEȉ$è`ÿÿ‹M ‹U‹A‰‹@ô‹Q‹M‰‹E¼ÇEÈÿÿÿÿ‰$è·ûÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÚÁKÇEè†'J‰eìèáûÿ‹U ‹M‹B‹R‰‹@ôȉ‰$ÇD$ÇEÈÿÿÿÿè%ô‹U ‹M‹‹R ‰‹@ô‹M‰ƒÁ‰MÀ‰ $ÇEÈèŠÿÿ‹E‹UƒÀ‰D$‹‹@ôÇEÈЉ$è×óEĉ$èüûÿÉÃÅ‹EÈ‹UÌ…À‰U¼tƒèt ‹MÀÇEȉ $èQÿÿ‹M ‹U‹A‰‹@ô‹Q‹M‰‹E¼ÇEÈÿÿÿÿ‰$è¨ûÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàŒÁKÇEè»(J‰eìèÑûÿ‹U‹M‹EÇìbMƒÂpÇApcMƒÁÇ@ˆ`M‰U¼‰MÀ‰ $ÇEÈè‰øþÿ‹EÇEȃÀ,‰$èÔëþÿ‹U‹EÀÇBˆdMƒÀ‰$è\¶‹M¡YM‹YM‰‹@ô‰‹E¼ÇApPmMÇEÈÿÿÿÿ‰$è]Û‹U‰$èâyEĉ$èÇûÿÉÃÅ‹EÈ‹MÌ…À‰M¸tƒèt ‹EÇEȃÀ,‰$èIëþÿ‹EÇ@ˆdM‹EÀƒÀ‰$èѵ¡YM‹U‹M‰‹@ô‹YM‰‹E¼ÇApPmMÇEȉ$èÏÚ‹U¸ÇEÈÿÿÿÿ‰$è=ûÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàdÁKÇEè *J‰eìèaûÿ‹U‹M‹EÇìbMƒÂpÇApcMƒÁÇ@ˆ`M‰U¼‰MÀ‰ $ÇEÈè÷þÿ‹EÇEȃÀ,‰$èdêþÿ‹U‹EÀÇBˆdMƒÀ‰$èì´‹M¡YM‹YM‰‹@ô‰‹E¼ÇApPmMÇEÈÿÿÿÿ‰$èíÙEĉ$èbûÿÉÃÅ‹EÈ‹UÌ…À‰U¸tƒèt ‹EÇEȃÀ,‰$èäéþÿ‹M‹EÀÇAˆdMƒÀ‰$èl´¡YM‹U‹M‰‹@ô‹YM‰‹E¼ÇApPmMÇEȉ$èjÙ‹U¸ÇEÈÿÿÿÿ‰$èØûÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÂKÇEèe+J‰eìèûÿ‹U ‹M‹‹R ‰‹@ô‹M‰‹EƒÁ‰MÀÇ@ˆ`M‰ $ÇEÈè¼õþÿ‹EÇEȃÀ,‰$èéþÿ‹U‹EÀÇBˆdMƒÀ‰$賋M ‹U‹A‰‹@ô‹Q‹M‰Eĉ$èûÿÉÃÅ‹EÈ‹UÌ…À‰U¼tƒèt ‹EÇEȃÀ,‰$èŸèþÿ‹M‹EÀÇAˆdMƒÀ‰$è'³‹U ‹M‹B‹R‰‹@ô‹M‰‹E¼ÇEÈÿÿÿÿ‰$è®ûÿU‰åSƒì‹E‹]ƒÈ‰D$‹E ‰D$C‰$èêÿÿ…ÀtÇE ‹Xô‰]ƒÄ[]é=ø‹Xô‹C‰]ƒÈ‰E ƒÄ[]é"øU‰åSƒì‹E‹]ƒÈ‰D$‹E ‹‰D$C‰$èˆÿÿ…ÀtÇE ‹Xô‰]ƒÄ[]éÛ÷‹Xô‹C‰]ƒÈ‰E ƒÄ[]éÀ÷U‰åSƒì‹]C‰$è‹ÿÿ…ÀtƒÄ[]ËXô‹C‰$ƒÈ‰D$è‰÷ƒÄ[]ÃU‰åƒìƒE,ÉéPüÿU‰åEøSƒìT‰EäEĉ$ÇEܰ´KÇEàlÃKÇEèN.J‰eìèÀûÿ‹UƒÂt‰UÀ‰$è/Ö‹]À‹M¡$YM‹(YMÇCpfÇCtÆCvÇCxÇC|ǃ€Çƒ„‰‹@ôÇAt`mMȉÇD$‰$ÇEÈèdö‹EÇ,cMÇ@t@cMƒÀ‰E¼‰$ÇEÈè/ÿÿ‹E‰$ÇEȃÀ‰D$è&ö‹E‹U¼ƒÈ‰D$‹E ‰$‰D$èúÿÿ…Àt6‹]ÇD$‹‹@ôÇEÈ؉$èEöEĉ$èZûÿƒÄT[]Ãt&‹M‹‹PôÊ‹B‰$ƒÈ‰D$èöë̓Å‹ẺE¸‹Eȃøt ƒøtT…Àt" ‹E¸‹$YM‹M‹]‰‹Rô‹ (YM‰E¸‰ ‹U‹MÀÇBt`mM‰ $ÇEÈèZÕ‹]¸ÇEÈÿÿÿÿ‰$èÈûÿ‹E¼ÇEȉ$è&2ÿÿ‹E¸ëžU‰åEøSƒìT‰EäEĉ$ÇEܰ´KÇEà~ÃKÇEè.0J‰eìèàûÿ‹UƒÂt‰UÀ‰$èOÔ‹]À‹M¡$YM‹(YMÇCpfÇCtÆCvÇCxÇC|ǃ€Çƒ„‰‹@ôÇAt`mMȉÇD$‰$ÇEÈè„ô‹EÇ,cMÇ@t@cMƒÀ‰E¼‰$ÇEÈè/-ÿÿ‹E‰$ÇEȃÀ‰D$èFô‹E‹U¼ƒÈ‰D$‹E ‹‰$‰D$èÿÿ…Àt4‹]ÇD$‹‹@ôÇEÈ؉$ècôEĉ$èxûÿƒÄT[]Ãf‹M‹‹PôÊ‹B‰$ƒÈ‰D$è4ôëσÅ‹ẺE¸‹Eȃøt ƒøtT…Àt" ‹E¸‹$YM‹M‹]‰‹Rô‹ (YM‰E¸‰ ‹U‹MÀÇBt`mM‰ $ÇEÈèzÓ‹]¸ÇEÈÿÿÿÿ‰$èèûÿ‹E¼ÇEȉ$èF0ÿÿ‹E¸ëžU‰åEøSƒìT‰EäEĉ$ÇEܰ´KÇEàZÃKÇEè´1J‰eìèûÿ‹UƒÂt‰UÀ‰$èoÒ‹]À‹M¡$YM‹$YMÇCpÇAt`mMfÇCtÆCvÇCxÇC|ǃ€Çƒ„‰‰È‹ (YMBô‰ÇD$‰$ÇEÈèžò‹]Ç,cMÇCt@cMƒÃ‰]¼‰$ÇEÈèI+ÿÿ‹EÇEȃÀ‰D$‹EÀ‰$è]òEĉ$èÒûÿƒÄT[]ÃÅ‹ẺE¸‹Eȃøt ƒøtQ…Àt ‹E¸‹$YM‹M‹Sô‰‹(YM‰E¸‰‹U‹MÀÇBt`mM‰ $ÇEÈè÷Ñ‹]¸ÇEÈÿÿÿÿ‰$èeûÿ‹U¼ÇEȉ$èÃ.ÿÿ‹E¸ë¡U‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàdÃKÇEè^3J‰eìèq ûÿ‹U ‹M‹B‹R‰‹@ôȉ‰$ÇD$ÇEÈÿÿÿÿèeñ‹U ‹M‹‹R ‰‹@ô‹M‰ƒÁ‰MÀ‰ $ÇEÈè *ÿÿ‹E‹UƒÀ‰D$‹‹@ôÇEÈЉ$èñ‹E‹MÀƒÈ‰D$‹E‰ $‰D$èëÿÿ…Àt.‹MÇD$‹‹@ôÇEÈȉ$è6ñEĉ$èK ûÿÉËU‹Pô‹B‰$ƒÈ‰D$èñEĉ$è$ ûÿÉÃÅ‹EÈ‹UÌ…À‰U¼tƒèt ‹EÀÇEȉ$èi-ÿÿ‹M ‹U‹A‰‹@ô‹Q‹M‰‹E¼ÇEÈÿÿÿÿ‰$èÐûÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàvÃKÇEè×4J‰eìè ûÿ‹U ‹M‹B‹R‰‹@ôȉ‰$ÇD$ÇEÈÿÿÿÿèõï‹U ‹M‹‹R ‰‹@ô‹M‰ƒÁ‰MÀ‰ $ÇEÈèš(ÿÿ‹E‹UƒÀ‰D$‹‹@ôÇEÈЉ$è§ï‹E‹MÀƒÈ‰D$‹E‹‰ $‰D$èyÿÿ…Àt5‹MÇD$‹‹@ôÇEÈȉ$èÄïEĉ$èÙ ûÿÉô&‹U‹Pô‹B‰$ƒÈ‰D$è–ïEĉ$è« ûÿÉÃÅ‹EÈ‹UÌ…À‰U¼tƒèt ‹EÀÇEȉ$èð+ÿÿ‹M ‹U‹A‰‹@ô‹Q‹M‰‹E¼ÇEÈÿÿÿÿ‰$èWûÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàRÃKÇEèæ5J‰eìè ûÿ‹U ‹M‹B‹R‰‹@ôȉ‰$ÇD$ÇEÈÿÿÿÿèuî‹U ‹M‹‹R ‰‹@ô‹M‰ƒÁ‰MÀ‰ $ÇEÈè'ÿÿ‹E‹UƒÀ‰D$‹‹@ôÇEÈЉ$è'îEĉ$èœ ûÿÉÃÅ‹EÈ‹UÌ…À‰U¼tƒèt ‹MÀÇEȉ $èá*ÿÿ‹M ‹U‹A‰‹@ô‹Q‹M‰‹E¼ÇEÈÿÿÿÿ‰$èH ûÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÃKÇEè7J‰eìèq ûÿ‹U‹M‹EÇ,cMƒÂtÇAt@cMƒÁÇ@È`M‰U¼‰MÀ‰ $ÇEÈè™ÿÿ‹EÇEȃÀ,‰$ètÝþÿ‹U‹EÀÇBÈdMƒÀ‰$èü§‹M¡$YM‹(YM‰‹@ô‰‹E¼ÇAt`mMÇEÈÿÿÿÿ‰$èýÌ‹U‰$è‚kEĉ$èg ûÿÉÃÅ‹EÈ‹MÌ…À‰M¸tƒèt ‹EÇEȃÀ,‰$èéÜþÿ‹EÇ@ÈdM‹EÀƒÀ‰$èq§¡$YM‹U‹M‰‹@ô‹(YM‰‹E¼ÇAt`mMÇEȉ$èoÌ‹U¸ÇEÈÿÿÿÿ‰$èÝ ûÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàäÂKÇEè€8J‰eìèûÿ‹U‹M‹EÇ,cMƒÂtÇAt@cMƒÁÇ@È`M‰U¼‰MÀ‰ $ÇEÈè) ÿÿ‹EÇEȃÀ,‰$èÜþÿ‹U‹EÀÇBÈdMƒÀ‰$茦‹M¡$YM‹(YM‰‹@ô‰‹E¼ÇAt`mMÇEÈÿÿÿÿ‰$èËEĉ$èûÿÉÃÅ‹EÈ‹UÌ…À‰U¸tƒèt ‹EÇEȃÀ,‰$è„Ûþÿ‹M‹EÀÇAÈdMƒÀ‰$è ¦¡$YM‹U‹M‰‹@ô‹(YM‰‹E¼ÇAt`mMÇEȉ$è Ë‹U¸ÇEÈÿÿÿÿ‰$èx ûÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàˆÃKÇEèÅ9J‰eìè¡ûÿ‹U ‹M‹‹R ‰‹@ô‹M‰‹EƒÁ‰MÀÇ@È`M‰ $ÇEÈèÌ ÿÿ‹EÇEȃÀ,‰$è§Úþÿ‹U‹EÀÇBÈdMƒÀ‰$è/¥‹M ‹U‹A‰‹@ô‹Q‹M‰Eĉ$è½ûÿÉÃÅ‹EÈ‹UÌ…À‰U¼tƒèt ‹EÇEȃÀ,‰$è?Úþÿ‹M‹EÀÇAÈdMƒÀ‰$èǤ‹U ‹M‹B‹R‰‹@ô‹M‰‹E¼ÇEÈÿÿÿÿ‰$èN ûÿU‰åW¿ü MVEøƒìP‰EäEĉ$ÇEܰ´KÇEàªÒKÇEèû:J‰eìèjûÿ‹EÇEÈÿÿÿÿ‰D$‹E‰$è1ª‹E¹‹u ÇhcMó¦t‹u ¿þ M¹ó¦uEĉ$èÀûÿƒÄP^_]ËEÇEȃÀ‰E¼‰$èaŸ‹E ÇD$‰D$‹E¼‰$èמ뺃Å‹EÌÇEȉEÀ‹E‰$èjª‹EÀÇEÈÿÿÿÿ‰$èXûÿU‰åW¿ü MVEøƒìP‰EäEĉ$ÇEܰ´KÇEà¤ÒKÇEèë;J‰eìèzûÿ‹EÇEÈÿÿÿÿ‰D$‹E‰$èA©‹E¹‹u ÇhcMó¦t‹u ¿þ M¹ó¦uEĉ$èÐûÿƒÄP^_]ËEÇEȃÀ‰E¼‰$èqž‹E ÇD$‰D$‹E¼‰$èç뺃Å‹EÌÇEȉEÀ‹E‰$èz©‹EÀÇEÈÿÿÿÿ‰$èhûÿU‰åSƒì‹]ÇhcM‰$èH©‰]ƒÄ[]éKfU‰åƒì‹EÇhcMÉé©U‰åƒì‹EÇhcMÉéû¨U‰åW¿àMVEøƒìP‰EäEĉ$ÇEܰ´KÇEà:ÎKÇEèK=J‰eìèûÿ‹EÇEÈÿÿÿÿ‰D$‹E‰$è©‹E¹‹u ǨcMó¦t‹u ¿âM¹ó¦uEĉ$èpûÿƒÄP^_]ËEÇEȃÀ‰E¼‰$è‹E ÇD$‰D$‹E¼‰$臜뺃Å‹EÌÇEȉEÀ‹E‰$躩‹EÀÇEÈÿÿÿÿ‰$èûÿU‰åW¿àMVEøƒìP‰EäEĉ$ÇEܰ´KÇEà4ÎKÇEè;>J‰eìè*ûÿ‹EÇEÈÿÿÿÿ‰D$‹E‰$葨‹E¹‹u ǨcMó¦t‹u ¿âM¹ó¦uEĉ$è€ûÿƒÄP^_]ËEÇEȃÀ‰E¼‰$è!œ‹E ÇD$‰D$‹E¼‰$藛뺃Å‹EÌÇEȉEÀ‹E‰$èʨ‹EÀÇEÈÿÿÿÿ‰$èûÿU‰åSƒì‹]ǨcM‰$蘨‰]ƒÄ[]éûcU‰åƒì‹EǨcMÉék¨U‰åƒì‹EǨcMÉéK¨U‰åWVEøƒìP‰EäEĉ$ÇEܰ´KÇEàÊÒKÇEè¦?J‰eìèÏûÿ1À‹Uƒ}•À‰BÇHjMÇEÈènš‹U¿ü M¹‹u ‰BÇècMó¦t‹u ¿þ M¹ó¦uEĉ$èûÿƒÄP^_]ËEÇEȃÀ‰E¼‰$è¶š‹U ‹E¼ÇD$‰T$‰$è,šëºƒÅ‹EÈ‹UÌ…À‰UÀtƒèt& ‹EÇEȉ$èѪ‹UÀÇEÈÿÿÿÿ‰$èŸûÿ‹EÇEȉ$èš‹UÀÇEÈÿÿÿÿ‰$è{ûÿU‰åWVEøƒìP‰EäEĉ$ÇEܰ´KÇEàÂÒKÇEèÖ@J‰eìèŸÿúÿ1À‹Uƒ}•À‰BÇHjMÇEÈè>™‹U¿ü M¹‹u ‰BÇècMó¦t‹u ¿þ M¹ó¦uEĉ$èåÿúÿƒÄP^_]ËEÇEȃÀ‰E¼‰$膙‹U ‹E¼ÇD$‰T$‰$èü˜ëºƒÅ‹EÈ‹UÌ…À‰UÀtƒèt& ‹EÇEȉ$è¡©‹UÀÇEÈÿÿÿÿ‰$èoûÿ‹EÇEȉ$è]™‹UÀÇEÈÿÿÿÿ‰$èKûÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàrÑKÇEè´AJ‰eìèqþúÿ‹EÇHjMƒÀ‰$ÇEÈ趘‹EÇEÈÿÿÿÿ‰$è䘋E‰$èé`Eĉ$èÎþúÿÉÃÅ‹EÌÇEȉEÀ‹E‰$豘‹EÀÇEÈÿÿÿÿ‰$èŸûÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàlÑKÇEèYBJ‰eìèÁýúÿ‹EÇHjMƒÀ‰$ÇEÈ蘋EÇEÈÿÿÿÿ‰$è4˜Eĉ$è)þúÿÉÃÅ‹EÌÇEȉEÀ‹E‰$è ˜‹EÀÇEÈÿÿÿÿ‰$èúûÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÒÒKÇEèùBJ‰eìè!ýúÿ‹EÇHjMƒÀ‰$ÇEÈèf—‹EÇEÈÿÿÿÿ‰$è”—Eĉ$è‰ýúÿÉÃÅ‹EÌÇEȉEÀ‹E‰$èl—‹EÀÇEÈÿÿÿÿ‰$èZûÿU‰åWVEøƒìP‰EäEĉ$ÇEܰ´KÇEàZÎKÇEèöCJ‰eìèüúÿ1À‹Uƒ}•À‰BÇhjMÇEÈè–‹U¿àM¹‹u ‰BÇdMó¦t‹u ¿âM¹ó¦uEĉ$èÅüúÿƒÄP^_]ËEÇEȃÀ‰E¼‰$èf–‹U ‹E¼ÇD$‰T$‰$èܕ뺃Å‹EÈ‹UÌ…À‰UÀtƒèt& ‹EÇEȉ$èñ©‹UÀÇEÈÿÿÿÿ‰$èOÿúÿ‹EÇEȉ$è=–‹UÀÇEÈÿÿÿÿ‰$è+ÿúÿU‰åWVEøƒìP‰EäEĉ$ÇEܰ´KÇEàRÎKÇEè&EJ‰eìèOûúÿ1À‹Uƒ}•À‰BÇhjMÇEÈèU¿àM¹‹u ‰BÇdMó¦t‹u ¿âM¹ó¦uEĉ$è•ûúÿƒÄP^_]ËEÇEȃÀ‰E¼‰$è6•‹U ‹E¼ÇD$‰T$‰$謔뺃Å‹EÈ‹UÌ…À‰UÀtƒèt& ‹EÇEȉ$èÁ¨‹UÀÇEÈÿÿÿÿ‰$èþúÿ‹EÇEȉ$è •‹UÀÇEÈÿÿÿÿ‰$èûýúÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàüÌKÇEèFJ‰eìè!úúÿ‹EÇhjMƒÀ‰$ÇEÈèf”‹EÇEÈÿÿÿÿ‰$è””‹E‰$è™\Eĉ$è~úúÿÉÃÅ‹EÌÇEȉEÀ‹E‰$èa”‹EÀÇEÈÿÿÿÿ‰$èOýúÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÍKÇEè©FJ‰eìèqùúÿ‹EÇhjMƒÀ‰$ÇEÈè¶“‹EÇEÈÿÿÿÿ‰$èä“Eĉ$èÙùúÿÉÃÅ‹EÌÇEȉEÀ‹E‰$輓‹EÀÇEÈÿÿÿÿ‰$èªüúÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàbÎKÇEèIGJ‰eìèÑøúÿ‹EÇhjMƒÀ‰$ÇEÈè“‹EÇEÈÿÿÿÿ‰$èD“Eĉ$è9ùúÿÉÃÅ‹EÌÇEȉEÀ‹E‰$è“‹EÀÇEÈÿÿÿÿ‰$è üúÿU‰åƒì‹EÇ(dMÉéûZU‰å‹EÇ(dM]ÃU‰åSƒì‹]‹E ‰$‰D$è±ÿÿÇhdMƒÄ[]ÃU‰åSƒì‹]ÇhdM‰$舱ÿÿ‰]ƒÄ[]é‹ZU‰åƒì‹EÇhdMÉé[±ÿÿU‰åƒì8‹E ‹M‰]ô‹]‰uø‹u‰}ü‹}‹‰L$‹M‰t$‰|$ ‰D$‰$‰L$ÿR‰Ø‹uø‹]ô‹}üƒì‰ì]ÂU‰åƒìH‹E ‰]ô‹M‰uø‹]‰}ü‹u‹8‹E ‹U‰u؉]܉D$‹E ‰Mà‰Uä‰t$‰D$‹E‰\$ ‰L$‰T$‰$ÿW‹E‹]ô‹uø‹}üƒì‰ì]ÂU‰å‹E‹U ‰P‹U‰P‹U‰P ]ÃU‰å‹E‹U ‰P‰P‹U‰P]ÃU1À‰å]ÃU‰å‹E‹U P]ÃU‰å]ÃU‰å‹E‹U P]ÃU‰åƒì‹E‹P;P s¶ÉˉE‹B$ÉÿàU‰åƒì‹E‹‹B ÉÿàU‰åSƒì‹U‹] ‹J;Jsˆ¶ÃƒBƒÄ[]Ë ¶Ã‰E ‰U‹A4Z[]ÿàU‰åƒì‹E‹‹B0ÉÿàU‰åSƒì‹]‹‰$ÿP$‰Â¸ÿÿÿÿƒúÿt ‹S¶ƒÂ‰SƒÄ[]ÃU‰åƒì‹U‹J;J s ¶ƒÁ‰JÉˉU‹@(ÉÿàU‰å‹E]ÃU‰åSƒì‹]‹C‹S 9ÐsƒÀ‰C9Âv#¶ƒÄ[]ˉ$ÿP(‰ÂƒÈÿƒÂtè‹C‹S ëÙ‹‰]‹@$ƒÄ[]ÿàU‰åƒì‹E‹P;P sƒÂ‰PÉô&‹‰E‹B(ÉÿàU‰åWVS1Ûƒì‹}9]~-‹W‹w )Öu3‹‰<$ÿP(ƒøÿt‹U ƒÃˆƒÂ9]‰U ÖvƒÄ‰Ø[^_]ö‹E‰T$)Ø9ðNð‹E ‰t$ó‰$è!–ûÿw9]~Éu ë¡U‰åWVS1Ûƒì‹}9]~-‹W‹w)Öu3‹M ‹¶‰<$‰T$ÿP4ƒøÿt ƒÃƒE 9]ӃĉØ[^_]ö‹E‰$)Ø9ðNð‹E ‰t$ó‰D$è¡•ûÿw9]~Éu ë¡U‰åƒì‹E‹‹BÉÿàU‰å‹EÇÿÿÿÿÇ@ÿÿÿÿÇ@]ÂU‰åƒì‹EÇÿÿÿÿÇ@ÿÿÿÿÇ@ÉÂU‰åƒì‹E‹P9Ps Jÿ‰H¶BÿÉËÇD$ÿÿÿÿ‰$ÿR,ÉÃU‰åƒì‹U‹B +BtÉË‹@ÉÿàU¸ÿÿÿÿ‰å]ÃU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà,ÄKÇEèyMJ‰eìèÁòúÿ‹U ‹EƒÂ‰U¼‰T$‰$èÙ‹U ‹‹U‰T$‹U ‰$‹@ÇEÈÿЋU¼‹E‰$‰D$蹑Eĉ$èóúÿ‹EɃŋEÌ‹U‰EÀ‰$èC‘‹EÀÇEÈÿÿÿÿ‰$èáõúÿU¸ÿÿÿÿ‰å]ÃU‰åƒì‹E‹‹B ÉÿàU1À‰å]ÃU‰åSƒì‹E¶M ‹P9Pr‹¶É‰M ‰E‹B,ƒÄ[]ÿàt&8JÿZÿuÞ‰X¶BÿƒÄ[]ÃU¸ÿÿÿÿ‰å]ÃU‰åƒì‹U ‹E‹JLjdM‰H‹J‰H‹J ‰H ‹J‰H‹J‰H‹JƒÂ‰HƒÀ‰U ‰EÉ鈎U‰åƒì‹ELjdMÇ@Ç@Ç@ Ç@Ç@Ç@ƒÀ‰EÉékŽU‰åƒì‹U ‹E‹JLjdM‰H‹J‰H‹J ‰H ‹J‰H‹J‰H‹JƒÂ‰HƒÀ‰U ‰EÉéèU‰åƒì‹ELjdMÇ@Ç@Ç@ Ç@Ç@Ç@ƒÀ‰EÉéËU‰åSƒì‹]LjdMC‰$è5‰]ƒÄ[]éèRU‰åƒì‹ELjdMƒÀ‰EÉéU‰åƒì‹ELjdMƒÀ‰EÉéåŽU‰å‹E]ÃU‰åƒì8‹E ‹M‰]ô‹]‰uø‹u‰}ü‹}‹‰L$‹M‰t$‰|$ ‰D$‰$‰L$ÿR‰Ø‹uø‹]ô‹}üƒì‰ì]ÂU‰åƒìH‹E ‰]ô‹M‰uø‹]‰}ü‹u‹8‹E ‹U‰u؉]܉D$‹E ‰Mà‰Uä‰t$‰D$‹E‰\$ ‰L$‰T$‰$ÿW‹E‹]ô‹uø‹}üƒì‰ì]ÂU‰å‹E‹U ‰P‹U‰P‹U‰P ]ÃU‰å‹E‹U ‰P‰P‹U‰P]ÃU1À‰å]ÃU‰å‹E‹U ÒP]ÃU‰å]ÃU‰å‹E‹U ÒP]ÃU‰åƒì‹E‹P;P s·ÉˉE‹B$ÉÿàU‰åƒì‹E‹‹B ÉÿàU‰åSƒì‹U‹E ‹J;J‰Ãsf‰ƒÁ‰JƒÄ[]Ë·Û‰] ‰U‹@4Y[]ÿàU‰åƒì‹E‹‹B0ÉÿàU‰åSƒì‹]‹‰$ÿP$‰Â¸ÿÿÿÿfƒúÿt ‹S·ƒÂ‰SƒÄ[]ÃU‰åƒì‹U‹J;J s ·ƒÁ‰JÉˉU‹@(ÉÿàU‰å‹E]ÃU‰åSƒì‹]‹S;S s ·ƒÂ‰Sfƒøÿt*‹C;C s·ƒÄ[]ˉ$ÿP(ëß‹‰]‹@$ƒÄ[]ÿàƒÈÿëÜU‰åƒì‹E‹P;P sƒÂ‰PÉô&‹‰E‹B(ÉÿàU‰åWVS1Ûƒì‹}9]~.‹W‹w )ÖÑþu1‹‰<$ÿP(fƒøÿt‹U ƒÃf‰ƒÂ9]‰U ҃ĉØ[^_]Ãt&‹E‰T$)Ø9ðNð‹E ‰t$óö‰$èï ûÿw9]~Èu ë¡U‰åWVS1Ûƒì‹}9]~0‹W‹w)ÖÑþu1‹M ‹·‰<$‰T$ÿP4fƒøÿt ƒÃƒE 9]ЃÄ‰Ø[^_]Ãv‹E‰$)Ø9ðNð‹E ‰t$óö‰D$èo ûÿw9]~Êu ë¡U‰åƒì‹E‹‹BÉÿàU‰å‹EÇÿÿÿÿÇ@ÿÿÿÿÇ@]ÂU‰åƒì‹EÇÿÿÿÿÇ@ÿÿÿÿÇ@ÉÂU‰åƒì‹E‹P9Ps Jþ‰H·BþÉËÇD$ÿÿ‰$ÿR,ÉÃU‰åƒì‹U‹B +BÑøtÉË‹@ÉÿàU¸ÿÿÿÿ‰å]ÃU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà2ÄKÇEèYUJ‰eìèáêúÿ‹U ‹EƒÂ‰U¼‰T$‰$èù‡‹U ‹‹U‰T$‹U ‰$‹@ÇEÈÿЋU¼‹E‰$‰D$èÙ‰Eĉ$è.ëúÿ‹EɃŋEÌ‹U‰EÀ‰$èc‰‹EÀÇEÈÿÿÿÿ‰$èîúÿU¸ÿÿÿÿ‰å]ÃU‰åƒì‹E‹‹B ÉÿàU1À‰å]ÃU‰åSƒì‹U‹E ‹J9J‰Ãr‹·Û‰] ‰U‹@,ƒÄ[]ÿàt&f9Aþuáƒé‰JƒÄ[]ÃU¸ÿÿÿÿ‰å]ÃU‰åƒì‹U ‹E‹JÇÈdM‰H‹J‰H‹J ‰H ‹J‰H‹J‰H‹JƒÂ‰HƒÀ‰U ‰EÉ騆U‰åƒì‹EÇÈdMÇ@Ç@Ç@ Ç@Ç@Ç@ƒÀ‰EÉ鋆U‰åƒì‹U ‹E‹JÇÈdM‰H‹J‰H‹J ‰H ‹J‰H‹J‰H‹JƒÂ‰HƒÀ‰U ‰EÉé†U‰åƒì‹EÇÈdMÇ@Ç@Ç@ Ç@Ç@Ç@ƒÀ‰EÉéë…U‰åSƒì‹]ÇÈdMC‰$èU‡‰]ƒÄ[]éKU‰åƒì‹EÇÈdMƒÀ‰EÉé%‡U‰åƒì‹EÇÈdMƒÀ‰EÉé‡U‰å‹E]ÃU‰åW¿ü MVEøƒìP‰EäEĉ$ÇEܰ´KÇEàžÒKÇEè›XJ‰eìèÊçúÿ‹EÇEÈÿÿÿÿ‰D$‹E‰$èá­‹E¹‹u ÇeMó¦t‹u ¿þ M¹ó¦uEĉ$è èúÿƒÄP^_]ËEÇEȃÀ‰E¼‰$èÁ‹E ÇD$‰D$‹E¼‰$è7뺃Å‹EÌÇEȉEÀ‹E‰$誮‹EÀÇEÈÿÿÿÿ‰$è¸êúÿU‰åW¿ü MVEøƒìP‰EäEĉ$ÇEܰ´KÇEà˜ÒKÇEè‹YJ‰eìèÚæúÿ‹EÇEÈÿÿÿÿ‰D$‹E‰$èñ¬‹E¹‹u ÇeMó¦t‹u ¿þ M¹ó¦uEĉ$è0çúÿƒÄP^_]ËEÇEȃÀ‰E¼‰$èÑ€‹E ÇD$‰D$‹E¼‰$èG€ëºƒÅ‹EÌÇEȉEÀ‹E‰$躭‹EÀÇEÈÿÿÿÿ‰$èÈéúÿU‰åSƒì‹]ÇeM‰$舭‰]ƒÄ[]é«HU‰åƒì‹EÇeMÉé[­U‰åƒì‹EÇeMÉé;­U‰åW¿àMVEøƒìP‰EäEĉ$ÇEܰ´KÇEà.ÎKÇEèëZJ‰eìèzåúÿ‹EÇEÈÿÿÿÿ‰D$‹E‰$è1¯‹E¹‹u Ç(eMó¦t‹u ¿âM¹ó¦uEĉ$èÐåúÿƒÄP^_]ËEÇEȃÀ‰E¼‰$èq‹E ÇD$‰D$‹E¼‰$èç~뺃Å‹EÌÇEȉEÀ‹E‰$èú¯‹EÀÇEÈÿÿÿÿ‰$èhèúÿU‰åW¿àMVEøƒìP‰EäEĉ$ÇEܰ´KÇEà(ÎKÇEèÛ[J‰eìèŠäúÿ‹EÇEÈÿÿÿÿ‰D$‹E‰$èA®‹E¹‹u Ç(eMó¦t‹u ¿âM¹ó¦uEĉ$èàäúÿƒÄP^_]ËEÇEȃÀ‰E¼‰$è~‹E ÇD$‰D$‹E¼‰$è÷}뺃Å‹EÌÇEȉEÀ‹E‰$è ¯‹EÀÇEÈÿÿÿÿ‰$èxçúÿU‰åSƒì‹]Ç(eM‰$èØ®‰]ƒÄ[]é[FU‰åƒì‹EÇ(eMÉé«®U‰åƒì‹EÇ(eMÉé‹®U‰åWVEøƒì`‰EÔE´‰$ÇḚ´KÇEÐ,ÒKÇEØa]J‰eÜè/ãúÿ‹U1Àƒ}•À‰BÇlMÇBÇD$‰$ÇE¸è¼®‹E¿ü M¹‹u ÇHeMó¦t‹u ¿þ M¹ó¦uE´‰$èfãúÿƒÄ`^_]ËU EôÇD$‰$ÇE¸‰T$èŽ|‹Eô‰D$‹E‰$èL®Eô‰$èá|뮃Å‹E¸‹U¼…À‰U°tƒèt& ‹EÇE¸‰$èÖ²‹U°ÇE¸ÿÿÿÿ‰$èäåúÿ‹EÇE¸‰$èÒ|‹U°ÇE¸ÿÿÿÿ‰$èÀåúÿU‰åWVEøƒì`‰EÔE´‰$ÇḚ´KÇEÐ$ÒKÇEØ¡^J‰eÜèïáúÿ‹U1Àƒ}•À‰BÇlMÇBÇD$‰$ÇE¸è|­‹E¿ü M¹‹u ÇHeMó¦t‹u ¿þ M¹ó¦uE´‰$è&âúÿƒÄ`^_]ËU EôÇD$‰$ÇE¸‰T$èN{‹Eô‰D$‹E‰$è ­Eô‰$è¡{뮃Å‹E¸‹U¼…À‰U°tƒèt& ‹EÇE¸‰$è–±‹U°ÇE¸ÿÿÿÿ‰$è¤äúÿ‹EÇE¸‰$è’{‹U°ÇE¸ÿÿÿÿ‰$è€äúÿU‰åSƒì‹]ÇHeM‰$èH±‰]ƒÄ[]ékCU‰åƒì‹EÇHeMÉé±U‰åƒì‹EÇHeMÉéû°U‰åWVEøƒì`‰EÔE´‰$ÇḚ´KÇEмÍKÇEØQ`J‰eÜè?àúÿ‹U1Àƒ}•À‰BÇHlMÇBÇD$‰$ÇE¸è,±‹E¿àM¹‹u LjeMó¦t‹u ¿âM¹ó¦uE´‰$èvàúÿƒÄ`^_]ËU EôÇD$‰$ÇE¸‰T$èžy‹Eô‰D$‹E‰$è¼°Eô‰$èñy뮃Å‹E¸‹U¼…À‰U°tƒèt& ‹EÇE¸‰$èVµ‹U°ÇE¸ÿÿÿÿ‰$èôâúÿ‹EÇE¸‰$èây‹U°ÇE¸ÿÿÿÿ‰$èÐâúÿU‰åWVEøƒì`‰EÔE´‰$ÇḚ´KÇEдÍKÇEØ‘aJ‰eÜèÿÞúÿ‹U1Àƒ}•À‰BÇHlMÇBÇD$‰$ÇE¸è쯋E¿àM¹‹u LjeMó¦t‹u ¿âM¹ó¦uE´‰$è6ßúÿƒÄ`^_]ËU EôÇD$‰$ÇE¸‰T$è^x‹Eô‰D$‹E‰$è|¯Eô‰$è±x뮃Å‹E¸‹U¼…À‰U°tƒèt& ‹EÇE¸‰$è´‹U°ÇE¸ÿÿÿÿ‰$è´áúÿ‹EÇE¸‰$è¢x‹U°ÇE¸ÿÿÿÿ‰$èáúÿU‰åSƒì‹]LjeM‰$èȳ‰]ƒÄ[]é{@U‰åƒì‹ELjeMÉ雳U‰åƒì‹ELjeMÉé{³U1Ò‰å‹Eƒ}•‰PÇÈeM]ÃU1Ò‰å‹Eƒ}•‰PÇÈeM]ÃU‰åSƒì‹]LjlM‰$èÈw‰]ƒÄ[]éË?U‰åƒì‹ELjlMÉé›wU‰åƒì‹ELjlMÉé{wU1Ò‰å‹Eƒ}•‰PÇfM]ÃU1Ò‰å‹Eƒ}•‰PÇfM]ÃU‰åSƒì‹]ÇÈlM‰$èw‰]ƒÄ[]é?U‰åƒì‹EÇÈlMÉéëvU‰åƒì‹EÇÈlMÉéËvU1Ò‰å‹Eƒ}•‰PÇHfM]ÃU1Ò‰å‹Eƒ}•‰PÇHfM]ÃU‰åSƒì‹]ÇmM‰$èhv‰]ƒÄ[]ék>U‰åƒì‹EÇmMÉé;vU‰åƒì‹EÇmMÉévU1Ò‰å‹Eƒ}•‰PÇ`fM]ÃU1Ò‰å‹Eƒ}•‰PÇ`fM]ÃU‰åSƒì‹]Ç mM‰$è¸u‰]ƒÄ[]é»=U‰åƒì‹EÇ mMÉé‹uU‰åƒì‹EÇ mMÉékuU‰åSƒì‹]‹E ‰$‰D$è—“ÿÿÇxfMƒÄ[]ÃU‰åSƒì‹]ÇxfM‰$è”ÿÿ‰]ƒÄ[]é=U‰åƒì‹EÇxfMÉéë“ÿÿU‰åì˜Eø‰EÄE¤‰$ÇE¼°´KÇEÀØÒKÇEÈkJ‰eÌèÚúÿ‹U‹M ÆBd‰ $ÇE¨ÿÿÿÿè5Uì‰Á‰E ‹‰L$‰$‹@ÇE¨ÿЋUìƒì‹MBô‹Rô=pTL‰U˜‰Q …¼‹M˜ÇE¨‰ $èv<‹U˜‰E…Òt‹U˜´&ƃÀ9Ðuö‹EUè‹M ‹@ ‰E˜‹‰L$‰$‹@ÇE¨ÿЋE˜ƒì‹UÇD$ ÇE¨‰D$Eè‰T$‰$è÷Êûÿ‹Eè¹pTLƒè 9Á…ö‹M‹E‹U‹I ‰P1À…Ét ¶„Ò~€ú•À‹U‹M ˆBU䋉L$‰$‹@ÇE¨ÿЋEäƒì‹MPô‹@ôúpTL‰A…x‰$ÇE¨ è„;‰Eˆ‹EUà‹M ‹@‰E˜‹‰L$‰$‹@ÇE¨ ÿЋE˜ƒì‹UˆÇD$ ÇE¨‰D$Eà‰T$‰$è"Êûÿ‹Eà¹pTLƒè 9Á…Ö‹Uˆ‹E‹M ‰PUÜ‹‰L$‰$‹@ÇE¨ ÿЋE܃ì‹MPô‹@ôúpTL‰A …;‰$ÇE¨ èÎ:‰EŒ‹EUØ‹M ‹@ ‰E˜‹‰L$‰$‹@ÇE¨ÿЋE˜ƒì‹UŒÇD$ ÇE¨‰D$E؉T$‰$èlÉûÿ‹EعpTLƒè 9Á…™‹E‹M ‹UŒ‰P‹‰ $‹@ÇE¨ÿЋUˆB$‹M ‹‰ $ÿP ‹UˆB%‹M ‰ $è ‰E ‹E‹M ‹„TLƒÀ&‰E”¶A‰U˜ƒÂ$‰U„<„Ç„À„¨‹U ‹M”‹‹U„‰L$ ‹M˜‰T$‹U ‰L$‰$‹@ÇE¨ÿС€TL‹U ‹M‰EœƒÀ‰E”¶BƒÁJ‰M˜<„Œ„Àt9‹M ‹U˜‹‹M”‰T$ ‹Uœ‰L$‹M ‰T$‰ $‹@ÇE¨ÿÐE¤‰$è;×úÿÉËU ÇE¨‰$èçûÿë³t&‹M ÇE¨‰ $èîæûÿéAÿÿÿ‹E˜‹U”ÇD$$‰D$‰$èxûÿéNÿÿÿ‹Mœ‹E˜ÇD$‰L$‰$èxûÿ눃=(vMut‹PJÿ‰H…ÒðüÿÿUö‰T$‰$èÅUþÿéÜüÿÿƒ=(vMuP‹PJÿ‰H…ÒMþÿÿUò‰T$‰$è—Uþÿé9þÿÿƒ=(vMuF‹BHÿ‰J…À~‹U‹B é¤ýÿÿƒÊÿðÁP닃ÊÿðÁPë¯Eó‰D$‰$èNUþÿ‹M‹A évýÿÿƒÈÿðÁB빃=(vMuF‹PJÿ‰H…ÒýÿÿUô‰T$‰$èUþÿéüüÿÿƒ=(vMu<‹BHÿ‰J…À~‹U‹BégüÿÿƒÊÿðÁPë¹Eõ‰D$‰$èÑTþÿ‹M‹AéCüÿÿƒÈÿðÁBëÃ=(vMuK‹PJÿ‰H…Ò~!‹E‹@ ‰E˜é ûÿÿƒÅ‹U¬‹E¨‰Uœÿ$… MU÷‰T$‰$èvTþÿ‹U‹R ‰U˜éðúÿÿƒÊÿðÁPë´ÇE¨è"?‹EœÇE¨ÿÿÿÿ‰$è Øúÿ‹Mœ‰ $è•<ÇEŒÇEˆƒ}ˆt ‹Eˆ‰$èö6ƒ}Œt ‹UŒ‰$èå6ÇE¨è9G‹EœÇEŒÇEˆ‰$è@<ƒ}t³‹M‰ $è¯6ë¦E؉$èÂqþÿ‹EœëÕEà‰$è²qþÿ‹EœÇEŒë¾‹Eœë¹Eè‰$è–qþÿ‹EœÇEŒÇEˆë›U1Ò‰å‹Eƒ} •‰PÇfMÇ@Ç@ Æ@Ç@Ç@Ç@Ç@ Æ@$Æ@%Æ@d]ÃU1Ò‰å‹Eƒ} •‰PÇfMÇ@Ç@ Æ@Ç@Ç@Ç@Ç@ Æ@$Æ@%Æ@d]ÃU‰åSƒì‹]‰$è‰]ƒÄ[]é‘5U‰åSƒì‹]€{dÇfMt-‹C…Àt‰$è[5‹C…Àt‰$èL5‹C…Àt‰$è=5‰]ƒÄ[]é0mU‰åSƒì‹]€{dÇfMt-‹C…Àt‰$è 5‹C…Àt‰$èü4‹C…Àt‰$èí4‰]ƒÄ[]éàlU‰åìˆEø‰EÄE¤‰$ÇE¼°´KÇEÀhÎKÇEÈFqJ‰eÌèÒúÿ‹U‹M Æ‚¤‰ $ÇE¨ÿÿÿÿè’ Uì‰Á‰E ‹‰L$‰$‹@ÇE¨ÿЋUìƒì‹MBô‹Rô=pTL‰U˜‰Q …ï‹M˜ÇE¨‰ $ès4‹M˜‰E”…Ét‹U˜Ât&ƃÀ9Ðuö‹EUè‹M ‹@ ‰E˜‹‰L$‰$‹@ÇE¨ÿЋE˜ƒì‹U”ÇD$ ÇE¨‰D$Eè‰T$‰$è÷Âûÿ‹EèºpTLƒè 9Â…0‹M‹E”‹Q ‰A1À…Òt‹M”¶„Ò~€ú•À‹U‹M ˆBU䋉L$‰$‹@ÇE¨ÿЋEäƒì‹MPô‹@ôú`TL‰A…öÀ‰$ÇE¨ è‚3‰EŒ‹EUà‹M ‹@‰E˜‹‰L$‰$‹@ÇE¨ ÿЋE˜ƒì‹UŒÇD$ ÇE¨‰D$Eà‰T$‰$è`µûÿ‹Eà¹`TLƒè 9Á…R‹UŒ‹E‹M ‰PUÜ‹‰L$‰$‹@ÇE¨ ÿЋE܃ì‹MPô‹@ôú`TL‰A …ÁÀ‰$ÇE¨ èÊ2‰E‹EUØ‹M ‹@ ‰E˜‹‰L$‰$‹@ÇE¨ÿЋE˜ƒì‹UÇD$ ÇE¨‰D$E؉T$‰$訴ûÿ‹Eع`TLƒè 9Á…‹E‹M ‹U‰P‹‰ $‹@ÇE¨ÿЋM ‹Uf‰B$‹‰ $ÿP ‹U‹M f‰B&‰ $èt‰E ‹M ¡„TL‹‹M‰D$ƒÁ(‰L$ H$‹E ‰L$‰$ÿR,‹M ¡€TL‹‹M‰D$ƒÁp‰L$ H‹E ‰L$‰$ÿR,E¤‰$è–ÏúÿÉÃ=(vMud‹PJÿ‰H…Ò¶ýÿÿUö‰T$‰$è‹Nþÿé¢ýÿÿƒ=(vM…4‹PJÿ‰H…ÒŽ‹E‹@ ‰E˜éåüÿÿƒÅ‹M¬‹E¨‰Mœÿ$…èMƒÊÿðÁPë›ÇE¨è9‹UœÇE¨ÿÿÿÿ‰$èÿÑúÿ‹Eœ‰$èt6ÇEÇEŒƒ}Œt ‹UŒ‰$èÕ0ƒ}t ‹M‰ $èÄ0ÇE¨èA‹EœÇEÇEŒ‰$è6ƒ}”t³‹E”‰$èŽ0ë¦E؉$èñÌýÿ‹EœëÕEà‰$èáÌýÿ‹EœÇEë¾Eè‰$èzkþÿ‹EœÇEÇEŒë ‹Eœë›U÷‰T$‰$èSMþÿ‹U‹R ‰U˜éÐûÿÿƒÊÿðÁPéÈþÿÿƒ=(vMuF‹PJÿ‰H…ÒÉýÿÿUò‰T$‰$è?­ýÿéµýÿÿƒ=(vMu<‹BHÿ‰J…À~‹U‹B éýÿÿƒÊÿðÁPë¹Eó‰D$‰$è­ýÿ‹M‹A éúüÿÿƒÈÿðÁBëÃ=(vMuF‹PJÿ‰H…Ò”üÿÿUô‰T$‰$è¬ýÿé€üÿÿƒ=(vMu<‹BHÿ‰J…À~‹U‹BééûÿÿƒÊÿðÁPë¹Eõ‰D$‰$胬ýÿ‹M‹AéÅûÿÿƒÈÿðÁBëÃU1Ò‰å‹Eƒ} •‰PÇ fMÇ@Ç@ Æ@Ç@Ç@Ç@Ç@ fÇ@$fÇ@&Æ€¤]ÃU1Ò‰å‹Eƒ} •‰PÇ fMÇ@Ç@ Æ@Ç@Ç@Ç@Ç@ fÇ@$fÇ@&Æ€¤]ÃU‰åSƒì‹]‰$è‰]ƒÄ[]éA.U‰åSƒì‹]€»¤Ç fMt-‹C…Àt‰$è.‹C…Àt‰$èù-‹C…Àt‰$èê-‰]ƒÄ[]éÝeU‰åSƒì‹]€»¤Ç fMt-‹C…Àt‰$è¨-‹C…Àt‰$è™-‹C…Àt‰$èŠ-‰]ƒÄ[]é}eU‰åSƒì‹]‹E ‰$‰D$臙þÿǰfMƒÄ[]ÃU‰åSƒì‹]ǰfM‰$èšþÿ‰]ƒÄ[]é+-U‰åƒì‹EǰfMÉéÛ™þÿU1Ò‰å‹Eƒ} •‰PÇÈfMÇ@Ç@ Ç@Ç@Ç@Ç@Ç@ Ç@$Ç@(Ç@,Ç@0Ç@4Ç@8Ç@<Ç@@Ç@DÇ@HÇ@LÇ@PÇ@TÇ@XÇ@\Ç@`Ç@dÇ@hÇ@lÇ@pÇ@tÇ@xÇ@|Ç€€Ç€„Ç€ˆÇ€ŒÇ€Ç€”Ç€˜Ç€œÇ€ Ç€¤Ç€¨Ç€¬Ç€°Ç€´Ç€¸Ç€¼Ç€ÀÆ€Ä]ÃU1Ò‰å‹Eƒ} •‰PÇÈfMÇ@Ç@ Ç@Ç@Ç@Ç@Ç@ Ç@$Ç@(Ç@,Ç@0Ç@4Ç@8Ç@<Ç@@Ç@DÇ@HÇ@LÇ@PÇ@TÇ@XÇ@\Ç@`Ç@dÇ@hÇ@lÇ@pÇ@tÇ@xÇ@|Ç€€Ç€„Ç€ˆÇ€ŒÇ€Ç€”Ç€˜Ç€œÇ€ Ç€¤Ç€¨Ç€¬Ç€°Ç€´Ç€¸Ç€¼Ç€ÀÆ€Ä]ÃU‰åSƒì‹]ÇÈfM‰$è˜a‰]ƒÄ[]é›)U‰åƒì‹EÇÈfMÉékaU‰åƒì‹EÇÈfMÉéKaU1Ò‰å‹Eƒ} •‰PÇØfMÇ@Ç@ Ç@Ç@Ç@Ç@Ç@ Ç@$Ç@(Ç@,Ç@0Ç@4Ç@8Ç@<Ç@@Ç@DÇ@HÇ@LÇ@PÇ@TÇ@XÇ@\Ç@`Ç@dÇ@hÇ@lÇ@pÇ@tÇ@xÇ@|Ç€€Ç€„Ç€ˆÇ€ŒÇ€Ç€”Ç€˜Ç€œÇ€ Ç€¤Ç€¨Ç€¬Ç€°Ç€´Ç€¸Ç€¼Ç€ÀÆ€Ä]ÃU1Ò‰å‹Eƒ} •‰PÇØfMÇ@Ç@ Ç@Ç@Ç@Ç@Ç@ Ç@$Ç@(Ç@,Ç@0Ç@4Ç@8Ç@<Ç@@Ç@DÇ@HÇ@LÇ@PÇ@TÇ@XÇ@\Ç@`Ç@dÇ@hÇ@lÇ@pÇ@tÇ@xÇ@|Ç€€Ç€„Ç€ˆÇ€ŒÇ€Ç€”Ç€˜Ç€œÇ€ Ç€¤Ç€¨Ç€¬Ç€°Ç€´Ç€¸Ç€¼Ç€ÀÆ€Ä]ÃU‰åSƒì‹]ÇØfM‰$èè]‰]ƒÄ[]éë%U‰åƒì‹EÇØfMÉé»]U‰åƒì‹EÇØfMÉé›]U‰åSƒì‹]ÇèfM‰$è(®‰]ƒÄ[]é{%U‰åƒì‹EÇèfMÉéû­U‰åWVEøƒì`‰EÔE´‰$ÇḚ´KÇEÐèÑKÇEØ8~J‰eÜèoÂúÿ‹U1Àƒ}•À‰BÇ^MÇBÇD$ÇD$‰$ÇE¸èDcþÿ‹E¿ü M¹‹u ÇgMó¦t‹u ¿þ M¹ó¦uE´‰$èžÂúÿƒÄ`^_]ô&‹U EôÇD$‰$ÇE¸‰T$è¿[‹EôÇD$‰D$‹E‰$èÅbþÿEô‰$è \럃Å‹E¸‹U¼…À‰U°tƒèt& ‹EÇE¸‰$èïgþÿ‹U°ÇE¸ÿÿÿÿ‰$è Åúÿ‹EÇE¸‰$èû[‹U°ÇE¸ÿÿÿÿ‰$èéÄúÿU‰åWVEøƒì`‰EÔE´‰$ÇḚ´KÇEÐàÑKÇEؘJ‰eÜèÁúÿ‹U1Àƒ}•À‰BÇ^MÇBÇD$ÇD$‰$ÇE¸èäaþÿ‹E¿ü M¹‹u ÇgMó¦t‹u ¿þ M¹ó¦uE´‰$è>ÁúÿƒÄ`^_]ô&‹U EôÇD$‰$ÇE¸‰T$è_Z‹EôÇD$‰D$‹E‰$èeaþÿEô‰$èªZ럃Å‹E¸‹U¼…À‰U°tƒèt& ‹EÇE¸‰$èfþÿ‹U°ÇE¸ÿÿÿÿ‰$è­Ãúÿ‹EÇE¸‰$è›Z‹U°ÇE¸ÿÿÿÿ‰$è‰ÃúÿU‰åSƒì‹]ÇgM‰$è8fþÿ‰]ƒÄ[]ék"U‰åƒì‹EÇgMÉé fþÿU‰åƒì‹EÇgMÉéëeþÿU‰åWVEøƒì`‰EÔE´‰$ÇḚ´KÇEÐøÑKÇEØhJ‰eÜè?¿úÿ‹U1Àƒ}•À‰BÇH^MÇBÇD$ÇD$‰$ÇE¸èfþÿ‹E¿ü M¹‹u ÇHgMó¦t‹u ¿þ M¹ó¦uE´‰$èn¿úÿƒÄ`^_]ô&‹U EôÇD$‰$ÇE¸‰T$èX‹EôÇD$‰D$‹E‰$è•eþÿEô‰$èÚX럃Å‹E¸‹U¼…À‰U°tƒèt& ‹EÇE¸‰$è¿jþÿ‹U°ÇE¸ÿÿÿÿ‰$èÝÁúÿ‹EÇE¸‰$èËX‹U°ÇE¸ÿÿÿÿ‰$è¹ÁúÿU‰åWVEøƒì`‰EÔE´‰$ÇḚ´KÇEÐðÑKÇEØÈ‚J‰eÜèß½úÿ‹U1Àƒ}•À‰BÇH^MÇBÇD$ÇD$‰$ÇE¸è´dþÿ‹E¿ü M¹‹u ÇHgMó¦t‹u ¿þ M¹ó¦uE´‰$è¾úÿƒÄ`^_]ô&‹U EôÇD$‰$ÇE¸‰T$è/W‹EôÇD$‰D$‹E‰$è5dþÿEô‰$èzW럃Å‹E¸‹U¼…À‰U°tƒèt& ‹EÇE¸‰$è_iþÿ‹U°ÇE¸ÿÿÿÿ‰$è}Àúÿ‹EÇE¸‰$èkW‹U°ÇE¸ÿÿÿÿ‰$èYÀúÿU‰åSƒì‹]ÇHgM‰$èiþÿ‰]ƒÄ[]é;U‰åƒì‹EÇHgMÉéÛhþÿU‰åƒì‹EÇHgMÉé»hþÿU‰åWVEøƒì`‰EÔE´‰$ÇḚ´KÇEÐxÍKÇEؘ„J‰eÜè¼úÿ‹U1Àƒ}•À‰BLj^MÇBÇD$ÇD$‰$ÇE¸èähþÿ‹E¿àM¹‹u LjgMó¦t‹u ¿âM¹ó¦uE´‰$è>¼úÿƒÄ`^_]ô&‹U EôÇD$‰$ÇE¸‰T$è_U‹EôÇD$‰D$‹E‰$èehþÿEô‰$èªU럃Å‹E¸‹U¼…À‰U°tƒèt& ‹EÇE¸‰$èmþÿ‹U°ÇE¸ÿÿÿÿ‰$è­¾úÿ‹EÇE¸‰$è›U‹U°ÇE¸ÿÿÿÿ‰$艾úÿU‰åWVEøƒì`‰EÔE´‰$ÇḚ´KÇEÐpÍKÇEØø…J‰eÜ诺úÿ‹U1Àƒ}•À‰BLj^MÇBÇD$ÇD$‰$ÇE¸è„gþÿ‹E¿àM¹‹u LjgMó¦t‹u ¿âM¹ó¦uE´‰$èÞºúÿƒÄ`^_]ô&‹U EôÇD$‰$ÇE¸‰T$èÿS‹EôÇD$‰D$‹E‰$ègþÿEô‰$èJT럃Å‹E¸‹U¼…À‰U°tƒèt& ‹EÇE¸‰$è/lþÿ‹U°ÇE¸ÿÿÿÿ‰$èM½úÿ‹EÇE¸‰$è;T‹U°ÇE¸ÿÿÿÿ‰$è)½úÿU‰åSƒì‹]LjgM‰$èØkþÿ‰]ƒÄ[]é U‰åƒì‹ELjgMÉé«kþÿU‰åƒì‹ELjgMÉé‹kþÿU‰åWVEøƒì`‰EÔE´‰$ÇḚ´KÇEЈÍKÇEØÈ‡J‰eÜè߸úÿ‹U1Àƒ}•À‰BÇÈ^MÇBÇD$ÇD$‰$ÇE¸è´kþÿ‹E¿àM¹‹u ÇÈgMó¦t‹u ¿âM¹ó¦uE´‰$è¹úÿƒÄ`^_]ô&‹U EôÇD$‰$ÇE¸‰T$è/R‹EôÇD$‰D$‹E‰$è5kþÿEô‰$èzR럃Å‹E¸‹U¼…À‰U°tƒèt& ‹EÇE¸‰$è_pþÿ‹U°ÇE¸ÿÿÿÿ‰$è}»úÿ‹EÇE¸‰$èkR‹U°ÇE¸ÿÿÿÿ‰$èY»úÿU‰åWVEøƒì`‰EÔE´‰$ÇḚ´KÇEЀÍKÇEØ(‰J‰eÜè·úÿ‹U1Àƒ}•À‰BÇÈ^MÇBÇD$ÇD$‰$ÇE¸èTjþÿ‹E¿àM¹‹u ÇÈgMó¦t‹u ¿âM¹ó¦uE´‰$è®·úÿƒÄ`^_]ô&‹U EôÇD$‰$ÇE¸‰T$èÏP‹EôÇD$‰D$‹E‰$èÕiþÿEô‰$èQ럃Å‹E¸‹U¼…À‰U°tƒèt& ‹EÇE¸‰$èÿnþÿ‹U°ÇE¸ÿÿÿÿ‰$èºúÿ‹EÇE¸‰$è Q‹U°ÇE¸ÿÿÿÿ‰$èù¹úÿU‰åSƒì‹]ÇÈgM‰$è¨nþÿ‰]ƒÄ[]éÛU‰åƒì‹EÇÈgMÉé{nþÿU‰åƒì‹EÇÈgMÉé[nþÿU‰åì¨Eø‰E´E”‰$ÇE¬°´KÇE°0ÓKÇE¸J‰e¼è®µúÿ‹U‹M ÆBC‰ $ÇE˜ÿÿÿÿèè‰Â‰E‹‰$ÿP‹MˆA‹U‹‰$ÿP ‹MˆA‹U‹‰$ÿP ‹MUì‰A,‹M‹‰L$‰$‹@ÇE˜ÿЋUìƒì‹MBô‹Rô=pTL‰Uˆ‰Q …‹MˆÇE˜‰ $èã‹Uˆ‰E„…Òt‹UˆÂt&ƃÀ9Ðuö‹EUè‹M‹@ ‰Eˆ‹‰L$‰$‹@ÇE˜ÿЋEˆƒì‹U„ÇD$ ÇE˜‰D$Eè‰T$‰$èg¦ûÿ‹Eè¹pTLƒè 9Á…]‹M‹E‹U„‹I ‰P1À…Ét ¶„Ò~€ú•À‹U‹MˆBU䋉L$‰$‹@ÇE˜ ÿЋEäƒì‹MPô‹@ôúpTL‰A…Ó‰$ÇE˜ èô‰…tÿÿÿ‹EUà‹M‹@‰Eˆ‹‰L$‰$‹@ÇE˜ ÿЋEˆƒì‹•tÿÿÿÇD$ ÇE˜‰D$Eà‰T$‰$茥ûÿ‹Eà¹pTLƒè 9Á…µ‹•tÿÿÿ‹E‹M‰PUÜ‹‰L$‰$‹@ÇE˜ ÿЋE܃ì‹MPô‹@ôúpTL‰A …O‰$ÇE˜ è5‰…xÿÿÿ‹EUØ‹M‹@ ‰Eˆ‹‰L$‰$‹@ÇE˜ÿЋEˆƒì‹•xÿÿÿÇD$ ÇE˜‰D$E؉T$‰$èͤûÿ‹EعpTLƒè 9Á…k‹•xÿÿÿ‹E‹M‰PUÔ‹‰L$‰$‹@ÇE˜ÿЋEÔƒì‹MPô‹@ôúpTL‰A(…‰$ÇE˜èv‰…|ÿÿÿ‹EUЋM‹@(‰Eˆ‹‰L$‰$‹@ÇE˜ÿЋEˆƒì‹•|ÿÿÿÇD$ ÇE˜‰D$EЉT$‰$è¤ûÿ‹EйpTLƒè 9Á… ‹E‹M‹•|ÿÿÿ‰P$‹‰ $‹@$ÇE˜ÿЋM‹U‰B0‹‰ $ÿP(‹U‹M ‰B4‰ $è¹æ‰E‹E‹M‹ˆTLƒÀ8‰Eˆ¶A‰UŒƒÂ ‰U€<tW„Àt?‹U‹Mˆ‹‹U€‰L$ ‹MŒ‰T$‹U‰L$‰$‹@ÇE˜ÿÐE”‰$è8²úÿÉö‹MÇE˜‰ $èþÁûÿë­‹EŒ‹UˆÇD$ ‰D$‰$è2Sûÿ뽃=(vM…!‹BHÿ‰J…ÀŽö‹U‹Béýÿÿƒ=(vMuI‹PJÿ‰H…Ò‰üÿÿUö‰T$‰$èÎ0þÿéuüÿÿƒ=(vMuB‹PJÿ‰H…Ò~‹E‹@ ‰EˆéÀûÿÿƒÊÿðÁPë¶U÷‰T$‰$èŒ0þÿ‹U‹R ‰Uˆé™ûÿÿƒÊÿðÁP뽃=(vM…ë‹BHÿ‰J…À~=‹U‹B(éÚýÿÿƒ=(vM…Ó‹PJÿ‰H…ÒwýÿÿUò‰T$‰$è"0þÿécýÿÿEñ‰D$‰$è0þÿ‹M‹A(éŽýÿÿƒÅ‹Eœ‰E‹E˜ÿ$…t Mƒ=(vM…D‹PJÿ‰H…Ò×ýÿÿUð‰T$‰$èÃ/þÿéÃýÿÿ‹M‰ $èÇ…|ÿÿÿÇ…xÿÿÿÇ…tÿÿÿƒ½tÿÿÿt‹tÿÿÿ‰ $è^ƒ½xÿÿÿt‹…xÿÿÿ‰$èGƒ½|ÿÿÿt‹•|ÿÿÿ‰$è0ÇE˜è„"‹E‰$虃}„tž‹U„‰$èë‘E؉$èMþÿ‹EÇ…|ÿÿÿëËEõ‰D$‰$èý.þÿ‹M‹AéÿúÿÿƒÈÿðÁBéÛýÿÿƒ=(vMuz‹BHÿ‰J…À~9‹U‹B éûÿÿƒ=(vMuc‹PJÿ‰H…Ò1ûÿÿUô‰T$‰$è›.þÿéûÿÿEó‰D$‰$è‡.þÿ‹M‹A éHûÿÿƒÈÿðÁBéþÿÿƒÊÿðÁPé)þÿÿƒÈÿðÁBë…ƒÊÿðÁPëœEà‰$èCLþÿ‹EÇ…|ÿÿÿÇ…xÿÿÿéæþÿÿEè‰$èLþÿ‹EÇ…|ÿÿÿÇ…xÿÿÿÇ…tÿÿÿéµþÿÿÇE˜èº‹MÇE˜ÿÿÿÿ‰ $踱úÿEЉ$èÍKþÿ‹Eé„þÿÿ‹EÇ…|ÿÿÿÇ…xÿÿÿÇ…tÿÿÿé^þÿÿƒÊÿðÁPé¸ýÿÿU1Ò‰å‹Eƒ} •‰PÇhMÇ@Ç@ Æ@Æ@Æ@Ç@Ç@Ç@Ç@ Ç@$Ç@(Ç@,Æ@0Æ@1Æ@2Æ@3Æ@4Æ@5Æ@6Æ@7Æ@C]ÃU1Ò‰å‹Eƒ} •‰PÇhMÇ@Ç@ Æ@Æ@Æ@Ç@Ç@Ç@Ç@ Ç@$Ç@(Ç@,Æ@0Æ@1Æ@2Æ@3Æ@4Æ@5Æ@6Æ@7Æ@C]ÃU‰åSƒì‹]‰$è‰]ƒÄ[]éAU‰åSƒì‹]€{CÇhMt<‹C…Àt‰$è ‹C…Àt‰$èü‹C…Àt‰$èí‹C$…Àt‰$èÞ‰]ƒÄ[]éÑFU‰åSƒì‹]€{CÇhMt<‹C…Àt‰$è«‹C…Àt‰$蜋C…Àt‰$è‹C$…Àt‰$è~‰]ƒÄ[]éqFU‰åì¨Eø‰E´E”‰$ÇE¬°´KÇE°ÓKÇE¸­™J‰e¼èž«úÿ‹U‹M ÆBC‰ $ÇE˜ÿÿÿÿèeމ‰E‹‰$ÿP‹MˆA‹U‹‰$ÿP ‹MˆA‹U‹‰$ÿP ‹MUì‰A,‹M‹‰L$‰$‹@ÇE˜ÿЋUìƒì‹MBô‹Rô=pTL‰Uˆ‰Q …‹MˆÇE˜‰ $èÓ ‹Uˆ‰E„…Òt‹UˆÂt&ƃÀ9Ðuö‹EUè‹M‹@ ‰Eˆ‹‰L$‰$‹@ÇE˜ÿЋEˆƒì‹U„ÇD$ ÇE˜‰D$Eè‰T$‰$èWœûÿ‹Eè¹pTLƒè 9Á…]‹M‹E‹U„‹I ‰P1À…Ét ¶„Ò~€ú•À‹U‹MˆBU䋉L$‰$‹@ÇE˜ ÿЋEäƒì‹MPô‹@ôúpTL‰A…Ó‰$ÇE˜ èä ‰…tÿÿÿ‹EUà‹M‹@‰Eˆ‹‰L$‰$‹@ÇE˜ ÿЋEˆƒì‹•tÿÿÿÇD$ ÇE˜‰D$Eà‰T$‰$è|›ûÿ‹Eà¹pTLƒè 9Á…µ‹•tÿÿÿ‹E‹M‰PUÜ‹‰L$‰$‹@ÇE˜ ÿЋE܃ì‹MPô‹@ôúpTL‰A …O‰$ÇE˜ è% ‰…xÿÿÿ‹EUØ‹M‹@ ‰Eˆ‹‰L$‰$‹@ÇE˜ÿЋEˆƒì‹•xÿÿÿÇD$ ÇE˜‰D$E؉T$‰$轚ûÿ‹EعpTLƒè 9Á…k‹•xÿÿÿ‹E‹M‰PUÔ‹‰L$‰$‹@ÇE˜ÿЋEÔƒì‹MPô‹@ôúpTL‰A(…‰$ÇE˜èf ‰…|ÿÿÿ‹EUЋM‹@(‰Eˆ‹‰L$‰$‹@ÇE˜ÿЋEˆƒì‹•|ÿÿÿÇD$ ÇE˜‰D$EЉT$‰$èþ™ûÿ‹EйpTLƒè 9Á… ‹E‹M‹•|ÿÿÿ‰P$‹‰ $‹@$ÇE˜ÿЋM‹U‰B0‹‰ $ÿP(‹U‹M ‰B4‰ $è©Ü‰E‹E‹M‹ˆTLƒÀ8‰Eˆ¶A‰UŒƒÂ ‰U€<tW„Àt?‹U‹Mˆ‹‹U€‰L$ ‹MŒ‰T$‹U‰L$‰$‹@ÇE˜ÿÐE”‰$è(¨úÿÉö‹MÇE˜‰ $èî·ûÿë­‹EŒ‹UˆÇD$ ‰D$‰$è"Iûÿ뽃=(vM…!‹BHÿ‰J…ÀŽö‹U‹Béýÿÿƒ=(vMuI‹PJÿ‰H…Ò‰üÿÿUö‰T$‰$è¾&þÿéuüÿÿƒ=(vMuB‹PJÿ‰H…Ò~‹E‹@ ‰EˆéÀûÿÿƒÊÿðÁPë¶U÷‰T$‰$è|&þÿ‹U‹R ‰Uˆé™ûÿÿƒÊÿðÁP뽃=(vM…ë‹BHÿ‰J…À~=‹U‹B(éÚýÿÿƒ=(vM…Ó‹PJÿ‰H…ÒwýÿÿUò‰T$‰$è&þÿécýÿÿEñ‰D$‰$èþ%þÿ‹M‹A(éŽýÿÿƒÅ‹Eœ‰E‹E˜ÿ$…4 Mƒ=(vM…D‹PJÿ‰H…Ò×ýÿÿUð‰T$‰$è³%þÿéÃýÿÿ‹M‰ $èÇ…|ÿÿÿÇ…xÿÿÿÇ…tÿÿÿƒ½tÿÿÿt‹tÿÿÿ‰ $èNƒ½xÿÿÿt‹…xÿÿÿ‰$è7ƒ½|ÿÿÿt‹•|ÿÿÿ‰$è ÇE˜èt‹E‰$è‰ ƒ}„tž‹U„‰$èøë‘E؉$è Cþÿ‹EÇ…|ÿÿÿëËEõ‰D$‰$èí$þÿ‹M‹AéÿúÿÿƒÈÿðÁBéÛýÿÿƒ=(vMuz‹BHÿ‰J…À~9‹U‹B éûÿÿƒ=(vMuc‹PJÿ‰H…Ò1ûÿÿUô‰T$‰$è‹$þÿéûÿÿEó‰D$‰$èw$þÿ‹M‹A éHûÿÿƒÈÿðÁBéþÿÿƒÊÿðÁPé)þÿÿƒÈÿðÁBë…ƒÊÿðÁPëœEà‰$è3Bþÿ‹EÇ…|ÿÿÿÇ…xÿÿÿéæþÿÿEè‰$è Bþÿ‹EÇ…|ÿÿÿÇ…xÿÿÿÇ…tÿÿÿéµþÿÿÇE˜èª‹MÇE˜ÿÿÿÿ‰ $訧úÿEЉ$è½Aþÿ‹Eé„þÿÿ‹EÇ…|ÿÿÿÇ…xÿÿÿÇ…tÿÿÿé^þÿÿƒÊÿðÁPé¸ýÿÿU1Ò‰å‹Eƒ} •‰PÇhMÇ@Ç@ Æ@Æ@Æ@Ç@Ç@Ç@Ç@ Ç@$Ç@(Ç@,Æ@0Æ@1Æ@2Æ@3Æ@4Æ@5Æ@6Æ@7Æ@C]ÃU1Ò‰å‹Eƒ} •‰PÇhMÇ@Ç@ Æ@Æ@Æ@Ç@Ç@Ç@Ç@ Ç@$Ç@(Ç@,Æ@0Æ@1Æ@2Æ@3Æ@4Æ@5Æ@6Æ@7Æ@C]ÃU‰åSƒì‹]‰$è‰]ƒÄ[]é1U‰åSƒì‹]€{CÇhMt<‹C…Àt‰$èû‹C…Àt‰$èì‹C…Àt‰$èÝ‹C$…Àt‰$èΉ]ƒÄ[]éÁ<U‰åSƒì‹]€{CÇhMt<‹C…Àt‰$蛋C…Àt‰$茋C…Àt‰$è}‹C$…Àt‰$èn‰]ƒÄ[]éa<U‰åEøS씉E´E”‰$ÇE¬°´KÇE°ÀÎKÇE¸†£J‰e¼è¡úÿ‹U‹M ÆBR‰ $ÇE˜ÿÿÿÿè´Ô‰Â‰E‹‰$ÿP‹U‹Mf‰A‹‰$ÿP ‹U‹Mf‰A‹‰$ÿP ‹MUì‰A0‹M‹‰L$‰$‹@ÇE˜ÿЋUìƒì‹MBô‹Rô=pTL‰UŒ‰Q …‚‹MŒÇE˜‰ $èÀ‹]Œ‰Eˆ…Ût‹UŒÂƃÀ9Ðuö‹EUè‹M‹@ ‰EŒ‹‰L$‰$‹@ÇE˜ÿЋEŒƒì‹UˆÇD$ ÇE˜‰D$Eè‰T$‰$èG’ûÿ‹EèºpTLƒè 9…‹Eˆ‹M‰A‹I 1À…Ét‹Mˆ¶„Ò~€ú•À‹U‹MˆBU䋉L$‰$‹@ÇE˜ ÿЋEäƒì‹MPô‹@ôú`TL‰A…;À‰$ÇE˜ èÒ‰…|ÿÿÿ‹EUà‹M‹@‰EŒ‹‰L$‰$‹@ÇE˜ ÿЋEŒƒì‹•|ÿÿÿÇD$ ÇE˜‰D$Eà‰T$‰$誄ûÿ‹Eà¹`TLƒè 9Á…‘‹•|ÿÿÿ‹E‹M‰PUÜ‹‰L$‰$‹@ÇE˜ ÿЋE܃ì‹MPô‹@ôú`TL‰A$…,À‰$ÇE˜ è‰E€‹EUØ‹M‹@$‰EŒ‹‰L$‰$‹@ÇE˜ÿЋEŒƒì‹U€ÇD$ ÇE˜‰D$E؉T$‰$èïƒûÿ‹Eع`TLƒè 9Á…ˆ‹U€‹E‹M‰P UÔ‹‰L$‰$‹@ÇE˜ÿЋEÔƒì‹MPô‹@ôú`TL‰A,…ñÀ‰$ÇE˜èY‰E„‹EUЋM‹@,‰EŒ‹‰L$‰$‹@ÇE˜ÿЋEŒƒì‹U„ÇD$ ÇE˜‰D$EЉT$‰$è7ƒûÿ‹Eй`TLƒè 9Á…M‹E‹M‹U„‰P(‹‰ $‹@$ÇE˜ÿЋM‹U‰B4‹‰ $ÿP(‹U‹M ‰B8‰ $èÓ‹]‹ˆTL‹‰$ƒÃ<‰\$ Z ‰\$‰T$ÿQ,E”‰$èWžúÿ‹]üÉÃ=(vM…^‹PJÿ‰H…Ò ýÿÿUö‰T$‰$èEþÿé ýÿÿƒ=(vM…‹PJÿ‰H…ÒŽÙ‹E‹@ ‰EŒéRüÿÿƒ=(vMuF‹PJÿ‰H…Ò^þÿÿUò‰T$‰$è}ýÿéJþÿÿƒ=(vMu<‹BHÿ‰J…À~‹U‹B$é³ýÿÿƒÊÿðÁPë¹Eó‰D$‰$èÜ|ýÿ‹M‹A$éýÿÿƒÈÿðÁBëÃ=(vMuF‹PJÿ‰H…Ò™þÿÿUð‰T$‰$èž|ýÿé…þÿÿƒ=(vMu<‹BHÿ‰J…À~‹U‹B,éîýÿÿƒÊÿðÁPë¹Eñ‰D$‰$è_|ýÿ‹M‹A,éÊýÿÿƒÈÿðÁBëÃÅ‹Uœ‹E˜‰Uÿ$…X MƒÊÿðÁPéžþÿÿ‹E‰$èOÇE„ÇE€Ç…|ÿÿÿƒ½|ÿÿÿt‹…|ÿÿÿ‰$è þƒ}€t ‹U€‰$èþƒ}„t ‹M„‰ $è~þÇE˜èÒ‹EÇE„ÇE€Ç…|ÿÿÿ‰$èσ}ˆt’‹Mˆ‰ $è>þë…ÇE˜è ‹EÇE˜ÿÿÿÿ‰$èŸúÿEЉ$胚ýÿ‹Eë·E؉$èsšýÿ‹EÇE„ë Eà‰$è\šýÿ‹EÇE„ÇE€ë‚‹EézÿÿÿEè‰$èæ8þÿ‹EÇE„ÇE€Ç…|ÿÿÿéOÿÿÿƒ=(vMuF‹PJÿ‰H…ÒUûÿÿUô‰T$‰$èÍzýÿéAûÿÿƒ=(vMu<‹BHÿ‰J…À~‹U‹Bé¤úÿÿƒÊÿðÁPë¹Eõ‰D$‰$èŽzýÿ‹M‹Aé€úÿÿƒÈÿðÁBëÃU÷‰T$‰$è:þÿ‹U‹R ‰UŒéjùÿÿƒÊÿðÁPéõüÿÿU1Ò‰å‹Eƒ} •‰PÇ(hMÇ@Ç@ Æ@fÇ@fÇ@Ç@Ç@Ç@ Ç@$Ç@(Ç@,Ç@0Æ@4Æ@5Æ@6Æ@7Æ@8Æ@9Æ@:Æ@;Æ@R]ÃU1Ò‰å‹Eƒ} •‰PÇ(hMÇ@Ç@ Æ@fÇ@fÇ@Ç@Ç@Ç@ Ç@$Ç@(Ç@,Ç@0Æ@4Æ@5Æ@6Æ@7Æ@8Æ@9Æ@:Æ@;Æ@R]ÃU‰åSƒì‹]‰$è‰]ƒÄ[]éÁûU‰åSƒì‹]€{RÇ(hMt<‹C…Àt‰$è‹û‹C…Àt‰$è|û‹C …Àt‰$èmû‹C(…Àt‰$è^û‰]ƒÄ[]éQ3U‰åSƒì‹]€{RÇ(hMt<‹C…Àt‰$è+û‹C…Àt‰$èû‹C …Àt‰$è û‹C(…Àt‰$èþú‰]ƒÄ[]éñ2U‰åEøS씉E´E”‰$ÇE¬°´KÇE°ÎKÇE¸ö¬J‰e¼è˜úÿ‹U‹M ÆBR‰ $ÇE˜ÿÿÿÿè¤Ë‰Â‰E‹‰$ÿP‹U‹Mf‰A‹‰$ÿP ‹U‹Mf‰A‹‰$ÿP ‹MUì‰A0‹M‹‰L$‰$‹@ÇE˜ÿЋUìƒì‹MBô‹Rô=pTL‰UŒ‰Q …‚‹MŒÇE˜‰ $èPú‹UŒ‰Eˆ…Òt‹UŒÂƃÀ9Ðuö‹EUè‹M‹@ ‰EŒ‹‰L$‰$‹@ÇE˜ÿЋEŒƒì‹UˆÇD$ ÇE˜‰D$Eè‰T$‰$è׈ûÿ‹EèºpTLƒè 9…‹M‹Eˆ‹Y ‰A1À…Ût‹Mˆ¶„Ò~€ú•À‹U‹MˆBU䋉L$‰$‹@ÇE˜ ÿЋEäƒì‹MPô‹@ôú`TL‰A…;À‰$ÇE˜ èbù‰…|ÿÿÿ‹EUà‹M‹@‰EŒ‹‰L$‰$‹@ÇE˜ ÿЋEŒƒì‹•|ÿÿÿÇD$ ÇE˜‰D$Eà‰T$‰$è:{ûÿ‹Eà¹`TLƒè 9Á…‘‹•|ÿÿÿ‹E‹M‰PUÜ‹‰L$‰$‹@ÇE˜ ÿЋE܃ì‹MPô‹@ôú`TL‰A$…,À‰$ÇE˜ è¡ø‰E€‹EUØ‹M‹@$‰EŒ‹‰L$‰$‹@ÇE˜ÿЋEŒƒì‹U€ÇD$ ÇE˜‰D$E؉T$‰$èzûÿ‹Eع`TLƒè 9Á…ˆ‹U€‹E‹M‰P UÔ‹‰L$‰$‹@ÇE˜ÿЋEÔƒì‹MPô‹@ôú`TL‰A,…ñÀ‰$ÇE˜èé÷‰E„‹EUЋM‹@,‰EŒ‹‰L$‰$‹@ÇE˜ÿЋEŒƒì‹U„ÇD$ ÇE˜‰D$EЉT$‰$èÇyûÿ‹Eй`TLƒè 9Á…M‹E‹M‹U„‰P(‹‰ $‹@$ÇE˜ÿЋM‹U‰B4‹‰ $ÿP(‹U‹M ‰B8‰ $è•É‹]‹ˆTL‹‰$ƒÃ<‰\$ Z ‰\$‰T$ÿQ,E”‰$èç”úÿ‹]üÉÃ=(vM…^‹PJÿ‰H…Ò ýÿÿUö‰T$‰$èÕþÿé ýÿÿƒ=(vM…‹PJÿ‰H…ÒŽÙ‹E‹@ ‰EŒéRüÿÿƒ=(vMuF‹PJÿ‰H…Ò^þÿÿUò‰T$‰$è«sýÿéJþÿÿƒ=(vMu<‹BHÿ‰J…À~‹U‹B$é³ýÿÿƒÊÿðÁPë¹Eó‰D$‰$èlsýÿ‹M‹A$éýÿÿƒÈÿðÁBëÃ=(vMuF‹PJÿ‰H…Ò™þÿÿUð‰T$‰$è.sýÿé…þÿÿƒ=(vMu<‹BHÿ‰J…À~‹U‹B,éîýÿÿƒÊÿðÁPë¹Eñ‰D$‰$èïrýÿ‹M‹A,éÊýÿÿƒÈÿðÁBëÃÅ‹Uœ‹E˜‰Uÿ$… MƒÊÿðÁPéžþÿÿ‹E‰$èßúÇE„ÇE€Ç…|ÿÿÿƒ½|ÿÿÿt‹…|ÿÿÿ‰$è0õƒ}€t ‹U€‰$èõƒ}„t ‹M„‰ $èõÇE˜èb‹EÇE„ÇE€Ç…|ÿÿÿ‰$è_úƒ}ˆt’‹Mˆ‰ $èÎôë…ÇE˜è°ü‹EÇE˜ÿÿÿÿ‰$讕úÿEЉ$è‘ýÿ‹Eë·E؉$è‘ýÿ‹EÇE„ë Eà‰$èìýÿ‹EÇE„ÇE€ë‚‹EézÿÿÿEè‰$èv/þÿ‹EÇE„ÇE€Ç…|ÿÿÿéOÿÿÿƒ=(vMuF‹PJÿ‰H…ÒUûÿÿUô‰T$‰$è]qýÿéAûÿÿƒ=(vMu<‹BHÿ‰J…À~‹U‹Bé¤úÿÿƒÊÿðÁPë¹Eõ‰D$‰$èqýÿ‹M‹Aé€úÿÿƒÈÿðÁBëÃU÷‰T$‰$èÊþÿ‹U‹R ‰UŒéjùÿÿƒÊÿðÁPéõüÿÿU1Ò‰å‹Eƒ} •‰PÇ8hMÇ@Ç@ Æ@fÇ@fÇ@Ç@Ç@Ç@ Ç@$Ç@(Ç@,Ç@0Æ@4Æ@5Æ@6Æ@7Æ@8Æ@9Æ@:Æ@;Æ@R]ÃU1Ò‰å‹Eƒ} •‰PÇ8hMÇ@Ç@ Æ@fÇ@fÇ@Ç@Ç@Ç@ Ç@$Ç@(Ç@,Ç@0Æ@4Æ@5Æ@6Æ@7Æ@8Æ@9Æ@:Æ@;Æ@R]ÃU‰åSƒì‹]‰$è‰]ƒÄ[]éQòU‰åSƒì‹]€{RÇ8hMt<‹C…Àt‰$èò‹C…Àt‰$è ò‹C …Àt‰$èýñ‹C(…Àt‰$èîñ‰]ƒÄ[]éá)U‰åSƒì‹]€{RÇ8hMt<‹C…Àt‰$è»ñ‹C…Àt‰$è¬ñ‹C …Àt‰$èñ‹C(…Àt‰$èŽñ‰]ƒÄ[]é)U‰åSƒì‹]‹…Àt‹P;P sƒÂ‰PfÇCÿÿ‰ØƒÄ[]ˉ$ÿR(ëèU‰åSƒì‹]ÇHhM‰$è()‰]ƒÄ[]é+ñU‰åƒì‹EÇHhMÉéû(U‰åSƒì‹]LjhM‰$èØ(‰]ƒÄ[]éÛðU‰åƒì‹ELjhMÉé«(U‰åSƒì‹]ÇÈhM‰$èˆ(‰]ƒÄ[]é‹ðU‰åƒì‹EÇÈhMÉé[(U‰åSƒì‹]ÇiM‰$è8(‰]ƒÄ[]é;ðU‰åƒì‹EÇiMÉé (U‰åƒìH‹E‹M‰]ô‹]‰uø‹u‰}ü¶U ‰Eä‹A ‹})óˆUã%°ƒø t~1ÒƒøtB¾Eã‰\$‰<$‰U܉D$èÐ.ûÿ‹U܉]‹}ü‹]ô)ÖUä‰u‹uø‰U ‰ì]é¶.ûÿ¶ƒÁl‰ $è•Á€x‰Â„ú¶@JˆE׋Mä¶:E×uGˆºƒÇ뉋Mä‰t$47‰<$‰L$èe.ûÿ¾Eã‰]‹}ü‰u‹]ô‹uø‰E ‰ì]é?.ûÿ´&€zt*¶JHˆM×8E×t§€z„´¶JMˆM×:E×t81Òéÿÿÿ‰$‰UÜ赜ûÿ‹UÜ‹‰$ÇD$+ÿP‹Mä‹U܈E×¶ë±t&ƒþ~Àz„©¶‚•ˆE׋Mä¶A:E×uz‹U䶈¶BºˆGƒÇé­þÿÿ‰$‰EÜèDœûÿ‹UÜ‹‰$ÇD$-ÿP‹U܈E×éäþÿÿ¶‰$‰UÜèœûÿ‹UÜ‹‰$ÇD$0ÿP‹Mä‹U܈E×¶é$ÿÿÿ€zt<¶Ru8Єtÿÿÿ1Òé6þÿÿ‰$‰UÜèÍ›ûÿ‹UÜ‹‰$ÇD$xÿP‹U܈E×é8ÿÿÿ‰$‰UÜ褛ûÿ‹UÜ‹‰$ÇD$XÿP‹Mä‰Â¶AëŸU‰åƒìX‹E‹U‰]ô‹]‰uø‹u‰}ü·M ‰Eä‹B ‹})ó%°ƒø „›ƒøÇEÜÇEàt9·É‰\$‰<$‰L$è2ªúÿ‹EäEÜ+uà‰E _‹]ô‰u‹}ü‰E‹uø‰ì]éü¨úÿƒÂl‰M؉$莿‰Â‰EÄ‹‰$ÇD$-ÿP(‹MØf‰Eà‹Eä·f;UàuVf‰ƒÇÇEÜÇEàéxÿÿÿ‹Uä‰t$‰<$‰M؉T$è—¨úÿ‹MØw‰]‹uø‰E‹]ô‹}ü·É‰M ‰ì]é„©úÿt&‹UÄ‹‰$ÇD$+ÿP(‹MØf‰Eà‹Eä·f;Uàt„‹UÄ‹‰$‰MØÇD$0ÿP(‹Uä‹MØf9tÇEÜÇEàéáþÿÿ¶ƒþ~â‹UÄ‹‰$‰MØÇD$xÿP(‹Uä‹MØf9Bu'‹Uä·f‰·Bf‰GƒÇÇEÜÇEàéþÿÿ‹UÄ‹‰$ÇD$XÿP(‹Uä‹MØf9B…vÿÿÿë´U¸nM‰å]ÃU1ɉå‹E ‹Uƒ}WS¶]•Á…À‰JÇHiM„¾„Û…ŸÆB ÇBÇBz»÷ljB…Ü÷Ç…À‰Ù1ÀÁéöÃó«tfǃǃãtƺ»÷ÇÆBuu÷Çu`‰Ù1ÀÁéöÃó«tfǃǃãtÆÆ‚[_]Ãt&ÆB ÇBÇBé\ÿÿÿÆB ¸nMÇBÇBé@ÿÿÿfǃëƒÇë“Æ‚ºf»ÿéuÿÿÿfǃëƒÇé0ÿÿÿÆBzf»ÿéÿÿÿU1ɉå‹E‹Uƒ}WS¶]•Á…À‰JÇHiM„¾„Û…ŸÆB ÇBÇBz»÷ljB…Ü÷Ç…À‰Ù1ÀÁéöÃó«tfǃǃãtƺ»÷ÇÆBuu÷Çu`‰Ù1ÀÁéöÃó«tfǃǃãtÆÆ‚[_]Ãt&ÆB ÇBÇBé\ÿÿÿÆB ¸nMÇBÇBé@ÿÿÿfǃëƒÇë“Æ‚ºf»ÿéuÿÿÿfǃëƒÇé0ÿÿÿÆBzf»ÿéÿÿÿU‰åSƒì‹]‰$è‰]ƒÄ[]éñèU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÖ¿KÇEè#ºJ‰eìè†úÿ‹U‰ÐÇHiMƒÀ‰$ÇEÈèT ‹E€x t‹@…Àt‰$è|è‹EÇEÈÿÿÿÿ‰$èj Eĉ$è_†úÿÉÃÅ‹UÌ‹EÇEȉUÀ‰$èB ‹UÀÇEÈÿÿÿÿ‰$è0‰úÿU‰åWV1öSƒì‹]ëˆD3 FƒÆþ€ti‰4$è6¨úÿƒøÿuáÆC 1ö‰4$裨úÿf‰„sŽƒÆþuå1ÿf¾‰ù‰ðÓàf‰„{Ž·À‰D$‰$è˜ûÿf‰„{®ƒÇƒÿuÓƒÄ[^_]ÃfƒÀ€užÆC ëœU1À‰åSƒì‹]ƒ}•À‰CE LjiM‰$è©ÆC ‰C‰$è*ÿÿÿƒÄ[]ÃU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÜ¿KÇE蟻J‰eìè„úÿ1À‹Uƒ} •À‰BLjiMÇEÈè ‹U‰BÆB ‰$è¾þÿÿEĉ$èã„úÿÉÃÅ‹U‹EÌLjhM‰EÀ‰$ÇEÈèÀ‹EÀÇEÈÿÿÿÿ‰$讇úÿU‰åSƒì‹]‰$è‰]ƒÄ[]鑿U‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàпKÇEèo¼J‰eì豃úÿ‹ELjiMƒÀ‰$ÇEÈèö‹ELjhM‰$ÇEÈÿÿÿÿèEĉ$è„úÿÉÃÅ‹ẺEÀ‹ELjhM‰$ÇEÈèð‹EÀÇEÈÿÿÿÿ‰$èÞ†úÿU‰åƒì¡(vM…ÀtÇD$ð¼JÇ$\ULè]Šúÿ‹ HUL…ÉtÉÃÉé U‰åƒìÇD$Ç$@DLèÆÇHUL@DLÇdUL@DLÉÃU‰åƒì‹E…Àt3¨?uƒøv Ç$¼Mè®—ÿ$…ðM´&©ÀÿÿÿuÚÉô&1ÀÉøÉÃt&¸ÉøÉÃf¸Éø?ÉÃf¸ÉÃU‰åƒìhEø‰EÔE´ÇḚ´KÇEдÄKÇEØ"¿J‰e܉$è‚úÿ€=`ùKuÇ$`ùKèŒò…À…ä¡(vMÇEôðZL…ÀtDÇ$ðZLÇE¸ÿÿÿÿè‹úÿ…Àt-Ç$èçÇÀ\MÇD$ FÇD$à9M‰$èõv‹U‹MÁâ‰ÐA ‹…É„­‹E …Àt‹U ‹‰$‹@ÇE¸ÿЋ(vM…Ò‹Eôt@‰$ÇE¸è‹úÿ…Àt-Ç$èçÇØ\MÇD$à FÇD$ì9M‰$èƒôvE´‰$èµúÿÉÃv‹(vM…ÒuÇ$`ùKè óéÿÿÿt&Ç$ðZLÇE¸è­‰úÿëÕ‹ (vM…Éu2‹U ƒB1Ò‹M ‰éWÿÿÿƒÅ‹E¸‹M¼‹UÀƒø‰M°tWƒøt;…Àt ‹M ðƒA‹M‰Ð‹(vMA ë¿Eô‰$èÌ2ûÿ‹E°ÇE¸ÿÿÿÿ‰$è „úÿƒÂué‹U°ÇE¸ÿÿÿÿ‰$èSéÇ$`ùKèð‹E°ÇE¸ÿÿÿÿ‰$èÕƒúÿU‰åWVSEèƒì|‰EÔE´ÇḚ´KÇEÐÈÄKÇEØ<ÂJ‰e܉$èþúÿ‹]…Û„ó‹E ‰$èè–ûÿ‹U‰E¤‹Bƒè9E¤‡æ¡(vM…À…ЋEƒ@‹M‹U¤‹IÁâÊ‹‰U¨…À„Ê‹=(vM…ÿ…É‹PJÿƒú‰H„Ê‹U‹E¨‰‹U‹r…ötrÇE°ë‹U‹M¬‹B Ç‹EƒE°‹U°9PvJ‹M°‹UÁá‰M¬‹B ‹M°‹ˆ…ÀtØ‹(vM…Û…:‹PJÿ‰Hƒúu¬‹‰$‹BÇE¸ÿÐë™fE´‰$è•úÿƒÄ|[^_]ËM¤‹BÇE¸ÿÿÿÿƒÁ‰M Áá‰E”‰M˜‰ $è™á‹U‰Eœ‰EŒ‹B…Àt‹uœ‹J1Ò‹‘‰–ƒÂ9Âró9E v‹U ‹MœÇƒÀ9Âwò‹M‹E˜‹I ‰$ÇE¸‰Mè?á‹M‹Q…Òt‹Y 1É‹4‹‰4ˆƒÁ9Ñró9U v‹M ÇƒÂ9Ñwò‹U‹M ‰B ‰J‹Mœ‰J‹M”…Ét ‹E”‰$è¹à‹U…Ò„;þÿÿ‹U‰$è£à¡(vM…À„0þÿÿ‹MðƒAé*þÿÿºÿÿÿÿðÁPéÀþÿÿ‹E‹M¨‰éQþÿÿºÿÿÿÿðÁPƒú…6þÿÿ‹‰$‹BÇE¸ÿÐé þÿÿƒÅ‹E¼‹UÀ‰E¤‹E¸ÿ$…M‹E¤‰$è£åÇE¸èèé þÿÿÇE¸èöç‹M¤ÇE¸ÿÿÿÿ‰ $èô€úÿ‹U¤‰$èiåƒ}Œt ‹MŒ‰ $èØßÇE¸è,ð‹E¤‰$èAåÇE¸è¥çéŒýÿÿƒÂt‹U¤ÇE¸ÿÿÿÿ‰$虀úÿ‹M¤ÇE¸ÿÿÿÿ‰ $èçåU‰åƒì(‰]ô‹]‰uø‹u ‰}ü‹}‰$èÀ“ûÿ‹Vƒê9Ðw$‹V‹‚…Àt‰] ‹uø‰}‹]ô‰E‹}ü‰ì]ébüÿÿÇ$ Mè–‘U‰åWVSƒì‹]‹}‹u ‹…ÀtƒÃ‰D$‰t$‰<$èuÿÿÿ‹…ÀuçƒÄ[^_]ÃU‰åEøSƒìT‰EäEĉ$ÇEܰ´KÇEà¤ÄKÇEèuÅJ‰eìè|úÿ‹U‹E‹M ÇB‰‹AÇB ÇB‰BÁà‰$ÇEÈè¨Þ‹]‹K‰C…ÉtK1Òë´&ƒA‹EƒÂ‹H9Ñv/‹@‹] ‹K‹ ‘…ɉ tà‹(vM…ÛtÒðƒA‹EƒÂ‹H9ÑwÑÁበ$ÇEÈè>Þ‹]‹S‰C …ÒtA1ÒëƒA‹EƒÂ9Pv.‹@ ‹] ‹K ‹ ‘…ɉ tâ‹(vM…ÛtÔðƒA‹EƒÂ9PwÓÇ$ÇEÈèÝÝ‹]1Ò‰Ct&ǃƒúuñÇEÀ‹U ‹MÀ‹B‹…Àt^‰$èºûÿ‹]‹[ÇEȃÀ‰E¼‰]¸‰$è„Ý‹UÀ‹M‰‹] ‹A‹MÀ‹‹S‹]¼‹ ‰\$‰$‰T$èVûÿƒEÀƒ}Àu’Eĉ$è{úÿƒÄT[]ÃÅ‹EÈ‹UÌ…À‰UÀtƒèt$ ‹MÀ‰ $èiâ‹]‰$èžÇEÈè2íÇEÈè¶ä‹EÀÇEÈÿÿÿÿ‰$è´}úÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàŒÌKÇEè ÖJ‰eìèáyúÿ‹U‹E ÇB‰1ÀÇBÇB OLÇB `NLÇ…`NLÇ… OLƒÀƒøuâ‹EÇ@DNLÇDNL ILè4·ÇHNLÇLNLÇPNLf£ ILÇTNLÇXNLÇD$ ÇD$ÇD$Ç$@ILÇEÈèðÿÿ‹UÇD$@ILÇD$@UL‰$èÓøÿÿÇD$Ç$àNLèÏ‹EÇD$àNLÇD$hUL‰$è¤øÿÿǤDLÇ DLfMǨDLǬDLưDLÇ´DLǸDLǼDLÇÀDLÆÄDLÆÅDLÆELÇÄCLÇÀCLlMÇÈCL DLÇD$Ç$ÀCLÇEÈèïC‹UÇD$ÀCLÇD$˜ULÇEȉ$èÝ÷ÿÿ‹EǤOLÇ OLˆjMÇD$ OLÇD$xUL‰$è®÷ÿÿ‹UÇ´OLǰOLkMÇD$°OLÇD$€UL‰$è÷ÿÿÇüNLÇøNLHjMÇEÈèO£OL‹EÇD$øNLÇD$pULÇEȉ$è8÷ÿÿǤGLÇ GLhMǨGLǬGLưGLƱGLƲGLÇ´GLǸGLǼGLÇÀGLÇÄGLÇÈGLÇÌGLÆÐGLÆÑGLÆÒGLÆÓGLÆÔGLÆÕGLÆÖGLÆ×GLÆãGLÇXDLÇTDL^MÇ\DL GLÇD$ÇD$Ç$TDLÇEÈèuþÿ‹UÇD$TDLÇD$ŒTLÇEȉ$èöÿÿÇHLÇHLhMÇHLÇ HLÆHLÆHLÆHLÇHLÇHLÇHLÇ HLÇ$HLÇ(HLÇ,HLÆ0HLÆ1HLÆ2HLÆ3HLÆ4HLÆ5HLÆ6HLÆ7HLÆCHLÇdDLÇ`DLH^MÇhDLHLÇD$ÇD$Ç$`DLÇEÈèPþÿ‹EÇD$`DLÇD$TLÇEȉ$èîôÿÿ‹UÇüCLÇøCLˆmMÇD$øCLÇD$°UL‰$è¿ôÿÿ‹EÇ DLÇDL¸mMÇD$DLÇD$¸UL‰$èôÿÿÇäELÇàELÈfMÇèELÇìELÇðELÇôELÇøELÇüELÇFLÇFLÇFLÇ FLÇFLÇFLÇFLÇFLÇ FLÇ$FLÇ(FLÇ,FLÇ0FLÇ4FLÇ8FLǃút=ƒút ‰$èÊÎÇE¸è.ÑéIþÿÿ‰$è±ÎÇE¸èÑéÀþÿÿ…Òu¾ƒÁt‰$ÇE¸ÿÿÿÿèjúÿ‰$ÇE¸ÿÿÿÿèYÏU¸à4M‰å]ÃU‰åƒì¡PUL…ÀtÉÃèZ¡PULÉÃU1À‰å]ÃU¹‰åƒì‹E‰uø‹u ‰}ü¿P MÇó¦u ‹uø‹}ü‰ì]ÃÇ$T MèäzU‰åƒìÇD$ÇD$à4MÇ$PULèžÿÿÿÉÃU‰å‹EÇ]ÃU1À‰å]ÃU‰åƒì‹EÇð\MÉéÈU‰å‹EÇð\M]ÃU‰åƒìhEø‰EÔE´‰$ÇḚ´KÇEмÌKÇEØ&ÜJ‰eÜè!eúÿÇE¸ÿÿÿÿèåáÿÿèûÿ‹(vM…Ò‰Eðt:‰$è+núÿ…À„ Ç$è§ÊÇÀ\MÇD$ FÇD$à9M‰$è)Ø¡dUL‹U ‰E¬‹‰Âƒ‹U £dULEì‰$ÇE¸‰T$èé{ûÿƒìEìÇD$ÈM‰$ÇE¸è¼Zûÿ…Àt‹EìÇ$‰D$èÍûÿ‹Eìƒè =pTL…¹‹(vM‹Eð…Òt=‰$ÇE¸èømúÿ…Àt*Ç$èèÉÇØ\MÇD$à FÇD$ì9M‰$èj׋E¬‹U‰D$‰$èE´‰$èdúÿ‹EÉ‹dUL‹ (vM‰U¬‹U …É‹‰Â„ÿÿÿðƒ‹U ‹éÿÿÿƒÅ‹E¼‹UÀ‰E°‹E¸ƒøtCƒøtf…ÀtE ƒ=(vMu%‹PJÿ‰H…Ò-ÿÿÿU÷‰T$‰$è2ãýÿéÿÿÿƒÊÿðÁPëÚEì‰$èþÿEð‰$èûÿ‹U°ÇE¸ÿÿÿÿ‰$èÛfúÿƒÂt‹E°ÇE¸ÿÿÿÿ‰$èÄfúÿ‹U°ÇE¸ÿÿÿÿ‰$èÌU‰åƒìèÕßÿÿ¡HULÇ$@NL‰D$è¸@NLÉÃU‰å‹U ‹E‰]ÃU‹ (vM‰å‹E ‹U…É‹‰u ƒ]Ãt&ðƒ]ÃU‰åƒìXEø‰EäEÄÇEܰ´KÇEà¬ÌKÇEè‡ÞJ‰eì‰$èqbúÿ‹UÇÇEÈè,ßÿÿ¡dUL‹U;HUL‰„ÛÇEÈèºûÿ‹(vM‰EÀ…Òt=‰$èUkúÿ…ÀtMÇ$èÕÇÇÀ\MÇD$ FÇD$à9M‰$èWÕ´&¡dUL‰Âƒ‹U‰Eĉ$èvbúÿÉË (vM¡dUL…ɉÂtÚðƒ¡dUL‹U‰‹(vM…ÒtÊ‹EÀÇEȉ$èYkúÿ…Àt´Ç$èIÇÇØ\MÇD$à FÇD$ì9M‰$èËÔ‹ (vM…Éu!ƒéxÿÿÿƒÅ‹MÈ‹EÌ‹UÐ…Étƒét  fðƒéVÿÿÿƒÂt‰$ÇEÈÿÿÿÿèÃdúÿ‰$ÇEÈÿÿÿÿèÊU‰åSƒì‹E‹¡(vM…Àu+‹Pÿ‰ƒøtƒÄ[]Ã…Ûtö‰$è=øÿÿ‰]ƒÄ[]é€Ã¸ÿÿÿÿðÁëÑU‰åƒì(‹ (vM‰uü‹u ‰]ø‹E…É‹uJƒ‹‹Jÿ‰ ƒút‹‰‹]ø‹uü‰ì]Ãv…Ûtë‰Eô‰$èÑ÷ÿÿ‰$èËEô‹‰‹]ø‹uü‰ì]Ãðƒ‹(vM‹…Òt«ºÿÿÿÿðÁë§U‰åƒì8‰]ô‹]‰uø‹u ‰}ü‹}‹S;StG…Òt‹Bü‰B‰CBü‹)ðÁø…Àu‰‹]ô‹uø‹}ü‰ì]Ãt&Áà)‰D$‰t$‰$è{ûÿëÖ‹‰Ñ)ÁÁù…É„È 9цԉñ)ÁÁùÇEäüÿÿÿ‹Eä‰M܉$èá‹M܉‹ Š…Ét‹?‰9‰ñ1ÿ)ÁÁù…Ét<‰$‰Uà‰|$‰D$èûÿ‹Uà‹CL:1ÿ)ðÁø…Àt#<…‰ $‰Uà‰M܉|$‰t$èÖûÿ‹MÜ‹Uà‹<9…Àt‰Uà‰$è¼Á‹Uà‰Uä‰{‰S‹]ô‹uø‹}ü‰ì]Éñº)ÁÁùÁâ‰Uäé:ÿÿÿúÿÿÿ?‡ ÿÿÿ‰ñ)ÁÁù…ÒuÞÇEä1Òé*ÿÿÿU‰åƒì‹E‹…Àt ‰EÉéHÁÉÃU‰åƒì8‰]ô‹]‰uø‹u ‰}ü‹}‹S;StG…Òt‹Bü‰B‰CBü‹)ðÁø…Àu‰‹]ô‹uø‹}ü‰ì]Ãt&Áà)‰D$‰t$‰$èÛÿúÿëÖ‹‰Ñ)ÁÁù…É„È 9цԉñ)ÁÁùÇEäüÿÿÿ‹Eä‰M܉$èAÁ‹M܉‹ Š…Ét‹?‰9‰ñ1ÿ)ÁÁù…Ét<‰$‰Uà‰|$‰D$èhÿúÿ‹Uà‹CL:1ÿ)ðÁø…Àt#<…‰ $‰Uà‰M܉|$‰t$è6ÿúÿ‹MÜ‹Uà‹<9…Àt‰Uà‰$èÀ‹Uà‰Uä‰{‰S‹]ô‹uø‹}ü‰ì]Éñº)ÁÁùÁâ‰Uäé:ÿÿÿúÿÿÿ?‡ ÿÿÿ‰ñ)ÁÁù…ÒuÞÇEä1Òé*ÿÿÿU‰åƒì‹E‹…Àt ‰EÉ騿ÉÃU‰åƒìH‰]ô‹]‰}ü‹} ‰uø9ßtC‹W‹‰Ö)ƉEà‹CÁþ‰Uä‹)ЉÑÁø9ÆwX‹S‰Ð)ÈÁø9ƉUÔw$…ö…œÁæ3‰s‰Ø‹uø‹]ô‹}ü‰ì]Ãt&‹Uà…À‚‰UÜ…‹Eä+EÜÁø…ÀuB4±ëÆ…ö„»þÿÿÿ?‡óµ‰Eä‰$臿…ö‰Ç…½‹é•¶Áà‹U܉D$‹EÔ‰T$‰$è·ýúÿéfÿÿÿfµ‰D$‹Eà‰ $‰D$è–ýúÿéEÿÿÿÁà‰D$‹Eà‰ $‰D$èzýúÿ‹S‹ ‹‹‰UÔ)ʃâü‰}ä‹Eä‰UÜ+EÜÁø…À„=ÿÿÿézÿÿÿÇEä1ÿ…Òt‰$è5¾‹uä‰;47‰séÞþÿÿt&‹Uä‹Eà‰<$‰T$‰D$è ýúÿ‹ëÅèadU1À‰åSƒì‹]ƒ}•À‰CE ÇÈiM‰$è õÿÿ‰CƒÄ[]ÃU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàxÕKÇEè#åJ‰eìèñZúÿ1À‹Uƒ} •À‰BÇÈiMÇEÈèôÿÿ‹U‰BEĉ$è_[úÿÉÃÅ‹U‹EÌÇÈhM‰EÀ‰$ÇEÈè<õÿÿ‹EÀÇEÈÿÿÿÿ‰$è*^úÿU‰åSƒì‹]‰$è‰]ƒÄ[]é½U‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàlÕKÇEèïåJ‰eìè1Zúÿ‹EÇÈiMƒÀ‰$ÇEÈèvôÿÿ‹EÇÈhM‰$ÇEÈÿÿÿÿèžôÿÿEĉ$è“ZúÿÉÃÅ‹ẺEÀ‹EÇÈhM‰$ÇEÈèpôÿÿ‹EÀÇEÈÿÿÿÿ‰$è^]úÿU1À‰åSƒì‹]ƒ}•À‰CE ÇjM‰$èióÿÿ‰CƒÄ[]ÃU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà~ÕKÇEèÃæJ‰eìèQYúÿ1À‹Uƒ} •À‰BÇjMÇEÈèðòÿÿ‹U‰BEĉ$è¿YúÿÉÃÅ‹U‹EÌÇiM‰EÀ‰$ÇEÈèœóÿÿ‹EÀÇEÈÿÿÿÿ‰$èŠ\úÿU‰åSƒì‹]‰$è‰]ƒÄ[]éq»U‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàrÕKÇEèçJ‰eìè‘Xúÿ‹EÇjMƒÀ‰$ÇEÈèÖòÿÿ‹EÇiM‰$ÇEÈÿÿÿÿèþòÿÿEĉ$èóXúÿÉÃÅ‹ẺEÀ‹EÇiM‰$ÇEÈèÐòÿÿ‹EÀÇEÈÿÿÿÿ‰$è¾[úÿU1À‰åSƒì‹]ƒ}•À‰CE ÇHjM‰$èÉñÿÿ‰CƒÄ[]ÃU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà¶ÒKÇEècèJ‰eìè±Wúÿ1À‹Uƒ} •À‰BÇHjMÇEÈèPñÿÿ‹U‰BEĉ$èXúÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$èòÿÿ‹EÀÇEÈÿÿÿÿ‰$èðZúÿU1À‰åSƒì‹]ƒ}•À‰CE ÇHjM‰$è ñÿÿ‰CƒÄ[]ÃU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà°ÒKÇEè#éJ‰eìèñVúÿ1À‹Uƒ} •À‰BÇHjMÇEÈèðÿÿ‹U‰BEĉ$è_WúÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$èBñÿÿ‹EÀÇEÈÿÿÿÿ‰$è0ZúÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàfÑKÇEèÄéJ‰eìèaVúÿ‹EÇHjMƒÀ‰$ÇEÈè¦ðÿÿ‹EÇEÈÿÿÿÿ‰$èÔðÿÿ‹E‰$èÙ¸Eĉ$è¾VúÿÉÃÅ‹EÌÇEȉEÀ‹E‰$è¡ðÿÿ‹EÀÇEÈÿÿÿÿ‰$èYúÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàTÑKÇEèiêJ‰eìè±Uúÿ‹EÇHjMƒÀ‰$ÇEÈèöïÿÿ‹EÇEÈÿÿÿÿ‰$è$ðÿÿEĉ$èVúÿÉÃÅ‹EÌÇEȉEÀ‹E‰$èüïÿÿ‹EÀÇEÈÿÿÿÿ‰$èêXúÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà¼ÒKÇEè ëJ‰eìèUúÿ‹EÇHjMƒÀ‰$ÇEÈèVïÿÿ‹EÇEÈÿÿÿÿ‰$è„ïÿÿEĉ$èyUúÿÉÃÅ‹EÌÇEȉEÀ‹E‰$è\ïÿÿ‹EÀÇEÈÿÿÿÿ‰$èJXúÿU1À‰åSƒì‹]ƒ}•À‰CE ÇhjM‰$èYîÿÿ‰CƒÄ[]ÃU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàFÎKÇEèÓëJ‰eìèATúÿ1À‹Uƒ} •À‰BÇhjMÇEÈèàíÿÿ‹U‰BEĉ$è¯TúÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$è’îÿÿ‹EÀÇEÈÿÿÿÿ‰$è€WúÿU1À‰åSƒì‹]ƒ}•À‰CE ÇhjM‰$è™íÿÿ‰CƒÄ[]ÃU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà@ÎKÇEè“ìJ‰eìèSúÿ1À‹Uƒ} •À‰BÇhjMÇEÈè íÿÿ‹U‰BEĉ$èïSúÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$èÒíÿÿ‹EÀÇEÈÿÿÿÿ‰$èÀVúÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàöÌKÇEè4íJ‰eìèñRúÿ‹EÇhjMƒÀ‰$ÇEÈè6íÿÿ‹EÇEÈÿÿÿÿ‰$èdíÿÿ‹E‰$èiµEĉ$èNSúÿÉÃÅ‹EÌÇEȉEÀ‹E‰$è1íÿÿ‹EÀÇEÈÿÿÿÿ‰$èVúÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàäÌKÇEèÙíJ‰eìèARúÿ‹EÇhjMƒÀ‰$ÇEÈè†ìÿÿ‹EÇEÈÿÿÿÿ‰$è´ìÿÿEĉ$è©RúÿÉÃÅ‹EÌÇEȉEÀ‹E‰$èŒìÿÿ‹EÀÇEÈÿÿÿÿ‰$èzUúÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàLÎKÇEèyîJ‰eìè¡Qúÿ‹EÇhjMƒÀ‰$ÇEÈèæëÿÿ‹EÇEÈÿÿÿÿ‰$èìÿÿEĉ$è RúÿÉÃÅ‹EÌÇEȉEÀ‹E‰$èìëÿÿ‹EÀÇEÈÿÿÿÿ‰$èÚTúÿU1Ò‰å‹Eƒ} •‰PLjjM]ÃU1Ò‰å‹Eƒ} •‰PLjjM]ÃU‰åSƒì‹]LjjM‰$èxëÿÿ‰]ƒÄ[]é{³U‰åƒì‹ELjjMÉéKëÿÿU‰åƒì‹ELjjMÉé+ëÿÿU1Ò‰å‹Eƒ} •‰PÇÈjM]ÃU1Ò‰å‹Eƒ} •‰PÇÈjM]ÃU‰åSƒì‹]ÇÈjM‰$èÈêÿÿ‰]ƒÄ[]é˲U‰åƒì‹EÇÈjMÉé›êÿÿU‰åƒì‹EÇÈjMÉé{êÿÿU1Ò‰å‹Eƒ} •‰PÇkM]ÃU1Ò‰å‹Eƒ} •‰PÇkM]ÃU‰åSƒì‹]ÇkM‰$èêÿÿ‰]ƒÄ[]é²U‰åƒì‹EÇkMÉéëéÿÿU‰åƒì‹EÇkMÉéËéÿÿU1Ò‰å‹Eƒ} •‰PÇHkM]ÃU1Ò‰å‹Eƒ} •‰PÇHkM]ÃU‰åSƒì‹]ÇHkM‰$èhéÿÿ‰]ƒÄ[]ék±U‰åƒì‹EÇHkMÉé;éÿÿU‰åƒì‹EÇHkMÉééÿÿU‰åSƒì‹]LjkM‰$è¨9‰]ƒÄ[]éû°U‰åƒì‹ELjkMÉé{9U‰åWVSƒìl¶EUèÇḚ´KÇEÐ8ÄKˆE E´‰$‰UÔÇEØKóJ‰eÜèçMúÿ‹EÇE¤ƒÀ$ƒ} ‰E¨Ž} ÿÿÿ„Á‹U ÇE¸ƒÂÕ‰U¤‰$èq°‹U ‰E ƒêÇÇ@ƒÀƒúÿuè‹E‹pd…öŽÅ‹U1À‹} ‹Zh‹ËLÉljLǃÀ9ðuë…Û„•9]¨„„‰$èܯ‹E ‰E¨¶‹U‹E¨‰Bh‹E¤‰Bd‹U ‹E¨ЉU°E´‰$èªMúÿ‹E°ƒÄl[^_]ËU‹BƒÈ…B‰BuF€} u‹UÇB‹EƒÀ‰E°ë¾v‹EÇ@ ëæt&‹E ‰E¨ëˆ‹U ‰U¨ë€‹XhéSÿÿÿÇ$øMÇE¸ÿÿÿÿèWƒÅ‹E¸‹U¼…À‰U¬‹UÀtƒèt ƒêt0‹E¬ÇE¸ÿÿÿÿ‰$èPúÿÇE¸èè¶‹E¬ÇE¸ÿÿÿÿ‰$èæOúÿ‹U¬‰$è[´‹U‹BƒÈ…B‰Bu*€} t7‹EÇ@ ‹EÇE¸ÿÿÿÿƒÀ‰E°è•¶éëþÿÿÇ$ MÇE¸èmV‹UÇBëÇU‰åƒìx¶EÇḚ´KÇEÐ,¼KÇEØBöJˆE£Eø‰EÔE´‰$‰eÜèªKúÿ¶ŒUL€}£ˆE¤u„ÀuE´‰$è+Lúÿ¶E¤ÉÃt&E÷‰$ÇE¸ÿÿÿÿèŽÆŒULÇ`PLˆdMÇ$|PLèAêÿÿÇàOLˆdMÇ$üOLè+êÿÿÇ PLˆdMÇ$Iúÿ‹U‹R…Ò‰U°t3‹U°‹B‹U ‰D$‹E‰$‹U°‰D$‹BÇE¸ÿЋE°‹…À‰E°uÎE´‰$è“IúÿƒÄ\[^_]ÃÅ‹U¸‹E¼‹MÀ…Òtƒêt ‰$èì°ÇE¸èP³ë´ƒÁt‰$ÇE¸ÿÿÿÿèJLúÿ‰$ÇE¸ÿÿÿÿè›±U‰åSƒì‹]Ç$èÊ«‹S‰‹U Ç@ ‰P‹U‰P‰CƒÄ[]ÃU‰åW¿ÿÿÿÿVSƒì‹u‹F…Àt<‹(vM…Òu'‹P Jÿ…Ò‰H u%‹‰$èǪ…Ût‹(vM‰Ø…ÒtÙ‰úðÁP …ÒtÛÇFƒÄ[^_]ÃU‰åƒìXEø‰EäEÄÇEܰ´KÇEà¼KÇEèÿJ‰eì‰$è±Gúÿ‹(vM…Ò…#¡ˆULP‰ˆUL…ÀtEĉ$è&HúÿÉÃt&¡œ&NÆŒULÇ`PLˆdMÇdPLƒÀ ‰EÀÇhPLÇlPLÇpPLÇtPLÇxPLÇ$|PLè|äÿÿ‹EÀÇ`PL(\MÇ„PLÿÿÿÿÇàOLˆdM£€PLÇäOLÇèOLÇìOLÇðOLÇôOLÇøOLÇ$üOLèäÿÿ¡œ&NÇàOL(\MÇPLÿÿÿÿÇ PLˆdM£PLƒÀ@‰E¼Ç$PLÇ(PLÇ,PLÇ0PLÇ4PLÇ8PLÇ$úÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà€ÒKÇEèSK‰eìèÁ:úÿ1À‹Uƒ} •À‰BǰkMÇEÈè`Ôÿÿ‹U‰BEĉ$è/;úÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$èÕÿÿ‹EÀÇEÈÿÿÿÿ‰$è>úÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà†ÒKÇEèãK‰eìè1:úÿ1À‹Uƒ}•À‰BǰkMÇEÈèÐÓÿÿ‹U‰BEĉ$èŸ:úÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$è‚Ôÿÿ‹EÀÇEÈÿÿÿÿ‰$èp=úÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàzÒKÇEèsK‰eìè¡9úÿ1À‹Uƒ} •À‰BǰkMÇEÈè@Óÿÿ‹U‰BEĉ$è:úÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$èòÓÿÿ‹EÀÇEÈÿÿÿÿ‰$èà<úÿU‰åSƒì‹]‰$è‰]ƒÄ[]éÑ›U‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàZÑKÇEè)K‰eìèñ8úÿ‹EǰkMƒÀ‰$ÇEÈè6Óÿÿ‹EÇEÈÿÿÿÿ‰$èdÓÿÿEĉ$èY9úÿÉÃÅ‹EÌÇEȉEÀ‹E‰$è<Óÿÿ‹EÀÇEÈÿÿÿÿ‰$è*<úÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà’ÒKÇEèÉK‰eìèQ8úÿ‹EǰkMƒÀ‰$ÇEÈè–Òÿÿ‹EÇEÈÿÿÿÿ‰$èÄÒÿÿEĉ$è¹8úÿÉÃÅ‹EÌÇEȉEÀ‹E‰$èœÒÿÿ‹EÀÇEÈÿÿÿÿ‰$èŠ;úÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÎKÇEècK‰eìè±7úÿ1À‹Uƒ}•À‰BÇÐkMÇEÈèPÑÿÿ‹U‰BEĉ$è8úÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$èÒÿÿ‹EÀÇEÈÿÿÿÿ‰$èð:úÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÎKÇEèóK‰eìè!7úÿ1À‹Uƒ} •À‰BÇÐkMÇEÈèÀÐÿÿ‹U‰BEĉ$è7úÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$èrÑÿÿ‹EÀÇEÈÿÿÿÿ‰$è`:úÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÎKÇEèƒ K‰eìè‘6úÿ1À‹Uƒ}•À‰BÇÐkMÇEÈè0Ðÿÿ‹U‰BEĉ$èÿ6úÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$èâÐÿÿ‹EÀÇEÈÿÿÿÿ‰$èÐ9úÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà ÎKÇEè K‰eìè6úÿ1À‹Uƒ} •À‰BÇÐkMÇEÈè Ïÿÿ‹U‰BEĉ$èo6úÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$èRÐÿÿ‹EÀÇEÈÿÿÿÿ‰$è@9úÿU‰åSƒì‹]‰$è‰]ƒÄ[]é1˜U‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàêÌKÇEèÉ K‰eìèQ5úÿ‹EÇÐkMƒÀ‰$ÇEÈè–Ïÿÿ‹EÇEÈÿÿÿÿ‰$èÄÏÿÿEĉ$è¹5úÿÉÃÅ‹EÌÇEȉEÀ‹E‰$èœÏÿÿ‹EÀÇEÈÿÿÿÿ‰$èŠ8úÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà"ÎKÇEèi K‰eìè±4úÿ‹EÇÐkMƒÀ‰$ÇEÈèöÎÿÿ‹EÇEÈÿÿÿÿ‰$è$ÏÿÿEĉ$è5úÿÉÃÅ‹EÌÇEȉEÀ‹E‰$èüÎÿÿ‹EÀÇEÈÿÿÿÿ‰$èê7úÿU‰åSƒì‹]‹C…ÀtqÆ@$.1ÒÆ@%,‹„TLÇ@¸MÇ@ Æ@¶ ˆL&ƒÂƒú$uð‹€TL0Òt&¶ ˆLJƒÂƒúuðÇ@¹MÇ@Ç@¾MÇ@ ƒÄ[]ÃÇ$hè—Ç@ÇfMÇ@Ç@ Æ@Ç@Ç@Ç@Ç@ Æ@$Æ@%Æ@d‰Cé4ÿÿÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÒKÇEèî K‰eìè13úÿ‹U1Àƒ}•À‰B‹E ÇlM‰BÇD$‰$ÇEÈè¿þÿÿEĉ$è”3úÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$èwÍÿÿ‹EÀÇEÈÿÿÿÿ‰$èe6úÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÒKÇEèŽ K‰eìè‘2úÿ‹U1Àƒ}•À‰B‹E ÇlMÇB‰$‰D$ÇEÈèþÿÿEĉ$èô2úÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$è×Ìÿÿ‹EÀÇEÈÿÿÿÿ‰$èÅ5úÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÒKÇEè/K‰eìèñ1úÿ‹U1Àƒ} •À‰BÇlMÇBÇD$‰$ÇEÈè~ýÿÿEĉ$èS2úÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$è6Ìÿÿ‹EÀÇEÈÿÿÿÿ‰$è$5úÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà ÒKÇEèÎK‰eìèQ1úÿ‹U1Àƒ}•À‰B‹E ÇlM‰BÇD$‰$ÇEÈèßüÿÿEĉ$è´1úÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$è—Ëÿÿ‹EÀÇEÈÿÿÿÿ‰$è…4úÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÒKÇEènK‰eìè±0úÿ‹U1Àƒ}•À‰B‹E ÇlMÇB‰$‰D$ÇEÈè?üÿÿEĉ$è1úÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$è÷Êÿÿ‹EÀÇEÈÿÿÿÿ‰$èå3úÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÒKÇEèK‰eìè0úÿ‹U1Àƒ} •À‰BÇlMÇBÇD$‰$ÇEÈèžûÿÿEĉ$ès0úÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$èVÊÿÿ‹EÀÇEÈÿÿÿÿ‰$èD3úÿU‰åSƒì‹]‰$è‰]ƒÄ[]é1’U‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà„ÕKÇEèÏK‰eìèQ/úÿ‹U‹BÇlM…Àt‹‰$‹BÇEÈÿЋEÇEÈÿÿÿÿ‰$è¾ÉÿÿEĉ$è³/úÿÉÃÅ‹UÌ‹EÇEȉUÀ‰$è–Éÿÿ‹UÀÇEÈÿÿÿÿ‰$è„2úÿU‰åSƒì‹]‹C…Àtt‹„TL1ÒÇ@¸MÇ@ Æ@fÇ@$.fÇ@&,f¾ f‰LP(ƒÂƒú$uî‹€TL0Òf¾ f‰LPpƒÂƒúuîÇ@ÄMÇ@Ç@ÎMÇ@ ƒÄ[]ÃÇ$¨èŸ‘Ç@Ç fMÇ@Ç@ Æ@Ç@Ç@Ç@Ç@ fÇ@$fÇ@&Æ€¤‰Cé*ÿÿÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà¢ÍKÇEè^K‰eìèÁ-úÿ‹U1Àƒ}•À‰B‹E ÇHlM‰BÇD$‰$ÇEÈè¯þÿÿEĉ$è$.úÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$èÈÿÿ‹EÀÇEÈÿÿÿÿ‰$èõ0úÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà®ÍKÇEèþK‰eìè!-úÿ‹U1Àƒ}•À‰B‹E ÇHlMÇB‰$‰D$ÇEÈèþÿÿEĉ$è„-úÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$ègÇÿÿ‹EÀÇEÈÿÿÿÿ‰$èU0úÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà–ÍKÇEèŸK‰eìè,úÿ‹U1Àƒ} •À‰BÇHlMÇBÇD$‰$ÇEÈènýÿÿEĉ$èã,úÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$èÆÆÿÿ‹EÀÇEÈÿÿÿÿ‰$è´/úÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàœÍKÇEè>K‰eìèá+úÿ‹U1Àƒ}•À‰B‹E ÇHlM‰BÇD$‰$ÇEÈèÏüÿÿEĉ$èD,úÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$è'Æÿÿ‹EÀÇEÈÿÿÿÿ‰$è/úÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà¨ÍKÇEèÞK‰eìèA+úÿ‹U1Àƒ}•À‰B‹E ÇHlMÇB‰$‰D$ÇEÈè/üÿÿEĉ$è¤+úÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$è‡Åÿÿ‹EÀÇEÈÿÿÿÿ‰$èu.úÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÍKÇEèK‰eìè¡*úÿ‹U1Àƒ} •À‰BÇHlMÇBÇD$‰$ÇEÈèŽûÿÿEĉ$è+úÿÉÃÅ‹EÌ‹UÇEȉEÀ‰$èæÄÿÿ‹EÀÇEÈÿÿÿÿ‰$èÔ-úÿU‰åSƒì‹]‰$è‰]ƒÄ[]éÁŒU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàŠÕKÇEè?K‰eìèá)úÿ‹U‹BÇHlM…Àt‹‰$‹BÇEÈÿЋEÇEÈÿÿÿÿ‰$èNÄÿÿEĉ$èC*úÿÉÃÅ‹UÌ‹EÇEȉUÀ‰$è&Äÿÿ‹UÀÇEÈÿÿÿÿ‰$è-úÿU1Ò‰å‹Eƒ} •‰PLjlM]ÃU1Ò‰å‹Eƒ} •‰PLjlM]ÃU‰åSƒì‹]LjlM‰$è¸Ãÿÿ‰]ƒÄ[]黋U‰åƒì‹ELjlMÉé‹ÃÿÿU‰åƒì‹ELjlMÉékÃÿÿU1Ò‰å‹Eƒ} •‰PÇÈlM]ÃU1Ò‰å‹Eƒ} •‰PÇÈlM]ÃU‰åSƒì‹]ÇÈlM‰$èÃÿÿ‰]ƒÄ[]é ‹U‰åƒì‹EÇÈlMÉéÛÂÿÿU‰åƒì‹EÇÈlMÉé»ÂÿÿU1Ò‰å‹Eƒ} •‰PÇmM]ÃU1Ò‰å‹Eƒ} •‰PÇmM]ÃU‰åSƒì‹]ÇmM‰$èXÂÿÿ‰]ƒÄ[]é[ŠU‰åƒì‹EÇmMÉé+ÂÿÿU‰åƒì‹EÇmMÉé ÂÿÿU1Ò‰å‹Eƒ} •‰PÇ mM]ÃU1Ò‰å‹Eƒ} •‰PÇ mM]ÃU‰åSƒì‹]Ç mM‰$è¨Áÿÿ‰]ƒÄ[]髉U‰åƒì‹EÇ mMÉé{ÁÿÿU‰åƒì‹EÇ mMÉé[ÁÿÿU‰åSƒì‹]Ç8mM‰$èè‰]ƒÄ[]é;‰U‰åƒì‹EÇ8mMÉé»U‰åƒì‹U ‹E‰P‹P‰U ÉéU‰åƒì …ÁuÉÃè-™U‰åƒì‹E‹U P…PuÉÃè™U‰åƒì …ÁuÉÃèí˜U‰åƒìƒ ¨uÉÃè̘U‰åVSƒì‹] ‹u‰$è*O„ÀtF‰$è^Z‰F|‰$èR„ÀtD‰$èG]‰†€‰$è9Q„Àt‰$èm\‰†„ƒÄ[^]ÃÇF|ë¼Ç†„ëädž€ë¾U‰å‹U‹M ‹Bp‰Jp]ÃU‰åƒì(‰]ø‹]‰uü¶U €{ut¶CtˆSt‹]ø‹uü‰ì]ö‹s|…öt<€~t¶F=ÆCuˆSt‹]ø‹uü‰ì]ÈUô‰4$è35ûÿ‹ÇD$ ‰4$ÿP¶UôëÎè-U‰åƒì‰]ø‹]‰uü‹u ‰$èvæÿÿCl‰D$‰$è§þÿÿ1À…ö”ÀÆCtÆCuÇCpÇC‰sx‰C‹]ø‹uü‰ì]ÃU‰åƒì‹E‹U ‹Hx…Ét …P‰Pu ÉÃvƒÊëîÇ$äMè.U‰åƒìhEø‰EÔE´‰$‰eÜÇḚ´KÇEÐÄKÇEØãKèÁ#úÿ‹E ‹UƒÀl‰D$‰$èÜÀÿÿ‹E‹U ‰D$Eô‰$‰T$èóäÿÿUôƒì‰$èuÂÿÿ‹E‹U ÇE¸‰D$‰$è¬ýÿÿ‹E ‹@x…À‰E°tPƒÀ‰E¬‰D$Eð‰$èzÀÿÿ‹U°‹‹U‰T$‹U°‰$‹@ÇE¸ÿЋE‹U¬‰D$‰$èZÂÿÿEð‰$èÿÁÿÿE´‰$è¤#úÿ‹EɃŋE¸‹U¼…À‰U°tƒèt Eð‰$èËÁÿÿ‹E‰$èÀÁÿÿ‹U°ÇE¸ÿÿÿÿ‰$è^&úÿU‰åSƒì‹U‹E ‹Zx‰BxÇD$‰$è]þÿÿ‰ØƒÄ[]ÃU‰åWVSƒìL‹]‹u 9ó„?‹Fdƒøž{$‰}ЋF…À‰EÔt‹(vM…Ò…¿‹EÔƒ@ ÇD$‰$è¸Øÿÿ‹Ch9øt…Àt‰$资ÇCh‰$è¶Ùÿÿ‹EÔ‰C‹Fd…À‰EÔ~1‹~h1À‰]Ì‹]ЉuÈ‹uÔt&‹Ç‹LljÉLÃÀ9ðuë‹]Ì‹uÈ‹EЀ~u‰Ch‹EÔ‰Cd‹F ‰C ‹F‰C‹F‰C‹Fp‰Cp„·¶Vt€{utmˆStFl}ä‰D$‰<$訾ÿÿSl‰$‰Uĉ|$è¦Àÿÿ‰<$èNÀÿÿ‹Uĉ$‰T$èûÿÿÇD$‰$èÏ×ÿÿ‹F‰C‹C‰$‰D$èúüÿÿƒÄL‰Ø[^_]Ë{|…ÿ„Á€uˆUĉ<$è„1ûÿ‹ÇD$ ‰<$ÿP¶UÄÆCuéZÿÿÿ´&‹~|…ÿ„€t_¶W=ˆVtÆFué,ÿÿÿÁà‰${$胋Nd…ɉEЄLþÿÿ1ÒÇÐÇDЃÂ9Ñuê{$é+þÿÿfðƒ@ é>þÿÿ¶‰<$èè0ûÿ‹ÇD$ ‰<$ÿP‰Âë‰è¿(U‰åƒì‹U‹E B‰E ÉéøûÿÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÄKÇEèZ K‰eìèñúÿ‹E‰$èfãÿÿ‹EÆ@tÇPmMÇ@pÆ@uÇ@xÇ@|Ç€€Ç€„‹E ÇEȉD$‹E‰$èûÿÿEĉ$è( úÿÉÃÅ‹EÌÇEȉEÀ‹E‰$è‹ãÿÿ‹EÀÇEÈÿÿÿÿ‰$èù"úÿU‰åSƒì‹]‰$è¾âÿÿÇPmMÇCpÆCtÆCuÇCxÇC|ǃ€Çƒ„ƒÄ[]ÃU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà ÄKÇEèz!K‰eìèÑúÿ‹E‰$èFâÿÿ‹EÆ@tÇPmMÇ@pÆ@uÇ@xÇ@|Ç€€Ç€„‹E ÇEȉD$‹E‰$èãùÿÿEĉ$èúÿÉÃÅ‹EÌÇEȉEÀ‹E‰$èkâÿÿ‹EÀÇEÈÿÿÿÿ‰$èÙ!úÿU‰åSƒì‹]‰$èžáÿÿÇPmMÇCpÆCtÆCuÇCxÇC|ǃ€Çƒ„ƒÄ[]ÃU‰åSƒì‹]ÇPmM‰$èèáÿÿ‰]ƒÄ[]ék€U‰åƒì‹EÇPmMÉé»áÿÿU‰åƒì‹EÇPmMÉé›áÿÿU‰åƒì‹U ‹E‰P‹P‰U ÉéÕU‰åƒì …ÁuÉÃè=U‰åƒì‹E‹U P…PuÉÃèU‰åƒì …ÁuÉÃèýU‰åVSƒì‹] ‹u‰$èºF„ÀtF‰$èîQ‰F|‰$è£I„ÀtD‰$è×T‰†€‰$èÉH„Àt‰$èýS‰†„ƒÄ[^]ÃÇF|ë¼Ç†„ëädž€ë¾U‰å‹U‹M ‹Bp‰Jp]ÃU‰åƒì‰]ø‹]‰uü·u €{vt·Ctf‰st‹]ø‹uü‰ì]Ãt&‹C|…Àt"‹ÇD$ ‰$ÿR(ÆCvf‰st‹]ø‹uü‰ì]ÃèR$U‰åƒì‰]ø‹]‰uü‹u ‰$èÆÝÿÿCl‰D$‰$èÇþÿÿ1À…ö”ÀfÇCtÆCvÇCpÇC‰sx‰C‹]ø‹uü‰ì]ÃU‰åƒì‹E‹U ‹Hx…Ét …P‰Pu ÉÃvƒÊëîÇ$äMèÏ%U‰åƒìhEø‰EÔE´‰$‰eÜÇḚ´KÇEÐ$ÄKÇEØ“%Kèúÿ‹E ‹UƒÀl‰D$‰$è,¸ÿÿ‹E‹U ‰D$Eô‰$‰T$èCÜÿÿUôƒì‰$èŹÿÿ‹E‹U ÇE¸‰D$‰$èÌýÿÿ‹E ‹@x…À‰E°tPƒÀ‰E¬‰D$Eð‰$èÊ·ÿÿ‹U°‹‹U‰T$‹U°‰$‹@ÇE¸ÿЋE‹U¬‰D$‰$誹ÿÿEð‰$èO¹ÿÿE´‰$èôúÿ‹EɃŋE¸‹U¼…À‰U°tƒèt Eð‰$è¹ÿÿ‹E‰$è¹ÿÿ‹U°ÇE¸ÿÿÿÿ‰$è®úÿU‰åSƒì‹U‹E ‹Zx‰BxÇD$‰$è]þÿÿ‰ØƒÄ[]ÃU‰åWVSƒìL‹]‹u 9ó„@‹Fdƒø{$‰}ЋF…À‰EÔt‹(vM…Ò…¯‹EÔƒ@ ÇD$‰$èÐÿÿ‹Ch9øt…Àt‰$è|ÇCh‰$èÑÿÿ‹EÔ‰C‹Fd…À‰EÔ~1‹~h1À‰]Ì‹]ЉuÈ‹uÔt&‹Ç‹LljÉLÃÀ9ðuë‹]Ì‹uÈ‹EЀ~v‰Ch‹EÔ‰Cd‹F ‰C ‹F‰C‹F‰C‹Fp‰Cp„œ·~t€{vtnf‰{tFl}ä‰D$‰<$è÷µÿÿSl‰$‰Uĉ|$èõ·ÿÿ‰<$è·ÿÿ‹Uĉ$‰T$è®ûÿÿÇD$‰$èÏÿÿ‹F‰C‹C‰$‰D$èùüÿÿƒÄL‰Ø[^_]ËC|…À„Ž‹ÇD$ ‰$ÿR(ÆCvénÿÿÿ‹F|…Àtn‹ÇD$ ‰$ÿR(ÆFv‰Çf‰FtéBÿÿÿt&Áà‰${$èâz‹Nd…ɉEЄ]þÿÿ1ÒfÇÐÇDЃÂ9Ñuê{$é;þÿÿfðƒ@ éNþÿÿ¶è; U‰åƒì‹U‹E B‰E Éé(üÿÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÄKÇEèÜ(K‰eìèqúÿ‹E‰$èæÚÿÿ‹EÇ`mMÇ@pfÇ@tÆ@vÇ@xÇ@|Ç€€Ç€„‹E ÇEȉD$‹E‰$è1ûÿÿEĉ$è¦úÿÉÃÅ‹EÌÇEȉEÀ‹E‰$è Ûÿÿ‹EÀÇEÈÿÿÿÿ‰$èwúÿU‰åSƒì‹]‰$è>ÚÿÿÇ`mMÇCpfÇCtÆCvÇCxÇC|ǃ€Çƒ„ƒÄ[]ÃU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÄKÇEè *K‰eìèAúÿ‹E‰$è¶Ùÿÿ‹EÇ`mMÇ@pfÇ@tÆ@vÇ@xÇ@|Ç€€Ç€„‹E ÇEȉD$‹E‰$èúÿÿEĉ$èvúÿÉÃÅ‹EÌÇEȉEÀ‹E‰$èÙÙÿÿ‹EÀÇEÈÿÿÿÿ‰$èGúÿU‰åSƒì‹]‰$èÙÿÿÇ`mMÇCpfÇCtÆCvÇCxÇC|ǃ€Çƒ„ƒÄ[]ÃU‰åSƒì‹]Ç`mM‰$èHÙÿÿ‰]ƒÄ[]éËwU‰åƒì‹EÇ`mMÉéÙÿÿU‰åƒì‹EÇ`mMÉéûØÿÿU‰åƒì‹EÇpmMÉékwU‰å‹EÇpmM]ÃU1Ò‰å‹Eƒ} •‰PLjmM]ÃU1Ò‰å‹Eƒ} •‰PLjmM]ÃU‰åSƒì‹]LjmM‰$èè®ÿÿ‰]ƒÄ[]éëvU‰åƒì‹ELjmMÉé»®ÿÿU‰åƒì‹ELjmMÉé›®ÿÿU1Ò‰å‹Eƒ} •‰PÇ mM]ÃU1Ò‰å‹Eƒ} •‰PÇ mM]ÃU‰åSƒì‹]Ç mM‰$è8®ÿÿ‰]ƒÄ[]é;vU‰åƒì‹EÇ mMÉé ®ÿÿU‰åƒì‹EÇ mMÉéë­ÿÿU1Ò‰å‹Eƒ} •‰PǸmM]ÃU1Ò‰å‹Eƒ} •‰PǸmM]ÃU‰åSƒì‹]ǸmM‰$舭ÿÿ‰]ƒÄ[]é‹uU‰åƒì‹EǸmMÉé[­ÿÿU‰åƒì‹EǸmMÉé;­ÿÿU1Ò‰å‹Eƒ} •‰PÇÐmM]ÃU1Ò‰å‹Eƒ} •‰PÇÐmM]ÃU‰åSƒì‹]ÇÐmM‰$èØ¬ÿÿ‰]ƒÄ[]éÛtU‰åƒì‹EÇÐmMÉ髬ÿÿU‰åƒì‹EÇÐmMÉ鋬ÿÿU‰åƒì‹EÇèmMÉé{tU‰å‹EÇèmM]ÃU‰åƒìÿŒCLèÿCU‰åWVSƒì‹u 9u‹]‹}}9Fÿ‰ÂÁêÂÑú‹ “9Ï~&¶“‰Eð‰ ³9U|%‹Eð‰8ƒÄ[^_]Ãt&4³‰uð‹Eð‰8ƒÄ[^_]ÃBÿ‰ÁÁéÑø‹ ƒ9ù}lj։Âë³U‰åWVSƒì‹E ‹U‹M‰Eì‹E‰Uè‰Eä‰Ðƒè‰ÂÁê‹EìÑú‰Uð9Ð}‰ÃDpÿ‹‹<±9ú}‰ú‰ð;Eð‰™|áöEèu‹Uèƒê‰ÓÁëÑú9Ât!‹Uä‰E ‰M‰U‹Uì‰UƒÄ[^_]éóþÿÿvD‹‰‘ëÓU‰åWVSƒì‹] ‹u‹}‰\$‰4$èB9ûsA‰Ø)ðÁø‰Eðë fƒÃ9ßv,‹‹9Ð}ñ‰ƒÃ‰D$ ‹EðÇD$‰4$‰D$èÿÿÿ9ßwÔƒÄ[^_]ÃU‰å€}W‹M V‹ES‹ut3‹]¿ÍÌÌÌv‰Èƒë÷çÁê’À)Á…Ò¶D‰Ñˆuâ‹E)Ø[^_]ɃâJƒú@t+%@‹]ƒøÀƒàðD‰Êƒëƒâ¶Áé…ɈuëëÁ‹]‰Èƒëƒà¶DÁé…Ɉuêë¦U‰åWVSƒì‹] €}‹u‹Etf‹}t&‰$ƒï‰t$ÇD$ ÇD$ èÑúÿ‹U¶Dˆ‰$‰t$ÇD$ ÇD$ èûúÿ‰Ã‰Ð ؉օÀu¯‹EƒÄ[^)ø_]ɃâJƒú@t4%@‹Uƒø‹}ÀƒàðD‰Úƒïƒâ¶¬óÁò Úuå뵋}‹U‰Øƒïƒà¶D¬óÁð Øuäë‘U‰å€}W‹M V‹ES‹ut6‹]¿ÍÌÌÌv‰Èƒë÷çÁê’À)Á…Ò·DN‰Ñf‰uá‹E)ØÑø[^_]ɃâJƒú@t-%@‹]ƒøÀƒàðƒÀ‰Êƒëƒâ·VÁé…Éf‰uè뽋]‰Èƒëƒà·DFÁé…Éf‰uéë¡U‰åWVSƒì‹] €}‹u‹Eti‹}t&‰$ƒï‰t$ÇD$ ÇD$ èQúÿ‹U·DBf‰‰$‰t$ÇD$ ÇD$ èzúÿ‰Ã‰Ð ؉օÀu®‹EƒÄ[^)øÑø_]ɃâJƒú@t6%@‹}ƒø‹MÒƒâðƒÂ‰ØƒïƒàзA¬óÁîf‰‰ð Øuâ뱋}‹U‰Øƒïƒà·DB¬óÁîf‰‰ð ØuãëŒU¡ˆCL‰å‹U]‰ˆCLÃU‰åWVSƒì¶U ‹M‹]‹uˆUï‹E1Ò¶91ɉ]äƒî‰uà‰û¾Û‰]ð‹]‰E趉Þ+u;uð’9]‹Eè‰]„1‹u‰Ç‰Uð¶ƒÆˆƒÇ9Þuñ‹Uð+uuð‹uä‰Uàëƒé‰Ð…É„Œ¶UP„Û~ã{ÿçÿƒÇ‰}ä1ÿ‰Uð‹U¶:ˆT8ƒÇ;}äuí‹Uðƒë¶ÛƒÃ]Úë©f‰ø„ÀŽdÿÿÿ<„\ÿÿÿ+]ð;Uàs‹uƒÂ¶<‰E䉸¾À‰Eðé)ÿÿÿƒÁé!ÿÿÿ‹Uà‹u…Òt ¶¶Mïƒêˆ¶H„ۉȅÒuæƒÄ[^_]Ã{ÿçÿƒÇ‰}è1ÿ‰Uð‹U¶:ˆT8ƒÇ;}èuíƒë‹Uð¶ÛƒÃÙ]‰È븉Uà‹uäéóþÿÿU‰åWVSƒì‹M·U ‹u‹E‹]f‰Uê¶91Ò‰MäƒîÇEì‰uà‰ù¾É‰Mð1ɉEØ‹u)ÞÑþ;uð¢;]‰Mì‹EØ„H‹Ms‰Uð)ñ‰Î‹MìÑî~1ö·sf‰pƒÆ9þuñ‹Uðöóð‰Mì‰ß‰Uàëƒé‰Ð…É„“·uêPf‰0‹uä¶„Û~ßsÿæÿt6‰uì1ö‰Uð·7f‰T0ƒÆ;uìuï‹Uðƒë¶ÛDÇÂ릉ø„ÀŽTÿÿÿ<„Lÿÿÿ‹Eð4)u;Uàs‹uƒÂ¶<‰E䉸¾À‰EðéÿÿÿƒÁéÿÿÿ‹Uà‹u‰}ð…Òt·Mêƒêf‰¶H„ۉȅÒuåƒÄ[^_]Ã{ÿçÿ|?‰}ä1ÿ‰Uì‹Uð·:f‰T8ƒÇ;}äuìƒë‹Uì¶ÛDÁEð‰È뵉Uà‹Mì‰ßééþÿÿU‰åƒìhEø‰EÔE´‰$ÇḚ´KÇEРÐKÇEؽ7K‰eÜèA úÿÇD$Ç$蕬úÿ‰$‰E¬è «úÿÇE¸ƒÀ‰E¨‰$èÝk‰E°‹E¨‰D$‹E¬‰D$‹E°‰$èÁªúÿÇD$P MÇ$èE¬úÿEô‰D$‹E‰$è+)úÿ‹E Ý‹Eô;Et€8tMÝØët&ÝØ‹E ÙîÝ‹EÇ‹E°Ç$‰D$èó«úÿ‹U°…Òt ‹E°‰$èkE´‰$è úÿÉÃÙÄ MÙÉÛéÝÙzuÝØ‹E ÝØ MÝ‹EÇë¦t&ÙÈ MÙÉßéÝØz”u’‹E ÝÐ MÝëԃŃ}Àÿ‹E¼t‰$ÇE¸ÿÿÿÿè¨ úÿ‰$ÇE¸ÿÿÿÿèùpU‰åƒìhEø‰EÔE´‰$ÇḚ´KÇEаÐKÇEØQ9K‰eÜèÁúÿÇD$Ç$è«úÿ‰$‰E¬èŠ©úÿÇE¸ƒÀ‰E¨‰$è]j‰E°‹E¨‰D$‹E¬‰D$‹E°‰$èA©úÿÇD$P MÇ$èŪúÿEô‰D$‹E‰$è›(úÿ‹E ÙÀÛ8‹Eô;Et €8tKÝØëvÝØ‹E ÙîÛ8‹EÇ‹E°Ç$‰D$èsªúÿ‹M°…Ét ‹E°‰$è™iE´‰$èŽúÿÉÃÙÄ MÙÉÛéÝÙz&u$ÝØ‹E ÇÿÿÿÿÇ@ÿÿÿÿÇ@þ‹EÇëšÙÈ MÙÉßéÝØzŒuŠ‹E ÇÿÿÿÿÇ@ÿÿÿÿÇ@þÿë̃Ń}Àÿ‹E¼t‰$ÇE¸ÿÿÿÿè úÿ‰$ÇE¸ÿÿÿÿèeoU‰åƒìhEø‰EÔE´‰$ÇḚ´KÇEÐÐKÇEØË:K‰eÜè1úÿÇD$Ç$è…©úÿ‰$‰E¬èú§úÿÇE¸ƒÀ‰E¨‰$èÍh‰E°‹E¨‰D$‹E¬‰D$‹E°‰$è±§úÿÇD$P MÇ$è5©úÿEô‰D$‹E‰$è{%úÿ‹E Ù‹Eô;Et€8tOÝØët&ÝØ‹E Ç‹EÇ‹E°Ç$‰D$èá¨úÿ‹E°…Àt ‹E°‰$èhE´‰$èüúÿÉÃÙÄ MÙÉÛéÝÙzuÝØ‹E Çÿÿ‹EÇë¨t&ÙÈ MÙÉßéÝØz–u”‹E ÇÿÿÿëփŃ}Àÿ‹E¼t‰$ÇE¸ÿÿÿÿèšúÿ‰$ÇE¸ÿÿÿÿèëmU¡ŒCL‰å‹U]‰ŒCLÃU¡[L‰å‹U]‰[LÃU¸ÄOL‰å]ÃU‰åƒì(ÇD$‰]ô‰uø‰}ü¿àMÇ$èЧúÿ¹‰Æ‰Ãó¦u1E‰D$ ‹E‰D$‹E‰D$‹E ‰$è;#úÿ‰Ã‰Ø‹uø‹]ô‹}ü‰ì]É$è ¦úÿx‰<$èçf‰\$‰|$‰Æ‰$èÕ¥úÿÇD$àMÇ$èY§úÿE‰D$ ‹E‰D$‹E‰D$‹E ‰$èÑ"úÿ…ö‰Ãt’‰t$Ç$è#§úÿ‰4$èSf‰Ø‹uø‹]ô‹}ü‰ì]ÃU‰åWVSƒì,‹E9E tH‰ÆƒÆ;u t>ƒÀ‰Eä‹U‰ñ‹;|5‹VüFü9Ó|ëU‰Á‰ø‰‹Püxü9Ó|ð‹}䉃ƃEä;} uȃÄ,[^_]Éð‹}ä)ÐÁø…ÀtÁà‰T$‰ú)‰D$‰$èʤúÿ‹E‰ëÀ‰ðë·U‰åWVSƒì,‹} ‹]‹u‰ú)ÚƒúC~`…ötfC‰Eäë…ötX‰ÇÁúƒî“Wü‰T$‰D$‰$è× ‹Eä‰\$‰|$‰$èĉt$‰|$‰$‰Eàè‘ÿÿÿ‹Eà‰Â)ÚƒúC¬ƒÄ,[^_]Élj|$‰|$‰$èûñÿÿ‰} ‰]ƒÄ,[^_]éi4U‰åWVSEèƒì|‰EÄE¤‰$ÇE¼°´KÇEÀø¼KÇEÈ/BK‰eÌèúÿ‹UEà‰$ÇE¨ÿÿÿÿ‰T$èõ[ýÿ€}à„‹M‹‹@ôÁ‰Â‹Y‰M ‹M‰]œ9ËŽa‹] ‹K á°ƒù ”E…²‹M‰M˜‹M˜Ñ‹q…ö„l€}„‹M˜Ñ‹Y‰M”…Û…—€yu…Å‹E”‹@|…À‰E „«‹U €z„ç¶J=ˆM ¶E ‹U”ˆBt‹MÆBu‹‹@ô‹]œ+]…Û‰]œŽª¶M ‰Më‹U‹‹@ô‹]˜‹Dx‹P;Pƒ¿¶M ˆ ƒ@ƒmœ‹Mœ…ÉЋ]‹‹Pô‹]ÇD‹Eä‰Â‰Eœ‹‹@ôöD ‰E t1èÑ „Àu(‹]œ‹M ‹D x…Àt‹‰$‹BÇE¨ÿÿÿÿÿЃøÿ„8E¤‰$è:úÿ‹EƒÄ|[^_]ËU‹]‹‹PôÇDë‹M‹]‹Dx‹M ‹‰\$‰L$‰$‹B0ÇE¨ÿÐ9ÄLÿÿÿ‹U‹Pô‹B‰$ÇE¨ƒÈ‰D$èûÛÿÿ‹M‹]‹‹PôÇDé&ÿÿÿv‹U ‹]€zu‰]˜…‹] ‹[|…Û‰]”„/‹E”€x„/¶P=ˆU”¶E”‹U ˆBt‹MÆBu‹‹@ô‹]œ+]…Û‰] ~9¶M”‰Mˆë‹]‹‹@ô‹]˜‹Dx‹P;Pƒ~¶M”ˆ ƒ@ƒm ‹} …ÿЋU‹‹@ô‰Âé±ýÿÿ‹Uä‹Pô‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$èÛÿÿé¢þÿÿ´&‹Ax‹] ‹M‹‰\$‰L$‰$‹B0ÇE¨ÿÐ9EtI‹M‹U˜‹Pô‹B‰$ÇE¨ƒÈ‰D$èÅÚÿÿ‹]‹‹@ô‰Âé:ýÿÿ¶¶JtˆM”éÿÿÿt&‹U‹‹@ô‰Âéýÿÿ¶Ytˆ] éjýÿÿt&‹M”ÇE¨‰ $èûÿ‹]”‹ÇD$ ‰$ÿPˆE”é«þÿÿv‹] ÇE¨‰$èîûÿ‹ÇD$ ‰$ÿPˆE éöüÿÿ‹‹]‰$‰\$‹B4ÇE¨ÿЃÀ…*ýÿÿ‹U‹‹U˜Pô‹B‰$ƒÈ‰D$èèÙÿÿéèýÿÿ‹‹]ˆ‰$‰\$‹B4ÇE¨ÿЃÀ…kþÿÿ‹U‹Pô‹B‰$ƒÈ‰D$è¨Ùÿÿ‹M‹‹@ô‰Âé üÿÿÇE¨è-ÇE¨è!ƒÅ‹E¬‹U°‰Eœ‹E¨ƒøt~?ƒøt ƒøvt ÇE¨èhEà‰$ÇE¨è>Xýÿ‹MœÇE¨ÿÿÿÿ‰ $èüúÿ…Àu½ƒêt=‹]œ‰$èhe‹U¹‹‹@ôÐP‹@ÇE¨èçÖÿÿÇE¨è«gé)üÿÿ‹Uœ‰$è+e‹M‹‹@ôȹP‹@ÇE¨èªÖÿÿèåoU‰åWVSEèƒì|‰EÄE¤‰$ÇE¼°´KÇEÀ¸¾KÇEÈoGK‰eÌè®üùÿ‹UEà‰$ÇE¨ÿÿÿÿ‰T$è…—þÿ€}à„‹M‹‹@ôÁ‰Â‹Y‰M ‹M‰]œ9ËŽK‹] ‹K á°ƒù ”E…¢‹M‰M˜‹M˜Ñ‹q…ö„b€}„£‹M˜Ñ‹Y‰M…Û…˜€yv„µ·Ytf‰] ‹]œ+]·U ·M …Û‰]œ‰Uf‰M–éƒmœ‹Mœ…ÉŽp‹]‹‹@ô‹M˜‹Tx‹J;Jƒ·] f‰ƒÁ‰J·U–fƒúÿu¿E˜‹P‰$ÇE¨ƒÊ‰T$èàÿÿ‹U‹‹Pô‹EÇD‹U䋉Uœ‹@ôöD ‰E t1èb„Àu(‹]œ‹M ‹D x…Àt‹‰$‹BÇE¨ÿÿÿÿÿЃøÿ„6E¤‰$èËûùÿ‹EƒÄ|[^_]ËU‹M‹] ‹Dx‹‰L$‰\$‰$‹B0ÇE¨ÿÐ9E„bÿÿÿ‹M‹‹PôÊ‹B‰$ÇE¨ƒÈ‰D$èNßÿÿ‹]‹‹Pô‹EÇDé:ÿÿÿ¶‹U ‹]€zv‰]˜„€·Jtf‰M‹]œ+]·U·M…Û‰] ‰Uˆf‰MŽ éøt&ƒm ‹} …ÿŽå‹M‹‹@ô‹M˜‹Tx‹J;Jƒ{·]f‰ƒÁ‰J·UŽfƒúÿu¿E‹P‰$ÇE¨ƒÊ‰T$è“Þÿÿ‹U‹‹@ô‰Âé¸ýÿÿt&‹Uä‹Pô‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$è_Þÿÿé¤þÿÿ‹Ax‹] ‹M‹‰\$‰L$‰$‹B0ÇE¨ÿÐ9E„Õ‹M‹U˜‹Pô‹B‰$ÇE¨ƒÈ‰D$è Þÿÿ‹]‹‹@ô‰Âé@ýÿÿ‹]‹‹@ô‰Âé!ýÿÿ‹M‹‹PôéÙýÿÿ‹E‹P|…Ò„Õ‹ÇD$ ‰$‹@(ÇE¨ÿЋU‹Mf‰E f‰Bt‹ÆBv‹@ôéýÿÿ‹] ‹S|…Ò„ËÇD$ ‰$‹@(ÇE¨ÿЋU ‹Mf‰Ef‰Bt‹ÆBv‹@ôéEþÿÿ‹U‹‹@ô‰Âéüÿÿ‹‹Mˆ‰$‰L$‹@4ÇE¨ÿЋ]‰Â‹‹@ôéoþÿÿ‹‹M‰$‰L$‹@4ÇE¨ÿЋ]‰Â‹‹@ôéÌüÿÿÇE¨èáƒÅ‹E¬‹U°‰Eœ‹E¨ƒøt)~Kƒøtƒøvt ÇE¨è°ÇE¨èÄbEà‰$ÇE¨èò“þÿ‹MœÇE¨ÿÿÿÿ‰ $è°ûùÿ…Àu±ƒêt=‹]œ‰$è`‹U¹‹‹@ôÐP‹@ÇE¨è‹ÚÿÿÇE¨è_béNüÿÿ‹Uœ‰$èß_‹M‹‹@ôȹP‹@ÇE¨èNÚÿÿè™jU‰åƒìÇ$è>]LjkMÇD$ ñJÇD$ÌAM‰$èÀjU¸ÈOL‰å]ÃU‰åƒì(E÷‰D$‹E ‰D$‹E‰$è ÉÃU‰åƒì(E÷‰D$‹E ‰D$‹E‰$èá ÉÃU‰åƒìÇ$èž\Ç8mMÇD$`KÇD$˜BM‰$è jU‰å‹EW‹}V‹u S‹¸ƒî‹Sôƒê9ÖGò1É…öu,¶…Òt„Àu8¶ 7t&Qÿ€ú}w 1Ò8 žÂ!Ð[^_]ö8”ÀƒÁƒê9ñsÆ„ÀtÂëæ¶ 78 ”ÀƒêtÁ„Àt½ëïU‰åƒìÇ$èÞ[Çè]MÇD$ÀàHÇD$0=M‰$è`iU‰åƒìè5d‹@É…À•ÀÃU‰åƒì ‰$‹M‹] ‰t$‹u‰|$‹‹9Ð}‹>9ú|"9ø}‰9‰‹$‹t$‹|$‰ì]Ë>9ø|ê9ú|≉‹$‹t$‹|$‰ì]ÃU‰åVSƒì E÷‰D$‹E]ð‰$‰D$è?ýÿÇ$è[‰\$‰Æ‰$è•·ÿÿ‹Eðƒè =pTLuÇD$KÇD$:M‰4$è€hƒ=(vMu‹PJÿ‰H…ÒÒUö‰T$‰$è»týÿëÁƒÊÿðÁPëáU‰åƒìhEø‰EÔE´‰$ÇḚ´KÇEÐè¿KÇEØ×KK‰eÜè±ôùÿE÷‰D$‹EÇE¸ÿÿÿÿ‰D$Eð‰$èqŒýÿÇ$èEZÇE¸‰E°Eð‰D$‹E°‰$è9Ãýÿ‹Eðƒè =pTLu"‹E°ÇD$`IÇD$ø=MÇE¸ÿÿÿÿ‰$èšgƒ=(vMu‹PJÿ‰H…ÒÈUö‰T$‰$èÕsýÿë·ƒÊÿðÁPëáƒÅ‹E¼‰E¬‹E°‰$è¥`Eð‰$誑ýÿ‹E¬ÇE¸ÿÿÿÿ‰$èx÷ùÿU‰åƒìhEø‰EÔE´‰$ÇḚ´KÇEÐ ÀKÇEØçLK‰eÜè¡óùÿE÷‰D$‹EÇE¸ÿÿÿÿ‰D$Eð‰$èa‹ýÿÇ$è5YÇE¸‰E°Eð‰D$‹E°‰$è9Ãýÿ‹Eðƒè =pTLu"‹E°ÇD$ IÇD$>MÇE¸ÿÿÿÿ‰$èŠfƒ=(vMu‹PJÿ‰H…ÒÈUö‰T$‰$èÅrýÿë·ƒÊÿðÁPëáƒÅ‹E¼‰E¬‹E°‰$è•_Eð‰$èšýÿ‹E¬ÇE¸ÿÿÿÿ‰$èhöùÿU‰åƒìhEø‰EÔE´‰$ÇḚ´KÇEÐî¿KÇEØ÷MK‰eÜè‘òùÿE÷‰D$‹EÇE¸ÿÿÿÿ‰D$Eð‰$èQŠýÿÇ$è%XÇE¸‰E°Eð‰D$‹E°‰$èIÉýÿ‹Eðƒè =pTLu"‹E°ÇD$@IÇD$0>MÇE¸ÿÿÿÿ‰$èzeƒ=(vMu‹PJÿ‰H…ÒÈUö‰T$‰$èµqýÿë·ƒÊÿðÁPëáƒÅ‹E¼‰E¬‹E°‰$è…^Eð‰$èŠýÿ‹E¬ÇE¸ÿÿÿÿ‰$èXõùÿU‰åƒìhEø‰EÔE´‰$ÇḚ´KÇEÐ&ÀKÇEØOK‰eÜèñùÿÇ$è5WÇD$ MÇE¸‰E°E÷‰D$Eð‰$è1‰ýÿ‹U°Eð‰D$ÇE¸‰$èÀýÿ‹Eðƒè =pTLu9‹E°‹U°Ç`M‹E‰B¡ÀUL‰B ÇD$IÇD$<>M‰$ÇE¸ÿÿÿÿèRdƒ=(vMu‹PJÿ‰H…Ò±Uö‰T$‰$èpýÿë ƒÊÿðÁPëáƒÅ‹E¸‹U¼…À‰U¬tƒèt Eð‰$è_Žýÿ‹E°‰$èD]‹U¬ÇE¸ÿÿÿÿ‰$è"ôùÿU‰åƒìhEø‰EÔE´‰$ÇḚ´KÇEÐú¿KÇEØ7PK‰eÜèQðùÿE÷‰D$‹EÇE¸ÿÿÿÿ‰D$Eð‰$èˆýÿÇ$èåUÇE¸‰E°Eð‰D$‹E°‰$èÙÇýÿ‹Eðƒè =pTLu"‹E°ÇD$IÇD$H>MÇE¸ÿÿÿÿ‰$è:cƒ=(vMu‹PJÿ‰H…ÒÈUö‰T$‰$èuoýÿë·ƒÊÿðÁPëáƒÅ‹E¼‰E¬‹E°‰$èE\Eð‰$èJýÿ‹E¬ÇE¸ÿÿÿÿ‰$èóùÿU‰åƒìhEø‰EÔE´‰$ÇḚ´KÇEÐÀKÇEØGQK‰eÜèAïùÿE÷‰D$‹EÇE¸ÿÿÿÿ‰D$Eð‰$è‡ýÿÇ$èÕTÇE¸‰E°Eð‰D$‹E°‰$èIÇýÿ‹Eðƒè =pTLu"‹E°ÇD$IÇD$T>MÇE¸ÿÿÿÿ‰$è*bƒ=(vMu‹PJÿ‰H…ÒÈUö‰T$‰$èenýÿë·ƒÊÿðÁPëáƒÅ‹E¼‰E¬‹E°‰$è5[Eð‰$è:Œýÿ‹E¬ÇE¸ÿÿÿÿ‰$èòùÿU‰åƒìhEø‰EÔE´‰$ÇḚ´KÇEÐÀKÇEØuRK‰eÜè1îùÿèÌöÿÿÇ$‰E¬èÝSÇD$ MÇE¸‰E°E÷‰D$Eð‰$èÙ…ýÿ‹U°Eð‰D$ÇE¸‰$èЦþÿ‹Eðƒè =pTLu7‹E°‹U°ÇH`M‹E‰B‹E¬‰B ÇD$àIÇD$`>M‰$ÇE¸ÿÿÿÿèü`ƒ=(vMu‹PJÿ‰H…Ò³Uö‰T$‰$è7mýÿ뢃ÊÿðÁPëáƒÅ‹E¸‹U¼…À‰U¬tƒèt Eð‰$è ‹ýÿ‹E°‰$èîY‹U¬ÇE¸ÿÿÿÿ‰$èÌðùÿU‰åWVSƒì,‹]‹E‹} ‹S;S ƃ¸¶ÇEäë-v‹‰t$‰T$‰<$ÿP0CEä9Æi‹‰$ÿP$ƒøÿt=‹S‹s )ÖƒþÌ‹W‰Á;Ws1ˆƒG‹C‹S ƒEä9ÐsBƒÀ‰C9Ðs¾¶ƒøÿuËEäƒÄ,[^_]˶ɉL$‰<$ÿP4ƒÀuÁ‹EÆ‹EäƒÄ,[^_]ˉ$ÿP(ƒÀtËC‹S 믋‰$ÿP$ÇEäƒøÿt§‹Sé/ÿÿÿU‰åWVSƒì,‹]‹E‹} Æ‹C;C ƒÊ·fƒøÿÇEäu-ëu‹‰T$‰t$‰<$ÿP0EäS9Æc‹‰$ÿP$fƒøÿtJ‹K ‹S‰Î)ÖÑþƒþÄ‹w;wsWf‰ƒÆ‰wƒEä9Ñv<·ƒÂ‰Sfƒøÿt‹C;C s±·fƒøÿu¶‹EäƒÄ,[^_]ËEÆ‹EäƒÄ,[^_]ˉ$ÿP(ëË·À‰D$‰<$ÿR4fƒÀtЋS‹K ë•‹‰$ÿP$é,ÿÿÿU‰åƒìÇ$èÎPÇ``MÇD$ IÇD$l>M‰$èP^U‰åƒìhEø‰EÔE´‰$ÇḚ´KÇEÐÀKÇEØÇUK‰eÜèÁêùÿE÷‰D$‹EÇE¸ÿÿÿÿ‰D$Eð‰$è‚ýÿÇ$èUPÇE¸‰E°Eð‰D$‹E°‰$èi£þÿ‹Eðƒè =pTLu"‹E°ÇD$€ùIÇD$à>MÇE¸ÿÿÿÿ‰$èª]ƒ=(vMu‹PJÿ‰H…ÒÈUö‰T$‰$èåiýÿë·ƒÊÿðÁPëáƒÅ‹E¼‰E¬‹E°‰$èµVEð‰$躇ýÿ‹E¬ÇE¸ÿÿÿÿ‰$èˆíùÿU‰å‹EW‹} VSt&‹U‹‹ 9Ë}t&ƒÀ‹9Ë|÷‹wüWü9ñ}Wø‹2‰×ƒê9Îõ9Çv‰0ƒÀ‰ë‰×9Çwñ[^_]ÃU‰åWVSƒì,‹U ‹E‰Uä)ƒúC‹Uä‰E‰U ƒÄ,[^_]é²åÿÿx@‰|$‰$è£åÿÿ;}ät*‹7‰ù‹WüGü9Ö|ë"‰Á‰Ø‰‹PüXü9Ö|ðƒÇ9}ä‰0uÖƒÄ,[^_]ÉøƒÇ9}ä‰0uÂëêU‰åƒìhEø‰EÔE´‰$ÇḚ´KÇEÐÀKÇEØÇWK‰eÜèÁèùÿE÷‰D$‹EÇE¸ÿÿÿÿ‰D$Eð‰$è€ýÿÇ$èUNÇE¸‰E°Eð‰D$‹E°‰$èIðþÿ‹Eðƒè =pTLu"‹E°ÇD$HJÇD$?MÇE¸ÿÿÿÿ‰$èª[ƒ=(vMu‹PJÿ‰H…ÒÈUö‰T$‰$èågýÿë·ƒÊÿðÁPëáƒÅ‹E¼‰E¬‹E°‰$èµTEð‰$躅ýÿ‹E¬ÇE¸ÿÿÿÿ‰$èˆëùÿU‰åƒìhEø‰EÔE´‰$ÇḚ´KÇEÐÀKÇEØ×XK‰eÜè±çùÿE÷‰D$‹EÇE¸ÿÿÿÿ‰D$Eð‰$èqýÿÇ$èEMÇE¸‰E°Eð‰D$‹E°‰$è© ÿÿ‹Eðƒè =pTLu"‹E°ÇD$€eJÇD$ @MÇE¸ÿÿÿÿ‰$èšZƒ=(vMu‹PJÿ‰H…ÒÈUö‰T$‰$èÕfýÿë·ƒÊÿðÁPëáƒÅ‹E¼‰E¬‹E°‰$è¥SEð‰$誄ýÿ‹E¬ÇE¸ÿÿÿÿ‰$èxêùÿU‰åƒìhEø‰EÔE´‰$ÇḚ´KÇEÐô¿KÇEØçYK‰eÜè¡æùÿE÷‰D$‹EÇE¸ÿÿÿÿ‰D$Eð‰$èa~ýÿÇ$è5LÇE¸‰E°Eð‰D$‹E°‰$è‰ÿÿ‹Eðƒè =pTLu"‹E°ÇD$puJÇD$0@MÇE¸ÿÿÿÿ‰$èŠYƒ=(vMu‹PJÿ‰H…ÒÈUö‰T$‰$èÅeýÿë·ƒÊÿðÁPëáƒÅ‹E¼‰E¬‹E°‰$è•REð‰$蚃ýÿ‹E¬ÇE¸ÿÿÿÿ‰$èhéùÿU‰åƒìÇ$ènKÇèfMÇD$ }JÇD$T@M‰$èðXU‰åƒìhEø‰EÔE´‰$ÇḚ´KÇEÐ\ÈKÇEØ~[K‰eÜèaåùÿ‹UMô‹‹@ô‰ $ЃÀl‰D$èu‚ÿÿEô‰$ÇE¸èó‰E¬Eô‰$è„ÿÿ‹U‹‹@ô‹Dx‰Á‰E°‹@;A s<¶‹M¬¶À‹QöB uE´‰$èåùÿ‹EÉËU°‹B‹R 9ÐsW‹M°ƒÀ‰A9ÐrÄ‹U°‹‰$‹@$ÇE¸ÿÿÿÿÿЃøÿu®‹U‹Pô‹B‰$ÇE¸ÿÿÿÿƒÈ‰D$èfÀÿÿE´‰$è+åùÿ‹EÉËU°‹‰$‹@(ÇE¸ÿÿÿÿÿЃÀt¶‹M°‹A‹Q 뎃Å‹M¼Eô‰$‰M°è>ƒÿÿ‹E°ÇE¸ÿÿÿÿ‰$èÜçùÿU‰åƒìhEø‰EÔE´‰$ÇḚ´KÇEÐ,ËKÇEØ]K‰eÜèäùÿ‹UMô‹‹@ô‰ $ЃÀl‰D$èÿÿEô‰$ÇE¸èó‰E¨Eô‰$赂ÿÿ‹U‹‹@ô‹Dx‰Á‰E°‹@;A ƒ“·f‰E®fƒ}®ÿu1‹U‹Pô‹B‰$ÇE¸ÿÿÿÿƒÈ‰D$èùÇÿÿE´‰$èäùÿ‹EÉËM¨·U®‹‰T$ÇD$ ‰ $‹@ÇE¸ÿÿÿÿÿЄÀtI‹E°‹P;P sY‹M°·ƒÂ‰QfƒøÿtŠ‹M°‹A;A ‚mÿÿÿ‹U°‹‰$‹@$ÇE¸ÿÿÿÿÿÐf‰E®éWÿÿÿfƒ}®ÿ„SÿÿÿE´‰$è‚ãùÿ‹EÉËU°‹‰$‹@(ÇE¸ÿÿÿÿÿÐëƒÅ‹M¼Eô‰$‰M°è£ÿÿ‹E°ÇE¸ÿÿÿÿ‰$èAæùÿU‰å‹E‹P ƒâµƒÊ‰P ]ÃU‰åƒì‰]ø‹]‰uü‹‹@ô‹t|…ötD€~t$¶F'¾À‰$‰D$è›1ýÿ‹]ø‹uü‰E‰ì]éš3ýÿ‰4$è²òúÿ‹ÇD$ ‰4$ÿPëÆè‹êÿÿU‰åSƒì‹]‹‹@ô‹D|…Àt,‹ÇD$ ‰$ÿR(‰$·À‰D$èrþÿ‰EƒÄ[]é-tþÿè8êÿÿU‰åƒì‹EÇD$‰$è÷0ýÿÉÃU‰åƒì‹EÇD$‰$èÇqþÿÉÃU‰åƒìÉéÔ2ýÿU‰åƒìÉéÄsþÿU‰åVSƒì‹]‹‹@ô‹t|…ötB€~t"¶F'¾À‰D$‹E ‰$‰D$è(ƒÄ[^]É4$è˜ñúÿ‹ÇD$ ‰4$ÿPëÈèqéÿÿU‰åWVSƒì|¶EUè‰UÄÇE¼°´KˆE˜E¤‰$ÇEÀXÅKÇEÈEbK‰eÌèÇàùÿ‹MEç‰$ÇD$ÇE¨ÿÿÿÿ‰L$è–ýÿ¸€}çu;‹M‹‹RôÊ B‰$ÇE¨ÿÿÿÿ‰D$èK¼ÿÿE¤‰$èáùÿ‹EƒÄ|[^_]Ãt&‹] ÇD$ ‹‹@ôÇD$‰$ÇE¨‰D$èåuýÿ‹U‹‹@ô‹Dx‰Á‰Eœ‹@;A ƒ¶‰E ¶]˜‹U ¾E˜ÇE”‰]Œ9Ó‰Eu8¶‹MœƒE”‹A;A ƒƒÀ‰A1Àéõƒ} ÿ„æ‹E 9EŒt΋Mœºüÿÿ?‹]œ+U”‹I‹C ‰M˜)È9ÂNƒøŽÎ‰E ‹]‰D$‹E˜‰\$‰$èž‚úÿ‹M ÇE¨‰ $‰Â+U˜…ÀDU ‰U ‰T$‹U˜‰T$è“cýÿ‹]œ‹E ‹U U”C;C ‰Cƒ¶‰E }”ûÿÿ?†Uÿÿÿƒ} ÿ„ë‹U ¸9UŒu3éÿÿÿ‹Mœ‹‰ $‹@$ÇE¨ÿЉE ƒÀÇE”…Ðþÿÿf¸ƒ}”…"ƒÈé.þÿÿ‹] ‹‹PôHôZ;Y‰]˜w‹I…É~!‹E˜‹U ÇE¨‰D$‰$èssýÿ‹M ‹‹Pô¶] ˆ‹E ‹Bô=pTL…‹]œƒE”‹C‹S 9ÐsPƒÀ‰C9Ђÿÿÿ‹]œ‹‰$‹@$ÇE¨ÿЉE éÿÿÿ¶¸é‹ýÿÿ‹Mœ‹‰ $‹@$ÇE¨ÿÐëÒ‹Uœ‹‰$‹@(ÇE¨ÿЃÀÇE ÿÿÿÿ„ºþÿÿ‹Mœ‹A‹Q 뇋M˜Ç@‰JôÆD éYÿÿÿ‹]œ‹‰$‹@(ÇE¨ÿÐ1ÀéÔþÿÿ…À„,ýÿÿ´&éýÿÿƒÅ‹U¬‹E¨‰U ‹U°ÿ$…lM‹E ƒêtU‰$è•E‹]‹‹@ôØP‹@ÇE¨èy·ÿÿÇE¨ÿÿÿÿèÝG1ÀékþÿÿÇE¨èÊG‹] ÇE¨ÿÿÿÿ‰$èÈàùÿ‰$è@E‹M‹‹@ôÈP‹@ÇE¨è$·ÿÿèÿOÇE¨èƒG‹E ÇE¨ÿÿÿÿ‰$èàùÿ‹E ÇE”éPÿÿÿU‰åSƒì‹]‹‹@ô‹D|…Àt,‹ÇD$ ‰$ÿR(‰$·À‰D$‹E ‰D$èƒÄ[]ÃèøäÿÿU‰åWVSƒì|·EUè‰UÄÇE¼°´Kf‰EŽE¤‰$ÇEÀ¤ÅKÇEÈÅfK‰eÌèFÜùÿ‹MEç‰$ÇD$ÇE¨ÿÿÿÿ‰L$èµWþÿ¸€}çu:‹}‹‹Rôú B‰$ÇE¨ÿÿÿÿ‰D$èzÀÿÿE¤‰$èÜùÿ‹EƒÄ|[^_]Ãt&‹u ÇD$ ‹‹@ôÇD$‰4$ÇE¨‰D$èuÒüÿ‹}‹‹@ô‹Dx‰Â‰Eœ‹@;B ƒ“·f‰E fƒ} ÿ„¶·MŽ·u f9uŽÇE˜‰M”u5‹MœƒE˜‹A;A ƒƒÀ‰A1ÀéŠfƒ} ÿ„z·M f9MŽtË‹}œ¹þÿÿ+M˜‹w ‹W‰ð)ÐÑø9ÁNÁƒøŽ—‰E ‰D$‹E”‰$‰D$è¾ùùÿ…À„F‹uœ‹V)ÐÑø‰E ‹} ‹E ‰T$ÇE¨‰|$‰$è<¿üÿ‹Uœ?}˜B;B ‰Bƒ·f‰E }˜ýÿÿ†Rÿÿÿfƒ} ÿ„õ·U ¸f9UŽ…¾éÿÿÿ‹} ‹‹XôHô{;y‰}w‹y…ÿ~-‹E‹U ÇE¨‰D$‰$è7Ðüÿ‹M ‹uœ‹‹V‹v ‹XôHô·} ù`TLf‰ÿÿÿ‹uœ‹‰4$‹@(ÇE¨ÿÐé=ÿÿÿ‹uœ‹‰4$‹@(ÇE¨ÿÐ1Àéeÿÿÿ…À„'ýÿÿéýÿÿƒÅ‹M¬‹E¨‹U°‰M ÿ$…€M‹}œ‹‰<$‹@$ÇE¨ÿÐéWýÿÿÇE¨èpC‹E ÇE¨ÿÿÿÿ‰$ènÜùÿÇE¨èRC‹U ÇE¨ÿÿÿÿ‰$èPÜùÿ‹E ÇE˜ƒêtB‰$è¹@‹}‹‹@ôø‹PƒH€âuÇE¨ÿÿÿÿèC1Àé¬þÿÿ‹E ëÅÇE¨è_K‰$èw@‹u‹‹@ôð‹PƒH€ât ÇE¨è5KÇE¨è)KU‰å¶E]ÃU‰å·E]ÃU‰åSƒìÇ$ŒTLèíîúÿ‹U1É‹;B‹Zs,‹ƒ…Àt%ÇD$ ÇD$`=MÇD$ø9M‰$èwK…À•ÁƒÄ‰È[]ÃU‰åSƒìÇ$”TLèîúÿ‹U1É‹;B‹Zs,‹ƒ…Àt%ÇD$ ÇD$ =MÇD$ø9M‰$èK…À•ÁƒÄ‰È[]ÃU‰åSƒìÇ$œTLè-îúÿ‹U1É‹;B‹Zs,‹ƒ…Àt%ÇD$ ÇD$à=MÇD$ø9M‰$è·J…À•ÁƒÄ‰È[]ÃU‰åSƒìÇ$ TLèÍíúÿ‹U1É‹;B‹Zs,‹ƒ…Àt%ÇD$ ÇD$ì=MÇD$ø9M‰$èWJ…À•ÁƒÄ‰È[]ÃU‰åSƒìÇ$@ULèmíúÿ‹U1É‹;B‹Zs,‹ƒ…Àt%ÇD$ ÇD$@AMÇD$ø9M‰$è÷I…À•ÁƒÄ‰È[]ÃU‰åSƒìÇ$DULè íúÿ‹U1É‹;B‹Zs,‹ƒ…Àt%ÇD$ ÇD$`AMÇD$ø9M‰$è—I…À•ÁƒÄ‰È[]ÃU‰åSƒìÇ$hULè­ìúÿ‹U1É‹;B‹Zs,‹ƒ…Àt%ÇD$ ÇD$lAMÇD$ø9M‰$è7I…À•ÁƒÄ‰È[]ÃU‰åSƒìÇ$lULèMìúÿ‹U1É‹;B‹Zs,‹ƒ…Àt%ÇD$ ÇD$xAMÇD$ø9M‰$è×H…À•ÁƒÄ‰È[]ÃU‰åSƒìÇ$pULèíëúÿ‹U1É‹;B‹Zs,‹ƒ…Àt%ÇD$ ÇD$„AMÇD$ø9M‰$èwH…À•ÁƒÄ‰È[]ÃU‰åSƒìÇ$tULèëúÿ‹U1É‹;B‹Zs,‹ƒ…Àt%ÇD$ ÇD$AMÇD$ø9M‰$èH…À•ÁƒÄ‰È[]ÃU‰åSƒìÇ$xULè-ëúÿ‹U1É‹;B‹Zs,‹ƒ…Àt%ÇD$ ÇD$œAMÇD$ø9M‰$è·G…À•ÁƒÄ‰È[]ÃU‰åSƒìÇ$|ULèÍêúÿ‹U1É‹;B‹Zs,‹ƒ…Àt%ÇD$ ÇD$¨AMÇD$ø9M‰$èWG…À•ÁƒÄ‰È[]ÃU‰åSƒìÇ$€ULèmêúÿ‹U1É‹;B‹Zs,‹ƒ…Àt%ÇD$ ÇD$´AMÇD$ø9M‰$è÷F…À•ÁƒÄ‰È[]ÃU‰åSƒìÇ$„ULè êúÿ‹U1É‹;B‹Zs,‹ƒ…Àt%ÇD$ ÇD$ÀAMÇD$ø9M‰$è—F…À•ÁƒÄ‰È[]ÃU‰åSƒìÇ$ULè­éúÿ‹U1É‹;B‹Zs,‹ƒ…Àt%ÇD$ ÇD$àAMÇD$ø9M‰$è7F…À•ÁƒÄ‰È[]ÃU‰åSƒìÇ$”ULèMéúÿ‹U1É‹;B‹Zs,‹ƒ…Àt%ÇD$ ÇD$BMÇD$ø9M‰$è×E…À•ÁƒÄ‰È[]ÃU‰åSƒìÇ$˜ULèíèúÿ‹U1É‹;B‹Zs,‹ƒ…Àt%ÇD$ ÇD$ BMÇD$ø9M‰$èwE…À•ÁƒÄ‰È[]ÃU‰åSƒìÇ$œULèèúÿ‹U1É‹;B‹Zs,‹ƒ…Àt%ÇD$ ÇD$,BMÇD$ø9M‰$èE…À•ÁƒÄ‰È[]ÃU‰åSƒìÇ$ ULè-èúÿ‹U1É‹;B‹Zs,‹ƒ…Àt%ÇD$ ÇD$@BMÇD$ø9M‰$è·D…À•ÁƒÄ‰È[]ÃU‰åSƒìÇ$¤ULèÍçúÿ‹U1É‹;B‹Zs,‹ƒ…Àt%ÇD$ ÇD$`BMÇD$ø9M‰$èWD…À•ÁƒÄ‰È[]ÃU‰åSƒìÇ$¨ULèmçúÿ‹U1É‹;B‹Zs,‹ƒ…Àt%ÇD$ ÇD$€BMÇD$ø9M‰$è÷C…À•ÁƒÄ‰È[]ÃU‰åSƒìÇ$¬ULè çúÿ‹U1É‹;B‹Zs,‹ƒ…Àt%ÇD$ ÇD$ŒBMÇD$ø9M‰$è—C…À•ÁƒÄ‰È[]ÃU‰åSƒìÇ$°ULè­æúÿ‹U1É‹;B‹Zs,‹ƒ…Àt%ÇD$ ÇD$ÄBMÇD$ø9M‰$è7C…À•ÁƒÄ‰È[]ÃU‰åSƒìÇ$´ULèMæúÿ‹U1É‹;B‹Zs,‹ƒ…Àt%ÇD$ ÇD$ÐBMÇD$ø9M‰$è×B…À•ÁƒÄ‰È[]ÃU‰åSƒìÇ$¸ULèíåúÿ‹U1É‹;B‹Zs,‹ƒ…Àt%ÇD$ ÇD$ÜBMÇD$ø9M‰$èwB…À•ÁƒÄ‰È[]ÃU‰åSƒìÇ$¼ULèåúÿ‹U1É‹;B‹Zs,‹ƒ…Àt%ÇD$ ÇD$èBMÇD$ø9M‰$èB…À•ÁƒÄ‰È[]ÃU‰åWVSƒì‹u‹} )÷ƒÿ~(Áÿ_þÑûëƒë‹ž‰|$‰\$‰4$‰D$ èö¼ÿÿ…ÛuâƒÄ[^_]ÃU‰åWVSƒì‹] ‹u‰Ø)ðƒø~/ƒë‹‹‰ß)÷‰‰D$ ‰øÁø‰D$ÇD$‰4$èž¼ÿÿƒÿуÄ[^_]ÃU‰åƒì¡ˆCL‰$è{úÿU‰åƒìÇ$ŒTLènäúÿ‹U‹;B‹Js-‹…Àt&ÇD$ ÇD$`=MÇD$ø9M‰$èú@…Àt ÉÃt&è›Õÿÿèæ4U‰åƒìÇ$TLèäúÿ‹U‹;B‹Js-‹…Àt&ÇD$ ÇD$€=MÇD$ø9M‰$èš@…Àt ÉÃt&è;Õÿÿè†4U‰åƒìÇ$”TLè®ãúÿ‹U‹;B‹Js-‹…Àt&ÇD$ ÇD$ =MÇD$ø9M‰$è:@…Àt ÉÃt&èÛÔÿÿè&4U‰åƒìÇ$˜TLèNãúÿ‹U‹;B‹Js-‹…Àt&ÇD$ ÇD$À=MÇD$ø9M‰$èÚ?…Àt ÉÃt&è{ÔÿÿèÆ3U‰åƒìÇ$œTLèîâúÿ‹U‹;B‹Js-‹…Àt&ÇD$ ÇD$à=MÇD$ø9M‰$èz?…Àt ÉÃt&èÔÿÿèf3U‰åƒìÇ$ TLèŽâúÿ‹U‹;B‹Js-‹…Àt&ÇD$ ÇD$ì=MÇD$ø9M‰$è?…Àt ÉÃt&è»Óÿÿè3U‰åƒìÇ$@ULè.âúÿ‹U‹;B‹Js-‹…Àt&ÇD$ ÇD$@AMÇD$ø9M‰$èº>…Àt ÉÃt&è[Óÿÿè¦2U‰åƒìÇ$DULèÎáúÿ‹U‹;B‹Js-‹…Àt&ÇD$ ÇD$`AMÇD$ø9M‰$èZ>…Àt ÉÃt&èûÒÿÿèF2U‰åƒìÇ$hULènáúÿ‹U‹;B‹Js-‹…Àt&ÇD$ ÇD$lAMÇD$ø9M‰$èú=…Àt ÉÃt&è›Òÿÿèæ1U‰åƒìÇ$lULèáúÿ‹U‹;B‹Js-‹…Àt&ÇD$ ÇD$xAMÇD$ø9M‰$èš=…Àt ÉÃt&è;Òÿÿè†1U‰åƒìÇ$pULè®àúÿ‹U‹;B‹Js-‹…Àt&ÇD$ ÇD$„AMÇD$ø9M‰$è:=…Àt ÉÃt&èÛÑÿÿè&1U‰åƒìÇ$tULèNàúÿ‹U‹;B‹Js-‹…Àt&ÇD$ ÇD$AMÇD$ø9M‰$èÚ<…Àt ÉÃt&è{ÑÿÿèÆ0U‰åƒìÇ$xULèîßúÿ‹U‹;B‹Js-‹…Àt&ÇD$ ÇD$œAMÇD$ø9M‰$èz<…Àt ÉÃt&èÑÿÿèf0U‰åƒìÇ$|ULèŽßúÿ‹U‹;B‹Js-‹…Àt&ÇD$ ÇD$¨AMÇD$ø9M‰$è<…Àt ÉÃt&è»Ðÿÿè0U‰åƒìÇ$€ULè.ßúÿ‹U‹;B‹Js-‹…Àt&ÇD$ ÇD$´AMÇD$ø9M‰$èº;…Àt ÉÃt&è[Ðÿÿè¦/U‰åƒìÇ$„ULèÎÞúÿ‹U‹;B‹Js-‹…Àt&ÇD$ ÇD$ÀAMÇD$ø9M‰$èZ;…Àt ÉÃt&èûÏÿÿèF/U‰åƒìÇ$ULènÞúÿ‹U‹;B‹Js-‹…Àt&ÇD$ ÇD$àAMÇD$ø9M‰$èú:…Àt ÉÃt&è›Ïÿÿèæ.U‰åƒìÇ$”ULèÞúÿ‹U‹;B‹Js-‹…Àt&ÇD$ ÇD$BMÇD$ø9M‰$èš:…Àt ÉÃt&è;Ïÿÿè†.U‰åƒìÇ$˜ULè®Ýúÿ‹U‹;B‹Js-‹…Àt&ÇD$ ÇD$ BMÇD$ø9M‰$è::…Àt ÉÃt&èÛÎÿÿè&.U‰åƒìÇ$œULèNÝúÿ‹U‹;B‹Js-‹…Àt&ÇD$ ÇD$,BMÇD$ø9M‰$èÚ9…Àt ÉÃt&è{ÎÿÿèÆ-U‰åƒìÇ$ ULèîÜúÿ‹U‹;B‹Js-‹…Àt&ÇD$ ÇD$@BMÇD$ø9M‰$èz9…Àt ÉÃt&èÎÿÿèf-U‰åƒìÇ$¤ULèŽÜúÿ‹U‹;B‹Js-‹…Àt&ÇD$ ÇD$`BMÇD$ø9M‰$è9…Àt ÉÃt&è»Íÿÿè-U‰åƒìÇ$¨ULè.Üúÿ‹U‹;B‹Js-‹…Àt&ÇD$ ÇD$€BMÇD$ø9M‰$èº8…Àt ÉÃt&è[Íÿÿè¦,U‰åƒìÇ$¬ULèÎÛúÿ‹U‹;B‹Js-‹…Àt&ÇD$ ÇD$ŒBMÇD$ø9M‰$èZ8…Àt ÉÃt&èûÌÿÿèF,U‰åƒìÇ$°ULènÛúÿ‹U‹;B‹Js-‹…Àt&ÇD$ ÇD$ÄBMÇD$ø9M‰$èú7…Àt ÉÃt&è›Ìÿÿèæ+U‰åƒìÇ$´ULèÛúÿ‹U‹;B‹Js-‹…Àt&ÇD$ ÇD$ÐBMÇD$ø9M‰$èš7…Àt ÉÃt&è;Ìÿÿè†+U‰åƒìÇ$¸ULè®Úúÿ‹U‹;B‹Js-‹…Àt&ÇD$ ÇD$ÜBMÇD$ø9M‰$è:7…Àt ÉÃt&èÛËÿÿè&+U‰åƒìÇ$¼ULèNÚúÿ‹U‹;B‹Js-‹…Àt&ÇD$ ÇD$èBMÇD$ø9M‰$èÚ6…Àt ÉÃt&è{ËÿÿèÆ*U‰åƒì‰]ø‹] ‰uü‹u…Ût*‰$èÊdúÿ‰\$‰4$‰D$è‚Àÿÿ‰ð‹]ø‹uü‰ì]ö‹‹Pôò‹B‰$ƒÈ‰D$èwžÿÿ‰ð‹]ø‹uü‰ì]ÃU‰åƒì‰]ø‹] ‰uü‹u…Ût*‰$èZdúÿ‰\$‰4$‰D$èÀÿÿ‰ð‹]ø‹uü‰ì]ö‹‹Pôò‹B‰$ƒÈ‰D$èžÿÿ‰ð‹]ø‹uü‰ì]ÃU‰åƒì‰]ø‹] ‰uü‹u…Ût*‰$èêcúÿ‰\$‰4$‰D$袿ÿÿ‰ð‹]ø‹uü‰ì]ö‹‹Pôò‹B‰$ƒÈ‰D$è—ÿÿ‰ð‹]ø‹uü‰ì]ÃU‰åƒì(‹E ÇD$ˆE÷E÷‰D$‹E‰$è:¿ÿÿÉÃU‰åƒì(‹E ÇD$ˆEôEô‰D$‹E‰$è ¿ÿÿÉÃU‰åƒì(‹E ÇD$ˆE÷E÷‰D$‹E‰$èÚ¾ÿÿÉÃU‰å‹E‹M ‹‹Rô J ]ÃU‰å‹E‹M ‹‹Rô‰L]ÃU‰å‹E‹U ‹÷Ò‹Iô !Q ]ÃU‰å‹E‹M ‹‹Rô‰L]ÃU¹@‰å‹U S‹Eƒútƒú ±t 1Ƀú”ÁÁá‹‹ZôËS ƒâµ ʉS []ÃU‰åƒì(‰uø‹u‰]ô‰}ü‹‹Xôó€{uu‹{|…ÿt:€tÆCu¶E ˆCt‰ð‹]ô‹uø‹}ü‰ì]É<$è’Ðúÿ‹ÇD$ ‰<$ÿPëÌèkÈÿÿU‰åƒì‹E ‹‹Pô‰D$‹E‰T$‰$è½ÿÿÉÃU‰åƒì‰]ø‹] ‰uü‹u…Ût*‰$èºbúÿ‰\$‰4$‰D$è²Âÿÿ‰ð‹]ø‹uü‰ì]ö‹‹Pôò‹B‰$ƒÈ‰D$èç£ÿÿ‰ð‹]ø‹uü‰ì]ÃU‰åWVSEèƒìl‰EÔE´ÇḚ´KÇEÐÔ¾KÇEØþK‰e܉$è¿ùÿ‹M …É„‹] ‰$èð`úÿÇE¸‰Eœ‰E¤À‰$èÁ!‹Uœ‰E¨‰E˜…Ò„‡‹E¶ ‰Â‰E ‹‹@ô‹D|…À„Ö‹]¨¾ÉÇE°‰]¬ë2f‹E ‹]°‹U¶ ‹‹] ‹@ô‹D|…À„¡‹U°¾É‹]¨S‰U¬‹‰L$‰$‹B(ÇE¸ÿЋU¬‹]¤f‰ƒE°9]°r©‹Eœ‹U¨‹]ÇE¸‰D$‰T$‰$èYÁÿÿ‹E¨…Àt ‹E¨‰$èÇ E´‰$è¼¾ùÿ‹EƒÄl[^_]ËU‹Pô‹B‰$ÇE¸ÿÿÿÿƒÈ‰D$èp¢ÿÿëÇÇE¸èRÆÿÿƒÅ‹E¸‹U¼‹]Àƒø‰U°‰]¬tŽÐƒø„©ƒøtX ƒ}˜t ‹U˜‰$èD ‹U¬‹E°ƒêtX‰$è±%‹]¹‹‹@ôØP‹@ÇE¸è  ÿÿÇE¸ÿÿÿÿèô'é8ÿÿÿÇE¸èã'‹E°ÇE¸ÿÿÿÿ‰$èáÀùÿ‰$èY%‹U¹‹‹@ôÐP‹@ÇE¸èÈŸÿÿè0ÇE¸è—'‹]°ÇE¸ÿÿÿÿ‰$è•Àùÿ…À„Iÿÿÿé#ÿÿÿU‰åƒì(‹E ÇD$f‰EôEô‰D$‹E‰$èÙ¿ÿÿÉÃU‰å‹E‹M ‹‹Rô J ]ÃU‰å‹E‹M ‹‹Rô‰L]ÃU‰å‹E‹U ‹÷Ò‹Iô !Q ]ÃU‰å‹E‹M ‹‹Rô‰L]ÃU¹@‰å‹U S‹Eƒútƒú ±t 1Ƀú”ÁÁá‹‹ZôËS ƒâµ ʉS []ÃU‰åƒì‰]ø‹]‰uü‹‹pôÞ€~vt·E f‰Ft‰Ø‹uü‹]ø‰ì]ËF|…Àt‹ÇD$ ‰$ÿR(ÆFvëÏèÄÿÿU‰åSƒì$‹]¶U ‹‹@ô‹D|…Àt0‹¾Ò‰T$‰$ÿQ(‰$ÇD$f‰EöEö‰D$èk¾ÿÿƒÄ$[]Ãè°ÃÿÿU‰åƒì‹E ‹‹Pô‰D$‹E‰T$‰$è?¾ÿÿÉÃU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàìÃKÇEèt…K‰eìèáºùÿ‹U ‰$è¾\úÿ‹U‰E¼‹EÇ|TL‹‹@ôE¼ÇEȉD$‹E‰$è‰Oýÿ‹U¼‹E ‰T$‹U‰D$‰$èÐ>ýÿ‹E‹U‰D$‰$è®?ýÿEĉ$è»ùÿ‹EɃŋEÌ‹U‰EÀ‰$èXýÿ‹EÀÇEÈÿÿÿÿ‰$èæ½ùÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà„»KÇEè†K‰eìèºùÿ‹E ÇEÈÿÿÿÿ‰D$‹E‰$èxRýÿ‹EÇEȉD$‹E‰$è?ýÿEĉ$ètºùÿ‹EɃŋẺEÀ‹E‰$èyWýÿ‹EÀÇEÈÿÿÿÿ‰$èG½ùÿU‰åƒìX¶E Uø‰UäÇEܰ´KÇEàòÃKˆE¿Eĉ$ÇEè߆K‰eìèj¹ùÿ‹E‹UÇ|TL‹‹@ôÇEȃÀ‰D$‹E‰$è Nýÿ¾E¿‹UÇD$‰D$‰$èå?ýÿ‹E‹U‰D$‰$èC>ýÿEĉ$訹ùÿ‹EɃŋEÌ‹U‰EÀ‰$è­Výÿ‹EÀÇEÈÿÿÿÿ‰$è{¼ùÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà$ÕKÇEè´‡K‰eì衸ùÿ‹U ‰$è®[úÿ‹U‰EÀ‹EÇlTL‹‹@ôEÀÇEȉD$‹E‰$èY®üÿ‹UÀ‹E ‰T$‹U‰D$‰$èÀœüÿ‹E‹U‰D$‰$è®üÿEĉ$èÓ¸ùÿ‹EɃŋEÌ‹U‰EÀ‰$è(·üÿ‹EÀÇEÈÿÿÿÿ‰$覻ùÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà0ÕKÇEèSˆK‰eìèÑ·ùÿ‹E ÇEÈÿÿÿÿ‰D$‹E‰$舱üÿ‹EÇEȉD$‹E‰$èüÿEĉ$è4¸ùÿ‹EɃŋẺEÀ‹E‰$艶üÿ‹EÀÇEÈÿÿÿÿ‰$è»ùÿU‰åƒìX·E Uø‰UäÇEܰ´KÇEà*ÕKf‰E¾Eĉ$ÇEè ‰K‰eìè)·ùÿ‹E‹UÇlTL‹‹@ôÇEȃÀ‰D$‹E‰$èï¬üÿ·E¾‹UÇD$‰D$‰$èôüÿ‹E‹U‰D$‰$èBœüÿEĉ$èg·ùÿ‹EɃŋEÌ‹U‰EÀ‰$è¼µüÿ‹EÀÇEÈÿÿÿÿ‰$è:ºùÿU‰åƒìÉé4U‰åƒìÉé$U‰åƒìÉé´U‰åƒìÉé¤U‰åWVSEèƒì|‰EÄE¤‰$ÇE¼°´KÇEÀÅKÇEÈø‹K‰eÌè¶ùÿ‹UEç‰$ÇD$ÇE¨ÿÿÿÿ‰T$èíðüÿ¸€}çu6‹u‹‹Rôò B‰$ÇE¨ÿÿÿÿ‰D$袑ÿÿE¤‰$èg¶ùÿ‹EƒÄ|[^_]ËMºÿÿÿ}à‹‹@ôÈ‹p‰<$…öOÖƒÀl‰U ‰D$èÀRÿÿ‰<$ÇE¨èAêÿÿ‰E‰<$èfTÿÿ‹U‹‹@ô‹Dx‰Á‰Eœ‹@;A ƒX¶‹u ÇE˜ƒî‰u”錃øÿ„‹u¶Ð‹NöQ …„‹}œ‹U”+U˜‹_‹w )Þ9òNòƒþޝ43C9Æv¶SöQ „})؉E ‰D$‹E ‰\$‰$è¥Vúÿ‹U ‹MœU U˜‰ÐA;A ‰Aƒž¶‹U”9U˜Œiÿÿÿƒøÿ„|1À‹U Æ‹M‹‹RôÇD‹]˜…Û„Ä…À„£þÿÿé~þÿÿƒÀ9Ɔxÿÿÿ¶öQ …kÿÿÿëæ‹} ˆ‹UœƒE˜‹B‰Ñ‹R 9ЃTƒÀ‰A9Ðsa¶ƒE éoÿÿÿ¸é|ÿÿÿ‹uœ‹‰4$‹@$ÇE¨ÿÐéLÿÿÿ‹}œ‹‰<$‹@$ÇE¨ÿÐé’þÿÿƒÅ‹E°‹}¬‰Eœ‹E¨‰} ÿ$…@M‹}œ‹‰<$‹@$ÇE¨ÿÐëŒEà‰$èžRÿÿ‹E ‹UœÇE˜ƒêt]‰$è´‹}‹‹@ôøP‹@ÇE¨è˜ÿÿÇE¨ÿÿÿÿèü1ÀéÝþÿÿ‹E ‹Uœë¼ÇE¨èá‹U ÇE¨ÿÿÿÿ‰$èß¶ùÿ‰$èW‹u‹‹@ôðP‹@ÇE¨è;ÿÿè&ÇE¨èš‹M ÇE¨ÿÿÿÿ‰ $蘶ùÿ‹E ‹UœÇE˜éEÿÿÿ‹uœ‹‰4$‹@(ÇE¨ÿЉƒÈÿƒÂ„—þÿÿ‹F‹V é…þÿÿƒÈé¿üÿÿU‰åƒìxEè‰EÄE¤‰$‰]ô‰uø‰}üÇE¼°´KÇEÀdÈKÇEÈŽK‰eÌèx²ùÿ‹UEçÇD$‰$ÇE¨ÿÿÿÿ‰T$èGíüÿ€}çt"‹M‹‹@ô‹Tx‹J;J s)¶ƒÁ‰J‹U ˆE¤‰$èIJùÿ‹E‹]ô‹uø‹}ü‰ì]ˉ$‹@(ÇE¨ÿЃøÿuÊ‹M‹‹PôÊ‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$è«ÿÿ몃Å‹E¨‹M¬‹U°ƒø‰M t ƒøtf…Àt  ÇE¨è>‹E ÇE¨ÿÿÿÿ‰$è<µùÿƒêt[‹M ‰ $謋U¹‹‹@ôÐP‹@ÇE¨èk‹ÿÿÇE¨ÿÿÿÿèïé+ÿÿÿÇE¨èÞ‹U ÇE¨ÿÿÿÿ‰$èÜ´ùÿ‹E ‰$èQ‹U¹‹‹@ôÐP‹@ÇE¨è‹ÿÿè $U‰å‹E‹M ‹‹Rô J ]ÃU‰å‹E‹M ‹‹Rô‰L]ÃU‰å‹E‹U ‹÷Ò‹Iô !Q ]ÃU‰å‹E‹M ‹‹Rô‰L]ÃU¹@‰å‹U S‹Eƒútƒú ±t 1Ƀú”ÁÁá‹‹ZôËS ƒâµ ʉS []ÃU‰åƒì(‰]ô‹]‰uø‰}ü‹‹pôÞ€~ut¶E ˆFt‰Ø‹uø‹]ô‹}ü‰ì]Ë~|…ÿt$€u‰<$èvÀúÿ‹ÇD$ ‰<$ÿPÆFuë¿èK¸ÿÿU‰åWVSEèƒì|‰EÄE¤‰$ÇE¼°´KÇEÀ8ÅKÇEÈ“K‰eÌ螯ùÿ‹UEç‰$ÇD$ÇE¨ÿÿÿÿ‰T$èmêüÿ¸€}çu6‹]‹‹RôÚ B‰$ÇE¨ÿÿÿÿ‰D$è"‹ÿÿE¤‰$èç¯ùÿ‹EƒÄ|[^_]ËM ÇD$ ‹‹@ôÇD$‰ $ÇE¨‰D$èÁDýÿ‹]‹‹@ôÇE”üÿÿ?Ø‹P…ÒNU”ƒÀl‰D$Eà‰$‰U”èLÿÿUà‰$ÇE¨èãÿÿ‰EEà‰$è²Mÿÿ‹‹@ô‹Dx‰Á‰Eœ‹@;A ƒ¶‰E ‹]¶E ÇE˜‹SöB tE1À‹M‹‹RôÇD‹u˜…ö„b…À„ÿÿÿéïþÿÿƒ} ÿ„Ÿ‹M¶U ‹AöP u»‹]œ‹E”+E˜‹K‹s )Î9ðNðƒþŽŒ41A9Æv‹U‹Z¶QöS t`)ȉL$‹M ‰E ‰D$ÇE¨‰ $è.2ýÿ‹]œ‹E ‹U U˜C;C ‰CƒW¶‰E ‹E˜9E”‡aÿÿÿƒ} ÿ…,ÿÿÿ¸é$ÿÿÿƒÀ9Æv™¶öS uëî‹] ‹‹PôHôZ;Y‰]Œw‹y…ÿ~!‹EŒ‹U ÇE¨‰D$‰$èEBýÿ‹M ‹‹Pô¶] ˆ‹E ‹Bô=pTLuC‹]œƒE˜‹C‹S 9ÐsFƒÀ‰C9ЂUÿÿÿ‹]œ‹‰$‹@$ÇE¨ÿЉE é?ÿÿÿƒÈé’ýÿÿ‹MŒÇ@‰JôÆD ë©‹Uœ‹‰$‹@(ÇE¨ÿЃÀÇE ÿÿÿÿ„ÿþÿÿ‹Mœ‹A‹Q 둃Å‹M¬‹]°‹E¨‰Mœ‰] ÿ$…TM‹Uœ‹‰$‹@$ÇE¨ÿЉE ƒÀÇE˜„ÊþÿÿéÚýÿÿ‹Mœ‹‰ $‹@$ÇE¨ÿÐéOÿÿÿEà‰$èHKÿÿ‹Eœ‹U ÇE˜ƒêt{‰$è^‹M‹‹@ôÈP‹@ÇE¨èB†ÿÿÇE¨ÿÿÿÿè¦1Àé–ýÿÿÇE¨è“‹EœÇE¨ÿÿÿÿ‰$葯ùÿ‹Eœ‹U ëžÇE¨èm‹UœÇE¨ÿÿÿÿ‰$èk¯ùÿ‰$èã‹U‹‹@ôÐP‹@ÇE¨èÇ…ÿÿè¢U‰åWVSEèƒì|‰EÄE¤‰$ÇE¼°´KÇEÀLËKÇEÈz–K‰eÌèn«ùÿ‹UEç‰$ÇD$ÇE¨ÿÿÿÿ‰T$èÝ&þÿ¸€}çu6‹M‹‹RôÊ B‰$ÇE¨ÿÿÿÿ‰D$è¢ÿÿE¤‰$è·«ùÿ‹EƒÄ|[^_]ËM‹‹@ôÈ‹PMà‰ $‰U”…ÒºÿÿÿOU”ƒÀl‰D$‰U”è HÿÿEà‰$ÇE¨èêßÿÿ‰EEà‰$è¬Iÿÿ‹U‹‹@ô‹Dx‰Á‰E ‹@;A ƒ ·f‰Eœ‹E”ÇE˜ƒè‰E”‹M”9M˜}@fƒ}œÿuI¸t&‹U ‹MfÇ‹‹RôÇD‹U˜…Ò„Æ…À„#ÿÿÿéþþÿÿfƒ}œÿtÀ1ÀëÅt&‹U‹M‹·UœÇD$ ‰ $‰T$‹@ÇE¨ÿЄÀuÌ·Uœ‹M ‹E f‰‹QƒE˜;Q s-‹M ·ƒÂ‰QfƒøÿtK‹M ‹A;A s&·f‰EœƒE é7ÿÿÿ‹U ‹‰$‹@(ÇE¨ÿÐëÉ‹U ‹‰$‹@$ÇE¨ÿÐf‰EœëÇfÇEœÿÿ뿃Èé=þÿÿ‹U ‹‰$‹@$ÇE¨ÿÐéÊþÿÿƒÅ‹E¬‹U°‰E ‹E¨‰Uœÿ$…DM‹E ‹UœÇE˜ƒê„‰$èO‹M‹‹@ôȹP‹@ÇE¨èþ‹ÿÿÇE¨ÿÿÿÿè’1Àé£þÿÿEà‰$èàGÿÿ‹E ‹UœÇE˜ë¡ÇE¨èe‹M ÇE¨ÿÿÿÿ‰ $èc¬ùÿÇE¨èG‹E ÇE¨ÿÿÿÿ‰$èE¬ùÿ‹E ‹UœéZÿÿÿ‰$貋U¹‹‹@ôÐP‹@ÇE¨èa‹ÿÿèlU‰åƒìxEè‰EÄE¤‰$‰]ô‰uø‰}üÇE¼°´KÇEÀ4ËKÇEÈ[˜K‰eÌè(¨ùÿ‹UEçÇD$‰$ÇE¨ÿÿÿÿ‰T$è—#þÿ€}çt)‹M‹‹@ô‹Tx‹J;J sU·ƒÁ‰Jfƒøÿt!‹U f‰E¤‰$èm¨ùÿ‹E‹]ô‹uø‹}ü‰ì]ËM‹‹PôÊ‹B‰$ÇE¨ÿÿÿÿƒÈ‰D$èŒÿÿëÀ‹‰$‹@(ÇE¨ÿÐ롃Å‹E¨‹M¬‹U°ƒø‰M t ƒøtf…Àt  ÇE¨èê‹E ÇE¨ÿÿÿÿ‰$èèªùÿƒêt[‹M ‰ $èX‹U¹‹‹@ôÐP‹@ÇE¨èŠÿÿÇE¨ÿÿÿÿè›é.ÿÿÿÇE¨èŠ‹U ÇE¨ÿÿÿÿ‰$航ùÿ‹E ‰$èý‹U¹‹‹@ôÐP‹@ÇE¨謉ÿÿè·U‰å‹E‹M ‹‹Rô J ]ÃU‰å‹E‹M ‹‹Rô‰L]ÃU‰å‹E‹U ‹÷Ò‹Iô !Q ]ÃU‰å‹E‹M ‹‹Rô‰L]ÃU¹@‰å‹U S‹Eƒútƒú ±t 1Ƀú”ÁÁá‹‹ZôËS ƒâµ ʉS []ÃU‰åƒì‰]ø‹]‰uü‹‹pôÞ€~vt·E f‰Ft‰Ø‹uü‹]ø‰ì]ËF|…Àt‹ÇD$ ‰$ÿR(ÆFvëÏè®ÿÿU‰åWVSEèì|‰…Äþÿÿ…¤þÿÿ‰$Ç…¼þÿÿ°´KÇ…Àþÿÿ”ÆKÇ…Èþÿÿ¶K‰¥ÌþÿÿèI¥ùÿ‹UEç‰$ÇD$Ç…¨þÿÿÿÿÿÿ‰T$èµ þÿ¸€}çu?‹M‹‹RôÊ B‰$Ç…¨þÿÿÿÿÿÿ‰D$èw‰ÿÿ…¤þÿÿ‰$艥ùÿ‹EÄ|[^_]ËM ÇD$ ‹‹@ôÇD$‰ $Ç…¨þÿÿ‰D$èm›üÿ‹UMà‹‹@ôÇ…”þÿÿþÿÿЋP‰ $…ÒN•”þÿÿƒÀl‰D$‰•”þÿÿè¥AÿÿEà‰$Ç…¨þÿÿè€Ùÿÿ‰…ŒþÿÿEà‰$è?Cÿÿ‹U‹‰•þÿÿ‹@ô‹Tx‹B;B ƒ/·f‰… þÿÿfƒ½ þÿÿÿÇ…˜þÿÿÇ…œþÿÿum‹…˜þÿÿ‹U Ç…¨þÿÿ‰D$…àþÿÿ‰D$‰$èPˆüÿ‹M1Àfƒ½ þÿÿÿ‹”ÀÀ‹RôÇD‹•œþÿÿ…Ò„…À„´þÿÿéŒþÿÿfƒ½ þÿÿÿt“‹•Œþÿÿ‹Œþÿÿ‹·• þÿÿÇD$ ‰ $‰T$‹@Ç…¨þÿÿÿЄÀ…Xÿÿÿ½˜þÿÿ€„—‹…˜þÿÿ‰ÂƒÂ‰•˜þÿÿ· þÿÿ‹Uƒ…œþÿÿf‰ŒEàþÿÿ‹þÿÿ‹‹@ô‹Dx‹P;P ‰… þÿÿƒ„‹ þÿÿ·ƒÂ‰Qfƒøÿ„Š‹ þÿÿ‹A;A ƒƒ·f‰… þÿÿ‹œþÿÿ9”þÿÿ†¶þÿÿéÿÿÿ‹U …àþÿÿÇD$€‰D$Ç…¨þÿÿ‰$è‡üÿÇ…˜þÿÿ1ÀéBÿÿÿ‹• þÿÿ‹‰$‹@(Ç…¨þÿÿÿÐélÿÿÿfÇ… þÿÿÿÿ뇋• þÿÿ‹‰$‹@$Ç…¨þÿÿÿÐf‰… þÿÿéaÿÿÿƒÈéýÿÿƒÅ‹…°þÿÿ‹¬þÿÿ‰…˜þÿÿ‹…¨þÿÿ‰ þÿÿÿ$…,M‹‰$‹@$Ç…¨þÿÿÿÐé»ýÿÿEà‰$èÎ@ÿÿ‹… þÿÿ‹•˜þÿÿÇ…œþÿÿƒê„Ÿ‰$è× ‹M‹‹@ôÈ‹PƒH€âurÇ…¨þÿÿÿÿÿÿè" 1ÀéÊýÿÿÇ…¨þÿÿè ‹… þÿÿÇ…¨þÿÿÿÿÿÿ‰$è¥ùÿ‹… þÿÿ‹•˜þÿÿëŽÇ…¨þÿÿè× ‹• þÿÿÇ…¨þÿÿÿÿÿÿ‰$èϤùÿÇ…¨þÿÿè ‰$è8 ‹U‹‹@ôЋPƒH€âtÇ…¨þÿÿèóÇ…¨þÿÿèäƒl$é6§üÿƒl$醧üÿƒl$é6Ñýÿƒl$éÆÒýÿƒl$évãýÿƒl$éåýÿƒl$é&}þÿƒl$év}þÿ‹D$‹Aô‰D$鮦üÿ‹D$‹Aô‰D$éî¦üÿ‹D$‹Aô‰D$éîçüÿ‹D$‹Aô‰D$éèüÿ‹D$‹Aô‰D$éŽýÿ‹D$‹Aô‰D$éžýÿ‹D$‹Aô‰D$éÐýÿ‹D$‹Aô‰D$éŽÑýÿ‹D$‹Aô‰D$é.âýÿ‹D$‹Aô‰D$é®ãýÿ‹D$‹Aô‰D$éÞ'þÿ‹D$‹Aô‰D$éþ'þÿ‹D$‹Aô‰D$é^Sþÿ‹D$‹Aô‰D$énSþÿ‹D$‹Aô‰D$é>cþÿ‹D$‹Aô‰D$éždþÿ‹D$‹Aô‰D$éÞqþÿ‹D$‹Aô‰D$é>sþÿ‹D$‹Aô‰D$é¾zþÿ‹D$‹Aô‰D$éþzþÿ‹D$‹Aô‰D$éÎ…þÿ‹D$‹Aô‰D$é‡þÿ‹D$‹Aô‰D$éî“þÿ‹D$‹Aô‰D$é>•þÿU‰åƒìÉéU‰åƒì‹E…ÀtÉéý>úÿÉÃU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÐÌKÇEè£K‰eìèùÿ‹EÇEȉ$è?‰EÀEĉ$èùÿ‹EÀÉÃŃ}Ðÿ‹EÌt‰$ÇEÈÿÿÿÿèa ùÿ‰$ÇEÈÿÿÿÿè²U‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàPÀKÇEè×£K‰eìèœùÿ‹E…À¸EE‰Eë¡[L…Àt+ÇEÈÿЋE‰$è >úÿ…À‰EÀtÜEĉ$èßœùÿ‹EÀÉÃÇ$èîÇ8mMÇD$`KÇD$˜BM‰$ÇEÈèiƒÅƒ}Ðÿ‹EÌt‰$ÇEÈÿÿÿÿ莟ùÿ‰$ÇEÈÿÿÿÿèßU‰åEøWƒìT‰EäEĉ$ÇEܰ´KÇEàìÅKÇEèa¥K‰eìè ›ùÿÇ$PèL=úÿ…À‰EÀt-èÈ ‹}À¹ƒ@1Àó«Eĉ$è œùÿ‹EÀƒÄT_]Ãt&¡(vM…ÀtGÇ$„DLÇEÈèt¤ùÿ…Àt0Ç$èôÇÀ\MÇD$ FÇD$à9M‰$èv¶‹|ùK1ɉÐët&ƒÁƒù „ŒÑè¨u=(vMÓà У|ùK‰Áà€9L…ÿ‰EÀ„7ÿÿÿÇ$„DLÇEÈèq¤ùÿ…À„ÿÿÿÇ$è]ÇØ\MÇD$à FÇD$ì9M‰$èß ƒÅ‹MÈ‹EÌ‹UÐ…Ét ƒét èÃÌÿÿƒÂt‰$ÇEÈÿÿÿÿèïùÿ‰$ÇEÈÿÿÿÿè@U‰åEøWƒìT‰EäEĉ$ÇEܰ´KÇEàÌÅKÇEèZ§K‰eìèšùÿ‹EƒÀ`‰E¼‰$è·;úÿ…À‰EÀtmè3‹}Àº`ƒ@÷Ç…¯÷Ç…³‰Ñ1ÀÁéöÂó«u'ƒâu‹EÀƒÀ`‰EÀEĉ$èHšùÿ‹EÀƒÄT_]ÃÆëÞfǃǃâtÑëì‹(vM…ÒtAÇ$„DLÇEÈ螢ùÿ…Àt*Ç$èÿÿÿÇÀ\MÇD$ FÇD$à9M‰$è  }¼‹xùKv%èŒËÿÿÆ‹}À²_ƒÇéAÿÿÿfǃêƒÇé=ÿÿÿ‰Ð1É붃Áƒù tÇÑè¨uò¸Óà УxùK¡(vMÁá Á€ùK‰MÀ…À„ÓþÿÿÇ$„DLÇEÈèx¢ùÿ…À„¸þÿÿÇ$èdþÿÿÇØ\MÇD$à FÇD$ì9M‰$èæ ƒÅ‹MÈ‹EÌ‹UÐ…Étƒét ƒÂt‰$ÇEÈÿÿÿÿèû›ùÿ‰$ÇEÈÿÿÿÿèLU‰åƒìÇ$èîýÿÿLjkMÇD$ ñJÇD$ÌAM‰$èp U‰åƒìÇ$è¾ýÿÿÇè]MÇD$ÀàHÇD$0=M‰$è@ U‰åƒì‰$‰t$è‹Uƒê0‹J0‹Z4‹0ÁÕÔ¼Ó¼ª±¸ƒûwƒùv…öuG‰1À‹$‹t$‰ì]ô&‹J…ÉYx‰Zƒh9Öt‰r‰‹B(‹$‹t$‰ì]û)ËëÙèºÉÿÿU‰åSƒì‹]…Ût2‰$èZÿÿÿ‹‹SÕÔ¼Ò¼ª±¸ƒúwƒøw‹C܉$è¥Dúÿt&èkÉÿÿU‰åìˆEø‰EÄE¤‰$ÇE¼°´KÇEÀ@ÀKÇEÈM©K‰eÌèΖùÿ‹U‰$èãþÿÿ‹Eƒè0‹H ‹P‰Mœ‹H ‰U ‹P$‹@ÇE¨‰M˜‰Uè‰$èsDúÿƒÅ‹E¨‹U¬…À‰U”tƒèt[ ‹M”‰ $è‘þÿÿ茋ö@0P0„§‹RЉU”‹UœMà1ÀÇE¨è£@úÿ‹E”‹M ‹P°Eà‰ $‹M”è\Aúÿ„Àt(è# ÇE¨è§è¢‹E”ÇE¨ÿÿÿÿ‰$è ™ùÿ‹U Eà1ÉÇE¨‰$ºl>MèAúÿ„Àt5Ç$è”ûÿÿÇ``MÇD$ IÇD$l>M‰$è ƒÀP‰E”éTÿÿÿ‹M˜‰ $è0CúÿU‰åƒìèÕ‹1À…Òt öB0t‹ƒêP‹ÉÃU‰åSƒìè„‹…Òt(‹J0‹Z4ÁÕÔ¼Ó¼ª±¸ƒûvǃÂ0‰$è&šùÿƒÄ[]Ãùwä‹J…Éxƒétƒùÿt,‰JƒÄ[]ÃÁuñ‹Z‰ëêt&‹JƒÂ0‰‰$èà™ùÿë¸èIÇÿÿU‰åƒìXEø‰EäEÄÇEܰ´KÇEàüÅKÇEèØ«K‰eì‰$è±”ùÿ}€9Lr }€CLr‹E‰$èT6úÿEĉ$è)•ùÿÉô&‹(vM…ÒtHÇ$„DLÇEÈè“ùÿ…ÀtnÇ$èúÿÿÇÀ\MÇD$ FÇD$à9M‰$ÇEÈ莋EºÍÌÌÌ-€9L÷â¸þÿÿÿÁê‰ÑÓÀ!|ùKétÿÿÿƒÅ‹MÈ‹EÌ‹UÐ…Étyƒétt ‹E¹P1Ò-€9L÷ñºþÿÿÿ‰ÁÓÂ!|ùKƒ=(vM„0ÿÿÿÇ$„DLÇEÈèqùÿ…À„ÿÿÿÇ$è]ùÿÿÇØ\MÇD$à FÇD$ì9M‰$è߃Ât‰$ÇEÈÿÿÿÿè —ùÿ‰$ÇEÈÿÿÿÿè\üÿÿU‰åƒìXEø‰EäEÄÇEܰ´KÇEàÜÅKÇEè]­K‰eì‰$è!“ùÿ}€ùKr }€9Lr‹Eƒè`‰$èÁ4úÿEĉ$è–“ùÿÉÃt&‹ (vM…ÉtHÇ$„DLÇEÈèœùÿ…ÀtcÇ$èƒøÿÿÇÀ\MÇD$ FÇD$à9M‰$ÇEÈèþ‹M¸þÿÿÿé€ùKÁé ÓÀ!xùK낃Å‹MÈ‹EÌ‹UÐ…Étrƒétm ‹M¸þÿÿÿé€ùKÁé ÓÀ!xùKƒ=(vM„EÿÿÿÇ$„DLÇEÈèó›ùÿ…À„*ÿÿÿÇ$èß÷ÿÿÇØ\MÇD$à FÇD$ì9M‰$èaƒÂt‰$ÇEÈÿÿÿÿè•ùÿ‰$ÇEÈÿÿÿÿèÞúÿÿU‰å‹E]‹@øÃU‰åƒìXEø‰EäEÄÇEܰ´KÇEà ÑKÇEèÊ®K‰eì‰$è‘‘ùÿ€=„CLÇEÀpùKuEĉ$è’ùÿ‹EÀÉá€CLÇEȉ$è¼™ùÿ…À‰EÀuÔÇ$è3úÿ…À‰EÀt‰D$¡€CL‰$èÑ™ùÿ…ÀtèˆÃÿÿ‹EÀÇÇ@땃Ń}Ðÿ‹EÌt‰$ÇEÈÿÿÿÿè›”ùÿ‰$ÇEÈÿÿÿÿèìùÿÿU‰åƒìXEø‰EäEÄÇEܰ´KÇEàüÐKÇEèw¯K‰eì‰$è±ùÿ€=„CLÇEÀpùKuEĉ$è6‘ùÿ‹EÀÉá€CLÇEȉ$èܘùÿ‰EÀEĉ$è‘ùÿ‹EÀÉÃŃ}Ðÿ‹EÌt‰$ÇEÈÿÿÿÿèî“ùÿ‰$ÇEÈÿÿÿÿè?ùÿÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEàÆKÇEèB°K‰eìèùÿ‹EÆ@¡(vM…ÀuEĉ$è†ùÿÉÃt&¡ÀOLÇEȉ$èüšùÿ…Àt×Ç$è|õÿÿÇØ\MÇD$à FÇD$ì9M‰$èþƒÅƒ}Ðÿ‹EÌt‰$ÇEÈÿÿÿÿè#“ùÿ‰$ÇEÈÿÿÿÿètøÿÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà ÆKÇE踱K‰eìèAùÿ‹U¶„Àuj‹ (vM…Ét}ÇD$°ñEÇ$èZLÇEÈÿÿÿÿèb–ùÿ‹(vM¡ÀOL…Òtu‰$è[™ùÿ…ÀtiÇ$è«ôÿÿÇÀ\MÇD$ FÇD$à9M‰$è-ÇEÀEĉ$è[ùÿ‹EÀÉö‹EÇEÈÿÿÿÿèÑ>úÿ‰EÀEĉ$è3ùÿ‹EÀÉËEÇEÈè¯>úÿ…ÀÇEÀu®‹ (vM¡ÀOL…Ét˜‰$ÇEÈÿÿÿÿ膙ùÿ…Àt…Ç$èôÿÿÇØ\MÇD$à FÇD$ì9M‰$舃ŋEÌÇEȉEÀ¡ÀOL‰$èÛQúÿ‹UÀÇEÈÿÿÿÿ‰$虑ùÿU‰åƒìXEø‰EäEĉ$ÇEܰ´KÇEà$ÆKÇE育K‰eìèÁùÿ‹EÆ@Æ‹(vM…Òu Eĉ$èBŽùÿÉáÀOLÇEȉ$輘ùÿ…ÀtÛÇ$è<óÿÿÇØ\MÇD$à FÇD$ì9M‰$较Ń}Ðÿ‹EÌt‰$ÇEÈÿÿÿÿèãùÿ‰$ÇEÈÿÿÿÿè4öÿÿU‰åƒìÇD$ÇD$ MÇ$è&›ùÿèi¿ÿÿU‰åSƒìè4ûÿÿ‹ƒ@…Ût0‹S0‹K4ÂÕԼѼª±¸ƒùv#ǃÃ0‰$è‘ùÿ‰$èÚôÿÿè¿ÿÿt&ƒúwØ÷[ëÙU‰åSƒì‹]‹U C ‰P‹UÇC ƒë Ç@@++CÇ@DCUNG‰P‹ŒCLÇ@H ìE‰P‹ˆCL‰P‰$èNŽùÿ‰$èfôÿÿ衾ÿÿU‰åƒìX‰uø‹u‰]ô]Ô‰}ü‹‹Hø‹@üÇEÔÇEØñ‹‰\$‹] ‰L$‹MÇEÜÇEà‰\$‹]ÇEä‰t$‰L$ ‰\$ÇD$‰$ÿR‹]Ô…Û‰ßt‹Uà‰Ðƒàƒøt‹MÜ‹EØ!ȃàƒøu‰Ø‹uø‹]ô‹}ü‰ì]Ãá1Ûƒùtç…Òuã‹E…Àx‹E9ÆuÒ‰ûë΃}þ‰ÓtÆ‹U‹M ‹‰L$ ‹U‹M‰t$‰|$‰T$‰ $ÿP ƒàƒøuš‹}Ô‰ûë“U‰åWVS켋E‹UÇEœ°´KÇE 0ÀK‰…xÿÿÿE„‰•|ÿÿÿUè‰U¤ÇE¨ºK‰e¬‰$èéŠùÿƒ}ÇEäÇE€tE„‰$èj‹ùÿ‹E€Ä¼[^_]ËE‹•|ÿÿÿÆ…sÿÿÿƒè0‰…hÿÿÿ‹…xÿÿÿÕÔ¼Ò¼ª±¸ƒú†ƒ} „(‹EÇEˆÿÿÿÿ‰$èŒùÿ…À‰…lÿÿÿ„ç‰Â‹EMÀè²4úÿ‹U‰…xÿÿÿ¶EÔè6úÿ‹U‰$‰EÈEä‰D$蛋ùÿƒ}ä‰ÇƒßƒÿŒ¡„§‹…xÿÿÿ‰}€1ÿ1ɶ¶ƒÀ‰ÚƒâÓâƒÁ ׄÛxê1ö1ɶ¶ƒÀ‰ÚƒâÓâƒÁ Ö„Ûxêƒm€uº‰ó‰þƒÆ…Û‰µ`ÿÿÿÇ…xÿÿÿtƒë‹EЉxÿÿÿ…xÿÿÿ‹…`ÿÿÿÇE€…À„­þÿÿ‹½xÿÿÿ…ÿ„Û‹U ƒâ‰•Tÿÿÿ„‚Ç…tÿÿÿ(9MÇ…XÿÿÿÆ…_ÿÿÿ´&‹…xÿÿÿUàèr2úÿU܉E€èg2úÿ‹Uàƒú„MŽgEÀèí2úÿ…À‰…dÿÿÿ„‹µtÿÿÿ…ö„*‹…Xÿÿÿ‹•tÿÿÿ‰EØ‹‰$‹@ÇEˆÿÿÿÿÿЄÀt‹EØ‹‰EØ‹•dÿÿÿ‹U؉T$‹•tÿÿÿÇD$ ‰T$‹•dÿÿÿ‰$‹@ÇEˆÿÿÿÿÿЄÀ„À‹E؉…Xÿÿÿ‹Uฉ•tÿÿÿé,ƒø—…sÿÿÿƒ} …Øýÿÿ€½sÿÿÿ…Ëýÿÿ‹•hÿÿÿ‹…hÿÿÿ‹R‹@ ‰•tÿÿÿ‹•hÿÿÿ‰…lÿÿÿ¸‹R$…Ò‰•`ÿÿÿ„7öE „ªƒø„ª‹•tÿÿÿ…Òˆ‚‹E‹UÇD$ÇEˆÿÿÿÿ‰D$‰$è‰ùÿ‹…tÿÿÿ‹UÇD$‰D$‰$èñˆùÿ‹…`ÿÿÿ‹U‰D$‰$è,‰ùÿÇE€é»üÿÿ€½_ÿÿÿ¸Ç…tÿÿÿu9ÇE€é—üÿÿÇ…Xÿÿÿ¸Ç…tÿÿÿÇ…`ÿÿÿÇ…xÿÿÿöE „%ÿÿÿƒøÇE€„Püÿÿ€½sÿÿÿÇE€…<üÿÿ‹…hÿÿÿ‹•tÿÿÿ‰P‹•xÿÿÿ‰P‹•lÿÿÿ‰P ‹•Xÿÿÿ‰P(‹•`ÿÿÿ‰P$éüÿÿ‹E‰$è~ïÿÿÆ…_ÿÿÿ‹EÜ…À„,ÿÿÿE€‰…xÿÿÿénýÿÿ‹tÿÿÿ…Ût‹Tÿÿÿ…Éu €½sÿÿÿ„‡÷Ò1öUÌ1Ét&¶ƒÂ‰ØƒàÓàƒÁ Æ„Ûxê…ö”À„ÀtšéÞýÿÿ€½sÿÿÿ…Iþÿÿƒè„mÿÿÿ‹…tÿÿÿ…À‰Iþÿÿ‹•lÿÿÿMÀ‹EÇEˆÿÿÿÿè€0úÿ‹U¶EÔèä1úÿ‹•hÿÿÿ‰B$éþÿÿ‰$‹XÿÿÿEÀ‹•tÿÿÿÇEˆÿÿÿÿè1úÿƒðé{ÿÿÿ€½sÿÿÿtÇ…tÿÿÿH9MÇ…Xÿÿÿépüÿÿ‹Eöt;‹PЉ•Xÿÿÿ‹•Xÿÿÿ‹R°‰•tÿÿÿéKüÿÿÇ…Xÿÿÿ¸Ç…tÿÿÿé<þÿÿ‹EƒÀ ‰…XÿÿÿëÀÇEˆè±sÿÿƒÅ‹EŒ‰$èsíÿÿè®·ÿÿU‰åÇÈOL(dM]ÃU‰åÇøZL(dM]ÃU‰åƒì€=„CLu Æ„CLÉá€CL‰$è+ùÿÆ„CLÉÃU‰åÇÄOL(dM]Ãÿÿÿÿp@"@@o@€p@àt@0~@@”@ð­@д@`·@0¼@°Ä@PæEçEPèEÐæEpæE0çE€çE`æE0æEÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ÿÿ ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ÿÿÿÿÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿÿÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿÿÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿÿÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ÿ ÿ ˜BMÿ ÿ ÿ ÿ ÿ ÿ ÿ ÿ ÿÿÿÿÿ ÿ ÿ ÿ ÿ}(9Mÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ÿ ÿ ÿ ÿ}(9Mÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ˜BMÿÿ ÿÿÿ }ÿÿ ÿ ÿ ÿ}(9Mÿ}(9Mÿ }}(9Mÿ }}(9Mÿ }(9Mÿ}(9Mÿ}(9Mÿ }(9Mÿÿÿÿÿ ÿ ÿ ÿ ÿÿÿ ÿ ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ }}(9Mÿÿÿ}(9Mÿ}(9Mÿ}(9Mÿÿÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿÿÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿÿÿ}(9Mÿ}(9Mÿ}(9Mÿÿÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿÿÿ}(9Mÿ }}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿ}(9Mÿÿÿ ÿ}ÿ ÿ ÿ ˜BMÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ%   }ÿ-      }ÿ-      }ÿ ÿ ÿÿÿÿÿÿÿÿÿÿÿ ÿ ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ÿ ÿ ÿÿÿ ÿÿÿ }ÿ ÿ ÿ ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ%   }ÿ-      }ÿ-      }ÿ ÿ ÿÿÿÿÿÿÿÿÿÿÿ ÿ ÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ÿÿÿÿÿÿÿÿÿ}(9Mÿ}(9Mÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿÿ ÿ ÿ}¼BMŒjLgÞoLvæoLdíoLDôoLfpLs pL1,rLepLx:rLnBrLhÿÿÿÿ€qM ø@A­ÂC²Î¨¤ªlE­ÂC²Î¨¤ªlEp*A° >€¤ëL? ?€¤ëL@ @€¤ëLA A€¤ëLB B€¤ëLC C€¤ëLD D€¤ëLE E€¤ëLF F€¤ëLG G€¤ëLH H€¤ëLI I€¤ëLJ J€¤ëLK K€¤ëLL L€¤ëLM M€¤ëLN N€¤ëLO O€¤ëLP P€¤ëLQ Q€¤ëLR R€¤ëLS S€¤ëLT T€¤ëLU U€¤ëLV V€¤ëLW W€¤ëLX X€¤ëLY Y€¤ëLZ Z€¤ëL[ [€¤ëL\ \€¤ëL] ]€¤ëL^ ^€¤ëL_ _€¤ëL` `€¤ëLa a€¤ëLb b€¤ëLc c€¤ëLd d€¤ëLe e€¤ëLf f€¤ëLg g€¤ëLh h€¤ëLi i€¤ëLj j€¤ëLk k€¤ëLl l€¤ëLm m€¤ëLn n€¤ëLo o€¤ëLp p€¤ëLq q€¤ëLr r€¤ëLs s€¤ëLt t€¤ëLu u€¤ëLv v€¤ëLw w€¤ëLx x€¤ëLy y€¤ëLz z€¤ëL{ {€¤ëL| |€¤ëL} }€¤ëL~ ~€¤ëL €¤ëL€ €€¤ëL €¤ëL‚ ‚€¤ëLƒ ƒ€¤ëL„ „€¤ëL… …€¤ëL† †€¤ëL‡ ‡€¤ëLˆ ˆ€¤ëL‰ ‰€¤ëLРЀ¤ëL‹ ‹€¤ëLŒ Œ€¤ëL €¤ëLŽ Ž€¤ëL €¤ëL €¤ëL‘ ‘€¤ëL’ ’€¤ëL“ “€¤ëL” ”€¤ëL• •€¤ëL– –€¤ëL— —€¤ëL˜ ˜€¤ëL™ ™€¤ëLš š€¤ëL› ›€¤ëLœ œ€¤ëL €¤ëLž ž€¤ëLŸ Ÿ€¤ëL   €¤ëL¡ ¡€¤ëL¢ ¢€¤ëL£ £€¤ëL¤ ¤€¤ëL¥ ¥€¤ëL¦ ¦€¤ëL§ §€¤ëL¨ ¨€¤ëL© ©€¤ëLª ª€¤ëL« «€¤ëL¬ ¬€¤ëL­ ­€¤ëL® ®€¤ëL¯ ¯€¤ëL° °€¤ëL± ±€¤ëL² ²€¤ëL³ ³€¤ëL´ ´€¤ëLµ µ€¤ëL¶ ¶€¤ëL· ·€¤ëL¸ ¸€¤ëL¹ ¹€¤ëLº º€¤ëL» »€¤ëL¼ ¼€¤ëL½ ½€¤ëL¾ ¾€¤ëL¿ ¿€¤ëLÀ À€¤ëLÁ Á€¤ëL €¤ëLà À¤ëLÄ Ä€¤ëLŠŀ¤ëLÆ Æ€¤ëLÇ Ç€¤ëLÈ È€¤ëLÉ É€¤ëLÊ Ê€¤ëLË Ë€¤ëLÌ Ì€¤ëLÍ Í€¤ëLΠ΀¤ëLÏ Ï€¤ëLРЀ¤ëLÑ Ñ€¤ëLÒ Ò€¤ëLÓ Ó€¤ëLÔ Ô€¤ëLÕ Õ€¤ëLÖ Ö€¤ëL× ×€¤ëLØ Ø€¤ëLÙ Ù€¤ëLÚ Ú€¤ëLÛ Û€¤ëLÜ Ü€¤ëLÝ Ý€¤ëLÞ Þ€¤ëLß ß€¤ëLà à€¤ëLá ဤëLâ ․ëLã 〤ëLä 䀤ëLå 値ëLæ æ€¤ëLç 瀤ëLè 耤ëLé 逤ëLê ꀤëLë 뀤ëLì 쀤ëLí 퀤ëLî ëLï ëLð ð€¤ëLñ ñ€¤ëLò ò€¤ëLó ó€¤ëLô ô€¤ëLõ õ€¤ëLö ö€¤ëL÷ ÷€¤ëLø ø€¤ëLù ù€¤ëLú ú€¤ëLû û€¤ëLü ü€¤ëLý ý€¤ëLþ þ€¤ëLÿ ÿ€4ïLÿÿDïLÿÿTïLÿÿ€ ÿÿ ÿÿ ÿÿ€ ÿÿ€4ïLÿÿDïLÿÿTïLÿÿ€ ÿÿ ÿÿ ÿÿ€ ÿÿ€ ÿÿ€ ÿÿ€ ÿÿ€ ÿÿ€4ïLÿÿ€DïLÿÿ€TïLÿÿ€TíL ÿÿ€díLÿÿ€tíLÿÿ€ÄíLÿÿ€ÄíLÿÿ€$íL ÿÿ€$íL$ÿÿ€$íL(ÿÿ€$íL,ÿÿ€0 ÿÿ€1 ÿÿ€2 ÿÿ€3 ÿÿ€4 ÿÿ€5 ÿÿ€6 ÿÿ€7 ÿÿ€8 ÿÿ€9 ÿÿ€: ÿÿ€; ÿÿ€< ÿÿ€= ÿÿ€> ÿÿ€? ÿÿ€@ ÿÿ€A ÿÿ€B ÿÿ€C ÿÿ€D ÿÿ€E ÿÿ€F ÿÿ€G ÿÿ€H ÿÿ€I ÿÿ€J ÿÿ€K ÿÿ€L ÿÿ€M ÿÿ€N ÿÿ€O ÿÿ€2ŸL8ŸLpWBpTB—ªLžªLàöBàìB&«L.«L€÷B°÷Bá«Læ«LPC0ÿB ¬L¬LÀCpCYC`XCÐXCXCdµLîL(L fC ´LDîLXLp`CÿÿÿÿÿÿÿÿOD OD OD0OD€€€€èÿèÿèÿèÿÿÿÿÿÍÿÍÿÍÿÍÿffffJJJJøøøøààààÒÿÒÿÒÿÒÿYYYYÿÿÿÿêÿêÿêÿêÿrrrrÿÿÿÿÿÿÿÿ?kÿÿÿh5ÎûÿÿË@ÿÿÿÀ?@ÿÿÿÀ?àòM F@rKŒM¨M€MàMäMèMíMñMõMùMýMMM M MõMMMM&M0M8M@MHMPMXM`MhMpM@MxMÿÿÿÿÿÿÿÿÿÿÿÿlibgcj-11.dll_Jv_RegisterClassesERROR: ALSA driver not enabled at compile time. Please use a different audio input driver!vector::_M_range_check8 A±á镲 ¡?åa¡Ö4ïî?š™™™™™©?ffffffî?333333ó?@@KÈ=›Uå?ioð…ÉTÕ?4ÂERROR: unable to allocate memory for graphics buffer.Usage: fische [-D (driver)] [-d (device)] [-g (X)x(Y)] [-v (X)x(Y)] [-f] [-e] [-s (fps)] [-1] [-n] [-h]Details:---------------------------------------------------------------------------------D --driver (driver) Use the specified audio input driver. Presently "alsa", "pulse", "portaudio" and "dummy" are supported.-d --device (device) (device) names the pcm capture device to get the sound data from. On most systems, the default will do just fine. This option is ignored with the"pulse" audio and "dummy" audio drivers. "portaudio" knows the special device "help", which will spit out all devices available.-g --geometry (X)x(Y) (X) and (Y) specify the width and height of the animation. default: 800x400-v --virtual (X)x(Y) (X) and (Y) specify the width and height of the application window. Use this to prevent your computer from trying to switch to non-existent fullscreen resolutions.-f --fullscreen Start up in fullscreen mode. At runtime, you can toggle fullscreen mode by pressing 'F'.-e --extra-nervous Use nervous mode. This brings more life to the animation. However, not too many music genres go well with it. Toggle by pressing 'N'.-s --fps (fps) (fps) specifies the target frames per second. The default, 30, is what fische is designed for-1 --single Use only one CPU, even if there are more available CPU detection is currently Linux-only. --exit-on-mouseevent Exit when a mouse button is clicked (useful mainly for touchscreens)-n --nowrite Do not update configuration file HOME/.fischerc-h --help This message.RUNTIME CONTROLS ARE DOCUMENTED IN THE README AND ON THE MAN PAGE.ERROR: is not a valid geometry string%dx%dERROR: goemetry string invalid* using custom animation geometry by geometry is no valid virtual geometry stringERROR: virtual goemetry string invalidERROR: virtual cannot be smaller than actual geometry Specify a smaller geometry FIRST* using custom virtual geometry * using custom capture device: ""alsa* using ALSA inputpulse* using PulseAudio inputportaudio* using PortAudio inputdummy* WARNING: using dummy audio input* unknown audio driver "".%d* using custom target fps = true* fullscreen mode* nervous mode* using single-threaded algorithms on user request* CPU ID is: AuthenticAMDUSERPROFILE/.fischerc* saving configuration to ############################## fische configuration file #geometry = xvirtual = geometryvirtual = device = fps = driver = alsadriver = pulsedriver = portaudiofullscreen = truefullscreen = falsenervous = truenervous = false### uncomment to set single-CPU mode ###single = truesingle = false#single = true### uncomment to enable exit on mouse click ###exit-on-mouseevent = trueexit-on-mouseevent = false#exit-on-mouseevent = trueÐ]@Å]@_^@‚^@Æ^@_@í^@œ^@^@ý]@ * ----START OF CONFIG FILE----* using saved configuration from %s = %svirtualdevicedriverfullscreennervousfpssingleexit-on-mouseevent* -----END OF CONFIG FILE----- …i@zi@ j@-j@qj@°j@˜j@Gj@Ài@¨i@g:v:d:D:fs:1pneh* CPU cores: * using multi-threaded blur algorithm* using single-threaded blur algorithm* CPU detection disabled on your requestÕl@Ðk@Ðk@Ðk@Ðk@Ðk@Ðk@Ðk@Ðk@Ðk@Ðk@Ðk@Ðk@Ðk@Æl@Ðk@Ðk@Ðk@Ðk@°l@Ðk@Ðk@Ðk@Ðk@Ðk@Ðk@Ðk@Ðk@Ðk@Ðk@Ðk@Ðk@Ðk@Ðk@Ðk@Ðk@Ðk@Ðk@Ðk@Ðk@Ðk@Ðk@Ðk@Ðk@Ðk@Ðk@Ðk@Ðk@Ðk@Ðk@Ðk@•l@€l@fl@Pl@Æl@Ðk@Ðk@Ðk@Ðk@Ðk@Hl@Ðk@Ðk@Ðk@Ðk@5l@Ðk@Ðk@"l@Ðk@l@extra-nervousnowritehelpERROR: PulseAudio driver not enabled at compile time. Please use a different audio input driver!ERROR: cannot allocate memory for ringbuffer* created ringbuffer of size ERROR: cannot insert bytes into ringbuffer of size ERROR: could not initialize SDLERROR: could not open requested video modeERROR: could not set 32 bit pixel format* initialized x SDL surface with flags: HWSURFACESWSURFACE|ASYNCBLIT|ANYFORMAT|HWPALETTE|DOUBLEBUF|FULLSCREEN|OPENGL|OPENGLBLIT|RESIZABLE|HWACCEL|SRCCOLORKEY|RLEACCEL|SRCALPHA|PREALLOCfische 3.2Fullscreen switching errorRŠ@Š@ú‰@ê‰@¸‰@n‰@$‰@ψ@ˆ@mˆ@ñ‡@”‡@.‡@ц@†@ß…@^…@ò„@Þ‚@ˆŠ@ * calculating vectorfields: 5% * calculating vectorfields: %ERROR: unable to calculate any vectorfields. out of memory?vector::_M_range_check * successfully calculated different vectorfields ÈB@ÈA A @pAÀ@ AHBòB¤p= ×£ð?€> Á333333ó?È€??ÍÌL=-DTû! @Fatal error in vector calculation'­@°¬@I¬@Ы@Z­@?$tI-DTû!@-DTû!Àes-8RÁð?-DTû! @Ð? @À@C * caught SIGINTERROR: animation is bigger than screen can allow. * actual fps was pAzD* stopping sound sampling threadzD(knN-DTû! @PortAudio error: helpdefault+ device #: * using portaudio device index * created thread for sound sample acquisition (portaudio)* stopping sound sampling threadǺ¸ðF?D,G?ÀoƒÀÊ! @¢E¶óýT@š™™™™™¹?à?PortAudio V19-devel (built Aug 31 2010)src/common/pa_front.c"PortAudio: compile time and runtime endianness don't match" && (((char *)&nativeOne)[0]) == 1hostApi->info.defaultInputDevice < hostApi->info.deviceCounthostApi->info.defaultOutputDevice < hostApi->info.deviceCountSuccessPortAudio not initializedUnanticipated host errorInvalid number of channelsInvalid sample rateInvalid deviceInvalid flagSample format not supportedIllegal combination of I/O devicesInsufficient memoryBuffer too bigBuffer too smallNo callback routine specifiedInvalid stream pointerWait timed outInternal PortAudio errorDevice unavailableIncompatible host API specific stream infoStream is stoppedStream is not stoppedInput overflowedOutput underflowedHost API not foundInvalid host APICan't read from a callback streamCan't write to a callback streamCan't read from an output only streamCan't write to an input only streamInvalid error codeInvalid error code (value greater than zero)öØÿÿöØÿÿöØÿÿöØÿÿöØÿÿöØÿÿöØÿÿöØÿÿöØÿÿöØÿÿöØÿÿöØÿÿöØÿÿöØÿÿöØÿÿöØÿÿöØÿÿöØÿÿöØÿÿöØÿÿöØÿÿöØÿÿöØÿÿöØÿÿöØÿÿöØÿÿzDPCH€?ü©ñÒMbP?DirectSound errorPA_MIN_LATENCY_MSECWindows DirectSound€ˆå@pç@@ß@p×@€ˆÕ@€ˆõ@p÷@pA@Ï@pÇ@€ˆÅ@ÀÂ@@¿@–DðBŒC Cü©ñÒMbP??€?D,G€;GD¬FD,F€»GzDPCGskeleton implementationdsound.dllDllGetClassObjectDirectSoundCreateDirectSoundEnumerateWDirectSoundEnumerateADirectSoundCaptureCreateDirectSoundCaptureEnumerateWDirectSoundCaptureEnumerateAsrc/common/pa_cpuload.csampleRate > 0€?ÍÌÌÌÌÌì?€RíÓñ˜¹?src/common/pa_process.chostOutputChannels[i].data != NULLM > 0bp->inputChannelCount > 0channel < bp->inputChannelCountfirstChannel < bp->inputChannelCountfirstChannel + channelCount <= bp->inputChannelCountbp->outputChannelCount > 0channel < bp->outputChannelCountdata != NULLfirstChannel < bp->outputChannelCountfirstChannel + channelCount <= bp->outputChannelCount(bp->hostInputFrameCount[0] + bp->hostInputFrameCount[1]) == (bp->hostOutputFrameCount[0] + bp->hostOutputFrameCount[1])*streamCallbackResult == paContinue || *streamCallbackResult == paComplete || *streamCallbackResult == paAbortframesToProcess != 0€?†=A°=AÂ=A†=AÔ=A†=A†=A†=Aç=A†=A†=A†=A†=A†=A†=A†=A>A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=A—=A†=AG>A@>A†=A7>A†=A†=A†=A0>A†=A†=A†=A†=A†=A†=A†=A'>A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=A >A†=A>AÀ?A†=A?A†=A†=A†=A¦?A†=A†=A†=A†=A†=A†=A†=Av?A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=A`?A†=AT?A>A†=AC?A†=A†=A†=A2?A†=A†=A†=A†=A†=A†=A†=A!?A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=A?A†=A?A?A†=Aó>A†=A†=A†=Aâ>A†=A†=A†=A†=A†=A†=A†=AÑ>A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=AÀ>A†=A·>A°>A†=A§>A†=A†=A†=A >A†=A†=A†=A†=A†=A†=A†=Aˆ>A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=Aw>A†=Ap>Ag>A†=A`>A†=A†=A†=AW>A†=A†=A†=A†=A†=A†=A†=A >A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=A†=AP>AP@A`@A`@AP@Ag@AP@AP@AP@Ap@AP@AP@AP@AP@AP@AP@AP@A€@AP@AP@AP@AP@AP@AP@AP@AP@AP@AP@AP@AP@AP@AP@AP@Aw@AOÏÀÿÿÿßAþÿFþB08<üBüÿF€ÿÿÿßA€ª8›q€ª8›q37?ÿ8mingwm10.dll__mingwthr_remove_key_dtor__mingwthr_key_dtor`EAMingw runtime failure: VirtualQuery failed for %d bytes at address %p Unknown pseudo relocation protocol version %d. Unknown pseudo relocation bit size %d. /stdout.txtw/stderr.txtOut of memory - abortingFatal Error%s: %s rbWinMain() errorDDRAW.DLLSDL_STDIO_REDIRECTSDL_VIDEODRIVERSDL_AUDIODRIVERNo video mode has been setOpenGL active, use SDL_GL_SwapBuffers()Video subsystem has not been initializedNo dynamic GL support in video driverNo GL driver has been loadedUnknown OpenGL attribute`jApjA€jAjA jA°jAÀjAÐjAàjAðjAkAkA kA0kA@kAGjAQjAGL_GetAttribute not supportedOpenGL video mode has not been setOS doesn't support threaded eventsNo available video deviceInvalid bits per pixel (range is {8...32})Invalid width or heightOpenGL not availableVideo mode smaller than requestedglBeginCouldn't load GL function %s: %s glBindTextureglBlendFuncglColor4fglDisableglEnableglEndglFlushglGenTexturesglGetStringglLoadIdentityglMatrixModeglOrthoglPixelStoreiglPopAttribglPopClientAttribglPopMatrixglPushAttribglPushClientAttribglPushMatrixglTexCoord2fglTexEnvfglTexImage2DglTexParameteriglTexSubImage2DglVertex2iglViewportGL_EXT_packed_pixelsCouldn't create shadow surfaceNo video mode large enough for %dx%d¤âKÀâKàöK€;š™™?A video mode must be set before warping mouseCursor hot spot doesn't lie within cursorSDL_UpperBlit: passed a NULL surfaceSurfaces must not be locked during blit1-bpp rect fill not yet implemented4-bpp rect fill not yet implementedFill rect on unsupported surface formatUnsupported surface alpha mask formatWidth or height is too largeEmpty destination paletteCouldn't lock event queueWarning: Can't set %d ms timer resolutiontimeSetEvent() failedInternal logic error: Win32 uses threaded timer(null)åÄA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA@ÄA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA@ÄA@ÄA¸ÃAuÄA¸ÃA¸ÃA@ÄA¸ÃA¸ÃA¸ÃA¸ÃA¸ÃA@ÄA@ÄA¸ÃA¸ÃAªÄA¸ÃA@ÄA¸ÃA¸ÃA@ÄAOut of memoryError reading from datastreamError writing to datastreamError seeking in datastreamUnknown SDL errordirectxwindibgapi•ÏA‰ÏAPÈA€ÏAtÏAPÈAkÏA_ÏAPÈAPÈA*ÏAÉÎASDL_appUTF-8Couldn't register application classUSER32.DLLTrackMouseEventCouldn't create mutexPassed a NULL mutexCouldn't wait on mutexCouldn't release mutexNot enough resources to create threadCouldn't create semaphorePassed a NULL semWaitForSingleObject() failedReleaseSemaphore() failedAudio device is already openedSDL_AUDIO_FREQUENCYSDL_AUDIO_FORMATMSBSDL_AUDIO_CHANNELS1 (mono) and 2 (stereo) channels supportedSDL_AUDIO_SAMPLESSDL_OpenAudio() passed a NULL callbackCouldn't create mixer lockCouldn't create audio threadNo available audio device€€€€€€€€€€€€ðöK÷K÷K ÷KJoystick hasn't been opened yetThere are %d joysticks availableJoystick only has %d axesJoystick only has %d hatsJoystick only has %d ballsJoystick only has %d buttonsTimer already initializedThis platform doesn't support multiple timersYou must call SDL_Init(SDL_INIT_TIMER) firstMultiple timers require threaded events!CD-ROM not openedCD-ROM subsystem not initializedInvalid CD-ROM drive indexInvalid starting trackInvalid play lengthInvalid starting frame for track %dInvalid ending frame for track %d SDL_VIDEO_ALLOW_SCREENSAVERSDL_VIDEO_WINDOW_POSSDL_VIDEO_CENTERED%d,%dcenterCouldn't create DIB sectionwindibWin95/98/NT/2000/CE GDIDINPUT.DLLDDRAW.DLLDirectDrawCreateDirectInputCreateAUndefined error!Exception encounteredInvalid objectInvalid parametersObject not foundInvalid rectangleInvalid caps memberInvalid pixel formatOut of memoryOut of video memorySurface busySurface was lostDirectDraw is still drawingInvalid surface typeNot in exclusive access modeNo palette attachedNo palette hardwareNot 8-bit colorExclusive mode was already setWindow handle already setWindow handle is subclassedNo blit hardwareSurface was implicitly createdIncompatible primary surfaceNo cooperative level setNo DirectDraw hardwareNo emulation availableNo flip hardwareSurface not flippablePrimary surface already existsUnsupported modeSurface created in different modeOperation not supportedInterface not present%s: Unknown DirectDraw error: 0x%x%s: %s%sdirectxA video mode must be set for gamma correctionDirectDrawSurface3::QueryInterface(GAMMA)DirectDrawGammaControl::GetGammaRamp()DirectDrawGammaControl::SetGammaRamp()DirectDrawSurface3::FlipDirectDrawSurface3::LockIDirectDrawSurface3::SetColorKeyIDirectDrawSurface3::BltDirectDraw2::CreateSurfaceDirectDrawSurface::QueryInterfaceDirectDrawSurface3::GetCapsNo room in video memoryDirectDraw2::SetSurfaceDescDDraw didn't use SDL surface memoryDDraw created surface with wrong pitchDDraw didn't use SDL surface descriptionDDraw created surface with wrong sizeDirectDrawSurface3::GetAttachedSurfaceYou must set a non-GL video mode firstBlit surfaces were lost, reload themIDirectDrawSurface3::BltFastDirectDraw2::GetCapsSDL_VIDEO_WINDOW_POSSDL_VIDEO_CENTERED%d,%dcenterDirectDraw2::SetCooperativeLevelDirectDraw2::CreateSurface(PRIMARY)DirectDrawSurface::GetSurfaceDescPrimary DDRAW surface is not RGB formatDirectDraw2::CreatePaletteDirectDrawSurface3::SetPaletteDirectDraw2::CreateClipperDirectDrawClipper::SetHWndDirectDrawSurface3::SetClipperDirectDraw::QueryInterfaceDirectDraw2::EnumDisplayModesàâKàòK `óKP, ôKWin95/98/2000 DirectXøøÿÿààÿÿÿÿCouldn't allocate buffer for requested modeCouldn't allocate new pixel format for requested modeSDL_VIDEODRIVERdummySDL dummy video driverunknown keyàkBÈkB?jBÀkB¸kB°kB¨kB kB˜kBkB‚kB?jB?jBõkBkeyboard repeat value less than zeroSDL_DISABLE_LOCK_KEYSbackspacetabclearreturnpauseescapespace!"#$&'()*+,-./0123456789:;<=>?@[\]^_`abcdefghijklmnopqrstuvwxyzdeleteworld 0world 1world 2world 3world 4world 5world 6world 7world 8world 9world 10world 11world 12world 13world 14world 15world 16world 17world 18world 19world 20world 21world 22world 23world 24world 25world 26world 27world 28world 29world 30world 31world 32world 33world 34world 35world 36world 37world 38world 39world 40world 41world 42world 43world 44world 45world 46world 47world 48world 49world 50world 51world 52world 53world 54world 55world 56world 57world 58world 59world 60world 61world 62world 63world 64world 65world 66world 67world 68world 69world 70world 71world 72world 73world 74world 75world 76world 77world 78world 79world 80world 81world 82world 83world 84world 85world 86world 87world 88world 89world 90world 91world 92world 93world 94world 95[0][1][2][3][4][5][6][7][8][9][.][/][*][-][+]enterequalsupdownrightleftinserthomeendpage uppage downf1f2f3f4f5f6f7f8f9f10f11f12f13f14f15numlockcaps lockscroll lockright shiftleft shiftright ctrlleft ctrlright altleft altright metaleft metaleft superright superalt grcomposehelpprint screensys reqbreakmenupowereuroundo„B „B°„BЄBOnly cursors of dimension (%dx%d) are allowedOut of memoryWindows couldn't create the requested cursordirectxWarning: Unexpected icon_256 characteristicsCouldn't create Win32 icon handleUTF-8UCS-2Application not compiled with SDL %d.%d ASCIILC_ALLLC_CTYPELC_MESSAGESLANGCåáB”ãB…ãB5ãBåáBbáBèâBåáB´âB€âBeâBPâB âB€åBUåBõáB âBääBsäB âB0äBðãBÈãB¦ãBUTF-8US-ASCII8859-1ISO-8859-1UTF8UTF16UTF-16UTF16BEUTF-16BEUTF16LEUTF-16LEUTF32UTF-32UTF32BEUTF-32BEUTF32LEUTF-32LEUCS2UCS-2UCS4UCS-4€¦L§L§L"§L-§L §L2§L8§L?§LG§LP§LX§La§Lg§Ln§Lv§L§L ‡§L §L •§L ›§L  §L DSOUND.DLLDirectSoundCreateUnsupported interface -- Is DirectX 5.0 or later installed?Audio device in useUnsupported audio formatMixing buffer was lostControl requested is not availableInvalid call for the current stateInvalid parameterNo audio device foundOut of memoryCaller doesn't have priorityFunction not supported%s: Unknown DirectSound error: 0x%x%s: %s%sDirectSound GetCurrentPositionDirectSound LockSound buffer size must be between %d and %dDirectSound CreateSoundBufferDirectSoundCaptureCreatedsoundWin95/98/2000 DirectSound%s: %sUnsupported audio formatwaveOutOpen()Couldn't create semaphoreOut of memorywaveOutPrepareHeader()waveoutWin95/98/NT/2000 WaveOutSDL_DISKAUDIODELAYsdlaudio.rawSDL_DISKAUDIOFILEwbWARNING: You are using the SDL disk writer audio driver! Writing to file [%s]. SDL_AUDIODRIVERdiskdirect-to-disk audioSDL_AUDIODRIVERdummySDL dummy audio driverzDNo buffer allocated for conversion?@@@CurrentJoystickSettingsSystem\CurrentControlSet\Control\MediaResources\Joystick%s\%s\%sOEMNameJoystick%d%sSystem\CurrentControlSet\Control\MediaProperties\PrivateProperties\Joystick\OEM%s\%sJoystick driver not presentInvalid parameter(s)Bad device IDJoystick not attachedCan't capture joystick inputjoyGetPosEx%s: Unknown Multimedia system error: 0x%x%s: %s%sÿGmciSendCommand() error: %sÐ5C´5C 5Ci5Ci5C˜5CÐ5C%c:\Unable to make GL context currentÓ:Cà:Cð:C;C;C²:C ;C0;C@;CP;C`;Cp;C€;C¸:C :CP:C;Cr«ì%ѤØÀOŠʂOb„ì%ѤØÀOŠÊB“SbÒ®`—°P6JmbÒ®`—°`];tbÒ®`—° {þëbÒ®`—°¯U™'0šK•nÇr³÷€`¥RaÚÏ› É£¸ &£ü`ÚÏ› É£¸€™óT`ÚÏ› É£¸ 2x’`ÚÏ› É£¸àz `ÚÏ› É£¸àwœà`ÚÏ› É£¸`ñ,3aÚÏ› É£¸Îðò¯àÏœN ÉB^ M¥Ä¯àÏœN ÉB^AER䥎ÑŠ–`—° 22æ¿ÐœÁ ÉB^@V¹Yg–Ч}ø«üÂÜöþ¢ÐœO ÉB^à’ýÿ¢ÐœO ÉB^ ‰ìx¯àÏœN ÉB^pzZº¿ÐœÁ ÉB^ÀÙ¯àÏœN ÉB^`õ,‘Ъ É CË  iõÒк9ÀO×íg¡Í,vÙк9ÀO×íg"“1´ Òк9ÀO×íg@xHÒк9ÀO×ígÄ[h,ϩͪh†ãà^é6w…Ï– €ÇSN‚`hوϜN ÉB^`§êDhËÏœN ÉB^ÁR›i…¨¨F£—$­Ç`Œv$ ZÓ›äRTÙ…çÔ/á³|ÎH§èœG¢.ŠÅ›¢‚}B"‚O9]Sß>AùÞShq3F´ÑC‘jÇaC•× ZÓ›äRTÙ…çþ©DþÔŽ¿Hfßùÿm@3AÂÒ”õÀOŠÊB3AÂÒ”õÀOŠÊ?3AÂÒ”õÀOŠÊðÞmœíGªñMÚ+\ðÞmœíGªñMÚ+\ðÞmœíGªñMÚ+\ðÞmœíGªñMÚ+\åMªbÂiA¡È#Ö˜Ìsµ8»‹ËÒ‹¹`“±¶FÅl)ÛÓ›Ñ€Ç tBÅl)ÛÓ›Ñ€Ç tGÅl)ÛÓ›Ñ€Ç tAÅl)ÛÓ›Ñ€Ç tEÅl)ÛÓ›Ñ€Ç tðm£óÉÏ¿ÇDEST«(¬Ò›³Ñ‡`“±½æþ …¶Ò—úÀO£nX ÖïçIЈª»·j(¬Ò›³Ñ‡`“±½÷~ù(8•Ò—©ÀO£nXzþ*G(Ó}ÀO£nXk®±.éѨÅÀO£rn T3ŽÐšÐ É n5+T3ŽÐšÐ É n5á„¥ ¶pЈª»·j0ôÝ ìЩ¶ªÀ™>€ä}“Љ« ÉA) ÿ.ä˜ÑŒá É)¨(T3ŽÐšÐ É n50¯ ˆ0°Ðާ`——ê[fŠ;iòш ÀOÙ0Åœ(øè¨Ò¡ò Éƒêös†~ñ´Ãч `“±½ü sGSÑŒMÀOÙ0ÅF¼CàSÑŒMÀOÙ0Å“(¬Ò›³Ñ‡`“±½ª(¬Ò›³Ñ‡`“±½}püE´Ò¼¬ É"æë{püE´Ò¼¬ É"æë'/dÃѧ`øu¬å™Eñ‰FÒ¯¦ª$ضÖ¨ÍJhÒ‡`“±½$/dÃѧ`øu¬¢«–d°aÒ¯¦ª$ض%/dÃѧ`øu¬rÓ_†gŸÒ‡*`“±½ÂͧϡÒªÕøu¬(/dÃѧ`øu¬(/dÃѧ`øu¬÷‘*¿¤Ò»ß`3ÛØDx© wÈч `“±½Ex© wÈч `“±½%®ßþnäÑªÎøu¬"VËå2Ò¯¦ª$ض Š&ò`Ò¯¦ª$ض¡Š&ò`Ò¯¦ª$ض¡«–d°aÒ¯¦ª$ض&/dÃѧ`øu¬§(¬Ò›³Ñ‡`“±½A,ŸÄÅÓ›ÑDEST€=–¿YÅЊ+ É%ZÁ?àýb`NŒÝÞ§#feµ¹ëÍš7ŠH‡eõ<ý6Þ@;ÇÅéf¡K ºèÆîÙ-mÅ"y˜[O£‰'™mÜ(.ˆ°ZtrE‡}NOÐyï@m@‡¯¿û?ÃWLïÍNH–å ϯ‘*!,“>ï ÔQOŒÏ?˜ñ²]’=ÊïØßrF¦t ‰K­˜‚ýÚW‘KŸã÷[zây¿œbæï÷B½‘ÉÖ©Zöq^˜ïÇÕÔBºM->.–ô‰í ô;sA¡2<´Ï21hü‡Uš`C•ªJâl©(¬Ò›³Ñ‡`“±½~püE´Ò¼¬ É"æë|püE´Ò¼¬ É"æë*T3ŽÐšÐ É n5 ZtÓtжþ ÉWÚž(¬Ò›³Ñ‡`“±½¬(¬Ò›³Ñ‡`“±½­(¬Ò›³Ñ‡`“±½¡(¬Ò›³Ñ‡`“±½)T3ŽÐšÐ É n5p+o ÕÏ¿ÇDEST8†€kЛ É£¸@uªÿ¨zЛ É£¸ ‚rU<ÓÏ¿ÇDESTké6M%ãοÁ+álé6M%ãοÁ+áòÇ‘²¶Ò—úÀO£nX/k@Z>Ѷ@ª¡ùjÀ ÖïçIЈª»·j@+±¥]ÑÏÀO›Noé6M%ãοÁ+á¯(¬Ò›³Ñ‡`“±½€úĆ„Ð”èÀOÃA7œ(¬Ò›³Ñ‡`“±½›(¬Ò›³Ñ‡`“±½š(¬Ò›³Ñ‡`“±½Å[÷]NҼǠÉ"æë+7HÓ[”®E¥"E[„¥™(¬Ò›³Ñ‡`“±½Þìéo‰ßѰ`'qºr„\àÔQьΠÉ)¨(y¨_ьРÉ)¨[V û16Ò¼¸ É"æë²(¬Ò›³Ñ‡`“±½°(¬Ò›³Ñ‡`“±½±(¬Ò›³Ñ‡`“±½AvØ€Ó›ÑÚ÷áÃØ4òm£óÉÏ¿ÇDEST!T3ŽÐšÐ É n5Ÿ(¬Ò›³Ñ‡`“±½ôm£óÉÏ¿ÇDESTõm£óÉÏ¿ÇDESTãm£óÉÏ¿ÇDEST&T3ŽÐšÐ É n5%T3ŽÐšÐ É n5¥o·e7ÿÒNÀO£nX#T3ŽÐšÐ É n5äm£óÉÏ¿ÇDEST'T3ŽÐšÐ É n5"T3ŽÐšÐ É n5ub.éѨÅÀO£rn2”»&þEÓH£u$rÅãç†a+o ÕÏ¿ÇDEST‚+o ÕÏ¿ÇDESTƒ+o ÕÏ¿ÇDEST`+o ÕÏ¿ÇDEST€+o ÕÏ¿ÇDEST+o ÕÏ¿ÇDEST¥(¬Ò›³Ñ‡`“±½¤(¬Ò›³Ñ‡`“±½$T3ŽÐšÐ É n5óm£óÉÏ¿ÇDEST¨(¬Ò›³Ñ‡`“±½B,ŸÄÅÓ›ÑDESTâè°ð—_ьРÉ)¨¶aø—¡`ьРÉ)¨`kÛÓ‚&DESTÎ,÷æ&ÍN¯.ÖhægØÁ ÖïçIЈª»·jà ÖïçIЈª»·jàm£óÉÏ¿ÇDESTám£óÉÏ¿ÇDESTâm£óÉÏ¿ÇDEST€˜†“Ï6Ñ›ª»¸®4Mq:aÿBŸcŸ85g+™ì^FöD’KÑu–°H>¬iµTï >G—?ï1d«qWƒ*M¿ôCŽ‚¨ ñ}Š~j.“ŽÆÝE§¿SÑœ†Ûë‹dNfM¶úäIiè.‰ÓîøÆüOŠèct®–Ž3hwÊSÐÀdFŽyÑVäõ·àmÀâ­G7ŸK¥4@¸(I€øqªlr ÛL¥[C¹h™u0s5ã^ÌÒ¤4 É)¨;\®ÌÑMM™~F„ÊdU†ãû‚ÂYF—½Ë†›JlÌn°üëŠ@”0t´w5\ wžõaHÒ¤ É)¨ÚèÙw@M°Ï˜þýÿ•Ê˽ÔdmB®­Gô'\ú!´¹QŸJ«xÛ™²»gŽ~¨ X<TM™·Óã˜Îh¹å>Ê*4L‹µ~ =·P/óÿSÙ:G’#“ÖR«©?ˆd}•Љ« ÉA)(“øŒÐ‰« ÉA)`;«°×3Ñ©ÀO×±tyžõaHÒ¤ É)¨ßå…sèÕA†¶×´…G¶Ï–;"Ðz¿ýC’½¤; ‚¹ëEÁD­3ÏoÀ nà=愪FÏoÀ nšœh= D’Û=u†^Ö|÷Ó)E¬îxX0¬Þ5BÁD­3ÏoÀ nDÁD­3ÏoÀ n(“øŒÐ‰« ÉA)ôFœÊÅÓÑ·Z`R³¡IˆóÖЉ« ÉA)"ßg‡ÌºÑ‰i É)¨ÜÛ;m[D¸RÎ^‹Ì²‰`wÙ•¦&O»Ó'¸@µAÌ]Àî}bC¹™ÑºóWÇ kòŸ%Ï£ª¹3VCf“Péщª ÉA){»6· A´E}0׳?`\f¤s&Ï£ª¹3Va“Ä+'ƒÏ¬JÀ8%¡ÈìE ЛmÀxÃìE ЛmÀxà ËëqÒάHÀ8%¡wkÿ¤Ñ‘ùøuŽfàÊñÕ×Kѹt`>EóËëqÒάHÀ8%¡ykÿ¤Ñ‘ùøuŽf3ç4TfmÑ» øu†Z€’áénϬJÀ8%¡xìE ЛmÀxËIŸTë¿ÑŽØ Ég¤‚ËëqÒάHÀ8%¡ËëqÒάHÀ8%¡ìE ЛmÀxÃËëqÒάHÀ8%¡ËëqÒάHÀ8%¡`½ßÈ9ОÂÀ)Ãpkÿ¤Ñ‘ùøuŽfËëqÒάHÀ8%¡Ák/$I8ЛmÀxÃËëqÒάHÀ8%¡ËëqÒάHÀ8%¡ ËëqÒάHÀ8%¡ukÿ¤Ñ‘ùøuŽf ¨£nϬJÀ8%¡ ¨£nϬJÀ8%¡wìE ЛmÀxÂìE ЛmÀxÃËëqÒάHÀ8%¡|ìE ЛmÀxÃÂk/$I8ЛmÀxÃ{ìE ЛmÀxÃËëqÒάHÀ8%¡yìE ЛmÀxÀ—5¯£kϬJÀ8%¡%N´†‚œÑ»  É ¦ ËëqÒάHÀ8%¡À0)Д€È ú{skÿ¤Ñ‘ùøuŽfà=YCmϬJÀ8%¡ËëqÒάHÀ8%¡æJí¿ÑŽØ Ég¤‚ËëqÒάHÀ8%¡ËëqÒάHÀ8%¡ËëqÒάHÀ8%¡ÀlÅsÒάHÀ8%¡ ËëqÒάHÀ8%¡åO|° 1¨K¢Áik´Ñ­zÀO›NQ+OьàÉ)¨„Ûl3§Î¥! ¯ å`~G<ÀeÑŒRÀOÙ0ÅÛl3§Î¥! ¯ å`…X€WìnÏ”A¨#Á'NÚ²iСժ¸ß»0†+ 5­Ðަ`——ê[€Zg›;Ò¹/`——ê[à“m³C+Ï¢Þª¹3V”ûU¦‰WN³3Vz‰FŒˆbæDYŠªÏ¿ÇDESTcæDYŠªÏ¿ÇDEST„¶Lšm#ÓŽÀOhD®…¶Lšm#ÓŽÀOhD®0€y¿:H¢Mª™]dí6—1€y¿:H¢Mª™]dí6—`R‰ŠªÏ¿ÇDEST‚æDY.ÉÏ¿ÇDESTƒæDY.ÉÏ¿ÇDEST¼Æ×WV#ÓŽÀOhD®½Æ×WV#ÓŽÀOhD®€ÔTÜ3H¤ts£yÔTÜ3H¤ts£y€æDY.ÉÏ¿ÇDESTæDY.ÉÏ¿ÇDESTÀ÷áç҈КРɠn50S‰ÐšÐ É n5±*áõÉÏ¿ÇDESTú} ë'O´ÖíòîĤL:™Æîý³Ò©ÀO¹†8aR‰ŠªÏ¿ÇDESTZ6e-{Òºøu¬áÊÂox¼Ò¯¦ª$ض÷)6-=9I…ð\kuý—õ1vȾ#†Iˆ6ƒ/ÌHùÀ(¬Ò›³Ñ‡`“±½x(¬Ò›³Ñ‡`“±½|(¬Ò›³Ñ‡`“±½¿(¬Ò›³Ñ‡`“±½†ã“"Ó‚&Òúv%]G{(¬Ò›³Ñ‡`“±½~(¬Ò›³Ñ‡`“±½DH h=Ñѯ¦ª$ضwÂï+—TҼˠÉ"æë¾(¬Ò›³Ñ‡`“±½}(¬Ò›³Ñ‡`“±½¢¬ú/Ê]Ò¯¦ª$ضŒÀçD jN¡YZ|ÕÞŒµ(¬Ò›³Ñ‡`“±½.ÂQŸ´üF¾Âæ(¹íæ=Ô#eÒ‡`“±½àÊÂox¼Ò¯¦ª$ض7Aœg.ÆGA²´VšË%LÉØòÂ7Ò¹ùøu¬z(¬Ò›³Ñ‡`“±½:7R"X›H‚ 1þÞºñ7¢)`ù‚BÒ‡`“±½Ñ”ˆÓRÀÒ‡/`“±½ˆDxÆ£AAª³P“ºBÔÇܯ£îÓѼ É"æë0G¥ä §H˜9¼¿àwrì²b¨v6‚I… xBw^†½(¬Ò›³Ñ‡`“±½Š­$ý`¢=E¿Po“„÷ …çSÑÎ6Ò¹ùøu¬º(¬Ò›³Ñ‡`“±½¡)`ù‚BÒ‡`“±½Cg;Ó›Ñùçð 6Cg;Ó›Ñùçð 6 éTTeÛÎ’ªlIrÀ÷t+T‘ϩͪh†ã€F"¨Ï– €ÇSN‚@þ>Ü2Мû É CËAþ>Ü2Мû É CË0ű EGѧ¡ø«ü1ű EGѧ¡ø«ü3xƒc@ŠL³‚ƒ ë1é å­+ C‡Ú¡BÏuÞXÍÚQ$Ó®§`—°£tlÓ®`—°¢tlÓ®`—°òâ©`šoH¿;S@‹m»ÏÚQ$Ó®§`—°ÎÚQ$Ó®§`—°sî" FJ J‰²[Mfd%q\F¯ˆ•Ï  ªaW¬ ”£ÐœO ÉB^€¯´£ÐœO ÉB^$·-,eѧ¨ø«ü‘$·-,eѧ¨ø«üpjÆ&g³Ï $ªaW¬êÈý÷¼ÖA²•«d³²3sÁ¡úh¶CŠ*êŠO vÉ4÷jÒ‹ ÚA‚$àÎy áƒúš'IÎ¥! ¯ å`†úš'IÎ¥! ¯ å`„úš'IÎ¥! ¯ å`“~ Å•ó4Hžö©å f…úš'IÎ¥! ¯ å`I¤%h$u‚M’Pãj³«!°Í‰Ð¯ É%Í‚!°Í‰Ð¯ É%Íô ™» rHƒ>m0>€®¶=t­=·J€f(ÓcmeA1í®ûuA–%ÍTö“ÊzLËí«ÚB¤.lPYmÜT½Köb,N¡\Ó¶Ä÷ &CÏŽ_E‹M½©]>ž> ߎҋÛP’N¢½DTˆÑíBx˜>’,r@›,êhõ9gƒRóÖ"ÖΪŠ¯ ™£ãBˆ_æC©4§åGjjKf óC€ãîb€Þá¤þ©<ÀþB€x‚3LÑwÚ:Œ…FÆ ãE·`Ôîñl³%ƒ!°Í‰Ð¯ É%Í@«‚=ÚbÏ«9 ¯qä3F«‚=ÚbÏ«9 ¯qä3D«‚=ÚbÏ«9 ¯qä3E«‚=ÚbÏ«9 ¯qä3A«‚=ÚbÏ«9 ¯qä3C«‚=ÚbÏ«9 ¯qä3B«‚=ÚbÏ«9 ¯qä3…Fõ(ýÒ²z É"1–…$É€ÁÒ„sÔ#”Ež^0¬ï1\QЩªªa¾“—h¨VÔ Î°: ¯ §p¼ø‚‹?Ò·t`3Á`'&WéÏ¥Ö(ÛÁO«‚=ÚbÏ«9 ¯qä3¨FÝ[wÏR@35”£ÀV¿â„ÏR@35”£P«‚=ÚbÏ«9 ¯qä3€RtåO²ÏÕª§/ ¦}S7ÊД€È ú{c®…HèxÏR@35”£Q«‚=ÚbÏ«9 ¯qä3náÓ5xÏR@35”£àDÿ5|lÏR@35”£D?òö†vÏR@35”£ j˜º½Ñ‚À Éirq©FÝ[wÏR@35”£F«‚=ÚbÏ«9 ¯qä3ÁV¿â„ÏR@35”£ÃV¿â„ÏR@35”£A?òö†vÏR@35”£ÂV¿â„ÏR@35”£à'¤xÏR@35”£ ¸0BxÏR@35”£q•+šžÏ«9 ¯qä3 î#:±”Ы9 ¯qä3J«‚=ÚbÏ«9 ¯qä3 ‹©¨åÅϹA€È ú{A'Ò®³ÏÕª§/B'Ò®³ÏÕª§/@'Ò®³ÏÕª§/M«‚=ÚbÏ«9 ¯qä3@A†wÏR@35”£áDÿ5|lÏR@35”£AA†wÏR@35”£€náÓ5xÏR@35”£CA†wÏR@35”£BA†wÏR@35”£`®…HèxÏR@35”£E?òö†vÏR@35”£D«‚=ÚbÏ«9 ¯qä3_«‚=ÚbÏ«9 ¯qä3ÀÅí¨ÀД€È ú{B?òö†vÏR@35”£C?òö†vÏR@35”£@?òö†vÏR@35”£!¸0BxÏR@35”£`ÃcŠ}™Ð”€È ú{á!á¿Ñ‚À Éirq ^]:ÕÑ‚À Éirqà!á¿Ñ‚À Éirqá'¤xÏR@35”£â'¤xÏR@35”£€±ô;{ÏR@35”£¡î#:±”Ы9 ¯qä3^«‚=ÚbÏ«9 ¯qä3C«‚=ÚbÏ«9 ¯qä3¾ÿJÑÿJáÿJñÿJKK$K’ÿJCPOSIXstd::future_errorÀìEíEPíEÀìEòìE¯ìE¯ìE¯ìE¯ìE0íE@íEÀìEòìEbasic_filebuf::xsgetn error reading the filebasic_filebuf::underflow codecvt::max_length() is not validbasic_filebuf::underflow incomplete character in filebasic_filebuf::underflow invalid byte sequence in filebasic_filebuf::underflow error reading the filebasic_filebuf::_M_convert_to_external conversion errorbasic_string::atbasic_string::copybasic_string::comparebasic_string::_S_createbasic_string::assignbasic_string::_M_replace_auxbasic_string::replacebasic_string::insertbasic_string::erasebasic_string::appendbasic_string::resizebasic_string::_S_construct NULL not validbasic_string::basic_stringbasic_string::substrbasic_ios::clearios_base::_M_grow_words is not validios_base::_M_grow_words allocation failedaabra+rba+bwwbr+r+bw+w+b__gnu_cxx::__concurrence_lock_error__gnu_cxx::__concurrence_unlock_errorlocale::_S_normalize_category category not found‡½J€½Jw½Jp½Jd½J½JŒÂJnÂJÐÂJ´ÂJÐÂJRÂJlocale::_Impl::_M_replace_facet'ŒK{ŒKƒŒKÊŒKèŒKï“K}“KÑ“K÷“Kˆ“Kˆ“K[bKšbKábKÿbKÿbKpgKôfKgK0gK0gK__gnu_cxx::__concurrence_lock_error__gnu_cxx::__concurrence_unlock_error__gnu_cxx::__concurrence_lock_error__gnu_cxx::__concurrence_unlock_error|žK÷KUžKŠžKžKžKå–K;—Kÿ–K—K“–K__gnu_cxx::__concurrence_lock_error__gnu_cxx::__concurrence_unlock_errorWÖJ ×JÎÖJìÖJ_ÖJzÖJ•ÖJ°ÖJ&ÖJ*jFjF9jFûiFajFCPOSIX9rJrJrJôqJcqJqJÈqJÈqJÈqJrJrJrJ®J®Jù­Jâ­JÒ­J´­J­J~­J~­J~­J®J®J®Jí­Jí­Jí­J§¤J¯¤J‰¤Jr¤Jb¤JD¤J¦£J¤J¤J¤J”¤J”¤J”¤J}¤J}¤J}¤Jbasic_string::eraseÑHSHÐH@HH HþH&HDH{H! H£H H Ha HYHNHvH”HËH%.*LfÑÞGÿÝGuÝGJÛG8ÚG.åG#åG_åG}åG´åGqÑGŸÐGÐGêÍGØÌGÎ×GÃ×Gÿ×GØGTØG%m/%d/%y%H:%M%H:%M:%S‘GÈ‘G²’GF“GÈGÈGÈGÓG/”GÈGÈGÈG›”GÈGÈGÈGÈG•G–•G–GÈGÈGÈGŽ–G²’Gø–GÈGÈGÈGÈGÈGÈGؘG†™G…šGæšGR›GÈGÈG†™GÈGÈGÈGÈGœG‡œGÈGÈGÈGÈGÈG»œGÈGÈGÈG°G²’GClocale::facet::_S_create_c_locale name not validLC_CTYPELC_NUMERICLC_TIMELC_COLLATELC_MONETARYLC_MESSAGES€€ÿÿÿÿÿÿÿïÿÿÿÿÿÿÿïCPOSIXspaceprintcntrlupperloweralphadigitpunctxdigitalnumgraphstd::exceptionstd::bad_exceptionstd::bad_allocstd::bad_caststd::bad_typeidgenericsystemfutureBroken promiseFuture already retrievedPromise already satisfiedUnknown error|dFqdF£dFedFËdFCPOSIXúkJÿkJãkJÓkJBkJ`kJ§kJ§kJ§kJîkJîkJîkJlšJ‰›Jb›JŠšJØ›Jº›Jò™Jë›Jë›Jë›Jm›Jm›Jm›J•šJ•šJ•šJ\Jy‘JR‘JzJÈ‘Jª‘JâJÛ‘JÛ‘JÛ‘J]‘J]‘J]‘J…J…J…Jbasic_string::erasepýGûG"þGâýG¶ýGÓHÈHðHHEHôG0òGÂôG‚ôGVôGs÷Gh÷G÷G®÷Gå÷G%.*Lf™¿GÞ¾GW¾Gó»GçºGHÅG=ÅGeÅGƒÅGºÅGy²G¾±G7±GÓ®GÇ­G(¸G¸GE¸Gc¸Gš¸G%m/%d/%y%H:%M%H:%M:%Sß~G0~G¯}Gw}GˆuGˆuGˆuGF}G}GˆuGˆuGˆuG³|GˆuGˆuGˆuGˆuGt|G|G”{GˆuGˆuGˆuGƒ{G¯}G zGˆuGˆuGˆuGˆuGˆuGˆuGÅyGâxG‹xG)xG¿wGˆuGˆuGâxGˆuGˆuGˆuGˆuGIwGwGˆuGˆuGˆuGˆuGˆuGõvGˆuGˆuGˆuGžvG¯}Gbasic_string::atbasic_string::copybasic_string::comparebasic_string::_S_createbasic_string::assignbasic_string::_M_replace_auxbasic_string::replacebasic_string::insertbasic_string::erasebasic_string::appendbasic_string::resizebasic_string::_S_construct NULL not validbasic_string::basic_stringbasic_string::substrtruefalsetruefalseGMTHSTAKSTPSTMSTCSTESTASTNSTCETISTEETJSTGMTHSTAKSTPSTMSTCSTESTASTNSTCETISTEETJST-0123456789-+xX0123456789abcdefABCDEF-+xX0123456789abcdef0123456789ABCDEF%m/%d/%y%H:%M:%SAMPMSundayMondayTuesdayWednesdayThursdayFridaySaturdaySunMonTueWedThuFriSatJanuaryFebruaryMarchAprilMayJuneJulyAugustSeptemberOctoberNovemberDecemberJanFebMarAprJunJulAugSepOctNovDec%m/%d/%y%H:%M:%SAMPMSundayMondayTuesdayWednesdayThursdayFridaySaturdaySunMonTueWedThuFriSatJanuaryFebruaryMarchAprilMayJuneJulyAugustSeptemberOctoberNovemberDecemberJanFebMarAprJunJulAugSepOctNovDecpure virtual method called terminate called recursively terminate called after throwing an instance of '' terminate called without an active exception what(): iÖD´ÖD´ÖD´ÖD´ÖDiÖDiÖDiÖDiÖDÂÖDÂÖD´ÖDÂÖDÂÖDÂÖDÂÖDÂÖDÂÖDÂÖDÂÖDÂÖDÂÖDiÖDÖDÖDÖDÖDÖDÖD´ÖDÂÖDÂÖDÂÖDÂÖDÂÖDiÖDÂÖDÖD‡ÖD´ÖDiÖD´ÖDÖDÖDiÖDiÖDÂÖD´ÖD´ÖD´ÖD´ÖD´ÖD´ÖD´ÖD´ÖDÂÖD´ÖDiÖDiÖDÂÖDÂÖDÂÖDiÖDiÖDiÖDÂÖDÀÛD¤ÛD¤ÛD¤ÛD¤ÛDÐÛDÀÛD²ÛD²ÛD¤ÛD¤ÛD¤ÛD¤ÛD¤ÛD¤ÛD¤ÛD¤ÛD¤ÛD¤ÛD¤ÛD¤ÛD¤ÛDÀÛD¤ÛD¤ÛD¤ÛD¤ÛD¤ÛD¤ÛD¤ÛD¤ÛD¤ÛD¤ÛD¤ÛD¤ÛDÀÛD¤ÛD¤ÛD¤ÛD¤ÛD¤ÛD¤ÛD¤ÛD¤ÛDÀÛD²ÛD¤ÛD¤ÛD¤ÛD¤ÛD¤ÛD¤ÛD¤ÛD¤ÛD¤ÛD¤ÛD¤ÛDÀÛD¤ÛD¤ÛD¤ÛD¤ÛD¤ÛD¤ÛD¤ÛDÀÛD_GLOBAL_(anonymous namespace)ßDßDßDßDßDßDßDßDßDßD«ÞD«ÞD«ÞD«ÞD«ÞD«ÞD«ÞDPâD«ÞDAßDpßD«ÞD°áD ßD«ÞD«ÞD«ÞD«ÞD«ÞDááDßDÐßDàD«ÞD0àD`àD¸àDáD«ÞD«ÞD«ÞD«ÞDßD«ÞD«ÞD«ÞD«ÞD«ÞD«ÞDFáDFáDFáDFáDFáDFáDFáDFáDFáDFáD«ÞDFáDFáDFáDFáD«ÞD«ÞD«ÞDFáDFáD€áDFáDFáDFáDFáDFáDšäD«ÞD«ÞD«ÞD«ÞD«ÞD«ÞD«ÞD«ÞD«ÞD«ÞD«ÞD«ÞD«ÞDNäD«ÞD«ÞD«ÞD«ÞD«ÞD«ÞD«ÞD«ÞD«ÞD«ÞD«ÞD«ÞD«ÞD«ÞD«ÞDäDÚãDZåD«ÞD åD£ãD«ÞD«ÞD«ÞD«ÞD«ÞD«ÞD€ãD«ÞD«ÞD@ãDNäD«ÞDÍâDstring literalstd–íDíDqîDíDíDíDíDPíDíD–íDíDíDíDíD°íDôD›ñD›ñDûóD›ñD›ñDØóDµóD›ñD›ñD›ñD›ñD›ñD›ñD›ñD›ñD’óDióD›ñD@óD›ñD›ñD›ñD›ñD›ñD›ñD›ñD›ñD›ñD›ñD›ñD›ñDöòD›ñD›ñD›ñD›ñD»òD›ñD›ñD›ñD›ñD›ñD›ñD›ñD›ñD›ñD›ñD›ñD›ñD›ñD€òDUòDpòDpòDUòDUòDUòDUòDñDñDUòDUòDUòDUòDUòDUòDUòDUòDUòDUòDUòDUòDUòDUòDUòDUòDUòDUòDUòDUòDUòDUòDUòDUòDUòDUòDUòDUòDUòDUòDUòDUòDUòDUòDUòDUòDUòDñDstcldtpt{parm#vtable for VTT for -in-construction vtable for typeinfo for typeinfo name for typeinfo fn for non-virtual thunk to virtual thunk to covariant return thunk to java Class for guard variable for reference temporary for hidden alias for _Accum_Fract_Sat operatoroperator java resource decltype (global constructors keyed to global destructors keyed to {lambda({unnamed type#JArray[]ix : ulllullfalsetrue%ld... E±E±EòEÏEÕ E E`üDˆ EðE`EÐEe E… Eõ E@E°EQ EÁ E1 E¡ EEE E E E9E9E9E9E9E9E9E9E9EÀ EüDEµE‰EÎE‰EEEEoüDÜüDPýDxýDéûD9ÿDéûDéûDEE›EñEE@EEE E€EéûD ÿDvþD!EÑ EÀ E¯ E1!E restrict volatile constcomplex imaginary ::* __vector(Ð'EÅ&EÅ&EÅ&EÅ&EÅ&EÅ&EÅ&EÅ&EÅ&EÅ&EÅ&EÅ&EÅ&EÅ&EÅ&EÅ&EÅ&EÅ&EÅ&E`'EØ'EH(E`'EØ'EH(E¸(Eæ(E)E@)E )E*EÅ&EÅ&EÅ&EÅ&E€*EÅ&Eà&E}::{default arg#signed charboolbooleancharbytedoublelong doublefloat__float128unsigned charintunsigned intunsignedlongunsigned long__int128unsigned __int128shortunsigned shortvoidwchar_tlong longunsigned long longdecimal32decimal64decimal128halfchar16_tchar32_t2M 2M >MCMKMPMUMUM\M \M hMhMnM nM yM yM ‡M‡M‹M ˜M¡M¡M¦M ¦M ´M´M½M½MÏMÏMÕMÕMäMäM éMKMñM ¡MûMûM$M$M M  M  M  M " M " M - M- M2 M2 M; M; Mstd::allocatorallocatorstd::basic_stringbasic_stringstd::stringstd::basic_string, std::allocator >std::istreamstd::basic_istream >basic_istreamstd::ostreamstd::basic_ostream >basic_ostreamstd::iostreamstd::basic_iostream >basic_iostreamtMMaà"Mà"Mï"M bù"Mù"M #M s#M $#MF #M ik#M x#M1ª#M o¸#M È#M1ú#M d$M $M2K$MaN&=aS=aa&&ad&an()cm,co~dV/=dadelete[]de*dldelete.dv/eO^=eo^eq==ge>=gt>lS<<=le<=ls<<lt<mI-=mL*=mi-mlmm--nanew[]ne!=ngnt!nwnewoR|=oo||or|pL+=pl+pm->*pp++ps->qu?rM%=rS>>=rm%rs>>sizeof szatalignof az$%M'%M*%M-%M/%M2%M5%M8%M:%M8%M_M=%M@%MC%ME%MH%MJ%MM%MP%MS%M\%M_%Ma%Md%MbMk%Mm%Mp%Mr%Mu%Mx%M{%M}%M€%Mƒ%M†%M‰%MŒ%MMMŽ%M‘%M•%M˜%M›%Mž%M¡%M¤%M¦%M©%M¬%M¯%M²%Mµ%M·%M_%Mº%M½%MÀ%MÃ%MÉ%MÌ%MÏ%Mµ%MÒ%MÕ%M×%MÚ%MÞ%Má%Mä%Mç%Mê%Mí%Mï%Mò%Mõ%Mø%Mú%Mý%M&M&M&Mø%MeM &M &M&M&M&M&M&M&M"&M$&M'&M\M*&M2&M*&M5&M8&MA&M8&M%s: %s: option requires an argument -- %c %s: unrecognised option `-%s' %s: invalid option -- %c option `%s%s' doesn't accept an argument option `%s%s' requires an argument %s: option `%s' is ambiguous %s: unrecognised option `%s' POSIXLY_CORRECT`E`E0`E`Eã_E`E`EÂ`EÔ`EaEaE°`E€`EÂ`E bEˆaEHbEÐaEõaEˆaE bEalnumalphacntrldigitgraphlowerprintpunctspaceupperxdigit +M&+M,+M 2+M8+M>+MD+MWJ+MP+MV+M\+M€PRINTF_EXPONENT_DIGITS(null)(null)NaNInf0†EÊ~EÊ~E†EÊ~E†EÊ~EÊ~EÊ~EÊ~EÀ…E …EÊ~E€…Ec…EÊ~EG…EÊ~EÊ~EÊ~EÊ~EÊ~EÊ~EÊ~EÊ~EÊ~EÊ~EÊ~EÊ~EÊ~EÊ~EÊ~EÊ~E@„EÊ~E„EÊ~EàƒE·ƒEƒEÊ~E`ƒEÊ~EÊ~EgEÊ~EÊ~EÊ~EÊ~EÊ~EÊ~E†EÊ~EÊ~EÊ~EÊ~Eð‚EÊ~EÊ~EÊ~EÊ~EÊ~EÊ~EÊ~EÊ~E%‚EÊ~E€EÀE@EEÅ€E¦€EÀE€EÊ~EVEÊ~EU€Eð‚E€EÊ~EÊ~EÓE@Eð‚EÊ~EÊ~Eð‚EÊ~E@Enfinityan EXŽEXŽEXŽEXŽEXŽEXŽEXŽEXŽE°E°E°E°E°EXŽEXŽEXŽEXŽEXŽEXŽEXŽEXŽEXŽEXŽEXŽEXŽEXŽEXŽEXŽEXŽEXŽEXŽE°EXŽEXŽEXŽEXŽEXŽEXŽEXŽEXŽEXŽEXŽE¢EXŽEðŽE !#&(*-/14@€??ÀÿÿÿßAV瞯Â<InfinityNaN0±EP°EP°E±EU±EÀ?aCoc§‡Ò?³È`‹(ŠÆ?ûyŸPDÓ?ú}-”<2ZGUDÓ?€? A@@à@ @?€à7yÃACnµµ¸“Fõù?éO8M20ùHw‚Z<¿sÝOu¼‰Ø—²Òœ<3§¨Õ#öI9=§ôDý¥2—ŒÏº[%Co¬d(È ð?$@Y@@@ˆÃ@jø@€„.AÐcA„×—AeÍÍA _ BèvH7B¢”mB@åœ0¢BļÖB4&õk C€à7yÃAC Ø…W4vCÈNgmÁ«C=‘`äXáC@Œµx¯DPïâÖäKD’ÕMÏð€D}ABCDEFabcdef0123456789LMNMQMSMVMYM]MLM_MNMbMSMeMYM]M_MiMlM "7YéybÛ= UmÂ*/Eño µ%1ÚBÿsÙµØ(² ÝŠ=!âÇ5çWÉÌŒ°Ñãyžp)pT¢ÅË~mÞ 8 ø¥™ÖÝ¥Î)‚?¥C_åsmá$± "7YéybÛ= UmÂ*/Eño µ%1ÚBÿsÙµØ(² ÝŠ=!âÇ5çWÉÌŒ°Ñãyžp)pT¢ÅË~mÞ 8 ø¥™ÖÝ¥Î)‚?¥C_åsmá$±… MŽ M™ M¡ M¬ M¸ Mþÿÿÿÿÿÿüÿÿ?ÿÿÿÿ  @ €3M?œTL UL¨UL TL¤UL¬UL@ULhULDULlULpULtULxUL€UL˜UL|UL„ULœULUL”UL°UL¸ULŒTLTL´UL¼UL”TL˜TL04MP4MD4M4M€4Ml4MC °@ €  J@ =MˆHÀ‡Hôÿÿÿôÿÿÿ=MàŸKÀŸK=MдH ´Hüÿÿÿüÿÿÿ=M  K KxàMðÈI°ÈI„ÿÿÿ„ÿÿÿ¨>Mà KÀ K| ?MðJJtøÿÿÿ ?MpŸK`ŸK„ÿÿÿ„ÿÿÿ ?Mà¡KÀ¡KtÀ>M ôIpôIŒÿÿÿŒÿÿÿÀ>M ¡K¡Kt=MˆHÀ‡HŒÿÿÿŒÿÿÿ=MàŸKÀŸKx¨>MðÈI°ÈIˆÿÿÿˆÿÿÿ¨>Mà KÀ K ¨>MðÈI°ÈIôÿÿÿôÿÿÿ¨>Mà KÀ KÀ>M ôIpôIüÿÿÿüÿÿÿÀ>M ¡K¡Kp=MдH ´Hÿÿÿÿÿÿ=M  K KtÀ>M ôIpôIŒÿÿÿŒÿÿÿÀ>M ¡K¡KÈZMŒCMÈZMCMÈZM”CMÈZM˜CMÈZMœCMhYM CMHZMÀCMüBMHZMDMüBMhYM@DMHZM€DM<9MHZMÀDM09MHZMEM09MHZM@EMüBMHZM€EMˆ?MHZMÀEMˆ?MHZMFMˆ?MHZM@FMx>MHZM€FM„>MHZMÀFMœ?MHZMGM¤?MHZM@GM¼BMHZM€GM¼BMHZMÀGM¼BMhYMHMHZMHM¼BMZM,HM9MZM0HM9MZM4HM9MZM8HM9MZMMhYMÔIMHZMèIM@AMHZMüIM`AMHZMJMø=MHZM$JMø=MHZM8JMø=MHZMLJMø=MHZM`JMà>MHZMtJM¼BMHZM JMœ?MHZMàJM¤?MHZM KMàMˆZMàLM¨>MÀ>MHZM MM=MHZM`MMÀ>MHZM MMlAMHZM¸MMxAMHZMÐMM„AMHZMèMMAMhYMNMHZMNMà>MhYM@NMhYM€NMHZMÀNMàAMHZMØNMBMHZMðNM BMHZMOM,BMHZM OM@BMHZM€OM`BMHZMàOM€BMHZM@PMŒBMHZM PMà>MHZM´PMø9MHZMÌPMø9MHZMäPMø=MHZMüPMø9MHZMQMø9MHZM4QM¼BMHZMLQM`=MHZMlQM€=MHZMŒQM =MHZM¬QMÀ=MHZMÌQMø9MHZMìQMø9MHZM RMø9MHZM,RMø9MˆZMLRMø9M<=MˆZMlRMø9M<=MˆZM RMø9M>MˆZMàRMø9M>MˆZM SMø9M<=MHZM,SMà@MHZM8SMAMHZMHSM AMHZMXSMø9MHZMhSMø9MHZM€SMø9MHZMÀSMø9MHZMTMø9MHZM@TMø9MHZM€TM¼BMhYMŒTMˆZM˜TMø9MØ>MˆZM¨TMø9MØ>MHZM¸TMø9MHZMÈTMø9MˆZMàTMø9MôBMˆZM UMø9MôBMHZM`UMø9MHZM UMø9MHZMàUM¼BMHZMVMØAMHZM@VMØAMhYM€VMHZM VMø9MHZMàVMø9MHZM WMø9MHZM`WMø9MhYM WMhYM°WMÈZMÀWMÈZMÄWMÈZMÈWMÈZMÌWMÈZMÐWMÈZMÔWMÈZMØWMÈZMÜWMÈZMàWMÈZMäWMÈZMèWMÈZMìWMÈZMðWMÈZMôWMÈZMøWMÈZMüWMÈZMXMDdDeDfDiDsN10__cxxabiv115__forced_unwindEN10__cxxabiv117__class_type_infoEN10__cxxabiv117__pbase_type_infoEN10__cxxabiv119__foreign_exceptionEN10__cxxabiv119__pointer_type_infoEN10__cxxabiv120__si_class_type_infoEN10__cxxabiv121__vmi_class_type_infoEN10__cxxabiv123__fundamental_type_infoEN12_GLOBAL__N_121future_error_categoryEN12_GLOBAL__N_121system_error_categoryEN12_GLOBAL__N_122generic_error_categoryEN9__gnu_cxx13stdio_filebufIcSt11char_traitsIcEEEN9__gnu_cxx13stdio_filebufIwSt11char_traitsIwEEEN9__gnu_cxx18stdio_sync_filebufIcSt11char_traitsIcEEEN9__gnu_cxx18stdio_sync_filebufIwSt11char_traitsIwEEEN9__gnu_cxx20recursive_init_errorEN9__gnu_cxx24__concurrence_lock_errorEN9__gnu_cxx26__concurrence_unlock_errorENSt6locale5facetENSt8ios_base7failureEPDdPDePDfPDiPDsPKDdPKDePKDfPKDiPKDsPKaPKbPKcPKdPKePKfPKhPKiPKjPKlPKmPKsPKtPKvPKwPKxPKyPaPbPcPdPePfPhPiPjPlPmPsPtPvPwPxPySdSiSoSt10bad_typeidSt10ctype_baseSt10money_baseSt10moneypunctIcLb0EESt10moneypunctIcLb1EESt10moneypunctIwLb0EESt10moneypunctIwLb1EESt11__timepunctIcESt11__timepunctIwESt11logic_errorSt11range_errorSt12codecvt_baseSt12ctype_bynameIcESt12ctype_bynameIwESt12domain_errorSt12future_errorSt12length_errorSt12out_of_rangeSt12system_errorSt13bad_exceptionSt13basic_filebufIcSt11char_traitsIcEESt13basic_filebufIwSt11char_traitsIwEESt13basic_fstreamIcSt11char_traitsIcEESt13basic_fstreamIwSt11char_traitsIwEESt13basic_istreamIwSt11char_traitsIwEESt13basic_ostreamIwSt11char_traitsIwEESt13messages_baseSt13runtime_errorSt14basic_ifstreamIcSt11char_traitsIcEESt14basic_ifstreamIwSt11char_traitsIwEESt14basic_iostreamIwSt11char_traitsIwEESt14basic_ofstreamIcSt11char_traitsIcEESt14basic_ofstreamIwSt11char_traitsIwEESt14codecvt_bynameIcciESt14codecvt_bynameIwciESt14collate_bynameIcESt14collate_bynameIwESt14error_categorySt14overflow_errorSt15basic_streambufIcSt11char_traitsIcEESt15basic_streambufIwSt11char_traitsIwEESt15messages_bynameIcESt15messages_bynameIwESt15numpunct_bynameIcESt15numpunct_bynameIwESt15time_get_bynameIcSt19istreambuf_iteratorIcSt11char_traitsIcEEESt15time_get_bynameIwSt19istreambuf_iteratorIwSt11char_traitsIwEEESt15time_put_bynameIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEESt15time_put_bynameIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEESt15underflow_errorSt16__numpunct_cacheIcESt16__numpunct_cacheIwESt16invalid_argumentSt17__timepunct_cacheIcESt17__timepunct_cacheIwESt17bad_function_callSt17moneypunct_bynameIcLb0EESt17moneypunct_bynameIcLb1EESt17moneypunct_bynameIwLb0EESt17moneypunct_bynameIwLb1EESt18__moneypunct_cacheIcLb0EESt18__moneypunct_cacheIcLb1EESt18__moneypunct_cacheIwLb0EESt18__moneypunct_cacheIwLb1EESt21__ctype_abstract_baseIcESt21__ctype_abstract_baseIwESt23__codecvt_abstract_baseIcciESt23__codecvt_abstract_baseIwciESt5ctypeIcESt5ctypeIwESt7codecvtIcciESt7codecvtIwciESt7collateIcESt7collateIwESt7num_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEESt7num_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEESt7num_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEESt7num_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEESt8bad_castSt8ios_baseSt8messagesIcESt8messagesIwESt8numpunctIcESt8numpunctIwESt8time_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEESt8time_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEESt8time_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEESt8time_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEESt9bad_allocSt9basic_iosIcSt11char_traitsIcEESt9basic_iosIwSt11char_traitsIwEESt9exceptionSt9money_getIcSt19istreambuf_iteratorIcSt11char_traitsIcEEESt9money_getIwSt19istreambuf_iteratorIwSt11char_traitsIwEEESt9money_putIcSt19ostreambuf_iteratorIcSt11char_traitsIcEEESt9money_putIwSt19ostreambuf_iteratorIwSt11char_traitsIwEEESt9time_baseSt9type_infoabcdefhijlmstvwxy,]MŒ5M 5MÌ5Mà5MT]M@]Ml]M€]M¬]MÀ]M aM 6ML6M`6MŒ6M 6M46M 6M4aM aMLaM 7MÌ6Mà6ML7M`7M47M 7MtaM`aMŒaM aMÌaMàaM,bMŒ7M 7M@bMlbMÌ7Mà7M€bM¬bM 8M 8ML8M`8MÔbMÀbMìbMŒ8M 8McM,cMÌ8Mà8M@cM(9MðíEÐíE°²K09M0îEîE°HÀHðFÀFpF0F F<9M€îEPîE°HÀHÀF H€FH9MÀîE îE°²KP9MïEÐîE°FÀHÀF HÀF\9MPïE ïE°HÀHðFÀF@FÀF°Fh9M ïEpïE°HÀHðFÀF0F0F@Ft9MðïEÀïE°HÀHH H€9M@ñE ñEF FÀMF€MF`MFŒ9MpñEPñE@FPFÀMF€MF`MF˜9M ñE€ñEF FÀMF€MF`MF¤9M°ùEÐøE°"I %I°+I0.I I01I&I`2I0JJ00Ià(I/I°9MF0F GI JIPPIÐRIEIVIJI@WIRJUIpMI SI¼9MFàF`IJJJ F F FÐMJFÐF@FpFðFFÈ9Mð FÀ F0QJpRJ@ FÀ F@F°UJ€FÐ F`Fp FðF0 FÔ9M@ F Fð«Gà9M F` FàFì9Mà F° FðFø9M€ÚJ`ÚJ:MKàKÐdG àFPFÐ?FP@F @F@F@?F0?FÀ=MPøH0øH€BFðBF0AF@BFÀBFBFpBF°AF AFà=MIðIì=Mð IÐ Iø=M`I@I0KF>M IðIÐLF>MpI@I@PFPFàOF OF°QF€QFðQFÀQF$>MÀIIUFTFRFSFàRF°RFRF`RFÀUF€UFVFàUF0>M@II0KF<>MI`IPKFH>MIàI0KFT>MI`I0KF`>MàI°IÐLFl>M II0LFx>MMð`I`I GI JIPPIÐRIEIVIJI@WIRJUIpMI SIx>MrI`pIpøÿÿÿ>M0ŸK ŸKˆÿÿÿˆÿÿÿ>M` K@ K|œ>M`„IÀ‚Itøÿÿÿœ>MPŸK@ŸK„ÿÿÿ„ÿÿÿœ>M  K€ K¨>MðÈI°ÈIøÿÿÿøÿÿÿ¨>Mà KÀ KÀ>M ôIpôIüÿÿÿüÿÿÿÀ>M ¡K¡Kà>M€ùI`ùIÐLFtì>MJJŒÿÿÿŒÿÿÿì>M`¡K@¡Kxø>MðJpJˆÿÿÿˆÿÿÿø>M ¡K€¡K ?MðJJøÿÿÿ ?MpŸK`ŸKôÿÿÿôÿÿÿ ?Mà¡KÀ¡Kp@?MP)Jà'Jÿÿÿÿÿÿ@?M ¢K¢KtL?M°7J@6JŒÿÿÿŒÿÿÿL?M`¢K@¢KX?MPJp>J`^F`]FÀ]F€]F°]Fp_F ]Fp?MðAJ@AJ0`FPbF eF|?M@FJEJÀeFàgF°jFˆ?M GJ€GJ°²K°²KÀMF€MF`MF?MHJàGJÐLFœ?M°OJ€OJ`IJJJ@LJ`LJ@IJÐMJ KJ0NJ0JJ MJ KJàLJ¤?MWJ`WJ0QJpRJ TJ@TJQJ°UJSJVJRJ€UJ€SJÀTJ¬?MðYJÀYJàeG°eGðeG¸?M@\J\JgGÐfGgGÄ?M0_J_JðgGhG gGPgG€gGÐ?M bJðaJpiG€iG hGÐhGiGÜ?MÐbJ bJ°lGàjG@jG nG rG€kGè?M€cJPcJ`‡Gp…GÀ„G ‰GPG †Gô?M0dJdJ¤G@MàdJ°dJ@§G @M€eJPeJÐLF@MmJàlJ$@MPtJ0tJ0@MpuJ@uJ0KF<@MyJÐxJH@M°|J€|JT@M }Jð|Jð«G`@M0€J€J0;F ;Fà9Fð:Fp;F@;F ;F`:FP:Fl@M`ƒJ0ƒJ =F>FPFÐ?FP@F @F@F@?F0?F„@MÀ‰J‰J€BFðBF0AF@BFÀBFBFpBF°AF AF@MP“J0“Jœ@M`J@J¨@MЦJ°¦J´@M@°J °JÀ@Mp±J@±J°²K°²K°²K°²K°²K°²K°²K°²K°²K°²K°²K°²Kà@MÀ±J±J°²K°²K°²K°²K°²K°²K°²K°²K°²K°²K°²K°²KAM²Jà±J°²K°²K°²K°²K°²K°²K°²K AM`²J0²J°²K°²K°²K°²K°²K°²K°²K@AM ¹J€¹J@PFPFàOF OF°QF€QFðQFÀQF`AM¼Jà»JUFTFRFSFàRF°RFRF`RFÀUF€UFVFàUFlAM€åJ`åJ ]F°\F]FÐ\Fð\F@]Fà\FxAM çJçJ`^F`]FÀ]F€]F°]Fp_F ]F„AMêJPéJ0`FPbF eFAMpíJÀìJÀeFàgF°jFœAM ïJðîJÀ¸F°ÁFPÂF`ÁFÂF ÂFðÂFð¿F½F€¾F@¸F¨AMÐïJ ïJ GÐGpG€G GÀGGGG€G G´AM€ðJPðJà?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~€‚ƒ„…†‡ˆ‰Š‹ŒŽ‘’“”•–—˜™š›œžŸ ¡¢£¤¥¦§¨©ª«¬­®¯°±²³´µ¶·¸fische.exeSDL_AddTimerSDL_AllocRWSDL_AudioDriverNameSDL_AudioInitSDL_AudioQuitSDL_BuildAudioCVTSDL_CDCloseSDL_CDEjectSDL_CDNameSDL_CDNumDrivesSDL_CDOpenSDL_CDPauseSDL_CDPlaySDL_CDPlayTracksSDL_CDResumeSDL_CDStatusSDL_CDStopSDL_ClearErrorSDL_CloseAudioSDL_ConvertAudioSDL_ConvertSurfaceSDL_CreateCursorSDL_CreateMutexSDL_CreateRGBSurfaceSDL_CreateRGBSurfaceFromSDL_CreateSemaphoreSDL_CreateThreadSDL_CreateYUVOverlaySDL_DelaySDL_DestroyMutexSDL_DestroySemaphoreSDL_DisplayFormatSDL_DisplayFormatAlphaSDL_DisplayYUVOverlaySDL_EnableKeyRepeatSDL_EnableUNICODESDL_ErrorSDL_EventStateSDL_FillRectSDL_FlipSDL_FreeCursorSDL_FreeRWSDL_FreeSurfaceSDL_FreeYUVOverlaySDL_GL_GetAttributeSDL_GL_GetProcAddressSDL_GL_LoadLibrarySDL_GL_LockSDL_GL_SetAttributeSDL_GL_SwapBuffersSDL_GL_UnlockSDL_GL_UpdateRectsSDL_GetAppStateSDL_GetAudioStatusSDL_GetClipRectSDL_GetCursorSDL_GetErrorSDL_GetEventFilterSDL_GetKeyNameSDL_GetKeyRepeatSDL_GetKeyStateSDL_GetModStateSDL_GetMouseStateSDL_GetRGBSDL_GetRGBASDL_GetRelativeMouseStateSDL_GetThreadIDSDL_GetTicksSDL_GetVideoInfoSDL_GetVideoSurfaceSDL_GetWMInfoSDL_Has3DNowSDL_Has3DNowExtSDL_HasAltiVecSDL_HasMMXSDL_HasMMXExtSDL_HasRDTSCSDL_HasSSESDL_HasSSE2SDL_InitSDL_InitSubSystemSDL_JoystickCloseSDL_JoystickEventStateSDL_JoystickGetAxisSDL_JoystickGetBallSDL_JoystickGetButtonSDL_JoystickGetHatSDL_JoystickIndexSDL_JoystickNameSDL_JoystickNumAxesSDL_JoystickNumBallsSDL_JoystickNumButtonsSDL_JoystickNumHatsSDL_JoystickOpenSDL_JoystickOpenedSDL_JoystickUpdateSDL_KillThreadSDL_Linked_VersionSDL_ListModesSDL_LockAudioSDL_LockSurfaceSDL_LockYUVOverlaySDL_LowerBlitSDL_MapRGBSDL_MapRGBASDL_NumJoysticksSDL_OpenAudioSDL_PauseAudioSDL_PeepEventsSDL_PollEventSDL_PumpEventsSDL_PushEventSDL_QuitSDL_QuitSubSystemSDL_RWFromConstMemSDL_RWFromFPSDL_RWFromFileSDL_RWFromMemSDL_ReadBE16SDL_ReadBE32SDL_ReadBE64SDL_ReadLE16SDL_ReadLE32SDL_ReadLE64SDL_RegisterAppSDL_RemoveTimerSDL_SemPostSDL_SemTryWaitSDL_SemValueSDL_SemWaitSDL_SemWaitTimeoutSDL_SetAlphaSDL_SetClipRectSDL_SetColorKeySDL_SetColorsSDL_SetCursorSDL_SetErrorSDL_SetEventFilterSDL_SetModStateSDL_SetModuleHandleSDL_SetPaletteSDL_SetTimerSDL_SetVideoModeSDL_ShowCursorSDL_SoftStretchSDL_ThreadIDSDL_UnlockAudioSDL_UnlockSurfaceSDL_UnlockYUVOverlaySDL_UnregisterAppSDL_UpdateRectSDL_UpdateRectsSDL_UpperBlitSDL_VideoDriverNameSDL_VideoInitSDL_VideoModeOKSDL_VideoQuitSDL_WM_GetCaptionSDL_WM_GrabInputSDL_WM_IconifyWindowSDL_WM_SetCaptionSDL_WM_SetIconSDL_WM_ToggleFullScreenSDL_WaitEventSDL_WaitThreadSDL_WarpMouseSDL_WasInitSDL_WriteBE16SDL_WriteBE32SDL_WriteBE64SDL_WriteLE16SDL_WriteLE32SDL_WriteLE64SDL_getenvSDL_iconvSDL_iconv_closeSDL_iconv_openSDL_iconv_stringSDL_memcmpSDL_mutexPSDL_mutexVSDL_putenvSDL_strlcatSDL_strlcpySDL_strtod´ ¬8ð$Ä 9%(! :d%"4:L&," ;h&#´;Ì'œ#Ì<Ø'¬$=è(,):)J)^)h)|)–)¬)À)Ð)Ü)ì)***4*N*d*v*†*–*ª*À*Ô*æ*ü* ++*+:+H+V+f+z+’+ª+¸+Æ+Ð+â+ö+ ,,6,F,X,n,‚,”,¦,¶,Ä,Ò,î,--4-H-`-p-~-Š- -º-Ö-â-ò-. .0.B.R.f.„.Œ.ž.ª.´.Â.Ð.â.ò.//*/4/>/H/P/Z/d/t/„/”/¤/²/Ä/Î/à/ê/ú/000 0,060@0L0X0d0l0v0~0†00–0ž0¨0²0º0Â0Ê0Ô0Ü0ä0ì0ô0þ0111"1*161D1L1V1`1j1t1~1†1Ž1–1ž1¨1²1¼1È1Ò1Ü1â1ì1ô1ü1222$2.2:2F2P2Z2d2n2x2‚2Š2–2¢2¬2¶2Â2Ì2Ø2â2ì2ü23"383F3X3r3„3’3¢3¾3Ð3â3ò344$404H4X4h4t4„4Œ4 4¶4Ä4Ø4ò4555*5>5P5`5r5~5Š5˜5®5À5Ô5æ566"646@6R6d6p6‚66 6¬6¼6È6Þ6ê6ü6 77,787D7X7l7~77 7®7Ä7Ö7è7ø788&868N8\8t8Ž8,):)J)^)h)|)–)¬)À)Ð)Ü)ì)***4*N*d*v*†*–*ª*À*Ô*æ*ü* ++*+:+H+V+f+z+’+ª+¸+Æ+Ð+â+ö+ ,,6,F,X,n,‚,”,¦,¶,Ä,Ò,î,--4-H-`-p-~-Š- -º-Ö-â-ò-. .0.B.R.f.„.Œ.ž.ª.´.Â.Ð.â.ò.//*/4/>/H/P/Z/d/t/„/”/¤/²/Ä/Î/à/ê/ú/000 0,060@0L0X0d0l0v0~0†00–0ž0¨0²0º0Â0Ê0Ô0Ü0ä0ì0ô0þ0111"1*161D1L1V1`1j1t1~1†1Ž1–1ž1¨1²1¼1È1Ò1Ü1â1ì1ô1ü1222$2.2:2F2P2Z2d2n2x2‚2Š2–2¢2¬2¶2Â2Ì2Ø2â2ì2ü23"383F3X3r3„3’3¢3¾3Ð3â3ò344$404H4X4h4t4„4Œ4 4¶4Ä4Ø4ò4555*5>5P5`5r5~5Š5˜5®5À5Ô5æ566"646@6R6d6p6‚66 6¬6¼6È6Þ6ê6ü6 77,787D7X7l7~77 7®7Ä7Ö7è7ø788&868N8\8t8Ž8‚RegCloseKeyRegOpenKeyExA§RegQueryValueExA BitBltChoosePixelFormat!CreateCompatibleBitmap"CreateCompatibleDC'CreateDIBSection8CreatePaletteFDeleteDCIDeleteObjectJDescribePixelFormat“GetDIBits”GetDeviceCaps•GetDeviceGammaRampËGetSystemPaletteEntriesÌGetSystemPaletteUseRealizePaletteSelectObjectSelectPalette'SetDIBColorTable*SetDeviceGammaRamp7SetPaletteEntries9SetPixelFormat@SetSystemPaletteUseRSwapBuffersVUnrealizeObject&CloseHandle@CreateEventADCreateFileAGCreateFileWPCreateMutexAXCreateSemaphoreAkDeleteCriticalSection~EnterCriticalSectionœExitProcessÖFreeLibraryÜGetACPíGetCommandLineAGetCurrentThreadGetCurrentThreadId*GetDriveTypeA/GetEnvironmentVariableAEGetLastErrorGGetLocaleInfoAOGetModuleFileNameAQGetModuleHandleAlGetProcAddress‚GetStartupInfoA±GetVersionExAÀGlobalAllocÇGlobalFreeìInitializeCriticalSectionðInterlockedDecrementñInterlockedExchangeôInterlockedIncrementIsDBCSLeadByteEx LeaveCriticalSection LoadLibraryALocalAllocLocalFree0MultiByteToWideCharUQueryPerformanceCounterVQueryPerformanceFrequencyhReadFileuReleaseMutexvReleaseSemaphore·SetEnvironmentVariableA¹SetErrorMode¿SetFilePointerÉSetLastErrorßSetThreadPriorityãSetUnhandledExceptionFilterïSleepøTerminateThreadûTlsAllocüTlsFreeýTlsGetValueþTlsSetValueVirtualProtect!VirtualQuery*WaitForSingleObject.WideCharToMultiByte;WriteFile_fdopen _fstat3_lseek@_readP_strdupm_write7__getmainargs=__lc_codepageA__mb_cur_maxM__p__environO__p__fmodec__set_app_type‰_assert_beginthreadex“_cexit³_endthreadex¶_errnoÈ_filbufÕ_flsbuf _iob _isctype_onexitˆ_pctypeª_setmodeÃ_stricmp_winmajorGabortNatexitOatofPatoiScallocWcos\exit_fclosebfflushcfgetchfloorjfopenkfprintflfputcmfputspfreadqfreerfreopenufseekwftellyfwrite}getenvgetwc’iswctypeŸlocaleconv¢log10¤malloc¨memchrªmemcpy«memmove¬memsetµputwc·qsort¸raise¹randºrealloc»remove¿setbufÀsetlocaleÁsetvbufÂsignalÃsinÅsprintfÆsqrtÇsrandÈsscanfÊstrchrËstrcmpÌstrcollÍstrcpyÏstrerrorÐstrftimeÑstrlenÓstrncmpÔstrncpyÖstrrchrØstrstrÝstrxfrmãtimeètowlowerétowupperêungetcëungetwcìvfprintfõwcscolløwcsftimeùwcslenwcsxfrm%CoInitializeHCoUninitializeAdjustWindowRectAdjustWindowRectEx BeginPaintCallWindowProcAChangeDisplaySettingsA;ClientToScreen<ClipCursorKCreateCursorTCreateIconFromResourceExZCreateWindowExA†DefWindowProcADestroyCursorŽDestroyIconDestroyWindow•DispatchMessageA¸EndPaintÂEnumDisplaySettingsAãGetClassInfoAìGetClientRectõGetCursor÷GetCursorPosøGetDCúGetDesktopWindowGetForegroundWindow GetKeyState GetKeyboardLayoutGetKeyboardLayoutNameAGetKeyboardStateGetMenu%GetMessageA0GetParentFGetSystemMetricsVGetWindowLongA\GetWindowRectrInvalidateRectŽIsZoomedKillTimer›LoadImageALoadKeyboardLayoutA«MapVirtualKeyA¬MapVirtualKeyExA¯MapWindowPoints¾MsgWaitForMultipleObjectsÐPeekMessageAÒPostMessageAÔPostQuitMessageÚPtInRectßRegisterClassAíReleaseCaptureîReleaseDCôScreenToClientSetCaptureSetClassLongA SetCursorSetCursorPosSetFocusSetForegroundWindow3SetTimer9SetWindowLongA<SetWindowPos>SetWindowTextAIShowWindowVToAsciiExWToUnicode`TranslateMessagegUnregisterClassA{WindowFromPointjoyGetDevCapsAjoyGetNumDevsjoyGetPosEx+mciGetErrorStringA/mciSendCommandAtimeBeginPeriod‘timeEndPeriod”timeGetTime•timeKillEvent–timeSetEvent¨waveOutClose«waveOutGetErrorTextA´waveOutOpen¶waveOutPrepareHeader¼waveOutUnprepareHeader½waveOutWrite   ADVAPI32.DLL                        GDI32.dll( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( ( KERNEL32.dll< < < < < < msvcrt.dllP P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P P msvcrt.dlld d OLE32.dllx x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x x USER32.dllŒ Œ Œ Œ Œ Œ Œ Œ Œ Œ Œ Œ Œ Œ Œ Œ WINMM.DLL`EA EAPNPNàuM@N¼00(0O0t0|0ƒ0˜0§0Æ0Ï0ò0÷0 11O1o1÷23333Y3ƒ3Š3”33Á3Þ3å3ï3ø34y4…4É4í4k5y5¢5©5°5…6Œ6“6 6ì6H7O7V7¢8Û8)939H9X9¸9×9o:®: ;;\;ˆ;’;Ê;<#=*=6=•=œ=£=°=ü=I>m>–>ž>¦>¯>¸>À>Ð>ß>é>î>?? ? ”e0 22)2B2I2W2]2m2s2¨2±2Õ2ò2ù23 303M3T3^3g3‹33¦3Ê3ç3î3ø34%4B4I4S4\4€44¤4®4·4Û4ø4ÿ4 5565S5Z5d5m5‘5®5µ5¿5È5ì5 666#6G6d6k6u6~6¢6¿6Æ6Ð6Ù6ý67!7+747X7u7|7†77³7Ð7×7á7ê78+828<8E8i8†88—8 8Ä8á8è8ò8û89<9C9M9V9z9—9ž9¨9±9Õ9ò9ù9: :0:M:T:^:g:‹:¨:¯:¹:Â:æ:; ;;;A;^;e;o;x;œ;¹;À;Ê;Ó;÷;<<%<.6>=>G>P>t>‘>˜>¢>«>Ï>ì>ó>ý>?*?G?N?X?a?…?¢?©?³?¼?à?ý?0Ð000;0X0_0i0r0–0³0º0Ä0Í0ñ0111(1L1i1p1z1ƒ1§1Ä1Ë1Õ1Þ122&20292]2z22‹2”2¸2Õ2Ü2æ2ï230373A3J3n3Ü9 :::$:H:s:z:Š:Ÿ:L;S;s;Œ;“;;¦;Â;ü;<:<ƒ<·<¾<È<Ñ<õ<.=5=?=H=l=‰==š=£=Ç=ò=ù= >> ??8?[?b?l?x?›?â?ç?@´A0H0h00ˆ0’0›0·0ò0÷0;1X1_1i1r1–1´1Ö1á1ñ12S2e2l2…2¿2ä2ë2û2u3 3§3±3º3Ö3%4P4W4a4j4†4Õ4555565†5p6w666¦6Ä6Ï6Á7Ë7Õ7ç78u8ƒ8ª8°8¾8Ö8ö8<9S9t9z9”9ž9¨9S:Z:z:ó:j;á;¸<=æ=A>í>¶?Phš0*1«1C2º2R3Ã3Í3×3á34(4.4=4C4X4^4ˆ4¢4Ó4b5Ô559”9ó9r:Ò:¸;.>I>>±>Ò>I?c?£?­?·?Ô?÷?þ?`Ì00K0w0Ó0á011141T1›1°1Ñ1×1ñ1û12°2·2×2 4<4b4z4’4ª4Â4Ú4ò4 5b5i5}5†5¶5Ý5ç5ñ5û586B6H6W6]6r6x6¢6¼6É6q9Ï9Ù9ô9H:\:}:Ö:;Û;ã;<<#<6b>…>Œ>“> >ý>I?U?i?“?š?¤?­?Ñ?î?õ?ÿ?p´0$0‰0•0©0&1-1=1ž1¥1 2#2U2\2c2p2Æ2Ç3Î3ú3é4õ4 5Æ5Í5Ý5ò56B6e6l6ÿ6777=7Q7X7t7{7œ7£7Ç7Î7ò7ù78$8E8L8m8t8•8œ8½8Ä8æ8í89989?9c9j9¡9¨9Î9Ø9:3:]:d:k:‡:ç:< <<°<å<ò<ú<=9>E>É?€tI0c0Ú2 33\3z3„3ì3 44~4§4#5L5Í5é5û5Y6a6w6­6á6787>7|7¤7Ù7…8®8Ù8ß8 9F99Ø9 :A:l:¯:»:L;W;;§;÷;(c>u>…>¨>¥?»?Í?à?  0.3J3V3l3Š3Û3'44Î45D5‡5È56_6†6Œ6ô67"727B7R7d7t7„7˜7²7Ã7Ù7ò78828d8t8¿9Ù9I:O::•:; ;§;Ò;Ú;K>C>J>T>]>y>Œ>Í>$?R?‚?Ø?ß?é?ò?°œ0=0·0Ó0Ú0ò01[1Â1Ý1u4Ù4å4ù4o5Ð5}6ç6î6ø677i7u7€7†7™78 8_8f8v8Þ8ç8ó8B9I9S9\9€9½9Ä9Î9×9û9•:œ:¯:Ä:þ;<9u>|>ƒ>”>¡>®>»>È>Õ>è>%?+?1?B?V?d?u?‹?À000$0-0Ò01,1[1Š1µ1Þ12"2/2d2{2€2“2¦2¬2²2¸2¿2Ó2æ2ì2þ23 3#353Z3a3s3…3ª3±3Ã3ø3ÿ34y4—4 4¹4Å4à455—5¢5ª5¸5Á5Ç5Ñ5ç56/6<6H6j6„6›6´6Ã6Í6ç6ì6>7G7U7l7”7¤7Æ7Í7â7é788,8;8N8U8^8m8|88œ8¥8ª8º8Í8Ô8Ù8é8ü89 99'9,9<9M9g9r9w9‡9˜9½9â9ð9;‡;¯;<7<Ø<è<û>">3>=>b>z>ƒ>›>º>Ê>â>ô>???'?B?T?^?g?š?¿?ÐHÀ0ß1å1ò2/3P3°3Í3Þ3ï34n4Þ4N5½5ý526h6˜6Í6m7888{89)9/999G9a9z9P;à 0/1ê3Õ45,5Š<%>¼>ð<á1[2x2©2Õ2ë2"3ø3”4³8P9V9g9m9a;µ<É?°?Ä?î?è&0:0f0z00ˆ0–0ž0¦0®0¶0¾0Æ0Î0Ö0Þ0æ0î0þ01111&1.161>1F1N1V1Y6u6|6ƒ6‘6™6¡6©6±6¹6Á6É6Ñ6Ù6á6é6ö6þ67777&7.767>7F7N7ù788#80868>8K8X8^8f8s8€8†8Ž8›8¨8®8¶8Ã8Ð8Ö8Þ8ë8ø8þ899!9)9-93979=9A9G9K9Q9U9[9_9w99‹9•9Ÿ9©9³9Å9ü9::‚::8Ø3ß3å8ë;ò;W=^= =§=>>/>6>q>x>Ð>×>C?J?_?f?¡?¨? \ 00W0^0s0z01 1!1(1z11ç1î12 2•2œ2±2¸2 33ß5æ56 66&6ž:ô: ;;›;<)<<í˜> ?0 ‘0\2¾35ò8m9é9t:ã:7;A;µ;L>!>(>1>8>A>H>Q>X>a>h>q>x>ƒ>‰>”>¡>¨>±>¸>Á>Ì>Ò>Ý>ã>î>ô>????"?-?3?>?D?O?U?f?q?|?‡?–?¡?¬?·?Æ?Ñ?×?â?è?ó?ù?@ü000"0-0W0a0h0q0x001¥1­1µ1Ñ1Ù1á1é12ï45 5i5w5€5¨5³5Â5Ð5à5è5í5ú5ÿ566$6Y6c6x6‡6—66´6È6Ò67&757D7S7b7n7›7¨7´7Ë7ï7Ù8÷899$929:9D9N9W9~9…9¹9Ä9Ï9ó9Y::§:´:À:Ú:ê:ý:;8;D;y<‹<–<Ï<="=-=A=K=c=ˆ=£=­=Ò=ö= >>J>\>b>o>â>÷>þ> ???B?W?^?o?v?µ?É?Ð?PÄ00§0¯0·0¿0ï0ø01+3J3T3]3t3{3¤3´3»3è3‰4‘4š4ÿ4 5L5j56,666O6j6†6˜6¿6×6Ý6777,767S7X7q7O8e8k8v8‚8‡8ó8 99%9*9A:R:e:~:’:œ:º:Ã:Ü:í:ý:+;K;k;è;'<8<@‘>˜>Ä>?H??©?`d0«0Î0X11¶1;2g2x2¡2Ö2é2ú2ž345§5k6}6Ž6¡6É6Ü6ô6b7µ7C8w9—9ª9Ç9ó9::*:C:X;„;§;¹;î;i=ˆ>“>¢>pX11"1«1a2¡2¨697K7t7‘7²7b8Š8£8¶8ù89x:¼:;;?;J;g;Ž;{<ƒ<ˆ< ==+=‰=Á=×=ñ=>??»?€ìU0o0‰0£0½0×0ñ0 1%1?1Y1s11§1Á1Û1õ12)2C2]2w2‘2«2Å2ß2ù23 373A3®3î3ö344 5n5»576Z6a6®6ß657Y78<8\8–88º8Á8Þ8å89 9&9-9J9Q9n9u9’9™9¶9½9Ú9á9þ9:":):F:M:j:q:Ž:•:²:¹:Ö:Ý:ú:;;%;B;I;f;m;Š;‘;½;Õ;î;õ;<<6<=•>¨>ç>°?Þ?Œ]0Ï1ë12~2š2Â2 33'3€3Æ3×3á3í3‹4Û78€8®809^9’9;:v:·:À:÷: ;;0;C;j;z;”;¡;Ø;Ý;æ; ]>û? HX0a0i0n00‡0“0¤0¶0È0Î0ç011%1G12*3ð4·7Ó7<8¢8È8ù8ã9:J=o=ê=U>°ðH01½4Ä4Ý4ê4ð45 5"5+575=5g5ˆ5—5ž5¬5Á5×5æ5í5666:6@6R6[6i6‡6‘6›6¹6Ã6Ò6Ü6æ6ð6ú6777"7,767c7m7w7‡7–7¢7º7Â7á7í78"8O8a8~8£8ª8Í8Ü8 9)9A9a9Ž9¤9«9Â9ë9ú9:W:^:e:l:™:³:Ù:ã:ò:;8;C;[;d;n<’<¾<Æ<Ù<ù<=0=F=m==Â=>5>H>W>‹>‘>Ÿ>¨>?;?[?i?‡?¹?Àˆ\1ø2;4!5m5z5‡5”5£5(6Ù6Ú7 828999m9*:B::ú: ;»;Ø;ö;&<;9>Q>q>‰>§>­>³>¹>Å>Ù>ã>? ?4?>?ª?ß?ÿ?д'0U0)1P1y1ª1+2A2Q2e2‡2§2½2Í2á2¸3Ç3ý3.454A4I4U4Z4z4§4½4È4Ð4ó4þ45&5E5`5s5|5„5˜5§5²5Ä5Ï5Ô5ä5è56'656H6Q6e6s66Š6Û6â6û6A7V7\7w7Ž7©7±7É7Ú7à7[8Þ8ñ859H9¼9Ù9:;;Å;ú;e<Þ<ñ7Y7j7s7|7…7Ž7–7¡7·7½7G8T8~8 8¼8Ì8Ú8ô89$9/9H9·: ;’;û;Re> >¸>¡0¨0¯0¶0½0Ë0Ò0õ0ü0 1111&101:1D1N1X1b1l1v1€1Š1”1ž1¨1²1¼1Â1Æ1Ì1Ð1Ö1Ú1à1ä1ê1î1ø1±2<3—3²3è3 4Ù4“5669Ç:ð:U;ˆ;÷;%å>ø> (a1o1~1¸12w2‰2“2Ÿ2±2»2á233ú3Ñ4à4ê4ú4555*505=5K5Y5á5è5ï5ö5ý5666 6'6.656<6C6J6Q6X6_6f6m6w66‹6•6Ÿ6©6³6½6Ç6Ñ6Û6å6ï6ù67 7 7777!7'7+71757?7×7<879Î9Â:å;ö;<=<<Õ<Ù<$=(=1===P=›=Ÿ=Õ=Ù=>>)>7>>>o>s>£>§>Ë>Ï>Ú>Þ>é>í>ø>ü>? ???%?)?4?8?C?G?R?V?b?f?q?u?€?„?’?–?¢?¦?±?µ?Â?Æ?Ò?Ö?â?æ?ò?ö?0|0000"0&02060T0X0c0g0„0ˆ0“0—0«0ï01Ç1ï12+2o2š2N3v3Œ3N4Z5·5¯6 9$9œ9³9:8:I:^:s:ˆ::È:;Ð;y<Á<ü=$>¸>¿>Æ>D?ƒ? ?±?â?@(0E0o0c12Ô3í364C4X4i4„4ž4®4×4ã4555;5R5Ó5þ56n66ä6ö6`7u7¯7Ç7Ø9a::©:À:q;–;›; ;¨;­;Î;Ú;>>#>\>x>¨>º>Ò>6?œ?à?P`I0Z0Š0š0­0ã0ë01¨1Ì1î12W2n2‡22—2¡2­2³2Ï2*3S3¤3¶3È3Ê4Ñ4Ø4æ4í4ô4û45%535o5y5ƒ5#7Y7y7‘7`ÀW3d3l3r99¡9²9È9Ò9æ9ë9:O:i:x:~:Š:±:¾:ë:Y;e;Ê;â;…<‹<‘<—<œ<¢<°<À<=Š=²=×=è=ð=ú=>>>>2>9>?>j>r>|>‚>“>º>Ë>Û>ã>í>?"?T?X?`?d?j?n?t?x?~?‚?ˆ?Œ?’?–?œ? ?¦?ª?°?´?º?¾?Ä?È?Î?Ò?Ø?Ü?â?æ?ì?ð?ö?ú?pØ00 00000"0(0,02060<0@0F0J0P0T0Z0^0d0h0n0r0x0|0‚0†0Œ00–0š0 0¤0ª0®0´0¸0¾0Â0È0Ì0Ò0Ö0Ü0à0æ0ê0ð0ô0ú0þ0111111"1&1,10161:1@1D1J1N1T1X1^1b1h1l1r1v1|1€1†1Š11”1š1ž1¤1¨1®1²1¸1¼1Â1Æ1Ì1Ð1Ö1Ú1à1ä1ê1î1ô1ø1þ122 2222 2&2*20242:2>2D2H2N2R2X2\2b2f2l2p2v2z2€2„2Š2Ž2”2˜2ž2¢2¨2¬2²2¶2¼2À2Æ2Ê2Ð2Ô2Ú2Þ2ä2è2î2ò2ø2ü233 3333 3$3*3.34383>3B3H3L3R3V3\3`3f3j3p3t3z3~3„3ˆ3Ž3’3˜3œ3¢3¦3¬3°3¶3º3À3Ä3Ê3Î3Ô3Ø3Þ3â3è3ì3ò3ö3ü344 44444$4(4.42484<4B4F4L4P4V4Z4`4d4j4n4t4x4~4‚4ˆ4Œ4’4–4œ4 4¦4ª4°4´4º4¾4Ä4È4Î4Ò4Ø4Ü4â4æ4ì4ð4ö4ú455 55555"5(5,52565<5@5F5J5P5T5Z5^5d5h5n5r5x5|5‚5†5Œ55–5š5 5¤5ª5®5´5¸5¾5Â5È5Ì5Ò5Ö5Ü5à5æ5ê5ð5ô5ú5þ5666666"6&6,60666:6@6D6J6N6T6X6^6b6h6l6r6v6|6€6†6Š66”6š6ž6¤6¨6®6²6¸6¼6Â6Æ6Ì6Ð6Ö6Ú6à6ä6ê6î6ô6ø6þ677 7777 7&7*70747:7>7D7H7N7R7X7\7b7f7l7p7v7z7€7„7Š7Ž7”7˜7ž7¢7¨7¬7²7¶7¼7À7Æ7Ê7Ð7Ô7Ú7Þ7ä7è7î7ò7ø7ü788 8888 8$8*8.84888>8B8H8L8R8V8c8r8‚8“8£8º8(919:9C9L9U9]999¦9À9Í9Ö9Ý9æ9ø9: :I:P:f:p:…::¨:¯:Ý:ã:ê:ñ:ý:;;æ;ö;<"<4E>M>S>œ>Õ>â>À$ý344¢6©6#8 <<ß=þ=y>·?Ô?þ?Ðp00C0t0ê01[1†1­1Ä1 2‚4å435Q55¸5É5â5ø5636÷6A7[7g7¹7Ñ7Ò9Ê:Ù:<,<3<Ð<=K=d=n=z=¬=>h>‰>ª>ñ>#?9?O?Ã?ã?àX0&1ñ1¥;´;å;ì;·<É<Ó<÷<=="=,=‹=’=™= =§=®=µ=¿=Ñ>?#?.?9?@?t?x??? ?Æ?Ê?æ?ê?ò?ö?ðl0000"0&02060B0F0R0V0b0f0{1ó1T3Ü3P4a4 5¾6Ï6ð6*7x78 8888%8,868›:;”;<§=Ã=Ù=ï=š?Â?É?Ð?×?Þ?è?(™0¸0Á0ó0ÿ0Y1q1>2É2Ð2×2Þ2å2ï2É3á3 ”|3ï3k4å45<5G5”5)6/6j6p6Œ6Ÿ6Å6à6W7~7®7´78)8G8S8Y8s8y8Œ8’8¥8«8Ã8É8å8ø8C9N9::/:7:?:¤:°:9;œ;¤;<€<©<»<ö< ==)=8=A=„=Š=Ô=Ý=ù=ÿ=Â>î>ö>???&?0œb1f1k1s1{1Ž1Â1Æ1Ò1Ö1â1æ1ò1ö1C2V2z22Ü2Ú3ü3/4ù4”5¨5¼5â7838ƒ8‡88‘8—8›8¡8¥8«8¯8µ8¹8¿8Ã8É8Í8Ó8×8Ý8á8÷8939>9I9ˆ9•9¤9±9¹9:Z:Ï:³=>X>t>>¬>È>ä>S?s?†?@Xú2+303!4\4•4“5¢5´5ê5þ56"6/6ˆ6“6™6#7~7®7è7„8ª8Ä8Ý889K9_9¡9ú9 :¨:ç:)2>7>C>V>c>g>r>v>‚>†>’>–>¢>¦>²>¶>ä>'?,?^?„?`H030z0Š0²0%141;1S11>2K2a2m2…2\3š3ã3ò3ù34I4Ž4š4´4ú45J5e5é5_66±67@7Z7c7Ÿ7¿7Ò7ì718o8 8Ã8í8ô899&9?9q9{9”9¥9°9Å9*:6:Õ:ï: ;';A;;¦;¹;Û;ø;<7 >>>(>2><>F>P>Z>d>n>x>‚>Œ>–> >ª>´>¾>È>Ò>Ü>æ>ð>ú>???"?,?6?@?J?T?^?h?r?|?†??š?¤?®?¸?Â?Ì?Ö?à?ê?ô?þ?pÄ000&000:0D0N0X0b0l0v0€0Š0”0ž0¨0²0¼0Æ0Ð0Ú0ä0ü0111%1/1;1i1Š1¥1ª1µ1Ò1Ø1:2X2h2y2Š22¡2¨2Ü2ê23)3M3m3á3í344*4?4W4m4€4“4¬4Å4Þ4÷45)5B5i5z55§5½5Ë5Ú5î5ô566696J6k<¿<2= =ê=/>¦>Ç>b??¸?ä?€T 0Q0™0â0*1k1¬1Ã1Ë1Ö1é3C4ã5%6.959<9C9n9u9|9ƒ9¤9«9²9¿9m:³;Ü;ã;4=;=E=L=“=å>þ>C? A2T2b2w2‚2#3U3c3•34g5—5  Ì3Û3ç3ô3N4ž5â6>9†:×;ª=.?° Ü1¦=Ð(©0¸0Ç0×0N1¦3Ø5(8j:’;²;Ò;ò;w< ?àN4=Ô=î? '3Ì9 õ58  y70 ¡78Y8w8ƒ8‘8ç89 9:9|9@ ü?P4a3È3m4™4®4Ã4Î7Õ708:8 99"9)989?9Æ9Ö9î9÷9:` h:ÀT55C5K5y5„5š5Æ5Ö5í5ò5636:6J6”6Ÿ6´6ô6ü677@7\7p7L>`>t>ˆ>­> ?*?1?J?Q?}?‡?Ž?Ð Ð0×0ä0î0õ0ü0111R1`1g1š1§1µ1¼1Ç1â132B2I2p2w2†2ò2ú23 333"3*323:3B3J3R3Z3b3j3r3z3‚3Š3’3š3¢3ª3²3º3Â3Ê3Ò3Ú3â3ê3ò3ú34 444"4*424:4B4J4R4Z4b4j4r4z4‚4Š4’4š4¢4ª4²4º4Â4Ê4Ò4Ú4â4ê4ò4ú45 555"5*525:5B5J5R5Z5b5j5r5z5‚5Š5’5š5¢5ª5²5º5Â5Ê5Ò5Ú5â5ê5ò5ú56 666"6*626:6B6ƒ6º:Ç:á:Ë;/=š=¶>›?à,O1j3q3Í3Ô34 4>4E4J5Q5€5‡5 88H=C?ð( 0:2e2Ô8:>:N:+>å?(!040J0ª0”1ª1i4U6z6Ý6À7:ª:[;> @090«0°0Á021Ô2ø5Ö6ê6ý6g7z7ß7ò7O8b8§9º9:*:µ:Ú:>->Ž>+?A?04f9¬; ==2=H=R=[=f=s=ƒ= =b>û> ?M?}?‹?¥?Ö?ç?@„00"0C0v00›0¥0Ë0ê1ÿ1b2È2ç2333f3‡3 3â34Q4^4‚4¶4ú4 5R5†5ò=ú=> >>>+>W>c>œ>À>Ê>Ñ>Ý>é>ó>ý>? ??0?;?E?b??’?—?œ?²?·?É?Ú?PÜ0 0W0x0¢0³0Å0ó01„1š1 1¨1ã1õ1>2X22¤2®2×2ø23*30363r3‚3Ú3ò3÷3 454_4d4j44ˆ44 4®4¼4Æ4Õ4å4 55=5c5l5}5ƒ5¦5²5·5Â5Ð5ß5í5ö566Q6[6e6n66Š6°6¹6Þ67/7=7B7Y7f7p7y77£7·7½7Æ7888(878\8n8‰8¨8:¥:;a;;ý<=Š=¡=°=¾?ß?`4[0|0k1„1s2›2í2R3H5W5B6P6ö78 8]8h8u8s9}9„9I:p ö=6?€8Z8d8U9è> ”0ü0‘2±2æ4,5Ï7‡<”<2=S=¡= (B1Ü1â2M4m45À5ç5°6Û:7;=;C;M;_;Ó;°0=1x1³172‡2£2ù2p3T4d4j44–4é45$55;Â;Ú;+<À<§4É4ç4ú4 55#515P5n5‚5‘5µ5Æ5ÿ56R6_6Â6Ý6ó6=>0>{>Ð$4e4»4â45w6‘6Õ6‚7h9{9I=Ö=àðæ0ò011'121R1Z1b1j1r1z1‚1Š1’1š1¢1ª1²1º1Â1Ê1Ò1Ú1â1ê1ò1ú12 222"2*222:2B2J2R2Z2b2j2r2z2‚2Š2’2š2¢2ª2²2º2Â2Ê2Ò2Ú2â2ê2ò2ú23 333"3*323:3B3J3R3Z3b3j3r3z3‚3Š3’3š3¢3ª3²3º3Â3Ê3Ö3Þ3æ3î3ö3þ34444&4.464>4F4N4V4^4f4n4v4~4†4Ž4–4ž4¦4®4¶4¾4Æ4Î4Ö4Þ4æ4î4ö4þ45555&5.565>5F5N5V5^5f5n5v5~5†5Ž5–5ž5¦5®5Ò5Ü566>6x66…6“6£6©6­6¹6Ä6È6Ù6ß6ã6ï6õ6ù67%777=7J7Q7_7f7‚7Ž7•7ž7¥7®7µ7¾7Å7Î7Õ7Þ7å7î7õ7þ78888%8.858>8R8^8e8n8u8~8…8Ž8•8ž8¥8®8µ8¾8Å8Î8Õ8Þ8å8î8õ8þ899·<‚=‰==Û=ø= >;>\>‹>«>È>Ü> ?,?[?|?«?Ì?û?ð¸B0J0R0r0y0€0‘0¤0³0Á0Ì0Ú0õ0+1H1[1x1‹1¨1·1Â1Í1Ñ1E2L2S2a22—2Ÿ2%3,333Y3E4L4S4y4T5u5|5ƒ5©5ž6¥6¬6Ò6µ7¼7Ã7é7Ä8â8é8ð8919‰9Â9É9Ð9ä9:^:’:™: :´:á:.;…;Œ;“;¹;¥<¬<³<Ù<´=Õ=Ü=ã= >þ>? ?2?|00#0I0$1B1I1P1d1‘1é1"2)202D2q2¾2ò2ù233A3Ž3¸3Ý3å3í3/7j77Ê7ì78;J;o;ª;Ì;û;=¥=­=ï=%><>y>>?(B0 4>5><>C>X>~>¯>Ó>÷>B?’?â?ò? ‹4U5;9“:ò:a;æ;0K12ë5(7788B9@,u4|4ƒ4¥7¬7³7¥9¬9³9Â9:g;n;u;¶;Ó;2<PL¿3ß3ÿ34#434C4S4c4s4ƒ4ó6ü677F7M7T7j7Ù7H8’8 9¥97:×:Þ:å:ž;§;=¡=v>`PE0L0S0:1H1±1Û1f2m2t2‹2+3ø3:4@4Õ5Ü5ã5Ð6Þ6B7i7ö7ý788³89Ð9Ö99;@;G;V;%<ª=p(]2i3y4€4‡4–4e5 7¶7 P>W>f>5?€º0m5y6‰77—7¦78": ?(0*11181G12X4F5M:P;›<¢<©<¸<–=Ý? (P5l6y7€7‡7–78õ8ð9¦:p;0<Ú<ª=^>°40“1Ü1¼3Õ8Ü8ã8Ã9Þ;(=/=6=H=>+>˜>Ÿ>¦>¸>€?›?À4000(0ð0 1Y3`3g3v3O4ã5‡6æ:X<9=@=G=V=/>Ý?Ð ‡0æ4X697@7G7V7/8Ã9g:Æ>à,801 1'1612Â3g49y:Z;a;h;w;O< >‡?ð¥4·5 777(7 8]: ;0(0=1‰22—2¦2*3ì3A4<5ü5Ë67;8Ï8 9õ9 ;[=ß=8088&8889)9˜9Ÿ9¦9¸9Ž:©:;;&;8;<)<Ü>ã>ê>ù> 0T1Ö2õ2ü2 3 5»6Â6É6Ø6\9å:;;-;;= ?§?½?Ï?0”3æ4í4ô45Ç8ô<û<=£=@,d03”3›3ª3 6¦7Æ7Í7Ü7Ü9¬;³;º;É;T>õ?P$(0/0>0L2Í4Ô4î45`8¤9«9²9Ä9 =`Â4ø46p}5s:µ;½;•<<˜= =_0V3^3 5(56 6S7  r8ò;< <'°0ú01'5½68©8×899@9G9n9¹9Ø9]:c:¹:Ý;>.>ÀDG2Ý3#5É5÷577-7U7X8 9ƒ9Š9š9°9E:ª:);0;7;^;´;È;M·>Ê>Ñ>û>À?ð0¹1,2t3ˆ3•36ÿ6Q7X78*818[8 9;Œ;Ô<è<õ1>÷> ??9?á?Hu1ê1O2y3‡3§4¬5e6K7}7Ú7á7p9Æ9":f:½:ù:?;g;É;<7<‚?ê?ô? @'040b0š0Ô0õ0J124ã4<5Ë5•6Ð6‚7¬7Ÿ8 9E9S9„9¬9%:==±=>ë>0Hy2€2‡2,484`4s4]5Å56-6ý697þ7C8¼8ÿ8Æ9ö9n:Þ:X;ÿ;Æ<öÿ> ???I?@„1U1\1c1ˆ1Ä1Ë1Ô12252<2C2j2{2’2Õ2Ü2ã23D3K3]3}33´3»3Â3ë3ñ3 4V4]4d4V5]5d5K6Q6c6i66¬6²6Å6Ë6á6a7h7o7Q9X9_9A;H;O;1=8=?=!?(?/?P8111333ñ4ø4ÿ4á6è6ï6Ñ8Ø8ß8Á:È:Ï:=&=-=æ?ö?ý?`8Ž2•2œ2n4u4|4n6u6|6.858<8Þ9å9ì9ž;¥;¬;Š=‘=›=1?8???p(Þ0å0ì0…2Œ2“2h5o5v5>9E9L96>F>M>€LÅ1Ì1Ó1Ž3•3œ3u5|5ƒ5Ù5à5 6e6l6s6É6Ð67Ì7Ý788¾8Å8Ì8è:ï:ö:ø<ÿ<=E?X?_?4^1e1l1Î2Õ2Ü2º4Á4Ë4a6h6o6888(ù>? ,Á1È1Ï1x44†487?7F7ø9ÿ9:µ<¼<Õ<•?œ?µ?°Xu2|2ƒ2Ù2à23e3l3s3É3Ð3 4¬4¶4Þ4å4˜5Ÿ5¦5@9–9ó96:‹:É: ;7;™;Ý;=E=L=X>\?º?Ä?÷?À@020j0¤0Å01Ü1ã3¯45‡5Q6„637[7M8µ8å8ó8$9L9Å9<©ÐHf1m1t133C3V3=4¬455ê5ú5ð6r7¯7v8¦89Ž9:¯:v;¦;<Ž<=¯=¹=ï=ù=É?àÀœ0Ë0â0111.1<1J1‹1%2,232S2Õ2Ü2ã23…3Œ3“3°354<4C4c4å4ì4ó45•5œ5£5À5e6l6s6‡6777.7<7J7‹7%8,838S8Õ8Ü8ã89…9Œ9“9°95:<:C:c:å:ì:ó:;•;œ;£;À;e,>3>S>Õ>Ü>ã>?…?Œ?“?°?ðô50<0C0c0å0ì0ó01•1œ1£1À1e2l2s2‡23 3$323@3N33%4,434S4Õ4Ü4ã45…5Œ5“5°556<6C6c6å6ì6ó67•7œ7£7À7e8l8s8‡89999$9+92999@9G9N9U9\9c9j9q9x99†99”9›9¢9©9°9·9¾9Å9Ì9Ó9Ý9ç9ñ9û9:::#:-:7:A:K:U:_:i:s:}:œ:E|>ƒ> >%?,?3?S?Õ?Ü?ã? Ô0U1\1c1€1%2,232G23 33'3è3ï3ö3ý34 444 4'4.454<4C4J4Q4X4_4f4m4t4{4‚4‰44—4ž4¥4¬4³4½4Ç4Ñ4Û4å4ï4ù45 55!5+555?5I5S5]5|5%7,737S7Õ7Ü7ã78U9\9c9€9: ::3:µ:¼:Ã:à:5<<u>>æ>í>ô>?Q?]?Œ?“?ý? ¬0"0v0}0„0ö1ý12†33”3¥4¬4³4Ê4Ô4Þ45(5.5G5¤5·5È5Ü5%6,636J6T6^6•6¨6®6Ç67,7=7Q7•7œ7£7Ñ78q8Ö9Ý9ä9::P:|:ƒ:D;U;o;Æ;Í;Ô;ø;<@?>n>u>ß>å>?V?]?d? ÄÖ0Ý0ä0f2m2t2…3Œ3“3ª3´3¾3õ344'4„4—4¨4¼45 55*545>5u5ˆ5Ž5§5ü5 6616u6|6ƒ6±6â6Q7¥7¬7³7Ø788&8R8c8‡8Ž8•8¼8Í8ä8%9,939X9–99¯9Ï9á9: ::=:C:_:¦:­:´:¦;­;´;›<¡<³<¹<Ï<ü<===1=¶>½>Ä>è>î>+?O?V? ¸000C0–00¤0È0Î0 1/161ÿ12#2v2}2„2¨2®2¹2ð233ƒ3‘3¤3õ3ü34e5l5s5å6ì6ó6õ7ü788$8.8e8x8~88í8999e9l9s9Š9”9ž9Õ9è9î9:U:e:v:ƒ:Å:Ì:Ó:;2;š;= ==8=>=}=¡=¨=o>€>“>æ>í>ô>??]??ˆ?0 ÈO0`0s0Æ0Í0Ô0ø0þ0 1B1g1n1Õ1ã1ö1U2\2c2Å3Ì3Ó3E5L5S5U6\6c6z6„6Ž6Å6Ø6Þ6ð6M7`7q7~7Å7Ì7Ó7ê7ô7þ758H8N8`8µ8Å8Ö8ã8%9,939a9’9ú9E:\:c:j:œ:¨:5;L;S;Z;Œ;˜;,<[<{<•<¬<³<º<ì<ø<…=œ=£=ª=Ü=è=|>«>Ë>÷>þ>?"?6?G?S?@ €'0.050R0f0w0ƒ0U1\1c1t12 22$2¥2¬2³2Ä2G3N3U3r3†3—3£3w4~4…4¢4¶4Ç4Ó4¥5¬5³5Ä5U6\6c6t6õ6ü677‹7¨7Ë7ì78= ==Q>›>ñ>;?Œ?»?Û?P ˆå4ì4ó416{6Ñ67l7›7»7å7ü78 8<8H8Õ8ì8ó8ú8,989Ì9û9:5:L:S:Z:Œ:˜:%;<;C;J;|;ˆ;(>6>B> ?;?[?‡?Ž?•?²?Ø?æ?ò?` ˆÇ0Î0Õ0ò01&121ü1+2K2t2”2¬2Û2û2$3D3\3‹3«3Ô3ô3 4;4[4„4¤4¼4ë4 5;5\5‹5¸5¿5Æ56­67‚7Æ788‘8å8´9â9:i:—:æ:;4<”<=`=¸=¿=Æ=>­>?„?È?p `<0“0»0î01U1j2˜2ç23„3ä3c4Ã4+5L5{5¤5D7Ü8 9+9T9ô:Œ<»<Û<ü<+=W=^=e=‚=°=¾=Ê=·>¾>Å>â>??*?€ œ 0;0[0‡0Ž0•0²0à0î0ú0ç1î1õ12@2N2Z2<3k3‹3·3¾3Å3â344*455%5B5p5~5Š5l6›6»6ç6î6õ67@7N7Z7G8N8U8r8 8®8º8œ9Ë9ë9::&:«:=; ;<_<×<=–=ò=‚>«>Ù>.?S?¬?²? T½0Þ0$2´2`3À3(4/464»4M5°5(6o6ç6.7¦78’8»8é8>9c9¼9Â9Í:î:4<Ä@>G>Î>]?À?  \:00õ091­1202b2Ž2¼2 393•3Ü4 5¤546à6@7©7°7·7>8Í809ª9ñ9e:©:;p; ;Ò;þ;,<{<©<=L>z>?¤?° ŒP0°0L1{1œ1Ë1ì12<2k2Ò6ÿ6Ì7O89µ9¼9Ã9Ö9 ;E;L;S;p;ª;<<#<4)>1>u>¡>©>±>Ò>Ý>ó>?P??Å?Ì?Ó?À 0>0±0Þ1N2Q3¶3½3Ä3F4§4å5ì5ó56!6(636I6O6S6a6k6u66…66²6É6Ñ6è6ø67777"7,767=7G7Q7[7e7l7s7z7„7ˆ7Ž7’7¡7¸7À7Ø7â7æ7î7ö78888%838=8A8R8]8e8z8„8ˆ8Ž8˜8¢8©8°8·8Á8Ë8Õ8ß8é8ó8ý89 999 9'9.959<9F9J9P9T9k9‚9Š9Ÿ9©9­9³9½9Ç9Î9Õ9Ü9æ9ð9ú9:::":):0:7:>:E:L:S:Z:a:k:o:u:y::§:¯:Ç:Ñ:Õ:Ý:å:ö:;; ;;";,;0;6;@;J;T;^;h;r;|;†;;š;¤;®;¸;Â;Ì;Ö;à;ê;ô;þ;<<<&<0<:>'>5>?>C>I>S>]>d>n>x>‚>>–>ž>¥>¯>³>¹>½>Ì>ã>ë>? ???!?2?>">->Y>a>i>w>Ý>(?Ž?à ¤«4Õ4Ü4ã45.5•5œ5£5´5Ï5ý5K6u6|6ƒ6 6Î657<7C7T7o77ë788#8@8«8Õ8Ü8ã89e9l9s9„9::#:4:µ:¼:Ã:Ô:[;…;Œ;“;°;,>3>D>Ä>ä>ü>+?K?t?”?¬?Û?û?ð \$0D0\0‹0«0Ô0ô0 1;1[1|1«1Ó1Ú1í1;3ã3 44494t4{44†4‘4•4œ4§4«4²4½4Á4È4Ó4×4Þ4é4í4ô4þ45!505:5L5Y5`5m5t55ˆ5•5œ5®5À5Ò5ß5æ5ó5ú5666"6…6Œ6“6ª7Ï788 818>8G8a8g8n8r8x8ˆ8’8œ8¦8°8»8É8Í8Ó8Ý8á8æ8ì8ö89 999)93999=9C9M9Q9V9b9l9v9€9Š9”9Ÿ9­9±9·9Â9Ç9Ò9Ü9ã9ê9ô9þ9:::: :(:/:B:M:W:^:e:o:y:ƒ::‘:—:›:¡:­:´:Ç:Ò:Ü:ã:ê:ô:þ:;;;; ;(;/;B;M;W;^;e;o;y;ƒ;;‘;—;›;£;ª;¼;À;Æ;Ð;Ô;Ú;Þ;ä;î;ø;< <>>(>3>>>F>M>W>a>k>u>y>>ƒ>‹>’>¥>°>»>Ã>Ê>Ô>Þ>è>ò>ö>ü>??? ?&?0?4?u>|>ƒ>£>??#?C?µ?¼?Ã?à? u0|0ƒ0—011K1f1t1š12 2232¥2¬2³2Ó2E3L3S3p3å3ì3ó34…4Œ4“4³4%5,535P5å5ì5ó56„6¤6¼6ë6 747T7l7›7»7ä788K8k8”8´8Ì8û89<9k9Ø;<<<•=Õ?Ü?ã? t0¤0õ0ü01#1Ä1 2;2[2ˆ4¸4¿4Æ4E6U8\8c88$9…9Œ9“9¯9T:¬:Û:û:;8;T;t;Œ;»;Û;<$<<(>8>0 Hò2þ2…6Œ6“6ó6v7‹7¢7µ78 88s8ö8*9•9œ9£9:ˆ:²:;;";.;B;h;ß;¨=¯=¶=@ t33&3d8l8t8‚89 99Ä9Ì9Ô9¢:¬:´:Â:;;#;~;‹;“;¨;%<,<3<Ž<›<£<¸<5=<=C=ž=«=³=È=E>L>S>o>¯>½>È>Ó>Û>ð>u?|?ƒ?Þ?ë?ó?P €0…0Œ0“0î0û011•1œ1£1Ç122)212F2Ô4Ü4ä45 55n5{5ƒ5˜57 77n7{7ƒ7˜788#8~8‹8“8¨8%9,939Ž9›9£9¸94:<:D:e:l:s:Å;Ì;Ó;ö>? ?` œe1W2v3‡3Ž3³5×6ê788J8u8}8ª8Õ8Ý8 959=9j9•99Ê9õ9ý9*:U:]:Š:µ:½:ê:;;J;u;};ª;Õ;Ý; <5<=>J>u>}>ª>Õ>Ý> ?5?=?j?•??Ê?õ?ý?p Ì*0U0]0Š0µ0½0ê011J1u1}1G2i2’2š2É2ò2ú2)3R3Z3‰3²3º3é344I4r4z4©4Ò4Ú4 525:5i5’5š5É5ò5ú5)6R6Z6‰6²6º6é677I7r7z7©7Ò7Ú7 828:8i8’8š8É8ò8ú8)9R9Z9‰9²9º9é9::I:r:z:©:Ò:Ú: ;2;:;i;’;š;É;ò;ú;)7F7N7´7¼7Ä7ä7ì7ô7ø8ÿ89ó9:::;; ;2;;;b;m;;—;Ÿ;»;Ï;ú; <<9>@>Q>Y>q>£>?? ?1?9?Q?Å?Ì?Ó?ç?° Ô0&0.060…0Œ0“0«0·0¾0Ð0Õ0÷0ÿ01n1s1œ1¤1¬1É12 22+2A2f2n2v2Â2s3z3ƒ3Å4Ì4è4„6:¥:©:µ:¹:È:Ñ:Ù:ç:õ:ù:;; ;;;;; ;$;(;,;0;4;8;<;@;D;H;L;P;T;P(>@>X>|>˜>´>Ð>ì>?$?@?\?x?”?°?Ì?À œ\0P1È2D4ü4545T5p5ˆ5 5¼5°6Ð6è67 787P7h7€7˜7°7È7à7ø78(8@8X8x88¨8À8Ø8ð89 989P9h9€9 9¸9Ð9ð9: :8:P:h:€:˜:°:È:à:ø:;(;H;h;€;˜;°;È;à;ø;<(<@> >0>@>P>`>p>€>> >°>À>Ð>à>ð>?? ?0?@?P?`?p?€?? ?°?À?Ð?à?ð?ð Ô00 000@0P0`0p0€00 0°0À0Ð0à0ð011 101@1P1`1p1€11 1°1À1Ð1à1ð122 202@2P2`2p2€22 2°2À2Ð2à2ð23`3p3€3 404@4P4`4p4€44 4°4À4Ð4à6ä6è6ì6ð6ô6ø6ü6777 77777 7$7(7,7074787<7@7D7H7T7X7\7`7l7¨7¬7°7´78@ ˆ3Œ3P H€4„4ˆ4À4Ä4È4Ì4Ð4Ô4Ø4Ü4à4ä4è4ì4ð4ô4555 55555 5$5(5,50545` l?p?t?x?|?€?„?ˆ?Œ??p àH0L0P0T0X0\0`0d0h0l0 11111 1$1(1,1014181<1@1D1H1L1P1T1X1\1`1d1h1l1p1t1x1|1€1„1ˆ1Œ11”1˜1œ1 1¤1¨1¬1°1´1¸1¼1À1Ä1È1Ì1Ð1Ô1Ø1Ü1à1ä1è1ì1ð1ô1ø1ü1222 22222 2$2(2 4¤4¨4¬4°4´4¸4¼4À4Ä4È4Ì4Ð4Ô4Ø4Ü4à4ä4è4ì4<6@6D6H6L6€ p1t1x1|1€1„1ˆ1Œ11”1˜1œ1 1¤1¨1¬1°1´1¸1¼1À1Ä1È1Ì1Ð1Ô1Ø1Ü1à1ä1è1ì1ð1ô1ø1ü1222 22222 2$2(2,2024282<2@2D2H2L2P2T2X2\2`2d2h2l2p2t2x2|2€2„2ˆ2Œ22”2˜2œ2 2¤2¨2¬2°2´2¸2¼2À2Ä2È2Ì2Ð2Ô2Ø2Ü2à2ä2è2ì2ð2ô2ø2ü2333 33333 3$3(3,3034383<3@3D3H3L3P3T3X3\3`3d3h3l3p3t3x3|3€3„3ˆ3Œ33”3˜3œ3 3¤3¨3¬3°3´3¸3¼3À3Ä3È3Ì3Ð3Ô3Ø3Ü3à3ä3è3ì3ð3ô3ø3ü3444 44444 4$4(4,4044484<4@4D4H4L4P4T4X4\4`4d4h4l4p4t4x4|4€4„4ˆ4Œ44”4˜4œ4 4¤4¨4¬4°4´4¸4¼4À4Ä4È4Ì4Ð4Ô4Ø4Ü4à4ä4è4ì4ð4ô4ø4ü4555 55555 5$5(5,5054585<5@5D5H5L5P5T5X5\5`5d5h5l5p5t5x5|5€5„5ˆ5Œ5`6t8x8|8€8„8ˆ8Œ88”8˜8œ8 8¤8¨8¬8°8´8„;ˆ;Œ;°=´=¸=¼=À=Ä=È=Ì=Ð=Ô=Ø=Ü=à=ä=è=ì=ð=ô=ø=ü=>>> >>>>> >$>(>,>0>4>8><>@>D>H>L>P>T>X>\>`>d>h>l>p>t>x>|>€>„>ˆ>Œ>>”>˜>œ> >¤>¨>¬>°>´>¸>¼>À>Ä>È>Ì>Ð>Ô>Ø>Ü>à>ä>è>ì>ð>ô>ø>ü>Œ??”?˜?œ? ?¤?¨?¬?°?´?¸? 4h2l2p2t2<=T=l=„=\?`?d?h?l?p?t?x?|?€?„?ˆ?Œ??  ¼X5\5`5d5¬6°6´6¸6¼6À6Ä6È6Ì6Ð6Ô6Ø6Ü6à6ä6è6ì6ð6ô6ø6ü6777À7È7Ð7Ø7à7è7ð7ø78888 8(80888@8H8P8X8`8h8ø=ü=>>> >>@>D>H>L>P>T>X>\>`>d>h>l>p>t>x>|>€>„>ˆ>Œ>>”>˜>œ> >¤>¨>¬>°>´>¸>¼>À>° dø0ü0111 11111 1$1(1,1014181<1@1D1H1L1P1T1X1\1`1d1h1l1p1t1x1|1€1„1ˆ1Œ11”1˜1œ1 1¤1¨1¬1°1´1¸1¼1À1Ä1È1Ì1¼3À3Ä3È3Ì3Ð3Ô3Ø3Ü3à3ä3è3ì3ð3ô3ø3ü34444787<7@7H7L7P7T7X7\7`7d7h7l7p7t7x7|7€7„7ˆ7Œ77”7˜7œ7 7¤7¨7¬7°7´7¸7¼7À7Ä7È7Ì7Ð7Ô7Ø7Ü7à7ä7è7ì7ð7ô7ø7ü7888 88888 8$8(8,8084888<8@8D8H8L8P8T8X8\8`8d8h8l8p8t8x8|8€8„8ˆ8Œ88”8œ8 8¤8¨8°8´8¸8¼8À8Ä8È8Ì8Ð8Ô8Ø8Ü8à8ä8è8ì8ð8ô8ø8ü8999 99999 9$9(9,9094989<9@9D9H9L9P9T9X9\9`9d9h9l9p9t9x9|9€9„9ˆ9Œ99”9˜9œ9 9¤9¨9¬9°9´9¸9¼9À9Ä9È9Ì9Ð9Ô9Ø9Ü9à9ä9è9ì9ð9ô9ø9ü9::: ::::: :$:(:,:0:4:8:<:@:D:H:L:P:T:X:\:`:d:h:l:p:t:x:|:€:„:ˆ:Œ::”:˜:œ: :¤:¨:¬:°:´:¸:¼:À:Ä:È:Ì:Ð ,D;p;œ;È;ô;$>> >>> >$>(>,>0>4>8><>@>D>H>L>P>T>X>\>`>d>h>l>ˆ>Œ>>”>˜>œ> >¤>¨>¬>°>´>¸>¼>À>Ä>È>Ì>Ð>Ô>Ø>Ü>à>ä>è>ì>ð>ô>ø>ü>??? ????? ?$?(?,?0?4?8?>> >>>>> >$>(>,>0>4>8><>@>„>ˆ>Œ>>”>˜>œ> >¤>¨>¬>°>´>¸>¼>À>Ä>È>Ì>Ð>Ô>Ø>Ü>à>ä>è>ì>ð>ô>ø>ü>??? ????? È`0h0t0|0ˆ00œ0¤0°0¸0Ä0Ì0Ø0à0ì0ô01111<1D1P1X1d1l1x1€1È1Ð1Ü1ä12 22 2,242@2H2T2\2h2p2|2„22˜2¤2¬2¸2À2Ì2Ô2d4l4€4ˆ44œ4¤4¬4¸4À4È4Ô4Ü4ä4ð4ø45 555`6d6p6t6€6„66”6 6¤6°6´6À6Ä6Ð6Ô6à6ä6ð6ô67777 7$70747@7D7P7T7`7d7p7t7€7„77”7 7¤7°7´7À7Ä7Ð7Ô7à7ä7ð7ô78888 8$80848@8D8P8T8`8d8p8t8€8„88”8 8¤8°8´8À8Ä8Ð8Ô8à8ä8ð8ô89999 9$90949@9D9P9T9`9d9p9t9€9„99”9È:Ì:Ð:Ô:Ø:Ü:à:ä:è:ì:ð:ô:ø:ü:;;; ;;;;€;ˆ;;˜; ;¨;°;¸;À;È;Ð;<< <$<(<,<0<4<8<<<@>> >>>>> >$>(>,>0>4>8><>@>D>H>L>P>T>X>\>`>???? ?0 ð111 1,101<1@1L1P1\1`1l1p1¼1Ì1Ü1ì1€3„3ˆ3Œ33”34444 4$4(4044484<4D4H4P4T4X4\4`4d4l4p4€4„4ˆ4Œ44”4˜4œ4À4Ä4È4Ì4Ð4Ô4ˆ5Œ55œ5 5¤5È5Ì5Ð5Ü5à5ä56 666 6$6064686H6L6P6\6`6d6ˆ6Œ66œ6 6¤6È6Ì6Ð6Ü6à6ä67 777 7$7074787H7L7P7\7`7d7ˆ7Œ77œ7 7¤7È7Ì7Ð7Ü7à7ä78 888 8$8H8L8P8\8`8d8ˆ8Œ88œ8 8¤8È8Ì8Ð8Ü8à8ä8999 99999 9$9(9,9094989<9@9D9H9L9P9T9X9\9`9d9h9l9p9t9x9|9€9„9ˆ9Œ99”9˜9œ9 9¤9¨9¬9°9´9¸9¼9À9Ä9È9Ì9Ð9Ô9Ø9Ü9à9ä9è9ì9ð9ô9ø9ü9::: :::: :(:,:0:8:<:@:H:L:P:X:\:`:h:l:p:x:|:€:ˆ:Œ::˜:œ: :¨:¬:°:¸:¼:À:È:Ì:Ð:Ø:Ü:à:è:ì:ð:ø:ü:;; ;;;; ;(;,;0;8;<;@;H;L;P;X;\;`;h;l;p;x;|;€;ˆ;Œ;;˜;œ; ;¨;¬;°;¸;¼;À;È;Ì;Ð;Ø;Ü;à;è;ì;ð;ø;ü;<< <<<< <(<,<0<8<<<@>> >>>>> >$>(>,>0>4>8><>@>D>H>L>P>T>X>\>`>d>h>l>p>t>x>|>€>„>ˆ>Œ>>”>˜>œ> >¤>¨>¬>¸>À>Ä>Ð>Ø>Ü>à>ä>è>ì>ð>ô>ø>ü>? ?$?0?8?@?D?H?L?P?T?X?\?`?d?h?l?p?t?x?|?€?„?ˆ?Œ??”?˜?œ? ?¤?¨?¬?°?´?¸?¼?À?Ä?È?Ì?Ð?Ô?Ø?Ü?à?ä?è?ì?ð?ô?ø?ü?@ „000 00000 0$0(0,0004080<0@0D0H0L0P0T0X0\0`0d0h0l0p0t0x0|0€0„0ˆ0Œ00”0˜0œ0 0¤0¨0¬0°0´0¸0¼0À0Ä0Ð0Ø0à0ä0ð0ø01111 1$10181@1D1P1X1`1d1h1l1p1t1x1|1€1„1ˆ1Œ11”1˜1œ1 1¤1¨1¬1°1´1¸1¼1À1Ä1È1Ì1Ð1Ô1Ø1Ü1à1ä1ð1ø12222 2$2(2,20242@2D2P2X2`2d2p2x2€2„2ˆ2Œ22”2˜2œ2 2¤2¨2¬2°2´2¸2¼2À2Ä2È2Ì2Ð2Ô2Ø2Ü2à2ä2è2ì2ð2ô2ø2ü2333 33333 3$3(3,3034383<3@3D3H3L3P3T3X3\3`3d3h3l3p3t3x3|3€3„3ˆ3P °8 88888 8(8,80848@8D8H8L8P8T8X8\8`8d8€8„8ˆ8Œ88”8˜8œ8 8¤8À8Ä8È8Ì8Ð8Ô8Ø8Ü8à8ä8è8ì8ð8ô8ø8ü89999999 9$9(9,94989<9@9d9h9l9p9t9x9|9€9„9ˆ9¤9¨9¬9°9´9¸9¼9À9ä9è9ì9ð9:: ::::: :D:H:L:P:T:X:\:`:d:h:„:ˆ:Œ::”:˜:œ: :¤:¨:Ä:È:Ì:Ð:Ô:Ø:Ü:ä:è:ì:ð:ô:ø:ü:;$;(;,;0;4;8;<;@;d;h;l;p;t;x;|;€;¤;¨;¬;°;´;¸;¼;À;Ä;È;Ì;Ð;Ô;Ø;Ü;ä;è;ì;ð;ô;ø;ü;<<< <<<<<$<(<,<0<4<8<<<@> >>>>> >$>(>,>0>D>H>L>P>T>X>\>`>d>h>l>p>„>ˆ>Œ>>”>˜>œ> >¤>¨>¬>°>Ä>È>Ì>Ð>Ô>Ø>Ü>à>ä>è>ì>ð>?? ????$?(?,?0?. case $1 in '') echo "$0: No command. Try \`$0 --help' for more information." 1>&2 exit 1; ;; -h | --h*) cat <<\EOF Usage: depcomp [--help] [--version] PROGRAM [ARGS] Run PROGRAMS ARGS to compile a file, generating dependencies as side-effects. Environment variables: depmode Dependency tracking mode. source Source file read by `PROGRAMS ARGS'. object Object file output by `PROGRAMS ARGS'. DEPDIR directory where to store dependencies. depfile Dependency file to output. tmpdepfile Temporary file to use when outputing dependencies. libtool Whether libtool is used (yes/no). Report bugs to . EOF exit $? ;; -v | --v*) echo "depcomp $scriptversion" exit $? ;; esac if test -z "$depmode" || test -z "$source" || test -z "$object"; then echo "depcomp: Variables source, object and depmode must be set" 1>&2 exit 1 fi # Dependencies for sub/bar.o or sub/bar.obj go into sub/.deps/bar.Po. depfile=${depfile-`echo "$object" | sed 's|[^\\/]*$|'${DEPDIR-.deps}'/&|;s|\.\([^.]*\)$|.P\1|;s|Pobj$|Po|'`} tmpdepfile=${tmpdepfile-`echo "$depfile" | sed 's/\.\([^.]*\)$/.T\1/'`} rm -f "$tmpdepfile" # Some modes work just like other modes, but use different flags. We # parameterize here, but still list the modes in the big case below, # to make depend.m4 easier to write. Note that we *cannot* use a case # here, because this file can only contain one case statement. if test "$depmode" = hp; then # HP compiler uses -M and no extra arg. gccflag=-M depmode=gcc fi if test "$depmode" = dashXmstdout; then # This is just like dashmstdout with a different argument. dashmflag=-xM depmode=dashmstdout fi case "$depmode" in gcc3) ## gcc 3 implements dependency tracking that does exactly what ## we want. Yay! Note: for some reason libtool 1.4 doesn't like ## it if -MD -MP comes after the -MF stuff. Hmm. ## Unfortunately, FreeBSD c89 acceptance of flags depends upon ## the command line argument order; so add the flags where they ## appear in depend2.am. Note that the slowdown incurred here ## affects only configure: in makefiles, %FASTDEP% shortcuts this. for arg do case $arg in -c) set fnord "$@" -MT "$object" -MD -MP -MF "$tmpdepfile" "$arg" ;; *) set fnord "$@" "$arg" ;; esac shift # fnord shift # $arg done "$@" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi mv "$tmpdepfile" "$depfile" ;; gcc) ## There are various ways to get dependency output from gcc. Here's ## why we pick this rather obscure method: ## - Don't want to use -MD because we'd like the dependencies to end ## up in a subdir. Having to rename by hand is ugly. ## (We might end up doing this anyway to support other compilers.) ## - The DEPENDENCIES_OUTPUT environment variable makes gcc act like ## -MM, not -M (despite what the docs say). ## - Using -M directly means running the compiler twice (even worse ## than renaming). if test -z "$gccflag"; then gccflag=-MD, fi "$@" -Wp,"$gccflag$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" echo "$object : \\" > "$depfile" alpha=ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz ## The second -e expression handles DOS-style file names with drive letters. sed -e 's/^[^:]*: / /' \ -e 's/^['$alpha']:\/[^:]*: / /' < "$tmpdepfile" >> "$depfile" ## This next piece of magic avoids the `deleted header file' problem. ## The problem is that when a header file which appears in a .P file ## is deleted, the dependency causes make to die (because there is ## typically no way to rebuild the header). We avoid this by adding ## dummy dependencies for each header file. Too bad gcc doesn't do ## this for us directly. tr ' ' ' ' < "$tmpdepfile" | ## Some versions of gcc put a space before the `:'. On the theory ## that the space means something, we add a space to the output as ## well. ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp) # This case exists only to let depend.m4 do its work. It works by # looking at the text of this script. This case will never be run, # since it is checked for above. exit 1 ;; sgi) if test "$libtool" = yes; then "$@" "-Wp,-MDupdate,$tmpdepfile" else "$@" -MDupdate "$tmpdepfile" fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" if test -f "$tmpdepfile"; then # yes, the sourcefile depend on other files echo "$object : \\" > "$depfile" # Clip off the initial element (the dependent). Don't try to be # clever and replace this with sed code, as IRIX sed won't handle # lines with more than a fixed number of characters (4096 in # IRIX 6.2 sed, 8192 in IRIX 6.5). We also remove comment lines; # the IRIX cc adds comments like `#:fec' to the end of the # dependency line. tr ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' | \ tr ' ' ' ' >> $depfile echo >> $depfile # The second pass generates a dummy entry for each header file. tr ' ' ' ' < "$tmpdepfile" \ | sed -e 's/^.*\.o://' -e 's/#.*$//' -e '/^$/ d' -e 's/$/:/' \ >> $depfile else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; aix) # The C for AIX Compiler uses -M and outputs the dependencies # in a .u file. In older versions, this file always lives in the # current directory. Also, the AIX compiler puts `$object:' at the # start of each line; $object doesn't have directory information. # Version 6 uses the directory in both cases. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then tmpdepfile1=$dir$base.u tmpdepfile2=$base.u tmpdepfile3=$dir.libs/$base.u "$@" -Wc,-M else tmpdepfile1=$dir$base.u tmpdepfile2=$dir$base.u tmpdepfile3=$dir$base.u "$@" -M fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then # Each line is of the form `foo.o: dependent.h'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" # That's a tab and a space in the []. sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else # The sourcefile does not contain any dependencies, so just # store a dummy comment line, to avoid errors with the Makefile # "include basename.Plo" scheme. echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; icc) # Intel's C compiler understands `-MD -MF file'. However on # icc -MD -MF foo.d -c -o sub/foo.o sub/foo.c # ICC 7.0 will fill foo.d with something like # foo.o: sub/foo.c # foo.o: sub/foo.h # which is wrong. We want: # sub/foo.o: sub/foo.c # sub/foo.o: sub/foo.h # sub/foo.c: # sub/foo.h: # ICC 7.1 will output # foo.o: sub/foo.c sub/foo.h # and will wrap long lines using \ : # foo.o: sub/foo.c ... \ # sub/foo.h ... \ # ... "$@" -MD -MF "$tmpdepfile" stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile" exit $stat fi rm -f "$depfile" # Each line is of the form `foo.o: dependent.h', # or `foo.o: dep1.h dep2.h \', or ` dep3.h dep4.h \'. # Do two passes, one to just change these to # `$object: dependent.h' and one to simply `dependent.h:'. sed "s,^[^:]*:,$object :," < "$tmpdepfile" > "$depfile" # Some versions of the HPUX 10.20 sed can't process this invocation # correctly. Breaking it into two sed invocations is a workaround. sed 's,^[^:]*: \(.*\)$,\1,;s/^\\$//;/^$/d;/:$/d' < "$tmpdepfile" | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; hp2) # The "hp" stanza above does not work with aCC (C++) and HP's ia64 # compilers, which have integrated preprocessors. The correct option # to use with these is +Maked; it writes dependencies to a file named # 'foo.d', which lands next to the object file, wherever that # happens to be. # Much of this is similar to the tru64 case; see comments there. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then tmpdepfile1=$dir$base.d tmpdepfile2=$dir.libs/$base.d "$@" -Wc,+Maked else tmpdepfile1=$dir$base.d tmpdepfile2=$dir$base.d "$@" +Maked fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," "$tmpdepfile" > "$depfile" # Add `dependent.h:' lines. sed -ne '2,${; s/^ *//; s/ \\*$//; s/$/:/; p;}' "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" "$tmpdepfile2" ;; tru64) # The Tru64 compiler uses -MD to generate dependencies as a side # effect. `cc -MD -o foo.o ...' puts the dependencies into `foo.o.d'. # At least on Alpha/Redhat 6.1, Compaq CCC V6.2-504 seems to put # dependencies in `foo.d' instead, so we check for that too. # Subdirectories are respected. dir=`echo "$object" | sed -e 's|/[^/]*$|/|'` test "x$dir" = "x$object" && dir= base=`echo "$object" | sed -e 's|^.*/||' -e 's/\.o$//' -e 's/\.lo$//'` if test "$libtool" = yes; then # With Tru64 cc, shared objects can also be used to make a # static library. This mechanism is used in libtool 1.4 series to # handle both shared and static libraries in a single compilation. # With libtool 1.4, dependencies were output in $dir.libs/$base.lo.d. # # With libtool 1.5 this exception was removed, and libtool now # generates 2 separate objects for the 2 libraries. These two # compilations output dependencies in $dir.libs/$base.o.d and # in $dir$base.o.d. We have to check for both files, because # one of the two compilations can be disabled. We should prefer # $dir$base.o.d over $dir.libs/$base.o.d because the latter is # automatically cleaned when .libs/ is deleted, while ignoring # the former would cause a distcleancheck panic. tmpdepfile1=$dir.libs/$base.lo.d # libtool 1.4 tmpdepfile2=$dir$base.o.d # libtool 1.5 tmpdepfile3=$dir.libs/$base.o.d # libtool 1.5 tmpdepfile4=$dir.libs/$base.d # Compaq CCC V6.2-504 "$@" -Wc,-MD else tmpdepfile1=$dir$base.o.d tmpdepfile2=$dir$base.d tmpdepfile3=$dir$base.d tmpdepfile4=$dir$base.d "$@" -MD fi stat=$? if test $stat -eq 0; then : else rm -f "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" exit $stat fi for tmpdepfile in "$tmpdepfile1" "$tmpdepfile2" "$tmpdepfile3" "$tmpdepfile4" do test -f "$tmpdepfile" && break done if test -f "$tmpdepfile"; then sed -e "s,^.*\.[a-z]*:,$object:," < "$tmpdepfile" > "$depfile" # That's a tab and a space in the []. sed -e 's,^.*\.[a-z]*:[ ]*,,' -e 's,$,:,' < "$tmpdepfile" >> "$depfile" else echo "#dummy" > "$depfile" fi rm -f "$tmpdepfile" ;; #nosideeffect) # This comment above is used by automake to tell side-effect # dependency tracking mechanisms from slower ones. dashmstdout) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test $1 != '--mode=compile'; do shift done shift fi # Remove `-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done test -z "$dashmflag" && dashmflag=-M # Require at least two characters before searching for `:' # in the target name. This is to cope with DOS-style filenames: # a dependency such as `c:/foo/bar' could be seen as target `c' otherwise. "$@" $dashmflag | sed 's:^[ ]*[^: ][^:][^:]*\:[ ]*:'"$object"'\: :' > "$tmpdepfile" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" tr ' ' ' ' < "$tmpdepfile" | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; dashXmstdout) # This case only exists to satisfy depend.m4. It is never actually # run, as this mode is specially recognized in the preamble. exit 1 ;; makedepend) "$@" || exit $? # Remove any Libtool call if test "$libtool" = yes; then while test $1 != '--mode=compile'; do shift done shift fi # X makedepend shift cleared=no for arg in "$@"; do case $cleared in no) set ""; shift cleared=yes ;; esac case "$arg" in -D*|-I*) set fnord "$@" "$arg"; shift ;; # Strip any option that makedepend may not understand. Remove # the object too, otherwise makedepend will parse it as a source file. -*|$object) ;; *) set fnord "$@" "$arg"; shift ;; esac done obj_suffix="`echo $object | sed 's/^.*\././'`" touch "$tmpdepfile" ${MAKEDEPEND-makedepend} -o"$obj_suffix" -f"$tmpdepfile" "$@" rm -f "$depfile" cat < "$tmpdepfile" > "$depfile" sed '1,2d' "$tmpdepfile" | tr ' ' ' ' | \ ## Some versions of the HPUX 10.20 sed can't process this invocation ## correctly. Breaking it into two sed invocations is a workaround. sed -e 's/^\\$//' -e '/^$/d' -e '/:$/d' | sed -e 's/$/ :/' >> "$depfile" rm -f "$tmpdepfile" "$tmpdepfile".bak ;; cpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout. "$@" || exit $? # Remove the call to Libtool. if test "$libtool" = yes; then while test $1 != '--mode=compile'; do shift done shift fi # Remove `-o $object'. IFS=" " for arg do case $arg in -o) shift ;; $object) shift ;; *) set fnord "$@" "$arg" shift # fnord shift # $arg ;; esac done "$@" -E | sed -n -e '/^# [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' \ -e '/^#line [0-9][0-9]* "\([^"]*\)".*/ s:: \1 \\:p' | sed '$ s: \\$::' > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" cat < "$tmpdepfile" >> "$depfile" sed < "$tmpdepfile" '/^$/d;s/^ //;s/ \\$//;s/$/ :/' >> "$depfile" rm -f "$tmpdepfile" ;; msvisualcpp) # Important note: in order to support this mode, a compiler *must* # always write the preprocessed file to stdout, regardless of -o, # because we must use -o when running libtool. "$@" || exit $? IFS=" " for arg do case "$arg" in "-Gm"|"/Gm"|"-Gi"|"/Gi"|"-ZI"|"/ZI") set fnord "$@" shift shift ;; *) set fnord "$@" "$arg" shift shift ;; esac done "$@" -E | sed -n '/^#line [0-9][0-9]* "\([^"]*\)"/ s::echo "`cygpath -u \\"\1\\"`":p' | sort | uniq > "$tmpdepfile" rm -f "$depfile" echo "$object : \\" > "$depfile" . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s:: \1 \\:p' >> "$depfile" echo " " >> "$depfile" . "$tmpdepfile" | sed 's% %\\ %g' | sed -n '/^\(.*\)$/ s::\1\::p' >> "$depfile" rm -f "$tmpdepfile" ;; none) exec "$@" ;; *) echo "Unknown depmode $depmode" 1>&2 exit 1 ;; esac exit 0 # Local Variables: # mode: shell-script # sh-indentation: 2 # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-end: "$" # End: fische-3.2/INSTALL0000644000175000017500000002622211456057072010604 00000000000000Installation Instructions ************************* Copyright (C) 1994, 1995, 1996, 1999, 2000, 2001, 2002, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. This file is free documentation; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. Basic Installation ================== Briefly, the shell commands `./configure; make; make install' should configure, build, and install this package. The following more-detailed instructions are generic; see the `README' file for instructions specific to this package. The `configure' shell script attempts to guess correct values for various system-dependent variables used during compilation. It uses those values to create a `Makefile' in each directory of the package. It may also create one or more `.h' files containing system-dependent definitions. Finally, it creates a shell script `config.status' that you can run in the future to recreate the current configuration, and a file `config.log' containing compiler output (useful mainly for debugging `configure'). It can also use an optional file (typically called `config.cache' and enabled with `--cache-file=config.cache' or simply `-C') that saves the results of its tests to speed up reconfiguring. Caching is disabled by default to prevent problems with accidental use of stale cache files. If you need to do unusual things to compile the package, please try to figure out how `configure' could check whether to do them, and mail diffs or instructions to the address given in the `README' so they can be considered for the next release. If you are using the cache, and at some point `config.cache' contains results you don't want to keep, you may remove or edit it. The file `configure.ac' (or `configure.in') is used to create `configure' by a program called `autoconf'. You need `configure.ac' if you want to change it or regenerate `configure' using a newer version of `autoconf'. The simplest way to compile this package is: 1. `cd' to the directory containing the package's source code and type `./configure' to configure the package for your system. Running `configure' might take a while. While running, it prints some messages telling which features it is checking for. 2. Type `make' to compile the package. 3. Optionally, type `make check' to run any self-tests that come with the package. 4. Type `make install' to install the programs and any data files and documentation. 5. You can remove the program binaries and object files from the source code directory by typing `make clean'. To also remove the files that `configure' created (so you can compile the package for a different kind of computer), type `make distclean'. There is also a `make maintainer-clean' target, but that is intended mainly for the package's developers. If you use it, you may have to get all sorts of other programs in order to regenerate files that came with the distribution. 6. Often, you can also type `make uninstall' to remove the installed files again. Compilers and Options ===================== Some systems require unusual options for compilation or linking that the `configure' script does not know about. Run `./configure --help' for details on some of the pertinent environment variables. You can give `configure' initial values for configuration parameters by setting variables in the command line or in the environment. Here is an example: ./configure CC=c99 CFLAGS=-g LIBS=-lposix *Note Defining Variables::, for more details. Compiling For Multiple Architectures ==================================== You can compile the package for more than one kind of computer at the same time, by placing the object files for each architecture in their own directory. To do this, you can use GNU `make'. `cd' to the directory where you want the object files and executables to go and run the `configure' script. `configure' automatically checks for the source code in the directory that `configure' is in and in `..'. With a non-GNU `make', it is safer to compile the package for one architecture at a time in the source code directory. After you have installed the package for one architecture, use `make distclean' before reconfiguring for another architecture. On MacOS X 10.5 and later systems, you can create libraries and executables that work on multiple system types--known as "fat" or "universal" binaries--by specifying multiple `-arch' options to the compiler but only a single `-arch' option to the preprocessor. Like this: ./configure CC="gcc -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ CXX="g++ -arch i386 -arch x86_64 -arch ppc -arch ppc64" \ CPP="gcc -E" CXXCPP="g++ -E" This is not guaranteed to produce working output in all cases, you may have to build one architecture at a time and combine the results using the `lipo' tool if you have problems. Installation Names ================== By default, `make install' installs the package's commands under `/usr/local/bin', include files under `/usr/local/include', etc. You can specify an installation prefix other than `/usr/local' by giving `configure' the option `--prefix=PREFIX'. You can specify separate installation prefixes for architecture-specific files and architecture-independent files. If you pass the option `--exec-prefix=PREFIX' to `configure', the package uses PREFIX as the prefix for installing programs and libraries. Documentation and other data files still use the regular prefix. In addition, if you use an unusual directory layout you can give options like `--bindir=DIR' to specify different values for particular kinds of files. Run `configure --help' for a list of the directories you can set and what kinds of files go in them. If the package supports it, you can cause programs to be installed with an extra prefix or suffix on their names by giving `configure' the option `--program-prefix=PREFIX' or `--program-suffix=SUFFIX'. Optional Features ================= Some packages pay attention to `--enable-FEATURE' options to `configure', where FEATURE indicates an optional part of the package. They may also pay attention to `--with-PACKAGE' options, where PACKAGE is something like `gnu-as' or `x' (for the X Window System). The `README' should mention any `--enable-' and `--with-' options that the package recognizes. For packages that use the X Window System, `configure' can usually find the X include and library files automatically, but if it doesn't, you can use the `configure' options `--x-includes=DIR' and `--x-libraries=DIR' to specify their locations. Particular systems ================== On HP-UX, the default C compiler is not ANSI C compatible. If GNU CC is not installed, it is recommended to use the following options in order to use an ANSI C compiler: ./configure CC="cc -Ae" and if that doesn't work, install pre-built binaries of GCC for HP-UX. On OSF/1 a.k.a. Tru64, some versions of the default C compiler cannot parse its `' header file. The option `-nodtk' can be used as a workaround. If GNU CC is not installed, it is therefore recommended to try ./configure CC="cc" and if that doesn't work, try ./configure CC="cc -nodtk" Specifying the System Type ========================== There may be some features `configure' cannot figure out automatically, but needs to determine by the type of machine the package will run on. Usually, assuming the package is built to be run on the _same_ architectures, `configure' can figure that out, but if it prints a message saying it cannot guess the machine type, give it the `--build=TYPE' option. TYPE can either be a short name for the system type, such as `sun4', or a canonical name which has the form: CPU-COMPANY-SYSTEM where SYSTEM can have one of these forms: OS KERNEL-OS See the file `config.sub' for the possible values of each field. If `config.sub' isn't included in this package, then this package doesn't need to know the machine type. If you are _building_ compiler tools for cross-compiling, you should use the option `--target=TYPE' to select the type of system they will produce code for. If you want to _use_ a cross compiler, that generates code for a platform different from the build platform, you should specify the "host" platform (i.e., that on which the generated programs will eventually be run) with `--host=TYPE'. Sharing Defaults ================ If you want to set default values for `configure' scripts to share, you can create a site shell script called `config.site' that gives default values for variables like `CC', `cache_file', and `prefix'. `configure' looks for `PREFIX/share/config.site' if it exists, then `PREFIX/etc/config.site' if it exists. Or, you can set the `CONFIG_SITE' environment variable to the location of the site script. A warning: not all `configure' scripts look for a site script. Defining Variables ================== Variables not defined in a site shell script can be set in the environment passed to `configure'. However, some packages may run configure again during the build, and the customized values of these variables may be lost. In order to avoid this problem, you should set them in the `configure' command line, using `VAR=value'. For example: ./configure CC=/usr/local2/bin/gcc causes the specified `gcc' to be used as the C compiler (unless it is overridden in the site shell script). Unfortunately, this technique does not work for `CONFIG_SHELL' due to an Autoconf bug. Until the bug is fixed you can use this workaround: CONFIG_SHELL=/bin/bash /bin/bash ./configure CONFIG_SHELL=/bin/bash `configure' Invocation ====================== `configure' recognizes the following options to control how it operates. `--help' `-h' Print a summary of all of the options to `configure', and exit. `--help=short' `--help=recursive' Print a summary of the options unique to this package's `configure', and exit. The `short' variant lists options used only in the top level, while the `recursive' variant lists options also present in any nested packages. `--version' `-V' Print the version of Autoconf used to generate the `configure' script, and exit. `--cache-file=FILE' Enable the cache: use and save the results of the tests in FILE, traditionally `config.cache'. FILE defaults to `/dev/null' to disable caching. `--config-cache' `-C' Alias for `--cache-file=config.cache'. `--quiet' `--silent' `-q' Do not print messages saying which checks are being made. To suppress all normal output, redirect it to `/dev/null' (any error messages will still be shown). `--srcdir=DIR' Look for the package's source code in directory DIR. Usually `configure' can determine that directory automatically. `--prefix=DIR' Use DIR as the installation prefix. *Note Installation Names:: for more details, including other options available for fine-tuning the installation locations. `--no-create' `-n' Run the configure checks, but stop before creating any output files. `configure' also accepts some other, not widely useful, options. Run `configure --help' for more details. fische-3.2/configure.ac0000644000175000017500000000103011514105417012017 00000000000000dnl Process this file with autoconf to produce a configure script. dnl Created by Anjuta application wizard. AC_INIT(fische, 3.2) AM_INIT_AUTOMAKE(AC_PACKAGE_NAME, AC_PACKAGE_VERSION) AC_CONFIG_HEADERS([config.h]) AC_ISC_POSIX AC_PROG_CXX AM_PROG_CC_STDC AC_HEADER_STDC AM_PROG_LIBTOOL AC_CHECK_HEADERS(alsa/asoundlib.h pulse/simple.h portaudio.h) AC_CHECK_LIB(asound, snd_pcm_open) AC_CHECK_LIB(pulse-simple, pa_simple_new) AC_CHECK_LIB(portaudio, Pa_Initialize) PKG_CHECK_MODULES(SDL, sdl) AC_OUTPUT([ Makefile src/Makefile ]) fische-3.2/config.h.in0000644000175000017500000000420011514105610011551 00000000000000/* config.h.in. Generated from configure.ac by autoheader. */ /* Define to 1 if you have the header file. */ #undef HAVE_ALSA_ASOUNDLIB_H /* Define to 1 if you have the header file. */ #undef HAVE_DLFCN_H /* Define to 1 if you have the header file. */ #undef HAVE_INTTYPES_H /* Define to 1 if you have the `asound' library (-lasound). */ #undef HAVE_LIBASOUND /* Define to 1 if you have the `portaudio' library (-lportaudio). */ #undef HAVE_LIBPORTAUDIO /* Define to 1 if you have the `pulse-simple' library (-lpulse-simple). */ #undef HAVE_LIBPULSE_SIMPLE /* Define to 1 if you have the header file. */ #undef HAVE_MEMORY_H /* Define to 1 if you have the header file. */ #undef HAVE_PORTAUDIO_H /* Define to 1 if you have the header file. */ #undef HAVE_PULSE_SIMPLE_H /* Define to 1 if you have the header file. */ #undef HAVE_STDINT_H /* Define to 1 if you have the header file. */ #undef HAVE_STDLIB_H /* Define to 1 if you have the header file. */ #undef HAVE_STRINGS_H /* Define to 1 if you have the header file. */ #undef HAVE_STRING_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_STAT_H /* Define to 1 if you have the header file. */ #undef HAVE_SYS_TYPES_H /* Define to 1 if you have the header file. */ #undef HAVE_UNISTD_H /* Define to the sub-directory in which libtool stores uninstalled libraries. */ #undef LT_OBJDIR /* Name of package */ #undef PACKAGE /* Define to the address where bug reports for this package should be sent. */ #undef PACKAGE_BUGREPORT /* Define to the full name of this package. */ #undef PACKAGE_NAME /* Define to the full name and version of this package. */ #undef PACKAGE_STRING /* Define to the one symbol short name of this package. */ #undef PACKAGE_TARNAME /* Define to the home page for this package. */ #undef PACKAGE_URL /* Define to the version of this package. */ #undef PACKAGE_VERSION /* Define to 1 if you have the ANSI C header files. */ #undef STDC_HEADERS /* Version number of package */ #undef VERSION fische-3.2/Makefile.am0000644000175000017500000000041111456057072011577 00000000000000## Process this file with automake to produce Makefile.in ## Created by Anjuta SUBDIRS = src EXTRA_DIST = $(doc_DATA)\ $(man1_MANS)\ macosx/fische\ windows/fische.exe man1_MANS = fische.man doc_DATA = \ AUTHORS\ README docdir = \ $(datadir)/doc/fische fische-3.2/missing0000644000175000017500000002557711456057072011163 00000000000000#! /bin/sh # Common stub for a few missing GNU programs while installing. scriptversion=2006-05-10.23 # Copyright (C) 1996, 1997, 1999, 2000, 2002, 2003, 2004, 2005, 2006 # Free Software Foundation, Inc. # Originally by Fran,cois Pinard , 1996. # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2, or (at your option) # any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA # 02110-1301, USA. # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. if test $# -eq 0; then echo 1>&2 "Try \`$0 --help' for more information" exit 1 fi run=: sed_output='s/.* --output[ =]\([^ ]*\).*/\1/p' sed_minuso='s/.* -o \([^ ]*\).*/\1/p' # In the cases where this matters, `missing' is being run in the # srcdir already. if test -f configure.ac; then configure_ac=configure.ac else configure_ac=configure.in fi msg="missing on your system" case $1 in --run) # Try to run requested program, and just exit if it succeeds. run= shift "$@" && exit 0 # Exit code 63 means version mismatch. This often happens # when the user try to use an ancient version of a tool on # a file that requires a minimum version. In this case we # we should proceed has if the program had been absent, or # if --run hadn't been passed. if test $? = 63; then run=: msg="probably too old" fi ;; -h|--h|--he|--hel|--help) echo "\ $0 [OPTION]... PROGRAM [ARGUMENT]... Handle \`PROGRAM [ARGUMENT]...' for when PROGRAM is missing, or return an error status if there is no known handling for PROGRAM. Options: -h, --help display this help and exit -v, --version output version information and exit --run try to run the given command, and emulate it if it fails Supported PROGRAM values: aclocal touch file \`aclocal.m4' autoconf touch file \`configure' autoheader touch file \`config.h.in' autom4te touch the output file, or create a stub one automake touch all \`Makefile.in' files bison create \`y.tab.[ch]', if possible, from existing .[ch] flex create \`lex.yy.c', if possible, from existing .c help2man touch the output file lex create \`lex.yy.c', if possible, from existing .c makeinfo touch the output file tar try tar, gnutar, gtar, then tar without non-portable flags yacc create \`y.tab.[ch]', if possible, from existing .[ch] Send bug reports to ." exit $? ;; -v|--v|--ve|--ver|--vers|--versi|--versio|--version) echo "missing $scriptversion (GNU Automake)" exit $? ;; -*) echo 1>&2 "$0: Unknown \`$1' option" echo 1>&2 "Try \`$0 --help' for more information" exit 1 ;; esac # Now exit if we have it, but it failed. Also exit now if we # don't have it and --version was passed (most likely to detect # the program). case $1 in lex|yacc) # Not GNU programs, they don't have --version. ;; tar) if test -n "$run"; then echo 1>&2 "ERROR: \`tar' requires --run" exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then exit 1 fi ;; *) if test -z "$run" && ($1 --version) > /dev/null 2>&1; then # We have it, but it failed. exit 1 elif test "x$2" = "x--version" || test "x$2" = "x--help"; then # Could not run --version or --help. This is probably someone # running `$TOOL --version' or `$TOOL --help' to check whether # $TOOL exists and not knowing $TOOL uses missing. exit 1 fi ;; esac # If it does not exist, or fails to run (possibly an outdated version), # try to emulate it. case $1 in aclocal*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." touch aclocal.m4 ;; autoconf) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." touch configure ;; autoheader) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`acconfig.h' or \`${configure_ac}'. You might want to install the \`Autoconf' and \`GNU m4' packages. Grab them from any GNU archive site." files=`sed -n 's/^[ ]*A[CM]_CONFIG_HEADER(\([^)]*\)).*/\1/p' ${configure_ac}` test -z "$files" && files="config.h" touch_files= for f in $files; do case $f in *:*) touch_files="$touch_files "`echo "$f" | sed -e 's/^[^:]*://' -e 's/:.*//'`;; *) touch_files="$touch_files $f.in";; esac done touch $touch_files ;; automake*) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified \`Makefile.am', \`acinclude.m4' or \`${configure_ac}'. You might want to install the \`Automake' and \`Perl' packages. Grab them from any GNU archive site." find . -type f -name Makefile.am -print | sed 's/\.am$/.in/' | while read f; do touch "$f"; done ;; autom4te) echo 1>&2 "\ WARNING: \`$1' is needed, but is $msg. You might have modified some files without having the proper tools for further handling them. You can get \`$1' as part of \`Autoconf' from any GNU archive site." file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo "#! /bin/sh" echo "# Created by GNU Automake missing as a replacement of" echo "# $ $@" echo "exit 0" chmod +x $file exit 1 fi ;; bison|yacc) echo 1>&2 "\ WARNING: \`$1' $msg. You should only need it if you modified a \`.y' file. You may need the \`Bison' package in order for those modifications to take effect. You can get \`Bison' from any GNU archive site." rm -f y.tab.c y.tab.h if test $# -ne 1; then eval LASTARG="\${$#}" case $LASTARG in *.y) SRCFILE=`echo "$LASTARG" | sed 's/y$/c/'` if test -f "$SRCFILE"; then cp "$SRCFILE" y.tab.c fi SRCFILE=`echo "$LASTARG" | sed 's/y$/h/'` if test -f "$SRCFILE"; then cp "$SRCFILE" y.tab.h fi ;; esac fi if test ! -f y.tab.h; then echo >y.tab.h fi if test ! -f y.tab.c; then echo 'main() { return 0; }' >y.tab.c fi ;; lex|flex) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.l' file. You may need the \`Flex' package in order for those modifications to take effect. You can get \`Flex' from any GNU archive site." rm -f lex.yy.c if test $# -ne 1; then eval LASTARG="\${$#}" case $LASTARG in *.l) SRCFILE=`echo "$LASTARG" | sed 's/l$/c/'` if test -f "$SRCFILE"; then cp "$SRCFILE" lex.yy.c fi ;; esac fi if test ! -f lex.yy.c; then echo 'main() { return 0; }' >lex.yy.c fi ;; help2man) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a dependency of a manual page. You may need the \`Help2man' package in order for those modifications to take effect. You can get \`Help2man' from any GNU archive site." file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -f "$file"; then touch $file else test -z "$file" || exec >$file echo ".ab help2man is required to generate this page" exit 1 fi ;; makeinfo) echo 1>&2 "\ WARNING: \`$1' is $msg. You should only need it if you modified a \`.texi' or \`.texinfo' file, or any other file indirectly affecting the aspect of the manual. The spurious call might also be the consequence of using a buggy \`make' (AIX, DU, IRIX). You might want to install the \`Texinfo' package or the \`GNU make' package. Grab either from any GNU archive site." # The file to touch is that specified with -o ... file=`echo "$*" | sed -n "$sed_output"` test -z "$file" && file=`echo "$*" | sed -n "$sed_minuso"` if test -z "$file"; then # ... or it is the one specified with @setfilename ... infile=`echo "$*" | sed 's/.* \([^ ]*\) *$/\1/'` file=`sed -n ' /^@setfilename/{ s/.* \([^ ]*\) *$/\1/ p q }' $infile` # ... or it is derived from the source name (dir/f.texi becomes f.info) test -z "$file" && file=`echo "$infile" | sed 's,.*/,,;s,.[^.]*$,,'`.info fi # If the file does not exist, the user really needs makeinfo; # let's fail without touching anything. test -f $file || exit 1 touch $file ;; tar) shift # We have already tried tar in the generic part. # Look for gnutar/gtar before invocation to avoid ugly error # messages. if (gnutar --version > /dev/null 2>&1); then gnutar "$@" && exit 0 fi if (gtar --version > /dev/null 2>&1); then gtar "$@" && exit 0 fi firstarg="$1" if shift; then case $firstarg in *o*) firstarg=`echo "$firstarg" | sed s/o//` tar "$firstarg" "$@" && exit 0 ;; esac case $firstarg in *h*) firstarg=`echo "$firstarg" | sed s/h//` tar "$firstarg" "$@" && exit 0 ;; esac fi echo 1>&2 "\ WARNING: I can't seem to be able to run \`tar' with the given arguments. You may want to install GNU tar or Free paxutils, or check the command line arguments." exit 1 ;; *) echo 1>&2 "\ WARNING: \`$1' is needed, and is $msg. You might have modified some files without having the proper tools for further handling them. Check the \`README' file, it often tells you about the needed prerequisites for installing this package. You may also peek at any GNU archive site, in case some other package would contain this missing \`$1' program." exit 1 ;; esac exit 0 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-end: "$" # End: fische-3.2/macosx/0000755000175000017500000000000011515541151011111 500000000000000fische-3.2/macosx/fische0000755000175000017500000024346011515540757012244 00000000000000Îúíþ<… 8__PAGEZEROœ__TEXTðð __text__TEXT&›€__cstring__TEXT¤ÁP¤±__StaticInit__TEXTÛË€__eh_frame__TEXTápÑ h__constructor__TEXT„ò„â__destructor__TEXT„ò„â__textcoal_nt__TEXTò¶ â €__literal8__TEXTHþ Hî__const__TEXTpÿpï__DATAð__data__DATAð__dyld__DATAñ__mod_init_func__DATA0ñ __gcc_except_tab__DATALÈLñ__cfstring__DATAÀö__bss__DATAà-__common__DATA4À__IMPORT__pointers__IMPORTd__jump_table__IMPORTd…d„Ì__OBJC __cat_cls_meth__OBJC __cat_inst_meth__OBJC (__string_object__OBJC( (__cstring_object__OBJC( (__message_refs__OBJC( €(__sel_fixup__OBJC¨ ¨__cls_refs__OBJC¨ ¨__class__OBJCà 0à__meta_class__OBJC !0 __cls_meth__OBJCP!P__inst_meth__OBJC`!,`__protocol__OBJCŒ!Œ__category__OBJCŒ!8Œ__class_vars__OBJCÄ!Ä__instance_vars__OBJCÄ!Ä__module_info__OBJCÄ!Ä__symbols__OBJCÔ!Ô__protocol_ext__OBJCì!ì__class_ext__OBJCì!ì__property__OBJCì!ì__image_info__OBJCì!ì8__LINKEDIT00' 0' /usr/lib/dyld 4XáG X/usr/lib/libSystem.B.dylib <·­M/usr/local/lib/libportaudio.2.dylib TXáG/System/Library/Frameworks/IOKit.framework/Versions/A/IOKit Há{L /opt/i686-apple-darwin9/lib/libSDL-1.2.0.dylib Tb6H /System/Library/Frameworks/Cocoa.framework/Versions/A/Cocoa Xb6H/System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL \XáG/System/Library/Frameworks/AudioUnit.framework/Versions/A/AudioUnit Xb6H€/System/Library/Frameworks/Carbon.framework/Versions/A/Carbon dXáG/System/Library/Frameworks/AudioToolbox.framework/Versions/A/AudioToolbox \XáG/System/Library/Frameworks/CoreAudio.framework/Versions/A/CoreAudio 4XáG/usr/lib/libstdc++.6.dylib 4o(F/usr/lib/libgcc_s.1.dylib Ã.( P<<‡ +š@+ $)‡¨ØQŠ‹NÉvnŽ)P&j‰åƒäðƒì‹]‰\$M‰L$ƒÃÁãˉ\$èôU‰åWVSƒì,‹} ‹]‹E£ ‰=‰‹…Éu¹¤Áë‰ÊëþÿÿÉÃU‰åSƒì$è[‹E‰EìÇEðƒ.⋉D$Eì‰$è þÿÿƒÄ$[ÉÃèYU‰åËØ‰EÉé}â„U‰åƒì‰]øè[‰uü‹³Òáƒö“‰D$‰4$è<â‰$è>âƒ&”‰D$‰4$è"â‰$è$âÇ$èÜáUfWÛ‰åW1ÿVSè[ƒì<‹u ë7fD¿“ÏЃÇò*ÀƒÏÐfT¿FƒÆòXØò*ÀfTòXØ‹U‹ò]ȉ$èý7ò]ȉÂÁêÂÑú9×|«‹Uòƒ¯Ïf(Ëf(Óò‹§ÏfTÑf(ÙfUØfVÚ‹ò]ȉ$è°7ò]Èò*Àò^ØòXÛòY›·Ïò$èeáÝ]àòEàòYƒ¿ÏòEàÝEàƒÄ<[^_ÉÃfDfDU‰åƒì(‰}ü‹}‰uøwD‹WD‹F‰4$‰T$‰D$èLáE÷‰D$‹F‰D$‹GD‰$è=á‹GD…Àt‰$èá‹uø‹}üÉÄU‰åÉé—ÿÿÿfDU‰åƒì‰]øè[‰uü‹³Ð…öt‰4$èÌÿÿÿ‰4$èÎàǃЋuü‹]øÉÃfU‰åƒì8‰uø‹u‰}ü‰]ô~DÇFDÇGÇGÇ$°èÊ7‰ÇD$Ç$èÄ)fWÀ‰FòF òFòFòF$òF,ÇFòF4ÇF<‹]ô‹uø‹}üÉÉÆEç‰D$‹G‰D$‹‰$è*à‹…Àt‰$èà‰4$èûßfDU‰åÉé7ÿÿÿfDU‰åƒì(‰]ôè[‰uø‰}ü‹ƒòÎ…Àt‹ƒò΋]ô‹uø‹}üÉÃÇ$PèÌ߉$‰Çèªÿÿÿ‰»ò΋ƒò΋]ô‹uø‹}üÉÉƉ<$èƒß‰4$èvßU‰åWVSƒìL‹Uè[JD‹A+BDÁøƒø† EØÇEØÇEÜÇEà‰L$‰$è>ß‹EÜ‹U؉EÄ9‰UÀtS)Ð1ÒÁøƒøtf„ÑøBƒøuøÒ‰T$‹EĉD$‹UÀ‰$èïÞ‹EĉD$‹UÀ‰$è’Þ‹EÜ‹U؉EĉUÀ‹EÄ+EÀÁøƒø†›‹UÀ1ö‰Ç9þfWÉ‹MÀ‹R8ÇEÔ‰UÐs'‹+EЉÂÁú1Ð)Ѓø ò*ÿEÔòXÈFƒÁ9þrÚEçò*EÔò^ÈòMȉD$‹EĉD$‹UÀ‰$èaÞ‹EØ…Àt‰$è>ÞÝEȃÄL[^_ÉÃfWÀòEÈÝEȃÄL[^_Éщ$è4Þ‰ÆEç‰D$‹E܉D$‹E؉$è Þ‹EØ…Àt‰$èç݉4$èÚÝ@U‰åWVSƒìL‹uè[‹ÿF<‰$è3‰4$‰D$èEûÿÿÝ]ÐòN f.‹Ë…¿йòEÐò“7ËòF ò›?Ë‹F<òYVòEÐ+F@ò\F fTƒOÌòYÃòXÐòVƒøZ<‹Fƒø„Œ ƒøòMÐòƒgËòY‹oËòYFòXÁòN òFòXNf.Ȇʃ~„Ì1ÀÇFéÅfòEÐò“7Ëò›?ËòYÊòYÃòXÈòN é6ÿÿÿDòV òNf(ÂòXÁf.EЇcfWÀf.È…ÕŠÏò‹ËòMÈòN$f.È…ƒŠ}òEÈò“GËòF$ò›OË‹F<~DòYV,+F@òF$ò\EÈÇFfTƒOÌòYÃòXÐòV,‰Eä‹W;W„Á…Òt‰‹WƒÂ‰W‹)ÂÁúƒú‡‘‹F<‰F@òMÐòN‰4$èIüÿÿÝ]ÀòV4ò]Àf.“Ëzt f(Âò^Ãf.ƒWË‚ f.„ò^4òƒ_ËòV$òN,ò]ÈòYÁ¸òXÂf.ØwDf(Á°òXÁòXÂf.Øw01ÀòXÑf.Ú—ÀƒÄL[@^_ÉÀ1ÀòƒwËf.EЖÀHƒÄL[^_ÉÃDFD‹NDÇF4ÇF8‹P‰$‰L$‰T$èíÚé˜ýÿÿ@òEÈò“GËò›OËòYÊòYÃòXÈòN$érþÿÿDò]Ðò\Úò^Ùò]Èé'þÿÿf„Šúþÿÿf(ËòƒWËò^Êf.Á†àþÿÿòXÒòƒ_ËòXÚò^Øò^4éÏþÿÿf‰D$‰<$èîÙé^þÿÿEä‰T$‰D$‰<$èÚ‹Wé3þÿÿ1ÀÇFéùþÿÿU‰åWVSè[ƒì‹uÇD$ÇD$ÈÇ$,è¢;‰FÇD$ÇD$ÈÇ$,èCO‰‹F‰$è4‰Ç‹‰$èz=‰ú)‰ÐÁèÐÑø‰F‹F‰$èÏ3‰Ç‹‰$èc=‰ú)‰ÐÁèÐÑø‰F ‹‰$è9=‰F‹‰$è<=‰F¯FÁà‰$èÇØ…À‰Ft"ÇD$Ç$è"‹@ ‰FƒÄ[^_ÉÃ͋‰D$‹ƒÙ‰$èŸØ‰$è¡ØÇ$èYØ@U‰åÉé×þÿÿfDU‰åVƒì‹u‹F‰$èCØÇFƒÄ^ÉÀ€U‰åÉéÇÿÿÿfDU‰åƒì(‰]ôè[‰uø‰}ü‹ƒ¦Ç…Àt‹ƒ¦Ç‹]ô‹uø‹}üÉÃÇ$ è|؉$‰Çèjÿÿÿ‰»¦Ç‹ƒ¦Ç‹]ô‹uø‹}üÉÉƉ<$è3؉4$è&ØU‰åƒì‰]øè[‰uü‹³6Ç…öt‰4$è\ÿÿÿ‰4$èþ×ǃ6Ç‹uü‹]øÉÃfU‰åWVƒì ‹u‹F‰$è:2‰Eì‹F‰Eð‹F‰$è2‰Eô‹V…Ò ƒÄ ^_ÉÃD1ÿ€€‹Mì‰úV ¯Uô‹FV‘‰$ …‹Uð¯ÇG‰L$‚‰D$è‘×9~ÅƒÄ ^_ÉÀ€U‰åVSƒì‹uè[‹F‰$è”1‰ƒ`Í‹F‰ƒdÍ‹F ‰ƒhÍ‹Fǃp͉ƒlÍ‹F‰ƒtÍ‹F‰$èE1‰ƒ€Í‹‰$è¥:‰ƒxÍ‹F‰ƒ|̓`͉EƒÄ[^Éé"9fU‰åWVSƒì<‹E‰eØè[‹@ƒø‰EÜ~ ÇEܸƒàƒøƒUÜÿ‹UÜ‹MÜJ•"Òƒàð•B)ăâðD$)ÔT$…ɉEÔ‰UЋeØeô[^_ÉÃDfD‰Ö‰EäÇEàëf‰}à‹U‹B‰$è0‰‹U‹B‰F‹B ‰F‹B‰F ‹B‰$èM0‰F ‹U‹‰$è­9‰F‹U‹B‰F‹E‹Uà¯P‰ÐÁú÷}܉F‹}à‹EG‰ú¯P‰ÐÁú÷}܉F‹UàÒ‹UЂ‰D$‹ƒÈÕ‰$èÂÕ‹UäƒÆ$‰ƒÂ9}܉Uä…Oÿÿÿ‹uÔ1ÿf.„ÇD$‹‰$èÕGƒÆ9}Üuå‹eØeô[^_ÉËe؉$è4Õ€€U‰åVƒì‹u‹F‰$è‹/ƒ~t%‰4$èMþÿÿ‰4$èýÿÿ‹F‰EƒÄ^Éé…/D‰4$è˜ýÿÿ‰4$èðüÿÿ‹F‰EƒÄ^Éé`/U‰åƒì‹E‹P¯P‹@ÇD$Áâ‰T$‰$èÈÔÉÃ@èYU‰å›Ê‰EÉé-ÔU¹‰åƒì ‰]ôè[‰uø‹u ü‰}üÇEðƒm†‰Çó¦¸t ¶Fÿ¶Oÿ)È…À‹E”@$‹]ô‹uø‹}üÉÃfDfDU‰å‹E€x”@ÉÃU‰åƒì ‰uø1ö‹E‰}ü‰ñ‰òS‰ó¢‰Þ[‰×‹U ‰Mô‰‹E‰0‹E‰‹E‰8‹uø‹}üÉÃfU‰åWVSè[ì¬MàUÜEØuä‰EĉD$‰UÀ‰T$ ‰M¼‰L$‰u¸‰t$Ç$èzÿÿÿEËÇD$‹}¼‰|$»Ý…‰E¤‰$èÔEÏÇD$‹Uĉ$‰T$èûÓEÓÇD$‹MÀ‰$‰L$èáӃͅÆE׉D$‹ƒÕÒ‰$è­Ò‹u¤‰t$‰$èžÒ‰$è Ò¹ üÇE´ ‰}”ó¦¸t ¶Fÿ¶Oÿ)È…ÀuI‹MĉL$‹uÀ‰t$ ‹}¼‰|$‹E¸Ç$€‰D$è¡þÿÿ}䀇„Ĭ¸[^_ÉÃ@‹uĉt$‹}À‰|$ ‹E¼‰D$‹U¸Ç$‰T$èXþÿÿƒ}äv¾‰|$ ‰t$‹M¼‰L$‹u¸Ç$‰t$è0þÿÿ‹EäĬ[^_ÉÁè@À€‹Uĉt$ ‰|$‰T$‹M¸Ç$€‰L$èîýÿÿ¶EÜĬ[^_É@À€èYU‰åȉEÉémÑ„U‰åWVSè[ƒì‹³Åл]„‰4$è=у݃‰D$‰4$è!щ$è#у)„‰D$‰4$èщ$è щ4$èуQ„‰D$‰4$èåЉ$èçЉ|$‰4$èÑЉ$èÓЃ±„‰D$‰4$è·Ð‰$è¹Ðƒý„‰D$‰4$èЉ$èŸÐƒE…‰D$‰4$èƒÐ‰$è…Љ|$‰4$èoЉ$èqЃq…‰D$‰4$èUЉ$èWЃ½…‰D$‰4$è;Љ$è=Ѓ †‰D$‰4$è!Љ$è#Ѓ=†‰D$‰4$èЉ$è Ѓ‰†‰D$‰4$èíω$èïσÁ†‰D$‰4$èÓω$èÕσ‡‰D$‰4$è¹Ï‰$è»Ï‰|$‰4$è¥Ï‰$è§ÏƒU‡‰D$‰4$è‹Ï‰$èσ¡‡‰D$‰4$èqω$èsω|$‰4$è]ω$è_σه‰D$‰4$èCω$èEσ%ˆ‰D$‰4$è)ω$è+σqˆ‰D$‰4$èω$èσ½ˆ‰D$‰4$èõΉ$è÷Ή|$‰4$èáΉ$èã΃ñˆ‰D$‰4$èÇΉ$èÉ΃A‰‰D$‰4$è­Î‰$è¯Î‰|$‰4$è™Î‰$è›Îƒ…‰‰D$‰4$èΉ$è΃щ‰D$‰4$èeΉ$èg΃!ЉD$‰4$èKΉ$èMΉ|$‰4$è7Ή$è9΃eЉD$‰4$èΉ$è΃±Š‰D$‰4$èΉ$èΉ|$‰4$èï͉$èñ̓ýЉD$‰4$èÕ͉$è×̓M‹‰D$‰4$è»Í‰$è½Í‰|$‰4$è§Í‰$è©Íƒ‘‹‰D$‰4$è͉$è̓ы‰D$‰4$ès͉$èu͉|$‰4$è_͉$èa̓Œ‰D$‰4$èE͉$èG͉|$‰4$è1͉$è3̓]Œ‰D$‰4$è͉$è͉|$‰4$è͉$è̓‰Œ‰D$‰4$èé̉$èë̉|$‰4$èÕ̉$è×ÌÇ$èÌf.„U‰åVSƒì‹uÇD$@‹E è[‰D$‹‰$è¤Íƒˆ‹6‰D$‹ƒ̉$èr̉t$‰$èfÌ“Aˆ‰T$‰$èT̉EƒÄ[^ÉéPÌU¹‰åƒìh‰]ô‹U è[‹E‰}üü‰uø‰Eä‰Ö‰Uà»Ú‡‰}Ôó¦¸t ¶Fÿ¶Oÿ)È…À…ƒ‹}äÇG(‹Uä‹B(ƒø„ºƒø„á…Àu-ƒˆ‰D$‹ƒªË‰$è»Ë‹]ô‹uø‹}ü‰EÉé³Ëƒfˆ‰D$‹ƒªË‰$èŽË‹]ô‹uø‹}ü‰EÉé†ËfD‹uà»â‡¹ü‰}Ôó¦¸t ¶Fÿ¶Oÿ)È…À…}‹}äÇG(‹Uä‹B(ƒø…Pÿÿÿf.„ƒJˆ‰D$‹ƒªË‰$èË‹]ô‹uø‹}ü‰EÉéËfDƒ2ˆ‰D$‹ƒªË‰$èÞÊ‹]ô‹uø‹}ü‰EÉéÖÊ‹uàƒê‡¹ ü‰Çó¦¸t ¶Fÿ¶Oÿ)È…Àu‹}äÇG(é¦þÿÿ‹uàƒö‡¹ü‰Çó¦¸t ¶Fÿ¶Oÿ)È…Àu‹}äÇG(éoþÿÿƒþ‡‰D$‹ƒªË‰$èFÊ‹Uà‰T$‰$è7Ê“ˆ‰T$‰$è%ʉ$è'ÊÇ$èßÉf.„U‰åƒìx‰]ô‹Eè[‹U ü‰uø‰}ü‰Eä‰ÖÇEà‹_|‰Ï¹ó¦¸t ¶Fÿ¶Oÿ)È…Àt‹uäÆF‹]ô‹uø‹}üÉÃf‹MäƒO†ÆA‰D$‹ƒoɉ$è‡É‹]ô‹uø‹}ü‰EÉéÉ€€U‰åƒìx‰]ô‹Eè[‹U ü‰uø‰}ü‰Eä‰ÖÇEà‹¿{‰Ï¹ó¦¸t ¶Fÿ¶Oÿ)È…Àt‹uäÆF‹]ô‹uø‹}üÉÃf‹MäƒÃ…ÆA‰D$‹ƒÏȉ$èçÈ‹]ô‹uø‹}ü‰EÉéßÈ€€U‰åƒìx‰]ô‹Eè[‹U ü‰uø‰}ü‰Eä‰ÖÇEà‹{‰Ï¹ó¦¸t ¶Fÿ¶Oÿ)È…Àt‹uäÆF‹]ô‹uø‹}üÉÃf‹Mäƒ3…ÆA‰D$‹ƒ/ȉ$èGÈ‹]ô‹uø‹}ü‰EÉé?È€€U‰åWVSè[ƒì,‹} ‹uÇD$x‰<$è°È…À„6F‰D$ F‰D$ƒõ„‰<$‰D$èœÈ‹~Gð=ðw‹Fƒø‰Eä·ƒý„‰D$‹ƒÇ‰$è¥Ç‰$è§Ç‰4$è?öÿÿ‹~‹v‰u䃅‰D$‹ƒ•lj$ètlj‹‹@ô‹D ¨@u¨„‡‰$‰|$èAȉƒA…‰$‰D$è=lj‹‹@ô‹D ¨@u¨t4‹Eä‰$‰D$è ȉEƒÄ,[^_ÉéÇfD=Žoÿÿÿé9ÿÿÿ‹Eä‰$‰D$è´Ç‰EƒÄ,[^_ÉéâÆf‰$‰|$è—ljÂétÿÿÿƒÍ„‰D$‹ƒÇ‰$è«Æ‰|$‰$èŸÆ“Õ„‰T$‰$èÆ‰$èÆ‰4$è'õÿÿéþÿÿfU¹‰åWVSè[ƒì\‹U ‹Eü‰Uà‰Ö‰Eä»”ƒ‰}Ôó¦¸t ¶Fÿ¶Oÿ)È…Àu ƒÄ\[^_ÉÃDÇD$x‹}à‰<$èÂÆ…À„©‹EäƒÀ‰D$ ‹EäƒÀ ‰D$ƒ@ƒ‰D$‹Uà‰$è¥Æ‹}ä‹w Fð=ðw ‹Gƒø0ƒÈƒ‰D$‹ƒèʼn$è®Å‰$è°Å‹Eä‰$èEôÿÿ‹Uä‹r ‹}ä;wŒ“‰ø‹;xŒ…ƒP„‰D$‹ƒàʼn$ècʼn‹‹@ô‹D ¨@u¨„׉$‰t$è0ƉƒŒƒ‰$‰D$è,ʼn‹‹@ô‹D ¨@u¨„‰|$‰$èùʼnEƒÄ\[^_ÉéÅ@‹³èŃðƒ‰D$‰4$èÞĉ$èàă(„‰4$‰D$èÄĉ$èÆÄ‹Uä‰$è[óÿÿ‹}ä‹w ‹é(ÿÿÿfD€=ŽöþÿÿéÀþÿÿ‰|$‰$èGÅélÿÿÿ‰$‰t$è6ʼnÂé$ÿÿÿƒƒ‰D$‹ƒèʼn$èJĉ|$‰$è>Ä“ ƒ‰T$‰$è,ĉ$è.Ä‹Eä‰$èÃòÿÿé þÿÿ€€U‰åVSè[ƒì‹uF‰D$ƒ ‚‰D$‹E ‰$èœÄƒ‚‹v‰D$‹ƒvÉ$è¾Ã‰Â‹‹@ô‹D ¨@u¨t%‰t$‰$èĉEƒÄ[^Éé›ÃDfD‰t$‰$èGĉEƒÄ[^ÉévÃfDU‰åWVSè[ì,‹EÆ@-Æ@.ƒ‰$è5Ä…À‰Æ„Zƒ•‰D$‹ƒÕÂ}؉$èÉ$èÃEã‰D$ƒµ‰D$‰<$è®ÃEä‰t$u܉D$‰4$è˜ÃUÔ‰•úÿÿ‰|$‰t$‰$èkËu܃ì‹»åƒî 9þ‰½4úÿÿ…³‹EØpô9µ4úÿÿ…f‹EÔ•<úÿÿÇD$‰•$úÿÿ‰$‰D$èÃ…”úÿÿ‰…(úÿÿ‰$èKÄÀ„TƒÁ‰D$‹ƒÕ•Húÿÿ‰• úÿÿ‰$è4‹½úÿÿ‰$‰|$èÉ$è$Â…Ôþÿÿ•Ôüÿÿ½Ôýÿÿ‰…0úÿÿ‰•úÿÿ‰½úÿÿ‹…<úÿÿ•Húÿÿ‹@ô…$úÿÿÇD$ ‰• úÿÿ‰$èè¾À‹½0úÿÿ‰D$ ‹…$úÿÿÇD$‰|$‰$è²Â‹Bôö@…ã‹…0úÿÿ‰$èmƒøvŒ€½Ôþÿÿ#tƒƒå‹•úÿÿ‹½úÿÿ‰D$‹…0úÿÿ‰T$ ‰|$‰$苵úÿÿ“‰€ü¹ ‰×ó¦¸t ¶Fÿ¶Oÿ)È…À…X‹½úÿÿ‹E‰|$‰$èãøÿÿéÿÿÿ•Húÿÿ‰• úÿÿ‹ƒý‹½ úÿÿƒÀ ‰…<úÿÿ‹ƒý‰<$ƒÀ4‰…Lüÿÿ‹ƒýƒÀ ‰…Dúÿÿ‹ƒùƒÀ‰…HúÿÿèvÁ‹…(úÿÿ‰$è@Á‹ƒõƒÀ‰…Húÿÿ…dúÿÿ‰$è‚Á‹“í‹B‰…<úÿÿ‹Hô‹B‰„ <úÿÿ‹B‰…Dúÿÿ‹B‰…Dúÿÿ‹Hô‹B‰„ Dúÿÿ‹B‰…<úÿÿ‹Hô‹B •Lüÿÿ‰$‰„ <úÿÿ‹ƒéÂÇ…@úÿÿƒÀ‰…LüÿÿèÉÀ‹uÔƒî 9µ4úÿÿt&FÇD$ÿÿÿÿ‰$èÆÀ…ÀEç‰D$‰4$è©Àeô[^_ÉÃf„‹µúÿÿ“í¹ü‰×ó¦¸t ¶Fÿ¶Oÿ)È…Àu‹½úÿÿ‹E‰|$‰$èùÿÿé‹ýÿÿ‹µúÿÿ“õ¹ü‰×ó¦¸t ¶Fÿ¶Oÿ)È…Àu‹½úÿÿ‹E‰|$‰$è‹òÿÿéFýÿÿ‹µúÿÿ“ý¹ü‰×ó¦¸t ¶Fÿ¶Oÿ)È…Àu‹½úÿÿ‹E‰|$‰$è¶òÿÿéýÿÿ‹µúÿÿ“‚¹ ü‰×ó¦¸t ¶Fÿ¶Oÿ)È…ÀuU‹½úÿÿ‹E‰|$‰$è±ôÿÿé¼üÿÿ‹• úÿÿ‰$èl¿…À„'ƒ9‚‰D$‹ƒÕ‰$脾‰$膾éýÿÿ‹µúÿÿ“‚¹ü‰×ó¦¸t ¶Fÿ¶Oÿ)È…ÀtE‹µúÿÿ“‚¹ü‰×ó¦¸t ¶Fÿ¶Oÿ)È…Àu4‹½úÿÿ‹E‰|$‰$èúÿÿéüÿÿ‹½úÿÿ‹E‰|$‰$èŒôÿÿé÷ûÿÿ‹µúÿÿ“‚¹ü‰×ó¦¸t ¶Fÿ¶Oÿ)È…Àts‹µúÿÿ“%‚¹ü‰×ó¦¸t ¶Fÿ¶Oÿ)È…À…ûÿÿ‹}ÆG-‹…úÿÿ‰<$‰D$èdéÿÿéûÿÿ‹…<úÿÿ‹•$úÿÿPô‹B‰$ƒÈ‰D$è5¾é³þÿÿ‹}ÆG.‹…úÿÿ‰<$‰D$èpôÿÿé;ûÿÿƒèÇD$ÿÿÿÿ‰$èú½…ÀúÿÿEæ‰D$‰4$èÙ½ékúÿÿfDfDFÇD$ÿÿÿÿ‰$追…À2úÿÿEå‰D$‰4$èž½éúÿÿ‰Æ‹EÔxô9½4úÿÿuL‰4$轉Ƌƒå‰…,úÿÿ‹EØxô;½,úÿÿt܃èÇD$ÿÿÿÿ‰$è\½…ÀÅEæ‰D$‰<$è?½ë´ƒèÇD$ÿÿÿÿ‰$è4½…ÀEç‰D$‰<$è½ëŒ‰Æëˆ‰$è–¼ëò‹»å‰Ɖ½,úÿÿë„ëà½HúÿÿB‰Æ‰½ úÿÿ„‹ƒý‹½ úÿÿƒÀ ‰…<úÿÿ‹ƒý‰<$ƒÀ4‰…Lüÿÿ‹ƒýƒÀ ‰…Dúÿÿ‹ƒùƒÀ‰…Húÿÿ茼‹…(úÿÿ‰$èV¼‹ƒõƒÀ‰…Húÿÿ…dúÿÿ‰$蘼‹“í‹B‰…<úÿÿ‹Hô‹B‰„ <úÿÿ‹B‰…Dúÿÿ‹B‰…Dúÿÿ‹Hô‹B‰„ Dúÿÿ‹B‰…<úÿÿ‹Hô‹B •Lüÿÿ‰$‰„ <úÿÿ‹ƒéÂÇ…@úÿÿƒÀ‰…Lüÿÿèß»éWþÿÿ‰Æéÿÿÿ‰ÆéXÿÿÿ‰$躻‰Æ‹EÜ‹“åÂxô9׉•,úÿÿ„IþÿÿƒèÇD$ÿÿÿÿ‰$è³»…À.þÿÿEå‰D$‰<$è’»éþÿÿ@U‰åWVSè[ƒìL‹uÇ$@躻Éy‰ÇdefaÇ@ultÇFÇFÇF ÇFÆFÆFÇFÆFÆF$ÆF,ÇF(‰4$è×öÿÿEä‰EÔƒUªÇEä‰EЋEÔ‰D$‹EЉ|$‰D$ ‹E‰D$‹E ‰$軃øÿ„3ƒè1ƒøGwË‹„ƒÅØÿà…………………………………¨…………/…………………………………………………………………………………Hax¨……………µ…………¾……×…ð‹~…ÿ„‹N…É„õ‹V …Ò„׋F…À„»€~„‚‰4$è"åÿÿ‰F ‰ÇƒÝy‰D$‹ƒ%º‰$èk¸‰Â‹‹@ô‹D ¨@u¨„°‰$‰|$è8¹‰$èJ¸ƒíyƒ~ ް‰D$‹ƒ%º‰$踉$è ¸ƒÄL[^_ÉÃ=zÇF ‰D$‹ƒ%º‰$èï·‰$èñ·ƒÄL[^_ÉËF€~‰FtÅé>ÿÿÿ‹F‰F ‹F…À…#ÿÿÿëÜ‹V ÇF…Ò…ÿÿÿëÙ‹NÇF …É…åþÿÿëØƒm‰D$‰4$è»îÿÿéVýÿÿ‹ƒAº‹‰4$‰D$è"ëÿÿé=ýÿÿ‹ƒAº‹‰4$‰D$è™êÿÿé$ýÿÿƒm‰D$‰4$èÒíÿÿé ýÿÿƒm‰D$‰4$èíÿÿéöüÿÿ‹ƒAº‹‰4$‰D$èâîÿÿéÝüÿÿ‰4$è¥åÿÿéÐüÿÿÆF,éÇüÿÿ‹ƒAº‹‰4$‰D$èÓòÿÿé®üÿÿ‹ƒAº‹‰4$‰D$èJðÿÿé•üÿÿƒm‰D$‰4$è“âÿÿé~üÿÿ‰$‰|$èe·‰$èš¶ƒíyƒ~ Pþÿÿƒz‰D$‹ƒ%º‰$èh¶‰$èj¶ƒÄL[^_ÉÃfU‰åÉé—ûÿÿfDU‰åƒì(‰]ôè[‰uø‰}ü‹ƒÂ¥…Àt‹ƒÂ¥‹]ô‹uø‹}üÉÃÇ$0茶‰Ç‹E ‰D$‹E‰<$‰D$èœÿÿÿ‰»Â¥‹ƒÂ¥‹]ô‹uø‹}üÉÉƉ<$è5¶‰4$è(¶fU‰åWVSè[ììƒís‰$è ¶…À‰Æ„wEã‰D$}؃t‰D$‰<$è9¶Eä‰t$u܉D$‰4$è#¶EÔ‰… ýÿÿ‰|$‰t$‰$èöµ‹u܃ì‹“Eµƒî 9Ö‰•0ýÿÿ…â‹EØpô9µ0ýÿÿ….‹EÔÇD$‰D$…<ýÿÿ‰$诵•”ýÿÿ‰•(ýÿÿ‰$èܵ„À„Ńyu‰D$‹ƒ5µ‰$èÑ´‹• ýÿÿ‰$‰T$è´µ‰$èÁ´…Dýÿÿ³•u‰t$‰…ýÿÿ‰$è™´‰$è›´‹•ýÿÿƒµu‰D$‰$èy´‰$è{´‹…ýÿÿ‰t$‰$è_´‰$èa´‰$èY´‹U‹E‹R‰•4ýÿÿ‹•ýÿÿ‹xƒÕu‰D$‰$è%´‰Æ‹‹Pô‰$赋‹Pô‹@ ¨@u¨„+‰|$‰4$èà´“íu‰•,ýÿÿ‰T$‰$èØ³‰Æ‹‹Pô‰$èÊ´‹‹Pô‹@ ¨@u¨„Ç‹…4ýÿÿ‰4$‰D$è´‰$蟳‹U‹z ;z„‹E‹@‰…ýÿÿ‹•ýÿÿƒv‰D$‰$èb³‰Æ‹‹Pô‰$èT´‹‹Pô‹@ ¨@u¨„‰|$‰4$è´‹•,ýÿÿ‰$‰T$賉Ƌ‹Pô‰$è ´‹‹Pô‹@ ¨@u¨„2‹…ýÿÿ‰4$‰D$èг‰$èⲋUƒ)v‹2‰D$‹…ýÿÿ‰$軲‰t$‰$诲‰$è±²‹UƒAv‹z‰D$‹…ýÿÿ‰$色‰Æ‹‹Pô‰$è{³‹‹Pô‹@ ¨@u¨„g‰|$‰4$èD³‰$èV²‹U‹B(…À„8ƒø„ƃø„£‹U€z„ ƒ±v‰D$‹…ýÿÿ‰$貉$è ²‹E€x„\‹•ýÿÿƒév‰D$‰$èÚ±‰$èܱ‹•ýÿÿƒ!w‰D$‰$躱‰$è¼±‹E€x.„߀x…u‹•ýÿÿƒMw‰D$‰$胱‰$è…±ƒ¡w‰D$‹…ýÿÿ‰$èc±‰$èe±‹U€z-„¨€z$„þƒÑw‰D$‹…ýÿÿ‰$è,±‰$è.±‹ƒ]µƒÀ ‰…<ýÿÿ‹ƒ]µƒÀ4‰…Lÿÿÿ‹ƒ]µƒÀ ‰…Dýÿÿ‹ƒYµƒÀ‰…Hýÿÿ…Hýÿÿ‰$袱‹…(ýÿÿ‰$èl±‹ƒUµƒÀ‰…Hýÿÿ…dýÿÿ‰$è®±‹“Mµ‹B‰…<ýÿÿ‹Hô‹B‰„ <ýÿÿ‹B‰…Dýÿÿ‹B‰…Dýÿÿ‹Hô‹B‰„ Dýÿÿ‹B‰…<ýÿÿ‹Hô‹B •Lÿÿÿ‰$‰„ <ýÿÿ‹ƒIµÇ…@ýÿÿƒÀ‰…Lÿÿÿèõ°‹uÔƒî 9µ0ýÿÿ…eô[^_ÉÀ‹•ýÿÿƒÍv‰D$‰$èþ¯éòýÿÿ‰|$‰4$躰é”ýÿÿ‹…4ýÿÿ‰4$‰D$裰é4üÿÿ‰|$‰4$è’°éÐûÿÿ‹•ýÿÿ‰4$‰T$è{°éÉüÿÿ‰|$‰4$èj°éküÿÿfƒw‰D$‹…ýÿÿ‰$è~¯éŸýÿÿ‹B‰…ýÿÿ;B…êûÿÿ‹•ýÿÿƒñu‰D$‰$èL¯égüÿÿ‹•ýÿÿƒíw‰D$‰$è.¯éýýÿÿƒiw‰D$‹…ýÿÿ‰$è¯é†ýÿÿƒYv‰D$‹…ýÿÿ‰$è$èð®‹U€z„Ãþÿÿéµüÿÿ€€‹•ýÿÿƒ…w‰D$‰$è®®é&ýÿÿƒ x‰D$‹…ýÿÿ‰$莮é]ýÿÿƒ‘v‰D$‹…ýÿÿ‰$èq®ë‹•ýÿÿƒuv‰D$‰$èW®édÿÿÿFÇD$ÿÿÿÿ‰$诅ÀùÿÿEå‰D$‰4$èú®éïøÿÿFÇD$ÿÿÿÿ‰$èì®…ÀãýÿÿEç‰D$‰4$èË®éÏýÿÿƒèÇD$ÿÿÿÿ‰$è½®…À·øÿÿEæ‰D$‰4$èœ®é£øÿÿ‹“Eµ‰Æ‰•$ýÿÿ‹EØxô;½$ýÿÿu ‰4$讉ÆëôƒèÇD$ÿÿÿÿ‰$èf®…ÀÝEæ‰D$‰<$èI®ë̉ƋEÔxô9½0ýÿÿt¼ƒèÇD$ÿÿÿÿ‰$è.®…À¥Eç‰D$‰<$è®ë”ëšB‰Æ„‹ƒ]µƒÀ ‰…<ýÿÿ‹ƒ]µƒÀ4‰…Lÿÿÿ‹ƒ]µƒÀ ‰…Dýÿÿ‹ƒYµƒÀ‰…Hýÿÿ…Hýÿÿ‰$è°­‹•(ýÿÿ‰$èz­‹ƒUµƒÀ‰…Hýÿÿ…dýÿÿ‰$è¼­‹“Mµ‹B‰…<ýÿÿ‹Hô‹B‰„ <ýÿÿ‹B‰…Dýÿÿ‹B‰…Dýÿÿ‹Hô‹B‰„ Dýÿÿ‹B‰…<ýÿÿ‹Hô‹B •Lÿÿÿ‰$‰„ <ýÿÿ‹ƒIµÇ…@ýÿÿƒÀ‰…Lÿÿÿè­éÍþÿÿ‰Æéÿÿÿ‰$謉ÆéPÿÿÿ‰$èÖ¬‰Æ‹ƒEµ‰…$ýÿÿéXþÿÿ‰Æ‹EÜ‹“Eµxô9׉•$ýÿÿ„<þÿÿƒèÇD$ÿÿÿÿ‰$輬…À!þÿÿEå‰D$‰<$蛬é þÿÿéþÿÿ„U‰å‹E€x,uÉÃfÉéÚõÿÿf.„U‰åÉé×ÿÿÿfDU‰åƒì‰]øè[‰uü‹³›…öt‰4$èÌÿÿÿ‰4$辫ǃ›‹uü‹]øÉÃèYU‰åð¡‰EÉé=«„U‰åƒì‰]øè[‰uü‹³’ªƒ‚m‰D$‰4$èüª‰$èþªƒæ\‰D$‰4$è⪉$èäªÇ$蜪U‰åVƒì‹u‹‰$蔪‹F‰EƒÄ^É鄪fDfDU‰åÉéÇÿÿÿfDU‰åƒì‰]øè[‰uü‹³âš…öt‰4$èÌÿÿÿ‰4$辪ǃ⚋uü‹]øÉÃfU‰åWVƒì‹}€ ÇGÆGuT‹G‹w‹WÆG )Ɖt$‰$‰D$蚪‹G‰ñ‹O)ð‰D$‰T$‰ $è~ª‹GÆG ƒÄ^_ÉÃf„Ç$aè쪀 tšÇ$aèÚª€ uÜë†f.„U‰å‹E‹@ÉÃ@U‰å‹E¶@ÉÃ@èYU‰å1 ‰EÉé}©„U‰åƒì(‰}ü‹} ‰]ôè[‰uø‹u‰øƒàƒøƒßÿ‰<$詉‰<$è©…À‰Ftq‹…Àtkƒ$lÇFÆF ‰~ÆFÇF‰D$‹ƒÌ¨‰$èð¨‰Â‹‹@ô‹D ¨@u¨tW‰|$‰$èÁ©‹]ô‹uø‹}ü‰EÉéɨf„ƒôk‰D$‹ƒÔ¨‰$螨‰$è ¨Ç$èX¨@‰|$‰$èG©‹]ô‹uø‹}ü‰EÉér¨fU‰åÉé÷þÿÿfDU‰åƒì(‰]ôè[‰uø‰}ü‹“²˜…Òt‹ƒ²˜‹]ô‹uø‹}üÉÃÇ$蜨‰Ç‹E‰<$‰D$è£ÿÿÿ‰»²˜‹ƒ²˜‹]ô‹uø‹}üÉÉƉ<$èL¨‰4$è?¨f.„U‰åWVSƒì‹}è[‹w;uŒØ€ ul‹GÆG )Æ9uŠ‹U‰T$‹U ‰$‰T$訋U‹wW9ò‰W|f‰Ð)ð9ƉÂ~ö‰G‹EG;G‰G|ÆGÆG ƒÄ[^_ÉÃDÇ$Yè\¨€ uî‹w‹GÆG )Æ9u~ƒfD€‹U ‰t$‰T$‰$è’§‹U‹M ‹)òñ‰T$‰L$‰$èv§éXÿÿÿƒ·j‰D$‹ƒ?§‰$èȦ‰Ç‹‹Pô‰$躧‹‹@ô‹D ¨@u¨tf‹E‰<$‰D$膧‰ÂƒÏj‰$‰D$肦‰Ç‹‹Pô‰$èt§‹‹@ô‹D ¨@u¨t3‰t$‰<$èC§‰$èU¦Ç$è ¦‹E‰<$‰D$èý¦‰Â똉t$‰<$èí¦ëËU‰åVƒì‹uÇ$èY§‹‰$èJ§ƒÄ^Éé§fDU‰åÉéÇÿÿÿfDU‰åƒì‰]øè[‰uü‹³6–…öt‰4$èÌÿÿÿ‰4$è¦Çƒ6–‹uü‹]øÉÃfU‰åƒì(‹EÇD$ÇD$ ÇD$ÇD$‹‰$螦ÉÃf.„U‰å‹E‹@ÉÃ@U‰å‹E‹@ÉÃ@U‰å‹E‹‹@ÉÃfU‰å‹E‹‰EÉéK¦€€U‰å‹E‹‰EÉé5¦€€U‰å‹E‹·@ÉÃfU‰åWV1öƒì0}ä‰<$覅ÀtC¶Eä<t,< tH<uä‹EìƒøntP~?=tL=tJƒøpuǃÎëÂf‰<$ƒÎèÀ¥…Àu½ƒÄ0‰ð^_ÉăÎ뛃øtöƒøfu‘ƒÎ댃Î@뇃Î낃Πézÿÿÿf.„èYU‰å⚉EÉé-¤„U‰åƒì8‰uø‹u‰]ô‰}üè[‹‹8ÇD$ÇD$Ç$‡€‰D$ èF¥º…À‰t‹…Àt4‹]ô¶Â‹uø‹}üÉÉ|$ ÇD$ÇD$Ç$è¥1Ò‰ëÆEæ‰D$uàƒ)g‰D$‰4$è,¤Ç$蘤‰t$‰Ç‰$è…¤‹uàƒî ;³‰£u‹ƒ©£‰<$‰D$‹ƒ¥£‰D$è¤FÇD$ÿÿÿÿ‰$èø£…ÀÍEç‰D$‰4$èۣ뼉Ɖ<$èe¤‹Eàxô;»‰£u‰4$èF£‰ÆëôB‰Æuïè<¤ƒèÇD$ÿÿÿÿ‰$袣…ÀÓEç‰D$‰<$è…£ëÂf.„U‰åWVSƒì,‹E ‹uè[‰F‹E‰F‹EˆF Ç$ èÅ£…À…F€~ ÇD$ À÷Ð%€‰D$ ‹F‰D$‹F‰$èµ£…À‰„=Ç$膣Ç$莣‹‹B¶@¶È< ‰Mä…‹B‰F‹B ‰F‹B ‰EàƒPf‹z‰D$‹ƒ ¢‰$èÝ¡‰Â‹‹@ô‹D ¨@u¨„€‰|$‰$誢»Äb‰|$‰$訡‰Â‹‹@ô‹D ¨@u¨„+‹Mà‰$‰L$èr¢‰|$‰$èv¡‰Â‹‹@ô‹D ¨@u¨„Ù‹Eä‰$‰D$è@¢‰Âƒ`f‰D$‰$è<¡‹ö„Ûƒ|f‰D$‹ƒ ¢‰$è¡‹ö…Ûö@…þö@ …$ö@@…J‹…ÒˆŸö…wö …Nö…%ö@…ûö@…Ñö@@…§ö@…}ö@tƒ$g‰D$‹ƒ ¢‰$è… ‹ƒ ¢‰$è ƒ0g‰E ‰EƒÄ,[^_Éé©¡f„ƒˆf‰D$‹ƒ ¢‰$è> ‹ö„%ÿÿÿƒ”f‰D$‹ƒ ¢‰$è ‹ö@„ ÿÿÿf„ƒ f‰D$‹ƒ ¢‰$èö@ „èþÿÿfDfDƒ¬f‰D$‹ƒ ¢‰$辟‹ö@@„ÂþÿÿfDfDƒ¸f‰D$‹ƒ ¢‰$莟‹é—þÿÿ‹Eä‰$‰D$èD ‰Âé"þÿÿf.„‹Mà‰$‰L$è$ éÐýÿÿfDfD‰|$‰$è é{ýÿÿ€„ƒg‰D$‹ƒ ¢‰$蟋édþÿÿƒ g‰D$‹ƒ ¢‰$èîž‹é:þÿÿƒüf‰D$‹ƒ ¢‰$èΞ‹éþÿÿƒðf‰D$‹ƒ ¢‰$讞‹éæýÿÿƒäf‰D$‹ƒ ¢‰$莞‹é¼ýÿÿƒØf‰D$‹ƒ ¢‰$ènž‹é“ýÿÿƒÐf‰D$‹ƒ ¢‰$èNž‹éjýÿÿƒÄf‰D$‹ƒ ¢‰$è/ž‹éBýÿÿƒØe‰D$‹ƒ¢‰$螉$èžÇ$èʃøeëÒƒ$fëÊfDU‰åÉé7ûÿÿfDU‰åƒì(‰]ôè[‰uø¶u‰}ü‹‹6Ž…Ét‹ƒ6Ž‹]ô‹uø‹}üÉÃfDfDÇ$è ž‰ò‰Ç¶Â‰D$ ‹E ‰D$‹U‰<$‰T$èƒÿÿÿ‰»6Ž‹ƒ6Ž‹]ô‹uø‹}üÉÉƉ<$謉4$èŸU‰åWVƒì4‹U·Bf‰EзȋB‰EĉÇ·B·÷f‰EÒ‹‰EÔ·Bf‰EÜ·B f‰EÞ·B ‰EÈÀf‰Eà ·À¯Æ¯Î‰EÌ‹BEÌ‹Bf;}Ò ˆ‰M؃ڋUÈ·Eà·MÄÁâÁà‰Uì‰Eðf‰Mâffƒ}Є ·Uâ·EÜ·MÞÇEô‰Uä‰Mèf.„‹UÌ‹Mì¾BE侯EÈEèEôЋUÔ‚‹0<+Eð‹Wø‹Áî‹Gæ????Áêâ????ÁéÁèá????%????‹EØÑΉ0ƒÀ‰EØ·EÐÿEôƒEÌH·À@;Eôu…fÿEâ·Uâf9UÒ‡CÿÿÿƒÄ41À^_ÉÃU‰å‹E‹@ ÉÃ@U‰å‹E‹@ÉÃ@U‰å‹E‹@ÉÃ@U‰å‹U‹B‹RÉ9ÐOÂÃfDfDU‰å‹E‹@ÉÃ@èYU‰å+’‰EÉém›„U‰åÉÃf.„U‰åWV1öƒì ‹}ë ‹²F‰$è ›‹O‹‰È)ÐÁø9Ærä‰L$‰T$‰<$詜E÷‰D$‹G‰D$‹‰$茜‹…Àt‰$èH›ƒÄ ^_ÉÃfDU‰åÉé‡ÿÿÿfDU‰åƒì‰]øè[‰uü‹³*‹…öt‰4$èÌÿÿÿ‰4$èþšÇƒ*‹‹uü‹]øÉÃfU‰åWV‹u蜋>‹V)úÁú‰Ñ1Ò÷ñ•‹V ;t‹8‰F ^_ÉÃf.„èÌ›‹‹V)ÊÁú‰×1Ò÷÷‰Ï•‹V 9tÚëÄ„U‰åWVSì ‹}è[‹G¯GÀ‰$è×™…À‰…hÿÿÿt@Ç…lÿÿÿ‹W…Ò~/Ç…pÿÿÿ‹G…Àöÿ…lÿÿÿ‹•lÿÿÿ9WÚf„‹…hÿÿÿÄ [^_ÉÉ<$èçýÿÿòxÿÿÿ…À‰ÁPIÐÁúò*º«ªª*ò\È÷ê‰ÈfT‹ ‰Áø)Âò*Âf.Á†$ò}¸òY½xÿÿÿòƒ,ˆò­xÿÿÿò^øòYm¨ò^èfDfDò*lÿÿÿf(Åò›|ˆòXÁf.Øv,ò£¼‡f.„fWÀòXìòXøf(ÅòXÁf.Øwæ‹…\ÿÿÿƒèò*Ðf.Âv%ò£¼‡DfDò\ìf(ÅòXÁf.Âwîò*pÿÿÿf(ÇòXÁf.Øv"ò£¼‡fWÀòXüòXèf(ÇòXÁf.Øwæ‹…Xÿÿÿƒèò*Ðf.Âv%ò£¼‡DfDò\üf(ÇòXÁf.ÂwîfWÉf.͇_ òƒ„ˆòXèò,ÕfWíf.ï‡4 òXøò,ÇÁà¶ÒЋ•tÿÿÿf‰ÿ…pÿÿÿ‹…pÿÿÿ;G þÿÿ‹G‹•hÿÿÿ‰…\ÿÿÿ‹…pÿÿÿ¯…\ÿÿÿ…lÿÿÿB‰…tÿÿÿ‹…pÿÿÿ‹w ‹O)ðò*è‹…lÿÿÿf(ÍòYÍ)Èò*àƒüˆf(ÄòYÄòXÁf(ÍòQÀò^Èò…xÿÿÿòM¨f(Ìò^ÈòM°fWòM¸‹W9•\ÿÿÿ‰•XÿÿÿŒ]‰ÈºVUUUf(Õ÷ê‰ÈÁø)‹…lÿÿÿ)Ðò*Ø‹…Xÿÿÿ“üˆf(Ã9…\ÿÿÿòYÃf(ÊòYÊòXÁòQÀò^Ðò^ØòE€òUÀf(Ãò]ÈfWòEÐŒI‹•\ÿÿÿf(Õ’‰•üþÿÿ‹…üþÿÿº«ªª*Á½üþÿÿ÷ê‹…lÿÿÿ+•üþÿÿ)Ðò*؃} f(Êf(ÓüˆòYÊòYÃf(óòXÁòQÀò^Ðò^ðòEˆòUØf(fWÆòEà‡•‹U ‹„“èØÿàâ©¶ÚJçy@µÀœ % ¢ Çm$  &@‰ðºVUUUf(Ü÷ê‰ðÁø)‹…pÿÿÿ)Ðò*ÐéžþÿÿDfD‹…hÿÿÿ‰$èj•Ç…hÿÿÿ‹…hÿÿÿÄ [^_ÉÀ‹•Xÿÿÿf(Ü’‰•üþÿÿ‹…üþÿÿº«ªª*Á½üþÿÿ÷ê‹…pÿÿÿ+•üþÿÿ)Ðò*Ðé²þÿÿ“üˆòƒ,ˆòxÿÿÿò}¸fW òYùf(éò^øòYm¨ò^èéÙûÿÿèu–¾1 Ã0‰…üþÿÿ÷î‹üþÿÿÁúÁù)Ê ’ Š)üþÿÿ‹…üþÿÿƒè ò*øò½ÿÿÿè4–ò½ÿÿÿ‰…üþÿÿ÷î‰Ñ‹•üþÿÿÁùÁú)щ‘)•üþÿÿ‹…üþÿÿƒè ò*è‹G‰…\ÿÿÿ‹W‰•XÿÿÿéCûÿÿƒüˆò‹,ˆò…xÿÿÿò}¨fWòYøf(èò^ùòYm°ò^éé ûÿÿ9lÿÿÿrò*ofWÿò^«ˆéèúÿÿ9µpÿÿÿfò*fWíò^»ˆéÆúÿÿ‰<$èNøÿÿò“$ˆò£ˆò}¸òMàòEÐò*Øf(ëf(óò\­xÿÿÿò\uˆò\]€òYýòYÎòYÃòYuØò^Âò^üò^ÊòYm¨òXÈò^ìòXùf(ÆòY]Àò^Âf(ËòEØò^ÊòXÁòXèé,úÿÿò…xÿÿÿòYƒ´ò…`ÿÿÿ‰<$è|÷ÿÿò`ÿÿÿò*Àò^Èò $è„”ƒüˆò‹Dˆò…xÿÿÿò}¨fWòYøf(èòYm°Ý]˜òY}˜òYm˜ò^ùò^éé¬ùÿÿƒüˆò‹,ˆò…xÿÿÿò}°fWòYøf(èò^ùòYm¨ò^éésùÿÿòƒ4ˆòYƒ´òY…xÿÿÿò…xÿÿÿ‰<$è»öÿÿòxÿÿÿò*Àò^Èò $èÓòƒ<ˆò}¨f(èòYøòYm°Ý]òY}òYméùÿÿƒüˆò‹,ˆò•xÿÿÿò}¸fWòY½xÿÿÿòE¨ò^ùòYÂò­xÿÿÿò^ÁòYm¨òXøò^éòYU°f(Âò^ÁòXè颸ÿÿƒüˆò‹,ˆò•xÿÿÿò}¨fWòE¸òYúòY…xÿÿÿò^ùò^Áf(êò\øòYm°ò…xÿÿÿò^éòYE¨ò…xÿÿÿò^Áò\èé7øÿÿò½xÿÿÿòY}°éü÷ÿÿò‹´‰<$òYÉòY‹\ˆò8ÿÿÿèqõÿÿò8ÿÿÿò*Àò^ÈòYxÿÿÿòQÉò $ò8ÿÿÿèe’ò8ÿÿÿò“dˆÝÿÿÿò…ÿÿÿò $òYÀò\Ðò•(ÿÿÿèA’ò•(ÿÿÿò}¨Ýÿÿÿò…ÿÿÿòYÀòYƒlˆòXÐòƒtˆòQÒòYøf(èòYúòYm°òYêéJ÷ÿÿ‰<$è²ôÿÿò‹Tˆò½xÿÿÿòE¸òY}¨ò­xÿÿÿò^ùòYm°ò^é÷Øò*ÐòYÂòYU¨ò^ÁòXøf(Âò^ÁòxÿÿÿòXèf.‹Ì‡ŠÚöÿÿƒÔöÿÿfWÿf(ïéÇöÿÿ‰<$è/ôÿÿò‹Tˆò½xÿÿÿòE¸òY}¨ò­xÿÿÿò^ùòYm°ò^éò*ÐòYÂòYU¨ò^ÁòXøf(Âò^ÁòxÿÿÿòXèf.‹Ì‡ƒYöÿÿ{ƒéRöÿÿfòƒLˆòYƒ´òY…xÿÿÿ‰<$ò…Hÿÿÿè˜óÿÿò…Hÿÿÿò*Èò^Áò$è´“üˆò‹,ˆò…xÿÿÿò}¨fWòYøf(èòYm°Ý] òY} òYm ò^ùò^ééÈõÿÿ‹…Xÿÿÿ9…\ÿÿÿކ‹…\ÿÿÿº«ªª*÷ê‹…\ÿÿÿÁø)Âò*Êf(ÁòYƒô‡f.…xÿÿÿ† “üˆòƒDˆéiùÿÿ‰<$òµÿÿÿèíòÿÿòEØò“$ˆò}¨òµÿÿÿò*Èf(Ùf(áò\xÿÿÿò\eˆò\M€òYÄòYûòEØò^úòƒˆòmØòYôò^èò^ðòmØòmÀòYéòYMÈò^èòMÈòmÀò^ÈòmØòXñòXmÀòXýòm°òYëò^êòXîé®ôÿÿò\øò,ÇéÇõÿÿòƒ„ˆò\èò,Õéœõÿÿò*ofWÿò^«$ˆévôÿÿò*fWíò^»$ˆé`ôÿÿf.M€vJòƒDˆò}Ðòm€òY}€òYmÀò^øò^èé0ôÿÿ‹…Xÿÿÿº«ªª*÷ê‹…XÿÿÿÁø)Âò*Êéuþÿÿf.Mˆ†+øÿÿòƒDˆò}àòmˆòY}ˆòYmØò^øò^èéÛóÿÿf.„U‰åWVSè[ƒì<‹M ‹U‹uò*ÉòYÉò*ÂòYÀòXÈòQÉòX‹]{ò,Á‰F‰ÈÁèÈÑø‰F‰ÐÁèÐÑøÇÇFÇF‰N‰V‰F ÇF ‹E…Àt‹EÇÇ@ÇD$‰4$è1òÿÿ…À‰Eàtƒ…Q‰D$‹ƒUŒ‰$è(Œ‹}…ÿt‹EÇ Ç@™™©?‹Eà1ÿÇEÔ …À„Å€‹V;V„8…Òt‰‹VƒÂ‰VG‰|$‰4$è¸ñÿÿ…À‰EàtRƒ¥Q‰D$‹ƒUŒ‰$诋‰Â‹‹@ô‹D ¨@u¨„Ò‹EÔ‰$‰D$èyŒ‰ÂƒÅQ‰D$‰$èu‹‹ƒ‰ŒƒÀX‰$èꌋM…ÉtGò*À‹Eò^ƒ {ò‹EàƒEÔ…À…Bÿÿÿ‹V‹9„‘‰×)ÇÁÿƒÿ†­‹@H‰F ƒR‰D$‹ƒUŒ‰$èýЉ|$‰$èá‹“!R‰T$‰$èߊ‰$èኃÄ<[^_ÉÃf„‹EÔ‰$‰D$è„‹é)ÿÿÿEà‰D$‰T$‰4$è4Œé¿þÿÿƒÉQ‰D$‹ƒ]Œ‰$肊‰$脊Ç$è<Šƒõ>‰$è犉ÇEç‰D$‹F‰D$‹‰$èà‹‹…Àt‰$蜊‰<$èŠf.„U‰åÉé7ýÿÿfDU‰åƒì(‰]ôè[‰uø‰}ü‹ƒzz…Àt‹ƒzz‹]ô‹uø‹}üÉÃÇ$$è\Š‰Ç‹E‰D$ ‹E ‰D$‹E‰<$‰D$è•ÿÿÿ‰»zz‹ƒzz‹]ô‹uø‹}üÉÉƉ<$èþ‰‰4$èñ‰U‰åWVSƒì,ÇD$ÇD$ÈÇ$,èKÿÿÿÇD$ÇD$ÈÇ$,‰Eàèlëÿÿ‰Eä‹Eà‰$è~íÿÿ‹U‰B‹Eà‰$è]íÿÿ‹U‰B ‹Eä‰$è¼ãÿÿ‹Uà‰$‰ÆèOíÿÿ‰ò)‰ÐÁèЋUÑø‰B‹Eä‰$è¡ãÿÿ‹Uà‰$‰Çèíÿÿ‰ú)‰ÐÁèЋUÑø‰BÇ$°èeàÿÿ‹U‰B ‹Eä‰B‹E‹P ‰ÐÁèЋUÑøB‰‹E‹P‰ÐÁèЋUÑøBÇB$ÇB(‰Bèø‰1ÒfWÀƒøÿ“‹E‰P,÷Òò@4‰P0ò@@Ç@Æ@<ƒÄ,[^_ÉÃU‰åÉé§þÿÿfDU‰åƒì(‰]ôè[‰uø‰}ü‹ƒŽx…Àt‹ƒŽx‹]ô‹uø‹}üÉÃÇ$Hèlˆ‰$‰Çèªÿÿÿ‰»Žx‹ƒŽx‹]ô‹uø‹}üÉÉƉ<$è#ˆ‰4$èˆU‰åWVSè[ƒì<€»}~³}~„>€»u~„ñ‹E9E ‹M+M ‹u‹U‹E+E+U9u‹}NÐ9} žÀ9u¶ø|?ÿžÀ¶ð‰È Ðt6ÿ„Ã9ÑÛ‹E¯Æ‰Eà‹E¯Æ;Eà£ò*Ê‹ƒ…~ò*Á‹“‰~ò*×ò^Á‹Mò*] òYÐò£-v‰E܉UÐfD€‰È‹}+E‰ÂÁú1Ð)Ðò*À‹GòYÂòXÃòXÄò,Ð9Â|$G 9Â}‹G9Á|G9ÁŒlDfDñ‰ð¯Á;Eà~¤@ƒÄ<[^_ÉÄ‹M +MéæþÿÿD‹E¯Ç‰EØ‹E ¯Ç9EØ|Ìò*Áò*Ê‹“…~ò^Èò*Æ‹³‰~‹M ò*UòYÈò£-v‰Uä‰uÔfD‰È‹u+E ‰ÂÁú1Ð)ЋVò*ÀòYÁòXÂòXÄò,À9Ñ|$V 9Ñ}‹V9Ð|V9Ð}¯Eä‹u‹UÔȉ4‚ù‰ø¯Á;EØ~¤ƒÄ<[^_ÉÃfDfD³u~‰4$è;‡…À„ùýÿÿ‹}‹G‰$è,àÿÿ‰ƒ…~‰4$è‡éØýÿÿf„‰4$臅À„²ýÿÿ‹U‹B‰$èàÿÿ‰ƒ‰~‰4$èΆé‘ýÿÿ‹EÜ‹}¯ÁñЋUЉ<‚‰ð¯Á;EàŽ.þÿÿé‰þÿÿ‰Ç‰4$螆‰<$èL…fDèYU‰åòEf.“rvòXcsÉò,ÀÃf.„ò\csÉò,ÀÃfU‰åVƒì‹u€~<tƒÄ^ÉÃf.„è †‰ÂÁú÷~(;V$t‰V$ƒÄ^ÉÃDèì…‰ÂÁú÷~(;V$uàèÚ…‰ÂÁú÷~(;V$tÜëÌf.„UfWÛ‰åWVSƒì|è[òE òUf.Ãuzf.Ó„ÁƒÄ|[^_ÉÃf„f(Èòƒnrò^‹^rf.ÈrfDò\Èf.Èr ò\Èf.ÈsìòƒÞqf.Іûò«®rf(Ðf(õò,ɉÊÁêƒà)ÐH‰ÂÁú1Ð)к)ƒùò*ÂòYÂw[‹„‹¾ØÿàŒ¡ºÓèfDfDŠ9ÿÿÿèÆ„1Òƒøÿ“‹E‰P,÷Ò‰P0ƒÄ|[^_ÉÀf(àf(ÃòY惦ròXò$òe˜òmˆèš„ƒNsò›>sf(ÓòmˆÝ]ØòMØf(ÁfWÉòÂÐò]ƒ¦rò_Áf(ÊfsòòX(fTËò,$f\Áf)]¨fæÀfïÂf~Çè0„ƒNsf(]¨f(Óòe˜Ý]ÈòMÈf(ÁfWÉòÂÐò]ƒ¦rò_Áf(ÊfsòòX fTËò$$f\ÁfæÀfïÂf~Æè΃ƒNsf(]¨f(ÓÁæÝ]¸òM¸f(ÁfWÉòÂÐò]ò_Áf(ËfTÊfsòf\ÁfæÀfïÂf~ÀÁàÆ‹E¼7ÿ‰x,÷׉x0ƒÄ|[^_ÉÃòYÒò³®ròYÒf(êòYîéøýÿÿf(êòYÆòYîf(ãéyþÿÿf(èf(ãf(ÂòYîòYÆé`þÿÿf(àf(ëf(ÂòYæòYÆéGþÿÿf(âòYÆòYæf(ëé2þÿÿf(èf(âòYîòYæf(ÃéþÿÿfDfDU‰åƒì(‰]øòE òEèè[‰uü‹uÇ$ÇD$ð¿èd‚Ý]ð€~<uòMèfWÀf.Èzu‹]ø‹uüÉÃDfDè<‚‰ÂÁêЃà)кÀ)‰Vò*ÂòMðò^MèòMðòY‹€oÇF4òYÁÇF8òF@ÆF<‹]ø‹uüÉÃ@èYU‰åw‰EÉéM€„U‰åWVSè[ì Ç$ÇD$ð¿è‘‹EÝþÿÿ€x<t;òH4òXH@òH4ò…þÿÿòXÀf.頮 ‹UÇB4ÇB8ÆB<‹U‹B ‰$èrÕÿÿ‹U‰…œþÿÿ‹B ‰$èþÕÿÿ…ÀPH‹UÁø‰…\þÿÿ‹E‹@‰Eä‹z ‰Æºýÿ9ø‰ÐM÷Áú÷þ‹U‰…Xþÿÿ‹B$…ÀtH„C Ä [^_ÉÃf„‹E享ªª*ÁèEäÑøò*À‰ðò…èþÿÿ÷ê‹EÁþ)òò*Âò…`þÿÿò@4ò…0þÿÿò$èw€‰øòµ0þÿÿò`þÿÿÁèò•èþÿÿøÑøò*àò¥àþÿÿÝhþÿÿòYhþÿÿòXÑòhþÿÿò•Ðþÿÿò4$è2€‹uäƒeoò…`þÿÿòàþÿÿò•ÐþÿÿfWöò\•èþÿÿò•ðþÿÿNf.ÖÝpþÿÿòY…pþÿÿòXÈò…pþÿÿòØþÿÿò\àþÿÿf(ùòøþÿÿfW8Gÿ…O ŠI “Ånòf(ÓÅnf.þòf(êzt&“eoò•Ðþÿÿò*îfWò\­Ðþÿÿò^×ò^ï“Ånf(ËòÂÎò"fTÙfUÌfVËf(ØòÂÞfTÃfUÜfVØf(Âò]ËòÂÆfTÐfUÄfVÂf(ÕòÂÖfTêò­þÿÿf(êò•þÿÿfUìfVêò]Åò]Èf(éf.Ì„“ ò…ðþÿÿòYÅòX…Øþÿÿò,È…Éyé’fI9È|ûòYïòX­Ðþÿÿò,Õ…Òyé‚fJ9Ö|ûò*“eoò½ðþÿÿfW:“Ånò…ÿÿÿò*Éòòÿÿÿf(Ãf.þzt&“eoòØþÿÿò*ÀfWò\…Øþÿÿò^ßò^Ç“Ånòøþÿÿf.Îòf(êzt&“eoò•Ðþÿÿò*îfWò\­Ðþÿÿò^Ñò^é“Ånf(ËòÂÎò"fTÙfUÌfVËf(ØòÂÞfTÃfUÜfVØf(Âò]ËòÂÆfTÐfUÄfVÂf(ÕòÂÖfTêò­þÿÿf(êò•þÿÿfUìfVêò]Åò]Èf(éf.Ì„ f(ÇòYÅòX…Øþÿÿò,È…ÉyéH„I9È|ûòY­øþÿÿòX­Ðþÿÿò,Õ…Òò­Ðþÿÿy éfDJ9Ö|ûò*“eoò½àþÿÿò\½pþÿÿf(çò\¥àþÿÿòe¨fW"“Ånò…ÿÿÿò*Éò•èþÿÿòò\•hþÿÿòÿÿÿò• ÿÿÿòe ò\•èþÿÿf(ÃòU˜f.Özt“eof(ßò*ÀfWò\Çò^Úò^“ÅnòM f.Îòf(êzt&“eoò• ÿÿÿò*îfWò\­ ÿÿÿò^Ñò^é“Ånf(ËòÂÎò"fTÙfUÌfVËf(ØòÂÞfTÃfUÜfVØf(Âò]ËòÂÆfTÐfUÄfVÂf(ÕòÂÖfTêò­þÿÿf(êò•þÿÿfUìfVêò]Åò]Èf(éf.Ì„] òE˜òYÅòXÇò,È…Éy é£I9È|ûòYm òX­ ÿÿÿò,Õ…ÒyéqJ9Ö|ûò*“eoò…0ÿÿÿòE˜fW“Ånò*Éò…8ÿÿÿò(ÿÿÿòò8ÿÿÿf(Ãf.Îzt“eof(ßò*ÀfWò\Çò^Ùò^Á“ÅnòM¨f.Îòf(êzt&“eoò• ÿÿÿò*îfWò\­ ÿÿÿò^Ñò^é“Ånf(ËòÂÎò"fTÙfUÌfVËf(ØòÂÞfTÃfUÜfVØf(Âò]ËòÂÆfTÐfUÄf(åfVÂf(ÕòÂÖò2fTâf(êfUîfVìò]Åò]Èf(éf.΄œò…8ÿÿÿòYÅòXøò,Ï…ÉyéN€€I9È|ûòYm¨òX­ ÿÿÿò,Õ…Òò­ ÿÿÿyé f„J9Ö|û‹…\þÿÿò…ÿÿÿòÿÿÿò\…ÿÿÿò\ÿÿÿòEˆò*âò*…\þÿÿòUˆò^Èò^ÐòMHòUˆò\¥0ÿÿÿò*ñò^àò\µ(ÿÿÿò^ðf(Áòu€òYÁf(ÊòYÊòXÁòMòQÀò^Èò^ÐòHÿÿÿf(Æf(ÌòYÆòYÌ€µOÿÿÿ€òXÁòQÀò^ðòµXÿÿÿ€µ_ÿÿÿ€…Àò¥xÿÿÿò•@ÿÿÿò^àò¥Pÿÿÿ‰…tÿÿÿŽÞ÷ÿÿ‹µœþÿÿ1ÿf.„¿òUˆò]ò*÷òYÖòYÞòX•ÿÿÿòXÿÿÿG‰ÐÁú÷½Xþÿÿ¿Vò*è‰ÐÁú÷½Xþÿÿ‹Uò*zò*Bò… þÿÿò*à‹B,‰D$òEˆòHÿÿÿòXÂòYÌòXÁòXÇò,À‰D$òY¥@ÿÿÿòEòXÃòXÄòX… þÿÿò,À‰D$ ò…HÿÿÿòYÅòXÐòX×ò,‰D$òY­@ÿÿÿòXÝòX þÿÿ‰$ò,ÉD$òµþÿÿèvîÿÿ¿Vòµþÿÿò•xÿÿÿò]€òYÖòYÞòX•0ÿÿÿòX(ÿÿÿ‰ÐÁú÷½Xþÿÿ¿VƒÆò*è‰ÐÁú÷½Xþÿÿò*à‹Eò*pò*x‰Â‹@0‰D$ò…xÿÿÿòXÿÿÿòXÂòYÌòXÁòXÆò,À‰D$òE€òY¥PÿÿÿòXÃòXÄòXÇò,À‰D$ ò…XÿÿÿòYÅòXÐòXÖò,‰D$òY­Pÿÿÿ‰$òXÝòXßò,ÉD$è…íÿÿ9½tÿÿÿ… þÿÿÄ [^_ÉÀ€ò…þÿÿòYƒ½nf.Á†6õÿÿ‹UÇB4ÇB8ÆB<éõÿÿfDfD“eoòØþÿÿò*ÀfWò\…Øþÿÿò^ðþÿÿò^…ðþÿÿé’öÿÿfD€A„j÷ÿÿAuöéb÷ÿÿB„z÷ÿÿBuöér÷ÿÿB„úøÿÿBuöéòøÿÿA„ºøÿÿAuöé²øÿÿB„ŠúÿÿBuöé‚úÿÿA„ZúÿÿAuöéRúÿÿB„úûÿÿBuöéòûÿÿA„ºûÿÿAuöé²ûÿÿ‹Eò…þÿÿò^ƒ%nòH4òXÉòXÁò$èiuÝþÿÿò…þÿÿòXƒ­nòƒ w‹•\þÿÿJ…Ò‰•|þÿÿŽ`ôÿÿ…ö‰÷ò*…\þÿÿF‹µœþÿÿòþÿÿHøò^Èò…`ÿÿÿÁÿòhÿÿÿÇ…¬þÿÿ‹Eò*•¬þÿÿò¥þÿÿò^•`ÿÿÿòX“•nòYâò¥°þÿÿòX`4ò¥°þÿÿòX¥hÿÿÿò¥¸þÿÿ¿‰ÐÁú÷½Xþÿÿøò*Àò…Àþÿÿ¿V‰ÐÁú÷½Xþÿÿøò*È‹EòÈþÿÿò*ò…€þÿÿò*Hòˆþÿÿ‹@,ò$$‰D$è@tÝþÿÿò…þÿÿòY…ÈþÿÿòX…ˆþÿÿò$è¶íÿÿ‰D$ò¸þÿÿò…ÈþÿÿòYƒ wò…Èþÿÿò $èþsò•Èþÿÿò¥€þÿÿÝPþÿÿòY•PþÿÿòXâò$$è\íÿÿ‰D$ òµ°þÿÿò4$è¨sÝþÿÿò…þÿÿòY…ÀþÿÿòX…ˆþÿÿò$èíÿÿ‰D$ò°þÿÿò…ÀþÿÿòYƒ wò…Àþÿÿò $èfsò•Àþÿÿò¥€þÿÿÝHþÿÿòY•HþÿÿòXâò$$èÄìÿÿ‰D$‹E‰$èåéÿÿò…þÿÿòþÿÿòX…°þÿÿòX¸þÿÿòEØòMпV‰ÐÁú÷½Xþÿÿøò*ÐòUÈ¿VƒÆ‰ÐÁú÷½Xþÿÿøò*à‹EòeÀò*òE¸ò*HòM°‹@0‰D$òEÐò$èŠrÝþÿÿò…þÿÿòYEÀòXE°ò$èìÿÿ‰D$òUÐòMÀòY‹ wòMÀò$èWròeÀòu¸Ý@þÿÿòY¥@þÿÿòXôò4$è»ëÿÿ‰D$ òEØò$è rÝþÿÿò…þÿÿòYEÈòXE°ò$è†ëÿÿ‰D$òMÈòUØòY‹ wòMÈò$è×qòeÈòu¸Ý8þÿÿòY¥8þÿÿòXôò4$è;ëÿÿ‰D$‹E‰$è\èÿÿÿ…¬þÿÿ‹•¬þÿÿ9•|þÿÿ…„üÿÿé›ðÿÿŠ^÷ÿÿÇ$èq“E‰‹“ÝÇD$‰$‰T$èq{Ðéïóÿÿ@{Åéfòÿÿf„{µéœõÿÿèYU‰å{f‰EÉéo„U‰åSè[ƒìƒó4‰D$‹ƒçn‰$èQo‰$èSoƃç_ƒÄ[ÉÃfDU‰åWVSè[ìœÇ$ƒµÿÿÿ‰D$èÐpÇ$èºp‰$èÆp‹E ‰D$‹E‰$袸ÿÿº”¥‰Ç‰ÐÁú÷‰$è{Æÿÿ‰E¤‹‰EÔ‹E¤‰E؃¦_‰EÜ‹G(ƒø„(ƒø„?…À…÷EÔ‰D$‹ƒñn‰$èo‰E¨€„¶Guà‰D$‹G‰D$‹G ‰$èƒÐÿÿ‰t$ÇEàÇEä‰E¬‹ƒén‰$èÌn‰t$‰E°‹G‰D$‹G‰$èäÿÿ‰E´‰$èLÒÿÿ‰Æ‹E¬‰$è¿Èÿÿ9Æ ‹E´‰$è@Òÿÿ‰Æ‹E¬‰$è“Èÿÿ9ÆŽ˜ƒÅ4‰D$‹ƒ­n‰$èÉm‰$èËmÇ$èƒm€„EÔ‰D$‹ƒín‰$è'n‰E¨éÿÿÿEÔ‰D$‹ƒån‰$èn‰E¨éóþÿÿEÔ‰D$‹ƒán‰$èçm‰E¨éÓþÿÿ‹E°ÇEàÇEäð?ÇD$‰$èÃmèí”ÿÿ‰E¸èõäÿÿ‰E¼èÿÿÆE›ÇEœÇE ÇEĉEÀ€»¥_u]‹E¬‰$è Èÿÿ¨‰ÆuL¨…6÷Æ…S÷Æ@t€wƒæ„.€}›…TÆE›Ç$'è¼m€»¥_t£èIn‰Æƒù4‰D$‹ƒ¥n‰$èrl‹Uœ+u Âÿÿÿfn–€óæÀfnÊòXƒu^óæÉf)Eˆ‰$f(ÁòXƒu^f)…xÿÿÿòEˆò^…xÿÿÿòYƒÍ]òD$èÓm‰$èl‹E¨Æƒ¦_ÇD$‰$è…l‹EÀ‰$èI‹ÿÿ‹E¸‰$è”ÿÿ‹E¬‰$èóÅÿÿ‹E´‰$èøÐÿÿ‹E¤‰$è-Áÿÿ‰<$è%ÀÿÿÇ$èmk€$„Àþÿÿéÿþÿÿf.„€}›…Öþÿÿ1öëfFÇ$èè‹lƒþe„iþÿÿ‹E¤‰$è¿Áÿÿ„ÀtÛƒþdQþÿÿƒ(…ñ‹Eœº‰ˆˆˆ÷âÁê‰ÐÁà)Ð9Eœ„y‹EœºµN÷âÁêiÒ–9Uœ„M‹EœºÅ³¢‘÷âÁêiÒÂ9Uœ„‹EÀò@ò^@ òD$ ò@4‹E¼òD$‰$èŠæÿÿƒ}Äÿt ‹E¼‰$èyêÿÿ‹E¬‰$èÅÿÿ‹E¸‰$èÓ•ÿÿÿEœƒ}œ…•ýÿÿèDl‰E éˆýÿÿf„‹E¬‰$èUÆÿÿ„À„šýÿÿ‰<$襖ÿÿéýÿÿÆE›éÑþÿÿ‹EÀ‰$èÌŒÿÿ‰EÄ€tGƒøŽ˜‹E¼‰$èåÿÿ‹E´‰$è”Ïÿÿƒ}ÄŽ'ÿÿÿ‹EÀò@4‹E¼òD$‰$èáèÿÿé ÿÿÿ‹EÄ…À~ ‹E¼‰$è:åÿÿƒ}ĵ뾋E¼ÇD$ÇD$.@‰$è§èÿÿéÏþÿÿ‹E´‰$è'Ïÿÿé£þÿÿ‹E¼‰$è÷äÿÿéwþÿÿ…©þÿÿéhÿÿÿU‰åWVS쌋Eè[‹P‰UÌ‹@‰$‰EÐè·¿ÿÿº”¥òƒX‰Á‰ÐÁú÷ù‹Ủ$ò*Èò^Áò,À‰EÔ臿ÿÿ‰$è i‹MÐÇE؉EÜ€9„£‹uØuÔè¾j9ðsÇ$èèjè©j9EØváèŸj‰EØ-€fnÀ¸óæÀòXƒÌXf)E¨òE¨f.ƒXFEØ1ÿ‰EØè0j‰ÂÁøÁè4æÿ)Æèjº…ëQfWÀòEàò*Æ‹uÜòEÀ‰…|ÿÿÿ÷ê‹|ÿÿÿÁúÁù)ÊiÒÈ)•|ÿÿÿò*…|ÿÿÿòE éŠf„òEàò$è·iƒÇÝ]€òE€òYEÀò,Àf‰òEàò$è}iÝ]€òE€òYEÀò,Àf‰F‹ẼÆò‹d`òMˆ‰$è+¾ÿÿòMˆò*Àò^ÈòYM òXMàòMà‹Ủ$è¾ÿÿ‰ÂÁêÂÑú9׌cÿÿÿ‹M̉ $èè½ÿÿ‹Ủ$‰D$‹E܉D$袿ÿÿ‹MЀ9…]þÿÿƒT/‰D$‹ƒìh‰$èTg‰$èVgÄŒ1À[^_ÉÄèYU‰å+^‰EÉé-gU‰åƒì‹EÁà‰D$‹E‰D$‹E‰$è¿ÿÿ1ÀÉÃf.„èYU‰åÜ]‰EÉéÝf„U‰åWVS쬋Eè[‹P‰U¬‹x‰}°‹‰E´è™h…À…ä‹u´ƒÈ%¹ü‰Çó¦¸t ¶Fÿ¶Oÿ)È‹}´‰<$…À”E»è>h‹u´¹ü‰E¼ƒÌ,‰Çó¦¸t ¶Fÿ¶Oÿ)È…À…‰èh‰E¼€}»…°ƒä,‰D$‹ƒ,f‰$èf‰Â‹‹@ô‹D ¨@u¨„‹E¼‰$‰D$èÏf‰$èáe‹U¼ƒœÿÿÿ‹}¬‰D$ẺD$Eä‰UÌÇEÐÇEÔÇEØÇº¸ÇEÜðF?ÇEà‰|$ ÇD$ÇD$ ÇD$ ÇD$€ˆå@ÇD$‰$è4g…À…¬‹Eä‰$è&g…À…™ƒ-‰D$‹ƒ,f‰$è0e‰$è2e‹E°€8uJ‹»,fƒ”,‰D$‰<$èe‰$è e‹Eä‰$èéf…À…ŒĬ1À[^_ÉÃf.„Ç$ †èìe‹U°€:t¢Ç$ †èØe‹U°€:uØëŒfDè|f…À‰EÀŽoþÿÿ1öëBfDfD‹E´‰$èae‹U´‰T$‰D$‹G‰$èTf‹}¼…ÀDþF9uÀ‰}¼„)þÿÿ‰4$èAf€}»‰Çtº‹@‰EăÔ,‰D$‹ƒ,f‰$è"d‰Â‹‹@ô‹D ¨@u¨tP‰$‰t$èód‰Âƒà,‰$‰D$èïc‹UĉT$‰$èàc‰$èâcéMÿÿÿ‹}¼‰$‰|$è‘déàýÿÿ‰$‰t$è€d‰Â뮉$èŒe‰Æƒ¸,‰D$‹ƒ,f‰$èc‰t$‰$èc‰$èƒcÇ$è;cÇ$è/c‰$è>e‰<$‰Æƒ¸,‰D$ë¶U‰åWVSƒì<‹E +Eè[‹}‹u‰ÂÁú1Ð)ЉEÔ‹E+E‰ÂÁú1Ð)ЉEØ‹E9E žÀ9}¶ÀTÿ‰UÜžÀ¶ø‰4$|?ÿ诽ÿÿ‰Eà‰4$蔽ÿÿ‰Eä‹EÔ EØ„•‹UØ9UÔ™‹E¯Ç‰EЋE¯Ç9EÐ|u‹uò*UÜò*EÔò*MØò*] ò^Áò£´QòYЀ€‹Mä‰ð+E¯Î‰ÂÁúþ1Ð)ЋUò*ÀòYÂòXÃòXÄò,ÀÁ‹Eà‰ˆ‰ø¯Æ9EÐ}ÁƒÄ<[^_ÉÄ‹uÜ‹Eܯu¯E 9ðÞ‹M ò*EÔò*MØò*Uò^Èò£´Qò*ÇòYÈ„‰È‹}+E ‰ÂÁú1Ð)ЋUàò*ÀòYÁòXÂòXÄò,À¯Eäȉ<‚‹EÜMܯÁ9ð~ƒÄ<[^_ÉÃf.„èYU‰å“X‰EÉéa„U‰åWVSè[ìÜ€»X³X„ú€»•X³•X„#€»X„Ѐ»…X„}€»}X„#€»uX³uX„ÓòƒPòE‹ƒÑXòòMàf.‹%Oz7s5òMf.Màu9z7Ç$'èãa‹ƒÑXòòMàf.‹%O{ËfÄÜ1À[^_ÉÃòƒµXòmàò…pÿÿÿòY«ýOòY«%PòX«-Pòm˜ò,$èÖaòm˜ò,$Ý]°òM°òYpÿÿÿòM°èÆaò…pÿÿÿòM˜òX‹5Pòxÿÿÿò $Ý]¸òYE¸òE¸è~aò­xÿÿÿò,$Ý@ÿÿÿò@ÿÿÿòYpÿÿÿòHÿÿÿèbaƒíOòHÿÿÿòe¸f(ëòE°òYäòYÀòXàf(ÃòQäòYÃÝ@ÿÿÿò•@ÿÿÿòY•pÿÿÿf(ÊòYÊòXÈf(ÃòQÉò^ÁòY…pÿÿÿòYò\èf(Âò^Áf(ÊòY…pÿÿÿòYò\ÈòE°òMÈò^ÄòM°òY…pÿÿÿòYò\ÈòMÐò‹ƒÍXòmÀòE¸òm¸ò^Äò•XÿÿÿòY…pÿÿÿòYÈòƒ¥Xò\éòE ò‹­XòmØòM¨‰$èš¹ÿÿòm°òE¸òXm¨òXE ò,ʼnE€ò,ÀòHÿÿÿ‰E„‹E€òX]¨ò•Xÿÿÿò,ûòXU ‰|$ò,òÇD$ÿÿÿÿ‰D$‹E„‰t$ ‰D$‹ƒÍX‰$è ûÿÿòEÀòXE¨ò,ÀòEȉEˆòXE ò,À‰EŒ‹Eˆ‰|$‰t$ÇD$ÿÿÿÿ‰D$‹EŒ‰D$ ‹ƒÍX‰$è¼úÿÿ‹EˆòEÐòMØòXE¨òXM ò,øò,ñÇD$ÿÿÿÿ‰|$‰D$‹EŒ‰t$ ‰D$‹ƒÍX‰$ètúÿÿ‹E€ÇD$ÿÿÿÿ‰|$‰t$‰D$‹E„‰D$ ‹ƒÍX‰$èHúÿÿ‹ƒÍX‰$èz¸ÿÿ‹ƒÍX‰$èÜ·ÿÿÇ$'èˆ^òEàòEéaüÿÿ‰4$è_…À„öûÿÿ‹E‰4$‰ƒÑXèÚ^éàûÿÿ‰4$èÜ^…À„üÿÿòƒÅX‰4$òƒ¥Xòƒ½Xòƒ­Xè^éðûÿÿ³}X‰4$è™^…À„Çûÿÿò‹ÅXòƒ½Xf.Èwf(ÁòYƒíO‰4$òƒµXèP^éûÿÿ³…X‰4$èL^…À„mûÿÿ‹ƒÍX‰$è-·ÿÿ‰ÂÁêÂÑúò*‰4$òƒ½Xè ^é=ûÿÿ³X‰4$è^…À„ûÿÿ‹ƒÍX‰$è÷¶ÿÿ‰ÂÁêÂÑúò*‰4$òƒÅXèÄ]éêúÿÿ‰4$èÆ]…À„ÍúÿÿÇD$ÇD$ÈÇ$,è¾ÿÿ‰ƒÍX‰4$è…]éžúÿÿ‰Ç‰4$è{]‰<$è)\ëìU‰åSƒì$è[ÇEôèó]‰$è¾]‰Eðƒ}ðt$‹Mð“:QƒÊk‹‰T$‰D$‰ $è£]‰Eô‹UôƒÆk‹‰D$‰$è‰]…Àu7ƒÎk‹‰ÂƒÂk‹‰D$‰$èg]‰Âƒ¾k‹‰D$‰$èQ]‰Eô‹EôƒÄ$[ÉÃU‰åƒì8ÆEä Eä‰$èI]ÉÃU‰åì8‹Eˆ…äûÿÿ€½äûÿÿtsè,]‰$è]‰Eð‹Eð‰D$Ç$èÿ\‰Eô…ðûÿÿÇD$ ‰D$ÇD$‹Eô‰$èÜ\„Àt…ðûÿÿ‰$è¬\‹Eð‰$èÓ\‹Eô‰$èÈ\ÉÃU‰åWVSƒì<è[èœþÿÿ‰E䃀j‹‰Âƒhj‹‰D$‰$èi\‰Á“øOƒdj‹‰T$‰D$‰ $èI\‰E؃`j‹‹P‹Eä‰D$‰T$‰ $è%\‰Eà‹}Ø“øOƒ\j‹ƒXj‹0‰T$‰L$ ‹Eà‰D$‰t$‰<$èî[‹u؃„j‹‰ÂƒTj‹‰D$‰$èÍ[‰ÂƒPj‹‰T$‰D$‰4$è³[ƒ`j‹‹P‹Eä‰D$‰T$‰ $è’[‰Eà‹}Ø“(PƒLj‹ƒXj‹0‰T$‰L$ ‹Eà‰D$‰t$‰<$è[[‹}س(PƒHj‹‹8PƒXj‹‰t$‰T$ ‰L$‰D$‰<$è$[‰EÜ‹U܃Dj‹ÇD$‰D$‰$è[‹}سøOƒ@j‹‹HPƒXj‹‰t$‰T$ ‰L$‰D$‰<$èËZ‹u؃„j‹‰ÂƒTj‹‰D$‰$èªZ‰ÂƒPj‹‰T$‰D$‰4$èZƒ`j‹‹XP‹Eä‰D$‰T$‰ $èoZ‰Eà‹}Ø“hPƒ„ ƒ †zPR|›z% ˆ$ ÔñÿÿR„ ƒ,HœzÿÿX„ ƒ †zPLR|›% ˆ,$,{ÿÿ–„ †‡(T¬ñÿÿR„ ƒ8€°{ÿÿþ„ ‡ƒ †4¼„|ÿÿv°„ ƒ ‡†,ôÌ|ÿÿ¸„ ƒ†‡zPLR|›å# ˆ($<~ÿÿ*„ †0PP~ÿÿ>„ ƒ †$„\~ÿÿ5„ ,¬ô~ÿÿ–„ †‡(Ü„ðÿÿR„ ƒ4Xÿÿeo„ † ‡ƒ,@€ÿÿº„ ƒ†‡8p0…ÿÿ–l„ ƒ †‡zPLR|›=" ˆ($ðÿÿl„ ƒ$P„ $x„ , X„ †‡,Ð8v„ ‡†ƒ,è”ÿÿ¶_„ ƒ†‡40ˆ—ÿÿ„M„ ƒ ‡†zPLR|›Ù  ˆ,$À—ÿÿP„ ƒ†‡4Tð˜ÿÿoð„ ƒ ‡†,Œ(™ÿÿÉã„ ƒ†‡(¼¨îÿÿR„ ƒ,èL ÿÿ—„ ƒ†‡zPR|›Æ ˆ$ °îÿÿR„ ƒ$H˜°ÿÿ:„ ƒ(p°°ÿÿ©„ ƒ†‡zPR|›. ˆ( ¶ÿÿG„  ƒ†‡$Llîÿÿl„ ƒzPR|›¾ ˆ ¸ÿÿ&„ $D”îÿÿR„ ƒ(l¸ÿÿ~„  ƒ†‡zPLR|›) ˆ,$P»ÿÿ¦„ ƒ†‡(TpîÿÿR„ ƒ,€Ä¼ÿÿ®j„ ƒ†‡U‰å‹E‹U 9Ðt ƒÀ9ÂuùÉÃfDU‰åWV‹M‹} ‹AüQü9ø‰9^_ÉÃD‰Ñ‰ò‰‹Bürü9Ç|ð‰Ñ‰9^_ÉÄU‰å‹U ‹E9Ðt ƒÀ9ÂuùÉÃfDU‰åWVƒì‹U ‹}‹E‰UôfDfD98‰Æ}f.„ƒÆ;>ù‰ð‹Mô‹Uôƒé9zü~f„ƒé;9|ù9Á‰Môv ‹‹‰F‰뵃ĉð^_ÉÃfDfDU‰åWVƒì ‹E‹U ‰Eô9Ðtc‰ÇƒÇ9×tZ‰øë9€€P‰ø)ȃàü)‰D$‰L$‰$èâ‹Eô‰0G9E t‰Ç‹Mô‹0;1|̉t$‰<$èðG9E uáƒÄ ^_ÉÃU‰åWVƒì‹} ‹U‰ø)ÐÁøƒø~Fr@‰t$‰$è¨9÷‰ðuƒÄ^_ÉÃf.„‰ð‹‰4$ƒÆ‰D$è9÷uéƒÄ^_ÉÃf‰} ‰UƒÄ^_Éé`€€U‰åW‹}V‹u Vÿ‰ÐÁè Ñù;u~9‹U9}/‰Âë D‰Î‰Á‹Qÿ‰·‰ÐÁèÐÑø;M~ ‡‹u;2܉΋E‰·^_ÉÃU‰åWVƒì‹U ‹E‹M‹u‰Uì‰Eð‰Ð‰MèT‰Á;Uè‰uä}V‰Ö‰Eôë'fDfD‰Ö‹‹Uô‹Mð‰‘T69Uè~+‰uô‰Ö‹Mð<‘J ‘‹;|Õ‰ù‹Uô‹‹Mð‰‘T69UèÕ‰ñ9Uèu ‹uðJ‹–‰Ž‰Ñ‰M ‹Eä‹Uì‹Mð‰E‰U‰MƒÄ^_Éé3fDfDU‰åWVƒì ‹E)E Á} ƒ} ‰Eð~Q‹U ÇEôƒê‰ÐÁè<‹EðÑÿ4¸ë fDÿEô‹ƒî‰D$ ‹E ‰D$‰ø+Eô‰D$‹Eð‰$è»;}ôuÔƒÄ ^_ÉÃfDfDU‰åƒì‰}ü‹}‰uø‹u ‹GV9Ât)ЉD$‰T$‰4$è`‹Gƒè‰G‰ð‹}ü‹uøÉÀ€U‰åWVƒì ‹M ‹}‰Ê)ú‰ÐÁøH~Brüë‹MôAü‰Eô‹‹Qü‰Aü‹Eô‰T$ ÇD$‰<$)øÁø‰D$è‰ðƒîÁøHÄƒÄ ^_ÉÃfDfDU‰åWVƒì ‹E ‹}‰Eô‹E‰Eð‹Eô‰<$‰D$èý‹Eô9EðvR)øÁø‰Eì‹Eô‰Æë ƒÆ9uðv8‰ð‹‹9Â}ƉT$ ‹EìÇD$‰<$‰D$èp9uðwÑf„‹Eô‰}‰E ƒÄ ^_Éé5fDfDU‰åWVƒì0‹E ‹U‰Eä‹uä‹E‰Uà‰ò)ÂÁúƒú‰Eì‰EèŽð‹EàÇEð…À‰Eô„œDfDFü‰E܉ÐÁèЋUìÑøÿMô‚‰×‰EØ‹ ‹9ч‹Fü9ÂŒŒ9ÁŒ@‹‰D$‹Eä‰D$‹Uì‰$蕉ƋEô‰D$‹Uä‰4$‰T$诉ð+Eè‰uäÁøƒø‰Â~NÿEð‹Eð9Eà…oÿÿÿ‹Uä‹Eì‰U‰U ‰EƒÄ0^_Éé$D‹Fü9Á|‰9Â}‹}Ü뀋}Øéxÿÿÿ„ƒÄ0^_ÉÄU‰åWVƒì ‹E‹u‹x‹E ‰t$)÷‰|$‰$èØ‹E} ‹PE÷‰D$‰<$‰T$èé‹E+u ƒæü)p‹E ƒÄ ^_ÉÄU‰åƒìH‹E‰]ô‰uø‰}ü‹Pè[;PtP…Òt ‹Bü‰‹M‹Q‹M‰ÐƒÂ‰Q‹U‹2Pü+U ƒâü‰T$‹M )Љ$‰L$èA‹E ‰0‹]ô‹uø‹}üÉËM‰Ð+Áø=ÿÿÿ?„ã…Àºt29Ârúÿÿÿ?v#耀ºÿÿÿ?DfDÁâ‰UÔ‰$è*‹U‹u ‰EЋ)Ɖt$‰D$‹MЉ $è°‹UÐòt‹M‹‰‹Ez‹p+u ‰t$‹U þ‰<$‰T$è‹MEç‹Q‹ ‰D$‰T$‰ $è“‹U‹…Àt‰$è‘‹EЋM‰‰q‹EÐEÔ‰A‹]ô‹uø‹}üÉÃ^Éÿÿ‰$èFf.„U‰åWVƒì0‹u9u „Œ‹E ‹} ‹‰Eà‹)lj}ÜÁÿ‰}Ø‹>‹F)øÁø9E؇°‹F)øÁø9EØvcÁà‰D$‹Eà‰<$‰D$軋N‹} ‰È+‹Wƒàü‰ $)‰T$‰D$è—‹UØÁâ‰V€€ƒÄ0‰ð^_ÉÀ‹E܉<$‰D$‹Eà‰D$èX‹EÜ‹V E÷‰T$‰D$‰ $èi‹UØÁâ‰Vë±}Øÿÿÿ?wd‹EØÁà‰Eä‰$èn‰Ç‹E܉<$‰D$‹Eà‰D$èüEö‰D$‹F‰D$‹‰$è4‹…Àt‰$è‰>‹Uä‰F‰VéCÿÿÿèÁU‰å‹E‹P ƒâµƒÊ‰P ÉÃfDfDU‰å‹U ‹E9Ðt ƒÀ9ÂuùÉÃfDU‰å‹E‹U 9Ðt ƒÀ9ÂuùÉÃfDU‰åWVƒì ‹E‹u‹x‹E ‰t$)÷‰|$‰$è(‹E} ‹PE÷‰D$‰<$‰T$è[‹E+u ƒæü)p‹E ƒÄ ^_ÉÄU‰åƒìH‹E‰]ô‰uø‰}ü‹Pè[;PtP…Òt ‹Bü‰‹M‹Q‹M‰ÐƒÂ‰Q‹U‹2Pü+U ƒâü‰T$‹M )Љ$‰L$è‘‹E ‰0‹]ô‹uø‹}üÉËM‰Ð+Áø=ÿÿÿ?„ã…Àºt29Ârúÿÿÿ?v#èQ€€ºÿÿÿ?DfDÁâ‰UÔ‰$èz‹U‹u ‰EЋ)Ɖt$‰D$‹MЉ $è‹UÐòt‹M‹‰‹Ez‹p+u ‰t$‹U þ‰<$‰T$èÑ‹MEç‹Q‹ ‰D$‰T$‰ $è‹U‹…Àt‰$èá‹EЋM‰‰q‹EÐEÔ‰A‹]ô‹uø‹}üÉîÅÿÿ‰$è–ð??$@åa¡Ö4ïî?±á镲 ¡?ffffffî?š™™™™™©?333333ó?@KÈ=›Uå?ioð…ÉTÕ?€FÀY@YÀ9@4@@.@@I@@^@¤p= ×£ð?Ð?$À@à?ào@À€„.A@@eÍÍAð¿oƒÀÊ! @¢E¶óýT@š™™™™™¹?ÿÿÿÿÿÿÿÿÿÿÿÿÿÿ€ÿÿÿÿÿÿÿàAàÿÿÿïA€àAàAÄÍg(Ïv0Ïd8ÏD@ÏfTÏsXÏ1”Ïe`Ïx¤Ïn¬Ïhàà`ÛàÛ`ÜàÜ`ÝàÝpÞðÞpßà€àáÿÿ1еÿÿ'7A]jÿÿF#i–ÿÿ'7A]jÿÿœÆv|ÿÿ4"1EWj„ÿŒ„K lA‚1›`íŸC-0JÁQVŸw#ÛUJC/~·²á# '*«Q[JŠ1}ÿÿ'7Okxÿ€÷A‰W¤ p· ¼QЋ𲆠õ• ŠQì† ‚±%à% 7 o ç• Ÿ † á ¤ }ÿÿ'7Hdqÿa[=Dž/¸âõ3*K3}ÿÿ'Gh„‘ÿÿ¹Í†±ÿÿ'7Vrÿÿ'7A]jÿÿ'?·y·ÄÿÿA°`îš4¬‚š§È$× È¤ÁÈ4×È<×ÈD×ÈH× ÈT×È`×Èh×Èl×Èt×Èx×`sЩpe ¯§0.ôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôôÚØÚÿ¾4ÚÌÚwµÚüÙ@ÚðÙìÙÜÙÌٸٰ٠ٌلÙtÙhÙ\Ù8Ù4Ú ÙÙèØàØÔØÄØœØ|Ø`ØPØHØ<Ø0Ø(Øش׬נ׌×Ä×ð×ø× !ä×ð×`!ä×ä×ð×0pÚÌÚ˜¾XÚ¼ÚP½@Ú°ÚŽµØø× Ô×Ä× ¤ÁÔ!à Œ!¨!    €Ðüj€îÀpü€`î\€ ù«€èäý€0ö@€„ㆀÀøÌ€H䀠ú3€åT€ô«€ðâ€ðöX€è㮀ðô€$ãc€ó·€â€÷f€äÁ€ó €`â‚€ôÜ€Àâ9€°ò—€âø€ü €Ôè' €0ü} €îÖ €ðò' €8â{ €PüŸ €8îÆ €òç €¨á €°õW €T㦠€€öò €¸ãA  M a x • » Î  è $ ( ,: 0[ 4} 8¡ <  Ë @Ü !û !!6!R!l!‹!¥¼×îù#Ecy¤«ÄÞñ#2BQct‚Œ¬»Å×çú /? O w š É Ý è ó þ  A T h v ’ Å  $ > P i ‚ – Ó í  + 6 A } Ž Ç € J€ ƒ€ Œ€ £€ Ï€ û€ '€ U€ | „ ‹­ Ç Þ ô   1 > Tw}”ºâ %*29@FNU[cpwВ𣫹ÁÇÐØÝäìôýqäY[Ùð)â &nz¤ / \ Âo "&'0KWpz|}œ¢¤¬®² š¾$° "P`|ÊÐ ‰ å © ¯ x7Ïk‡‰ ¢£DZ€ñ0Dy{ŠÃH#+-/5M{Àÿ"#'vÁö)_ ¡ÆÜû6‹ÁQƒÒ !{÷± ½ † ” ­ ² Ç × Ø Ý Þ Ì Ä‘ ´‘ ¤‘ ”‘ „‘ t‘ d‘ T‘ D‘ 4‘ $‘ ‘ ¯§œÀ™€€oŽŠµ‹Œ‰w›ˆ€€€€€M¨š¥«°Ÿ¦ž¢„y‚z*²}®~"f &(³±Wes†u¼“q{»tlnpg|¾hm…¬xrj­ÀiÂ^v’[ba\dZX`˜ƒ”c_ ¤ ©¶¹$—•ª–ÁY¸kºTUP¡RO¿VQS·LK½D£C´JIGH]ENF_NXArgc_NXArgv__ZNSt6vectorIPtSaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0___ZNSt6vectorIPtSaIS0_EE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPS0_S2_EERKS0_.eh__ZNSt6vectorIPtSaIS0_EE5eraseEN9__gnu_cxx17__normal_iteratorIPS0_S2_EES6___ZNSt6vectorIPtSaIS0_EE5eraseEN9__gnu_cxx17__normal_iteratorIPS0_S2_EES6_.eh__ZNSt6vectorIiSaIiEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPiS1_EERKi__ZNSt6vectorIiSaIiEE13_M_insert_auxEN9__gnu_cxx17__normal_iteratorIPiS1_EERKi.eh__ZNSt6vectorIiSaIiEE5eraseEN9__gnu_cxx17__normal_iteratorIPiS1_EE__ZNSt6vectorIiSaIiEE5eraseEN9__gnu_cxx17__normal_iteratorIPiS1_EE.eh__ZNSt6vectorIiSaIiEE5eraseEN9__gnu_cxx17__normal_iteratorIPiS1_EES5___ZNSt6vectorIiSaIiEE5eraseEN9__gnu_cxx17__normal_iteratorIPiS1_EES5_.eh__ZNSt6vectorIiSaIiEEaSERKS1___ZNSt6vectorIiSaIiEEaSERKS1_.eh__ZSt11__push_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEiiEvT_T0_S8_T1___ZSt11__push_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEiiEvT_T0_S8_T1_.eh__ZSt12partial_sortIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEEvT_S7_S7___ZSt12partial_sortIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEEvT_S7_S7_.eh__ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEiiEvT_T0_S8_T1___ZSt13__adjust_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEiiEvT_T0_S8_T1_.eh__ZSt16__insertion_sortIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEEvT_S7___ZSt16__insertion_sortIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEEvT_S7_.eh__ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEiEvT_S7_T0___ZSt16__introsort_loopIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEiEvT_S7_T0_.eh__ZSt21__unguarded_partitionIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEiET_S7_S7_T0___ZSt21__unguarded_partitionIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEiET_S7_S7_T0_.eh__ZSt22__final_insertion_sortIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEEvT_S7___ZSt22__final_insertion_sortIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEEvT_S7_.eh__ZSt25__unguarded_linear_insertIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEiEvT_T0___ZSt25__unguarded_linear_insertIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEiEvT_T0_.eh__ZSt3decRSt8ios_base__ZSt3decRSt8ios_base.eh__ZSt8_DestroyIN9__gnu_cxx17__normal_iteratorIPPtSt6vectorIS2_SaIS2_EEEES5_EvT_S8_T0___ZSt8_DestroyIN9__gnu_cxx17__normal_iteratorIPPtSt6vectorIS2_SaIS2_EEEES5_EvT_S8_T0_.eh__ZSt8_DestroyIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEES4_EvT_S7_T0___ZSt8_DestroyIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEES4_EvT_S7_T0_.eh__ZSt8_DestroyIPPtSaIS0_EEvT_S3_T0___ZSt8_DestroyIPPtSaIS0_EEvT_S3_T0_.eh__ZSt8_DestroyIPiSaIiEEvT_S2_T0___ZSt8_DestroyIPiSaIiEEvT_S2_T0_.eh__ZSt9make_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEEvT_S7___ZSt9make_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEEvT_S7_.eh__ZSt9sort_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEEvT_S7___ZSt9sort_heapIN9__gnu_cxx17__normal_iteratorIPiSt6vectorIiSaIiEEEEEvT_S7_.eh___progname__mh_execute_header_catch_exception_raise_catch_exception_raise_state_catch_exception_raise_state_identity_clock_alarm_reply_do_mach_notify_dead_name_do_mach_notify_no_senders_do_mach_notify_port_deleted_do_mach_notify_send_once_do_seqnos_mach_notify_dead_name_do_seqnos_mach_notify_no_senders_do_seqnos_mach_notify_port_deleted_do_seqnos_mach_notify_send_once_environ_receive_samples.objc_class_name_NSApplication.objc_class_name_NSAutoreleasePool.objc_class_name_NSMenu.objc_class_name_NSMenuItem.objc_class_name_NSObject.objc_class_name_NSProcessInfo.objc_class_name_NSString_CFBundleCopyBundleURL_CFBundleGetInfoDictionary_CFBundleGetMainBundle_CFRelease_CFURLCreateCopyDeletingLastPathComponent_CFURLGetFileSystemRepresentation_CPSEnableForegroundOperation_CPSGetCurrentProcess_CPSSetFrontProcess_NSAllocateMemoryPages_NSApp_NSDeallocateMemoryPages_Pa_GetDefaultInputDevice_Pa_GetDeviceCount_Pa_GetDeviceInfo_Pa_GetErrorText_Pa_Initialize_Pa_OpenStream_Pa_StartStream_Pa_StopStream_SDL_CreateThread_SDL_FreeSurface_SDL_GetTicks_SDL_Init_SDL_LockSurface_SDL_PollEvent_SDL_PushEvent_SDL_Quit_SDL_SetVideoMode_SDL_ShowCursor_SDL_UnlockSurface_SDL_UpdateRect_SDL_WM_GrabInput_SDL_WM_SetCaption_SDL_WaitThread__Unwind_Resume__ZN9__gnu_cxx18__exchange_and_addEPVii__ZNKSt12__basic_fileIcE7is_openEv__ZNKSt9basic_iosIcSt11char_traitsIcEE5widenEc__ZNSi7getlineEPcic__ZNSolsEd__ZNSolsEl__ZNSolsEm__ZNSs4_Rep10_M_destroyERKSaIcE__ZNSs4_Rep20_S_empty_rep_storageE__ZNSs6appendERKSs__ZNSsC1EPKcRKSaIcE__ZNSsC1ERKSs__ZNSt12__basic_fileIcED1Ev__ZNSt13basic_filebufIcSt11char_traitsIcEE5closeEv__ZNSt13basic_fstreamIcSt11char_traitsIcEEC1EPKcSt13_Ios_Openmode__ZNSt13runtime_errorC1ERKSs__ZNSt13runtime_errorD1Ev__ZNSt6localeD1Ev__ZNSt8ios_base4InitC1Ev__ZNSt8ios_base4InitD1Ev__ZNSt8ios_baseD2Ev__ZNSt9basic_iosIcSt11char_traitsIcEE5clearESt12_Ios_Iostate__ZSt17__throw_bad_allocv__ZSt20__throw_length_errorPKc__ZSt20__throw_out_of_rangePKc__ZSt4cerr__ZSt4cout__ZSt4endlIcSt11char_traitsIcEERSt13basic_ostreamIT_T0_ES6___ZSt9terminatev__ZStlsISt11char_traitsIcEERSt13basic_ostreamIcT_ES5_PKc__ZStlsIcSt11char_traitsIcESaIcEERSt13basic_ostreamIT_T0_ES7_RKSbIS4_S5_T1_E__ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_ERKS6_S8___ZStplIcSt11char_traitsIcESaIcEESbIT_T0_T1_ERKS6_S8_.eh__ZTIPKc__ZTISt13runtime_error__ZTTSt13basic_fstreamIcSt11char_traitsIcEE__ZTVSt13basic_filebufIcSt11char_traitsIcEE__ZTVSt13basic_fstreamIcSt11char_traitsIcEE__ZTVSt15basic_streambufIcSt11char_traitsIcEE__ZTVSt9basic_iosIcSt11char_traitsIcEE__ZdlPv__Znwm___CFConstantStringClassReference___cxa_allocate_exception___cxa_call_unexpected___cxa_free_exception___cxa_guard_abort___cxa_guard_acquire___cxa_guard_release___cxa_throw___gxx_personality_v0___keymgr_dwarf2_register_sections___sF__cthread_init_routine__keymgr_get_and_lock_processwide_ptr__keymgr_get_and_lock_processwide_ptr_2__keymgr_set_and_unlock_processwide_ptr_acos_atoi_calloc_chdir_cos_dlopen_dlsym_errno_exit_fflush_floor_free_getenv_getopt_long_log10_mach_init_routine_malloc_memcpy_memmove_memset_objc_msgSend_optarg_rand_realloc_signal_sin_srand_sscanf_strchr_strlcpy_strlen_strncmp_strncpy_time_usleepfische-3.2/Makefile.in0000644000175000017500000006440011514105437011612 00000000000000# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, # Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ subdir = . DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \ $(srcdir)/Makefile.in $(srcdir)/config.h.in \ $(top_srcdir)/configure AUTHORS COPYING ChangeLog INSTALL NEWS \ config.guess config.sub depcomp install-sh ltmain.sh missing ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \ configure.lineno config.status.lineno mkinstalldirs = $(install_sh) -d CONFIG_HEADER = config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = SOURCES = DIST_SOURCES = RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \ html-recursive info-recursive install-data-recursive \ install-dvi-recursive install-exec-recursive \ install-html-recursive install-info-recursive \ install-pdf-recursive install-ps-recursive install-recursive \ installcheck-recursive installdirs-recursive pdf-recursive \ ps-recursive uninstall-recursive am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; am__vpath_adj = case $$p in \ $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \ *) f=$$p;; \ esac; am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`; am__install_max = 40 am__nobase_strip_setup = \ srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'` am__nobase_strip = \ for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||" am__nobase_list = $(am__nobase_strip_setup); \ for p in $$list; do echo "$$p $$p"; done | \ sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \ $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \ if (++n[$$2] == $(am__install_max)) \ { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \ END { for (dir in files) print dir, files[dir] }' am__base_list = \ sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \ sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g' man1dir = $(mandir)/man1 am__installdirs = "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(docdir)" NROFF = nroff MANS = $(man1_MANS) DATA = $(doc_DATA) RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \ distclean-recursive maintainer-clean-recursive AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \ $(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \ distdir dist dist-all distcheck ETAGS = etags CTAGS = ctags DIST_SUBDIRS = $(SUBDIRS) DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) distdir = $(PACKAGE)-$(VERSION) top_distdir = $(distdir) am__remove_distdir = \ { test ! -d "$(distdir)" \ || { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \ && rm -fr "$(distdir)"; }; } am__relativize = \ dir0=`pwd`; \ sed_first='s,^\([^/]*\)/.*$$,\1,'; \ sed_rest='s,^[^/]*/*,,'; \ sed_last='s,^.*/\([^/]*\)$$,\1,'; \ sed_butlast='s,/*[^/]*$$,,'; \ while test -n "$$dir1"; do \ first=`echo "$$dir1" | sed -e "$$sed_first"`; \ if test "$$first" != "."; then \ if test "$$first" = ".."; then \ dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \ dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \ else \ first2=`echo "$$dir2" | sed -e "$$sed_first"`; \ if test "$$first2" = "$$first"; then \ dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \ else \ dir2="../$$dir2"; \ fi; \ dir0="$$dir0"/"$$first"; \ fi; \ fi; \ dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \ done; \ reldir="$$dir2" DIST_ARCHIVES = $(distdir).tar.gz GZIP_ENV = --best distuninstallcheck_listfiles = find . -type f -print distcleancheck_listfiles = find . -type f -print ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SDL_CFLAGS = @SDL_CFLAGS@ SDL_LIBS = @SDL_LIBS@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = \ $(datadir)/doc/fische dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ lt_ECHO = @lt_ECHO@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ SUBDIRS = src EXTRA_DIST = $(doc_DATA)\ $(man1_MANS)\ macosx/fische\ windows/fische.exe man1_MANS = fische.man doc_DATA = \ AUTHORS\ README all: config.h $(MAKE) $(AM_MAKEFLAGS) all-recursive .SUFFIXES: am--refresh: @: $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \ $(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \ && exit 0; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ echo ' $(SHELL) ./config.status'; \ $(SHELL) ./config.status;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) $(SHELL) ./config.status --recheck $(top_srcdir)/configure: $(am__configure_deps) $(am__cd) $(srcdir) && $(AUTOCONF) $(ACLOCAL_M4): $(am__aclocal_m4_deps) $(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS) $(am__aclocal_m4_deps): config.h: stamp-h1 @if test ! -f $@; then \ rm -f stamp-h1; \ $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \ else :; fi stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status @rm -f stamp-h1 cd $(top_builddir) && $(SHELL) ./config.status config.h $(srcdir)/config.h.in: $(am__configure_deps) ($(am__cd) $(top_srcdir) && $(AUTOHEADER)) rm -f stamp-h1 touch $@ distclean-hdr: -rm -f config.h stamp-h1 mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs distclean-libtool: -rm -f libtool config.lt install-man1: $(man1_MANS) @$(NORMAL_INSTALL) test -z "$(man1dir)" || $(MKDIR_P) "$(DESTDIR)$(man1dir)" @list='$(man1_MANS)'; test -n "$(man1dir)" || exit 0; \ { for i in $$list; do echo "$$i"; done; \ } | while read p; do \ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; echo "$$p"; \ done | \ sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \ sed 'N;N;s,\n, ,g' | { \ list=; while read file base inst; do \ if test "$$base" = "$$inst"; then list="$$list $$file"; else \ echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \ $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \ fi; \ done; \ for i in $$list; do echo "$$i"; done | $(am__base_list) | \ while read files; do \ test -z "$$files" || { \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \ done; } uninstall-man1: @$(NORMAL_UNINSTALL) @list='$(man1_MANS)'; test -n "$(man1dir)" || exit 0; \ files=`{ for i in $$list; do echo "$$i"; done; \ } | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \ -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \ test -z "$$files" || { \ echo " ( cd '$(DESTDIR)$(man1dir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(man1dir)" && rm -f $$files; } install-docDATA: $(doc_DATA) @$(NORMAL_INSTALL) test -z "$(docdir)" || $(MKDIR_P) "$(DESTDIR)$(docdir)" @list='$(doc_DATA)'; test -n "$(docdir)" || list=; \ for p in $$list; do \ if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \ echo "$$d$$p"; \ done | $(am__base_list) | \ while read files; do \ echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(docdir)'"; \ $(INSTALL_DATA) $$files "$(DESTDIR)$(docdir)" || exit $$?; \ done uninstall-docDATA: @$(NORMAL_UNINSTALL) @list='$(doc_DATA)'; test -n "$(docdir)" || list=; \ files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \ test -n "$$files" || exit 0; \ echo " ( cd '$(DESTDIR)$(docdir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(docdir)" && rm -f $$files # This directory's subdirectories are mostly independent; you can cd # into them and run `make' without going through this Makefile. # To change the values of `make' variables: instead of editing Makefiles, # (1) if the variable is set in `config.status', edit `config.status' # (which will cause the Makefiles to be regenerated when you run `make'); # (2) otherwise, pass the desired values on the `make' command line. $(RECURSIVE_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ target=`echo $@ | sed s/-recursive//`; \ list='$(SUBDIRS)'; for subdir in $$list; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ dot_seen=yes; \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done; \ if test "$$dot_seen" = "no"; then \ $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \ fi; test -z "$$fail" $(RECURSIVE_CLEAN_TARGETS): @fail= failcom='exit 1'; \ for f in x $$MAKEFLAGS; do \ case $$f in \ *=* | --[!k]*);; \ *k*) failcom='fail=yes';; \ esac; \ done; \ dot_seen=no; \ case "$@" in \ distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \ *) list='$(SUBDIRS)' ;; \ esac; \ rev=''; for subdir in $$list; do \ if test "$$subdir" = "."; then :; else \ rev="$$subdir $$rev"; \ fi; \ done; \ rev="$$rev ."; \ target=`echo $@ | sed s/-recursive//`; \ for subdir in $$rev; do \ echo "Making $$target in $$subdir"; \ if test "$$subdir" = "."; then \ local_target="$$target-am"; \ else \ local_target="$$target"; \ fi; \ ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \ || eval $$failcom; \ done && test -z "$$fail" tags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \ done ctags-recursive: list='$(SUBDIRS)'; for subdir in $$list; do \ test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \ done ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \ include_option=--etags-include; \ empty_fix=.; \ else \ include_option=--include; \ empty_fix=; \ fi; \ list='$(SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test ! -f $$subdir/TAGS || \ set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \ fi; \ done; \ list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @list='$(MANS)'; if test -n "$$list"; then \ list=`for p in $$list; do \ if test -f $$p; then d=; else d="$(srcdir)/"; fi; \ if test -f "$$d$$p"; then echo "$$d$$p"; else :; fi; done`; \ if test -n "$$list" && \ grep 'ab help2man is required to generate this page' $$list >/dev/null; then \ echo "error: found man pages containing the \`missing help2man' replacement text:" >&2; \ grep -l 'ab help2man is required to generate this page' $$list | sed 's/^/ /' >&2; \ echo " to fix them, install help2man, remove and regenerate the man pages;" >&2; \ echo " typically \`make maintainer-clean' will remove them" >&2; \ exit 1; \ else :; fi; \ else :; fi $(am__remove_distdir) test -d "$(distdir)" || mkdir "$(distdir)" @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ test -d "$(distdir)/$$subdir" \ || $(MKDIR_P) "$(distdir)/$$subdir" \ || exit 1; \ fi; \ done @list='$(DIST_SUBDIRS)'; for subdir in $$list; do \ if test "$$subdir" = .; then :; else \ dir1=$$subdir; dir2="$(distdir)/$$subdir"; \ $(am__relativize); \ new_distdir=$$reldir; \ dir1=$$subdir; dir2="$(top_distdir)"; \ $(am__relativize); \ new_top_distdir=$$reldir; \ echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \ echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \ ($(am__cd) $$subdir && \ $(MAKE) $(AM_MAKEFLAGS) \ top_distdir="$$new_top_distdir" \ distdir="$$new_distdir" \ am__remove_distdir=: \ am__skip_length_check=: \ am__skip_mode_fix=: \ distdir) \ || exit 1; \ fi; \ done -test -n "$(am__skip_mode_fix)" \ || find "$(distdir)" -type d ! -perm -755 \ -exec chmod u+rwx,go+rx {} \; -o \ ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \ ! -type d ! -perm -400 -exec chmod a+r {} \; -o \ ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \ || chmod -R a+r "$(distdir)" dist-gzip: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_distdir) dist-bzip2: distdir tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2 $(am__remove_distdir) dist-lzma: distdir tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma $(am__remove_distdir) dist-xz: distdir tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz $(am__remove_distdir) dist-tarZ: distdir tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z $(am__remove_distdir) dist-shar: distdir shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz $(am__remove_distdir) dist-zip: distdir -rm -f $(distdir).zip zip -rq $(distdir).zip $(distdir) $(am__remove_distdir) dist dist-all: distdir tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz $(am__remove_distdir) # This target untars the dist file and tries a VPATH configuration. Then # it guarantees that the distribution is self-contained by making another # tarfile. distcheck: dist case '$(DIST_ARCHIVES)' in \ *.tar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\ *.tar.bz2*) \ bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\ *.tar.lzma*) \ lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\ *.tar.xz*) \ xz -dc $(distdir).tar.xz | $(am__untar) ;;\ *.tar.Z*) \ uncompress -c $(distdir).tar.Z | $(am__untar) ;;\ *.shar.gz*) \ GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\ *.zip*) \ unzip $(distdir).zip ;;\ esac chmod -R a-w $(distdir); chmod a+w $(distdir) mkdir $(distdir)/_build mkdir $(distdir)/_inst chmod a-w $(distdir) test -d $(distdir)/_build || exit 0; \ dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \ && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \ && am__cwd=`pwd` \ && $(am__cd) $(distdir)/_build \ && ../configure --srcdir=.. --prefix="$$dc_install_base" \ $(DISTCHECK_CONFIGURE_FLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) \ && $(MAKE) $(AM_MAKEFLAGS) dvi \ && $(MAKE) $(AM_MAKEFLAGS) check \ && $(MAKE) $(AM_MAKEFLAGS) install \ && $(MAKE) $(AM_MAKEFLAGS) installcheck \ && $(MAKE) $(AM_MAKEFLAGS) uninstall \ && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \ distuninstallcheck \ && chmod -R a-w "$$dc_install_base" \ && ({ \ (cd ../.. && umask 077 && mkdir "$$dc_destdir") \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \ && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \ distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \ } || { rm -rf "$$dc_destdir"; exit 1; }) \ && rm -rf "$$dc_destdir" \ && $(MAKE) $(AM_MAKEFLAGS) dist \ && rm -rf $(DIST_ARCHIVES) \ && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \ && cd "$$am__cwd" \ || exit 1 $(am__remove_distdir) @(echo "$(distdir) archives ready for distribution: "; \ list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \ sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x' distuninstallcheck: @$(am__cd) '$(distuninstallcheck_dir)' \ && test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \ || { echo "ERROR: files left after uninstall:" ; \ if test -n "$(DESTDIR)"; then \ echo " (check DESTDIR support)"; \ fi ; \ $(distuninstallcheck_listfiles) ; \ exit 1; } >&2 distcleancheck: distclean @if test '$(srcdir)' = . ; then \ echo "ERROR: distcleancheck can only run from a VPATH build" ; \ exit 1 ; \ fi @test `$(distcleancheck_listfiles) | wc -l` -eq 0 \ || { echo "ERROR: files left in build directory after distclean:" ; \ $(distcleancheck_listfiles) ; \ exit 1; } >&2 check-am: all-am check: check-recursive all-am: Makefile $(MANS) $(DATA) config.h installdirs: installdirs-recursive installdirs-am: for dir in "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(docdir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-recursive install-exec: install-exec-recursive install-data: install-data-recursive uninstall: uninstall-recursive install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-recursive install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-recursive clean-am: clean-generic clean-libtool mostlyclean-am distclean: distclean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -f Makefile distclean-am: clean-am distclean-generic distclean-hdr \ distclean-libtool distclean-tags dvi: dvi-recursive dvi-am: html: html-recursive html-am: info: info-recursive info-am: install-data-am: install-docDATA install-man install-dvi: install-dvi-recursive install-dvi-am: install-exec-am: install-html: install-html-recursive install-html-am: install-info: install-info-recursive install-info-am: install-man: install-man1 install-pdf: install-pdf-recursive install-pdf-am: install-ps: install-ps-recursive install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-recursive -rm -f $(am__CONFIG_DISTCLEAN_FILES) -rm -rf $(top_srcdir)/autom4te.cache -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-recursive mostlyclean-am: mostlyclean-generic mostlyclean-libtool pdf: pdf-recursive pdf-am: ps: ps-recursive ps-am: uninstall-am: uninstall-docDATA uninstall-man uninstall-man: uninstall-man1 .MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all \ ctags-recursive install-am install-strip tags-recursive .PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \ all all-am am--refresh check check-am clean clean-generic \ clean-libtool ctags ctags-recursive dist dist-all dist-bzip2 \ dist-gzip dist-lzma dist-shar dist-tarZ dist-xz dist-zip \ distcheck distclean distclean-generic distclean-hdr \ distclean-libtool distclean-tags distcleancheck distdir \ distuninstallcheck dvi dvi-am html html-am info info-am \ install install-am install-data install-data-am \ install-docDATA install-dvi install-dvi-am install-exec \ install-exec-am install-html install-html-am install-info \ install-info-am install-man install-man1 install-pdf \ install-pdf-am install-ps install-ps-am install-strip \ installcheck installcheck-am installdirs installdirs-am \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \ tags tags-recursive uninstall uninstall-am uninstall-docDATA \ uninstall-man uninstall-man1 # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: fische-3.2/ChangeLog0000644000175000017500000000000211456057072011311 00000000000000 fische-3.2/config.guess0000644000175000017500000012753411456057072012100 00000000000000#! /bin/sh # Attempt to guess a canonical system name. # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, # 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 # Free Software Foundation, Inc. timestamp='2008-01-23' # This file is free software; you can redistribute it and/or modify it # under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # This program is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with this program; if not, write to the Free Software # Foundation, Inc., 51 Franklin Street - Fifth Floor, Boston, MA # 02110-1301, USA. # # As a special exception to the GNU General Public License, if you # distribute this file as part of a program that contains a # configuration script generated by Autoconf, you may include it under # the same distribution terms that you use for the rest of that program. # Originally written by Per Bothner . # Please send patches to . Submit a context # diff and a properly formatted ChangeLog entry. # # This script attempts to guess a canonical system name similar to # config.sub. If it succeeds, it prints the system name on stdout, and # exits with 0. Otherwise, it exits with 1. # # The plan is that this can be called by configure scripts if you # don't specify an explicit build system type. me=`echo "$0" | sed -e 's,.*/,,'` usage="\ Usage: $0 [OPTION] Output the configuration name of the system \`$me' is run on. Operation modes: -h, --help print this help, then exit -t, --time-stamp print date of last modification, then exit -v, --version print version number, then exit Report bugs and patches to ." version="\ GNU config.guess ($timestamp) Originally written by Per Bothner. Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008 Free Software Foundation, Inc. This is free software; see the source for copying conditions. There is NO warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE." help=" Try \`$me --help' for more information." # Parse command line while test $# -gt 0 ; do case $1 in --time-stamp | --time* | -t ) echo "$timestamp" ; exit ;; --version | -v ) echo "$version" ; exit ;; --help | --h* | -h ) echo "$usage"; exit ;; -- ) # Stop option processing shift; break ;; - ) # Use stdin as input. break ;; -* ) echo "$me: invalid option $1$help" >&2 exit 1 ;; * ) break ;; esac done if test $# != 0; then echo "$me: too many arguments$help" >&2 exit 1 fi trap 'exit 1' 1 2 15 # CC_FOR_BUILD -- compiler used by this script. Note that the use of a # compiler to aid in system detection is discouraged as it requires # temporary files to be created and, as you can see below, it is a # headache to deal with in a portable fashion. # Historically, `CC_FOR_BUILD' used to be named `HOST_CC'. We still # use `HOST_CC' if defined, but it is deprecated. # Portable tmp directory creation inspired by the Autoconf team. set_cc_for_build=' trap "exitcode=\$?; (rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null) && exit \$exitcode" 0 ; trap "rm -f \$tmpfiles 2>/dev/null; rmdir \$tmp 2>/dev/null; exit 1" 1 2 13 15 ; : ${TMPDIR=/tmp} ; { tmp=`(umask 077 && mktemp -d "$TMPDIR/cgXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" ; } || { test -n "$RANDOM" && tmp=$TMPDIR/cg$$-$RANDOM && (umask 077 && mkdir $tmp) ; } || { tmp=$TMPDIR/cg-$$ && (umask 077 && mkdir $tmp) && echo "Warning: creating insecure temp directory" >&2 ; } || { echo "$me: cannot create a temporary directory in $TMPDIR" >&2 ; exit 1 ; } ; dummy=$tmp/dummy ; tmpfiles="$dummy.c $dummy.o $dummy.rel $dummy" ; case $CC_FOR_BUILD,$HOST_CC,$CC in ,,) echo "int x;" > $dummy.c ; for c in cc gcc c89 c99 ; do if ($c -c -o $dummy.o $dummy.c) >/dev/null 2>&1 ; then CC_FOR_BUILD="$c"; break ; fi ; done ; if test x"$CC_FOR_BUILD" = x ; then CC_FOR_BUILD=no_compiler_found ; fi ;; ,,*) CC_FOR_BUILD=$CC ;; ,*,*) CC_FOR_BUILD=$HOST_CC ;; esac ; set_cc_for_build= ;' # This is needed to find uname on a Pyramid OSx when run in the BSD universe. # (ghazi@noc.rutgers.edu 1994-08-24) if (test -f /.attbin/uname) >/dev/null 2>&1 ; then PATH=$PATH:/.attbin ; export PATH fi UNAME_MACHINE=`(uname -m) 2>/dev/null` || UNAME_MACHINE=unknown UNAME_RELEASE=`(uname -r) 2>/dev/null` || UNAME_RELEASE=unknown UNAME_SYSTEM=`(uname -s) 2>/dev/null` || UNAME_SYSTEM=unknown UNAME_VERSION=`(uname -v) 2>/dev/null` || UNAME_VERSION=unknown # Note: order is significant - the case branches are not exclusive. case "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" in *:NetBSD:*:*) # NetBSD (nbsd) targets should (where applicable) match one or # more of the tupples: *-*-netbsdelf*, *-*-netbsdaout*, # *-*-netbsdecoff* and *-*-netbsd*. For targets that recently # switched to ELF, *-*-netbsd* would select the old # object file format. This provides both forward # compatibility and a consistent mechanism for selecting the # object file format. # # Note: NetBSD doesn't particularly care about the vendor # portion of the name. We always set it to "unknown". sysctl="sysctl -n hw.machine_arch" UNAME_MACHINE_ARCH=`(/sbin/$sysctl 2>/dev/null || \ /usr/sbin/$sysctl 2>/dev/null || echo unknown)` case "${UNAME_MACHINE_ARCH}" in armeb) machine=armeb-unknown ;; arm*) machine=arm-unknown ;; sh3el) machine=shl-unknown ;; sh3eb) machine=sh-unknown ;; sh5el) machine=sh5le-unknown ;; *) machine=${UNAME_MACHINE_ARCH}-unknown ;; esac # The Operating System including object format, if it has switched # to ELF recently, or will in the future. case "${UNAME_MACHINE_ARCH}" in arm*|i386|m68k|ns32k|sh3*|sparc|vax) eval $set_cc_for_build if echo __ELF__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep __ELF__ >/dev/null then # Once all utilities can be ECOFF (netbsdecoff) or a.out (netbsdaout). # Return netbsd for either. FIX? os=netbsd else os=netbsdelf fi ;; *) os=netbsd ;; esac # The OS release # Debian GNU/NetBSD machines have a different userland, and # thus, need a distinct triplet. However, they do not need # kernel version information, so it can be replaced with a # suitable tag, in the style of linux-gnu. case "${UNAME_VERSION}" in Debian*) release='-gnu' ;; *) release=`echo ${UNAME_RELEASE}|sed -e 's/[-_].*/\./'` ;; esac # Since CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM: # contains redundant information, the shorter form: # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM is used. echo "${machine}-${os}${release}" exit ;; *:OpenBSD:*:*) UNAME_MACHINE_ARCH=`arch | sed 's/OpenBSD.//'` echo ${UNAME_MACHINE_ARCH}-unknown-openbsd${UNAME_RELEASE} exit ;; *:ekkoBSD:*:*) echo ${UNAME_MACHINE}-unknown-ekkobsd${UNAME_RELEASE} exit ;; *:SolidBSD:*:*) echo ${UNAME_MACHINE}-unknown-solidbsd${UNAME_RELEASE} exit ;; macppc:MirBSD:*:*) echo powerpc-unknown-mirbsd${UNAME_RELEASE} exit ;; *:MirBSD:*:*) echo ${UNAME_MACHINE}-unknown-mirbsd${UNAME_RELEASE} exit ;; alpha:OSF1:*:*) case $UNAME_RELEASE in *4.0) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $3}'` ;; *5.*) UNAME_RELEASE=`/usr/sbin/sizer -v | awk '{print $4}'` ;; esac # According to Compaq, /usr/sbin/psrinfo has been available on # OSF/1 and Tru64 systems produced since 1995. I hope that # covers most systems running today. This code pipes the CPU # types through head -n 1, so we only detect the type of CPU 0. ALPHA_CPU_TYPE=`/usr/sbin/psrinfo -v | sed -n -e 's/^ The alpha \(.*\) processor.*$/\1/p' | head -n 1` case "$ALPHA_CPU_TYPE" in "EV4 (21064)") UNAME_MACHINE="alpha" ;; "EV4.5 (21064)") UNAME_MACHINE="alpha" ;; "LCA4 (21066/21068)") UNAME_MACHINE="alpha" ;; "EV5 (21164)") UNAME_MACHINE="alphaev5" ;; "EV5.6 (21164A)") UNAME_MACHINE="alphaev56" ;; "EV5.6 (21164PC)") UNAME_MACHINE="alphapca56" ;; "EV5.7 (21164PC)") UNAME_MACHINE="alphapca57" ;; "EV6 (21264)") UNAME_MACHINE="alphaev6" ;; "EV6.7 (21264A)") UNAME_MACHINE="alphaev67" ;; "EV6.8CB (21264C)") UNAME_MACHINE="alphaev68" ;; "EV6.8AL (21264B)") UNAME_MACHINE="alphaev68" ;; "EV6.8CX (21264D)") UNAME_MACHINE="alphaev68" ;; "EV6.9A (21264/EV69A)") UNAME_MACHINE="alphaev69" ;; "EV7 (21364)") UNAME_MACHINE="alphaev7" ;; "EV7.9 (21364A)") UNAME_MACHINE="alphaev79" ;; esac # A Pn.n version is a patched version. # A Vn.n version is a released version. # A Tn.n version is a released field test version. # A Xn.n version is an unreleased experimental baselevel. # 1.2 uses "1.2" for uname -r. echo ${UNAME_MACHINE}-dec-osf`echo ${UNAME_RELEASE} | sed -e 's/^[PVTX]//' | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` exit ;; Alpha\ *:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # Should we change UNAME_MACHINE based on the output of uname instead # of the specific Alpha model? echo alpha-pc-interix exit ;; 21064:Windows_NT:50:3) echo alpha-dec-winnt3.5 exit ;; Amiga*:UNIX_System_V:4.0:*) echo m68k-unknown-sysv4 exit ;; *:[Aa]miga[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-amigaos exit ;; *:[Mm]orph[Oo][Ss]:*:*) echo ${UNAME_MACHINE}-unknown-morphos exit ;; *:OS/390:*:*) echo i370-ibm-openedition exit ;; *:z/VM:*:*) echo s390-ibm-zvmoe exit ;; *:OS400:*:*) echo powerpc-ibm-os400 exit ;; arm:RISC*:1.[012]*:*|arm:riscix:1.[012]*:*) echo arm-acorn-riscix${UNAME_RELEASE} exit ;; arm:riscos:*:*|arm:RISCOS:*:*) echo arm-unknown-riscos exit ;; SR2?01:HI-UX/MPP:*:* | SR8000:HI-UX/MPP:*:*) echo hppa1.1-hitachi-hiuxmpp exit ;; Pyramid*:OSx*:*:* | MIS*:OSx*:*:* | MIS*:SMP_DC-OSx*:*:*) # akee@wpdis03.wpafb.af.mil (Earle F. Ake) contributed MIS and NILE. if test "`(/bin/universe) 2>/dev/null`" = att ; then echo pyramid-pyramid-sysv3 else echo pyramid-pyramid-bsd fi exit ;; NILE*:*:*:dcosx) echo pyramid-pyramid-svr4 exit ;; DRS?6000:unix:4.0:6*) echo sparc-icl-nx6 exit ;; DRS?6000:UNIX_SV:4.2*:7* | DRS?6000:isis:4.2*:7*) case `/usr/bin/uname -p` in sparc) echo sparc-icl-nx7; exit ;; esac ;; sun4H:SunOS:5.*:*) echo sparc-hal-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:5.*:* | tadpole*:SunOS:5.*:*) echo sparc-sun-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; i86pc:SunOS:5.*:* | i86xen:SunOS:5.*:*) echo i386-pc-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:6*:*) # According to config.sub, this is the proper way to canonicalize # SunOS6. Hard to guess exactly what SunOS6 will be like, but # it's likely to be more like Solaris than SunOS4. echo sparc-sun-solaris3`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; sun4*:SunOS:*:*) case "`/usr/bin/arch -k`" in Series*|S4*) UNAME_RELEASE=`uname -v` ;; esac # Japanese Language versions have a version number like `4.1.3-JL'. echo sparc-sun-sunos`echo ${UNAME_RELEASE}|sed -e 's/-/_/'` exit ;; sun3*:SunOS:*:*) echo m68k-sun-sunos${UNAME_RELEASE} exit ;; sun*:*:4.2BSD:*) UNAME_RELEASE=`(sed 1q /etc/motd | awk '{print substr($5,1,3)}') 2>/dev/null` test "x${UNAME_RELEASE}" = "x" && UNAME_RELEASE=3 case "`/bin/arch`" in sun3) echo m68k-sun-sunos${UNAME_RELEASE} ;; sun4) echo sparc-sun-sunos${UNAME_RELEASE} ;; esac exit ;; aushp:SunOS:*:*) echo sparc-auspex-sunos${UNAME_RELEASE} exit ;; # The situation for MiNT is a little confusing. The machine name # can be virtually everything (everything which is not # "atarist" or "atariste" at least should have a processor # > m68000). The system name ranges from "MiNT" over "FreeMiNT" # to the lowercase version "mint" (or "freemint"). Finally # the system name "TOS" denotes a system which is actually not # MiNT. But MiNT is downward compatible to TOS, so this should # be no problem. atarist[e]:*MiNT:*:* | atarist[e]:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; atari*:*MiNT:*:* | atari*:*mint:*:* | atarist[e]:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; *falcon*:*MiNT:*:* | *falcon*:*mint:*:* | *falcon*:*TOS:*:*) echo m68k-atari-mint${UNAME_RELEASE} exit ;; milan*:*MiNT:*:* | milan*:*mint:*:* | *milan*:*TOS:*:*) echo m68k-milan-mint${UNAME_RELEASE} exit ;; hades*:*MiNT:*:* | hades*:*mint:*:* | *hades*:*TOS:*:*) echo m68k-hades-mint${UNAME_RELEASE} exit ;; *:*MiNT:*:* | *:*mint:*:* | *:*TOS:*:*) echo m68k-unknown-mint${UNAME_RELEASE} exit ;; m68k:machten:*:*) echo m68k-apple-machten${UNAME_RELEASE} exit ;; powerpc:machten:*:*) echo powerpc-apple-machten${UNAME_RELEASE} exit ;; RISC*:Mach:*:*) echo mips-dec-mach_bsd4.3 exit ;; RISC*:ULTRIX:*:*) echo mips-dec-ultrix${UNAME_RELEASE} exit ;; VAX*:ULTRIX*:*:*) echo vax-dec-ultrix${UNAME_RELEASE} exit ;; 2020:CLIX:*:* | 2430:CLIX:*:*) echo clipper-intergraph-clix${UNAME_RELEASE} exit ;; mips:*:*:UMIPS | mips:*:*:RISCos) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #ifdef __cplusplus #include /* for printf() prototype */ int main (int argc, char *argv[]) { #else int main (argc, argv) int argc; char *argv[]; { #endif #if defined (host_mips) && defined (MIPSEB) #if defined (SYSTYPE_SYSV) printf ("mips-mips-riscos%ssysv\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_SVR4) printf ("mips-mips-riscos%ssvr4\n", argv[1]); exit (0); #endif #if defined (SYSTYPE_BSD43) || defined(SYSTYPE_BSD) printf ("mips-mips-riscos%sbsd\n", argv[1]); exit (0); #endif #endif exit (-1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && dummyarg=`echo "${UNAME_RELEASE}" | sed -n 's/\([0-9]*\).*/\1/p'` && SYSTEM_NAME=`$dummy $dummyarg` && { echo "$SYSTEM_NAME"; exit; } echo mips-mips-riscos${UNAME_RELEASE} exit ;; Motorola:PowerMAX_OS:*:*) echo powerpc-motorola-powermax exit ;; Motorola:*:4.3:PL8-*) echo powerpc-harris-powermax exit ;; Night_Hawk:*:*:PowerMAX_OS | Synergy:PowerMAX_OS:*:*) echo powerpc-harris-powermax exit ;; Night_Hawk:Power_UNIX:*:*) echo powerpc-harris-powerunix exit ;; m88k:CX/UX:7*:*) echo m88k-harris-cxux7 exit ;; m88k:*:4*:R4*) echo m88k-motorola-sysv4 exit ;; m88k:*:3*:R3*) echo m88k-motorola-sysv3 exit ;; AViiON:dgux:*:*) # DG/UX returns AViiON for all architectures UNAME_PROCESSOR=`/usr/bin/uname -p` if [ $UNAME_PROCESSOR = mc88100 ] || [ $UNAME_PROCESSOR = mc88110 ] then if [ ${TARGET_BINARY_INTERFACE}x = m88kdguxelfx ] || \ [ ${TARGET_BINARY_INTERFACE}x = x ] then echo m88k-dg-dgux${UNAME_RELEASE} else echo m88k-dg-dguxbcs${UNAME_RELEASE} fi else echo i586-dg-dgux${UNAME_RELEASE} fi exit ;; M88*:DolphinOS:*:*) # DolphinOS (SVR3) echo m88k-dolphin-sysv3 exit ;; M88*:*:R3*:*) # Delta 88k system running SVR3 echo m88k-motorola-sysv3 exit ;; XD88*:*:*:*) # Tektronix XD88 system running UTekV (SVR3) echo m88k-tektronix-sysv3 exit ;; Tek43[0-9][0-9]:UTek:*:*) # Tektronix 4300 system running UTek (BSD) echo m68k-tektronix-bsd exit ;; *:IRIX*:*:*) echo mips-sgi-irix`echo ${UNAME_RELEASE}|sed -e 's/-/_/g'` exit ;; ????????:AIX?:[12].1:2) # AIX 2.2.1 or AIX 2.1.1 is RT/PC AIX. echo romp-ibm-aix # uname -m gives an 8 hex-code CPU id exit ;; # Note that: echo "'`uname -s`'" gives 'AIX ' i*86:AIX:*:*) echo i386-ibm-aix exit ;; ia64:AIX:*:*) if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${UNAME_MACHINE}-ibm-aix${IBM_REV} exit ;; *:AIX:2:3) if grep bos325 /usr/include/stdio.h >/dev/null 2>&1; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include main() { if (!__power_pc()) exit(1); puts("powerpc-ibm-aix3.2.5"); exit(0); } EOF if $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` then echo "$SYSTEM_NAME" else echo rs6000-ibm-aix3.2.5 fi elif grep bos324 /usr/include/stdio.h >/dev/null 2>&1; then echo rs6000-ibm-aix3.2.4 else echo rs6000-ibm-aix3.2 fi exit ;; *:AIX:*:[456]) IBM_CPU_ID=`/usr/sbin/lsdev -C -c processor -S available | sed 1q | awk '{ print $1 }'` if /usr/sbin/lsattr -El ${IBM_CPU_ID} | grep ' POWER' >/dev/null 2>&1; then IBM_ARCH=rs6000 else IBM_ARCH=powerpc fi if [ -x /usr/bin/oslevel ] ; then IBM_REV=`/usr/bin/oslevel` else IBM_REV=${UNAME_VERSION}.${UNAME_RELEASE} fi echo ${IBM_ARCH}-ibm-aix${IBM_REV} exit ;; *:AIX:*:*) echo rs6000-ibm-aix exit ;; ibmrt:4.4BSD:*|romp-ibm:BSD:*) echo romp-ibm-bsd4.4 exit ;; ibmrt:*BSD:*|romp-ibm:BSD:*) # covers RT/PC BSD and echo romp-ibm-bsd${UNAME_RELEASE} # 4.3 with uname added to exit ;; # report: romp-ibm BSD 4.3 *:BOSX:*:*) echo rs6000-bull-bosx exit ;; DPX/2?00:B.O.S.:*:*) echo m68k-bull-sysv3 exit ;; 9000/[34]??:4.3bsd:1.*:*) echo m68k-hp-bsd exit ;; hp300:4.4BSD:*:* | 9000/[34]??:4.3bsd:2.*:*) echo m68k-hp-bsd4.4 exit ;; 9000/[34678]??:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` case "${UNAME_MACHINE}" in 9000/31? ) HP_ARCH=m68000 ;; 9000/[34]?? ) HP_ARCH=m68k ;; 9000/[678][0-9][0-9]) if [ -x /usr/bin/getconf ]; then sc_cpu_version=`/usr/bin/getconf SC_CPU_VERSION 2>/dev/null` sc_kernel_bits=`/usr/bin/getconf SC_KERNEL_BITS 2>/dev/null` case "${sc_cpu_version}" in 523) HP_ARCH="hppa1.0" ;; # CPU_PA_RISC1_0 528) HP_ARCH="hppa1.1" ;; # CPU_PA_RISC1_1 532) # CPU_PA_RISC2_0 case "${sc_kernel_bits}" in 32) HP_ARCH="hppa2.0n" ;; 64) HP_ARCH="hppa2.0w" ;; '') HP_ARCH="hppa2.0" ;; # HP-UX 10.20 esac ;; esac fi if [ "${HP_ARCH}" = "" ]; then eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #define _HPUX_SOURCE #include #include int main () { #if defined(_SC_KERNEL_BITS) long bits = sysconf(_SC_KERNEL_BITS); #endif long cpu = sysconf (_SC_CPU_VERSION); switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0"); break; case CPU_PA_RISC1_1: puts ("hppa1.1"); break; case CPU_PA_RISC2_0: #if defined(_SC_KERNEL_BITS) switch (bits) { case 64: puts ("hppa2.0w"); break; case 32: puts ("hppa2.0n"); break; default: puts ("hppa2.0"); break; } break; #else /* !defined(_SC_KERNEL_BITS) */ puts ("hppa2.0"); break; #endif default: puts ("hppa1.0"); break; } exit (0); } EOF (CCOPTS= $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null) && HP_ARCH=`$dummy` test -z "$HP_ARCH" && HP_ARCH=hppa fi ;; esac if [ ${HP_ARCH} = "hppa2.0w" ] then eval $set_cc_for_build # hppa2.0w-hp-hpux* has a 64-bit kernel and a compiler generating # 32-bit code. hppa64-hp-hpux* has the same kernel and a compiler # generating 64-bit code. GNU and HP use different nomenclature: # # $ CC_FOR_BUILD=cc ./config.guess # => hppa2.0w-hp-hpux11.23 # $ CC_FOR_BUILD="cc +DA2.0w" ./config.guess # => hppa64-hp-hpux11.23 if echo __LP64__ | (CCOPTS= $CC_FOR_BUILD -E - 2>/dev/null) | grep __LP64__ >/dev/null then HP_ARCH="hppa2.0w" else HP_ARCH="hppa64" fi fi echo ${HP_ARCH}-hp-hpux${HPUX_REV} exit ;; ia64:HP-UX:*:*) HPUX_REV=`echo ${UNAME_RELEASE}|sed -e 's/[^.]*.[0B]*//'` echo ia64-hp-hpux${HPUX_REV} exit ;; 3050*:HI-UX:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include int main () { long cpu = sysconf (_SC_CPU_VERSION); /* The order matters, because CPU_IS_HP_MC68K erroneously returns true for CPU_PA_RISC1_0. CPU_IS_PA_RISC returns correct results, however. */ if (CPU_IS_PA_RISC (cpu)) { switch (cpu) { case CPU_PA_RISC1_0: puts ("hppa1.0-hitachi-hiuxwe2"); break; case CPU_PA_RISC1_1: puts ("hppa1.1-hitachi-hiuxwe2"); break; case CPU_PA_RISC2_0: puts ("hppa2.0-hitachi-hiuxwe2"); break; default: puts ("hppa-hitachi-hiuxwe2"); break; } } else if (CPU_IS_HP_MC68K (cpu)) puts ("m68k-hitachi-hiuxwe2"); else puts ("unknown-hitachi-hiuxwe2"); exit (0); } EOF $CC_FOR_BUILD -o $dummy $dummy.c && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } echo unknown-hitachi-hiuxwe2 exit ;; 9000/7??:4.3bsd:*:* | 9000/8?[79]:4.3bsd:*:* ) echo hppa1.1-hp-bsd exit ;; 9000/8??:4.3bsd:*:*) echo hppa1.0-hp-bsd exit ;; *9??*:MPE/iX:*:* | *3000*:MPE/iX:*:*) echo hppa1.0-hp-mpeix exit ;; hp7??:OSF1:*:* | hp8?[79]:OSF1:*:* ) echo hppa1.1-hp-osf exit ;; hp8??:OSF1:*:*) echo hppa1.0-hp-osf exit ;; i*86:OSF1:*:*) if [ -x /usr/sbin/sysversion ] ; then echo ${UNAME_MACHINE}-unknown-osf1mk else echo ${UNAME_MACHINE}-unknown-osf1 fi exit ;; parisc*:Lites*:*:*) echo hppa1.1-hp-lites exit ;; C1*:ConvexOS:*:* | convex:ConvexOS:C1*:*) echo c1-convex-bsd exit ;; C2*:ConvexOS:*:* | convex:ConvexOS:C2*:*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; C34*:ConvexOS:*:* | convex:ConvexOS:C34*:*) echo c34-convex-bsd exit ;; C38*:ConvexOS:*:* | convex:ConvexOS:C38*:*) echo c38-convex-bsd exit ;; C4*:ConvexOS:*:* | convex:ConvexOS:C4*:*) echo c4-convex-bsd exit ;; CRAY*Y-MP:*:*:*) echo ymp-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*[A-Z]90:*:*:*) echo ${UNAME_MACHINE}-cray-unicos${UNAME_RELEASE} \ | sed -e 's/CRAY.*\([A-Z]90\)/\1/' \ -e y/ABCDEFGHIJKLMNOPQRSTUVWXYZ/abcdefghijklmnopqrstuvwxyz/ \ -e 's/\.[^.]*$/.X/' exit ;; CRAY*TS:*:*:*) echo t90-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*T3E:*:*:*) echo alphaev5-cray-unicosmk${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; CRAY*SV1:*:*:*) echo sv1-cray-unicos${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; *:UNICOS/mp:*:*) echo craynv-cray-unicosmp${UNAME_RELEASE} | sed -e 's/\.[^.]*$/.X/' exit ;; F30[01]:UNIX_System_V:*:* | F700:UNIX_System_V:*:*) FUJITSU_PROC=`uname -m | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz'` FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | sed -e 's/ /_/'` echo "${FUJITSU_PROC}-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; 5000:UNIX_System_V:4.*:*) FUJITSU_SYS=`uname -p | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/\///'` FUJITSU_REL=`echo ${UNAME_RELEASE} | tr 'ABCDEFGHIJKLMNOPQRSTUVWXYZ' 'abcdefghijklmnopqrstuvwxyz' | sed -e 's/ /_/'` echo "sparc-fujitsu-${FUJITSU_SYS}${FUJITSU_REL}" exit ;; i*86:BSD/386:*:* | i*86:BSD/OS:*:* | *:Ascend\ Embedded/OS:*:*) echo ${UNAME_MACHINE}-pc-bsdi${UNAME_RELEASE} exit ;; sparc*:BSD/OS:*:*) echo sparc-unknown-bsdi${UNAME_RELEASE} exit ;; *:BSD/OS:*:*) echo ${UNAME_MACHINE}-unknown-bsdi${UNAME_RELEASE} exit ;; *:FreeBSD:*:*) case ${UNAME_MACHINE} in pc98) echo i386-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; amd64) echo x86_64-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; *) echo ${UNAME_MACHINE}-unknown-freebsd`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` ;; esac exit ;; i*:CYGWIN*:*) echo ${UNAME_MACHINE}-pc-cygwin exit ;; *:MINGW*:*) echo ${UNAME_MACHINE}-pc-mingw32 exit ;; i*:windows32*:*) # uname -m includes "-pc" on this system. echo ${UNAME_MACHINE}-mingw32 exit ;; i*:PW*:*) echo ${UNAME_MACHINE}-pc-pw32 exit ;; *:Interix*:[3456]*) case ${UNAME_MACHINE} in x86) echo i586-pc-interix${UNAME_RELEASE} exit ;; EM64T | authenticamd) echo x86_64-unknown-interix${UNAME_RELEASE} exit ;; IA64) echo ia64-unknown-interix${UNAME_RELEASE} exit ;; esac ;; [345]86:Windows_95:* | [345]86:Windows_98:* | [345]86:Windows_NT:*) echo i${UNAME_MACHINE}-pc-mks exit ;; i*:Windows_NT*:* | Pentium*:Windows_NT*:*) # How do we know it's Interix rather than the generic POSIX subsystem? # It also conflicts with pre-2.0 versions of AT&T UWIN. Should we # UNAME_MACHINE based on the output of uname instead of i386? echo i586-pc-interix exit ;; i*:UWIN*:*) echo ${UNAME_MACHINE}-pc-uwin exit ;; amd64:CYGWIN*:*:* | x86_64:CYGWIN*:*:*) echo x86_64-unknown-cygwin exit ;; p*:CYGWIN*:*) echo powerpcle-unknown-cygwin exit ;; prep*:SunOS:5.*:*) echo powerpcle-unknown-solaris2`echo ${UNAME_RELEASE}|sed -e 's/[^.]*//'` exit ;; *:GNU:*:*) # the GNU system echo `echo ${UNAME_MACHINE}|sed -e 's,[-/].*$,,'`-unknown-gnu`echo ${UNAME_RELEASE}|sed -e 's,/.*$,,'` exit ;; *:GNU/*:*:*) # other systems with GNU libc and userland echo ${UNAME_MACHINE}-unknown-`echo ${UNAME_SYSTEM} | sed 's,^[^/]*/,,' | tr '[A-Z]' '[a-z]'``echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'`-gnu exit ;; i*86:Minix:*:*) echo ${UNAME_MACHINE}-pc-minix exit ;; arm*:Linux:*:*) eval $set_cc_for_build if echo __ARM_EABI__ | $CC_FOR_BUILD -E - 2>/dev/null \ | grep -q __ARM_EABI__ then echo ${UNAME_MACHINE}-unknown-linux-gnu else echo ${UNAME_MACHINE}-unknown-linux-gnueabi fi exit ;; avr32*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; cris:Linux:*:*) echo cris-axis-linux-gnu exit ;; crisv32:Linux:*:*) echo crisv32-axis-linux-gnu exit ;; frv:Linux:*:*) echo frv-unknown-linux-gnu exit ;; ia64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; m32r*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; m68*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; mips:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU #undef mips #undef mipsel #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) CPU=mipsel #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) CPU=mips #else CPU= #endif #endif EOF eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' /^CPU/{ s: ::g p }'`" test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; mips64:Linux:*:*) eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #undef CPU #undef mips64 #undef mips64el #if defined(__MIPSEL__) || defined(__MIPSEL) || defined(_MIPSEL) || defined(MIPSEL) CPU=mips64el #else #if defined(__MIPSEB__) || defined(__MIPSEB) || defined(_MIPSEB) || defined(MIPSEB) CPU=mips64 #else CPU= #endif #endif EOF eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' /^CPU/{ s: ::g p }'`" test x"${CPU}" != x && { echo "${CPU}-unknown-linux-gnu"; exit; } ;; or32:Linux:*:*) echo or32-unknown-linux-gnu exit ;; ppc:Linux:*:*) echo powerpc-unknown-linux-gnu exit ;; ppc64:Linux:*:*) echo powerpc64-unknown-linux-gnu exit ;; alpha:Linux:*:*) case `sed -n '/^cpu model/s/^.*: \(.*\)/\1/p' < /proc/cpuinfo` in EV5) UNAME_MACHINE=alphaev5 ;; EV56) UNAME_MACHINE=alphaev56 ;; PCA56) UNAME_MACHINE=alphapca56 ;; PCA57) UNAME_MACHINE=alphapca56 ;; EV6) UNAME_MACHINE=alphaev6 ;; EV67) UNAME_MACHINE=alphaev67 ;; EV68*) UNAME_MACHINE=alphaev68 ;; esac objdump --private-headers /bin/sh | grep ld.so.1 >/dev/null if test "$?" = 0 ; then LIBC="libc1" ; else LIBC="" ; fi echo ${UNAME_MACHINE}-unknown-linux-gnu${LIBC} exit ;; parisc:Linux:*:* | hppa:Linux:*:*) # Look for CPU level case `grep '^cpu[^a-z]*:' /proc/cpuinfo 2>/dev/null | cut -d' ' -f2` in PA7*) echo hppa1.1-unknown-linux-gnu ;; PA8*) echo hppa2.0-unknown-linux-gnu ;; *) echo hppa-unknown-linux-gnu ;; esac exit ;; parisc64:Linux:*:* | hppa64:Linux:*:*) echo hppa64-unknown-linux-gnu exit ;; s390:Linux:*:* | s390x:Linux:*:*) echo ${UNAME_MACHINE}-ibm-linux exit ;; sh64*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; sh*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; sparc:Linux:*:* | sparc64:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; vax:Linux:*:*) echo ${UNAME_MACHINE}-dec-linux-gnu exit ;; x86_64:Linux:*:*) echo x86_64-unknown-linux-gnu exit ;; xtensa*:Linux:*:*) echo ${UNAME_MACHINE}-unknown-linux-gnu exit ;; i*86:Linux:*:*) # The BFD linker knows what the default object file format is, so # first see if it will tell us. cd to the root directory to prevent # problems with other programs or directories called `ld' in the path. # Set LC_ALL=C to ensure ld outputs messages in English. ld_supported_targets=`cd /; LC_ALL=C ld --help 2>&1 \ | sed -ne '/supported targets:/!d s/[ ][ ]*/ /g s/.*supported targets: *// s/ .*// p'` case "$ld_supported_targets" in elf32-i386) TENTATIVE="${UNAME_MACHINE}-pc-linux-gnu" ;; a.out-i386-linux) echo "${UNAME_MACHINE}-pc-linux-gnuaout" exit ;; coff-i386) echo "${UNAME_MACHINE}-pc-linux-gnucoff" exit ;; "") # Either a pre-BFD a.out linker (linux-gnuoldld) or # one that does not give us useful --help. echo "${UNAME_MACHINE}-pc-linux-gnuoldld" exit ;; esac # Determine whether the default compiler is a.out or elf eval $set_cc_for_build sed 's/^ //' << EOF >$dummy.c #include #ifdef __ELF__ # ifdef __GLIBC__ # if __GLIBC__ >= 2 LIBC=gnu # else LIBC=gnulibc1 # endif # else LIBC=gnulibc1 # endif #else #if defined(__INTEL_COMPILER) || defined(__PGI) || defined(__SUNPRO_C) || defined(__SUNPRO_CC) LIBC=gnu #else LIBC=gnuaout #endif #endif #ifdef __dietlibc__ LIBC=dietlibc #endif EOF eval "`$CC_FOR_BUILD -E $dummy.c 2>/dev/null | sed -n ' /^LIBC/{ s: ::g p }'`" test x"${LIBC}" != x && { echo "${UNAME_MACHINE}-pc-linux-${LIBC}" exit } test x"${TENTATIVE}" != x && { echo "${TENTATIVE}"; exit; } ;; i*86:DYNIX/ptx:4*:*) # ptx 4.0 does uname -s correctly, with DYNIX/ptx in there. # earlier versions are messed up and put the nodename in both # sysname and nodename. echo i386-sequent-sysv4 exit ;; i*86:UNIX_SV:4.2MP:2.*) # Unixware is an offshoot of SVR4, but it has its own version # number series starting with 2... # I am not positive that other SVR4 systems won't match this, # I just have to hope. -- rms. # Use sysv4.2uw... so that sysv4* matches it. echo ${UNAME_MACHINE}-pc-sysv4.2uw${UNAME_VERSION} exit ;; i*86:OS/2:*:*) # If we were able to find `uname', then EMX Unix compatibility # is probably installed. echo ${UNAME_MACHINE}-pc-os2-emx exit ;; i*86:XTS-300:*:STOP) echo ${UNAME_MACHINE}-unknown-stop exit ;; i*86:atheos:*:*) echo ${UNAME_MACHINE}-unknown-atheos exit ;; i*86:syllable:*:*) echo ${UNAME_MACHINE}-pc-syllable exit ;; i*86:LynxOS:2.*:* | i*86:LynxOS:3.[01]*:* | i*86:LynxOS:4.0*:*) echo i386-unknown-lynxos${UNAME_RELEASE} exit ;; i*86:*DOS:*:*) echo ${UNAME_MACHINE}-pc-msdosdjgpp exit ;; i*86:*:4.*:* | i*86:SYSTEM_V:4.*:*) UNAME_REL=`echo ${UNAME_RELEASE} | sed 's/\/MP$//'` if grep Novell /usr/include/link.h >/dev/null 2>/dev/null; then echo ${UNAME_MACHINE}-univel-sysv${UNAME_REL} else echo ${UNAME_MACHINE}-pc-sysv${UNAME_REL} fi exit ;; i*86:*:5:[678]*) # UnixWare 7.x, OpenUNIX and OpenServer 6. case `/bin/uname -X | grep "^Machine"` in *486*) UNAME_MACHINE=i486 ;; *Pentium) UNAME_MACHINE=i586 ;; *Pent*|*Celeron) UNAME_MACHINE=i686 ;; esac echo ${UNAME_MACHINE}-unknown-sysv${UNAME_RELEASE}${UNAME_SYSTEM}${UNAME_VERSION} exit ;; i*86:*:3.2:*) if test -f /usr/options/cb.name; then UNAME_REL=`sed -n 's/.*Version //p' /dev/null >/dev/null ; then UNAME_REL=`(/bin/uname -X|grep Release|sed -e 's/.*= //')` (/bin/uname -X|grep i80486 >/dev/null) && UNAME_MACHINE=i486 (/bin/uname -X|grep '^Machine.*Pentium' >/dev/null) \ && UNAME_MACHINE=i586 (/bin/uname -X|grep '^Machine.*Pent *II' >/dev/null) \ && UNAME_MACHINE=i686 (/bin/uname -X|grep '^Machine.*Pentium Pro' >/dev/null) \ && UNAME_MACHINE=i686 echo ${UNAME_MACHINE}-pc-sco$UNAME_REL else echo ${UNAME_MACHINE}-pc-sysv32 fi exit ;; pc:*:*:*) # Left here for compatibility: # uname -m prints for DJGPP always 'pc', but it prints nothing about # the processor, so we play safe by assuming i386. echo i386-pc-msdosdjgpp exit ;; Intel:Mach:3*:*) echo i386-pc-mach3 exit ;; paragon:*:*:*) echo i860-intel-osf1 exit ;; i860:*:4.*:*) # i860-SVR4 if grep Stardent /usr/include/sys/uadmin.h >/dev/null 2>&1 ; then echo i860-stardent-sysv${UNAME_RELEASE} # Stardent Vistra i860-SVR4 else # Add other i860-SVR4 vendors below as they are discovered. echo i860-unknown-sysv${UNAME_RELEASE} # Unknown i860-SVR4 fi exit ;; mini*:CTIX:SYS*5:*) # "miniframe" echo m68010-convergent-sysv exit ;; mc68k:UNIX:SYSTEM5:3.51m) echo m68k-convergent-sysv exit ;; M680?0:D-NIX:5.3:*) echo m68k-diab-dnix exit ;; M68*:*:R3V[5678]*:*) test -r /sysV68 && { echo 'm68k-motorola-sysv'; exit; } ;; 3[345]??:*:4.0:3.0 | 3[34]??A:*:4.0:3.0 | 3[34]??,*:*:4.0:3.0 | 3[34]??/*:*:4.0:3.0 | 4400:*:4.0:3.0 | 4850:*:4.0:3.0 | SKA40:*:4.0:3.0 | SDS2:*:4.0:3.0 | SHG2:*:4.0:3.0 | S7501*:*:4.0:3.0) OS_REL='' test -r /etc/.relid \ && OS_REL=.`sed -n 's/[^ ]* [^ ]* \([0-9][0-9]\).*/\1/p' < /etc/.relid` /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4.3${OS_REL}; exit; } /bin/uname -p 2>/dev/null | /bin/grep entium >/dev/null \ && { echo i586-ncr-sysv4.3${OS_REL}; exit; } ;; 3[34]??:*:4.0:* | 3[34]??,*:*:4.0:*) /bin/uname -p 2>/dev/null | grep 86 >/dev/null \ && { echo i486-ncr-sysv4; exit; } ;; m68*:LynxOS:2.*:* | m68*:LynxOS:3.0*:*) echo m68k-unknown-lynxos${UNAME_RELEASE} exit ;; mc68030:UNIX_System_V:4.*:*) echo m68k-atari-sysv4 exit ;; TSUNAMI:LynxOS:2.*:*) echo sparc-unknown-lynxos${UNAME_RELEASE} exit ;; rs6000:LynxOS:2.*:*) echo rs6000-unknown-lynxos${UNAME_RELEASE} exit ;; PowerPC:LynxOS:2.*:* | PowerPC:LynxOS:3.[01]*:* | PowerPC:LynxOS:4.0*:*) echo powerpc-unknown-lynxos${UNAME_RELEASE} exit ;; SM[BE]S:UNIX_SV:*:*) echo mips-dde-sysv${UNAME_RELEASE} exit ;; RM*:ReliantUNIX-*:*:*) echo mips-sni-sysv4 exit ;; RM*:SINIX-*:*:*) echo mips-sni-sysv4 exit ;; *:SINIX-*:*:*) if uname -p 2>/dev/null >/dev/null ; then UNAME_MACHINE=`(uname -p) 2>/dev/null` echo ${UNAME_MACHINE}-sni-sysv4 else echo ns32k-sni-sysv fi exit ;; PENTIUM:*:4.0*:*) # Unisys `ClearPath HMP IX 4000' SVR4/MP effort # says echo i586-unisys-sysv4 exit ;; *:UNIX_System_V:4*:FTX*) # From Gerald Hewes . # How about differentiating between stratus architectures? -djm echo hppa1.1-stratus-sysv4 exit ;; *:*:*:FTX*) # From seanf@swdc.stratus.com. echo i860-stratus-sysv4 exit ;; i*86:VOS:*:*) # From Paul.Green@stratus.com. echo ${UNAME_MACHINE}-stratus-vos exit ;; *:VOS:*:*) # From Paul.Green@stratus.com. echo hppa1.1-stratus-vos exit ;; mc68*:A/UX:*:*) echo m68k-apple-aux${UNAME_RELEASE} exit ;; news*:NEWS-OS:6*:*) echo mips-sony-newsos6 exit ;; R[34]000:*System_V*:*:* | R4000:UNIX_SYSV:*:* | R*000:UNIX_SV:*:*) if [ -d /usr/nec ]; then echo mips-nec-sysv${UNAME_RELEASE} else echo mips-unknown-sysv${UNAME_RELEASE} fi exit ;; BeBox:BeOS:*:*) # BeOS running on hardware made by Be, PPC only. echo powerpc-be-beos exit ;; BeMac:BeOS:*:*) # BeOS running on Mac or Mac clone, PPC only. echo powerpc-apple-beos exit ;; BePC:BeOS:*:*) # BeOS running on Intel PC compatible. echo i586-pc-beos exit ;; SX-4:SUPER-UX:*:*) echo sx4-nec-superux${UNAME_RELEASE} exit ;; SX-5:SUPER-UX:*:*) echo sx5-nec-superux${UNAME_RELEASE} exit ;; SX-6:SUPER-UX:*:*) echo sx6-nec-superux${UNAME_RELEASE} exit ;; SX-7:SUPER-UX:*:*) echo sx7-nec-superux${UNAME_RELEASE} exit ;; SX-8:SUPER-UX:*:*) echo sx8-nec-superux${UNAME_RELEASE} exit ;; SX-8R:SUPER-UX:*:*) echo sx8r-nec-superux${UNAME_RELEASE} exit ;; Power*:Rhapsody:*:*) echo powerpc-apple-rhapsody${UNAME_RELEASE} exit ;; *:Rhapsody:*:*) echo ${UNAME_MACHINE}-apple-rhapsody${UNAME_RELEASE} exit ;; *:Darwin:*:*) UNAME_PROCESSOR=`uname -p` || UNAME_PROCESSOR=unknown case $UNAME_PROCESSOR in unknown) UNAME_PROCESSOR=powerpc ;; esac echo ${UNAME_PROCESSOR}-apple-darwin${UNAME_RELEASE} exit ;; *:procnto*:*:* | *:QNX:[0123456789]*:*) UNAME_PROCESSOR=`uname -p` if test "$UNAME_PROCESSOR" = "x86"; then UNAME_PROCESSOR=i386 UNAME_MACHINE=pc fi echo ${UNAME_PROCESSOR}-${UNAME_MACHINE}-nto-qnx${UNAME_RELEASE} exit ;; *:QNX:*:4*) echo i386-pc-qnx exit ;; NSE-?:NONSTOP_KERNEL:*:*) echo nse-tandem-nsk${UNAME_RELEASE} exit ;; NSR-?:NONSTOP_KERNEL:*:*) echo nsr-tandem-nsk${UNAME_RELEASE} exit ;; *:NonStop-UX:*:*) echo mips-compaq-nonstopux exit ;; BS2000:POSIX*:*:*) echo bs2000-siemens-sysv exit ;; DS/*:UNIX_System_V:*:*) echo ${UNAME_MACHINE}-${UNAME_SYSTEM}-${UNAME_RELEASE} exit ;; *:Plan9:*:*) # "uname -m" is not consistent, so use $cputype instead. 386 # is converted to i386 for consistency with other x86 # operating systems. if test "$cputype" = "386"; then UNAME_MACHINE=i386 else UNAME_MACHINE="$cputype" fi echo ${UNAME_MACHINE}-unknown-plan9 exit ;; *:TOPS-10:*:*) echo pdp10-unknown-tops10 exit ;; *:TENEX:*:*) echo pdp10-unknown-tenex exit ;; KS10:TOPS-20:*:* | KL10:TOPS-20:*:* | TYPE4:TOPS-20:*:*) echo pdp10-dec-tops20 exit ;; XKL-1:TOPS-20:*:* | TYPE5:TOPS-20:*:*) echo pdp10-xkl-tops20 exit ;; *:TOPS-20:*:*) echo pdp10-unknown-tops20 exit ;; *:ITS:*:*) echo pdp10-unknown-its exit ;; SEI:*:*:SEIUX) echo mips-sei-seiux${UNAME_RELEASE} exit ;; *:DragonFly:*:*) echo ${UNAME_MACHINE}-unknown-dragonfly`echo ${UNAME_RELEASE}|sed -e 's/[-(].*//'` exit ;; *:*VMS:*:*) UNAME_MACHINE=`(uname -p) 2>/dev/null` case "${UNAME_MACHINE}" in A*) echo alpha-dec-vms ; exit ;; I*) echo ia64-dec-vms ; exit ;; V*) echo vax-dec-vms ; exit ;; esac ;; *:XENIX:*:SysV) echo i386-pc-xenix exit ;; i*86:skyos:*:*) echo ${UNAME_MACHINE}-pc-skyos`echo ${UNAME_RELEASE}` | sed -e 's/ .*$//' exit ;; i*86:rdos:*:*) echo ${UNAME_MACHINE}-pc-rdos exit ;; esac #echo '(No uname command or uname output not recognized.)' 1>&2 #echo "${UNAME_MACHINE}:${UNAME_SYSTEM}:${UNAME_RELEASE}:${UNAME_VERSION}" 1>&2 eval $set_cc_for_build cat >$dummy.c < # include #endif main () { #if defined (sony) #if defined (MIPSEB) /* BFD wants "bsd" instead of "newsos". Perhaps BFD should be changed, I don't know.... */ printf ("mips-sony-bsd\n"); exit (0); #else #include printf ("m68k-sony-newsos%s\n", #ifdef NEWSOS4 "4" #else "" #endif ); exit (0); #endif #endif #if defined (__arm) && defined (__acorn) && defined (__unix) printf ("arm-acorn-riscix\n"); exit (0); #endif #if defined (hp300) && !defined (hpux) printf ("m68k-hp-bsd\n"); exit (0); #endif #if defined (NeXT) #if !defined (__ARCHITECTURE__) #define __ARCHITECTURE__ "m68k" #endif int version; version=`(hostinfo | sed -n 's/.*NeXT Mach \([0-9]*\).*/\1/p') 2>/dev/null`; if (version < 4) printf ("%s-next-nextstep%d\n", __ARCHITECTURE__, version); else printf ("%s-next-openstep%d\n", __ARCHITECTURE__, version); exit (0); #endif #if defined (MULTIMAX) || defined (n16) #if defined (UMAXV) printf ("ns32k-encore-sysv\n"); exit (0); #else #if defined (CMU) printf ("ns32k-encore-mach\n"); exit (0); #else printf ("ns32k-encore-bsd\n"); exit (0); #endif #endif #endif #if defined (__386BSD__) printf ("i386-pc-bsd\n"); exit (0); #endif #if defined (sequent) #if defined (i386) printf ("i386-sequent-dynix\n"); exit (0); #endif #if defined (ns32000) printf ("ns32k-sequent-dynix\n"); exit (0); #endif #endif #if defined (_SEQUENT_) struct utsname un; uname(&un); if (strncmp(un.version, "V2", 2) == 0) { printf ("i386-sequent-ptx2\n"); exit (0); } if (strncmp(un.version, "V1", 2) == 0) { /* XXX is V1 correct? */ printf ("i386-sequent-ptx1\n"); exit (0); } printf ("i386-sequent-ptx\n"); exit (0); #endif #if defined (vax) # if !defined (ultrix) # include # if defined (BSD) # if BSD == 43 printf ("vax-dec-bsd4.3\n"); exit (0); # else # if BSD == 199006 printf ("vax-dec-bsd4.3reno\n"); exit (0); # else printf ("vax-dec-bsd\n"); exit (0); # endif # endif # else printf ("vax-dec-bsd\n"); exit (0); # endif # else printf ("vax-dec-ultrix\n"); exit (0); # endif #endif #if defined (alliant) && defined (i860) printf ("i860-alliant-bsd\n"); exit (0); #endif exit (1); } EOF $CC_FOR_BUILD -o $dummy $dummy.c 2>/dev/null && SYSTEM_NAME=`$dummy` && { echo "$SYSTEM_NAME"; exit; } # Apollos put the system type in the environment. test -d /usr/apollo && { echo ${ISP}-apollo-${SYSTYPE}; exit; } # Convex versions that predate uname can use getsysinfo(1) if [ -x /usr/convex/getsysinfo ] then case `getsysinfo -f cpu_type` in c1*) echo c1-convex-bsd exit ;; c2*) if getsysinfo -f scalar_acc then echo c32-convex-bsd else echo c2-convex-bsd fi exit ;; c34*) echo c34-convex-bsd exit ;; c38*) echo c38-convex-bsd exit ;; c4*) echo c4-convex-bsd exit ;; esac fi cat >&2 < in order to provide the needed information to handle your system. config.guess timestamp = $timestamp uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null` /bin/uname -X = `(/bin/uname -X) 2>/dev/null` hostinfo = `(hostinfo) 2>/dev/null` /bin/universe = `(/bin/universe) 2>/dev/null` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null` /bin/arch = `(/bin/arch) 2>/dev/null` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null` UNAME_MACHINE = ${UNAME_MACHINE} UNAME_RELEASE = ${UNAME_RELEASE} UNAME_SYSTEM = ${UNAME_SYSTEM} UNAME_VERSION = ${UNAME_VERSION} EOF exit 1 # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "timestamp='" # time-stamp-format: "%:y-%02m-%02d" # time-stamp-end: "'" # End: fische-3.2/AUTHORS0000644000175000017500000000006111456057072010614 00000000000000Marcel Ebmer, marcel@aufroof.org, http://26elf.atfische-3.2/ltmain.sh0000755000175000017500000073341511504211240011366 00000000000000# Generated from ltmain.m4sh. # ltmain.sh (GNU libtool) 2.2.6b # Written by Gordon Matzigkeit , 1996 # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, 2006, 2007 2008 Free Software Foundation, Inc. # This is free software; see the source for copying conditions. There is NO # warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. # GNU Libtool is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation; either version 2 of the License, or # (at your option) any later version. # # As a special exception to the GNU General Public License, # if you distribute this file as part of a program or library that # is built using GNU Libtool, you may include this file under the # same distribution terms that you use for the rest of that program. # # GNU Libtool is distributed in the hope that it will be useful, but # WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU # General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Libtool; see the file COPYING. If not, a copy # can be downloaded from http://www.gnu.org/licenses/gpl.html, # or obtained by writing to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # Usage: $progname [OPTION]... [MODE-ARG]... # # Provide generalized library-building support services. # # --config show all configuration variables # --debug enable verbose shell tracing # -n, --dry-run display commands without modifying any files # --features display basic configuration information and exit # --mode=MODE use operation mode MODE # --preserve-dup-deps don't remove duplicate dependency libraries # --quiet, --silent don't print informational messages # --tag=TAG use configuration variables from tag TAG # -v, --verbose print informational messages (default) # --version print version information # -h, --help print short or long help message # # MODE must be one of the following: # # clean remove files from the build directory # compile compile a source file into a libtool object # execute automatically set library path, then run a program # finish complete the installation of libtool libraries # install install libraries or executables # link create a library or an executable # uninstall remove libraries from an installed directory # # MODE-ARGS vary depending on the MODE. # Try `$progname --help --mode=MODE' for a more detailed description of MODE. # # When reporting a bug, please describe a test case to reproduce it and # include the following information: # # host-triplet: $host # shell: $SHELL # compiler: $LTCC # compiler flags: $LTCFLAGS # linker: $LD (gnu? $with_gnu_ld) # $progname: (GNU libtool) 2.2.6b Debian-2.2.6b-2ubuntu1 # automake: $automake_version # autoconf: $autoconf_version # # Report bugs to . PROGRAM=ltmain.sh PACKAGE=libtool VERSION="2.2.6b Debian-2.2.6b-2ubuntu1" TIMESTAMP="" package_revision=1.3017 # Be Bourne compatible if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # NLS nuisances: We save the old values to restore during execute mode. # Only set LANG and LC_ALL to C if already set. # These must not be set unconditionally because not all systems understand # e.g. LANG=C (notably SCO). lt_user_locale= lt_safe_locale= for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test \"\${$lt_var+set}\" = set; then save_$lt_var=\$$lt_var $lt_var=C export $lt_var lt_user_locale=\"$lt_var=\\\$save_\$lt_var; \$lt_user_locale\" lt_safe_locale=\"$lt_var=C; \$lt_safe_locale\" fi" done $lt_unset CDPATH : ${CP="cp -f"} : ${ECHO="echo"} : ${EGREP="/bin/grep -E"} : ${FGREP="/bin/grep -F"} : ${GREP="/bin/grep"} : ${LN_S="ln -s"} : ${MAKE="make"} : ${MKDIR="mkdir"} : ${MV="mv -f"} : ${RM="rm -f"} : ${SED="/bin/sed"} : ${SHELL="${CONFIG_SHELL-/bin/sh}"} : ${Xsed="$SED -e 1s/^X//"} # Global variables: EXIT_SUCCESS=0 EXIT_FAILURE=1 EXIT_MISMATCH=63 # $? = 63 is used to indicate version mismatch to missing. EXIT_SKIP=77 # $? = 77 is used to indicate a skipped test to automake. exit_status=$EXIT_SUCCESS # Make sure IFS has a sensible default lt_nl=' ' IFS=" $lt_nl" dirname="s,/[^/]*$,," basename="s,^.*/,," # func_dirname_and_basename file append nondir_replacement # perform func_basename and func_dirname in a single function # call: # dirname: Compute the dirname of FILE. If nonempty, # add APPEND to the result, otherwise set result # to NONDIR_REPLACEMENT. # value returned in "$func_dirname_result" # basename: Compute filename of FILE. # value retuned in "$func_basename_result" # Implementation must be kept synchronized with func_dirname # and func_basename. For efficiency, we do not delegate to # those functions but instead duplicate the functionality here. func_dirname_and_basename () { # Extract subdirectory from the argument. func_dirname_result=`$ECHO "X${1}" | $Xsed -e "$dirname"` if test "X$func_dirname_result" = "X${1}"; then func_dirname_result="${3}" else func_dirname_result="$func_dirname_result${2}" fi func_basename_result=`$ECHO "X${1}" | $Xsed -e "$basename"` } # Generated shell functions inserted here. # Work around backward compatibility issue on IRIX 6.5. On IRIX 6.4+, sh # is ksh but when the shell is invoked as "sh" and the current value of # the _XPG environment variable is not equal to 1 (one), the special # positional parameter $0, within a function call, is the name of the # function. progpath="$0" # The name of this program: # In the unlikely event $progname began with a '-', it would play havoc with # func_echo (imagine progname=-n), so we prepend ./ in that case: func_dirname_and_basename "$progpath" progname=$func_basename_result case $progname in -*) progname=./$progname ;; esac # Make sure we have an absolute path for reexecution: case $progpath in [\\/]*|[A-Za-z]:\\*) ;; *[\\/]*) progdir=$func_dirname_result progdir=`cd "$progdir" && pwd` progpath="$progdir/$progname" ;; *) save_IFS="$IFS" IFS=: for progdir in $PATH; do IFS="$save_IFS" test -x "$progdir/$progname" && break done IFS="$save_IFS" test -n "$progdir" || progdir=`pwd` progpath="$progdir/$progname" ;; esac # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed="${SED}"' -e 1s/^X//' sed_quote_subst='s/\([`"$\\]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\(["`\\]\)/\\\1/g' # Re-`\' parameter expansions in output of double_quote_subst that were # `\'-ed in input to the same. If an odd number of `\' preceded a '$' # in input to double_quote_subst, that '$' was protected from expansion. # Since each input `\' is now two `\'s, look for any number of runs of # four `\'s followed by two `\'s and then a '$'. `\' that '$'. bs='\\' bs2='\\\\' bs4='\\\\\\\\' dollar='\$' sed_double_backslash="\ s/$bs4/&\\ /g s/^$bs2$dollar/$bs&/ s/\\([^$bs]\\)$bs2$dollar/\\1$bs2$bs$dollar/g s/\n//g" # Standard options: opt_dry_run=false opt_help=false opt_quiet=false opt_verbose=false opt_warning=: # func_echo arg... # Echo program name prefixed message, along with the current mode # name if it has been set yet. func_echo () { $ECHO "$progname${mode+: }$mode: $*" } # func_verbose arg... # Echo program name prefixed message in verbose mode only. func_verbose () { $opt_verbose && func_echo ${1+"$@"} # A bug in bash halts the script if the last line of a function # fails when set -e is in force, so we need another command to # work around that: : } # func_error arg... # Echo program name prefixed message to standard error. func_error () { $ECHO "$progname${mode+: }$mode: "${1+"$@"} 1>&2 } # func_warning arg... # Echo program name prefixed warning message to standard error. func_warning () { $opt_warning && $ECHO "$progname${mode+: }$mode: warning: "${1+"$@"} 1>&2 # bash bug again: : } # func_fatal_error arg... # Echo program name prefixed message to standard error, and exit. func_fatal_error () { func_error ${1+"$@"} exit $EXIT_FAILURE } # func_fatal_help arg... # Echo program name prefixed message to standard error, followed by # a help hint, and exit. func_fatal_help () { func_error ${1+"$@"} func_fatal_error "$help" } help="Try \`$progname --help' for more information." ## default # func_grep expression filename # Check whether EXPRESSION matches any line of FILENAME, without output. func_grep () { $GREP "$1" "$2" >/dev/null 2>&1 } # func_mkdir_p directory-path # Make sure the entire path to DIRECTORY-PATH is available. func_mkdir_p () { my_directory_path="$1" my_dir_list= if test -n "$my_directory_path" && test "$opt_dry_run" != ":"; then # Protect directory names starting with `-' case $my_directory_path in -*) my_directory_path="./$my_directory_path" ;; esac # While some portion of DIR does not yet exist... while test ! -d "$my_directory_path"; do # ...make a list in topmost first order. Use a colon delimited # list incase some portion of path contains whitespace. my_dir_list="$my_directory_path:$my_dir_list" # If the last portion added has no slash in it, the list is done case $my_directory_path in */*) ;; *) break ;; esac # ...otherwise throw away the child directory and loop my_directory_path=`$ECHO "X$my_directory_path" | $Xsed -e "$dirname"` done my_dir_list=`$ECHO "X$my_dir_list" | $Xsed -e 's,:*$,,'` save_mkdir_p_IFS="$IFS"; IFS=':' for my_dir in $my_dir_list; do IFS="$save_mkdir_p_IFS" # mkdir can fail with a `File exist' error if two processes # try to create one of the directories concurrently. Don't # stop in that case! $MKDIR "$my_dir" 2>/dev/null || : done IFS="$save_mkdir_p_IFS" # Bail out if we (or some other process) failed to create a directory. test -d "$my_directory_path" || \ func_fatal_error "Failed to create \`$1'" fi } # func_mktempdir [string] # Make a temporary directory that won't clash with other running # libtool processes, and avoids race conditions if possible. If # given, STRING is the basename for that directory. func_mktempdir () { my_template="${TMPDIR-/tmp}/${1-$progname}" if test "$opt_dry_run" = ":"; then # Return a directory name, but don't create it in dry-run mode my_tmpdir="${my_template}-$$" else # If mktemp works, use that first and foremost my_tmpdir=`mktemp -d "${my_template}-XXXXXXXX" 2>/dev/null` if test ! -d "$my_tmpdir"; then # Failing that, at least try and use $RANDOM to avoid a race my_tmpdir="${my_template}-${RANDOM-0}$$" save_mktempdir_umask=`umask` umask 0077 $MKDIR "$my_tmpdir" umask $save_mktempdir_umask fi # If we're not in dry-run mode, bomb out on failure test -d "$my_tmpdir" || \ func_fatal_error "cannot create temporary directory \`$my_tmpdir'" fi $ECHO "X$my_tmpdir" | $Xsed } # func_quote_for_eval arg # Aesthetically quote ARG to be evaled later. # This function returns two values: FUNC_QUOTE_FOR_EVAL_RESULT # is double-quoted, suitable for a subsequent eval, whereas # FUNC_QUOTE_FOR_EVAL_UNQUOTED_RESULT has merely all characters # which are still active within double quotes backslashified. func_quote_for_eval () { case $1 in *[\\\`\"\$]*) func_quote_for_eval_unquoted_result=`$ECHO "X$1" | $Xsed -e "$sed_quote_subst"` ;; *) func_quote_for_eval_unquoted_result="$1" ;; esac case $func_quote_for_eval_unquoted_result in # Double-quote args containing shell metacharacters to delay # word splitting, command substitution and and variable # expansion for a subsequent eval. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") func_quote_for_eval_result="\"$func_quote_for_eval_unquoted_result\"" ;; *) func_quote_for_eval_result="$func_quote_for_eval_unquoted_result" esac } # func_quote_for_expand arg # Aesthetically quote ARG to be evaled later; same as above, # but do not quote variable references. func_quote_for_expand () { case $1 in *[\\\`\"]*) my_arg=`$ECHO "X$1" | $Xsed \ -e "$double_quote_subst" -e "$sed_double_backslash"` ;; *) my_arg="$1" ;; esac case $my_arg in # Double-quote args containing shell metacharacters to delay # word splitting and command substitution for a subsequent eval. # Many Bourne shells cannot handle close brackets correctly # in scan sets, so we specify it separately. *[\[\~\#\^\&\*\(\)\{\}\|\;\<\>\?\'\ \ ]*|*]*|"") my_arg="\"$my_arg\"" ;; esac func_quote_for_expand_result="$my_arg" } # func_show_eval cmd [fail_exp] # Unless opt_silent is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. func_show_eval () { my_cmd="$1" my_fail_exp="${2-:}" ${opt_silent-false} || { func_quote_for_expand "$my_cmd" eval "func_echo $func_quote_for_expand_result" } if ${opt_dry_run-false}; then :; else eval "$my_cmd" my_status=$? if test "$my_status" -eq 0; then :; else eval "(exit $my_status); $my_fail_exp" fi fi } # func_show_eval_locale cmd [fail_exp] # Unless opt_silent is true, then output CMD. Then, if opt_dryrun is # not true, evaluate CMD. If the evaluation of CMD fails, and FAIL_EXP # is given, then evaluate it. Use the saved locale for evaluation. func_show_eval_locale () { my_cmd="$1" my_fail_exp="${2-:}" ${opt_silent-false} || { func_quote_for_expand "$my_cmd" eval "func_echo $func_quote_for_expand_result" } if ${opt_dry_run-false}; then :; else eval "$lt_user_locale $my_cmd" my_status=$? eval "$lt_safe_locale" if test "$my_status" -eq 0; then :; else eval "(exit $my_status); $my_fail_exp" fi fi } # func_version # Echo version message to standard output and exit. func_version () { $SED -n '/^# '$PROGRAM' (GNU /,/# warranty; / { s/^# // s/^# *$// s/\((C)\)[ 0-9,-]*\( [1-9][0-9]*\)/\1\2/ p }' < "$progpath" exit $? } # func_usage # Echo short help message to standard output and exit. func_usage () { $SED -n '/^# Usage:/,/# -h/ { s/^# // s/^# *$// s/\$progname/'$progname'/ p }' < "$progpath" $ECHO $ECHO "run \`$progname --help | more' for full usage" exit $? } # func_help # Echo long help message to standard output and exit. func_help () { $SED -n '/^# Usage:/,/# Report bugs to/ { s/^# // s/^# *$// s*\$progname*'$progname'* s*\$host*'"$host"'* s*\$SHELL*'"$SHELL"'* s*\$LTCC*'"$LTCC"'* s*\$LTCFLAGS*'"$LTCFLAGS"'* s*\$LD*'"$LD"'* s/\$with_gnu_ld/'"$with_gnu_ld"'/ s/\$automake_version/'"`(automake --version) 2>/dev/null |$SED 1q`"'/ s/\$autoconf_version/'"`(autoconf --version) 2>/dev/null |$SED 1q`"'/ p }' < "$progpath" exit $? } # func_missing_arg argname # Echo program name prefixed message to standard error and set global # exit_cmd. func_missing_arg () { func_error "missing argument for $1" exit_cmd=exit } exit_cmd=: # Check that we have a working $ECHO. if test "X$1" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test "X$1" = X--fallback-echo; then # Avoid inline document here, it may be left over : elif test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t'; then # Yippee, $ECHO works! : else # Restart under the correct shell, and then maybe $ECHO will work. exec $SHELL "$progpath" --no-reexec ${1+"$@"} fi if test "X$1" = X--fallback-echo; then # used as fallback echo shift cat </dev/null 2>&1; then taglist="$taglist $tagname" # Evaluate the configuration. Be careful to quote the path # and the sed script, to avoid splitting on whitespace, but # also don't use non-portable quotes within backquotes within # quotes we have to do it in 2 steps: extractedcf=`$SED -n -e "$sed_extractcf" < "$progpath"` eval "$extractedcf" else func_error "ignoring unknown tag $tagname" fi ;; esac } # Parse options once, thoroughly. This comes as soon as possible in # the script to make things like `libtool --version' happen quickly. { # Shorthand for --mode=foo, only valid as the first argument case $1 in clean|clea|cle|cl) shift; set dummy --mode clean ${1+"$@"}; shift ;; compile|compil|compi|comp|com|co|c) shift; set dummy --mode compile ${1+"$@"}; shift ;; execute|execut|execu|exec|exe|ex|e) shift; set dummy --mode execute ${1+"$@"}; shift ;; finish|finis|fini|fin|fi|f) shift; set dummy --mode finish ${1+"$@"}; shift ;; install|instal|insta|inst|ins|in|i) shift; set dummy --mode install ${1+"$@"}; shift ;; link|lin|li|l) shift; set dummy --mode link ${1+"$@"}; shift ;; uninstall|uninstal|uninsta|uninst|unins|unin|uni|un|u) shift; set dummy --mode uninstall ${1+"$@"}; shift ;; esac # Parse non-mode specific arguments: while test "$#" -gt 0; do opt="$1" shift case $opt in --config) func_config ;; --debug) preserve_args="$preserve_args $opt" func_echo "enabling shell trace mode" opt_debug='set -x' $opt_debug ;; -dlopen) test "$#" -eq 0 && func_missing_arg "$opt" && break execute_dlfiles="$execute_dlfiles $1" shift ;; --dry-run | -n) opt_dry_run=: ;; --features) func_features ;; --finish) mode="finish" ;; --mode) test "$#" -eq 0 && func_missing_arg "$opt" && break case $1 in # Valid mode arguments: clean) ;; compile) ;; execute) ;; finish) ;; install) ;; link) ;; relink) ;; uninstall) ;; # Catch anything else as an error *) func_error "invalid argument for $opt" exit_cmd=exit break ;; esac mode="$1" shift ;; --preserve-dup-deps) opt_duplicate_deps=: ;; --quiet|--silent) preserve_args="$preserve_args $opt" opt_silent=: ;; --verbose| -v) preserve_args="$preserve_args $opt" opt_silent=false ;; --tag) test "$#" -eq 0 && func_missing_arg "$opt" && break preserve_args="$preserve_args $opt $1" func_enable_tag "$1" # tagname is set here shift ;; # Separate optargs to long options: -dlopen=*|--mode=*|--tag=*) func_opt_split "$opt" set dummy "$func_opt_split_opt" "$func_opt_split_arg" ${1+"$@"} shift ;; -\?|-h) func_usage ;; --help) opt_help=: ;; --version) func_version ;; -*) func_fatal_help "unrecognized option \`$opt'" ;; *) nonopt="$opt" break ;; esac done case $host in *cygwin* | *mingw* | *pw32* | *cegcc*) # don't eliminate duplications in $postdeps and $predeps opt_duplicate_compiler_generated_deps=: ;; *) opt_duplicate_compiler_generated_deps=$opt_duplicate_deps ;; esac # Having warned about all mis-specified options, bail out if # anything was wrong. $exit_cmd $EXIT_FAILURE } # func_check_version_match # Ensure that we are using m4 macros, and libtool script from the same # release of libtool. func_check_version_match () { if test "$package_revision" != "$macro_revision"; then if test "$VERSION" != "$macro_version"; then if test -z "$macro_version"; then cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from an older release. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF else cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, but the $progname: definition of this LT_INIT comes from $PACKAGE $macro_version. $progname: You should recreate aclocal.m4 with macros from $PACKAGE $VERSION $progname: and run autoconf again. _LT_EOF fi else cat >&2 <<_LT_EOF $progname: Version mismatch error. This is $PACKAGE $VERSION, revision $package_revision, $progname: but the definition of this LT_INIT comes from revision $macro_revision. $progname: You should recreate aclocal.m4 with macros from revision $package_revision $progname: of $PACKAGE $VERSION and run autoconf again. _LT_EOF fi exit $EXIT_MISMATCH fi } ## ----------- ## ## Main. ## ## ----------- ## $opt_help || { # Sanity checks first: func_check_version_match if test "$build_libtool_libs" != yes && test "$build_old_libs" != yes; then func_fatal_configuration "not configured to build any kind of library" fi test -z "$mode" && func_fatal_error "error: you must specify a MODE." # Darwin sucks eval std_shrext=\"$shrext_cmds\" # Only execute mode is allowed to have -dlopen flags. if test -n "$execute_dlfiles" && test "$mode" != execute; then func_error "unrecognized option \`-dlopen'" $ECHO "$help" 1>&2 exit $EXIT_FAILURE fi # Change the help message to a mode-specific one. generic_help="$help" help="Try \`$progname --help --mode=$mode' for more information." } # func_lalib_p file # True iff FILE is a libtool `.la' library or `.lo' object file. # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_lalib_p () { test -f "$1" && $SED -e 4q "$1" 2>/dev/null \ | $GREP "^# Generated by .*$PACKAGE" > /dev/null 2>&1 } # func_lalib_unsafe_p file # True iff FILE is a libtool `.la' library or `.lo' object file. # This function implements the same check as func_lalib_p without # resorting to external programs. To this end, it redirects stdin and # closes it afterwards, without saving the original file descriptor. # As a safety measure, use it only where a negative result would be # fatal anyway. Works if `file' does not exist. func_lalib_unsafe_p () { lalib_p=no if test -f "$1" && test -r "$1" && exec 5<&0 <"$1"; then for lalib_p_l in 1 2 3 4 do read lalib_p_line case "$lalib_p_line" in \#\ Generated\ by\ *$PACKAGE* ) lalib_p=yes; break;; esac done exec 0<&5 5<&- fi test "$lalib_p" = yes } # func_ltwrapper_script_p file # True iff FILE is a libtool wrapper script # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_script_p () { func_lalib_p "$1" } # func_ltwrapper_executable_p file # True iff FILE is a libtool wrapper executable # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_executable_p () { func_ltwrapper_exec_suffix= case $1 in *.exe) ;; *) func_ltwrapper_exec_suffix=.exe ;; esac $GREP "$magic_exe" "$1$func_ltwrapper_exec_suffix" >/dev/null 2>&1 } # func_ltwrapper_scriptname file # Assumes file is an ltwrapper_executable # uses $file to determine the appropriate filename for a # temporary ltwrapper_script. func_ltwrapper_scriptname () { func_ltwrapper_scriptname_result="" if func_ltwrapper_executable_p "$1"; then func_dirname_and_basename "$1" "" "." func_stripname '' '.exe' "$func_basename_result" func_ltwrapper_scriptname_result="$func_dirname_result/$objdir/${func_stripname_result}_ltshwrapper" fi } # func_ltwrapper_p file # True iff FILE is a libtool wrapper script or wrapper executable # This function is only a basic sanity check; it will hardly flush out # determined imposters. func_ltwrapper_p () { func_ltwrapper_script_p "$1" || func_ltwrapper_executable_p "$1" } # func_execute_cmds commands fail_cmd # Execute tilde-delimited COMMANDS. # If FAIL_CMD is given, eval that upon failure. # FAIL_CMD may read-access the current command in variable CMD! func_execute_cmds () { $opt_debug save_ifs=$IFS; IFS='~' for cmd in $1; do IFS=$save_ifs eval cmd=\"$cmd\" func_show_eval "$cmd" "${2-:}" done IFS=$save_ifs } # func_source file # Source FILE, adding directory component if necessary. # Note that it is not necessary on cygwin/mingw to append a dot to # FILE even if both FILE and FILE.exe exist: automatic-append-.exe # behavior happens only for exec(3), not for open(2)! Also, sourcing # `FILE.' does not work on cygwin managed mounts. func_source () { $opt_debug case $1 in */* | *\\*) . "$1" ;; *) . "./$1" ;; esac } # func_infer_tag arg # Infer tagged configuration to use if any are available and # if one wasn't chosen via the "--tag" command line option. # Only attempt this if the compiler in the base compile # command doesn't match the default compiler. # arg is usually of the form 'gcc ...' func_infer_tag () { $opt_debug if test -n "$available_tags" && test -z "$tagname"; then CC_quoted= for arg in $CC; do func_quote_for_eval "$arg" CC_quoted="$CC_quoted $func_quote_for_eval_result" done case $@ in # Blanks in the command may have been stripped by the calling shell, # but not from the CC environment variable when configure was run. " $CC "* | "$CC "* | " `$ECHO $CC` "* | "`$ECHO $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$ECHO $CC_quoted` "* | "`$ECHO $CC_quoted` "*) ;; # Blanks at the start of $base_compile will cause this to fail # if we don't check for them as well. *) for z in $available_tags; do if $GREP "^# ### BEGIN LIBTOOL TAG CONFIG: $z$" < "$progpath" > /dev/null; then # Evaluate the configuration. eval "`${SED} -n -e '/^# ### BEGIN LIBTOOL TAG CONFIG: '$z'$/,/^# ### END LIBTOOL TAG CONFIG: '$z'$/p' < $progpath`" CC_quoted= for arg in $CC; do # Double-quote args containing other shell metacharacters. func_quote_for_eval "$arg" CC_quoted="$CC_quoted $func_quote_for_eval_result" done case "$@ " in " $CC "* | "$CC "* | " `$ECHO $CC` "* | "`$ECHO $CC` "* | " $CC_quoted"* | "$CC_quoted "* | " `$ECHO $CC_quoted` "* | "`$ECHO $CC_quoted` "*) # The compiler in the base compile command matches # the one in the tagged configuration. # Assume this is the tagged configuration we want. tagname=$z break ;; esac fi done # If $tagname still isn't set, then no tagged configuration # was found and let the user know that the "--tag" command # line option must be used. if test -z "$tagname"; then func_echo "unable to infer tagged configuration" func_fatal_error "specify a tag with \`--tag'" # else # func_verbose "using $tagname tagged configuration" fi ;; esac fi } # func_write_libtool_object output_name pic_name nonpic_name # Create a libtool object file (analogous to a ".la" file), # but don't create it if we're doing a dry run. func_write_libtool_object () { write_libobj=${1} if test "$build_libtool_libs" = yes; then write_lobj=\'${2}\' else write_lobj=none fi if test "$build_old_libs" = yes; then write_oldobj=\'${3}\' else write_oldobj=none fi $opt_dry_run || { cat >${write_libobj}T <?"'"'"' &()|`$[]' \ && func_warning "libobj name \`$libobj' may not contain shell special characters." func_dirname_and_basename "$obj" "/" "" objname="$func_basename_result" xdir="$func_dirname_result" lobj=${xdir}$objdir/$objname test -z "$base_compile" && \ func_fatal_help "you must specify a compilation command" # Delete any leftover library objects. if test "$build_old_libs" = yes; then removelist="$obj $lobj $libobj ${libobj}T" else removelist="$lobj $libobj ${libobj}T" fi # On Cygwin there's no "real" PIC flag so we must build both object types case $host_os in cygwin* | mingw* | pw32* | os2* | cegcc*) pic_mode=default ;; esac if test "$pic_mode" = no && test "$deplibs_check_method" != pass_all; then # non-PIC code in shared libraries is not supported pic_mode=default fi # Calculate the filename of the output object if compiler does # not support -o with -c if test "$compiler_c_o" = no; then output_obj=`$ECHO "X$srcfile" | $Xsed -e 's%^.*/%%' -e 's%\.[^.]*$%%'`.${objext} lockfile="$output_obj.lock" else output_obj= need_locks=no lockfile= fi # Lock this critical section if it is needed # We use this script file to make the link, it avoids creating a new file if test "$need_locks" = yes; then until $opt_dry_run || ln "$progpath" "$lockfile" 2>/dev/null; do func_echo "Waiting for $lockfile to be removed" sleep 2 done elif test "$need_locks" = warn; then if test -f "$lockfile"; then $ECHO "\ *** ERROR, $lockfile exists and contains: `cat $lockfile 2>/dev/null` This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support \`-c' and \`-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi removelist="$removelist $output_obj" $ECHO "$srcfile" > "$lockfile" fi $opt_dry_run || $RM $removelist removelist="$removelist $lockfile" trap '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' 1 2 15 if test -n "$fix_srcfile_path"; then eval srcfile=\"$fix_srcfile_path\" fi func_quote_for_eval "$srcfile" qsrcfile=$func_quote_for_eval_result # Only build a PIC object if we are building libtool libraries. if test "$build_libtool_libs" = yes; then # Without this assignment, base_compile gets emptied. fbsd_hideous_sh_bug=$base_compile if test "$pic_mode" != no; then command="$base_compile $qsrcfile $pic_flag" else # Don't build PIC code command="$base_compile $qsrcfile" fi func_mkdir_p "$xdir$objdir" if test -z "$output_obj"; then # Place PIC objects in $objdir command="$command -o $lobj" fi func_show_eval_locale "$command" \ 'test -n "$output_obj" && $RM $removelist; exit $EXIT_FAILURE' if test "$need_locks" = warn && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support \`-c' and \`-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed, then go on to compile the next one if test -n "$output_obj" && test "X$output_obj" != "X$lobj"; then func_show_eval '$MV "$output_obj" "$lobj"' \ 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi # Allow error messages only from the first compilation. if test "$suppress_opt" = yes; then suppress_output=' >/dev/null 2>&1' fi fi # Only build a position-dependent object if we build old libraries. if test "$build_old_libs" = yes; then if test "$pic_mode" != yes; then # Don't build PIC code command="$base_compile $qsrcfile$pie_flag" else command="$base_compile $qsrcfile $pic_flag" fi if test "$compiler_c_o" = yes; then command="$command -o $obj" fi # Suppress compiler output if we already did a PIC compilation. command="$command$suppress_output" func_show_eval_locale "$command" \ '$opt_dry_run || $RM $removelist; exit $EXIT_FAILURE' if test "$need_locks" = warn && test "X`cat $lockfile 2>/dev/null`" != "X$srcfile"; then $ECHO "\ *** ERROR, $lockfile contains: `cat $lockfile 2>/dev/null` but it should contain: $srcfile This indicates that another process is trying to use the same temporary object file, and libtool could not work around it because your compiler does not support \`-c' and \`-o' together. If you repeat this compilation, it may succeed, by chance, but you had better avoid parallel builds (make -j) in this platform, or get a better compiler." $opt_dry_run || $RM $removelist exit $EXIT_FAILURE fi # Just move the object if needed if test -n "$output_obj" && test "X$output_obj" != "X$obj"; then func_show_eval '$MV "$output_obj" "$obj"' \ 'error=$?; $opt_dry_run || $RM $removelist; exit $error' fi fi $opt_dry_run || { func_write_libtool_object "$libobj" "$objdir/$objname" "$objname" # Unlock the critical section if it was locked if test "$need_locks" != no; then removelist=$lockfile $RM "$lockfile" fi } exit $EXIT_SUCCESS } $opt_help || { test "$mode" = compile && func_mode_compile ${1+"$@"} } func_mode_help () { # We need to display help for each of the modes. case $mode in "") # Generic help is extracted from the usage comments # at the start of this file. func_help ;; clean) $ECHO \ "Usage: $progname [OPTION]... --mode=clean RM [RM-OPTION]... FILE... Remove files from the build directory. RM is the name of the program to use to delete files associated with each FILE (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed to RM. If FILE is a libtool library, object or program, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; compile) $ECHO \ "Usage: $progname [OPTION]... --mode=compile COMPILE-COMMAND... SOURCEFILE Compile a source file into a libtool library object. This mode accepts the following additional options: -o OUTPUT-FILE set the output file name to OUTPUT-FILE -no-suppress do not suppress compiler output for multiple passes -prefer-pic try to building PIC objects only -prefer-non-pic try to building non-PIC objects only -shared do not build a \`.o' file suitable for static linking -static only build a \`.o' file suitable for static linking COMPILE-COMMAND is a command to be used in creating a \`standard' object file from the given SOURCEFILE. The output file name is determined by removing the directory component from SOURCEFILE, then substituting the C source code suffix \`.c' with the library object suffix, \`.lo'." ;; execute) $ECHO \ "Usage: $progname [OPTION]... --mode=execute COMMAND [ARGS]... Automatically set library path, then run a program. This mode accepts the following additional options: -dlopen FILE add the directory containing FILE to the library path This mode sets the library path environment variable according to \`-dlopen' flags. If any of the ARGS are libtool executable wrappers, then they are translated into their corresponding uninstalled binary, and any of their required library directories are added to the library path. Then, COMMAND is executed, with ARGS as arguments." ;; finish) $ECHO \ "Usage: $progname [OPTION]... --mode=finish [LIBDIR]... Complete the installation of libtool libraries. Each LIBDIR is a directory that contains libtool libraries. The commands that this mode executes may require superuser privileges. Use the \`--dry-run' option if you just want to see what would be executed." ;; install) $ECHO \ "Usage: $progname [OPTION]... --mode=install INSTALL-COMMAND... Install executables or libraries. INSTALL-COMMAND is the installation command. The first component should be either the \`install' or \`cp' program. The following components of INSTALL-COMMAND are treated specially: -inst-prefix PREFIX-DIR Use PREFIX-DIR as a staging area for installation The rest of the components are interpreted as arguments to that command (only BSD-compatible install options are recognized)." ;; link) $ECHO \ "Usage: $progname [OPTION]... --mode=link LINK-COMMAND... Link object files or libraries together to form another library, or to create an executable program. LINK-COMMAND is a command using the C compiler that you would use to create a program from several object files. The following components of LINK-COMMAND are treated specially: -all-static do not do any dynamic linking at all -avoid-version do not add a version suffix if possible -dlopen FILE \`-dlpreopen' FILE if it cannot be dlopened at runtime -dlpreopen FILE link in FILE and add its symbols to lt_preloaded_symbols -export-dynamic allow symbols from OUTPUT-FILE to be resolved with dlsym(3) -export-symbols SYMFILE try to export only the symbols listed in SYMFILE -export-symbols-regex REGEX try to export only the symbols matching REGEX -LLIBDIR search LIBDIR for required installed libraries -lNAME OUTPUT-FILE requires the installed library libNAME -module build a library that can dlopened -no-fast-install disable the fast-install mode -no-install link a not-installable executable -no-undefined declare that a library does not refer to external symbols -o OUTPUT-FILE create OUTPUT-FILE from the specified objects -objectlist FILE Use a list of object files found in FILE to specify objects -precious-files-regex REGEX don't remove output files matching REGEX -release RELEASE specify package release information -rpath LIBDIR the created library will eventually be installed in LIBDIR -R[ ]LIBDIR add LIBDIR to the runtime path of programs and libraries -shared only do dynamic linking of libtool libraries -shrext SUFFIX override the standard shared library file extension -static do not do any dynamic linking of uninstalled libtool libraries -static-libtool-libs do not do any dynamic linking of libtool libraries -version-info CURRENT[:REVISION[:AGE]] specify library version info [each variable defaults to 0] -weak LIBNAME declare that the target provides the LIBNAME interface All other options (arguments beginning with \`-') are ignored. Every other argument is treated as a filename. Files ending in \`.la' are treated as uninstalled libtool libraries, other files are standard or library object files. If the OUTPUT-FILE ends in \`.la', then a libtool library is created, only library objects (\`.lo' files) may be specified, and \`-rpath' is required, except when creating a convenience library. If OUTPUT-FILE ends in \`.a' or \`.lib', then a standard library is created using \`ar' and \`ranlib', or on Windows using \`lib'. If OUTPUT-FILE ends in \`.lo' or \`.${objext}', then a reloadable object file is created, otherwise an executable program is created." ;; uninstall) $ECHO \ "Usage: $progname [OPTION]... --mode=uninstall RM [RM-OPTION]... FILE... Remove libraries from an installation directory. RM is the name of the program to use to delete files associated with each FILE (typically \`/bin/rm'). RM-OPTIONS are options (such as \`-f') to be passed to RM. If FILE is a libtool library, all the files associated with it are deleted. Otherwise, only FILE itself is deleted using RM." ;; *) func_fatal_help "invalid operation mode \`$mode'" ;; esac $ECHO $ECHO "Try \`$progname --help' for more information about other modes." exit $? } # Now that we've collected a possible --mode arg, show help if necessary $opt_help && func_mode_help # func_mode_execute arg... func_mode_execute () { $opt_debug # The first argument is the command name. cmd="$nonopt" test -z "$cmd" && \ func_fatal_help "you must specify a COMMAND" # Handle -dlopen flags immediately. for file in $execute_dlfiles; do test -f "$file" \ || func_fatal_help "\`$file' is not a file" dir= case $file in *.la) # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ || func_fatal_help "\`$lib' is not a valid libtool archive" # Read the libtool library. dlname= library_names= func_source "$file" # Skip this library if it cannot be dlopened. if test -z "$dlname"; then # Warn if it was a shared library. test -n "$library_names" && \ func_warning "\`$file' was not linked with \`-export-dynamic'" continue fi func_dirname "$file" "" "." dir="$func_dirname_result" if test -f "$dir/$objdir/$dlname"; then dir="$dir/$objdir" else if test ! -f "$dir/$dlname"; then func_fatal_error "cannot find \`$dlname' in \`$dir' or \`$dir/$objdir'" fi fi ;; *.lo) # Just add the directory containing the .lo file. func_dirname "$file" "" "." dir="$func_dirname_result" ;; *) func_warning "\`-dlopen' is ignored for non-libtool libraries and objects" continue ;; esac # Get the absolute pathname. absdir=`cd "$dir" && pwd` test -n "$absdir" && dir="$absdir" # Now add the directory to shlibpath_var. if eval "test -z \"\$$shlibpath_var\""; then eval "$shlibpath_var=\"\$dir\"" else eval "$shlibpath_var=\"\$dir:\$$shlibpath_var\"" fi done # This variable tells wrapper scripts just to set shlibpath_var # rather than running their programs. libtool_execute_magic="$magic" # Check if any of the arguments is a wrapper script. args= for file do case $file in -*) ;; *) # Do a test to see if this is really a libtool program. if func_ltwrapper_script_p "$file"; then func_source "$file" # Transform arg to wrapped name. file="$progdir/$program" elif func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" func_source "$func_ltwrapper_scriptname_result" # Transform arg to wrapped name. file="$progdir/$program" fi ;; esac # Quote arguments (to preserve shell metacharacters). func_quote_for_eval "$file" args="$args $func_quote_for_eval_result" done if test "X$opt_dry_run" = Xfalse; then if test -n "$shlibpath_var"; then # Export the shlibpath_var. eval "export $shlibpath_var" fi # Restore saved environment variables for lt_var in LANG LANGUAGE LC_ALL LC_CTYPE LC_COLLATE LC_MESSAGES do eval "if test \"\${save_$lt_var+set}\" = set; then $lt_var=\$save_$lt_var; export $lt_var else $lt_unset $lt_var fi" done # Now prepare to actually exec the command. exec_cmd="\$cmd$args" else # Display what would be done. if test -n "$shlibpath_var"; then eval "\$ECHO \"\$shlibpath_var=\$$shlibpath_var\"" $ECHO "export $shlibpath_var" fi $ECHO "$cmd$args" exit $EXIT_SUCCESS fi } test "$mode" = execute && func_mode_execute ${1+"$@"} # func_mode_finish arg... func_mode_finish () { $opt_debug libdirs="$nonopt" admincmds= if test -n "$finish_cmds$finish_eval" && test -n "$libdirs"; then for dir do libdirs="$libdirs $dir" done for libdir in $libdirs; do if test -n "$finish_cmds"; then # Do each command in the finish commands. func_execute_cmds "$finish_cmds" 'admincmds="$admincmds '"$cmd"'"' fi if test -n "$finish_eval"; then # Do the single finish_eval. eval cmds=\"$finish_eval\" $opt_dry_run || eval "$cmds" || admincmds="$admincmds $cmds" fi done fi # Exit here if they wanted silent mode. $opt_silent && exit $EXIT_SUCCESS $ECHO "X----------------------------------------------------------------------" | $Xsed $ECHO "Libraries have been installed in:" for libdir in $libdirs; do $ECHO " $libdir" done $ECHO $ECHO "If you ever happen to want to link against installed libraries" $ECHO "in a given directory, LIBDIR, you must either use libtool, and" $ECHO "specify the full pathname of the library, or use the \`-LLIBDIR'" $ECHO "flag during linking and do at least one of the following:" if test -n "$shlibpath_var"; then $ECHO " - add LIBDIR to the \`$shlibpath_var' environment variable" $ECHO " during execution" fi if test -n "$runpath_var"; then $ECHO " - add LIBDIR to the \`$runpath_var' environment variable" $ECHO " during linking" fi if test -n "$hardcode_libdir_flag_spec"; then libdir=LIBDIR eval flag=\"$hardcode_libdir_flag_spec\" $ECHO " - use the \`$flag' linker flag" fi if test -n "$admincmds"; then $ECHO " - have your system administrator run these commands:$admincmds" fi if test -f /etc/ld.so.conf; then $ECHO " - have your system administrator add LIBDIR to \`/etc/ld.so.conf'" fi $ECHO $ECHO "See any operating system documentation about shared libraries for" case $host in solaris2.[6789]|solaris2.1[0-9]) $ECHO "more information, such as the ld(1), crle(1) and ld.so(8) manual" $ECHO "pages." ;; *) $ECHO "more information, such as the ld(1) and ld.so(8) manual pages." ;; esac $ECHO "X----------------------------------------------------------------------" | $Xsed exit $EXIT_SUCCESS } test "$mode" = finish && func_mode_finish ${1+"$@"} # func_mode_install arg... func_mode_install () { $opt_debug # There may be an optional sh(1) argument at the beginning of # install_prog (especially on Windows NT). if test "$nonopt" = "$SHELL" || test "$nonopt" = /bin/sh || # Allow the use of GNU shtool's install command. $ECHO "X$nonopt" | $GREP shtool >/dev/null; then # Aesthetically quote it. func_quote_for_eval "$nonopt" install_prog="$func_quote_for_eval_result " arg=$1 shift else install_prog= arg=$nonopt fi # The real first argument should be the name of the installation program. # Aesthetically quote it. func_quote_for_eval "$arg" install_prog="$install_prog$func_quote_for_eval_result" # We need to accept at least all the BSD install flags. dest= files= opts= prev= install_type= isdir=no stripme= for arg do if test -n "$dest"; then files="$files $dest" dest=$arg continue fi case $arg in -d) isdir=yes ;; -f) case " $install_prog " in *[\\\ /]cp\ *) ;; *) prev=$arg ;; esac ;; -g | -m | -o) prev=$arg ;; -s) stripme=" -s" continue ;; -*) ;; *) # If the previous option needed an argument, then skip it. if test -n "$prev"; then prev= else dest=$arg continue fi ;; esac # Aesthetically quote the argument. func_quote_for_eval "$arg" install_prog="$install_prog $func_quote_for_eval_result" done test -z "$install_prog" && \ func_fatal_help "you must specify an install program" test -n "$prev" && \ func_fatal_help "the \`$prev' option requires an argument" if test -z "$files"; then if test -z "$dest"; then func_fatal_help "no file or destination specified" else func_fatal_help "you must specify a destination" fi fi # Strip any trailing slash from the destination. func_stripname '' '/' "$dest" dest=$func_stripname_result # Check to see that the destination is a directory. test -d "$dest" && isdir=yes if test "$isdir" = yes; then destdir="$dest" destname= else func_dirname_and_basename "$dest" "" "." destdir="$func_dirname_result" destname="$func_basename_result" # Not a directory, so check to see that there is only one file specified. set dummy $files; shift test "$#" -gt 1 && \ func_fatal_help "\`$dest' is not a directory" fi case $destdir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) for file in $files; do case $file in *.lo) ;; *) func_fatal_help "\`$destdir' must be an absolute directory name" ;; esac done ;; esac # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic="$magic" staticlibs= future_libdirs= current_libdirs= for file in $files; do # Do each installation. case $file in *.$libext) # Do the static libraries later. staticlibs="$staticlibs $file" ;; *.la) # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$file" \ || func_fatal_help "\`$file' is not a valid libtool archive" library_names= old_library= relink_command= func_source "$file" # Add the libdir to current_libdirs if it is the destination. if test "X$destdir" = "X$libdir"; then case "$current_libdirs " in *" $libdir "*) ;; *) current_libdirs="$current_libdirs $libdir" ;; esac else # Note the libdir as a future libdir. case "$future_libdirs " in *" $libdir "*) ;; *) future_libdirs="$future_libdirs $libdir" ;; esac fi func_dirname "$file" "/" "" dir="$func_dirname_result" dir="$dir$objdir" if test -n "$relink_command"; then # Determine the prefix the user has applied to our future dir. inst_prefix_dir=`$ECHO "X$destdir" | $Xsed -e "s%$libdir\$%%"` # Don't allow the user to place us outside of our expected # location b/c this prevents finding dependent libraries that # are installed to the same prefix. # At present, this check doesn't affect windows .dll's that # are installed into $libdir/../bin (currently, that works fine) # but it's something to keep an eye on. test "$inst_prefix_dir" = "$destdir" && \ func_fatal_error "error: cannot install \`$file' to a directory not ending in $libdir" if test -n "$inst_prefix_dir"; then # Stick the inst_prefix_dir data into the link command. relink_command=`$ECHO "X$relink_command" | $Xsed -e "s%@inst_prefix_dir@%-inst-prefix-dir $inst_prefix_dir%"` else relink_command=`$ECHO "X$relink_command" | $Xsed -e "s%@inst_prefix_dir@%%"` fi func_warning "relinking \`$file'" func_show_eval "$relink_command" \ 'func_fatal_error "error: relink \`$file'\'' with the above command before installing it"' fi # See the names of the shared library. set dummy $library_names; shift if test -n "$1"; then realname="$1" shift srcname="$realname" test -n "$relink_command" && srcname="$realname"T # Install the shared library and build the symlinks. func_show_eval "$install_prog $dir/$srcname $destdir/$realname" \ 'exit $?' tstripme="$stripme" case $host_os in cygwin* | mingw* | pw32* | cegcc*) case $realname in *.dll.a) tstripme="" ;; esac ;; esac if test -n "$tstripme" && test -n "$striplib"; then func_show_eval "$striplib $destdir/$realname" 'exit $?' fi if test "$#" -gt 0; then # Delete the old symlinks, and create new ones. # Try `ln -sf' first, because the `ln' binary might depend on # the symlink we replace! Solaris /bin/ln does not understand -f, # so we also need to try rm && ln -s. for linkname do test "$linkname" != "$realname" \ && func_show_eval "(cd $destdir && { $LN_S -f $realname $linkname || { $RM $linkname && $LN_S $realname $linkname; }; })" done fi # Do each command in the postinstall commands. lib="$destdir/$realname" func_execute_cmds "$postinstall_cmds" 'exit $?' fi # Install the pseudo-library for information purposes. func_basename "$file" name="$func_basename_result" instname="$dir/$name"i func_show_eval "$install_prog $instname $destdir/$name" 'exit $?' # Maybe install the static library, too. test -n "$old_library" && staticlibs="$staticlibs $dir/$old_library" ;; *.lo) # Install (i.e. copy) a libtool object. # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile="$destdir/$destname" else func_basename "$file" destfile="$func_basename_result" destfile="$destdir/$destfile" fi # Deduce the name of the destination old-style object file. case $destfile in *.lo) func_lo2o "$destfile" staticdest=$func_lo2o_result ;; *.$objext) staticdest="$destfile" destfile= ;; *) func_fatal_help "cannot copy a libtool object to \`$destfile'" ;; esac # Install the libtool object if requested. test -n "$destfile" && \ func_show_eval "$install_prog $file $destfile" 'exit $?' # Install the old object if enabled. if test "$build_old_libs" = yes; then # Deduce the name of the old-style object file. func_lo2o "$file" staticobj=$func_lo2o_result func_show_eval "$install_prog \$staticobj \$staticdest" 'exit $?' fi exit $EXIT_SUCCESS ;; *) # Figure out destination file name, if it wasn't already specified. if test -n "$destname"; then destfile="$destdir/$destname" else func_basename "$file" destfile="$func_basename_result" destfile="$destdir/$destfile" fi # If the file is missing, and there is a .exe on the end, strip it # because it is most likely a libtool script we actually want to # install stripped_ext="" case $file in *.exe) if test ! -f "$file"; then func_stripname '' '.exe' "$file" file=$func_stripname_result stripped_ext=".exe" fi ;; esac # Do a test to see if this is really a libtool program. case $host in *cygwin* | *mingw*) if func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" wrapper=$func_ltwrapper_scriptname_result else func_stripname '' '.exe' "$file" wrapper=$func_stripname_result fi ;; *) wrapper=$file ;; esac if func_ltwrapper_script_p "$wrapper"; then notinst_deplibs= relink_command= func_source "$wrapper" # Check the variables that should have been set. test -z "$generated_by_libtool_version" && \ func_fatal_error "invalid libtool wrapper script \`$wrapper'" finalize=yes for lib in $notinst_deplibs; do # Check to see that each library is installed. libdir= if test -f "$lib"; then func_source "$lib" fi libfile="$libdir/"`$ECHO "X$lib" | $Xsed -e 's%^.*/%%g'` ### testsuite: skip nested quoting test if test -n "$libdir" && test ! -f "$libfile"; then func_warning "\`$lib' has not been installed in \`$libdir'" finalize=no fi done relink_command= func_source "$wrapper" outputname= if test "$fast_install" = no && test -n "$relink_command"; then $opt_dry_run || { if test "$finalize" = yes; then tmpdir=`func_mktempdir` func_basename "$file$stripped_ext" file="$func_basename_result" outputname="$tmpdir/$file" # Replace the output file specification. relink_command=`$ECHO "X$relink_command" | $Xsed -e 's%@OUTPUT@%'"$outputname"'%g'` $opt_silent || { func_quote_for_expand "$relink_command" eval "func_echo $func_quote_for_expand_result" } if eval "$relink_command"; then : else func_error "error: relink \`$file' with the above command before installing it" $opt_dry_run || ${RM}r "$tmpdir" continue fi file="$outputname" else func_warning "cannot relink \`$file'" fi } else # Install the binary that we compiled earlier. file=`$ECHO "X$file$stripped_ext" | $Xsed -e "s%\([^/]*\)$%$objdir/\1%"` fi fi # remove .exe since cygwin /usr/bin/install will append another # one anyway case $install_prog,$host in */usr/bin/install*,*cygwin*) case $file:$destfile in *.exe:*.exe) # this is ok ;; *.exe:*) destfile=$destfile.exe ;; *:*.exe) func_stripname '' '.exe' "$destfile" destfile=$func_stripname_result ;; esac ;; esac func_show_eval "$install_prog\$stripme \$file \$destfile" 'exit $?' $opt_dry_run || if test -n "$outputname"; then ${RM}r "$tmpdir" fi ;; esac done for file in $staticlibs; do func_basename "$file" name="$func_basename_result" # Set up the ranlib parameters. oldlib="$destdir/$name" func_show_eval "$install_prog \$file \$oldlib" 'exit $?' if test -n "$stripme" && test -n "$old_striplib"; then func_show_eval "$old_striplib $oldlib" 'exit $?' fi # Do each command in the postinstall commands. func_execute_cmds "$old_postinstall_cmds" 'exit $?' done test -n "$future_libdirs" && \ func_warning "remember to run \`$progname --finish$future_libdirs'" if test -n "$current_libdirs"; then # Maybe just do a dry run. $opt_dry_run && current_libdirs=" -n$current_libdirs" exec_cmd='$SHELL $progpath $preserve_args --finish$current_libdirs' else exit $EXIT_SUCCESS fi } test "$mode" = install && func_mode_install ${1+"$@"} # func_generate_dlsyms outputname originator pic_p # Extract symbols from dlprefiles and create ${outputname}S.o with # a dlpreopen symbol table. func_generate_dlsyms () { $opt_debug my_outputname="$1" my_originator="$2" my_pic_p="${3-no}" my_prefix=`$ECHO "$my_originator" | sed 's%[^a-zA-Z0-9]%_%g'` my_dlsyms= if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then if test -n "$NM" && test -n "$global_symbol_pipe"; then my_dlsyms="${my_outputname}S.c" else func_error "not configured to extract global symbols from dlpreopened files" fi fi if test -n "$my_dlsyms"; then case $my_dlsyms in "") ;; *.c) # Discover the nlist of each of the dlfiles. nlist="$output_objdir/${my_outputname}.nm" func_show_eval "$RM $nlist ${nlist}S ${nlist}T" # Parse the name list into a source file. func_verbose "creating $output_objdir/$my_dlsyms" $opt_dry_run || $ECHO > "$output_objdir/$my_dlsyms" "\ /* $my_dlsyms - symbol resolution table for \`$my_outputname' dlsym emulation. */ /* Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION */ #ifdef __cplusplus extern \"C\" { #endif /* External symbol declarations for the compiler. */\ " if test "$dlself" = yes; then func_verbose "generating symbol list for \`$output'" $opt_dry_run || echo ': @PROGRAM@ ' > "$nlist" # Add our own program objects to the symbol list. progfiles=`$ECHO "X$objs$old_deplibs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` for progfile in $progfiles; do func_verbose "extracting global C symbols from \`$progfile'" $opt_dry_run || eval "$NM $progfile | $global_symbol_pipe >> '$nlist'" done if test -n "$exclude_expsyms"; then $opt_dry_run || { eval '$EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' } fi if test -n "$export_symbols_regex"; then $opt_dry_run || { eval '$EGREP -e "$export_symbols_regex" "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' } fi # Prepare the list of exported symbols if test -z "$export_symbols"; then export_symbols="$output_objdir/$outputname.exp" $opt_dry_run || { $RM $export_symbols eval "${SED} -n -e '/^: @PROGRAM@ $/d' -e 's/^.* \(.*\)$/\1/p' "'< "$nlist" > "$export_symbols"' case $host in *cygwin* | *mingw* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' eval 'cat "$export_symbols" >> "$output_objdir/$outputname.def"' ;; esac } else $opt_dry_run || { eval "${SED} -e 's/\([].[*^$]\)/\\\\\1/g' -e 's/^/ /' -e 's/$/$/'"' < "$export_symbols" > "$output_objdir/$outputname.exp"' eval '$GREP -f "$output_objdir/$outputname.exp" < "$nlist" > "$nlist"T' eval '$MV "$nlist"T "$nlist"' case $host in *cygwin | *mingw* | *cegcc* ) eval "echo EXPORTS "'> "$output_objdir/$outputname.def"' eval 'cat "$nlist" >> "$output_objdir/$outputname.def"' ;; esac } fi fi for dlprefile in $dlprefiles; do func_verbose "extracting global C symbols from \`$dlprefile'" func_basename "$dlprefile" name="$func_basename_result" $opt_dry_run || { eval '$ECHO ": $name " >> "$nlist"' eval "$NM $dlprefile 2>/dev/null | $global_symbol_pipe >> '$nlist'" } done $opt_dry_run || { # Make sure we have at least an empty file. test -f "$nlist" || : > "$nlist" if test -n "$exclude_expsyms"; then $EGREP -v " ($exclude_expsyms)$" "$nlist" > "$nlist"T $MV "$nlist"T "$nlist" fi # Try sorting and uniquifying the output. if $GREP -v "^: " < "$nlist" | if sort -k 3 /dev/null 2>&1; then sort -k 3 else sort +2 fi | uniq > "$nlist"S; then : else $GREP -v "^: " < "$nlist" > "$nlist"S fi if test -f "$nlist"S; then eval "$global_symbol_to_cdecl"' < "$nlist"S >> "$output_objdir/$my_dlsyms"' else $ECHO '/* NONE */' >> "$output_objdir/$my_dlsyms" fi $ECHO >> "$output_objdir/$my_dlsyms" "\ /* The mapping between symbol names and symbols. */ typedef struct { const char *name; void *address; } lt_dlsymlist; " case $host in *cygwin* | *mingw* | *cegcc* ) $ECHO >> "$output_objdir/$my_dlsyms" "\ /* DATA imports from DLLs on WIN32 con't be const, because runtime relocations are performed -- see ld's documentation on pseudo-relocs. */" lt_dlsym_const= ;; *osf5*) echo >> "$output_objdir/$my_dlsyms" "\ /* This system does not cope well with relocations in const data */" lt_dlsym_const= ;; *) lt_dlsym_const=const ;; esac $ECHO >> "$output_objdir/$my_dlsyms" "\ extern $lt_dlsym_const lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[]; $lt_dlsym_const lt_dlsymlist lt_${my_prefix}_LTX_preloaded_symbols[] = {\ { \"$my_originator\", (void *) 0 }," case $need_lib_prefix in no) eval "$global_symbol_to_c_name_address" < "$nlist" >> "$output_objdir/$my_dlsyms" ;; *) eval "$global_symbol_to_c_name_address_lib_prefix" < "$nlist" >> "$output_objdir/$my_dlsyms" ;; esac $ECHO >> "$output_objdir/$my_dlsyms" "\ {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt_${my_prefix}_LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif\ " } # !$opt_dry_run pic_flag_for_symtable= case "$compile_command " in *" -static "*) ;; *) case $host in # compiling the symbol table file with pic_flag works around # a FreeBSD bug that causes programs to crash when -lm is # linked before any other PIC object. But we must not use # pic_flag when linking with -static. The problem exists in # FreeBSD 2.2.6 and is fixed in FreeBSD 3.1. *-*-freebsd2*|*-*-freebsd3.0*|*-*-freebsdelf3.0*) pic_flag_for_symtable=" $pic_flag -DFREEBSD_WORKAROUND" ;; *-*-hpux*) pic_flag_for_symtable=" $pic_flag" ;; *) if test "X$my_pic_p" != Xno; then pic_flag_for_symtable=" $pic_flag" fi ;; esac ;; esac symtab_cflags= for arg in $LTCFLAGS; do case $arg in -pie | -fpie | -fPIE) ;; *) symtab_cflags="$symtab_cflags $arg" ;; esac done # Now compile the dynamic symbol file. func_show_eval '(cd $output_objdir && $LTCC$symtab_cflags -c$no_builtin_flag$pic_flag_for_symtable "$my_dlsyms")' 'exit $?' # Clean up the generated files. func_show_eval '$RM "$output_objdir/$my_dlsyms" "$nlist" "${nlist}S" "${nlist}T"' # Transform the symbol file into the correct name. symfileobj="$output_objdir/${my_outputname}S.$objext" case $host in *cygwin* | *mingw* | *cegcc* ) if test -f "$output_objdir/$my_outputname.def"; then compile_command=`$ECHO "X$compile_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` finalize_command=`$ECHO "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$output_objdir/$my_outputname.def $symfileobj%"` else compile_command=`$ECHO "X$compile_command" | $Xsed -e "s%@SYMFILE@%$symfileobj%"` finalize_command=`$ECHO "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$symfileobj%"` fi ;; *) compile_command=`$ECHO "X$compile_command" | $Xsed -e "s%@SYMFILE@%$symfileobj%"` finalize_command=`$ECHO "X$finalize_command" | $Xsed -e "s%@SYMFILE@%$symfileobj%"` ;; esac ;; *) func_fatal_error "unknown suffix for \`$my_dlsyms'" ;; esac else # We keep going just in case the user didn't refer to # lt_preloaded_symbols. The linker will fail if global_symbol_pipe # really was required. # Nullify the symbol file. compile_command=`$ECHO "X$compile_command" | $Xsed -e "s% @SYMFILE@%%"` finalize_command=`$ECHO "X$finalize_command" | $Xsed -e "s% @SYMFILE@%%"` fi } # func_win32_libid arg # return the library type of file 'arg' # # Need a lot of goo to handle *both* DLLs and import libs # Has to be a shell function in order to 'eat' the argument # that is supplied when $file_magic_command is called. func_win32_libid () { $opt_debug win32_libid_type="unknown" win32_fileres=`file -L $1 2>/dev/null` case $win32_fileres in *ar\ archive\ import\ library*) # definitely import win32_libid_type="x86 archive import" ;; *ar\ archive*) # could be an import, or static if eval $OBJDUMP -f $1 | $SED -e '10q' 2>/dev/null | $EGREP 'file format pe-i386(.*architecture: i386)?' >/dev/null ; then win32_nmres=`eval $NM -f posix -A $1 | $SED -n -e ' 1,100{ / I /{ s,.*,import, p q } }'` case $win32_nmres in import*) win32_libid_type="x86 archive import";; *) win32_libid_type="x86 archive static";; esac fi ;; *DLL*) win32_libid_type="x86 DLL" ;; *executable*) # but shell scripts are "executable" too... case $win32_fileres in *MS\ Windows\ PE\ Intel*) win32_libid_type="x86 DLL" ;; esac ;; esac $ECHO "$win32_libid_type" } # func_extract_an_archive dir oldlib func_extract_an_archive () { $opt_debug f_ex_an_ar_dir="$1"; shift f_ex_an_ar_oldlib="$1" func_show_eval "(cd \$f_ex_an_ar_dir && $AR x \"\$f_ex_an_ar_oldlib\")" 'exit $?' if ($AR t "$f_ex_an_ar_oldlib" | sort | sort -uc >/dev/null 2>&1); then : else func_fatal_error "object name conflicts in archive: $f_ex_an_ar_dir/$f_ex_an_ar_oldlib" fi } # func_extract_archives gentop oldlib ... func_extract_archives () { $opt_debug my_gentop="$1"; shift my_oldlibs=${1+"$@"} my_oldobjs="" my_xlib="" my_xabs="" my_xdir="" for my_xlib in $my_oldlibs; do # Extract the objects. case $my_xlib in [\\/]* | [A-Za-z]:[\\/]*) my_xabs="$my_xlib" ;; *) my_xabs=`pwd`"/$my_xlib" ;; esac func_basename "$my_xlib" my_xlib="$func_basename_result" my_xlib_u=$my_xlib while :; do case " $extracted_archives " in *" $my_xlib_u "*) func_arith $extracted_serial + 1 extracted_serial=$func_arith_result my_xlib_u=lt$extracted_serial-$my_xlib ;; *) break ;; esac done extracted_archives="$extracted_archives $my_xlib_u" my_xdir="$my_gentop/$my_xlib_u" func_mkdir_p "$my_xdir" case $host in *-darwin*) func_verbose "Extracting $my_xabs" # Do not bother doing anything if just a dry run $opt_dry_run || { darwin_orig_dir=`pwd` cd $my_xdir || exit $? darwin_archive=$my_xabs darwin_curdir=`pwd` darwin_base_archive=`basename "$darwin_archive"` darwin_arches=`$LIPO -info "$darwin_archive" 2>/dev/null | $GREP Architectures 2>/dev/null || true` if test -n "$darwin_arches"; then darwin_arches=`$ECHO "$darwin_arches" | $SED -e 's/.*are://'` darwin_arch= func_verbose "$darwin_base_archive has multiple architectures $darwin_arches" for darwin_arch in $darwin_arches ; do func_mkdir_p "unfat-$$/${darwin_base_archive}-${darwin_arch}" $LIPO -thin $darwin_arch -output "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" "${darwin_archive}" cd "unfat-$$/${darwin_base_archive}-${darwin_arch}" func_extract_an_archive "`pwd`" "${darwin_base_archive}" cd "$darwin_curdir" $RM "unfat-$$/${darwin_base_archive}-${darwin_arch}/${darwin_base_archive}" done # $darwin_arches ## Okay now we've a bunch of thin objects, gotta fatten them up :) darwin_filelist=`find unfat-$$ -type f -name \*.o -print -o -name \*.lo -print | $SED -e "$basename" | sort -u` darwin_file= darwin_files= for darwin_file in $darwin_filelist; do darwin_files=`find unfat-$$ -name $darwin_file -print | $NL2SP` $LIPO -create -output "$darwin_file" $darwin_files done # $darwin_filelist $RM -rf unfat-$$ cd "$darwin_orig_dir" else cd $darwin_orig_dir func_extract_an_archive "$my_xdir" "$my_xabs" fi # $darwin_arches } # !$opt_dry_run ;; *) func_extract_an_archive "$my_xdir" "$my_xabs" ;; esac my_oldobjs="$my_oldobjs "`find $my_xdir -name \*.$objext -print -o -name \*.lo -print | $NL2SP` done func_extract_archives_result="$my_oldobjs" } # func_emit_wrapper_part1 [arg=no] # # Emit the first part of a libtool wrapper script on stdout. # For more information, see the description associated with # func_emit_wrapper(), below. func_emit_wrapper_part1 () { func_emit_wrapper_part1_arg1=no if test -n "$1" ; then func_emit_wrapper_part1_arg1=$1 fi $ECHO "\ #! $SHELL # $output - temporary wrapper script for $objdir/$outputname # Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION # # The $output program cannot be directly executed until all the libtool # libraries that it depends on are installed. # # This wrapper script should never be moved out of the build directory. # If it is, it will not operate correctly. # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. Xsed='${SED} -e 1s/^X//' sed_quote_subst='$sed_quote_subst' # Be Bourne compatible if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then emulate sh NULLCMD=: # Zsh 3.x and 4.x performs word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in *posix*) set -o posix;; esac fi BIN_SH=xpg4; export BIN_SH # for Tru64 DUALCASE=1; export DUALCASE # for MKS sh # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH relink_command=\"$relink_command\" # This environment variable determines our operation mode. if test \"\$libtool_install_magic\" = \"$magic\"; then # install mode needs the following variables: generated_by_libtool_version='$macro_version' notinst_deplibs='$notinst_deplibs' else # When we are sourced in execute mode, \$file and \$ECHO are already set. if test \"\$libtool_execute_magic\" != \"$magic\"; then ECHO=\"$qecho\" file=\"\$0\" # Make sure echo works. if test \"X\$1\" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test \"X\`{ \$ECHO '\t'; } 2>/dev/null\`\" = 'X\t'; then # Yippee, \$ECHO works! : else # Restart under the correct shell, and then maybe \$ECHO will work. exec $SHELL \"\$0\" --no-reexec \${1+\"\$@\"} fi fi\ " $ECHO "\ # Find the directory that this script lives in. thisdir=\`\$ECHO \"X\$file\" | \$Xsed -e 's%/[^/]*$%%'\` test \"x\$thisdir\" = \"x\$file\" && thisdir=. # Follow symbolic links until we get to the real thisdir. file=\`ls -ld \"\$file\" | ${SED} -n 's/.*-> //p'\` while test -n \"\$file\"; do destdir=\`\$ECHO \"X\$file\" | \$Xsed -e 's%/[^/]*\$%%'\` # If there was a directory component, then change thisdir. if test \"x\$destdir\" != \"x\$file\"; then case \"\$destdir\" in [\\\\/]* | [A-Za-z]:[\\\\/]*) thisdir=\"\$destdir\" ;; *) thisdir=\"\$thisdir/\$destdir\" ;; esac fi file=\`\$ECHO \"X\$file\" | \$Xsed -e 's%^.*/%%'\` file=\`ls -ld \"\$thisdir/\$file\" | ${SED} -n 's/.*-> //p'\` done " } # end: func_emit_wrapper_part1 # func_emit_wrapper_part2 [arg=no] # # Emit the second part of a libtool wrapper script on stdout. # For more information, see the description associated with # func_emit_wrapper(), below. func_emit_wrapper_part2 () { func_emit_wrapper_part2_arg1=no if test -n "$1" ; then func_emit_wrapper_part2_arg1=$1 fi $ECHO "\ # Usually 'no', except on cygwin/mingw when embedded into # the cwrapper. WRAPPER_SCRIPT_BELONGS_IN_OBJDIR=$func_emit_wrapper_part2_arg1 if test \"\$WRAPPER_SCRIPT_BELONGS_IN_OBJDIR\" = \"yes\"; then # special case for '.' if test \"\$thisdir\" = \".\"; then thisdir=\`pwd\` fi # remove .libs from thisdir case \"\$thisdir\" in *[\\\\/]$objdir ) thisdir=\`\$ECHO \"X\$thisdir\" | \$Xsed -e 's%[\\\\/][^\\\\/]*$%%'\` ;; $objdir ) thisdir=. ;; esac fi # Try to get the absolute directory name. absdir=\`cd \"\$thisdir\" && pwd\` test -n \"\$absdir\" && thisdir=\"\$absdir\" " if test "$fast_install" = yes; then $ECHO "\ program=lt-'$outputname'$exeext progdir=\"\$thisdir/$objdir\" if test ! -f \"\$progdir/\$program\" || { file=\`ls -1dt \"\$progdir/\$program\" \"\$progdir/../\$program\" 2>/dev/null | ${SED} 1q\`; \\ test \"X\$file\" != \"X\$progdir/\$program\"; }; then file=\"\$\$-\$program\" if test ! -d \"\$progdir\"; then $MKDIR \"\$progdir\" else $RM \"\$progdir/\$file\" fi" $ECHO "\ # relink executable if necessary if test -n \"\$relink_command\"; then if relink_command_output=\`eval \$relink_command 2>&1\`; then : else $ECHO \"\$relink_command_output\" >&2 $RM \"\$progdir/\$file\" exit 1 fi fi $MV \"\$progdir/\$file\" \"\$progdir/\$program\" 2>/dev/null || { $RM \"\$progdir/\$program\"; $MV \"\$progdir/\$file\" \"\$progdir/\$program\"; } $RM \"\$progdir/\$file\" fi" else $ECHO "\ program='$outputname' progdir=\"\$thisdir/$objdir\" " fi $ECHO "\ if test -f \"\$progdir/\$program\"; then" # Export our shlibpath_var if we have one. if test "$shlibpath_overrides_runpath" = yes && test -n "$shlibpath_var" && test -n "$temp_rpath"; then $ECHO "\ # Add our own library path to $shlibpath_var $shlibpath_var=\"$temp_rpath\$$shlibpath_var\" # Some systems cannot cope with colon-terminated $shlibpath_var # The second colon is a workaround for a bug in BeOS R4 sed $shlibpath_var=\`\$ECHO \"X\$$shlibpath_var\" | \$Xsed -e 's/::*\$//'\` export $shlibpath_var " fi # fixup the dll searchpath if we need to. if test -n "$dllsearchpath"; then $ECHO "\ # Add the dll search path components to the executable PATH PATH=$dllsearchpath:\$PATH " fi $ECHO "\ if test \"\$libtool_execute_magic\" != \"$magic\"; then # Run the actual program with our arguments. " case $host in # Backslashes separate directories on plain windows *-*-mingw | *-*-os2* | *-cegcc*) $ECHO "\ exec \"\$progdir\\\\\$program\" \${1+\"\$@\"} " ;; *) $ECHO "\ exec \"\$progdir/\$program\" \${1+\"\$@\"} " ;; esac $ECHO "\ \$ECHO \"\$0: cannot exec \$program \$*\" 1>&2 exit 1 fi else # The program doesn't exist. \$ECHO \"\$0: error: \\\`\$progdir/\$program' does not exist\" 1>&2 \$ECHO \"This script is just a wrapper for \$program.\" 1>&2 $ECHO \"See the $PACKAGE documentation for more information.\" 1>&2 exit 1 fi fi\ " } # end: func_emit_wrapper_part2 # func_emit_wrapper [arg=no] # # Emit a libtool wrapper script on stdout. # Don't directly open a file because we may want to # incorporate the script contents within a cygwin/mingw # wrapper executable. Must ONLY be called from within # func_mode_link because it depends on a number of variables # set therein. # # ARG is the value that the WRAPPER_SCRIPT_BELONGS_IN_OBJDIR # variable will take. If 'yes', then the emitted script # will assume that the directory in which it is stored is # the $objdir directory. This is a cygwin/mingw-specific # behavior. func_emit_wrapper () { func_emit_wrapper_arg1=no if test -n "$1" ; then func_emit_wrapper_arg1=$1 fi # split this up so that func_emit_cwrapperexe_src # can call each part independently. func_emit_wrapper_part1 "${func_emit_wrapper_arg1}" func_emit_wrapper_part2 "${func_emit_wrapper_arg1}" } # func_to_host_path arg # # Convert paths to host format when used with build tools. # Intended for use with "native" mingw (where libtool itself # is running under the msys shell), or in the following cross- # build environments: # $build $host # mingw (msys) mingw [e.g. native] # cygwin mingw # *nix + wine mingw # where wine is equipped with the `winepath' executable. # In the native mingw case, the (msys) shell automatically # converts paths for any non-msys applications it launches, # but that facility isn't available from inside the cwrapper. # Similar accommodations are necessary for $host mingw and # $build cygwin. Calling this function does no harm for other # $host/$build combinations not listed above. # # ARG is the path (on $build) that should be converted to # the proper representation for $host. The result is stored # in $func_to_host_path_result. func_to_host_path () { func_to_host_path_result="$1" if test -n "$1" ; then case $host in *mingw* ) lt_sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' case $build in *mingw* ) # actually, msys # awkward: cmd appends spaces to result lt_sed_strip_trailing_spaces="s/[ ]*\$//" func_to_host_path_tmp1=`( cmd //c echo "$1" |\ $SED -e "$lt_sed_strip_trailing_spaces" ) 2>/dev/null || echo ""` func_to_host_path_result=`echo "$func_to_host_path_tmp1" |\ $SED -e "$lt_sed_naive_backslashify"` ;; *cygwin* ) func_to_host_path_tmp1=`cygpath -w "$1"` func_to_host_path_result=`echo "$func_to_host_path_tmp1" |\ $SED -e "$lt_sed_naive_backslashify"` ;; * ) # Unfortunately, winepath does not exit with a non-zero # error code, so we are forced to check the contents of # stdout. On the other hand, if the command is not # found, the shell will set an exit code of 127 and print # *an error message* to stdout. So we must check for both # error code of zero AND non-empty stdout, which explains # the odd construction: func_to_host_path_tmp1=`winepath -w "$1" 2>/dev/null` if test "$?" -eq 0 && test -n "${func_to_host_path_tmp1}"; then func_to_host_path_result=`echo "$func_to_host_path_tmp1" |\ $SED -e "$lt_sed_naive_backslashify"` else # Allow warning below. func_to_host_path_result="" fi ;; esac if test -z "$func_to_host_path_result" ; then func_error "Could not determine host path corresponding to" func_error " '$1'" func_error "Continuing, but uninstalled executables may not work." # Fallback: func_to_host_path_result="$1" fi ;; esac fi } # end: func_to_host_path # func_to_host_pathlist arg # # Convert pathlists to host format when used with build tools. # See func_to_host_path(), above. This function supports the # following $build/$host combinations (but does no harm for # combinations not listed here): # $build $host # mingw (msys) mingw [e.g. native] # cygwin mingw # *nix + wine mingw # # Path separators are also converted from $build format to # $host format. If ARG begins or ends with a path separator # character, it is preserved (but converted to $host format) # on output. # # ARG is a pathlist (on $build) that should be converted to # the proper representation on $host. The result is stored # in $func_to_host_pathlist_result. func_to_host_pathlist () { func_to_host_pathlist_result="$1" if test -n "$1" ; then case $host in *mingw* ) lt_sed_naive_backslashify='s|\\\\*|\\|g;s|/|\\|g;s|\\|\\\\|g' # Remove leading and trailing path separator characters from # ARG. msys behavior is inconsistent here, cygpath turns them # into '.;' and ';.', and winepath ignores them completely. func_to_host_pathlist_tmp2="$1" # Once set for this call, this variable should not be # reassigned. It is used in tha fallback case. func_to_host_pathlist_tmp1=`echo "$func_to_host_pathlist_tmp2" |\ $SED -e 's|^:*||' -e 's|:*$||'` case $build in *mingw* ) # Actually, msys. # Awkward: cmd appends spaces to result. lt_sed_strip_trailing_spaces="s/[ ]*\$//" func_to_host_pathlist_tmp2=`( cmd //c echo "$func_to_host_pathlist_tmp1" |\ $SED -e "$lt_sed_strip_trailing_spaces" ) 2>/dev/null || echo ""` func_to_host_pathlist_result=`echo "$func_to_host_pathlist_tmp2" |\ $SED -e "$lt_sed_naive_backslashify"` ;; *cygwin* ) func_to_host_pathlist_tmp2=`cygpath -w -p "$func_to_host_pathlist_tmp1"` func_to_host_pathlist_result=`echo "$func_to_host_pathlist_tmp2" |\ $SED -e "$lt_sed_naive_backslashify"` ;; * ) # unfortunately, winepath doesn't convert pathlists func_to_host_pathlist_result="" func_to_host_pathlist_oldIFS=$IFS IFS=: for func_to_host_pathlist_f in $func_to_host_pathlist_tmp1 ; do IFS=$func_to_host_pathlist_oldIFS if test -n "$func_to_host_pathlist_f" ; then func_to_host_path "$func_to_host_pathlist_f" if test -n "$func_to_host_path_result" ; then if test -z "$func_to_host_pathlist_result" ; then func_to_host_pathlist_result="$func_to_host_path_result" else func_to_host_pathlist_result="$func_to_host_pathlist_result;$func_to_host_path_result" fi fi fi IFS=: done IFS=$func_to_host_pathlist_oldIFS ;; esac if test -z "$func_to_host_pathlist_result" ; then func_error "Could not determine the host path(s) corresponding to" func_error " '$1'" func_error "Continuing, but uninstalled executables may not work." # Fallback. This may break if $1 contains DOS-style drive # specifications. The fix is not to complicate the expression # below, but for the user to provide a working wine installation # with winepath so that path translation in the cross-to-mingw # case works properly. lt_replace_pathsep_nix_to_dos="s|:|;|g" func_to_host_pathlist_result=`echo "$func_to_host_pathlist_tmp1" |\ $SED -e "$lt_replace_pathsep_nix_to_dos"` fi # Now, add the leading and trailing path separators back case "$1" in :* ) func_to_host_pathlist_result=";$func_to_host_pathlist_result" ;; esac case "$1" in *: ) func_to_host_pathlist_result="$func_to_host_pathlist_result;" ;; esac ;; esac fi } # end: func_to_host_pathlist # func_emit_cwrapperexe_src # emit the source code for a wrapper executable on stdout # Must ONLY be called from within func_mode_link because # it depends on a number of variable set therein. func_emit_cwrapperexe_src () { cat < #include #ifdef _MSC_VER # include # include # include # define setmode _setmode #else # include # include # ifdef __CYGWIN__ # include # define HAVE_SETENV # ifdef __STRICT_ANSI__ char *realpath (const char *, char *); int putenv (char *); int setenv (const char *, const char *, int); # endif # endif #endif #include #include #include #include #include #include #include #include #if defined(PATH_MAX) # define LT_PATHMAX PATH_MAX #elif defined(MAXPATHLEN) # define LT_PATHMAX MAXPATHLEN #else # define LT_PATHMAX 1024 #endif #ifndef S_IXOTH # define S_IXOTH 0 #endif #ifndef S_IXGRP # define S_IXGRP 0 #endif #ifdef _MSC_VER # define S_IXUSR _S_IEXEC # define stat _stat # ifndef _INTPTR_T_DEFINED # define intptr_t int # endif #endif #ifndef DIR_SEPARATOR # define DIR_SEPARATOR '/' # define PATH_SEPARATOR ':' #endif #if defined (_WIN32) || defined (__MSDOS__) || defined (__DJGPP__) || \ defined (__OS2__) # define HAVE_DOS_BASED_FILE_SYSTEM # define FOPEN_WB "wb" # ifndef DIR_SEPARATOR_2 # define DIR_SEPARATOR_2 '\\' # endif # ifndef PATH_SEPARATOR_2 # define PATH_SEPARATOR_2 ';' # endif #endif #ifndef DIR_SEPARATOR_2 # define IS_DIR_SEPARATOR(ch) ((ch) == DIR_SEPARATOR) #else /* DIR_SEPARATOR_2 */ # define IS_DIR_SEPARATOR(ch) \ (((ch) == DIR_SEPARATOR) || ((ch) == DIR_SEPARATOR_2)) #endif /* DIR_SEPARATOR_2 */ #ifndef PATH_SEPARATOR_2 # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR) #else /* PATH_SEPARATOR_2 */ # define IS_PATH_SEPARATOR(ch) ((ch) == PATH_SEPARATOR_2) #endif /* PATH_SEPARATOR_2 */ #ifdef __CYGWIN__ # define FOPEN_WB "wb" #endif #ifndef FOPEN_WB # define FOPEN_WB "w" #endif #ifndef _O_BINARY # define _O_BINARY 0 #endif #define XMALLOC(type, num) ((type *) xmalloc ((num) * sizeof(type))) #define XFREE(stale) do { \ if (stale) { free ((void *) stale); stale = 0; } \ } while (0) #undef LTWRAPPER_DEBUGPRINTF #if defined DEBUGWRAPPER # define LTWRAPPER_DEBUGPRINTF(args) ltwrapper_debugprintf args static void ltwrapper_debugprintf (const char *fmt, ...) { va_list args; va_start (args, fmt); (void) vfprintf (stderr, fmt, args); va_end (args); } #else # define LTWRAPPER_DEBUGPRINTF(args) #endif const char *program_name = NULL; void *xmalloc (size_t num); char *xstrdup (const char *string); const char *base_name (const char *name); char *find_executable (const char *wrapper); char *chase_symlinks (const char *pathspec); int make_executable (const char *path); int check_executable (const char *path); char *strendzap (char *str, const char *pat); void lt_fatal (const char *message, ...); void lt_setenv (const char *name, const char *value); char *lt_extend_str (const char *orig_value, const char *add, int to_end); void lt_opt_process_env_set (const char *arg); void lt_opt_process_env_prepend (const char *arg); void lt_opt_process_env_append (const char *arg); int lt_split_name_value (const char *arg, char** name, char** value); void lt_update_exe_path (const char *name, const char *value); void lt_update_lib_path (const char *name, const char *value); static const char *script_text_part1 = EOF func_emit_wrapper_part1 yes | $SED -e 's/\([\\"]\)/\\\1/g' \ -e 's/^/ "/' -e 's/$/\\n"/' echo ";" cat <"))); for (i = 0; i < newargc; i++) { LTWRAPPER_DEBUGPRINTF (("(main) newargz[%d] : %s\n", i, (newargz[i] ? newargz[i] : ""))); } EOF case $host_os in mingw*) cat <<"EOF" /* execv doesn't actually work on mingw as expected on unix */ rval = _spawnv (_P_WAIT, lt_argv_zero, (const char * const *) newargz); if (rval == -1) { /* failed to start process */ LTWRAPPER_DEBUGPRINTF (("(main) failed to launch target \"%s\": errno = %d\n", lt_argv_zero, errno)); return 127; } return rval; EOF ;; *) cat <<"EOF" execv (lt_argv_zero, newargz); return rval; /* =127, but avoids unused variable warning */ EOF ;; esac cat <<"EOF" } void * xmalloc (size_t num) { void *p = (void *) malloc (num); if (!p) lt_fatal ("Memory exhausted"); return p; } char * xstrdup (const char *string) { return string ? strcpy ((char *) xmalloc (strlen (string) + 1), string) : NULL; } const char * base_name (const char *name) { const char *base; #if defined (HAVE_DOS_BASED_FILE_SYSTEM) /* Skip over the disk name in MSDOS pathnames. */ if (isalpha ((unsigned char) name[0]) && name[1] == ':') name += 2; #endif for (base = name; *name; name++) if (IS_DIR_SEPARATOR (*name)) base = name + 1; return base; } int check_executable (const char *path) { struct stat st; LTWRAPPER_DEBUGPRINTF (("(check_executable) : %s\n", path ? (*path ? path : "EMPTY!") : "NULL!")); if ((!path) || (!*path)) return 0; if ((stat (path, &st) >= 0) && (st.st_mode & (S_IXUSR | S_IXGRP | S_IXOTH))) return 1; else return 0; } int make_executable (const char *path) { int rval = 0; struct stat st; LTWRAPPER_DEBUGPRINTF (("(make_executable) : %s\n", path ? (*path ? path : "EMPTY!") : "NULL!")); if ((!path) || (!*path)) return 0; if (stat (path, &st) >= 0) { rval = chmod (path, st.st_mode | S_IXOTH | S_IXGRP | S_IXUSR); } return rval; } /* Searches for the full path of the wrapper. Returns newly allocated full path name if found, NULL otherwise Does not chase symlinks, even on platforms that support them. */ char * find_executable (const char *wrapper) { int has_slash = 0; const char *p; const char *p_next; /* static buffer for getcwd */ char tmp[LT_PATHMAX + 1]; int tmp_len; char *concat_name; LTWRAPPER_DEBUGPRINTF (("(find_executable) : %s\n", wrapper ? (*wrapper ? wrapper : "EMPTY!") : "NULL!")); if ((wrapper == NULL) || (*wrapper == '\0')) return NULL; /* Absolute path? */ #if defined (HAVE_DOS_BASED_FILE_SYSTEM) if (isalpha ((unsigned char) wrapper[0]) && wrapper[1] == ':') { concat_name = xstrdup (wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } else { #endif if (IS_DIR_SEPARATOR (wrapper[0])) { concat_name = xstrdup (wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } #if defined (HAVE_DOS_BASED_FILE_SYSTEM) } #endif for (p = wrapper; *p; p++) if (*p == '/') { has_slash = 1; break; } if (!has_slash) { /* no slashes; search PATH */ const char *path = getenv ("PATH"); if (path != NULL) { for (p = path; *p; p = p_next) { const char *q; size_t p_len; for (q = p; *q; q++) if (IS_PATH_SEPARATOR (*q)) break; p_len = q - p; p_next = (*q == '\0' ? q : q + 1); if (p_len == 0) { /* empty path: current directory */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal ("getcwd failed"); tmp_len = strlen (tmp); concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); } else { concat_name = XMALLOC (char, p_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, p, p_len); concat_name[p_len] = '/'; strcpy (concat_name + p_len + 1, wrapper); } if (check_executable (concat_name)) return concat_name; XFREE (concat_name); } } /* not found in PATH; assume curdir */ } /* Relative path | not found in path: prepend cwd */ if (getcwd (tmp, LT_PATHMAX) == NULL) lt_fatal ("getcwd failed"); tmp_len = strlen (tmp); concat_name = XMALLOC (char, tmp_len + 1 + strlen (wrapper) + 1); memcpy (concat_name, tmp, tmp_len); concat_name[tmp_len] = '/'; strcpy (concat_name + tmp_len + 1, wrapper); if (check_executable (concat_name)) return concat_name; XFREE (concat_name); return NULL; } char * chase_symlinks (const char *pathspec) { #ifndef S_ISLNK return xstrdup (pathspec); #else char buf[LT_PATHMAX]; struct stat s; char *tmp_pathspec = xstrdup (pathspec); char *p; int has_symlinks = 0; while (strlen (tmp_pathspec) && !has_symlinks) { LTWRAPPER_DEBUGPRINTF (("checking path component for symlinks: %s\n", tmp_pathspec)); if (lstat (tmp_pathspec, &s) == 0) { if (S_ISLNK (s.st_mode) != 0) { has_symlinks = 1; break; } /* search backwards for last DIR_SEPARATOR */ p = tmp_pathspec + strlen (tmp_pathspec) - 1; while ((p > tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) p--; if ((p == tmp_pathspec) && (!IS_DIR_SEPARATOR (*p))) { /* no more DIR_SEPARATORS left */ break; } *p = '\0'; } else { char *errstr = strerror (errno); lt_fatal ("Error accessing file %s (%s)", tmp_pathspec, errstr); } } XFREE (tmp_pathspec); if (!has_symlinks) { return xstrdup (pathspec); } tmp_pathspec = realpath (pathspec, buf); if (tmp_pathspec == 0) { lt_fatal ("Could not follow symlinks for %s", pathspec); } return xstrdup (tmp_pathspec); #endif } char * strendzap (char *str, const char *pat) { size_t len, patlen; assert (str != NULL); assert (pat != NULL); len = strlen (str); patlen = strlen (pat); if (patlen <= len) { str += len - patlen; if (strcmp (str, pat) == 0) *str = '\0'; } return str; } static void lt_error_core (int exit_status, const char *mode, const char *message, va_list ap) { fprintf (stderr, "%s: %s: ", program_name, mode); vfprintf (stderr, message, ap); fprintf (stderr, ".\n"); if (exit_status >= 0) exit (exit_status); } void lt_fatal (const char *message, ...) { va_list ap; va_start (ap, message); lt_error_core (EXIT_FAILURE, "FATAL", message, ap); va_end (ap); } void lt_setenv (const char *name, const char *value) { LTWRAPPER_DEBUGPRINTF (("(lt_setenv) setting '%s' to '%s'\n", (name ? name : ""), (value ? value : ""))); { #ifdef HAVE_SETENV /* always make a copy, for consistency with !HAVE_SETENV */ char *str = xstrdup (value); setenv (name, str, 1); #else int len = strlen (name) + 1 + strlen (value) + 1; char *str = XMALLOC (char, len); sprintf (str, "%s=%s", name, value); if (putenv (str) != EXIT_SUCCESS) { XFREE (str); } #endif } } char * lt_extend_str (const char *orig_value, const char *add, int to_end) { char *new_value; if (orig_value && *orig_value) { int orig_value_len = strlen (orig_value); int add_len = strlen (add); new_value = XMALLOC (char, add_len + orig_value_len + 1); if (to_end) { strcpy (new_value, orig_value); strcpy (new_value + orig_value_len, add); } else { strcpy (new_value, add); strcpy (new_value + add_len, orig_value); } } else { new_value = xstrdup (add); } return new_value; } int lt_split_name_value (const char *arg, char** name, char** value) { const char *p; int len; if (!arg || !*arg) return 1; p = strchr (arg, (int)'='); if (!p) return 1; *value = xstrdup (++p); len = strlen (arg) - strlen (*value); *name = XMALLOC (char, len); strncpy (*name, arg, len-1); (*name)[len - 1] = '\0'; return 0; } void lt_opt_process_env_set (const char *arg) { char *name = NULL; char *value = NULL; if (lt_split_name_value (arg, &name, &value) != 0) { XFREE (name); XFREE (value); lt_fatal ("bad argument for %s: '%s'", env_set_opt, arg); } lt_setenv (name, value); XFREE (name); XFREE (value); } void lt_opt_process_env_prepend (const char *arg) { char *name = NULL; char *value = NULL; char *new_value = NULL; if (lt_split_name_value (arg, &name, &value) != 0) { XFREE (name); XFREE (value); lt_fatal ("bad argument for %s: '%s'", env_prepend_opt, arg); } new_value = lt_extend_str (getenv (name), value, 0); lt_setenv (name, new_value); XFREE (new_value); XFREE (name); XFREE (value); } void lt_opt_process_env_append (const char *arg) { char *name = NULL; char *value = NULL; char *new_value = NULL; if (lt_split_name_value (arg, &name, &value) != 0) { XFREE (name); XFREE (value); lt_fatal ("bad argument for %s: '%s'", env_append_opt, arg); } new_value = lt_extend_str (getenv (name), value, 1); lt_setenv (name, new_value); XFREE (new_value); XFREE (name); XFREE (value); } void lt_update_exe_path (const char *name, const char *value) { LTWRAPPER_DEBUGPRINTF (("(lt_update_exe_path) modifying '%s' by prepending '%s'\n", (name ? name : ""), (value ? value : ""))); if (name && *name && value && *value) { char *new_value = lt_extend_str (getenv (name), value, 0); /* some systems can't cope with a ':'-terminated path #' */ int len = strlen (new_value); while (((len = strlen (new_value)) > 0) && IS_PATH_SEPARATOR (new_value[len-1])) { new_value[len-1] = '\0'; } lt_setenv (name, new_value); XFREE (new_value); } } void lt_update_lib_path (const char *name, const char *value) { LTWRAPPER_DEBUGPRINTF (("(lt_update_lib_path) modifying '%s' by prepending '%s'\n", (name ? name : ""), (value ? value : ""))); if (name && *name && value && *value) { char *new_value = lt_extend_str (getenv (name), value, 0); lt_setenv (name, new_value); XFREE (new_value); } } EOF } # end: func_emit_cwrapperexe_src # func_mode_link arg... func_mode_link () { $opt_debug case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) # It is impossible to link a dll without this setting, and # we shouldn't force the makefile maintainer to figure out # which system we are compiling for in order to pass an extra # flag for every libtool invocation. # allow_undefined=no # FIXME: Unfortunately, there are problems with the above when trying # to make a dll which has undefined symbols, in which case not # even a static library is built. For now, we need to specify # -no-undefined on the libtool link line when we can be certain # that all symbols are satisfied, otherwise we get a static library. allow_undefined=yes ;; *) allow_undefined=yes ;; esac libtool_args=$nonopt base_compile="$nonopt $@" compile_command=$nonopt finalize_command=$nonopt compile_rpath= finalize_rpath= compile_shlibpath= finalize_shlibpath= convenience= old_convenience= deplibs= old_deplibs= compiler_flags= linker_flags= dllsearchpath= lib_search_path=`pwd` inst_prefix_dir= new_inherited_linker_flags= avoid_version=no dlfiles= dlprefiles= dlself=no export_dynamic=no export_symbols= export_symbols_regex= generated= libobjs= ltlibs= module=no no_install=no objs= non_pic_objects= precious_files_regex= prefer_static_libs=no preload=no prev= prevarg= release= rpath= xrpath= perm_rpath= temp_rpath= thread_safe=no vinfo= vinfo_number=no weak_libs= single_module="${wl}-single_module" func_infer_tag $base_compile # We need to know -static, to get the right output filenames. for arg do case $arg in -shared) test "$build_libtool_libs" != yes && \ func_fatal_configuration "can not build a shared library" build_old_libs=no break ;; -all-static | -static | -static-libtool-libs) case $arg in -all-static) if test "$build_libtool_libs" = yes && test -z "$link_static_flag"; then func_warning "complete static linking is impossible in this configuration" fi if test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; -static) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=built ;; -static-libtool-libs) if test -z "$pic_flag" && test -n "$link_static_flag"; then dlopen_self=$dlopen_self_static fi prefer_static_libs=yes ;; esac build_libtool_libs=no build_old_libs=yes break ;; esac done # See if our shared archives depend on static archives. test -n "$old_archive_from_new_cmds" && build_old_libs=yes # Go through the arguments, transforming them on the way. while test "$#" -gt 0; do arg="$1" shift func_quote_for_eval "$arg" qarg=$func_quote_for_eval_unquoted_result func_append libtool_args " $func_quote_for_eval_result" # If the previous option needs an argument, assign it. if test -n "$prev"; then case $prev in output) func_append compile_command " @OUTPUT@" func_append finalize_command " @OUTPUT@" ;; esac case $prev in dlfiles|dlprefiles) if test "$preload" = no; then # Add the symbol object into the linking commands. func_append compile_command " @SYMFILE@" func_append finalize_command " @SYMFILE@" preload=yes fi case $arg in *.la | *.lo) ;; # We handle these cases below. force) if test "$dlself" = no; then dlself=needless export_dynamic=yes fi prev= continue ;; self) if test "$prev" = dlprefiles; then dlself=yes elif test "$prev" = dlfiles && test "$dlopen_self" != yes; then dlself=yes else dlself=needless export_dynamic=yes fi prev= continue ;; *) if test "$prev" = dlfiles; then dlfiles="$dlfiles $arg" else dlprefiles="$dlprefiles $arg" fi prev= continue ;; esac ;; expsyms) export_symbols="$arg" test -f "$arg" \ || func_fatal_error "symbol file \`$arg' does not exist" prev= continue ;; expsyms_regex) export_symbols_regex="$arg" prev= continue ;; framework) case $host in *-*-darwin*) case "$deplibs " in *" $qarg.ltframework "*) ;; *) deplibs="$deplibs $qarg.ltframework" # this is fixed later ;; esac ;; esac prev= continue ;; inst_prefix) inst_prefix_dir="$arg" prev= continue ;; objectlist) if test -f "$arg"; then save_arg=$arg moreargs= for fil in `cat "$save_arg"` do # moreargs="$moreargs $fil" arg=$fil # A libtool-controlled object. # Check to see that this really is a libtool object. if func_lalib_unsafe_p "$arg"; then pic_object= non_pic_object= # Read the .lo file func_source "$arg" if test -z "$pic_object" || test -z "$non_pic_object" || test "$pic_object" = none && test "$non_pic_object" = none; then func_fatal_error "cannot find name of object for \`$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir="$func_dirname_result" if test "$pic_object" != none; then # Prepend the subdirectory the object is found in. pic_object="$xdir$pic_object" if test "$prev" = dlfiles; then if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then dlfiles="$dlfiles $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test "$prev" = dlprefiles; then # Preload the old-style object. dlprefiles="$dlprefiles $pic_object" prev= fi # A PIC object. func_append libobjs " $pic_object" arg="$pic_object" fi # Non-PIC object. if test "$non_pic_object" != none; then # Prepend the subdirectory the object is found in. non_pic_object="$xdir$non_pic_object" # A standard non-PIC object func_append non_pic_objects " $non_pic_object" if test -z "$pic_object" || test "$pic_object" = none ; then arg="$non_pic_object" fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object="$pic_object" func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir="$func_dirname_result" func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result non_pic_object=$xdir$func_lo2o_result func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else func_fatal_error "\`$arg' is not a valid libtool object" fi fi done else func_fatal_error "link input file \`$arg' does not exist" fi arg=$save_arg prev= continue ;; precious_regex) precious_files_regex="$arg" prev= continue ;; release) release="-$arg" prev= continue ;; rpath | xrpath) # We need an absolute path. case $arg in [\\/]* | [A-Za-z]:[\\/]*) ;; *) func_fatal_error "only absolute run-paths are allowed" ;; esac if test "$prev" = rpath; then case "$rpath " in *" $arg "*) ;; *) rpath="$rpath $arg" ;; esac else case "$xrpath " in *" $arg "*) ;; *) xrpath="$xrpath $arg" ;; esac fi prev= continue ;; shrext) shrext_cmds="$arg" prev= continue ;; weak) weak_libs="$weak_libs $arg" prev= continue ;; xcclinker) linker_flags="$linker_flags $qarg" compiler_flags="$compiler_flags $qarg" prev= func_append compile_command " $qarg" func_append finalize_command " $qarg" continue ;; xcompiler) compiler_flags="$compiler_flags $qarg" prev= func_append compile_command " $qarg" func_append finalize_command " $qarg" continue ;; xlinker) linker_flags="$linker_flags $qarg" compiler_flags="$compiler_flags $wl$qarg" prev= func_append compile_command " $wl$qarg" func_append finalize_command " $wl$qarg" continue ;; *) eval "$prev=\"\$arg\"" prev= continue ;; esac fi # test -n "$prev" prevarg="$arg" case $arg in -all-static) if test -n "$link_static_flag"; then # See comment for -static flag below, for more details. func_append compile_command " $link_static_flag" func_append finalize_command " $link_static_flag" fi continue ;; -allow-undefined) # FIXME: remove this flag sometime in the future. func_fatal_error "\`-allow-undefined' must not be used because it is the default" ;; -avoid-version) avoid_version=yes continue ;; -dlopen) prev=dlfiles continue ;; -dlpreopen) prev=dlprefiles continue ;; -export-dynamic) export_dynamic=yes continue ;; -export-symbols | -export-symbols-regex) if test -n "$export_symbols" || test -n "$export_symbols_regex"; then func_fatal_error "more than one -exported-symbols argument is not allowed" fi if test "X$arg" = "X-export-symbols"; then prev=expsyms else prev=expsyms_regex fi continue ;; -framework) prev=framework continue ;; -inst-prefix-dir) prev=inst_prefix continue ;; # The native IRIX linker understands -LANG:*, -LIST:* and -LNO:* # so, if we see these flags be careful not to treat them like -L -L[A-Z][A-Z]*:*) case $with_gcc/$host in no/*-*-irix* | /*-*-irix*) func_append compile_command " $arg" func_append finalize_command " $arg" ;; esac continue ;; -L*) func_stripname '-L' '' "$arg" dir=$func_stripname_result if test -z "$dir"; then if test "$#" -gt 0; then func_fatal_error "require no space between \`-L' and \`$1'" else func_fatal_error "need path for \`-L' option" fi fi # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) absdir=`cd "$dir" && pwd` test -z "$absdir" && \ func_fatal_error "cannot determine absolute directory name of \`$dir'" dir="$absdir" ;; esac case "$deplibs " in *" -L$dir "*) ;; *) deplibs="$deplibs -L$dir" lib_search_path="$lib_search_path $dir" ;; esac case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) testbindir=`$ECHO "X$dir" | $Xsed -e 's*/lib$*/bin*'` case :$dllsearchpath: in *":$dir:"*) ;; ::) dllsearchpath=$dir;; *) dllsearchpath="$dllsearchpath:$dir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; ::) dllsearchpath=$testbindir;; *) dllsearchpath="$dllsearchpath:$testbindir";; esac ;; esac continue ;; -l*) if test "X$arg" = "X-lc" || test "X$arg" = "X-lm"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-beos* | *-cegcc*) # These systems don't actually have a C or math library (as such) continue ;; *-*-os2*) # These systems don't actually have a C library (as such) test "X$arg" = "X-lc" && continue ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc due to us having libc/libc_r. test "X$arg" = "X-lc" && continue ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C and math libraries are in the System framework deplibs="$deplibs System.ltframework" continue ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype test "X$arg" = "X-lc" && continue ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work test "X$arg" = "X-lc" && continue ;; esac elif test "X$arg" = "X-lc_r"; then case $host in *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc_r directly, use -pthread flag. continue ;; esac fi deplibs="$deplibs $arg" continue ;; -module) module=yes continue ;; # Tru64 UNIX uses -model [arg] to determine the layout of C++ # classes, name mangling, and exception handling. # Darwin uses the -arch flag to determine output architecture. -model|-arch|-isysroot) compiler_flags="$compiler_flags $arg" func_append compile_command " $arg" func_append finalize_command " $arg" prev=xcompiler continue ;; -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads) compiler_flags="$compiler_flags $arg" func_append compile_command " $arg" func_append finalize_command " $arg" case "$new_inherited_linker_flags " in *" $arg "*) ;; * ) new_inherited_linker_flags="$new_inherited_linker_flags $arg" ;; esac continue ;; -multi_module) single_module="${wl}-multi_module" continue ;; -no-fast-install) fast_install=no continue ;; -no-install) case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-darwin* | *-cegcc*) # The PATH hackery in wrapper scripts is required on Windows # and Darwin in order for the loader to find any dlls it needs. func_warning "\`-no-install' is ignored for $host" func_warning "assuming \`-no-fast-install' instead" fast_install=no ;; *) no_install=yes ;; esac continue ;; -no-undefined) allow_undefined=no continue ;; -objectlist) prev=objectlist continue ;; -o) prev=output ;; -precious-files-regex) prev=precious_regex continue ;; -release) prev=release continue ;; -rpath) prev=rpath continue ;; -R) prev=xrpath continue ;; -R*) func_stripname '-R' '' "$arg" dir=$func_stripname_result # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) ;; *) func_fatal_error "only absolute run-paths are allowed" ;; esac case "$xrpath " in *" $dir "*) ;; *) xrpath="$xrpath $dir" ;; esac continue ;; -shared) # The effects of -shared are defined in a previous loop. continue ;; -shrext) prev=shrext continue ;; -static | -static-libtool-libs) # The effects of -static are defined in a previous loop. # We used to do the same as -all-static on platforms that # didn't have a PIC flag, but the assumption that the effects # would be equivalent was wrong. It would break on at least # Digital Unix and AIX. continue ;; -thread-safe) thread_safe=yes continue ;; -version-info) prev=vinfo continue ;; -version-number) prev=vinfo vinfo_number=yes continue ;; -weak) prev=weak continue ;; -Wc,*) func_stripname '-Wc,' '' "$arg" args=$func_stripname_result arg= save_ifs="$IFS"; IFS=',' for flag in $args; do IFS="$save_ifs" func_quote_for_eval "$flag" arg="$arg $wl$func_quote_for_eval_result" compiler_flags="$compiler_flags $func_quote_for_eval_result" done IFS="$save_ifs" func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; -Wl,*) func_stripname '-Wl,' '' "$arg" args=$func_stripname_result arg= save_ifs="$IFS"; IFS=',' for flag in $args; do IFS="$save_ifs" func_quote_for_eval "$flag" arg="$arg $wl$func_quote_for_eval_result" compiler_flags="$compiler_flags $wl$func_quote_for_eval_result" linker_flags="$linker_flags $func_quote_for_eval_result" done IFS="$save_ifs" func_stripname ' ' '' "$arg" arg=$func_stripname_result ;; -Xcompiler) prev=xcompiler continue ;; -Xlinker) prev=xlinker continue ;; -XCClinker) prev=xcclinker continue ;; # -msg_* for osf cc -msg_*) func_quote_for_eval "$arg" arg="$func_quote_for_eval_result" ;; # -64, -mips[0-9] enable 64-bit mode on the SGI compiler # -r[0-9][0-9]* specifies the processor on the SGI compiler # -xarch=*, -xtarget=* enable 64-bit mode on the Sun compiler # +DA*, +DD* enable 64-bit mode on the HP compiler # -q* pass through compiler args for the IBM compiler # -m*, -t[45]*, -txscale* pass through architecture-specific # compiler args for GCC # -F/path gives path to uninstalled frameworks, gcc on darwin # -p, -pg, --coverage, -fprofile-* pass through profiling flag for GCC # @file GCC response files -64|-mips[0-9]|-r[0-9][0-9]*|-xarch=*|-xtarget=*|+DA*|+DD*|-q*|-m*| \ -t[45]*|-txscale*|-p|-pg|--coverage|-fprofile-*|-F*|@*) func_quote_for_eval "$arg" arg="$func_quote_for_eval_result" func_append compile_command " $arg" func_append finalize_command " $arg" compiler_flags="$compiler_flags $arg" continue ;; # Some other compiler flag. -* | +*) func_quote_for_eval "$arg" arg="$func_quote_for_eval_result" ;; *.$objext) # A standard object. objs="$objs $arg" ;; *.lo) # A libtool-controlled object. # Check to see that this really is a libtool object. if func_lalib_unsafe_p "$arg"; then pic_object= non_pic_object= # Read the .lo file func_source "$arg" if test -z "$pic_object" || test -z "$non_pic_object" || test "$pic_object" = none && test "$non_pic_object" = none; then func_fatal_error "cannot find name of object for \`$arg'" fi # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir="$func_dirname_result" if test "$pic_object" != none; then # Prepend the subdirectory the object is found in. pic_object="$xdir$pic_object" if test "$prev" = dlfiles; then if test "$build_libtool_libs" = yes && test "$dlopen_support" = yes; then dlfiles="$dlfiles $pic_object" prev= continue else # If libtool objects are unsupported, then we need to preload. prev=dlprefiles fi fi # CHECK ME: I think I busted this. -Ossama if test "$prev" = dlprefiles; then # Preload the old-style object. dlprefiles="$dlprefiles $pic_object" prev= fi # A PIC object. func_append libobjs " $pic_object" arg="$pic_object" fi # Non-PIC object. if test "$non_pic_object" != none; then # Prepend the subdirectory the object is found in. non_pic_object="$xdir$non_pic_object" # A standard non-PIC object func_append non_pic_objects " $non_pic_object" if test -z "$pic_object" || test "$pic_object" = none ; then arg="$non_pic_object" fi else # If the PIC object exists, use it instead. # $xdir was prepended to $pic_object above. non_pic_object="$pic_object" func_append non_pic_objects " $non_pic_object" fi else # Only an error if not doing a dry-run. if $opt_dry_run; then # Extract subdirectory from the argument. func_dirname "$arg" "/" "" xdir="$func_dirname_result" func_lo2o "$arg" pic_object=$xdir$objdir/$func_lo2o_result non_pic_object=$xdir$func_lo2o_result func_append libobjs " $pic_object" func_append non_pic_objects " $non_pic_object" else func_fatal_error "\`$arg' is not a valid libtool object" fi fi ;; *.$libext) # An archive. deplibs="$deplibs $arg" old_deplibs="$old_deplibs $arg" continue ;; *.la) # A libtool-controlled library. if test "$prev" = dlfiles; then # This library was specified with -dlopen. dlfiles="$dlfiles $arg" prev= elif test "$prev" = dlprefiles; then # The library was specified with -dlpreopen. dlprefiles="$dlprefiles $arg" prev= else deplibs="$deplibs $arg" fi continue ;; # Some other compiler argument. *) # Unknown arguments in both finalize_command and compile_command need # to be aesthetically quoted because they are evaled later. func_quote_for_eval "$arg" arg="$func_quote_for_eval_result" ;; esac # arg # Now actually substitute the argument into the commands. if test -n "$arg"; then func_append compile_command " $arg" func_append finalize_command " $arg" fi done # argument parsing loop test -n "$prev" && \ func_fatal_help "the \`$prevarg' option requires an argument" if test "$export_dynamic" = yes && test -n "$export_dynamic_flag_spec"; then eval arg=\"$export_dynamic_flag_spec\" func_append compile_command " $arg" func_append finalize_command " $arg" fi oldlibs= # calculate the name of the file, without its directory func_basename "$output" outputname="$func_basename_result" libobjs_save="$libobjs" if test -n "$shlibpath_var"; then # get the directories listed in $shlibpath_var eval shlib_search_path=\`\$ECHO \"X\${$shlibpath_var}\" \| \$Xsed -e \'s/:/ /g\'\` else shlib_search_path= fi eval sys_lib_search_path=\"$sys_lib_search_path_spec\" eval sys_lib_dlsearch_path=\"$sys_lib_dlsearch_path_spec\" func_dirname "$output" "/" "" output_objdir="$func_dirname_result$objdir" # Create the object directory. func_mkdir_p "$output_objdir" # Determine the type of output case $output in "") func_fatal_help "you must specify an output file" ;; *.$libext) linkmode=oldlib ;; *.lo | *.$objext) linkmode=obj ;; *.la) linkmode=lib ;; *) linkmode=prog ;; # Anything else should be a program. esac specialdeplibs= libs= # Find all interdependent deplibs by searching for libraries # that are linked more than once (e.g. -la -lb -la) for deplib in $deplibs; do if $opt_duplicate_deps ; then case "$libs " in *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; esac fi libs="$libs $deplib" done if test "$linkmode" = lib; then libs="$predeps $libs $compiler_lib_search_path $postdeps" # Compute libraries that are listed more than once in $predeps # $postdeps and mark them as special (i.e., whose duplicates are # not to be eliminated). pre_post_deps= if $opt_duplicate_compiler_generated_deps; then for pre_post_dep in $predeps $postdeps; do case "$pre_post_deps " in *" $pre_post_dep "*) specialdeplibs="$specialdeplibs $pre_post_deps" ;; esac pre_post_deps="$pre_post_deps $pre_post_dep" done fi pre_post_deps= fi deplibs= newdependency_libs= newlib_search_path= need_relink=no # whether we're linking any uninstalled libtool libraries notinst_deplibs= # not-installed libtool libraries notinst_path= # paths that contain not-installed libtool libraries case $linkmode in lib) passes="conv dlpreopen link" for file in $dlfiles $dlprefiles; do case $file in *.la) ;; *) func_fatal_help "libraries can \`-dlopen' only libtool libraries: $file" ;; esac done ;; prog) compile_deplibs= finalize_deplibs= alldeplibs=no newdlfiles= newdlprefiles= passes="conv scan dlopen dlpreopen link" ;; *) passes="conv" ;; esac for pass in $passes; do # The preopen pass in lib mode reverses $deplibs; put it back here # so that -L comes before libs that need it for instance... if test "$linkmode,$pass" = "lib,link"; then ## FIXME: Find the place where the list is rebuilt in the wrong ## order, and fix it there properly tmp_deplibs= for deplib in $deplibs; do tmp_deplibs="$deplib $tmp_deplibs" done deplibs="$tmp_deplibs" fi if test "$linkmode,$pass" = "lib,link" || test "$linkmode,$pass" = "prog,scan"; then libs="$deplibs" deplibs= fi if test "$linkmode" = prog; then case $pass in dlopen) libs="$dlfiles" ;; dlpreopen) libs="$dlprefiles" ;; link) libs="$deplibs %DEPLIBS%" test "X$link_all_deplibs" != Xno && libs="$libs $dependency_libs" ;; esac fi if test "$linkmode,$pass" = "lib,dlpreopen"; then # Collect and forward deplibs of preopened libtool libs for lib in $dlprefiles; do # Ignore non-libtool-libs dependency_libs= case $lib in *.la) func_source "$lib" ;; esac # Collect preopened libtool deplibs, except any this library # has declared as weak libs for deplib in $dependency_libs; do deplib_base=`$ECHO "X$deplib" | $Xsed -e "$basename"` case " $weak_libs " in *" $deplib_base "*) ;; *) deplibs="$deplibs $deplib" ;; esac done done libs="$dlprefiles" fi if test "$pass" = dlopen; then # Collect dlpreopened libraries save_deplibs="$deplibs" deplibs= fi for deplib in $libs; do lib= found=no case $deplib in -mt|-mthreads|-kthread|-Kthread|-pthread|-pthreads|--thread-safe|-threads) if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else compiler_flags="$compiler_flags $deplib" if test "$linkmode" = lib ; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) new_inherited_linker_flags="$new_inherited_linker_flags $deplib" ;; esac fi fi continue ;; -l*) if test "$linkmode" != lib && test "$linkmode" != prog; then func_warning "\`-l' is ignored for archives/objects" continue fi func_stripname '-l' '' "$deplib" name=$func_stripname_result if test "$linkmode" = lib; then searchdirs="$newlib_search_path $lib_search_path $compiler_lib_search_dirs $sys_lib_search_path $shlib_search_path" else searchdirs="$newlib_search_path $lib_search_path $sys_lib_search_path $shlib_search_path" fi for searchdir in $searchdirs; do for search_ext in .la $std_shrext .so .a; do # Search the libtool library lib="$searchdir/lib${name}${search_ext}" if test -f "$lib"; then if test "$search_ext" = ".la"; then found=yes else found=no fi break 2 fi done done if test "$found" != yes; then # deplib doesn't seem to be a libtool library if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" fi continue else # deplib is a libtool library # If $allow_libtool_libs_with_static_runtimes && $deplib is a stdlib, # We need to do some special things here, and not later. if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then case " $predeps $postdeps " in *" $deplib "*) if func_lalib_p "$lib"; then library_names= old_library= func_source "$lib" for l in $old_library $library_names; do ll="$l" done if test "X$ll" = "X$old_library" ; then # only static version available found=no func_dirname "$lib" "" "." ladir="$func_dirname_result" lib=$ladir/$old_library if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" test "$linkmode" = lib && newdependency_libs="$deplib $newdependency_libs" fi continue fi fi ;; *) ;; esac fi fi ;; # -l *.ltframework) if test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else deplibs="$deplib $deplibs" if test "$linkmode" = lib ; then case "$new_inherited_linker_flags " in *" $deplib "*) ;; * ) new_inherited_linker_flags="$new_inherited_linker_flags $deplib" ;; esac fi fi continue ;; -L*) case $linkmode in lib) deplibs="$deplib $deplibs" test "$pass" = conv && continue newdependency_libs="$deplib $newdependency_libs" func_stripname '-L' '' "$deplib" newlib_search_path="$newlib_search_path $func_stripname_result" ;; prog) if test "$pass" = conv; then deplibs="$deplib $deplibs" continue fi if test "$pass" = scan; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi func_stripname '-L' '' "$deplib" newlib_search_path="$newlib_search_path $func_stripname_result" ;; *) func_warning "\`-L' is ignored for archives/objects" ;; esac # linkmode continue ;; # -L -R*) if test "$pass" = link; then func_stripname '-R' '' "$deplib" dir=$func_stripname_result # Make sure the xrpath contains only unique directories. case "$xrpath " in *" $dir "*) ;; *) xrpath="$xrpath $dir" ;; esac fi deplibs="$deplib $deplibs" continue ;; *.la) lib="$deplib" ;; *.$libext) if test "$pass" = conv; then deplibs="$deplib $deplibs" continue fi case $linkmode in lib) # Linking convenience modules into shared libraries is allowed, # but linking other static libraries is non-portable. case " $dlpreconveniencelibs " in *" $deplib "*) ;; *) valid_a_lib=no case $deplibs_check_method in match_pattern*) set dummy $deplibs_check_method; shift match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` if eval "\$ECHO \"X$deplib\"" 2>/dev/null | $Xsed -e 10q \ | $EGREP "$match_pattern_regex" > /dev/null; then valid_a_lib=yes fi ;; pass_all) valid_a_lib=yes ;; esac if test "$valid_a_lib" != yes; then $ECHO $ECHO "*** Warning: Trying to link with static lib archive $deplib." $ECHO "*** I have the capability to make that library automatically link in when" $ECHO "*** you link to this library. But I can only do this if you have a" $ECHO "*** shared version of the library, which you do not appear to have" $ECHO "*** because the file extensions .$libext of this argument makes me believe" $ECHO "*** that it is just a static archive that I should not use here." else $ECHO $ECHO "*** Warning: Linking the shared library $output against the" $ECHO "*** static library $deplib is not portable!" deplibs="$deplib $deplibs" fi ;; esac continue ;; prog) if test "$pass" != link; then deplibs="$deplib $deplibs" else compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" fi continue ;; esac # linkmode ;; # *.$libext *.lo | *.$objext) if test "$pass" = conv; then deplibs="$deplib $deplibs" elif test "$linkmode" = prog; then if test "$pass" = dlpreopen || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then # If there is no dlopen support or we're linking statically, # we need to preload. newdlprefiles="$newdlprefiles $deplib" compile_deplibs="$deplib $compile_deplibs" finalize_deplibs="$deplib $finalize_deplibs" else newdlfiles="$newdlfiles $deplib" fi fi continue ;; %DEPLIBS%) alldeplibs=yes continue ;; esac # case $deplib if test "$found" = yes || test -f "$lib"; then : else func_fatal_error "cannot find the library \`$lib' or unhandled argument \`$deplib'" fi # Check to see that this really is a libtool archive. func_lalib_unsafe_p "$lib" \ || func_fatal_error "\`$lib' is not a valid libtool archive" func_dirname "$lib" "" "." ladir="$func_dirname_result" dlname= dlopen= dlpreopen= libdir= library_names= old_library= inherited_linker_flags= # If the library was installed with an old release of libtool, # it will not redefine variables installed, or shouldnotlink installed=yes shouldnotlink=no avoidtemprpath= # Read the .la file func_source "$lib" # Convert "-framework foo" to "foo.ltframework" if test -n "$inherited_linker_flags"; then tmp_inherited_linker_flags=`$ECHO "X$inherited_linker_flags" | $Xsed -e 's/-framework \([^ $]*\)/\1.ltframework/g'` for tmp_inherited_linker_flag in $tmp_inherited_linker_flags; do case " $new_inherited_linker_flags " in *" $tmp_inherited_linker_flag "*) ;; *) new_inherited_linker_flags="$new_inherited_linker_flags $tmp_inherited_linker_flag";; esac done fi dependency_libs=`$ECHO "X $dependency_libs" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'` if test "$linkmode,$pass" = "lib,link" || test "$linkmode,$pass" = "prog,scan" || { test "$linkmode" != prog && test "$linkmode" != lib; }; then test -n "$dlopen" && dlfiles="$dlfiles $dlopen" test -n "$dlpreopen" && dlprefiles="$dlprefiles $dlpreopen" fi if test "$pass" = conv; then # Only check for convenience libraries deplibs="$lib $deplibs" if test -z "$libdir"; then if test -z "$old_library"; then func_fatal_error "cannot find name of link library for \`$lib'" fi # It is a libtool convenience library, so add in its objects. convenience="$convenience $ladir/$objdir/$old_library" old_convenience="$old_convenience $ladir/$objdir/$old_library" tmp_libs= for deplib in $dependency_libs; do deplibs="$deplib $deplibs" if $opt_duplicate_deps ; then case "$tmp_libs " in *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; esac fi tmp_libs="$tmp_libs $deplib" done elif test "$linkmode" != prog && test "$linkmode" != lib; then func_fatal_error "\`$lib' is not a convenience library" fi continue fi # $pass = conv # Get the name of the library we link against. linklib= for l in $old_library $library_names; do linklib="$l" done if test -z "$linklib"; then func_fatal_error "cannot find name of link library for \`$lib'" fi # This library was specified with -dlopen. if test "$pass" = dlopen; then if test -z "$libdir"; then func_fatal_error "cannot -dlopen a convenience library: \`$lib'" fi if test -z "$dlname" || test "$dlopen_support" != yes || test "$build_libtool_libs" = no; then # If there is no dlname, no dlopen support or we're linking # statically, we need to preload. We also need to preload any # dependent libraries so libltdl's deplib preloader doesn't # bomb out in the load deplibs phase. dlprefiles="$dlprefiles $lib $dependency_libs" else newdlfiles="$newdlfiles $lib" fi continue fi # $pass = dlopen # We need an absolute path. case $ladir in [\\/]* | [A-Za-z]:[\\/]*) abs_ladir="$ladir" ;; *) abs_ladir=`cd "$ladir" && pwd` if test -z "$abs_ladir"; then func_warning "cannot determine absolute directory name of \`$ladir'" func_warning "passing it literally to the linker, although it might fail" abs_ladir="$ladir" fi ;; esac func_basename "$lib" laname="$func_basename_result" # Find the relevant object directory and library name. if test "X$installed" = Xyes; then if test ! -f "$libdir/$linklib" && test -f "$abs_ladir/$linklib"; then func_warning "library \`$lib' was moved." dir="$ladir" absdir="$abs_ladir" libdir="$abs_ladir" else dir="$libdir" absdir="$libdir" fi test "X$hardcode_automatic" = Xyes && avoidtemprpath=yes else if test ! -f "$ladir/$objdir/$linklib" && test -f "$abs_ladir/$linklib"; then dir="$ladir" absdir="$abs_ladir" # Remove this search path later notinst_path="$notinst_path $abs_ladir" else dir="$ladir/$objdir" absdir="$abs_ladir/$objdir" # Remove this search path later notinst_path="$notinst_path $abs_ladir" fi fi # $installed = yes func_stripname 'lib' '.la' "$laname" name=$func_stripname_result # This library was specified with -dlpreopen. if test "$pass" = dlpreopen; then if test -z "$libdir" && test "$linkmode" = prog; then func_fatal_error "only libraries may -dlpreopen a convenience library: \`$lib'" fi # Prefer using a static library (so that no silly _DYNAMIC symbols # are required to link). if test -n "$old_library"; then newdlprefiles="$newdlprefiles $dir/$old_library" # Keep a list of preopened convenience libraries to check # that they are being used correctly in the link pass. test -z "$libdir" && \ dlpreconveniencelibs="$dlpreconveniencelibs $dir/$old_library" # Otherwise, use the dlname, so that lt_dlopen finds it. elif test -n "$dlname"; then newdlprefiles="$newdlprefiles $dir/$dlname" else newdlprefiles="$newdlprefiles $dir/$linklib" fi fi # $pass = dlpreopen if test -z "$libdir"; then # Link the convenience library if test "$linkmode" = lib; then deplibs="$dir/$old_library $deplibs" elif test "$linkmode,$pass" = "prog,link"; then compile_deplibs="$dir/$old_library $compile_deplibs" finalize_deplibs="$dir/$old_library $finalize_deplibs" else deplibs="$lib $deplibs" # used for prog,scan pass fi continue fi if test "$linkmode" = prog && test "$pass" != link; then newlib_search_path="$newlib_search_path $ladir" deplibs="$lib $deplibs" linkalldeplibs=no if test "$link_all_deplibs" != no || test -z "$library_names" || test "$build_libtool_libs" = no; then linkalldeplibs=yes fi tmp_libs= for deplib in $dependency_libs; do case $deplib in -L*) func_stripname '-L' '' "$deplib" newlib_search_path="$newlib_search_path $func_stripname_result" ;; esac # Need to link against all dependency_libs? if test "$linkalldeplibs" = yes; then deplibs="$deplib $deplibs" else # Need to hardcode shared library paths # or/and link against static libraries newdependency_libs="$deplib $newdependency_libs" fi if $opt_duplicate_deps ; then case "$tmp_libs " in *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; esac fi tmp_libs="$tmp_libs $deplib" done # for deplib continue fi # $linkmode = prog... if test "$linkmode,$pass" = "prog,link"; then if test -n "$library_names" && { { test "$prefer_static_libs" = no || test "$prefer_static_libs,$installed" = "built,yes"; } || test -z "$old_library"; }; then # We need to hardcode the library path if test -n "$shlibpath_var" && test -z "$avoidtemprpath" ; then # Make sure the rpath contains only unique directories. case "$temp_rpath:" in *"$absdir:"*) ;; *) temp_rpath="$temp_rpath$absdir:" ;; esac fi # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) compile_rpath="$compile_rpath $absdir" esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) finalize_rpath="$finalize_rpath $libdir" esac ;; esac fi # $linkmode,$pass = prog,link... if test "$alldeplibs" = yes && { test "$deplibs_check_method" = pass_all || { test "$build_libtool_libs" = yes && test -n "$library_names"; }; }; then # We only need to search for static libraries continue fi fi link_static=no # Whether the deplib will be linked statically use_static_libs=$prefer_static_libs if test "$use_static_libs" = built && test "$installed" = yes; then use_static_libs=no fi if test -n "$library_names" && { test "$use_static_libs" = no || test -z "$old_library"; }; then case $host in *cygwin* | *mingw* | *cegcc*) # No point in relinking DLLs because paths are not encoded notinst_deplibs="$notinst_deplibs $lib" need_relink=no ;; *) if test "$installed" = no; then notinst_deplibs="$notinst_deplibs $lib" need_relink=yes fi ;; esac # This is a shared library # Warn about portability, can't link against -module's on some # systems (darwin). Don't bleat about dlopened modules though! dlopenmodule="" for dlpremoduletest in $dlprefiles; do if test "X$dlpremoduletest" = "X$lib"; then dlopenmodule="$dlpremoduletest" break fi done if test -z "$dlopenmodule" && test "$shouldnotlink" = yes && test "$pass" = link; then $ECHO if test "$linkmode" = prog; then $ECHO "*** Warning: Linking the executable $output against the loadable module" else $ECHO "*** Warning: Linking the shared library $output against the loadable module" fi $ECHO "*** $linklib is not portable!" fi if test "$linkmode" = lib && test "$hardcode_into_libs" = yes; then # Hardcode the library path. # Skip directories that are in the system default run-time # search path. case " $sys_lib_dlsearch_path " in *" $absdir "*) ;; *) case "$compile_rpath " in *" $absdir "*) ;; *) compile_rpath="$compile_rpath $absdir" esac ;; esac case " $sys_lib_dlsearch_path " in *" $libdir "*) ;; *) case "$finalize_rpath " in *" $libdir "*) ;; *) finalize_rpath="$finalize_rpath $libdir" esac ;; esac fi if test -n "$old_archive_from_expsyms_cmds"; then # figure out the soname set dummy $library_names shift realname="$1" shift libname=`eval "\\$ECHO \"$libname_spec\""` # use dlname if we got it. it's perfectly good, no? if test -n "$dlname"; then soname="$dlname" elif test -n "$soname_spec"; then # bleh windows case $host in *cygwin* | mingw* | *cegcc*) func_arith $current - $age major=$func_arith_result versuffix="-$major" ;; esac eval soname=\"$soname_spec\" else soname="$realname" fi # Make a new name for the extract_expsyms_cmds to use soroot="$soname" func_basename "$soroot" soname="$func_basename_result" func_stripname 'lib' '.dll' "$soname" newlib=libimp-$func_stripname_result.a # If the library has no export list, then create one now if test -f "$output_objdir/$soname-def"; then : else func_verbose "extracting exported symbol list from \`$soname'" func_execute_cmds "$extract_expsyms_cmds" 'exit $?' fi # Create $newlib if test -f "$output_objdir/$newlib"; then :; else func_verbose "generating import library for \`$soname'" func_execute_cmds "$old_archive_from_expsyms_cmds" 'exit $?' fi # make sure the library variables are pointing to the new library dir=$output_objdir linklib=$newlib fi # test -n "$old_archive_from_expsyms_cmds" if test "$linkmode" = prog || test "$mode" != relink; then add_shlibpath= add_dir= add= lib_linked=yes case $hardcode_action in immediate | unsupported) if test "$hardcode_direct" = no; then add="$dir/$linklib" case $host in *-*-sco3.2v5.0.[024]*) add_dir="-L$dir" ;; *-*-sysv4*uw2*) add_dir="-L$dir" ;; *-*-sysv5OpenUNIX* | *-*-sysv5UnixWare7.[01].[10]* | \ *-*-unixware7*) add_dir="-L$dir" ;; *-*-darwin* ) # if the lib is a (non-dlopened) module then we can not # link against it, someone is ignoring the earlier warnings if /usr/bin/file -L $add 2> /dev/null | $GREP ": [^:]* bundle" >/dev/null ; then if test "X$dlopenmodule" != "X$lib"; then $ECHO "*** Warning: lib $linklib is a module, not a shared library" if test -z "$old_library" ; then $ECHO $ECHO "*** And there doesn't seem to be a static archive available" $ECHO "*** The link will probably fail, sorry" else add="$dir/$old_library" fi elif test -n "$old_library"; then add="$dir/$old_library" fi fi esac elif test "$hardcode_minus_L" = no; then case $host in *-*-sunos*) add_shlibpath="$dir" ;; esac add_dir="-L$dir" add="-l$name" elif test "$hardcode_shlibpath_var" = no; then add_shlibpath="$dir" add="-l$name" else lib_linked=no fi ;; relink) if test "$hardcode_direct" = yes && test "$hardcode_direct_absolute" = no; then add="$dir/$linklib" elif test "$hardcode_minus_L" = yes; then add_dir="-L$dir" # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) add_dir="$add_dir -L$inst_prefix_dir$libdir" ;; esac fi add="-l$name" elif test "$hardcode_shlibpath_var" = yes; then add_shlibpath="$dir" add="-l$name" else lib_linked=no fi ;; *) lib_linked=no ;; esac if test "$lib_linked" != yes; then func_fatal_configuration "unsupported hardcode properties" fi if test -n "$add_shlibpath"; then case :$compile_shlibpath: in *":$add_shlibpath:"*) ;; *) compile_shlibpath="$compile_shlibpath$add_shlibpath:" ;; esac fi if test "$linkmode" = prog; then test -n "$add_dir" && compile_deplibs="$add_dir $compile_deplibs" test -n "$add" && compile_deplibs="$add $compile_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" if test "$hardcode_direct" != yes && test "$hardcode_minus_L" != yes && test "$hardcode_shlibpath_var" = yes; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;; esac fi fi fi if test "$linkmode" = prog || test "$mode" = relink; then add_shlibpath= add_dir= add= # Finalize command for both is simple: just hardcode it. if test "$hardcode_direct" = yes && test "$hardcode_direct_absolute" = no; then add="$libdir/$linklib" elif test "$hardcode_minus_L" = yes; then add_dir="-L$libdir" add="-l$name" elif test "$hardcode_shlibpath_var" = yes; then case :$finalize_shlibpath: in *":$libdir:"*) ;; *) finalize_shlibpath="$finalize_shlibpath$libdir:" ;; esac add="-l$name" elif test "$hardcode_automatic" = yes; then if test -n "$inst_prefix_dir" && test -f "$inst_prefix_dir$libdir/$linklib" ; then add="$inst_prefix_dir$libdir/$linklib" else add="$libdir/$linklib" fi else # We cannot seem to hardcode it, guess we'll fake it. add_dir="-L$libdir" # Try looking first in the location we're being installed to. if test -n "$inst_prefix_dir"; then case $libdir in [\\/]*) add_dir="$add_dir -L$inst_prefix_dir$libdir" ;; esac fi add="-l$name" fi if test "$linkmode" = prog; then test -n "$add_dir" && finalize_deplibs="$add_dir $finalize_deplibs" test -n "$add" && finalize_deplibs="$add $finalize_deplibs" else test -n "$add_dir" && deplibs="$add_dir $deplibs" test -n "$add" && deplibs="$add $deplibs" fi fi elif test "$linkmode" = prog; then # Here we assume that one of hardcode_direct or hardcode_minus_L # is not unsupported. This is valid on all known static and # shared platforms. if test "$hardcode_direct" != unsupported; then test -n "$old_library" && linklib="$old_library" compile_deplibs="$dir/$linklib $compile_deplibs" finalize_deplibs="$dir/$linklib $finalize_deplibs" else compile_deplibs="-l$name -L$dir $compile_deplibs" finalize_deplibs="-l$name -L$dir $finalize_deplibs" fi elif test "$build_libtool_libs" = yes; then # Not a shared library if test "$deplibs_check_method" != pass_all; then # We're trying link a shared library against a static one # but the system doesn't support it. # Just print a warning and add the library to dependency_libs so # that the program can be linked against the static library. $ECHO $ECHO "*** Warning: This system can not link to static lib archive $lib." $ECHO "*** I have the capability to make that library automatically link in when" $ECHO "*** you link to this library. But I can only do this if you have a" $ECHO "*** shared version of the library, which you do not appear to have." if test "$module" = yes; then $ECHO "*** But as you try to build a module library, libtool will still create " $ECHO "*** a static module, that should work as long as the dlopening application" $ECHO "*** is linked with the -dlopen flag to resolve symbols at runtime." if test -z "$global_symbol_pipe"; then $ECHO $ECHO "*** However, this would only work if libtool was able to extract symbol" $ECHO "*** lists from a program, using \`nm' or equivalent, but libtool could" $ECHO "*** not find such a program. So, this module is probably useless." $ECHO "*** \`nm' from GNU binutils and a full rebuild may help." fi if test "$build_old_libs" = no; then build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi else deplibs="$dir/$old_library $deplibs" link_static=yes fi fi # link shared/static library? if test "$linkmode" = lib; then if test -n "$dependency_libs" && { test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes || test "$link_static" = yes; }; then # Extract -R from dependency_libs temp_deplibs= for libdir in $dependency_libs; do case $libdir in -R*) func_stripname '-R' '' "$libdir" temp_xrpath=$func_stripname_result case " $xrpath " in *" $temp_xrpath "*) ;; *) xrpath="$xrpath $temp_xrpath";; esac;; *) temp_deplibs="$temp_deplibs $libdir";; esac done dependency_libs="$temp_deplibs" fi newlib_search_path="$newlib_search_path $absdir" # Link against this library test "$link_static" = no && newdependency_libs="$abs_ladir/$laname $newdependency_libs" # ... and its dependency_libs tmp_libs= for deplib in $dependency_libs; do newdependency_libs="$deplib $newdependency_libs" if $opt_duplicate_deps ; then case "$tmp_libs " in *" $deplib "*) specialdeplibs="$specialdeplibs $deplib" ;; esac fi tmp_libs="$tmp_libs $deplib" done if test "$link_all_deplibs" != no; then # Add the search paths of all dependency libraries for deplib in $dependency_libs; do path= case $deplib in -L*) path="$deplib" ;; *.la) func_dirname "$deplib" "" "." dir="$func_dirname_result" # We need an absolute path. case $dir in [\\/]* | [A-Za-z]:[\\/]*) absdir="$dir" ;; *) absdir=`cd "$dir" && pwd` if test -z "$absdir"; then func_warning "cannot determine absolute directory name of \`$dir'" absdir="$dir" fi ;; esac if $GREP "^installed=no" $deplib > /dev/null; then case $host in *-*-darwin*) depdepl= eval deplibrary_names=`${SED} -n -e 's/^library_names=\(.*\)$/\1/p' $deplib` if test -n "$deplibrary_names" ; then for tmp in $deplibrary_names ; do depdepl=$tmp done if test -f "$absdir/$objdir/$depdepl" ; then depdepl="$absdir/$objdir/$depdepl" darwin_install_name=`${OTOOL} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` if test -z "$darwin_install_name"; then darwin_install_name=`${OTOOL64} -L $depdepl | awk '{if (NR == 2) {print $1;exit}}'` fi compiler_flags="$compiler_flags ${wl}-dylib_file ${wl}${darwin_install_name}:${depdepl}" linker_flags="$linker_flags -dylib_file ${darwin_install_name}:${depdepl}" path= fi fi ;; *) path="-L$absdir/$objdir" ;; esac else eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` test -z "$libdir" && \ func_fatal_error "\`$deplib' is not a valid libtool archive" test "$absdir" != "$libdir" && \ func_warning "\`$deplib' seems to be moved" path="-L$absdir" fi ;; esac case " $deplibs " in *" $path "*) ;; *) deplibs="$path $deplibs" ;; esac done fi # link_all_deplibs != no fi # linkmode = lib done # for deplib in $libs if test "$pass" = link; then if test "$linkmode" = "prog"; then compile_deplibs="$new_inherited_linker_flags $compile_deplibs" finalize_deplibs="$new_inherited_linker_flags $finalize_deplibs" else compiler_flags="$compiler_flags "`$ECHO "X $new_inherited_linker_flags" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'` fi fi dependency_libs="$newdependency_libs" if test "$pass" = dlpreopen; then # Link the dlpreopened libraries before other libraries for deplib in $save_deplibs; do deplibs="$deplib $deplibs" done fi if test "$pass" != dlopen; then if test "$pass" != conv; then # Make sure lib_search_path contains only unique directories. lib_search_path= for dir in $newlib_search_path; do case "$lib_search_path " in *" $dir "*) ;; *) lib_search_path="$lib_search_path $dir" ;; esac done newlib_search_path= fi if test "$linkmode,$pass" != "prog,link"; then vars="deplibs" else vars="compile_deplibs finalize_deplibs" fi for var in $vars dependency_libs; do # Add libraries to $var in reverse order eval tmp_libs=\"\$$var\" new_libs= for deplib in $tmp_libs; do # FIXME: Pedantically, this is the right thing to do, so # that some nasty dependency loop isn't accidentally # broken: #new_libs="$deplib $new_libs" # Pragmatically, this seems to cause very few problems in # practice: case $deplib in -L*) new_libs="$deplib $new_libs" ;; -R*) ;; *) # And here is the reason: when a library appears more # than once as an explicit dependence of a library, or # is implicitly linked in more than once by the # compiler, it is considered special, and multiple # occurrences thereof are not removed. Compare this # with having the same library being listed as a # dependency of multiple other libraries: in this case, # we know (pedantically, we assume) the library does not # need to be listed more than once, so we keep only the # last copy. This is not always right, but it is rare # enough that we require users that really mean to play # such unportable linking tricks to link the library # using -Wl,-lname, so that libtool does not consider it # for duplicate removal. case " $specialdeplibs " in *" $deplib "*) new_libs="$deplib $new_libs" ;; *) case " $new_libs " in *" $deplib "*) ;; *) new_libs="$deplib $new_libs" ;; esac ;; esac ;; esac done tmp_libs= for deplib in $new_libs; do case $deplib in -L*) case " $tmp_libs " in *" $deplib "*) ;; *) tmp_libs="$tmp_libs $deplib" ;; esac ;; *) tmp_libs="$tmp_libs $deplib" ;; esac done eval $var=\"$tmp_libs\" done # for var fi # Last step: remove runtime libs from dependency_libs # (they stay in deplibs) tmp_libs= for i in $dependency_libs ; do case " $predeps $postdeps $compiler_lib_search_path " in *" $i "*) i="" ;; esac if test -n "$i" ; then tmp_libs="$tmp_libs $i" fi done dependency_libs=$tmp_libs done # for pass if test "$linkmode" = prog; then dlfiles="$newdlfiles" fi if test "$linkmode" = prog || test "$linkmode" = lib; then dlprefiles="$newdlprefiles" fi case $linkmode in oldlib) if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then func_warning "\`-dlopen' is ignored for archives" fi case " $deplibs" in *\ -l* | *\ -L*) func_warning "\`-l' and \`-L' are ignored for archives" ;; esac test -n "$rpath" && \ func_warning "\`-rpath' is ignored for archives" test -n "$xrpath" && \ func_warning "\`-R' is ignored for archives" test -n "$vinfo" && \ func_warning "\`-version-info/-version-number' is ignored for archives" test -n "$release" && \ func_warning "\`-release' is ignored for archives" test -n "$export_symbols$export_symbols_regex" && \ func_warning "\`-export-symbols' is ignored for archives" # Now set the variables for building old libraries. build_libtool_libs=no oldlibs="$output" objs="$objs$old_deplibs" ;; lib) # Make sure we only generate libraries of the form `libNAME.la'. case $outputname in lib*) func_stripname 'lib' '.la' "$outputname" name=$func_stripname_result eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" ;; *) test "$module" = no && \ func_fatal_help "libtool library \`$output' must begin with \`lib'" if test "$need_lib_prefix" != no; then # Add the "lib" prefix for modules if required func_stripname '' '.la' "$outputname" name=$func_stripname_result eval shared_ext=\"$shrext_cmds\" eval libname=\"$libname_spec\" else func_stripname '' '.la' "$outputname" libname=$func_stripname_result fi ;; esac if test -n "$objs"; then if test "$deplibs_check_method" != pass_all; then func_fatal_error "cannot build libtool library \`$output' from non-libtool objects on this host:$objs" else $ECHO $ECHO "*** Warning: Linking the shared library $output against the non-libtool" $ECHO "*** objects $objs is not portable!" libobjs="$libobjs $objs" fi fi test "$dlself" != no && \ func_warning "\`-dlopen self' is ignored for libtool libraries" set dummy $rpath shift test "$#" -gt 1 && \ func_warning "ignoring multiple \`-rpath's for a libtool library" install_libdir="$1" oldlibs= if test -z "$rpath"; then if test "$build_libtool_libs" = yes; then # Building a libtool convenience library. # Some compilers have problems with a `.al' extension so # convenience libraries should have the same extension an # archive normally would. oldlibs="$output_objdir/$libname.$libext $oldlibs" build_libtool_libs=convenience build_old_libs=yes fi test -n "$vinfo" && \ func_warning "\`-version-info/-version-number' is ignored for convenience libraries" test -n "$release" && \ func_warning "\`-release' is ignored for convenience libraries" else # Parse the version information argument. save_ifs="$IFS"; IFS=':' set dummy $vinfo 0 0 0 shift IFS="$save_ifs" test -n "$7" && \ func_fatal_help "too many parameters to \`-version-info'" # convert absolute version numbers to libtool ages # this retains compatibility with .la files and attempts # to make the code below a bit more comprehensible case $vinfo_number in yes) number_major="$1" number_minor="$2" number_revision="$3" # # There are really only two kinds -- those that # use the current revision as the major version # and those that subtract age and use age as # a minor version. But, then there is irix # which has an extra 1 added just for fun # case $version_type in darwin|linux|osf|windows|none) func_arith $number_major + $number_minor current=$func_arith_result age="$number_minor" revision="$number_revision" ;; freebsd-aout|freebsd-elf|sunos) current="$number_major" revision="$number_minor" age="0" ;; irix|nonstopux) func_arith $number_major + $number_minor current=$func_arith_result age="$number_minor" revision="$number_minor" lt_irix_increment=no ;; *) func_fatal_configuration "$modename: unknown library version type \`$version_type'" ;; esac ;; no) current="$1" revision="$2" age="$3" ;; esac # Check that each of the things are valid numbers. case $current in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "CURRENT \`$current' must be a nonnegative integer" func_fatal_error "\`$vinfo' is not valid version information" ;; esac case $revision in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "REVISION \`$revision' must be a nonnegative integer" func_fatal_error "\`$vinfo' is not valid version information" ;; esac case $age in 0|[1-9]|[1-9][0-9]|[1-9][0-9][0-9]|[1-9][0-9][0-9][0-9]|[1-9][0-9][0-9][0-9][0-9]) ;; *) func_error "AGE \`$age' must be a nonnegative integer" func_fatal_error "\`$vinfo' is not valid version information" ;; esac if test "$age" -gt "$current"; then func_error "AGE \`$age' is greater than the current interface number \`$current'" func_fatal_error "\`$vinfo' is not valid version information" fi # Calculate the version variables. major= versuffix= verstring= case $version_type in none) ;; darwin) # Like Linux, but with the current version available in # verstring for coding it into the library header func_arith $current - $age major=.$func_arith_result versuffix="$major.$age.$revision" # Darwin ld doesn't like 0 for these options... func_arith $current + 1 minor_current=$func_arith_result xlcverstring="${wl}-compatibility_version ${wl}$minor_current ${wl}-current_version ${wl}$minor_current.$revision" verstring="-compatibility_version $minor_current -current_version $minor_current.$revision" ;; freebsd-aout) major=".$current" versuffix=".$current.$revision"; ;; freebsd-elf) major=".$current" versuffix=".$current" ;; irix | nonstopux) if test "X$lt_irix_increment" = "Xno"; then func_arith $current - $age else func_arith $current - $age + 1 fi major=$func_arith_result case $version_type in nonstopux) verstring_prefix=nonstopux ;; *) verstring_prefix=sgi ;; esac verstring="$verstring_prefix$major.$revision" # Add in all the interfaces that we are compatible with. loop=$revision while test "$loop" -ne 0; do func_arith $revision - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result verstring="$verstring_prefix$major.$iface:$verstring" done # Before this point, $major must not contain `.'. major=.$major versuffix="$major.$revision" ;; linux) func_arith $current - $age major=.$func_arith_result versuffix="$major.$age.$revision" ;; osf) func_arith $current - $age major=.$func_arith_result versuffix=".$current.$age.$revision" verstring="$current.$age.$revision" # Add in all the interfaces that we are compatible with. loop=$age while test "$loop" -ne 0; do func_arith $current - $loop iface=$func_arith_result func_arith $loop - 1 loop=$func_arith_result verstring="$verstring:${iface}.0" done # Make executables depend on our current version. verstring="$verstring:${current}.0" ;; qnx) major=".$current" versuffix=".$current" ;; sunos) major=".$current" versuffix=".$current.$revision" ;; windows) # Use '-' rather than '.', since we only want one # extension on DOS 8.3 filesystems. func_arith $current - $age major=$func_arith_result versuffix="-$major" ;; *) func_fatal_configuration "unknown library version type \`$version_type'" ;; esac # Clear the version info if we defaulted, and they specified a release. if test -z "$vinfo" && test -n "$release"; then major= case $version_type in darwin) # we can't check for "0.0" in archive_cmds due to quoting # problems, so we reset it completely verstring= ;; *) verstring="0.0" ;; esac if test "$need_version" = no; then versuffix= else versuffix=".0.0" fi fi # Remove version info from name if versioning should be avoided if test "$avoid_version" = yes && test "$need_version" = no; then major= versuffix= verstring="" fi # Check to see if the archive will have undefined symbols. if test "$allow_undefined" = yes; then if test "$allow_undefined_flag" = unsupported; then func_warning "undefined symbols not allowed in $host shared libraries" build_libtool_libs=no build_old_libs=yes fi else # Don't allow undefined symbols. allow_undefined_flag="$no_undefined_flag" fi fi func_generate_dlsyms "$libname" "$libname" "yes" libobjs="$libobjs $symfileobj" test "X$libobjs" = "X " && libobjs= if test "$mode" != relink; then # Remove our outputs, but don't remove object files since they # may have been created when compiling PIC objects. removelist= tempremovelist=`$ECHO "$output_objdir/*"` for p in $tempremovelist; do case $p in *.$objext | *.gcno) ;; $output_objdir/$outputname | $output_objdir/$libname.* | $output_objdir/${libname}${release}.*) if test "X$precious_files_regex" != "X"; then if $ECHO "$p" | $EGREP -e "$precious_files_regex" >/dev/null 2>&1 then continue fi fi removelist="$removelist $p" ;; *) ;; esac done test -n "$removelist" && \ func_show_eval "${RM}r \$removelist" fi # Now set the variables for building old libraries. if test "$build_old_libs" = yes && test "$build_libtool_libs" != convenience ; then oldlibs="$oldlibs $output_objdir/$libname.$libext" # Transform .lo files to .o files. oldobjs="$objs "`$ECHO "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}'$/d' -e "$lo2o" | $NL2SP` fi # Eliminate all temporary directories. #for path in $notinst_path; do # lib_search_path=`$ECHO "X$lib_search_path " | $Xsed -e "s% $path % %g"` # deplibs=`$ECHO "X$deplibs " | $Xsed -e "s% -L$path % %g"` # dependency_libs=`$ECHO "X$dependency_libs " | $Xsed -e "s% -L$path % %g"` #done if test -n "$xrpath"; then # If the user specified any rpath flags, then add them. temp_xrpath= for libdir in $xrpath; do temp_xrpath="$temp_xrpath -R$libdir" case "$finalize_rpath " in *" $libdir "*) ;; *) finalize_rpath="$finalize_rpath $libdir" ;; esac done if test "$hardcode_into_libs" != yes || test "$build_old_libs" = yes; then dependency_libs="$temp_xrpath $dependency_libs" fi fi # Make sure dlfiles contains only unique files that won't be dlpreopened old_dlfiles="$dlfiles" dlfiles= for lib in $old_dlfiles; do case " $dlprefiles $dlfiles " in *" $lib "*) ;; *) dlfiles="$dlfiles $lib" ;; esac done # Make sure dlprefiles contains only unique files old_dlprefiles="$dlprefiles" dlprefiles= for lib in $old_dlprefiles; do case "$dlprefiles " in *" $lib "*) ;; *) dlprefiles="$dlprefiles $lib" ;; esac done if test "$build_libtool_libs" = yes; then if test -n "$rpath"; then case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-*-beos* | *-cegcc*) # these systems don't actually have a c library (as such)! ;; *-*-rhapsody* | *-*-darwin1.[012]) # Rhapsody C library is in the System framework deplibs="$deplibs System.ltframework" ;; *-*-netbsd*) # Don't link with libc until the a.out ld.so is fixed. ;; *-*-openbsd* | *-*-freebsd* | *-*-dragonfly*) # Do not include libc due to us having libc/libc_r. ;; *-*-sco3.2v5* | *-*-sco5v6*) # Causes problems with __ctype ;; *-*-sysv4.2uw2* | *-*-sysv5* | *-*-unixware* | *-*-OpenUNIX*) # Compiler inserts libc in the correct place for threads to work ;; *) # Add libc to deplibs on all other systems if necessary. if test "$build_libtool_need_lc" = "yes"; then deplibs="$deplibs -lc" fi ;; esac fi # Transform deplibs into only deplibs that can be linked in shared. name_save=$name libname_save=$libname release_save=$release versuffix_save=$versuffix major_save=$major # I'm not sure if I'm treating the release correctly. I think # release should show up in the -l (ie -lgmp5) so we don't want to # add it in twice. Is that correct? release="" versuffix="" major="" newdeplibs= droppeddeps=no case $deplibs_check_method in pass_all) # Don't check for shared/static. Everything works. # This might be a little naive. We might want to check # whether the library exists or not. But this is on # osf3 & osf4 and I'm not really sure... Just # implementing what was already the behavior. newdeplibs=$deplibs ;; test_compile) # This code stresses the "libraries are programs" paradigm to its # limits. Maybe even breaks it. We compile a program, linking it # against the deplibs as a proxy for the library. Then we can check # whether they linked in statically or dynamically with ldd. $opt_dry_run || $RM conftest.c cat > conftest.c </dev/null` for potent_lib in $potential_libs; do # Follow soft links. if ls -lLd "$potent_lib" 2>/dev/null | $GREP " -> " >/dev/null; then continue fi # The statement above tries to avoid entering an # endless loop below, in case of cyclic links. # We might still enter an endless loop, since a link # loop can be closed while we follow links, # but so what? potlib="$potent_lib" while test -h "$potlib" 2>/dev/null; do potliblink=`ls -ld $potlib | ${SED} 's/.* -> //'` case $potliblink in [\\/]* | [A-Za-z]:[\\/]*) potlib="$potliblink";; *) potlib=`$ECHO "X$potlib" | $Xsed -e 's,[^/]*$,,'`"$potliblink";; esac done if eval $file_magic_cmd \"\$potlib\" 2>/dev/null | $SED -e 10q | $EGREP "$file_magic_regex" > /dev/null; then newdeplibs="$newdeplibs $a_deplib" a_deplib="" break 2 fi done done fi if test -n "$a_deplib" ; then droppeddeps=yes $ECHO $ECHO "*** Warning: linker path does not have real file for library $a_deplib." $ECHO "*** I have the capability to make that library automatically link in when" $ECHO "*** you link to this library. But I can only do this if you have a" $ECHO "*** shared version of the library, which you do not appear to have" $ECHO "*** because I did check the linker path looking for a file starting" if test -z "$potlib" ; then $ECHO "*** with $libname but no candidates were found. (...for file magic test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" $ECHO "*** using a file magic. Last file checked: $potlib" fi fi ;; *) # Add a -L argument. newdeplibs="$newdeplibs $a_deplib" ;; esac done # Gone through all deplibs. ;; match_pattern*) set dummy $deplibs_check_method; shift match_pattern_regex=`expr "$deplibs_check_method" : "$1 \(.*\)"` for a_deplib in $deplibs; do case $a_deplib in -l*) func_stripname -l '' "$a_deplib" name=$func_stripname_result if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then case " $predeps $postdeps " in *" $a_deplib "*) newdeplibs="$newdeplibs $a_deplib" a_deplib="" ;; esac fi if test -n "$a_deplib" ; then libname=`eval "\\$ECHO \"$libname_spec\""` for i in $lib_search_path $sys_lib_search_path $shlib_search_path; do potential_libs=`ls $i/$libname[.-]* 2>/dev/null` for potent_lib in $potential_libs; do potlib="$potent_lib" # see symlink-check above in file_magic test if eval "\$ECHO \"X$potent_lib\"" 2>/dev/null | $Xsed -e 10q | \ $EGREP "$match_pattern_regex" > /dev/null; then newdeplibs="$newdeplibs $a_deplib" a_deplib="" break 2 fi done done fi if test -n "$a_deplib" ; then droppeddeps=yes $ECHO $ECHO "*** Warning: linker path does not have real file for library $a_deplib." $ECHO "*** I have the capability to make that library automatically link in when" $ECHO "*** you link to this library. But I can only do this if you have a" $ECHO "*** shared version of the library, which you do not appear to have" $ECHO "*** because I did check the linker path looking for a file starting" if test -z "$potlib" ; then $ECHO "*** with $libname but no candidates were found. (...for regex pattern test)" else $ECHO "*** with $libname and none of the candidates passed a file format test" $ECHO "*** using a regex pattern. Last file checked: $potlib" fi fi ;; *) # Add a -L argument. newdeplibs="$newdeplibs $a_deplib" ;; esac done # Gone through all deplibs. ;; none | unknown | *) newdeplibs="" tmp_deplibs=`$ECHO "X $deplibs" | $Xsed \ -e 's/ -lc$//' -e 's/ -[LR][^ ]*//g'` if test "X$allow_libtool_libs_with_static_runtimes" = "Xyes" ; then for i in $predeps $postdeps ; do # can't use Xsed below, because $i might contain '/' tmp_deplibs=`$ECHO "X $tmp_deplibs" | $Xsed -e "s,$i,,"` done fi if $ECHO "X $tmp_deplibs" | $Xsed -e 's/[ ]//g' | $GREP . >/dev/null; then $ECHO if test "X$deplibs_check_method" = "Xnone"; then $ECHO "*** Warning: inter-library dependencies are not supported in this platform." else $ECHO "*** Warning: inter-library dependencies are not known to be supported." fi $ECHO "*** All declared inter-library dependencies are being dropped." droppeddeps=yes fi ;; esac versuffix=$versuffix_save major=$major_save release=$release_save libname=$libname_save name=$name_save case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library with the System framework newdeplibs=`$ECHO "X $newdeplibs" | $Xsed -e 's/ -lc / System.ltframework /'` ;; esac if test "$droppeddeps" = yes; then if test "$module" = yes; then $ECHO $ECHO "*** Warning: libtool could not satisfy all declared inter-library" $ECHO "*** dependencies of module $libname. Therefore, libtool will create" $ECHO "*** a static module, that should work as long as the dlopening" $ECHO "*** application is linked with the -dlopen flag." if test -z "$global_symbol_pipe"; then $ECHO $ECHO "*** However, this would only work if libtool was able to extract symbol" $ECHO "*** lists from a program, using \`nm' or equivalent, but libtool could" $ECHO "*** not find such a program. So, this module is probably useless." $ECHO "*** \`nm' from GNU binutils and a full rebuild may help." fi if test "$build_old_libs" = no; then oldlibs="$output_objdir/$libname.$libext" build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi else $ECHO "*** The inter-library dependencies that have been dropped here will be" $ECHO "*** automatically added whenever a program is linked with this library" $ECHO "*** or is declared to -dlopen it." if test "$allow_undefined" = no; then $ECHO $ECHO "*** Since this library must not contain undefined symbols," $ECHO "*** because either the platform does not support them or" $ECHO "*** it was explicitly requested with -no-undefined," $ECHO "*** libtool will only create a static version of it." if test "$build_old_libs" = no; then oldlibs="$output_objdir/$libname.$libext" build_libtool_libs=module build_old_libs=yes else build_libtool_libs=no fi fi fi fi # Done checking deplibs! deplibs=$newdeplibs fi # Time to change all our "foo.ltframework" stuff back to "-framework foo" case $host in *-*-darwin*) newdeplibs=`$ECHO "X $newdeplibs" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'` new_inherited_linker_flags=`$ECHO "X $new_inherited_linker_flags" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'` deplibs=`$ECHO "X $deplibs" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'` ;; esac # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $deplibs " in *" -L$path/$objdir "*) new_libs="$new_libs -L$path/$objdir" ;; esac ;; esac done for deplib in $deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) new_libs="$new_libs $deplib" ;; esac ;; *) new_libs="$new_libs $deplib" ;; esac done deplibs="$new_libs" # All the library-specific variables (install_libdir is set above). library_names= old_library= dlname= # Test again, we may have decided not to build it any more if test "$build_libtool_libs" = yes; then if test "$hardcode_into_libs" = yes; then # Hardcode the library paths hardcode_libdirs= dep_rpath= rpath="$finalize_rpath" test "$mode" != relink && rpath="$compile_rpath$rpath" for libdir in $rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs="$libdir" else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" dep_rpath="$dep_rpath $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) perm_rpath="$perm_rpath $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" if test -n "$hardcode_libdir_flag_spec_ld"; then eval dep_rpath=\"$hardcode_libdir_flag_spec_ld\" else eval dep_rpath=\"$hardcode_libdir_flag_spec\" fi fi if test -n "$runpath_var" && test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do rpath="$rpath$dir:" done eval "$runpath_var='$rpath\$$runpath_var'; export $runpath_var" fi test -n "$dep_rpath" && deplibs="$dep_rpath $deplibs" fi shlibpath="$finalize_shlibpath" test "$mode" != relink && shlibpath="$compile_shlibpath$shlibpath" if test -n "$shlibpath"; then eval "$shlibpath_var='$shlibpath\$$shlibpath_var'; export $shlibpath_var" fi # Get the real and link names of the library. eval shared_ext=\"$shrext_cmds\" eval library_names=\"$library_names_spec\" set dummy $library_names shift realname="$1" shift if test -n "$soname_spec"; then eval soname=\"$soname_spec\" else soname="$realname" fi if test -z "$dlname"; then dlname=$soname fi lib="$output_objdir/$realname" linknames= for link do linknames="$linknames $link" done # Use standard objects if they are pic test -z "$pic_flag" && libobjs=`$ECHO "X$libobjs" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` test "X$libobjs" = "X " && libobjs= delfiles= if test -n "$export_symbols" && test -n "$include_expsyms"; then $opt_dry_run || cp "$export_symbols" "$output_objdir/$libname.uexp" export_symbols="$output_objdir/$libname.uexp" delfiles="$delfiles $export_symbols" fi orig_export_symbols= case $host_os in cygwin* | mingw* | cegcc*) if test -n "$export_symbols" && test -z "$export_symbols_regex"; then # exporting using user supplied symfile if test "x`$SED 1q $export_symbols`" != xEXPORTS; then # and it's NOT already a .def file. Must figure out # which of the given symbols are data symbols and tag # them as such. So, trigger use of export_symbols_cmds. # export_symbols gets reassigned inside the "prepare # the list of exported symbols" if statement, so the # include_expsyms logic still works. orig_export_symbols="$export_symbols" export_symbols= always_export_symbols=yes fi fi ;; esac # Prepare the list of exported symbols if test -z "$export_symbols"; then if test "$always_export_symbols" = yes || test -n "$export_symbols_regex"; then func_verbose "generating symbol list for \`$libname.la'" export_symbols="$output_objdir/$libname.exp" $opt_dry_run || $RM $export_symbols cmds=$export_symbols_cmds save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" func_len " $cmd" len=$func_len_result if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then func_show_eval "$cmd" 'exit $?' skipped_export=false else # The command line is too long to execute in one step. func_verbose "using reloadable object file for export list..." skipped_export=: # Break out early, otherwise skipped_export may be # set to false by a later but shorter cmd. break fi done IFS="$save_ifs" if test -n "$export_symbols_regex" && test "X$skipped_export" != "X:"; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' func_show_eval '$MV "${export_symbols}T" "$export_symbols"' fi fi fi if test -n "$export_symbols" && test -n "$include_expsyms"; then tmp_export_symbols="$export_symbols" test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" $opt_dry_run || eval '$ECHO "X$include_expsyms" | $Xsed | $SP2NL >> "$tmp_export_symbols"' fi if test "X$skipped_export" != "X:" && test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of # 's' commands which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter delfiles="$delfiles $export_symbols $output_objdir/$libname.filter" export_symbols=$output_objdir/$libname.def $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi tmp_deplibs= for test_deplib in $deplibs; do case " $convenience " in *" $test_deplib "*) ;; *) tmp_deplibs="$tmp_deplibs $test_deplib" ;; esac done deplibs="$tmp_deplibs" if test -n "$convenience"; then if test -n "$whole_archive_flag_spec" && test "$compiler_needs_object" = yes && test -z "$libobjs"; then # extract the archives, so we have objects to list. # TODO: could optimize this to just extract one archive. whole_archive_flag_spec= fi if test -n "$whole_archive_flag_spec"; then save_libobjs=$libobjs eval libobjs=\"\$libobjs $whole_archive_flag_spec\" test "X$libobjs" = "X " && libobjs= else gentop="$output_objdir/${outputname}x" generated="$generated $gentop" func_extract_archives $gentop $convenience libobjs="$libobjs $func_extract_archives_result" test "X$libobjs" = "X " && libobjs= fi fi if test "$thread_safe" = yes && test -n "$thread_safe_flag_spec"; then eval flag=\"$thread_safe_flag_spec\" linker_flags="$linker_flags $flag" fi # Make a backup of the uninstalled library when relinking if test "$mode" = relink; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}U && $MV $realname ${realname}U)' || exit $? fi # Do each of the archive commands. if test "$module" = yes && test -n "$module_cmds" ; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then eval test_cmds=\"$module_expsym_cmds\" cmds=$module_expsym_cmds else eval test_cmds=\"$module_cmds\" cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then eval test_cmds=\"$archive_expsym_cmds\" cmds=$archive_expsym_cmds else eval test_cmds=\"$archive_cmds\" cmds=$archive_cmds fi fi if test "X$skipped_export" != "X:" && func_len " $test_cmds" && len=$func_len_result && test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then : else # The command line is too long to link in one step, link piecewise # or, if using GNU ld and skipped_export is not :, use a linker # script. # Save the value of $output and $libobjs because we want to # use them later. If we have whole_archive_flag_spec, we # want to use save_libobjs as it was before # whole_archive_flag_spec was expanded, because we can't # assume the linker understands whole_archive_flag_spec. # This may have to be revisited, in case too many # convenience libraries get linked in and end up exceeding # the spec. if test -z "$convenience" || test -z "$whole_archive_flag_spec"; then save_libobjs=$libobjs fi save_output=$output output_la=`$ECHO "X$output" | $Xsed -e "$basename"` # Clear the reloadable object creation command queue and # initialize k to one. test_cmds= concat_cmds= objlist= last_robj= k=1 if test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "$with_gnu_ld" = yes; then output=${output_objdir}/${output_la}.lnkscript func_verbose "creating GNU ld script: $output" $ECHO 'INPUT (' > $output for obj in $save_libobjs do $ECHO "$obj" >> $output done $ECHO ')' >> $output delfiles="$delfiles $output" elif test -n "$save_libobjs" && test "X$skipped_export" != "X:" && test "X$file_list_spec" != X; then output=${output_objdir}/${output_la}.lnk func_verbose "creating linker input file list: $output" : > $output set x $save_libobjs shift firstobj= if test "$compiler_needs_object" = yes; then firstobj="$1 " shift fi for obj do $ECHO "$obj" >> $output done delfiles="$delfiles $output" output=$firstobj\"$file_list_spec$output\" else if test -n "$save_libobjs"; then func_verbose "creating reloadable object files..." output=$output_objdir/$output_la-${k}.$objext eval test_cmds=\"$reload_cmds\" func_len " $test_cmds" len0=$func_len_result len=$len0 # Loop over the list of objects to be linked. for obj in $save_libobjs do func_len " $obj" func_arith $len + $func_len_result len=$func_arith_result if test "X$objlist" = X || test "$len" -lt "$max_cmd_len"; then func_append objlist " $obj" else # The command $test_cmds is almost too long, add a # command to the queue. if test "$k" -eq 1 ; then # The first file doesn't have a previous command to add. eval concat_cmds=\"$reload_cmds $objlist $last_robj\" else # All subsequent reloadable object files will link in # the last one created. eval concat_cmds=\"\$concat_cmds~$reload_cmds $objlist $last_robj~\$RM $last_robj\" fi last_robj=$output_objdir/$output_la-${k}.$objext func_arith $k + 1 k=$func_arith_result output=$output_objdir/$output_la-${k}.$objext objlist=$obj func_len " $last_robj" func_arith $len0 + $func_len_result len=$func_arith_result fi done # Handle the remaining objects by creating one last # reloadable object file. All subsequent reloadable object # files will link in the last one created. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\${concat_cmds}$reload_cmds $objlist $last_robj\" if test -n "$last_robj"; then eval concat_cmds=\"\${concat_cmds}~\$RM $last_robj\" fi delfiles="$delfiles $output" else output= fi if ${skipped_export-false}; then func_verbose "generating symbol list for \`$libname.la'" export_symbols="$output_objdir/$libname.exp" $opt_dry_run || $RM $export_symbols libobjs=$output # Append the command to create the export file. test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\$concat_cmds$export_symbols_cmds\" if test -n "$last_robj"; then eval concat_cmds=\"\$concat_cmds~\$RM $last_robj\" fi fi test -n "$save_libobjs" && func_verbose "creating a temporary reloadable object file: $output" # Loop through the commands generated above and execute them. save_ifs="$IFS"; IFS='~' for cmd in $concat_cmds; do IFS="$save_ifs" $opt_silent || { func_quote_for_expand "$cmd" eval "func_echo $func_quote_for_expand_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test "$mode" = relink; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) fi exit $lt_exit } done IFS="$save_ifs" if test -n "$export_symbols_regex" && ${skipped_export-false}; then func_show_eval '$EGREP -e "$export_symbols_regex" "$export_symbols" > "${export_symbols}T"' func_show_eval '$MV "${export_symbols}T" "$export_symbols"' fi fi if ${skipped_export-false}; then if test -n "$export_symbols" && test -n "$include_expsyms"; then tmp_export_symbols="$export_symbols" test -n "$orig_export_symbols" && tmp_export_symbols="$orig_export_symbols" $opt_dry_run || eval '$ECHO "X$include_expsyms" | $Xsed | $SP2NL >> "$tmp_export_symbols"' fi if test -n "$orig_export_symbols"; then # The given exports_symbols file has to be filtered, so filter it. func_verbose "filter symbol list for \`$libname.la' to tag DATA exports" # FIXME: $output_objdir/$libname.filter potentially contains lots of # 's' commands which not all seds can handle. GNU sed should be fine # though. Also, the filter scales superlinearly with the number of # global variables. join(1) would be nice here, but unfortunately # isn't a blessed tool. $opt_dry_run || $SED -e '/[ ,]DATA/!d;s,\(.*\)\([ \,].*\),s|^\1$|\1\2|,' < $export_symbols > $output_objdir/$libname.filter delfiles="$delfiles $export_symbols $output_objdir/$libname.filter" export_symbols=$output_objdir/$libname.def $opt_dry_run || $SED -f $output_objdir/$libname.filter < $orig_export_symbols > $export_symbols fi fi libobjs=$output # Restore the value of output. output=$save_output if test -n "$convenience" && test -n "$whole_archive_flag_spec"; then eval libobjs=\"\$libobjs $whole_archive_flag_spec\" test "X$libobjs" = "X " && libobjs= fi # Expand the library linking commands again to reset the # value of $libobjs for piecewise linking. # Do each of the archive commands. if test "$module" = yes && test -n "$module_cmds" ; then if test -n "$export_symbols" && test -n "$module_expsym_cmds"; then cmds=$module_expsym_cmds else cmds=$module_cmds fi else if test -n "$export_symbols" && test -n "$archive_expsym_cmds"; then cmds=$archive_expsym_cmds else cmds=$archive_cmds fi fi fi if test -n "$delfiles"; then # Append the command to remove temporary files to $cmds. eval cmds=\"\$cmds~\$RM $delfiles\" fi # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then gentop="$output_objdir/${outputname}x" generated="$generated $gentop" func_extract_archives $gentop $dlprefiles libobjs="$libobjs $func_extract_archives_result" test "X$libobjs" = "X " && libobjs= fi save_ifs="$IFS"; IFS='~' for cmd in $cmds; do IFS="$save_ifs" eval cmd=\"$cmd\" $opt_silent || { func_quote_for_expand "$cmd" eval "func_echo $func_quote_for_expand_result" } $opt_dry_run || eval "$cmd" || { lt_exit=$? # Restore the uninstalled library and exit if test "$mode" = relink; then ( cd "$output_objdir" && \ $RM "${realname}T" && \ $MV "${realname}U" "$realname" ) fi exit $lt_exit } done IFS="$save_ifs" # Restore the uninstalled library and exit if test "$mode" = relink; then $opt_dry_run || eval '(cd $output_objdir && $RM ${realname}T && $MV $realname ${realname}T && $MV ${realname}U $realname)' || exit $? if test -n "$convenience"; then if test -z "$whole_archive_flag_spec"; then func_show_eval '${RM}r "$gentop"' fi fi exit $EXIT_SUCCESS fi # Create links to the real library. for linkname in $linknames; do if test "$realname" != "$linkname"; then func_show_eval '(cd "$output_objdir" && $RM "$linkname" && $LN_S "$realname" "$linkname")' 'exit $?' fi done # If -module or -export-dynamic was specified, set the dlname. if test "$module" = yes || test "$export_dynamic" = yes; then # On all known operating systems, these are identical. dlname="$soname" fi fi ;; obj) if test -n "$dlfiles$dlprefiles" || test "$dlself" != no; then func_warning "\`-dlopen' is ignored for objects" fi case " $deplibs" in *\ -l* | *\ -L*) func_warning "\`-l' and \`-L' are ignored for objects" ;; esac test -n "$rpath" && \ func_warning "\`-rpath' is ignored for objects" test -n "$xrpath" && \ func_warning "\`-R' is ignored for objects" test -n "$vinfo" && \ func_warning "\`-version-info' is ignored for objects" test -n "$release" && \ func_warning "\`-release' is ignored for objects" case $output in *.lo) test -n "$objs$old_deplibs" && \ func_fatal_error "cannot build library object \`$output' from non-libtool objects" libobj=$output func_lo2o "$libobj" obj=$func_lo2o_result ;; *) libobj= obj="$output" ;; esac # Delete the old objects. $opt_dry_run || $RM $obj $libobj # Objects from convenience libraries. This assumes # single-version convenience libraries. Whenever we create # different ones for PIC/non-PIC, this we'll have to duplicate # the extraction. reload_conv_objs= gentop= # reload_cmds runs $LD directly, so let us get rid of # -Wl from whole_archive_flag_spec and hope we can get by with # turning comma into space.. wl= if test -n "$convenience"; then if test -n "$whole_archive_flag_spec"; then eval tmp_whole_archive_flags=\"$whole_archive_flag_spec\" reload_conv_objs=$reload_objs\ `$ECHO "X$tmp_whole_archive_flags" | $Xsed -e 's|,| |g'` else gentop="$output_objdir/${obj}x" generated="$generated $gentop" func_extract_archives $gentop $convenience reload_conv_objs="$reload_objs $func_extract_archives_result" fi fi # Create the old-style object. reload_objs="$objs$old_deplibs "`$ECHO "X$libobjs" | $SP2NL | $Xsed -e '/\.'${libext}$'/d' -e '/\.lib$/d' -e "$lo2o" | $NL2SP`" $reload_conv_objs" ### testsuite: skip nested quoting test output="$obj" func_execute_cmds "$reload_cmds" 'exit $?' # Exit if we aren't doing a library object file. if test -z "$libobj"; then if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi exit $EXIT_SUCCESS fi if test "$build_libtool_libs" != yes; then if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi # Create an invalid libtool object if no PIC, so that we don't # accidentally link it into a program. # $show "echo timestamp > $libobj" # $opt_dry_run || eval "echo timestamp > $libobj" || exit $? exit $EXIT_SUCCESS fi if test -n "$pic_flag" || test "$pic_mode" != default; then # Only do commands if we really have different PIC objects. reload_objs="$libobjs $reload_conv_objs" output="$libobj" func_execute_cmds "$reload_cmds" 'exit $?' fi if test -n "$gentop"; then func_show_eval '${RM}r "$gentop"' fi exit $EXIT_SUCCESS ;; prog) case $host in *cygwin*) func_stripname '' '.exe' "$output" output=$func_stripname_result.exe;; esac test -n "$vinfo" && \ func_warning "\`-version-info' is ignored for programs" test -n "$release" && \ func_warning "\`-release' is ignored for programs" test "$preload" = yes \ && test "$dlopen_support" = unknown \ && test "$dlopen_self" = unknown \ && test "$dlopen_self_static" = unknown && \ func_warning "\`LT_INIT([dlopen])' not used. Assuming no dlopen support." case $host in *-*-rhapsody* | *-*-darwin1.[012]) # On Rhapsody replace the C library is the System framework compile_deplibs=`$ECHO "X $compile_deplibs" | $Xsed -e 's/ -lc / System.ltframework /'` finalize_deplibs=`$ECHO "X $finalize_deplibs" | $Xsed -e 's/ -lc / System.ltframework /'` ;; esac case $host in *-*-darwin*) # Don't allow lazy linking, it breaks C++ global constructors # But is supposedly fixed on 10.4 or later (yay!). if test "$tagname" = CXX ; then case ${MACOSX_DEPLOYMENT_TARGET-10.0} in 10.[0123]) compile_command="$compile_command ${wl}-bind_at_load" finalize_command="$finalize_command ${wl}-bind_at_load" ;; esac fi # Time to change all our "foo.ltframework" stuff back to "-framework foo" compile_deplibs=`$ECHO "X $compile_deplibs" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'` finalize_deplibs=`$ECHO "X $finalize_deplibs" | $Xsed -e 's% \([^ $]*\).ltframework% -framework \1%g'` ;; esac # move library search paths that coincide with paths to not yet # installed libraries to the beginning of the library search list new_libs= for path in $notinst_path; do case " $new_libs " in *" -L$path/$objdir "*) ;; *) case " $compile_deplibs " in *" -L$path/$objdir "*) new_libs="$new_libs -L$path/$objdir" ;; esac ;; esac done for deplib in $compile_deplibs; do case $deplib in -L*) case " $new_libs " in *" $deplib "*) ;; *) new_libs="$new_libs $deplib" ;; esac ;; *) new_libs="$new_libs $deplib" ;; esac done compile_deplibs="$new_libs" compile_command="$compile_command $compile_deplibs" finalize_command="$finalize_command $finalize_deplibs" if test -n "$rpath$xrpath"; then # If the user specified any rpath flags, then add them. for libdir in $rpath $xrpath; do # This is the magic to use -rpath. case "$finalize_rpath " in *" $libdir "*) ;; *) finalize_rpath="$finalize_rpath $libdir" ;; esac done fi # Now hardcode the library paths rpath= hardcode_libdirs= for libdir in $compile_rpath $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs="$libdir" else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" rpath="$rpath $flag" fi elif test -n "$runpath_var"; then case "$perm_rpath " in *" $libdir "*) ;; *) perm_rpath="$perm_rpath $libdir" ;; esac fi case $host in *-*-cygwin* | *-*-mingw* | *-*-pw32* | *-*-os2* | *-cegcc*) testbindir=`${ECHO} "$libdir" | ${SED} -e 's*/lib$*/bin*'` case :$dllsearchpath: in *":$libdir:"*) ;; ::) dllsearchpath=$libdir;; *) dllsearchpath="$dllsearchpath:$libdir";; esac case :$dllsearchpath: in *":$testbindir:"*) ;; ::) dllsearchpath=$testbindir;; *) dllsearchpath="$dllsearchpath:$testbindir";; esac ;; esac done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" eval rpath=\" $hardcode_libdir_flag_spec\" fi compile_rpath="$rpath" rpath= hardcode_libdirs= for libdir in $finalize_rpath; do if test -n "$hardcode_libdir_flag_spec"; then if test -n "$hardcode_libdir_separator"; then if test -z "$hardcode_libdirs"; then hardcode_libdirs="$libdir" else # Just accumulate the unique libdirs. case $hardcode_libdir_separator$hardcode_libdirs$hardcode_libdir_separator in *"$hardcode_libdir_separator$libdir$hardcode_libdir_separator"*) ;; *) hardcode_libdirs="$hardcode_libdirs$hardcode_libdir_separator$libdir" ;; esac fi else eval flag=\"$hardcode_libdir_flag_spec\" rpath="$rpath $flag" fi elif test -n "$runpath_var"; then case "$finalize_perm_rpath " in *" $libdir "*) ;; *) finalize_perm_rpath="$finalize_perm_rpath $libdir" ;; esac fi done # Substitute the hardcoded libdirs into the rpath. if test -n "$hardcode_libdir_separator" && test -n "$hardcode_libdirs"; then libdir="$hardcode_libdirs" eval rpath=\" $hardcode_libdir_flag_spec\" fi finalize_rpath="$rpath" if test -n "$libobjs" && test "$build_old_libs" = yes; then # Transform all the library objects into standard objects. compile_command=`$ECHO "X$compile_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` finalize_command=`$ECHO "X$finalize_command" | $SP2NL | $Xsed -e "$lo2o" | $NL2SP` fi func_generate_dlsyms "$outputname" "@PROGRAM@" "no" # template prelinking step if test -n "$prelink_cmds"; then func_execute_cmds "$prelink_cmds" 'exit $?' fi wrappers_required=yes case $host in *cygwin* | *mingw* ) if test "$build_libtool_libs" != yes; then wrappers_required=no fi ;; *cegcc) # Disable wrappers for cegcc, we are cross compiling anyway. wrappers_required=no ;; *) if test "$need_relink" = no || test "$build_libtool_libs" != yes; then wrappers_required=no fi ;; esac if test "$wrappers_required" = no; then # Replace the output file specification. compile_command=`$ECHO "X$compile_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'` link_command="$compile_command$compile_rpath" # We have no uninstalled library dependencies, so finalize right now. exit_status=0 func_show_eval "$link_command" 'exit_status=$?' # Delete the generated files. if test -f "$output_objdir/${outputname}S.${objext}"; then func_show_eval '$RM "$output_objdir/${outputname}S.${objext}"' fi exit $exit_status fi if test -n "$compile_shlibpath$finalize_shlibpath"; then compile_command="$shlibpath_var=\"$compile_shlibpath$finalize_shlibpath\$$shlibpath_var\" $compile_command" fi if test -n "$finalize_shlibpath"; then finalize_command="$shlibpath_var=\"$finalize_shlibpath\$$shlibpath_var\" $finalize_command" fi compile_var= finalize_var= if test -n "$runpath_var"; then if test -n "$perm_rpath"; then # We should set the runpath_var. rpath= for dir in $perm_rpath; do rpath="$rpath$dir:" done compile_var="$runpath_var=\"$rpath\$$runpath_var\" " fi if test -n "$finalize_perm_rpath"; then # We should set the runpath_var. rpath= for dir in $finalize_perm_rpath; do rpath="$rpath$dir:" done finalize_var="$runpath_var=\"$rpath\$$runpath_var\" " fi fi if test "$no_install" = yes; then # We don't need to create a wrapper script. link_command="$compile_var$compile_command$compile_rpath" # Replace the output file specification. link_command=`$ECHO "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output"'%g'` # Delete the old output file. $opt_dry_run || $RM $output # Link the executable and exit func_show_eval "$link_command" 'exit $?' exit $EXIT_SUCCESS fi if test "$hardcode_action" = relink; then # Fast installation is not supported link_command="$compile_var$compile_command$compile_rpath" relink_command="$finalize_var$finalize_command$finalize_rpath" func_warning "this platform does not like uninstalled shared libraries" func_warning "\`$output' will be relinked during installation" else if test "$fast_install" != no; then link_command="$finalize_var$compile_command$finalize_rpath" if test "$fast_install" = yes; then relink_command=`$ECHO "X$compile_var$compile_command$compile_rpath" | $Xsed -e 's%@OUTPUT@%\$progdir/\$file%g'` else # fast_install is set to needless relink_command= fi else link_command="$compile_var$compile_command$compile_rpath" relink_command="$finalize_var$finalize_command$finalize_rpath" fi fi # Replace the output file specification. link_command=`$ECHO "X$link_command" | $Xsed -e 's%@OUTPUT@%'"$output_objdir/$outputname"'%g'` # Delete the old output files. $opt_dry_run || $RM $output $output_objdir/$outputname $output_objdir/lt-$outputname func_show_eval "$link_command" 'exit $?' # Now create the wrapper script. func_verbose "creating $output" # Quote the relink command for shipping. if test -n "$relink_command"; then # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else func_quote_for_eval "$var_value" relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" fi done relink_command="(cd `pwd`; $relink_command)" relink_command=`$ECHO "X$relink_command" | $Xsed -e "$sed_quote_subst"` fi # Quote $ECHO for shipping. if test "X$ECHO" = "X$SHELL $progpath --fallback-echo"; then case $progpath in [\\/]* | [A-Za-z]:[\\/]*) qecho="$SHELL $progpath --fallback-echo";; *) qecho="$SHELL `pwd`/$progpath --fallback-echo";; esac qecho=`$ECHO "X$qecho" | $Xsed -e "$sed_quote_subst"` else qecho=`$ECHO "X$ECHO" | $Xsed -e "$sed_quote_subst"` fi # Only actually do things if not in dry run mode. $opt_dry_run || { # win32 will think the script is a binary if it has # a .exe suffix, so we strip it off here. case $output in *.exe) func_stripname '' '.exe' "$output" output=$func_stripname_result ;; esac # test for cygwin because mv fails w/o .exe extensions case $host in *cygwin*) exeext=.exe func_stripname '' '.exe' "$outputname" outputname=$func_stripname_result ;; *) exeext= ;; esac case $host in *cygwin* | *mingw* ) func_dirname_and_basename "$output" "" "." output_name=$func_basename_result output_path=$func_dirname_result cwrappersource="$output_path/$objdir/lt-$output_name.c" cwrapper="$output_path/$output_name.exe" $RM $cwrappersource $cwrapper trap "$RM $cwrappersource $cwrapper; exit $EXIT_FAILURE" 1 2 15 func_emit_cwrapperexe_src > $cwrappersource # The wrapper executable is built using the $host compiler, # because it contains $host paths and files. If cross- # compiling, it, like the target executable, must be # executed on the $host or under an emulation environment. $opt_dry_run || { $LTCC $LTCFLAGS -o $cwrapper $cwrappersource $STRIP $cwrapper } # Now, create the wrapper script for func_source use: func_ltwrapper_scriptname $cwrapper $RM $func_ltwrapper_scriptname_result trap "$RM $func_ltwrapper_scriptname_result; exit $EXIT_FAILURE" 1 2 15 $opt_dry_run || { # note: this script will not be executed, so do not chmod. if test "x$build" = "x$host" ; then $cwrapper --lt-dump-script > $func_ltwrapper_scriptname_result else func_emit_wrapper no > $func_ltwrapper_scriptname_result fi } ;; * ) $RM $output trap "$RM $output; exit $EXIT_FAILURE" 1 2 15 func_emit_wrapper no > $output chmod +x $output ;; esac } exit $EXIT_SUCCESS ;; esac # See if we need to build an old-fashioned archive. for oldlib in $oldlibs; do if test "$build_libtool_libs" = convenience; then oldobjs="$libobjs_save $symfileobj" addlibs="$convenience" build_libtool_libs=no else if test "$build_libtool_libs" = module; then oldobjs="$libobjs_save" build_libtool_libs=no else oldobjs="$old_deplibs $non_pic_objects" if test "$preload" = yes && test -f "$symfileobj"; then oldobjs="$oldobjs $symfileobj" fi fi addlibs="$old_convenience" fi if test -n "$addlibs"; then gentop="$output_objdir/${outputname}x" generated="$generated $gentop" func_extract_archives $gentop $addlibs oldobjs="$oldobjs $func_extract_archives_result" fi # Do each command in the archive commands. if test -n "$old_archive_from_new_cmds" && test "$build_libtool_libs" = yes; then cmds=$old_archive_from_new_cmds else # Add any objects from preloaded convenience libraries if test -n "$dlprefiles"; then gentop="$output_objdir/${outputname}x" generated="$generated $gentop" func_extract_archives $gentop $dlprefiles oldobjs="$oldobjs $func_extract_archives_result" fi # POSIX demands no paths to be encoded in archives. We have # to avoid creating archives with duplicate basenames if we # might have to extract them afterwards, e.g., when creating a # static archive out of a convenience library, or when linking # the entirety of a libtool archive into another (currently # not supported by libtool). if (for obj in $oldobjs do func_basename "$obj" $ECHO "$func_basename_result" done | sort | sort -uc >/dev/null 2>&1); then : else $ECHO "copying selected object files to avoid basename conflicts..." gentop="$output_objdir/${outputname}x" generated="$generated $gentop" func_mkdir_p "$gentop" save_oldobjs=$oldobjs oldobjs= counter=1 for obj in $save_oldobjs do func_basename "$obj" objbase="$func_basename_result" case " $oldobjs " in " ") oldobjs=$obj ;; *[\ /]"$objbase "*) while :; do # Make sure we don't pick an alternate name that also # overlaps. newobj=lt$counter-$objbase func_arith $counter + 1 counter=$func_arith_result case " $oldobjs " in *[\ /]"$newobj "*) ;; *) if test ! -f "$gentop/$newobj"; then break; fi ;; esac done func_show_eval "ln $obj $gentop/$newobj || cp $obj $gentop/$newobj" oldobjs="$oldobjs $gentop/$newobj" ;; *) oldobjs="$oldobjs $obj" ;; esac done fi eval cmds=\"$old_archive_cmds\" func_len " $cmds" len=$func_len_result if test "$len" -lt "$max_cmd_len" || test "$max_cmd_len" -le -1; then cmds=$old_archive_cmds else # the command line is too long to link in one step, link in parts func_verbose "using piecewise archive linking..." save_RANLIB=$RANLIB RANLIB=: objlist= concat_cmds= save_oldobjs=$oldobjs oldobjs= # Is there a better way of finding the last object in the list? for obj in $save_oldobjs do last_oldobj=$obj done eval test_cmds=\"$old_archive_cmds\" func_len " $test_cmds" len0=$func_len_result len=$len0 for obj in $save_oldobjs do func_len " $obj" func_arith $len + $func_len_result len=$func_arith_result func_append objlist " $obj" if test "$len" -lt "$max_cmd_len"; then : else # the above command should be used before it gets too long oldobjs=$objlist if test "$obj" = "$last_oldobj" ; then RANLIB=$save_RANLIB fi test -z "$concat_cmds" || concat_cmds=$concat_cmds~ eval concat_cmds=\"\${concat_cmds}$old_archive_cmds\" objlist= len=$len0 fi done RANLIB=$save_RANLIB oldobjs=$objlist if test "X$oldobjs" = "X" ; then eval cmds=\"\$concat_cmds\" else eval cmds=\"\$concat_cmds~\$old_archive_cmds\" fi fi fi func_execute_cmds "$cmds" 'exit $?' done test -n "$generated" && \ func_show_eval "${RM}r$generated" # Now create the libtool archive. case $output in *.la) old_library= test "$build_old_libs" = yes && old_library="$libname.$libext" func_verbose "creating $output" # Preserve any variables that may affect compiler behavior for var in $variables_saved_for_relink; do if eval test -z \"\${$var+set}\"; then relink_command="{ test -z \"\${$var+set}\" || $lt_unset $var || { $var=; export $var; }; }; $relink_command" elif eval var_value=\$$var; test -z "$var_value"; then relink_command="$var=; export $var; $relink_command" else func_quote_for_eval "$var_value" relink_command="$var=$func_quote_for_eval_result; export $var; $relink_command" fi done # Quote the link command for shipping. relink_command="(cd `pwd`; $SHELL $progpath $preserve_args --mode=relink $libtool_args @inst_prefix_dir@)" relink_command=`$ECHO "X$relink_command" | $Xsed -e "$sed_quote_subst"` if test "$hardcode_automatic" = yes ; then relink_command= fi # Only create the output if not a dry run. $opt_dry_run || { for installed in no yes; do if test "$installed" = yes; then if test -z "$install_libdir"; then break fi output="$output_objdir/$outputname"i # Replace all uninstalled libtool libraries with the installed ones newdependency_libs= for deplib in $dependency_libs; do case $deplib in *.la) func_basename "$deplib" name="$func_basename_result" eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $deplib` test -z "$libdir" && \ func_fatal_error "\`$deplib' is not a valid libtool archive" newdependency_libs="$newdependency_libs $libdir/$name" ;; *) newdependency_libs="$newdependency_libs $deplib" ;; esac done dependency_libs="$newdependency_libs" newdlfiles= for lib in $dlfiles; do case $lib in *.la) func_basename "$lib" name="$func_basename_result" eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ func_fatal_error "\`$lib' is not a valid libtool archive" newdlfiles="$newdlfiles $libdir/$name" ;; *) newdlfiles="$newdlfiles $lib" ;; esac done dlfiles="$newdlfiles" newdlprefiles= for lib in $dlprefiles; do case $lib in *.la) # Only pass preopened files to the pseudo-archive (for # eventual linking with the app. that links it) if we # didn't already link the preopened objects directly into # the library: func_basename "$lib" name="$func_basename_result" eval libdir=`${SED} -n -e 's/^libdir=\(.*\)$/\1/p' $lib` test -z "$libdir" && \ func_fatal_error "\`$lib' is not a valid libtool archive" newdlprefiles="$newdlprefiles $libdir/$name" ;; esac done dlprefiles="$newdlprefiles" else newdlfiles= for lib in $dlfiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; *) abs=`pwd`"/$lib" ;; esac newdlfiles="$newdlfiles $abs" done dlfiles="$newdlfiles" newdlprefiles= for lib in $dlprefiles; do case $lib in [\\/]* | [A-Za-z]:[\\/]*) abs="$lib" ;; *) abs=`pwd`"/$lib" ;; esac newdlprefiles="$newdlprefiles $abs" done dlprefiles="$newdlprefiles" fi $RM $output # place dlname in correct position for cygwin tdlname=$dlname case $host,$output,$installed,$module,$dlname in *cygwin*,*lai,yes,no,*.dll | *mingw*,*lai,yes,no,*.dll | *cegcc*,*lai,yes,no,*.dll) tdlname=../bin/$dlname ;; esac $ECHO > $output "\ # $outputname - a libtool library file # Generated by $PROGRAM (GNU $PACKAGE$TIMESTAMP) $VERSION # # Please DO NOT delete this file! # It is necessary for linking the library. # The name that we can dlopen(3). dlname='$tdlname' # Names of this library. library_names='$library_names' # The name of the static archive. old_library='$old_library' # Linker flags that can not go in dependency_libs. inherited_linker_flags='$new_inherited_linker_flags' # Libraries that this one depends upon. dependency_libs='$dependency_libs' # Names of additional weak libraries provided by this library weak_library_names='$weak_libs' # Version information for $libname. current=$current age=$age revision=$revision # Is this an already installed library? installed=$installed # Should we warn about portability when linking against -modules? shouldnotlink=$module # Files to dlopen/dlpreopen dlopen='$dlfiles' dlpreopen='$dlprefiles' # Directory that this library needs to be installed in: libdir='$install_libdir'" if test "$installed" = no && test "$need_relink" = yes; then $ECHO >> $output "\ relink_command=\"$relink_command\"" fi done } # Do a symbolic link so that the libtool archive can be found in # LD_LIBRARY_PATH before the program is installed. func_show_eval '( cd "$output_objdir" && $RM "$outputname" && $LN_S "../$outputname" "$outputname" )' 'exit $?' ;; esac exit $EXIT_SUCCESS } { test "$mode" = link || test "$mode" = relink; } && func_mode_link ${1+"$@"} # func_mode_uninstall arg... func_mode_uninstall () { $opt_debug RM="$nonopt" files= rmforce= exit_status=0 # This variable tells wrapper scripts just to set variables rather # than running their programs. libtool_install_magic="$magic" for arg do case $arg in -f) RM="$RM $arg"; rmforce=yes ;; -*) RM="$RM $arg" ;; *) files="$files $arg" ;; esac done test -z "$RM" && \ func_fatal_help "you must specify an RM program" rmdirs= origobjdir="$objdir" for file in $files; do func_dirname "$file" "" "." dir="$func_dirname_result" if test "X$dir" = X.; then objdir="$origobjdir" else objdir="$dir/$origobjdir" fi func_basename "$file" name="$func_basename_result" test "$mode" = uninstall && objdir="$dir" # Remember objdir for removal later, being careful to avoid duplicates if test "$mode" = clean; then case " $rmdirs " in *" $objdir "*) ;; *) rmdirs="$rmdirs $objdir" ;; esac fi # Don't error if the file doesn't exist and rm -f was used. if { test -L "$file"; } >/dev/null 2>&1 || { test -h "$file"; } >/dev/null 2>&1 || test -f "$file"; then : elif test -d "$file"; then exit_status=1 continue elif test "$rmforce" = yes; then continue fi rmfiles="$file" case $name in *.la) # Possibly a libtool archive, so verify it. if func_lalib_p "$file"; then func_source $dir/$name # Delete the libtool libraries and symlinks. for n in $library_names; do rmfiles="$rmfiles $objdir/$n" done test -n "$old_library" && rmfiles="$rmfiles $objdir/$old_library" case "$mode" in clean) case " $library_names " in # " " in the beginning catches empty $dlname *" $dlname "*) ;; *) rmfiles="$rmfiles $objdir/$dlname" ;; esac test -n "$libdir" && rmfiles="$rmfiles $objdir/$name $objdir/${name}i" ;; uninstall) if test -n "$library_names"; then # Do each command in the postuninstall commands. func_execute_cmds "$postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' fi if test -n "$old_library"; then # Do each command in the old_postuninstall commands. func_execute_cmds "$old_postuninstall_cmds" 'test "$rmforce" = yes || exit_status=1' fi # FIXME: should reinstall the best remaining shared library. ;; esac fi ;; *.lo) # Possibly a libtool object, so verify it. if func_lalib_p "$file"; then # Read the .lo file func_source $dir/$name # Add PIC object to the list of files to remove. if test -n "$pic_object" && test "$pic_object" != none; then rmfiles="$rmfiles $dir/$pic_object" fi # Add non-PIC object to the list of files to remove. if test -n "$non_pic_object" && test "$non_pic_object" != none; then rmfiles="$rmfiles $dir/$non_pic_object" fi fi ;; *) if test "$mode" = clean ; then noexename=$name case $file in *.exe) func_stripname '' '.exe' "$file" file=$func_stripname_result func_stripname '' '.exe' "$name" noexename=$func_stripname_result # $file with .exe has already been added to rmfiles, # add $file without .exe rmfiles="$rmfiles $file" ;; esac # Do a test to see if this is a libtool program. if func_ltwrapper_p "$file"; then if func_ltwrapper_executable_p "$file"; then func_ltwrapper_scriptname "$file" relink_command= func_source $func_ltwrapper_scriptname_result rmfiles="$rmfiles $func_ltwrapper_scriptname_result" else relink_command= func_source $dir/$noexename fi # note $name still contains .exe if it was in $file originally # as does the version of $file that was added into $rmfiles rmfiles="$rmfiles $objdir/$name $objdir/${name}S.${objext}" if test "$fast_install" = yes && test -n "$relink_command"; then rmfiles="$rmfiles $objdir/lt-$name" fi if test "X$noexename" != "X$name" ; then rmfiles="$rmfiles $objdir/lt-${noexename}.c" fi fi fi ;; esac func_show_eval "$RM $rmfiles" 'exit_status=1' done objdir="$origobjdir" # Try to remove the ${objdir}s in the directories where we deleted files for dir in $rmdirs; do if test -d "$dir"; then func_show_eval "rmdir $dir >/dev/null 2>&1" fi done exit $exit_status } { test "$mode" = uninstall || test "$mode" = clean; } && func_mode_uninstall ${1+"$@"} test -z "$mode" && { help="$generic_help" func_fatal_help "you must specify a MODE" } test -z "$exec_cmd" && \ func_fatal_help "invalid operation mode \`$mode'" if test -n "$exec_cmd"; then eval exec "$exec_cmd" exit $EXIT_FAILURE fi exit $exit_status # The TAGs below are defined such that we never get into a situation # in which we disable both kinds of libraries. Given conflicting # choices, we go for a static library, that is the most portable, # since we can't tell whether shared libraries were disabled because # the user asked for that or because the platform doesn't support # them. This is particularly important on AIX, because we don't # support having both static and shared libraries enabled at the same # time on that platform, so we default to a shared-only configuration. # If a disable-shared tag is given, we'll fallback to a static-only # configuration. But we'll never go from static-only to shared-only. # ### BEGIN LIBTOOL TAG CONFIG: disable-shared build_libtool_libs=no build_old_libs=yes # ### END LIBTOOL TAG CONFIG: disable-shared # ### BEGIN LIBTOOL TAG CONFIG: disable-static build_old_libs=`case $build_libtool_libs in yes) echo no;; *) echo yes;; esac` # ### END LIBTOOL TAG CONFIG: disable-static # Local Variables: # mode:shell-script # sh-indentation:2 # End: # vi:sw=2 fische-3.2/COPYING0000644000175000017500000010451411456057072010607 00000000000000 GNU GENERAL PUBLIC LICENSE Version 3, 29 June 2007 Copyright (C) 2007 Free Software Foundation, Inc. Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The GNU General Public License is a free, copyleft license for software and other kinds of works. The licenses for most software and other practical works are designed to take away your freedom to share and change the works. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change all versions of a program--to make sure it remains free software for all its users. We, the Free Software Foundation, use the GNU General Public License for most of our software; it applies also to any other work released this way by its authors. You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for them if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs, and that you know you can do these things. To protect your rights, we need to prevent others from denying you these rights or asking you to surrender the rights. Therefore, you have certain responsibilities if you distribute copies of the software, or if you modify it: responsibilities to respect the freedom of others. For example, if you distribute copies of such a program, whether gratis or for a fee, you must pass on to the recipients the same freedoms that you received. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. Developers that use the GNU GPL protect your rights with two steps: (1) assert copyright on the software, and (2) offer you this License giving you legal permission to copy, distribute and/or modify it. For the developers' and authors' protection, the GPL clearly explains that there is no warranty for this free software. For both users' and authors' sake, the GPL requires that modified versions be marked as changed, so that their problems will not be attributed erroneously to authors of previous versions. Some devices are designed to deny users access to install or run modified versions of the software inside them, although the manufacturer can do so. This is fundamentally incompatible with the aim of protecting users' freedom to change the software. The systematic pattern of such abuse occurs in the area of products for individuals to use, which is precisely where it is most unacceptable. Therefore, we have designed this version of the GPL to prohibit the practice for those products. If such problems arise substantially in other domains, we stand ready to extend this provision to those domains in future versions of the GPL, as needed to protect the freedom of users. Finally, every program is threatened constantly by software patents. States should not allow patents to restrict development and use of software on general-purpose computers, but in those that do, we wish to avoid the special danger that patents applied to a free program could make it effectively proprietary. To prevent this, the GPL assures that patents cannot be used to render the program non-free. The precise terms and conditions for copying, distribution and modification follow. TERMS AND CONDITIONS 0. Definitions. "This License" refers to version 3 of the GNU General Public License. "Copyright" also means copyright-like laws that apply to other kinds of works, such as semiconductor masks. "The Program" refers to any copyrightable work licensed under this License. Each licensee is addressed as "you". "Licensees" and "recipients" may be individuals or organizations. To "modify" a work means to copy from or adapt all or part of the work in a fashion requiring copyright permission, other than the making of an exact copy. The resulting work is called a "modified version" of the earlier work or a work "based on" the earlier work. A "covered work" means either the unmodified Program or a work based on the Program. To "propagate" a work means to do anything with it that, without permission, would make you directly or secondarily liable for infringement under applicable copyright law, except executing it on a computer or modifying a private copy. Propagation includes copying, distribution (with or without modification), making available to the public, and in some countries other activities as well. To "convey" a work means any kind of propagation that enables other parties to make or receive copies. Mere interaction with a user through a computer network, with no transfer of a copy, is not conveying. An interactive user interface displays "Appropriate Legal Notices" to the extent that it includes a convenient and prominently visible feature that (1) displays an appropriate copyright notice, and (2) tells the user that there is no warranty for the work (except to the extent that warranties are provided), that licensees may convey the work under this License, and how to view a copy of this License. If the interface presents a list of user commands or options, such as a menu, a prominent item in the list meets this criterion. 1. Source Code. The "source code" for a work means the preferred form of the work for making modifications to it. "Object code" means any non-source form of a work. A "Standard Interface" means an interface that either is an official standard defined by a recognized standards body, or, in the case of interfaces specified for a particular programming language, one that is widely used among developers working in that language. The "System Libraries" of an executable work include anything, other than the work as a whole, that (a) is included in the normal form of packaging a Major Component, but which is not part of that Major Component, and (b) serves only to enable use of the work with that Major Component, or to implement a Standard Interface for which an implementation is available to the public in source code form. A "Major Component", in this context, means a major essential component (kernel, window system, and so on) of the specific operating system (if any) on which the executable work runs, or a compiler used to produce the work, or an object code interpreter used to run it. The "Corresponding Source" for a work in object code form means all the source code needed to generate, install, and (for an executable work) run the object code and to modify the work, including scripts to control those activities. However, it does not include the work's System Libraries, or general-purpose tools or generally available free programs which are used unmodified in performing those activities but which are not part of the work. For example, Corresponding Source includes interface definition files associated with source files for the work, and the source code for shared libraries and dynamically linked subprograms that the work is specifically designed to require, such as by intimate data communication or control flow between those subprograms and other parts of the work. The Corresponding Source need not include anything that users can regenerate automatically from other parts of the Corresponding Source. The Corresponding Source for a work in source code form is that same work. 2. Basic Permissions. All rights granted under this License are granted for the term of copyright on the Program, and are irrevocable provided the stated conditions are met. This License explicitly affirms your unlimited permission to run the unmodified Program. The output from running a covered work is covered by this License only if the output, given its content, constitutes a covered work. This License acknowledges your rights of fair use or other equivalent, as provided by copyright law. You may make, run and propagate covered works that you do not convey, without conditions so long as your license otherwise remains in force. You may convey covered works to others for the sole purpose of having them make modifications exclusively for you, or provide you with facilities for running those works, provided that you comply with the terms of this License in conveying all material for which you do not control copyright. Those thus making or running the covered works for you must do so exclusively on your behalf, under your direction and control, on terms that prohibit them from making any copies of your copyrighted material outside their relationship with you. Conveying under any other circumstances is permitted solely under the conditions stated below. Sublicensing is not allowed; section 10 makes it unnecessary. 3. Protecting Users' Legal Rights From Anti-Circumvention Law. No covered work shall be deemed part of an effective technological measure under any applicable law fulfilling obligations under article 11 of the WIPO copyright treaty adopted on 20 December 1996, or similar laws prohibiting or restricting circumvention of such measures. When you convey a covered work, you waive any legal power to forbid circumvention of technological measures to the extent such circumvention is effected by exercising rights under this License with respect to the covered work, and you disclaim any intention to limit operation or modification of the work as a means of enforcing, against the work's users, your or third parties' legal rights to forbid circumvention of technological measures. 4. Conveying Verbatim Copies. You may convey verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice; keep intact all notices stating that this License and any non-permissive terms added in accord with section 7 apply to the code; keep intact all notices of the absence of any warranty; and give all recipients a copy of this License along with the Program. You may charge any price or no price for each copy that you convey, and you may offer support or warranty protection for a fee. 5. Conveying Modified Source Versions. You may convey a work based on the Program, or the modifications to produce it from the Program, in the form of source code under the terms of section 4, provided that you also meet all of these conditions: a) The work must carry prominent notices stating that you modified it, and giving a relevant date. b) The work must carry prominent notices stating that it is released under this License and any conditions added under section 7. This requirement modifies the requirement in section 4 to "keep intact all notices". c) You must license the entire work, as a whole, under this License to anyone who comes into possession of a copy. This License will therefore apply, along with any applicable section 7 additional terms, to the whole of the work, and all its parts, regardless of how they are packaged. This License gives no permission to license the work in any other way, but it does not invalidate such permission if you have separately received it. d) If the work has interactive user interfaces, each must display Appropriate Legal Notices; however, if the Program has interactive interfaces that do not display Appropriate Legal Notices, your work need not make them do so. A compilation of a covered work with other separate and independent works, which are not by their nature extensions of the covered work, and which are not combined with it such as to form a larger program, in or on a volume of a storage or distribution medium, is called an "aggregate" if the compilation and its resulting copyright are not used to limit the access or legal rights of the compilation's users beyond what the individual works permit. Inclusion of a covered work in an aggregate does not cause this License to apply to the other parts of the aggregate. 6. Conveying Non-Source Forms. You may convey a covered work in object code form under the terms of sections 4 and 5, provided that you also convey the machine-readable Corresponding Source under the terms of this License, in one of these ways: a) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by the Corresponding Source fixed on a durable physical medium customarily used for software interchange. b) Convey the object code in, or embodied in, a physical product (including a physical distribution medium), accompanied by a written offer, valid for at least three years and valid for as long as you offer spare parts or customer support for that product model, to give anyone who possesses the object code either (1) a copy of the Corresponding Source for all the software in the product that is covered by this License, on a durable physical medium customarily used for software interchange, for a price no more than your reasonable cost of physically performing this conveying of source, or (2) access to copy the Corresponding Source from a network server at no charge. c) Convey individual copies of the object code with a copy of the written offer to provide the Corresponding Source. This alternative is allowed only occasionally and noncommercially, and only if you received the object code with such an offer, in accord with subsection 6b. d) Convey the object code by offering access from a designated place (gratis or for a charge), and offer equivalent access to the Corresponding Source in the same way through the same place at no further charge. You need not require recipients to copy the Corresponding Source along with the object code. If the place to copy the object code is a network server, the Corresponding Source may be on a different server (operated by you or a third party) that supports equivalent copying facilities, provided you maintain clear directions next to the object code saying where to find the Corresponding Source. Regardless of what server hosts the Corresponding Source, you remain obligated to ensure that it is available for as long as needed to satisfy these requirements. e) Convey the object code using peer-to-peer transmission, provided you inform other peers where the object code and Corresponding Source of the work are being offered to the general public at no charge under subsection 6d. A separable portion of the object code, whose source code is excluded from the Corresponding Source as a System Library, need not be included in conveying the object code work. A "User Product" is either (1) a "consumer product", which means any tangible personal property which is normally used for personal, family, or household purposes, or (2) anything designed or sold for incorporation into a dwelling. In determining whether a product is a consumer product, doubtful cases shall be resolved in favor of coverage. For a particular product received by a particular user, "normally used" refers to a typical or common use of that class of product, regardless of the status of the particular user or of the way in which the particular user actually uses, or expects or is expected to use, the product. A product is a consumer product regardless of whether the product has substantial commercial, industrial or non-consumer uses, unless such uses represent the only significant mode of use of the product. "Installation Information" for a User Product means any methods, procedures, authorization keys, or other information required to install and execute modified versions of a covered work in that User Product from a modified version of its Corresponding Source. The information must suffice to ensure that the continued functioning of the modified object code is in no case prevented or interfered with solely because modification has been made. If you convey an object code work under this section in, or with, or specifically for use in, a User Product, and the conveying occurs as part of a transaction in which the right of possession and use of the User Product is transferred to the recipient in perpetuity or for a fixed term (regardless of how the transaction is characterized), the Corresponding Source conveyed under this section must be accompanied by the Installation Information. But this requirement does not apply if neither you nor any third party retains the ability to install modified object code on the User Product (for example, the work has been installed in ROM). The requirement to provide Installation Information does not include a requirement to continue to provide support service, warranty, or updates for a work that has been modified or installed by the recipient, or for the User Product in which it has been modified or installed. Access to a network may be denied when the modification itself materially and adversely affects the operation of the network or violates the rules and protocols for communication across the network. Corresponding Source conveyed, and Installation Information provided, in accord with this section must be in a format that is publicly documented (and with an implementation available to the public in source code form), and must require no special password or key for unpacking, reading or copying. 7. Additional Terms. "Additional permissions" are terms that supplement the terms of this License by making exceptions from one or more of its conditions. Additional permissions that are applicable to the entire Program shall be treated as though they were included in this License, to the extent that they are valid under applicable law. If additional permissions apply only to part of the Program, that part may be used separately under those permissions, but the entire Program remains governed by this License without regard to the additional permissions. When you convey a copy of a covered work, you may at your option remove any additional permissions from that copy, or from any part of it. (Additional permissions may be written to require their own removal in certain cases when you modify the work.) You may place additional permissions on material, added by you to a covered work, for which you have or can give appropriate copyright permission. Notwithstanding any other provision of this License, for material you add to a covered work, you may (if authorized by the copyright holders of that material) supplement the terms of this License with terms: a) Disclaiming warranty or limiting liability differently from the terms of sections 15 and 16 of this License; or b) Requiring preservation of specified reasonable legal notices or author attributions in that material or in the Appropriate Legal Notices displayed by works containing it; or c) Prohibiting misrepresentation of the origin of that material, or requiring that modified versions of such material be marked in reasonable ways as different from the original version; or d) Limiting the use for publicity purposes of names of licensors or authors of the material; or e) Declining to grant rights under trademark law for use of some trade names, trademarks, or service marks; or f) Requiring indemnification of licensors and authors of that material by anyone who conveys the material (or modified versions of it) with contractual assumptions of liability to the recipient, for any liability that these contractual assumptions directly impose on those licensors and authors. All other non-permissive additional terms are considered "further restrictions" within the meaning of section 10. If the Program as you received it, or any part of it, contains a notice stating that it is governed by this License along with a term that is a further restriction, you may remove that term. If a license document contains a further restriction but permits relicensing or conveying under this License, you may add to a covered work material governed by the terms of that license document, provided that the further restriction does not survive such relicensing or conveying. If you add terms to a covered work in accord with this section, you must place, in the relevant source files, a statement of the additional terms that apply to those files, or a notice indicating where to find the applicable terms. Additional terms, permissive or non-permissive, may be stated in the form of a separately written license, or stated as exceptions; the above requirements apply either way. 8. Termination. You may not propagate or modify a covered work except as expressly provided under this License. Any attempt otherwise to propagate or modify it is void, and will automatically terminate your rights under this License (including any patent licenses granted under the third paragraph of section 11). However, if you cease all violation of this License, then your license from a particular copyright holder is reinstated (a) provisionally, unless and until the copyright holder explicitly and finally terminates your license, and (b) permanently, if the copyright holder fails to notify you of the violation by some reasonable means prior to 60 days after the cessation. Moreover, your license from a particular copyright holder is reinstated permanently if the copyright holder notifies you of the violation by some reasonable means, this is the first time you have received notice of violation of this License (for any work) from that copyright holder, and you cure the violation prior to 30 days after your receipt of the notice. Termination of your rights under this section does not terminate the licenses of parties who have received copies or rights from you under this License. If your rights have been terminated and not permanently reinstated, you do not qualify to receive new licenses for the same material under section 10. 9. Acceptance Not Required for Having Copies. You are not required to accept this License in order to receive or run a copy of the Program. Ancillary propagation of a covered work occurring solely as a consequence of using peer-to-peer transmission to receive a copy likewise does not require acceptance. However, nothing other than this License grants you permission to propagate or modify any covered work. These actions infringe copyright if you do not accept this License. Therefore, by modifying or propagating a covered work, you indicate your acceptance of this License to do so. 10. Automatic Licensing of Downstream Recipients. Each time you convey a covered work, the recipient automatically receives a license from the original licensors, to run, modify and propagate that work, subject to this License. You are not responsible for enforcing compliance by third parties with this License. An "entity transaction" is a transaction transferring control of an organization, or substantially all assets of one, or subdividing an organization, or merging organizations. If propagation of a covered work results from an entity transaction, each party to that transaction who receives a copy of the work also receives whatever licenses to the work the party's predecessor in interest had or could give under the previous paragraph, plus a right to possession of the Corresponding Source of the work from the predecessor in interest, if the predecessor has it or can get it with reasonable efforts. You may not impose any further restrictions on the exercise of the rights granted or affirmed under this License. For example, you may not impose a license fee, royalty, or other charge for exercise of rights granted under this License, and you may not initiate litigation (including a cross-claim or counterclaim in a lawsuit) alleging that any patent claim is infringed by making, using, selling, offering for sale, or importing the Program or any portion of it. 11. Patents. A "contributor" is a copyright holder who authorizes use under this License of the Program or a work on which the Program is based. The work thus licensed is called the contributor's "contributor version". A contributor's "essential patent claims" are all patent claims owned or controlled by the contributor, whether already acquired or hereafter acquired, that would be infringed by some manner, permitted by this License, of making, using, or selling its contributor version, but do not include claims that would be infringed only as a consequence of further modification of the contributor version. For purposes of this definition, "control" includes the right to grant patent sublicenses in a manner consistent with the requirements of this License. Each contributor grants you a non-exclusive, worldwide, royalty-free patent license under the contributor's essential patent claims, to make, use, sell, offer for sale, import and otherwise run, modify and propagate the contents of its contributor version. In the following three paragraphs, a "patent license" is any express agreement or commitment, however denominated, not to enforce a patent (such as an express permission to practice a patent or covenant not to sue for patent infringement). To "grant" such a patent license to a party means to make such an agreement or commitment not to enforce a patent against the party. If you convey a covered work, knowingly relying on a patent license, and the Corresponding Source of the work is not available for anyone to copy, free of charge and under the terms of this License, through a publicly available network server or other readily accessible means, then you must either (1) cause the Corresponding Source to be so available, or (2) arrange to deprive yourself of the benefit of the patent license for this particular work, or (3) arrange, in a manner consistent with the requirements of this License, to extend the patent license to downstream recipients. "Knowingly relying" means you have actual knowledge that, but for the patent license, your conveying the covered work in a country, or your recipient's use of the covered work in a country, would infringe one or more identifiable patents in that country that you have reason to believe are valid. If, pursuant to or in connection with a single transaction or arrangement, you convey, or propagate by procuring conveyance of, a covered work, and grant a patent license to some of the parties receiving the covered work authorizing them to use, propagate, modify or convey a specific copy of the covered work, then the patent license you grant is automatically extended to all recipients of the covered work and works based on it. A patent license is "discriminatory" if it does not include within the scope of its coverage, prohibits the exercise of, or is conditioned on the non-exercise of one or more of the rights that are specifically granted under this License. You may not convey a covered work if you are a party to an arrangement with a third party that is in the business of distributing software, under which you make payment to the third party based on the extent of your activity of conveying the work, and under which the third party grants, to any of the parties who would receive the covered work from you, a discriminatory patent license (a) in connection with copies of the covered work conveyed by you (or copies made from those copies), or (b) primarily for and in connection with specific products or compilations that contain the covered work, unless you entered into that arrangement, or that patent license was granted, prior to 28 March 2007. Nothing in this License shall be construed as excluding or limiting any implied license or other defenses to infringement that may otherwise be available to you under applicable patent law. 12. No Surrender of Others' Freedom. If conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot convey a covered work so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not convey it at all. For example, if you agree to terms that obligate you to collect a royalty for further conveying from those to whom you convey the Program, the only way you could satisfy both those terms and this License would be to refrain entirely from conveying the Program. 13. Use with the GNU Affero General Public License. Notwithstanding any other provision of this License, you have permission to link or combine any covered work with a work licensed under version 3 of the GNU Affero General Public License into a single combined work, and to convey the resulting work. The terms of this License will continue to apply to the part which is the covered work, but the special requirements of the GNU Affero General Public License, section 13, concerning interaction through a network will apply to the combination as such. 14. Revised Versions of this License. The Free Software Foundation may publish revised and/or new versions of the GNU General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies that a certain numbered version of the GNU General Public License "or any later version" applies to it, you have the option of following the terms and conditions either of that numbered version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of the GNU General Public License, you may choose any version ever published by the Free Software Foundation. If the Program specifies that a proxy can decide which future versions of the GNU General Public License can be used, that proxy's public statement of acceptance of a version permanently authorizes you to choose that version for the Program. Later license versions may give you additional or different permissions. However, no additional obligations are imposed on any author or copyright holder as a result of your choosing to follow a later version. 15. Disclaimer of Warranty. THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 16. Limitation of Liability. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MODIFIES AND/OR CONVEYS THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. 17. Interpretation of Sections 15 and 16. If the disclaimer of warranty and limitation of liability provided above cannot be given local legal effect according to their terms, reviewing courts shall apply local law that most closely approximates an absolute waiver of all civil liability in connection with the Program, unless a warranty or assumption of liability accompanies a copy of the Program in return for a fee. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively state the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . Also add information on how to contact you by electronic and paper mail. If the program does terminal interaction, make it output a short notice like this when it starts in an interactive mode: Copyright (C) This program comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, your program's commands might be different; for a GUI interface, you would use an "about box". You should also get your employer (if you work as a programmer) or school, if any, to sign a "copyright disclaimer" for the program, if necessary. For more information on this, and how to apply and follow the GNU GPL, see . The GNU General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. But first, please read . fische-3.2/src/0000755000175000017500000000000011515541152010407 500000000000000fische-3.2/src/pulseaudio-samples.cpp0000644000175000017500000000426111514105522014646 00000000000000 /* * fische-3.2 * Copyright (C) Marcel Ebmer 2009-2010 * * fische-3.2 is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * fische-3.2 is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #include "driver.h" #ifdef HAVE_PULSE #include #include #endif // HAVE_PULSE #include #include #include "pulseaudio-samples.h" #include "ringbuffer.h" using namespace std; #ifdef HAVE_PULSE int sample_pulseaudio (void* arg) { sample_param_t* p = (sample_param_t*) arg; RingBuffer* ringbuffer = p->ringbuffer; bool* run = p->run; int err; pa_sample_spec ss; ss.format = PA_SAMPLE_S16LE; ss.channels = 2; ss.rate = 44100; pa_buffer_attr ba; ba.maxlength = -1; ba.fragsize = 128; char *buf = (char*) malloc (128); pa_simple *s = pa_simple_new (NULL, "fische", PA_STREAM_RECORD, NULL, "pcm_in", &ss, NULL, &ba, &err); if (!s) { cerr << "ERROR: cannot open PulseAudio stream: " << pa_strerror (err) << endl; exit (EXIT_FAILURE); } cout << "* created thread for sound sample acquisition (pulse)" << endl; int n = 0; while (*run) { n = pa_simple_read (s, buf, 128, &err); if (n < 0) { cerr << "ERROR: PulseAudio read failed: " << pa_strerror (err) << endl; exit (EXIT_FAILURE); } else { // write data ringbuffer->insert (buf, 128); } } cout << "* stopping sound sampling thread" << endl; pa_simple_free (s); free (buf); buf = NULL; return NULL; } #else // HAVE_PULSE int sample_pulseaudio (void* arg) { cout << "ERROR: PulseAudio driver not enabled at compile time." << endl; cout << " Please use a different audio input driver!" << endl; exit (EXIT_FAILURE); } #endif // HAVE_PULSE fische-3.2/src/ringbuffer.cpp0000644000175000017500000000500711514105522013162 00000000000000 /* * fische-3.2 * Copyright (C) Marcel Ebmer 2009-2010 * * fische-3.2 is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * fische-3.2 is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #include #include #include #include #include "ringbuffer.h" using namespace std; RingBuffer* RingBuffer::ms_instance = 0; RingBuffer::RingBuffer (int size) { if (size % 2 != 0) size ++; mp_Buffer = (char*) malloc (size); mp_ExportBuffer = (char*) malloc (size); if ( (!mp_ExportBuffer) || (!mp_Buffer) ) { cerr << "ERROR: cannot allocate memory for ringbuffer" << endl; exit (EXIT_FAILURE); } m_Cursor = 0; m_IsLocked = false; m_Size = size; m_IsFull = false; m_Inserted = 0; cout << "* created ringbuffer of size " << m_Size << endl; } RingBuffer::~RingBuffer() { free (mp_Buffer); free (mp_ExportBuffer); } void RingBuffer::release() { delete ms_instance; ms_instance = 0; } RingBuffer* RingBuffer::instance (int size) { if (!ms_instance) ms_instance = new RingBuffer (size); return ms_instance; } void RingBuffer::insert (char* src, int n) { if (n > m_Size) { cout << "ERROR: cannot insert " << dec << n << " bytes into ringbuffer of size " << dec << m_Size << endl; exit (EXIT_FAILURE); } while (m_IsLocked) usleep (89); m_IsLocked = true; int d = m_Size - m_Cursor; if (d >= n) memcpy (mp_Buffer + m_Cursor, src, n); else { memcpy (mp_Buffer + m_Cursor, src, d); memcpy (mp_Buffer, src + d, n - d); } m_Cursor += n; while (m_Cursor >= m_Size) m_Cursor -= m_Size; m_Inserted += n; if (m_Inserted >= m_Size) m_IsFull = true; m_IsLocked = false; } char* RingBuffer::get() { m_Inserted = 0; m_IsFull = false; while (m_IsLocked) usleep (97); m_IsLocked = true; int d = m_Size - m_Cursor; memcpy (mp_ExportBuffer, mp_Buffer + m_Cursor, d); memcpy (mp_ExportBuffer + d, mp_Buffer, m_Size - d); m_IsLocked = false; return mp_ExportBuffer; } int RingBuffer::size() const { return m_Size; } bool RingBuffer::ready() const { return m_IsFull; } fische-3.2/src/samples.h0000644000175000017500000000162211514105523012142 00000000000000 /* * fische-3.2 * Copyright (C) Marcel Ebmer 2009-2010 * * fische-3.2 is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * fische-3.2 is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #ifndef SAMPLES_H #define SAMPLES_H class RingBuffer; typedef struct sample_param_s { const char* device; RingBuffer* ringbuffer; bool* run; } sample_param_t; #endif // SAMPLES_H fische-3.2/src/wavepainter.h0000644000175000017500000000333411514105525013027 00000000000000 /* * fische-3.2 * Copyright (C) Marcel Ebmer 2009-2010 * * fische-3.2 is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * fische-3.2 is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #ifndef WAVEPAINTER_H #define WAVEPAINTER_H #include #include "vector.h" class SdlScreen; class VectorField; class RingBuffer; class WavePainter { private: static WavePainter* ms_instance; WavePainter (); public: void paint (); void beat (double bpm = 0); void changeColor (double bpm = 0, double energy = 0); void changeShape(); static WavePainter* instance(); private: inline void line (Vector& v1, Vector& v2, uint32_t c) { line ( (int) (m_X0 + v1.x()), (int) (m_Y0 + v1.y()), (int) (m_X0 + v2.x()), (int) (m_Y0 + v2.y()), c); } void line (int, int, int, int, uint32_t); int m_CenterX, m_CenterY; int m_Height; int m_Width; int m_Direction; int m_X0, m_Y0; SdlScreen* mp_SdlScreen; RingBuffer* mp_RingBuffer; int m_Shape; int m_Shapes; uint32_t m_Color1; uint32_t m_Color2; double m_Angle; bool m_IsRotating; double m_RotationIncrement; }; int roundToInt (double); #endif // WAVEPAINTER_H fische-3.2/src/dummyaudio-samples.h0000644000175000017500000000154211514105525014320 00000000000000 /* * fische-3.2 * Copyright (C) Marcel Ebmer 2009-2010 * * fische-3.2 is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * fische-3.2 is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #ifndef DUMMYAUDIOSAMPLES_H #define DUMMYAUDIOSAMPLES_H #include "samples.h" int sample_dummyaudio (void*); #endif // DUMMYAUDIOSAMPLES_H fische-3.2/src/analyst.h0000644000175000017500000000324011514105525012151 00000000000000/* * fische-3.2 * Copyright (C) Marcel Ebmer 2009-2010 * * fische-3.2 is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * fische-3.2 is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #ifndef ANALYST_H #define ANALYST_H #include class RingBuffer; class Configuration; class Analyst { private: static Analyst* ms_instance; private: Analyst(); ~Analyst(); public: static Analyst* instance(); void release(); public: int analyse(); double framesPerBeat() const { return m_FramesPerBeat; }; double relativeEnergy() const { return m_MovingAverage03 / m_MovingAverage30; } private: enum beatState {WAITING, MAYBEWAITING, BEAT}; RingBuffer* mp_RingBuffer; Configuration* mp_Configuration; enum beatState m_State; double m_MovingAverage30; double m_MovingAverage03; double m_StandardDeviation; double m_IntensityMa; double m_IntensityStd; double m_FramesPerBeat; int32_t m_FrameNumber; int32_t m_LastBeatFrame; std::vector m_BeatGapHistory; double level (int16_t*); double guessFramesPerBeat(); }; #endif // ANALYST_H fische-3.2/src/portaudio-samples.h0000644000175000017500000000153611514105522014151 00000000000000 /* * fische-3.2 * Copyright (C) Marcel Ebmer 2009-2010 * * fische-3.2 is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * fische-3.2 is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #ifndef PORTAUDIOSAMPLES_H #define PORTAUDIOSAMPLES_H #include "samples.h" int sample_portaudio (void*); #endif // PORTAUDIOSAMPLES_H fische-3.2/src/vectorfield.cpp0000644000175000017500000001525111515067577013363 00000000000000 /* * fische-3.2 * Copyright (C) Marcel Ebmer 2009-2010 * * fische-3.2 is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * fische-3.2 is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #include #include #include #include "vectorfield.h" #define N_FIELDS 20 using namespace std; VectorField* VectorField::ms_instance = 0; const double Pi = acos (-1); VectorField::VectorField (int x, int y, double* progress) { m_Width = x; m_Height = y; m_Diagonal = (int) (.5 + sqrt (pow ( (double) m_Width, 2) + pow ( (double) m_Height, 2))); m_CenterX = m_Width / 2; m_CenterY = m_Height / 2; pExportData = NULL; if (progress) *progress = 0; int n = 0; uint16_t* new_field = fillField (n); if (new_field) cout << "\n* calculating vectorfields: 5%"; if (progress) *progress = 1.0f / N_FIELDS; while (new_field) { m_Fields.push_back (new_field); n++; new_field = fillField (n); if (new_field) cout << "\r* calculating vectorfields: " << ( (n + 1) * 100) / N_FIELDS << "%"; fflush (stdout); if (progress) *progress = ( (double) (n + 1)) / N_FIELDS; } if (m_Fields.empty()) { cerr << "ERROR: unable to calculate any vectorfields. out of memory?" << endl; exit (EXIT_FAILURE); } pExportData = m_Fields.at (18); cout << "\n* successfully calculated " << m_Fields.size() << " different vectorfields\n" << endl; } VectorField::~VectorField() { for (unsigned int i = 0; i < m_Fields.size(); i++) { free (m_Fields[i]); } m_Fields.clear(); } VectorField* VectorField::instance (int x, int y, double* progress) { if (!ms_instance) ms_instance = new VectorField (x, y, progress); return ms_instance; } void VectorField::release() { delete ms_instance; ms_instance = 0; } char* VectorField::get() { return (char*) pExportData; } void VectorField::change() { int n = rand() % m_Fields.size(); while (pExportData == m_Fields[n]) n = rand() % m_Fields.size(); pExportData = m_Fields[n]; } int VectorField::width() const { return m_Width; } int VectorField::height() const { return m_Height; } void VectorField::randomize (Vector& vec, int n) { return; if (n % 2 == 0) n++; Vector randv ( (rand() % n) - n / 2, (rand() % n) - n / 2); vec += randv; } uint16_t* VectorField::fillField (int f) { uint16_t* field = (uint16_t*) malloc (m_Width * m_Height * 2); if (!field) return NULL; for (int x = 0; x < m_Width; x++) { for (int y = 0; y < m_Height; y++) { uint16_t* vector = field + x + y * m_Width; Vector p (x - m_CenterX, y - m_CenterY); Vector e = p.singleUnit(); Vector n = e.normal(); double r = p.length(); Vector p1; if (m_Width >= m_Height) p1 = Vector (x - m_CenterX / 3, y - m_CenterY); else p1 = Vector (x - m_CenterX, y - m_CenterY / 3); Vector e1 = p1.singleUnit(); Vector n1 = e1.normal(); double r1 = p1.length(); Vector p2; if (m_Width >= m_Height) p2 = Vector (x - m_Width * 5 / 6, y - m_CenterY); else p2 = Vector (x - m_CenterX, y - m_Height * 5 / 6); Vector e2 = p2.singleUnit(); Vector n2 = e2.normal(); double r2 = p2.length(); Vector v; switch (f) { case 0: // linear vectors showing away from a horizontal mirror axis v = Vector (0, (y < m_CenterY) ? (yMax() / 100) : (-yMax() / 100)); break; case 1: // linear vectors showing away from a vertical mirror axis v = Vector ( (x < m_CenterX) ? (xMax() / 100) : (-xMax() / 100), 0); break; case 2: // radial vectors showing away from the center v = e * -r / 25; break; case 3: // tangential vectors (right) v = n * r / 25; break; case 4: // tangential vectors (left) v = n * -r / 25; break; case 5: // tangential-radial vectors (left) v = e * -r / 25 - n * r / 25; break; case 6: // tangential-radial vectors (right) v = e * -r / 25 + n * r / 25; break; case 7: { // tree rings double dv = cos (Pi * 20 * r / dimension()); v = e * 5 * dv; break; } case 8: { // hyperbolic vectors Vector _e (e.y(), e.x()); v = _e * -r / 25; break; } case 9: { // hyperbolic vectors Vector _e (e.y(), e.x()); v = _e * r / 25; break; } case 10: // purely random v = Vector (rand() % 21 - 10, rand() % 21 - 10); break; case 11: { // sphere double dv = cos (Pi * r / dimension()); v = e * -r * dv / 15; break; } case 12: { // sine distortion double dv = sin (Pi * 6 * r / dimension()); v = e * -r * dv / 25; break; } case 13: // black hole v = n * dimension() / 50 + e * r / 50; if (r < 10) v = Vector (0, 0); break; case 14: // black hole v = n * -dimension() / 50 + e * r / 50; if (r < 10) v = Vector (0, 0); break; case 15: { // circular waves double dim = 121 * pow (Pi, 2) / dimension(); double vx = r * dim; v = e * -10 * sqrt (1.04 - pow (cos (sqrt (vx)), 2) + 0.25 * pow (sin (sqrt (vx)), 2)); break; } case 16: // spinning CD if (fabs (r - (dimension() / 4)) < dimension() * 1 / 6) v = n * r / 25; //if ( (int) (sqrt (sqrt (r * 200 / dimension() ) ) ) % 2 == 0) v = n * r / 25; else v = n * -r / 25; break; case 17: // three spinning disks { double rt = (m_Width > m_Height) ? m_Width / 6 : m_Height / 6; if (r < rt * 1.2) { v = n * -r / 15; } else if (r1 < rt) { v = n1 * r1 / 15; } else if (r2 < rt) { v = n2 * r2 / 15; } else v = Vector (rand() % 21 - 10, rand() % 21 - 10); break; } case 18: // experimental v = e1 * (diagonal() - r1) / 100 + e2 * (diagonal() - r2) / 100 + e * (diagonal() - r) / -100; break; case 19: // experimental v = n1 * (diagonal() - r1) / -100 + n2 * (diagonal() - r2) / -100 + n * (diagonal() - r) / 100; break; default: // index too high. return nothing. free (field); return NULL; } randomize (v, 2); validate (v, x, y); *vector = v.toUint16(); } } return field; } int VectorField::dimension() const { return (m_Width > m_Height) ? m_Height : m_Width; } int VectorField::diagonal() const { return m_Diagonal; } fische-3.2/src/wavepainter.cpp0000644000175000017500000001543611514350635013374 00000000000000/* * fische-3.2 * Copyright (C) Marcel Ebmer 2009-2010 * * fische-3.2 is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * fische-3.2 is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #include #include #include #include #include "sdlscreen.h" #include "vectorfield.h" #include "ringbuffer.h" #include "wavepainter.h" #include "configuration.h" using namespace std; WavePainter* WavePainter::ms_instance = 0; WavePainter::WavePainter () { VectorField* v = VectorField::instance(); SdlScreen* s = SdlScreen::instance(); m_Height = v->height(); m_Width = v->width(); m_Y0 = (s->height() - v->height()) / 2; m_X0 = (s->width() - v->width()) / 2; mp_RingBuffer = RingBuffer::instance(); mp_SdlScreen = s; m_CenterX = m_X0 + m_Width / 2; m_CenterY = m_Y0 + m_Height / 2; m_Shape = 1; m_Shapes = 2; m_Color1 = rand() % 0xffffffff; m_Color2 = ~m_Color1; m_Angle = 0; m_Direction = 1; m_IsRotating = false; m_RotationIncrement = 0; } WavePainter* WavePainter::instance () { if (!ms_instance) ms_instance = new WavePainter(); return ms_instance; } void WavePainter::line (int x1, int y1, int x2, int y2, uint32_t color) { static uint32_t* pixels = (uint32_t*) mp_SdlScreen->pixels(); static int pitch = mp_SdlScreen->width(); int Dx = (x1 > x2) ? (x1 - x2) : (x2 - x1); int Dy = (y1 > y2) ? (y1 - y2) : (y2 - y1); int dx = (x2 < x1) ? -1 : 1; int dy = (y2 < y1) ? -1 : 1; if (!Dx && !Dy) return; if (Dx > Dy) { for (int x = x1; x * dx <= x2 * dx; x += dx) { int y = (int) ( (double) y1 + (double) Dy / (double) Dx * (double) dy * (double) abs (x - x1) + 0.5); if ( (x < m_X0) || (x >= m_X0 + m_Width) || (y < m_Y0) || (y >= m_Y0 + m_Height)) continue; * (pixels + y * pitch + x) = color; } } else { for (int y = y1; y * dy <= y2 * dy; y += dy) { int x = (int) ( (double) x1 + (double) Dx / (double) Dy * (double) dx * (double) abs (y - y1) + 0.5); if ( (x < m_X0) || (x >= m_X0 + m_Width) || (y < m_Y0) || (y >= m_Y0 + m_Height)) continue; * (pixels + y * pitch + x) = color; } } } void WavePainter::paint () { const double Pi = acos (-1); static double f = 0; if (m_IsRotating) { m_Angle += m_RotationIncrement; if ( (m_Angle > 2 * Pi) || (m_Angle < -2 * Pi)) { m_Angle = 0; m_IsRotating = false; } } int16_t* samples = (int16_t*) mp_RingBuffer->get(); int l = mp_RingBuffer->size() / 4; int dim = (m_Height < m_Width) ? m_Height : m_Width; int div = 196605 / dim; switch (m_Shape) { case 0: { Point base1 (m_Width / 2 + dim / 6 * sin (m_Angle), m_Height / 2 + dim / 6 * cos (m_Angle)); Vector n = base1 - Vector (m_Width / 2, m_Height / 2); n = n.normal(); Point start1 = base1.intersectBorder (n, m_Width, m_Height, Vector::LEFT); Point end1 = base1.intersectBorder (n, m_Width, m_Height, Vector::RIGHT); Point base2 (m_Width / 2 - dim / 6 * sin (m_Angle), m_Height / 2 - dim / 6 * cos (m_Angle)); n = base2 - Vector (m_Width / 2, m_Height / 2); n = n.normal(); Point start2 = base2.intersectBorder (n, m_Width, m_Height, Vector::LEFT); Point end2 = base2.intersectBorder (n, m_Width, m_Height, Vector::RIGHT); Vector v1 = end1 - start1; v1 /= l; Vector v2 = end2 - start2; v2 /= l; Vector n1 = v1.singleUnit().normal(); Vector n2 = v2.singleUnit().normal(); Point base, pt1, pt2; for (int i = 0; i < l - 1; i ++) { base = start1 + v1 * i; pt1 = base + n1 * (* (samples + 2 * i) / div); base += v1; pt2 = base + n1 * (* (samples + 2 * (i + 1)) / div); line (pt1, pt2, m_Color1); base = start2 + v2 * i; pt1 = base + n2 * (* (samples + 1 + 2 * i) / div); base += v2; pt2 = base + n2 * (* (samples + 1 + 2 * (i + 1)) / div); line (pt1, pt2, m_Color2); } return; } case 1: f = cos (Pi / 3 + 2 * m_Angle) + 0.5; for (int i = 0; i < l - 1; i ++) { double phi1 = Pi * (0.25 + (double) i / (double) l) + m_Angle; double phi2 = phi1 + Pi / (double) l; double r1 = dim / 4 + * (samples + 2 * i) / div; double r2 = dim / 4 + * (samples + 2 * (i + 1)) / div; int x1 = roundToInt (m_CenterX + f * r1 * sin (phi1)); int x2 = roundToInt (m_CenterX + f * r2 * sin (phi2)); int y1 = roundToInt (m_CenterY + r1 * cos (phi1)); int y2 = roundToInt (m_CenterY + r2 * cos (phi2)); line (x1, y1, x2, y2, m_Color1); phi1 += Pi; phi2 += Pi; r1 = dim / 4 + * (samples + 1 + 2 * i) / div; r2 = dim / 4 + * (samples + 1 + 2 * (i + 1)) / div; x1 = roundToInt (m_CenterX + f * r1 * sin (phi1)); x2 = roundToInt (m_CenterX + f * r2 * sin (phi2)); y1 = roundToInt (m_CenterY + r1 * cos (phi1)); y2 = roundToInt (m_CenterY + r2 * cos (phi2)); line (x1, y1, x2, y2, m_Color2); } return; } } void WavePainter::changeShape() { if (m_IsRotating) return; int n = rand() % m_Shapes; while (n == m_Shape) n = rand() % m_Shapes; m_Shape = n; } void WavePainter::beat (double bpm) { const double Pi = acos (-1); if (!m_IsRotating) { if (bpm) { m_Direction = 1 - 2 * (rand() % 2); m_RotationIncrement = Pi / bpm / 2 * m_Direction; m_Angle = 0; m_IsRotating = true; } } } void WavePainter::changeColor (double bpm, double energy) { if (!bpm && !energy) { m_Color1 = rand() % 0xffffffff; m_Color2 = ~m_Color1; } if (!bpm) return; double hue = bpm / 5; while (hue >= 6) hue -= 6; double sv = (energy > 1) ? 1 : pow (energy, 4); double x = sv * (1 - abs ( ( (int) hue) % 2 - 1)); double r, g, b; switch ( (int) hue) { case 0: r = sv; g = x; b = 0; break; case 1: r = x; g = sv; b = 0; break; case 2: r = 0; g = sv; b = x; break; case 3: r = 0; g = x; b = sv; break; case 4: r = x; g = 0; b = sv; break; default: case 5: r = sv; g = 0; b = x; } uint32_t red = floor (r * 255 + 0.5); uint32_t green = floor (b * 255 + 0.5); uint32_t blue = floor (g * 255 + 0.5); m_Color1 = (0xff << 24) + (red << 16) + (green << 8) + blue; m_Color2 = ~m_Color1; } int roundToInt (double v) { if (v > 0) return (int) (v + 0.5); else return (int) (v - 0.5); } fische-3.2/src/busyindicator.h0000644000175000017500000000152211514105522013353 00000000000000/* * fische-3.2 * Copyright (C) Marcel Ebmer 2009-2010 * * fische-3.2 is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * fische-3.2 is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #ifndef BUSYINDICATOR_H #define BUSYINDICATOR_H int busy_indicator (void*); #endif //BUSYINDICATOR_H fische-3.2/src/busyindicator.cpp0000644000175000017500000000532511515540172013720 00000000000000 /* * fische-3.2 * Copyright (C) Marcel Ebmer 2009-2010 * * fische-3.2 is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * fische-3.2 is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PAR * TICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #include #include #include #include "sdlscreen.h" #include "vector.h" void line (SdlScreen* screen, int x1, int y1, int x2, int y2, uint32_t color) { int Dx = abs (x1 - x2); int Dy = abs (y1 - y2); int dx = (x2 < x1) ? -1 : 1; int dy = (y2 < y1) ? -1 : 1; uint32_t* pixels = (uint32_t*) screen->pixels(); int pitch = screen->width(); if ( (Dx == 0) && (Dy == 0)) return; if (Dx > Dy) { for (int x = x1; x * dx <= x2 * dx; x += dx) { int y = (int) ( (double) y1 + (double) Dy / (double) Dx * (double) dy * (double) abs (x - x1) + 0.5); * (pixels + y * pitch + x) = color; } } else { for (int y = y1; y * dy <= y2 * dy; y += dy) { int x = (int) ( (double) x1 + (double) Dx / (double) Dy * (double) dx * (double) abs (y - y1) + 0.5); * (pixels + y * pitch + x) = color; } } } int busy_indicator (void* p) { static double* progress = (double*) p; static SdlScreen* screen = SdlScreen::instance(); static double x0 = screen->width() / 2; static double y0 = screen->height() / 2; static double dim = (x0 > y0) ? y0 / 2 : x0 / 2; static Vector center (x0, y0); double last = -1; while (*progress < 1) { if (*progress == last) { usleep (10000); continue; } last = *progress; double angle = * progress * -2 * 3.1415 + 3.0415; Vector c1 (sin (angle) * dim, cos (angle) * dim); Vector c2 (sin (angle + 0.1) * dim, cos (angle + 0.1) * dim); Vector e1 = c1.singleUnit(); Vector e2 = c2.singleUnit(); Vector c3 = c2 - e2 * dim / 2; Vector c4 = c1 - e1 * dim / 2; c1 += center; c2 += center; c3 += center; c4 += center; screen->lock(); line (screen, c1.x(), c1.y(), c2.x(), c2.y(), 0xffffffff); line (screen, c2.x(), c2.y(), c3.x(), c3.y(), 0xffffffff); line (screen, c3.x(), c3.y(), c4.x(), c4.y(), 0xffffffff); line (screen, c4.x(), c4.y(), c1.x(), c1.y(), 0xffffffff); screen->unlock(); screen->update(); usleep (10000); } return 0; } fische-3.2/src/configuration.cpp0000644000175000017500000004105611515422215013706 00000000000000 /* * fische-3.2 * Copyright (C) Marcel Ebmer 2009-2010 * * fische-3.2 is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * fische-3.2 is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #include #include #include #include #include #include #include #include #include "driver.h" #include "configuration.h" using namespace std; Configuration* Configuration::ms_instance = 0; Configuration::Configuration (int count, char** args) { mp_AudioDevice = (const char*) malloc (64); strcpy ( (char*) mp_AudioDevice, "default"); m_Width = 0; m_Height = 0; m_VirtualWidth = 0; m_VirtualHeight = 0; m_IsFullscreen = false; m_IsNervous = false; m_Fps = 30; m_IsMultiThreaded = true; m_DoExitOnMouse = false; m_DoWriteConfig = true; #if defined(HAVE_PULSE) m_AudioDriver = PULSE; #elif defined(HAVE_ALSA) m_AudioDriver = ALSA; #elif defined(HAVE_PORTAUDIO) m_AudioDriver = PORTAUDIO; #else m_AudioDriver = DUMMY; #endif read_configfile(); static struct option long_options[] = { { "geometry", required_argument, 0, 'g' }, {"virtual", required_argument, 0, 'v'}, {"device", required_argument, 0, 'd'}, {"driver", required_argument, 0, 'D'}, {"fullscreen", no_argument, 0, 'f'}, {"fps", required_argument, 0, 's'}, {"single", no_argument, 0, '1'}, {"extra-nervous", no_argument, 0, 'e'}, {"exit-on-mouseevent", no_argument, 0, 'x'}, {"nowrite", no_argument, 0, 'n'}, {"help", no_argument, 0, 'h'}, {0, 0, 0, 0} }; int option_index = 0; int c; while ( (c = getopt_long (count, args, "g:v:d:D:fs:1pneh", long_options, &option_index)) != -1) { switch (c) { case 'g': set_geometry (optarg); break; case 'v': set_virtual (optarg); break; case 'd': set_device (optarg); break; case 'D': set_driver (optarg); break; case 'f': set_fullscreen ( (char*) ("true")); break; case 's': set_fps (optarg); break; case 'e': set_nervous ( (char*) ("true")); break; case '1': set_single ( (char*) ("true")); break; case 'x': set_eom ( (char*) ("true")); break; case 'n': m_DoWriteConfig = false; break; case 'h': case '?': help(); default: break; } } if (!m_Width) m_Width = 800; if (!m_Height) m_Height = 400; if (!m_VirtualWidth) m_VirtualWidth = m_Width; if (!m_VirtualHeight) m_VirtualHeight = m_Height; if (m_IsMultiThreaded) { m_ProcessorCores = cpu_detect(); cout << "* CPU cores: " << m_ProcessorCores << endl; if (m_ProcessorCores > 1) cout << "* using multi-threaded blur algorithm" << endl; else cout << "* using single-threaded blur algorithm" << endl; } else { m_ProcessorCores = 1; cout << "* CPU detection disabled on your request" << endl; } } Configuration::~Configuration() { if (m_DoWriteConfig) write_configfile(); } Configuration* Configuration::instance (int count, char** args) { if (!ms_instance) ms_instance = new Configuration (count, args); return ms_instance; } void Configuration::release() { delete ms_instance; ms_instance = 0; } void Configuration::toggleFullscreen() { if (m_IsFullscreen) m_IsFullscreen = false; else m_IsFullscreen = true; } void Configuration::help() { cout << endl; cout << "Usage: fische [-D (driver)] [-d (device)] [-g (X)x(Y)] [-v (X)x(Y)] [-f]" << endl; cout << " [-e] [-s (fps)] [-1] [-n] [-h]" << endl; cout << endl; cout << "Details:" << endl; cout << "--------------------------------------------------------------------------------" << endl; cout << "-D --driver (driver) Use the specified audio input driver. Presently" << endl; cout << " \"alsa\", \"pulse\", \"portaudio\" and \"dummy\"" << endl; cout << " are supported." << endl; cout << "--------------------------------------------------------------------------------" << endl; cout << "-d --device (device) (device) names the pcm capture device to get" << endl; cout << " the sound data from. On most systems, the default" << endl; cout << " will do just fine." << endl; cout << " This option is ignored with the\"pulse\" audio" << endl; cout << " and \"dummy\" audio drivers." << endl; cout << " \"portaudio\" knows the special device \"help\", which" << endl; cout << " will spit out all devices available." << endl; cout << "--------------------------------------------------------------------------------" << endl; cout << "-g --geometry (X)x(Y) (X) and (Y) specify the width and height of the" << endl; cout << " animation. default: 800x400" << endl; cout << "--------------------------------------------------------------------------------" << endl; cout << "-v --virtual (X)x(Y) (X) and (Y) specify the width and height of the" << endl; cout << " application window. Use this to prevent your" << endl; cout << " computer from trying to switch to non-existent" << endl; cout << " fullscreen resolutions." << endl; cout << "--------------------------------------------------------------------------------" << endl; cout << "-f --fullscreen Start up in fullscreen mode. At runtime, you can" << endl; cout << " toggle fullscreen mode by pressing 'F'." << endl; cout << "--------------------------------------------------------------------------------" << endl; cout << "-e --extra-nervous Use nervous mode. This brings more life to the" << endl; cout << " animation. However, not too many music genres go" << endl; cout << " well with it. Toggle by pressing 'N'." << endl; cout << "--------------------------------------------------------------------------------" << endl; cout << "-s --fps (fps) (fps) specifies the target frames per second." << endl; cout << " The default, 30, is what fische is designed for" << endl; cout << "--------------------------------------------------------------------------------" << endl; cout << "-1 --single Use only one CPU, even if there are more available" << endl; cout << " CPU detection is currently Linux-only." << endl; cout << "--------------------------------------------------------------------------------" << endl; cout << " --exit-on-mouseevent Exit when a mouse button is clicked" << endl; cout << " (useful mainly for touchscreens)" << endl; cout << "--------------------------------------------------------------------------------" << endl; cout << "-n --nowrite Do not update configuration file HOME/.fischerc" << endl; cout << "--------------------------------------------------------------------------------" << endl; cout << "-h --help This message." << endl; cout << "--------------------------------------------------------------------------------" << endl; cout << "RUNTIME CONTROLS ARE DOCUMENTED IN THE README AND ON THE MAN PAGE." << endl; cout << "--------------------------------------------------------------------------------" << endl; exit (EXIT_FAILURE); } void Configuration::set_geometry (char* value) { if (!strstr (value, "x")) { cerr << "ERROR: " << value << " is not a valid geometry string" << endl; help(); } sscanf (value, "%dx%d", &m_Width, &m_Height); if ( (m_Width < 16) || (m_Width > 4096) || (m_Height < 16) || (m_Height > 4096)) { cerr << "ERROR: goemetry string invalid" << endl; help(); } cout << "* using custom animation geometry " << m_Width << " by " << m_Height << endl; } void Configuration::set_virtual (char* value) { if (!strncmp (value, "geometry", 8)) return; if (!strstr (value, "x")) { cerr << "ERROR: " << value << " is no valid virtual geometry string" << endl; help(); } sscanf (value, "%dx%d", &m_VirtualWidth, &m_VirtualHeight); if ( (m_VirtualWidth < 16) || (m_VirtualWidth > 4096) || (m_VirtualHeight < 16) || (m_VirtualHeight > 4096)) { cerr << "ERROR: virtual goemetry string invalid" << endl; help(); } if ( (m_VirtualWidth < m_Width) || (m_VirtualHeight < m_Height)) { cerr << "ERROR: virtual cannot be smaller than actual geometry" << endl; cerr << " Specify a smaller geometry FIRST" << endl; help(); } cout << "* using custom virtual geometry " << m_VirtualWidth << " by " << m_VirtualHeight << endl; } void Configuration::set_device (char* value) { strncpy ( (char*) mp_AudioDevice, value, 64); cout << "* using custom capture device: \"" << mp_AudioDevice << "\"" << endl; } void Configuration::set_driver (char* value) { if (!strcmp (value, "alsa")) m_AudioDriver = ALSA; else if (!strcmp (value, "pulse")) m_AudioDriver = PULSE; else if (!strcmp (value, "portaudio")) m_AudioDriver = PORTAUDIO; else if (!strcmp (value, "dummy")) m_AudioDriver = DUMMY; else { cout << "* unknown audio driver \"" << value << "\"." << endl; exit (EXIT_FAILURE); } switch (m_AudioDriver) { case ALSA: cout << "* using ALSA input" << endl; break; case PORTAUDIO: cout << "* using PortAudio input" << endl; break; case PULSE: cout << "* using PulseAudio input" << endl; break; case DUMMY: default: cout << "* WARNING: using dummy audio input" << endl; break; } } void Configuration::set_fps (char* value) { sscanf (value, "%d", &m_Fps); cout << "* using custom target fps = " << m_Fps << endl; } void Configuration::set_fullscreen (char* value) { if (!strcmp (value, "true")) { m_IsFullscreen = true; cout << "* fullscreen mode" << endl; } else m_IsFullscreen = false; } void Configuration::set_nervous (char* value) { if (!strcmp (value, "true")) { m_IsNervous = true; cout << "* nervous mode" << endl; } else m_IsNervous = false; } void Configuration::set_single (char* value) { if (!strcmp (value, "true")) { m_IsMultiThreaded = false; cout << "* using single-threaded algorithms on user request" << endl; } else m_IsMultiThreaded = true; } void Configuration::set_eom (char* value) { if (!strcmp (value, "true")) m_DoExitOnMouse = true; else m_DoExitOnMouse = false; } void Configuration::read_configfile() { m_ConfigFileIncludesExitOnMouse = false; m_ConfigFileIncludesSingleCPU = false; #ifdef __WIN32__ const char *homedir = getenv ("USERPROFILE"); #else const char *homedir = getenv ("HOME"); #endif // __WIN32__ if (!homedir) return; cout << "\n* ----START OF CONFIG FILE----" << endl; string filename = string (homedir) + string ("/.fischerc"); fstream configfile (filename.c_str(), fstream::in); if (configfile.is_open()) { cout << "* using saved configuration from " << filename << endl; char line[256]; char option[256]; char value[256]; while (!configfile.getline (line, 256).eof()) { if (strlen (line) < 3) continue; if (line[0] == '#') continue; sscanf (line, "%s = %s", option, value); if (!strcmp (option, "geometry")) set_geometry (value); else if (!strcmp (option, "virtual")) set_virtual (value); else if (!strcmp (option, "device")) set_device (value); else if (!strcmp (option, "driver")) set_driver (value); else if (!strcmp (option, "fullscreen")) set_fullscreen (value); else if (!strcmp (option, "nervous")) set_nervous (value); else if (!strcmp (option, "fps")) set_fps (value); else if (!strcmp (option, "single")) { m_ConfigFileIncludesSingleCPU = true; set_single (value); } else if (!strcmp (option, "exit-on-mouseevent")) { m_ConfigFileIncludesExitOnMouse = true; set_eom (value); } } configfile.close(); cout << "* -----END OF CONFIG FILE-----\n" << endl; } } void Configuration::write_configfile() { #ifdef __WIN32__ const char *homedir = getenv ("USERPROFILE"); #else const char *homedir = getenv ("HOME"); #endif // __WIN32__ if (!homedir) return; string filename = string (homedir) + string ("/.fischerc"); fstream configfile (filename.c_str(), fstream::out); if (configfile.is_open()) { cout << "* saving configuration to " << filename << endl; configfile << "#############################" << endl; configfile << "# fische configuration file #" << endl; configfile << "#############################" << endl << endl; configfile << "geometry = " << dec << m_Width << "x" << dec << m_Height << endl; if ( (m_VirtualWidth == m_Width) && (m_VirtualHeight == m_Height)) configfile << "virtual = geometry" << endl; else configfile << "virtual = " << dec << m_VirtualWidth << "x" << dec << m_VirtualHeight << endl; configfile << "device = " << mp_AudioDevice << endl; configfile << "fps = " << dec << m_Fps << endl; if (m_AudioDriver == ALSA) configfile << "driver = alsa" << endl; else if (m_AudioDriver == PULSE) configfile << "driver = pulse" << endl; else if (m_AudioDriver == PORTAUDIO) configfile << "driver = portaudio" << endl; if (m_IsFullscreen) configfile << "fullscreen = true" << endl; else configfile << "fullscreen = false" << endl; if (m_IsNervous) configfile << "nervous = true" << endl; else configfile << "nervous = false" << endl; configfile << "### uncomment to set single-CPU mode ###" << endl; if (m_ConfigFileIncludesSingleCPU) { if (!m_IsMultiThreaded) configfile << "single = true" << endl; else configfile << "single = false" << endl; } else configfile << "#single = true" << endl; configfile << "### uncomment to enable exit on mouse click ###" << endl; if (m_ConfigFileIncludesExitOnMouse) { if (m_DoExitOnMouse) configfile << "exit-on-mouseevent = true" << endl; else configfile << "exit-on-mouseevent = false" << endl; } else configfile << "#exit-on-mouseevent = true" << endl; } } #if defined(__x86_64__) /* OK to use cpuid */ void host_get_cpuid (uint32_t t, uint32_t* eax, uint32_t* ebx, uint32_t* ecx, uint32_t* edx) { asm ("pushq %%rbx\n\t" "movl %%esi, %%ebx\n\t" "cpuid\n\t" "movl %%ebx, %%esi\n\t" "popq %%rbx" : "=a" (*eax) , "=S" (*ebx) , "=c" (*ecx) , "=d" (*edx) : "a" (t) , "c" (0) , "S" (0) , "d" (0)); } #elif defined(__i386__) /* OK to use cpuid */ void host_get_cpuid (uint32_t t, uint32_t* eax, uint32_t* ebx, uint32_t* ecx, uint32_t* edx) { asm ("pushl %%ebx\n\t" "movl %%esi, %%ebx\n\t" "cpuid\n\t" "movl %%ebx, %%esi\n\t" "popl %%ebx" : "=a" (*eax) , "=S" (*ebx) , "=c" (*ecx) , "=d" (*edx) : "a" (t) , "c" (0) , "S" (0) , "d" (0)); } #endif int Configuration::cpu_detect() { #if defined(__i386__) || defined(__x86_64__) /* OK to use cpuid */ int n = 1; uint32_t eax, ebx, ecx, edx; host_get_cpuid (0x0, &eax, &ebx, &ecx, &edx); char cpuid[13]; strncpy (cpuid, (char*) &ebx, 4); strncpy (cpuid + 4, (char*) &edx, 4); strncpy (cpuid + 8, (char*) &ecx, 4); cpuid[12] = '\0'; cout << "* CPU ID is: " << cpuid << endl; if (!strcmp (cpuid, "AuthenticAMD")) { host_get_cpuid (0x80000000, &eax, &ebx, &ecx, &edx); if (eax < 0x80000008) return 1; host_get_cpuid (0x80000008, &eax, &ebx, &ecx, &edx); n = (ecx & 0xff) + 1; } else { /* if it's not AMD, it's most likely Intel */ host_get_cpuid (0x00000000, &eax, &ebx, &ecx, &edx); if (eax < 4) return 1; host_get_cpuid (0x4, &eax, &ebx, &ecx, &edx); n = (eax >> 26) + 1; } return n; #else /* don't have cpuid */ cout << "* CPU detection not available, assuming 1 core" << endl; return 1; #endif } fische-3.2/src/blurengine.cpp0000644000175000017500000000633111514105525013167 00000000000000/* * fische-3.2 * Copyright (C) Marcel Ebmer 2009-2010 * * fische-3.2 is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * fische-3.2 is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #include #include #include #include "blurengine.h" #include "vectorfield.h" #include "sdlscreen.h" #include "configuration.h" extern "C" { #include "traditional.h" } #include #ifdef __APPLE__ #include #else #include #endif // __APPLE__ using namespace std; BlurEngine* BlurEngine::ms_instance = 0; BlurEngine::BlurEngine() { mp_SdlScreen = SdlScreen::instance(); mp_Vectorfield = VectorField::instance(); m_X0 = (mp_SdlScreen->width() - mp_Vectorfield->width()) / 2; m_Y0 = (mp_SdlScreen->height() - mp_Vectorfield->height()) / 2; m_Width = mp_Vectorfield->width(); m_Height = mp_Vectorfield->height(); mp_Buffer = malloc (m_Width * m_Height * 4); if (!mp_Buffer) { cerr << "ERROR: unable to allocate memory for graphics buffer." << endl; exit (EXIT_FAILURE); } m_Cpus = Configuration::instance()->processorCores(); } BlurEngine::~BlurEngine() { free (mp_Buffer); mp_Buffer = NULL; } BlurEngine* BlurEngine::instance() { if (!ms_instance) ms_instance = new BlurEngine(); return ms_instance; } void BlurEngine::release() { delete ms_instance; ms_instance = 0; } void BlurEngine::blur() { mp_SdlScreen->lock(); if (m_Cpus == 1) blurTrad(); else blurTrad_MT(); writeBuffer(); mp_SdlScreen->unlock(); } void BlurEngine::blurTrad() { static blur_param_t p; p.pixels = mp_SdlScreen->pixels(); p.width = m_Width; p.y0 = m_Y0; p.x0 = m_X0; p.yMin = 0; p.yMax = m_Height; p.pitch = mp_SdlScreen->width(); p.vectors = (int8_t*) mp_Vectorfield->get(); p.buffer = mp_Buffer; traditional_blur (&p); } void BlurEngine::blurTrad_MT() { int n = m_Cpus; if (n > 8) n = 8; if (n % 2 != 0) n--; SDL_Thread* t[n]; blur_param_t p[n]; for (int i = 0; i < n; i ++) { p[i].pixels = mp_SdlScreen->pixels(); p[i].width = m_Width; p[i].y0 = m_Y0; p[i].x0 = m_X0; p[i].pitch = mp_SdlScreen->width(); p[i].vectors = (int8_t*) mp_Vectorfield->get(); p[i].buffer = mp_Buffer; p[i].yMin = (i * m_Height) / n; p[i].yMax = ( (i + 1) * m_Height) / n; t[i] = SDL_CreateThread (traditional_blur, &p[i]); } for (int i = 0; i < n; i ++) { SDL_WaitThread (t[i], NULL); } } void BlurEngine::emptyBuffer() { memset (mp_Buffer, 0, m_Width * m_Height * 4); } void BlurEngine::writeBuffer() { uint32_t* pixels = (uint32_t*) mp_SdlScreen->pixels(); uint32_t* src = (uint32_t*) mp_Buffer; int pitch = mp_SdlScreen->width(); for (int y = 0; y < m_Height; y ++) { memcpy (pixels + (y + m_Y0) * pitch + m_X0, src + y * m_Width, m_Width * 4); } } fische-3.2/src/analyst.cpp0000644000175000017500000001125711514105525012513 00000000000000 /* * fische-3.2 * Copyright (C) Marcel Ebmer 2009-2010 * * fische-3.2 is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * fische-3.2 is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #include #include //#include #include #include "analyst.h" #include "ringbuffer.h" #include "configuration.h" using namespace std; Analyst* Analyst::ms_instance = 0; Analyst::Analyst() { mp_RingBuffer = RingBuffer::instance(); mp_Configuration = Configuration::instance(); m_MovingAverage30 = 0; m_MovingAverage03 = 0; m_StandardDeviation = 0; m_IntensityMa = 0; m_IntensityStd = 0; m_State = WAITING; m_FrameNumber = 0; m_FramesPerBeat = 0; } Analyst::~Analyst() { m_BeatGapHistory.clear(); } Analyst* Analyst::instance() { if (!ms_instance) ms_instance = new Analyst(); return ms_instance; } void Analyst::release() { delete ms_instance; ms_instance = 0; } int Analyst::analyse() { m_FrameNumber ++; double relative_intensity = 0; int16_t* samples = (int16_t*) mp_RingBuffer->get(); double dezibel = level (samples); if (m_MovingAverage30 == 0) m_MovingAverage30 = dezibel; else m_MovingAverage30 = m_MovingAverage30 * 0.9667 + dezibel * 0.0333; m_StandardDeviation = m_StandardDeviation * 0.9667 + abs (dezibel - m_MovingAverage30) * 0.0333; if ( (m_FrameNumber - m_LastBeatFrame) > 90) { m_FramesPerBeat = 0; m_BeatGapHistory.clear(); } double new_frames_per_beat; switch (m_State) { case WAITING: // don't bother if intensity too low if (dezibel < m_MovingAverage30 + m_StandardDeviation) break; // initialisation fallbacks if (m_StandardDeviation == 0) relative_intensity = 1; // avoid div by 0 else relative_intensity = (dezibel - m_MovingAverage30) / m_StandardDeviation; if (m_IntensityMa == 0) m_IntensityMa = relative_intensity; // initial assignment else m_IntensityMa = m_IntensityMa * 0.95 + relative_intensity * 0.05; // update intensity standard deviation m_IntensityStd = m_IntensityStd * 0.95 + abs (m_IntensityMa - relative_intensity) * 0.05; // we DO have a beat m_State = BEAT; // update beat gap history m_BeatGapHistory.push_back (m_FrameNumber - m_LastBeatFrame); if (m_BeatGapHistory.size() > 30) m_BeatGapHistory.erase (m_BeatGapHistory.begin()); // remember this as the last beat m_LastBeatFrame = m_FrameNumber; // reset the short-term moving average m_MovingAverage03 = dezibel; // try a guess at the tempo new_frames_per_beat = guessFramesPerBeat(); if ( (m_FramesPerBeat) && (m_FramesPerBeat / new_frames_per_beat < 1.2) && (new_frames_per_beat / m_FramesPerBeat < 1.2)) m_FramesPerBeat = (m_FramesPerBeat * 2 + new_frames_per_beat) / 3; else m_FramesPerBeat = new_frames_per_beat; // return based on relative beat intensity if (relative_intensity > m_IntensityMa + 3 * m_IntensityStd) return 4; if (relative_intensity > m_IntensityMa + 2 * m_IntensityStd) return 3; if (relative_intensity > m_IntensityMa + 1 * m_IntensityStd) return 2; return 1; case BEAT: case MAYBEWAITING: // update short term moving average m_MovingAverage03 = m_MovingAverage03 * 0.6667 + dezibel * 0.3333; // needs to be low enough twice to exit BEAT state if (m_MovingAverage03 < m_MovingAverage30 + m_StandardDeviation) { if (m_State == MAYBEWAITING) m_State = WAITING; else m_State = MAYBEWAITING; return 0; } } // report level too low if (dezibel < -45) return -1; return 0; } double Analyst::level (int16_t* samples) { double E = 0; for (int ii = 0; ii < mp_RingBuffer->size() / 2; ii += 2) { E += abs ( (double) * (samples + ii)); E += abs ( (double) * (samples + ii + 1)); } if (E <= 0) E = 1; E = E / mp_RingBuffer->size() * 2; return log10 (E / 32768) * 10; } double Analyst::guessFramesPerBeat() { if (m_BeatGapHistory.size() < 30) return 0; vector gap; gap = m_BeatGapHistory; sort (gap.begin(), gap.end()); int guess = gap.at (14); double result = 0; int n = 0; for (unsigned int i = 0; i < gap.size(); i ++) { if (abs (gap.at (i) - guess) <= 2) { result += gap.at (i); n ++; } } return result / n; } fische-3.2/src/ringbuffer.h0000644000175000017500000000231211514105522012623 00000000000000 /* * fische-3.2 * Copyright (C) Marcel Ebmer 2009-2010 * * fische-3.2 is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * fische-3.2 is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #ifndef RINGBUFFER_H #define RINGBUFFER_H class RingBuffer { private: static RingBuffer* ms_instance; private: RingBuffer (int); ~RingBuffer(); public: static RingBuffer* instance (int size = 1200); void release(); public: void insert (char*, int); char* get(); int size() const; bool ready() const; private: char* mp_Buffer; char* mp_ExportBuffer; int m_Cursor; bool m_IsLocked; int m_Size; int m_Inserted; bool m_IsFull; }; #endif // RINGBUFFER_H fische-3.2/src/Makefile.am0000644000175000017500000000164211515116334012366 00000000000000## Process this file with automake to produce Makefile.in ## Created by Anjuta AM_CPPFLAGS = \ -DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \ -DPACKAGE_SRC_DIR=\""$(srcdir)"\" \ -DPACKAGE_DATA_DIR=\""$(datadir)"\" \ $(SDL_CFLAGS) AM_CFLAGS =\ -Wall\ -O2 bin_PROGRAMS = fische fische_SOURCES = \ main.cpp\ sdlscreen.cpp \ sdlscreen.h \ vectorfield.h \ vectorfield.cpp \ ringbuffer.h \ ringbuffer.cpp \ blurengine.h \ blurengine.cpp \ traditional.c \ traditional.h \ alsa-samples.cpp \ alsa-samples.h \ wavepainter.h \ wavepainter.cpp \ analyst.h \ analyst.cpp \ configuration.h \ configuration.cpp \ samples.h \ pulseaudio-samples.cpp \ pulseaudio-samples.h \ portaudio-samples.cpp \ portaudio-samples.h \ driver.h \ dummyaudio-samples.cpp \ dummyaudio-samples.h \ busyindicator.h \ busyindicator.cpp \ vector.h \ blur.h fische_LDFLAGS = fische_LDADD = \ $(SDL_LIBS) fische-3.2/src/vector.h0000644000175000017500000000503411512564570012012 00000000000000#ifndef VECTOR_H #define VECTOR_H #include #include class Vector { private: double m_X; double m_Y; public: enum direction {LEFT, RIGHT}; Vector (double x = 0, double y = 0) { m_X = x; m_Y = y; } // accessors double x() const { return m_X; } double y() const { return m_Y; } // vector properties inline double length() { return sqrt (pow (m_X, 2) + pow (m_Y, 2)); } // derived vectors Vector normal() { return (Vector (m_Y, -m_X)); } Vector singleUnit() { return Vector (m_X / length(), m_Y / length()); } // conversion to 2x uint8 inline uint16_t toUint16() { uint8_t ix = (m_X < 0) ? (int) (m_X - 0.5) : (int) (m_X + 0.5); uint8_t iy = (m_Y < 0) ? (int) (m_Y - 0.5) : (int) (m_Y + 0.5); return (iy << 8) + ix; } // vector algebra Vector& operator+= (Vector& other) { m_X += other.x(); m_Y += other.y(); return *this; } Vector& operator-= (Vector& other) { m_X -= other.x(); m_Y -= other.y(); return *this; } Vector& operator/= (double d) { m_X /= d; m_Y /= d; return *this; } Vector& operator*= (double d) { m_X *= d; m_Y *= d; return *this; } Vector operator+ (Vector other) { return Vector (m_X + other.x(), m_Y + other.y()); } Vector operator- (Vector other) { return Vector (m_X - other.x(), m_Y - other.y()); } Vector operator* (double d) { return Vector (m_X * d, m_Y * d); } Vector operator/ (double d) { return Vector (m_X / d, m_Y / d); } Vector intersectBorder (Vector& nv, int x, int y, direction d) { x--; y--; Vector n = nv; if (d == RIGHT) n = Vector (-nv.x(), -nv.y()); double t1, t2, t3, t4; if (n.x() == 0) { t1 = 1e6; t2 = 1e6; } else { t1 = -m_X / n.x(); t2 = (x - m_X) / n.x(); } if (n.y() == 0) { t3 = 1e6; t4 = 1e6; } else { t3 = -m_Y / n.y(); t4 = (y - m_Y) / n.y(); } t1 = (t1 < 0) ? 1e6 : t1; t2 = (t2 < 0) ? 1e6 : t2; t3 = (t3 < 0) ? 1e6 : t3; t4 = (t4 < 0) ? 1e6 : t4; double a = (t1 < t2) ? t1 : t2; double b = (t3 < t4) ? t3 : t4; double min_t = (a < b) ? a : b; if (min_t == 1e6) throw ("Fatal error in vector calculation"); int rx = (int) (m_X + n.x() * min_t); while (rx < 0) rx ++; while (rx > x) rx --; int ry = (int) (m_Y + n.y() * min_t); while (ry < 0) ry ++; while (ry > y) ry --; return Vector (rx, ry); } }; typedef Vector Point; #endif // VECTOR_H fische-3.2/src/sdlscreen.cpp0000644000175000017500000001116411514105525013017 00000000000000 /* * fische-3.2 * Copyright (C) Marcel Ebmer 2009-2010 * * fische-3.2 is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * fische-3.2 is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #ifdef WIN32 // please note that fische will not compile or run on windows // this is for development reasons only #include #else #include #endif // WIN32 #include #include #include "sdlscreen.h" using namespace std; SdlScreen* SdlScreen::ms_instance = 0; SdlScreen::SdlScreen (int x, int y, bool fs) { m_Width = x; m_Height = y; m_IsFullscreen = fs; if (SDL_Init (SDL_INIT_VIDEO) != 0) { cerr << "ERROR: could not initialize SDL" << endl; exit (EXIT_FAILURE); } int flags = SDL_SWSURFACE; if (m_IsFullscreen) flags |= SDL_FULLSCREEN; mp_Screen = SDL_SetVideoMode (m_Width, m_Height, 32, flags); if (!mp_Screen) { cerr << "ERROR: could not open requested video mode" << endl; exit (EXIT_FAILURE); } // do not show the mouse cursor SDL_ShowCursor (SDL_DISABLE); // leave cursor and keyboard available to other apps SDL_WM_GrabInput (SDL_GRAB_OFF); int bpp = mp_Screen->format->BitsPerPixel; if (bpp != 32) { cerr << "ERROR: could not set 32 bit pixel format" << endl; exit (EXIT_FAILURE); } m_Width = mp_Screen->w; m_Height = mp_Screen->h; cout << "* initialized " << mp_Screen->w << "x" << mp_Screen->h << "x" << bpp << " SDL surface with flags: "; if (mp_Screen->flags & SDL_HWSURFACE) cout << "HWSURFACE"; else cout << "SWSURFACE"; if (mp_Screen->flags & SDL_ASYNCBLIT) cout << "|ASYNCBLIT"; if (mp_Screen->flags & SDL_ANYFORMAT) cout << "|ANYFORMAT"; if (mp_Screen->flags & SDL_HWPALETTE) cout << "|HWPALETTE"; if (mp_Screen->flags & SDL_DOUBLEBUF) cout << "|DOUBLEBUF"; if (mp_Screen->flags & SDL_FULLSCREEN) cout << "|FULLSCREEN"; if (mp_Screen->flags & SDL_OPENGL) cout << "|OPENGL"; if (mp_Screen->flags & SDL_OPENGLBLIT) cout << "|OPENGLBLIT"; if (mp_Screen->flags & SDL_RESIZABLE) cout << "|RESIZABLE"; if (mp_Screen->flags & SDL_HWACCEL) cout << "|HWACCEL"; if (mp_Screen->flags & SDL_SRCCOLORKEY) cout << "|SRCCOLORKEY"; if (mp_Screen->flags & SDL_RLEACCEL) cout << "|RLEACCEL"; if (mp_Screen->flags & SDL_SRCALPHA) cout << "|SRCALPHA"; if (mp_Screen->flags & SDL_PREALLOC) cout << "|PREALLOC"; cout << endl; SDL_WM_SetCaption ("fische 3.2", "fische 3.2"); } SdlScreen::~SdlScreen() { SDL_ShowCursor (SDL_ENABLE); SDL_FreeSurface (mp_Screen); SDL_Quit(); } void SdlScreen::release() { delete ms_instance; ms_instance = 0; } SdlScreen* SdlScreen::instance (int x, int y, bool fs) { if (!ms_instance) ms_instance = new SdlScreen (x, y, fs); return ms_instance; } void SdlScreen::update() { SDL_UpdateRect (mp_Screen, 0, 0, 0, 0); } int SdlScreen::height() const { return m_Height; } int SdlScreen::width() const { return m_Width; } void* SdlScreen::pixels() { return mp_Screen->pixels; } void SdlScreen::lock() { SDL_LockSurface (mp_Screen); } void SdlScreen::unlock() { SDL_UnlockSurface (mp_Screen); } int SdlScreen::pitch() const { return mp_Screen->pitch; } bool SdlScreen::toggleFullscreen() { bool success = true; uint32_t flags = mp_Screen->flags; mp_Screen = SDL_SetVideoMode (0, 0, 0, mp_Screen->flags ^ SDL_FULLSCREEN); if (!mp_Screen) { mp_Screen = SDL_SetVideoMode (0, 0, 0, flags); success = false; } if (!mp_Screen) throw runtime_error ("Fullscreen switching error"); return success; } int SdlScreen::checkEvents() { SDL_Event event; int retval = CONTINUE; while (SDL_PollEvent (&event) ) { switch (event.type) { case SDL_MOUSEBUTTONDOWN: retval |= MOUSE; break; case SDL_KEYDOWN: switch (event.key.keysym.sym) { case SDLK_ESCAPE: retval |= EXIT; break; case SDLK_p: retval |= PAUSE; break; case SDLK_f: retval |= TOGGLE_FULLSCREEN; break; case SDLK_n: retval |= TOGGLE_NERVOUS; break; case SDLK_UP: retval |= PLUS; break; case SDLK_DOWN: retval |= MINUS; break; default: break; } break; case SDL_QUIT: retval |= EXIT; break; default: break; } } return ( retval ); } fische-3.2/src/Makefile.in0000644000175000017500000004654511515116365012416 00000000000000# Makefile.in generated by automake 1.11.1 from Makefile.am. # @configure_input@ # Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, # 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation, # Inc. # This Makefile.in is free software; the Free Software Foundation # gives unlimited permission to copy and/or distribute it, # with or without modifications, as long as this notice is preserved. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY, to the extent permitted by law; without # even the implied warranty of MERCHANTABILITY or FITNESS FOR A # PARTICULAR PURPOSE. @SET_MAKE@ VPATH = @srcdir@ pkgdatadir = $(datadir)/@PACKAGE@ pkgincludedir = $(includedir)/@PACKAGE@ pkglibdir = $(libdir)/@PACKAGE@ pkglibexecdir = $(libexecdir)/@PACKAGE@ am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd install_sh_DATA = $(install_sh) -c -m 644 install_sh_PROGRAM = $(install_sh) -c install_sh_SCRIPT = $(install_sh) -c INSTALL_HEADER = $(INSTALL_DATA) transform = $(program_transform_name) NORMAL_INSTALL = : PRE_INSTALL = : POST_INSTALL = : NORMAL_UNINSTALL = : PRE_UNINSTALL = : POST_UNINSTALL = : build_triplet = @build@ host_triplet = @host@ bin_PROGRAMS = fische$(EXEEXT) subdir = src DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in ACLOCAL_M4 = $(top_srcdir)/aclocal.m4 am__aclocal_m4_deps = $(top_srcdir)/configure.ac am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \ $(ACLOCAL_M4) mkinstalldirs = $(install_sh) -d CONFIG_HEADER = $(top_builddir)/config.h CONFIG_CLEAN_FILES = CONFIG_CLEAN_VPATH_FILES = am__installdirs = "$(DESTDIR)$(bindir)" PROGRAMS = $(bin_PROGRAMS) am_fische_OBJECTS = main.$(OBJEXT) sdlscreen.$(OBJEXT) \ vectorfield.$(OBJEXT) ringbuffer.$(OBJEXT) \ blurengine.$(OBJEXT) traditional.$(OBJEXT) \ alsa-samples.$(OBJEXT) wavepainter.$(OBJEXT) analyst.$(OBJEXT) \ configuration.$(OBJEXT) pulseaudio-samples.$(OBJEXT) \ portaudio-samples.$(OBJEXT) dummyaudio-samples.$(OBJEXT) \ busyindicator.$(OBJEXT) fische_OBJECTS = $(am_fische_OBJECTS) am__DEPENDENCIES_1 = fische_DEPENDENCIES = $(am__DEPENDENCIES_1) fische_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) \ $(fische_LDFLAGS) $(LDFLAGS) -o $@ DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir) depcomp = $(SHELL) $(top_srcdir)/depcomp am__depfiles_maybe = depfiles am__mv = mv -f COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \ $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) CCLD = $(CC) LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \ $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) CXXLD = $(CXX) CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \ --mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \ $(LDFLAGS) -o $@ SOURCES = $(fische_SOURCES) DIST_SOURCES = $(fische_SOURCES) ETAGS = etags CTAGS = ctags DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST) ACLOCAL = @ACLOCAL@ AMTAR = @AMTAR@ AR = @AR@ AUTOCONF = @AUTOCONF@ AUTOHEADER = @AUTOHEADER@ AUTOMAKE = @AUTOMAKE@ AWK = @AWK@ CC = @CC@ CCDEPMODE = @CCDEPMODE@ CFLAGS = @CFLAGS@ CPP = @CPP@ CPPFLAGS = @CPPFLAGS@ CXX = @CXX@ CXXCPP = @CXXCPP@ CXXDEPMODE = @CXXDEPMODE@ CXXFLAGS = @CXXFLAGS@ CYGPATH_W = @CYGPATH_W@ DEFS = @DEFS@ DEPDIR = @DEPDIR@ DSYMUTIL = @DSYMUTIL@ DUMPBIN = @DUMPBIN@ ECHO_C = @ECHO_C@ ECHO_N = @ECHO_N@ ECHO_T = @ECHO_T@ EGREP = @EGREP@ EXEEXT = @EXEEXT@ FGREP = @FGREP@ GREP = @GREP@ INSTALL = @INSTALL@ INSTALL_DATA = @INSTALL_DATA@ INSTALL_PROGRAM = @INSTALL_PROGRAM@ INSTALL_SCRIPT = @INSTALL_SCRIPT@ INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@ LD = @LD@ LDFLAGS = @LDFLAGS@ LIBOBJS = @LIBOBJS@ LIBS = @LIBS@ LIBTOOL = @LIBTOOL@ LIPO = @LIPO@ LN_S = @LN_S@ LTLIBOBJS = @LTLIBOBJS@ MAKEINFO = @MAKEINFO@ MKDIR_P = @MKDIR_P@ NM = @NM@ NMEDIT = @NMEDIT@ OBJDUMP = @OBJDUMP@ OBJEXT = @OBJEXT@ OTOOL = @OTOOL@ OTOOL64 = @OTOOL64@ PACKAGE = @PACKAGE@ PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ PACKAGE_NAME = @PACKAGE_NAME@ PACKAGE_STRING = @PACKAGE_STRING@ PACKAGE_TARNAME = @PACKAGE_TARNAME@ PACKAGE_URL = @PACKAGE_URL@ PACKAGE_VERSION = @PACKAGE_VERSION@ PATH_SEPARATOR = @PATH_SEPARATOR@ PKG_CONFIG = @PKG_CONFIG@ PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@ PKG_CONFIG_PATH = @PKG_CONFIG_PATH@ RANLIB = @RANLIB@ SDL_CFLAGS = @SDL_CFLAGS@ SDL_LIBS = @SDL_LIBS@ SED = @SED@ SET_MAKE = @SET_MAKE@ SHELL = @SHELL@ STRIP = @STRIP@ VERSION = @VERSION@ abs_builddir = @abs_builddir@ abs_srcdir = @abs_srcdir@ abs_top_builddir = @abs_top_builddir@ abs_top_srcdir = @abs_top_srcdir@ ac_ct_CC = @ac_ct_CC@ ac_ct_CXX = @ac_ct_CXX@ ac_ct_DUMPBIN = @ac_ct_DUMPBIN@ am__include = @am__include@ am__leading_dot = @am__leading_dot@ am__quote = @am__quote@ am__tar = @am__tar@ am__untar = @am__untar@ bindir = @bindir@ build = @build@ build_alias = @build_alias@ build_cpu = @build_cpu@ build_os = @build_os@ build_vendor = @build_vendor@ builddir = @builddir@ datadir = @datadir@ datarootdir = @datarootdir@ docdir = @docdir@ dvidir = @dvidir@ exec_prefix = @exec_prefix@ host = @host@ host_alias = @host_alias@ host_cpu = @host_cpu@ host_os = @host_os@ host_vendor = @host_vendor@ htmldir = @htmldir@ includedir = @includedir@ infodir = @infodir@ install_sh = @install_sh@ libdir = @libdir@ libexecdir = @libexecdir@ localedir = @localedir@ localstatedir = @localstatedir@ lt_ECHO = @lt_ECHO@ mandir = @mandir@ mkdir_p = @mkdir_p@ oldincludedir = @oldincludedir@ pdfdir = @pdfdir@ prefix = @prefix@ program_transform_name = @program_transform_name@ psdir = @psdir@ sbindir = @sbindir@ sharedstatedir = @sharedstatedir@ srcdir = @srcdir@ sysconfdir = @sysconfdir@ target_alias = @target_alias@ top_build_prefix = @top_build_prefix@ top_builddir = @top_builddir@ top_srcdir = @top_srcdir@ AM_CPPFLAGS = \ -DPACKAGE_LOCALE_DIR=\""$(prefix)/$(DATADIRNAME)/locale"\" \ -DPACKAGE_SRC_DIR=\""$(srcdir)"\" \ -DPACKAGE_DATA_DIR=\""$(datadir)"\" \ $(SDL_CFLAGS) AM_CFLAGS = \ -Wall\ -O2 fische_SOURCES = \ main.cpp\ sdlscreen.cpp \ sdlscreen.h \ vectorfield.h \ vectorfield.cpp \ ringbuffer.h \ ringbuffer.cpp \ blurengine.h \ blurengine.cpp \ traditional.c \ traditional.h \ alsa-samples.cpp \ alsa-samples.h \ wavepainter.h \ wavepainter.cpp \ analyst.h \ analyst.cpp \ configuration.h \ configuration.cpp \ samples.h \ pulseaudio-samples.cpp \ pulseaudio-samples.h \ portaudio-samples.cpp \ portaudio-samples.h \ driver.h \ dummyaudio-samples.cpp \ dummyaudio-samples.h \ busyindicator.h \ busyindicator.cpp \ vector.h \ blur.h fische_LDFLAGS = fische_LDADD = \ $(SDL_LIBS) all: all-am .SUFFIXES: .SUFFIXES: .c .cpp .lo .o .obj $(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps) @for dep in $?; do \ case '$(am__configure_deps)' in \ *$$dep*) \ ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \ && { if test -f $@; then exit 0; else break; fi; }; \ exit 1;; \ esac; \ done; \ echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu src/Makefile'; \ $(am__cd) $(top_srcdir) && \ $(AUTOMAKE) --gnu src/Makefile .PRECIOUS: Makefile Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status @case '$?' in \ *config.status*) \ cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \ *) \ echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \ cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \ esac; $(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(top_srcdir)/configure: $(am__configure_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(ACLOCAL_M4): $(am__aclocal_m4_deps) cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh $(am__aclocal_m4_deps): install-binPROGRAMS: $(bin_PROGRAMS) @$(NORMAL_INSTALL) test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)" @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ for p in $$list; do echo "$$p $$p"; done | \ sed 's/$(EXEEXT)$$//' | \ while read p p1; do if test -f $$p || test -f $$p1; \ then echo "$$p"; echo "$$p"; else :; fi; \ done | \ sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \ -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \ sed 'N;N;N;s,\n, ,g' | \ $(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \ { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \ if ($$2 == $$4) files[d] = files[d] " " $$1; \ else { print "f", $$3 "/" $$4, $$1; } } \ END { for (d in files) print "f", d, files[d] }' | \ while read type dir files; do \ if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \ test -z "$$files" || { \ echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \ $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \ } \ ; done uninstall-binPROGRAMS: @$(NORMAL_UNINSTALL) @list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \ files=`for p in $$list; do echo "$$p"; done | \ sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \ -e 's/$$/$(EXEEXT)/' `; \ test -n "$$list" || exit 0; \ echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \ cd "$(DESTDIR)$(bindir)" && rm -f $$files clean-binPROGRAMS: @list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \ echo " rm -f" $$list; \ rm -f $$list || exit $$?; \ test -n "$(EXEEXT)" || exit 0; \ list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \ echo " rm -f" $$list; \ rm -f $$list fische$(EXEEXT): $(fische_OBJECTS) $(fische_DEPENDENCIES) @rm -f fische$(EXEEXT) $(fische_LINK) $(fische_OBJECTS) $(fische_LDADD) $(LIBS) mostlyclean-compile: -rm -f *.$(OBJEXT) distclean-compile: -rm -f *.tab.c @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/alsa-samples.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/analyst.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/blurengine.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/busyindicator.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/configuration.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dummyaudio-samples.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/portaudio-samples.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pulseaudio-samples.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ringbuffer.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/sdlscreen.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/traditional.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vectorfield.Po@am__quote@ @AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/wavepainter.Po@am__quote@ .c.o: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c $< .c.obj: @am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'` .c.lo: @am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $< .cpp.o: @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $< .cpp.obj: @am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'` @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'` .cpp.lo: @am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $< @am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo @AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@ @AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@ @am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $< mostlyclean-libtool: -rm -f *.lo clean-libtool: -rm -rf .libs _libs ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ mkid -fID $$unique tags: TAGS TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) set x; \ here=`pwd`; \ list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ shift; \ if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \ test -n "$$unique" || unique=$$empty_fix; \ if test $$# -gt 0; then \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ "$$@" $$unique; \ else \ $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \ $$unique; \ fi; \ fi ctags: CTAGS CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \ $(TAGS_FILES) $(LISP) list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \ unique=`for i in $$list; do \ if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \ done | \ $(AWK) '{ files[$$0] = 1; nonempty = 1; } \ END { if (nonempty) { for (i in files) print i; }; }'`; \ test -z "$(CTAGS_ARGS)$$unique" \ || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \ $$unique GTAGS: here=`$(am__cd) $(top_builddir) && pwd` \ && $(am__cd) $(top_srcdir) \ && gtags -i $(GTAGS_ARGS) "$$here" distclean-tags: -rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags distdir: $(DISTFILES) @srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \ list='$(DISTFILES)'; \ dist_files=`for file in $$list; do echo $$file; done | \ sed -e "s|^$$srcdirstrip/||;t" \ -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \ case $$dist_files in \ */*) $(MKDIR_P) `echo "$$dist_files" | \ sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \ sort -u` ;; \ esac; \ for file in $$dist_files; do \ if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \ if test -d $$d/$$file; then \ dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \ if test -d "$(distdir)/$$file"; then \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \ cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \ find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \ fi; \ cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \ else \ test -f "$(distdir)/$$file" \ || cp -p $$d/$$file "$(distdir)/$$file" \ || exit 1; \ fi; \ done check-am: all-am check: check-am all-am: Makefile $(PROGRAMS) installdirs: for dir in "$(DESTDIR)$(bindir)"; do \ test -z "$$dir" || $(MKDIR_P) "$$dir"; \ done install: install-am install-exec: install-exec-am install-data: install-data-am uninstall: uninstall-am install-am: all-am @$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am installcheck: installcheck-am install-strip: $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \ install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \ `test -z '$(STRIP)' || \ echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install mostlyclean-generic: clean-generic: distclean-generic: -test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES) -test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES) maintainer-clean-generic: @echo "This command is intended for maintainers to use" @echo "it deletes files that may require special tools to rebuild." clean: clean-am clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am distclean: distclean-am -rm -rf ./$(DEPDIR) -rm -f Makefile distclean-am: clean-am distclean-compile distclean-generic \ distclean-tags dvi: dvi-am dvi-am: html: html-am html-am: info: info-am info-am: install-data-am: install-dvi: install-dvi-am install-dvi-am: install-exec-am: install-binPROGRAMS install-html: install-html-am install-html-am: install-info: install-info-am install-info-am: install-man: install-pdf: install-pdf-am install-pdf-am: install-ps: install-ps-am install-ps-am: installcheck-am: maintainer-clean: maintainer-clean-am -rm -rf ./$(DEPDIR) -rm -f Makefile maintainer-clean-am: distclean-am maintainer-clean-generic mostlyclean: mostlyclean-am mostlyclean-am: mostlyclean-compile mostlyclean-generic \ mostlyclean-libtool pdf: pdf-am pdf-am: ps: ps-am ps-am: uninstall-am: uninstall-binPROGRAMS .MAKE: install-am install-strip .PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \ clean-generic clean-libtool ctags distclean distclean-compile \ distclean-generic distclean-libtool distclean-tags distdir dvi \ dvi-am html html-am info info-am install install-am \ install-binPROGRAMS install-data install-data-am install-dvi \ install-dvi-am install-exec install-exec-am install-html \ install-html-am install-info install-info-am install-man \ install-pdf install-pdf-am install-ps install-ps-am \ install-strip installcheck installcheck-am installdirs \ maintainer-clean maintainer-clean-generic mostlyclean \ mostlyclean-compile mostlyclean-generic mostlyclean-libtool \ pdf pdf-am ps ps-am tags uninstall uninstall-am \ uninstall-binPROGRAMS # Tell versions [3.59,3.63) of GNU make to not export all variables. # Otherwise a system limit (for SysV at least) may be exceeded. .NOEXPORT: fische-3.2/src/traditional.c0000644000175000017500000000574011514105525013012 00000000000000/* * fische-3.2 * Copyright (C) Marcel Ebmer 2009-2010 * * fische-3.2 is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * fische-3.2 is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #include #include #include "traditional.h" int traditional_blur (void* arg) { blur_param_t* params = (blur_param_t*) arg; int8_t* vectors = params->vectors; int8_t* vector_pointer = NULL; const uint16_t width = params->width; const uint16_t width_x2 = 2 * width; const uint16_t y_start = params->yMin; const uint16_t y_stop = params->yMax; const uint16_t surface_pitch = params->pitch; uint32_t* pixels = (uint32_t*) params->pixels; uint32_t* source_pixel; uint32_t* destination_buffer = (uint32_t*) params->buffer; uint32_t* destination_pixel; uint32_t source_component[4]; const uint16_t y0 = params->y0; const uint16_t x0 = params->x0; const uint16_t two_lines = 2 * surface_pitch; const uint16_t one_line = surface_pitch; const uint16_t two_columns = 2; const uint16_t one_column = 1; uint16_t x, y; int8_t vector_x, vector_y; vector_pointer = vectors + y_start * width_x2; destination_pixel = destination_buffer + y_start * width; // vertical loop for (y = y_start; y < y_stop; y ++) { // horizontal loop for (x = 0; x < width; x ++) { // read the motion vector (actually its opposite) vector_x = * (vector_pointer + 0); vector_y = * (vector_pointer + 1); // point to the pixel at [present + motion vector] source_pixel = pixels + (y0 + y + vector_y) * surface_pitch + x0 + x + vector_x; // read the pixels at [source + (2,1)] [source + (-2,1)] [source + (0,-2)] // shift them right by 2 and remove the bits that overflow each byte source_component[0] = (* (source_pixel + one_line - two_columns) >> 2) & 0x3f3f3f3f; source_component[1] = (* (source_pixel + one_line + one_column) >> 2) & 0x3f3f3f3f; source_component[2] = (* (source_pixel - two_lines) >> 2) & 0x3f3f3f3f; source_component[3] = (* (source_pixel) >> 2) & 0x3f3f3f3f; // add those four components and write to the destination // increment destination pointer * (destination_pixel ++) = source_component[0]\ + source_component[1]\ + source_component[2]\ + source_component[3]; // increment vector source pointer vector_pointer += 2; } } return 0; } fische-3.2/src/sdlscreen.h0000644000175000017500000000270311514105523012461 00000000000000/* * fische-3.2 * Copyright (C) Marcel Ebmer 2009-2010 * * fische-3.2 is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * fische-3.2 is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #ifndef SDLSCREEN_H #define SDLSCREEN_H #define CONTINUE 0 #define EXIT 1 #define PAUSE 2 #define TOGGLE_FULLSCREEN 4 #define MOUSE 8 #define PLUS 16 #define MINUS 32 #define TOGGLE_NERVOUS 64 class SDL_Surface; class SdlScreen { private: static SdlScreen* ms_instance; private: SdlScreen (int, int, bool); ~SdlScreen(); public: static SdlScreen* instance (int x = 300, int y = 200, bool fs = false); void release(); public: int height() const; int width() const; void* pixels(); void lock(); void unlock(); int pitch() const; void update(); int checkEvents(); bool toggleFullscreen(); private: SDL_Surface* mp_Screen; int m_Width; int m_Height; bool m_IsFullscreen; }; #endif // SDLSCREEN_H fische-3.2/src/pulseaudio-samples.h0000644000175000017500000000154211514105522014312 00000000000000 /* * fische-3.2 * Copyright (C) Marcel Ebmer 2009-2010 * * fische-3.2 is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * fische-3.2 is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #ifndef PULSEAUDIOSAMPLES_H #define PULSEAUDIOSAMPLES_H #include "samples.h" int sample_pulseaudio (void*); #endif // PULSEAUDIOSAMPLES_H fische-3.2/src/alsa-samples.cpp0000644000175000017500000001066211514105525013421 00000000000000 /* * fische-3.2 * Copyright (C) Marcel Ebmer 2009-2010 * * fische-3.2 is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * fische-3.2 is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #include "driver.h" #ifdef HAVE_ALSA #include #endif // HAVE_ALSA #include #include #include "alsa-samples.h" #include "ringbuffer.h" /* workaround to enable build on kFreeBsd */ #ifndef EBADFD #define EBADFD 77 #endif using namespace std; #ifdef HAVE_ALSA int sample_alsa_pcm (void* arg) { sample_param_t* p = (sample_param_t*) arg; RingBuffer* ringbuffer = p->ringbuffer; const char* device = p->device; bool* run = p->run; int err; unsigned int rate = 44100; char *buf = (char*) malloc (128); snd_pcm_hw_params_t *hw_params; snd_pcm_t *capture_handle; if ( (err = snd_pcm_open (&capture_handle, device, SND_PCM_STREAM_CAPTURE, SND_PCM_NONBLOCK)) < 0) { cerr << "ERROR: cannot open audio device \"" << device << "\": " << snd_strerror (err) << endl; exit (EXIT_FAILURE); } if ( (err = snd_pcm_hw_params_malloc (&hw_params)) < 0) { cerr << "ERROR: cannot allocate hardware parameter structure: " << snd_strerror (err) << endl; exit (EXIT_FAILURE); } if ( (err = snd_pcm_hw_params_any (capture_handle, hw_params)) < 0) { cerr << "ERROR: cannot initialize hardware parameter structure: " << snd_strerror (err) << endl; exit (EXIT_FAILURE); } if ( (err = snd_pcm_hw_params_set_access (capture_handle, hw_params, SND_PCM_ACCESS_RW_INTERLEAVED)) < 0) { cerr << "ERROR: cannot set access type: " << snd_strerror (err) << endl; exit (EXIT_FAILURE); } if ( (err = snd_pcm_hw_params_set_format (capture_handle, hw_params, SND_PCM_FORMAT_S16_LE)) < 0) { cerr << "ERROR: cannot set sample format: " << snd_strerror (err) << endl; exit (EXIT_FAILURE); } if ( (err = snd_pcm_hw_params_set_rate_near (capture_handle, hw_params, &rate, 0)) < 0) { cerr << "ERROR: cannot set sample rate: " << snd_strerror (err) << endl; exit (EXIT_FAILURE); } if ( (err = snd_pcm_hw_params_set_channels (capture_handle, hw_params, 2)) < 0) { cerr << "ERROR: cannot set channel count: " << snd_strerror (err) << endl; exit (EXIT_FAILURE); } if ( (err = snd_pcm_hw_params (capture_handle, hw_params)) < 0) { cerr << "ERROR: cannot set parameters: " << snd_strerror (err) << endl; exit (EXIT_FAILURE); } snd_pcm_hw_params_free (hw_params); if ( (err = snd_pcm_prepare (capture_handle)) < 0) { cerr << "ERROR: cannot prepare audio interface for use: " << snd_strerror (err) << endl; exit (EXIT_FAILURE); } cout << "* created thread for sound sample acquisition (alsa)" << endl; int n = 0; int c = 0; while (*run) { n = snd_pcm_readi (capture_handle, buf, 32); // device not in correct state if ( (n == -EBADFD) || (n == -EPIPE)) { err = snd_pcm_prepare (capture_handle); if (err < 0) { cerr << "ERROR: cannot re-prepare audio interface for use: " << snd_strerror (err) << endl; exit (EXIT_FAILURE); } else if (c > 10) { cerr << "Unrecoverable ALSA error (" << snd_strerror (n) << "). giving up." << endl; exit (EXIT_FAILURE); } // increment error counter c ++; } // reading too early - no data available yet else if ( (n == -EAGAIN) || (n == 0)) usleep (1000); // other error else if (n < 0) { cerr << "ALSA ERROR " << -n << " (" << snd_strerror (n) << ")" << endl; cerr << "Please report this bug to fische at 26elf dot at." << endl; exit (EXIT_FAILURE); } // everything's fine else if (n > 0) { // write data ringbuffer->insert (buf, n * 4); // reset error counter c = 0; } } cout << "* stopping sound sampling thread" << endl; snd_pcm_close (capture_handle); free (buf); buf = NULL; return NULL; } #else // HAVE_ALSA int sample_alsa_pcm (void* arg) { cout << "ERROR: ALSA driver not enabled at compile time." << endl; cout << " Please use a different audio input driver!" << endl; exit (EXIT_FAILURE); } #endif // HAVE_ALSA fische-3.2/src/dummyaudio-samples.cpp0000644000175000017500000000355711514105522014660 00000000000000 /* * fische-3.2 * Copyright (C) Marcel Ebmer 2009-2010 * * fische-3.2 is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * fische-3.2 is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #include "driver.h" #include #include #include #include #include #include #include "dummyaudio-samples.h" #include "ringbuffer.h" using namespace std; const double pi = acos (-1); int sample_dummyaudio (void* arg) { sample_param_t* p = (sample_param_t*) arg; RingBuffer* ringbuffer = p->ringbuffer; bool* run = p->run; double fps = 173460 / ringbuffer->size(); int ticks_per_frame = 1000 / fps; unsigned int last_ticks = 0; void* buf = malloc (ringbuffer->size()); while (*run) { while (SDL_GetTicks() < last_ticks + ticks_per_frame) { usleep (1000); if (SDL_GetTicks() < last_ticks) break; } last_ticks = SDL_GetTicks(); if (last_ticks > 1e9) last_ticks = 0; // fix for late SDL initialisation double phi = 0; int I = rand() % 0x8000; int n = rand() % 200; for (int i = 0; i < ringbuffer->size() / 2; i += 2) { * ( ( (int16_t*) buf) + i) = I * sin (phi); * ( ( (int16_t*) buf) + i + 1) = I * cos (phi); phi += pi / ringbuffer->size() * n; } ringbuffer->insert ( (char*) buf, ringbuffer->size()); } cout << "* stopping sound sampling thread" << endl; return 0; } fische-3.2/src/blur.h0000644000175000017500000000166211514105522011445 00000000000000/* * fische-3.2 * Copyright (C) Marcel Ebmer 2009-2010 * * fische-3.2 is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * fische-3.2 is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #ifndef BLUR_H #define BLUR_H typedef struct blur_param_s { void* pixels; int width; int y0; int x0; int yMin; int yMax; int8_t* vectors; void* buffer; int pitch; } blur_param_t; #endif // BLUR_H fische-3.2/src/blurengine.h0000644000175000017500000000240511514105522012627 00000000000000/* * fische-3.2 * Copyright (C) Marcel Ebmer 2009-2010 * * fische-3.2 is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * fische-3.2 is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #ifndef BLURENGINE_H #define BLURENGINE_H class SdlScreen; class VectorField; class BlurEngine { private: static BlurEngine* ms_instance; private: BlurEngine(); ~BlurEngine(); public: static BlurEngine* instance(); void release(); public: void blur(); private: VectorField* mp_Vectorfield; SdlScreen* mp_SdlScreen; int m_X0; int m_Y0; int m_Width; int m_Height; int m_Cpus; void* mp_Buffer; void emptyBuffer(); void writeBuffer(); void blurTrad(); void blurTrad_MT(); }; #endif // BLURENGINE_H fische-3.2/src/configuration.h0000644000175000017500000000527711514105522013356 00000000000000/* * fische-3.2 * Copyright (C) Marcel Ebmer 2009-2010 * * fische-3.2 is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * fische-3.2 is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #ifndef CONFIGURATION_H #define CONFIGURATION_H class Configuration { private: static Configuration* ms_instance; private: Configuration (int, char**); ~Configuration(); public: static Configuration* instance (int count = 0, char** args = 0); void release(); public: enum audioDriver {ALSA, PULSE, DUMMY, PORTAUDIO}; int fpsTarget() const { return m_Fps; } const char* audioDevice() const { return mp_AudioDevice; } int width() const { return m_Width; } int height() const { return m_Height; } int virtualWidth() const { return m_VirtualWidth; } int virtualHeight() const { return m_VirtualHeight; } bool fullscreen() const { return m_IsFullscreen; } bool multiThreaded() const { return m_IsMultiThreaded; } int processorCores() const { return m_ProcessorCores; } bool exitOnMouse() const { return m_DoExitOnMouse; } bool nervous() const { return m_IsNervous; } int audioDriver() const { return m_AudioDriver; } void toggleNervous() { m_IsNervous = m_IsNervous ? false : true; } void toggleFullscreen(); private: const char* mp_AudioDevice; int m_Width; int m_Height; int m_VirtualWidth; int m_VirtualHeight; bool m_IsFullscreen; bool m_IsNervous; int m_Fps; bool m_IsMultiThreaded; int m_ProcessorCores; bool m_DoExitOnMouse; enum audioDriver m_AudioDriver; bool m_DoWriteConfig; bool m_ConfigFileIncludesExitOnMouse; bool m_ConfigFileIncludesSingleCPU; void help(); void set_geometry (char*); void set_nervous (char*); void set_virtual (char*); void set_device (char*); void set_driver (char*); void set_fullscreen (char*); void set_fps (char*); void set_single (char*); void set_eom (char*); void read_configfile(); void write_configfile(); int cpu_detect(); }; #endif // CONFIGURATION_H fische-3.2/src/main.cpp0000644000175000017500000001273511515540671011774 00000000000000/* * fische-3.2 * Copyright (C) Marcel Ebmer 2009-2010 * * fische-3.2 is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * fische-3.2 is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #ifdef __WIN32__ #include #endif // __WIN32__ #include #include #include #include #include #include #include #include "sdlscreen.h" #include "vectorfield.h" #include "ringbuffer.h" #include "blurengine.h" #include "alsa-samples.h" #include "pulseaudio-samples.h" #include "portaudio-samples.h" #include "dummyaudio-samples.h" #include "wavepainter.h" #include "analyst.h" #include "configuration.h" #include "busyindicator.h" using namespace std; bool g_sigint = false; // enable clean exit on Ctrl^C void sigint_caught (int) { cout << "\n* caught SIGINT" << endl; g_sigint = true; } int main (int argc, char** argv) { signal (SIGINT, sigint_caught); bool paused = false; uint32_t frames = 0; uint32_t ticks = 0; // initialize random number generator srand (time (NULL)); // read options from commandline (or file - TODO) Configuration* configuration = Configuration::instance (argc, argv); // create ringbuffer RingBuffer* ringbuffer = RingBuffer::instance (173460 / configuration->fpsTarget()); // create sampling thread static bool run = true; SDL_Thread* samplingThread; sample_param_t p; p.device = configuration->audioDevice(); p.ringbuffer = ringbuffer; p.run = &run; switch (configuration->audioDriver()) { case Configuration::ALSA: samplingThread = SDL_CreateThread (sample_alsa_pcm, &p); break; case Configuration::PULSE: samplingThread = SDL_CreateThread (sample_pulseaudio, &p); break; case Configuration::PORTAUDIO: samplingThread = SDL_CreateThread (sample_portaudio, &p); break; case Configuration::DUMMY: default: samplingThread = SDL_CreateThread (sample_dummyaudio, &p); break; } // initialize display SdlScreen* sdlscreen = SdlScreen::instance (configuration->virtualWidth(), configuration->virtualHeight(), configuration->fullscreen()); // indicate busy double progress = 0; SDL_Thread* busyThread = SDL_CreateThread (busy_indicator, &progress); // create vectors VectorField* vectorfield = VectorField::instance (configuration->width(), configuration->height(), &progress); if ( (vectorfield->width() > sdlscreen->width()) || (vectorfield->height() > sdlscreen->height())) { cerr << "ERROR: animation is bigger than screen can allow." << endl; exit (EXIT_FAILURE); } // end busy state progress = 1; SDL_WaitThread (busyThread, NULL); BlurEngine* blurengine = BlurEngine::instance(); WavePainter* wavepainter = WavePainter::instance(); Analyst* analyst = Analyst::instance(); int events; int analysis = 0; // main loop while (!g_sigint && ! ( (events = sdlscreen->checkEvents()) & EXIT)) { // check for mouse exit event if enabled if ( (events & MOUSE) && configuration->exitOnMouse()) break; // check for interesting events if (events & TOGGLE_FULLSCREEN) { if (sdlscreen->toggleFullscreen()) configuration->toggleFullscreen(); } if (events & TOGGLE_NERVOUS) configuration->toggleNervous(); if (events & PAUSE) paused = paused ? false : true; // paused? do nothing. if (paused) { usleep (10000); continue; } // wait until ringbuffer is full int sleepcount = 0; while (!ringbuffer->ready()) { usleep (1000); sleepcount ++; if (sleepcount > 100) break; } // ringbuffer not filling? in the meantime, check for new events. if (sleepcount > 100) continue; // analyse sound data if (configuration->audioDriver() == Configuration::DUMMY) { if (frames % 15 == 0) wavepainter->changeShape(); if (frames % 150 == 0) vectorfield->change(); if (frames % 450 == 0) wavepainter->beat (15); } else { analysis = analyst->analyse(); if (configuration->nervous()) { if (analysis >= 2) wavepainter->changeShape(); if (analysis >= 1) vectorfield->change(); } else { if (analysis >= 1) wavepainter->changeShape(); if (analysis >= 2) vectorfield->change(); } if (analysis >= 3) wavepainter->beat (analyst->framesPerBeat()); } // have fun wavepainter->changeColor (analyst->framesPerBeat(), analyst->relativeEnergy()); if (analysis != -1) wavepainter->paint(); sdlscreen->update(); blurengine->blur(); frames ++; if (frames == 1) ticks = SDL_GetTicks(); } // print out actual frames per second cout << "\n* actual fps was " << (double) (frames - 1) / (double) (SDL_GetTicks() - ticks) * 1000 << endl; // tell the sound sampling thread to quit run = false; SDL_WaitThread (samplingThread, NULL); analyst->release(); blurengine->release(); sdlscreen->release(); vectorfield->release(); ringbuffer->release(); configuration->release(); exit (EXIT_SUCCESS); } fische-3.2/src/traditional.h0000644000175000017500000000151311514105523013007 00000000000000/* * fische-3.2 * Copyright (C) Marcel Ebmer 2009-2010 * * fische-3.2 is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * fische-3.2 is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #ifndef TRADITIONAL_H #define TRADITIONAL_H #include "blur.h" int traditional_blur (void*); #endif // TRADITIONAL_H fische-3.2/src/vectorfield.h0000644000175000017500000000346711514105525013017 00000000000000 /* * fische-3.2 * Copyright (C) Marcel Ebmer 2009-2010 * * fische-3.2 is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * fische-3.2 is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #ifndef VECTORFIELD_H #define VECTORFIELD_H #include #include #include "vector.h" class VectorField { private: static VectorField* ms_instance; private: VectorField (int, int, double*); ~VectorField(); public: static VectorField* instance (int x = 300, int y = 200, double* progress = NULL); void release(); public: void change(); int width() const; int height() const; char* get(); int dimension() const; int diagonal() const; private: std::vector m_Fields; uint16_t* pExportData; int m_Width; int m_Height; int m_Diagonal; int m_CenterX; int m_CenterY; inline void validate (Vector& v, int x, int y) { Vector sx (1, 0); Vector sy (0, 1); while (x + v.x() < 2) v += sx; while (x + v.x() > m_Width - 3) v -= sx; while (y + v.y() < 2) v += sy; while (y + v.y() > m_Height - 3) v -= sy; } void randomize (Vector&, int); double xMax() const { return (double) m_Width; } double yMax() const { return (double) m_Height; } uint16_t* fillField (int); }; #endif // VECTORFIELD_H fische-3.2/src/driver.h0000644000175000017500000000266211514105522011775 00000000000000/* * fische-3.2 * Copyright (C) Marcel Ebmer 2009-2010 * * fische-3.2 is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * fische-3.2 is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #ifndef DRIVER_H #define DRIVER_H #ifdef HAVE_CONFIG_H #include "config.h" #if defined(HAVE_ALSA_ASOUNDLIB_H) && defined(HAVE_LIBASOUND) #define HAVE_ALSA #endif #if defined(HAVE_PULSE_SIMPLE_H) && defined(HAVE_LIBPULSE_SIMPLE) #define HAVE_PULSE #endif #if defined(HAVE_PORTAUDIO_H) && defined(HAVE_LIBPORTAUDIO) #define HAVE_PORTAUDIO #endif // without config.h assume all drivers present #else // HAVE_CONFIG_H #define HAVE_ALSA #define HAVE_PULSE #undef HAVE_PORTAUDIO #endif // HAVE_CONFIG_H // on windows or OSX - no autodetection. #if defined(__WIN32__) || defined(__APPLE__) #undef HAVE_ALSA #undef HAVE_PULSE #define HAVE_PORTAUDIO #endif // __WIN32__ #endif // DRIVER_H fische-3.2/src/alsa-samples.h0000644000175000017500000000151511514105521013057 00000000000000/* * fische-3.2 * Copyright (C) Marcel Ebmer 2009-2010 * * fische-3.2 is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * fische-3.2 is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #ifndef ALSASAMPLES_H #define ALSASAMPLES_H #include "samples.h" int sample_alsa_pcm (void*); #endif // ALSASAMPLES_H fische-3.2/src/portaudio-samples.cpp0000644000175000017500000000651311514105522014504 00000000000000 /* * fische-3.2 * Copyright (C) Marcel Ebmer 2009-2010 * * fische-3.2 is free software: you can redistribute it and/or modify it * under the terms of the GNU General Public License as published by the * Free Software Foundation, either version 2 of the License, or * (at your option) any later version. * * fische-3.2 is distributed in the hope that it will be useful, but * WITHOUT ANY WARRANTY; without even the implied warranty of * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. * See the GNU General Public License for more details. * * You should have received a copy of the GNU General Public License along * with this program. If not, see . */ #include "driver.h" #ifdef HAVE_PORTAUDIO #include #endif // HAVE_PORTAUDIO #include #include #include #include #include "portaudio-samples.h" #include "ringbuffer.h" using namespace std; #ifdef HAVE_PORTAUDIO static int paCallback (const void* in, void* out, unsigned long frames, const PaStreamCallbackTimeInfo* timeInfo, PaStreamCallbackFlags statusFlags, void* rb) { RingBuffer* ringbuffer = static_cast (rb); ringbuffer->insert ( (char*) in, frames * 4); return 0; } int sample_portaudio (void* arg) { sample_param_t* p = (sample_param_t*) arg; RingBuffer* ringbuffer = p->ringbuffer; bool* run = p->run; const char* device = p->device; int err = Pa_Initialize(); if (err != paNoError) { cout << "PortAudio error: " << Pa_GetErrorText (err) << endl; exit (EXIT_FAILURE); } bool help = false; // help ? if (!strncmp (device, "help", 4)) help = true; // device specified as index int index = atoi (device); // device "default" if (!strncmp (device, "default", 7)) index = Pa_GetDefaultInputDevice(); // other device else { const PaDeviceInfo* info; int numDevices = Pa_GetDeviceCount(); for (int i = 0; i < numDevices; i++) { info = Pa_GetDeviceInfo (i); if (help) cout << "+ device #" << i << ": " << info->name << endl; if (strncmp (info->name, device, strlen (device)) == 0) { index = i; } } } if (help) exit (EXIT_SUCCESS); cout << "* using portaudio device index " << index << endl; PaStreamParameters params; params.device = index; params.channelCount = 2; params.sampleFormat = paInt16; params.suggestedLatency = 0.0007; params.hostApiSpecificStreamInfo = NULL; PaStream* stream; err = Pa_OpenStream (&stream, ¶ms, NULL, 44100, 32, paNoFlag, paCallback, (void*) ringbuffer); if (err != paNoError) { cout << "PortAudio error: " << Pa_GetErrorText (err) << endl; exit (EXIT_FAILURE); } err = Pa_StartStream (stream); if (err != paNoError) { cout << "PortAudio error: " << Pa_GetErrorText (err) << endl; exit (EXIT_FAILURE); } cout << "* created thread for sound sample acquisition (portaudio)" << endl; while (*run) { usleep (100000); } cout << "* stopping sound sampling thread" << endl; err = Pa_StopStream (stream); if (err != paNoError) { cout << "PortAudio error: " << Pa_GetErrorText (err) << endl; exit (EXIT_FAILURE); } return 0; } #else // HAVE_PORTAUDIO int sample_portaudio (void* arg) { cout << "ERROR: PortAudio driver not enabled at compile time." << endl; cout << " Please use a different audio input driver!" << endl; exit (EXIT_FAILURE); } #endif // HAVE_PORTAUDIO fische-3.2/NEWS0000644000175000017500000000000011456057072010234 00000000000000fische-3.2/install-sh0000644000175000017500000003246411456057072011561 00000000000000#!/bin/sh # install - install a program, script, or datafile scriptversion=2006-12-25.00 # This originates from X11R5 (mit/util/scripts/install.sh), which was # later released in X11R6 (xc/config/util/install.sh) with the # following copyright and license. # # Copyright (C) 1994 X Consortium # # Permission is hereby granted, free of charge, to any person obtaining a copy # of this software and associated documentation files (the "Software"), to # deal in the Software without restriction, including without limitation the # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or # sell copies of the Software, and to permit persons to whom the Software is # furnished to do so, subject to the following conditions: # # The above copyright notice and this permission notice shall be included in # all copies or substantial portions of the Software. # # 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 # X CONSORTIUM BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN # AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNEC- # TION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. # # Except as contained in this notice, the name of the X Consortium shall not # be used in advertising or otherwise to promote the sale, use or other deal- # ings in this Software without prior written authorization from the X Consor- # tium. # # # FSF changes to this file are in the public domain. # # Calling this script install-sh is preferred over install.sh, to prevent # `make' implicit rules from creating a file called install from it # when there is no Makefile. # # This script is compatible with the BSD install script, but was written # from scratch. nl=' ' IFS=" "" $nl" # set DOITPROG to echo to test this script # Don't use :- since 4.3BSD and earlier shells don't like it. doit=${DOITPROG-} if test -z "$doit"; then doit_exec=exec else doit_exec=$doit fi # Put in absolute file names if you don't have them in your path; # or use environment vars. chgrpprog=${CHGRPPROG-chgrp} chmodprog=${CHMODPROG-chmod} chownprog=${CHOWNPROG-chown} cmpprog=${CMPPROG-cmp} cpprog=${CPPROG-cp} mkdirprog=${MKDIRPROG-mkdir} mvprog=${MVPROG-mv} rmprog=${RMPROG-rm} stripprog=${STRIPPROG-strip} posix_glob='?' initialize_posix_glob=' test "$posix_glob" != "?" || { if (set -f) 2>/dev/null; then posix_glob= else posix_glob=: fi } ' posix_mkdir= # Desired mode of installed file. mode=0755 chgrpcmd= chmodcmd=$chmodprog chowncmd= mvcmd=$mvprog rmcmd="$rmprog -f" stripcmd= src= dst= dir_arg= dst_arg= copy_on_change=false no_target_directory= usage="\ Usage: $0 [OPTION]... [-T] SRCFILE DSTFILE or: $0 [OPTION]... SRCFILES... DIRECTORY or: $0 [OPTION]... -t DIRECTORY SRCFILES... or: $0 [OPTION]... -d DIRECTORIES... In the 1st form, copy SRCFILE to DSTFILE. In the 2nd and 3rd, copy all SRCFILES to DIRECTORY. In the 4th, create DIRECTORIES. Options: --help display this help and exit. --version display version info and exit. -c (ignored) -C install only if different (preserve the last data modification time) -d create directories instead of installing files. -g GROUP $chgrpprog installed files to GROUP. -m MODE $chmodprog installed files to MODE. -o USER $chownprog installed files to USER. -s $stripprog installed files. -t DIRECTORY install into DIRECTORY. -T report an error if DSTFILE is a directory. Environment variables override the default commands: CHGRPPROG CHMODPROG CHOWNPROG CMPPROG CPPROG MKDIRPROG MVPROG RMPROG STRIPPROG " while test $# -ne 0; do case $1 in -c) ;; -C) copy_on_change=true;; -d) dir_arg=true;; -g) chgrpcmd="$chgrpprog $2" shift;; --help) echo "$usage"; exit $?;; -m) mode=$2 case $mode in *' '* | *' '* | *' '* | *'*'* | *'?'* | *'['*) echo "$0: invalid mode: $mode" >&2 exit 1;; esac shift;; -o) chowncmd="$chownprog $2" shift;; -s) stripcmd=$stripprog;; -t) dst_arg=$2 shift;; -T) no_target_directory=true;; --version) echo "$0 $scriptversion"; exit $?;; --) shift break;; -*) echo "$0: invalid option: $1" >&2 exit 1;; *) break;; esac shift done if test $# -ne 0 && test -z "$dir_arg$dst_arg"; then # When -d is used, all remaining arguments are directories to create. # When -t is used, the destination is already specified. # Otherwise, the last argument is the destination. Remove it from $@. for arg do if test -n "$dst_arg"; then # $@ is not empty: it contains at least $arg. set fnord "$@" "$dst_arg" shift # fnord fi shift # arg dst_arg=$arg done fi if test $# -eq 0; then if test -z "$dir_arg"; then echo "$0: no input file specified." >&2 exit 1 fi # It's OK to call `install-sh -d' without argument. # This can happen when creating conditional directories. exit 0 fi if test -z "$dir_arg"; then trap '(exit $?); exit' 1 2 13 15 # Set umask so as not to create temps with too-generous modes. # However, 'strip' requires both read and write access to temps. case $mode in # Optimize common cases. *644) cp_umask=133;; *755) cp_umask=22;; *[0-7]) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw='% 200' fi cp_umask=`expr '(' 777 - $mode % 1000 ')' $u_plus_rw`;; *) if test -z "$stripcmd"; then u_plus_rw= else u_plus_rw=,u+rw fi cp_umask=$mode$u_plus_rw;; esac fi for src do # Protect names starting with `-'. case $src in -*) src=./$src;; esac if test -n "$dir_arg"; then dst=$src dstdir=$dst test -d "$dstdir" dstdir_status=$? else # Waiting for this to be detected by the "$cpprog $src $dsttmp" command # might cause directories to be created, which would be especially bad # if $src (and thus $dsttmp) contains '*'. if test ! -f "$src" && test ! -d "$src"; then echo "$0: $src does not exist." >&2 exit 1 fi if test -z "$dst_arg"; then echo "$0: no destination specified." >&2 exit 1 fi dst=$dst_arg # Protect names starting with `-'. case $dst in -*) dst=./$dst;; esac # If destination is a directory, append the input filename; won't work # if double slashes aren't ignored. if test -d "$dst"; then if test -n "$no_target_directory"; then echo "$0: $dst_arg: Is a directory" >&2 exit 1 fi dstdir=$dst dst=$dstdir/`basename "$src"` dstdir_status=0 else # Prefer dirname, but fall back on a substitute if dirname fails. dstdir=` (dirname "$dst") 2>/dev/null || expr X"$dst" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$dst" : 'X\(//\)[^/]' \| \ X"$dst" : 'X\(//\)$' \| \ X"$dst" : 'X\(/\)' \| . 2>/dev/null || echo X"$dst" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q' ` test -d "$dstdir" dstdir_status=$? fi fi obsolete_mkdir_used=false if test $dstdir_status != 0; then case $posix_mkdir in '') # Create intermediate dirs using mode 755 as modified by the umask. # This is like FreeBSD 'install' as of 1997-10-28. umask=`umask` case $stripcmd.$umask in # Optimize common cases. *[2367][2367]) mkdir_umask=$umask;; .*0[02][02] | .[02][02] | .[02]) mkdir_umask=22;; *[0-7]) mkdir_umask=`expr $umask + 22 \ - $umask % 100 % 40 + $umask % 20 \ - $umask % 10 % 4 + $umask % 2 `;; *) mkdir_umask=$umask,go-w;; esac # With -d, create the new directory with the user-specified mode. # Otherwise, rely on $mkdir_umask. if test -n "$dir_arg"; then mkdir_mode=-m$mode else mkdir_mode= fi posix_mkdir=false case $umask in *[123567][0-7][0-7]) # POSIX mkdir -p sets u+wx bits regardless of umask, which # is incompatible with FreeBSD 'install' when (umask & 300) != 0. ;; *) tmpdir=${TMPDIR-/tmp}/ins$RANDOM-$$ trap 'ret=$?; rmdir "$tmpdir/d" "$tmpdir" 2>/dev/null; exit $ret' 0 if (umask $mkdir_umask && exec $mkdirprog $mkdir_mode -p -- "$tmpdir/d") >/dev/null 2>&1 then if test -z "$dir_arg" || { # Check for POSIX incompatibilities with -m. # HP-UX 11.23 and IRIX 6.5 mkdir -m -p sets group- or # other-writeable bit of parent directory when it shouldn't. # FreeBSD 6.1 mkdir -m -p sets mode of existing directory. ls_ld_tmpdir=`ls -ld "$tmpdir"` case $ls_ld_tmpdir in d????-?r-*) different_mode=700;; d????-?--*) different_mode=755;; *) false;; esac && $mkdirprog -m$different_mode -p -- "$tmpdir" && { ls_ld_tmpdir_1=`ls -ld "$tmpdir"` test "$ls_ld_tmpdir" = "$ls_ld_tmpdir_1" } } then posix_mkdir=: fi rmdir "$tmpdir/d" "$tmpdir" else # Remove any dirs left behind by ancient mkdir implementations. rmdir ./$mkdir_mode ./-p ./-- 2>/dev/null fi trap '' 0;; esac;; esac if $posix_mkdir && ( umask $mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir" ) then : else # The umask is ridiculous, or mkdir does not conform to POSIX, # or it failed possibly due to a race condition. Create the # directory the slow way, step by step, checking for races as we go. case $dstdir in /*) prefix='/';; -*) prefix='./';; *) prefix='';; esac eval "$initialize_posix_glob" oIFS=$IFS IFS=/ $posix_glob set -f set fnord $dstdir shift $posix_glob set +f IFS=$oIFS prefixes= for d do test -z "$d" && continue prefix=$prefix$d if test -d "$prefix"; then prefixes= else if $posix_mkdir; then (umask=$mkdir_umask && $doit_exec $mkdirprog $mkdir_mode -p -- "$dstdir") && break # Don't fail if two instances are running concurrently. test -d "$prefix" || exit 1 else case $prefix in *\'*) qprefix=`echo "$prefix" | sed "s/'/'\\\\\\\\''/g"`;; *) qprefix=$prefix;; esac prefixes="$prefixes '$qprefix'" fi fi prefix=$prefix/ done if test -n "$prefixes"; then # Don't fail if two instances are running concurrently. (umask $mkdir_umask && eval "\$doit_exec \$mkdirprog $prefixes") || test -d "$dstdir" || exit 1 obsolete_mkdir_used=true fi fi fi if test -n "$dir_arg"; then { test -z "$chowncmd" || $doit $chowncmd "$dst"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dst"; } && { test "$obsolete_mkdir_used$chowncmd$chgrpcmd" = false || test -z "$chmodcmd" || $doit $chmodcmd $mode "$dst"; } || exit 1 else # Make a couple of temp file names in the proper directory. dsttmp=$dstdir/_inst.$$_ rmtmp=$dstdir/_rm.$$_ # Trap to clean up those temp files at exit. trap 'ret=$?; rm -f "$dsttmp" "$rmtmp" && exit $ret' 0 # Copy the file name to the temp name. (umask $cp_umask && $doit_exec $cpprog "$src" "$dsttmp") && # and set any options; do chmod last to preserve setuid bits. # # If any of these fail, we abort the whole thing. If we want to # ignore errors from any of these, just make sure not to ignore # errors from the above "$doit $cpprog $src $dsttmp" command. # { test -z "$chowncmd" || $doit $chowncmd "$dsttmp"; } && { test -z "$chgrpcmd" || $doit $chgrpcmd "$dsttmp"; } && { test -z "$stripcmd" || $doit $stripcmd "$dsttmp"; } && { test -z "$chmodcmd" || $doit $chmodcmd $mode "$dsttmp"; } && # If -C, don't bother to copy if it wouldn't change the file. if $copy_on_change && old=`LC_ALL=C ls -dlL "$dst" 2>/dev/null` && new=`LC_ALL=C ls -dlL "$dsttmp" 2>/dev/null` && eval "$initialize_posix_glob" && $posix_glob set -f && set X $old && old=:$2:$4:$5:$6 && set X $new && new=:$2:$4:$5:$6 && $posix_glob set +f && test "$old" = "$new" && $cmpprog "$dst" "$dsttmp" >/dev/null 2>&1 then rm -f "$dsttmp" else # Rename the file to the real destination. $doit $mvcmd -f "$dsttmp" "$dst" 2>/dev/null || # The rename failed, perhaps because mv can't rename something else # to itself, or perhaps because mv is so ancient that it does not # support -f. { # Now remove or move aside any old file at destination location. # We try this two ways since rm can't unlink itself on some # systems and the destination file might be busy for other # reasons. In this case, the final cleanup might fail but the new # file should still install successfully. { test ! -f "$dst" || $doit $rmcmd -f "$dst" 2>/dev/null || { $doit $mvcmd -f "$dst" "$rmtmp" 2>/dev/null && { $doit $rmcmd -f "$rmtmp" 2>/dev/null; :; } } || { echo "$0: cannot unlink or rename $dst" >&2 (exit 1); exit 1 } } && # Now rename the file to the real destination. $doit $mvcmd "$dsttmp" "$dst" } fi || exit 1 trap '' 0 fi done # Local variables: # eval: (add-hook 'write-file-hooks 'time-stamp) # time-stamp-start: "scriptversion=" # time-stamp-format: "%:y-%02m-%02d.%02H" # time-stamp-end: "$" # End: fische-3.2/configure0000755000175000017500000207053211514105436011460 00000000000000#! /bin/sh # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.67 for fische 3.2. # # # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1998, 1999, 2000, 2001, # 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010 Free Software # Foundation, Inc. # # # This configure script is free software; the Free Software Foundation # gives unlimited permission to copy, distribute and modify it. ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH if test "x$CONFIG_SHELL" = x; then as_bourne_compatible="if test -n \"\${ZSH_VERSION+set}\" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on \${1+\"\$@\"}, which # is contrary to our usage. Disable this feature. alias -g '\${1+\"\$@\"}'='\"\$@\"' setopt NO_GLOB_SUBST else case \`(set -o) 2>/dev/null\` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi " as_required="as_fn_return () { (exit \$1); } as_fn_success () { as_fn_return 0; } as_fn_failure () { as_fn_return 1; } as_fn_ret_success () { return 0; } as_fn_ret_failure () { return 1; } exitcode=0 as_fn_success || { exitcode=1; echo as_fn_success failed.; } as_fn_failure && { exitcode=1; echo as_fn_failure succeeded.; } as_fn_ret_success || { exitcode=1; echo as_fn_ret_success failed.; } as_fn_ret_failure && { exitcode=1; echo as_fn_ret_failure succeeded.; } if ( set x; as_fn_ret_success y && test x = \"\$1\" ); then : else exitcode=1; echo positional parameters were not saved. fi test x\$exitcode = x0 || exit 1" as_suggested=" as_lineno_1=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_1a=\$LINENO as_lineno_2=";as_suggested=$as_suggested$LINENO;as_suggested=$as_suggested" as_lineno_2a=\$LINENO eval 'test \"x\$as_lineno_1'\$as_run'\" != \"x\$as_lineno_2'\$as_run'\" && test \"x\`expr \$as_lineno_1'\$as_run' + 1\`\" = \"x\$as_lineno_2'\$as_run'\"' || exit 1 test \$(( 1 + 1 )) = 2 || exit 1" if (eval "$as_required") 2>/dev/null; then : as_have_required=yes else as_have_required=no fi if test x$as_have_required = xyes && (eval "$as_suggested") 2>/dev/null; then : else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR as_found=false for as_dir in /bin$PATH_SEPARATOR/usr/bin$PATH_SEPARATOR$PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. as_found=: case $as_dir in #( /*) for as_base in sh bash ksh sh5; do # Try only shells that exist, to save several forks. as_shell=$as_dir/$as_base if { test -f "$as_shell" || test -f "$as_shell.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$as_shell"; } 2>/dev/null; then : CONFIG_SHELL=$as_shell as_have_required=yes if { $as_echo "$as_bourne_compatible""$as_suggested" | as_run=a "$as_shell"; } 2>/dev/null; then : break 2 fi fi done;; esac as_found=false done $as_found || { if { test -f "$SHELL" || test -f "$SHELL.exe"; } && { $as_echo "$as_bourne_compatible""$as_required" | as_run=a "$SHELL"; } 2>/dev/null; then : CONFIG_SHELL=$SHELL as_have_required=yes fi; } IFS=$as_save_IFS if test "x$CONFIG_SHELL" != x; then : # We cannot yet assume a decent shell, so we have to provide a # neutralization value for shells without unset; and this also # works around shells that cannot unset nonexistent variables. BASH_ENV=/dev/null ENV=/dev/null (unset BASH_ENV) >/dev/null 2>&1 && unset BASH_ENV ENV export CONFIG_SHELL exec "$CONFIG_SHELL" "$as_myself" ${1+"$@"} fi if test x$as_have_required = xno; then : $as_echo "$0: This script requires a shell more modern than all" $as_echo "$0: the shells that I found on your system." if test x${ZSH_VERSION+set} = xset ; then $as_echo "$0: In particular, zsh $ZSH_VERSION has bugs and should" $as_echo "$0: be upgraded to zsh 4.3.4 or later." else $as_echo "$0: Please tell bug-autoconf@gnu.org about your system, $0: including any error possibly output before this $0: message. Then install a modern shell, or manually run $0: the script under such a shell if you do have one." fi exit 1 fi fi fi SHELL=${CONFIG_SHELL-/bin/sh} export SHELL # Unset more variables known to interfere with behavior of common tools. CLICOLOR_FORCE= GREP_OPTIONS= unset CLICOLOR_FORCE GREP_OPTIONS ## --------------------- ## ## M4sh Shell Functions. ## ## --------------------- ## # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits as_lineno_1=$LINENO as_lineno_1a=$LINENO as_lineno_2=$LINENO as_lineno_2a=$LINENO eval 'test "x$as_lineno_1'$as_run'" != "x$as_lineno_2'$as_run'" && test "x`expr $as_lineno_1'$as_run' + 1`" = "x$as_lineno_2'$as_run'"' || { # Blame Lee E. McMahon (1931-1989) for sed's syntax. :-) sed -n ' p /[$]LINENO/= ' <$as_myself | sed ' s/[$]LINENO.*/&-/ t lineno b :lineno N :loop s/[$]LINENO\([^'$as_cr_alnum'_].*\n\)\(.*\)/\2\1\2/ t loop s/-\n.*// ' >$as_me.lineno && chmod +x "$as_me.lineno" || { $as_echo "$as_me: error: cannot create $as_me.lineno; rerun with a POSIX shell" >&2; as_fn_exit 1; } # Don't try to exec as it changes $[0], causing all sort of problems # (the dirname of $[0] is not the place where we might find the # original and so on. Autoconf is especially sensitive to this). . "./$as_me.lineno" # Exit status is that of the last command. exit } ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -p'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -p' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' fi else as_ln_s='cp -p' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi if test -x / >/dev/null 2>&1; then as_test_x='test -x' else if ls -dL / >/dev/null 2>&1; then as_ls_L_option=L else as_ls_L_option= fi as_test_x=' eval sh -c '\'' if test -d "$1"; then test -d "$1/."; else case $1 in #( -*)set "./$1";; esac; case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( ???[sx]*):;;*)false;;esac;fi '\'' sh ' fi as_executable_p=$as_test_x # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" # Check that we are running under the correct shell. SHELL=${CONFIG_SHELL-/bin/sh} case X$lt_ECHO in X*--fallback-echo) # Remove one level of quotation (which was required for Make). ECHO=`echo "$lt_ECHO" | sed 's,\\\\\$\\$0,'$0','` ;; esac ECHO=${lt_ECHO-echo} if test "X$1" = X--no-reexec; then # Discard the --no-reexec flag, and continue. shift elif test "X$1" = X--fallback-echo; then # Avoid inline document here, it may be left over : elif test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' ; then # Yippee, $ECHO works! : else # Restart under the correct shell. exec $SHELL "$0" --no-reexec ${1+"$@"} fi if test "X$1" = X--fallback-echo; then # used as fallback echo shift cat <<_LT_EOF $* _LT_EOF exit 0 fi # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH if test -z "$lt_ECHO"; then if test "X${echo_test_string+set}" != Xset; then # find a string as large as possible, as long as the shell can cope with it for cmd in 'sed 50q "$0"' 'sed 20q "$0"' 'sed 10q "$0"' 'sed 2q "$0"' 'echo test'; do # expected sizes: less than 2Kb, 1Kb, 512 bytes, 16 bytes, ... if { echo_test_string=`eval $cmd`; } 2>/dev/null && { test "X$echo_test_string" = "X$echo_test_string"; } 2>/dev/null then break fi done fi if test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' && echo_testing_string=`{ $ECHO "$echo_test_string"; } 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then : else # The Solaris, AIX, and Digital Unix default echo programs unquote # backslashes. This makes it impossible to quote backslashes using # echo "$something" | sed 's/\\/\\\\/g' # # So, first we look for a working echo in the user's PATH. lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for dir in $PATH /usr/ucb; do IFS="$lt_save_ifs" if (test -f $dir/echo || test -f $dir/echo$ac_exeext) && test "X`($dir/echo '\t') 2>/dev/null`" = 'X\t' && echo_testing_string=`($dir/echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then ECHO="$dir/echo" break fi done IFS="$lt_save_ifs" if test "X$ECHO" = Xecho; then # We didn't find a better echo, so look for alternatives. if test "X`{ print -r '\t'; } 2>/dev/null`" = 'X\t' && echo_testing_string=`{ print -r "$echo_test_string"; } 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then # This shell has a builtin print -r that does the trick. ECHO='print -r' elif { test -f /bin/ksh || test -f /bin/ksh$ac_exeext; } && test "X$CONFIG_SHELL" != X/bin/ksh; then # If we have ksh, try running configure again with it. ORIGINAL_CONFIG_SHELL=${CONFIG_SHELL-/bin/sh} export ORIGINAL_CONFIG_SHELL CONFIG_SHELL=/bin/ksh export CONFIG_SHELL exec $CONFIG_SHELL "$0" --no-reexec ${1+"$@"} else # Try using printf. ECHO='printf %s\n' if test "X`{ $ECHO '\t'; } 2>/dev/null`" = 'X\t' && echo_testing_string=`{ $ECHO "$echo_test_string"; } 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then # Cool, printf works : elif echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` && test "X$echo_testing_string" = 'X\t' && echo_testing_string=`($ORIGINAL_CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then CONFIG_SHELL=$ORIGINAL_CONFIG_SHELL export CONFIG_SHELL SHELL="$CONFIG_SHELL" export SHELL ECHO="$CONFIG_SHELL $0 --fallback-echo" elif echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo '\t') 2>/dev/null` && test "X$echo_testing_string" = 'X\t' && echo_testing_string=`($CONFIG_SHELL "$0" --fallback-echo "$echo_test_string") 2>/dev/null` && test "X$echo_testing_string" = "X$echo_test_string"; then ECHO="$CONFIG_SHELL $0 --fallback-echo" else # maybe with a smaller string... prev=: for cmd in 'echo test' 'sed 2q "$0"' 'sed 10q "$0"' 'sed 20q "$0"' 'sed 50q "$0"'; do if { test "X$echo_test_string" = "X`eval $cmd`"; } 2>/dev/null then break fi prev="$cmd" done if test "$prev" != 'sed 50q "$0"'; then echo_test_string=`eval $prev` export echo_test_string exec ${ORIGINAL_CONFIG_SHELL-${CONFIG_SHELL-/bin/sh}} "$0" ${1+"$@"} else # Oops. We lost completely, so just stick with echo. ECHO=echo fi fi fi fi fi fi # Copy echo and quote the copy suitably for passing to libtool from # the Makefile, instead of quoting the original, which is used later. lt_ECHO=$ECHO if test "X$lt_ECHO" = "X$CONFIG_SHELL $0 --fallback-echo"; then lt_ECHO="$CONFIG_SHELL \\\$\$0 --fallback-echo" fi test -n "$DJDIR" || exec 7<&0 &1 # Name of the host. # hostname on some systems (SVR3.2, old GNU/Linux) returns a bogus exit status, # so uname gets run too. ac_hostname=`(hostname || uname -n) 2>/dev/null | sed 1q` # # Initializations. # ac_default_prefix=/usr/local ac_clean_files= ac_config_libobj_dir=. LIBOBJS= cross_compiling=no subdirs= MFLAGS= MAKEFLAGS= # Identity of this package. PACKAGE_NAME='fische' PACKAGE_TARNAME='fische' PACKAGE_VERSION='3.2' PACKAGE_STRING='fische 3.2' PACKAGE_BUGREPORT='' PACKAGE_URL='' # Factoring default headers for most tests. ac_includes_default="\ #include #ifdef HAVE_SYS_TYPES_H # include #endif #ifdef HAVE_SYS_STAT_H # include #endif #ifdef STDC_HEADERS # include # include #else # ifdef HAVE_STDLIB_H # include # endif #endif #ifdef HAVE_STRING_H # if !defined STDC_HEADERS && defined HAVE_MEMORY_H # include # endif # include #endif #ifdef HAVE_STRINGS_H # include #endif #ifdef HAVE_INTTYPES_H # include #endif #ifdef HAVE_STDINT_H # include #endif #ifdef HAVE_UNISTD_H # include #endif" ac_subst_vars='am__EXEEXT_FALSE am__EXEEXT_TRUE LTLIBOBJS LIBOBJS SDL_LIBS SDL_CFLAGS PKG_CONFIG_LIBDIR PKG_CONFIG_PATH PKG_CONFIG CXXCPP OTOOL64 OTOOL LIPO NMEDIT DSYMUTIL lt_ECHO RANLIB AR OBJDUMP LN_S NM ac_ct_DUMPBIN DUMPBIN LD FGREP SED host_os host_vendor host_cpu host build_os build_vendor build_cpu build LIBTOOL EGREP GREP CPP am__fastdepCXX_FALSE am__fastdepCXX_TRUE CXXDEPMODE ac_ct_CXX CXXFLAGS CXX am__fastdepCC_FALSE am__fastdepCC_TRUE CCDEPMODE AMDEPBACKSLASH AMDEP_FALSE AMDEP_TRUE am__quote am__include DEPDIR OBJEXT EXEEXT ac_ct_CC CPPFLAGS LDFLAGS CFLAGS CC am__untar am__tar AMTAR am__leading_dot SET_MAKE AWK mkdir_p MKDIR_P INSTALL_STRIP_PROGRAM STRIP install_sh MAKEINFO AUTOHEADER AUTOMAKE AUTOCONF ACLOCAL VERSION PACKAGE CYGPATH_W am__isrc INSTALL_DATA INSTALL_SCRIPT INSTALL_PROGRAM target_alias host_alias build_alias LIBS ECHO_T ECHO_N ECHO_C DEFS mandir localedir libdir psdir pdfdir dvidir htmldir infodir docdir oldincludedir includedir localstatedir sharedstatedir sysconfdir datadir datarootdir libexecdir sbindir bindir program_transform_name prefix exec_prefix PACKAGE_URL PACKAGE_BUGREPORT PACKAGE_STRING PACKAGE_VERSION PACKAGE_TARNAME PACKAGE_NAME PATH_SEPARATOR SHELL' ac_subst_files='' ac_user_opts=' enable_option_checking enable_dependency_tracking enable_shared enable_static with_pic enable_fast_install with_gnu_ld enable_libtool_lock ' ac_precious_vars='build_alias host_alias target_alias CC CFLAGS LDFLAGS LIBS CPPFLAGS CXX CXXFLAGS CCC CPP CXXCPP PKG_CONFIG PKG_CONFIG_PATH PKG_CONFIG_LIBDIR SDL_CFLAGS SDL_LIBS' # Initialize some variables set by options. ac_init_help= ac_init_version=false ac_unrecognized_opts= ac_unrecognized_sep= # The variables have the same names as the options, with # dashes changed to underlines. cache_file=/dev/null exec_prefix=NONE no_create= no_recursion= prefix=NONE program_prefix=NONE program_suffix=NONE program_transform_name=s,x,x, silent= site= srcdir= verbose= x_includes=NONE x_libraries=NONE # Installation directory options. # These are left unexpanded so users can "make install exec_prefix=/foo" # and all the variables that are supposed to be based on exec_prefix # by default will actually change. # Use braces instead of parens because sh, perl, etc. also accept them. # (The list follows the same order as the GNU Coding Standards.) bindir='${exec_prefix}/bin' sbindir='${exec_prefix}/sbin' libexecdir='${exec_prefix}/libexec' datarootdir='${prefix}/share' datadir='${datarootdir}' sysconfdir='${prefix}/etc' sharedstatedir='${prefix}/com' localstatedir='${prefix}/var' includedir='${prefix}/include' oldincludedir='/usr/include' docdir='${datarootdir}/doc/${PACKAGE_TARNAME}' infodir='${datarootdir}/info' htmldir='${docdir}' dvidir='${docdir}' pdfdir='${docdir}' psdir='${docdir}' libdir='${exec_prefix}/lib' localedir='${datarootdir}/locale' mandir='${datarootdir}/man' ac_prev= ac_dashdash= for ac_option do # If the previous option needs an argument, assign it. if test -n "$ac_prev"; then eval $ac_prev=\$ac_option ac_prev= continue fi case $ac_option in *=?*) ac_optarg=`expr "X$ac_option" : '[^=]*=\(.*\)'` ;; *=) ac_optarg= ;; *) ac_optarg=yes ;; esac # Accept the important Cygnus configure options, so we can diagnose typos. case $ac_dashdash$ac_option in --) ac_dashdash=yes ;; -bindir | --bindir | --bindi | --bind | --bin | --bi) ac_prev=bindir ;; -bindir=* | --bindir=* | --bindi=* | --bind=* | --bin=* | --bi=*) bindir=$ac_optarg ;; -build | --build | --buil | --bui | --bu) ac_prev=build_alias ;; -build=* | --build=* | --buil=* | --bui=* | --bu=*) build_alias=$ac_optarg ;; -cache-file | --cache-file | --cache-fil | --cache-fi \ | --cache-f | --cache- | --cache | --cach | --cac | --ca | --c) ac_prev=cache_file ;; -cache-file=* | --cache-file=* | --cache-fil=* | --cache-fi=* \ | --cache-f=* | --cache-=* | --cache=* | --cach=* | --cac=* | --ca=* | --c=*) cache_file=$ac_optarg ;; --config-cache | -C) cache_file=config.cache ;; -datadir | --datadir | --datadi | --datad) ac_prev=datadir ;; -datadir=* | --datadir=* | --datadi=* | --datad=*) datadir=$ac_optarg ;; -datarootdir | --datarootdir | --datarootdi | --datarootd | --dataroot \ | --dataroo | --dataro | --datar) ac_prev=datarootdir ;; -datarootdir=* | --datarootdir=* | --datarootdi=* | --datarootd=* \ | --dataroot=* | --dataroo=* | --dataro=* | --datar=*) datarootdir=$ac_optarg ;; -disable-* | --disable-*) ac_useropt=`expr "x$ac_option" : 'x-*disable-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--disable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=no ;; -docdir | --docdir | --docdi | --doc | --do) ac_prev=docdir ;; -docdir=* | --docdir=* | --docdi=* | --doc=* | --do=*) docdir=$ac_optarg ;; -dvidir | --dvidir | --dvidi | --dvid | --dvi | --dv) ac_prev=dvidir ;; -dvidir=* | --dvidir=* | --dvidi=* | --dvid=* | --dvi=* | --dv=*) dvidir=$ac_optarg ;; -enable-* | --enable-*) ac_useropt=`expr "x$ac_option" : 'x-*enable-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid feature name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "enable_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--enable-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval enable_$ac_useropt=\$ac_optarg ;; -exec-prefix | --exec_prefix | --exec-prefix | --exec-prefi \ | --exec-pref | --exec-pre | --exec-pr | --exec-p | --exec- \ | --exec | --exe | --ex) ac_prev=exec_prefix ;; -exec-prefix=* | --exec_prefix=* | --exec-prefix=* | --exec-prefi=* \ | --exec-pref=* | --exec-pre=* | --exec-pr=* | --exec-p=* | --exec-=* \ | --exec=* | --exe=* | --ex=*) exec_prefix=$ac_optarg ;; -gas | --gas | --ga | --g) # Obsolete; use --with-gas. with_gas=yes ;; -help | --help | --hel | --he | -h) ac_init_help=long ;; -help=r* | --help=r* | --hel=r* | --he=r* | -hr*) ac_init_help=recursive ;; -help=s* | --help=s* | --hel=s* | --he=s* | -hs*) ac_init_help=short ;; -host | --host | --hos | --ho) ac_prev=host_alias ;; -host=* | --host=* | --hos=* | --ho=*) host_alias=$ac_optarg ;; -htmldir | --htmldir | --htmldi | --htmld | --html | --htm | --ht) ac_prev=htmldir ;; -htmldir=* | --htmldir=* | --htmldi=* | --htmld=* | --html=* | --htm=* \ | --ht=*) htmldir=$ac_optarg ;; -includedir | --includedir | --includedi | --included | --include \ | --includ | --inclu | --incl | --inc) ac_prev=includedir ;; -includedir=* | --includedir=* | --includedi=* | --included=* | --include=* \ | --includ=* | --inclu=* | --incl=* | --inc=*) includedir=$ac_optarg ;; -infodir | --infodir | --infodi | --infod | --info | --inf) ac_prev=infodir ;; -infodir=* | --infodir=* | --infodi=* | --infod=* | --info=* | --inf=*) infodir=$ac_optarg ;; -libdir | --libdir | --libdi | --libd) ac_prev=libdir ;; -libdir=* | --libdir=* | --libdi=* | --libd=*) libdir=$ac_optarg ;; -libexecdir | --libexecdir | --libexecdi | --libexecd | --libexec \ | --libexe | --libex | --libe) ac_prev=libexecdir ;; -libexecdir=* | --libexecdir=* | --libexecdi=* | --libexecd=* | --libexec=* \ | --libexe=* | --libex=* | --libe=*) libexecdir=$ac_optarg ;; -localedir | --localedir | --localedi | --localed | --locale) ac_prev=localedir ;; -localedir=* | --localedir=* | --localedi=* | --localed=* | --locale=*) localedir=$ac_optarg ;; -localstatedir | --localstatedir | --localstatedi | --localstated \ | --localstate | --localstat | --localsta | --localst | --locals) ac_prev=localstatedir ;; -localstatedir=* | --localstatedir=* | --localstatedi=* | --localstated=* \ | --localstate=* | --localstat=* | --localsta=* | --localst=* | --locals=*) localstatedir=$ac_optarg ;; -mandir | --mandir | --mandi | --mand | --man | --ma | --m) ac_prev=mandir ;; -mandir=* | --mandir=* | --mandi=* | --mand=* | --man=* | --ma=* | --m=*) mandir=$ac_optarg ;; -nfp | --nfp | --nf) # Obsolete; use --without-fp. with_fp=no ;; -no-create | --no-create | --no-creat | --no-crea | --no-cre \ | --no-cr | --no-c | -n) no_create=yes ;; -no-recursion | --no-recursion | --no-recursio | --no-recursi \ | --no-recurs | --no-recur | --no-recu | --no-rec | --no-re | --no-r) no_recursion=yes ;; -oldincludedir | --oldincludedir | --oldincludedi | --oldincluded \ | --oldinclude | --oldinclud | --oldinclu | --oldincl | --oldinc \ | --oldin | --oldi | --old | --ol | --o) ac_prev=oldincludedir ;; -oldincludedir=* | --oldincludedir=* | --oldincludedi=* | --oldincluded=* \ | --oldinclude=* | --oldinclud=* | --oldinclu=* | --oldincl=* | --oldinc=* \ | --oldin=* | --oldi=* | --old=* | --ol=* | --o=*) oldincludedir=$ac_optarg ;; -prefix | --prefix | --prefi | --pref | --pre | --pr | --p) ac_prev=prefix ;; -prefix=* | --prefix=* | --prefi=* | --pref=* | --pre=* | --pr=* | --p=*) prefix=$ac_optarg ;; -program-prefix | --program-prefix | --program-prefi | --program-pref \ | --program-pre | --program-pr | --program-p) ac_prev=program_prefix ;; -program-prefix=* | --program-prefix=* | --program-prefi=* \ | --program-pref=* | --program-pre=* | --program-pr=* | --program-p=*) program_prefix=$ac_optarg ;; -program-suffix | --program-suffix | --program-suffi | --program-suff \ | --program-suf | --program-su | --program-s) ac_prev=program_suffix ;; -program-suffix=* | --program-suffix=* | --program-suffi=* \ | --program-suff=* | --program-suf=* | --program-su=* | --program-s=*) program_suffix=$ac_optarg ;; -program-transform-name | --program-transform-name \ | --program-transform-nam | --program-transform-na \ | --program-transform-n | --program-transform- \ | --program-transform | --program-transfor \ | --program-transfo | --program-transf \ | --program-trans | --program-tran \ | --progr-tra | --program-tr | --program-t) ac_prev=program_transform_name ;; -program-transform-name=* | --program-transform-name=* \ | --program-transform-nam=* | --program-transform-na=* \ | --program-transform-n=* | --program-transform-=* \ | --program-transform=* | --program-transfor=* \ | --program-transfo=* | --program-transf=* \ | --program-trans=* | --program-tran=* \ | --progr-tra=* | --program-tr=* | --program-t=*) program_transform_name=$ac_optarg ;; -pdfdir | --pdfdir | --pdfdi | --pdfd | --pdf | --pd) ac_prev=pdfdir ;; -pdfdir=* | --pdfdir=* | --pdfdi=* | --pdfd=* | --pdf=* | --pd=*) pdfdir=$ac_optarg ;; -psdir | --psdir | --psdi | --psd | --ps) ac_prev=psdir ;; -psdir=* | --psdir=* | --psdi=* | --psd=* | --ps=*) psdir=$ac_optarg ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) silent=yes ;; -sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb) ac_prev=sbindir ;; -sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \ | --sbi=* | --sb=*) sbindir=$ac_optarg ;; -sharedstatedir | --sharedstatedir | --sharedstatedi \ | --sharedstated | --sharedstate | --sharedstat | --sharedsta \ | --sharedst | --shareds | --shared | --share | --shar \ | --sha | --sh) ac_prev=sharedstatedir ;; -sharedstatedir=* | --sharedstatedir=* | --sharedstatedi=* \ | --sharedstated=* | --sharedstate=* | --sharedstat=* | --sharedsta=* \ | --sharedst=* | --shareds=* | --shared=* | --share=* | --shar=* \ | --sha=* | --sh=*) sharedstatedir=$ac_optarg ;; -site | --site | --sit) ac_prev=site ;; -site=* | --site=* | --sit=*) site=$ac_optarg ;; -srcdir | --srcdir | --srcdi | --srcd | --src | --sr) ac_prev=srcdir ;; -srcdir=* | --srcdir=* | --srcdi=* | --srcd=* | --src=* | --sr=*) srcdir=$ac_optarg ;; -sysconfdir | --sysconfdir | --sysconfdi | --sysconfd | --sysconf \ | --syscon | --sysco | --sysc | --sys | --sy) ac_prev=sysconfdir ;; -sysconfdir=* | --sysconfdir=* | --sysconfdi=* | --sysconfd=* | --sysconf=* \ | --syscon=* | --sysco=* | --sysc=* | --sys=* | --sy=*) sysconfdir=$ac_optarg ;; -target | --target | --targe | --targ | --tar | --ta | --t) ac_prev=target_alias ;; -target=* | --target=* | --targe=* | --targ=* | --tar=* | --ta=* | --t=*) target_alias=$ac_optarg ;; -v | -verbose | --verbose | --verbos | --verbo | --verb) verbose=yes ;; -version | --version | --versio | --versi | --vers | -V) ac_init_version=: ;; -with-* | --with-*) ac_useropt=`expr "x$ac_option" : 'x-*with-\([^=]*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--with-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=\$ac_optarg ;; -without-* | --without-*) ac_useropt=`expr "x$ac_option" : 'x-*without-\(.*\)'` # Reject names that are not valid shell variable names. expr "x$ac_useropt" : ".*[^-+._$as_cr_alnum]" >/dev/null && as_fn_error $? "invalid package name: $ac_useropt" ac_useropt_orig=$ac_useropt ac_useropt=`$as_echo "$ac_useropt" | sed 's/[-+.]/_/g'` case $ac_user_opts in *" "with_$ac_useropt" "*) ;; *) ac_unrecognized_opts="$ac_unrecognized_opts$ac_unrecognized_sep--without-$ac_useropt_orig" ac_unrecognized_sep=', ';; esac eval with_$ac_useropt=no ;; --x) # Obsolete; use --with-x. with_x=yes ;; -x-includes | --x-includes | --x-include | --x-includ | --x-inclu \ | --x-incl | --x-inc | --x-in | --x-i) ac_prev=x_includes ;; -x-includes=* | --x-includes=* | --x-include=* | --x-includ=* | --x-inclu=* \ | --x-incl=* | --x-inc=* | --x-in=* | --x-i=*) x_includes=$ac_optarg ;; -x-libraries | --x-libraries | --x-librarie | --x-librari \ | --x-librar | --x-libra | --x-libr | --x-lib | --x-li | --x-l) ac_prev=x_libraries ;; -x-libraries=* | --x-libraries=* | --x-librarie=* | --x-librari=* \ | --x-librar=* | --x-libra=* | --x-libr=* | --x-lib=* | --x-li=* | --x-l=*) x_libraries=$ac_optarg ;; -*) as_fn_error $? "unrecognized option: \`$ac_option' Try \`$0 --help' for more information" ;; *=*) ac_envvar=`expr "x$ac_option" : 'x\([^=]*\)='` # Reject names that are not valid shell variable names. case $ac_envvar in #( '' | [0-9]* | *[!_$as_cr_alnum]* ) as_fn_error $? "invalid variable name: \`$ac_envvar'" ;; esac eval $ac_envvar=\$ac_optarg export $ac_envvar ;; *) # FIXME: should be removed in autoconf 3.0. $as_echo "$as_me: WARNING: you should use --build, --host, --target" >&2 expr "x$ac_option" : ".*[^-._$as_cr_alnum]" >/dev/null && $as_echo "$as_me: WARNING: invalid host type: $ac_option" >&2 : ${build_alias=$ac_option} ${host_alias=$ac_option} ${target_alias=$ac_option} ;; esac done if test -n "$ac_prev"; then ac_option=--`echo $ac_prev | sed 's/_/-/g'` as_fn_error $? "missing argument to $ac_option" fi if test -n "$ac_unrecognized_opts"; then case $enable_option_checking in no) ;; fatal) as_fn_error $? "unrecognized options: $ac_unrecognized_opts" ;; *) $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2 ;; esac fi # Check all directory arguments for consistency. for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \ datadir sysconfdir sharedstatedir localstatedir includedir \ oldincludedir docdir infodir htmldir dvidir pdfdir psdir \ libdir localedir mandir do eval ac_val=\$$ac_var # Remove trailing slashes. case $ac_val in */ ) ac_val=`expr "X$ac_val" : 'X\(.*[^/]\)' \| "X$ac_val" : 'X\(.*\)'` eval $ac_var=\$ac_val;; esac # Be sure to have absolute directory names. case $ac_val in [\\/$]* | ?:[\\/]* ) continue;; NONE | '' ) case $ac_var in *prefix ) continue;; esac;; esac as_fn_error $? "expected an absolute directory name for --$ac_var: $ac_val" done # There might be people who depend on the old broken behavior: `$host' # used to hold the argument of --host etc. # FIXME: To remove some day. build=$build_alias host=$host_alias target=$target_alias # FIXME: To remove some day. if test "x$host_alias" != x; then if test "x$build_alias" = x; then cross_compiling=maybe $as_echo "$as_me: WARNING: if you wanted to set the --build type, don't use --host. If a cross compiler is detected then cross compile mode will be used" >&2 elif test "x$build_alias" != "x$host_alias"; then cross_compiling=yes fi fi ac_tool_prefix= test -n "$host_alias" && ac_tool_prefix=$host_alias- test "$silent" = yes && exec 6>/dev/null ac_pwd=`pwd` && test -n "$ac_pwd" && ac_ls_di=`ls -di .` && ac_pwd_ls_di=`cd "$ac_pwd" && ls -di .` || as_fn_error $? "working directory cannot be determined" test "X$ac_ls_di" = "X$ac_pwd_ls_di" || as_fn_error $? "pwd does not report name of working directory" # Find the source files, if location was not specified. if test -z "$srcdir"; then ac_srcdir_defaulted=yes # Try the directory containing this script, then the parent directory. ac_confdir=`$as_dirname -- "$as_myself" || $as_expr X"$as_myself" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_myself" : 'X\(//\)[^/]' \| \ X"$as_myself" : 'X\(//\)$' \| \ X"$as_myself" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_myself" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` srcdir=$ac_confdir if test ! -r "$srcdir/$ac_unique_file"; then srcdir=.. fi else ac_srcdir_defaulted=no fi if test ! -r "$srcdir/$ac_unique_file"; then test "$ac_srcdir_defaulted" = yes && srcdir="$ac_confdir or .." as_fn_error $? "cannot find sources ($ac_unique_file) in $srcdir" fi ac_msg="sources are in $srcdir, but \`cd $srcdir' does not work" ac_abs_confdir=`( cd "$srcdir" && test -r "./$ac_unique_file" || as_fn_error $? "$ac_msg" pwd)` # When building in place, set srcdir=. if test "$ac_abs_confdir" = "$ac_pwd"; then srcdir=. fi # Remove unnecessary trailing slashes from srcdir. # Double slashes in file names in object file debugging info # mess up M-x gdb in Emacs. case $srcdir in */) srcdir=`expr "X$srcdir" : 'X\(.*[^/]\)' \| "X$srcdir" : 'X\(.*\)'`;; esac for ac_var in $ac_precious_vars; do eval ac_env_${ac_var}_set=\${${ac_var}+set} eval ac_env_${ac_var}_value=\$${ac_var} eval ac_cv_env_${ac_var}_set=\${${ac_var}+set} eval ac_cv_env_${ac_var}_value=\$${ac_var} done # # Report the --help message. # if test "$ac_init_help" = "long"; then # Omit some internal or obsolete options to make the list less imposing. # This message is too long to be a string in the A/UX 3.1 sh. cat <<_ACEOF \`configure' configures fische 3.2 to adapt to many kinds of systems. Usage: $0 [OPTION]... [VAR=VALUE]... To assign environment variables (e.g., CC, CFLAGS...), specify them as VAR=VALUE. See below for descriptions of some of the useful variables. Defaults for the options are specified in brackets. Configuration: -h, --help display this help and exit --help=short display options specific to this package --help=recursive display the short help of all the included packages -V, --version display version information and exit -q, --quiet, --silent do not print \`checking ...' messages --cache-file=FILE cache test results in FILE [disabled] -C, --config-cache alias for \`--cache-file=config.cache' -n, --no-create do not create output files --srcdir=DIR find the sources in DIR [configure dir or \`..'] Installation directories: --prefix=PREFIX install architecture-independent files in PREFIX [$ac_default_prefix] --exec-prefix=EPREFIX install architecture-dependent files in EPREFIX [PREFIX] By default, \`make install' will install all the files in \`$ac_default_prefix/bin', \`$ac_default_prefix/lib' etc. You can specify an installation prefix other than \`$ac_default_prefix' using \`--prefix', for instance \`--prefix=\$HOME'. For better control, use the options below. Fine tuning of the installation directories: --bindir=DIR user executables [EPREFIX/bin] --sbindir=DIR system admin executables [EPREFIX/sbin] --libexecdir=DIR program executables [EPREFIX/libexec] --sysconfdir=DIR read-only single-machine data [PREFIX/etc] --sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com] --localstatedir=DIR modifiable single-machine data [PREFIX/var] --libdir=DIR object code libraries [EPREFIX/lib] --includedir=DIR C header files [PREFIX/include] --oldincludedir=DIR C header files for non-gcc [/usr/include] --datarootdir=DIR read-only arch.-independent data root [PREFIX/share] --datadir=DIR read-only architecture-independent data [DATAROOTDIR] --infodir=DIR info documentation [DATAROOTDIR/info] --localedir=DIR locale-dependent data [DATAROOTDIR/locale] --mandir=DIR man documentation [DATAROOTDIR/man] --docdir=DIR documentation root [DATAROOTDIR/doc/fische] --htmldir=DIR html documentation [DOCDIR] --dvidir=DIR dvi documentation [DOCDIR] --pdfdir=DIR pdf documentation [DOCDIR] --psdir=DIR ps documentation [DOCDIR] _ACEOF cat <<\_ACEOF Program names: --program-prefix=PREFIX prepend PREFIX to installed program names --program-suffix=SUFFIX append SUFFIX to installed program names --program-transform-name=PROGRAM run sed PROGRAM on installed program names System types: --build=BUILD configure for building on BUILD [guessed] --host=HOST cross-compile to build programs to run on HOST [BUILD] _ACEOF fi if test -n "$ac_init_help"; then case $ac_init_help in short | recursive ) echo "Configuration of fische 3.2:";; esac cat <<\_ACEOF Optional Features: --disable-option-checking ignore unrecognized --enable/--with options --disable-FEATURE do not include FEATURE (same as --enable-FEATURE=no) --enable-FEATURE[=ARG] include FEATURE [ARG=yes] --disable-dependency-tracking speeds up one-time build --enable-dependency-tracking do not reject slow dependency extractors --enable-shared[=PKGS] build shared libraries [default=yes] --enable-static[=PKGS] build static libraries [default=yes] --enable-fast-install[=PKGS] optimize for fast installation [default=yes] --disable-libtool-lock avoid locking (might break parallel builds) Optional Packages: --with-PACKAGE[=ARG] use PACKAGE [ARG=yes] --without-PACKAGE do not use PACKAGE (same as --with-PACKAGE=no) --with-pic try to use only PIC/non-PIC objects [default=use both] --with-gnu-ld assume the C compiler uses GNU ld [default=no] Some influential environment variables: CC C compiler command CFLAGS C compiler flags LDFLAGS linker flags, e.g. -L if you have libraries in a nonstandard directory LIBS libraries to pass to the linker, e.g. -l CPPFLAGS (Objective) C/C++ preprocessor flags, e.g. -I if you have headers in a nonstandard directory CXX C++ compiler command CXXFLAGS C++ compiler flags CPP C preprocessor CXXCPP C++ preprocessor PKG_CONFIG path to pkg-config utility PKG_CONFIG_PATH directories to add to pkg-config's search path PKG_CONFIG_LIBDIR path overriding pkg-config's built-in search path SDL_CFLAGS C compiler flags for SDL, overriding pkg-config SDL_LIBS linker flags for SDL, overriding pkg-config Use these variables to override the choices made by `configure' or to help it to find libraries and programs with nonstandard names/locations. Report bugs to the package provider. _ACEOF ac_status=$? fi if test "$ac_init_help" = "recursive"; then # If there are subdirs, report their specific --help. for ac_dir in : $ac_subdirs_all; do test "x$ac_dir" = x: && continue test -d "$ac_dir" || { cd "$srcdir" && ac_pwd=`pwd` && srcdir=. && test -d "$ac_dir"; } || continue ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix cd "$ac_dir" || { ac_status=$?; continue; } # Check for guested configure. if test -f "$ac_srcdir/configure.gnu"; then echo && $SHELL "$ac_srcdir/configure.gnu" --help=recursive elif test -f "$ac_srcdir/configure"; then echo && $SHELL "$ac_srcdir/configure" --help=recursive else $as_echo "$as_me: WARNING: no configuration information is in $ac_dir" >&2 fi || ac_status=$? cd "$ac_pwd" || { ac_status=$?; break; } done fi test -n "$ac_init_help" && exit $ac_status if $ac_init_version; then cat <<\_ACEOF fische configure 3.2 generated by GNU Autoconf 2.67 Copyright (C) 2010 Free Software Foundation, Inc. This configure script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it. _ACEOF exit fi ## ------------------------ ## ## Autoconf initialization. ## ## ------------------------ ## # ac_fn_c_try_compile LINENO # -------------------------- # Try to compile conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} as_fn_set_status $ac_retval } # ac_fn_c_try_compile # ac_fn_c_try_link LINENO # ----------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_link () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest$ac_exeext if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_c_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || $as_test_x conftest$ac_exeext }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would # interfere with the next link command; also delete a directory that is # left behind by Apple's compiler. We do this before executing the actions. rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} as_fn_set_status $ac_retval } # ac_fn_c_try_link # ac_fn_cxx_try_compile LINENO # ---------------------------- # Try to compile conftest.$ac_ext, and return whether this succeeded. ac_fn_cxx_try_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest.$ac_objext; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} as_fn_set_status $ac_retval } # ac_fn_cxx_try_compile # ac_fn_c_try_cpp LINENO # ---------------------- # Try to preprocess conftest.$ac_ext, and return whether this succeeded. ac_fn_c_try_cpp () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } > conftest.i && { test -z "$ac_c_preproc_warn_flag$ac_c_werror_flag" || test ! -s conftest.err }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} as_fn_set_status $ac_retval } # ac_fn_c_try_cpp # ac_fn_c_try_run LINENO # ---------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. Assumes # that executables *can* be run. ac_fn_c_try_run () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { ac_try='./conftest$ac_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then : ac_retval=0 else $as_echo "$as_me: program exited with status $ac_status" >&5 $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=$ac_status fi rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} as_fn_set_status $ac_retval } # ac_fn_c_try_run # ac_fn_c_check_header_compile LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists and can be compiled using the include files in # INCLUDES, setting the cache variable VAR accordingly. ac_fn_c_check_header_compile () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval "test \"\${$3+set}\"" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} } # ac_fn_c_check_header_compile # ac_fn_c_check_func LINENO FUNC VAR # ---------------------------------- # Tests whether FUNC exists, setting the cache variable VAR accordingly ac_fn_c_check_func () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval "test \"\${$3+set}\"" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Define $2 to an innocuous variant, in case declares $2. For example, HP-UX 11i declares gettimeofday. */ #define $2 innocuous_$2 /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $2 (); below. Prefer to if __STDC__ is defined, since exists even on freestanding compilers. */ #ifdef __STDC__ # include #else # include #endif #undef $2 /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char $2 (); /* The GNU C library defines this for functions which it implements to always fail with ENOSYS. Some functions are actually named something starting with __ and the normal name is an alias. */ #if defined __stub_$2 || defined __stub___$2 choke me #endif int main () { return $2 (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : eval "$3=yes" else eval "$3=no" fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} } # ac_fn_c_check_func # ac_fn_cxx_try_cpp LINENO # ------------------------ # Try to preprocess conftest.$ac_ext, and return whether this succeeded. ac_fn_cxx_try_cpp () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if { { ac_try="$ac_cpp conftest.$ac_ext" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_cpp conftest.$ac_ext") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } > conftest.i && { test -z "$ac_cxx_preproc_warn_flag$ac_cxx_werror_flag" || test ! -s conftest.err }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} as_fn_set_status $ac_retval } # ac_fn_cxx_try_cpp # ac_fn_cxx_try_link LINENO # ------------------------- # Try to link conftest.$ac_ext, and return whether this succeeded. ac_fn_cxx_try_link () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack rm -f conftest.$ac_objext conftest$ac_exeext if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>conftest.err ac_status=$? if test -s conftest.err; then grep -v '^ *+' conftest.err >conftest.er1 cat conftest.er1 >&5 mv -f conftest.er1 conftest.err fi $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && { test -z "$ac_cxx_werror_flag" || test ! -s conftest.err } && test -s conftest$ac_exeext && { test "$cross_compiling" = yes || $as_test_x conftest$ac_exeext }; then : ac_retval=0 else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 ac_retval=1 fi # Delete the IPA/IPO (Inter Procedural Analysis/Optimization) information # created by the PGI compiler (conftest_ipa8_conftest.oo), as it would # interfere with the next link command; also delete a directory that is # left behind by Apple's compiler. We do this before executing the actions. rm -rf conftest.dSYM conftest_ipa8_conftest.oo eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} as_fn_set_status $ac_retval } # ac_fn_cxx_try_link # ac_fn_c_check_header_mongrel LINENO HEADER VAR INCLUDES # ------------------------------------------------------- # Tests whether HEADER exists, giving a warning if it cannot be compiled using # the include files in INCLUDES and setting the cache variable VAR # accordingly. ac_fn_c_check_header_mongrel () { as_lineno=${as_lineno-"$1"} as_lineno_stack=as_lineno_stack=$as_lineno_stack if eval "test \"\${$3+set}\"" = set; then : { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval "test \"\${$3+set}\"" = set; then : $as_echo_n "(cached) " >&6 fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } else # Is the header compilable? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 usability" >&5 $as_echo_n "checking $2 usability... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ $4 #include <$2> _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_header_compiler=yes else ac_header_compiler=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_compiler" >&5 $as_echo "$ac_header_compiler" >&6; } # Is the header present? { $as_echo "$as_me:${as_lineno-$LINENO}: checking $2 presence" >&5 $as_echo_n "checking $2 presence... " >&6; } cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include <$2> _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : ac_header_preproc=yes else ac_header_preproc=no fi rm -f conftest.err conftest.i conftest.$ac_ext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_header_preproc" >&5 $as_echo "$ac_header_preproc" >&6; } # So? What about this header? case $ac_header_compiler:$ac_header_preproc:$ac_c_preproc_warn_flag in #(( yes:no: ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&5 $as_echo "$as_me: WARNING: $2: accepted by the compiler, rejected by the preprocessor!" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ;; no:yes:* ) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: present but cannot be compiled" >&5 $as_echo "$as_me: WARNING: $2: present but cannot be compiled" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: check for missing prerequisite headers?" >&5 $as_echo "$as_me: WARNING: $2: check for missing prerequisite headers?" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: see the Autoconf documentation" >&5 $as_echo "$as_me: WARNING: $2: see the Autoconf documentation" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&5 $as_echo "$as_me: WARNING: $2: section \"Present But Cannot Be Compiled\"" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $2: proceeding with the compiler's result" >&5 $as_echo "$as_me: WARNING: $2: proceeding with the compiler's result" >&2;} ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $2" >&5 $as_echo_n "checking for $2... " >&6; } if eval "test \"\${$3+set}\"" = set; then : $as_echo_n "(cached) " >&6 else eval "$3=\$ac_header_compiler" fi eval ac_res=\$$3 { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_res" >&5 $as_echo "$ac_res" >&6; } fi eval $as_lineno_stack; test "x$as_lineno_stack" = x && { as_lineno=; unset as_lineno;} } # ac_fn_c_check_header_mongrel cat >config.log <<_ACEOF This file contains any messages produced by compilers while running configure, to aid debugging if configure makes a mistake. It was created by fische $as_me 3.2, which was generated by GNU Autoconf 2.67. Invocation command line was $ $0 $@ _ACEOF exec 5>>config.log { cat <<_ASUNAME ## --------- ## ## Platform. ## ## --------- ## hostname = `(hostname || uname -n) 2>/dev/null | sed 1q` uname -m = `(uname -m) 2>/dev/null || echo unknown` uname -r = `(uname -r) 2>/dev/null || echo unknown` uname -s = `(uname -s) 2>/dev/null || echo unknown` uname -v = `(uname -v) 2>/dev/null || echo unknown` /usr/bin/uname -p = `(/usr/bin/uname -p) 2>/dev/null || echo unknown` /bin/uname -X = `(/bin/uname -X) 2>/dev/null || echo unknown` /bin/arch = `(/bin/arch) 2>/dev/null || echo unknown` /usr/bin/arch -k = `(/usr/bin/arch -k) 2>/dev/null || echo unknown` /usr/convex/getsysinfo = `(/usr/convex/getsysinfo) 2>/dev/null || echo unknown` /usr/bin/hostinfo = `(/usr/bin/hostinfo) 2>/dev/null || echo unknown` /bin/machine = `(/bin/machine) 2>/dev/null || echo unknown` /usr/bin/oslevel = `(/usr/bin/oslevel) 2>/dev/null || echo unknown` /bin/universe = `(/bin/universe) 2>/dev/null || echo unknown` _ASUNAME as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. $as_echo "PATH: $as_dir" done IFS=$as_save_IFS } >&5 cat >&5 <<_ACEOF ## ----------- ## ## Core tests. ## ## ----------- ## _ACEOF # Keep a trace of the command line. # Strip out --no-create and --no-recursion so they do not pile up. # Strip out --silent because we don't want to record it for future runs. # Also quote any args containing shell meta-characters. # Make two passes to allow for proper duplicate-argument suppression. ac_configure_args= ac_configure_args0= ac_configure_args1= ac_must_keep_next=false for ac_pass in 1 2 do for ac_arg do case $ac_arg in -no-create | --no-c* | -n | -no-recursion | --no-r*) continue ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil) continue ;; *\'*) ac_arg=`$as_echo "$ac_arg" | sed "s/'/'\\\\\\\\''/g"` ;; esac case $ac_pass in 1) as_fn_append ac_configure_args0 " '$ac_arg'" ;; 2) as_fn_append ac_configure_args1 " '$ac_arg'" if test $ac_must_keep_next = true; then ac_must_keep_next=false # Got value, back to normal. else case $ac_arg in *=* | --config-cache | -C | -disable-* | --disable-* \ | -enable-* | --enable-* | -gas | --g* | -nfp | --nf* \ | -q | -quiet | --q* | -silent | --sil* | -v | -verb* \ | -with-* | --with-* | -without-* | --without-* | --x) case "$ac_configure_args0 " in "$ac_configure_args1"*" '$ac_arg' "* ) continue ;; esac ;; -* ) ac_must_keep_next=true ;; esac fi as_fn_append ac_configure_args " '$ac_arg'" ;; esac done done { ac_configure_args0=; unset ac_configure_args0;} { ac_configure_args1=; unset ac_configure_args1;} # When interrupted or exit'd, cleanup temporary files, and complete # config.log. We remove comments because anyway the quotes in there # would cause problems or look ugly. # WARNING: Use '\'' to represent an apostrophe within the trap. # WARNING: Do not start the trap code with a newline, due to a FreeBSD 4.0 bug. trap 'exit_status=$? # Save into config.log some information that might help in debugging. { echo $as_echo "## ---------------- ## ## Cache variables. ## ## ---------------- ##" echo # The following way of writing the cache mishandles newlines in values, ( for ac_var in `(set) 2>&1 | sed -n '\''s/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'\''`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space='\'' '\''; set) 2>&1` in #( *${as_nl}ac_space=\ *) sed -n \ "s/'\''/'\''\\\\'\'''\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\''\\2'\''/p" ;; #( *) sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) echo $as_echo "## ----------------- ## ## Output variables. ## ## ----------------- ##" echo for ac_var in $ac_subst_vars do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo if test -n "$ac_subst_files"; then $as_echo "## ------------------- ## ## File substitutions. ## ## ------------------- ##" echo for ac_var in $ac_subst_files do eval ac_val=\$$ac_var case $ac_val in *\'\''*) ac_val=`$as_echo "$ac_val" | sed "s/'\''/'\''\\\\\\\\'\'''\''/g"`;; esac $as_echo "$ac_var='\''$ac_val'\''" done | sort echo fi if test -s confdefs.h; then $as_echo "## ----------- ## ## confdefs.h. ## ## ----------- ##" echo cat confdefs.h echo fi test "$ac_signal" != 0 && $as_echo "$as_me: caught signal $ac_signal" $as_echo "$as_me: exit $exit_status" } >&5 rm -f core *.core core.conftest.* && rm -f -r conftest* confdefs* conf$$* $ac_clean_files && exit $exit_status ' 0 for ac_signal in 1 2 13 15; do trap 'ac_signal='$ac_signal'; as_fn_exit 1' $ac_signal done ac_signal=0 # confdefs.h avoids OS command line length limits that DEFS can exceed. rm -f -r conftest* confdefs.h $as_echo "/* confdefs.h */" > confdefs.h # Predefined preprocessor variables. cat >>confdefs.h <<_ACEOF #define PACKAGE_NAME "$PACKAGE_NAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_TARNAME "$PACKAGE_TARNAME" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_VERSION "$PACKAGE_VERSION" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_STRING "$PACKAGE_STRING" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_BUGREPORT "$PACKAGE_BUGREPORT" _ACEOF cat >>confdefs.h <<_ACEOF #define PACKAGE_URL "$PACKAGE_URL" _ACEOF # Let the site file select an alternate cache file if it wants to. # Prefer an explicitly selected file to automatically selected ones. ac_site_file1=NONE ac_site_file2=NONE if test -n "$CONFIG_SITE"; then # We do not want a PATH search for config.site. case $CONFIG_SITE in #(( -*) ac_site_file1=./$CONFIG_SITE;; */*) ac_site_file1=$CONFIG_SITE;; *) ac_site_file1=./$CONFIG_SITE;; esac elif test "x$prefix" != xNONE; then ac_site_file1=$prefix/share/config.site ac_site_file2=$prefix/etc/config.site else ac_site_file1=$ac_default_prefix/share/config.site ac_site_file2=$ac_default_prefix/etc/config.site fi for ac_site_file in "$ac_site_file1" "$ac_site_file2" do test "x$ac_site_file" = xNONE && continue if test /dev/null != "$ac_site_file" && test -r "$ac_site_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading site script $ac_site_file" >&5 $as_echo "$as_me: loading site script $ac_site_file" >&6;} sed 's/^/| /' "$ac_site_file" >&5 . "$ac_site_file" \ || { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "failed to load site script $ac_site_file See \`config.log' for more details" "$LINENO" 5 ; } fi done if test -r "$cache_file"; then # Some versions of bash will fail to source /dev/null (special files # actually), so we avoid doing that. DJGPP emulates it as a regular file. if test /dev/null != "$cache_file" && test -f "$cache_file"; then { $as_echo "$as_me:${as_lineno-$LINENO}: loading cache $cache_file" >&5 $as_echo "$as_me: loading cache $cache_file" >&6;} case $cache_file in [\\/]* | ?:[\\/]* ) . "$cache_file";; *) . "./$cache_file";; esac fi else { $as_echo "$as_me:${as_lineno-$LINENO}: creating cache $cache_file" >&5 $as_echo "$as_me: creating cache $cache_file" >&6;} >$cache_file fi # Check that the precious variables saved in the cache have kept the same # value. ac_cache_corrupted=false for ac_var in $ac_precious_vars; do eval ac_old_set=\$ac_cv_env_${ac_var}_set eval ac_new_set=\$ac_env_${ac_var}_set eval ac_old_val=\$ac_cv_env_${ac_var}_value eval ac_new_val=\$ac_env_${ac_var}_value case $ac_old_set,$ac_new_set in set,) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was set to \`$ac_old_val' in the previous run" >&2;} ac_cache_corrupted=: ;; ,set) { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' was not set in the previous run" >&5 $as_echo "$as_me: error: \`$ac_var' was not set in the previous run" >&2;} ac_cache_corrupted=: ;; ,);; *) if test "x$ac_old_val" != "x$ac_new_val"; then # differences in whitespace do not lead to failure. ac_old_val_w=`echo x $ac_old_val` ac_new_val_w=`echo x $ac_new_val` if test "$ac_old_val_w" != "$ac_new_val_w"; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: \`$ac_var' has changed since the previous run:" >&5 $as_echo "$as_me: error: \`$ac_var' has changed since the previous run:" >&2;} ac_cache_corrupted=: else { $as_echo "$as_me:${as_lineno-$LINENO}: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&5 $as_echo "$as_me: warning: ignoring whitespace changes in \`$ac_var' since the previous run:" >&2;} eval $ac_var=\$ac_old_val fi { $as_echo "$as_me:${as_lineno-$LINENO}: former value: \`$ac_old_val'" >&5 $as_echo "$as_me: former value: \`$ac_old_val'" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: current value: \`$ac_new_val'" >&5 $as_echo "$as_me: current value: \`$ac_new_val'" >&2;} fi;; esac # Pass precious variables to config.status. if test "$ac_new_set" = set; then case $ac_new_val in *\'*) ac_arg=$ac_var=`$as_echo "$ac_new_val" | sed "s/'/'\\\\\\\\''/g"` ;; *) ac_arg=$ac_var=$ac_new_val ;; esac case " $ac_configure_args " in *" '$ac_arg' "*) ;; # Avoid dups. Use of quotes ensures accuracy. *) as_fn_append ac_configure_args " '$ac_arg'" ;; esac fi done if $ac_cache_corrupted; then { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} { $as_echo "$as_me:${as_lineno-$LINENO}: error: changes in the environment can compromise the build" >&5 $as_echo "$as_me: error: changes in the environment can compromise the build" >&2;} as_fn_error $? "run \`make distclean' and/or \`rm $cache_file' and start over" "$LINENO" 5 fi ## -------------------- ## ## Main body of script. ## ## -------------------- ## ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu am__api_version='1.11' ac_aux_dir= for ac_dir in "$srcdir" "$srcdir/.." "$srcdir/../.."; do if test -f "$ac_dir/install-sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install-sh -c" break elif test -f "$ac_dir/install.sh"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/install.sh -c" break elif test -f "$ac_dir/shtool"; then ac_aux_dir=$ac_dir ac_install_sh="$ac_aux_dir/shtool install -c" break fi done if test -z "$ac_aux_dir"; then as_fn_error $? "cannot find install-sh, install.sh, or shtool in \"$srcdir\" \"$srcdir/..\" \"$srcdir/../..\"" "$LINENO" 5 fi # These three variables are undocumented and unsupported, # and are intended to be withdrawn in a future Autoconf release. # They can cause serious problems if a builder's source tree is in a directory # whose full name contains unusual characters. ac_config_guess="$SHELL $ac_aux_dir/config.guess" # Please don't use this var. ac_config_sub="$SHELL $ac_aux_dir/config.sub" # Please don't use this var. ac_configure="$SHELL $ac_aux_dir/configure" # Please don't use this var. # Find a good install program. We prefer a C program (faster), # so one script is as good as another. But avoid the broken or # incompatible versions: # SysV /etc/install, /usr/sbin/install # SunOS /usr/etc/install # IRIX /sbin/install # AIX /bin/install # AmigaOS /C/install, which installs bootblocks on floppy discs # AIX 4 /usr/bin/installbsd, which doesn't work without a -g flag # AFS /usr/afsws/bin/install, which mishandles nonexistent args # SVR4 /usr/ucb/install, which tries to use the nonexistent group "staff" # OS/2's system install, which has a completely different semantic # ./install, which can be erroneously created by make from ./install.sh. # Reject install programs that cannot install multiple files. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a BSD-compatible install" >&5 $as_echo_n "checking for a BSD-compatible install... " >&6; } if test -z "$INSTALL"; then if test "${ac_cv_path_install+set}" = set; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. # Account for people who put trailing slashes in PATH elements. case $as_dir/ in #(( ./ | .// | /[cC]/* | \ /etc/* | /usr/sbin/* | /usr/etc/* | /sbin/* | /usr/afsws/bin/* | \ ?:[\\/]os2[\\/]install[\\/]* | ?:[\\/]OS2[\\/]INSTALL[\\/]* | \ /usr/ucb/* ) ;; *) # OSF1 and SCO ODT 3.0 have their own names for install. # Don't use installbsd from OSF since it installs stuff as root # by default. for ac_prog in ginstall scoinst install; do for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; }; then if test $ac_prog = install && grep dspmsg "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # AIX install. It has an incompatible calling convention. : elif test $ac_prog = install && grep pwplus "$as_dir/$ac_prog$ac_exec_ext" >/dev/null 2>&1; then # program-specific install script used by HP pwplus--don't use. : else rm -rf conftest.one conftest.two conftest.dir echo one > conftest.one echo two > conftest.two mkdir conftest.dir if "$as_dir/$ac_prog$ac_exec_ext" -c conftest.one conftest.two "`pwd`/conftest.dir" && test -s conftest.one && test -s conftest.two && test -s conftest.dir/conftest.one && test -s conftest.dir/conftest.two then ac_cv_path_install="$as_dir/$ac_prog$ac_exec_ext -c" break 3 fi fi fi done done ;; esac done IFS=$as_save_IFS rm -rf conftest.one conftest.two conftest.dir fi if test "${ac_cv_path_install+set}" = set; then INSTALL=$ac_cv_path_install else # As a last resort, use the slow shell script. Don't cache a # value for INSTALL within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. INSTALL=$ac_install_sh fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $INSTALL" >&5 $as_echo "$INSTALL" >&6; } # Use test -z because SunOS4 sh mishandles braces in ${var-val}. # It thinks the first close brace ends the variable substitution. test -z "$INSTALL_PROGRAM" && INSTALL_PROGRAM='${INSTALL}' test -z "$INSTALL_SCRIPT" && INSTALL_SCRIPT='${INSTALL}' test -z "$INSTALL_DATA" && INSTALL_DATA='${INSTALL} -m 644' { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether build environment is sane" >&5 $as_echo_n "checking whether build environment is sane... " >&6; } # Just in case sleep 1 echo timestamp > conftest.file # Reject unsafe characters in $srcdir or the absolute working directory # name. Accept space and tab only in the latter. am_lf=' ' case `pwd` in *[\\\"\#\$\&\'\`$am_lf]*) as_fn_error $? "unsafe absolute working directory name" "$LINENO" 5 ;; esac case $srcdir in *[\\\"\#\$\&\'\`$am_lf\ \ ]*) as_fn_error $? "unsafe srcdir value: \`$srcdir'" "$LINENO" 5 ;; esac # Do `set' in a subshell so we don't clobber the current shell's # arguments. Must try -L first in case configure is actually a # symlink; some systems play weird games with the mod time of symlinks # (eg FreeBSD returns the mod time of the symlink's containing # directory). if ( set X `ls -Lt "$srcdir/configure" conftest.file 2> /dev/null` if test "$*" = "X"; then # -L didn't work. set X `ls -t "$srcdir/configure" conftest.file` fi rm -f conftest.file if test "$*" != "X $srcdir/configure conftest.file" \ && test "$*" != "X conftest.file $srcdir/configure"; then # If neither matched, then we have a broken ls. This can happen # if, for instance, CONFIG_SHELL is bash and it inherits a # broken ls alias from the environment. This has actually # happened. Such a system could not be considered "sane". as_fn_error $? "ls -t appears to fail. Make sure there is not a broken alias in your environment" "$LINENO" 5 fi test "$2" = conftest.file ) then # Ok. : else as_fn_error $? "newly created file is older than distributed files! Check your system clock" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } test "$program_prefix" != NONE && program_transform_name="s&^&$program_prefix&;$program_transform_name" # Use a double $ so make ignores it. test "$program_suffix" != NONE && program_transform_name="s&\$&$program_suffix&;$program_transform_name" # Double any \ or $. # By default was `s,x,x', remove it if useless. ac_script='s/[\\$]/&&/g;s/;s,x,x,$//' program_transform_name=`$as_echo "$program_transform_name" | sed "$ac_script"` # expand $ac_aux_dir to an absolute path am_aux_dir=`cd $ac_aux_dir && pwd` if test x"${MISSING+set}" != xset; then case $am_aux_dir in *\ * | *\ *) MISSING="\${SHELL} \"$am_aux_dir/missing\"" ;; *) MISSING="\${SHELL} $am_aux_dir/missing" ;; esac fi # Use eval to expand $SHELL if eval "$MISSING --run true"; then am_missing_run="$MISSING --run " else am_missing_run= { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`missing' script is too old or missing" >&5 $as_echo "$as_me: WARNING: \`missing' script is too old or missing" >&2;} fi if test x"${install_sh}" != xset; then case $am_aux_dir in *\ * | *\ *) install_sh="\${SHELL} '$am_aux_dir/install-sh'" ;; *) install_sh="\${SHELL} $am_aux_dir/install-sh" esac fi # Installed binaries are usually stripped using `strip' when the user # run `make install-strip'. However `strip' might not be the right # tool to use in cross-compilation environments, therefore Automake # will honor the `STRIP' environment variable to overrule this program. if test "$cross_compiling" != no; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_STRIP+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 $as_echo "$STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_STRIP="strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 $as_echo "$ac_ct_STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi fi INSTALL_STRIP_PROGRAM="\$(install_sh) -c -s" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a thread-safe mkdir -p" >&5 $as_echo_n "checking for a thread-safe mkdir -p... " >&6; } if test -z "$MKDIR_P"; then if test "${ac_cv_path_mkdir+set}" = set; then : $as_echo_n "(cached) " >&6 else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/opt/sfw/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in mkdir gmkdir; do for ac_exec_ext in '' $ac_executable_extensions; do { test -f "$as_dir/$ac_prog$ac_exec_ext" && $as_test_x "$as_dir/$ac_prog$ac_exec_ext"; } || continue case `"$as_dir/$ac_prog$ac_exec_ext" --version 2>&1` in #( 'mkdir (GNU coreutils) '* | \ 'mkdir (coreutils) '* | \ 'mkdir (fileutils) '4.1*) ac_cv_path_mkdir=$as_dir/$ac_prog$ac_exec_ext break 3;; esac done done done IFS=$as_save_IFS fi test -d ./--version && rmdir ./--version if test "${ac_cv_path_mkdir+set}" = set; then MKDIR_P="$ac_cv_path_mkdir -p" else # As a last resort, use the slow shell script. Don't cache a # value for MKDIR_P within a source directory, because that will # break other packages using the cache if that directory is # removed, or if the value is a relative name. MKDIR_P="$ac_install_sh -d" fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MKDIR_P" >&5 $as_echo "$MKDIR_P" >&6; } mkdir_p="$MKDIR_P" case $mkdir_p in [\\/$]* | ?:[\\/]*) ;; */*) mkdir_p="\$(top_builddir)/$mkdir_p" ;; esac for ac_prog in gawk mawk nawk awk do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_AWK+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$AWK"; then ac_cv_prog_AWK="$AWK" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_AWK="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AWK=$ac_cv_prog_AWK if test -n "$AWK"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AWK" >&5 $as_echo "$AWK" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$AWK" && break done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ${MAKE-make} sets \$(MAKE)" >&5 $as_echo_n "checking whether ${MAKE-make} sets \$(MAKE)... " >&6; } set x ${MAKE-make} ac_make=`$as_echo "$2" | sed 's/+/p/g; s/[^a-zA-Z0-9_]/_/g'` if eval "test \"\${ac_cv_prog_make_${ac_make}_set+set}\"" = set; then : $as_echo_n "(cached) " >&6 else cat >conftest.make <<\_ACEOF SHELL = /bin/sh all: @echo '@@@%%%=$(MAKE)=@@@%%%' _ACEOF # GNU make sometimes prints "make[1]: Entering ...", which would confuse us. case `${MAKE-make} -f conftest.make 2>/dev/null` in *@@@%%%=?*=@@@%%%*) eval ac_cv_prog_make_${ac_make}_set=yes;; *) eval ac_cv_prog_make_${ac_make}_set=no;; esac rm -f conftest.make fi if eval test \$ac_cv_prog_make_${ac_make}_set = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } SET_MAKE= else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } SET_MAKE="MAKE=${MAKE-make}" fi rm -rf .tst 2>/dev/null mkdir .tst 2>/dev/null if test -d .tst; then am__leading_dot=. else am__leading_dot=_ fi rmdir .tst 2>/dev/null if test "`cd $srcdir && pwd`" != "`pwd`"; then # Use -I$(srcdir) only when $(srcdir) != ., so that make's output # is not polluted with repeated "-I." am__isrc=' -I$(srcdir)' # test to see if srcdir already configured if test -f $srcdir/config.status; then as_fn_error $? "source directory already configured; run \"make distclean\" there first" "$LINENO" 5 fi fi # test whether we have cygpath if test -z "$CYGPATH_W"; then if (cygpath --version) >/dev/null 2>/dev/null; then CYGPATH_W='cygpath -w' else CYGPATH_W=echo fi fi # Define the identity of the package. PACKAGE=fische VERSION=3.2 cat >>confdefs.h <<_ACEOF #define PACKAGE "$PACKAGE" _ACEOF cat >>confdefs.h <<_ACEOF #define VERSION "$VERSION" _ACEOF # Some tools Automake needs. ACLOCAL=${ACLOCAL-"${am_missing_run}aclocal-${am__api_version}"} AUTOCONF=${AUTOCONF-"${am_missing_run}autoconf"} AUTOMAKE=${AUTOMAKE-"${am_missing_run}automake-${am__api_version}"} AUTOHEADER=${AUTOHEADER-"${am_missing_run}autoheader"} MAKEINFO=${MAKEINFO-"${am_missing_run}makeinfo"} # We need awk for the "check" target. The system "awk" is bad on # some platforms. # Always define AMTAR for backward compatibility. AMTAR=${AMTAR-"${am_missing_run}tar"} am__tar='${AMTAR} chof - "$$tardir"'; am__untar='${AMTAR} xf -' ac_config_headers="$ac_config_headers config.h" DEPDIR="${am__leading_dot}deps" ac_config_commands="$ac_config_commands depfiles" am_make=${MAKE-make} cat > confinc << 'END' am__doit: @echo this is the am__doit target .PHONY: am__doit END # If we don't find an include directive, just comment out the code. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for style of include used by $am_make" >&5 $as_echo_n "checking for style of include used by $am_make... " >&6; } am__include="#" am__quote= _am_result=none # First try GNU make style include. echo "include confinc" > confmf # Ignore all kinds of additional output from `make'. case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=include am__quote= _am_result=GNU ;; esac # Now try BSD make style include. if test "$am__include" = "#"; then echo '.include "confinc"' > confmf case `$am_make -s -f confmf 2> /dev/null` in #( *the\ am__doit\ target*) am__include=.include am__quote="\"" _am_result=BSD ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $_am_result" >&5 $as_echo "$_am_result" >&6; } rm -f confinc confmf # Check whether --enable-dependency-tracking was given. if test "${enable_dependency_tracking+set}" = set; then : enableval=$enable_dependency_tracking; fi if test "x$enable_dependency_tracking" != xno; then am_depcomp="$ac_aux_dir/depcomp" AMDEPBACKSLASH='\' fi if test "x$enable_dependency_tracking" != xno; then AMDEP_TRUE= AMDEP_FALSE='#' else AMDEP_TRUE='#' AMDEP_FALSE= fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_CC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_ac_ct_CC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_CC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_CC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_CC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_ac_ct_CC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See \`config.log' for more details" "$LINENO" 5 ; } # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files a.out a.out.dSYM a.exe b.out" # Try to create an executable without -o first, disregard a.out. # It will help us diagnose broken compilers, and finding out an intuition # of exeext. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler works" >&5 $as_echo_n "checking whether the C compiler works... " >&6; } ac_link_default=`$as_echo "$ac_link" | sed 's/ -o *conftest[^ ]*//'` # The possible output files: ac_files="a.out conftest.exe conftest a.exe a_out.exe b.out conftest.*" ac_rmfiles= for ac_file in $ac_files do case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; * ) ac_rmfiles="$ac_rmfiles $ac_file";; esac done rm -f $ac_rmfiles if { { ac_try="$ac_link_default" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link_default") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # Autoconf-2.13 could set the ac_cv_exeext variable to `no'. # So ignore a value of `no', otherwise this would lead to `EXEEXT = no' # in a Makefile. We should not override ac_cv_exeext if it was cached, # so that the user can short-circuit this test for compilers unknown to # Autoconf. for ac_file in $ac_files '' do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; [ab].out ) # We found the default executable, but exeext='' is most # certainly right. break;; *.* ) if test "${ac_cv_exeext+set}" = set && test "$ac_cv_exeext" != no; then :; else ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` fi # We set ac_cv_exeext here because the later test for it is not # safe: cross compilers may not add the suffix if given an `-o' # argument, so we may need to know it at that point already. # Even if this section looks crufty: it has the advantage of # actually working. break;; * ) break;; esac done test "$ac_cv_exeext" = no && ac_cv_exeext= else ac_file='' fi if test -z "$ac_file"; then : { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error 77 "C compiler cannot create executables See \`config.log' for more details" "$LINENO" 5 ; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler default output file name" >&5 $as_echo_n "checking for C compiler default output file name... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_file" >&5 $as_echo "$ac_file" >&6; } ac_exeext=$ac_cv_exeext rm -f -r a.out a.out.dSYM a.exe conftest$ac_cv_exeext b.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of executables" >&5 $as_echo_n "checking for suffix of executables... " >&6; } if { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : # If both `conftest.exe' and `conftest' are `present' (well, observable) # catch `conftest.exe'. For instance with Cygwin, `ls conftest' will # work properly (i.e., refer to `conftest.exe'), while it won't with # `rm'. for ac_file in conftest.exe conftest conftest.*; do test -f "$ac_file" || continue case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM | *.o | *.obj ) ;; *.* ) ac_cv_exeext=`expr "$ac_file" : '[^.]*\(\..*\)'` break;; * ) break;; esac done else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of executables: cannot compile and link See \`config.log' for more details" "$LINENO" 5 ; } fi rm -f conftest conftest$ac_cv_exeext { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_exeext" >&5 $as_echo "$ac_cv_exeext" >&6; } rm -f conftest.$ac_ext EXEEXT=$ac_cv_exeext ac_exeext=$EXEEXT cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include int main () { FILE *f = fopen ("conftest.out", "w"); return ferror (f) || fclose (f) != 0; ; return 0; } _ACEOF ac_clean_files="$ac_clean_files conftest.out" # Check that the compiler produces executables we can run. If not, either # the compiler is broken, or we cross compile. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are cross compiling" >&5 $as_echo_n "checking whether we are cross compiling... " >&6; } if test "$cross_compiling" != yes; then { { ac_try="$ac_link" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_link") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } if { ac_try='./conftest$ac_cv_exeext' { { case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_try") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; }; then cross_compiling=no else if test "$cross_compiling" = maybe; then cross_compiling=yes else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot run C compiled programs. If you meant to cross compile, use \`--host'. See \`config.log' for more details" "$LINENO" 5 ; } fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $cross_compiling" >&5 $as_echo "$cross_compiling" >&6; } rm -f conftest.$ac_ext conftest$ac_cv_exeext conftest.out ac_clean_files=$ac_clean_files_save { $as_echo "$as_me:${as_lineno-$LINENO}: checking for suffix of object files" >&5 $as_echo_n "checking for suffix of object files... " >&6; } if test "${ac_cv_objext+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF rm -f conftest.o conftest.obj if { { ac_try="$ac_compile" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compile") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then : for ac_file in conftest.o conftest.obj conftest.*; do test -f "$ac_file" || continue; case $ac_file in *.$ac_ext | *.xcoff | *.tds | *.d | *.pdb | *.xSYM | *.bb | *.bbg | *.map | *.inf | *.dSYM ) ;; *) ac_cv_objext=`expr "$ac_file" : '.*\.\(.*\)'` break;; esac done else $as_echo "$as_me: failed program was:" >&5 sed 's/^/| /' conftest.$ac_ext >&5 { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "cannot compute suffix of object files: cannot compile See \`config.log' for more details" "$LINENO" 5 ; } fi rm -f conftest.$ac_cv_objext conftest.$ac_ext fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_objext" >&5 $as_echo "$ac_cv_objext" >&6; } OBJEXT=$ac_cv_objext ac_objext=$OBJEXT { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } if test "${ac_cv_c_compiler_gnu+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } if test "${ac_cv_prog_cc_g+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 $as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if test "${ac_cv_prog_cc_c89+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac if test "x$ac_cv_prog_cc_c89" != xno; then : fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$CC" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvisualcpp | msvcmsys) # This compiler won't grok `-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for library containing strerror" >&5 $as_echo_n "checking for library containing strerror... " >&6; } if test "${ac_cv_search_strerror+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_func_search_save_LIBS=$LIBS cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char strerror (); int main () { return strerror (); ; return 0; } _ACEOF for ac_lib in '' cposix; do if test -z "$ac_lib"; then ac_res="none required" else ac_res=-l$ac_lib LIBS="-l$ac_lib $ac_func_search_save_LIBS" fi if ac_fn_c_try_link "$LINENO"; then : ac_cv_search_strerror=$ac_res fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext if test "${ac_cv_search_strerror+set}" = set; then : break fi done if test "${ac_cv_search_strerror+set}" = set; then : else ac_cv_search_strerror=no fi rm conftest.$ac_ext LIBS=$ac_func_search_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_search_strerror" >&5 $as_echo "$ac_cv_search_strerror" >&6; } ac_res=$ac_cv_search_strerror if test "$ac_res" != no; then : test "$ac_res" = "none required" || LIBS="$ac_res $LIBS" fi ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu if test -z "$CXX"; then if test -n "$CCC"; then CXX=$CCC else if test -n "$ac_tool_prefix"; then for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_CXX+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$CXX"; then ac_cv_prog_CXX="$CXX" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CXX=$ac_cv_prog_CXX if test -n "$CXX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 $as_echo "$CXX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CXX" && break done fi if test -z "$CXX"; then ac_ct_CXX=$CXX for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CXX"; then ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CXX="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CXX=$ac_cv_prog_ac_ct_CXX if test -n "$ac_ct_CXX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 $as_echo "$ac_ct_CXX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CXX" && break done if test "x$ac_ct_CXX" = x; then CXX="g++" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CXX=$ac_ct_CXX fi fi fi fi # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5 $as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; } if test "${ac_cv_cxx_compiler_gnu+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_cxx_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 $as_echo "$ac_cv_cxx_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GXX=yes else GXX= fi ac_test_CXXFLAGS=${CXXFLAGS+set} ac_save_CXXFLAGS=$CXXFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 $as_echo_n "checking whether $CXX accepts -g... " >&6; } if test "${ac_cv_prog_cxx_g+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_save_cxx_werror_flag=$ac_cxx_werror_flag ac_cxx_werror_flag=yes ac_cv_prog_cxx_g=no CXXFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ac_cv_prog_cxx_g=yes else CXXFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : else ac_cxx_werror_flag=$ac_save_cxx_werror_flag CXXFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ac_cv_prog_cxx_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cxx_werror_flag=$ac_save_cxx_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 $as_echo "$ac_cv_prog_cxx_g" >&6; } if test "$ac_test_CXXFLAGS" = set; then CXXFLAGS=$ac_save_CXXFLAGS elif test $ac_cv_prog_cxx_g = yes; then if test "$GXX" = yes; then CXXFLAGS="-g -O2" else CXXFLAGS="-g" fi else if test "$GXX" = yes; then CXXFLAGS="-O2" else CXXFLAGS= fi fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$CXX" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if test "${am_cv_CXX_dependencies_compiler_type+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CXX_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvisualcpp | msvcmsys) # This compiler won't grok `-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CXX_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CXX_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CXX_dependencies_compiler_type" >&5 $as_echo "$am_cv_CXX_dependencies_compiler_type" >&6; } CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then am__fastdepCXX_TRUE= am__fastdepCXX_FALSE='#' else am__fastdepCXX_TRUE='#' am__fastdepCXX_FALSE= fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}gcc", so it can be a program name with args. set dummy ${ac_tool_prefix}gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_CC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_CC"; then ac_ct_CC=$CC # Extract the first word of "gcc", so it can be a program name with args. set dummy gcc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_ac_ct_CC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="gcc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi else CC="$ac_cv_prog_CC" fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}cc", so it can be a program name with args. set dummy ${ac_tool_prefix}cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_CC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="${ac_tool_prefix}cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi fi if test -z "$CC"; then # Extract the first word of "cc", so it can be a program name with args. set dummy cc; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_CC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else ac_prog_rejected=no as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then if test "$as_dir/$ac_word$ac_exec_ext" = "/usr/ucb/cc"; then ac_prog_rejected=yes continue fi ac_cv_prog_CC="cc" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS if test $ac_prog_rejected = yes; then # We found a bogon in the path, so make sure we never use it. set dummy $ac_cv_prog_CC shift if test $# != 0; then # We chose a different compiler from the bogus one. # However, it has the same basename, so the bogon will be chosen # first if we set CC to just the basename; use the full file name. shift ac_cv_prog_CC="$as_dir/$ac_word${1+' '}$@" fi fi fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$CC"; then if test -n "$ac_tool_prefix"; then for ac_prog in cl.exe do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_CC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$CC"; then ac_cv_prog_CC="$CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CC="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CC=$ac_cv_prog_CC if test -n "$CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CC" >&5 $as_echo "$CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CC" && break done fi if test -z "$CC"; then ac_ct_CC=$CC for ac_prog in cl.exe do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_ac_ct_CC+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CC"; then ac_cv_prog_ac_ct_CC="$ac_ct_CC" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CC="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CC=$ac_cv_prog_ac_ct_CC if test -n "$ac_ct_CC"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CC" >&5 $as_echo "$ac_ct_CC" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CC" && break done if test "x$ac_ct_CC" = x; then CC="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CC=$ac_ct_CC fi fi fi test -z "$CC" && { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "no acceptable C compiler found in \$PATH See \`config.log' for more details" "$LINENO" 5 ; } # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C compiler" >&5 $as_echo_n "checking whether we are using the GNU C compiler... " >&6; } if test "${ac_cv_c_compiler_gnu+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_c_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_c_compiler_gnu" >&5 $as_echo "$ac_cv_c_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GCC=yes else GCC= fi ac_test_CFLAGS=${CFLAGS+set} ac_save_CFLAGS=$CFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CC accepts -g" >&5 $as_echo_n "checking whether $CC accepts -g... " >&6; } if test "${ac_cv_prog_cc_g+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_save_c_werror_flag=$ac_c_werror_flag ac_c_werror_flag=yes ac_cv_prog_cc_g=no CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes else CFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : else ac_c_werror_flag=$ac_save_c_werror_flag CFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_c_werror_flag=$ac_save_c_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_g" >&5 $as_echo "$ac_cv_prog_cc_g" >&6; } if test "$ac_test_CFLAGS" = set; then CFLAGS=$ac_save_CFLAGS elif test $ac_cv_prog_cc_g = yes; then if test "$GCC" = yes; then CFLAGS="-g -O2" else CFLAGS="-g" fi else if test "$GCC" = yes; then CFLAGS="-O2" else CFLAGS= fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $CC option to accept ISO C89" >&5 $as_echo_n "checking for $CC option to accept ISO C89... " >&6; } if test "${ac_cv_prog_cc_c89+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_cv_prog_cc_c89=no ac_save_CC=$CC cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include /* Most of the following tests are stolen from RCS 5.7's src/conf.sh. */ struct buf { int x; }; FILE * (*rcsopen) (struct buf *, struct stat *, int); static char *e (p, i) char **p; int i; { return p[i]; } static char *f (char * (*g) (char **, int), char **p, ...) { char *s; va_list v; va_start (v,p); s = g (p, va_arg (v,int)); va_end (v); return s; } /* OSF 4.0 Compaq cc is some sort of almost-ANSI by default. It has function prototypes and stuff, but not '\xHH' hex character constants. These don't provoke an error unfortunately, instead are silently treated as 'x'. The following induces an error, until -std is added to get proper ANSI mode. Curiously '\x00'!='x' always comes out true, for an array size at least. It's necessary to write '\x00'==0 to get something that's true only with -std. */ int osf4_cc_array ['\x00' == 0 ? 1 : -1]; /* IBM C 6 for AIX is almost-ANSI by default, but it replaces macro parameters inside strings and character constants. */ #define FOO(x) 'x' int xlc6_cc_array[FOO(a) == 'x' ? 1 : -1]; int test (int i, double x); struct s1 {int (*f) (int a);}; struct s2 {int (*f) (double a);}; int pairnames (int, char **, FILE *(*)(struct buf *, struct stat *, int), int, int); int argc; char **argv; int main () { return f (e, argv, 0) != argv[0] || f (e, argv, 1) != argv[1]; ; return 0; } _ACEOF for ac_arg in '' -qlanglvl=extc89 -qlanglvl=ansi -std \ -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIONS__" do CC="$ac_save_CC $ac_arg" if ac_fn_c_try_compile "$LINENO"; then : ac_cv_prog_cc_c89=$ac_arg fi rm -f core conftest.err conftest.$ac_objext test "x$ac_cv_prog_cc_c89" != "xno" && break done rm -f conftest.$ac_ext CC=$ac_save_CC fi # AC_CACHE_VAL case "x$ac_cv_prog_cc_c89" in x) { $as_echo "$as_me:${as_lineno-$LINENO}: result: none needed" >&5 $as_echo "none needed" >&6; } ;; xno) { $as_echo "$as_me:${as_lineno-$LINENO}: result: unsupported" >&5 $as_echo "unsupported" >&6; } ;; *) CC="$CC $ac_cv_prog_cc_c89" { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cc_c89" >&5 $as_echo "$ac_cv_prog_cc_c89" >&6; } ;; esac if test "x$ac_cv_prog_cc_c89" != xno; then : fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$CC" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if test "${am_cv_CC_dependencies_compiler_type+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CC_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvisualcpp | msvcmsys) # This compiler won't grok `-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CC_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CC_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CC_dependencies_compiler_type" >&5 $as_echo "$am_cv_CC_dependencies_compiler_type" >&6; } CCDEPMODE=depmode=$am_cv_CC_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CC_dependencies_compiler_type" = gcc3; then am__fastdepCC_TRUE= am__fastdepCC_FALSE='#' else am__fastdepCC_TRUE='#' am__fastdepCC_FALSE= fi am_cv_prog_cc_stdc=$ac_cv_prog_cc_stdc ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C preprocessor" >&5 $as_echo_n "checking how to run the C preprocessor... " >&6; } # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then CPP= fi if test -z "$CPP"; then if test "${ac_cv_prog_CPP+set}" = set; then : $as_echo_n "(cached) " >&6 else # Double quotes because CPP needs to be expanded for CPP in "$CC -E" "$CC -E -traditional-cpp" "/lib/cpp" do ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : break fi done ac_cv_prog_CPP=$CPP fi CPP=$ac_cv_prog_CPP else ac_cv_prog_CPP=$CPP fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CPP" >&5 $as_echo "$CPP" >&6; } ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_c_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "C preprocessor \"$CPP\" fails sanity check See \`config.log' for more details" "$LINENO" 5 ; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking for grep that handles long lines and -e" >&5 $as_echo_n "checking for grep that handles long lines and -e... " >&6; } if test "${ac_cv_path_GREP+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -z "$GREP"; then ac_path_GREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in grep ggrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_GREP="$as_dir/$ac_prog$ac_exec_ext" { test -f "$ac_path_GREP" && $as_test_x "$ac_path_GREP"; } || continue # Check for GNU ac_path_GREP and select it if it is found. # Check for GNU $ac_path_GREP case `"$ac_path_GREP" --version 2>&1` in *GNU*) ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'GREP' >> "conftest.nl" "$ac_path_GREP" -e 'GREP$' -e '-(cannot match)-' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_GREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_GREP="$ac_path_GREP" ac_path_GREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_GREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_GREP"; then as_fn_error $? "no acceptable grep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_GREP=$GREP fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_GREP" >&5 $as_echo "$ac_cv_path_GREP" >&6; } GREP="$ac_cv_path_GREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for egrep" >&5 $as_echo_n "checking for egrep... " >&6; } if test "${ac_cv_path_EGREP+set}" = set; then : $as_echo_n "(cached) " >&6 else if echo a | $GREP -E '(a|b)' >/dev/null 2>&1 then ac_cv_path_EGREP="$GREP -E" else if test -z "$EGREP"; then ac_path_EGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in egrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_EGREP="$as_dir/$ac_prog$ac_exec_ext" { test -f "$ac_path_EGREP" && $as_test_x "$ac_path_EGREP"; } || continue # Check for GNU ac_path_EGREP and select it if it is found. # Check for GNU $ac_path_EGREP case `"$ac_path_EGREP" --version 2>&1` in *GNU*) ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'EGREP' >> "conftest.nl" "$ac_path_EGREP" 'EGREP$' < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_EGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_EGREP="$ac_path_EGREP" ac_path_EGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_EGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_EGREP"; then as_fn_error $? "no acceptable egrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_EGREP=$EGREP fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_EGREP" >&5 $as_echo "$ac_cv_path_EGREP" >&6; } EGREP="$ac_cv_path_EGREP" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ANSI C header files" >&5 $as_echo_n "checking for ANSI C header files... " >&6; } if test "${ac_cv_header_stdc+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #include #include int main () { ; return 0; } _ACEOF if ac_fn_c_try_compile "$LINENO"; then : ac_cv_header_stdc=yes else ac_cv_header_stdc=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "memchr" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | $EGREP "free" >/dev/null 2>&1; then : else ac_cv_header_stdc=no fi rm -f conftest* fi if test $ac_cv_header_stdc = yes; then # /bin/cc in Irix-4.0.5 gets non-ANSI ctype macros unless using -ansi. if test "$cross_compiling" = yes; then : : else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include #include #if ((' ' & 0x0FF) == 0x020) # define ISLOWER(c) ('a' <= (c) && (c) <= 'z') # define TOUPPER(c) (ISLOWER(c) ? 'A' + ((c) - 'a') : (c)) #else # define ISLOWER(c) \ (('a' <= (c) && (c) <= 'i') \ || ('j' <= (c) && (c) <= 'r') \ || ('s' <= (c) && (c) <= 'z')) # define TOUPPER(c) (ISLOWER(c) ? ((c) | 0x40) : (c)) #endif #define XOR(e, f) (((e) && !(f)) || (!(e) && (f))) int main () { int i; for (i = 0; i < 256; i++) if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) return 2; return 0; } _ACEOF if ac_fn_c_try_run "$LINENO"; then : else ac_cv_header_stdc=no fi rm -f core *.core core.conftest.* gmon.out bb.out conftest$ac_exeext \ conftest.$ac_objext conftest.beam conftest.$ac_ext fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_header_stdc" >&5 $as_echo "$ac_cv_header_stdc" >&6; } if test $ac_cv_header_stdc = yes; then $as_echo "#define STDC_HEADERS 1" >>confdefs.h fi case `pwd` in *\ * | *\ *) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&5 $as_echo "$as_me: WARNING: Libtool does not cope well with whitespace in \`pwd\`" >&2;} ;; esac macro_version='2.2.6b' macro_revision='1.3017' ltmain="$ac_aux_dir/ltmain.sh" # Make sure we can run config.sub. $SHELL "$ac_aux_dir/config.sub" sun4 >/dev/null 2>&1 || as_fn_error $? "cannot run $SHELL $ac_aux_dir/config.sub" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking build system type" >&5 $as_echo_n "checking build system type... " >&6; } if test "${ac_cv_build+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_build_alias=$build_alias test "x$ac_build_alias" = x && ac_build_alias=`$SHELL "$ac_aux_dir/config.guess"` test "x$ac_build_alias" = x && as_fn_error $? "cannot guess build type; you must specify one" "$LINENO" 5 ac_cv_build=`$SHELL "$ac_aux_dir/config.sub" $ac_build_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $ac_build_alias failed" "$LINENO" 5 fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_build" >&5 $as_echo "$ac_cv_build" >&6; } case $ac_cv_build in *-*-*) ;; *) as_fn_error $? "invalid value of canonical build" "$LINENO" 5 ;; esac build=$ac_cv_build ac_save_IFS=$IFS; IFS='-' set x $ac_cv_build shift build_cpu=$1 build_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: build_os=$* IFS=$ac_save_IFS case $build_os in *\ *) build_os=`echo "$build_os" | sed 's/ /-/g'`;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking host system type" >&5 $as_echo_n "checking host system type... " >&6; } if test "${ac_cv_host+set}" = set; then : $as_echo_n "(cached) " >&6 else if test "x$host_alias" = x; then ac_cv_host=$ac_cv_build else ac_cv_host=`$SHELL "$ac_aux_dir/config.sub" $host_alias` || as_fn_error $? "$SHELL $ac_aux_dir/config.sub $host_alias failed" "$LINENO" 5 fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_host" >&5 $as_echo "$ac_cv_host" >&6; } case $ac_cv_host in *-*-*) ;; *) as_fn_error $? "invalid value of canonical host" "$LINENO" 5 ;; esac host=$ac_cv_host ac_save_IFS=$IFS; IFS='-' set x $ac_cv_host shift host_cpu=$1 host_vendor=$2 shift; shift # Remember, the first character of IFS is used to create $*, # except with old shells: host_os=$* IFS=$ac_save_IFS case $host_os in *\ *) host_os=`echo "$host_os" | sed 's/ /-/g'`;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for a sed that does not truncate output" >&5 $as_echo_n "checking for a sed that does not truncate output... " >&6; } if test "${ac_cv_path_SED+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_script=s/aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa/bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb/ for ac_i in 1 2 3 4 5 6 7; do ac_script="$ac_script$as_nl$ac_script" done echo "$ac_script" 2>/dev/null | sed 99q >conftest.sed { ac_script=; unset ac_script;} if test -z "$SED"; then ac_path_SED_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in sed gsed; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_SED="$as_dir/$ac_prog$ac_exec_ext" { test -f "$ac_path_SED" && $as_test_x "$ac_path_SED"; } || continue # Check for GNU ac_path_SED and select it if it is found. # Check for GNU $ac_path_SED case `"$ac_path_SED" --version 2>&1` in *GNU*) ac_cv_path_SED="$ac_path_SED" ac_path_SED_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo '' >> "conftest.nl" "$ac_path_SED" -f conftest.sed < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_SED_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_SED="$ac_path_SED" ac_path_SED_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_SED_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_SED"; then as_fn_error $? "no acceptable sed could be found in \$PATH" "$LINENO" 5 fi else ac_cv_path_SED=$SED fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_SED" >&5 $as_echo "$ac_cv_path_SED" >&6; } SED="$ac_cv_path_SED" rm -f conftest.sed test -z "$SED" && SED=sed Xsed="$SED -e 1s/^X//" { $as_echo "$as_me:${as_lineno-$LINENO}: checking for fgrep" >&5 $as_echo_n "checking for fgrep... " >&6; } if test "${ac_cv_path_FGREP+set}" = set; then : $as_echo_n "(cached) " >&6 else if echo 'ab*c' | $GREP -F 'ab*c' >/dev/null 2>&1 then ac_cv_path_FGREP="$GREP -F" else if test -z "$FGREP"; then ac_path_FGREP_found=false # Loop through the user's path and test for each of PROGNAME-LIST as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH$PATH_SEPARATOR/usr/xpg4/bin do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_prog in fgrep; do for ac_exec_ext in '' $ac_executable_extensions; do ac_path_FGREP="$as_dir/$ac_prog$ac_exec_ext" { test -f "$ac_path_FGREP" && $as_test_x "$ac_path_FGREP"; } || continue # Check for GNU ac_path_FGREP and select it if it is found. # Check for GNU $ac_path_FGREP case `"$ac_path_FGREP" --version 2>&1` in *GNU*) ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_found=:;; *) ac_count=0 $as_echo_n 0123456789 >"conftest.in" while : do cat "conftest.in" "conftest.in" >"conftest.tmp" mv "conftest.tmp" "conftest.in" cp "conftest.in" "conftest.nl" $as_echo 'FGREP' >> "conftest.nl" "$ac_path_FGREP" FGREP < "conftest.nl" >"conftest.out" 2>/dev/null || break diff "conftest.out" "conftest.nl" >/dev/null 2>&1 || break as_fn_arith $ac_count + 1 && ac_count=$as_val if test $ac_count -gt ${ac_path_FGREP_max-0}; then # Best one so far, save it but keep looking for a better one ac_cv_path_FGREP="$ac_path_FGREP" ac_path_FGREP_max=$ac_count fi # 10*(2^10) chars as input seems more than enough test $ac_count -gt 10 && break done rm -f conftest.in conftest.tmp conftest.nl conftest.out;; esac $ac_path_FGREP_found && break 3 done done done IFS=$as_save_IFS if test -z "$ac_cv_path_FGREP"; then as_fn_error $? "no acceptable fgrep could be found in $PATH$PATH_SEPARATOR/usr/xpg4/bin" "$LINENO" 5 fi else ac_cv_path_FGREP=$FGREP fi fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_path_FGREP" >&5 $as_echo "$ac_cv_path_FGREP" >&6; } FGREP="$ac_cv_path_FGREP" test -z "$GREP" && GREP=grep # Check whether --with-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then : withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes else with_gnu_ld=no fi ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 $as_echo_n "checking for ld used by $CC... " >&6; } case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [\\/]* | ?:[\\/]*) re_direlt='/[^/][^/]*/\.\./' # Canonicalize the pathname of ld ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 $as_echo_n "checking for GNU ld... " >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 $as_echo_n "checking for non-GNU ld... " >&6; } fi if test "${lt_cv_path_LD+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -z "$LD"; then lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &5 $as_echo "$LD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } if test "${lt_cv_prog_gnu_ld+set}" = set; then : $as_echo_n "(cached) " >&6 else # I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 &5 $as_echo "$lt_cv_prog_gnu_ld" >&6; } with_gnu_ld=$lt_cv_prog_gnu_ld { $as_echo "$as_me:${as_lineno-$LINENO}: checking for BSD- or MS-compatible name lister (nm)" >&5 $as_echo_n "checking for BSD- or MS-compatible name lister (nm)... " >&6; } if test "${lt_cv_path_NM+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$NM"; then # Let the user override the test. lt_cv_path_NM="$NM" else lt_nm_to_check="${ac_tool_prefix}nm" if test -n "$ac_tool_prefix" && test "$build" = "$host"; then lt_nm_to_check="$lt_nm_to_check nm" fi for lt_tmp_nm in $lt_nm_to_check; do lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH /usr/ccs/bin/elf /usr/ccs/bin /usr/ucb /bin; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. tmp_nm="$ac_dir/$lt_tmp_nm" if test -f "$tmp_nm" || test -f "$tmp_nm$ac_exeext" ; then # Check to see if the nm accepts a BSD-compat flag. # Adding the `sed 1q' prevents false positives on HP-UX, which says: # nm: unknown option "B" ignored # Tru64's nm complains that /dev/null is an invalid object file case `"$tmp_nm" -B /dev/null 2>&1 | sed '1q'` in */dev/null* | *'Invalid file or object type'*) lt_cv_path_NM="$tmp_nm -B" break ;; *) case `"$tmp_nm" -p /dev/null 2>&1 | sed '1q'` in */dev/null*) lt_cv_path_NM="$tmp_nm -p" break ;; *) lt_cv_path_NM=${lt_cv_path_NM="$tmp_nm"} # keep the first match, but continue # so that we can try to find one that supports BSD flags ;; esac ;; esac fi done IFS="$lt_save_ifs" done : ${lt_cv_path_NM=no} fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_path_NM" >&5 $as_echo "$lt_cv_path_NM" >&6; } if test "$lt_cv_path_NM" != "no"; then NM="$lt_cv_path_NM" else # Didn't find any BSD compatible name lister, look for dumpbin. if test -n "$ac_tool_prefix"; then for ac_prog in "dumpbin -symbols" "link -dump -symbols" do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_DUMPBIN+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$DUMPBIN"; then ac_cv_prog_DUMPBIN="$DUMPBIN" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_DUMPBIN="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi DUMPBIN=$ac_cv_prog_DUMPBIN if test -n "$DUMPBIN"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DUMPBIN" >&5 $as_echo "$DUMPBIN" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$DUMPBIN" && break done fi if test -z "$DUMPBIN"; then ac_ct_DUMPBIN=$DUMPBIN for ac_prog in "dumpbin -symbols" "link -dump -symbols" do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_ac_ct_DUMPBIN+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_DUMPBIN"; then ac_cv_prog_ac_ct_DUMPBIN="$ac_ct_DUMPBIN" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_DUMPBIN="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_DUMPBIN=$ac_cv_prog_ac_ct_DUMPBIN if test -n "$ac_ct_DUMPBIN"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DUMPBIN" >&5 $as_echo "$ac_ct_DUMPBIN" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_DUMPBIN" && break done if test "x$ac_ct_DUMPBIN" = x; then DUMPBIN=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac DUMPBIN=$ac_ct_DUMPBIN fi fi if test "$DUMPBIN" != ":"; then NM="$DUMPBIN" fi fi test -z "$NM" && NM=nm { $as_echo "$as_me:${as_lineno-$LINENO}: checking the name lister ($NM) interface" >&5 $as_echo_n "checking the name lister ($NM) interface... " >&6; } if test "${lt_cv_nm_interface+set}" = set; then : $as_echo_n "(cached) " >&6 else lt_cv_nm_interface="BSD nm" echo "int some_variable = 0;" > conftest.$ac_ext (eval echo "\"\$as_me:5979: $ac_compile\"" >&5) (eval "$ac_compile" 2>conftest.err) cat conftest.err >&5 (eval echo "\"\$as_me:5982: $NM \\\"conftest.$ac_objext\\\"\"" >&5) (eval "$NM \"conftest.$ac_objext\"" 2>conftest.err > conftest.out) cat conftest.err >&5 (eval echo "\"\$as_me:5985: output\"" >&5) cat conftest.out >&5 if $GREP 'External.*some_variable' conftest.out > /dev/null; then lt_cv_nm_interface="MS dumpbin" fi rm -f conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_nm_interface" >&5 $as_echo "$lt_cv_nm_interface" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether ln -s works" >&5 $as_echo_n "checking whether ln -s works... " >&6; } LN_S=$as_ln_s if test "$LN_S" = "ln -s"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no, using $LN_S" >&5 $as_echo "no, using $LN_S" >&6; } fi # find the maximum length of command line arguments { $as_echo "$as_me:${as_lineno-$LINENO}: checking the maximum length of command line arguments" >&5 $as_echo_n "checking the maximum length of command line arguments... " >&6; } if test "${lt_cv_sys_max_cmd_len+set}" = set; then : $as_echo_n "(cached) " >&6 else i=0 teststring="ABCD" case $build_os in msdosdjgpp*) # On DJGPP, this test can blow up pretty badly due to problems in libc # (any single argument exceeding 2000 bytes causes a buffer overrun # during glob expansion). Even if it were fixed, the result of this # check would be larger than it should be. lt_cv_sys_max_cmd_len=12288; # 12K is about right ;; gnu*) # Under GNU Hurd, this test is not required because there is # no limit to the length of command line arguments. # Libtool will interpret -1 as no limit whatsoever lt_cv_sys_max_cmd_len=-1; ;; cygwin* | mingw* | cegcc*) # On Win9x/ME, this test blows up -- it succeeds, but takes # about 5 minutes as the teststring grows exponentially. # Worse, since 9x/ME are not pre-emptively multitasking, # you end up with a "frozen" computer, even though with patience # the test eventually succeeds (with a max line length of 256k). # Instead, let's just punt: use the minimum linelength reported by # all of the supported platforms: 8192 (on NT/2K/XP). lt_cv_sys_max_cmd_len=8192; ;; amigaos*) # On AmigaOS with pdksh, this test takes hours, literally. # So we just punt and use a minimum line length of 8192. lt_cv_sys_max_cmd_len=8192; ;; netbsd* | freebsd* | openbsd* | darwin* | dragonfly*) # This has been around since 386BSD, at least. Likely further. if test -x /sbin/sysctl; then lt_cv_sys_max_cmd_len=`/sbin/sysctl -n kern.argmax` elif test -x /usr/sbin/sysctl; then lt_cv_sys_max_cmd_len=`/usr/sbin/sysctl -n kern.argmax` else lt_cv_sys_max_cmd_len=65536 # usable default for all BSDs fi # And add a safety zone lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` ;; interix*) # We know the value 262144 and hardcode it with a safety zone (like BSD) lt_cv_sys_max_cmd_len=196608 ;; osf*) # Dr. Hans Ekkehard Plesser reports seeing a kernel panic running configure # due to this test when exec_disable_arg_limit is 1 on Tru64. It is not # nice to cause kernel panics so lets avoid the loop below. # First set a reasonable default. lt_cv_sys_max_cmd_len=16384 # if test -x /sbin/sysconfig; then case `/sbin/sysconfig -q proc exec_disable_arg_limit` in *1*) lt_cv_sys_max_cmd_len=-1 ;; esac fi ;; sco3.2v5*) lt_cv_sys_max_cmd_len=102400 ;; sysv5* | sco5v6* | sysv4.2uw2*) kargmax=`grep ARG_MAX /etc/conf/cf.d/stune 2>/dev/null` if test -n "$kargmax"; then lt_cv_sys_max_cmd_len=`echo $kargmax | sed 's/.*[ ]//'` else lt_cv_sys_max_cmd_len=32768 fi ;; *) lt_cv_sys_max_cmd_len=`(getconf ARG_MAX) 2> /dev/null` if test -n "$lt_cv_sys_max_cmd_len"; then lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 4` lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \* 3` else # Make teststring a little bigger before we do anything with it. # a 1K string should be a reasonable start. for i in 1 2 3 4 5 6 7 8 ; do teststring=$teststring$teststring done SHELL=${SHELL-${CONFIG_SHELL-/bin/sh}} # If test is not a shell built-in, we'll probably end up computing a # maximum length that is only half of the actual maximum length, but # we can't tell. while { test "X"`$SHELL $0 --fallback-echo "X$teststring$teststring" 2>/dev/null` \ = "XX$teststring$teststring"; } >/dev/null 2>&1 && test $i != 17 # 1/2 MB should be enough do i=`expr $i + 1` teststring=$teststring$teststring done # Only check the string length outside the loop. lt_cv_sys_max_cmd_len=`expr "X$teststring" : ".*" 2>&1` teststring= # Add a significant safety factor because C++ compilers can tack on # massive amounts of additional arguments before passing them to the # linker. It appears as though 1/2 is a usable value. lt_cv_sys_max_cmd_len=`expr $lt_cv_sys_max_cmd_len \/ 2` fi ;; esac fi if test -n $lt_cv_sys_max_cmd_len ; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_sys_max_cmd_len" >&5 $as_echo "$lt_cv_sys_max_cmd_len" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: none" >&5 $as_echo "none" >&6; } fi max_cmd_len=$lt_cv_sys_max_cmd_len : ${CP="cp -f"} : ${MV="mv -f"} : ${RM="rm -f"} { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands some XSI constructs" >&5 $as_echo_n "checking whether the shell understands some XSI constructs... " >&6; } # Try some XSI features xsi_shell=no ( _lt_dummy="a/b/c" test "${_lt_dummy##*/},${_lt_dummy%/*},"${_lt_dummy%"$_lt_dummy"}, \ = c,a/b,, \ && eval 'test $(( 1 + 1 )) -eq 2 \ && test "${#_lt_dummy}" -eq 5' ) >/dev/null 2>&1 \ && xsi_shell=yes { $as_echo "$as_me:${as_lineno-$LINENO}: result: $xsi_shell" >&5 $as_echo "$xsi_shell" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the shell understands \"+=\"" >&5 $as_echo_n "checking whether the shell understands \"+=\"... " >&6; } lt_shell_append=no ( foo=bar; set foo baz; eval "$1+=\$2" && test "$foo" = barbaz ) \ >/dev/null 2>&1 \ && lt_shell_append=yes { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_shell_append" >&5 $as_echo "$lt_shell_append" >&6; } if ( (MAIL=60; unset MAIL) || exit) >/dev/null 2>&1; then lt_unset=unset else lt_unset=false fi # test EBCDIC or ASCII case `echo X|tr X '\101'` in A) # ASCII based system # \n is not interpreted correctly by Solaris 8 /usr/ucb/tr lt_SP2NL='tr \040 \012' lt_NL2SP='tr \015\012 \040\040' ;; *) # EBCDIC based system lt_SP2NL='tr \100 \n' lt_NL2SP='tr \r\n \100\100' ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $LD option to reload object files" >&5 $as_echo_n "checking for $LD option to reload object files... " >&6; } if test "${lt_cv_ld_reload_flag+set}" = set; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_reload_flag='-r' fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_reload_flag" >&5 $as_echo "$lt_cv_ld_reload_flag" >&6; } reload_flag=$lt_cv_ld_reload_flag case $reload_flag in "" | " "*) ;; *) reload_flag=" $reload_flag" ;; esac reload_cmds='$LD$reload_flag -o $output$reload_objs' case $host_os in darwin*) if test "$GCC" = yes; then reload_cmds='$LTCC $LTCFLAGS -nostdlib ${wl}-r -o $output$reload_objs' else reload_cmds='$LD$reload_flag -o $output$reload_objs' fi ;; esac if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}objdump", so it can be a program name with args. set dummy ${ac_tool_prefix}objdump; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_OBJDUMP+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$OBJDUMP"; then ac_cv_prog_OBJDUMP="$OBJDUMP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_OBJDUMP="${ac_tool_prefix}objdump" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi OBJDUMP=$ac_cv_prog_OBJDUMP if test -n "$OBJDUMP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OBJDUMP" >&5 $as_echo "$OBJDUMP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_OBJDUMP"; then ac_ct_OBJDUMP=$OBJDUMP # Extract the first word of "objdump", so it can be a program name with args. set dummy objdump; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_ac_ct_OBJDUMP+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OBJDUMP"; then ac_cv_prog_ac_ct_OBJDUMP="$ac_ct_OBJDUMP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_OBJDUMP="objdump" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_OBJDUMP=$ac_cv_prog_ac_ct_OBJDUMP if test -n "$ac_ct_OBJDUMP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OBJDUMP" >&5 $as_echo "$ac_ct_OBJDUMP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OBJDUMP" = x; then OBJDUMP="false" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac OBJDUMP=$ac_ct_OBJDUMP fi else OBJDUMP="$ac_cv_prog_OBJDUMP" fi test -z "$OBJDUMP" && OBJDUMP=objdump { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to recognize dependent libraries" >&5 $as_echo_n "checking how to recognize dependent libraries... " >&6; } if test "${lt_cv_deplibs_check_method+set}" = set; then : $as_echo_n "(cached) " >&6 else lt_cv_file_magic_cmd='$MAGIC_CMD' lt_cv_file_magic_test_file= lt_cv_deplibs_check_method='unknown' # Need to set the preceding variable on all platforms that support # interlibrary dependencies. # 'none' -- dependencies not supported. # `unknown' -- same as none, but documents that we really don't know. # 'pass_all' -- all dependencies passed with no checks. # 'test_compile' -- check by making test program. # 'file_magic [[regex]]' -- check by looking for files in library path # which responds to the $file_magic_cmd with a given extended regex. # If you have `file' or equivalent on your system and you're not sure # whether `pass_all' will *always* work, you probably want this one. case $host_os in aix[4-9]*) lt_cv_deplibs_check_method=pass_all ;; beos*) lt_cv_deplibs_check_method=pass_all ;; bsdi[45]*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib)' lt_cv_file_magic_cmd='/usr/bin/file -L' lt_cv_file_magic_test_file=/shlib/libc.so ;; cygwin*) # func_win32_libid is a shell function defined in ltmain.sh lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' ;; mingw* | pw32*) # Base MSYS/MinGW do not provide the 'file' command needed by # func_win32_libid shell function, so use a weaker test based on 'objdump', # unless we find 'file', for example because we are cross-compiling. if ( file / ) >/dev/null 2>&1; then lt_cv_deplibs_check_method='file_magic ^x86 archive import|^x86 DLL' lt_cv_file_magic_cmd='func_win32_libid' else lt_cv_deplibs_check_method='file_magic file format pei*-i386(.*architecture: i386)?' lt_cv_file_magic_cmd='$OBJDUMP -f' fi ;; cegcc) # use the weaker test based on 'objdump'. See mingw*. lt_cv_deplibs_check_method='file_magic file format pe-arm-.*little(.*architecture: arm)?' lt_cv_file_magic_cmd='$OBJDUMP -f' ;; darwin* | rhapsody*) lt_cv_deplibs_check_method=pass_all ;; freebsd* | dragonfly*) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then case $host_cpu in i*86 ) # Not sure whether the presence of OpenBSD here was a mistake. # Let's accept both of them until this is cleared up. lt_cv_deplibs_check_method='file_magic (FreeBSD|OpenBSD|DragonFly)/i[3-9]86 (compact )?demand paged shared library' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=`echo /usr/lib/libc.so.*` ;; esac else lt_cv_deplibs_check_method=pass_all fi ;; gnu*) lt_cv_deplibs_check_method=pass_all ;; hpux10.20* | hpux11*) lt_cv_file_magic_cmd=/usr/bin/file case $host_cpu in ia64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - IA64' lt_cv_file_magic_test_file=/usr/lib/hpux32/libc.so ;; hppa*64*) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|ELF-[0-9][0-9]) shared object file - PA-RISC [0-9].[0-9]' lt_cv_file_magic_test_file=/usr/lib/pa20_64/libc.sl ;; *) lt_cv_deplibs_check_method='file_magic (s[0-9][0-9][0-9]|PA-RISC[0-9].[0-9]) shared library' lt_cv_file_magic_test_file=/usr/lib/libc.sl ;; esac ;; interix[3-9]*) # PIC code is broken on Interix 3.x, that's why |\.a not |_pic\.a here lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|\.a)$' ;; irix5* | irix6* | nonstopux*) case $LD in *-32|*"-32 ") libmagic=32-bit;; *-n32|*"-n32 ") libmagic=N32;; *-64|*"-64 ") libmagic=64-bit;; *) libmagic=never-match;; esac lt_cv_deplibs_check_method=pass_all ;; # This must be Linux ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu) lt_cv_deplibs_check_method=pass_all ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ > /dev/null; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so|_pic\.a)$' fi ;; newos6*) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (executable|dynamic lib)' lt_cv_file_magic_cmd=/usr/bin/file lt_cv_file_magic_test_file=/usr/lib/libnls.so ;; *nto* | *qnx*) lt_cv_deplibs_check_method=pass_all ;; openbsd*) if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|\.so|_pic\.a)$' else lt_cv_deplibs_check_method='match_pattern /lib[^/]+(\.so\.[0-9]+\.[0-9]+|_pic\.a)$' fi ;; osf3* | osf4* | osf5*) lt_cv_deplibs_check_method=pass_all ;; rdos*) lt_cv_deplibs_check_method=pass_all ;; solaris*) lt_cv_deplibs_check_method=pass_all ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) lt_cv_deplibs_check_method=pass_all ;; sysv4 | sysv4.3*) case $host_vendor in motorola) lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [ML]SB (shared object|dynamic lib) M[0-9][0-9]* Version [0-9]' lt_cv_file_magic_test_file=`echo /usr/lib/libc.so*` ;; ncr) lt_cv_deplibs_check_method=pass_all ;; sequent) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method='file_magic ELF [0-9][0-9]*-bit [LM]SB (shared object|dynamic lib )' ;; sni) lt_cv_file_magic_cmd='/bin/file' lt_cv_deplibs_check_method="file_magic ELF [0-9][0-9]*-bit [LM]SB dynamic lib" lt_cv_file_magic_test_file=/lib/libc.so ;; siemens) lt_cv_deplibs_check_method=pass_all ;; pc) lt_cv_deplibs_check_method=pass_all ;; esac ;; tpf*) lt_cv_deplibs_check_method=pass_all ;; esac fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_deplibs_check_method" >&5 $as_echo "$lt_cv_deplibs_check_method" >&6; } file_magic_cmd=$lt_cv_file_magic_cmd deplibs_check_method=$lt_cv_deplibs_check_method test -z "$deplibs_check_method" && deplibs_check_method=unknown if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ar", so it can be a program name with args. set dummy ${ac_tool_prefix}ar; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_AR+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$AR"; then ac_cv_prog_AR="$AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_AR="${ac_tool_prefix}ar" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi AR=$ac_cv_prog_AR if test -n "$AR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $AR" >&5 $as_echo "$AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_AR"; then ac_ct_AR=$AR # Extract the first word of "ar", so it can be a program name with args. set dummy ar; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_ac_ct_AR+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_AR"; then ac_cv_prog_ac_ct_AR="$ac_ct_AR" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_AR="ar" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_AR=$ac_cv_prog_ac_ct_AR if test -n "$ac_ct_AR"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_AR" >&5 $as_echo "$ac_ct_AR" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_AR" = x; then AR="false" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac AR=$ac_ct_AR fi else AR="$ac_cv_prog_AR" fi test -z "$AR" && AR=ar test -z "$AR_FLAGS" && AR_FLAGS=cru if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_STRIP+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$STRIP"; then ac_cv_prog_STRIP="$STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_STRIP="${ac_tool_prefix}strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi STRIP=$ac_cv_prog_STRIP if test -n "$STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $STRIP" >&5 $as_echo "$STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_STRIP"; then ac_ct_STRIP=$STRIP # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_ac_ct_STRIP+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_STRIP"; then ac_cv_prog_ac_ct_STRIP="$ac_ct_STRIP" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_STRIP="strip" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_STRIP=$ac_cv_prog_ac_ct_STRIP if test -n "$ac_ct_STRIP"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_STRIP" >&5 $as_echo "$ac_ct_STRIP" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_STRIP" = x; then STRIP=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac STRIP=$ac_ct_STRIP fi else STRIP="$ac_cv_prog_STRIP" fi test -z "$STRIP" && STRIP=: if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_RANLIB+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$RANLIB"; then ac_cv_prog_RANLIB="$RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_RANLIB="${ac_tool_prefix}ranlib" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi RANLIB=$ac_cv_prog_RANLIB if test -n "$RANLIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $RANLIB" >&5 $as_echo "$RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_RANLIB"; then ac_ct_RANLIB=$RANLIB # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_ac_ct_RANLIB+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_RANLIB"; then ac_cv_prog_ac_ct_RANLIB="$ac_ct_RANLIB" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_RANLIB="ranlib" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_RANLIB=$ac_cv_prog_ac_ct_RANLIB if test -n "$ac_ct_RANLIB"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_RANLIB" >&5 $as_echo "$ac_ct_RANLIB" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_RANLIB" = x; then RANLIB=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac RANLIB=$ac_ct_RANLIB fi else RANLIB="$ac_cv_prog_RANLIB" fi test -z "$RANLIB" && RANLIB=: # Determine commands to create old-style static archives. old_archive_cmds='$AR $AR_FLAGS $oldlib$oldobjs' old_postinstall_cmds='chmod 644 $oldlib' old_postuninstall_cmds= if test -n "$RANLIB"; then case $host_os in openbsd*) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB -t \$oldlib" ;; *) old_postinstall_cmds="$old_postinstall_cmds~\$RANLIB \$oldlib" ;; esac old_archive_cmds="$old_archive_cmds~\$RANLIB \$oldlib" fi # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # Check for command to grab the raw symbol name followed by C symbol from nm. { $as_echo "$as_me:${as_lineno-$LINENO}: checking command to parse $NM output from $compiler object" >&5 $as_echo_n "checking command to parse $NM output from $compiler object... " >&6; } if test "${lt_cv_sys_global_symbol_pipe+set}" = set; then : $as_echo_n "(cached) " >&6 else # These are sane defaults that work on at least a few old systems. # [They come from Ultrix. What could be older than Ultrix?!! ;)] # Character class describing NM global symbol codes. symcode='[BCDEGRST]' # Regexp to match symbols that can be accessed directly from C. sympat='\([_A-Za-z][_A-Za-z0-9]*\)' # Define system-specific variables. case $host_os in aix*) symcode='[BCDT]' ;; cygwin* | mingw* | pw32* | cegcc*) symcode='[ABCDGISTW]' ;; hpux*) if test "$host_cpu" = ia64; then symcode='[ABCDEGRST]' fi ;; irix* | nonstopux*) symcode='[BCDEGRST]' ;; osf*) symcode='[BCDEGQRST]' ;; solaris*) symcode='[BDRT]' ;; sco3.2v5*) symcode='[DT]' ;; sysv4.2uw2*) symcode='[DT]' ;; sysv5* | sco5v6* | unixware* | OpenUNIX*) symcode='[ABDT]' ;; sysv4) symcode='[DFNSTU]' ;; esac # If we're using GNU nm, then use its standard symbol codes. case `$NM -V 2>&1` in *GNU* | *'with BFD'*) symcode='[ABCDGIRSTW]' ;; esac # Transform an extracted symbol line into a proper C declaration. # Some systems (esp. on ia64) link data and code symbols differently, # so use this general approach. lt_cv_sys_global_symbol_to_cdecl="sed -n -e 's/^T .* \(.*\)$/extern int \1();/p' -e 's/^$symcode* .* \(.*\)$/extern char \1;/p'" # Transform an extracted symbol line into symbol name and symbol address lt_cv_sys_global_symbol_to_c_name_address="sed -n -e 's/^: \([^ ]*\) $/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"\2\", (void *) \&\2},/p'" lt_cv_sys_global_symbol_to_c_name_address_lib_prefix="sed -n -e 's/^: \([^ ]*\) $/ {\\\"\1\\\", (void *) 0},/p' -e 's/^$symcode* \([^ ]*\) \(lib[^ ]*\)$/ {\"\2\", (void *) \&\2},/p' -e 's/^$symcode* \([^ ]*\) \([^ ]*\)$/ {\"lib\2\", (void *) \&\2},/p'" # Handle CRLF in mingw tool chain opt_cr= case $build_os in mingw*) opt_cr=`$ECHO 'x\{0,1\}' | tr x '\015'` # option cr in regexp ;; esac # Try without a prefix underscore, then with it. for ac_symprfx in "" "_"; do # Transform symcode, sympat, and symprfx into a raw symbol and a C symbol. symxfrm="\\1 $ac_symprfx\\2 \\2" # Write the raw and C identifiers. if test "$lt_cv_nm_interface" = "MS dumpbin"; then # Fake it for dumpbin and say T for any non-static function # and D for any global variable. # Also find C++ and __fastcall symbols from MSVC++, # which start with @ or ?. lt_cv_sys_global_symbol_pipe="$AWK '"\ " {last_section=section; section=\$ 3};"\ " /Section length .*#relocs.*(pick any)/{hide[last_section]=1};"\ " \$ 0!~/External *\|/{next};"\ " / 0+ UNDEF /{next}; / UNDEF \([^|]\)*()/{next};"\ " {if(hide[section]) next};"\ " {f=0}; \$ 0~/\(\).*\|/{f=1}; {printf f ? \"T \" : \"D \"};"\ " {split(\$ 0, a, /\||\r/); split(a[2], s)};"\ " s[1]~/^[@?]/{print s[1], s[1]; next};"\ " s[1]~prfx {split(s[1],t,\"@\"); print t[1], substr(t[1],length(prfx))}"\ " ' prfx=^$ac_symprfx" else lt_cv_sys_global_symbol_pipe="sed -n -e 's/^.*[ ]\($symcode$symcode*\)[ ][ ]*$ac_symprfx$sympat$opt_cr$/$symxfrm/p'" fi # Check to see that the pipe works correctly. pipe_works=no rm -f conftest* cat > conftest.$ac_ext <<_LT_EOF #ifdef __cplusplus extern "C" { #endif char nm_test_var; void nm_test_func(void); void nm_test_func(void){} #ifdef __cplusplus } #endif int main(){nm_test_var='a';nm_test_func();return(0);} _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then # Now try to grab the symbols. nlist=conftest.nm if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist\""; } >&5 (eval $NM conftest.$ac_objext \| $lt_cv_sys_global_symbol_pipe \> $nlist) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s "$nlist"; then # Try sorting and uniquifying the output. if sort "$nlist" | uniq > "$nlist"T; then mv -f "$nlist"T "$nlist" else rm -f "$nlist"T fi # Make sure that we snagged all the symbols we need. if $GREP ' nm_test_var$' "$nlist" >/dev/null; then if $GREP ' nm_test_func$' "$nlist" >/dev/null; then cat <<_LT_EOF > conftest.$ac_ext #ifdef __cplusplus extern "C" { #endif _LT_EOF # Now generate the symbol file. eval "$lt_cv_sys_global_symbol_to_cdecl"' < "$nlist" | $GREP -v main >> conftest.$ac_ext' cat <<_LT_EOF >> conftest.$ac_ext /* The mapping between symbol names and symbols. */ const struct { const char *name; void *address; } lt__PROGRAM__LTX_preloaded_symbols[] = { { "@PROGRAM@", (void *) 0 }, _LT_EOF $SED "s/^$symcode$symcode* \(.*\) \(.*\)$/ {\"\2\", (void *) \&\2},/" < "$nlist" | $GREP -v main >> conftest.$ac_ext cat <<\_LT_EOF >> conftest.$ac_ext {0, (void *) 0} }; /* This works around a problem in FreeBSD linker */ #ifdef FREEBSD_WORKAROUND static const void *lt_preloaded_setup() { return lt__PROGRAM__LTX_preloaded_symbols; } #endif #ifdef __cplusplus } #endif _LT_EOF # Now try linking the two files. mv conftest.$ac_objext conftstm.$ac_objext lt_save_LIBS="$LIBS" lt_save_CFLAGS="$CFLAGS" LIBS="conftstm.$ac_objext" CFLAGS="$CFLAGS$lt_prog_compiler_no_builtin_flag" if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s conftest${ac_exeext}; then pipe_works=yes fi LIBS="$lt_save_LIBS" CFLAGS="$lt_save_CFLAGS" else echo "cannot find nm_test_func in $nlist" >&5 fi else echo "cannot find nm_test_var in $nlist" >&5 fi else echo "cannot run $lt_cv_sys_global_symbol_pipe" >&5 fi else echo "$progname: failed program was:" >&5 cat conftest.$ac_ext >&5 fi rm -rf conftest* conftst* # Do not use the global_symbol_pipe unless it works. if test "$pipe_works" = yes; then break else lt_cv_sys_global_symbol_pipe= fi done fi if test -z "$lt_cv_sys_global_symbol_pipe"; then lt_cv_sys_global_symbol_to_cdecl= fi if test -z "$lt_cv_sys_global_symbol_pipe$lt_cv_sys_global_symbol_to_cdecl"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: failed" >&5 $as_echo "failed" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: ok" >&5 $as_echo "ok" >&6; } fi # Check whether --enable-libtool-lock was given. if test "${enable_libtool_lock+set}" = set; then : enableval=$enable_libtool_lock; fi test "x$enable_libtool_lock" != xno && enable_libtool_lock=yes # Some flags need to be propagated to the compiler or linker for good # libtool support. case $host in ia64-*-hpux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `/usr/bin/file conftest.$ac_objext` in *ELF-32*) HPUX_IA64_MODE="32" ;; *ELF-64*) HPUX_IA64_MODE="64" ;; esac fi rm -rf conftest* ;; *-*-irix6*) # Find out which ABI we are using. echo '#line 7190 "configure"' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then if test "$lt_cv_prog_gnu_ld" = yes; then case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -melf32bsmip" ;; *N32*) LD="${LD-ld} -melf32bmipn32" ;; *64-bit*) LD="${LD-ld} -melf64bmip" ;; esac else case `/usr/bin/file conftest.$ac_objext` in *32-bit*) LD="${LD-ld} -32" ;; *N32*) LD="${LD-ld} -n32" ;; *64-bit*) LD="${LD-ld} -64" ;; esac fi fi rm -rf conftest* ;; x86_64-*kfreebsd*-gnu|x86_64-*linux*|ppc*-*linux*|powerpc*-*linux*| \ s390*-*linux*|s390*-*tpf*|sparc*-*linux*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `/usr/bin/file conftest.o` in *32-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_i386_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_i386" ;; ppc64-*linux*|powerpc64-*linux*) LD="${LD-ld} -m elf32ppclinux" ;; s390x-*linux*) LD="${LD-ld} -m elf_s390" ;; sparc64-*linux*) LD="${LD-ld} -m elf32_sparc" ;; esac ;; *64-bit*) case $host in x86_64-*kfreebsd*-gnu) LD="${LD-ld} -m elf_x86_64_fbsd" ;; x86_64-*linux*) LD="${LD-ld} -m elf_x86_64" ;; ppc*-*linux*|powerpc*-*linux*) LD="${LD-ld} -m elf64ppc" ;; s390*-*linux*|s390*-*tpf*) LD="${LD-ld} -m elf64_s390" ;; sparc*-*linux*) LD="${LD-ld} -m elf64_sparc" ;; esac ;; esac fi rm -rf conftest* ;; *-*-sco3.2v5*) # On SCO OpenServer 5, we need -belf to get full-featured binaries. SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -belf" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the C compiler needs -belf" >&5 $as_echo_n "checking whether the C compiler needs -belf... " >&6; } if test "${lt_cv_cc_needs_belf+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_cv_cc_needs_belf=yes else lt_cv_cc_needs_belf=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_cc_needs_belf" >&5 $as_echo "$lt_cv_cc_needs_belf" >&6; } if test x"$lt_cv_cc_needs_belf" != x"yes"; then # this is probably gcc 2.8.0, egcs 1.0 or newer; no need for -belf CFLAGS="$SAVE_CFLAGS" fi ;; sparc*-*solaris*) # Find out which ABI we are using. echo 'int i;' > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then case `/usr/bin/file conftest.o` in *64-bit*) case $lt_cv_prog_gnu_ld in yes*) LD="${LD-ld} -m elf64_sparc" ;; *) if ${LD-ld} -64 -r -o conftest2.o conftest.o >/dev/null 2>&1; then LD="${LD-ld} -64" fi ;; esac ;; esac fi rm -rf conftest* ;; esac need_locks="$enable_libtool_lock" case $host_os in rhapsody* | darwin*) if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}dsymutil", so it can be a program name with args. set dummy ${ac_tool_prefix}dsymutil; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_DSYMUTIL+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$DSYMUTIL"; then ac_cv_prog_DSYMUTIL="$DSYMUTIL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_DSYMUTIL="${ac_tool_prefix}dsymutil" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi DSYMUTIL=$ac_cv_prog_DSYMUTIL if test -n "$DSYMUTIL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $DSYMUTIL" >&5 $as_echo "$DSYMUTIL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_DSYMUTIL"; then ac_ct_DSYMUTIL=$DSYMUTIL # Extract the first word of "dsymutil", so it can be a program name with args. set dummy dsymutil; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_ac_ct_DSYMUTIL+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_DSYMUTIL"; then ac_cv_prog_ac_ct_DSYMUTIL="$ac_ct_DSYMUTIL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_DSYMUTIL="dsymutil" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_DSYMUTIL=$ac_cv_prog_ac_ct_DSYMUTIL if test -n "$ac_ct_DSYMUTIL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_DSYMUTIL" >&5 $as_echo "$ac_ct_DSYMUTIL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_DSYMUTIL" = x; then DSYMUTIL=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac DSYMUTIL=$ac_ct_DSYMUTIL fi else DSYMUTIL="$ac_cv_prog_DSYMUTIL" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}nmedit", so it can be a program name with args. set dummy ${ac_tool_prefix}nmedit; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_NMEDIT+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$NMEDIT"; then ac_cv_prog_NMEDIT="$NMEDIT" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_NMEDIT="${ac_tool_prefix}nmedit" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi NMEDIT=$ac_cv_prog_NMEDIT if test -n "$NMEDIT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $NMEDIT" >&5 $as_echo "$NMEDIT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_NMEDIT"; then ac_ct_NMEDIT=$NMEDIT # Extract the first word of "nmedit", so it can be a program name with args. set dummy nmedit; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_ac_ct_NMEDIT+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_NMEDIT"; then ac_cv_prog_ac_ct_NMEDIT="$ac_ct_NMEDIT" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_NMEDIT="nmedit" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_NMEDIT=$ac_cv_prog_ac_ct_NMEDIT if test -n "$ac_ct_NMEDIT"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_NMEDIT" >&5 $as_echo "$ac_ct_NMEDIT" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_NMEDIT" = x; then NMEDIT=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac NMEDIT=$ac_ct_NMEDIT fi else NMEDIT="$ac_cv_prog_NMEDIT" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}lipo", so it can be a program name with args. set dummy ${ac_tool_prefix}lipo; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_LIPO+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$LIPO"; then ac_cv_prog_LIPO="$LIPO" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_LIPO="${ac_tool_prefix}lipo" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi LIPO=$ac_cv_prog_LIPO if test -n "$LIPO"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $LIPO" >&5 $as_echo "$LIPO" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_LIPO"; then ac_ct_LIPO=$LIPO # Extract the first word of "lipo", so it can be a program name with args. set dummy lipo; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_ac_ct_LIPO+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_LIPO"; then ac_cv_prog_ac_ct_LIPO="$ac_ct_LIPO" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_LIPO="lipo" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_LIPO=$ac_cv_prog_ac_ct_LIPO if test -n "$ac_ct_LIPO"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_LIPO" >&5 $as_echo "$ac_ct_LIPO" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_LIPO" = x; then LIPO=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac LIPO=$ac_ct_LIPO fi else LIPO="$ac_cv_prog_LIPO" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}otool", so it can be a program name with args. set dummy ${ac_tool_prefix}otool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_OTOOL+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$OTOOL"; then ac_cv_prog_OTOOL="$OTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_OTOOL="${ac_tool_prefix}otool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi OTOOL=$ac_cv_prog_OTOOL if test -n "$OTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL" >&5 $as_echo "$OTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_OTOOL"; then ac_ct_OTOOL=$OTOOL # Extract the first word of "otool", so it can be a program name with args. set dummy otool; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_ac_ct_OTOOL+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OTOOL"; then ac_cv_prog_ac_ct_OTOOL="$ac_ct_OTOOL" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_OTOOL="otool" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_OTOOL=$ac_cv_prog_ac_ct_OTOOL if test -n "$ac_ct_OTOOL"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL" >&5 $as_echo "$ac_ct_OTOOL" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OTOOL" = x; then OTOOL=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac OTOOL=$ac_ct_OTOOL fi else OTOOL="$ac_cv_prog_OTOOL" fi if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}otool64", so it can be a program name with args. set dummy ${ac_tool_prefix}otool64; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_OTOOL64+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$OTOOL64"; then ac_cv_prog_OTOOL64="$OTOOL64" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_OTOOL64="${ac_tool_prefix}otool64" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi OTOOL64=$ac_cv_prog_OTOOL64 if test -n "$OTOOL64"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $OTOOL64" >&5 $as_echo "$OTOOL64" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_prog_OTOOL64"; then ac_ct_OTOOL64=$OTOOL64 # Extract the first word of "otool64", so it can be a program name with args. set dummy otool64; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_ac_ct_OTOOL64+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_OTOOL64"; then ac_cv_prog_ac_ct_OTOOL64="$ac_ct_OTOOL64" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_OTOOL64="otool64" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_OTOOL64=$ac_cv_prog_ac_ct_OTOOL64 if test -n "$ac_ct_OTOOL64"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_OTOOL64" >&5 $as_echo "$ac_ct_OTOOL64" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_ct_OTOOL64" = x; then OTOOL64=":" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac OTOOL64=$ac_ct_OTOOL64 fi else OTOOL64="$ac_cv_prog_OTOOL64" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -single_module linker flag" >&5 $as_echo_n "checking for -single_module linker flag... " >&6; } if test "${lt_cv_apple_cc_single_mod+set}" = set; then : $as_echo_n "(cached) " >&6 else lt_cv_apple_cc_single_mod=no if test -z "${LT_MULTI_MODULE}"; then # By default we will add the -single_module flag. You can override # by either setting the environment variable LT_MULTI_MODULE # non-empty at configure time, or by adding -multi_module to the # link flags. rm -rf libconftest.dylib* echo "int foo(void){return 1;}" > conftest.c echo "$LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c" >&5 $LTCC $LTCFLAGS $LDFLAGS -o libconftest.dylib \ -dynamiclib -Wl,-single_module conftest.c 2>conftest.err _lt_result=$? if test -f libconftest.dylib && test ! -s conftest.err && test $_lt_result = 0; then lt_cv_apple_cc_single_mod=yes else cat conftest.err >&5 fi rm -rf libconftest.dylib* rm -f conftest.* fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_apple_cc_single_mod" >&5 $as_echo "$lt_cv_apple_cc_single_mod" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking for -exported_symbols_list linker flag" >&5 $as_echo_n "checking for -exported_symbols_list linker flag... " >&6; } if test "${lt_cv_ld_exported_symbols_list+set}" = set; then : $as_echo_n "(cached) " >&6 else lt_cv_ld_exported_symbols_list=no save_LDFLAGS=$LDFLAGS echo "_main" > conftest.sym LDFLAGS="$LDFLAGS -Wl,-exported_symbols_list,conftest.sym" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_cv_ld_exported_symbols_list=yes else lt_cv_ld_exported_symbols_list=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS="$save_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_ld_exported_symbols_list" >&5 $as_echo "$lt_cv_ld_exported_symbols_list" >&6; } case $host_os in rhapsody* | darwin1.[012]) _lt_dar_allow_undefined='${wl}-undefined ${wl}suppress' ;; darwin1.*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; darwin*) # darwin 5.x on # if running on 10.5 or later, the deployment target defaults # to the OS version, if on x86, and 10.4, the deployment # target defaults to 10.4. Don't you love it? case ${MACOSX_DEPLOYMENT_TARGET-10.0},$host in 10.0,*86*-darwin8*|10.0,*-darwin[91]*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; 10.[012]*) _lt_dar_allow_undefined='${wl}-flat_namespace ${wl}-undefined ${wl}suppress' ;; 10.*) _lt_dar_allow_undefined='${wl}-undefined ${wl}dynamic_lookup' ;; esac ;; esac if test "$lt_cv_apple_cc_single_mod" = "yes"; then _lt_dar_single_mod='$single_module' fi if test "$lt_cv_ld_exported_symbols_list" = "yes"; then _lt_dar_export_syms=' ${wl}-exported_symbols_list,$output_objdir/${libname}-symbols.expsym' else _lt_dar_export_syms='~$NMEDIT -s $output_objdir/${libname}-symbols.expsym ${lib}' fi if test "$DSYMUTIL" != ":"; then _lt_dsymutil='~$DSYMUTIL $lib || :' else _lt_dsymutil= fi ;; esac # On IRIX 5.3, sys/types and inttypes.h are conflicting. for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ inttypes.h stdint.h unistd.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_compile "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default " if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done for ac_header in dlfcn.h do : ac_fn_c_check_header_compile "$LINENO" "dlfcn.h" "ac_cv_header_dlfcn_h" "$ac_includes_default " if test "x$ac_cv_header_dlfcn_h" = x""yes; then : cat >>confdefs.h <<_ACEOF #define HAVE_DLFCN_H 1 _ACEOF fi done ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu if test -z "$CXX"; then if test -n "$CCC"; then CXX=$CCC else if test -n "$ac_tool_prefix"; then for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC do # Extract the first word of "$ac_tool_prefix$ac_prog", so it can be a program name with args. set dummy $ac_tool_prefix$ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_CXX+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$CXX"; then ac_cv_prog_CXX="$CXX" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_CXX="$ac_tool_prefix$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi CXX=$ac_cv_prog_CXX if test -n "$CXX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXX" >&5 $as_echo "$CXX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$CXX" && break done fi if test -z "$CXX"; then ac_ct_CXX=$CXX for ac_prog in g++ c++ gpp aCC CC cxx cc++ cl.exe FCC KCC RCC xlC_r xlC do # Extract the first word of "$ac_prog", so it can be a program name with args. set dummy $ac_prog; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_prog_ac_ct_CXX+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -n "$ac_ct_CXX"; then ac_cv_prog_ac_ct_CXX="$ac_ct_CXX" # Let the user override the test. else as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_prog_ac_ct_CXX="$ac_prog" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS fi fi ac_ct_CXX=$ac_cv_prog_ac_ct_CXX if test -n "$ac_ct_CXX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_ct_CXX" >&5 $as_echo "$ac_ct_CXX" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -n "$ac_ct_CXX" && break done if test "x$ac_ct_CXX" = x; then CXX="g++" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac CXX=$ac_ct_CXX fi fi fi fi # Provide some information about the compiler. $as_echo "$as_me:${as_lineno-$LINENO}: checking for C++ compiler version" >&5 set X $ac_compile ac_compiler=$2 for ac_option in --version -v -V -qversion; do { { ac_try="$ac_compiler $ac_option >&5" case "(($ac_try" in *\"* | *\`* | *\\*) ac_try_echo=\$ac_try;; *) ac_try_echo=$ac_try;; esac eval ac_try_echo="\"\$as_me:${as_lineno-$LINENO}: $ac_try_echo\"" $as_echo "$ac_try_echo"; } >&5 (eval "$ac_compiler $ac_option >&5") 2>conftest.err ac_status=$? if test -s conftest.err; then sed '10a\ ... rest of stderr output deleted ... 10q' conftest.err >conftest.er1 cat conftest.er1 >&5 fi rm -f conftest.er1 conftest.err $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } done { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether we are using the GNU C++ compiler" >&5 $as_echo_n "checking whether we are using the GNU C++ compiler... " >&6; } if test "${ac_cv_cxx_compiler_gnu+set}" = set; then : $as_echo_n "(cached) " >&6 else cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { #ifndef __GNUC__ choke me #endif ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ac_compiler_gnu=yes else ac_compiler_gnu=no fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cv_cxx_compiler_gnu=$ac_compiler_gnu fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_cxx_compiler_gnu" >&5 $as_echo "$ac_cv_cxx_compiler_gnu" >&6; } if test $ac_compiler_gnu = yes; then GXX=yes else GXX= fi ac_test_CXXFLAGS=${CXXFLAGS+set} ac_save_CXXFLAGS=$CXXFLAGS { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether $CXX accepts -g" >&5 $as_echo_n "checking whether $CXX accepts -g... " >&6; } if test "${ac_cv_prog_cxx_g+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_save_cxx_werror_flag=$ac_cxx_werror_flag ac_cxx_werror_flag=yes ac_cv_prog_cxx_g=no CXXFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ac_cv_prog_cxx_g=yes else CXXFLAGS="" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : else ac_cxx_werror_flag=$ac_save_cxx_werror_flag CXXFLAGS="-g" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_compile "$LINENO"; then : ac_cv_prog_cxx_g=yes fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext fi rm -f core conftest.err conftest.$ac_objext conftest.$ac_ext ac_cxx_werror_flag=$ac_save_cxx_werror_flag fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_prog_cxx_g" >&5 $as_echo "$ac_cv_prog_cxx_g" >&6; } if test "$ac_test_CXXFLAGS" = set; then CXXFLAGS=$ac_save_CXXFLAGS elif test $ac_cv_prog_cxx_g = yes; then if test "$GXX" = yes; then CXXFLAGS="-g -O2" else CXXFLAGS="-g" fi else if test "$GXX" = yes; then CXXFLAGS="-O2" else CXXFLAGS= fi fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu depcc="$CXX" am_compiler_list= { $as_echo "$as_me:${as_lineno-$LINENO}: checking dependency style of $depcc" >&5 $as_echo_n "checking dependency style of $depcc... " >&6; } if test "${am_cv_CXX_dependencies_compiler_type+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -z "$AMDEP_TRUE" && test -f "$am_depcomp"; then # We make a subdir and do the tests there. Otherwise we can end up # making bogus files that we don't know about and never remove. For # instance it was reported that on HP-UX the gcc test will end up # making a dummy file named `D' -- because `-MD' means `put the output # in D'. mkdir conftest.dir # Copy depcomp to subdir because otherwise we won't find it if we're # using a relative directory. cp "$am_depcomp" conftest.dir cd conftest.dir # We will build objects and dependencies in a subdirectory because # it helps to detect inapplicable dependency modes. For instance # both Tru64's cc and ICC support -MD to output dependencies as a # side effect of compilation, but ICC will put the dependencies in # the current directory while Tru64 will put them in the object # directory. mkdir sub am_cv_CXX_dependencies_compiler_type=none if test "$am_compiler_list" = ""; then am_compiler_list=`sed -n 's/^#*\([a-zA-Z0-9]*\))$/\1/p' < ./depcomp` fi am__universal=false case " $depcc " in #( *\ -arch\ *\ -arch\ *) am__universal=true ;; esac for depmode in $am_compiler_list; do # Setup a source with many dependencies, because some compilers # like to wrap large dependency lists on column 80 (with \), and # we should not choose a depcomp mode which is confused by this. # # We need to recreate these files for each test, as the compiler may # overwrite some of them when testing with obscure command lines. # This happens at least with the AIX C compiler. : > sub/conftest.c for i in 1 2 3 4 5 6; do echo '#include "conftst'$i'.h"' >> sub/conftest.c # Using `: > sub/conftst$i.h' creates only sub/conftst1.h with # Solaris 8's {/usr,}/bin/sh. touch sub/conftst$i.h done echo "${am__include} ${am__quote}sub/conftest.Po${am__quote}" > confmf # We check with `-c' and `-o' for the sake of the "dashmstdout" # mode. It turns out that the SunPro C++ compiler does not properly # handle `-M -o', and we need to detect this. Also, some Intel # versions had trouble with output in subdirs am__obj=sub/conftest.${OBJEXT-o} am__minus_obj="-o $am__obj" case $depmode in gcc) # This depmode causes a compiler race in universal mode. test "$am__universal" = false || continue ;; nosideeffect) # after this tag, mechanisms are not by side-effect, so they'll # only be used when explicitly requested if test "x$enable_dependency_tracking" = xyes; then continue else break fi ;; msvisualcpp | msvcmsys) # This compiler won't grok `-c -o', but also, the minuso test has # not run yet. These depmodes are late enough in the game, and # so weak that their functioning should not be impacted. am__obj=conftest.${OBJEXT-o} am__minus_obj= ;; none) break ;; esac if depmode=$depmode \ source=sub/conftest.c object=$am__obj \ depfile=sub/conftest.Po tmpdepfile=sub/conftest.TPo \ $SHELL ./depcomp $depcc -c $am__minus_obj sub/conftest.c \ >/dev/null 2>conftest.err && grep sub/conftst1.h sub/conftest.Po > /dev/null 2>&1 && grep sub/conftst6.h sub/conftest.Po > /dev/null 2>&1 && grep $am__obj sub/conftest.Po > /dev/null 2>&1 && ${MAKE-make} -s -f confmf > /dev/null 2>&1; then # icc doesn't choke on unknown options, it will just issue warnings # or remarks (even with -Werror). So we grep stderr for any message # that says an option was ignored or not supported. # When given -MP, icc 7.0 and 7.1 complain thusly: # icc: Command line warning: ignoring option '-M'; no argument required # The diagnosis changed in icc 8.0: # icc: Command line remark: option '-MP' not supported if (grep 'ignoring option' conftest.err || grep 'not supported' conftest.err) >/dev/null 2>&1; then :; else am_cv_CXX_dependencies_compiler_type=$depmode break fi fi done cd .. rm -rf conftest.dir else am_cv_CXX_dependencies_compiler_type=none fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $am_cv_CXX_dependencies_compiler_type" >&5 $as_echo "$am_cv_CXX_dependencies_compiler_type" >&6; } CXXDEPMODE=depmode=$am_cv_CXX_dependencies_compiler_type if test "x$enable_dependency_tracking" != xno \ && test "$am_cv_CXX_dependencies_compiler_type" = gcc3; then am__fastdepCXX_TRUE= am__fastdepCXX_FALSE='#' else am__fastdepCXX_TRUE='#' am__fastdepCXX_FALSE= fi if test -n "$CXX" && ( test "X$CXX" != "Xno" && ( (test "X$CXX" = "Xg++" && `g++ -v >/dev/null 2>&1` ) || (test "X$CXX" != "Xg++"))) ; then ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to run the C++ preprocessor" >&5 $as_echo_n "checking how to run the C++ preprocessor... " >&6; } if test -z "$CXXCPP"; then if test "${ac_cv_prog_CXXCPP+set}" = set; then : $as_echo_n "(cached) " >&6 else # Double quotes because CXXCPP needs to be expanded for CXXCPP in "$CXX -E" "/lib/cpp" do ac_preproc_ok=false for ac_cxx_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_cxx_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_cxx_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : break fi done ac_cv_prog_CXXCPP=$CXXCPP fi CXXCPP=$ac_cv_prog_CXXCPP else ac_cv_prog_CXXCPP=$CXXCPP fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $CXXCPP" >&5 $as_echo "$CXXCPP" >&6; } ac_preproc_ok=false for ac_cxx_preproc_warn_flag in '' yes do # Use a header file that comes with gcc, so configuring glibc # with a fresh cross-compiler works. # Prefer to if __STDC__ is defined, since # exists even on freestanding compilers. # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #ifdef __STDC__ # include #else # include #endif Syntax error _ACEOF if ac_fn_cxx_try_cpp "$LINENO"; then : else # Broken: fails on valid input. continue fi rm -f conftest.err conftest.i conftest.$ac_ext # OK, works on sane cases. Now check whether nonexistent headers # can be detected and how. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ #include _ACEOF if ac_fn_cxx_try_cpp "$LINENO"; then : # Broken: success on invalid input. continue else # Passes both tests. ac_preproc_ok=: break fi rm -f conftest.err conftest.i conftest.$ac_ext done # Because of `break', _AC_PREPROC_IFELSE's cleaning code was skipped. rm -f conftest.i conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} _lt_caught_CXX_error=yes; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu else _lt_caught_CXX_error=yes fi # Set options enable_dlopen=no enable_win32_dll=no # Check whether --enable-shared was given. if test "${enable_shared+set}" = set; then : enableval=$enable_shared; p=${PACKAGE-default} case $enableval in yes) enable_shared=yes ;; no) enable_shared=no ;; *) enable_shared=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_shared=yes fi done IFS="$lt_save_ifs" ;; esac else enable_shared=yes fi # Check whether --enable-static was given. if test "${enable_static+set}" = set; then : enableval=$enable_static; p=${PACKAGE-default} case $enableval in yes) enable_static=yes ;; no) enable_static=no ;; *) enable_static=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_static=yes fi done IFS="$lt_save_ifs" ;; esac else enable_static=yes fi # Check whether --with-pic was given. if test "${with_pic+set}" = set; then : withval=$with_pic; pic_mode="$withval" else pic_mode=default fi test -z "$pic_mode" && pic_mode=default # Check whether --enable-fast-install was given. if test "${enable_fast_install+set}" = set; then : enableval=$enable_fast_install; p=${PACKAGE-default} case $enableval in yes) enable_fast_install=yes ;; no) enable_fast_install=no ;; *) enable_fast_install=no # Look at the argument we got. We use all the common list separators. lt_save_ifs="$IFS"; IFS="${IFS}$PATH_SEPARATOR," for pkg in $enableval; do IFS="$lt_save_ifs" if test "X$pkg" = "X$p"; then enable_fast_install=yes fi done IFS="$lt_save_ifs" ;; esac else enable_fast_install=yes fi # This can be used to rebuild libtool when needed LIBTOOL_DEPS="$ltmain" # Always use our own libtool. LIBTOOL='$(SHELL) $(top_builddir)/libtool' test -z "$LN_S" && LN_S="ln -s" if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for objdir" >&5 $as_echo_n "checking for objdir... " >&6; } if test "${lt_cv_objdir+set}" = set; then : $as_echo_n "(cached) " >&6 else rm -f .libs 2>/dev/null mkdir .libs 2>/dev/null if test -d .libs; then lt_cv_objdir=.libs else # MS-DOS does not allow filenames that begin with a dot. lt_cv_objdir=_libs fi rmdir .libs 2>/dev/null fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_objdir" >&5 $as_echo "$lt_cv_objdir" >&6; } objdir=$lt_cv_objdir cat >>confdefs.h <<_ACEOF #define LT_OBJDIR "$lt_cv_objdir/" _ACEOF case $host_os in aix3*) # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi ;; esac # Sed substitution that helps us do robust quoting. It backslashifies # metacharacters that are still active within double-quoted strings. sed_quote_subst='s/\(["`$\\]\)/\\\1/g' # Same as above, but do not quote variable references. double_quote_subst='s/\(["`\\]\)/\\\1/g' # Sed substitution to delay expansion of an escaped shell variable in a # double_quote_subst'ed string. delay_variable_subst='s/\\\\\\\\\\\$/\\\\\\$/g' # Sed substitution to delay expansion of an escaped single quote. delay_single_quote_subst='s/'\''/'\'\\\\\\\'\''/g' # Sed substitution to avoid accidental globbing in evaled expressions no_glob_subst='s/\*/\\\*/g' # Global variables: ofile=libtool can_build_shared=yes # All known linkers require a `.a' archive for static linking (except MSVC, # which needs '.lib'). libext=a with_gnu_ld="$lt_cv_prog_gnu_ld" old_CC="$CC" old_CFLAGS="$CFLAGS" # Set sane defaults for various variables test -z "$CC" && CC=cc test -z "$LTCC" && LTCC=$CC test -z "$LTCFLAGS" && LTCFLAGS=$CFLAGS test -z "$LD" && LD=ld test -z "$ac_objext" && ac_objext=o for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$ECHO "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` # Only perform the check for file, if the check method requires it test -z "$MAGIC_CMD" && MAGIC_CMD=file case $deplibs_check_method in file_magic*) if test "$file_magic_cmd" = '$MAGIC_CMD'; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ${ac_tool_prefix}file" >&5 $as_echo_n "checking for ${ac_tool_prefix}file... " >&6; } if test "${lt_cv_path_MAGIC_CMD+set}" = set; then : $as_echo_n "(cached) " >&6 else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/${ac_tool_prefix}file; then lt_cv_path_MAGIC_CMD="$ac_dir/${ac_tool_prefix}file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac fi MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 $as_echo "$MAGIC_CMD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test -z "$lt_cv_path_MAGIC_CMD"; then if test -n "$ac_tool_prefix"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for file" >&5 $as_echo_n "checking for file... " >&6; } if test "${lt_cv_path_MAGIC_CMD+set}" = set; then : $as_echo_n "(cached) " >&6 else case $MAGIC_CMD in [\\/*] | ?:[\\/]*) lt_cv_path_MAGIC_CMD="$MAGIC_CMD" # Let the user override the test with a path. ;; *) lt_save_MAGIC_CMD="$MAGIC_CMD" lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR ac_dummy="/usr/bin$PATH_SEPARATOR$PATH" for ac_dir in $ac_dummy; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f $ac_dir/file; then lt_cv_path_MAGIC_CMD="$ac_dir/file" if test -n "$file_magic_test_file"; then case $deplibs_check_method in "file_magic "*) file_magic_regex=`expr "$deplibs_check_method" : "file_magic \(.*\)"` MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if eval $file_magic_cmd \$file_magic_test_file 2> /dev/null | $EGREP "$file_magic_regex" > /dev/null; then : else cat <<_LT_EOF 1>&2 *** Warning: the command libtool uses to detect shared libraries, *** $file_magic_cmd, produces output that libtool cannot recognize. *** The result is that libtool may fail to recognize shared libraries *** as such. This will affect the creation of libtool libraries that *** depend on shared libraries, but programs linked with such libtool *** libraries will work regardless of this problem. Nevertheless, you *** may want to report the problem to your system manager and/or to *** bug-libtool@gnu.org _LT_EOF fi ;; esac fi break fi done IFS="$lt_save_ifs" MAGIC_CMD="$lt_save_MAGIC_CMD" ;; esac fi MAGIC_CMD="$lt_cv_path_MAGIC_CMD" if test -n "$MAGIC_CMD"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $MAGIC_CMD" >&5 $as_echo "$MAGIC_CMD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi else MAGIC_CMD=: fi fi fi ;; esac # Use C for the default configuration in the libtool script lt_save_CC="$CC" ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu # Source file extension for C test sources. ac_ext=c # Object file extension for compiled C test sources. objext=o objext=$objext # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(){return(0);}' # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # Save the default compiler, since it gets overwritten when the other # tags are being tested, and _LT_TAGVAR(compiler, []) is a NOP. compiler_DEFAULT=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $RM conftest* ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $RM -r conftest* if test -n "$compiler"; then lt_prog_compiler_no_builtin_flag= if test "$GCC" = yes; then lt_prog_compiler_no_builtin_flag=' -fno-builtin' { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -fno-rtti -fno-exceptions" >&5 $as_echo_n "checking if $compiler supports -fno-rtti -fno-exceptions... " >&6; } if test "${lt_cv_prog_compiler_rtti_exceptions+set}" = set; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_rtti_exceptions=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-fno-rtti -fno-exceptions" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:8992: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:8996: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_rtti_exceptions=yes fi fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_rtti_exceptions" >&5 $as_echo "$lt_cv_prog_compiler_rtti_exceptions" >&6; } if test x"$lt_cv_prog_compiler_rtti_exceptions" = xyes; then lt_prog_compiler_no_builtin_flag="$lt_prog_compiler_no_builtin_flag -fno-rtti -fno-exceptions" else : fi fi lt_prog_compiler_wl= lt_prog_compiler_pic= lt_prog_compiler_static= { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 $as_echo_n "checking for $compiler option to produce PIC... " >&6; } if test "$GCC" = yes; then lt_prog_compiler_wl='-Wl,' lt_prog_compiler_static='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support lt_prog_compiler_pic='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. lt_prog_compiler_pic='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries lt_prog_compiler_pic='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic='-fno-common' ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) # +Z the default ;; *) lt_prog_compiler_pic='-fPIC' ;; esac ;; interix[3-9]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; msdosdjgpp*) # Just because we use GCC doesn't mean we suddenly get shared libraries # on systems that don't support them. lt_prog_compiler_can_build_shared=no enable_shared=no ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic='-fPIC -shared' ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic=-Kconform_pic fi ;; *) lt_prog_compiler_pic='-fPIC' ;; esac else # PORTME Check for flag to pass linker flags through the system compiler. case $host_os in aix*) lt_prog_compiler_wl='-Wl,' if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static='-Bstatic' else lt_prog_compiler_static='-bnso -bI:/lib/syscalls.exp' fi ;; mingw* | cygwin* | pw32* | os2* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). lt_prog_compiler_pic='-DDLL_EXPORT' ;; hpux9* | hpux10* | hpux11*) lt_prog_compiler_wl='-Wl,' # PIC is the default for IA64 HP-UX and 64-bit HP-UX, but # not for PA HP-UX. case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic='+Z' ;; esac # Is there a better lt_prog_compiler_static that works with the bundled CC? lt_prog_compiler_static='${wl}-a ${wl}archive' ;; irix5* | irix6* | nonstopux*) lt_prog_compiler_wl='-Wl,' # PIC (with -KPIC) is the default. lt_prog_compiler_static='-non_shared' ;; linux* | k*bsd*-gnu | kopensolaris*-gnu) case $cc_basename in # old Intel for x86_64 which still supported -KPIC. ecc*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-static' ;; # icc used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. icc* | ifort*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fPIC' lt_prog_compiler_static='-static' ;; # Lahey Fortran 8.1. lf95*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='--shared' lt_prog_compiler_static='--static' ;; pgcc* | pgf77* | pgf90* | pgf95*) # Portland Group compilers (*not* the Pentium gcc compiler, # which looks to be a dead project) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-fpic' lt_prog_compiler_static='-Bstatic' ;; ccc*) lt_prog_compiler_wl='-Wl,' # All Alpha code is PIC. lt_prog_compiler_static='-non_shared' ;; xl*) # IBM XL C 8.0/Fortran 10.1 on PPC lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-qpic' lt_prog_compiler_static='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='-Wl,' ;; *Sun\ F*) # Sun Fortran 8.3 passes all unrecognized flags to the linker lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' lt_prog_compiler_wl='' ;; esac ;; esac ;; newsos6) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; *nto* | *qnx*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic='-fPIC -shared' ;; osf3* | osf4* | osf5*) lt_prog_compiler_wl='-Wl,' # All OSF/1 code is PIC. lt_prog_compiler_static='-non_shared' ;; rdos*) lt_prog_compiler_static='-non_shared' ;; solaris*) lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' case $cc_basename in f77* | f90* | f95*) lt_prog_compiler_wl='-Qoption ld ';; *) lt_prog_compiler_wl='-Wl,';; esac ;; sunos4*) lt_prog_compiler_wl='-Qoption ld ' lt_prog_compiler_pic='-PIC' lt_prog_compiler_static='-Bstatic' ;; sysv4 | sysv4.2uw2* | sysv4.3*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; sysv4*MP*) if test -d /usr/nec ;then lt_prog_compiler_pic='-Kconform_pic' lt_prog_compiler_static='-Bstatic' fi ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_pic='-KPIC' lt_prog_compiler_static='-Bstatic' ;; unicos*) lt_prog_compiler_wl='-Wl,' lt_prog_compiler_can_build_shared=no ;; uts4*) lt_prog_compiler_pic='-pic' lt_prog_compiler_static='-Bstatic' ;; *) lt_prog_compiler_can_build_shared=no ;; esac fi case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic= ;; *) lt_prog_compiler_pic="$lt_prog_compiler_pic -DPIC" ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_prog_compiler_pic" >&5 $as_echo "$lt_prog_compiler_pic" >&6; } # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic works" >&5 $as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic works... " >&6; } if test "${lt_cv_prog_compiler_pic_works+set}" = set; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic_works=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic -DPIC" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:9331: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:9335: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_pic_works=yes fi fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works" >&5 $as_echo "$lt_cv_prog_compiler_pic_works" >&6; } if test x"$lt_cv_prog_compiler_pic_works" = xyes; then case $lt_prog_compiler_pic in "" | " "*) ;; *) lt_prog_compiler_pic=" $lt_prog_compiler_pic" ;; esac else lt_prog_compiler_pic= lt_prog_compiler_can_build_shared=no fi fi # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl eval lt_tmp_static_flag=\"$lt_prog_compiler_static\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 $as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } if test "${lt_cv_prog_compiler_static_works+set}" = set; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_static_works=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $lt_tmp_static_flag" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $ECHO "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_static_works=yes fi else lt_cv_prog_compiler_static_works=yes fi fi $RM -r conftest* LDFLAGS="$save_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works" >&5 $as_echo "$lt_cv_prog_compiler_static_works" >&6; } if test x"$lt_cv_prog_compiler_static_works" = xyes; then : else lt_prog_compiler_static= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if test "${lt_cv_prog_compiler_c_o+set}" = set; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:9436: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:9440: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 $as_echo "$lt_cv_prog_compiler_c_o" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if test "${lt_cv_prog_compiler_c_o+set}" = set; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:9491: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:9495: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o" >&5 $as_echo "$lt_cv_prog_compiler_c_o" >&6; } hard_links="nottested" if test "$lt_cv_prog_compiler_c_o" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 $as_echo_n "checking if we can lock with hard links... " >&6; } hard_links=yes $RM conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 $as_echo "$hard_links" >&6; } if test "$hard_links" = no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 $as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 $as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } runpath_var= allow_undefined_flag= always_export_symbols=no archive_cmds= archive_expsym_cmds= compiler_needs_object=no enable_shared_with_static_runtimes=no export_dynamic_flag_spec= export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' hardcode_automatic=no hardcode_direct=no hardcode_direct_absolute=no hardcode_libdir_flag_spec= hardcode_libdir_flag_spec_ld= hardcode_libdir_separator= hardcode_minus_L=no hardcode_shlibpath_var=unsupported inherit_rpath=no link_all_deplibs=unknown module_cmds= module_expsym_cmds= old_archive_from_new_cmds= old_archive_from_expsyms_cmds= thread_safe_flag_spec= whole_archive_flag_spec= # include_expsyms should be a list of space-separated symbols to be *always* # included in the symbol list include_expsyms= # exclude_expsyms can be an extended regexp of symbols to exclude # it will be wrapped by ` (' and `)$', so one must not match beginning or # end of line. Example: `a|bc|.*d.*' will exclude the symbols `a' and `bc', # as well as any symbol that contains `d'. exclude_expsyms='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' # Although _GLOBAL_OFFSET_TABLE_ is a valid symbol C name, most a.out # platforms (ab)use it in PIC code, but their linkers get confused if # the symbol is explicitly referenced. Since portable code cannot # rely on this symbol name, it's probably fine to never include it in # preloaded symbol tables. # Exclude shared library initialization/finalization symbols. extract_expsyms_cmds= case $host_os in cygwin* | mingw* | pw32* | cegcc*) # FIXME: the MSVC++ port hasn't been tested in a loooong time # When not using gcc, we currently assume that we are using # Microsoft Visual C++. if test "$GCC" != yes; then with_gnu_ld=no fi ;; interix*) # we just hope/assume this is gcc and not c89 (= MSVC++) with_gnu_ld=yes ;; openbsd*) with_gnu_ld=no ;; linux* | k*bsd*-gnu) link_all_deplibs=no ;; esac ld_shlibs=yes if test "$with_gnu_ld" = yes; then # If archive_cmds runs LD, not CC, wlarc should be empty wlarc='${wl}' # Set some defaults for GNU ld with shared library support. These # are reset later if shared libraries are not supported. Putting them # here allows them to be overridden if necessary. runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' export_dynamic_flag_spec='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. if $LD --help 2>&1 | $GREP 'no-whole-archive' > /dev/null; then whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else whole_archive_flag_spec= fi supports_anon_versioning=no case `$LD -v 2>&1` in *GNU\ gold*) supports_anon_versioning=yes ;; *\ [01].* | *\ 2.[0-9].* | *\ 2.10.*) ;; # catch versions < 2.11 *\ 2.11.93.0.2\ *) supports_anon_versioning=yes ;; # RH7.3 ... *\ 2.11.92.0.12\ *) supports_anon_versioning=yes ;; # Mandrake 8.2 ... *\ 2.11.*) ;; # other 2.11 versions *) supports_anon_versioning=yes ;; esac # See if GNU ld supports shared libraries. case $host_os in aix[3-9]*) # On AIX/PPC, the GNU linker is very broken if test "$host_cpu" != ia64; then ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: the GNU linker, at least up to release 2.9.1, is reported *** to be unable to reliably create shared libraries on AIX. *** Therefore, libtool is disabling shared libraries support. If you *** really care for shared libraries, you may want to modify your PATH *** so that a non-GNU linker is found, and then restart. _LT_EOF fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='' ;; m68k) archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; esac ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then allow_undefined_flag=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else ld_shlibs=no fi ;; cygwin* | mingw* | pw32* | cegcc*) # _LT_TAGVAR(hardcode_libdir_flag_spec, ) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec='-L$libdir' allow_undefined_flag=unsupported always_export_symbols=no enable_shared_with_static_runtimes=yes export_symbols_cmds='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/'\'' | $SED -e '\''/^[AITW][ ]/s/.*[ ]//'\'' | sort | uniq > $export_symbols' if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... archive_expsym_cmds='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared $output_objdir/$soname.def $libobjs $deplibs $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs=no fi ;; interix[3-9]*) hardcode_direct=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='${wl}-rpath,$libdir' export_dynamic_flag_spec='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; gnu* | linux* | tpf* | k*bsd*-gnu | kopensolaris*-gnu) tmp_diet=no if test "$host_os" = linux-dietlibc; then case $cc_basename in diet\ *) tmp_diet=yes;; # linux-dietlibc with static linking (!diet-dyn) esac fi if $LD --help 2>&1 | $EGREP ': supported targets:.* elf' > /dev/null \ && test "$tmp_diet" = no then tmp_addflag= tmp_sharedflag='-shared' case $cc_basename,$host_cpu in pgcc*) # Portland Group C compiler whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag' ;; pgf77* | pgf90* | pgf95*) # Portland Group f77 and f90 compilers whole_archive_flag_spec='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' tmp_addflag=' $pic_flag -Mnomain' ;; ecc*,ia64* | icc*,ia64*) # Intel C compiler on ia64 tmp_addflag=' -i_dynamic' ;; efc*,ia64* | ifort*,ia64*) # Intel Fortran compiler on ia64 tmp_addflag=' -i_dynamic -nofor_main' ;; ifc* | ifort*) # Intel Fortran compiler tmp_addflag=' -nofor_main' ;; lf95*) # Lahey Fortran 8.1 whole_archive_flag_spec= tmp_sharedflag='--shared' ;; xl[cC]*) # IBM XL C 8.0 on PPC (deal with xlf below) tmp_sharedflag='-qmkshrobj' tmp_addflag= ;; esac case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C 5.9 whole_archive_flag_spec='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' compiler_needs_object=yes tmp_sharedflag='-G' ;; *Sun\ F*) # Sun Fortran 8.3 tmp_sharedflag='-G' ;; esac archive_cmds='$CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test "x$supports_anon_versioning" = xyes; then archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC '"$tmp_sharedflag""$tmp_addflag"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi case $cc_basename in xlf*) # IBM XL Fortran 10.1 on PPC cannot create shared libs itself whole_archive_flag_spec='--whole-archive$convenience --no-whole-archive' hardcode_libdir_flag_spec= hardcode_libdir_flag_spec_ld='-rpath $libdir' archive_cmds='$LD -shared $libobjs $deplibs $compiler_flags -soname $soname -o $lib' if test "x$supports_anon_versioning" = xyes; then archive_expsym_cmds='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $LD -shared $libobjs $deplibs $compiler_flags -soname $soname -version-script $output_objdir/$libname.ver -o $lib' fi ;; esac else ld_shlibs=no fi ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable $libobjs $deplibs $linker_flags -o $lib' wlarc= else archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' fi ;; solaris*) if $LD -v 2>&1 | $GREP 'BFD 2\.8' > /dev/null; then ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: The releases 2.8.* of the GNU linker cannot reliably *** create shared libraries on Solaris systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.9.1 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF elif $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX*) case `$LD -v 2>&1` in *\ [01].* | *\ 2.[0-9].* | *\ 2.1[0-5].*) ld_shlibs=no cat <<_LT_EOF 1>&2 *** Warning: Releases of the GNU linker prior to 2.16.91.0.3 can not *** reliably create shared libraries on SCO systems. Therefore, libtool *** is disabling shared libraries support. We urge you to upgrade GNU *** binutils to release 2.16.91.0.3 or newer. Another option is to modify *** your PATH or compiler configuration so that the native linker is *** used, and then restart. _LT_EOF ;; *) # For security reasons, it is highly recommended that you always # use absolute paths for naming shared libraries, and exclude the # DT_RUNPATH tag from executables and libraries. But doing so # requires that you compile everything twice, which is a pain. if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; esac ;; sunos4*) archive_cmds='$LD -assert pure-text -Bshareable -o $lib $libobjs $deplibs $linker_flags' wlarc= hardcode_direct=yes hardcode_shlibpath_var=no ;; *) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' else ld_shlibs=no fi ;; esac if test "$ld_shlibs" = no; then runpath_var= hardcode_libdir_flag_spec= export_dynamic_flag_spec= whole_archive_flag_spec= fi else # PORTME fill in a description of your system's linker (not GNU ld) case $host_os in aix3*) allow_undefined_flag=unsupported always_export_symbols=yes archive_expsym_cmds='$LD -o $output_objdir/$soname $libobjs $deplibs $linker_flags -bE:$export_symbols -T512 -H512 -bM:SRE~$AR $AR_FLAGS $lib $output_objdir/$soname' # Note: this linker hardcodes the directories in LIBPATH if there # are no directories specified by -L. hardcode_minus_L=yes if test "$GCC" = yes && test -z "$lt_prog_compiler_static"; then # Neither direct hardcoding nor static linking is supported with a # broken collect2. hardcode_direct=unsupported fi ;; aix[4-9]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then export_symbols_cmds='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' else export_symbols_cmds='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' fi aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do if (test $ld_flag = "-brtl" || test $ld_flag = "-Wl,-brtl"); then aix_use_runtimelinking=yes break fi done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds='' hardcode_direct=yes hardcode_direct_absolute=yes hardcode_libdir_separator=':' link_all_deplibs=yes file_list_spec='${wl}-f,' if test "$GCC" = yes; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 hardcode_direct=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L=yes hardcode_libdir_flag_spec='-L$libdir' hardcode_libdir_separator= fi ;; esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi link_all_deplibs=no else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi export_dynamic_flag_spec='${wl}-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to export. always_export_symbols=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag='-berok' # Determine the default libpath from the value encoded in an # empty executable. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/ p } }' aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then $ECHO "X${wl}${allow_undefined_flag}" | $Xsed; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec='${wl}-R $libdir:/usr/lib:/lib' allow_undefined_flag="-z nodefs" archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/ p } }' aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag=' ${wl}-bernotok' allow_undefined_flag=' ${wl}-berok' # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec='$convenience' archive_cmds_need_lc=yes # This is similar to how AIX traditionally builds its shared libraries. archive_expsym_cmds="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds='' ;; m68k) archive_cmds='$RM $output_objdir/a2ixlibrary.data~$ECHO "#define NAME $libname" > $output_objdir/a2ixlibrary.data~$ECHO "#define LIBRARY_ID 1" >> $output_objdir/a2ixlibrary.data~$ECHO "#define VERSION $major" >> $output_objdir/a2ixlibrary.data~$ECHO "#define REVISION $revision" >> $output_objdir/a2ixlibrary.data~$AR $AR_FLAGS $lib $libobjs~$RANLIB $lib~(cd $output_objdir && a2ixlibrary -32)' hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes ;; esac ;; bsdi[45]*) export_dynamic_flag_spec=-rdynamic ;; cygwin* | mingw* | pw32* | cegcc*) # When not using gcc, we currently assume that we are using # Microsoft Visual C++. # hardcode_libdir_flag_spec is actually meaningless, as there is # no search path for DLLs. hardcode_libdir_flag_spec=' ' allow_undefined_flag=unsupported # Tell ltmain to make .lib files, not .a files. libext=lib # Tell ltmain to make .dll files, not .so files. shrext_cmds=".dll" # FIXME: Setting linknames here is a bad hack. archive_cmds='$CC -o $lib $libobjs $compiler_flags `$ECHO "X$deplibs" | $Xsed -e '\''s/ -lc$//'\''` -link -dll~linknames=' # The linker will automatically build a .lib file if we build a DLL. old_archive_from_new_cmds='true' # FIXME: Should let the user specify the lib program. old_archive_cmds='lib -OUT:$oldlib$oldobjs$old_deplibs' fix_srcfile_path='`cygpath -w "$srcfile"`' enable_shared_with_static_runtimes=yes ;; darwin* | rhapsody*) archive_cmds_need_lc=no hardcode_direct=no hardcode_automatic=yes hardcode_shlibpath_var=unsupported whole_archive_flag_spec='' link_all_deplibs=yes allow_undefined_flag="$_lt_dar_allow_undefined" case $cc_basename in ifort*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test "$_lt_dar_can_shared" = "yes"; then output_verbose_link_cmd=echo archive_cmds="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" module_cmds="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" archive_expsym_cmds="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" module_expsym_cmds="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" else ld_shlibs=no fi ;; dgux*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; freebsd1*) ld_shlibs=no ;; # FreeBSD 2.2.[012] allows us to include c++rt0.o to get C++ constructor # support. Future versions do this automatically, but an explicit c++rt0.o # does not break anything, and helps significantly (at the cost of a little # extra space). freebsd2.2*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags /usr/lib/c++rt0.o' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; # Unfortunately, older versions of FreeBSD 2 do not have this feature. freebsd2*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; # FreeBSD 3 and greater uses gcc -shared to do shared libraries. freebsd* | dragonfly*) archive_cmds='$CC -shared -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; hpux9*) if test "$GCC" = yes; then archive_cmds='$RM $output_objdir/$soname~$CC -shared -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $libobjs $deplibs $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else archive_cmds='$RM $output_objdir/$soname~$LD -b +b $install_libdir -o $output_objdir/$soname $libobjs $deplibs $linker_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' fi hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: hardcode_direct=yes # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes export_dynamic_flag_spec='${wl}-E' ;; hpux10*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -b +h $soname +b $install_libdir -o $lib $libobjs $deplibs $linker_flags' fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_flag_spec_ld='+b $libdir' hardcode_libdir_separator=: hardcode_direct=yes hardcode_direct_absolute=yes export_dynamic_flag_spec='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes fi ;; hpux11*) if test "$GCC" = yes -a "$with_gnu_ld" = no; then case $host_cpu in hppa*64*) archive_cmds='$CC -shared ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds='$CC -shared -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac else case $host_cpu in hppa*64*) archive_cmds='$CC -b ${wl}+h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' ;; ia64*) archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $libobjs $deplibs $compiler_flags' ;; esac fi if test "$with_gnu_ld" = no; then hardcode_libdir_flag_spec='${wl}+b ${wl}$libdir' hardcode_libdir_separator=: case $host_cpu in hppa*64*|ia64*) hardcode_direct=no hardcode_shlibpath_var=no ;; *) hardcode_direct=yes hardcode_direct_absolute=yes export_dynamic_flag_spec='${wl}-E' # hardcode_minus_L: Not really in the search PATH, # but as the default location of the library. hardcode_minus_L=yes ;; esac fi ;; irix5* | irix6* | nonstopux*) if test "$GCC" = yes; then archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' # Try to use the -exported_symbol ld option, if it does not # work, assume that -exports_file does not work either and # implicitly export all symbols. save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS -shared ${wl}-exported_symbol ${wl}foo ${wl}-update_registry ${wl}/dev/null" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int foo(void) {} _ACEOF if ac_fn_c_try_link "$LINENO"; then : archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations ${wl}-exports_file ${wl}$export_symbols -o $lib' fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS="$save_LDFLAGS" else archive_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds='$CC -shared $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -exports_file $export_symbols -o $lib' fi archive_cmds_need_lc='no' hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: inherit_rpath=yes link_all_deplibs=yes ;; netbsd* | netbsdelf*-gnu) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' # a.out else archive_cmds='$LD -shared -o $lib $libobjs $deplibs $linker_flags' # ELF fi hardcode_libdir_flag_spec='-R$libdir' hardcode_direct=yes hardcode_shlibpath_var=no ;; newsos6) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: hardcode_shlibpath_var=no ;; *nto* | *qnx*) ;; openbsd*) if test -f /usr/libexec/ld.so; then hardcode_direct=yes hardcode_shlibpath_var=no hardcode_direct_absolute=yes if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags ${wl}-retain-symbols-file,$export_symbols' hardcode_libdir_flag_spec='${wl}-rpath,$libdir' export_dynamic_flag_spec='${wl}-E' else case $host_os in openbsd[01].* | openbsd2.[0-7] | openbsd2.[0-7].*) archive_cmds='$LD -Bshareable -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-R$libdir' ;; *) archive_cmds='$CC -shared $pic_flag -o $lib $libobjs $deplibs $compiler_flags' hardcode_libdir_flag_spec='${wl}-rpath,$libdir' ;; esac fi else ld_shlibs=no fi ;; os2*) hardcode_libdir_flag_spec='-L$libdir' hardcode_minus_L=yes allow_undefined_flag=unsupported archive_cmds='$ECHO "LIBRARY $libname INITINSTANCE" > $output_objdir/$libname.def~$ECHO "DESCRIPTION \"$libname\"" >> $output_objdir/$libname.def~$ECHO DATA >> $output_objdir/$libname.def~$ECHO " SINGLE NONSHARED" >> $output_objdir/$libname.def~$ECHO EXPORTS >> $output_objdir/$libname.def~emxexp $libobjs >> $output_objdir/$libname.def~$CC -Zdll -Zcrtdll -o $lib $libobjs $deplibs $compiler_flags $output_objdir/$libname.def' old_archive_from_new_cmds='emximp -o $output_objdir/$libname.a $output_objdir/$libname.def' ;; osf3*) if test "$GCC" = yes; then allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' fi archive_cmds_need_lc='no' hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator=: ;; osf4* | osf5*) # as osf3* with the addition of -msym flag if test "$GCC" = yes; then allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' else allow_undefined_flag=' -expect_unresolved \*' archive_cmds='$CC -shared${allow_undefined_flag} $libobjs $deplibs $compiler_flags -msym -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done; printf "%s\\n" "-hidden">> $lib.exp~ $CC -shared${allow_undefined_flag} ${wl}-input ${wl}$lib.exp $compiler_flags $libobjs $deplibs -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib~$RM $lib.exp' # Both c and cxx compiler support -rpath directly hardcode_libdir_flag_spec='-rpath $libdir' fi archive_cmds_need_lc='no' hardcode_libdir_separator=: ;; solaris*) no_undefined_flag=' -z defs' if test "$GCC" = yes; then wlarc='${wl}' archive_cmds='$CC -shared ${wl}-z ${wl}text ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared ${wl}-z ${wl}text ${wl}-M ${wl}$lib.exp ${wl}-h ${wl}$soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' else case `$CC -V 2>&1` in *"Compilers 5.0"*) wlarc='' archive_cmds='$LD -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $linker_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $LD -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $linker_flags~$RM $lib.exp' ;; *) wlarc='${wl}' archive_cmds='$CC -G${allow_undefined_flag} -h $soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} -M $lib.exp -h $soname -o $lib $libobjs $deplibs $compiler_flags~$RM $lib.exp' ;; esac fi hardcode_libdir_flag_spec='-R$libdir' hardcode_shlibpath_var=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. GCC discards it without `$wl', # but is careful enough not to reorder. # Supported since Solaris 2.6 (maybe 2.5.1?) if test "$GCC" = yes; then whole_archive_flag_spec='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' else whole_archive_flag_spec='-z allextract$convenience -z defaultextract' fi ;; esac link_all_deplibs=yes ;; sunos4*) if test "x$host_vendor" = xsequent; then # Use $CC to link under sequent, because it throws in some extra .o # files that make .init and .fini sections work. archive_cmds='$CC -G ${wl}-h $soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$LD -assert pure-text -Bstatic -o $lib $libobjs $deplibs $linker_flags' fi hardcode_libdir_flag_spec='-L$libdir' hardcode_direct=yes hardcode_minus_L=yes hardcode_shlibpath_var=no ;; sysv4) case $host_vendor in sni) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=yes # is this really true??? ;; siemens) ## LD is ld it makes a PLAMLIB ## CC just makes a GrossModule. archive_cmds='$LD -G -o $lib $libobjs $deplibs $linker_flags' reload_cmds='$CC -r -o $output$reload_objs' hardcode_direct=no ;; motorola) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_direct=no #Motorola manual says yes, but my tests say they lie ;; esac runpath_var='LD_RUN_PATH' hardcode_shlibpath_var=no ;; sysv4.3*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no export_dynamic_flag_spec='-Bexport' ;; sysv4*MP*) if test -d /usr/nec; then archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_shlibpath_var=no runpath_var=LD_RUN_PATH hardcode_runpath_var=yes ld_shlibs=yes fi ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) no_undefined_flag='${wl}-z,text' archive_cmds_need_lc=no hardcode_shlibpath_var=no runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. no_undefined_flag='${wl}-z,text' allow_undefined_flag='${wl}-z,nodefs' archive_cmds_need_lc=no hardcode_shlibpath_var=no hardcode_libdir_flag_spec='${wl}-R,$libdir' hardcode_libdir_separator=':' link_all_deplibs=yes export_dynamic_flag_spec='${wl}-Bexport' runpath_var='LD_RUN_PATH' if test "$GCC" = yes; then archive_cmds='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' else archive_cmds='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' fi ;; uts4*) archive_cmds='$LD -G -h $soname -o $lib $libobjs $deplibs $linker_flags' hardcode_libdir_flag_spec='-L$libdir' hardcode_shlibpath_var=no ;; *) ld_shlibs=no ;; esac if test x$host_vendor = xsni; then case $host in sysv4 | sysv4.2uw2* | sysv4.3* | sysv5*) export_dynamic_flag_spec='${wl}-Blargedynsym' ;; esac fi fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs" >&5 $as_echo "$ld_shlibs" >&6; } test "$ld_shlibs" = no && can_build_shared=no with_gnu_ld=$with_gnu_ld # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc" in x|xyes) # Assume -lc should be added archive_cmds_need_lc=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $archive_cmds in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 $as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } $RM conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl pic_flag=$lt_prog_compiler_pic compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag allow_undefined_flag= if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 (eval $archive_cmds 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } then archive_cmds_need_lc=no else archive_cmds_need_lc=yes fi allow_undefined_flag=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $RM conftest* { $as_echo "$as_me:${as_lineno-$LINENO}: result: $archive_cmds_need_lc" >&5 $as_echo "$archive_cmds_need_lc" >&6; } ;; esac fi ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 $as_echo_n "checking dynamic linker characteristics... " >&6; } if test "$GCC" = yes; then case $host_os in darwin*) lt_awk_arg="/^libraries:/,/LR/" ;; *) lt_awk_arg="/^libraries:/" ;; esac lt_search_path_spec=`$CC -print-search-dirs | awk $lt_awk_arg | $SED -e "s/^libraries://" -e "s,=/,/,g"` if $ECHO "$lt_search_path_spec" | $GREP ';' >/dev/null ; then # if the path contains ";" then we assume it to be the separator # otherwise default to the standard path separator (i.e. ":") - it is # assumed that no part of a normal pathname contains ";" but that should # okay in the real world where ";" in dirpaths is itself problematic. lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED -e 's/;/ /g'` else lt_search_path_spec=`$ECHO "$lt_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi # Ok, now we have the path, separated by spaces, we can step through it # and add multilib dir if necessary. lt_tmp_lt_search_path_spec= lt_multi_os_dir=`$CC $CPPFLAGS $CFLAGS $LDFLAGS -print-multi-os-directory 2>/dev/null` for lt_sys_path in $lt_search_path_spec; do if test -d "$lt_sys_path/$lt_multi_os_dir"; then lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path/$lt_multi_os_dir" else test -d "$lt_sys_path" && \ lt_tmp_lt_search_path_spec="$lt_tmp_lt_search_path_spec $lt_sys_path" fi done lt_search_path_spec=`$ECHO $lt_tmp_lt_search_path_spec | awk ' BEGIN {RS=" "; FS="/|\n";} { lt_foo=""; lt_count=0; for (lt_i = NF; lt_i > 0; lt_i--) { if ($lt_i != "" && $lt_i != ".") { if ($lt_i == "..") { lt_count++; } else { if (lt_count == 0) { lt_foo="/" $lt_i lt_foo; } else { lt_count--; } } } } if (lt_foo != "") { lt_freq[lt_foo]++; } if (lt_freq[lt_foo] == 1) { print lt_foo; } }'` sys_lib_search_path_spec=`$ECHO $lt_search_path_spec` else sys_lib_search_path_spec="/lib /usr/lib /usr/local/lib" fi library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix[4-9]*) version_type=linux need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) case $host_cpu in powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$ECHO "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32* | cegcc*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$host_os in yes,cygwin* | yes,mingw* | yes,pw32* | yes,cegcc*) library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec=`$CC -print-search-dirs | $GREP "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH printed by # mingw gcc, but we are running on Cygwin. Gcc prints its search # path with ; separators, and with drive letters. We can handle the # drive letters (cygwin fileutils understands them), so leave them, # especially as we might pass files found there to a mingw objdump, # which wouldn't understand a cygwinified path. Ahh. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; esac ;; *) library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' ;; esac dynamic_linker='Win32 ld.exe' # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' sys_lib_search_path_spec="$sys_lib_search_path_spec /usr/local/lib" sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd1*) dynamic_linker=no ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[123]*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555. postinstall_cmds='chmod 555 $lib' ;; interix[3-9]*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be Linux ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # Some binutils ld are patched to set DT_RUNPATH save_LDFLAGS=$LDFLAGS save_libdir=$libdir eval "libdir=/foo; wl=\"$lt_prog_compiler_wl\"; \ LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec\"" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : shlibpath_overrides_runpath=yes fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS=$save_LDFLAGS libdir=$save_libdir # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsdelf*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='NetBSD ld.elf_so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; *nto* | *qnx*) version_type=qnx need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[89] | openbsd2.[89].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 $as_echo "$dynamic_linker" >&6; } test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" fi if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 $as_echo_n "checking how to hardcode library paths into programs... " >&6; } hardcode_action= if test -n "$hardcode_libdir_flag_spec" || test -n "$runpath_var" || test "X$hardcode_automatic" = "Xyes" ; then # We can hardcode non-existent directories. if test "$hardcode_direct" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_TAGVAR(hardcode_shlibpath_var, )" != no && test "$hardcode_minus_L" != no; then # Linking always hardcodes the temporary library directory. hardcode_action=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action=unsupported fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action" >&5 $as_echo "$hardcode_action" >&6; } if test "$hardcode_action" = relink || test "$inherit_rpath" = yes; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi if test "x$enable_dlopen" != xyes; then enable_dlopen=unknown enable_dlopen_self=unknown enable_dlopen_self_static=unknown else lt_cv_dlopen=no lt_cv_dlopen_libs= case $host_os in beos*) lt_cv_dlopen="load_add_on" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes ;; mingw* | pw32* | cegcc*) lt_cv_dlopen="LoadLibrary" lt_cv_dlopen_libs= ;; cygwin*) lt_cv_dlopen="dlopen" lt_cv_dlopen_libs= ;; darwin*) # if libdl is installed we need to link against it { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } if test "${ac_cv_lib_dl_dlopen+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dl_dlopen=yes else ac_cv_lib_dl_dlopen=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 $as_echo "$ac_cv_lib_dl_dlopen" >&6; } if test "x$ac_cv_lib_dl_dlopen" = x""yes; then : lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else lt_cv_dlopen="dyld" lt_cv_dlopen_libs= lt_cv_dlopen_self=yes fi ;; *) ac_fn_c_check_func "$LINENO" "shl_load" "ac_cv_func_shl_load" if test "x$ac_cv_func_shl_load" = x""yes; then : lt_cv_dlopen="shl_load" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for shl_load in -ldld" >&5 $as_echo_n "checking for shl_load in -ldld... " >&6; } if test "${ac_cv_lib_dld_shl_load+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char shl_load (); int main () { return shl_load (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dld_shl_load=yes else ac_cv_lib_dld_shl_load=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_shl_load" >&5 $as_echo "$ac_cv_lib_dld_shl_load" >&6; } if test "x$ac_cv_lib_dld_shl_load" = x""yes; then : lt_cv_dlopen="shl_load" lt_cv_dlopen_libs="-ldld" else ac_fn_c_check_func "$LINENO" "dlopen" "ac_cv_func_dlopen" if test "x$ac_cv_func_dlopen" = x""yes; then : lt_cv_dlopen="dlopen" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -ldl" >&5 $as_echo_n "checking for dlopen in -ldl... " >&6; } if test "${ac_cv_lib_dl_dlopen+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldl $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dl_dlopen=yes else ac_cv_lib_dl_dlopen=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dl_dlopen" >&5 $as_echo "$ac_cv_lib_dl_dlopen" >&6; } if test "x$ac_cv_lib_dl_dlopen" = x""yes; then : lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-ldl" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dlopen in -lsvld" >&5 $as_echo_n "checking for dlopen in -lsvld... " >&6; } if test "${ac_cv_lib_svld_dlopen+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lsvld $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dlopen (); int main () { return dlopen (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_svld_dlopen=yes else ac_cv_lib_svld_dlopen=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_svld_dlopen" >&5 $as_echo "$ac_cv_lib_svld_dlopen" >&6; } if test "x$ac_cv_lib_svld_dlopen" = x""yes; then : lt_cv_dlopen="dlopen" lt_cv_dlopen_libs="-lsvld" else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for dld_link in -ldld" >&5 $as_echo_n "checking for dld_link in -ldld... " >&6; } if test "${ac_cv_lib_dld_dld_link+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-ldld $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char dld_link (); int main () { return dld_link (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_dld_dld_link=yes else ac_cv_lib_dld_dld_link=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_dld_dld_link" >&5 $as_echo "$ac_cv_lib_dld_dld_link" >&6; } if test "x$ac_cv_lib_dld_dld_link" = x""yes; then : lt_cv_dlopen="dld_link" lt_cv_dlopen_libs="-ldld" fi fi fi fi fi fi ;; esac if test "x$lt_cv_dlopen" != xno; then enable_dlopen=yes else enable_dlopen=no fi case $lt_cv_dlopen in dlopen) save_CPPFLAGS="$CPPFLAGS" test "x$ac_cv_header_dlfcn_h" = xyes && CPPFLAGS="$CPPFLAGS -DHAVE_DLFCN_H" save_LDFLAGS="$LDFLAGS" wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $export_dynamic_flag_spec\" save_LIBS="$LIBS" LIBS="$lt_cv_dlopen_libs $LIBS" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a program can dlopen itself" >&5 $as_echo_n "checking whether a program can dlopen itself... " >&6; } if test "${lt_cv_dlopen_self+set}" = set; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : lt_cv_dlopen_self=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF #line 11875 "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif void fnord() { int i=42;} int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; /* dlclose (self); */ } else puts (dlerror ()); return status; } _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self=yes ;; x$lt_dlunknown|x*) lt_cv_dlopen_self=no ;; esac else : # compilation failed lt_cv_dlopen_self=no fi fi rm -fr conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self" >&5 $as_echo "$lt_cv_dlopen_self" >&6; } if test "x$lt_cv_dlopen_self" = xyes; then wl=$lt_prog_compiler_wl eval LDFLAGS=\"\$LDFLAGS $lt_prog_compiler_static\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether a statically linked program can dlopen itself" >&5 $as_echo_n "checking whether a statically linked program can dlopen itself... " >&6; } if test "${lt_cv_dlopen_self_static+set}" = set; then : $as_echo_n "(cached) " >&6 else if test "$cross_compiling" = yes; then : lt_cv_dlopen_self_static=cross else lt_dlunknown=0; lt_dlno_uscore=1; lt_dlneed_uscore=2 lt_status=$lt_dlunknown cat > conftest.$ac_ext <<_LT_EOF #line 11971 "configure" #include "confdefs.h" #if HAVE_DLFCN_H #include #endif #include #ifdef RTLD_GLOBAL # define LT_DLGLOBAL RTLD_GLOBAL #else # ifdef DL_GLOBAL # define LT_DLGLOBAL DL_GLOBAL # else # define LT_DLGLOBAL 0 # endif #endif /* We may have to define LT_DLLAZY_OR_NOW in the command line if we find out it does not work in some platform. */ #ifndef LT_DLLAZY_OR_NOW # ifdef RTLD_LAZY # define LT_DLLAZY_OR_NOW RTLD_LAZY # else # ifdef DL_LAZY # define LT_DLLAZY_OR_NOW DL_LAZY # else # ifdef RTLD_NOW # define LT_DLLAZY_OR_NOW RTLD_NOW # else # ifdef DL_NOW # define LT_DLLAZY_OR_NOW DL_NOW # else # define LT_DLLAZY_OR_NOW 0 # endif # endif # endif # endif #endif void fnord() { int i=42;} int main () { void *self = dlopen (0, LT_DLGLOBAL|LT_DLLAZY_OR_NOW); int status = $lt_dlunknown; if (self) { if (dlsym (self,"fnord")) status = $lt_dlno_uscore; else if (dlsym( self,"_fnord")) status = $lt_dlneed_uscore; /* dlclose (self); */ } else puts (dlerror ()); return status; } _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_link\""; } >&5 (eval $ac_link) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } && test -s conftest${ac_exeext} 2>/dev/null; then (./conftest; exit; ) >&5 2>/dev/null lt_status=$? case x$lt_status in x$lt_dlno_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_dlneed_uscore) lt_cv_dlopen_self_static=yes ;; x$lt_dlunknown|x*) lt_cv_dlopen_self_static=no ;; esac else : # compilation failed lt_cv_dlopen_self_static=no fi fi rm -fr conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_dlopen_self_static" >&5 $as_echo "$lt_cv_dlopen_self_static" >&6; } fi CPPFLAGS="$save_CPPFLAGS" LDFLAGS="$save_LDFLAGS" LIBS="$save_LIBS" ;; esac case $lt_cv_dlopen_self in yes|no) enable_dlopen_self=$lt_cv_dlopen_self ;; *) enable_dlopen_self=unknown ;; esac case $lt_cv_dlopen_self_static in yes|no) enable_dlopen_self_static=$lt_cv_dlopen_self_static ;; *) enable_dlopen_self_static=unknown ;; esac fi striplib= old_striplib= { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether stripping libraries is possible" >&5 $as_echo_n "checking whether stripping libraries is possible... " >&6; } if test -n "$STRIP" && $STRIP -V 2>&1 | $GREP "GNU strip" >/dev/null; then test -z "$old_striplib" && old_striplib="$STRIP --strip-debug" test -z "$striplib" && striplib="$STRIP --strip-unneeded" { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else # FIXME - insert some real tests, host_os isn't really good enough case $host_os in darwin*) if test -n "$STRIP" ; then striplib="$STRIP -x" old_striplib="$STRIP -S" { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi ;; *) { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } ;; esac fi # Report which library types will actually be built { $as_echo "$as_me:${as_lineno-$LINENO}: checking if libtool supports shared libraries" >&5 $as_echo_n "checking if libtool supports shared libraries... " >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: result: $can_build_shared" >&5 $as_echo "$can_build_shared" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build shared libraries" >&5 $as_echo_n "checking whether to build shared libraries... " >&6; } test "$can_build_shared" = "no" && enable_shared=no # On AIX, shared libraries and static libraries use the same namespace, and # are all built from PIC. case $host_os in aix3*) test "$enable_shared" = yes && enable_static=no if test -n "$RANLIB"; then archive_cmds="$archive_cmds~\$RANLIB \$lib" postinstall_cmds='$RANLIB $lib' fi ;; aix[4-9]*) if test "$host_cpu" != ia64 && test "$aix_use_runtimelinking" = no ; then test "$enable_shared" = yes && enable_static=no fi ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_shared" >&5 $as_echo "$enable_shared" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether to build static libraries" >&5 $as_echo_n "checking whether to build static libraries... " >&6; } # Make sure either enable_shared or enable_static is yes. test "$enable_shared" = yes || enable_static=yes { $as_echo "$as_me:${as_lineno-$LINENO}: result: $enable_static" >&5 $as_echo "$enable_static" >&6; } fi ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu CC="$lt_save_CC" ac_ext=cpp ac_cpp='$CXXCPP $CPPFLAGS' ac_compile='$CXX -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CXX -o conftest$ac_exeext $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_cxx_compiler_gnu archive_cmds_need_lc_CXX=no allow_undefined_flag_CXX= always_export_symbols_CXX=no archive_expsym_cmds_CXX= compiler_needs_object_CXX=no export_dynamic_flag_spec_CXX= hardcode_direct_CXX=no hardcode_direct_absolute_CXX=no hardcode_libdir_flag_spec_CXX= hardcode_libdir_flag_spec_ld_CXX= hardcode_libdir_separator_CXX= hardcode_minus_L_CXX=no hardcode_shlibpath_var_CXX=unsupported hardcode_automatic_CXX=no inherit_rpath_CXX=no module_cmds_CXX= module_expsym_cmds_CXX= link_all_deplibs_CXX=unknown old_archive_cmds_CXX=$old_archive_cmds no_undefined_flag_CXX= whole_archive_flag_spec_CXX= enable_shared_with_static_runtimes_CXX=no # Source file extension for C++ test sources. ac_ext=cpp # Object file extension for compiled C++ test sources. objext=o objext_CXX=$objext # No sense in running all these tests if we already determined that # the CXX compiler isn't working. Some variables (like enable_shared) # are currently assumed to apply to all compilers on this platform, # and will be corrupted by setting them based on a non-working compiler. if test "$_lt_caught_CXX_error" != yes; then # Code to be used in simple compile tests lt_simple_compile_test_code="int some_variable = 0;" # Code to be used in simple link tests lt_simple_link_test_code='int main(int, char *[]) { return(0); }' # ltmain only uses $CC for tagged configurations so make sure $CC is set. # If no C compiler was specified, use CC. LTCC=${LTCC-"$CC"} # If no C compiler flags were specified, use CFLAGS. LTCFLAGS=${LTCFLAGS-"$CFLAGS"} # Allow CC to be a program name with arguments. compiler=$CC # save warnings/boilerplate of simple test code ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" >conftest.$ac_ext eval "$ac_compile" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_compiler_boilerplate=`cat conftest.err` $RM conftest* ac_outfile=conftest.$ac_objext echo "$lt_simple_link_test_code" >conftest.$ac_ext eval "$ac_link" 2>&1 >/dev/null | $SED '/^$/d; /^ *+/d' >conftest.err _lt_linker_boilerplate=`cat conftest.err` $RM -r conftest* # Allow CC to be a program name with arguments. lt_save_CC=$CC lt_save_LD=$LD lt_save_GCC=$GCC GCC=$GXX lt_save_with_gnu_ld=$with_gnu_ld lt_save_path_LD=$lt_cv_path_LD if test -n "${lt_cv_prog_gnu_ldcxx+set}"; then lt_cv_prog_gnu_ld=$lt_cv_prog_gnu_ldcxx else $as_unset lt_cv_prog_gnu_ld fi if test -n "${lt_cv_path_LDCXX+set}"; then lt_cv_path_LD=$lt_cv_path_LDCXX else $as_unset lt_cv_path_LD fi test -z "${LDCXX+set}" || LD=$LDCXX CC=${CXX-"c++"} compiler=$CC compiler_CXX=$CC for cc_temp in $compiler""; do case $cc_temp in compile | *[\\/]compile | ccache | *[\\/]ccache ) ;; distcc | *[\\/]distcc | purify | *[\\/]purify ) ;; \-*) ;; *) break;; esac done cc_basename=`$ECHO "X$cc_temp" | $Xsed -e 's%.*/%%' -e "s%^$host_alias-%%"` if test -n "$compiler"; then # We don't want -fno-exception when compiling C++ code, so set the # no_builtin_flag separately if test "$GXX" = yes; then lt_prog_compiler_no_builtin_flag_CXX=' -fno-builtin' else lt_prog_compiler_no_builtin_flag_CXX= fi if test "$GXX" = yes; then # Set up default GNU C++ configuration # Check whether --with-gnu-ld was given. if test "${with_gnu_ld+set}" = set; then : withval=$with_gnu_ld; test "$withval" = no || with_gnu_ld=yes else with_gnu_ld=no fi ac_prog=ld if test "$GCC" = yes; then # Check if gcc -print-prog-name=ld gives a path. { $as_echo "$as_me:${as_lineno-$LINENO}: checking for ld used by $CC" >&5 $as_echo_n "checking for ld used by $CC... " >&6; } case $host in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw ac_prog=`($CC -print-prog-name=ld) 2>&5 | tr -d '\015'` ;; *) ac_prog=`($CC -print-prog-name=ld) 2>&5` ;; esac case $ac_prog in # Accept absolute paths. [\\/]* | ?:[\\/]*) re_direlt='/[^/][^/]*/\.\./' # Canonicalize the pathname of ld ac_prog=`$ECHO "$ac_prog"| $SED 's%\\\\%/%g'` while $ECHO "$ac_prog" | $GREP "$re_direlt" > /dev/null 2>&1; do ac_prog=`$ECHO $ac_prog| $SED "s%$re_direlt%/%"` done test -z "$LD" && LD="$ac_prog" ;; "") # If it fails, then pretend we aren't using GCC. ac_prog=ld ;; *) # If it is relative, then search for the first ld in PATH. with_gnu_ld=unknown ;; esac elif test "$with_gnu_ld" = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking for GNU ld" >&5 $as_echo_n "checking for GNU ld... " >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: checking for non-GNU ld" >&5 $as_echo_n "checking for non-GNU ld... " >&6; } fi if test "${lt_cv_path_LD+set}" = set; then : $as_echo_n "(cached) " >&6 else if test -z "$LD"; then lt_save_ifs="$IFS"; IFS=$PATH_SEPARATOR for ac_dir in $PATH; do IFS="$lt_save_ifs" test -z "$ac_dir" && ac_dir=. if test -f "$ac_dir/$ac_prog" || test -f "$ac_dir/$ac_prog$ac_exeext"; then lt_cv_path_LD="$ac_dir/$ac_prog" # Check to see if the program is GNU ld. I'd rather use --version, # but apparently some variants of GNU ld only accept -v. # Break only if it was the GNU/non-GNU ld that we prefer. case `"$lt_cv_path_LD" -v 2>&1 &5 $as_echo "$LD" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi test -z "$LD" && as_fn_error $? "no acceptable ld found in \$PATH" "$LINENO" 5 { $as_echo "$as_me:${as_lineno-$LINENO}: checking if the linker ($LD) is GNU ld" >&5 $as_echo_n "checking if the linker ($LD) is GNU ld... " >&6; } if test "${lt_cv_prog_gnu_ld+set}" = set; then : $as_echo_n "(cached) " >&6 else # I'd rather use --version here, but apparently some GNU lds only accept -v. case `$LD -v 2>&1 &5 $as_echo "$lt_cv_prog_gnu_ld" >&6; } with_gnu_ld=$lt_cv_prog_gnu_ld # Check if GNU C++ uses GNU ld as the underlying linker, since the # archiving commands below assume that GNU ld is being used. if test "$with_gnu_ld" = yes; then archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' export_dynamic_flag_spec_CXX='${wl}--export-dynamic' # If archive_cmds runs LD, not CC, wlarc should be empty # XXX I think wlarc can be eliminated in ltcf-cxx, but I need to # investigate it a little bit more. (MM) wlarc='${wl}' # ancient GNU ld didn't support --whole-archive et. al. if eval "`$CC -print-prog-name=ld` --help 2>&1" | $GREP 'no-whole-archive' > /dev/null; then whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' else whole_archive_flag_spec_CXX= fi else with_gnu_ld=no wlarc= # A generic and very simple default shared library creation # command for GNU C++ for the case where it uses the native # linker, instead of GNU ld. If possible, this setting should # overridden to take advantage of the native linker features on # the platform it is being used on. archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' fi # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"' else GXX=no with_gnu_ld=no wlarc= fi # PORTME: fill in a description of your system's C++ link characteristics { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 $as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } ld_shlibs_CXX=yes case $host_os in aix3*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; aix[4-9]*) if test "$host_cpu" = ia64; then # On IA64, the linker does run time linking by default, so we don't # have to do anything special. aix_use_runtimelinking=no exp_sym_flag='-Bexport' no_entry_flag="" else aix_use_runtimelinking=no # Test if we are trying to use run time linking or normal # AIX style linking. If -brtl is somewhere in LDFLAGS, we # need to do runtime linking. case $host_os in aix4.[23]|aix4.[23].*|aix[5-9]*) for ld_flag in $LDFLAGS; do case $ld_flag in *-brtl*) aix_use_runtimelinking=yes break ;; esac done ;; esac exp_sym_flag='-bexport' no_entry_flag='-bnoentry' fi # When large executables or shared objects are built, AIX ld can # have problems creating the table of contents. If linking a library # or program results in "error TOC overflow" add -mminimal-toc to # CXXFLAGS/CFLAGS for g++/gcc. In the cases where that is not # enough to fix the problem, add -Wl,-bbigtoc to LDFLAGS. archive_cmds_CXX='' hardcode_direct_CXX=yes hardcode_direct_absolute_CXX=yes hardcode_libdir_separator_CXX=':' link_all_deplibs_CXX=yes file_list_spec_CXX='${wl}-f,' if test "$GXX" = yes; then case $host_os in aix4.[012]|aix4.[012].*) # We only want to do this on AIX 4.2 and lower, the check # below for broken collect2 doesn't work under 4.3+ collect2name=`${CC} -print-prog-name=collect2` if test -f "$collect2name" && strings "$collect2name" | $GREP resolve_lib_name >/dev/null then # We have reworked collect2 : else # We have old collect2 hardcode_direct_CXX=unsupported # It fails to find uninstalled libraries when the uninstalled # path is not listed in the libpath. Setting hardcode_minus_L # to unsupported forces relinking hardcode_minus_L_CXX=yes hardcode_libdir_flag_spec_CXX='-L$libdir' hardcode_libdir_separator_CXX= fi esac shared_flag='-shared' if test "$aix_use_runtimelinking" = yes; then shared_flag="$shared_flag "'${wl}-G' fi else # not using gcc if test "$host_cpu" = ia64; then # VisualAge C++, Version 5.5 for AIX 5L for IA-64, Beta 3 Release # chokes on -Wl,-G. The following line is correct: shared_flag='-G' else if test "$aix_use_runtimelinking" = yes; then shared_flag='${wl}-G' else shared_flag='${wl}-bM:SRE' fi fi fi export_dynamic_flag_spec_CXX='${wl}-bexpall' # It seems that -bexpall does not export symbols beginning with # underscore (_), so it is better to generate a list of symbols to # export. always_export_symbols_CXX=yes if test "$aix_use_runtimelinking" = yes; then # Warning - without using the other runtime loading flags (-brtl), # -berok will link without error, but may produce a broken library. allow_undefined_flag_CXX='-berok' # Determine the default libpath from the value encoded in an empty # executable. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/ p } }' aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" archive_expsym_cmds_CXX='$CC -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags `if test "x${allow_undefined_flag}" != "x"; then $ECHO "X${wl}${allow_undefined_flag}" | $Xsed; else :; fi` '"\${wl}$exp_sym_flag:\$export_symbols $shared_flag" else if test "$host_cpu" = ia64; then hardcode_libdir_flag_spec_CXX='${wl}-R $libdir:/usr/lib:/lib' allow_undefined_flag_CXX="-z nodefs" archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs '"\${wl}$no_entry_flag"' $compiler_flags ${wl}${allow_undefined_flag} '"\${wl}$exp_sym_flag:\$export_symbols" else # Determine the default libpath from the value encoded in an # empty executable. cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : lt_aix_libpath_sed=' /Import File Strings/,/^$/ { /^0/ { s/^0 *\(.*\)$/\1/ p } }' aix_libpath=`dump -H conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` # Check for a 64-bit object if we didn't find anything. if test -z "$aix_libpath"; then aix_libpath=`dump -HX64 conftest$ac_exeext 2>/dev/null | $SED -n -e "$lt_aix_libpath_sed"` fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext if test -z "$aix_libpath"; then aix_libpath="/usr/lib:/lib"; fi hardcode_libdir_flag_spec_CXX='${wl}-blibpath:$libdir:'"$aix_libpath" # Warning - without using the other run time loading flags, # -berok will link without error, but may produce a broken library. no_undefined_flag_CXX=' ${wl}-bernotok' allow_undefined_flag_CXX=' ${wl}-berok' # Exported symbols can be pulled into shared objects from archives whole_archive_flag_spec_CXX='$convenience' archive_cmds_need_lc_CXX=yes # This is similar to how AIX traditionally builds its shared # libraries. archive_expsym_cmds_CXX="\$CC $shared_flag"' -o $output_objdir/$soname $libobjs $deplibs ${wl}-bnoentry $compiler_flags ${wl}-bE:$export_symbols${allow_undefined_flag}~$AR $AR_FLAGS $output_objdir/$libname$release.a $output_objdir/$soname' fi fi ;; beos*) if $LD --help 2>&1 | $GREP ': supported targets:.* elf' > /dev/null; then allow_undefined_flag_CXX=unsupported # Joseph Beckenbach says some releases of gcc # support --undefined. This deserves some investigation. FIXME archive_cmds_CXX='$CC -nostart $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' else ld_shlibs_CXX=no fi ;; chorus*) case $cc_basename in *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; cygwin* | mingw* | pw32* | cegcc*) # _LT_TAGVAR(hardcode_libdir_flag_spec, CXX) is actually meaningless, # as there is no search path for DLLs. hardcode_libdir_flag_spec_CXX='-L$libdir' allow_undefined_flag_CXX=unsupported always_export_symbols_CXX=no enable_shared_with_static_runtimes_CXX=yes if $LD --help 2>&1 | $GREP 'auto-import' > /dev/null; then archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' # If the export-symbols file already is a .def file (1st line # is EXPORTS), use it as is; otherwise, prepend... archive_expsym_cmds_CXX='if test "x`$SED 1q $export_symbols`" = xEXPORTS; then cp $export_symbols $output_objdir/$soname.def; else echo EXPORTS > $output_objdir/$soname.def; cat $export_symbols >> $output_objdir/$soname.def; fi~ $CC -shared -nostdlib $output_objdir/$soname.def $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $output_objdir/$soname ${wl}--enable-auto-image-base -Xlinker --out-implib -Xlinker $lib' else ld_shlibs_CXX=no fi ;; darwin* | rhapsody*) archive_cmds_need_lc_CXX=no hardcode_direct_CXX=no hardcode_automatic_CXX=yes hardcode_shlibpath_var_CXX=unsupported whole_archive_flag_spec_CXX='' link_all_deplibs_CXX=yes allow_undefined_flag_CXX="$_lt_dar_allow_undefined" case $cc_basename in ifort*) _lt_dar_can_shared=yes ;; *) _lt_dar_can_shared=$GCC ;; esac if test "$_lt_dar_can_shared" = "yes"; then output_verbose_link_cmd=echo archive_cmds_CXX="\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring $_lt_dar_single_mod${_lt_dsymutil}" module_cmds_CXX="\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dsymutil}" archive_expsym_cmds_CXX="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \$libobjs \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring ${_lt_dar_single_mod}${_lt_dar_export_syms}${_lt_dsymutil}" module_expsym_cmds_CXX="sed -e 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC \$allow_undefined_flag -o \$lib -bundle \$libobjs \$deplibs \$compiler_flags${_lt_dar_export_syms}${_lt_dsymutil}" if test "$lt_cv_apple_cc_single_mod" != "yes"; then archive_cmds_CXX="\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dsymutil}" archive_expsym_cmds_CXX="sed 's,^,_,' < \$export_symbols > \$output_objdir/\${libname}-symbols.expsym~\$CC -r -keep_private_externs -nostdlib -o \${lib}-master.o \$libobjs~\$CC -dynamiclib \$allow_undefined_flag -o \$lib \${lib}-master.o \$deplibs \$compiler_flags -install_name \$rpath/\$soname \$verstring${_lt_dar_export_syms}${_lt_dsymutil}" fi else ld_shlibs_CXX=no fi ;; dgux*) case $cc_basename in ec++*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; ghcx*) # Green Hills C++ Compiler # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; freebsd[12]*) # C++ shared libraries reported to be fairly broken before # switch to ELF ld_shlibs_CXX=no ;; freebsd-elf*) archive_cmds_need_lc_CXX=no ;; freebsd* | dragonfly*) # FreeBSD 3 and later use GNU C++ and GNU ld with standard ELF # conventions ld_shlibs_CXX=yes ;; gnu*) ;; hpux9*) hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' hardcode_libdir_separator_CXX=: export_dynamic_flag_spec_CXX='${wl}-E' hardcode_direct_CXX=yes hardcode_minus_L_CXX=yes # Not in the search PATH, # but as the default # location of the library. case $cc_basename in CC*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; aCC*) archive_cmds_CXX='$RM $output_objdir/$soname~$CC -b ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $EGREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' ;; *) if test "$GXX" = yes; then archive_cmds_CXX='$RM $output_objdir/$soname~$CC -shared -nostdlib -fPIC ${wl}+b ${wl}$install_libdir -o $output_objdir/$soname $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~test $output_objdir/$soname = $lib || mv $output_objdir/$soname $lib' else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; hpux10*|hpux11*) if test $with_gnu_ld = no; then hardcode_libdir_flag_spec_CXX='${wl}+b ${wl}$libdir' hardcode_libdir_separator_CXX=: case $host_cpu in hppa*64*|ia64*) ;; *) export_dynamic_flag_spec_CXX='${wl}-E' ;; esac fi case $host_cpu in hppa*64*|ia64*) hardcode_direct_CXX=no hardcode_shlibpath_var_CXX=no ;; *) hardcode_direct_CXX=yes hardcode_direct_absolute_CXX=yes hardcode_minus_L_CXX=yes # Not in the search PATH, # but as the default # location of the library. ;; esac case $cc_basename in CC*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; aCC*) case $host_cpu in hppa*64*) archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) archive_cmds_CXX='$CC -b ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`($CC -b $CFLAGS -v conftest.$objext 2>&1) | $GREP "\-L"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' ;; *) if test "$GXX" = yes; then if test $with_gnu_ld = no; then case $host_cpu in hppa*64*) archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; ia64*) archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+nodefaultrpath -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; *) archive_cmds_CXX='$CC -shared -nostdlib -fPIC ${wl}+h ${wl}$soname ${wl}+b ${wl}$install_libdir -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' ;; esac fi else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; interix[3-9]*) hardcode_direct_CXX=no hardcode_shlibpath_var_CXX=no hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' export_dynamic_flag_spec_CXX='${wl}-E' # Hack: On Interix 3.x, we cannot compile PIC because of a broken gcc. # Instead, shared libraries are loaded at an image base (0x10000000 by # default) and relocated if they conflict, which is a slow very memory # consuming and fragmenting process. To avoid this, we pick a random, # 256 KiB-aligned image base between 0x50000000 and 0x6FFC0000 at link # time. Moving up from 0x10000000 also allows more sbrk(2) space. archive_cmds_CXX='$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' archive_expsym_cmds_CXX='sed "s,^,_," $export_symbols >$output_objdir/$soname.expsym~$CC -shared $pic_flag $libobjs $deplibs $compiler_flags ${wl}-h,$soname ${wl}--retain-symbols-file,$output_objdir/$soname.expsym ${wl}--image-base,`expr ${RANDOM-$$} % 4096 / 2 \* 262144 + 1342177280` -o $lib' ;; irix5* | irix6*) case $cc_basename in CC*) # SGI C++ archive_cmds_CXX='$CC -shared -all -multigot $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' # Archives containing C++ object files must be created using # "CC -ar", where "CC" is the IRIX C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. old_archive_cmds_CXX='$CC -ar -WR,-u -o $oldlib $oldobjs' ;; *) if test "$GXX" = yes; then if test "$with_gnu_ld" = no; then archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' else archive_cmds_CXX='$CC -shared -nostdlib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` -o $lib' fi fi link_all_deplibs_CXX=yes ;; esac hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_CXX=: inherit_rpath_CXX=yes ;; linux* | k*bsd*-gnu | kopensolaris*-gnu) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' archive_expsym_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo $lib | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib ${wl}-retain-symbols-file,$export_symbols; mv \$templib $lib' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 | $GREP "ld"`; rm -f libconftest$shared_ext; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' export_dynamic_flag_spec_CXX='${wl}--export-dynamic' # Archives containing C++ object files must be created using # "CC -Bstatic", where "CC" is the KAI C++ compiler. old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;; icpc* | ecpc* ) # Intel C++ with_gnu_ld=yes # version 8.0 and above of icpc choke on multiply defined symbols # if we add $predep_objects and $postdep_objects, however 7.1 and # earlier do not add the objects themselves. case `$CC -V 2>&1` in *"Version 7."*) archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; *) # Version 8.0 or newer tmp_idyn= case $host_cpu in ia64*) tmp_idyn=' -i_dynamic';; esac archive_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared'"$tmp_idyn"' $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-retain-symbols-file $wl$export_symbols -o $lib' ;; esac archive_cmds_need_lc_CXX=no hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' export_dynamic_flag_spec_CXX='${wl}--export-dynamic' whole_archive_flag_spec_CXX='${wl}--whole-archive$convenience ${wl}--no-whole-archive' ;; pgCC* | pgcpp*) # Portland Group C++ compiler case `$CC -V` in *pgCC\ [1-5]* | *pgcpp\ [1-5]*) prelink_cmds_CXX='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $objs $libobjs $compile_deplibs~ compile_command="$compile_command `find $tpldir -name \*.o | $NL2SP`"' old_archive_cmds_CXX='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $oldobjs$old_deplibs~ $AR $AR_FLAGS $oldlib$oldobjs$old_deplibs `find $tpldir -name \*.o | $NL2SP`~ $RANLIB $oldlib' archive_cmds_CXX='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' archive_expsym_cmds_CXX='tpldir=Template.dir~ rm -rf $tpldir~ $CC --prelink_objects --instantiation_dir $tpldir $predep_objects $libobjs $deplibs $convenience $postdep_objects~ $CC -shared $pic_flag $predep_objects $libobjs $deplibs `find $tpldir -name \*.o | $NL2SP` $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' ;; *) # Version 6 will use weak symbols archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname ${wl}-retain-symbols-file ${wl}$export_symbols -o $lib' ;; esac hardcode_libdir_flag_spec_CXX='${wl}--rpath ${wl}$libdir' export_dynamic_flag_spec_CXX='${wl}--export-dynamic' whole_archive_flag_spec_CXX='${wl}--whole-archive`for conv in $convenience\"\"; do test -n \"$conv\" && new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' ;; cxx*) # Compaq C++ archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib' archive_expsym_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $wl$soname -o $lib ${wl}-retain-symbols-file $wl$export_symbols' runpath_var=LD_RUN_PATH hardcode_libdir_flag_spec_CXX='-rpath $libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld"`; templist=`$ECHO "X$templist" | $Xsed -e "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' ;; xl*) # IBM XL 8.0 on PPC, with GNU ld hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' export_dynamic_flag_spec_CXX='${wl}--export-dynamic' archive_cmds_CXX='$CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname -o $lib' if test "x$supports_anon_versioning" = xyes; then archive_expsym_cmds_CXX='echo "{ global:" > $output_objdir/$libname.ver~ cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $output_objdir/$libname.ver~ echo "local: *; };" >> $output_objdir/$libname.ver~ $CC -qmkshrobj $libobjs $deplibs $compiler_flags ${wl}-soname $wl$soname ${wl}-version-script ${wl}$output_objdir/$libname.ver -o $lib' fi ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 no_undefined_flag_CXX=' -zdefs' archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' archive_expsym_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file ${wl}$export_symbols' hardcode_libdir_flag_spec_CXX='-R$libdir' whole_archive_flag_spec_CXX='${wl}--whole-archive`new_convenience=; for conv in $convenience\"\"; do test -z \"$conv\" || new_convenience=\"$new_convenience,$conv\"; done; $ECHO \"$new_convenience\"` ${wl}--no-whole-archive' compiler_needs_object_CXX=yes # Not sure whether something based on # $CC $CFLAGS -v conftest.$objext -o libconftest$shared_ext 2>&1 # would be better. output_verbose_link_cmd='echo' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' ;; esac ;; esac ;; lynxos*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; m88k*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; mvs*) case $cc_basename in cxx*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; netbsd*) if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then archive_cmds_CXX='$LD -Bshareable -o $lib $predep_objects $libobjs $deplibs $postdep_objects $linker_flags' wlarc= hardcode_libdir_flag_spec_CXX='-R$libdir' hardcode_direct_CXX=yes hardcode_shlibpath_var_CXX=no fi # Workaround some broken pre-1.5 toolchains output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP conftest.$objext | $SED -e "s:-lgcc -lc -lgcc::"' ;; *nto* | *qnx*) ld_shlibs_CXX=yes ;; openbsd2*) # C++ shared libraries are fairly broken ld_shlibs_CXX=no ;; openbsd*) if test -f /usr/libexec/ld.so; then hardcode_direct_CXX=yes hardcode_shlibpath_var_CXX=no hardcode_direct_absolute_CXX=yes archive_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -o $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' if test -z "`echo __ELF__ | $CC -E - | grep __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then archive_expsym_cmds_CXX='$CC -shared $pic_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-retain-symbols-file,$export_symbols -o $lib' export_dynamic_flag_spec_CXX='${wl}-E' whole_archive_flag_spec_CXX="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' fi output_verbose_link_cmd=echo else ld_shlibs_CXX=no fi ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) # Kuck and Associates, Inc. (KAI) C++ Compiler # KCC will only create a shared library if the output file # ends with ".so" (or ".sl" for HP-UX), so rename the library # to its proper name (with version) after linking. archive_cmds_CXX='tempext=`echo $shared_ext | $SED -e '\''s/\([^()0-9A-Za-z{}]\)/\\\\\1/g'\''`; templib=`echo "$lib" | $SED -e "s/\${tempext}\..*/.so/"`; $CC $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags --soname $soname -o \$templib; mv \$templib $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath,$libdir' hardcode_libdir_separator_CXX=: # Archives containing C++ object files must be created using # the KAI C++ compiler. case $host in osf3*) old_archive_cmds_CXX='$CC -Bstatic -o $oldlib $oldobjs' ;; *) old_archive_cmds_CXX='$CC -o $oldlib $oldobjs' ;; esac ;; RCC*) # Rational C++ 2.4.1 # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; cxx*) case $host in osf3*) allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname $soname `test -n "$verstring" && $ECHO "X${wl}-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' ;; *) allow_undefined_flag_CXX=' -expect_unresolved \*' archive_cmds_CXX='$CC -shared${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib' archive_expsym_cmds_CXX='for i in `cat $export_symbols`; do printf "%s %s\\n" -exported_symbol "\$i" >> $lib.exp; done~ echo "-hidden">> $lib.exp~ $CC -shared$allow_undefined_flag $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags -msym -soname $soname ${wl}-input ${wl}$lib.exp `test -n "$verstring" && $ECHO "X-set_version $verstring" | $Xsed` -update_registry ${output_objdir}/so_locations -o $lib~ $RM $lib.exp' hardcode_libdir_flag_spec_CXX='-rpath $libdir' ;; esac hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. # # There doesn't appear to be a way to prevent this compiler from # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. output_verbose_link_cmd='templist=`$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "ld" | $GREP -v "ld:"`; templist=`$ECHO "X$templist" | $Xsed -e "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; $ECHO "X$list" | $Xsed' ;; *) if test "$GXX" = yes && test "$with_gnu_ld" = no; then allow_undefined_flag_CXX=' ${wl}-expect_unresolved ${wl}\*' case $host in osf3*) archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "X${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ;; *) archive_cmds_CXX='$CC -shared -nostdlib ${allow_undefined_flag} $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && $ECHO "${wl}-set_version ${wl}$verstring" | $Xsed` ${wl}-update_registry ${wl}${output_objdir}/so_locations -o $lib' ;; esac hardcode_libdir_flag_spec_CXX='${wl}-rpath ${wl}$libdir' hardcode_libdir_separator_CXX=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"' else # FIXME: insert proper C++ library support ld_shlibs_CXX=no fi ;; esac ;; psos*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; lcc*) # Lucid # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; solaris*) case $cc_basename in CC*) # Sun C++ 4.2, 5.x and Centerline C++ archive_cmds_need_lc_CXX=yes no_undefined_flag_CXX=' -zdefs' archive_cmds_CXX='$CC -G${allow_undefined_flag} -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags' archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G${allow_undefined_flag} ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' hardcode_libdir_flag_spec_CXX='-R$libdir' hardcode_shlibpath_var_CXX=no case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) # The compiler driver will combine and reorder linker options, # but understands `-z linker_flag'. # Supported since Solaris 2.6 (maybe 2.5.1?) whole_archive_flag_spec_CXX='-z allextract$convenience -z defaultextract' ;; esac link_all_deplibs_CXX=yes output_verbose_link_cmd='echo' # Archives containing C++ object files must be created using # "CC -xar", where "CC" is the Sun C++ compiler. This is # necessary to make sure instantiated templates are included # in the archive. old_archive_cmds_CXX='$CC -xar -o $oldlib $oldobjs' ;; gcx*) # Green Hills C++ Compiler archive_cmds_CXX='$CC -shared $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' # The C++ compiler must be used to create the archive. old_archive_cmds_CXX='$CC $LDFLAGS -archive -o $oldlib $oldobjs' ;; *) # GNU C++ compiler with Solaris linker if test "$GXX" = yes && test "$with_gnu_ld" = no; then no_undefined_flag_CXX=' ${wl}-z ${wl}defs' if $CC --version | $GREP -v '^2\.7' > /dev/null; then archive_cmds_CXX='$CC -shared -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -shared -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -shared $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"' else # g++ 2.7 appears to require `-G' NOT `-shared' on this # platform. archive_cmds_CXX='$CC -G -nostdlib $LDFLAGS $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags ${wl}-h $wl$soname -o $lib' archive_expsym_cmds_CXX='echo "{ global:" > $lib.exp~cat $export_symbols | $SED -e "s/\(.*\)/\1;/" >> $lib.exp~echo "local: *; };" >> $lib.exp~ $CC -G -nostdlib ${wl}-M $wl$lib.exp -o $lib $predep_objects $libobjs $deplibs $postdep_objects $compiler_flags~$RM $lib.exp' # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when # linking a shared library. output_verbose_link_cmd='$CC -G $CFLAGS -v conftest.$objext 2>&1 | $GREP "\-L"' fi hardcode_libdir_flag_spec_CXX='${wl}-R $wl$libdir' case $host_os in solaris2.[0-5] | solaris2.[0-5].*) ;; *) whole_archive_flag_spec_CXX='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' ;; esac fi ;; esac ;; sysv4*uw2* | sysv5OpenUNIX* | sysv5UnixWare7.[01].[10]* | unixware7* | sco3.2v5.0.[024]*) no_undefined_flag_CXX='${wl}-z,text' archive_cmds_need_lc_CXX=no hardcode_shlibpath_var_CXX=no runpath_var='LD_RUN_PATH' case $cc_basename in CC*) archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; sysv5* | sco3.2v5* | sco5v6*) # Note: We can NOT use -z defs as we might desire, because we do not # link with -lc, and that would cause any symbols used from libc to # always be unresolved, which means just about no library would # ever link correctly. If we're not using GNU ld we use -z text # though, which does catch some bad symbols but isn't as heavy-handed # as -z defs. no_undefined_flag_CXX='${wl}-z,text' allow_undefined_flag_CXX='${wl}-z,nodefs' archive_cmds_need_lc_CXX=no hardcode_shlibpath_var_CXX=no hardcode_libdir_flag_spec_CXX='${wl}-R,$libdir' hardcode_libdir_separator_CXX=':' link_all_deplibs_CXX=yes export_dynamic_flag_spec_CXX='${wl}-Bexport' runpath_var='LD_RUN_PATH' case $cc_basename in CC*) archive_cmds_CXX='$CC -G ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -G ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; *) archive_cmds_CXX='$CC -shared ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' archive_expsym_cmds_CXX='$CC -shared ${wl}-Bexport:$export_symbols ${wl}-h,$soname -o $lib $libobjs $deplibs $compiler_flags' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac ;; vxworks*) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; *) # FIXME: insert proper C++ library support ld_shlibs_CXX=no ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 $as_echo "$ld_shlibs_CXX" >&6; } test "$ld_shlibs_CXX" = no && can_build_shared=no GCC_CXX="$GXX" LD_CXX="$LD" ## CAVEAT EMPTOR: ## There is no encapsulation within the following macros, do not change ## the running order or otherwise move them around unless you know exactly ## what you are doing... # Dependencies to place before and after the object being linked: predep_objects_CXX= postdep_objects_CXX= predeps_CXX= postdeps_CXX= compiler_lib_search_path_CXX= cat > conftest.$ac_ext <<_LT_EOF class Foo { public: Foo (void) { a = 0; } private: int a; }; _LT_EOF if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then # Parse the compiler output and extract the necessary # objects, libraries and library flags. # Sentinel used to keep track of whether or not we are before # the conftest object file. pre_test_object_deps_done=no for p in `eval "$output_verbose_link_cmd"`; do case $p in -L* | -R* | -l*) # Some compilers place space between "-{L,R}" and the path. # Remove the space. if test $p = "-L" || test $p = "-R"; then prev=$p continue else prev= fi if test "$pre_test_object_deps_done" = no; then case $p in -L* | -R*) # Internal compiler library paths should come after those # provided the user. The postdeps already come after the # user supplied libs so there is no need to process them. if test -z "$compiler_lib_search_path_CXX"; then compiler_lib_search_path_CXX="${prev}${p}" else compiler_lib_search_path_CXX="${compiler_lib_search_path_CXX} ${prev}${p}" fi ;; # The "-l" case would never come before the object being # linked, so don't bother handling this case. esac else if test -z "$postdeps_CXX"; then postdeps_CXX="${prev}${p}" else postdeps_CXX="${postdeps_CXX} ${prev}${p}" fi fi ;; *.$objext) # This assumes that the test object file only shows up # once in the compiler output. if test "$p" = "conftest.$objext"; then pre_test_object_deps_done=yes continue fi if test "$pre_test_object_deps_done" = no; then if test -z "$predep_objects_CXX"; then predep_objects_CXX="$p" else predep_objects_CXX="$predep_objects_CXX $p" fi else if test -z "$postdep_objects_CXX"; then postdep_objects_CXX="$p" else postdep_objects_CXX="$postdep_objects_CXX $p" fi fi ;; *) ;; # Ignore the rest. esac done # Clean up. rm -f a.out a.exe else echo "libtool.m4: error: problem compiling CXX test program" fi $RM -f confest.$objext # PORTME: override above test on systems where it is broken case $host_os in interix[3-9]*) # Interix 3.5 installs completely hosed .la files for C++, so rather than # hack all around it, let's just trust "g++" to DTRT. predep_objects_CXX= postdep_objects_CXX= postdeps_CXX= ;; linux*) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 # The more standards-conforming stlport4 library is # incompatible with the Cstd library. Avoid specifying # it if it's in CXXFLAGS. Ignore libCrun as # -library=stlport4 depends on it. case " $CXX $CXXFLAGS " in *" -library=stlport4 "*) solaris_use_stlport4=yes ;; esac if test "$solaris_use_stlport4" != yes; then postdeps_CXX='-library=Cstd -library=Crun' fi ;; esac ;; solaris*) case $cc_basename in CC*) # The more standards-conforming stlport4 library is # incompatible with the Cstd library. Avoid specifying # it if it's in CXXFLAGS. Ignore libCrun as # -library=stlport4 depends on it. case " $CXX $CXXFLAGS " in *" -library=stlport4 "*) solaris_use_stlport4=yes ;; esac # Adding this requires a known-good setup of shared libraries for # Sun compiler versions before 5.6, else PIC objects from an old # archive will be linked into the output, leading to subtle bugs. if test "$solaris_use_stlport4" != yes; then postdeps_CXX='-library=Cstd -library=Crun' fi ;; esac ;; esac case " $postdeps_CXX " in *" -lc "*) archive_cmds_need_lc_CXX=no ;; esac compiler_lib_search_dirs_CXX= if test -n "${compiler_lib_search_path_CXX}"; then compiler_lib_search_dirs_CXX=`echo " ${compiler_lib_search_path_CXX}" | ${SED} -e 's! -L! !g' -e 's!^ !!'` fi lt_prog_compiler_wl_CXX= lt_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX= { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $compiler option to produce PIC" >&5 $as_echo_n "checking for $compiler option to produce PIC... " >&6; } # C++ specific cases for pic, static, wl, etc. if test "$GXX" = yes; then lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='-static' case $host_os in aix*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_CXX='-Bstatic' fi ;; amigaos*) case $host_cpu in powerpc) # see comment about AmigaOS4 .so support lt_prog_compiler_pic_CXX='-fPIC' ;; m68k) # FIXME: we need at least 68020 code to build shared libraries, but # adding the `-m68020' flag to GCC prevents building anything better, # like `-m68040'. lt_prog_compiler_pic_CXX='-m68020 -resident32 -malways-restore-a4' ;; esac ;; beos* | irix5* | irix6* | nonstopux* | osf3* | osf4* | osf5*) # PIC is the default for these OSes. ;; mingw* | cygwin* | os2* | pw32* | cegcc*) # This hack is so that the source file can tell whether it is being # built for inclusion in a dll (and should export symbols for example). # Although the cygwin gcc ignores -fPIC, still need this for old-style # (--disable-auto-import) libraries lt_prog_compiler_pic_CXX='-DDLL_EXPORT' ;; darwin* | rhapsody*) # PIC is the default on this platform # Common symbols not allowed in MH_DYLIB files lt_prog_compiler_pic_CXX='-fno-common' ;; *djgpp*) # DJGPP does not support shared libraries at all lt_prog_compiler_pic_CXX= ;; interix[3-9]*) # Interix 3.x gcc -fpic/-fPIC options generate broken code. # Instead, we relocate shared libraries at runtime. ;; sysv4*MP*) if test -d /usr/nec; then lt_prog_compiler_pic_CXX=-Kconform_pic fi ;; hpux*) # PIC is the default for 64-bit PA HP-UX, but not for 32-bit # PA HP-UX. On IA64 HP-UX, PIC is the default but the pic flag # sets the default TLS model and affects inlining. case $host_cpu in hppa*64*) ;; *) lt_prog_compiler_pic_CXX='-fPIC' ;; esac ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic_CXX='-fPIC -shared' ;; *) lt_prog_compiler_pic_CXX='-fPIC' ;; esac else case $host_os in aix[4-9]*) # All AIX code is PIC. if test "$host_cpu" = ia64; then # AIX 5 now supports IA64 processor lt_prog_compiler_static_CXX='-Bstatic' else lt_prog_compiler_static_CXX='-bnso -bI:/lib/syscalls.exp' fi ;; chorus*) case $cc_basename in cxch68*) # Green Hills C++ Compiler # _LT_TAGVAR(lt_prog_compiler_static, CXX)="--no_auto_instantiation -u __main -u __premain -u _abort -r $COOL_DIR/lib/libOrb.a $MVME_DIR/lib/CC/libC.a $MVME_DIR/lib/classix/libcx.s.a" ;; esac ;; dgux*) case $cc_basename in ec++*) lt_prog_compiler_pic_CXX='-KPIC' ;; ghcx*) # Green Hills C++ Compiler lt_prog_compiler_pic_CXX='-pic' ;; *) ;; esac ;; freebsd* | dragonfly*) # FreeBSD uses GNU C++ ;; hpux9* | hpux10* | hpux11*) case $cc_basename in CC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' if test "$host_cpu" != ia64; then lt_prog_compiler_pic_CXX='+Z' fi ;; aCC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='${wl}-a ${wl}archive' case $host_cpu in hppa*64*|ia64*) # +Z the default ;; *) lt_prog_compiler_pic_CXX='+Z' ;; esac ;; *) ;; esac ;; interix*) # This is c89, which is MS Visual C++ (no shared libs) # Anyone wants to do a port? ;; irix5* | irix6* | nonstopux*) case $cc_basename in CC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_static_CXX='-non_shared' # CC pic flag -KPIC is the default. ;; *) ;; esac ;; linux* | k*bsd*-gnu | kopensolaris*-gnu) case $cc_basename in KCC*) # KAI C++ Compiler lt_prog_compiler_wl_CXX='--backend -Wl,' lt_prog_compiler_pic_CXX='-fPIC' ;; ecpc* ) # old Intel C++ for x86_64 which still supported -KPIC. lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-static' ;; icpc* ) # Intel C++, used to be incompatible with GCC. # ICC 10 doesn't accept -KPIC any more. lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-fPIC' lt_prog_compiler_static_CXX='-static' ;; pgCC* | pgcpp*) # Portland Group C++ compiler lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-fpic' lt_prog_compiler_static_CXX='-Bstatic' ;; cxx*) # Compaq C++ # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. lt_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX='-non_shared' ;; xlc* | xlC*) # IBM XL 8.0 on PPC lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-qpic' lt_prog_compiler_static_CXX='-qstaticlink' ;; *) case `$CC -V 2>&1 | sed 5q` in *Sun\ C*) # Sun C++ 5.9 lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-Bstatic' lt_prog_compiler_wl_CXX='-Qoption ld ' ;; esac ;; esac ;; lynxos*) ;; m88k*) ;; mvs*) case $cc_basename in cxx*) lt_prog_compiler_pic_CXX='-W c,exportall' ;; *) ;; esac ;; netbsd* | netbsdelf*-gnu) ;; *qnx* | *nto*) # QNX uses GNU C++, but need to define -shared option too, otherwise # it will coredump. lt_prog_compiler_pic_CXX='-fPIC -shared' ;; osf3* | osf4* | osf5*) case $cc_basename in KCC*) lt_prog_compiler_wl_CXX='--backend -Wl,' ;; RCC*) # Rational C++ 2.4.1 lt_prog_compiler_pic_CXX='-pic' ;; cxx*) # Digital/Compaq C++ lt_prog_compiler_wl_CXX='-Wl,' # Make sure the PIC flag is empty. It appears that all Alpha # Linux and Compaq Tru64 Unix objects are PIC. lt_prog_compiler_pic_CXX= lt_prog_compiler_static_CXX='-non_shared' ;; *) ;; esac ;; psos*) ;; solaris*) case $cc_basename in CC*) # Sun C++ 4.2, 5.x and Centerline C++ lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-Bstatic' lt_prog_compiler_wl_CXX='-Qoption ld ' ;; gcx*) # Green Hills C++ Compiler lt_prog_compiler_pic_CXX='-PIC' ;; *) ;; esac ;; sunos4*) case $cc_basename in CC*) # Sun C++ 4.x lt_prog_compiler_pic_CXX='-pic' lt_prog_compiler_static_CXX='-Bstatic' ;; lcc*) # Lucid lt_prog_compiler_pic_CXX='-pic' ;; *) ;; esac ;; sysv5* | unixware* | sco3.2v5* | sco5v6* | OpenUNIX*) case $cc_basename in CC*) lt_prog_compiler_wl_CXX='-Wl,' lt_prog_compiler_pic_CXX='-KPIC' lt_prog_compiler_static_CXX='-Bstatic' ;; esac ;; tandem*) case $cc_basename in NCC*) # NonStop-UX NCC 3.20 lt_prog_compiler_pic_CXX='-KPIC' ;; *) ;; esac ;; vxworks*) ;; *) lt_prog_compiler_can_build_shared_CXX=no ;; esac fi case $host_os in # For platforms which do not support PIC, -DPIC is meaningless: *djgpp*) lt_prog_compiler_pic_CXX= ;; *) lt_prog_compiler_pic_CXX="$lt_prog_compiler_pic_CXX -DPIC" ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_prog_compiler_pic_CXX" >&5 $as_echo "$lt_prog_compiler_pic_CXX" >&6; } # # Check to make sure the PIC flag actually works. # if test -n "$lt_prog_compiler_pic_CXX"; then { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works" >&5 $as_echo_n "checking if $compiler PIC flag $lt_prog_compiler_pic_CXX works... " >&6; } if test "${lt_cv_prog_compiler_pic_works_CXX+set}" = set; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_pic_works_CXX=no ac_outfile=conftest.$ac_objext echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="$lt_prog_compiler_pic_CXX -DPIC" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. # The option is referenced via a variable to avoid confusing sed. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:13927: $lt_compile\"" >&5) (eval "$lt_compile" 2>conftest.err) ac_status=$? cat conftest.err >&5 echo "$as_me:13931: \$? = $ac_status" >&5 if (exit $ac_status) && test -s "$ac_outfile"; then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings other than the usual output. $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' >conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if test ! -s conftest.er2 || diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_pic_works_CXX=yes fi fi $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_pic_works_CXX" >&5 $as_echo "$lt_cv_prog_compiler_pic_works_CXX" >&6; } if test x"$lt_cv_prog_compiler_pic_works_CXX" = xyes; then case $lt_prog_compiler_pic_CXX in "" | " "*) ;; *) lt_prog_compiler_pic_CXX=" $lt_prog_compiler_pic_CXX" ;; esac else lt_prog_compiler_pic_CXX= lt_prog_compiler_can_build_shared_CXX=no fi fi # # Check to make sure the static flag actually works. # wl=$lt_prog_compiler_wl_CXX eval lt_tmp_static_flag=\"$lt_prog_compiler_static_CXX\" { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler static flag $lt_tmp_static_flag works" >&5 $as_echo_n "checking if $compiler static flag $lt_tmp_static_flag works... " >&6; } if test "${lt_cv_prog_compiler_static_works_CXX+set}" = set; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_static_works_CXX=no save_LDFLAGS="$LDFLAGS" LDFLAGS="$LDFLAGS $lt_tmp_static_flag" echo "$lt_simple_link_test_code" > conftest.$ac_ext if (eval $ac_link 2>conftest.err) && test -s conftest$ac_exeext; then # The linker can only warn and ignore the option if not recognized # So say no if there are warnings if test -s conftest.err; then # Append any errors to the config.log. cat conftest.err 1>&5 $ECHO "X$_lt_linker_boilerplate" | $Xsed -e '/^$/d' > conftest.exp $SED '/^$/d; /^ *+/d' conftest.err >conftest.er2 if diff conftest.exp conftest.er2 >/dev/null; then lt_cv_prog_compiler_static_works_CXX=yes fi else lt_cv_prog_compiler_static_works_CXX=yes fi fi $RM -r conftest* LDFLAGS="$save_LDFLAGS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_static_works_CXX" >&5 $as_echo "$lt_cv_prog_compiler_static_works_CXX" >&6; } if test x"$lt_cv_prog_compiler_static_works_CXX" = xyes; then : else lt_prog_compiler_static_CXX= fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if test "${lt_cv_prog_compiler_c_o_CXX+set}" = set; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o_CXX=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:14026: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:14030: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o_CXX=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_CXX" >&5 $as_echo "$lt_cv_prog_compiler_c_o_CXX" >&6; } { $as_echo "$as_me:${as_lineno-$LINENO}: checking if $compiler supports -c -o file.$ac_objext" >&5 $as_echo_n "checking if $compiler supports -c -o file.$ac_objext... " >&6; } if test "${lt_cv_prog_compiler_c_o_CXX+set}" = set; then : $as_echo_n "(cached) " >&6 else lt_cv_prog_compiler_c_o_CXX=no $RM -r conftest 2>/dev/null mkdir conftest cd conftest mkdir out echo "$lt_simple_compile_test_code" > conftest.$ac_ext lt_compiler_flag="-o out/conftest2.$ac_objext" # Insert the option either (1) after the last *FLAGS variable, or # (2) before a word containing "conftest.", or (3) at the end. # Note that $ac_compile itself does not contain backslashes and begins # with a dollar sign (not a hyphen), so the echo should work correctly. lt_compile=`echo "$ac_compile" | $SED \ -e 's:.*FLAGS}\{0,1\} :&$lt_compiler_flag :; t' \ -e 's: [^ ]*conftest\.: $lt_compiler_flag&:; t' \ -e 's:$: $lt_compiler_flag:'` (eval echo "\"\$as_me:14078: $lt_compile\"" >&5) (eval "$lt_compile" 2>out/conftest.err) ac_status=$? cat out/conftest.err >&5 echo "$as_me:14082: \$? = $ac_status" >&5 if (exit $ac_status) && test -s out/conftest2.$ac_objext then # The compiler can only warn and ignore the option if not recognized # So say no if there are warnings $ECHO "X$_lt_compiler_boilerplate" | $Xsed -e '/^$/d' > out/conftest.exp $SED '/^$/d; /^ *+/d' out/conftest.err >out/conftest.er2 if test ! -s out/conftest.er2 || diff out/conftest.exp out/conftest.er2 >/dev/null; then lt_cv_prog_compiler_c_o_CXX=yes fi fi chmod u+w . 2>&5 $RM conftest* # SGI C++ compiler will create directory out/ii_files/ for # template instantiation test -d out/ii_files && $RM out/ii_files/* && rmdir out/ii_files $RM out/* && rmdir out cd .. $RM -r conftest $RM conftest* fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $lt_cv_prog_compiler_c_o_CXX" >&5 $as_echo "$lt_cv_prog_compiler_c_o_CXX" >&6; } hard_links="nottested" if test "$lt_cv_prog_compiler_c_o_CXX" = no && test "$need_locks" != no; then # do not overwrite the value of need_locks provided by the user { $as_echo "$as_me:${as_lineno-$LINENO}: checking if we can lock with hard links" >&5 $as_echo_n "checking if we can lock with hard links... " >&6; } hard_links=yes $RM conftest* ln conftest.a conftest.b 2>/dev/null && hard_links=no touch conftest.a ln conftest.a conftest.b 2>&5 || hard_links=no ln conftest.a conftest.b 2>/dev/null && hard_links=no { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hard_links" >&5 $as_echo "$hard_links" >&6; } if test "$hard_links" = no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&5 $as_echo "$as_me: WARNING: \`$CC' does not support \`-c -o', so \`make -j' may be unsafe" >&2;} need_locks=warn fi else need_locks=no fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether the $compiler linker ($LD) supports shared libraries" >&5 $as_echo_n "checking whether the $compiler linker ($LD) supports shared libraries... " >&6; } export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' case $host_os in aix[4-9]*) # If we're using GNU nm, then we don't want the "-C" option. # -C means demangle to AIX nm, but means don't demangle with GNU nm if $NM -V 2>&1 | $GREP 'GNU' > /dev/null; then export_symbols_cmds_CXX='$NM -Bpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' else export_symbols_cmds_CXX='$NM -BCpg $libobjs $convenience | awk '\''{ if (((\$ 2 == "T") || (\$ 2 == "D") || (\$ 2 == "B")) && (substr(\$ 3,1,1) != ".")) { print \$ 3 } }'\'' | sort -u > $export_symbols' fi ;; pw32*) export_symbols_cmds_CXX="$ltdll_cmds" ;; cygwin* | mingw* | cegcc*) export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED -e '\''/^[BCDGRS][ ]/s/.*[ ]\([^ ]*\)/\1 DATA/;/^.*[ ]__nm__/s/^.*[ ]__nm__\([^ ]*\)[ ][^ ]*/\1 DATA/;/^I[ ]/d;/^[AITW][ ]/s/.* //'\'' | sort | uniq > $export_symbols' ;; linux* | k*bsd*-gnu) link_all_deplibs_CXX=no ;; *) export_symbols_cmds_CXX='$NM $libobjs $convenience | $global_symbol_pipe | $SED '\''s/.* //'\'' | sort | uniq > $export_symbols' ;; esac exclude_expsyms_CXX='_GLOBAL_OFFSET_TABLE_|_GLOBAL__F[ID]_.*' { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ld_shlibs_CXX" >&5 $as_echo "$ld_shlibs_CXX" >&6; } test "$ld_shlibs_CXX" = no && can_build_shared=no with_gnu_ld_CXX=$with_gnu_ld # # Do we need to explicitly link libc? # case "x$archive_cmds_need_lc_CXX" in x|xyes) # Assume -lc should be added archive_cmds_need_lc_CXX=yes if test "$enable_shared" = yes && test "$GCC" = yes; then case $archive_cmds_CXX in *'~'*) # FIXME: we may have to deal with multi-command sequences. ;; '$CC '*) # Test whether the compiler implicitly links with -lc since on some # systems, -lgcc has to come before -lc. If gcc already passes -lc # to ld, don't add -lc before -lgcc. { $as_echo "$as_me:${as_lineno-$LINENO}: checking whether -lc should be explicitly linked in" >&5 $as_echo_n "checking whether -lc should be explicitly linked in... " >&6; } $RM conftest* echo "$lt_simple_compile_test_code" > conftest.$ac_ext if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$ac_compile\""; } >&5 (eval $ac_compile) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } 2>conftest.err; then soname=conftest lib=conftest libobjs=conftest.$ac_objext deplibs= wl=$lt_prog_compiler_wl_CXX pic_flag=$lt_prog_compiler_pic_CXX compiler_flags=-v linker_flags=-v verstring= output_objdir=. libname=conftest lt_save_allow_undefined_flag=$allow_undefined_flag_CXX allow_undefined_flag_CXX= if { { eval echo "\"\$as_me\":${as_lineno-$LINENO}: \"$archive_cmds_CXX 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1\""; } >&5 (eval $archive_cmds_CXX 2\>\&1 \| $GREP \" -lc \" \>/dev/null 2\>\&1) 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; } then archive_cmds_need_lc_CXX=no else archive_cmds_need_lc_CXX=yes fi allow_undefined_flag_CXX=$lt_save_allow_undefined_flag else cat conftest.err 1>&5 fi $RM conftest* { $as_echo "$as_me:${as_lineno-$LINENO}: result: $archive_cmds_need_lc_CXX" >&5 $as_echo "$archive_cmds_need_lc_CXX" >&6; } ;; esac fi ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: checking dynamic linker characteristics" >&5 $as_echo_n "checking dynamic linker characteristics... " >&6; } library_names_spec= libname_spec='lib$name' soname_spec= shrext_cmds=".so" postinstall_cmds= postuninstall_cmds= finish_cmds= finish_eval= shlibpath_var= shlibpath_overrides_runpath=unknown version_type=none dynamic_linker="$host_os ld.so" sys_lib_dlsearch_path_spec="/lib /usr/lib" need_lib_prefix=unknown hardcode_into_libs=no # when you set need_version to no, make sure it does not cause -set_version # flags to be left without arguments need_version=unknown case $host_os in aix3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix $libname.a' shlibpath_var=LIBPATH # AIX 3 has no versioning support, so we append a major version to the name. soname_spec='${libname}${release}${shared_ext}$major' ;; aix[4-9]*) version_type=linux need_lib_prefix=no need_version=no hardcode_into_libs=yes if test "$host_cpu" = ia64; then # AIX 5 supports IA64 library_names_spec='${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext}$versuffix $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH else # With GCC up to 2.95.x, collect2 would create an import file # for dependence libraries. The import file would start with # the line `#! .'. This would cause the generated library to # depend on `.', always an invalid library. This was fixed in # development snapshots of GCC prior to 3.0. case $host_os in aix4 | aix4.[01] | aix4.[01].*) if { echo '#if __GNUC__ > 2 || (__GNUC__ == 2 && __GNUC_MINOR__ >= 97)' echo ' yes ' echo '#endif'; } | ${CC} -E - | $GREP yes > /dev/null; then : else can_build_shared=no fi ;; esac # AIX (on Power*) has no versioning support, so currently we can not hardcode correct # soname into executable. Probably we can add versioning support to # collect2, so additional links can be useful in future. if test "$aix_use_runtimelinking" = yes; then # If using run time linking (on AIX 4.2 or later) use lib.so # instead of lib.a to let people know that these are not # typical AIX shared libraries. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' else # We preserve .a as extension for shared libraries through AIX4.2 # and later when we are not doing run time linking. library_names_spec='${libname}${release}.a $libname.a' soname_spec='${libname}${release}${shared_ext}$major' fi shlibpath_var=LIBPATH fi ;; amigaos*) case $host_cpu in powerpc) # Since July 2007 AmigaOS4 officially supports .so libraries. # When compiling the executable, add -use-dynld -Lsobjs: to the compileline. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' ;; m68k) library_names_spec='$libname.ixlibrary $libname.a' # Create ${libname}_ixlibrary.a entries in /sys/libs. finish_eval='for lib in `ls $libdir/*.ixlibrary 2>/dev/null`; do libname=`$ECHO "X$lib" | $Xsed -e '\''s%^.*/\([^/]*\)\.ixlibrary$%\1%'\''`; test $RM /sys/libs/${libname}_ixlibrary.a; $show "cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a"; cd /sys/libs && $LN_S $lib ${libname}_ixlibrary.a || exit 1; done' ;; esac ;; beos*) library_names_spec='${libname}${shared_ext}' dynamic_linker="$host_os ld.so" shlibpath_var=LIBRARY_PATH ;; bsdi[45]*) version_type=linux need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/shlib /usr/lib /usr/X11/lib /usr/contrib/lib /lib /usr/local/lib" sys_lib_dlsearch_path_spec="/shlib /usr/lib /usr/local/lib" # the default ld.so.conf also contains /usr/contrib/lib and # /usr/X11R6/lib (/usr/X11 is a link to /usr/X11R6), but let us allow # libtool to hard-code these into programs ;; cygwin* | mingw* | pw32* | cegcc*) version_type=windows shrext_cmds=".dll" need_version=no need_lib_prefix=no case $GCC,$host_os in yes,cygwin* | yes,mingw* | yes,pw32* | yes,cegcc*) library_names_spec='$libname.dll.a' # DLL is installed to $(libdir)/../bin by postinstall_cmds postinstall_cmds='base_file=`basename \${file}`~ dlpath=`$SHELL 2>&1 -c '\''. $dir/'\''\${base_file}'\''i; echo \$dlname'\''`~ dldir=$destdir/`dirname \$dlpath`~ test -d \$dldir || mkdir -p \$dldir~ $install_prog $dir/$dlname \$dldir/$dlname~ chmod a+x \$dldir/$dlname~ if test -n '\''$stripme'\'' && test -n '\''$striplib'\''; then eval '\''$striplib \$dldir/$dlname'\'' || exit \$?; fi' postuninstall_cmds='dldll=`$SHELL 2>&1 -c '\''. $file; echo \$dlname'\''`~ dlpath=$dir/\$dldll~ $RM \$dlpath' shlibpath_overrides_runpath=yes case $host_os in cygwin*) # Cygwin DLLs use 'cyg' prefix rather than 'lib' soname_spec='`echo ${libname} | sed -e 's/^lib/cyg/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec="/usr/lib /lib/w32api /lib /usr/local/lib" ;; mingw* | cegcc*) # MinGW DLLs use traditional 'lib' prefix soname_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' sys_lib_search_path_spec=`$CC -print-search-dirs | $GREP "^libraries:" | $SED -e "s/^libraries://" -e "s,=/,/,g"` if $ECHO "$sys_lib_search_path_spec" | $GREP ';[c-zC-Z]:/' >/dev/null; then # It is most probably a Windows format PATH printed by # mingw gcc, but we are running on Cygwin. Gcc prints its search # path with ; separators, and with drive letters. We can handle the # drive letters (cygwin fileutils understands them), so leave them, # especially as we might pass files found there to a mingw objdump, # which wouldn't understand a cygwinified path. Ahh. sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e 's/;/ /g'` else sys_lib_search_path_spec=`$ECHO "$sys_lib_search_path_spec" | $SED -e "s/$PATH_SEPARATOR/ /g"` fi ;; pw32*) # pw32 DLLs use 'pw' prefix rather than 'lib' library_names_spec='`echo ${libname} | sed -e 's/^lib/pw/'``echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext}' ;; esac ;; *) library_names_spec='${libname}`echo ${release} | $SED -e 's/[.]/-/g'`${versuffix}${shared_ext} $libname.lib' ;; esac dynamic_linker='Win32 ld.exe' # FIXME: first we should search . and the directory the executable is in shlibpath_var=PATH ;; darwin* | rhapsody*) dynamic_linker="$host_os dyld" version_type=darwin need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${major}$shared_ext ${libname}$shared_ext' soname_spec='${libname}${release}${major}$shared_ext' shlibpath_overrides_runpath=yes shlibpath_var=DYLD_LIBRARY_PATH shrext_cmds='`test .$module = .yes && echo .so || echo .dylib`' sys_lib_dlsearch_path_spec='/usr/local/lib /lib /usr/lib' ;; dgux*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname$shared_ext' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; freebsd1*) dynamic_linker=no ;; freebsd* | dragonfly*) # DragonFly does not have aout. When/if they implement a new # versioning mechanism, adjust this. if test -x /usr/bin/objformat; then objformat=`/usr/bin/objformat` else case $host_os in freebsd[123]*) objformat=aout ;; *) objformat=elf ;; esac fi version_type=freebsd-$objformat case $version_type in freebsd-elf*) library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' need_version=no need_lib_prefix=no ;; freebsd-*) library_names_spec='${libname}${release}${shared_ext}$versuffix $libname${shared_ext}$versuffix' need_version=yes ;; esac shlibpath_var=LD_LIBRARY_PATH case $host_os in freebsd2*) shlibpath_overrides_runpath=yes ;; freebsd3.[01]* | freebsdelf3.[01]*) shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; freebsd3.[2-9]* | freebsdelf3.[2-9]* | \ freebsd4.[0-5] | freebsdelf4.[0-5] | freebsd4.1.1 | freebsdelf4.1.1) shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; *) # from 4.6 on, and DragonFly shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; esac ;; gnu*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}${major} ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH hardcode_into_libs=yes ;; hpux9* | hpux10* | hpux11*) # Give a soname corresponding to the major version so that dld.sl refuses to # link against other versions. version_type=sunos need_lib_prefix=no need_version=no case $host_cpu in ia64*) shrext_cmds='.so' hardcode_into_libs=yes dynamic_linker="$host_os dld.so" shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' if test "X$HPUX_IA64_MODE" = X32; then sys_lib_search_path_spec="/usr/lib/hpux32 /usr/local/lib/hpux32 /usr/local/lib" else sys_lib_search_path_spec="/usr/lib/hpux64 /usr/local/lib/hpux64" fi sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; hppa*64*) shrext_cmds='.sl' hardcode_into_libs=yes dynamic_linker="$host_os dld.sl" shlibpath_var=LD_LIBRARY_PATH # How should we handle SHLIB_PATH shlibpath_overrides_runpath=yes # Unless +noenvvar is specified. library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' sys_lib_search_path_spec="/usr/lib/pa20_64 /usr/ccs/lib/pa20_64" sys_lib_dlsearch_path_spec=$sys_lib_search_path_spec ;; *) shrext_cmds='.sl' dynamic_linker="$host_os dld.sl" shlibpath_var=SHLIB_PATH shlibpath_overrides_runpath=no # +s is required to enable SHLIB_PATH library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' ;; esac # HP-UX runs *really* slowly unless shared libraries are mode 555. postinstall_cmds='chmod 555 $lib' ;; interix[3-9]*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='Interix 3.x ld.so.1 (PE, like ELF)' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; irix5* | irix6* | nonstopux*) case $host_os in nonstopux*) version_type=nonstopux ;; *) if test "$lt_cv_prog_gnu_ld" = yes; then version_type=linux else version_type=irix fi ;; esac need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${release}${shared_ext} $libname${shared_ext}' case $host_os in irix5* | nonstopux*) libsuff= shlibsuff= ;; *) case $LD in # libtool.m4 will add one of these switches to LD *-32|*"-32 "|*-melf32bsmip|*"-melf32bsmip ") libsuff= shlibsuff= libmagic=32-bit;; *-n32|*"-n32 "|*-melf32bmipn32|*"-melf32bmipn32 ") libsuff=32 shlibsuff=N32 libmagic=N32;; *-64|*"-64 "|*-melf64bmip|*"-melf64bmip ") libsuff=64 shlibsuff=64 libmagic=64-bit;; *) libsuff= shlibsuff= libmagic=never-match;; esac ;; esac shlibpath_var=LD_LIBRARY${shlibsuff}_PATH shlibpath_overrides_runpath=no sys_lib_search_path_spec="/usr/lib${libsuff} /lib${libsuff} /usr/local/lib${libsuff}" sys_lib_dlsearch_path_spec="/usr/lib${libsuff} /lib${libsuff}" hardcode_into_libs=yes ;; # No shared lib support for Linux oldld, aout, or coff. linux*oldld* | linux*aout* | linux*coff*) dynamic_linker=no ;; # This must be Linux ELF. linux* | k*bsd*-gnu | kopensolaris*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' finish_cmds='PATH="\$PATH:/sbin" ldconfig -n $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no # Some binutils ld are patched to set DT_RUNPATH save_LDFLAGS=$LDFLAGS save_libdir=$libdir eval "libdir=/foo; wl=\"$lt_prog_compiler_wl_CXX\"; \ LDFLAGS=\"\$LDFLAGS $hardcode_libdir_flag_spec_CXX\"" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ int main () { ; return 0; } _ACEOF if ac_fn_cxx_try_link "$LINENO"; then : if ($OBJDUMP -p conftest$ac_exeext) 2>/dev/null | grep "RUNPATH.*$libdir" >/dev/null; then : shlibpath_overrides_runpath=yes fi fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LDFLAGS=$save_LDFLAGS libdir=$save_libdir # This implies no fast_install, which is unacceptable. # Some rework will be needed to allow for fast_install # before this can be enabled. hardcode_into_libs=yes # Append ld.so.conf contents to the search path if test -f /etc/ld.so.conf; then lt_ld_extra=`awk '/^include / { system(sprintf("cd /etc; cat %s 2>/dev/null", \$2)); skip = 1; } { if (!skip) print \$0; skip = 0; }' < /etc/ld.so.conf | $SED -e 's/#.*//;/^[ ]*hwcap[ ]/d;s/[:, ]/ /g;s/=[^=]*$//;s/=[^= ]* / /g;/^$/d' | tr '\n' ' '` sys_lib_dlsearch_path_spec="/lib /usr/lib $lt_ld_extra" fi # We used to test for /lib/ld.so.1 and disable shared libraries on # powerpc, because MkLinux only supported shared libraries with the # GNU dynamic linker. Since this was broken with cross compilers, # most powerpc-linux boxes support dynamic linking these days and # people can always --disable-shared, the test was removed, and we # assume the GNU/Linux dynamic linker is in use. dynamic_linker='GNU/Linux ld.so' ;; netbsdelf*-gnu) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='NetBSD ld.elf_so' ;; netbsd*) version_type=sunos need_lib_prefix=no need_version=no if echo __ELF__ | $CC -E - | $GREP __ELF__ >/dev/null; then library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' dynamic_linker='NetBSD (a.out) ld.so' else library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major ${libname}${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' dynamic_linker='NetBSD ld.elf_so' fi shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes ;; newsos6) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes ;; *nto* | *qnx*) version_type=qnx need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes dynamic_linker='ldqnx.so' ;; openbsd*) version_type=sunos sys_lib_dlsearch_path_spec="/usr/lib" need_lib_prefix=no # Some older versions of OpenBSD (3.3 at least) *do* need versioned libs. case $host_os in openbsd3.3 | openbsd3.3.*) need_version=yes ;; *) need_version=no ;; esac library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/sbin" ldconfig -m $libdir' shlibpath_var=LD_LIBRARY_PATH if test -z "`echo __ELF__ | $CC -E - | $GREP __ELF__`" || test "$host_os-$host_cpu" = "openbsd2.8-powerpc"; then case $host_os in openbsd2.[89] | openbsd2.[89].*) shlibpath_overrides_runpath=no ;; *) shlibpath_overrides_runpath=yes ;; esac else shlibpath_overrides_runpath=yes fi ;; os2*) libname_spec='$name' shrext_cmds=".dll" need_lib_prefix=no library_names_spec='$libname${shared_ext} $libname.a' dynamic_linker='OS/2 ld.exe' shlibpath_var=LIBPATH ;; osf3* | osf4* | osf5*) version_type=osf need_lib_prefix=no need_version=no soname_spec='${libname}${release}${shared_ext}$major' library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH sys_lib_search_path_spec="/usr/shlib /usr/ccs/lib /usr/lib/cmplrs/cc /usr/lib /usr/local/lib /var/shlib" sys_lib_dlsearch_path_spec="$sys_lib_search_path_spec" ;; rdos*) dynamic_linker=no ;; solaris*) version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes # ldd complains unless libraries are executable postinstall_cmds='chmod +x $lib' ;; sunos4*) version_type=sunos library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${shared_ext}$versuffix' finish_cmds='PATH="\$PATH:/usr/etc" ldconfig $libdir' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes if test "$with_gnu_ld" = yes; then need_lib_prefix=no fi need_version=yes ;; sysv4 | sysv4.3*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH case $host_vendor in sni) shlibpath_overrides_runpath=no need_lib_prefix=no runpath_var=LD_RUN_PATH ;; siemens) need_lib_prefix=no ;; motorola) need_lib_prefix=no need_version=no shlibpath_overrides_runpath=no sys_lib_search_path_spec='/lib /usr/lib /usr/ccs/lib' ;; esac ;; sysv4*MP*) if test -d /usr/nec ;then version_type=linux library_names_spec='$libname${shared_ext}.$versuffix $libname${shared_ext}.$major $libname${shared_ext}' soname_spec='$libname${shared_ext}.$major' shlibpath_var=LD_LIBRARY_PATH fi ;; sysv5* | sco3.2v5* | sco5v6* | unixware* | OpenUNIX* | sysv4*uw2*) version_type=freebsd-elf need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext} $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=yes hardcode_into_libs=yes if test "$with_gnu_ld" = yes; then sys_lib_search_path_spec='/usr/local/lib /usr/gnu/lib /usr/ccs/lib /usr/lib /lib' else sys_lib_search_path_spec='/usr/ccs/lib /usr/lib' case $host_os in sco3.2v5*) sys_lib_search_path_spec="$sys_lib_search_path_spec /lib" ;; esac fi sys_lib_dlsearch_path_spec='/usr/lib' ;; tpf*) # TPF is a cross-target only. Preferred cross-host = GNU/Linux. version_type=linux need_lib_prefix=no need_version=no library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' shlibpath_var=LD_LIBRARY_PATH shlibpath_overrides_runpath=no hardcode_into_libs=yes ;; uts4*) version_type=linux library_names_spec='${libname}${release}${shared_ext}$versuffix ${libname}${release}${shared_ext}$major $libname${shared_ext}' soname_spec='${libname}${release}${shared_ext}$major' shlibpath_var=LD_LIBRARY_PATH ;; *) dynamic_linker=no ;; esac { $as_echo "$as_me:${as_lineno-$LINENO}: result: $dynamic_linker" >&5 $as_echo "$dynamic_linker" >&6; } test "$dynamic_linker" = no && can_build_shared=no variables_saved_for_relink="PATH $shlibpath_var $runpath_var" if test "$GCC" = yes; then variables_saved_for_relink="$variables_saved_for_relink GCC_EXEC_PREFIX COMPILER_PATH LIBRARY_PATH" fi if test "${lt_cv_sys_lib_search_path_spec+set}" = set; then sys_lib_search_path_spec="$lt_cv_sys_lib_search_path_spec" fi if test "${lt_cv_sys_lib_dlsearch_path_spec+set}" = set; then sys_lib_dlsearch_path_spec="$lt_cv_sys_lib_dlsearch_path_spec" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking how to hardcode library paths into programs" >&5 $as_echo_n "checking how to hardcode library paths into programs... " >&6; } hardcode_action_CXX= if test -n "$hardcode_libdir_flag_spec_CXX" || test -n "$runpath_var_CXX" || test "X$hardcode_automatic_CXX" = "Xyes" ; then # We can hardcode non-existent directories. if test "$hardcode_direct_CXX" != no && # If the only mechanism to avoid hardcoding is shlibpath_var, we # have to relink, otherwise we might link with an installed library # when we should be linking with a yet-to-be-installed one ## test "$_LT_TAGVAR(hardcode_shlibpath_var, CXX)" != no && test "$hardcode_minus_L_CXX" != no; then # Linking always hardcodes the temporary library directory. hardcode_action_CXX=relink else # We can link without hardcoding, and we can hardcode nonexisting dirs. hardcode_action_CXX=immediate fi else # We cannot hardcode anything, or else we can only hardcode existing # directories. hardcode_action_CXX=unsupported fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $hardcode_action_CXX" >&5 $as_echo "$hardcode_action_CXX" >&6; } if test "$hardcode_action_CXX" = relink || test "$inherit_rpath_CXX" = yes; then # Fast installation is not supported enable_fast_install=no elif test "$shlibpath_overrides_runpath" = yes || test "$enable_shared" = no; then # Fast installation is not necessary enable_fast_install=needless fi fi # test -n "$compiler" CC=$lt_save_CC LDCXX=$LD LD=$lt_save_LD GCC=$lt_save_GCC with_gnu_ld=$lt_save_with_gnu_ld lt_cv_path_LDCXX=$lt_cv_path_LD lt_cv_path_LD=$lt_save_path_LD lt_cv_prog_gnu_ldcxx=$lt_cv_prog_gnu_ld lt_cv_prog_gnu_ld=$lt_save_with_gnu_ld fi # test "$_lt_caught_CXX_error" != yes ac_ext=c ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu ac_config_commands="$ac_config_commands libtool" # Only expand once: for ac_header in alsa/asoundlib.h pulse/simple.h portaudio.h do : as_ac_Header=`$as_echo "ac_cv_header_$ac_header" | $as_tr_sh` ac_fn_c_check_header_mongrel "$LINENO" "$ac_header" "$as_ac_Header" "$ac_includes_default" if eval test \"x\$"$as_ac_Header"\" = x"yes"; then : cat >>confdefs.h <<_ACEOF #define `$as_echo "HAVE_$ac_header" | $as_tr_cpp` 1 _ACEOF fi done { $as_echo "$as_me:${as_lineno-$LINENO}: checking for snd_pcm_open in -lasound" >&5 $as_echo_n "checking for snd_pcm_open in -lasound... " >&6; } if test "${ac_cv_lib_asound_snd_pcm_open+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lasound $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char snd_pcm_open (); int main () { return snd_pcm_open (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_asound_snd_pcm_open=yes else ac_cv_lib_asound_snd_pcm_open=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_asound_snd_pcm_open" >&5 $as_echo "$ac_cv_lib_asound_snd_pcm_open" >&6; } if test "x$ac_cv_lib_asound_snd_pcm_open" = x""yes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LIBASOUND 1 _ACEOF LIBS="-lasound $LIBS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for pa_simple_new in -lpulse-simple" >&5 $as_echo_n "checking for pa_simple_new in -lpulse-simple... " >&6; } if test "${ac_cv_lib_pulse_simple_pa_simple_new+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lpulse-simple $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char pa_simple_new (); int main () { return pa_simple_new (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_pulse_simple_pa_simple_new=yes else ac_cv_lib_pulse_simple_pa_simple_new=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_pulse_simple_pa_simple_new" >&5 $as_echo "$ac_cv_lib_pulse_simple_pa_simple_new" >&6; } if test "x$ac_cv_lib_pulse_simple_pa_simple_new" = x""yes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LIBPULSE_SIMPLE 1 _ACEOF LIBS="-lpulse-simple $LIBS" fi { $as_echo "$as_me:${as_lineno-$LINENO}: checking for Pa_Initialize in -lportaudio" >&5 $as_echo_n "checking for Pa_Initialize in -lportaudio... " >&6; } if test "${ac_cv_lib_portaudio_Pa_Initialize+set}" = set; then : $as_echo_n "(cached) " >&6 else ac_check_lib_save_LIBS=$LIBS LIBS="-lportaudio $LIBS" cat confdefs.h - <<_ACEOF >conftest.$ac_ext /* end confdefs.h. */ /* Override any GCC internal prototype to avoid an error. Use char because int might match the return type of a GCC builtin and then its argument prototype would still apply. */ #ifdef __cplusplus extern "C" #endif char Pa_Initialize (); int main () { return Pa_Initialize (); ; return 0; } _ACEOF if ac_fn_c_try_link "$LINENO"; then : ac_cv_lib_portaudio_Pa_Initialize=yes else ac_cv_lib_portaudio_Pa_Initialize=no fi rm -f core conftest.err conftest.$ac_objext \ conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_cv_lib_portaudio_Pa_Initialize" >&5 $as_echo "$ac_cv_lib_portaudio_Pa_Initialize" >&6; } if test "x$ac_cv_lib_portaudio_Pa_Initialize" = x""yes; then : cat >>confdefs.h <<_ACEOF #define HAVE_LIBPORTAUDIO 1 _ACEOF LIBS="-lportaudio $LIBS" fi if test "x$ac_cv_env_PKG_CONFIG_set" != "xset"; then if test -n "$ac_tool_prefix"; then # Extract the first word of "${ac_tool_prefix}pkg-config", so it can be a program name with args. set dummy ${ac_tool_prefix}pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_path_PKG_CONFIG+set}" = set; then : $as_echo_n "(cached) " >&6 else case $PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_PKG_CONFIG="$PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi PKG_CONFIG=$ac_cv_path_PKG_CONFIG if test -n "$PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $PKG_CONFIG" >&5 $as_echo "$PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi fi if test -z "$ac_cv_path_PKG_CONFIG"; then ac_pt_PKG_CONFIG=$PKG_CONFIG # Extract the first word of "pkg-config", so it can be a program name with args. set dummy pkg-config; ac_word=$2 { $as_echo "$as_me:${as_lineno-$LINENO}: checking for $ac_word" >&5 $as_echo_n "checking for $ac_word... " >&6; } if test "${ac_cv_path_ac_pt_PKG_CONFIG+set}" = set; then : $as_echo_n "(cached) " >&6 else case $ac_pt_PKG_CONFIG in [\\/]* | ?:[\\/]*) ac_cv_path_ac_pt_PKG_CONFIG="$ac_pt_PKG_CONFIG" # Let the user override the test with a path. ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. for ac_exec_ext in '' $ac_executable_extensions; do if { test -f "$as_dir/$ac_word$ac_exec_ext" && $as_test_x "$as_dir/$ac_word$ac_exec_ext"; }; then ac_cv_path_ac_pt_PKG_CONFIG="$as_dir/$ac_word$ac_exec_ext" $as_echo "$as_me:${as_lineno-$LINENO}: found $as_dir/$ac_word$ac_exec_ext" >&5 break 2 fi done done IFS=$as_save_IFS ;; esac fi ac_pt_PKG_CONFIG=$ac_cv_path_ac_pt_PKG_CONFIG if test -n "$ac_pt_PKG_CONFIG"; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: $ac_pt_PKG_CONFIG" >&5 $as_echo "$ac_pt_PKG_CONFIG" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } fi if test "x$ac_pt_PKG_CONFIG" = x; then PKG_CONFIG="" else case $cross_compiling:$ac_tool_warned in yes:) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: using cross tools not prefixed with host triplet" >&5 $as_echo "$as_me: WARNING: using cross tools not prefixed with host triplet" >&2;} ac_tool_warned=yes ;; esac PKG_CONFIG=$ac_pt_PKG_CONFIG fi else PKG_CONFIG="$ac_cv_path_PKG_CONFIG" fi fi if test -n "$PKG_CONFIG"; then _pkg_min_version=0.9.0 { $as_echo "$as_me:${as_lineno-$LINENO}: checking pkg-config is at least version $_pkg_min_version" >&5 $as_echo_n "checking pkg-config is at least version $_pkg_min_version... " >&6; } if $PKG_CONFIG --atleast-pkgconfig-version $_pkg_min_version; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } else { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } PKG_CONFIG="" fi fi pkg_failed=no { $as_echo "$as_me:${as_lineno-$LINENO}: checking for SDL" >&5 $as_echo_n "checking for SDL... " >&6; } if test -n "$SDL_CFLAGS"; then pkg_cv_SDL_CFLAGS="$SDL_CFLAGS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"sdl\""; } >&5 ($PKG_CONFIG --exists --print-errors "sdl") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_SDL_CFLAGS=`$PKG_CONFIG --cflags "sdl" 2>/dev/null` else pkg_failed=yes fi else pkg_failed=untried fi if test -n "$SDL_LIBS"; then pkg_cv_SDL_LIBS="$SDL_LIBS" elif test -n "$PKG_CONFIG"; then if test -n "$PKG_CONFIG" && \ { { $as_echo "$as_me:${as_lineno-$LINENO}: \$PKG_CONFIG --exists --print-errors \"sdl\""; } >&5 ($PKG_CONFIG --exists --print-errors "sdl") 2>&5 ac_status=$? $as_echo "$as_me:${as_lineno-$LINENO}: \$? = $ac_status" >&5 test $ac_status = 0; }; then pkg_cv_SDL_LIBS=`$PKG_CONFIG --libs "sdl" 2>/dev/null` else pkg_failed=yes fi else pkg_failed=untried fi if test $pkg_failed = yes; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } if $PKG_CONFIG --atleast-pkgconfig-version 0.20; then _pkg_short_errors_supported=yes else _pkg_short_errors_supported=no fi if test $_pkg_short_errors_supported = yes; then SDL_PKG_ERRORS=`$PKG_CONFIG --short-errors --print-errors "sdl" 2>&1` else SDL_PKG_ERRORS=`$PKG_CONFIG --print-errors "sdl" 2>&1` fi # Put the nasty error message in config.log where it belongs echo "$SDL_PKG_ERRORS" >&5 as_fn_error $? "Package requirements (sdl) were not met: $SDL_PKG_ERRORS Consider adjusting the PKG_CONFIG_PATH environment variable if you installed software in a non-standard prefix. Alternatively, you may set the environment variables SDL_CFLAGS and SDL_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details." "$LINENO" 5 elif test $pkg_failed = untried; then { $as_echo "$as_me:${as_lineno-$LINENO}: result: no" >&5 $as_echo "no" >&6; } { { $as_echo "$as_me:${as_lineno-$LINENO}: error: in \`$ac_pwd':" >&5 $as_echo "$as_me: error: in \`$ac_pwd':" >&2;} as_fn_error $? "The pkg-config script could not be found or is too old. Make sure it is in your PATH or set the PKG_CONFIG environment variable to the full path to pkg-config. Alternatively, you may set the environment variables SDL_CFLAGS and SDL_LIBS to avoid the need to call pkg-config. See the pkg-config man page for more details. To get pkg-config, see . See \`config.log' for more details" "$LINENO" 5 ; } else SDL_CFLAGS=$pkg_cv_SDL_CFLAGS SDL_LIBS=$pkg_cv_SDL_LIBS { $as_echo "$as_me:${as_lineno-$LINENO}: result: yes" >&5 $as_echo "yes" >&6; } fi ac_config_files="$ac_config_files Makefile src/Makefile" cat >confcache <<\_ACEOF # This file is a shell script that caches the results of configure # tests run on this system so they can be shared between configure # scripts and configure runs, see configure's option --config-cache. # It is not useful on other systems. If it contains results you don't # want to keep, you may remove or edit it. # # config.status only pays attention to the cache file if you give it # the --recheck option to rerun configure. # # `ac_cv_env_foo' variables (set or unset) will be overridden when # loading this file, other *unset* `ac_cv_foo' will be assigned the # following values. _ACEOF # The following way of writing the cache mishandles newlines in values, # but we know of no workaround that is simple, portable, and efficient. # So, we kill variables containing newlines. # Ultrix sh set writes to stderr and can't be redirected directly, # and sets the high bit in the cache file unless we assign to the vars. ( for ac_var in `(set) 2>&1 | sed -n 's/^\([a-zA-Z_][a-zA-Z0-9_]*\)=.*/\1/p'`; do eval ac_val=\$$ac_var case $ac_val in #( *${as_nl}*) case $ac_var in #( *_cv_*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: cache variable $ac_var contains a newline" >&5 $as_echo "$as_me: WARNING: cache variable $ac_var contains a newline" >&2;} ;; esac case $ac_var in #( _ | IFS | as_nl) ;; #( BASH_ARGV | BASH_SOURCE) eval $ac_var= ;; #( *) { eval $ac_var=; unset $ac_var;} ;; esac ;; esac done (set) 2>&1 | case $as_nl`(ac_space=' '; set) 2>&1` in #( *${as_nl}ac_space=\ *) # `set' does not quote correctly, so add quotes: double-quote # substitution turns \\\\ into \\, and sed turns \\ into \. sed -n \ "s/'/'\\\\''/g; s/^\\([_$as_cr_alnum]*_cv_[_$as_cr_alnum]*\\)=\\(.*\\)/\\1='\\2'/p" ;; #( *) # `set' quotes correctly as required by POSIX, so do not add quotes. sed -n "/^[_$as_cr_alnum]*_cv_[_$as_cr_alnum]*=/p" ;; esac | sort ) | sed ' /^ac_cv_env_/b end t clear :clear s/^\([^=]*\)=\(.*[{}].*\)$/test "${\1+set}" = set || &/ t end s/^\([^=]*\)=\(.*\)$/\1=${\1=\2}/ :end' >>confcache if diff "$cache_file" confcache >/dev/null 2>&1; then :; else if test -w "$cache_file"; then test "x$cache_file" != "x/dev/null" && { $as_echo "$as_me:${as_lineno-$LINENO}: updating cache $cache_file" >&5 $as_echo "$as_me: updating cache $cache_file" >&6;} cat confcache >$cache_file else { $as_echo "$as_me:${as_lineno-$LINENO}: not updating unwritable cache $cache_file" >&5 $as_echo "$as_me: not updating unwritable cache $cache_file" >&6;} fi fi rm -f confcache test "x$prefix" = xNONE && prefix=$ac_default_prefix # Let make expand exec_prefix. test "x$exec_prefix" = xNONE && exec_prefix='${prefix}' DEFS=-DHAVE_CONFIG_H ac_libobjs= ac_ltlibobjs= U= for ac_i in : $LIBOBJS; do test "x$ac_i" = x: && continue # 1. Remove the extension, and $U if already installed. ac_script='s/\$U\././;s/\.o$//;s/\.obj$//' ac_i=`$as_echo "$ac_i" | sed "$ac_script"` # 2. Prepend LIBOBJDIR. When used with automake>=1.10 LIBOBJDIR # will be set to the directory where LIBOBJS objects are built. as_fn_append ac_libobjs " \${LIBOBJDIR}$ac_i\$U.$ac_objext" as_fn_append ac_ltlibobjs " \${LIBOBJDIR}$ac_i"'$U.lo' done LIBOBJS=$ac_libobjs LTLIBOBJS=$ac_ltlibobjs if test -n "$EXEEXT"; then am__EXEEXT_TRUE= am__EXEEXT_FALSE='#' else am__EXEEXT_TRUE='#' am__EXEEXT_FALSE= fi if test -z "${AMDEP_TRUE}" && test -z "${AMDEP_FALSE}"; then as_fn_error $? "conditional \"AMDEP\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCXX\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCC_TRUE}" && test -z "${am__fastdepCC_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCC\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi if test -z "${am__fastdepCXX_TRUE}" && test -z "${am__fastdepCXX_FALSE}"; then as_fn_error $? "conditional \"am__fastdepCXX\" was never defined. Usually this means the macro was only invoked conditionally." "$LINENO" 5 fi : ${CONFIG_STATUS=./config.status} ac_write_fail=0 ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $CONFIG_STATUS" >&5 $as_echo "$as_me: creating $CONFIG_STATUS" >&6;} as_write_fail=0 cat >$CONFIG_STATUS <<_ASEOF || as_write_fail=1 #! $SHELL # Generated by $as_me. # Run this file to recreate the current configuration. # Compiler output produced by configure, useful for debugging # configure, is in config.log if it exists. debug=false ac_cs_recheck=false ac_cs_silent=false SHELL=\${CONFIG_SHELL-$SHELL} export SHELL _ASEOF cat >>$CONFIG_STATUS <<\_ASEOF || as_write_fail=1 ## -------------------- ## ## M4sh Initialization. ## ## -------------------- ## # Be more Bourne compatible DUALCASE=1; export DUALCASE # for MKS sh if test -n "${ZSH_VERSION+set}" && (emulate sh) >/dev/null 2>&1; then : emulate sh NULLCMD=: # Pre-4.2 versions of Zsh do word splitting on ${1+"$@"}, which # is contrary to our usage. Disable this feature. alias -g '${1+"$@"}'='"$@"' setopt NO_GLOB_SUBST else case `(set -o) 2>/dev/null` in #( *posix*) : set -o posix ;; #( *) : ;; esac fi as_nl=' ' export as_nl # Printing a long string crashes Solaris 7 /usr/bin/printf. as_echo='\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\\' as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo as_echo=$as_echo$as_echo$as_echo$as_echo$as_echo$as_echo # Prefer a ksh shell builtin over an external printf program on Solaris, # but without wasting forks for bash or zsh. if test -z "$BASH_VERSION$ZSH_VERSION" \ && (test "X`print -r -- $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='print -r --' as_echo_n='print -rn --' elif (test "X`printf %s $as_echo`" = "X$as_echo") 2>/dev/null; then as_echo='printf %s\n' as_echo_n='printf %s' else if test "X`(/usr/ucb/echo -n -n $as_echo) 2>/dev/null`" = "X-n $as_echo"; then as_echo_body='eval /usr/ucb/echo -n "$1$as_nl"' as_echo_n='/usr/ucb/echo -n' else as_echo_body='eval expr "X$1" : "X\\(.*\\)"' as_echo_n_body='eval arg=$1; case $arg in #( *"$as_nl"*) expr "X$arg" : "X\\(.*\\)$as_nl"; arg=`expr "X$arg" : ".*$as_nl\\(.*\\)"`;; esac; expr "X$arg" : "X\\(.*\\)" | tr -d "$as_nl" ' export as_echo_n_body as_echo_n='sh -c $as_echo_n_body as_echo' fi export as_echo_body as_echo='sh -c $as_echo_body as_echo' fi # The user is always right. if test "${PATH_SEPARATOR+set}" != set; then PATH_SEPARATOR=: (PATH='/bin;/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 && { (PATH='/bin:/bin'; FPATH=$PATH; sh -c :) >/dev/null 2>&1 || PATH_SEPARATOR=';' } fi # IFS # We need space, tab and new line, in precisely that order. Quoting is # there to prevent editors from complaining about space-tab. # (If _AS_PATH_WALK were called with IFS unset, it would disable word # splitting by setting IFS to empty value.) IFS=" "" $as_nl" # Find who we are. Look in the path if we contain no directory separator. case $0 in #(( *[\\/]* ) as_myself=$0 ;; *) as_save_IFS=$IFS; IFS=$PATH_SEPARATOR for as_dir in $PATH do IFS=$as_save_IFS test -z "$as_dir" && as_dir=. test -r "$as_dir/$0" && as_myself=$as_dir/$0 && break done IFS=$as_save_IFS ;; esac # We did not find ourselves, most probably we were run as `sh COMMAND' # in which case we are not to be found in the path. if test "x$as_myself" = x; then as_myself=$0 fi if test ! -f "$as_myself"; then $as_echo "$as_myself: error: cannot find myself; rerun with an absolute file name" >&2 exit 1 fi # Unset variables that we do not need and which cause bugs (e.g. in # pre-3.0 UWIN ksh). But do not cause bugs in bash 2.01; the "|| exit 1" # suppresses any "Segmentation fault" message there. '((' could # trigger a bug in pdksh 5.2.14. for as_var in BASH_ENV ENV MAIL MAILPATH do eval test x\${$as_var+set} = xset \ && ( (unset $as_var) || exit 1) >/dev/null 2>&1 && unset $as_var || : done PS1='$ ' PS2='> ' PS4='+ ' # NLS nuisances. LC_ALL=C export LC_ALL LANGUAGE=C export LANGUAGE # CDPATH. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH # as_fn_error STATUS ERROR [LINENO LOG_FD] # ---------------------------------------- # Output "`basename $0`: error: ERROR" to stderr. If LINENO and LOG_FD are # provided, also output the error to LOG_FD, referencing LINENO. Then exit the # script with STATUS, using 1 if that was 0. as_fn_error () { as_status=$1; test $as_status -eq 0 && as_status=1 if test "$4"; then as_lineno=${as_lineno-"$3"} as_lineno_stack=as_lineno_stack=$as_lineno_stack $as_echo "$as_me:${as_lineno-$LINENO}: error: $2" >&$4 fi $as_echo "$as_me: error: $2" >&2 as_fn_exit $as_status } # as_fn_error # as_fn_set_status STATUS # ----------------------- # Set $? to STATUS, without forking. as_fn_set_status () { return $1 } # as_fn_set_status # as_fn_exit STATUS # ----------------- # Exit the shell with STATUS, even in a "trap 0" or "set -e" context. as_fn_exit () { set +e as_fn_set_status $1 exit $1 } # as_fn_exit # as_fn_unset VAR # --------------- # Portably unset VAR. as_fn_unset () { { eval $1=; unset $1;} } as_unset=as_fn_unset # as_fn_append VAR VALUE # ---------------------- # Append the text in VALUE to the end of the definition contained in VAR. Take # advantage of any shell optimizations that allow amortized linear growth over # repeated appends, instead of the typical quadratic growth present in naive # implementations. if (eval "as_var=1; as_var+=2; test x\$as_var = x12") 2>/dev/null; then : eval 'as_fn_append () { eval $1+=\$2 }' else as_fn_append () { eval $1=\$$1\$2 } fi # as_fn_append # as_fn_arith ARG... # ------------------ # Perform arithmetic evaluation on the ARGs, and store the result in the # global $as_val. Take advantage of shells that can avoid forks. The arguments # must be portable across $(()) and expr. if (eval "test \$(( 1 + 1 )) = 2") 2>/dev/null; then : eval 'as_fn_arith () { as_val=$(( $* )) }' else as_fn_arith () { as_val=`expr "$@" || test $? -eq 1` } fi # as_fn_arith if expr a : '\(a\)' >/dev/null 2>&1 && test "X`expr 00001 : '.*\(...\)'`" = X001; then as_expr=expr else as_expr=false fi if (basename -- /) >/dev/null 2>&1 && test "X`basename -- / 2>&1`" = "X/"; then as_basename=basename else as_basename=false fi if (as_dir=`dirname -- /` && test "X$as_dir" = X/) >/dev/null 2>&1; then as_dirname=dirname else as_dirname=false fi as_me=`$as_basename -- "$0" || $as_expr X/"$0" : '.*/\([^/][^/]*\)/*$' \| \ X"$0" : 'X\(//\)$' \| \ X"$0" : 'X\(/\)' \| . 2>/dev/null || $as_echo X/"$0" | sed '/^.*\/\([^/][^/]*\)\/*$/{ s//\1/ q } /^X\/\(\/\/\)$/{ s//\1/ q } /^X\/\(\/\).*/{ s//\1/ q } s/.*/./; q'` # Avoid depending upon Character Ranges. as_cr_letters='abcdefghijklmnopqrstuvwxyz' as_cr_LETTERS='ABCDEFGHIJKLMNOPQRSTUVWXYZ' as_cr_Letters=$as_cr_letters$as_cr_LETTERS as_cr_digits='0123456789' as_cr_alnum=$as_cr_Letters$as_cr_digits ECHO_C= ECHO_N= ECHO_T= case `echo -n x` in #((((( -n*) case `echo 'xy\c'` in *c*) ECHO_T=' ';; # ECHO_T is single tab character. xy) ECHO_C='\c';; *) echo `echo ksh88 bug on AIX 6.1` > /dev/null ECHO_T=' ';; esac;; *) ECHO_N='-n';; esac rm -f conf$$ conf$$.exe conf$$.file if test -d conf$$.dir; then rm -f conf$$.dir/conf$$.file else rm -f conf$$.dir mkdir conf$$.dir 2>/dev/null fi if (echo >conf$$.file) 2>/dev/null; then if ln -s conf$$.file conf$$ 2>/dev/null; then as_ln_s='ln -s' # ... but there are two gotchas: # 1) On MSYS, both `ln -s file dir' and `ln file dir' fail. # 2) DJGPP < 2.04 has no symlinks; `ln -s' creates a wrapper executable. # In both cases, we have to default to `cp -p'. ln -s conf$$.file conf$$.dir 2>/dev/null && test ! -f conf$$.exe || as_ln_s='cp -p' elif ln conf$$.file conf$$ 2>/dev/null; then as_ln_s=ln else as_ln_s='cp -p' fi else as_ln_s='cp -p' fi rm -f conf$$ conf$$.exe conf$$.dir/conf$$.file conf$$.file rmdir conf$$.dir 2>/dev/null # as_fn_mkdir_p # ------------- # Create "$as_dir" as a directory, including parents if necessary. as_fn_mkdir_p () { case $as_dir in #( -*) as_dir=./$as_dir;; esac test -d "$as_dir" || eval $as_mkdir_p || { as_dirs= while :; do case $as_dir in #( *\'*) as_qdir=`$as_echo "$as_dir" | sed "s/'/'\\\\\\\\''/g"`;; #'( *) as_qdir=$as_dir;; esac as_dirs="'$as_qdir' $as_dirs" as_dir=`$as_dirname -- "$as_dir" || $as_expr X"$as_dir" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$as_dir" : 'X\(//\)[^/]' \| \ X"$as_dir" : 'X\(//\)$' \| \ X"$as_dir" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$as_dir" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` test -d "$as_dir" && break done test -z "$as_dirs" || eval "mkdir $as_dirs" } || test -d "$as_dir" || as_fn_error $? "cannot create directory $as_dir" } # as_fn_mkdir_p if mkdir -p . 2>/dev/null; then as_mkdir_p='mkdir -p "$as_dir"' else test -d ./-p && rmdir ./-p as_mkdir_p=false fi if test -x / >/dev/null 2>&1; then as_test_x='test -x' else if ls -dL / >/dev/null 2>&1; then as_ls_L_option=L else as_ls_L_option= fi as_test_x=' eval sh -c '\'' if test -d "$1"; then test -d "$1/."; else case $1 in #( -*)set "./$1";; esac; case `ls -ld'$as_ls_L_option' "$1" 2>/dev/null` in #(( ???[sx]*):;;*)false;;esac;fi '\'' sh ' fi as_executable_p=$as_test_x # Sed expression to map a string onto a valid CPP name. as_tr_cpp="eval sed 'y%*$as_cr_letters%P$as_cr_LETTERS%;s%[^_$as_cr_alnum]%_%g'" # Sed expression to map a string onto a valid variable name. as_tr_sh="eval sed 'y%*+%pp%;s%[^_$as_cr_alnum]%_%g'" exec 6>&1 ## ----------------------------------- ## ## Main body of $CONFIG_STATUS script. ## ## ----------------------------------- ## _ASEOF test $as_write_fail = 0 && chmod +x $CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Save the log message, to keep $0 and so on meaningful, and to # report actual input values of CONFIG_FILES etc. instead of their # values after options handling. ac_log=" This file was extended by fische $as_me 3.2, which was generated by GNU Autoconf 2.67. Invocation command line was CONFIG_FILES = $CONFIG_FILES CONFIG_HEADERS = $CONFIG_HEADERS CONFIG_LINKS = $CONFIG_LINKS CONFIG_COMMANDS = $CONFIG_COMMANDS $ $0 $@ on `(hostname || uname -n) 2>/dev/null | sed 1q` " _ACEOF case $ac_config_files in *" "*) set x $ac_config_files; shift; ac_config_files=$*;; esac case $ac_config_headers in *" "*) set x $ac_config_headers; shift; ac_config_headers=$*;; esac cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # Files that config.status was made for. config_files="$ac_config_files" config_headers="$ac_config_headers" config_commands="$ac_config_commands" _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 ac_cs_usage="\ \`$as_me' instantiates files and other configuration actions from templates according to the current configuration. Unless the files and actions are specified as TAGs, all are instantiated by default. Usage: $0 [OPTION]... [TAG]... -h, --help print this help, then exit -V, --version print version number and configuration settings, then exit --config print configuration, then exit -q, --quiet, --silent do not print progress messages -d, --debug don't remove temporary files --recheck update $as_me by reconfiguring in the same conditions --file=FILE[:TEMPLATE] instantiate the configuration file FILE --header=FILE[:TEMPLATE] instantiate the configuration header FILE Configuration files: $config_files Configuration headers: $config_headers Configuration commands: $config_commands Report bugs to the package provider." _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_cs_config="`$as_echo "$ac_configure_args" | sed 's/^ //; s/[\\""\`\$]/\\\\&/g'`" ac_cs_version="\\ fische config.status 3.2 configured by $0, generated by GNU Autoconf 2.67, with options \\"\$ac_cs_config\\" Copyright (C) 2010 Free Software Foundation, Inc. This config.status script is free software; the Free Software Foundation gives unlimited permission to copy, distribute and modify it." ac_pwd='$ac_pwd' srcdir='$srcdir' INSTALL='$INSTALL' MKDIR_P='$MKDIR_P' AWK='$AWK' test -n "\$AWK" || AWK=awk _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # The default lists apply if the user does not specify any file. ac_need_defaults=: while test $# != 0 do case $1 in --*=?*) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg=`expr "X$1" : 'X[^=]*=\(.*\)'` ac_shift=: ;; --*=) ac_option=`expr "X$1" : 'X\([^=]*\)='` ac_optarg= ac_shift=: ;; *) ac_option=$1 ac_optarg=$2 ac_shift=shift ;; esac case $ac_option in # Handling of the options. -recheck | --recheck | --rechec | --reche | --rech | --rec | --re | --r) ac_cs_recheck=: ;; --version | --versio | --versi | --vers | --ver | --ve | --v | -V ) $as_echo "$ac_cs_version"; exit ;; --config | --confi | --conf | --con | --co | --c ) $as_echo "$ac_cs_config"; exit ;; --debug | --debu | --deb | --de | --d | -d ) debug=: ;; --file | --fil | --fi | --f ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; '') as_fn_error $? "missing file argument" ;; esac as_fn_append CONFIG_FILES " '$ac_optarg'" ac_need_defaults=false;; --header | --heade | --head | --hea ) $ac_shift case $ac_optarg in *\'*) ac_optarg=`$as_echo "$ac_optarg" | sed "s/'/'\\\\\\\\''/g"` ;; esac as_fn_append CONFIG_HEADERS " '$ac_optarg'" ac_need_defaults=false;; --he | --h) # Conflict between --help and --header as_fn_error $? "ambiguous option: \`$1' Try \`$0 --help' for more information.";; --help | --hel | -h ) $as_echo "$ac_cs_usage"; exit ;; -q | -quiet | --quiet | --quie | --qui | --qu | --q \ | -silent | --silent | --silen | --sile | --sil | --si | --s) ac_cs_silent=: ;; # This is an error. -*) as_fn_error $? "unrecognized option: \`$1' Try \`$0 --help' for more information." ;; *) as_fn_append ac_config_targets " $1" ac_need_defaults=false ;; esac shift done ac_configure_extra_args= if $ac_cs_silent; then exec 6>/dev/null ac_configure_extra_args="$ac_configure_extra_args --silent" fi _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 if \$ac_cs_recheck; then set X '$SHELL' '$0' $ac_configure_args \$ac_configure_extra_args --no-create --no-recursion shift \$as_echo "running CONFIG_SHELL=$SHELL \$*" >&6 CONFIG_SHELL='$SHELL' export CONFIG_SHELL exec "\$@" fi _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 exec 5>>config.log { echo sed 'h;s/./-/g;s/^.../## /;s/...$/ ##/;p;x;p;x' <<_ASBOX ## Running $as_me. ## _ASBOX $as_echo "$ac_log" } >&5 _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 # # INIT-COMMANDS # AMDEP_TRUE="$AMDEP_TRUE" ac_aux_dir="$ac_aux_dir" # The HP-UX ksh and POSIX shell print the target directory to stdout # if CDPATH is set. (unset CDPATH) >/dev/null 2>&1 && unset CDPATH sed_quote_subst='$sed_quote_subst' double_quote_subst='$double_quote_subst' delay_variable_subst='$delay_variable_subst' macro_version='`$ECHO "X$macro_version" | $Xsed -e "$delay_single_quote_subst"`' macro_revision='`$ECHO "X$macro_revision" | $Xsed -e "$delay_single_quote_subst"`' enable_shared='`$ECHO "X$enable_shared" | $Xsed -e "$delay_single_quote_subst"`' enable_static='`$ECHO "X$enable_static" | $Xsed -e "$delay_single_quote_subst"`' pic_mode='`$ECHO "X$pic_mode" | $Xsed -e "$delay_single_quote_subst"`' enable_fast_install='`$ECHO "X$enable_fast_install" | $Xsed -e "$delay_single_quote_subst"`' host_alias='`$ECHO "X$host_alias" | $Xsed -e "$delay_single_quote_subst"`' host='`$ECHO "X$host" | $Xsed -e "$delay_single_quote_subst"`' host_os='`$ECHO "X$host_os" | $Xsed -e "$delay_single_quote_subst"`' build_alias='`$ECHO "X$build_alias" | $Xsed -e "$delay_single_quote_subst"`' build='`$ECHO "X$build" | $Xsed -e "$delay_single_quote_subst"`' build_os='`$ECHO "X$build_os" | $Xsed -e "$delay_single_quote_subst"`' SED='`$ECHO "X$SED" | $Xsed -e "$delay_single_quote_subst"`' Xsed='`$ECHO "X$Xsed" | $Xsed -e "$delay_single_quote_subst"`' GREP='`$ECHO "X$GREP" | $Xsed -e "$delay_single_quote_subst"`' EGREP='`$ECHO "X$EGREP" | $Xsed -e "$delay_single_quote_subst"`' FGREP='`$ECHO "X$FGREP" | $Xsed -e "$delay_single_quote_subst"`' LD='`$ECHO "X$LD" | $Xsed -e "$delay_single_quote_subst"`' NM='`$ECHO "X$NM" | $Xsed -e "$delay_single_quote_subst"`' LN_S='`$ECHO "X$LN_S" | $Xsed -e "$delay_single_quote_subst"`' max_cmd_len='`$ECHO "X$max_cmd_len" | $Xsed -e "$delay_single_quote_subst"`' ac_objext='`$ECHO "X$ac_objext" | $Xsed -e "$delay_single_quote_subst"`' exeext='`$ECHO "X$exeext" | $Xsed -e "$delay_single_quote_subst"`' lt_unset='`$ECHO "X$lt_unset" | $Xsed -e "$delay_single_quote_subst"`' lt_SP2NL='`$ECHO "X$lt_SP2NL" | $Xsed -e "$delay_single_quote_subst"`' lt_NL2SP='`$ECHO "X$lt_NL2SP" | $Xsed -e "$delay_single_quote_subst"`' reload_flag='`$ECHO "X$reload_flag" | $Xsed -e "$delay_single_quote_subst"`' reload_cmds='`$ECHO "X$reload_cmds" | $Xsed -e "$delay_single_quote_subst"`' OBJDUMP='`$ECHO "X$OBJDUMP" | $Xsed -e "$delay_single_quote_subst"`' deplibs_check_method='`$ECHO "X$deplibs_check_method" | $Xsed -e "$delay_single_quote_subst"`' file_magic_cmd='`$ECHO "X$file_magic_cmd" | $Xsed -e "$delay_single_quote_subst"`' AR='`$ECHO "X$AR" | $Xsed -e "$delay_single_quote_subst"`' AR_FLAGS='`$ECHO "X$AR_FLAGS" | $Xsed -e "$delay_single_quote_subst"`' STRIP='`$ECHO "X$STRIP" | $Xsed -e "$delay_single_quote_subst"`' RANLIB='`$ECHO "X$RANLIB" | $Xsed -e "$delay_single_quote_subst"`' old_postinstall_cmds='`$ECHO "X$old_postinstall_cmds" | $Xsed -e "$delay_single_quote_subst"`' old_postuninstall_cmds='`$ECHO "X$old_postuninstall_cmds" | $Xsed -e "$delay_single_quote_subst"`' old_archive_cmds='`$ECHO "X$old_archive_cmds" | $Xsed -e "$delay_single_quote_subst"`' CC='`$ECHO "X$CC" | $Xsed -e "$delay_single_quote_subst"`' CFLAGS='`$ECHO "X$CFLAGS" | $Xsed -e "$delay_single_quote_subst"`' compiler='`$ECHO "X$compiler" | $Xsed -e "$delay_single_quote_subst"`' GCC='`$ECHO "X$GCC" | $Xsed -e "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_pipe='`$ECHO "X$lt_cv_sys_global_symbol_pipe" | $Xsed -e "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_cdecl='`$ECHO "X$lt_cv_sys_global_symbol_to_cdecl" | $Xsed -e "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address='`$ECHO "X$lt_cv_sys_global_symbol_to_c_name_address" | $Xsed -e "$delay_single_quote_subst"`' lt_cv_sys_global_symbol_to_c_name_address_lib_prefix='`$ECHO "X$lt_cv_sys_global_symbol_to_c_name_address_lib_prefix" | $Xsed -e "$delay_single_quote_subst"`' objdir='`$ECHO "X$objdir" | $Xsed -e "$delay_single_quote_subst"`' SHELL='`$ECHO "X$SHELL" | $Xsed -e "$delay_single_quote_subst"`' ECHO='`$ECHO "X$ECHO" | $Xsed -e "$delay_single_quote_subst"`' MAGIC_CMD='`$ECHO "X$MAGIC_CMD" | $Xsed -e "$delay_single_quote_subst"`' lt_prog_compiler_no_builtin_flag='`$ECHO "X$lt_prog_compiler_no_builtin_flag" | $Xsed -e "$delay_single_quote_subst"`' lt_prog_compiler_wl='`$ECHO "X$lt_prog_compiler_wl" | $Xsed -e "$delay_single_quote_subst"`' lt_prog_compiler_pic='`$ECHO "X$lt_prog_compiler_pic" | $Xsed -e "$delay_single_quote_subst"`' lt_prog_compiler_static='`$ECHO "X$lt_prog_compiler_static" | $Xsed -e "$delay_single_quote_subst"`' lt_cv_prog_compiler_c_o='`$ECHO "X$lt_cv_prog_compiler_c_o" | $Xsed -e "$delay_single_quote_subst"`' need_locks='`$ECHO "X$need_locks" | $Xsed -e "$delay_single_quote_subst"`' DSYMUTIL='`$ECHO "X$DSYMUTIL" | $Xsed -e "$delay_single_quote_subst"`' NMEDIT='`$ECHO "X$NMEDIT" | $Xsed -e "$delay_single_quote_subst"`' LIPO='`$ECHO "X$LIPO" | $Xsed -e "$delay_single_quote_subst"`' OTOOL='`$ECHO "X$OTOOL" | $Xsed -e "$delay_single_quote_subst"`' OTOOL64='`$ECHO "X$OTOOL64" | $Xsed -e "$delay_single_quote_subst"`' libext='`$ECHO "X$libext" | $Xsed -e "$delay_single_quote_subst"`' shrext_cmds='`$ECHO "X$shrext_cmds" | $Xsed -e "$delay_single_quote_subst"`' extract_expsyms_cmds='`$ECHO "X$extract_expsyms_cmds" | $Xsed -e "$delay_single_quote_subst"`' archive_cmds_need_lc='`$ECHO "X$archive_cmds_need_lc" | $Xsed -e "$delay_single_quote_subst"`' enable_shared_with_static_runtimes='`$ECHO "X$enable_shared_with_static_runtimes" | $Xsed -e "$delay_single_quote_subst"`' export_dynamic_flag_spec='`$ECHO "X$export_dynamic_flag_spec" | $Xsed -e "$delay_single_quote_subst"`' whole_archive_flag_spec='`$ECHO "X$whole_archive_flag_spec" | $Xsed -e "$delay_single_quote_subst"`' compiler_needs_object='`$ECHO "X$compiler_needs_object" | $Xsed -e "$delay_single_quote_subst"`' old_archive_from_new_cmds='`$ECHO "X$old_archive_from_new_cmds" | $Xsed -e "$delay_single_quote_subst"`' old_archive_from_expsyms_cmds='`$ECHO "X$old_archive_from_expsyms_cmds" | $Xsed -e "$delay_single_quote_subst"`' archive_cmds='`$ECHO "X$archive_cmds" | $Xsed -e "$delay_single_quote_subst"`' archive_expsym_cmds='`$ECHO "X$archive_expsym_cmds" | $Xsed -e "$delay_single_quote_subst"`' module_cmds='`$ECHO "X$module_cmds" | $Xsed -e "$delay_single_quote_subst"`' module_expsym_cmds='`$ECHO "X$module_expsym_cmds" | $Xsed -e "$delay_single_quote_subst"`' with_gnu_ld='`$ECHO "X$with_gnu_ld" | $Xsed -e "$delay_single_quote_subst"`' allow_undefined_flag='`$ECHO "X$allow_undefined_flag" | $Xsed -e "$delay_single_quote_subst"`' no_undefined_flag='`$ECHO "X$no_undefined_flag" | $Xsed -e "$delay_single_quote_subst"`' hardcode_libdir_flag_spec='`$ECHO "X$hardcode_libdir_flag_spec" | $Xsed -e "$delay_single_quote_subst"`' hardcode_libdir_flag_spec_ld='`$ECHO "X$hardcode_libdir_flag_spec_ld" | $Xsed -e "$delay_single_quote_subst"`' hardcode_libdir_separator='`$ECHO "X$hardcode_libdir_separator" | $Xsed -e "$delay_single_quote_subst"`' hardcode_direct='`$ECHO "X$hardcode_direct" | $Xsed -e "$delay_single_quote_subst"`' hardcode_direct_absolute='`$ECHO "X$hardcode_direct_absolute" | $Xsed -e "$delay_single_quote_subst"`' hardcode_minus_L='`$ECHO "X$hardcode_minus_L" | $Xsed -e "$delay_single_quote_subst"`' hardcode_shlibpath_var='`$ECHO "X$hardcode_shlibpath_var" | $Xsed -e "$delay_single_quote_subst"`' hardcode_automatic='`$ECHO "X$hardcode_automatic" | $Xsed -e "$delay_single_quote_subst"`' inherit_rpath='`$ECHO "X$inherit_rpath" | $Xsed -e "$delay_single_quote_subst"`' link_all_deplibs='`$ECHO "X$link_all_deplibs" | $Xsed -e "$delay_single_quote_subst"`' fix_srcfile_path='`$ECHO "X$fix_srcfile_path" | $Xsed -e "$delay_single_quote_subst"`' always_export_symbols='`$ECHO "X$always_export_symbols" | $Xsed -e "$delay_single_quote_subst"`' export_symbols_cmds='`$ECHO "X$export_symbols_cmds" | $Xsed -e "$delay_single_quote_subst"`' exclude_expsyms='`$ECHO "X$exclude_expsyms" | $Xsed -e "$delay_single_quote_subst"`' include_expsyms='`$ECHO "X$include_expsyms" | $Xsed -e "$delay_single_quote_subst"`' prelink_cmds='`$ECHO "X$prelink_cmds" | $Xsed -e "$delay_single_quote_subst"`' file_list_spec='`$ECHO "X$file_list_spec" | $Xsed -e "$delay_single_quote_subst"`' variables_saved_for_relink='`$ECHO "X$variables_saved_for_relink" | $Xsed -e "$delay_single_quote_subst"`' need_lib_prefix='`$ECHO "X$need_lib_prefix" | $Xsed -e "$delay_single_quote_subst"`' need_version='`$ECHO "X$need_version" | $Xsed -e "$delay_single_quote_subst"`' version_type='`$ECHO "X$version_type" | $Xsed -e "$delay_single_quote_subst"`' runpath_var='`$ECHO "X$runpath_var" | $Xsed -e "$delay_single_quote_subst"`' shlibpath_var='`$ECHO "X$shlibpath_var" | $Xsed -e "$delay_single_quote_subst"`' shlibpath_overrides_runpath='`$ECHO "X$shlibpath_overrides_runpath" | $Xsed -e "$delay_single_quote_subst"`' libname_spec='`$ECHO "X$libname_spec" | $Xsed -e "$delay_single_quote_subst"`' library_names_spec='`$ECHO "X$library_names_spec" | $Xsed -e "$delay_single_quote_subst"`' soname_spec='`$ECHO "X$soname_spec" | $Xsed -e "$delay_single_quote_subst"`' postinstall_cmds='`$ECHO "X$postinstall_cmds" | $Xsed -e "$delay_single_quote_subst"`' postuninstall_cmds='`$ECHO "X$postuninstall_cmds" | $Xsed -e "$delay_single_quote_subst"`' finish_cmds='`$ECHO "X$finish_cmds" | $Xsed -e "$delay_single_quote_subst"`' finish_eval='`$ECHO "X$finish_eval" | $Xsed -e "$delay_single_quote_subst"`' hardcode_into_libs='`$ECHO "X$hardcode_into_libs" | $Xsed -e "$delay_single_quote_subst"`' sys_lib_search_path_spec='`$ECHO "X$sys_lib_search_path_spec" | $Xsed -e "$delay_single_quote_subst"`' sys_lib_dlsearch_path_spec='`$ECHO "X$sys_lib_dlsearch_path_spec" | $Xsed -e "$delay_single_quote_subst"`' hardcode_action='`$ECHO "X$hardcode_action" | $Xsed -e "$delay_single_quote_subst"`' enable_dlopen='`$ECHO "X$enable_dlopen" | $Xsed -e "$delay_single_quote_subst"`' enable_dlopen_self='`$ECHO "X$enable_dlopen_self" | $Xsed -e "$delay_single_quote_subst"`' enable_dlopen_self_static='`$ECHO "X$enable_dlopen_self_static" | $Xsed -e "$delay_single_quote_subst"`' old_striplib='`$ECHO "X$old_striplib" | $Xsed -e "$delay_single_quote_subst"`' striplib='`$ECHO "X$striplib" | $Xsed -e "$delay_single_quote_subst"`' compiler_lib_search_dirs='`$ECHO "X$compiler_lib_search_dirs" | $Xsed -e "$delay_single_quote_subst"`' predep_objects='`$ECHO "X$predep_objects" | $Xsed -e "$delay_single_quote_subst"`' postdep_objects='`$ECHO "X$postdep_objects" | $Xsed -e "$delay_single_quote_subst"`' predeps='`$ECHO "X$predeps" | $Xsed -e "$delay_single_quote_subst"`' postdeps='`$ECHO "X$postdeps" | $Xsed -e "$delay_single_quote_subst"`' compiler_lib_search_path='`$ECHO "X$compiler_lib_search_path" | $Xsed -e "$delay_single_quote_subst"`' LD_CXX='`$ECHO "X$LD_CXX" | $Xsed -e "$delay_single_quote_subst"`' old_archive_cmds_CXX='`$ECHO "X$old_archive_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`' compiler_CXX='`$ECHO "X$compiler_CXX" | $Xsed -e "$delay_single_quote_subst"`' GCC_CXX='`$ECHO "X$GCC_CXX" | $Xsed -e "$delay_single_quote_subst"`' lt_prog_compiler_no_builtin_flag_CXX='`$ECHO "X$lt_prog_compiler_no_builtin_flag_CXX" | $Xsed -e "$delay_single_quote_subst"`' lt_prog_compiler_wl_CXX='`$ECHO "X$lt_prog_compiler_wl_CXX" | $Xsed -e "$delay_single_quote_subst"`' lt_prog_compiler_pic_CXX='`$ECHO "X$lt_prog_compiler_pic_CXX" | $Xsed -e "$delay_single_quote_subst"`' lt_prog_compiler_static_CXX='`$ECHO "X$lt_prog_compiler_static_CXX" | $Xsed -e "$delay_single_quote_subst"`' lt_cv_prog_compiler_c_o_CXX='`$ECHO "X$lt_cv_prog_compiler_c_o_CXX" | $Xsed -e "$delay_single_quote_subst"`' archive_cmds_need_lc_CXX='`$ECHO "X$archive_cmds_need_lc_CXX" | $Xsed -e "$delay_single_quote_subst"`' enable_shared_with_static_runtimes_CXX='`$ECHO "X$enable_shared_with_static_runtimes_CXX" | $Xsed -e "$delay_single_quote_subst"`' export_dynamic_flag_spec_CXX='`$ECHO "X$export_dynamic_flag_spec_CXX" | $Xsed -e "$delay_single_quote_subst"`' whole_archive_flag_spec_CXX='`$ECHO "X$whole_archive_flag_spec_CXX" | $Xsed -e "$delay_single_quote_subst"`' compiler_needs_object_CXX='`$ECHO "X$compiler_needs_object_CXX" | $Xsed -e "$delay_single_quote_subst"`' old_archive_from_new_cmds_CXX='`$ECHO "X$old_archive_from_new_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`' old_archive_from_expsyms_cmds_CXX='`$ECHO "X$old_archive_from_expsyms_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`' archive_cmds_CXX='`$ECHO "X$archive_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`' archive_expsym_cmds_CXX='`$ECHO "X$archive_expsym_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`' module_cmds_CXX='`$ECHO "X$module_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`' module_expsym_cmds_CXX='`$ECHO "X$module_expsym_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`' with_gnu_ld_CXX='`$ECHO "X$with_gnu_ld_CXX" | $Xsed -e "$delay_single_quote_subst"`' allow_undefined_flag_CXX='`$ECHO "X$allow_undefined_flag_CXX" | $Xsed -e "$delay_single_quote_subst"`' no_undefined_flag_CXX='`$ECHO "X$no_undefined_flag_CXX" | $Xsed -e "$delay_single_quote_subst"`' hardcode_libdir_flag_spec_CXX='`$ECHO "X$hardcode_libdir_flag_spec_CXX" | $Xsed -e "$delay_single_quote_subst"`' hardcode_libdir_flag_spec_ld_CXX='`$ECHO "X$hardcode_libdir_flag_spec_ld_CXX" | $Xsed -e "$delay_single_quote_subst"`' hardcode_libdir_separator_CXX='`$ECHO "X$hardcode_libdir_separator_CXX" | $Xsed -e "$delay_single_quote_subst"`' hardcode_direct_CXX='`$ECHO "X$hardcode_direct_CXX" | $Xsed -e "$delay_single_quote_subst"`' hardcode_direct_absolute_CXX='`$ECHO "X$hardcode_direct_absolute_CXX" | $Xsed -e "$delay_single_quote_subst"`' hardcode_minus_L_CXX='`$ECHO "X$hardcode_minus_L_CXX" | $Xsed -e "$delay_single_quote_subst"`' hardcode_shlibpath_var_CXX='`$ECHO "X$hardcode_shlibpath_var_CXX" | $Xsed -e "$delay_single_quote_subst"`' hardcode_automatic_CXX='`$ECHO "X$hardcode_automatic_CXX" | $Xsed -e "$delay_single_quote_subst"`' inherit_rpath_CXX='`$ECHO "X$inherit_rpath_CXX" | $Xsed -e "$delay_single_quote_subst"`' link_all_deplibs_CXX='`$ECHO "X$link_all_deplibs_CXX" | $Xsed -e "$delay_single_quote_subst"`' fix_srcfile_path_CXX='`$ECHO "X$fix_srcfile_path_CXX" | $Xsed -e "$delay_single_quote_subst"`' always_export_symbols_CXX='`$ECHO "X$always_export_symbols_CXX" | $Xsed -e "$delay_single_quote_subst"`' export_symbols_cmds_CXX='`$ECHO "X$export_symbols_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`' exclude_expsyms_CXX='`$ECHO "X$exclude_expsyms_CXX" | $Xsed -e "$delay_single_quote_subst"`' include_expsyms_CXX='`$ECHO "X$include_expsyms_CXX" | $Xsed -e "$delay_single_quote_subst"`' prelink_cmds_CXX='`$ECHO "X$prelink_cmds_CXX" | $Xsed -e "$delay_single_quote_subst"`' file_list_spec_CXX='`$ECHO "X$file_list_spec_CXX" | $Xsed -e "$delay_single_quote_subst"`' hardcode_action_CXX='`$ECHO "X$hardcode_action_CXX" | $Xsed -e "$delay_single_quote_subst"`' compiler_lib_search_dirs_CXX='`$ECHO "X$compiler_lib_search_dirs_CXX" | $Xsed -e "$delay_single_quote_subst"`' predep_objects_CXX='`$ECHO "X$predep_objects_CXX" | $Xsed -e "$delay_single_quote_subst"`' postdep_objects_CXX='`$ECHO "X$postdep_objects_CXX" | $Xsed -e "$delay_single_quote_subst"`' predeps_CXX='`$ECHO "X$predeps_CXX" | $Xsed -e "$delay_single_quote_subst"`' postdeps_CXX='`$ECHO "X$postdeps_CXX" | $Xsed -e "$delay_single_quote_subst"`' compiler_lib_search_path_CXX='`$ECHO "X$compiler_lib_search_path_CXX" | $Xsed -e "$delay_single_quote_subst"`' LTCC='$LTCC' LTCFLAGS='$LTCFLAGS' compiler='$compiler_DEFAULT' # Quote evaled strings. for var in SED \ GREP \ EGREP \ FGREP \ LD \ NM \ LN_S \ lt_SP2NL \ lt_NL2SP \ reload_flag \ OBJDUMP \ deplibs_check_method \ file_magic_cmd \ AR \ AR_FLAGS \ STRIP \ RANLIB \ CC \ CFLAGS \ compiler \ lt_cv_sys_global_symbol_pipe \ lt_cv_sys_global_symbol_to_cdecl \ lt_cv_sys_global_symbol_to_c_name_address \ lt_cv_sys_global_symbol_to_c_name_address_lib_prefix \ SHELL \ ECHO \ lt_prog_compiler_no_builtin_flag \ lt_prog_compiler_wl \ lt_prog_compiler_pic \ lt_prog_compiler_static \ lt_cv_prog_compiler_c_o \ need_locks \ DSYMUTIL \ NMEDIT \ LIPO \ OTOOL \ OTOOL64 \ shrext_cmds \ export_dynamic_flag_spec \ whole_archive_flag_spec \ compiler_needs_object \ with_gnu_ld \ allow_undefined_flag \ no_undefined_flag \ hardcode_libdir_flag_spec \ hardcode_libdir_flag_spec_ld \ hardcode_libdir_separator \ fix_srcfile_path \ exclude_expsyms \ include_expsyms \ file_list_spec \ variables_saved_for_relink \ libname_spec \ library_names_spec \ soname_spec \ finish_eval \ old_striplib \ striplib \ compiler_lib_search_dirs \ predep_objects \ postdep_objects \ predeps \ postdeps \ compiler_lib_search_path \ LD_CXX \ compiler_CXX \ lt_prog_compiler_no_builtin_flag_CXX \ lt_prog_compiler_wl_CXX \ lt_prog_compiler_pic_CXX \ lt_prog_compiler_static_CXX \ lt_cv_prog_compiler_c_o_CXX \ export_dynamic_flag_spec_CXX \ whole_archive_flag_spec_CXX \ compiler_needs_object_CXX \ with_gnu_ld_CXX \ allow_undefined_flag_CXX \ no_undefined_flag_CXX \ hardcode_libdir_flag_spec_CXX \ hardcode_libdir_flag_spec_ld_CXX \ hardcode_libdir_separator_CXX \ fix_srcfile_path_CXX \ exclude_expsyms_CXX \ include_expsyms_CXX \ file_list_spec_CXX \ compiler_lib_search_dirs_CXX \ predep_objects_CXX \ postdep_objects_CXX \ predeps_CXX \ postdeps_CXX \ compiler_lib_search_path_CXX; do case \`eval \\\\\$ECHO "X\\\\\$\$var"\` in *[\\\\\\\`\\"\\\$]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"X\\\$\$var\\" | \\\$Xsed -e \\"\\\$sed_quote_subst\\"\\\`\\\\\\"" ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done # Double-quote double-evaled strings. for var in reload_cmds \ old_postinstall_cmds \ old_postuninstall_cmds \ old_archive_cmds \ extract_expsyms_cmds \ old_archive_from_new_cmds \ old_archive_from_expsyms_cmds \ archive_cmds \ archive_expsym_cmds \ module_cmds \ module_expsym_cmds \ export_symbols_cmds \ prelink_cmds \ postinstall_cmds \ postuninstall_cmds \ finish_cmds \ sys_lib_search_path_spec \ sys_lib_dlsearch_path_spec \ old_archive_cmds_CXX \ old_archive_from_new_cmds_CXX \ old_archive_from_expsyms_cmds_CXX \ archive_cmds_CXX \ archive_expsym_cmds_CXX \ module_cmds_CXX \ module_expsym_cmds_CXX \ export_symbols_cmds_CXX \ prelink_cmds_CXX; do case \`eval \\\\\$ECHO "X\\\\\$\$var"\` in *[\\\\\\\`\\"\\\$]*) eval "lt_\$var=\\\\\\"\\\`\\\$ECHO \\"X\\\$\$var\\" | \\\$Xsed -e \\"\\\$double_quote_subst\\" -e \\"\\\$sed_quote_subst\\" -e \\"\\\$delay_variable_subst\\"\\\`\\\\\\"" ;; *) eval "lt_\$var=\\\\\\"\\\$\$var\\\\\\"" ;; esac done # Fix-up fallback echo if it was mangled by the above quoting rules. case \$lt_ECHO in *'\\\$0 --fallback-echo"') lt_ECHO=\`\$ECHO "X\$lt_ECHO" | \$Xsed -e 's/\\\\\\\\\\\\\\\$0 --fallback-echo"\$/\$0 --fallback-echo"/'\` ;; esac ac_aux_dir='$ac_aux_dir' xsi_shell='$xsi_shell' lt_shell_append='$lt_shell_append' # See if we are running on zsh, and set the options which allow our # commands through without removal of \ escapes INIT. if test -n "\${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi PACKAGE='$PACKAGE' VERSION='$VERSION' TIMESTAMP='$TIMESTAMP' RM='$RM' ofile='$ofile' _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # Handling of arguments. for ac_config_target in $ac_config_targets do case $ac_config_target in "config.h") CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; "depfiles") CONFIG_COMMANDS="$CONFIG_COMMANDS depfiles" ;; "libtool") CONFIG_COMMANDS="$CONFIG_COMMANDS libtool" ;; "Makefile") CONFIG_FILES="$CONFIG_FILES Makefile" ;; "src/Makefile") CONFIG_FILES="$CONFIG_FILES src/Makefile" ;; *) as_fn_error $? "invalid argument: \`$ac_config_target'" "$LINENO" 5 ;; esac done # If the user did not use the arguments to specify the items to instantiate, # then the envvar interface is used. Set only those that are not. # We use the long form for the default assignment because of an extremely # bizarre bug on SunOS 4.1.3. if $ac_need_defaults; then test "${CONFIG_FILES+set}" = set || CONFIG_FILES=$config_files test "${CONFIG_HEADERS+set}" = set || CONFIG_HEADERS=$config_headers test "${CONFIG_COMMANDS+set}" = set || CONFIG_COMMANDS=$config_commands fi # Have a temporary directory for convenience. Make it in the build tree # simply because there is no reason against having it here, and in addition, # creating and moving files from /tmp can sometimes cause problems. # Hook for its removal unless debugging. # Note that there is a small window in which the directory will not be cleaned: # after its creation but before its name has been assigned to `$tmp'. $debug || { tmp= trap 'exit_status=$? { test -z "$tmp" || test ! -d "$tmp" || rm -fr "$tmp"; } && exit $exit_status ' 0 trap 'as_fn_exit 1' 1 2 13 15 } # Create a (secure) tmp directory for tmp files. { tmp=`(umask 077 && mktemp -d "./confXXXXXX") 2>/dev/null` && test -n "$tmp" && test -d "$tmp" } || { tmp=./conf$$-$RANDOM (umask 077 && mkdir "$tmp") } || as_fn_error $? "cannot create a temporary directory in ." "$LINENO" 5 # Set up the scripts for CONFIG_FILES section. # No need to generate them if there are no CONFIG_FILES. # This happens for instance with `./config.status config.h'. if test -n "$CONFIG_FILES"; then ac_cr=`echo X | tr X '\015'` # On cygwin, bash can eat \r inside `` if the user requested igncr. # But we know of no other shell where ac_cr would be empty at this # point, so we can use a bashism as a fallback. if test "x$ac_cr" = x; then eval ac_cr=\$\'\\r\' fi ac_cs_awk_cr=`$AWK 'BEGIN { print "a\rb" }' /dev/null` if test "$ac_cs_awk_cr" = "a${ac_cr}b"; then ac_cs_awk_cr='\\r' else ac_cs_awk_cr=$ac_cr fi echo 'BEGIN {' >"$tmp/subs1.awk" && _ACEOF { echo "cat >conf$$subs.awk <<_ACEOF" && echo "$ac_subst_vars" | sed 's/.*/&!$&$ac_delim/' && echo "_ACEOF" } >conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_num=`echo "$ac_subst_vars" | grep -c '^'` ac_delim='%!_!# ' for ac_last_try in false false false false false :; do . ./conf$$subs.sh || as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 ac_delim_n=`sed -n "s/.*$ac_delim\$/X/p" conf$$subs.awk | grep -c X` if test $ac_delim_n = $ac_delim_num; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_STATUS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done rm -f conf$$subs.sh cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 cat >>"\$tmp/subs1.awk" <<\\_ACAWK && _ACEOF sed -n ' h s/^/S["/; s/!.*/"]=/ p g s/^[^!]*!// :repl t repl s/'"$ac_delim"'$// t delim :nl h s/\(.\{148\}\)..*/\1/ t more1 s/["\\]/\\&/g; s/^/"/; s/$/\\n"\\/ p n b repl :more1 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t nl :delim h s/\(.\{148\}\)..*/\1/ t more2 s/["\\]/\\&/g; s/^/"/; s/$/"/ p b :more2 s/["\\]/\\&/g; s/^/"/; s/$/"\\/ p g s/.\{148\}// t delim ' >$CONFIG_STATUS || ac_write_fail=1 rm -f conf$$subs.awk cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 _ACAWK cat >>"\$tmp/subs1.awk" <<_ACAWK && for (key in S) S_is_set[key] = 1 FS = "" } { line = $ 0 nfields = split(line, field, "@") substed = 0 len = length(field[1]) for (i = 2; i < nfields; i++) { key = field[i] keylen = length(key) if (S_is_set[key]) { value = S[key] line = substr(line, 1, len) "" value "" substr(line, len + keylen + 3) len += length(value) + length(field[++i]) substed = 1 } else len += 1 + keylen } print line } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 if sed "s/$ac_cr//" < /dev/null > /dev/null 2>&1; then sed "s/$ac_cr\$//; s/$ac_cr/$ac_cs_awk_cr/g" else cat fi < "$tmp/subs1.awk" > "$tmp/subs.awk" \ || as_fn_error $? "could not setup config files machinery" "$LINENO" 5 _ACEOF # VPATH may cause trouble with some makes, so we remove sole $(srcdir), # ${srcdir} and @srcdir@ entries from VPATH if srcdir is ".", strip leading and # trailing colons and then remove the whole line if VPATH becomes empty # (actually we leave an empty line to preserve line numbers). if test "x$srcdir" = x.; then ac_vpsub='/^[ ]*VPATH[ ]*=[ ]*/{ h s/// s/^/:/ s/[ ]*$/:/ s/:\$(srcdir):/:/g s/:\${srcdir}:/:/g s/:@srcdir@:/:/g s/^:*// s/:*$// x s/\(=[ ]*\).*/\1/ G s/\n// s/^[^=]*=[ ]*$// }' fi cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 fi # test -n "$CONFIG_FILES" # Set up the scripts for CONFIG_HEADERS section. # No need to generate them if there are no CONFIG_HEADERS. # This happens for instance with `./config.status Makefile'. if test -n "$CONFIG_HEADERS"; then cat >"$tmp/defines.awk" <<\_ACAWK || BEGIN { _ACEOF # Transform confdefs.h into an awk script `defines.awk', embedded as # here-document in config.status, that substitutes the proper values into # config.h.in to produce config.h. # Create a delimiter string that does not exist in confdefs.h, to ease # handling of long lines. ac_delim='%!_!# ' for ac_last_try in false false :; do ac_t=`sed -n "/$ac_delim/p" confdefs.h` if test -z "$ac_t"; then break elif $ac_last_try; then as_fn_error $? "could not make $CONFIG_HEADERS" "$LINENO" 5 else ac_delim="$ac_delim!$ac_delim _$ac_delim!! " fi done # For the awk script, D is an array of macro values keyed by name, # likewise P contains macro parameters if any. Preserve backslash # newline sequences. ac_word_re=[_$as_cr_Letters][_$as_cr_alnum]* sed -n ' s/.\{148\}/&'"$ac_delim"'/g t rset :rset s/^[ ]*#[ ]*define[ ][ ]*/ / t def d :def s/\\$// t bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3"/p s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2"/p d :bsnl s/["\\]/\\&/g s/^ \('"$ac_word_re"'\)\(([^()]*)\)[ ]*\(.*\)/P["\1"]="\2"\ D["\1"]=" \3\\\\\\n"\\/p t cont s/^ \('"$ac_word_re"'\)[ ]*\(.*\)/D["\1"]=" \2\\\\\\n"\\/p t cont d :cont n s/.\{148\}/&'"$ac_delim"'/g t clear :clear s/\\$// t bsnlc s/["\\]/\\&/g; s/^/"/; s/$/"/p d :bsnlc s/["\\]/\\&/g; s/^/"/; s/$/\\\\\\n"\\/p b cont ' >$CONFIG_STATUS || ac_write_fail=1 cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 for (key in D) D_is_set[key] = 1 FS = "" } /^[\t ]*#[\t ]*(define|undef)[\t ]+$ac_word_re([\t (]|\$)/ { line = \$ 0 split(line, arg, " ") if (arg[1] == "#") { defundef = arg[2] mac1 = arg[3] } else { defundef = substr(arg[1], 2) mac1 = arg[2] } split(mac1, mac2, "(") #) macro = mac2[1] prefix = substr(line, 1, index(line, defundef) - 1) if (D_is_set[macro]) { # Preserve the white space surrounding the "#". print prefix "define", macro P[macro] D[macro] next } else { # Replace #undef with comments. This is necessary, for example, # in the case of _POSIX_SOURCE, which is predefined and required # on some systems where configure will not decide to define it. if (defundef == "undef") { print "/*", prefix defundef, macro, "*/" next } } } { print } _ACAWK _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 as_fn_error $? "could not setup config headers machinery" "$LINENO" 5 fi # test -n "$CONFIG_HEADERS" eval set X " :F $CONFIG_FILES :H $CONFIG_HEADERS :C $CONFIG_COMMANDS" shift for ac_tag do case $ac_tag in :[FHLC]) ac_mode=$ac_tag; continue;; esac case $ac_mode$ac_tag in :[FHL]*:*);; :L* | :C*:*) as_fn_error $? "invalid tag \`$ac_tag'" "$LINENO" 5 ;; :[FH]-) ac_tag=-:-;; :[FH]*) ac_tag=$ac_tag:$ac_tag.in;; esac ac_save_IFS=$IFS IFS=: set x $ac_tag IFS=$ac_save_IFS shift ac_file=$1 shift case $ac_mode in :L) ac_source=$1;; :[FH]) ac_file_inputs= for ac_f do case $ac_f in -) ac_f="$tmp/stdin";; *) # Look for the file first in the build tree, then in the source tree # (if the path is not absolute). The absolute path cannot be DOS-style, # because $ac_f cannot contain `:'. test -f "$ac_f" || case $ac_f in [\\/$]*) false;; *) test -f "$srcdir/$ac_f" && ac_f="$srcdir/$ac_f";; esac || as_fn_error 1 "cannot find input file: \`$ac_f'" "$LINENO" 5 ;; esac case $ac_f in *\'*) ac_f=`$as_echo "$ac_f" | sed "s/'/'\\\\\\\\''/g"`;; esac as_fn_append ac_file_inputs " '$ac_f'" done # Let's still pretend it is `configure' which instantiates (i.e., don't # use $as_me), people would be surprised to read: # /* config.h. Generated by config.status. */ configure_input='Generated from '` $as_echo "$*" | sed 's|^[^:]*/||;s|:[^:]*/|, |g' `' by configure.' if test x"$ac_file" != x-; then configure_input="$ac_file. $configure_input" { $as_echo "$as_me:${as_lineno-$LINENO}: creating $ac_file" >&5 $as_echo "$as_me: creating $ac_file" >&6;} fi # Neutralize special characters interpreted by sed in replacement strings. case $configure_input in #( *\&* | *\|* | *\\* ) ac_sed_conf_input=`$as_echo "$configure_input" | sed 's/[\\\\&|]/\\\\&/g'`;; #( *) ac_sed_conf_input=$configure_input;; esac case $ac_tag in *:-:* | *:-) cat >"$tmp/stdin" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; esac ;; esac ac_dir=`$as_dirname -- "$ac_file" || $as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$ac_file" : 'X\(//\)[^/]' \| \ X"$ac_file" : 'X\(//\)$' \| \ X"$ac_file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$ac_file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir="$ac_dir"; as_fn_mkdir_p ac_builddir=. case "$ac_dir" in .) ac_dir_suffix= ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_dir_suffix=/`$as_echo "$ac_dir" | sed 's|^\.[\\/]||'` # A ".." for each directory in $ac_dir_suffix. ac_top_builddir_sub=`$as_echo "$ac_dir_suffix" | sed 's|/[^\\/]*|/..|g;s|/||'` case $ac_top_builddir_sub in "") ac_top_builddir_sub=. ac_top_build_prefix= ;; *) ac_top_build_prefix=$ac_top_builddir_sub/ ;; esac ;; esac ac_abs_top_builddir=$ac_pwd ac_abs_builddir=$ac_pwd$ac_dir_suffix # for backward compatibility: ac_top_builddir=$ac_top_build_prefix case $srcdir in .) # We are building in place. ac_srcdir=. ac_top_srcdir=$ac_top_builddir_sub ac_abs_top_srcdir=$ac_pwd ;; [\\/]* | ?:[\\/]* ) # Absolute name. ac_srcdir=$srcdir$ac_dir_suffix; ac_top_srcdir=$srcdir ac_abs_top_srcdir=$srcdir ;; *) # Relative name. ac_srcdir=$ac_top_build_prefix$srcdir$ac_dir_suffix ac_top_srcdir=$ac_top_build_prefix$srcdir ac_abs_top_srcdir=$ac_pwd/$srcdir ;; esac ac_abs_srcdir=$ac_abs_top_srcdir$ac_dir_suffix case $ac_mode in :F) # # CONFIG_FILE # case $INSTALL in [\\/$]* | ?:[\\/]* ) ac_INSTALL=$INSTALL ;; *) ac_INSTALL=$ac_top_build_prefix$INSTALL ;; esac ac_MKDIR_P=$MKDIR_P case $MKDIR_P in [\\/$]* | ?:[\\/]* ) ;; */*) ac_MKDIR_P=$ac_top_build_prefix$MKDIR_P ;; esac _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 # If the template does not know about datarootdir, expand it. # FIXME: This hack should be removed a few years after 2.60. ac_datarootdir_hack=; ac_datarootdir_seen= ac_sed_dataroot=' /datarootdir/ { p q } /@datadir@/p /@docdir@/p /@infodir@/p /@localedir@/p /@mandir@/p' case `eval "sed -n \"\$ac_sed_dataroot\" $ac_file_inputs"` in *datarootdir*) ac_datarootdir_seen=yes;; *@datadir@*|*@docdir@*|*@infodir@*|*@localedir@*|*@mandir@*) { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&5 $as_echo "$as_me: WARNING: $ac_file_inputs seems to ignore the --datarootdir setting" >&2;} _ACEOF cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_datarootdir_hack=' s&@datadir@&$datadir&g s&@docdir@&$docdir&g s&@infodir@&$infodir&g s&@localedir@&$localedir&g s&@mandir@&$mandir&g s&\\\${datarootdir}&$datarootdir&g' ;; esac _ACEOF # Neutralize VPATH when `$srcdir' = `.'. # Shell code in configure.ac might set extrasub. # FIXME: do we really want to maintain this feature? cat >>$CONFIG_STATUS <<_ACEOF || ac_write_fail=1 ac_sed_extra="$ac_vpsub $extrasub _ACEOF cat >>$CONFIG_STATUS <<\_ACEOF || ac_write_fail=1 :t /@[a-zA-Z_][a-zA-Z_0-9]*@/!b s|@configure_input@|$ac_sed_conf_input|;t t s&@top_builddir@&$ac_top_builddir_sub&;t t s&@top_build_prefix@&$ac_top_build_prefix&;t t s&@srcdir@&$ac_srcdir&;t t s&@abs_srcdir@&$ac_abs_srcdir&;t t s&@top_srcdir@&$ac_top_srcdir&;t t s&@abs_top_srcdir@&$ac_abs_top_srcdir&;t t s&@builddir@&$ac_builddir&;t t s&@abs_builddir@&$ac_abs_builddir&;t t s&@abs_top_builddir@&$ac_abs_top_builddir&;t t s&@INSTALL@&$ac_INSTALL&;t t s&@MKDIR_P@&$ac_MKDIR_P&;t t $ac_datarootdir_hack " eval sed \"\$ac_sed_extra\" "$ac_file_inputs" | $AWK -f "$tmp/subs.awk" >$tmp/out \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 test -z "$ac_datarootdir_hack$ac_datarootdir_seen" && { ac_out=`sed -n '/\${datarootdir}/p' "$tmp/out"`; test -n "$ac_out"; } && { ac_out=`sed -n '/^[ ]*datarootdir[ ]*:*=/p' "$tmp/out"`; test -z "$ac_out"; } && { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&5 $as_echo "$as_me: WARNING: $ac_file contains a reference to the variable \`datarootdir' which seems to be undefined. Please make sure it is defined" >&2;} rm -f "$tmp/stdin" case $ac_file in -) cat "$tmp/out" && rm -f "$tmp/out";; *) rm -f "$ac_file" && mv "$tmp/out" "$ac_file";; esac \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 ;; :H) # # CONFIG_HEADER # if test x"$ac_file" != x-; then { $as_echo "/* $configure_input */" \ && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" } >"$tmp/config.h" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 if diff "$ac_file" "$tmp/config.h" >/dev/null 2>&1; then { $as_echo "$as_me:${as_lineno-$LINENO}: $ac_file is unchanged" >&5 $as_echo "$as_me: $ac_file is unchanged" >&6;} else rm -f "$ac_file" mv "$tmp/config.h" "$ac_file" \ || as_fn_error $? "could not create $ac_file" "$LINENO" 5 fi else $as_echo "/* $configure_input */" \ && eval '$AWK -f "$tmp/defines.awk"' "$ac_file_inputs" \ || as_fn_error $? "could not create -" "$LINENO" 5 fi # Compute "$ac_file"'s index in $config_headers. _am_arg="$ac_file" _am_stamp_count=1 for _am_header in $config_headers :; do case $_am_header in $_am_arg | $_am_arg:* ) break ;; * ) _am_stamp_count=`expr $_am_stamp_count + 1` ;; esac done echo "timestamp for $_am_arg" >`$as_dirname -- "$_am_arg" || $as_expr X"$_am_arg" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$_am_arg" : 'X\(//\)[^/]' \| \ X"$_am_arg" : 'X\(//\)$' \| \ X"$_am_arg" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$_am_arg" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'`/stamp-h$_am_stamp_count ;; :C) { $as_echo "$as_me:${as_lineno-$LINENO}: executing $ac_file commands" >&5 $as_echo "$as_me: executing $ac_file commands" >&6;} ;; esac case $ac_file$ac_mode in "depfiles":C) test x"$AMDEP_TRUE" != x"" || { # Autoconf 2.62 quotes --file arguments for eval, but not when files # are listed without --file. Let's play safe and only enable the eval # if we detect the quoting. case $CONFIG_FILES in *\'*) eval set x "$CONFIG_FILES" ;; *) set x $CONFIG_FILES ;; esac shift for mf do # Strip MF so we end up with the name of the file. mf=`echo "$mf" | sed -e 's/:.*$//'` # Check whether this is an Automake generated Makefile or not. # We used to match only the files named `Makefile.in', but # some people rename them; so instead we look at the file content. # Grep'ing the first line is not enough: some people post-process # each Makefile.in and add a new line on top of each file to say so. # Grep'ing the whole file is not good either: AIX grep has a line # limit of 2048, but all sed's we know have understand at least 4000. if sed -n 's,^#.*generated by automake.*,X,p' "$mf" | grep X >/dev/null 2>&1; then dirpart=`$as_dirname -- "$mf" || $as_expr X"$mf" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$mf" : 'X\(//\)[^/]' \| \ X"$mf" : 'X\(//\)$' \| \ X"$mf" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$mf" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` else continue fi # Extract the definition of DEPDIR, am__include, and am__quote # from the Makefile without running `make'. DEPDIR=`sed -n 's/^DEPDIR = //p' < "$mf"` test -z "$DEPDIR" && continue am__include=`sed -n 's/^am__include = //p' < "$mf"` test -z "am__include" && continue am__quote=`sed -n 's/^am__quote = //p' < "$mf"` # When using ansi2knr, U may be empty or an underscore; expand it U=`sed -n 's/^U = //p' < "$mf"` # Find all dependency output files, they are included files with # $(DEPDIR) in their names. We invoke sed twice because it is the # simplest approach to changing $(DEPDIR) to its actual value in the # expansion. for file in `sed -n " s/^$am__include $am__quote\(.*(DEPDIR).*\)$am__quote"'$/\1/p' <"$mf" | \ sed -e 's/\$(DEPDIR)/'"$DEPDIR"'/g' -e 's/\$U/'"$U"'/g'`; do # Make sure the directory exists. test -f "$dirpart/$file" && continue fdir=`$as_dirname -- "$file" || $as_expr X"$file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ X"$file" : 'X\(//\)[^/]' \| \ X"$file" : 'X\(//\)$' \| \ X"$file" : 'X\(/\)' \| . 2>/dev/null || $as_echo X"$file" | sed '/^X\(.*[^/]\)\/\/*[^/][^/]*\/*$/{ s//\1/ q } /^X\(\/\/\)[^/].*/{ s//\1/ q } /^X\(\/\/\)$/{ s//\1/ q } /^X\(\/\).*/{ s//\1/ q } s/.*/./; q'` as_dir=$dirpart/$fdir; as_fn_mkdir_p # echo "creating $dirpart/$file" echo '# dummy' > "$dirpart/$file" done done } ;; "libtool":C) # See if we are running on zsh, and set the options which allow our # commands through without removal of \ escapes. if test -n "${ZSH_VERSION+set}" ; then setopt NO_GLOB_SUBST fi cfgfile="${ofile}T" trap "$RM \"$cfgfile\"; exit 1" 1 2 15 $RM "$cfgfile" cat <<_LT_EOF >> "$cfgfile" #! $SHELL # `$ECHO "$ofile" | sed 's%^.*/%%'` - Provide generalized library-building support services. # Generated automatically by $as_me ($PACKAGE$TIMESTAMP) $VERSION # Libtool was configured on host `(hostname || uname -n) 2>/dev/null | sed 1q`: # NOTE: Changes made to this file will be lost: look at ltmain.sh. # # Copyright (C) 1996, 1997, 1998, 1999, 2000, 2001, 2003, 2004, 2005, # 2006, 2007, 2008 Free Software Foundation, Inc. # Written by Gordon Matzigkeit, 1996 # # This file is part of GNU Libtool. # # GNU Libtool is free software; you can redistribute it and/or # modify it under the terms of the GNU General Public License as # published by the Free Software Foundation; either version 2 of # the License, or (at your option) any later version. # # As a special exception to the GNU General Public License, # if you distribute this file as part of a program or library that # is built using GNU Libtool, you may include this file under the # same distribution terms that you use for the rest of that program. # # GNU Libtool is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # # You should have received a copy of the GNU General Public License # along with GNU Libtool; see the file COPYING. If not, a copy # can be downloaded from http://www.gnu.org/licenses/gpl.html, or # obtained by writing to the Free Software Foundation, Inc., # 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. # The names of the tagged configurations supported by this script. available_tags="CXX " # ### BEGIN LIBTOOL CONFIG # Which release of libtool.m4 was used? macro_version=$macro_version macro_revision=$macro_revision # Whether or not to build shared libraries. build_libtool_libs=$enable_shared # Whether or not to build static libraries. build_old_libs=$enable_static # What type of objects to build. pic_mode=$pic_mode # Whether or not to optimize for fast installation. fast_install=$enable_fast_install # The host system. host_alias=$host_alias host=$host host_os=$host_os # The build system. build_alias=$build_alias build=$build build_os=$build_os # A sed program that does not truncate output. SED=$lt_SED # Sed that helps us avoid accidentally triggering echo(1) options like -n. Xsed="\$SED -e 1s/^X//" # A grep program that handles long lines. GREP=$lt_GREP # An ERE matcher. EGREP=$lt_EGREP # A literal string matcher. FGREP=$lt_FGREP # A BSD- or MS-compatible name lister. NM=$lt_NM # Whether we need soft or hard links. LN_S=$lt_LN_S # What is the maximum length of a command? max_cmd_len=$max_cmd_len # Object file suffix (normally "o"). objext=$ac_objext # Executable file suffix (normally ""). exeext=$exeext # whether the shell understands "unset". lt_unset=$lt_unset # turn spaces into newlines. SP2NL=$lt_lt_SP2NL # turn newlines into spaces. NL2SP=$lt_lt_NL2SP # How to create reloadable object files. reload_flag=$lt_reload_flag reload_cmds=$lt_reload_cmds # An object symbol dumper. OBJDUMP=$lt_OBJDUMP # Method to check whether dependent libraries are shared objects. deplibs_check_method=$lt_deplibs_check_method # Command to use when deplibs_check_method == "file_magic". file_magic_cmd=$lt_file_magic_cmd # The archiver. AR=$lt_AR AR_FLAGS=$lt_AR_FLAGS # A symbol stripping program. STRIP=$lt_STRIP # Commands used to install an old-style archive. RANLIB=$lt_RANLIB old_postinstall_cmds=$lt_old_postinstall_cmds old_postuninstall_cmds=$lt_old_postuninstall_cmds # A C compiler. LTCC=$lt_CC # LTCC compiler flags. LTCFLAGS=$lt_CFLAGS # Take the output of nm and produce a listing of raw symbols and C names. global_symbol_pipe=$lt_lt_cv_sys_global_symbol_pipe # Transform the output of nm in a proper C declaration. global_symbol_to_cdecl=$lt_lt_cv_sys_global_symbol_to_cdecl # Transform the output of nm in a C name address pair. global_symbol_to_c_name_address=$lt_lt_cv_sys_global_symbol_to_c_name_address # Transform the output of nm in a C name address pair when lib prefix is needed. global_symbol_to_c_name_address_lib_prefix=$lt_lt_cv_sys_global_symbol_to_c_name_address_lib_prefix # The name of the directory that contains temporary libtool files. objdir=$objdir # Shell to use when invoking shell scripts. SHELL=$lt_SHELL # An echo program that does not interpret backslashes. ECHO=$lt_ECHO # Used to examine libraries when file_magic_cmd begins with "file". MAGIC_CMD=$MAGIC_CMD # Must we lock files when doing compilation? need_locks=$lt_need_locks # Tool to manipulate archived DWARF debug symbol files on Mac OS X. DSYMUTIL=$lt_DSYMUTIL # Tool to change global to local symbols on Mac OS X. NMEDIT=$lt_NMEDIT # Tool to manipulate fat objects and archives on Mac OS X. LIPO=$lt_LIPO # ldd/readelf like tool for Mach-O binaries on Mac OS X. OTOOL=$lt_OTOOL # ldd/readelf like tool for 64 bit Mach-O binaries on Mac OS X 10.4. OTOOL64=$lt_OTOOL64 # Old archive suffix (normally "a"). libext=$libext # Shared library suffix (normally ".so"). shrext_cmds=$lt_shrext_cmds # The commands to extract the exported symbol list from a shared archive. extract_expsyms_cmds=$lt_extract_expsyms_cmds # Variables whose values should be saved in libtool wrapper scripts and # restored at link time. variables_saved_for_relink=$lt_variables_saved_for_relink # Do we need the "lib" prefix for modules? need_lib_prefix=$need_lib_prefix # Do we need a version for libraries? need_version=$need_version # Library versioning type. version_type=$version_type # Shared library runtime path variable. runpath_var=$runpath_var # Shared library path variable. shlibpath_var=$shlibpath_var # Is shlibpath searched before the hard-coded library search path? shlibpath_overrides_runpath=$shlibpath_overrides_runpath # Format of library name prefix. libname_spec=$lt_libname_spec # List of archive names. First name is the real one, the rest are links. # The last name is the one that the linker finds with -lNAME library_names_spec=$lt_library_names_spec # The coded name of the library, if different from the real name. soname_spec=$lt_soname_spec # Command to use after installation of a shared archive. postinstall_cmds=$lt_postinstall_cmds # Command to use after uninstallation of a shared archive. postuninstall_cmds=$lt_postuninstall_cmds # Commands used to finish a libtool library installation in a directory. finish_cmds=$lt_finish_cmds # As "finish_cmds", except a single script fragment to be evaled but # not shown. finish_eval=$lt_finish_eval # Whether we should hardcode library paths into libraries. hardcode_into_libs=$hardcode_into_libs # Compile-time system search path for libraries. sys_lib_search_path_spec=$lt_sys_lib_search_path_spec # Run-time system search path for libraries. sys_lib_dlsearch_path_spec=$lt_sys_lib_dlsearch_path_spec # Whether dlopen is supported. dlopen_support=$enable_dlopen # Whether dlopen of programs is supported. dlopen_self=$enable_dlopen_self # Whether dlopen of statically linked programs is supported. dlopen_self_static=$enable_dlopen_self_static # Commands to strip libraries. old_striplib=$lt_old_striplib striplib=$lt_striplib # The linker used to build libraries. LD=$lt_LD # Commands used to build an old-style archive. old_archive_cmds=$lt_old_archive_cmds # A language specific compiler. CC=$lt_compiler # Is the compiler the GNU compiler? with_gcc=$GCC # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc # Whether or not to disallow shared libs when runtime libs are static. allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec # Whether the compiler copes with passing no objects directly. compiler_needs_object=$lt_compiler_needs_object # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds # Commands used to build a shared archive. archive_cmds=$lt_archive_cmds archive_expsym_cmds=$lt_archive_expsym_cmds # Commands used to build a loadable module if different from building # a shared archive. module_cmds=$lt_module_cmds module_expsym_cmds=$lt_module_expsym_cmds # Whether we are building with GNU ld or not. with_gnu_ld=$lt_with_gnu_ld # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag # Flag that enforces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec # If ld is used when linking, flag to hardcode \$libdir into a binary # during linking. This must work even if \$libdir does not exist. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld # Whether we need a single "-rpath" flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator # Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes # DIR into the resulting binary. hardcode_direct=$hardcode_direct # Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes # DIR into the resulting binary and the resulting library dependency is # "absolute",i.e impossible to change by setting \${shlibpath_var} if the # library is relocated. hardcode_direct_absolute=$hardcode_direct_absolute # Set to "yes" if using the -LDIR flag during linking hardcodes DIR # into the resulting binary. hardcode_minus_L=$hardcode_minus_L # Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR # into the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var # Set to "yes" if building a shared library automatically hardcodes DIR # into the library and all subsequent libraries and executables linked # against it. hardcode_automatic=$hardcode_automatic # Set to yes if linker adds runtime paths of dependent libraries # to runtime path list. inherit_rpath=$inherit_rpath # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs # Fix the shell variable \$srcfile for the compiler. fix_srcfile_path=$lt_fix_srcfile_path # Set to "yes" if exported symbols are required. always_export_symbols=$always_export_symbols # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms # Symbols that must always be exported. include_expsyms=$lt_include_expsyms # Commands necessary for linking programs (against libraries) with templates. prelink_cmds=$lt_prelink_cmds # Specify filename containing input files. file_list_spec=$lt_file_list_spec # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action # The directories searched by this compiler when creating a shared library. compiler_lib_search_dirs=$lt_compiler_lib_search_dirs # Dependencies to place before and after the objects being linked to # create a shared library. predep_objects=$lt_predep_objects postdep_objects=$lt_postdep_objects predeps=$lt_predeps postdeps=$lt_postdeps # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_compiler_lib_search_path # ### END LIBTOOL CONFIG _LT_EOF case $host_os in aix3*) cat <<\_LT_EOF >> "$cfgfile" # AIX sometimes has problems with the GCC collect2 program. For some # reason, if we set the COLLECT_NAMES environment variable, the problems # vanish in a puff of smoke. if test "X${COLLECT_NAMES+set}" != Xset; then COLLECT_NAMES= export COLLECT_NAMES fi _LT_EOF ;; esac ltmain="$ac_aux_dir/ltmain.sh" # We use sed instead of cat because bash on DJGPP gets confused if # if finds mixed CR/LF and LF-only lines. Since sed operates in # text mode, it properly converts lines to CR/LF. This bash problem # is reportedly fixed, but why not run on old versions too? sed '/^# Generated shell functions inserted here/q' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) case $xsi_shell in yes) cat << \_LT_EOF >> "$cfgfile" # func_dirname file append nondir_replacement # Compute the dirname of FILE. If nonempty, add APPEND to the result, # otherwise set result to NONDIR_REPLACEMENT. func_dirname () { case ${1} in */*) func_dirname_result="${1%/*}${2}" ;; * ) func_dirname_result="${3}" ;; esac } # func_basename file func_basename () { func_basename_result="${1##*/}" } # func_dirname_and_basename file append nondir_replacement # perform func_basename and func_dirname in a single function # call: # dirname: Compute the dirname of FILE. If nonempty, # add APPEND to the result, otherwise set result # to NONDIR_REPLACEMENT. # value returned in "$func_dirname_result" # basename: Compute filename of FILE. # value retuned in "$func_basename_result" # Implementation must be kept synchronized with func_dirname # and func_basename. For efficiency, we do not delegate to # those functions but instead duplicate the functionality here. func_dirname_and_basename () { case ${1} in */*) func_dirname_result="${1%/*}${2}" ;; * ) func_dirname_result="${3}" ;; esac func_basename_result="${1##*/}" } # func_stripname prefix suffix name # strip PREFIX and SUFFIX off of NAME. # PREFIX and SUFFIX must not contain globbing or regex special # characters, hashes, percent signs, but SUFFIX may contain a leading # dot (in which case that matches only a dot). func_stripname () { # pdksh 5.2.14 does not do ${X%$Y} correctly if both X and Y are # positional parameters, so assign one to ordinary parameter first. func_stripname_result=${3} func_stripname_result=${func_stripname_result#"${1}"} func_stripname_result=${func_stripname_result%"${2}"} } # func_opt_split func_opt_split () { func_opt_split_opt=${1%%=*} func_opt_split_arg=${1#*=} } # func_lo2o object func_lo2o () { case ${1} in *.lo) func_lo2o_result=${1%.lo}.${objext} ;; *) func_lo2o_result=${1} ;; esac } # func_xform libobj-or-source func_xform () { func_xform_result=${1%.*}.lo } # func_arith arithmetic-term... func_arith () { func_arith_result=$(( $* )) } # func_len string # STRING may not start with a hyphen. func_len () { func_len_result=${#1} } _LT_EOF ;; *) # Bourne compatible functions. cat << \_LT_EOF >> "$cfgfile" # func_dirname file append nondir_replacement # Compute the dirname of FILE. If nonempty, add APPEND to the result, # otherwise set result to NONDIR_REPLACEMENT. func_dirname () { # Extract subdirectory from the argument. func_dirname_result=`$ECHO "X${1}" | $Xsed -e "$dirname"` if test "X$func_dirname_result" = "X${1}"; then func_dirname_result="${3}" else func_dirname_result="$func_dirname_result${2}" fi } # func_basename file func_basename () { func_basename_result=`$ECHO "X${1}" | $Xsed -e "$basename"` } # func_stripname prefix suffix name # strip PREFIX and SUFFIX off of NAME. # PREFIX and SUFFIX must not contain globbing or regex special # characters, hashes, percent signs, but SUFFIX may contain a leading # dot (in which case that matches only a dot). # func_strip_suffix prefix name func_stripname () { case ${2} in .*) func_stripname_result=`$ECHO "X${3}" \ | $Xsed -e "s%^${1}%%" -e "s%\\\\${2}\$%%"`;; *) func_stripname_result=`$ECHO "X${3}" \ | $Xsed -e "s%^${1}%%" -e "s%${2}\$%%"`;; esac } # sed scripts: my_sed_long_opt='1s/^\(-[^=]*\)=.*/\1/;q' my_sed_long_arg='1s/^-[^=]*=//' # func_opt_split func_opt_split () { func_opt_split_opt=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_opt"` func_opt_split_arg=`$ECHO "X${1}" | $Xsed -e "$my_sed_long_arg"` } # func_lo2o object func_lo2o () { func_lo2o_result=`$ECHO "X${1}" | $Xsed -e "$lo2o"` } # func_xform libobj-or-source func_xform () { func_xform_result=`$ECHO "X${1}" | $Xsed -e 's/\.[^.]*$/.lo/'` } # func_arith arithmetic-term... func_arith () { func_arith_result=`expr "$@"` } # func_len string # STRING may not start with a hyphen. func_len () { func_len_result=`expr "$1" : ".*" 2>/dev/null || echo $max_cmd_len` } _LT_EOF esac case $lt_shell_append in yes) cat << \_LT_EOF >> "$cfgfile" # func_append var value # Append VALUE to the end of shell variable VAR. func_append () { eval "$1+=\$2" } _LT_EOF ;; *) cat << \_LT_EOF >> "$cfgfile" # func_append var value # Append VALUE to the end of shell variable VAR. func_append () { eval "$1=\$$1\$2" } _LT_EOF ;; esac sed -n '/^# Generated shell functions inserted here/,$p' "$ltmain" >> "$cfgfile" \ || (rm -f "$cfgfile"; exit 1) mv -f "$cfgfile" "$ofile" || (rm -f "$ofile" && cp "$cfgfile" "$ofile" && rm -f "$cfgfile") chmod +x "$ofile" cat <<_LT_EOF >> "$ofile" # ### BEGIN LIBTOOL TAG CONFIG: CXX # The linker used to build libraries. LD=$lt_LD_CXX # Commands used to build an old-style archive. old_archive_cmds=$lt_old_archive_cmds_CXX # A language specific compiler. CC=$lt_compiler_CXX # Is the compiler the GNU compiler? with_gcc=$GCC_CXX # Compiler flag to turn off builtin functions. no_builtin_flag=$lt_lt_prog_compiler_no_builtin_flag_CXX # How to pass a linker flag through the compiler. wl=$lt_lt_prog_compiler_wl_CXX # Additional compiler flags for building library objects. pic_flag=$lt_lt_prog_compiler_pic_CXX # Compiler flag to prevent dynamic linking. link_static_flag=$lt_lt_prog_compiler_static_CXX # Does compiler simultaneously support -c and -o options? compiler_c_o=$lt_lt_cv_prog_compiler_c_o_CXX # Whether or not to add -lc for building shared libraries. build_libtool_need_lc=$archive_cmds_need_lc_CXX # Whether or not to disallow shared libs when runtime libs are static. allow_libtool_libs_with_static_runtimes=$enable_shared_with_static_runtimes_CXX # Compiler flag to allow reflexive dlopens. export_dynamic_flag_spec=$lt_export_dynamic_flag_spec_CXX # Compiler flag to generate shared objects directly from archives. whole_archive_flag_spec=$lt_whole_archive_flag_spec_CXX # Whether the compiler copes with passing no objects directly. compiler_needs_object=$lt_compiler_needs_object_CXX # Create an old-style archive from a shared archive. old_archive_from_new_cmds=$lt_old_archive_from_new_cmds_CXX # Create a temporary old-style archive to link instead of a shared archive. old_archive_from_expsyms_cmds=$lt_old_archive_from_expsyms_cmds_CXX # Commands used to build a shared archive. archive_cmds=$lt_archive_cmds_CXX archive_expsym_cmds=$lt_archive_expsym_cmds_CXX # Commands used to build a loadable module if different from building # a shared archive. module_cmds=$lt_module_cmds_CXX module_expsym_cmds=$lt_module_expsym_cmds_CXX # Whether we are building with GNU ld or not. with_gnu_ld=$lt_with_gnu_ld_CXX # Flag that allows shared libraries with undefined symbols to be built. allow_undefined_flag=$lt_allow_undefined_flag_CXX # Flag that enforces no undefined symbols. no_undefined_flag=$lt_no_undefined_flag_CXX # Flag to hardcode \$libdir into a binary during linking. # This must work even if \$libdir does not exist hardcode_libdir_flag_spec=$lt_hardcode_libdir_flag_spec_CXX # If ld is used when linking, flag to hardcode \$libdir into a binary # during linking. This must work even if \$libdir does not exist. hardcode_libdir_flag_spec_ld=$lt_hardcode_libdir_flag_spec_ld_CXX # Whether we need a single "-rpath" flag with a separated argument. hardcode_libdir_separator=$lt_hardcode_libdir_separator_CXX # Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes # DIR into the resulting binary. hardcode_direct=$hardcode_direct_CXX # Set to "yes" if using DIR/libNAME\${shared_ext} during linking hardcodes # DIR into the resulting binary and the resulting library dependency is # "absolute",i.e impossible to change by setting \${shlibpath_var} if the # library is relocated. hardcode_direct_absolute=$hardcode_direct_absolute_CXX # Set to "yes" if using the -LDIR flag during linking hardcodes DIR # into the resulting binary. hardcode_minus_L=$hardcode_minus_L_CXX # Set to "yes" if using SHLIBPATH_VAR=DIR during linking hardcodes DIR # into the resulting binary. hardcode_shlibpath_var=$hardcode_shlibpath_var_CXX # Set to "yes" if building a shared library automatically hardcodes DIR # into the library and all subsequent libraries and executables linked # against it. hardcode_automatic=$hardcode_automatic_CXX # Set to yes if linker adds runtime paths of dependent libraries # to runtime path list. inherit_rpath=$inherit_rpath_CXX # Whether libtool must link a program against all its dependency libraries. link_all_deplibs=$link_all_deplibs_CXX # Fix the shell variable \$srcfile for the compiler. fix_srcfile_path=$lt_fix_srcfile_path_CXX # Set to "yes" if exported symbols are required. always_export_symbols=$always_export_symbols_CXX # The commands to list exported symbols. export_symbols_cmds=$lt_export_symbols_cmds_CXX # Symbols that should not be listed in the preloaded symbols. exclude_expsyms=$lt_exclude_expsyms_CXX # Symbols that must always be exported. include_expsyms=$lt_include_expsyms_CXX # Commands necessary for linking programs (against libraries) with templates. prelink_cmds=$lt_prelink_cmds_CXX # Specify filename containing input files. file_list_spec=$lt_file_list_spec_CXX # How to hardcode a shared library path into an executable. hardcode_action=$hardcode_action_CXX # The directories searched by this compiler when creating a shared library. compiler_lib_search_dirs=$lt_compiler_lib_search_dirs_CXX # Dependencies to place before and after the objects being linked to # create a shared library. predep_objects=$lt_predep_objects_CXX postdep_objects=$lt_postdep_objects_CXX predeps=$lt_predeps_CXX postdeps=$lt_postdeps_CXX # The library search path used internally by the compiler when linking # a shared library. compiler_lib_search_path=$lt_compiler_lib_search_path_CXX # ### END LIBTOOL TAG CONFIG: CXX _LT_EOF ;; esac done # for ac_tag as_fn_exit 0 _ACEOF ac_clean_files=$ac_clean_files_save test $ac_write_fail = 0 || as_fn_error $? "write failure creating $CONFIG_STATUS" "$LINENO" 5 # configure is writing to config.log, and then calls config.status. # config.status does its own redirection, appending to config.log. # Unfortunately, on DOS this fails, as config.log is still kept open # by configure, so config.status won't be able to write to it; its # output is simply discarded. So we exec the FD to /dev/null, # effectively closing config.log, so it can be properly (re)opened and # appended to by config.status. When coming back to configure, we # need to make the FD available again. if test "$no_create" != yes; then ac_cs_success=: ac_config_status_args= test "$silent" = yes && ac_config_status_args="$ac_config_status_args --quiet" exec 5>/dev/null $SHELL $CONFIG_STATUS $ac_config_status_args || ac_cs_success=false exec 5>>config.log # Use ||, not &&, to avoid exiting from the if with $? = 1, which # would make configure fail if this is the last instruction. $ac_cs_success || as_fn_exit 1 fi if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then { $as_echo "$as_me:${as_lineno-$LINENO}: WARNING: unrecognized options: $ac_unrecognized_opts" >&5 $as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} fi