IPL1 1fffQRfB@f  1Ҵfff0fff%f&$ZfYˁtu1ɠ$<0t6<t%< t< t & G 1҉)׉։>6f[fXRead error No bootable partition PUWEVfd1200?&?` WEV^J ` ` ` f)Ȏ؎ffggggggffgffI,)( RUVSu1] tPPC~jjx|t p5h1 t)Ë` uuA9|hhh =Ht3hhhDh }Y[t HHhu PpaP54hPD$u*R+u2R5|5xhh;XD%0Dth-uFj .=HGt65HhXZ$hDh-밃5UWVS$Ej PqMэvL tDt<Ȇ%=t'=t = t=thae[^_= t=tf  u1‹}Wp5HaP54hPh hmuhuW. uXZt FuuhuV uuh |ut )؉jEVP5'ujSh?uV ]jSu jVSEЃPjh,EЃuVm l  á ápH ÍuУDh5@HpTu)BAuIBAuhh'h)<hhh'WVh9-h@DS PWUVS] uEHuVS De[^ UVSUu < t< u B< t< t<-Btq< t< t=t28uF8At:u:B< w ƒ0C<,u C;B<w ƒapCtC<)u;Vwddkfdwtdaboot.config/boot/loaderboot.config: %skernel*specify_a_kernel_name*/dualserialinternal >> FreeBSD BOOT @ 0x%x: %d/%d k of memory, %s%s console Boot default: %d:%s(%d,%c)%s %s boot: Can't find %s Invalid format! Booting %d:%s(%d,%c)%s @ 0x%x Start address too low text=0x%x data=0x%x bss=0x%x symbols=[+0x%x+0x%x+0x%x+0x%x+0x%x] total=0x%x entry point=0x%x No keyboard found Keyboard found bad disklabel Error: D:0x%x C:%d H:%d S:%d %s Unknown device @O7|/-\ 08@\>`  <  ` \>C8\.@` `  ` /mnt<<< \>`  @@@<@T 08@\>`  <  ` \>C8\.@` `  ` # #\>`  @@@<@TU \> ` pF ,\>A\>\>\>HǨCA[>[>\>ASmA[>\>\>B˳Xm [>[>\>Im&$Z>>\>u A[>[>\>OA[>[>\>D.4A[>\>\>E-LGV[>[>\>Fdy_[>[>\>PX`hpxP_3[>[>\>[>[>\>vpVA[>[>\>Gz:A[>[>\>1A[>[>\>-EDA[>[>\>9^A[>[>\><jA[>[>\>OryQA[>\>\>E?A[>\>\>Ř;kA[>\>\>41fO$[>[>\>px >O_[>[>\>@4 ... . .. tarfixit-small_crunch catchmodR cp dd dfecho*Rexpr*Rkill*R ln lsmkdirR mv rmrmdirRsleepRsync*Rbsdlabel%clri*RdmesgRfdiskRmknodRmountR mount_cd9660+R mount_msdosfsRrebootrestoreswaponumount ee disklabel%rrestore% ftptelnetedit*RchownRchrootchgrpR ... . .. groupb spwd.db  protocols services# $FreeBSD: src/etc/group,v 1.28 2003/04/27 05:49:53 imp Exp $ # wheel:*:0:root daemon:*:1: kmem:*:2: sys:*:3: tty:*:4: operator:*:5:root mail:*:6: bin:*:7: news:*:8: man:*:9: games:*:13: staff:*:20: sshd:*:22: smmsp:*:25: mailnull:*:26: guest:*:31: bind:*:53: uucp:*:66: dialer:*:68: network:*:69: www:*:80: nogroup:*:65533: nobody:*:65534:  ... . .. devstand binsbin etc mntmnt1mnt2mnt3mnt4 tmp usr@.profilew#!/bin/sh -p # # Simple replacement for tar(1), using cpio(1). # # Copyright (c) 1996 Joerg Wunsch # All rights reserved. # # Redistribution and use in source and binary forms, with or without # modification, are permitted provided that the following conditions # are met: # 1. Redistributions of source code must retain the above copyright # notice, this list of conditions and the following disclaimer. # 2. Redistributions in binary form must reproduce the above copyright # notice, this list of conditions and the following disclaimer in the # documentation and/or other materials provided with the distribution. # # THIS SOFTWARE IS PROVIDED BY THE DEVELOPERS ``AS IS'' AND ANY EXPRESS OR # IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES # OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. # IN NO EVENT SHALL THE DEVELOPERS BE LIABLE FOR ANY DIRECT, INDIRECT, # INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT # NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, # DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY # THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT # (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF # THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. # # $FreeBSD: src/release/scripts/tar.sh,v 1.7 2001/04/08 23:09:21 obrien Exp $ # # # For use on the fixit floppy. External programs required: # cpio(1), find(1), test(1) # archive=${TAPE:-/dev/rsa0} blocksize="20" device="" mode="none" verbose="" usage() { echo "usage: tar -{c|t|x} [-v] [-b blocksize] [-f archive] [files...]" 1>&2 exit 64 # EX_USAGE } # # Prepend a hyphen to the first arg if necessary, so the traditional form # ``tar xvf /dev/foobar'' will work, too. More kludgy legacy forms are not # supported however. # if [ $# -lt 1 ] ; then usage fi case "$1" in -*) break ;; *) tmp="$1" shift set -- -$tmp "$@" ;; esac while getopts "ctxvb:f:" option do case $option in [ctx]) if [ $mode = "none" ] ; then mode=$option else usage fi ;; v) verbose="-v" ;; b) blocksize="${OPTARG}" ;; f) archive="${OPTARG## }" ;; *) usage ;; esac done shift $(($OPTIND - 1)) if [ "X${archive}" != "X-" ] ; then device="-F ${archive}" # else: use stdin or stdout, which is the default for cpio fi case $mode in none) usage ;; t) exec cpio -it $verbose $device --block-size="$blocksize" "$@" ;; x) exec cpio -idmu $verbose $device --block-size="$blocksize" "$@" ;; c) if [ $# -eq 0 ] ; then # use current dir -- slightly bogus set -- "." fi find "$@" -print |\ cpio -o -H ustar $verbose $device --block-size="$blocksize" exit $? ;; esac  ...a  kn}JE RM | w , ' nobody*Unprivileged user/nonexistent/sbin/nologin3nobody*Unprivileged user/nonexistent/sbin/nologinCpop*DPost Office Owner/nonexistent/sbin/nologin1poppop*DPost Office Owner/nonexistent/sbin/nologinApopbind*55Bind Sandbox//sbin/nologin35bind*55Bind Sandbox//sbin/nologin2bind*55Bind Sandbox//sbin/nologinC5bind*55Bind Sandbox//sbin/nologinBkmem*KMem Sandbox//sbin/nologin3kmem*KMem Sandbox//sbin/nologinCtty*Tty Sandbox//sbin/nologin2tty*Tty Sandbox//sbin/nologinB61$ b < b uucp*BBUUCP pseudo-user/var/spool/uucppublic/usr/libexec/uucp/uucico2uucp*BBUUCP pseudo-user/var/spool/uucppublic/usr/libexec/uucp/uucicoBsmmsp*Sendmail Submission User/var/spool/clientmqueue/sbin/nologin1smmspsmmsp*Sendmail Submission User/var/spool/clientmqueue/sbin/nologinAsmmspsshd*Secure Shell Daemon/var/empty/sbin/nologin3sshd*Secure Shell Daemon/var/empty/sbin/nologinCkmem*KMem Sandbox//sbin/nologin2kmem*KMem Sandbox//sbin/nologinBhd-)XS  q l $ $ pop*DPost Office Owner/nonexistent/sbin/nologin2pop*DPost Office Owner/nonexistent/sbin/nologinBgames* Games pseudo-user/usr/games/sbin/nologin3games* Games pseudo-user/usr/games/sbin/nologin2games* Games pseudo-user/usr/games/sbin/nologinCgames* Games pseudo-user/usr/games/sbin/nologinBtty*Tty Sandbox//sbin/nologin1ttytty*Tty Sandbox//sbin/nologinAttybin*Binaries Commands and Source//sbin/nologin1binbin*Binaries Commands and Source//sbin/nologinAbin UP`[  R M  d _   ~ www*PPWorld Wide Web Owner/nonexistent/sbin/nologin3Pwww*PPWorld Wide Web Owner/nonexistent/sbin/nologin2www*PPWorld Wide Web Owner/nonexistent/sbin/nologinCPwww*PPWorld Wide Web Owner/nonexistent/sbin/nologinBsshd*Secure Shell Daemon/var/empty/sbin/nologin1sshdsshd*Secure Shell Daemon/var/empty/sbin/nologinAsshdnews*News Subsystem//sbin/nologin3news*News Subsystem//sbin/nologin2 news*News Subsystem//sbin/nologinCnews*News Subsystem//sbin/nologinB kmem*KMem Sandbox//sbin/nologin1kmemkmem*KMem Sandbox//sbin/nologinAkmemrootCharlie &/root/bin/csh3rootCharlie &/root/bin/csh2rootCharlie &/root/bin/cshCrootCharlie &/root/bin/cshB},':5 = 8 : 3 Z nobody*Unprivileged user/nonexistent/sbin/nologin2nobody*Unprivileged user/nonexistent/sbin/nologin1nobodynobody*Unprivileged user/nonexistent/sbin/nologinBnobody*Unprivileged user/nonexistent/sbin/nologinAnobodysmmsp*Sendmail Submission User/var/spool/clientmqueue/sbin/nologin3smmsp*Sendmail Submission User/var/spool/clientmqueue/sbin/nologinCman* Mister Man Pages/usr/share/man/sbin/nologin3 man* Mister Man Pages/usr/share/man/sbin/nologin2 man* Mister Man Pages/usr/share/man/sbin/nologinC man* Mister Man Pages/usr/share/man/sbin/nologinB daemon*Owner of many system processes/root/sbin/nologin3daemon*Owner of many system processes/root/sbin/nologinCtoor*Bourne-again Superuser/root2toor*Bourne-again Superuser/rootB*FAYR i d + " ^ Z  u p   ^ Y uucp*BBUUCP pseudo-user/var/spool/uucppublic/usr/libexec/uucp/uucico3Buucp*BBUUCP pseudo-user/var/spool/uucppublic/usr/libexec/uucp/uucicoCBmailnull*Sendmail Default User/var/spool/mqueue/sbin/nologin3mailnull*Sendmail Default User/var/spool/mqueue/sbin/nologinCsshd*Secure Shell Daemon/var/empty/sbin/nologin2 sshd*Secure Shell Daemon/var/empty/sbin/nologinB man* Mister Man Pages/usr/share/man/sbin/nologin1manman* Mister Man Pages/usr/share/man/sbin/nologinAmanoperator*System &//sbin/nologin3operator*System &//sbin/nologin1operatoroperator*System &//sbin/nologinCoperator*System &//sbin/nologinAoperatordaemon*Owner of many system processes/root/sbin/nologin2daemon*Owner of many system processes/root/sbin/nologin1daemondaemon*Owner of many system processes/root/sbin/nologinBdaemon*Owner of many system processes/root/sbin/nologinAdaemontoor*Bourne-again Superuser/root1toortoor*Bourne-again Superuser/rootAtoorrootCharlie &/root/bin/csh1rootrootCharlie &/root/bin/cshArootVERSION 72NI  m h  / *  { 0 0 www*PPWorld Wide Web Owner/nonexistent/sbin/nologin1wwwwww*PPWorld Wide Web Owner/nonexistent/sbin/nologinAwwwuucp*BBUUCP pseudo-user/var/spool/uucppublic/usr/libexec/uucp/uucico1uucpuucp*BBUUCP pseudo-user/var/spool/uucppublic/usr/libexec/uucp/uucicoAuucpbind*55Bind Sandbox//sbin/nologin1bindbind*55Bind Sandbox//sbin/nologinAbindsmmsp*Sendmail Submission User/var/spool/clientmqueue/sbin/nologin2 smmsp*Sendmail Submission User/var/spool/clientmqueue/sbin/nologinB news*News Subsystem//sbin/nologin1newsnews*News Subsystem//sbin/nologinAnewsgames* Games pseudo-user/usr/games/sbin/nologin1gamesgames* Games pseudo-user/usr/games/sbin/nologinAgamesbin*Binaries Commands and Source//sbin/nologin3bin*Binaries Commands and Source//sbin/nologinCoperator*System &//sbin/nologin2operator*System &//sbin/nologinBfa*%4+ z u - ( pop*DPost Office Owner/nonexistent/sbin/nologin3Dpop*DPost Office Owner/nonexistent/sbin/nologinCDmailnull*Sendmail Default User/var/spool/mqueue/sbin/nologin2 mailnull*Sendmail Default User/var/spool/mqueue/sbin/nologin1mailnullmailnull*Sendmail Default User/var/spool/mqueue/sbin/nologinB mailnull*Sendmail Default User/var/spool/mqueue/sbin/nologinAmailnulltty*Tty Sandbox//sbin/nologin3tty*Tty Sandbox//sbin/nologinCbin*Binaries Commands and Source//sbin/nologin2bin*Binaries Commands and Source//sbin/nologinB ip 0 IP icmp 1 ICMP igmp 2 IGMP ggp 3 GGP ipencap 4 IP-ENCAP st2 5 ST2 tcp 6 TCP cbt 7 CBT egp 8 EGP igp 9 IGP bbn-rcc 10 BBN-RCC-MON nvp 11 NVP-II pup 12 PUP argus 13 ARGUS emcon 14 EMCON xnet 15 XNET chaos 16 CHAOS udp 17 UDP mux 18 MUX dcn 19 DCN-MEAS hmp 20 HMP prm 21 PRM xns-idp 22 XNS-IDP trunk-1 23 TRUNK-1 trunk-2 24 TRUNK-2 leaf-1 25 LEAF-1 leaf-2 26 LEAF-2 rdp 27 RDP irtp 28 IRTP iso-tp4 29 ISO-TP4 netblt 30 NETBLT mfe-nsp 31 MFE-NSP merit-inp 32 MERIT-INP sep 33 SEP 3pc 34 3PC idpr 35 IDPR xtp 36 XTP ddp 37 DDP idpr-cmtp 38 IDPR-CMTP tp++ 39 TP++ il 40 IL ipv6 41 IPV6 sdrp 42 SDRP ipv6-route 43 IPV6-ROUTE ipv6-frag 44 IPV6-FRAG idrp 45 IDRP rsvp 46 RSVP gre 47 GRE mhrp 48 MHRP bna 49 BNA esp 50 ESP ah 51 AH i-nlsp 52 I-NLSP swipe 53 SWIPE narp 54 NARP mobile 55 MOBILE tlsp 56 TLSP skip 57 SKIP ipv6-icmp 58 IPV6-ICMP ipv6-nonxt 59 IPV6-NONXT ipv6-opts 60 IPV6-OPTS cftp 62 CFTP sat-expak 64 SAT-EXPAK kryptolan 65 KRYPTOLAN rvd 66 RVD ippc 67 IPPC sat-mon 69 SAT-MON visa 70 VISA ipcv 71 IPCV cpnx 72 CPNX cphb 73 CPHB wsn 74 WSN pvp 75 PVP br-sat-mon 76 BR-SAT-MON sun-nd 77 SUN-ND wb-mon 78 WB-MON wb-expak 79 WB-EXPAK iso-ip 80 ISO-IP vmtp 81 VMTP secure-vmtp 82 SECURE-VMTP vines 83 VINES ttp 84 TTP nsfnet-igp 85 NSFNET-IGP dgp 86 DGP tcf 87 TCF eigrp 88 EIGRP ospf 89 OSPFIGP sprite-rpc 90 Sprite-RPC larp 91 LARP mtp 92 MTP ax.25 93 AX.25 ipip 94 IPIP micp 95 MICP scc-sp 96 SCC-SP etherip 97 ETHERIP encap 98 ENCAP gmtp 100 GMTP ifmp 101 IFMP pnni 102 PNNI pim 103 PIM aris 104 ARIS scps 105 SCPS qnx 106 QNX a/n 107 A/N ipcomp 108 IPComp snp 109 SNP compaq-peer 110 Compaq-Peer ipx-in-ip 111 IPX-in-IP vrrp 112 VRRP pgm 113 PGM l2tp 115 L2TP ddx 116 DDX iatp 117 IATP st 118 ST srp 119 SRP uti 120 UTI smp 121 SMP sm 122 SM ptp 123 PTP isis 124 ISIS fire 125 FIRE crtp 126 CRTP crudp 127 CRUDP sscopmce 128 SSCOPMCE iplt 129 IPLT sps 130 SPS pipe 131 PIPE sctp 132 SCTP fc 133 FC divert 258 DIVERT  ... ... ...# # Network services, Internet style # # Stripped-down version. # # $FreeBSD: src/release/fixit.services,v 1.4 1999/08/28 01:33:10 peter Exp $ # # WELL KNOWN PORT NUMBERS # echo 7/tcp echo 7/udp discard 9/tcp sink null discard 9/udp sink null systat 11/tcp users #Active Users systat 11/udp users #Active Users daytime 13/tcp daytime 13/udp chargen 19/tcp ttytst source #Character Generator chargen 19/udp ttytst source #Character Generator ftp-data 20/tcp #File Transfer [Default Data] ftp-data 20/udp #File Transfer [Default Data] ftp 21/tcp #File Transfer [Control] ftp 21/udp #File Transfer [Control] ssh 22/tcp #Secure Shell Login ssh 22/udp #Secure Shell Login telnet 23/tcp telnet 23/udp # 24/tcp any private mail system # 24/udp any private mail system smtp 25/tcp mail #Simple Mail Transfer smtp 25/udp mail #Simple Mail Transfer time 37/tcp timserver time 37/udp timserver domain 53/tcp #Domain Name Server domain 53/udp #Domain Name Server bootps 67/tcp dhcps #Bootstrap Protocol Server bootps 67/udp dhcps #Bootstrap Protocol Server bootpc 68/tcp dhcpc #Bootstrap Protocol Client bootpc 68/udp dhcpc #Bootstrap Protocol Client tftp 69/tcp #Trivial File Transfer tftp 69/udp #Trivial File Transfer gopher 70/tcp gopher 70/udp finger 79/tcp finger 79/udp http 80/tcp www www-http #World Wide Web HTTP http 80/udp www www-http #World Wide Web HTTP sunrpc 111/tcp rpcbind #SUN Remote Procedure Call sunrpc 111/udp rpcbind #SUN Remote Procedure Call auth 113/tcp ident tap #Authentication Service auth 113/udp ident tap #Authentication Service nntp 119/tcp usenet #Network News Transfer Protocol nntp 119/udp usenet #Network News Transfer Protocol rmt 411/tcp #Remote MT Protocol rmt 411/udp #Remote MT Protocol https 443/tcp https 443/udp # # Berkeley-specific services # exec 512/tcp #remote process execution; # authentication performed using # passwords and UNIX loppgin names biff 512/udp comsat #used by mail system to notify users # of new mail received; currently # receives messages only from # processes on the same machine login 513/tcp #remote login a la telnet; # automatic authentication performed # based on priviledged port numbers # and distributed data bases which # identify "authentication domains" who 513/udp whod #maintains data bases showing who's # logged in to machines on a local # net and the load average of the # machine cmd 514/tcp shell #like exec, but automatic # authentication is performed as for # login server syslog 514/udp printer 515/tcp spooler printer 515/udp spooler talk 517/tcp #like tenex link, but across # machine - unfortunately, doesn't # use link protocol (this is actually # just a rendezvous port from which a # tcp connection is established) talk 517/udp #like tenex link, but across # machine - unfortunately, doesn't # use link protocol (this is actually # just a rendezvous port from which a # tcp connection is established) ntalk 518/tcp ntalk 518/udp utime 519/tcp unixtime utime 519/udp unixtime efs 520/tcp #extended file name server router 520/udp route routed #local routing process (on site); # uses variant of Xerox NS routing # information protocol uucp 540/tcp uucpd uucp 540/udp uucpd uucp-rlogin 541/tcp uucp-rlogin 541/udp klogin 543/tcp # Kerberos (v4/v5) klogin 543/udp # Kerberos (v4/v5) kshell 544/tcp krcmd # Kerberos (v4/v5) kshell 544/udp krcmd # Kerberos (v4/v5) (08@HPX`hpx (08@HPX`hpx (08@HPX`hpx (08@HPX`hpx (08@HPX`hpx (08@HPX`hpx (08@HPX`hpx (08@HPX`h ... ... . ..share . ..misc . .. scsi_modes: # $FreeBSD: src/release/fixit.profile,v 1.9 2001/10/29 16:13:29 brian Exp $ export BLOCKSIZE=K export PS1="Fixit# " export EDITOR="/mnt2/stand/vi" export PAGER="/mnt2/stand/more" export SCSI_MODES="/mnt2/usr/share/misc/scsi_modes" # the root MFS doesn't have /dev/nrsa0, pick a better default for mt(1) export TAPE=/mnt2/dev/nrsa0 alias ls="ls -F" alias ll="ls -l" alias m="more -e" echo '+---------------------------------------------------------------+' echo '| You are now running from FreeBSD "fixit" media. |' echo '| ------------------------------------------------------------- |' echo "| When you're finished with this shell, please type exit. |" echo '| The fixit media is mounted as /mnt2. |' echo '| |' echo '| You might want to symlink /mnt/etc/*pwd.db and /mnt/etc/group |' echo '| to /etc after mounting a root filesystem from your disk. |' echo '| tar(1) will not restore all permissions correctly otherwise! |' echo '| |' echo '| Note: you might use the arrow keys to browse through the |' echo '| command history of this shell. |' echo '+---------------------------------------------------------------+' echo echo 'Good Luck!' echo # Make the arrow keys work; everybody will love this. set -o emacs 2>/dev/null cd / ELF 4X4 (   y yn`FreeBSDb% UWVS э}_t5~(}t"E y€8t:/uB yB:ut QK  hȦ; VWSPB# U=uA(yt(yС(yut h~~ÉUthhO~=tt h-~UWVS} t8uj/7^[^Xu=@y@yu7>tuWuVe[^_Sh.hA5 6S ZYt>uUVSj/]S^Ztp=@y@yu 1e[^3VP ZYt ;u߸UWVSu] }~N}] u[^_UWVSVh.h 5< =@yE@ytJ1>ˋE؃OE~5j Y][6h!5 >u5j q j! UUVShju] -XZhSV bw?$Xuj5S aT(=u-=u$=u=u=u =t&jSKY[5l Zthjoj5 U5j!jhY j UWVSWWEEEteyu1xv} t]u;5Y}tEU}҉Uu}te[^_Ã}uhS PvS S^tSuhv@0_X녋EjPY^S98-Aju)XZ.UWVSWW};= EEW ÃXt} [ 1 =tHÀt"D4%D4%u]S @ZtuW Yu5 Z\e[^_5hv@W! j^ @Yt?t؃@PS ^qjMX @Ytj-M @Zq:S ^!=?j^ @ZAjI*=j$@Y =t tSE==t tEuh5o 5 I}EWg ^5 [hjUWVS`5 =xzXts55xzuE1 ~*xzSPW x)uhj茴xe[^_5hv@$XZڍEPW[^u/E=sP xzYUho5hv@jUWVSp1}ju jjj ]xPjhuEPE gv ?e[^_ÃPSW x0x t!HtjW@ZYuhYuXjW[ĐUUWVSXu} EfEEEEEEEh WVv  tbA9w;$EEEEEE-E뛋(T:-()N<}}t hjt}t}t}E uE؞ 0<* jEPSs =Ev " 8t Sh1jEЀ88EfEEjVWz EEu DžXuG4H w?$}ujWu w $wh0 E}G<@Pu[^ƋWB9!zC( Sh1j裰us u U5j6jh| j UUWVSu1Dž,Dž0hu V H.$1Dž0Dž,1Dž,룻8<@w@<8T<@D/ 4(U )ƍU =Dž(t<=th0u ,ut h jDž(=#0t(,t((hLjNE hShz =v Sh1zсzz zzJ/tzv /0zzU EPhz YXEf%f=@t;N~ xjB1҃t@t$u Cthzhѫj踭hzh(Ru  P =u=tX,u 0tF4PE 0 XfeEPhzhzhìXEZUh`hh5Z j@ U UVSu`d~t& t~~t "~=u;RPhjӋ9ډ|9RPhj\Ӌ9ډY|9Oe[^hطQhJtJ!t7t ~;M~6h j辝h 5X5`耯 `Yj=P"O YZCxtuhjjj `h EEP) tC~#A u% Q~SQZ`r uh`juh#5`h65`6hhjhjœUE E EEi USuhӃZww]jhhQjcUSu"[w=w ]jhhPj$UuYx) uãhnjߛUuY ~~tjjh j谛U~St]ua[w=w jhhjfUEU~St]u [w=w jhhjUEUuyUuaU}uhEPhޣjjhEEP|} t;~#AuA Q~t}uuh@jXuhUE E EE UWVS ]jEPSEU 8=E9؉E]Ub11w$1 t[EEUEU]߉ً]ލ W]VU؉EԋERPEU,;U;EE@EExtxt`*@PƋEE׋EUU]߉ً]ލ W]VU؉EԋERPEU;UuM;EuHEUe[^_þ@ 5`hv@j蜗j"I $5`h0j萘5`h)j~UWVS ]IjEPSCEU, 8E9؉EEEUbw$XEEE EtuE]މы}ً]ߍ Eԉ]؋U؋EԅUE'}9fuuuu9J9BE@EExtxC*2@PEuUE]މы}ً]ߍ Eԉ]؋EԋU؅EUXx~W1҃}~:9uuuu99EUe[^_Ã}x}w1붃v뢃}x }1x 1E@mEaEUEI5`hv@j3j" $5`h0j'5`h)jUSt# )JtJAu;s]jw XݡUtUWVSQQ=dtZ ɉtC< t It C< uue[^_ÍADd1)Å59v¡E^19;C tEAF9;C u塈)ȃ 9so)P tP RVl ;s(=5Cj ZΡt; t $tC< tBtC< u롈udZHOH ;R)P5ʸ >19s;C AF9s;C uU҉uà R$)P5f )P tH QR U VSt#5)KtKFu95rQ2H9rx 9s} @;sR)9Уsue[^áR)P5] j[)YSV5<  ]I9T9 tFU=Su]5hCK A[9[r y t=9s )ЍXSR5誶  H9r€8 t뷐Uhj5u |h"jh<jhHFt ~~ ~B~t)~~~B~u@u@uj UWVSbhq~~Ywv B=h#~X-9ЉsP ^P [ѡ  ~%h=`~tJ!1۩tdwJ4CvjEPؼME8e[^_RU Y빡w4CvRc Z1۩t 4Cvh4CvH 1ҋUE}5ы]ލ ]uEu5 @5hZj  o5 PhhjHP _t hv~HhusP5 @t=Q5hv@b~Hhu"P5  밸ܸjjP @5hjUSdEP]su@ZYEf%f=f= tAf=`t;jjjs Bt K]@u8uKEPhzf@s @t>UtKEf%f= uuK tKڃK dshv@j,UWS t3   9r9~t= 1555( \~}5hv@'XZ~+~uMt0t(,HP55  j[j1RP5 у 85hv@;_X!9%~t e[_5j 5 V5hv@jU=W==;t|~t2t) 9su>)=1=u~~ tj9Y})Qj 5S zpfUWVSQ}E:=1~ t19sM<@9rO}E15~~ؙ]0499tQu3t =ht)a5hhXZ5hjT)=9ue[^_áR)P5@ ;=t뗃뇅t#8u15hv@j褆5hI~~ tP}t~~j5~5~5? BtP}u5~~Vu5à Iju5r @u5h j?1=UWSjxPkؼڍ|څx%8XɞݝpZݝp55555 555h`jd]S 1у,IQSj ,(ȃ tIЃ ȻtS5,5(hjd]Sn 1IQSj@$ $  tIЃ ȻtS5$5 hjd]S 1IQSj$4R0P,$xP]Eܵp$tpRPh]jdS 1у$IQSje[_-vUS[U1}PUWVSҡ- ‹=Eue[^_W55 ~!t )u = u뾅u,~~w ~~~}u5hv@詄EXZ1ҋUE}5ы]ލ j]uEu5 B@i8hhʹjqhݹje5hv@jCUWVS  [ҡ<119|=9s9555k ~#9ס|9rǍe[^_@ZEPhm5fEE @/9ӡ|9s555 ;u(9ӡ|]9rT5hjEEPhm5fE% @}h hʹ1ҋUE}5ы]ލ j]uEu5g B@Q85hv@jJUUWVSDžlȽDžhh̽u u ?5$HPL~hڽPYhPLxTih븃hu P hh@;hX); hu lhj)(U )EjpPU 誫Ít1XZ~$1ߋpPtPYOXuU :DždEPU 22ZYEf%f= tE 8SWYZYxP}t)tPSXZE U :ude[^_1tStPnY^Whv@Džd묋E 0DžXqU h`א ÅXSB ^h`jPlt-E 0hv@JDždWSh "VWSZYu tPVƅ^XjW빋U 2hv@~DždSh~SDžd h3~_DždE 0DžXZU 2hSpPËdt 9}z1ߋpPtPXOZu~RDž`1߃=Hu pD02utP`pPv[X`Ouj} UWVSPjEP軨1[9X}&1ۋEuP ZYtF9|1e[^_]CLUWVS}EEEE 9EE}b]E]uCS9sЋK9ʉCsʉSh;Rh޾PhӾ] hL Y>h@hD貥HSD^9_sЉC2UWVS=Pu JE1эA9sЋNUɉZ=P9NjF P 9Ys؋NUɉBzP9E^ +^ؙS9ZsNUɉBZ tf=P9}\NjFP9_s؋UB F+FZPz9Ys؋MYAvb9Zs؋UBe[^_Éș=PF뢉ȋ^ +^=PWș=PF hPEP$[_UMVS1ۅ~Ⱥ ֙C[^مɻU5jRjh j@G UWVSjj]Sjhuc ^hjjSPhE;U$1EP E[1;uE}]GF$;u|}u+}~ hvXu u 1e[^_ËEUDP EZtEn@o1Ã;u|Cu u Ej U4S英 E<1э\ ,U4F C;u|뫍GP耆 E{Y$hv5hu.h thuh t UVS] 1ۋut;u1=e[^3V ZYt ;uաUWVS]1tW;ntk1;t 8,tZ@8uPS Yt2ؿj,PC% [Zt @Ge[^_hu1G룀{ouUUWVS] 38;t>1у{Au v€z\tNP3jE ;u&;u…t e[^1_jhj jhj  ǀzcuA1rUUVSj ]u ZtXpe[^hjJrUVSPj u ÅXtLV CYt>=t'j EPV E 8@e[^j EPV9 hjqUUHvËBE UWVS}1҅ɸtU11҃tLw=t@j jw|ÉS 8"t;w? _w1ҍe[^_j jw萹 Ɖ jjpUVSuHwe[^j ÅXtvvhjS豮 ^hjpUE8UWS1t5B1tQtSEe[_À{=u<t< !uո>Ph! ZYtUVS];uC Ce[^ËC18u S?Y tSC uUVSu] hjh" tRC 8u&pph.T Ee[^CpjD [hfZuhSV teuۡ(z5jjh3 j^ UhPjnUVS]Su YtSe[^VUVSu] VYu S}Zt'VS[^EE e[^Se[^UWVSuV} [u W~YtEV&W wv|[Z1RPVGWAe[^_VMWGV_O1ڋF1ȉ UWVSSSuYu u ZtSuu E puv^_1RPuu e[^_uu EEEu XV9ӋHF|9wEEuuUWVSSSu=Yu u 0ZtQuu E puv$^_1RPWuu e[^_uu EEEu XV9ӋHF|9rEEuuUWVSSSuzYu u mZtSuu E puva^_1RPu*u "e[^_u,u $EEEu XV9ӋHF|9sEEuuUWVSSSuYu u ZtSuNu FE puv蜰^_1RPueu ]e[^_ugu _EEEu XV9ӋHF|9vEEuuUWVSuV} Zu W[tEVWwvZY1RPVWe[^_VWV_O1ڋF1ȉ UU WVSEM]u}x~=x~.~x1[^_Åyyxwݸ܃v˃vUWVSuV} [tWY tr=tUGFWVRP/ppwwvvA uVWe[^_hjmiGFRPYXh]UVSVVEMU EȉU5U uE^Z[^ڃىUMY[[^UWVSuV} 8 [tW+Y tr=tUF+GVWRPGppwwvv\ uVWe[^_hjhF+GRPXZh]UWVSVVM Uȋ]u1 Љ]u]utQRVSM;Ute[^_1;EuUWVSuI [u 6Y =UBRUEM Yq}] ]uEu!ppU rrMqq uuu e[^_hjUgU BMARP_Xh]UE 5 EUMuAt1BuUWVS}Wu ; [V*Y VF tq=tSRPwwЯRP2vvwwluWVe[^_hjvfG~RPXZhrh]UWVS}Wu [tkVuY t^VF tF=t1RPww苬RPXZWVe[^_ËG~Йhrjeh]UWVS0}Wu jE puV*jEPjwV^uc]ȋMĉ uW}x:WEEGP^Wku cEPe[^_ËE)ȋURPXZȃ}ujjhhSVPBShv@jdUVS5)t}PRc YZtQҍptCPR5 ZYt#DX1ҍe[^ÍP׼ Y뽍P˼ Z냃''J'@UWV=S 61f6 l= 6t" x9@6t" x9==~%= t Ye[^_tx ft;vB-;s5@BfrBBthUYIhPEX@)Cw$?)‹ 2) ut{?&tx 9tM?f9s*BfrBt@뱍BA= fBAx= a1C y ҋB2r^X2r2rI2r2r2r62r2r2r2re2rIy2rGj2r[2rmL9sR@BfrBB !HtV  (UUWVS}] EƺEM׉M}~}t5jJ=wluj EP3: E :E8}~E쀋EHvR7_E4 3 1랺u׉M}EƸuEZM}~3uM}u1}t;j EP3O  :tE8t Rhp_XZMuV uQ.@Y_u3hv@U^3+X^ERh_n^ E8-7x--@MQv|R Y%t3=wUqj EP3c E :tE8t Rhj\}R41뵡D4ZUVSjhuV> uV4 = ZYt C~e[^Uuh@]5j UVSuV4 m YXttVj C XZ~׍e[^Vj Uhhhhh5 j; UUWVS`j/] 3Y_F8HuPhSu @t()E}tx$< js3 PEhSu诱 tf?7wK$(  (넡()E(H u< $-u=}}}E=ttEPVӶ_Zu Ef%f=tQEPV޶ZYt Vhv@j3YEf%f=@t1193tjV3A ǃ 93uW_ 벃}kjh~3&UWVS`=(}u }<]SV ZYuEf%f=@=EPVߵZ=Yt= tuLVW$ZYu,=u 1e[^_WPVh"> Vhv@Y5, Vh5  tt  t@uytYt5j jh'谐 V褹[HSVY[Ef%f=@j/WL[Zt;@PVh(hS =?WEPW謴[ZuEf%f=@LUh5h`hh5 j' UUE @@E E@@EUE@@U E B@EΜUE H& sMqhy#& BN8^WY[EUWVSE1=x=t.EPc $SjP]S/5Su ]ûЋM9~!9}=t룻뜃=t댻j y X\j9#.8dZ4U=Ut @t1j/w%=t8=w=t=@tσItj*j|=t =uj%j=j@UVS Efx2u}p@hv@hP( hSV蝚 thƄ({ Se[^E0M $Vh5^t p@@ph(hP xUSSS=x]E Ut}RP,$EP]{EɉٞYt=A0Puuv1PCPh ]øzh`Sh RPSh\ USSS]ٞzIuG11Ƀw+ńR ŀP,$x]E;ȋ]-$x Z Y1UWVS] f{2}s@hv@hPC Cu}t)uo9YhP7S >E}tXP6YZt1ۅuE>u}tP6臖@Y[u6hv@n6XEZP6ȒYZx=t6 Xr8th8t6hv@6XZn6i$uh1jY5u衛 UWVS|E ufEfEDžx>/GDž|1${u|PVYZxF=u4u/Ct|utxe[^_EPy[V Xd8t Z8u,EPVYZxEf%f=@tt'/Vhv@4XZDžxsEPYE0jfE%?PڒXDž|Z[ZPjuh=ZY} Pt'PEPhS55h (6UWVSjjuuE EF@9s+v@g ZRF@jhu  y9t8u u 臏_tu hv@/u詏e[^_55uď ~LS5W蚏 9tu hv@.Y[u Zu uGWu hq.^Xu#f^vv f%WfEIFPWY[舆vDW1[ZFEF EEPu EEYZYuYW虎[tu hv@-u>Yu%=u1u uh uhqu h|-^Xԅ8-tvDu h- H~D>EPu ha- vv u h@F- EPu h.ff u;h-P$ YsuUWVSS躍jEPR`" @EtPhh,e[^_襄tJjEPR" @t,Euu1Phhh?,hhjuhhhvh+hhv@, jhhju u=ht)Phvhٹhhv@+$문Uh h`h5c j@. UUWVSj/] 3_XZF 1hPSu tP&w^$닾 zk()E}=t e[^1_~ S Ӊ;Ytj5r ZtSTX5 ShSu @t$ ()E}t S봋3UWV1=St=u=u=t1=t jPuX UVB\ÅX&C4H $(sb: $sh0j(=us~@j5wÅXZxI5h@Sw ;t"5h#Slwe[^SZwX1j hjhPR5jhS?$h,jh8S*@Phh2S S"^tPhv@6SgS=Yfj hjhP5jhS$h=jh8Sh@h hCS SZlSKhj5UWVSj5%v_XKjjjSy h h@S%v= .Sujh @P}tj hjhP5jhS$hLjh8ShjhQS S^t$S*e[^_1RHP55\1ۃ9ӣ u9uf1ft51҃t)AÃ9|5je5h[jS5hcjQUWVSQ} u5h|V;L =fGfH4hVL GPjhVK GPjhVK Vjjh!J GXGXGXVj LK w(hVK w,hVK w0hV{K w8hVmK w4hV_K $wK GJPhV.K $GLPh,VK GNPh;V K wPhVJ $wThVJ Vj jhMI EE|\HEyE1;]gVjjhI PhYVJ Vj9jh@iI fEt;u!E9E|ue[^_UR s3EaPhiV"J C <4@h{VI C at޹޹ ޹ x޹+޹ ޹ ޹ ;޹ ޹B<{‹M a9sTPu O~u "1[e[^_SB`Ph5B ,Sh5B j j U BT j j U BPj jw =wU fBNSh&:j j/ =wʋU fBLNj j H =wU fBJj j H =bU fBHj j 0U B 땃$su[$rj j wM fAPhh58> Pc _Zu-U $fBi|DžOh5= UWVS u}U E_W@j ǍEPS ‹EtLu*L*t!Suh5a= e[^_ËMWj ǍEPSU ‹Etfuf<*tEPW@Xsr>H@MQ UB tvlt1:tW&j jS MAtԅt Wj jW M1qA uh@5:< utnWj jS< UBjtWj jS M1qA tWqj jW UfB!1Ҹ@M q(U9sBB fBMAA fA@=wSu0w EP Suh56; 1҃j jSI ƒ 1SP` ZY28uhSuh}UWVS(}E=Ex(Uz,oMy0DEx4UfzHMy8u A0A,A8Ex<u U@4B8Bt.BЃ w kE DЉEC;]uǃ}uj PXjM Et}tEEEE랃}t =EEE Ee[^_:UVS ]Shd@58 EShd@5]8 ES hd@5 8 u}uEEEPhd@57 uD1REPuV]S!1ERPVS!e[^$??Uhjj @tf=Uth1hU=t j&1hjj @uh@SUWVuhd蘼5 5jdh +t{1 Ɓ= tX lt9 pt& qt u e^_1jB= UWVSu1Vuhٻ5 5jdh l1 Ɓ 1҄tsЅҹ   t|AtBЃ wk \Au t3 t.th h._X@E e[^_t t uAtӃ t t1At t tej< UWVS ] 3uh诺5jdVQ1Ɓ 1tj…t  t{"tX3t t tFt t u1;эQ  B~@e[^_F3tÃ"tFt"uFy t tjUVSu1۹@9tC|\[^ËAUWV0Ph.n^1@Y^jh@Vq uajPj}WV.pu8+@P, ZtA)4>e^_PhjPhthjhUjUMS] ACACACACACQA fCACA C Q A  fC A C A C QA fC1ҊD DBv[US] UCBCBCBCBCBfCBfBCBC B fC B fB C B C B fCBfB1ɊD DAv[ÐUU5j4jh j8 UVSPux+j EPV_+ 8uE8ue[^Vhv@jMu VhjMUS];t"S?Zt@]hSyZYhjUS];t"S蹢Zt@]hS?Y[h@jUWVSEu vFu8tj- 1҃=t>1)ʃ>uR= Y=t%6S X~Zt hS _X>uSuh xhKH h%HYH[,hH^H_h,HHXZ;u ;޻sahjUWVS]CUWVSVjEP}'YN[x:EWP*# YZt(EWLP# YZtNy1e[^_ËEUWV} S]tE 8u ؍e[^_Åt;uu XtS X1Љ߃΋} ֍4Vj DžXtu ShVW/V hjUWVSPPE EEhEPQZEYt\Ut<-t(u;tȋEUCC봋Mj=Rt C^E_tE@U֋M e[^_UWVS}] ^hSkhS`uEEEEhEPZEYtB}t+}tuuM^E_uSuC u; uEu[^hEPZEY1}уQ ÅXfnoCuSR SuvS Ƌ}8tuuEoEPu/_Xu Ee[^_hhjUWVSQE} tV8tQtM?tHÉEhEP!ƅXZt*VW YZt݀;,tFCuK,Ȁ>tCe[^_Uhhh h5j?' UWVSV]s0P{P6ZYhP'ZYh3PZYh(P ZYzhPZY`hPZYBh"PZY$hPZYhPZYhPZYhPZYUVStu] E(hSV t,?totjEPh5()ƃtUE1EE[PRShȽEdx 1e[^t.tuhv@~XZSuhS Et SuhSuhU5j+jh j# UWVSE EEEEEuME^uhVW ƅXZ>nEj=Vn Y[t@];u8;t({ tME;Ct C!1랋C M=puk1эyWRV輞 u t<=t;u둀~ofE^EEe[^_O jj^VhjaUUSM :t:/t$BA:u)H~y/t[Az/uB:/uЀz/tUS`] Su ZYt/EPStZYuEf%f=@u]Shj@ǻ0_$Sh0j@諻UVS] 1ۋut;u1=e[^3V7 ZYt ;uաUWVS]1tW;ntk1;t 8,tZ@8uP Yt2ؿj,Pl [Zt @Ge[^_hx1G룀{ouUUWVSt1u] DžhDžpDžlEhvSV ?7wk$xpЃpǃp뾃p뵍pPlPh5 뒃p5O_Eukh`()ƃtt;Ps%WWlp}DžxtDž|Et,tPltPhxKj WnE[thtPh+XZ뭃ht h YEthv@jU5jGjh j@* UVS,juY^Phc@S @)ƍFdtfPhcSƅƅ{ @t8SwZx u Hye[^ÅxS?ڐUWVSE EEEEEuE^uhVƅXZ>nEj=VGi Y[t@];u8;t({ tME;Ct C!1랋C M=uk1эyWRV< u t<=t;u둀~ofE^EEe[^_ jj޵VhjUUSM :t:/t$BA:u)H~y/t[Az/uB:/uЀz/tUS`] Su|ZYt/EPSZYuEf%f=@u]Shj@G0$Sh0j@+UUWVSd1]u DžDžDžDžDžhVS  9<$̃5dP@ _X5dP5DžXj^5#fDžЍPPh5>5Dž덋(B9tPtiSS1dDžlhtt u\PW@ZYt}u u u f%fdPPh§5xj Shv@jG讲WhUS]S譶Yt@]Éيt#=w"tCۄu QIZ1QhjCWUS]SZt@]Éيt#=w"tCۄu QH[1QhjCUVSQu01ۃ<vt3x/E8u'e[^jEP5ƒ Vh1j@蝲Uh hh5j@ UWVSE DžP8/ PhhTSD EhS6^L_11tW YjjPPjL+ljrD4%@tC܀;tEPEPEPEPEPEPEPURhSp(1ɍDA]fS~FJ1DW. jjPPjLrljD4%@tC܀;tEPEPEPEPEPEPEPURhS(2D1Ɂ„DAB~FDG]1HWj jjPPjLljD4%@tC܀;tEPEPEPEPEPEPEPURhS(uEH1ɁDAB~FHKW L e[^_PVhjA路RmZXPVh PVh`REYlPVhPVhRZPVh 돉 Shv@jB)UVS] Sju"ZYtg1ۉځʀwL4ځʀw 4C~e[^RqZRYShv@jN蜭UWVSE EEEEEuuE^uhVƅXZ>nEj=V_ Y[t@];u8;t({ tME;Ct C!1랋C M= uk1эyWRV u t<=t;u둀~ofE^EEe[^_w jj膬Vhj艭UUSM :t:/t$BA:u)H~y/t[Az/uB:/uЀz/tUS`] Su$ZYt/EPS ZYuEf%f=@u]Shj@0臾$Sh0j@ӬUUWVShj/] 3ZY@P ^_E1EEEhSu tVF2w5$LMСEE븃ME뤁M@E뒋E%=L tj}t uYthh$hh%  ~Jjh9P jhPS }1IQuS $jhcS S }u:8m=Gj"jhShYjhhfho; }um jjP @_Zjj>jj5 @jԫ1^R}u# j踫99YtC~׻j j @_Ztf P臫C^5j'jhS u[0߻$jj @ZYqtRhj8u8:hjݨhj"jhʧ费Sh PzYzsE#h j莩U=tʧPh` 5uj UPPjjEPEPhEL"uEh趪1UUVSj?}X h ÅXE PEP#^Xhu u' :B+$H j P5@PH‹ 8uh!5h\oH`UTFX7j P5Fh‹ 8uh!s5hj`LddP()EE =du h"jXhjHZY.hjHZY 5SSIBY}[uU BEE BdR&$ Cj&j>XZh.>S)h.` $j517%jh.6<VfC=LH=Lt5jjh@S h.f>j%X=LZt5jjh[ h jh(. h.S#j~0$Y=H[t4=Lt5jjh@" hYjh8( jh.@;=Lt5jjhtr j=j!%^=LXt5jjhB h jh', Bj$j6=^XEHE@hVE 0E  VjthԭPVf' EHE@uAjs$j<EHYE@[tThVE 0E Vjt=XtVbZhGSV& EHE@u!j.=HXt"j3jj^Xjjx^XPRh`"jUh"h#h`#h#h#h5j(3UWVSE U0NM9-P ËE X }1Q EE_EU:tKMЃftxfbtj}uE-@EEUMAMEE8u}tUM uE +CUe[^_Ë>tG1уQ- Yt>-MB6BP^XZvsGPh $ߣejj1UWVS@ hPh.nEEE@EE؍ELE E  h 詗Zt}plEPhPPP?9wj$ 1I~ 9u:WSgÅXM=XuhGSW#0W^^捅Ph`$5 hh$h$hh%h %h`%h%h%h &h@&hh&h&hh*hFh&5L1I~_9J=Hu"5jjhe: HI5jjhx H؍1I~"9WeYP.HZtWPZYWh1I~f9gS'0^tf@fthTrS'Sh;1I~9zmj)=H[ulꍵ1I~.91I~A9rPP61I~l9-tPh!5jjh 1I~y9e[^_Í1I ~ 9j8(X1I~9^=Lu5jjhN L5jjh/ L1I~9D1I~EPEECXUWVSu~] ~JuF+FV4u6EUDFH Fte[^_ÍFPY=p5j jh" 5C 5HHhh貇 K= t1I   @Sh^4Z8Yph5p8[_p=/tuhuh(hS- uuSv FPjj@uOxFFv4h 5 uuh 룣pcuuuEUDaH t tquitC@UVS]< < < u t+< t't#\tg't#"tCF< t< tue[^C8ttȀCF8tuCuPh5K Ct5j"jh ' C< t< tMUWVSS]޿t޿+-E 1ҋ} Ή߃эL;M#Su E EZ8YtUB8tƸt]uƄ(Q=>RPS~XS hPPh.5Xu 5j w e[^_h}j _Xt ;s5j ( s *;^shJ\Y5jjhc TMQu1Dža} ʋ}щE Ӄ 9 u1*EP)ljEIfMY[UVSu ]FP~)C8Zt#=Lu@8uf+C=HfCt~ IDHucC ^FЃw$ Ph'5 C e[^6,"ZuC /C #C @C =C %uk$Ytf@ftC *C y?;UWVS M k E]9EEEEs69sC9E}E{ tE{ tE ;]rʃ}tE}tE=Lt/E~ әE܅EU܍DEQE}uTЙ19ƉEE9}}uukE ]Ã=L}5sX}Zu_kE ;EsB[;]}U)ډ5j eYKXu]E]9}|F;uue[^_5j XZ5C PfCYX5C PfCYXX3uhv5EfC@fC%UVSuVIÅXte=Lu;t=Hu IDHtt/CC@PCPhi e[^1UVSuu YtV=HuIDHt2=Lu;t$3%ZtfF1e[^fF@UE @E E@ETU=dith{VZtÃ=tjh fjUVu NS1ۃ=TáDHt;=Lt}5tP0XZuVh5e[^UWVSt1M =TIʉEDHu}u*=Hu Ee[^_Vh5 ߃} =Xuu h]S tNu ÅXtS $VZYtWu V! t fKlPtNYu SU=dis=Lf6UM S1ۃ=TIDHu؋]u\…XtfBzfBtR!XUWV=LS'j_tU=LCPJHу{tDHtSPSX![^u;5THre[^_VYtONHu4=HuD{t0SKsC [XZuF;5THrS!NS S $h5p 5jjhG 5jjh+ UWVS M IEEEDHtEuDžXt"wMwƅX9tEu YƅXt^Mt9[uEnEtE9F;E,M}E$l fN=Hu Ee[^_VFQ$uut$h5u uh'5uu u }tfK=HtSPK^fFftm~tJMuu u~fH =H@SP$uu$h FVE$uh (DuV$"JuVKfN}VfVЃfDfV8=Hu Euu&$h5у}t%}tfO=H]WcfOWKWEPu uY}t fKPIYuu$h5Q }t W9H_4WJWSXZ!uuW$hPfVЃf~tD ft3vF uu u5ƃfN[VGXu 3_t(~t h`(VIMY[VJVvXZuuu u=PHhmVMXZEG;E9}t9=HuWGY1eiWv$h(5 W^IW[_lj%hyOXUS]`|NILd`uXu=u"u a]hh`XZhh`YXhh`nXZhh`[YXUWV=LS ;=THrz5t^t {t[uv ue[^_f{u7=HuSHHSXZS2$h5 hSSKY_WYtMxtGODHt,^t%f{u=Hu#SGSmXZ[uG;=THrS$h5 5jjh׾ UWV=LSu`1۾t{t3s uu܋thSeJ[ ^_ue[^_ËC SkFSXGZ5j jh(L UWV=dRS{=LR5luXZjxIXTH9dH=lre[^_VTI;dH[dH9tHPVh )5Ҿ2l9tPuT2Y=l[TH9dHrV6ÅXtKfCft0fCfuS$.fcXSEfcXh-SIXZhELYVYt6S$h[5fcV^H;dHrVhrKXZ5jjh =L5j"jh@)蘼 yUWVSQQ=Ljf`H)%X1jGETHHPGǃ ulEGWEG9}XZddH9v;THs =l&;THPXG;5dHXvE9lE9l;5dHr[;5dHm9eVUÅXt-S2$S,Efc9lY5h0+h=J^VÅXt6S$h[5NfcVF;dHrbhIX0a0;5dHE9ltujf`H#/Xve[^_5jjh蠺 UWVSj5_t$=LfFfvu=L;THDžre[^_YtXtfCfu[u;THrV$WX~ZtjSa$WB fcj5j jh蜹 GV($Cff[5jjhg U=LVSue;5THre[^VYt!fSЃ{fCt(f{u[uF;5THrhSDXZ߃fS5jjhظ UWVSSuV} ExYtZW\9ZtEt 9t:@uWh\G_X{t Ee[^_Ã}th S@D[^uVh 5W1ȐUVS=Lch: [t8uA5@HVhGh賽d1h.nP質ZYt!8tPV.^X1t3ύe[^É@x/tUWVSuu 1҅[tQpp5L.1эY 5L.Yt&@9uSVGP uԉe[^_1UWVS1;u ]=L%fS)ljЃfu9C 9=LfCft =Lu_C S9s =Lu-=Lu;u he[^_5j XZPRh*5f5jjhy= 5jjh$ Wփ;tS_ShA6Y_US]fC fC=0CPSHP SУ]5D.hjf+hHfHt U5D.j5hHf+fH1 5D.膭@.UWS] 1߹BUCj{RW覴1IKfɃ fKe[_UWVS}W] u9Zt+)xG%0jRP7k %Gue[^_hG P7G Sh +5] UWVSQExEH;H]ˍS UfRftu)9gUB{ us.n18t2U;THr"=HtPh`+5 hMe[^_Ã=Hu1Ph+5苯 @)h PU2U B=Ht5jjh) UVSu/<^u 1e[^PJ[thLvvP!US]3 X]] USjj]j3 +CC]USjuYX1th  Zt@]S1UWVS@=Lh:6 Yt8uAdrR=#xhh `DžXZWu^Wj4jEPWuyƠdUWVS}=7}t@h0%=P_5HH;^5HHY=llPH@3P_=H5jjh] l=d=LVh55Ì hIh8<X=<Zu&=LoVh45r VjVh8x H5lH5hHVPVEPVɮEPV迮 @DUtt@DttUhhf`HUWVShDlD=@DDž=XDTt hHMX=h1;D}v=7u D (P Ⱦ9^C;D|h@DHYu(x~x=@DS=HuA~ PPUXZh@D e[^_575Hh45`랃{돃x :C;D6=7u Dt Pv^C;D| ~!PPUDž_Xx wʋ -빃~2xn~Y PPUXDžZx~Ph3U hv߁w -h7E_uhdXLU=\tu u57 @u苨0La$5H5dHh55虈UE jRP57J Bt@u:0`$5H5dHh@55HjU<E =U<U E8SPRh85Hh55jYU5Hh55ڇj9US] Su57s 7]UhykE 7UUWVSQEE3;3WPH~ 31҉DKu=3u3=PH 1=3WP*XZ=u(PH93}~=HPH3t us~"PH 9t)ޅtub=L=u&l@Pl3XuW2hh353Vjr h533uJr 7e[^_áPH PVh6 5jjhɄ =5jjh譄 `HH5jjhv =PtPH 1=3=t;jSZY 0]$h5'jjRS5ڰ Љу hL[n5Hh5Є E%5jjh 5dHh t =Lu؉י3PSh@65eӉ5jjh%5 J3WP5荬à  3hPB3PHUS~31҉DIu=3 P53[X~du:ȉә=LPH3u]PhB5n hh6Qh65Nj0[$hZ5( P535u XUx=u PXUS]SAC=TY=l=k"P<=TZtGC=lt==kt 1҉Ћ]5j)jh6e 5j'jh 7Q ʃ=Lu=LLS1҅Yt=LBB7$ CC(K,~D7=HCTu S;X19}@9|벁{luC|s&ss0CXS\s8C`Kd*CRh`7XZ ShoPhYxPh}5jjh I5j)jh6k 5j'jh 7W UWVS}?=t_3w$5jjh  7H39tPRh755j [^71҃t&19}7u tB@9|G3753e[^_5h5z Y5h75jjh05jjh5jjh~ у u5j ~`RPh5~UWVSuH'f`HfbHdH>G$1;}ukC;|V[tF;@HZYt҃t~Ph85-~ e[^_ÍPwXh Y5@Dh2 XZfF fbHhHlHpHFHtHFXxHF4HF`|HF;NuIt'5H5dHWh@85|1e[^_ø3ZǃNXuUE Pu5}US] KMxAQKy[US] KUx BJBJJBKy[US] KUx4 BJBJJBJBBJBJJBKỷ[UVSu1Ҁ>] t$0Gwh$ k TF>u܍e[^ÅuF1uRS/XZuRSGuRSPh85v{jUEPhYMEÐUWVSj/}W[^t8t >/tF>ue[^_WYt fK/jWZ0WPPUWVSufF fuXfN VS$S薋6'V@$1INV$Sue[^_h8V?_XUVS]s1Yt89t @Ft,9ut$sVhth{h <~e[ <^hSXZU=\VSu] t'=Lue[^SVh5ySV ZYy莙0OR$SVh85yUVSu~t hVYXZV =\Xt&=Lue[^Sh5Vy hSJZYyɃ=`ufN@0Q$Sh5yUS]{t hSYX{uqfCfCSf=\Xt$=Lu]Sh5x S薜Yyh0)Q$Sh5xh 9SBXZUS]{t hS&XZfCfCS=\Yt$=Lu]Sh5x PZyΗ0P$Sh5wUWVS`=`u} t =\}}tuh&i1e[^_Ã=\t6=Lt&V}W?tHPhM5dwWVSYXyEPV蹚YZu}u*y0O$VWh@95whjV蛝YZuWVuV胝뱃=\IWVޜZY8菖0PO$VWh9W薞[U=\S]t)=Lu ]Shd5pv jhS y0N$Sh957v1US]{t hxSXZfCfCS=\Yt$=Lu]Sh5u PZy葕0RN$Sh:5uUS];THr؋]S,Ytxt f@fuC;THrUS]w؋]SZtxt f@fuKwUS]u h5uS$h 5ts$h5tC$CCuxC uS{tFPh5tsh5tSY]E E7P$h5Qt P$h 53t gP$h# 5t ?P$h8 5s U @|NILS$@] @fCffC ffCfugfCfuHfCfu)fC@fu !@]hJ h @蝄[XhS h @芄XZhY h @wYXh^ h @dXZhg h @QYXdhp h @;XZ>UVSuV谾1ۅYttKDHuVhy 5r e[^UVSuVh 5r5z 5HH2à t5HH Zt1ue[^Ãytnu1UE Pu5 =Pth hHZuh ZHYtjZ UuJZ1҅$Duhj !h DXYUSh@:Y| Huكڸ |tPjj|PCPDžtDžxKtPh|P5u ~2({ Ƅ(|t'P|P5$Dh j UVS =Đj@5$D<Y^|5$DVZC$Dh S ÅX>hhSVȐ0Đ@Ph$D| D5$Dh:5pPH =E~EE}~+jEPhh5 D臔y mjEPhh5 D\jEPjj5 DE@(x7jEPjj5 DExe[^h m[h:`^V5$Dh n̻ Ȑ0h h~衾YĐ[t%PȐZ,h h!j UWV}S?t5Àu7w>D4%u _t-uF>u˸e[^_Wh#!1S ZUVSu uVh9!hSSVe[^U=thE!hRUWVS u hH!j]S@Sh3x19| e[^_É)PEP5 D ~9|jYUWVS u VhM!j]S1IQS5 D蜕Vu5 D荕(h{e[^_UWS uhM!j]Su1IQS5 DCe[_Uu u5 D(UhUSPu uhR!jP]SSh!]UWV=St 1e[^_h޲h^[1MXGeFKvMUSU x%RuhZ!hSShb!]UWVSPP} E1ۉE}؉IQR5 D2‹}I 9tjX}}e[^_UWS j]SEZ5mXȾM뵡M뤃}L53EMt(9Ǎ =Mt }Mt@1}ԹhАEPjRُtP$5Mh0js*Ytjjjjju蕐 EP DžX~OEEEEuău+ [;Eu3ZYtE;uqukPhv@j'u8Eh:EX hj'UWVS4pԐs.nt^CEƸ;t$utuu"EPsR@^_tus ZYtpu1e[^_Ë{1Q蘀 ƅXtMsVqu.uV=1ۃutV虁 릃=Ԑthc?j'hj&UWVSPRPuDžDžDž {n1}эA~U€z/,RPRuO EP8u 莀 [u ZYt e[^_jVjjjVjjPPM8_jVjSt܄ZYu$S IVSh@q'jVjr%j@ÅXZth{{T1}эA~U€z/UDPRPuUviuoSuut8+unhy?ju"h@E&~ 1p~ ^PPPScHBU€z/tW16ƃ1I_tq+SCPCI :V.I V} IHBU€z/tEhj"UWVS1}Թ8EEEEEEu:1uuRYu e[^_5Mu w_Z/=M }tMu}u1h~?jhu+EEGuujh2 Sh"jW t%h?WY[Puh0$;u uI| P PRGWP V5MSu^ 5M; t Suh A# h?^tu uh? u h?"Xu3ÅXtpj:S]_Xt'EEEPEPju}t,^jEPjju0%Eh?"[hjI UWV=ؐS}]=ܐr1҃w8$D?ؐKx&}t}tc}t}tKy1ҍe[^_áMuLPZYuҡܐ<tDžt M<5M봡MuPSZYuܐ<st M<5MVLlؐK]ܐ<tKy?Mu LP~ZYu5MuP~Y^uܐ=MWL1;ؐ1ܐ<tC;ؐrMu LPf~YZu5MuPI~^Zuܐ낋ؐ1Kx*MuP~ZYuGKyۋؐKx5MuP}ZYu <u"OKyOMSL5Mx 5ܐx 5x ؐj@PK Yܐ^t>ؐj@PK ^ZXhM&Z1҅ؐ{*h?jNUWVSMU A:Bt [^_t,uB9Aqzu։9(ǍqzU=MVSut =Аu e[^Åt)АtsvbYZtՋ[uvu1UWVSjuVjj]S}3U t e[^_jVjjStE USjjj} 1~1Su MYtjSP}MEȋ]hjUWVSQQ]E1j |PS7+t @|8hvq Yt]thWCP= ƃhVP= ƃxǃxhj:#p;~1e[^_Sh81[^VhBWh?p~p8th?h@j"UWVSVVh@]h?YE[5MEta~tQt!CPFPrv_ZuߍW^S6h?uP}uLE싶uuB}}_t e[^_h?Dx@^uh?h@j"1WSh%@ 룍PPuZYYuZh?h@@UWVSPPEu Eu(ME_tju{WyuZYuNtVPbuZYu7}t$PWR@tPh[@{1󪋛uEEe[^_!p MU҉t!MRMo MXuUE tPuhy@j ø@琐UUVSujSC>EXZ~jj.Ejj %Eh [jEh [j E j3n hQ$n NNN@Nj ãQNm ON@@ @@@h@]hbOHSORXSN0TQxQ`QdQpY~ u V '^XC=,u H,= n5`S5Q5Q =QtQt|= 5Q` 5Q)NY@[tA&E=tQuoN=\tDt?1 t,w=Tt=Que[1^EPuXjNjj5QtQ腢5Q:= t5QZP5Rhv@5Q ԡNhA@PNphX5hh`Najj5O $=@u O@h`N5ONO@P贾 jj5Q蹡5Qn5DS5Q 5Q&jv)A<^vt~v=Du úu nXUWVSEEE EuEE+E}ESu5Q5QfE9E}F;Q>B<^vsVP5VP5QƃEEG9E};Q~;Q|()EEEEE QEe[^_鍘5QڻXP5QԦXFCZju5QZ5Q觻VPEGYZx UWVSWWN+P5XS5Q5QO j Ua NEBCB@CC PScCtXN=O;xCX5O}iEC +CCEUGNBF;xU|ԋ5O5O5N+CPƋN+2FB NOPENN}OOXS;N5Q@XS)j5XS5Q辖j5Q=NRu0Np5O5O5N5XSe[^_5O5XSY[jj5Q3j5Qj5N5Q 5Q1^QuSj {E iUjK_ Uj?_ UEt t t@t t ut t t@t t tU=OOB< < =OtO< t`< t\=Ot/O< t$< t j=OXtO< t< u=OtO< t< tjXj=OXtO< t< t낊< `< Xjq=OXCO< 4< u+jDUSNsaO: tv     t2t~t(tkt]tOtAt3t%tt]h,6X]/,]k+j0$](]N*]]j뵡N}Pht-XZ녋].N}PhjejY]'jD].](]&]] ]j5 OLY;Xu S=] SNN+P5XS5Qh5NUSN"  t~ p ^ L 7%t:t,tutOtAt3t%tt]h3X]*]=%j"]&N}Ph+XZ멋] ]`]']j5 OY;Xu S[ sSZNN+P5XS5Q5No뽋]jo&]*)]f(]%jN}Pht!j]+]$]Zj]+UNztBxuNN=Ot P5NONRUNztBxuNN=Ot PjO:NRUN@NOXS;NOt@XSjj5Qj5Qj5N5Q 5QNpj5Oj5NrUNS@NOXSOt8HXSN OX9}OAB9؉|OO]j5Q:Npj5OjjUNO;tm=XtO~xxCOHPO O-N+P5XS5Q܍NRHOBO뭋Bt}uPNУOOO5ONR+P5XS5Q[UN OP9щ}k=Xt O8xCO@POONN+P5XS5QNR)J~@OAO먋@t}uNOOP=NRu/N+P5XS5QuO s5O5XSXZUSP=RNO~TNx~I O< <NORBO9NO} N;P| N);QT9}*ȉә)x:5O5XSYY[N+P5XS5Qk]1‰Ⱥә)+ A멃=Xtx N9N@O)H~AONBO 5NNXUNxu NOUNxuPeUN=I=2==h= ==R=S=H=J=o=IT= 3=  = = = tt=tN=t(=tÃ=`Qt`Q%=`Qt`Q%f%=`Qt`Qa=`Qu jX`Q0=`Qt'`Q55O5XS XZNa"=`Qt`Qt=`Qt`Q}!1=`Q`QjjjGd~ N}Pht["UN}Phnjj US5`hXS6jj5Q5Q^5`5R5Q[(5QuS]UVS$4j5T]hSPRStx5QSjj5Q脇uBS5M5Q 5Q$3^tSQ Ye[^5T5QXZS<5Q詣N+P5XS5Q$E3UWVSutQj5TV1 t 2t}e[^_JQ e[^_j58SV tQQuVÀ;Xt%SNMPZMY9tPP Yj5O^ljXj5NV5 tXmQpV;À;Xt(MQS\NMD MYj5Tw^ljXj5$OV tTjj5Q装5QNp5M5QNp5N5Q(j5NV_ b0< w Vj5(OV2 tt&jj5Q5Q V5M=TSuTSF< ^t< tSTS'S^=TuTdQF< ^t#< tSSTdQSGX֊F< ^t< t SsS#Xjejj5Qԁ5Q!\u5`S5QXZP5LQ5Q UE WVS}u~VPKGXZue[^_UWVSh]J jj5QE05Q}jS5Q[ 5Q蝝jtQ1IQSu[ljEE5QEɈN[PG=<NtUtP tK tF=?NNBE^vQH9QGH9F5QÜ}[t NN t 4u< t<< t81QUI VP:uJ 5Qae[^_Ã} tuY5N5QXZ]WR5Qǃ F5QEsN@Y?}uMuu)à ۉ~Q;H9| KNj5Qtj 5Qgj5QZUWVSSu] tt >t;u 1e[^_E}t/8tEFCtt t < t}uЋEw04w49RZRYUVSMB11< wk A\ЊB< v؋ N19A~ytIC9At~yu9A}ytIC9A}yuCw`SV^Xjj5Q}5QNp5M5QN+P5XS5Qt}e[^ËPON NљPONRkUENV9S~1N9։}{tF9֋A}xuNjj5QNXS|u 5XSNN+P5XS5Q|e[^UWVSQQj/E 0EuƅXZ_FϾu <;]QQ},M XMu C;]|ԍe[^_øX}u (ҸX}u @벸X}U:+t}=ugE}1QD uXE8tMAMB9uuFQQ"EMABd U 2E 05M5$50O5$5LS5$5Q5$$5R5$jQ U`XShRNQ=QNtQRtM\BEP5MGUfY@fUYtft fj5M.LNZ@Y5MXhRXS=QQQNQNNO=QtidQu55QN+P5XS5Qny5QPHPh&d jj5Q1y5Q~Mv8mP5R5Q]몡Rjj5Qx5Q#=Qtf5M5PS5Q 5Q.N+P5XS5Q}x5QQQ5M5R5M5N5Q5Q轔=QjUWVSW1=Q]UNx*E1hh@O5N J ttEPh@OR ątNx=Qu)t =Qt Ne[^_jj5QLw5Q虚Np5\5R5Q u5Q袓[5R5Qf^_݋X@CtXNu5NxA NX7PfA XjjqXZEjj5Qv5QݙS5M5QjSF$u5QY_?8t(?8 t?8t?8t ?8u5R5Q|[^UWVS EE9Eu E}E9E}FEu> tE9E}FEG> tE9E|E8NËBCB@PS^ANXCXCZtXWN> ONxx X~OEOOEIuOEE9EtE9Ee[^_À> tEܡNpPW_NOBHB xEUVS5QN5XSYt;5N~2jV5QytN+P5XS5Q\te[^sj3jV[Ft;5N~US\t;uj54OYXt;uEjj5Qs5Q5QP5Q15QbtQ]S'<9أMZt SQ> MYS$Ztj[U塴QVSj@@Pj5Q谞5Q=t}tr=t1QQxe[1^Ã= t 5Q腏X5QyPmWj LjI j5Th[XwO4Qw*49sV= X,RZRطY벃U5QՎlj HLjII UNztBxuNQ9Nt0N0< N@pN< XQ9NZuСN@N@@ONXSROUWVSWW\EEtuP@Y^thu_$TZZtQu 1e[^_h@]uY$T[uEjj5QtQp5Q-u5\S5Q-5QJjj5Qp5Qu5 T5Q5QQ t+;s;|vC[5$Tj EPEY^u5$TFjj5Q)p5Qvuuu5Q5Qp(5Q芌5$TPFGX;sZ|mj5Rj[^wQ4Qw,495$T$FW: ^_BRZRشYUWVSVOt8u 1e[^_Ã}N O1O;JEhQQ}@Qҍq}hQ;p>u`Q=xQNOR:R8uuhQ1;p}QFhQ;pt}}u!95O|"j95OY|})uhX95OZ}j95OX|븡hQNQPO5O5NRNљ5OP kjj5Qm5Q5QC0hQP҉hQtQEҾ}u"N+P5XS5QKmjjj5Q7m5Q脐5O5XQ5Q聾5Q螉 띄I NRANBRA:BuHSRNw74R9NCR[jj5Q\l5Q詏5xR5Q謽5QɈtQOUWHSt 8j5ROR`Q1Q95 HSQR 8t>R=Qw<4RBQRzu¡Qj}RڰZP5 YOP5 _1UN OP9щN}J=Xt O8x"O@POO.jXZ)J~@OAOjzjUQ< t.PNmXQ@uPNPYj[UVSNDNp3 N QUQUQUOXN;XO}%< t< tCNAB;X} < t< uN;X}< < ΡN+5N;X5T O}CNAB;X|N)pNp5O5O5N5XS3U衼QU顼QPU꡼QP4e[^ÊCNAB;XN< t< t?P3 XUWVS NTQڋA )ЃNTBPS2 ;5TljËNXFCB;5T~ON;P O}BNFCA;P|NTB O~ VCAJuW3 Np5O5O5N5XSe[^_5OQSO #UWVSPNNpn1 O^5NN;VOE} BCA;V|)NBPEONP5QNxYue[^_j&jXZP2 _YUVSNxue[^jj5O5NNpN NSQJQ;sO‹ N}FNBA;p|Np5O5O5N5XSddUN@9O}6O< t+< t'j:XN@9O}O< t< u١N@9O}O< t< tjXN@9O}O< t< tUVSE8u] =OtNx ~ K)KuN ~@9XS~5N1ۃx5ORuA)XSRVN5OXN+P5XS5Qee[^CNxu=NRF5O5XSXZ$=ORa~Ku=NP=XSCN1ۃx5ORu XS CNxuje=OYUNB9O}j!XN@9O|ÃztjXN@9O}jXN@9O|UN9OtjXN9OuÃztRUN9Ot/B9O| joXjeXN@9O|܃=RȃztRUWVSPPEE.te[^_hX#6 DžXK}?t8//@8u=T=T=T=dQu`=Tt e[^_U}\ob辎j5Qj5Q贂= tj5Q_>ZY5pQhv@o5 ,= Nunjj^=TSX4=TSu/jr9_t@u=dQOh [ja[^5Q4QXt.CHP35Q&4jh5Q4[u5Q3TSXr=dQtj ;Y=TSt+j35Q15Q35Q3jSCXZ~]hQ*[hM*3ƅXuYTjQ1|Rj%35M:1j31,Tj35M15M2jjXSNhR5M2MNh5M2hRXSRNONOTSjjhj5Q,j5Q>l_Z @EXjuhXuW|_W5Qjj6 U=P=O= yj5 NJ~jHP5j`SjPQS j5Q~5Q{ = jj5HPSjQ5Q~j5Q}5Q{jj5HPR$jPpR~j5pR}= u!PQHLjj5j$jRPQ7 jj5jIR$jPO5Oz jj5 xjX1j܉]P%HU9tZ= uC5Q舮5Q}5pRr5Og 5Q*z5QEX믡L9uUWVS,Ex0EEEt0E8u}Ex$uUF1:эA;E~ENu1ҋ5 TEوI9MIMԋQMԉM]Љ1ы(TQ߉I9}ЉI9M1ҋ}ЉIMȉ߉I9M}ЉэA 9ȉE59uE u~W9|]{UE+MȻ+uFQPuuOjPE{Wjuuuuuu8}VU܍2+Ej@Pu[ u'xucYX4`~4z~ CЃ 4`4z}e4`EU9U uU+U؍G9U؍D9J;uEWuuuuuuu t tu&uvuk] |u| u|tkMTt%RT X= up e[^_b]TtRT΋UTƉ)E<9}t&M؍D9~;ut܃}E;u&EuSZCЃ CSYZStZ- t0  tI 1t_NXuPF;uF<t؃,)Wuuuuuuu My1&vmp_?SYS{ZM܍1j+EGE,}} jj5Q(X5Qݶ5lR5Qx5Qt1tQyEx-UUUWVS$EU MEUMEU M$]}EUMSP;}X=@uCE1E9}C}jWSUWj|SeEPWS?W j|SeXEFE9Z|M9MC}1EH9Nju}nkE}ԉEjE+UPSV }~#F$~$PhXS jE0SbEEH EF9E|jUM܍DPS|V ;uuC~#F$~$PhXS軧 kUE ]e[^_靧(TjuSVj5QSUb;u\MM؋}jWSU }~#F$~$PhXS( jE0SFaG E;u~e[^_Í~0jjSU =@uCj+ScYXE19j+ScjGPSCUj+ScE19|[j+ScCjjSUjE0SJa jGPSTU zaj5 TSa Kj-S-cYXEF9|j-ScXEF9Z|IUS5pRQj5pR001ۃ jS5pRqTj=TRP5pRC`~5pRp5Qjj5Q!T5XR5Q|5Qp 5Q[5Q謲jj5QS5pR蒲5pR[p5QPp ] @TIU= Su]5QG1XjS5QvS5Qv$t1tC~5Qoj4T5Qv_ ԃ=Tjt RPۋQU= u5Q貣5Q解jjP5HPN FjPQr j5Qaqj5QD.5O5XSV5QotQjU= tá5QNjj5PFjPQ rj5Qp$5Qǰjj5j EPQ衰NXS9$5O~P j5QV-jj5j|EjPO; 5O n5QntQUVS]ut e[1^Ë\t:uj54OYXt;uBjj5QP5Q5QG5Q(t5QYmtQ낅t4S7Zt\^VS/ XJS9أMZtS MYj5OPPMM9tP Xj5TPQ|MdM USj5MYXt;u]SESs XZU=t h:Xj$U= t'j5Q8+XZ5O5XSCj5Q+US]۸t,<.t"<>t< t< u ;K}AB1;K[øUWVS(QEBEB=0Eue[^_5N~Zujj5QN5Qr5Q5Q5Q:k8EءOEH8tNEСxQEܡOEԡN@+O@PNxQ OơO< _<  O)M=Oˉt2< t.< t*N;HE}BFCt< t < tE;X|ItNp[[t1;=OtjLC;=OYtujj5QM5Qp5Q5QԞ5Qi=OtNpZt0NpZuLj־XO8 t+j觿j 賫_XO< t< uTj|Y N@9O}&O8 LjJXN@9O|^N@9O}&O8.jXN@9O|0jj5Q9L5Qo5Q5Q艝5QhN OP9};,9R}9N@9ON OP9|NpMZtt~jEK_t}~jM)}[NuwE5ONEܣxQ EԣOU䡼QU塼QPU桼QP5O5XSEأ85Q˩5QgP Yh=Ot j謲Yjp,9R_N@9O|x )j8j Dj =O 8 *O8 tx  UWVS hY [1у Qy VPEh,YuEh̖P EjE4ȖSZYtUE}~VZ uR hY` t# Y uXDe[^_hE4Ȗ0[_EuhVť > t@8 uhRVHZYuj5+Y.' ^T듡dRo@SD`RN,ONpOHN 5tR5Q}5Q^h+Ye [5lQUS];t<\t!PCX;uꡌE]Cta tS tN1Ʉt.1ɀ t t@At t ut t t@At t tPZ1UWVS4QEEBEB=0Eue[^_5N$_uNOEġN@UJEN8t'O t tNM;Htu裩NEȡOE̡N@+O@T xQPUTNMxQ? OáO< ^<  O)M5Oωt2< t.< t*N;HE}BCGt< t < tE;x|It/Np[t1;5OtjC;5OYtu=OtNpZt1}YN@9OtWj詯XO8 jvj 肜^X1N@P]YR;,O< < =Ot55NZt^N<.tQ<>tM1j jYXO8 u j踯XGj諯j 跛XZ2.nR9,TNpdYt ,G}=OtkONp#Zt~jK_t}~jM}^~ }NMȋE؋U5O NTxQ M̊U䡼Q OU塼QPU桼QPNU8P5OM5XS N4肾PP YhjE\}[xEE=OtNNpZtPj#XO< t6< t2=OtjXR9,~>Qj褭Y169UVS=(|QP5$Nhh5K=xQ|QP5(Nhh50" =0|QP5,Nhh5H=8f|QP50Nhh5` =D0|QP54Nhh5x= |QP58Nhh5x =T|QP5Z~,S 1=XXt DNN4NNNNbN,NUM S]t&9t!ۉt;t8tBt:uAt9u1[ÉUWVSE8~(EphTYp[^pDžd;tSt7<$t3d'd*BCdt <$t~ـ;$ty;t d~dptNdƄ)p9}tWf Xd@P pPpT pe[^_ÁdwlC1<{t&u e[^_j4u< tGC<uUEU t P@BuUWVS] Suj54Tp~9؉t ǃ1Q9VPރ e[^_UWVShjcjhXxhVYj4ThaYjs hwYj$N_hYj(NNhYj,N=hYj0N, hYj4NhYj8NhYj @NhZj  hZj hZj h%Zj h1Zj h>ZjhHZj(yh^Zj@hhjZjW hcjChyZj2hZj!hZj hZjhZj@hZjXhZjp hZjhZjh.jؕhZj h[jnh[j ]hcj!8Lh[j"P; hCj#h'hCj$@Th@Dj%DThDj&HT hEj'LTh`Ej(PThEj)TTh Fj*XT hFj+\ThFj,`Th@Gj-dTwhGj.hTf hHj/lTRh`Hj0pTAhHj1tT0h Ij2xT hIj3|T hIj4Th@Jj5ThJj6T hKj7Th`Kj8ThKj9Th Lj:Q hLj;Q}hLjQJ hNj?T6h`Nj@T%hNjATh OjBT hOjCTh*[jDRh2[jE`ShOjF O hc]jGRh?[jHThW[jIOhn[jJTu h}[jKRah[jLMPh[jMT?h[jNM. h[jONhOjPLQ h PjQMh`PjR0O hPjSLSh[jTQh[jUNh\jVPS h\jWRh'\jXN{h0\jYRjhB\jZMY h\j[REhN\j\R4hPj]4O#h Qj^Q hqj_Th`Qj`Qhc\jaRh~\jb\S h\jc Th\jdQh\jexRh\jfXQ h\jgRph\jhQ_h]jipQNh(]jj T= hB]jkTN)h]]jlXRhm]jmMhQjnQ hQjo Oh]jpPQh RjqTh@jrR hYjs|Qh]jtNh]juTyh]jv8Sh h]jwNTh]jx$OCh]jyN2h]jz(O! h]j{\R h]j|\Qhj}Nh]j~DQ h]jSMSSS=R RSN SLNS`RSQSNS@S SPN$SdR[(SHQ^,S0S4SؒjPh9Y~54Tne[^_ÐUSUVS=]u t =Xt e[^VShb5o55hP 4?2w$ _Sh`z5X dSShz5V1H5jjhb5Phb5@ R距ZV5Phb5@Y5rUEVSu t~r6hb5# =u%5jjhre8e[^3Ph5;buH=us;tVC t8u7shbJY^uj 3hgC̗ wPshc vhc5@B3vZYy;ulhh{58UVS]ۋE 5ܗu;̗tV=,uu ܗ=t ;Xt8u8tNt)phbEZYt 5ܗe[^É̗=thphc Ɖ] E{e[^麒U}E u0h!c58DE @EU}E u0h!c58DܸE @EaU}E u0h!c58DbE @EU}t!E 0h,c5D8hh|U}t!E 0hAc58hh@|U}t!E 0hSc58h h|UWV1}SEtH}}~'E 0h|5{8e[^_ËE pÅXt܋E Ptڋ8ath= tXjct=Pu;=u'E 1;XtQRSV*S;PuR+_R[*X뺾oc릾tchycE PEP (hcE PEP U BEBUWVS4EAHE hjP@* jh`Ei=Qjju ;=p=@tSE 0"ZYt=D=P=19tvPR= St^jcP裎=@\=OhchcY^t@oc렃=u|R*_hRx(XMS&X2@uj@e[^_þ;u}ڃ=ptу==@uF;u}=pu몋E 40_Zt܃=PE =E 1;twQRE = 4tZjcPN=@u=xhchcD_Zt@Boc뤃=u{R(YcE 4"'[C1}Ĺ ]SjhE 4萧u}uE 4hcS }ԅt,t&=pt=@u#tt =puEP襳X|PE 0\Y[t̃=P=19tsPR= 7tZjcP=@u=thchcZYt@>oc뤃=uRe'[n7%ZRhcE PEP E 0hc5 82Uhcju u4U塈S ùcu@]Qju u]UWVSh}EEEtH}q}~)E 0h}5a81e[^_ËE xpƅXt׃}t'=D =P=}t5=u5j/jh@}덍EPSRZ}YtttNuE 1;xt:RuWShc蔕VWE2;XujE pZYt9E|EɅxEċUȣvShc͈[_S4%XS#XV!XhcE PEP xmhycE PEP VAU BEBEUj=Xtjh5$ jh`|U=@VSt =u@e[^5Phc5XXfZYt5X뵉5XUWVShE~HZU P@E2cu=Ehjgjh`E{j5u ' >o=pb=@tVE 0hZYt=D+=P=}19jPס ǹcu@]QVShc荒=@"=hchc^_t@=cYEPSY_uEċUȣ'Sh菅XZS!XSS XVX@\uj@e[^_,65j/jh@}qhcE PEPR E 0hc5M8UWVSQQEEu t$6hd58e[^_hvnDžXZtr cEcuE@]jh_jjWt$;u Sp[؉^ujVu}e[^_Lvh,dOU}t\qøK*U}VSp@5DHdtRhVd5=p5ܺ8ujdP5,x$h}5ػ5Z$5L$h}5謻$h hhhh~5腻5$5$5H$5ܗ$h@~5=05h$5 $h~55ĕ$h~55dr$5Dd$hqd5ĺ,=Ph̕h hd5蚺=h@h hd5p5$55($h5;5H55$h@5(5Ժ55$h555h5ȹ$5G$hd5觹=кP5ؗ$h 5v5@$hd5X(hdhdhe5;=ȗ~F5jjhe1 ;5ȗ}%@Sh5F ;5ȗ|8e[^ø95j jhe誷E5j jh*e葷j=p^t&5Dh`5u j[Y5jjh8eA5jjhNe(E 0h!c580UEWVSu] }t|t3h^e5e[^_h\qs_ZYu,t6?$Whve5螷hK*s_ZYu1>Uh~ehHu uI8Uheh@u u*8Uhehu u8UES] t!3h58]h\qs^YZ(5(4$he5蔶 =(u45jjh'd(t 8|5he5> hK*s@^YZu(es-Z~ Dsh1=((+Uhehܗu u8Uhehu u8Uhehu ux=8t (Uhfhu uC8UVS]ۋu t~#6h 5%8e[^ÃhvhTӸܺT, =,t>ܺt8u05j6jh`蕳,,8n5ܺ8ujdP5,$h}5Uv$YDh\qvD\ZYu,KhK*v"\ZY,%1=,,Uhfhu u8Uhfhĕu u8UES] t~!3h5|8]Ãtd1=,,=,tA L5,5,$h6f5#1=,8뛃%Lh\qs [YZu ,hK*sZYZu,lsZVshPfUEHtqE phkf5rYZtt=8u܃=ܗuE phjfqYZ5j)jhhrfE PEP rE 0hf58jUVSUM 8t1hf5螱e[^qÅXtSZ^xLhVZYt&Vhf5U 8S ShfxY^ShcAbUEt3.HtE phfphycE PEP uՋE 0hf5Ű8UWVSQE HE hjP@njh`Eljju 2 ;to=@tSE 0_ZtShfo[=@^u=thfhc@ZYt@s@duj@e[^_;>hcE PEPw E 0hg5r8UEtHts}~R}~!E 0h g588ËE ph=gnYZuE phEgnXZhMgE PEP thUgE PEP toUWVS EEE EEEyEEE;pE؍4lu=E}tj}E_gu+E؍4dg8EjgtEog}~ E@E}~ E@E}E Etf}~`}u}tHE0htg5˭ 8}t}tEEe[^_he[^_ËE0h 붃}u_u࿇yt.E8|t&PE^tPhgY[tEjjh@]uuuihg虼_t8ug1ӍCPE|SVE@PϰE5j,jh`賫E-UWVSEH}U EPUU@ֿyt9M9|t1QEZtPhg^_u8e[^_ËE ޿gh(j‰EP@jh`Eh=@ttEH9}l=ptc@]tfjjPE 4}uogujgPf=@u =uKG=@tEH9} =puuj2XZU9U@uXE 0hc5OY[t@5xhcE PEP 7E 0h5诪nhcE PEP} tUWVS}u'E 0hg5d8e[^_jj7ÅXZtE~Pvg9ZuVj ^C_t 8hgqY8뛻SCX~jjhX j/SdY^t@hPV莭 =,t5S覨5j 衮O~j5hXVS jVS Shv@pj8v{XbUWSPE1ۅtHcEv&E 0h58e[_ËE phghZYtJt5jjhg蜧Džu}tp묋E p hg9hY[ۃ}E phghY_u}Q5j jhh05Q5jO]SZ t61D E X EE p hgg_Z"5jjh æ5<hh|U BEX9hhE PEP} U}Sܗu$E 0h!c5k8]h$hܗgZtܗف=8u5j)jh@ h#hfUS}u$E 0h!c58]hS>ZYt Sh(h5详 8hSj5jjhi5jjhihCE PEPY E 0hi5TUhihDu u(8UWVSu1ۀ>t;3ЁUD4%t1C<3tvŅƃUtW1ۀ=UtLUwSD4%t!Uw)4UCUue[^U_Ro^R_RZYUhihdu u,8UVS]ۋu t~#6h58e[^ÃtAjPv@h P8š tjvh̕计̕5j jhiP艜P8UWV1=̕SYtF̕t~M9t511Ҁ= t 8t+B t~uCA9u[^Y_9}ۊ̕CUESt}~$E 0hi5Ҝ8]j 586Ã=XZtC; tj SYXh5h Q C; thSh@8hjE PEP F;5j jhj83UWVSM 11DŽd@~tLE8t@= t7ƒ$\:t1t9tA;tC9t;uɅu9t DŽd=@]]@t'1[[$t'AC;u=]u Ee[^_ø]C=wYtC<0t(pσdtT;TtBA;Tu됋U:tBA:ux1뱃\h{aCVC$#t4,t/]t*\$tCAt<,t<]uր;tCKuC,t]KCt<]t;\t-Ct<]u;5jjh)j٘{tCC=wl_C<0t3pσdLT;T>BA;Tu-U:!BA:u1CC=wfC<0t4pσdT;Tt BA;TuU:tBA:u1C8<{00CC8t!pdLAt8CuLCUES] t!3h 5x8]h\qsp@YZuL5$5$h}58hK*s@YZu hs?YZJy1=^U=ܗt'EjPhؗu uo8к1UhWjh u uB8Uhdjhhu u#8UWVS ]u Q}>h1GvEE>_ZS4EjjjjEtP}uEH}t =ܗt-5H55$h@5ItP}uEԺ}t =ܗt-5Ժ55$h5ujVj1e[^_v Y }t6h@5誕 6hvEZhcv=ZYh%vn=Y_ut u5jjhj%RPh5j EPs込у ɉxE8tshj5 뉉 x5j/jh@}讒HU}Sܗu$E 0h!c5蔓8]hjܗ+SܗUEVSt=ȗ}HT}~&E 0hj5.8e[^Ã=j E pkȗ@P ȗ LkLt"s< Ft=CFuc u&@t V u5j(jh@mJ@ȗk;Lt&>tF먉P@ȗ8P5j!jhk<@L65j;jhhjE PEPȲ 5j.jh=UEVSt}xHt\jE p袶։ÃXZt=VSE phj5{~ 8e[^Åxw1uhycE PEP" uE 0hf5!8UQEtsnHtRjE p1EY@Zt-EP~$$$E phk5Ð1}8hycE PEP胱 uE 0hf5肐8UEU t#HtBE Ek PEkP2hk548USh@]j] Su\u]ssh@5UWVSWWEHE pIE^hg"E[t8uEgы}1ˋ}Ӎ4 VVuPOVhS菓VuS腓(StS8ue[^_8hcE PEP 4E 0h,k5UWVSQQEHhg3EZt8uEgU1ӍCP|Suƍ@PcjjܗhcEE pV=hc(ܗ( b(=}V(=ܗe[^_hycE PEPĮ E 0hf5迍8U}VSu t#6hBk5蓍8e[^hRk65[ZukvZtt?tt55h5&86hYk5 [huk65ZYzh|k64Y[*ZUEVSu 8tt6hk5茌e[^v躛ÅXtPCu9vC=ܗYu 8P3hk5;PCXvhk녃=tCuP3j hk5;uU}VSu 8t6hk5趋e[^vÅXt5Cu3hk5臋8P=CXvhkU}Sܗt>=u5j,jh$]hkܗJܗߋE 0h!c58UUBSM ܗwS=t4JܗtqhkqJXZܗ]hwZJY5j,jhy1htg5u8UMASU ܗw]=t>ܗtrrhlI ܗ]rhlIXZ5j,jh2hl58붐UE E EEkUWVS1҈Ћ}эqMIɉ#} M ljэYDž9sm<1I9Ήs-<:8 u1BI9r9s9r9w65j ؍hhjMq1謚ue[^_)SPhSS5r@D@뿋M0>uЉىIQVhSfS5Pr@DnUWVSP)ƃ1}I=M𻀥t1I9MvN;uVu u <tjV|e[^_h5q@ZYuֿuRub u3V_XUWVStj/]SXBZY>9)@PSP ~PX1IٯÅXtIst#s]tC9萯ÅXu^u w<tj8{e[^_hPShh.nSh0S $PS:[_xfff%f=@t%P5o@ZY[Qƅ/S` SP V踩ÅXhSVSѥƅ/ƅƅ.ƅUWVSPƃ1}I=M𻠭t1I9MvN;uVu u <tjVye[^_h5n@[ZuֿuRu^ u3VyY_UWVS j/}WDžyDž ?ƅXZ>/)CPWP貇F =u =aaa@DžPjPD tD=@tـ;t*j/Si>Y_t@PP5a 뮉@랋tPh5e[^_hPha͆ 1ҡa;PDžsH1҉I߃I9vRZmE phm5{8[hjE PEP辜 E 0hm뽐UWVS]E }SDžDž=,YhPrjhmP6$ehGjhmP$1j"PYZ+XSSP~}hWP~ U҉A1߃ʋэ4 V}VSPK~Vhg~Vt~(}1׉1)SU SP}ShM 1~} PV 11(t qYt \Zt GXe[^_Ë1I'hhN[hm5*y5;5hW+t1Ƅ C5T_ShOAXZ Shm5x AUWVS} 19uMsk3`3D30 A`T3D3< A`D3?A`A9rK9v IK9=w[^_UWVSSSEt8tljƊ%tFG>ue[^_ÊNt=5tŊVt=t҉}GU1сD4%tzÊV=w^uCҁw/D4%MTuETɈЋMR臈ZъUD1RfYfl1111UWVSPP}E} ;}1}'}}}  }$}(EUEU E(EUEU$fjhmuE EUEE$fPUU:u 1e[^_j/uƅXZ+]CS胷SuPSyE8VǷU($@W^XtDE8NUC:P萷j:E0 t@PoUY?[j:Ww^XtCUۉ:tjSyZYU$f]}tuU _E(8=,U(u@U$PffuRU u@PUu@PUu@PUu@Ph5t qh.n{U(^iuu Shnj<UutUuYUu>U u#U(uPtE(YPbE [PPE^P>E_P,EXwj]_SƅXZt Ft<:tuu Wh7)PÍGPW=_;WCt~:t1 ^uu Wh Fqu6mjh!nu u%EUEE$fLjh(nu\ uEUEuu h0n: Sh`j9UWVSDž$P"PPPPDžDžDžxDž|DžDžDžDžDžDžDžDžDžDžDžDžDž$DžDžDžP Ph^ruu$@tO $t 8k u =Kuh39_X|@t P蛘Xt x}Y5$ujuSu<u%ue[^_oXaXSXEXP<DžZP)DžYc[DPDž$^!PDž_P֏DžXPDžXP誏DžX菏XrxXS|p,Pj ZYPjj[^$߰PIXZuj/b)^_%@P訰[t 8u* t uhJufX==,=`dDžDžDžDžDžDžDžtJyt5:|t*XPR赐ZYu } } T@nt E 81}ԹغE؍PURjEEEۘ BtDžSfjjjhVssW =ܗt;tVhJn5%l Sf"fBs js JssP螭 y5PhXnX3PDž [+1_hcP)[=ܗ|^1pn=ܗ$htn|)k ={hdhdhn|j}t#=ܗ,uhn|j }t#=ܗuhn|j =ܗt|jjhqui|r@sjhajP|yqtD8< < =,j _Xj PCS*yNj t%ЁmD4%@S#[,jhajP|ptD< < =,jhn  bjhn jjhn j hn _jhn jh oy tpjho` u3Sƪ=,XSh2o5,h X뿋u"Ss=,XPShJo蟈XЋhSZYtKhdoSZYu/=,5jjhlorfSh Sh`/[^ Sé=,^Sho(VhoS u*VhoS uVhoSΕ IDžH8t3=,- PZ$hoj(P`X븋y*j VS i8-Zj VXSݎ 29 9 8/x*Xj PSp 8=,u$ h-t5jjhoDdtOh p5 ehp5emu5j*dXZhpȃj PSIу ɉ£` dx8u=,QRh8p5YdhMp5>d ` /,t@t#th\p0hypl yxjhZYh_jqhi%jej9v#jOPjTj_jx|ό^Džt8=uj1t/t9։dh|;h9v dh19|jlp|9v lplj5jx`xQ1jx|5j) a; =(tp=ug|;x |F;r>5j#fXZ|;x|;s5i_t)tt~x =Kt>tD|5j5j t&5jq~=(tO=uF|ۋ xx699|9s5j#e_X5j e[^|`Ythp (j*x}hXZtE|ҡxx ~+j茒Xx|Dždv΃tj(S臄x0Dž4袌SDžx蜃@cPM$Z$h5_ 4h jP++Y҉[x!@B+PXH@Bhp&9AxjPXY[|5j5jJ jP5jmt 8 tXqu9=,utS]tRPhp5.^h@@@x thP~X:|98 9* `d9tuh% 9uhfx[x^tDžZhpfxGh@]럃d `tF9ӡ|9=ܗ]5j jhp][Auqjj .h@]CS2xtDžP gShp ht 8u h@gjBj1t4=ܗuhp5[ Ճ=ܗu"uuu;hq5E[ ht%1#h!5Z t :u h`];t[5j#jhY5j (P* (wz4y11PRSuuu u31IVPzR(+_5V]zDžXH?D< t< t.hq+zYRk^hMp5;Y HD< t< th/qv5jjhW>WhDq5XF Wh_q5XF |jjhtqzWiWhq5eX$hq|=Xj:8菚PJZYShq|WSxf"fPtPhq|W |jjhqV|j jhqV |jjhq{Vу u!=Q|jjhq5WfV55hq|.W55hr5WF(j%SZYhr|V uh!r5V Th0rhDr.XhhV4Z 5P$hv@h`mDže^t 8OP"PPPPPPhXru k$@Aw1t'8t">t{.ntlu hbr+[^u@u#PIvDž~P4vDžZP!vDžYyYu\$u3uk$XPuDžXPuDž$XPzuDžXPguDžXej%_Z@h Pז1эq[hPJ_Xt;tj:S>…XYt0j PBPEc‹ 8u"9u1эQ9rRS)P rDžu_ EPItDž[΅tHbhKmbE _OhUmhT{r-^|_uhr#XP|S$cvY[u#x`d ub=ܗhr5R׃ u5j %RXZRPhr5hRjRP|lR$~yhr?hr5R 6 8hrPY[uh`USpj;jdhr]SUPS5Q$yjhUWVSLjh!nuVDžDžDžDžDžDžDž1 vPPPPPPPh^rVX$@t1t:t"t8tt 8Vh s'^_ueuHu+ue[^_P1qDž^PqDž_P qDžXPpDžXRXZt 8J8At >k1H=,ty+PPu@Pu@Pu@Pu@Pu@Ph5EO$=DžDžt -=p|EԋE؋EtEEEPROeXpZHrUWEPj@Y[1ۃ=,t)ۉPPhs5%Nt>t5EPjE"uEIX=Z6ۉrt?uDžEc}Eu tQEPjEcwXZ8dљDž=t2=EEt EPj멍EPjj/WY^t @붉=hVSPhh.nSPhWSP߃$>=85hjhiK@1@j/VÅXZtCV.YEPj@i lh Ojj Y[t>u5?h5sWZYDžh5sVr[ZtDž뮸@@WYYj/V|_9Xtt {xou{.n[j;P@YXhxYQfBq jqi pp, y (d8tօtGzPDžKlVlDžXIɉ@Ppѿp󤋕BpfopPhDž\jZ=qhnh@]@n=@tuNhs ^@u1u85k1e[^_PoZPoYƃ=ܗuYj[jPhhDžkgxD뚃=,th & X5Dhs5yB jPjjDž ghs _hs X8hv@ 8mjjjhSrr,uShsX XZzhhSE DžQrvjjjhSrr*,uShJn5^A hhS2E hV?Pl$hv@ 8US`jx{=Xu @=u+`]jh5@$i jh)USp`j{=Xu @=u+D`]jh5w@$h jhUWV=,S=uh 18e[^_h(6j] Su5趽5jjhq>$5Gjh]u(We PXZt tjXVje\5jjhsL>s}8] tQt}u+5j jht>5j *DY[Su5ļ 5j jhtUWVS h(6jDžDžDžDžth6jbDž18Džjjh`:5CYj8w~jj~e[^_5j@jh5jFjhj.~j!~185@fÁX95@fPhhht5:5By5@ofPh빡ܗp5j ?5B  B~=8ut'8;tu1t (jutj|j|=8tht\t(6tt j_t6tt j^0jmUX뚍PX hPh@+= G@5=ԗjUWVS}1ۅutW9EfEX} tu 8DfDXCiVSEP[ ~-11ۅtfEл} tfDfte[^_USpjr@XTrtIsuMjdh&tEP< jdh`]SR<PS5%8$U`jh@ujdh,t5ThjUWVSE=ܗUT5tDždx|`dPtD}t>} tU :-tRh:t5Q7 }tuh]u557 = 9̗t jPl_Xjh@Dž`Dž\DžXDžT@][^=(8\XxP^Z`t huSdujx\u y8m hjh@ZYk L щHuoctutcux̗|.w&j55h4$`ƒo55hEtl DžTc}%uuhh< HT#dZnk9v#kHPkDvk^j]jj wX̗ 1%==jEPjXSYDžl[19סk|9vQ5kh3$[ pix|)׋kpSd^3$[ l~)pÃpȃl =(t==dxz=x 0j|PaWU+U|+EY҉tx[x!t@B+xP_Ht@Bxʋ|EU9Ӌ x|K9rG5j#u7ËEUډEUXZ|EU9Ӌ x|9s5(:X=(t==dplxwj[`_uMd}^jDždYx|[~ jcXh`Džh^Q8 t hOtXx|[u hcY[>|ۋ x~39|9s5j#6XZ5j 5^_…oP5k5khDžl0$X p]x|kpSdV0$X l~)pÃpȃl=(V=t =d@|EU9Ӌ x|K9rG5j#4ËEUډEU[E|U9^ x|9s57Yh%[p@Yp t#dpe4x[|^뻃=(tg=t =dyU|EU9Ӌ x|=9r95j#456ËEUډE Ud /Zu"dj 3x_|X;=(t=tC=dx:h.^ud.Zu hcY[֋|EU9Ӌ x|9s5j#33XZ5j $3_XPN_\jp_=(Dž\XxPU^du"j8x|YdFZDžd[uhv@Y[u hc^_jLHhRE 8|hu _hZuu hc8띍EPhDž`,$,P[^x Ef%f=t%u hVt5, 8EċUȣ`djj _o] hCSX htDž`P Shv@1uu uUWVSE PE ĕUE,DžLDžHTmtx|`d0ucEEt^=ܗtU}tOPt*}u P8-tPh:t53+ }tuh]u5+ =t Eb1҃=dDžDDž@Dž<u Etjh@UZY=(8@<xPRXDt LuJHu30,ĕx|e[^_HVXLDXjl}@u Pyt/P:|t$jPP[^ =h Ej =̗t jj@^XZ jh@W_Z0 Et  }t E8 uhv@[^H2hjHY } Pyf LĕEPLz($K@ZYt!Ef%f=tĕk9v#kPkjk_jQ̗^l`Et =VjhP2LiGYDž4[19סk|9vQ5kHh'$O 8a85kx|L)''$WO8 9Љ4=(t==dNx Aj`P:Kd+l`+h[҉X\^x!X@B+\PYHX@B\ʋ|EU9Ӌ x|K9rG5j#E+ËEUډEUXZ|EU9Ӌ x|9s5-X =(t==d8894}4Phvt^_j0OD[?H%RjDžHnXEZ |ɋxExj\WX=ĕ`DPjuKT^@_7jpSTISTPxDž|~H@TP|$$Ph5k$REEPh 5A$5j)jh`#LDDžLYPhcyC8 t httYx| |ۋ x~39|9s5j#(_X5j ([^…!C5k5kHDž4F#$K 8?85kLx| #$9K8 9Љ4=(k=t =dU|EU9Ӌ x|K9rG5j#'ËEUډEUXZ|EU9Ӌ x|9s5]*XjRPLD"$M\Phc[^gEt HM8@Y.8 8 =(tg=t =dyU|EU9Ӌ x|=9r95j#&5)ËEUډE U됃xH|L 8Y)Lg!ZukLj !&_8Xt@88 %L8%x[|^x|=(t=t]=dxTH [uL ZR"@8 t htYx|뼋|EU9Ӌ x|9s5j#+%XZ5j %^_mEE@EjjjLL1ۋ119Ӿ|=9s9LJKZk t@9ӡ|9rjjjL^&P?XP9|uP_LZtDžDPhcw[^jh@Y[t9|8x~ jP^hojxaX=(ZH<_jj RaPh@]CS<Lt#ĕDžDP Shv@)Puhh 'RPhEt H9̗t jPR^_juB`8Y=d[@ePPY"j/P-=8ZYt)!=8 tPhc8(t;Pj.nt ۋPtlPC_ۉ4Xt/4x=ht =h<8 |6<8 uhPLD[^yUuPu3gUWVS1ۀ=Dž@Dž` =jjPA £sL5k޿t= 8 ȉי\PXPEPEPEPURhth@ A1UE E E fXf\ ІfPh5\ yy:8t׃=t%5BXRhKl5[5B@[t e[^_À=t1j`Pjj5Dž`>yhs^5j5jhk^5j&jh5j,jh ʼn޿t 8 ȉי|\PXVTPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPURPPLPh`h\LPT11DBvfXfV\PXPTPEPEPEPURPPLPhth5, 6LbPUTCx5j&jh޿t\ 8 ȉיDžXKP\PJPIPHPhthq u;H:Iu-:Ju%:Kup󥋅\X5j jht6k5j&jh=Q5jjhttS=pX{ 8 ȉיXhQr.=t ftP=_jjPC: £=u!j`PjhR9kPh59 >L1DžD󫍅DPh5s; jD5}VZY=[ƒ0St'tF=pu"=uDž@q1PPjPPPPPPPPPPPPPPPPjjh`ƃXPPPPPPhtƃ1ۍdCej j PhWdPdPkNPWShuN=p L=,к 5j$jh >Dž|U=ؗ=к@h"u_lhsBj`Pjh56htL^hh)uhQr(=,)ff%f=t f=hUVS(=uEu4EPEP57 xV5<9}ZtV5;e[^jEPjjSE5yhs`XhDuS581USi0j K@P0]UWVShfjLS[}E^z=<uEkpUpD"CE pDu p󥍻u@U쉃<<@@@DD̗HH̗(LL( PP hTThDXXDP\\jh P`PEj`Ph jh̕qP$EjqPh̕M싁hh PQEhPh 9$hh@P EhPh@ujQ ue[^_jUYhPCP =tƻkEuUjH=Xtjh5 $5 jh0@UWVS uEEc8Ecu=hjcEu=$=`9̗t jSAY^htZt5j5jh e[^_j"=p_H9̗t jSA[^hhKu*ZYt jjh^_hij,OYEѡ [t RPhEt t ujNuuhh HujjgE@EXZ RPhEtt jh@^_hojzNcuY8[t =ucu =u=(u EE=(+1=P=(Xu E=(1=PV=(^u==u*j<=0Xt 8ujMjXj j5@u ~jjXZ뛅x=0t 8jL&Yh [j_Du uhh Hj=(X:j_jXu uhh HjAX~ju uhh^ Hjj jujcLjuu hSu5N 5jjhiu%j8q1ocU}SE u%t!0h!c58]Å~jj5@ xujXh.j8$XZUWVSWWj/}WYEE1^t9j.nt ۉP.ƅXZt/hWh   ƀ .!u8E}dtUEC<9tBEjh .Y_x }0tKtȸ e[^_ÊC<.t@CC1E05j&jh@1Whc6USpjAjdh]SK PS5j$/jI# jh@UVSҋuu,h=0Xt 8j"e[^jjPRƅƅƅ$bt h DXhhu55j V5@y~[tu/jZt j_=8(ujiXhPVF$. 뮅x=0t 8j"Yh XUWVS]{t[^_Ã{uSzuz u9BuEEEEEBEfBCuEfECUWVSPU 2EUEhuLwvu-ÅXZ huĕܗ,@4x|HԺؗкEEغ,ÅXt/hSh =vj?V$Shujjj(  uVhhhPE'd VhhhSE'0 Sj+=X =VEh:h+t_u tAhu+^t)hlPZY'/ƿuhum+ܺZt8u ܺ=,tܺ8uh,_hu"+^tƿu18u5*$zP $]ZYt4ܗu&=t @'+t huuu \4B$aغغh5h3 =vj?$5h0jL_P5EufCEXhEPÅXZt&;u5hu=Y_\F~jEPVui @tuZ!Xܗ L,@zk\M55y.j EP5 ԗE8~5EAEܗ~jjj5(UhY)EU(dЗE v't8t P/AX1t PKX=uFt8t P@X6@ЗE_=uet\hPh1 =whhvh_ =v$j?$5hv =uh.n[@^1}QM?uuPuhBXSSh*v&$hBmI (hhKmd&$hKm* hhUmH&$hUm hh`m,&$h`m $hgh6v &$hg hjh6Y[tj-)hj>hBj >E0j@V\t1tp(EĉuȋUBEEtEPE@PX=pZtWԗt?=pu)PhWv5ȗ25ԗ3=p{ԗtjWV "P諒ƅXHt'ƿrv *,h{vS転^_uhvS蛢ZYu,hS{^_uSh`Y[q  hjhhvv5hvjU= t' u$65 0UWVSt=,EEEEEt9EPEu@PE u@Ph`5=G} uE}uEEPEPE PuEq} uvЗPuhQx55jO]SE觔 b1D }E6ЗE } t=,u hgj[E^,}tXh`x^E t}u7Et}u!Et}u Ee[^_P!XPZPY}u Eu E#=[upȗE9EE}'1۸@tEE9E|b 0hhnxh`h05aPhg@_ZC}t`uhg_EZ}Et!E8PhgYE[hliEE^htxEϴEY뉃ы} 1ˋ}Ӎ4 V!Vu PVhBXSVuSE] (] 5jjh v58uh~x5V 28hBmE vE_@ZUWVS1`Q׉щKMuhx5ƃ` ]5)P`WXtPэ\ ~ _ t,M1;h U e[^_ƃ_5jXZ5jjhx'j9UWVS=@]}t =pu9=u1e[^_á@tP X@ڃ=u0=uBBu룃=@Ph5tVZ (/thh.nV hhxVvVd7POܗX1H } 5(ܗ(C;@]8dљt t@} hS ܗ5(oS@X =@u+t `5j'jh-D5@hh u5@@j hT[^t1=PQX#jjP3Phjg蕯;fu1=P XVh  UWS0=]u Se[_1}ȹ }WjhS@u}uShc蜣W1빋E0}WUWVSSSܗ=,} Eu ܗ=u1uEܗe[^_5j(jh`uhxCZYtRt,t=,u5h@|5j w북=8uȃ=uj h@RY_Wj U@RPËE 6Ёw!D4%@ RsZUWVSTܗ8=,EUEu ܗ=uB} u#EܗEte[^_ËU85j(jh:uhx_ZtTt.} t=,u5h@)5j $봁=8uƃ=uj DSdQY^tj.hDOQ_Zt1D1tShx5| EPEPEPEPEPEPhxS u1}Ĺ EEċEEȋEE̋EEЋEHUĉEԋE-lREEE@^t#=,mEPE$hoQ} A=,4;Dx hDh5EShx5E2F0lU=,VS58ܗu ܗh$hZt`ܗ58e[^j h@OYXtҀ:t̀z"uǃ1Ʉt<"tE`BAtv=,Ɓ`th`hy5 zz"uBU=Dt"5$;DYDUS#j ]UWVS8 :}-=ue[^_itjSx|++[҉^ 9|C9v95 Džh)yhS.d ҉`RٽP߭f,$f f٭۝٭d~dWh+y+PP-ơ=vpՅ~J׉йdh)VPQh2y+PP-1Ʌxw  A ɸ tBPbPWVhHڽ|څ11ݝxxa݅ٞRٽVf,$f f٭߽٭x{w  A bPK  )Ӹdkd PhIy+P*P+=d5`xx|ۋ xx3m݅s99h\y+P*P$+ }thP5$ }t"}jjj_j Rjhܠjj 5h+P*P* f}kT+5=WV,$SQ,$ٽܵff ܥf٭۝٭?~؉֙t|Phiy+P*P)عщȺ<әRPhny+P.P)ƉWh^+P.PN)Ɖ 끸h\y+P+P)Éh|yٽff ݅5Pf٭۝٭Qhiy+P+P(Ãٽff f݅٭۝٭щȺ<әRPhyh^+P.P(Ɖ t_y\SH@B%1]H@BWjhp_ XUWVSL=ܗu=u }~jS++Y҉[THڽ |څ11ݝxxa݅ٞ։QٽRf,$f f٭߽٭Ѓ 5TtNIS5|5xhyhP%ٽff f݅٭۝٭Q~RعQӉtNIRQhy+P)PX%ؙغ<љRPhy+P+P%Ãx1w  @ bP  )Ӹdkd Phy+PPI$}=|5xo<݅Tdҡ`A 񉝰9|9+RP,$WV,$ٽܵff fܥ٭۝٭عøhy+PP7# <әRPhy+PP"++҉Zh+PP"}StPWe[^_5 Zhy+PP6" uH@BTShiy+PP!"FPhiy+P)P!=G>H@BUS|ҋxx~<=ujXu]jh5$ ̓wUWVSEEP9UEs(MM<1эY;]~]E9Ur؋EЃe}uUBH1E9EE}hE9u}QMMUMA;E H9UCA;u9E0U묋E H9U.A9.A9.둀;t CD;mt E H9UCA;u;.uymtn=pt/;_E H9^UCA;u?yUWVSQ}W] j EPVlU:t9t7A=w:uVe[^_ÃtSWhi h WuYZtf@UWVS1ۃ$؍}ԹuEPURhVEEEt0=,u1e[^_VSh?z5Su_UWVS]} uSXu} ]e[^_UVS]u SXu ]e[^US]SoZt]Shj謃U<th j蒃US] Suj@YZt]Sh`jkUEt PWYthjXhj<US@E E܍EP1}E]܍E$SuF xUЋ]UUBw$bPu R1Rh j˃U0USS}] t3h$h1]tt&EPyEZuhKDYSh;hjUWVSSS=`!E``tjEӁD4%@tFڄt9E0E`}t:;Et)GFutFuEe[^_Eр\tD"t6't(ӁwD4%@tR(ZE'E"FzRY9Vh`hE`a UU<^tÊR?tЃUS]˃ڸXtJK*t@v>00B0\[ÃvC@^UWVSQQ}EE1;u==u }h339Y1;u|1;}e[^_jhE 4ބ t{t8G{ ~-U DP{ ~U DPSEXs ZF;u|11֡jh"2Sjh 2shhnp5j,jh`9`hUhUh UhT1hTh!jhE 4 tP"Zu_C ;E}&{{tSpU;u|tJ33{ tNIPs h`5胸jU 4hWdNE 4hh@CUhjh0UuhIhGUuhӦh{0UuhئhUuhݦhUWVSQh.}W证1[ZuhW蜁ZYu h}ch3kShQic=Et21;эqEA*3h<\)cu^;_uj `1e[^_hccEXjhWP<t-ށ=u hRjVU듊0< wk Bt0Њ0< v:u!vu Wh5yLu Whu Wh U=StCu;u1]P3hfb U|á U~5ļjhP9kxhp=XU=@th`QXhUEHx^Ht0 uhjQYh XQjLhXZ䠠 < th`7Qjgh븠 < tu 1=|UEHt\Ht3uhPYh PjgXZ䠠th`hPjIg֠ЃUEHt\Ht3uhBPYh 0Pj$gXZ䠠th`hPjf֠ЃU=`S`t$Ct8t:P3hq_ ;uj hhhf_1]j XU=`VSu`t3Ct$8t.PuP3hY_;u͍e[^j XUWVSPuEE tkE 8jh`WE ~PN~uvt]S t-1:CtPC 8t5Phve^ {uNuEe[^_jS!EX丼Wh@5莲1Wh5juj =  Yt)8 t${u+C Pm$3hFV ;uXs 3hh wUVS@]u ~FPPhU ~%Fth5e[^hEU5j2]SR\؃U1=lh@luE=lt"PhdU5腱øUS(^EPEP)ZYjj1ۅEPEP(t=tuE9EtZ|$j]]ËE9EuUWVS]EPEP(ZYEmtNjeEPEPT( t=t}uE9EtXZe[^_ËE9EuhX0ÅXtNj/S]c^_t<@}~jhahXPS jPS h\&0jXhb 0XsU=WVu'}uaE po uLe^_j5 hxC5 '`jhWdUjhohjh@*UVSۋutVsZYtu1ҍe[^UWVS; hͫZp >:tիu~j:p =hS 1҈E߃щыLQVShP$q x _h۫^thͫZhPe[^_h[tp h۫Gh۫5 j=3jDžXZtGP3@=Y^;uUVSuVaÅXtMCu=C u-V ECCVJ|Cu ?|C e[^PXPXjáCYtXUSuÅXt<StPCuC u ]]PXPXۋ]UuZt@UulYt@UVS]uSh5qe[^S,ƅXt BvB[Ee[^HDShUSt%s s{t*PhMuۋ]ø U}U tp1áptptpxt9Pt puˋ@UucZ1҅tP U=WVX5hs[MX}Z~E plUƠ=ؼth<=Xu{u PhLZYtu%Ph(L^_hP$h9L5賨e^_hTi<_uh@h`R<u%Phm=Lu%Ph~ L9h<YWUjhhh UMSYӃt'1t]ÍQj.hRP膠QUWVS=] DžLDžHDž@Dž<Dž8Dž4Dž0Dž, } ;MDtl.3h3 i^_(ƸM8M}u@k4tV1}Թ`V}Wjd4EE`,@h@$XtN5 Wjh e 0t 0[,t ,Ye[^1_8G^h۫8ZtP2ÅXt.9Ct$P2ÅXDž8t881\ZttB9Ct[tB9Cu\po$hsaXZt5 \HXAhb5 -_Xh7"jjh5 IOhhp "YX=`xL=`5jh`jj5 rv8*h![`PPXTR$hw!^hg!X@hά!E<PJ,P:h@h@诜 ?h@h`苜 Gh5=̼u $jjjhh`\PRp=VW<5EP$5hZ5> 0p$5hZ5 B<0h0pXZVhphg.=``YtƋGu ?uP7jhk@>UWVS 1Dž}؉I} I=te[^_huRԕ =`h5`CÅXZtShh`PD `<#tԃt8ЁD4%@u Dž`SD4%@jRh`9 u h`9 jhh`9 hhgh`j` < t < t< Dž.PP[ZYuGt6 t =th5`W^_5h*<5h5h߸+P`P=+PR蓡^R臡_bS蛼hY蠸…ң`Xtу v'hhǠY`[RhK^_UWVS0}tO}tIE EЃxEӋډUȋU Ù:!MC9@t e[^_CEE}1EE@CEEE1}:UůEt(},N}@1}:'F҈Uu1MQEPjuE蠺usEЋ@@tC;Eȉu,u͹XdM*<BEUC+Mu荹Wa$uhZ5ˍ tEỦ1{0@uBU*CMEM9 U$@;"@Uhŭhحh@h5Լh5όjUWVS<] E*j/3GZԼY@ԼE5Լ8±~t hSu蛩 M4E$Xdh5Լh5 됃 ̼x5Լh@\Mļ>50X-5Լh5ԼhpE5@~Ud5Լh 5Լh@=()E}ԼEă}EȉEthcEȋUEЉEUX}thdcUEUXU}U~ CUEhG_u%EċU)PPpHZYe[^_jS^?hF[jjj 1=;Uhh h Hu&hh h Hu j¶USĀ| Hu уӸhh ||PjjBRKu 8tx$ |]h XUh,UVShrÉY~,h&ZjS55 3ÃxY=tu 1e[^S5j>Z> tShY9XthZta87t 8#u 1jjl<5 5 htjh@DU1W}SU ]EPPډXP [_UMAP;QrЉA+AHUU9BUE@UUBE ;B r+BBp@pBUU ҋMt5At+x;9}A;Q r+Qp@;QpAt;ArAAAUS] S9t)x[CC9CrCUS] S9r9t)x[CC9CrC US]St9t)‰x[CK9t)C9CvCUS]Ct9t9sC )x[CK9r9tC9CwUWV}Su ue[^_u29E[}]ExSPmX)]ZuuYؐU5ƅ5,超(`Uu u5,ȭUu u5(ƭUUU99tx9tZ9tH9t68u9t9tu31+325t%6ԃ=ؼt4,5C4Ujht5裄$裪UWVhj e^_UEHw$pø1޸׸иɸ¸뻸봸뭸릸UWV^_UWVS4]%98` P6^%}ľ MM=@tM>eeMuEMeпne<E% eEEChtjxhjxhjxhjxM uj3j5 jhh5 3,@th XUWVSP} Eu }u}t ~ƃ}t ,9~ƃ}t (9~ƍF ;$`1dhS$葝`Z 5$xd_5$_h[=` $1=d $=h $} t уd }t,уd }t(у` }t у` }t уh }u1P5h5d5`FPסc =h =`o(=` =duT,=du Ee[^_ø!¡` P7/Z~ӃM͸!‰ E떸!‰h$5_Xxqu 8u@v=uShY[ES5j<41 5(蠊^tޚ8tyК8#s1!‰h!jP55 xF=uu E:Sh+XZS5j)jh8Y[td;RB:ApPlP=hhlpjj hhh,uV*s}10hy{9Z}WVh?C,h$ X;@tK~2t!r4"j"4FddƠ 9 A= ty=/t)RQ?[j)RQ =t.=|=)RQM!)RQ)RQ)RQ;b;PB:?hͫ^t1ۉǃI+vjj#hhRjj#hhhj2tVx(hZ{9ZWVhCPv9t4~+p\)SR U} E~OhZ~$jhhtjhj>(&hNXE@>U} ~EW&U} E~Oh1Z~$jhhjhj>%h@YEnU} ~EUS} E]t]Ë@9tȃuȃ@@ۢuh{[~2jhh>jhj>$E]h YU=4s@@ @ =4rjYCjiZ jFYj#Zbj$Yk )j 0Z5,5Bj <Y8Aj HZDMj tTYPYj Q`Z]\ej.lY'hqj xZt}jYjZjYtVjZt'b=t jX v@t} hq\ePYhDM28A,5 )Z$U庚t HtRhFUuUU1uUS]h Z~Et'j h hjhj> ]j hhjhE]US@4sJC t8;tTCCtPCP-iP' 4r0j]CUWVSE E}}~&҉Ut~OGu6m}Iue[^_Ee[^_ljjR kE EwWÉU:C 9tWs 9UGȀCGU舂tPCPug}tCC܋EU爐GCGsCʃ9QUSh4sICt78t1tGC CPCP-iPP 4rj]CU`ab"cDdUWVSSuEUD]  DQ߉DtVDDBDt/DDB}DtY[^_BDBDAD랡DUSDBDBD@Á`D]h_9Z~6D-`Ph`hD-bPhbj>hXUS1=4s+PyPPt 8 t  =4rՉ[UWVSPPE }EE1?te[^_}tt;]}";t^Tt5t;FC;]|ރ}t uYEe[^_F}t u^t;u뺃Cj_뮡4UhP蛂4XZ4tRDDBDBDBDB'DBDBDh nD4h4XeU;Dt@UWVSQ=4]tSt;uRjjXZjj_Xt SXjj[^jjÅXZt SYe[^_S 1҉Ɖ߃IM_ DEL; vL4)WRZ4Y+D)щ DSYtnDDCt#ƒ~G=t0DDCu݅DD1뺡DDDDh`D4 DME;UWVS]޿۫tZ޿ͫtJ޿t:޿̮ t*޿׮t޿ۮ18u[^_UDV+54}S^u~ODPD@hD9Z~\S54h4VPj><4ue[^P8~D4[h-^UWVSQQ1EEh7ZZu%}~h5DžX1OFEw$$t uJu>=lu5=u=`h jhXZM u t#=#=`뭅F=u =`t=lY jhY[tu uFOEFOE==` fwg$HEhhhgj@Shh =u=`ujh5[XiShhS~DShhjS'ShhRSt%!djY ShhSjpt=ruK=s =s \u=2$=s =sShh ,}u1}u}te[^_uhMY[uhXkjj#SXZUUjhjhjhjp`~jhh Ujhjhvhhh=ȼu@Ujh7jh#hhhUjhjhhhhBUjh2jhhhhUWVSuh1e[^_hu]EEEEEE)9؍}Z}  SVhaCPWj> Ujhjhhhh,=ȼpu=xujYzUjhojh[hhh=ȼpu=xujSX UjhjhhhhJ=ȼpu=xujXUjhjhyhhh=ȼpu=xujqX'UjhjhhhhhUjhjhhhh'UWVSue[^_ÍEPEPY[tEEuEE}EUtnEBt^EBtKE܈Bt;BZh)9Z|SVhpCPWj>&gBBBEUUS]uu]jjXZjjYXUS]uu]jjdXZjj-YXܐUhhh Hu&hhh Hu LȼjyUWVShh1YۉX~-}~=u[9t/Sh XZx 9t )ߍGe[^_1H9~͉)ރ}t~V5{YXS5j> S5VXZpU1Ʉu=dtЃtt=ؼt/u=Ht9~àt @US]at E[dUjZÐUVSut8w@D4%tw4Fuȍe[^S`ZSg\YUEjPuu uYoUWVS]t;tPKwXt޿yu$ !e[^_h@]S2^_t Sh [Sh35J UWVSQQuE} EEuEPhD5I=~9s'P;tp PhM5CI9rكE;t*Pj IXZxsEe[^_dQPjjhq)H̸*뎃 ~ 9r E PhO5CH 9rUS=<ME ]6==5t&=:t=Gt=?t1҅RQhT5H/vxtWShz5bH ;tE E ]GPjjhq GE]8P5jjh[F54 G[XSPQha5Gsw4Qhj5GSQht]US1ۊ`/P4h~N c/N44hYX/P4h tF/v8w%4hXZC ]ShƱ4у/v!w4hԱSh4PShgP4Rt/v'w4hZShO4Sh#4/v'w4h1Sh?4PShM@P4+c/v'w4hb;Shp04UWVSDE=<}Eu!= tU :te[^_À}}<tPh~5D E Xp\ 5jjhC/0  4hAt5{D /  54jCXZ5jjh(Cb M ƒ"T $5jjhB] CЃtJtfPPh5C}t;t'Pj YCXZ;PKX}PjjhqwB5jjhײ^B뙋E PGPhy5jjh3B] CЃtctFRh²5C 9>U Phв5CB 9|5jjhֲA뵡 H ;iPjjhܲA9M  $GCM  5jjh#>E PGPh 35}? 5jjh(Q> ] CЃ~}tgtIPh²5 ? 9@U Phв5C> 9|5j jh<=5j jhIu5jjhV5jjh[5j jh_w=/M AЁ|T,tIPhò53> 9XM  Phz5C> 9|35jjhi<G9U <4h!5=M D  W5U D muRM D @wuRE |Ph5*=U DukM D Ph5<E |t;G99 U Phв5C< 9||uCPh5< |O5jjhf;5j jh5j jh5j jhPhzf5jjhc;M QЃuЃQuЃQuЃQȳuQѳuPhEP;@}5tbEP:] C$u29U Ph׳5CC; 9|gPh߳5&; 븸5j jh5jjh9] C<tIPhò5: 9M  Phz5C{: 9|5j jhF99{U Ph5C2: 9|V5jjh 5jjh+5jjh 5jjh$5jjh*/wO4h>59 9U Phz5Cz9 9|Phò5j jhK?8U B`;Z5jjhX89}uM  ƒҁD4%tVE <"tMu65U P=XZC9|5j"=Y[5j"=Y1X뷋M  P^P5G8 RIZqfP58끍q0xՍͅ 5jjh$5jjh5jjh6Vhz57 B54)Sh4USĀ| Huh蝰[u:,щӃjj ||PjBR\]hTYtj9,щӃjj ||PjBR[UjPYN7hZuP5>5}>j %Uu|cUWS]51IQjS5u KcUWVSPPuuUE ]ED4%t4]wpD4%tZwI49u}tFEE p>uE 8t +Ee[^_ËE)1SgZ9SFYSQ[mSF_>UW}V1҅St ] 1;u e[^_3WZYtxuى];uU1}UVSPPu E Eg PÍEPhzS1Ue[^UVSRu. ÍEPS5蠆SU1~Ee[^ÐUE E0uPT0XUVS] u~K~PhFZKYe[^UUWVS] 3Nƿ8^EEEEE1hSuP tM?7w9$EEEEEQE띡()E}}}t!Hu }tLPh@j;= j:3ZYt @P1X3d$VS( 1Sz,ƅXF4H w;$}ujVS0 v $vh0f tF<;P utF<;Pt} uĞ 55vЃ @}Ovhv@fY}X~N=tb=tQ1R=Pt71RPF<1ҋ@RPF<1ҋ@ RPh$j QaZF<@ ƋF<@묃=t"1RPF<1ҋ@RPh1븋F<@ۃ}v`vC $vh0}WMP8tKh^jPj3: }}XWk]US];u]SZt @hS9ZYUS];u]SZt @hSY[UVSQuyOj EPV`O 8uE8ue[^Vhv@jNu VhjNUS@]O8tShv@]Ã=t =8tm=tՃ=<ũ=8uV8tEPjT<XZ<H<xD9u5h@|U8_|U=thhh5~.h@h!5d. j[UUVSu] hSVK @t()ƅ~i3UYuhSZt37{tCPss hXVÅXtjhXSSUShv@jXU5j jh,jZUM UBB9uABPQUM UB B9uABPQUM U9RuAvB@B9uAvBPQUM U9Ru2z~z~AB@ B9uAvBPQUM E9@u6x~x~ A@PQUSM ]UzuAC9RtB9t BB9tB9t @B9u 9Ruv A$ÉUWVS ]9[uuu SvCx֋}э| WJƃuE @GWCpV. WuV/CpKCpCPM Qe[^_ÉUVSu]9uTC SPSB sFK$>KNe[^UWVS]} jIƉCt" uF{t CxuG ÉUVS]u ~t8~ t2~t,~t&~t ~t~$t~(t~ t>udv{ (JtQjEPSCIC (JCICJCJCPKC NC$lMC(K_{ (JuEP3CFCF C FCFCFCFCF C F$C$F(C(ve[^ÐUWVS4Ehu ǃEPWuhP EhEExvEUׅt| uHEEE;Es!UU܃RVGƃSVEU׈ VEPE0P$E؃EPWÃq VPF WHRE؍e[^_ÐUWVS$Eh@]u KƃhVK%$IVh9$E$DÃEPE0Pto}э;Er%EPSfFÃjuS Sh!V$EPU2REu SAE4$=QEe[^_ÉUWVSu] }S6Vt9;u$S6Vu Ce[^_ÐUWVSu] }S6Vt9;u$S6V u Ce[^_ÐUWVSu] }эyS6Vt-Wsut#S6V u CЍe[^_UWVSu] }эyS6Vt-Wsut#S6Vu CЍe[^_UWVS8ÃtD)PjRQAU8+EB$8< VWR+ e[^_US]s$6C$C0<6ǃ<@6ǃ@\6ǃ\$]ÍvUWVS u] ѺOtJF,;F0rWVt*WV3;tvV(CF(;uЍe[^_ÐUVS]u ~-C$9C(r#VSyC()C(;C$s C$C(ve[^ÐUWVS ]} E}EPS{<tjSE  t t~>tuu2~C(C(HC(C,>NDC$C$C,C(P~ SkE>FS(C(@C(C, SAE}4E>e[^_UUB(;B$u 'vJ(A;B$ry tvH;B$r8 uB(ÉUS]SBC,]UVS]} RS 0$ Q2Sq)2Su[2S:t KcЍRDtF~Aw}$TEEPVS ENEPVSdkEUEPVSeTE[EPVSg=EbEPVSXv&-Bp02S#r2S4 :tcKve[^ÐUUE t\}tV wQ$hPEPRl( EPRE-REBUvÐUU EÍvUEt ÐUE$ÐUVSuE ]% hYK+hPP2=hhPR=ulhPÃtwN S.ct| u HvRV"tPSƒu S:.ȍe[^UVSusj(jh vuE8usj.jh o3u P WuVSe[^_ÉUVSuM ]< u9;hu d<u;duh<t SV e[^ÐUUE 8urj+jh` "vtPPRÍvUVS]u u>t7"jVSSVhKsNve[^ÐUWVS ] u}:u@{ t&Vut ?WVs C{tC${tWVsuve[^_ÐUWVS } u:t<tvS:t Ӄzu {uv P C{F> tw uqG Gtt atuWt wEG}t"}}t )t"UGN E0G7 u PbG  uuVw u e[^_ÍvUWVS ]E 0:t&~txQ:t уzueyt_ϋqC;t$~ tNSF Puu6~ u0u FU FGFVue[^_ÍvUVSu] tr{ ts VC sVCt t-#vt#u{t s9v S#e[^Ujƒt#EBBB BUWVS }u ]U>u RSW`:ubPRƒ{ t @Ps FPB~uED"DsCPW{tRsVWSe[^_ÍvUWVS }u ]~BC"Dwj5jh  hfw}tyPSƒ~ u-D"DvFPW<@Pv W@~tSvW*e[^_ÉUVSu] MEtett/LuFptsRP1~P08t6;Pt 8t$0hvvShve[^UWVS }u ]u>^F>@vv S? D4%t&>^Fu >?v؃@v^u>\F>^\u>\F>\ tPv S D4%t-v S D4%@u>+>\F0>F0>F؃0>e[^_ÐUWVS U}] ?t] C:u^C@Cvր:v R%#L4ȅt$^C>u ?v@v>^t>\u\C`> t[v R D4%t2v RZ D4%@uv,\C0C0C0CF>?t tGCE e[^_UWVS]h d h htgǃpǃtǃx hDX t/ hl) u-[ǃ[ Se[^_US]d ǃdh ǃhǃpǃtǃx ǃ ǃ]ÉUWVS Ehv SG%#L4ȅt3C~ƍe[^_ÉUWVS}hd>/tC<3/u~48/tvC</u~|uƈ]E3t9"t)؃Ej3PW PEPWC~E0e[^_ÐUWVSEhdMxtǀ|lPGv2:M B~ uuRjuUuGe[^_ÉUWVS(Ehdpǀ|lP2:"B~ u6uEEEjj(u< PEPuju_Tu`Fe[^_UWVS ] ޿y8u u &޿|8u u`e[^_ÍvUU t2E|tt y|vÐUWVS }u ];t{uVhPS:t@v09Bu2Qhw, :tփSW|e[^_ÐUVSu] MBEƅ<"u.;MhpPR Ph:ti9BuW;Mt_ 2hpPPPhpPP Phv9 ; :uS2hpPPq Phve[^ÉUVSuvjjhh:tCPQRVكC~؍CPQhVvjjhn d:tCPQRVNكC~؍CPQdV/vjjhhVvjjh hVBe[^ÉUWVS,}uDžhDžDžDžV:-Ba$dDžDžsDžg W* W); s3hw ;uBP6h wC8<u Wt C14CPu6h tktW@xtP<uRW)"<u7tW~@W(t+v|4Pu6h t'W PW?%W PW<4Wu46h:wt'Wm PWy>sxt:W" PW-W . e[^_ÍvUWVS u} t }t}u P[P[tZU[<\MLD[Ѝe[^_ÍvUS jbÍEPEPu ScuuuE$ocE]ÍvUWVS } j:E0-WƃE;0u vE+K CPǃSE0W;FWE0É<$tQuu uT;E0=t#V4tC<ue[^_ÐUWVS u{u ;\C0F$@ K! CAЃw G~udK[;^uS{xM{?t,Sv R D4%tC;?t  vCe[^_ÍvUVS]މE \t\t /^t &- E Pt E @E C뭉Ѝe[^UVSu E;t"V3uC ;ue[^UdÉUgÉUWVS u} u   VÃ8tjPCV;u苆GGe[^_ÉUEǀXǀǀǀ dǀ(ǀ$ÍvUÍvUEU Mu uuX dv@@ÐUMU t}u ÐUS]E tRv#u;jjSt&PjSnJvЋ]US]`t `ǃ`u ]ÉUSE] XtXB XAv PS0&:]ÉUWVS u}WVƒ~@t F@lu;EPWVEt t v]uV;)du hl"neE Ѝe[^_ÐUWVS u} 2u!h0v t jWv te[^_ÉUWVS u} X8;y VtC;x>C8uBЋ CC8uB! VFx WV‰Ѝe[^_ÐUWVS uEFt VEFtY^$@vC;F0r +~$jV̿^$C{ { SVts Vz4$4$Ftu^$74vC;F0r+~$jVLt%^$C{ t{ tSV t^,^(} F(+F$U uEPEPVÃM;EPVЊEFD $\F<F8 Vl V4$bF<F8 VF<F8 V4$,fF<F8YRF,+^$H V4$l4$|F<F8F<F8 V9, 65 VFFt V} tE tF$e[^_ÐUVSu] v S D4%tjSV u;jjV;džC u#vjj Vᐁv S  D4%t.jj^Vyu jj?Vj؃@Fjj\VK j0PV7 j0PV j؃0PV e[^ÉUWVS]C E  }tq@;CH|_C CHǃ@;CL|.sLC 89}S DA9|C | [^_ÍvUWVSudždžj V,dždžEEjV^$;^,s-;^(uE苆EPV|C;^,rӃ}uE苆EFH++$$tA(u8u/~*K~jj VxKj VYdž$dž(jjV?99vSF 4F4V vHF 4F4C;~ʋ ;~K9GSV jVW"F<IQV"'FC; ~ uV uV"e[^_ÐUS ] Sn $ 1$ ~1$> 1]UWVSu]~cE+E9~Å~,E UL)E9r JI9sE UU UE E9s~FBK9s[^_UWVS} MuU~0 9|9#~ 9 >9s BA9r>[^_ÐUS]U MIt:tBCIt:u[UWVS<] M;t:uCA;t:t]π;tC;u9]s { uK9]r]9tA9u9s y uI9rME8u ?e;]v 9vKI:tC]AM]؉MЉ]ԉM̋U:tmE;}savU:uQ];MsE9s:uCF;us ;]s:tE+EЉ)9})9~MЉűUU؉]ԐA;Mr?tkE]U9s\E:uM;]s;}s:uFA;us ;Ms:tE+E؉)9}+E9~}ЉM̉]؉uԍvC;]rE+E UUE܉EU)E+E)‰UȋE+ẺEċE+E)EċUBPuE}~EE؉EԋUUЉŨ}~ EEU܉UU+UE)9} EEU܉UE@PuE}yUU؉UԋEEЉẼ}y UUE܉EU+UE)9~ UUE܉EE+E؃UU؉UԋEEЉE̋U)E+E)‰UȋE+ẺEċE+E)Eăuuu9uuu9}}+E EȋU;BH+EPRE9EtXuWu!uWUrHE+E Pu R])+]SEȍ48VuF SVEEP])SWu# SWuZl}u+u Vu,U9UtH]Sup$EpHVu P])SWu SWu8E)PWuE+E U+U)Pu!E}E+E EȋU;BH}vPR|E9Et(EPu E+EPuu6E+EPuuU+U E+E9t)Ru 9}u+u])9}+EPuU9Uta)]ȅ~/SWuuWEpHE+E Pu u ])+]SUȍ4:VuC SVEEP])SWu# SWuZv}xeE+EPu0E9Et0}~uuurE+E+EPEEP E+EPuue[^_ÐUVSMU u9s%:t BAC9r9s AC9rv[^ÐUWVS E@HEEp$;p(vEC< u } uCt|Uv R D4%tC;]~E=Uv R D4%u;]~+]vG;]|GFE;p(;WuSuJ)e[^_ÉUWVSu] S)VFFF@F;FHFF@;FL|=NLF89}VDC9|jhW)F| F ~PyFQt, j ($ j r($ f(e[^_ÍvUWVS uF(X t!;F,uFH+F+$$t VsӁv R$ D4%tt@?j^V.Ӂv R D4%tCj\V`0PVH0PV3؃0PV!Y'e[^_UMAA;QL}AB;QL|ǁ ÐUVS]CPtNjS/; %vVSsHSF; ~ރjS{( Si$ &$ y&e[^ÍvUS]h`u*ǃǃƃǃ]ÐUS]Cǃ]UWVS$u] SV躜uEjS}W)u( jjjVW'WcډЍe[^_ÍvUEu uÍvUWS]CD<|ul;duC(+C$=v ǃt,s$Ie[_UWVS,uF(EhUE䋖UE E܉F,;F0rjV_Uu4h:.B*EEF, F,}t;tvV,CF,;uV,hF,X9sV,CF,9rF, VEPVEl'ws$E V,EV,BF,BEEEH82vEt4 VC9F(HF(hWjv,PPÃ9F(sNF(8 tFwTF( V,F(V(BF(F,9sz uUV(F, VcP V9؃PhU9/EihiVmE؋F,;F$v 8 tF,V,BF,;F$vz uF,} KE];v;[t;]u E K;w䃾}[}thE 9Eu`=h?uG}H% VA<u V1}uF,F$ F(}uH@F(.B*BF(;F$r";F,wu܋@PVǃ<uUU܈VD}u jV jV螶<t(}uF,F$F(u܋@PV8Ju@ VE9t V <XUV(h?h:uVǃ<u=h?u}:uvt <uV}uPUhEU9t V<EF(u Vo}u e[^_ÍvUWVS$u} ƅ.ƅ*F$F$F,F(jVF( F(PF(/t? VPVÃ+Ƅ+uF$F$F,F(v8.8*hPS3.@* hSPB.B*B;Ƅ.CƄ*CƄ+hPFDF$F,F(ujVvjV蕳<u Vu;u+ VZF, V,BF,B4$7e[^_ÍvUWVS u} }u/^(;^$rSvWSuK;^$s7^(2^(;t$;^0sWSuC;t;^0rve[^_ÍvUMU QDA$A,t t#vjQ色vjQŰÐUVS]u S(MIt(9uJ;S$v9t J;S$v9uIu;S$r ;S$u9t>9u}tBS(LtBC( SD S,e[^UVSu] V(MIt(9uB;V,s9t B;V,s9uIu;V,r>9u}tJV(LtBF( V贞 Ve[^UVS,u]SVS" EPSjWtt?P 5lF(j5l <u 5lu$ 5liv 5l*=@t@;4tB=@t@Bt >эY9u6vEHXA=uUBTэ9s8lj9t(;t"€8tBC:uƄC9r̍hPEpTUZXC=~rjjhj'uUBTBXP=UBX@BXe[^_ÐUVS]sH SS`B CHBF$He[^ÐUWVS}HGPuƃ;_} @PLt9C;_|GEp GPƃtH ?;_} @PtC;_|GEp e[^_ÍvUWVS }wGt+>tv 3;u Vw G t*>t 3;u Vze[^_ÍvUWVS u} ;~Q;~LH+^~Py:FV8t,FHHPV" jVFFPVK=v~;V\z|t2B|8t*hSSSr|LLP~ j jKFVV\tP8tE؃zhtBh8u.hPPPF\KP 0F\xht'@h8tyhjF\phCx~e[^_ÍvUWVS u} ;~;~Hu j F+^Cv'V\ztB8thWWWr~3V\t'8thSSSvFPt=F%9t)E9}Ӄ j E9]|%FV)PNFRVBڃ~?N\t38t(hRRR+JPveFPt؉9w !9~ j .F{E9E}à jE9]|~e[^_ÐUWVS }u ]~z;_Hu PF GKuG;GH|VPyJGWBWGQtV\ |suh V;s uh V* s|u d] EhEU|u t] EpE u6]T ]C\;;E| uSuu{t:UU:t<u&Ut DPSu,]SvE<"uKSPu莫U| u D] Ut DPSuҪFe[^_ÉU5pu ÉU5poÐUWVS }wjjh wjjh G`pp hw GP@tfPhw GPtPhw PyPhw蝞Py&GQtPh0wq_\=tS ;t$8thP3蛱FP6vhNw >uwj 衝e[^_UWVS E xxp@E컀=tAV3Ut ;u$;tuSuu=V3t ;um;dttt ul8u-MQ`Gu츗8u-MQ`uh`uva u }G`p pW9Jj EPu蒫E8tuh`Ep/]-uV` V`B FLBFHtu"}G`p pWtvЍe[^_ÐUWVS,]DžDž{8-u'@stvuDž Dž;83,8uE@P3/8u,MA`xtlPhBEp#38u&UBQtlPhBM3K8u#ExPylPhBUu3x8uMxƿ}8t!\8uUB`phFr.38uMA`p hFq蟙6=t:360t >u-MQ\>uP3>t 8u3h@g>tD>%u9F%Mw $LG#tPhMq轘F>utC t;t8uqhj;8j P3}ƒ8&;t"8tuPh-hjhtWhUr˗;t8uMqgj P3Ѧƒ8uy3h@փ;t8u&Urj#jhj P3Wƒ8uyuj3hMqM8tuD3hEp';t18t*uPhUr薖v*hRRV2Pe[^_ÍvUWVS ]ECPs 蹨l 󥍻l lPpt%=}RPPEER:t9:t 9E}~EUR:t E}~މ# # # # 9PPjSЍe[^_UWVEǀƀxl-` f Pe^_ÉUÍvUS]S蜧u S耧]UEU H HJHJHJHJHJHJHJ HJ HJ HJ HJ HJHJHJHJH"JH J@!BUUE JHJHJHJHJHJHJH JH JH JH JH JHJHJHJHJHJ"HJ @B!UWVSu9E썖UEEhdM䃾|uxEtUpME=UECMEE:Eu } EPWVUM : EPWVU|D:}tEEPuV̝UM܊ M EPQV讝U|D M  ;Ce[^_ÍvUWVS ]HCPs %= P+4$;t!VɤV覤;tt;t! ;xt;t! ;lt;t! ;pt;t! pt ǃCPRPP R: uA~#u R: t 9#t  9A~jS9PPv#u R: t #t  A~ul Pjs 葡tǃЍe[^_ÐUS]t1Cu+lPjs ;tǃЋ]UWVS ] 󥋃# # # # Pjs otǃЍe[^_ÐUS]u-Pjs !tǃЋ]UWVSuEEE>€8-xvBdt#d at;vqt'xt,E@E4E(E@PuhUr.t%>t:-u zzt >EE = Z9sthSMIR}tluPhEpsURvM|lIMM܃}vUDp#CE+uEMIv}Dt#CtE-}u };ЍP}txvzEU;BH| huh3r3}܉}}}t3EPh8Mqv3hAt}w ;Epj xC;.+t-uU@Eǻ = t"W35t ;u;uWuh>Mq[E+t-t:oS}  RUBp CBpC@SҋM!TtjS}  RCЋ}!DpC@Pt SPt3SE @ RCЋ}!DpC@S!Ttte[^_ÍvUVS]u LǃLǃPǃ0ǃ4<S$;S,sA4B;S,rǃ,C$8C,C(t hlvC(PL[^UWVS ],~t/} u C(;C,s@C({(vSShC(F;C,v vvW艳e[^_UjuÍvUjulÍvUS]C(;C$u @v hXsQ<E TPЉQ<&A$A(Lt QdÐUS]TtC(+C<9TvsjV/v9shzt6Vph6VXe[^_ÐUS]0t)08t 0@ 0/]ÍvUWVSD]jSƃuh0EȾEEPS5u}EEEPS t hZjEPE)PSt h4hSjhPuS =thv3S >e[^_UWVS ]u } x h0U8u 73y%?Љ@) %jкRPw!Ѓu h$jEPth'3S{Et%E+EVhjSe[^_ÍvU uu uÐ$FreeBSD: src/lib/msun/i387/s_ilogb.S,v 1.8 2000/06/06 12:12:36 bde Exp $ u %UE]EÐUSEU с> tPu~CJ~:v ~)J vvЋ$U=,uEEEE@ jjURh,jP u ,v,ÐUUt:u9vt2:%uB tpJ:$u zUM:1tsӋUЍHJt&t"D2]:DuIJtt D2}:D9t<2t2M1BAM<2u]3E}<7o VEщЀ|muu U2PE81u[ CS9tHM)M|1;uIM E@P)<2t2]3BC]<2u}7@58u 588 uv+RBxtDxt>j*Bpt @P蕻t @ fPDBtJtAj*BFt @P9t @ fPF@(t (u8Pt't(@ǀ@,t ,ul@t[tRt u@@t u&P,@ǀP fzBu%fzt@tt fBfBBXE@t*t!8uEEC)Bx8tEx8t?j*Bp8t @P蒹t@ fPHBtJtAj*BBt @P5t @ fPJ}t!=thhu `Ee[^_ÉUWVS }=t`5F9}K+~F")‰Љ)‹F v@jPW6u FCV9|e[^_ÉUWVS }=ttC9}_&~C$)‰Љ)‰S"ЋS vjPW 6uC fuV| N| =G fx~9}3@9tCPGLFPqVtU}H!Rv=ttFRP}D@PVtvիV @BVD CF9B fx~-~t Bt @p艛e[^_ÉU=tuDxt, !p蛻vÉU=tuDxt, pߺvÐUSfbuHxx%@EEf@jjPj~tfǀb虙]ÉUWVS }@xu WY:@\tG`t> `<$$:x@\这D@x|t u@u XKph@ut@xu jYTVSxtftx<$T9XKph@ut@xu jSVSxtetxjSRH(CTDPe[^_ÍvU@xt#ǀxǀt:v@xtǀxt xÍvUWVSu} @u _v~j;FtcBH9tuBH9xu QQ v Q7B9x|O~;FuuZًBH9tuBH9xu S QW7B9xE9}}9^uvE9}}E9t Az9E_]Axuilt`0tP4u?8u3Et1EPEPUP\sf}uf}tE% ڲ9ht RQu@xPΕ9}}~tUxU䋀h@ut@xu jPuSxtUbtU䉐xq@U;x@9EEE܀}tJU܉ڲ9ht ROuP@wP讔Ux}ًBH9tuBH9xu S0 Q4B9x|ohv;]}[ BH9tuBH9xu Q Q;4B9x|uC;]|E4)Dža9}X BH9tuBH9xu QX Q3B9x|C9|e[^_ÍvUWVS u}E 9E)@;9vMM ;uB;)Ѓ)PU PMMމ]h@ut@xu jMuuxtf_UtM쉈xC9=)@PU P@e[^_UWVSj6fbtfbdu xt賫dt0O0 PXǀdxu xt@@@Pp9~֡t= Vƻ9vujP([ f| u@(f|t SGB9 R([fDR(fDB9 R([fDR(fDC9L@92vR([fDR(fDCB9~щ@9/R([fDR(fDCB9~ѡxfPfPffph@ut@xu jJVSxtL\txht j?J{PP j3e[^_UVS  @xt; t @% ‰ѡ@Pp9~փ Qi4$Aƻ9}v SC9|e[^UVSu] =tXtxJx@9}>x%tR(@90t0A@9}Ǎv9ht RHP+x9~bZ~svBH9tuBH9xu V[ V-B9x|K~먃 @pQe[^ÐUWVS }tx9ht R"Hh< @)P@p@9}'v@(tǀx»fx~_}BH9tuBH9xu W v W3B9x|mCB9|F;ue[^_ÍvUWVS uM]}B9M 9] h@u tBxu jM+jSxt =tǀxU9ht R*h< j@d}B9] h@u tBxu j*jSxtD<tǀxU9ht R0*h< j@B9M 9] h@u tBxu j)jSxt};tǀxU9ht Ri)h< uju@B9] h@u tBxu j(jSxt:tǀxU9ht R(h< uju@5PPxmB9M 9] h@u tBxu j(jSxt9tǀxU9ht R';u h< j@lF;uԋB9] h@u tBxu j:'jSxt8tǀxU9ht R&;u}5h< j@kF;u}ظ/l0 @x;u] h@ut@xu j1&jSxt7tǀx»fx~_}BH9tuBH9xu Wu v W B9x|CB9|F;ue[^_ÍvUWVS u}@uxXt@uu L] h@ut@xu j$jSxt6tǀx9ht R$u$BxXth< jBpX6vBt.h< VjVBKP@i1v9}%vh< j@pXiC9|ދ]h@ut@xu j#jSxt5tǀx9ht R~#u*Bth< jB6vBt.h< VjVBJPh4v9}(vh< j@gC9|۸e[^_ÉUWVS ]  @xt; t @% ‰U}RSjuu uaǃ @x F}u u@tUE9tt H9tu;Bt)t h< jBfh< juu @p iIPft"h< j@fǀxǀtuuu uu uBǃh< jSj@p HP#fǀxǀtu2FtuE+E@Pu ujǃ@xux 9]v9]Bxt|]+]h@u tBxu j] jSxt2tǀx$ v;u])h@ut@xu jjSxt1tǀxjj F;ujyuSjuu EPǃ @x 1} tWM 9tt H9tu;Bt)t h< jBch< juu @p {FPct"h< j@cǀxǀtuuu uu EPǃh< jSj@p EP2cǀxǀtu7Ft uu UMDPPtǃ@xux } E9E 0h@ut@xu jhjSxt(/tǀxjj FE9yu4 uEPE Pu5uu u e[^_Uǀh@lu$@t qa@t ^@t 1a@t a@t `@t `P\t6`t- @xt \@`P`ÍvUÍvUht j^lt}0utƀ0h< jjj=ƀ0jBHPxt,BHtǀxjj VvÉUS]@xt~u ذÃ`ڲ9ht Rt SӃpRx@Dt D_]ÐUWVSl=t.du j19u[v uV8jV)8jV8 ]SVjS9jS8ǃu$ V8jV7 jVj9~ ]SV8jS7ujS7jEPj8E]E$8E uVSj8j2$1 jVjy8Db{Z jEPjn8e[^_ÉUVS u=F ]؍EPw7EE jSV7=tCxt8 p $ tƀǀ< v S =tǀd|u jz7Utƀx|uÐUWVSX]u }EPp6tMuEPjS6u3}t9ut u#}ujEPS6ve[^_ÍvUS]=Iuh0]=tjh0Lvh0jjO6u@=0u7 h 5 j  jhj6 vI=Hu;t7h l jh l jhm jH]ÐUWVSEpM5F F$F( $h,d`D؍e[^_US]t 3s$(]ÐUS]=t!9u |||u߃ s Ps$Ps(Ps,gs0\ t .((t ((t 't ' s>{t1{t+ s t&8 u s' S';u< hd]ÍvUÉUÉUÉUÍvUÍvUS]EjEPSgƒ}u] vxE E8t8;tEE8t8;uE8;u@EE]UWVS]EfEhj|jS"VPfUfPfPM fHǀtǀxǀ|ǀǀǀfǀ\ǀdXǀp$!-ƀ0ƀ1ǀ4ǀ8$!>-C h!&-ƒ4PRƒ8PRƒ8t8PR A P94~ZYt+" 8u ǃ "# @ P4ә4 A P98~[Yt+(" 8u ǃ2"$ @ P8ә8ǀHǀLp ǀPp ǀTp ǀXp ǀ\p ǀ`ǀhǀlǀp@ fx~M%o@@%<@ f@@ǀH`=DƀGƀFǀtǀǀjjE PEPKjjE PEPKiP$P ǀd | @@_PPL`=`LxyۡL8y?j@)Pu VSJƒLPVRLPv^## # -(-D<H>L*P!Tf@lt l4PBHtwHI9s[׉֍vGHa`}+|3.~0t 'fwFHD @`CC9re[^_UB9Eu B9E tÍvUWVSPUP)UH@u)Mu uptSBxBHfB fB;E|uf+pfr8p+E9u9ut }+}@9u 9}t}v@9u9M tM QWR-R@ MfHufr@ M fu fr@ f@f+EfBt Iǀt! ǀE+EE Ѝe[^_ÉUWVS}u ƀxVWt, h!cj5,VWÃ؍e[^_UWVS uEE=tltEE=tPlt 0uE=t,h`t@ fx~ <!u}tQ@ fx~BPу?%  tt E!;5`CĉE}tӋ`!0Љ!ǁ}t?}u9}u39UuEbtttu EPuRS)$b@t7Bt%u jBK%`=`}Btu jBv=tEt9t1Btu jBK=tDt3t+Btu jBJ%`v@ uu j PPPPPPPPP@ ,4PJ%`}}u }a9Uu,}t}t Ebt tu EPuR'f@t4Bt"u jBxIv=tEt9t1Btu jB%I=tDt9t1Btu jBHt<Bt*u jBH0 ǁ%`}tM}u}tAa9Uu!}ttEbtttu EPuR%@t%Bxdtu jBpdHt(Bxhtu jBphGv t(Bxltu jBplGvt(Bxxtu jBpxGvt,Btu jBLGt,Btu jBGt,Btu jBFt,Btu jBFt,Btu jB|Ft,Btu jBHFt,B tu jB Ft,Btu jBEt,Btu jBE t,Btu jBxE@t+Btu jBDE}t=th v5`e[^_ÐUh< uÍvU@xdt@@xht@xlt @xxt@t@t@t@t@tltÐUVSUu @B[]Ӏ:/;${<j>Si;>h"0v=wt0P$ ;*u V $d$V;.uEC;>tC=wt$0P<$d$]E ʉC;>Z١u h"EEڀ]؍vC;}fE fEEm]mEe[^ÍvUS u un=@BtIșȋ]ÍvUBx t'@HPjBp $PAÉU@xpt ppAǀxǀtptpǂp PeÍvUS ~_  ǀj@p&j@p0j@pHj@p8j@pDj@p,j@pL`j@p|? j@ǀBt"jB @P(uP<jjjT"Pj j@""PYj j@!P'j j@!Pj j@!Pj j@p ]!Pj j@+!Pbj@pj@pj@4|j@pT[j@7j j@N Pj j@ Pj j@Pjjj @PmjjjPAj j@p [Pj j@)P ;~9~ЉBtHxptBBppt'@ǀ@ǀv]ÉUj@HPjjpt j_@t [; j :UWVS] EDžDžuEP9])Dž@BBt8uBPut9]ku)ދBt\9}IVB;P EPuPtv@x,2@,8 u|;EPuDž@@,I΋;Hs9^~<<tK~ Dž@BGv+uBtY9}FVBP EPuPt@xL;EPuADž@@LI΋;Hs7^~:tK~ Dž@B@B@BUE؋BE܋BEM9MDž@BBx tFuBp aP EPu.PAtE9Eu)ƋBtY9}FVBP EPuPt@xDhPP"~;|ƅ~e;}]uTuK@$P(MIU=wƅRtƅ9},C$P(E@Eȋ;huA9|逽ta9}6UR@$@(UʋA9|׋)@@DI;s9^~<QtK~ Dž@B;P EPuvPzovu+uBt\9}IVB7P EPuPtv@x8hPSwDž@@8I;s9K~>vPgtK~ Dž@B;}/P EPuPt@B@Bt e[^_ÍvUWVS }u =u 4;}u;uP9U|EәEUEP9|^؉љNjUB9|)\Bth< jBf2 j K~8Bxth< jBp.2 j ~ 넾@H9~ǡ@H9E~E juuVW e[^_ÉUWVS@u]Dž@BVuKPhPEPPvtW}} ~-@9}"U+Uyډ+E y؍uv}} tHPVuu u hEP^Pu =@Bt;} }tb@xtTPVuju hEPPƒ =@Bt;} @x0tVPVujj hEP袿Pƒ =@Bt!;}v@xHt^PVuj@HP hEP5PLƒ =@Bt ;} } ~ vDžB8xuz}~tBx8tkPVu@HPEHP hEP臾Pƒ =@Bt*;} thPEP$P"PVuu uEP@p}WpPVuju@p0}WDPVujj@pH}WPVuj@P} ~@pEP落@p8}WvPVu@HPEHPWA @Bth< jP-e[^_ÐU=t4vÐU=t8vÐUE#US]M BtQj SB!QjSP@fP,]ÐUS]M BtQj SB!QjS=P@P=,]ÐU@t @t +ÐUWVS <t3h< V$h< b$@ fx@ P,dj@ @P((%% f@ fxy @ P$hǀl h@P #@xt"";h' [fTfT [ ؅yC)RfDfD@xt [fDBd] [f<tf [f|tfD [f|tfDC;hЍe[^_UWVS,MU ]fMfUEfEf9~f;}~f}fuf;u}uf;u}fuѸgfffE؉U܋U)ff9uUfMff;1ω)ˍ] ω)ˍ])ʁ؉љËEff9uu+MU)эI)ʉ؉֙@x^f9uu.MU)эI)ʉ؉֙*MU)эI)ʉ؉֙hhffuf,[^_UWVSEfE} MfMfE;d0tSfyf}yfE;h|fE;h|Kf}8fx';h}f}xE;h} f} EE EU(fË @f< ft fMfLBt. EPPPPBP$e[^_U@xÐUB fxxLfxxEBt u+@t u@tUWVS] u}Mfx ;h| avt @fBft @fDBft @fDBf[^_ÐUVS] uMfx ;d| =vtѡ(fDPftѡ(fPf[^ÉUVS]U uEEfEfE;dtY At'Vj RAP&"M=tEPEPP=EPEPPf}uf}uf}uyf}tq1tf}uf}tVjh@#*1t%f}uf}tVjhF#Z! xof}u fEf}u fEv}tUfEfEfUf}tVEPQf}tVEPe[^ÐUUE t BÐUWVS,}M ME@EURU9U uM9M]fC ft6U S4K8A9US0A9uF8@(EEE9E UfB fu'} G;} MQ(4G;}~] [ Puv(F(}G;} ^EP(UB(fDB(MfLfB ftJ(B4@uV0uG;} ~E@E;} &vMQ(UBH!‰UuE9uUfB fuIJ(M܍E؃UPSËM؋E܉UB(<u5 MI(Mԍ ]C4@S0]Eԉ;u|BUJ(D;E}EfDUfB fu!M N;u|]S(fDuV(MfLG;} u]fsE fCfC,f;C~U fS,MfA.f;A A.;Eu ]fCfC.ufFf;F~fFfFUff;B~fBfe[^_ÐUEhP5ddu h'vÉUlE PuÉUWVS] l}\ }Ix; v4P5 Dž|E} Mx9v9%AEP5Q !]$L#|6}~ EDt|_A0 wSU9~LHAEE9A0< w/A0< v#E|E9tA+E;x1| ~ Dž| #v|t ؃D ؃DB;|}|9|`u=|Jx4lL D @CJyl`U:* M9%t6ul@;hv PMdlfEp@EEP5u E!] $$l@;hv Pdl%le 5=`~`H`|t lˋUlD;hv PjSVu=`~"`H`|u<t lэYl;hv PShztu=`~"`H`|u<t l΋]эQ9~ڡlD;hv PtVtdlPl=dэL lEM1|t%L=``DL^EUA<wBA=`~`H`|t l@+Ma<a=`~`H`|t lEUA<w <Ma< <~EE=``D @`lEbDž|EU0< w&|MTBЉ|AM0< vڃ=``D|=`~`H`|t l=`~`H`|t lw=`~`H`|t l˹=`~`H`|t l)=`~`H`|t l=`~`H`|t l=`~`H`|t l˸=`~ `I `|t l5+=`~`H`|t l˸=`~ `I `|t l=`~`H`|t ltt9=`~`H`|t lu4=`~`H`|t lt=``D=`~`H`|t l=`~`H`|t l!x=`~`H`|t l=`~`H`|t l =`~`H`|t l=`~`H`|t l1=`~`H`|t l˹=`~`H`|t l9=`~`H`|t l˹=`~`H`|t l9=`~`H`|t l˹=`~`H`|t l95=`~`H`|t l2=`~`H`|t lу=``D @`l}uE}E=`~`H`|t lEM9U:%u'BU:?u@M9;u~fH U:eutWM9tdAM9uYEU:tIM9%uAM9?u@ U:;u~HM9t AM9uE8t @E8l@;hv P8dldЍe[^_ÉUWVS M] EEE]EE%C9 Xw=$<&CsAC}tEE׺YAER}u>E=wtTPЁ'~EAC9t `}tE]%CC}tUE9}Uȃ [^_ÐUS]{t Sc.{t SA]ÐUWVS} ]}E@8EtvU9Z0u 9z4xax]}t MATS}t MA@90}t UBT8W}t MA@9~ vm uEX0x4]*UZ( vME@(EMU U GF}t MA@9|e[^_UUE t BÐUWVS Ex8F8EEFuoV(UMI<\:xFF4@MQ( ET8F0fytA9~fYfytA9}fQEF9E~v8~8q [^_ÐUWVS}Ex8P8U REuFEUB4u^(@ f| x]E@uF(<D V0)L )щH!ƋUB9~ftG9~fwftG9}fOEuF9Eoe[^_ÍvUS]t0{8t*CC0PC4Ps8[8t{8u֋]ÐUWVS }t'UB PBPB@PB@POÃu 0ufFfCfffFfCfFfCfFfCfF fC fFHfCHfF fC FCFCFCFCFCF C F$C$FCFCC0C4C8fF,fC,fF.fC.FECuwEEvK(URuV(<4MEtf}tK(URuV(fTfTK(V(fTfTEC9E~؍e[^_UWVS utvC9utfF fu4Fu)vV(<t 4:GF9~ڃ v(#$;5u ;5 u  ;5u vڋ<ȍe[^_ÉUWVSu} ]}x|xxxtxpu p+uu x)ߍ; A9@E0A92 jSuWV6E } uhE9u}~UR(UMIjW?UMA(<t‹MI9s&MM MA(M 9rE9u|Ee[^_UWVSMu]x=x9}t3} x-x)E 0E@E@9E@E@9~ } u UR)BU u EH)AUfB ft WUB PBPQu E }t\Mq4Y0UBABA;} }.]MY(EUR(vM U FG;} |؋EMA8Ee[^_UMQ E)PQE)Puu QÐUE9u ~ÐUWVS}uEWtX u tFj`jE}]j WC(u SvfCfGfCE HfCMfKEfC fBfCHfs CC }uB9uB9E uKCCCCC C$CCC0C4C8fC,GfC.fCfC@fCDfCBfCF9}"u NC(IfDC(ftA9|}uVUU A9uBfS ЃfC }uA9u}u ЃfC ER9ufK tMt؉e[^_U=t!u@(PtÍvU=t#uj@(PtÐU,Ptu#@0t@ǀÐUXP,u`\ÉU=tY XP(=t4x5t j'x ujpÐU=tM=t0 j'x tjpJv ,PÐUh(ÉUhPÐUVSu] h'$uq VPӡP tV ~ xu- S|ƒtPSPRV>e[^ÐUS]@xt{ S 'a zPظh )|~ xPK=< u]ÉU=t @vP!ÍvUM=t>t/MjEPtBPխ$'v=t @PQ谲ÉU h< juÐUWVS ]tu )=uEuE@;Xt;uEEBxuIB fx t?=tu( zPTR R 9|E=wutPC=wD1uӍ4;.uUC=wtt0CC=w D1u߀;*uu CE;v;$uC;S$u j$U$<UvLPC=wD1uӍ ;.uUC=wtLCC=w D1u߰;*t ;/u;*uM C~2}u }ut" gfffș)Pv;t C;~~+}u}t gfff)Pn< e[^_Uǀ|ÍvUǀ|ÐUSU] Mt7x3B9+x'B9fJffB ࿃ fB v$ÐUÉUS=tX?9H Ë]ÉUS=tXA9H Ë]ÉU=tQj@(P艽=t*fǀ\fǀ^fǀ`ÐUWVS}E f\tOf`f;\t? W)ufG ffG f W}f\UH;hXSW$ эt 9v FPN9w\L8f`f;\uef\u fǂ\ f\f\f;^ufǂ\fǀ^f\f`Tf\u fǀ\ f\f\f;^ufǂ\fǀ^E vW :P5t P W'u fG ftfG fu W#uf$y~R~W$f\ujRj ;=uF PPuHvHx7u/jHj<u VTt S f\f^ƅWjWP0}W@ ^L8fǀbf\uf^f`f\f^u fǀ^ f^f^f;\u fǂ^\L8f`f;\uef\u fǂ\ f\f\f;^ufǂ\fǀ^f\f`Tf\u fǀ\ f\f\f;^ufǂ\fǀ^˃-xf\f`f;\\\8uef\u fǂ\ f\f\f;^ufǂ\fǀ^f\f`Tf\u fǀ\ f\f\f;^ufǂ\fǀ^E wt/fG fu#؁u=w PW u|t }uyE HЍe[^_ÐU EPutEÉUWVSEX,f\tf`f;^f^u EjEP0M@ ^L8fǀbf\uf^f`f\f^u fǀ^ f^f^f;\u fǂ^ȃT`L8f`u fǂ`f`΁f\f`f^u fǀ^ f^f\f;^u7z8fǀ\fǀ`fǀ^8Ktv[8Kuf{ tof`f;^u9z8fǀ\fǀ`fǀ^f`f\C Rvf\tf`f;^oEPujS\L8f`f;\uef\u fǂ\ f\f\f;^ufǂ\fǀ^f\f`qf\u(fǀ\)f\f`Qf\f\f;^ufǂ\fǀ^f\f`ȍe[^_ÐUǀÍvUǀÐUWVS ]u E}tct_EyэY~1>t,FKPuu E ~>uԃ uXEe[^_ÉUWVS u ]EffPfU}y>t C8uvUBU)@9~ø@MQ(EENjU:ЃtfЃtMfyt fEf9A~ fMUfJEfxtPED9}fUDMfA uHe[^_ÐUSEM P u"HȰ t% 3@ót %  ؉t0  Љȋ$ÍvUu uÐUVS]t%u Sot Se[^ÐUVSut/u V/t^F V?^؍e[^ÍvUWVS u @u$w SzǃxuvVuE@EUU t* w4G   0E=)EUzu B.9Et UB9EBà UB;ESu3UB;E| u[EfH @EUB.9E~.BEMzjR EE uEUB.9E~MztgjR EEf` O}t[MUfb 7?tB GPu>t%?uUEfPUfЍe[^_ÉUWVS }u _W u#OȰ t% 8GƁt %  t0  Љ@W(fzu fZ vB9}fZB9~fZ4CG9~FfO @f@ff;G.~*fG.ffGfGu!jW= fGf_e[^_ÐUf^u f\uifǀ\f^u fǀ^ f^f^f;\u fǂ^f^f`Jvf\u fǀ\f\f\f;^u fǂ^\UT8ÐUS]jEPCtEUE+ ]+Mb)؍ȋ]ÍvUWVS] H!à j~ǹEEEEEtEfEEt`x DfDASQEPи$x))Åud~ jddI}tEtB~9vEtfDރft Aپe[^_ÐUEÉUVS]u =u!@ @@   h'o~ hY~;~>r @(PtY`EPhht@@(P葺y 18u '8tʃ;E>E;@ @> @ ;>PP ffBP ff@ fxx @ e[^ÍvUEPEPy=t!dtuudÉUVSu] j/V uzSPV1tSV^uIf{tC<vBC9|f{ tCC 9t13VusVtЍe[^_ÍvUp,uUS]t"@dt d u+@`t `Mtx4u@4X5]ÐUVSuMb)ȉEM)QjQ*e[^ÐU=tG@uux|t't@xTu tU=t6@u t@xXu tÐUWVS ]f fsfS Ѓ@ftf;K} ЃfC fC @fuf;K f;s~ vY{@S(fztf9r~frfCfBƋ C9w 99v Se[^_UVS=tA<ޝw(DPޡ@4,PfC<uče[^ÐUSEu6Ãt%jEPS~ƒx 9]tE8tЋ]UWVS ]}u >=x f;tc][{t8C;tX뿃j jxCt!ÉE#j jxÉEu xuCFtXj jCxÃu(x]t7E SԤ]tCFuf{ e[^_ÐUÐUWVSDždhXh)s\t 8/ h)PthP hY.t2hPVEэ\ /C)¸)Ph)S#Xh\P耆蠥t)EXXC;tN; t;:u<C;t;v; t;:uC;u&;t!XX9PC;uX\t)\?t?/t WruhPdPaDDžPd`j:PKu<`эqw:`PYY+`FP-=~DžD,V`PO`PPHLhg`PwÃx\t58tԀ8\tv R{ D4%tLt3zt-B:u B:Cyj:RƒtxuэqP-=VSPVPP:@Pdt d͠D h)b$jjhj =uG } C 5e jst%h)u37uu݃ 5wЍe[^_ÐUUM tB9y vB(If|USEt.@u#X(HvRf|t  B9~$ÐUWVSuU Mtx xF9~ SӍ9}CǐF98N([}fHfDN(к}tfVfTC9|[^_ÐU=te=t\ǀǀ`d`X@x@y XPÐUǀ`d`XHd@x@yXP#ÐU`dXPÉUǀǀB8% Bd BdHX XPÍvUǀHdHXXPeÍvUHdXP@ÉU} t`dHd XPÐUuVƒu h'P`ǂt ÉUVS]tP{t sc SQ;u ;u ue[^ÐUWVSu j|Vu9эYvSVu~Ef|ƃe[^_ÉUWVSTuPÃu PqE gv+)9u ߉9҉8tQCj|Su@j|] uȍe[^_ÐUWVS,u]tu u=vPuPOtnv RE D4%u h*]t Pփu P:[=t,tu犅e[^_ÐUWVS|EDžDžv;vt13t[Fu) 30 Ph*5cx~( 7T0 Ph!50xj~5j "})+DžDž;S( 3/Ir,R4ƅ$mZ=tiR9t9h u1/t|30ƅuU RP@ut h/u h'ZE 󥋅@(It0ƅu;=h*YRD0;K(Ct {(Dž;s(}$D0x(G;{(|݃SPe{(t'C(@t$VQSK({(uSP5S{t s蹕{ t s 襕{t s葕 ߉jSYOtvf{tC<uBC9|f{tC ftjPVej'}'P[U B WPV9M q P7j=}P[} GtkWPV袏9fSE pV肏9F U rSrP M fA,fA'fA tjPV!=j PV fljߋljDž~ C,U fB'fBfB BPrfM AAPq xf} G G Pw_fGf_"ft!SG,PV軍9tjPV葍E fP$ftKWPV^9"M A NPPou t0<WPV9tM } GE pV訌;hU fJ&f rBPP KxQU Bx} Gxt xtxKyt[jWU B M APq}P8 +U BC+~&M A fXC&~} GC~Ѝe[^_ÉUWVS]} jSAxjSϊÃy -vWPBƃu WU S耊e[^_ÉUWS]U IwuRh(SfuSNe[_ÍvUWVSEu:ljɃtV E?v3t:u-B9r2uuRu RtStCă WKEe[^_UWVSHE} uPj Ph3]Se =t'VSjePWA h2ƒt%VEPRPWtX…tVEPRWst4 h3腉ƒt VEPWRvVEPWh2‰Ѝe[^_UWVS}}tB} }t}tB}tjEG"EWUvO"M_$ˉ]G(W"G$‰U_&O"G&MG E_"G$G&þ9sJG4u _u,G"W$E9wG"9Eu F9rju uuE9sbu G4uExfG&fG G Pw_G_ K;]vWDK;]w_"G$G&ÃPw^GK;]vWDK;]w u 8WMGUM Effe[^_ÍvUWVSEEPE}p}t h@8A u96U5~|u @ V87MA$$?E4)؃ ~&SPU;u n;v{;Ph;@^j|SƃuMA( EPEv޿<8t޿_8u=EX([ 5K6C,UB(@MT4A(=tXP5"Ã=`=`56uI~vhv7"Ã}vv6h8> >뒾=t`56蠀uA~ hXv!Ãt.}u vv6h8&> >u 5Ãui=t?u5uÃt&=v5h;=u}z5h;O}E9CuAo=8u$ =Pj! PjhoE}uJo=8u- =P#! Pjho Ã]}u{u EH}C;t ;t\5Rh9F}} }tw}}Ct+ tt-SMAS]C fPSMAS]CKEP ffJ5=u!C 3PV5$ƃ Vy2K]SZ}u h;s; =u*:(v6h@9 v6h9<;,Pv EPHEt P uAE0$t:} =ukj+U2t6M;Y(})j+[Ut,uCM;Y(|׃Pu u ju1e[^_ÍvUSMU utu%)‰9$uKyuvAŐ:$uKzuvBŐ9u :7:7ABA[ÉUUtE EUEEPu7ÉUWUt&uPu u}ÍvUWVS<E UBu&(t (e/MQ]Cu#,t ,0/SUBxuNB fxD~+@DPh 8hE<SCY$.MQ h 8.]SBUBx8uzB fxH~+@HPh$8hE<SX$.MQ]Cx%u h$8p.SB8!EP4t4t 4B8MQz,uw0t0t 0B,Z]Cx)tNC fxF~+@FPh"8hE<S:X$-MQ h"8-]SB,EP@x&tz0t0t 0B,]UBx)tQB fxF~+@FPh"8hE<SW$O-MQ h"8:-]SUBXBx)u;B fxF~#@FPh"8hE<S:W$ h"8UBxxt{trtih VS%4MApSk4UBSK4 VK,MQz]Cxtwxtqx,tkx,teh VS3UBpS3t1MAp,S3t V+]SUBx+tx'u MA@]CuQC fxJ~+@JPh&8hE<SU$X+MQ h&8C+]SEP fzu@x*ufBUBxu hM<*MQB]Cx*C fxtfxt@Ph9FUBtAh&8t' MA2Ph:34]Cu h&8W*SUB f@MA898,ji8Gƅt xmuƅ]C8v+7=7t6I9uVR)t;ũ{uVh@:{h3ƃhXsǃtu h:73vVMA<u 3hO<PGMQ<tG4F4Bt GMQ4N0P3sh:1[V]C:t$:$uzuAB:u Pk(O]S@j,vMt1MQ4u" t 4Aǀ ]CxuxCu h$8'SUB<u h$8'MQ<]Cu h"8n'SUB@t @ MADt D]CHt HUBLt LMAPt P]CTt TUBXt XuhMA\t \uP]C`t `u8UBdt du MAhih\hVS-UBHS- MALjjS UBHjkS MA@jlS UBDjmS MAhjnS UB`jqS MAPjtS UBTjuSn MAXjvSW UB\jwS@ MAdjxS)t] V$]SH$;-7UBHu+xdt%t h,$MQHe[^_UWVSuFtt|hWS+FHS/, FtPjlS Ft@PjqS Ft@PjkS Ft@PjxS Ft@PjjS Ft@PjmS Ft@PjwS Ft@PjuSh Ft@PjvSO Ft@ PjtS6 Ft@ PjnSt1 W#VH$@;#,Fǀtve[^_UWVS Ct t Y>tƃu4mu1 jƒ9Xu @9t 9ZuB9uG<뱍e[^_ÐUS]=uhjHt<|t Avݡ]ÍvUWVSutm>th] ;t:uFC;u>t-U:t: uB:uu F>uӅt;tFt>u[^_UWS&=ux hYoÃtbǰу wG ߉у Q+fu h'*Shm<5KЍe[_ÐUWVSlEEE=tB uP$)=tV  lj t t t\uv t t tþ=:u :u} Ã.u(=uE_ Ã.t t tTv SV D4%u|.u =unPh|<蝽uV}u S% Ph|<h>X( P:v=uhj|E5F=t=_u h0>:u,d,u,؃\u t t tÈFà u=u:-=u$N> t > t>,uN> t> t>,tFj|5ƃuэt  5X&j|5^Ã}ut8u h>>&uэ\ 59@v RT%@#L4ȅt}ub h ?Ev>/u}uJ h`?-vPhS>t}uPh?% F9h55Ev SS D4%u=u_;uFÃuF:tC:+##,t=A@t19t h?%i9t&}u S! P5h @$6 \5FNw2=v PR% #L4ȅuD.jEPuVPǃ}u>9uu5hZ>($E8u 9t hr>$=wPV؃}u9t hr>#5%}u S9 Ph>w#}u EPƃЍe[^_UWVS}EEEE=E H9M=u ;^}%jÉƃw'=v PQ D4%u VdPh>"?u#G=j h>|":J@\#Éƃt$@ЃEEÉƃu h>#@ЃvHwtSh`@! PDvU\Љ]E}~}uEECjwC$<pk f a\ W R M\H^C,>:9 VPh@B!G u=uEG}uuEE}X~}u h@ E_É9t e[^_ÍvUE=uhj> 5` ÉUS]9tu[UMU =t t ÉUWS=эYtK@v RM%@ #L4ȅu  Kue[_ÉUWVS =u188 =t8q;r0P5a<u 575)PPt u,th5.Ltsэq: t: uBz tz tэQv)x u x uQD Cx 8#;@Ѝe[^_ÉUM;u h A=BJÐU=t 56=t+ÐU=t 5j!=t8uÐUSM9tAA9u؉љЃ[UWVSu} Vt7#vf{ y &C @V3u^uΉ؍e[^_UWVS } UӍL9s(ƍv9{u3u2^څt 9rݺЍe[^_ÐU}t`h`AÐU}tXÐU=|u1 hW|u h'U||ÐUWVS ]|)֋} );v5ࣀPRHY|u h'v|u SLHэD e[^_ÉU=`~ hȜv`d @`ÉU=`u)=du hg%d`H` dtÐUVSU\t ^taovB3O0}%;$}6\tK.\BF=wD1tՐZ vӁv RG D4%tV,tQ'tL\tG:tBh5xxhPx'h5xxcv/fӍf0hQx vUfӍffэf(0 h5x)xfù fB0h5xx}hPxe[^ÍvUWVS }] =ptu u9=dud hh5xcxKh5x=xKِ=dt=dKtBw0vh5xxhPxKuă=lt#h5xxv=ht#h#5xxve[^_UWVS ] }`dhlptxux[=wt8޺v=wD1u ;*t;.uCҀ;e;%/C~%CN$%p=puh,h=huh@l=luhTh4j5t%hh5xxj5thwj5thj5th5xtx$Ãh5xRx$iÃhq;=t;+t;-t;*t ;/{pt {c {E;=tj5t{pu8jCt@Pt;dt y tE CPE*w$<h~hhth5xMx==pt*=tu d=tu d td]j5t*$ Ãh~j5t$Ãhj5thv@ SÃj5thtj5th=Z;3t#;2j5trh2j5tXhj5t>hz5xxtt th5xxD%h5xxKuPPPh`%Ch5xMx;h5x!xv=wu ;*t;.u%h5xxC묃h5xxh5x|e[^_ÍvUSEPEPhu#uWE=wt3E=wtE:Eu؋]ÐUVSPu] wmv SX> vD4%tB:t\u\hVƈhVzKv؃9u Sj PEP =vShEP0EPV-ƃe[^ÍvUhu u P uPÍvUWVS,] EEEEEEE`EEэt >>N>/NN=w D1u߀>.tڀ>*tՀ>$uuԃ Fhu$E=wu>.t>*t;;]v;\u{^t{,uCx;$uO{tKA;%u{%u h~;%u} EPEPhStQEPEPhڝSt6EPEPhStEPEPhSu#j;SAà uuuW S4tÃh.0EPh1S0tEPh>SuKj+Sˡt9Xh~u=EЃ}tEEuu,޿8uhK޿8uE܃}hNR޿#8uE؃}[hC%N$%huPE%Chu$E=wuPhQ^;d_hzdhWZhv@PC;1u Es;2u(}uh}ubhZuEE;2~A^hu^EЃ"hu?EE;tC;t ;]D}u|e[^_US]=u hTFfC,fC'fC fC"fC$fC&{u j,FC{ u jNFC {u hxECf{tvCBC9|f{tC fPBC9|f{ tCBC 9|]ÉUWVShjÃtNjuuPe؍e[^_UWSU׍;=wRPG6=e[_ÍvUWVS E gu 6xMfy t,F<tЁv R0 D4%t\C^CF@C+%Ph£S#э\ ؍e[^_ÉUWVS u ɣtrУthэ QE4TU"PFtvPRƒFu"B؍e[^_ÐUuj`ÐUUM t JEHBtU u juÍvUEM QPQPÐUWS]U t9эy;{s#{tRs].{){e[_UWS]U t=эy;{s';tR3 .C){ve[_UEÍvUS]=uhjthS5]ÉUuPug-ÐU=5h=\5\=x5hܣ57=x5h5=t"8tPh55j:x5j h E Pu5胙5j CÐU 5h=\5=x5hܣ5[=x5h56=t!8tPh5 5j:5j  E Pu5記5j h$GU 5h=\5=x5hܣ5w=x5h5R=t!8tPh5(5j:5j  E Pu5ė5j $GUWVS ]}~i~eE0U 2V?yU UE FK1~UUEFuU UFE EKO~K~U UE FKO~UUEFOe[^_ÍvUWVS u] }K~$vW6>t KߺЍe[^_UWVS E@"EUB$EB&EB";EEf+B"fBBPrXMAy"Oq+u]KxEE 4uUr5tMQ 37OEP3KyMUfJ"UB$;EEf+B$fBBPr MA y$Oq+u]KxPUM 4uEpt 3EP 7fBfJO3MA fPKyUEfP$MA&;EEf+A&fA A PqUBz&Or +u]KxRvMEU 4uMqt 3EP7O3MAKyUEfP&e[^_ÍvUME t t%t Q"Q"A$ÍvUME tuQ"vQ"A$Q"A$A&‰UWVS]SucƃSulj9s$UB4u ;څt C9r޺Ѝe[^_ÍvUVSu] Et uF FV$)V")N F&)F"V$)ˉ[^ÉUWVSuuu V,ǃ^"F$F&\9}vVDA9|uWVL}t:}}t y}tNq^K9}VDA9|fN"fNM^K9}V fDJfJA9|fN$fN%^ K9}VDA9|fN&fN e[^_UWVS}uWÃuWEw"G$G&t0;]s"G4u 9txC;]rރPwGN9vWDI9wGU uSWÃ}tq}}t)v}uSWfG"fGGPwWGOI9WBI9v}fG$fGGPw G OI9vRW fDJfJI9v?fG&fG G PwGO I9vvWDI9w؍e[^_ÉUWVS uF"EF$EF&EE]9N<F +EV&)ЍV<j4u 5x=jWVujWVtxjWV‹FYjF4u xHjWVujWVtt!jWVa‹F fPvC;]e[^_ÉUWVS}G"EG$EW&M I"MM A$EA&EUu } E9Eu\fG"U f;B"uOB$9G$uG;]}.M A4G46t vC;]|҉ EEPv0Ef&tM Q$A"tQWE fx&tW$G"tWu v U B"PrG"PwuEM A$PA"QPG$PG"WPUMPnEU B&PB"R$ЋQPG&PG"W$ЋWP]]UP%à 9]t0 PuuuW t w0MOEE9EtZE Vuuuu ]SE pkU BNjuډ؃tfЃte[^_ÉUWVS] ߋu CP.CC$.C C $.Cf{tSu FAC9|f{tS u F fHfJAC9|f{ tSu FAC 9|E H"@$U B&t@ MQ-CNjE pUЃtfЃtCe[^_ÐUSEt: fz@t x؋]ÉUS]t. S$u.;u ]ÐUSM; u *Dx9 tBv$ÍvUSEx9DuBv[ÐUSXPw É$fz=t ؋]ÐUWS]{t ss-;t 3a-{t sM-{ t s 9-{t s%-{t s-{t s, e[_UUÐUWVSu] HA~9tGI[^_ÐUVSM @xt @%ƃ PB~9tCJ[^ÍvUWVSlEEfx~ƒ8uAF9}EHA~IE4G@9딋ujCPujCPƒfxUP(@H~I]4E Q(IA~IE4GB9dB(ЃtfЃtت¿fx~:v9t 9t9uAy GB9|ɡ¿fx~E9t 9t9uAyGB9|9t)yuyuY ;Yt Q9u3¿fxB9}ƒ ju EP- jVEP$$:E j,SW!,tuuW$ WO!e[^_ÐUVSu]t&U J9r9u AJ9r9tȃ[^ÉUWVS}EEEEuUPU@E}PEtEPuƃ'}}tUE9sLE8u9EPSVu#)EEu!}uE CE9r}tT tE|0 uHE}t:}t-]KE8u EPSVu ME}u}uXEE@Pu;u uI8vEEuVP}"UUEU}E}}EPuo]ހ;E8tvCF;tU8u;ts{tmE8CuUE8CuEŠE8CuEŠE8CtE8CtE8CtUtCCFCF;l}IM} tUE Ee[^_ÐUWVS =  hhvDu_j.hntIPQRh+QUDPSI =]E tq5hCP9uR|v|:u; DPVt'E|эQ)9FЁv R%@ #L4ȅuˉ<-u E E<+u>F}t}u0u>xt>Xu~E}u<0TUEEEE"!EEȉURPjj EUuujj莔EԋEEUĉG< wG<w7G<W;E}x.M9Mw&rU9UwU3UE3E u;E~EAvEEeEUUUċEЋUUUEUEU>FE}yEED"#}u 1}t ]U]} tE}tFU EUe[^_U uu uÐUWVS| uxDž|>/u-E /@~DžhFPThu 'uhhu x#v} IhVPEÃ=w1v5#x>?j/V^…u3)w)tft)Ƅ()ÃtCPBPQE |/t@=9M  /8]8u;E Dj/PP@+U |hPu =xEPu t$E8u(vAE%f=|| hPu  ÃxƄ(/uM ADž5v,E Dj/PP@+U tQ+/tC=}Ƅ+/Ƅ+hPP=DhPP1Ã4vE x/u@E e[^_ÐUVS uܻƃt>j=VGu Vj@PV É4$~؍e[^ÐUWVS u} ]=u ,8uS95(}5(,8-u#,zt#B,z-u(v,8,@,:tRSZuf=-uv,8u(=$;:=?5  Phnx:t,8z,8ua(;5(K,;:u:Z=$t%5 K Ph 5+?%(,(ve[^_VWt$ |$L$tfffIutCffffffffffffffffffffffffIu_^Ð/v7̀rϐv*̀rL$QYB̀rQ UÐUEUEUEUEÍvUEUuUEUuUWVS,ug9EԋE E8>wUBU%tvӁv R1 D4%@t=F>&v R D4%@u FE87E}G}Ãy $HFE<%v uuEg=wEr EE}DPЉEMF}t%>t =w D1uE} U}G uuEuuh0 } v } Euuh9KuuhB>uuU-uuhH uu}uuEVƃE =wE EE}DPЉEMF}t%>t =w D1uEHE=m EHUBd >[ v R/ D4%@, =wE EE}DPЉEMF}t%>t =w D1uMuE}; EUBE}< }E8>g v R; D4%@8 EU:3 v R D4%@t v=wE EE}DPЉEMF}t%>t =w D1uHtku E} E} Y EUB>8 v R  D4%@ E}? v R D4%@tEԋIM܃QUVĂu&} Ex @UԋIM܃QVnEC} 6Ex T@ KEUEԋ||IM܃Q}t|Vt;EUԋ|`IM܃Q}t`VӁt G}vE}EUB=wE]EE}DPЉEMF}t%>t =w D1uE}5>v R D4%@EE8v Rt D4%@tp=wEQ0UE8}Ex>v R D4%@EU:v R D4%@t=wEEE}DPЉEMF}t%>t =w D1uE}#EUB >v R D4%@E}?v R D4%@tE}t6BEUԋIM܃Q}UEUԋ|0IM܃Q}t0VL~t=EUԋ<IM܃Q}4V~t E} UE} EUBu=wEEE}DPЉEMF}t%>t =w D1uEHE 7EHUB>v R D4%@E}?v R D4%@tj EPVE=u EuuEPEY>Pv R$ D4%@!=wEYTUE}DPЉEMF}t%>t =w D1uYumlyu }DEdE}yEUB>Xv R, D4%@)E}?$v R D4%@tuE̋È8t+v R D4%u9u])C)ĉeЃSVusUWuиo8u EM5\u,u UB )5`uEu}G u̐E8uEe[^_ÉUVSuEEPVu u*Ãt"}t VEVEPj؍e[^ÐUS]fEfEBh1EEthEExEDžxDž|EEEuu EPjNƒy% u EEЋ]ÐUU uPRuTÉUjjju<ÐUVS=t SSC8xu@MڋCHCy ;C| tRQvƃ=t Se[^US=t 5@8xu@ 5Ã=t 5@؋]ÐUVSu=t VbfF fÃ=t V؍e[^US]=t Sfc =t S]ÐUWVS|EP BUH$M@H#EEEt} u>}E FEvU UэL MU9UMy<yDyHY<]ALtuϋIDWHUu\0;]sZ<t;]sE<u;]s7vKJ:u;Uu:t!+E}9}ËU;]r;USp]E9s@UR u@uJEЋ};Gv R D4%rUЀ:_f]ЋM;YWSv R D4%uNuЀ~_tEEԋ}@UԋP%EԋMԋ%=t EEԃ}u)]9]}uu9uHM!Mԋ}@Uԋ%=X0=Xw.=Hm=Hw =8tGj=PuZ=p=pw=hH8=x(uND#D }GL4)ME)ȹ9E}OG E̋uM9ɉ8UP @M9t @Eԋ}9uuuE@PuEEPHuuE@Puuu ;uu%UԍDPuuuMAuЋ]t@PuE@PuVQx}GMЋU; uHPuE@PuQWQuFUЋ}Wu%M)@PuRVL }HPuE@PuuV&]MA%uԍ\0uSQuuu *}@%=CKP%Ë%=uK럁EH4|u}EЋ}+G tuuE@PuuWa }WM] \zuNt| u}EЋ}+G Dt uuE@PuuW u,}WM]L\  Qȍe[^_ÉUWVSE EU;Bt HMEƊMVhVuuE0/ƉEEv }MU;JtEE;uuUUE u M@uuE@uEUX,} u M@u}u&E@u}EUX0t'~#VuVuuM1Xƃ Kށ}t@Ёv R D4%uG_tB}t9Uv R D4%u}_uEt}сv R D4%u_uK}t;}t9Uv R^ D4%u }_tEE-wVuVuuE0ƃ Mu,E9Et$uuVuuU2EEMAMtUBЍe[^_UWVSE@0EU UM;Qt BEEƊMVhVuuE0ZE }MU;JtEEE u U@uuMAuEUX,} u M@u}u&E@u}EUX0t&~"VuVuuM1ƃ Kށ}t@Ёv R[ D4%uG_tB}t9Uv R D4%u}_uEt}сv R D4%u_uK}t;}t9Uv R D4%u }_tEE-wVuVuuE0Uƃ MtEE;ut,U9Ut$uuVuuM1EEe[^_UWVS ]E ENJMu9uUBM%=P=Pww=(D=(w1==[== @=8-=8w=0=@ =HD=xY=xw>=`=`w=X5=h=p==w==W=t9=t;|9E5}ts}#E-QW}}9?v}*0%uN} U"AE! Éс‰! Ä)MMNJM! É!сuvuuET%=tN%Eȋu%=u*! ÉсUʋuF%=t!v! EE9EG؃ [^_ÐUWVSlEP BUH$M@H#EEEtE uEU VU!vM MыuLMU9UyMy<yDyHy2 uW  u=u2 MỦUEAЉEEkAЉEEkAЉEEqjPMy@~+A@;EsEE uuuu]Sq ǃ 6}uu~T~ uuuuEP`ǃ uEڃ}u UzTD}u# E@PPEE;XPw1UDD DCE;XPvЋMyTuEu uuWu]SSu~X~2}u FXP_EăExX~ }:juuWuURà uZ$vjuuWuMQà u4;}v" uuGPuuVǃ uu E@G}t"EU)‹MY)ljyq }vm;]scvE;XPw+MuTTTTT T 'UDDD C;]r}t u[}t uG u9e[^_UWVSE E];]y]U@%=Xt=Xw =Htj=xt_vM@u%ƉuBU‹@M%=t&Ju%Ɖu%=uމEU@%=P=PwS=(=(w==8=8w =0tp|=@q=Ha=xQ=xJ=`?=`w =Xt(,=h=pE E uSPuu ƃuuuPut ;EtFɍ{]K SWVuuO t SWVuu uE uSPuu ƃuuuPu ;EtFɍ{]KMMM SWVuu t;Et UUE؅u EMM SWPuvE uSPuu ƃuuuPun ;EtFɍ{U@%\ SWVuu7 9t(C{MP%Ë%=uK SWVuuu Wu@%NE+F \+u@%NE+F D\ ];]Ee[^_ÐUWVS,E EEUUԋM9Q]@uԋ%=0=0w9==w=t_v= =(ta==w=`==}9}mUЊBU89]9]XEgu%J}9}$E"AEЄeMЋU;Ju BuЋ];s~ /EЋ};Gu GMЋU;J9 @vuЋ];suCteEЋ};Gsx u@uLMЋU;JcQv R~ D4%3]Ѐ{_&}Ћu;~v R3 D4% EЀ8_MЋU;JuBtfuЋ];s> u@uJEЋ};Gv R轼 D4%rUЀ:_f]ЋM;YWSv Rr D4%uNuЀ~_tEEԋ}@UԋP%EԋMԋ%=t EEԃ}u)]9]}uu9uHM!Mԋ}@Uԋ%=X0=Xw.=Hm=Hw =8tGj=PuZ=p=pw=hH8=x(uND#D }GL4)ME)ȹ9E}OG E̋uM9ɉ8UP @M9t @Eԋ}9uuuE@PuEEPHuuE@Puuu ;uu%UԍDPuuuMAuЋ]t@PuE@PuVQx}GMЋU; uHPuE@PuQWQuFUЋ}Wu%M)@PuRVL }HPuE@PuuV&]MA%uԍ\0uSQuuu *}@%=CKP%Ë%=uK럁EH4|u}EЋ}+G tuuE@PuuWa }WM] \zuNt| u}EЋ}+G Dt uuE@PuuW u,}WM]L\  Qȍe[^_ÉUWVSEX(P,U@0EU UE;Pt RUEUpjSEShSuPU2ËUpSuEEEEU;BtUEUދ}H98uEEܾ} u U@u}uE@u Ux,} u U@u}u#E@uUx0t'~#vSVSuuE0à Ot@}Uv R~ D4%uF}_t@}t7Uv RB D4%u}_u}t{Uv R D4%u}_uHt;}t7Uv R辵 D4%u }_t{wSVSuuU2à E<uWU9UtOUpSuU puSSuuuuE03E E܋UBU<tE@e[^_ÐUWVSEX(P4U@0EU UE;Pt RUEUpjSEShSuPU2E uUE;PtEEE u U@uuE@uEUx,} u U@u}u&E@u}EUx0t&~"SuSuuE0à Oށ}t@Ёv R苳 D4%uG_tB}t9Uv RO D4%u}_uEt}Ёv R  D4%u_uK}t;}t9Uv Rʲ D4%u }_tEE-wSuSuuU2à E<tUU܋EE؉ދ}H98tRU9UtJEpSuU puSSuuuuE0EE܍e[^_ÐUWVSuE EËU9MA} %=P=Pww=(X=(w1==== o=8Y=8w=0M=@7=HD=xu=xw>=`=`w=XQ=h=p==w=)=~=t==tR9E0}}6E-|5}mD3U Z}QI}ED3} ;2%UJ}U"AD3M  3T3ρ)11<1)}M]3T3%<3}}}EL%=t"%‹EЋ} %=uލ2 32E3ED3Eȋ}W%=tU0vD3 3D3ECM9M[^_ÍvUWVS E} u]UH 8eu9Eu A(t v1y w%u RSVWQ RSVWQee[^_UWVSLMu]ʁuEPu ƒW=t9t 8ut08tpEP(Rh>EPUPׅt&9v RVCPRV諟D3e[^_ÐUWVS u} =t'vvsjt ;u;u3hzW9ve[^_UWVSxE%tt t#E U9Bs iUB+} } эy h_荺à *@@F PdF Fu S膻 ^E U :FFFD DH@ ~CCCC tCC(C,C0C<C@CDCHCLCPC4C8{\@CTjhV"FHC tthV*tt VhhhV jhV'"FHC$SV!SVD#SV#{L~9SV;(SV({Hu{Dt sDCDSV)CXECPUBZ eC(tjV~t uVЍe[^_ÍvUWVS ]Es;Cs/<|t);E t! S;Cs<|t;E u9sujSK;Csv8|uq@}t"VC)@PhxS$!uEC+EPhS CPU )PWSj!{ jhS 7}u(C)PWS9! C+EPhSX e[^_ÐUWVS uE@~Ã$X$D;FrjVOF@PFXP FD ShhV;Fs8)tj)Vc FDHShpV;VsB:)jWjhVvFH(F@,Ejh VMFH(F@0jj VqF@t Vjh(Vp Ve;FrjV&@:;Fs3=wtj VPV;VC<vD?t?{zB;FnB=wF}tj VeÃ+tr+ *tv?t~{WF)@PhHV& F)PhPVWF)@PhXVF)Ph`WF)@PhHV F)PhPaWF)@PhxV F)PhVV F)PWV jhV6 jFHPV jhV V@E;VsX:,uSBB=wt# VÃ9E~j V ]SuWV;Fs 8}u@D;Fs8}tB;Fsz}u;Frj Vj Vv;VsJC<v6?t1{u7B;Fs/B=wt j V4e[^_US];CrjS;CsR@S;Sr]ÍvUWVS ]CE;Cs(8^u#@jhS]CH(C@,;SsNB;Cs;E u B;Et5VSrǾ;SsB;Cs;E uB;Eu̅t#Kjh SCH(C@0E9CujSe[^_ÍvUWVS uFE@\u!;FrjV@)L)0.tc.*[tw({tj{y}cvF@t VVjh(VA V{3j F@PFxP FD WhhV;Vs#B;Fs :\uz)tj)j\V FDHWhpVA;VsB;Fs:\uz)u BjVU߁0|Ht3Wh8V tHD @PV\ Wh@V jVF@T%} uj VPV;Fse8*u`@uF+E@PhHV F+EPhPVJuF+E@PhXVF+EPh`V2;V-B;F!:\z{B Vǃ;Vs_:,uZB;FsIB=wt% VÃ9~j V vSWuV;VsB;Fs:\u z}uBn;Vs5B;Fs :\uz}t"J;NsB;Fsz\uy}u;Frj V>j V0 v$te[^_ÐUWVS u \ABG;Fs.=wvt~~~j V؍e[^_ÍvUWVS(uEEEBM;As*кƉ8u jh5MB;As;кƉ8ujhuEU;Bs8^u @EvM;As8]u@uB] FB]fF])};Gs8-u@EB-M AB-fA-u;VsV:]tQ;VsB;Fs :-uz]t9uu&};Ws:]t;WsۍB;GsӀ:-u΀z]uȋU;Bs8-u@MB- AB-fA-vu;Vs B:]tju}G@XKxoӋM"AtZv SQ D4%t2 S E9tȋu FfEfFKy} tWu0}UBXKxNvˉMuF}t!Јff)FvˋEu FffFKy}G@tE@ B fi u~ tVuuuu*uu]Pu uuuuW Ph0ue[^_ÍvUWVS ]} ;Cs-t[u!B;CsBj S l:t= ;CrjS <-t<]ujS WS;CrjSq ;SsB;Cs ::uz]t|j;CrjS1 <-t<]ujS WS;CrjS ;SsB;Cs:=uz]u B^jS I S{E;Cs>8-u9P;Ss1x]t+;Ssx-u E- S:EEEE8Euȋ GfEfG=ltHE8Evj S ]E9ƍvˋ GffGC9yEPEP腓~j S vSEPZ+EPSEˋ GffGC~e[^_UWVS uE;Fs-v R D4%uʋ+}=t-Wu3au<t ;u;ujV Z{ PC$Ӂv RV% #L4ȅtˋ}  GffGC묻Ӂv R% #L4ȅtˋ}  GffGC묻Ӂv R蚗% #L4ȅtˋ}  GffGC.묻Ӂv R<% #L4ȅtˋ}  GffGC묻=w D1tˋE } GffGC~븻Ӂv R茖% #L4ȅtˋ}  GffGC 묻Ӂv R.% #L4ȅtˋ}  GffGC묻Ӂv RЕ% #L4ȅtˋ}  GffGCd묻 Ӂv Rr% #L4ȅtˋ}  GffGC묻@Ӂv R%@ #L4ȅtˋ}  GffGC묻Ӂv R趔% #L4ȅtˋ}  GffGCN밻=w D2tˋE } GffGC~e[^_ÉUVS] j=u  SffCe[^ÉUVS];CrjS;SsB;Cs :[uz.t @Hj.SBƃ;SsB;Cs:.u z]uBjSe[^ÐUWVS ]u E;Cs9@;CsU9uz]t#J ;KsB;CsB9uy]uދ;CrjU+}@=@t(vWu6[u<t>uۃuUFjSe[^_US]v Sx vD4%t&v SQNv4Nv S' D4%t*v S 4vË]UWVS(]3{U E؉EډCUE]ESc3{e[^_ÉUWVS u] Fx8@tMӁv Rm D4%t" S9tSV]'PhV<;u FP4;@4e[^_ÐUWVS]3{EECE^E@ @]@S3{e[^_ÉUWVS ]u}CE{~~u vv$E+E )Czu C+E @PhxSrWjE @PS\C+E PhS C+E Pu S jhS jCHPS jhu C+E @PhxS C+E PhS C+E Pu SO jhSs jCHPS/ jhSS E@PE @PSGPjZu C+E @PhHSl C+E PhPS Duu SGPuu SkWFPRS jS e[^_ÉUUzuE BBÉUWVS EPr FB UZKM;rBBщU{u P!vMYPs[CEX{u uCQUZus C9},MAxЅyBEAB9|ՋEPzt!ztE+EBujP踦j uMQZyFEByF)CfCCC ؍e[^_ÉUWVSu EPB BEz9sˋF ff)FC9rE9u UBH [^_ÍvUWVS|C { uj u5vuC HP C C@e[^_UÍvUÍvUVSuV JȅyB] F9}<t vBF9|[^ÍvUWVSEP Z؅yB} uEP9}:tAEP9|[^_ÍvUWVS E x8Exunv<>uZVu "tGU B4EPM Q4>^*<;uSVu 9tE;C~ډF~e[^_ÉUWVS u EURU)tN؋MAPQ8EP@ <4ЃtfЃtUZUЍe[^_ÉUS]{u7C;C|C@@PSKS E E C]UWVS u}~uc^uu VF v9| |D 9|H|DH@ ~F)PF PPbF e[^_UEM xuP % EÉUVSu] 9^}.Pv uj V#F ^e[^ÍvUVS]u CFCPs 襗Fuj SC Fe[^UWVS} ExE;G }O| tEB;W |EG@w%=X=Xw^= = w#==w ==~=0X=0w=(=H,=xti=xw)=h=hw=`.=pM==w==tr(}uFEEDuRVƒv%4%=`t=t =?%=`t=uE;GL~#EEEGL~ W@W@UE;GL~EEEGL~W@ W@~~U~vBsE;GL~EEEGL~W@ W@~ U~BE}t:3vE;GL~EEEGL~W@W@vE%=Lt GL@P角G<uGLG@5O(/O h cGxu P舊 Spz e[^_US]I…u$=u h 5S5‰Ћ]US] …u$=u h 5S‰Ћ]US]…u$=u h 5S‰Ћ]UWVS<}hDu1U<th }уQÃGfuS~yhUSpyE EPEPS$.Ɖ$ڈEEPEPh^-ƃu豇tu e[^_ÐUSj ʝÃt*Su ut SA؋]ÐUSj ~Ãt*Su u t S؋]ÐUSj 2Ãt*SjuJt S誝v؋]ÐUSj Ãt*Su ut S]؋]ÐUME t$Ѓ|~uf#fuv#ÍvUEU tu US]t.tu" jpƒtC蓅]ÍvUEU tug ÐUS]M t:v/9@D@f@ǀ]USME tK˅t t>ǁ;|1RTE胄]ÐUWVS}tE8uQj/ut u } ujj& hYtM:tBIw.:.uzt#z.uztj/st Dž| <Étj@S1tDžlDžpj_Stpj.Stl hkƃt ܅t V;|袂 t莃荂x>Z>%FctBcLt@L %tCNt4lt tt t#pl }FqvFxӍ\SWxf9r, tʂ|輂軁?ыxLx'x)wxBxF>xPSu/ t)|$V}N hgPWƃg tف|ˁʀe[^_ÍvUWVS }} E HU;B}u ]s)]C ЋE 9tI9}y+D9~ƻ vλ9}A)u븉)뤃{$t!Su~ ډЍe[^_ÐUWVS}t(Ex$u} ~E HU;B }] !qEX )vUB U 9tF9}y+D 9~þ˾9})u뼉)[^_ÍvUS]Etu+u u PBPڅtPЋ]ÉUS]tu~ 'v s襋sS$]ÍvUWVS } 9}3vMA Ѓ{$u sKs @F9|Ѓ Ep *e[^_ÉUWVS8j}ÃhuCu}0 vjjs ^$sjj uV[ u8t }t+ sq$e~juu5@h`-}: s@$4~uu5@h5M] E܉C P|C |0 s܉ 5@h5\S}|0AWS#s蜉 5@h5\$w}v|OeEU;{}RjRPs tS 4sjj(VZr~$tOF$FVG;{|ؐe[^_UWVS ] jssEp s{CEpjssYujss Ep<u s{0 P C P{C uMN{0 s=|<{0{.{0 s |s|{0N;{ }7s EpjjV6Yu~ tOCFG;{ |C$Ѝe[^_ÐUjjuuu u譁ÐU juuuuE PuÐUWVSu `}u@ hWÃt*h h~t9Pu S2v;t=h h~ũt$9PujuuuRuߐIYtUEE EEEPhzjPPWPE0ąà tW P Ph5jY "y01 Ph58Yvzt8zсw!hrh\Ut CvuDžl W5jW蚄 PWj̅DžpDžvPTye(x8#t ~tvx8#u5jjhW&w00 Ph5XtjT} vvT| Tw80u !gw8=u Džl~uflt p~T8w0/PM1hZ5IWׂ jPj\iv~_vhj"jjhhvvAhh5Vvh8$vuEpBPRxyѥpDžlvj"jjhhvv@hhJn51V}u'jhT[~DžvPOdF|djd\zhzjP׉QRT}P׉у9Pt(u0- Ph5+UBd`T9}```v5jjhS HuTT dd Pt jjjP`y ~uTt8t(t0, Ph5T5j*jh Rd|PHPdzƃItufJu V{ d{y5Js0, Ph5`SDže}7=v5j+jh`RUװQRTQ{ UװQRT3{ UװQRT{ j{PT{t0jr0(+PE0h5{Rt{tBj{Pjz{ tJj{PTzu+jPjL}TMt U2z Tz jPj~V}e[^_ÐUjuÉUWSĀU x 󫈕yttLƅxzDž|CvƅxzDEDEDEDEp/KvjjyPuǃx=fxPWu WxfҋEe[_ÉUWVSu t1u t$u t t/Cv u"F\M@A\8 $\Fn\Fr\Fb\Fa\Fv\Ft\Ff\Fs\F0FE0<0F0؃ tt'\F0F0F؃0S@u\FyMFv SR D4%t^FC@u?v-FFe[^_ÉUWVS M] uϊtCPVPQ\u)e[^_ÉUWVS Mu ]}MvvFPWRQKwtjWPQ+Ee[^_ÐUSM@BEӺQCeEjQ"b]ÐUWVS u]Ut;%$t} \u .y} %u E =; U v R 4jHPjLY j(Pj9Y jPj&Y jPjY jPjY jPjX jPjX|t |StBPR$Qt |wKH#E e[^_ÉUjhh uu  ÐUEÐUWVS u} ?)9u{u|=u jI VS3t"Cj0CP#.C*CVhtjCP踃u t{tCe[^_ÍvUWVS u} ?)9u{u|= u jQ  V3t"Cj0CPS-C*CVhtjCPu t{tCe[^_ÐUWVS4j+u ѡtEE c'EE 8rt 8wU z EPHB j eHẼu uPuPEpEXEEE=t hDGF3HÃt tL'v=t hDfF ulPuaPuHE 8ru_ u9P]Ѓ{t*jsjpM,}tjuLuO uO t s'$Ou5EPhX5M$H=t hDBEU :ruRuQƃuu uQƃuOẺpX=t hDD Ủ =t hDDЍe[^_ÍvUWVS u=t hD6D t9st ڋuu!=t hDJDxu  =t hDD VR}vjjWsMƃu E8t߃ SFtEe[^_UVSjjuMƃxu VÉ4$M؍e[^ÍvUWVS }u VWHuCve[^_ÉUWVS]EPS{H}} }}x}~DjjSjjuj^PE }0uˍvR tJtB؆%=t-=t&= t=tuVI~Fxȁ t't%= t =^ȁ t"t%= t=uIVȁ t%tf= t%ANЁ t'tf= t   v%^Ё t"t%= t=uDNЁ t%tf= t%{u2f~}u+f~u$6E=v WEPu VS2 t߃j{S ÃuӃWu Ve[^_ÉUWVSMu 9tff9uff9tVf;[u.ރf;]tf;tf;]tf;uf;uf;{uGvf;}utOf;uuf;uuuPU9v[t[ ,tK{t7}t5f>]tf>tf>]tf>uf>umiGft O_tf>,tU9svff9rKfffuuuPUNv99Ee[^_ÍvUWVS uf>~u E@ u EU |B^9s&f~tf~/tA9s f;tf;/uE 8uL<u hYAuF t P諰ƒu(@$誰 u 腰ƒtFJU 9s19tvffA9s9u9sfffufE ve[^_UWVSu hSuƋE ߃??*[!uf>tj]FP4 uf[!f[!uf!ff>-u^]tf-f]uɋU J f]?M I f?.vE H 9tf*tf*fffuu P…uwU 9 u2B u %=uuu u?8E @ u*h` j‹+PBRP(Ѝe[^_UE 0E0<ÐUEf8u vuu PEPRRÍvUWVS|} ]Ef;fuEPuO E@ t^f/tWE%f=@t-f=uCuEPuyu*E%f=@uG;Ef/fGE@uPu+f;t8f;/t2f:yEA;Ew`fff:tf:/u΃}u)ωf;/G;Ew'ffۃuuRSuWu Ɖe[^_UWVSE9E hU fr4uuvƃuoExt\hPu40PURu E@ t DžUB @tztxx.u Uf:.ui] Pv;]sffBfuuuu u E f)u uuuSu] u V׃wUB @t VR Vl1Ѝe[^_ÐUWVS } U:t;~2GtPw4 Pw2Åu" w3Gsu~GHxvHy_Uffu+EE P2ƃt0uPut V3G4GHe[^_UWVS u] ;]yf=?td=? =*t==[t]0;]EuSV(ff͍vffEf>ff;!Etff]vf;-ua=ltf8rFfCf9v5:EPPCPuEvf9uEff]{E9Et%ff9u;]f>ȉȍe[^_ÍvUWVS }tBWG4Kt>t 6 1Ku w0Ge[^_USU] f:ufDž.$vhPRGu(C @t PS  P(‰Ћ]UVSu ]hPutC/?*C @tVPS$VP2e[^ÐUVSu ]hPuwt.?*C @tVPS(VPH2e[^ÐUSU] 9tffu[ÉUVS]M UJtAt Ju[^ÐUWVSjjEPjhGN  u-à jjEPShN y) S.p } S.Zv98eM9}%v4FPuS3tG;}|ރ SU.T-Ѝe[^_ÐUS] = jjj4 x-v= ~+S5 5 4 y 9 wh= t 5 -   PS, tS5 P4 x9 v E ]ÐUS]=u+jh  .y , = t ]ÉUS=t hP) EPtÃ=t hP)؋]ÍvUW=t hPo) EP ƒ}u1;E ~ E"vPRu=t hP^)E}ÐUWVSh14Ã8j EPS?ƒuE8txuEMtVMGt*GtT_Kt+Xkt$kgt Gmt$@i@Jb9w(@Sh;9~jhQځ, hk  WRhjh Dc IEE  e[^_ÐU EEE@jjURh jP1 t ÐUWVSuE t) v j,(à EC U S$EtЃC$ V5=vV"PS<xjhSEELf@2EE>>щHP6Sf@2EGG@G C$PWS fG4fufG4}t UW}G}u}Ex}E>h}t}~uuS EjhSOtBUPf@4 C$ujjh/CyK$@6' uu( s( S'e[^_ÍvUWVSu fF&fF$؍CPv@Ep#j/v@ ƒt1;F@uxt&BэYQRv@f^&UBFFF,B e[^_ÉUVSu>t8f{2x#ڋCuCà R1'f{2y߃ S'~t v ~t v& v&F$uK v-t % v.t V&% V&e[^ÍvUWVS }?wG%m7V8fF8ujVW fF4ivuofF4 fwbjVW fF4f7G$-jjh^-F y$FfF4fN6f~4tG$@tHF,;G t@fF6ft v ,t w GfF4thG$t%G$ w Gt;vjVW tO$FfN6wt9F@Fvt)jWGuG%H!wGv P$f~2u,G$u w+VWf~8tf~8uWjVWfF4fu8G$u2jjh+F y'#FfF4fN6fF8OFP$Xx/uT F@$/BF&@Pv@R/p P#f~2u V#"V$Gf~2uG$ wj*kfF6ftCG$u- v K*tG" v *5"3 v *4fF6fu(h]jvW tO$v~tfF4v7e[^_UUv! E fP8ÉUWVS }] tt x!+7i!G%uf~4 u Vf~4t t wuO$f~2uF8/tG$tSWGNjjhE)ƃx/SWYG4$(u V(WЍe[^_ÉUE@(ÐUE@DÐUU EP(ÉUWVSDEEUz$PEpƃu&} }UfB4 UBb} u E8EP$Ѓu!E@0E uEEEEE}u} ubj6uuhEtL}t} u yUBEfH6E]E܃ VEUR$UԉЋUBx/uMԋE@$tUP/BUEEԋUB+EԉE̋E@2@EEEEE UB$ u#{.u{ C%=.CPCPu\ǃt0C;EURUUԍDPutKJt W7 u4$qEf@4UJ$ _UE;PtE@$t UPUUB+EԉECE=EfG2UGfCEfG${ufO6}t(}tfG4 E܉GfG4 UBG}t}t({t"{tE@$tGG@GfG4 ZUB$tGGG&@Pw@uvG@GjWufG4}~Hfvf4uMG}u}} Ex}Et& V&Ãt V}tuuUB$tE;Bt}uMU}ta} t }Efx2uUB$u> r#$h]jEputUfB4EH$Q}uR} uEUfB4: WuQ4$Ef@4UJ$?'Ex t}~uuPEEe[^_ÐUWVSlU} B$t]_/u  v /devf$/>Ph EPh u!E%f=`tf= u  ve^_ÐUWVS5hhu T=#t= thݜbhUPhUPhUPsã_ƿ8޿)<Ƚ8u hUP PPhUP PP;zk)<\Gvh@VHÃt8t;#h@VÃt8th@VÃt8th@VÃt8th@VvtO8ttF P9Oh@VAt8tt PO5S+DžhPÃ޿;8޿8޿8޿)<8޿8hP%Ã>u jOe[^_U=u tuÐUS]t)vS5tPuܺЋ]US]9t)vS5=tuܺЋ]U=t 5˛T=Xu+t jv h$wh5tT0BÍvU=t 5{XÉUWVS0jhj ߉IQSj jhgj 5Th]S ߉IQSjduƒ IQRj< jhj+e[^_ÐUWVS u} ?t3Vt6;u=wt V K)ve[^_ÍvUWVSEE@uPEP4EEM9Es;Et0E8|t(8:t#EA9]sEtE8|t8:u߉EEPhʾu?~#u 8u (}t"u 8u j:hsu63t EPh<uAtUEPhPuAtU|PhuAt|xPhָuaAtxEPhu>~h`uuf1tPhu@ttfpPhu@uplPhu@ulhPhCuZ@thfdPhSu)@tdf `Phsu?t`f \Phgu?t\fXPhu?tXTPhuf?tTPPhu6? tPLLPhՑu?tLPfEpxEfEbxEfEfxEfEoxEfEtxE`ǔa]]]]Ɉ]كHPEPu>u HHPEPuR>HG DPEPu3>tDWt5@PEPu>u@wG G uf.эT9v$:/u J9v:/t9v:/t J9v:/u9u":/u.nP5FKJ9v:/t)=~?&)CPV5De[^_US$] =u5=u5 jjjjh u =tCEUEBf]UUB jEPRQQ uUЋ]US ] PuJ…%f= u0E@ jEPEPhh& tME0=E0RP%f= BPQj@h1?Ћ]ÐUS ]h)thPPu<hPh;c ƒxivƄ*uDSP t؃hPuԸv]ÐUWS]=u hZt;uf.эL 9v9/u I9v9/t9u9/u f/Z9vy/t J9vz/u)Ѓ=~ ?')ӍCPR5De[_ÐUu ÍvUu$ÍvUu(ÍvUu,ÍvUu u0Uu u4Uu8ÍvUu<ÍvUu@ÍvUuDÍvUuHÍvUuLÍvUu uPUu uTUuXÍvUu\ÍvU`ÉUdÉUuhÍvUulÍvUu upUu utUuxÍvUu|ÍvUuÍvUuÍvUuÍvUuÍvUuÍvUuÍvUuÍvUuÍvUuÍvUuÍvUu uUu uUuÍvUuÍvUu uUu uUuÍvUuÍvUuÍvUuÍvUuÍvUuÍvUuÍvUuÍvUuÍvUuÍvUÉUÉUu uUu uU uu uÐU uu uÐUÉUÉU@ÉUÐUWVSLu }t-EȋFẼ ]ȍEP FEЉكvUH!ƒRQu8 ƒutEEGEGЍe[^_ÐUS0]S\ EE EPSj …uU؉Ћ]US0]S$ EE EPSj …uU؉Ћ]US ]S EE$]Ð̀ø1̀ v̀rÐ v̀rÐ v̀rÐ v̀rÐ v̀rÐ v̀rÐ v̀rÐo v]̀rÐ[ v[̀rÐG vÙrÐ3 vQ̀rÐ v̀rÐ v̀rÐ v̀rÐ v̀rÐ v̀rÐ v̀rÐ v̀rÐ v̀rÐ v̀rÐk v̀rÐW v̀rÐC v̀rÐ/ v̀rÐ v̀rÐ v̀rÐ v̀rÐ v̀rÐ v̀rÐ v̀rÐ v̀rÐ v̀rÐ{ v̀rÐg v|̀rÐS v{̀rÐ? vv̀rÐ+ vt̀rÐ vj̀rÐ vìrÐvh̀rÐvb̀rÐvàrÐv_̀rÐv]̀rÐv\̀rÐwvZ̀rÐcvÙrÐOvS̀rÐ;vQ̀rÐ'vÒrÐvÌrÐv=̀rÐv<̀rÐv;̀rÐv:̀rÐv9̀rÐv6̀rÐv/̀rÐsv)̀rÐ_v%̀rÐKv$̀rÐ7v#̀rÐ#v"̀rÐv!̀rÐv ̀rÐv̀rÐv̀rÐv̀rÐv̀rÐv̀rÐv̀rÐov̀rÐ[v̀rÐGv̀rÐ3v̀rÐv̀rÐ v̀rÐv ̀rÐv ̀rÐv ̀rÐv ̀rÐv̀rÐv̀rÐv̀rÐkv̀rÐWv̀rÐCv̀rÐUWVS}u @ B8tt)H[^_ÐUWVS<}@vGӁv R%@v#L4ȅuˀ-u E E+uG}t}u0u?xt?Xu _E}u0DEEEEE"SEE}uEEEEȉURPuuEuuuuEUEEUĐC< wC<w7C<W;E}x,U9Uw$rE9EwU3UE3E u;E~E?vEEeEUUUċEЋUUUÙEUEUGL}y/EE}uEE"#}u }t ]U]} tE}tGU EUe[^_ÐUWVS u >=uFIMEPuEƒt=}pI;MFBD;t vG;u@;u-PR@H PÃPS5;@D}U:t:=tvB:t:=u} +EUDPtKEMAMt:=tBMAMt:=u=BvFBuȍe[^_ÍvUS]UBtvEPS{uЋ]ÐST$L$ 18uBu[ÐUVS]u XPSuEu=P"9t)ىȍe[^ÐUWVSl,EE8vU:%pE]zT$lMEuu} GUD|!uuM ywhA]D`uu}  wGtGU M A]D0uu}  wGUuuhx] KlQ>uuu }Nuuu h0;uuhxE p 8,uuhU r uuu h9uuhx+uuhx4uuhU BjuuhM quuh] C יY OuuhxE pSuuhxU B@;uuhvuuM y ~ ] }PJuuu hBuuu EuuhxU 2E Nju P% PhX]S uuSuuu hH^uuhduuhxE H+H$I )/uuhzU B A)މ$I2ؙ)ЍXU JlrZ]vu)dȉәuȉәu EnEm+E ZE)Ѓ}E9S9VIu+dȉәuȉәu n\mQ}?VuuuhxSE8guuuhxdȉәuuhXQuuu h]uuhx} t G+OU JA$I ș)Q{uuhzU rhuuu M>uuu ]'uuhx} GldљRuuhX] ClP'} (tuuw(,E x wuu@ 4\uuhM y$xY$uuh] C$ۃuuhyEuuhxؙUPxEuPhx<EәPYE 7uuu }nEE9EtUMAME];_Ee[^_USuu ]SF uuS]ÉUSMU ]9sAtB9s Au[ÐUSUE Åt@yu wfEfEUUEExEDžxDž|EEEuuEPHƒtEЋ]ÐUSE8eX ;E{t s.{t s{t s{<t s<{Dt CD-P{Ht sH S]ÐUWE ~ y) h3ƒtbЋ}UWV j t$bNjuUǂǀe^_ÐUEt PUWVSL}uEf u`EuuhsE0r 8}ȹ]EEEE PhtjEP!EPSEPU2 t" P Ph5QzvExt(hph``E` uEPjjju h_u hOv| ujutjju hu h O~ j  Urnu&0ğPEphU2r 8uPuuu;UB 8u EX E@ Ej/u݁$uhX"j/u迁 juuhU2UtPRu ?0Puh5R$ ua$yEe[^_ÐUWVS }} u}FE < RPF~݋E 8 h`ƒ}t t8u U4fƒt:u hYKƒt:u|IREP} 4ƒt8uIsRPF9뤃}t:U I/u EP\j/u <ÃuEU Iu PF۾x/uC{/t{tS+E @Pu PF] ;/uE E 8/tC;t;/uU :u#`RPfF~݃}t# uv/v R` P4$JukE9}D` PP<$ ufǃC WG9|}8Fb e[^_US h@h@!j Ph@t=h.nh@! Ph@!rC ˍvC~@!]USuÃt]ÉUWVS u U쀸.u{{.u {j/S):=pu hTEt^=uUUу+v ? upu pw1$D$ 3 , %@ȶ ;vuS`Ut' SփtSuhUvЍe[^_ÐU h("jjh5<"h8"u u&=0"u 0"=4"u 4"ÉU=8"t("ÐUWSXUE]CE8IQREPEPjS@ …x!muuuu uEP‰Ѝe[_ÐUWVSE E}t?Džhu%u"vu5 DžhhE}Yuh+EPuulE8/tLÉэt 9s4CN9r$K/)PuSXUEK"t^F DždhXE\Xt.X@EPh.nUpElDžxEPXU|EE9pu 9lt;\r?ѥddXQX`td\t.@.@t XCEEPU2lt/@tDž`U9Uu( uǃ|9؃ uǃux.ux t܋@%=.t̓G@PtGP蹎EPXt(`u `vU9Uh|9EYG+Uxt@9}|h\+UP)މTѥhhu薾EPhT+TLPS΍LxuK/G)ÃPSGP褍u]EtDžxE8u`uv`ht u}t u X`e[^_UWS]u0=D"t 5D"ED"@"YэA@" QD"u !vH"S5D"e[_ÍvUVS] uU:tSB<:uي:u:tvAB:u:u9uҀ:@t%:u :t::u 9uB:@tv[^ÍvU jjuju EPuUWVS\]} }=D"u5D"uk @"P:5D"Dž5@"FQ h/Dž;Dž}x jjjuDž3hhS$jjjS   uPwӍ{ S*ƃ SPR] ;E0jj2EDžߋ;rkhPueÃ8t u IEDžv(G u ;F~\dF;U)Ƌ)ÁSP5u,  uMÉFu[88#uP>} tu , Džu78u 1Džj=h_PCƒ-À;t C<:uCB+jE@PRuPPtNj t_}.t u Y'u DžuC:CDž;tC<:u+){:t :+)9)Ƌ)Í)‰)‰SP覶u1 t u ÉƋÉ+PS莅 tCt u)ʍB] 9vYRQ誵uB . R3 V J]e[^_ÍvUWVS(]u ƃuIM}jEPEPSS tt# VI V9vE8u @EEHG뫋UBE  VyE8e[^_ÉUVSu t=>t8]9u;|t ;:t;u&AC8tK;t;:u C<|t[^ÍvUu uSÐU=L"t 5L"L"T"H"P"ÐUWVS=T"uE T"=L"uNhT"0bL"u.g`Q4Fv=D"t=H"uH"D"\P5L"wÃ=L" 5L"KÃt 5L"L"HT"BT"z!h0aL"+d@t_v R D4%@u;:t;#t =P"t.x\uP"P"x\u P" P"ڀ;t::t(:\t FB:ut :FݐP5L"ϋÃu^=L"tU 5L"諮Ãt  5L"L"e@3v:|t::t AB:ujjPju PuVÍ@ wCe[^_ÐUWVSj=u uÃs jdǃu, ?Ed€;:;;^u/C;:;;?u BC;\uC;:;0<w#tCIt ;/~;7~9BC2w*$- ( #  :CvCBMu$)FdPWDǃtEEd;:t ; B)K}t()PWǃt vE8؍e[^_ÐUWVSj=u uà jdVu ud€;:t=;t8vCBNu")σGdPQft>d;:t;uB)Kt%)PQ/tE؍e[^_ÐUSj#u uƒtw:0uB:xt:XuB  0< w 0&va<w WvA<w79}B뽋E]ÉUVSE ƀ8:tF>:u^FPu^e[^ÐUSEP8t AЍR8u)ĉE $EPD$tAЍRu5Su]ÉUSEP8t AЍR8u)ĉE $EPD$tAЍRu2Su[]ÉUSEP8t AЍR8u)ĉE $EPD$tAЍRuSu%]U 5u uÉUWVSDžj/u$TtE|Dž*|E8 h)_ƒuу)̉u Rp;uvэq}эyD7=v6jhj- VSj! jhj VRSyƄ./ W.PuyEƄ5u |H(8?wp$U :t @U <uB)ĉ$p|D$RFPE PTy 5VhX}P|CuDž t |BhgPTÃ[t I <e[^_ÐU=H#t`"ÐU h`"j:j:h~5L#hH#uaÐUWVS,]tE;t@Iw,;.u{t!{.u{tj/SYt ޿|8t޿8u2=#t3h`#Su##=put hƃtTuKу+? V}pu8up p5pVyh.nV˵SVhV賵hVaVƃu '8t .$ P#u(8t O V V8u 88u 8u  8u ^8u .8u K DžOu~=#tQ#ƃ8u L 3 5#"##Sh`# e[^_UWVS]EPS$WS}}}S  uGEo SM[8uSjuu號t8 u'&OEtUUT tL t8t ttB0B0P P 4 4 < < D D tD4D44444G~L 8 4 ЉL u9tL @ t< ЉL u9tL H tD ЉL u9t;4 t8 DL4|DDu]+AtL D L E9L  I~8xxD3 I~D Gt;4 8t;< }Ft@ DDDDG;< |t;D }KtH DDDDGt;D |tL P ;Ev u׾ֽOmtP u džL t4 u ǀ8 t< u ǂ@ tD u ǁH tvЍe[^_ÐUE@( @,L ÉUVSMu ]ut @0?Av ww P0I  At [^ÍvUWVS}] UF9ust0(vtV~ CJ[^_UWVS E@( @, L EL ; t; u C; t; t j$ϻǃu"8t EjEPS=;]]E;}E; t; uvC; t; tjEPSD;]tG]t@; t; u C; t; tFojEPS謪G ;]t}u WO%EL ǀP $Ee[^_ÉUWVS]} t>L yt@Ƌ ;M v}tE@0J~ICI~ CI}tEL B ! D[^_ÉUWVSMu L #Z Љ!;ZuOL X9]rp}t3MJ ȀFJL ;Xu 9]smOL ;Xu X9]s}ttEi2L ;XQX 9]s}t@M5FJπJ~v FJ}tE0[^_ÐUE@(4 @, ÉUWVS]} ut-^ЍH9vt@0Ix  CIyt[^_ÍvUSU] EMfyv2StC#ttC t$UE@( @,p ÉUWVSM} uxE%=uE%=uEgv%=uEC%=uE "%=u;Ev9st($!AKt8v%=ttA@0-? AKuˡ;P0t;U}P0tЃ[^_ÐUWVSMu }uEovu EYu EFu E3u E x EtA9]st6.vS~ȃ?Ȁ2JE Ȉt3؃[^_ÐUE@(| @,x ÉUS]U Mt 9vt* ttEtCC%=uqtCC?KC%=uBC%=u2tC S? ЊS? vtC@0$ÉUSUM E]tPv7t& ?ȀAЃ?ȀAtA trv€t@v'tЃ?ȀAtA t*vtttA vt$UVSuU ]u CFlCB 3脴sysn$fNpe[^UVSuFltXPjV؃ue[^ÐUWVSEplEPÖt)E;F|^VWu@ރvu׍e[^_ÍvUWVS u}~pt V~p~=Flt9P}P@uA VG j*à u bku G 7Cu $ E0ޱCu j3SM j蛕CSMC RswQd E0sp>dFlC^lFpe[^_UWVS]u S[[lt3VY[ue[^_ÉUUPt= vft"tRhwh##ÉUWVSDžpDžtDžlDžhDžj/u ?ǃ=dtD9dt<5t(~`t V Vkރu=d} t E }tE8u ?5t#FPut6uu8 jt踯F\FhDžl~PPv\襶tu ff;FdtJ~\ WÃ~`t F`PPRFhF`WS̴$訷hh~h]~`t F`PPRF`F\juhhhSjSJǃu jjP訮8#DžDž jPWË9t W蟶JFHFLFPFTFIFHjFLPP` jFJPPx`fFJfFX<$t}t U:u vEPuCgEEȉủ]ԋUUЍEPEPVuxu8E܉ @PU 7PuvZEEPu`UEEEEU؋MċA`XuuRh4 EPh jq` t&hEp`r ucg u0 ÃuCE܉ @PܦU 7PuYEEPEPuu EPh4 CBڐЍe[^_ÉUS]=`$uhh`$轒 u `$Ћ]ÍvUWVSLEEut>t} tE 8u UUMEUEPV `MEu]E C}UȋMċA`@uuRhx Shx jq` t&hEp` ue urÃunEԋU @PM U2PuWMME̋U@$M U2PuWMMEPhx Z@ډЍe[^_ÉUWVSLEEut*>t%}~} tE 8t}t U:u vfM EU$MEPuQ!`EEUUM MuċEE}UȋMA`XuuRhx EPh jq` t&hEp` uX uÃunEԋU @PZM U2Pu VMME̋U$@$%M  U$2PuUM M$EPhx >ڍvЍe[^_ÉUWVS<}tE8t} tM 9u 9EPu5`EUԋBHE؋BLE܋BPEBTEfEjjEPjhEPà u h vEEȍUȋM JMA KWVEPh$ Rhx jS t/h)Ep`(C$Pu CSP]ăEPh$ :=t SЍe[^_ÉUWVS}tE8t} tE 8u EPua5`EE]E CEUBMA`@WVRh Shx j q`  t[t&h;Ep` ua uÃuU܋EEPh <ډЍe[^_ÉUWVS}tE8t} tE 8u EPuU5`EE]E CEUBMA`@WVRh Shx j q` t&hOEp` uk uÃu uXUEPh  ;ڐЍe[^_ÉUWVS}tE8u vEPuU5`EUBMA`XWVRhL EPh j q` t&hdEp`uw uuUE ʐЍe[^_ÉUE$ z|u@ng``YRKD=6/(-!>PhOh$$ÉUUtyw7tjw t\KtG6t3w t$ttÐUS]=`$u EPu:t`$ h`$u h`$vЋ]UU hBPRu>UWVS<}EPu u%URh` 8E }ẺEăt E@Pƃ uPuNE0E@$à uPuNEEPh` ~75 uSuVuNjEċU V$ٜu?EPh` '7U EPh`  7UċE e[^_ÐU=`%u h,`%`%ÐUWVS,}uhjWh h@v} uhKjXh h@ø]ԃWEPWRu hhum t])ƃFPuEPS~эA)ƃ}wyE$P ut vB:uAtBKu[^ÐUu u7ÉUu u6ÉU j@u u8U j@u u8U j@u u8UE hPPu=7UE hPPu7UVSu] SV;tKCPVBt2CPV)1tC PV0АЍe[^ÍvUVSu] SVt3CPVtCPVЉЍe[^ÍvUVSu] SVctCPVjЉЍe[^ÉUVSu] SVtKCPV&0t2CPV 0tCPV/АЍe[^ÍvUVSu] SVgtCPVЉЍe[^ÉUVSu] SV#t3CPVtC PVЉЍe[^ÍvUVSu] SVtCPV*ЉЍe[^ÉUVSu] SVtCPV.ЉЍe[^ÉUVSu] SV2t4t)uCPVt Ѝe[^ÉUVSu] SV;.tCPVЉЍe[^ÉUVSu] SVth jCPV ЉЍe[^ÉUVSu] SVOth jCPV~ ЉЍe[^ÉUu u/2ÉUVSu] SVG-tCPVЉЍe[^ÉUu u1ÉUVSu] jSV1tjCPV1ЉЍe[^ÉUVSu] SVtGtu+CPVv, CPVot vЍe[^ÍvUVSu] SVt3CPVtC PV+ЉЍe[^ÍvUu u0ÉUu uo0ÉUVSu] SVtct"wt @t 9CPV\CPV CPVt vЍe[^ÍvUVSu] SV;tct"wt @t 9CPVCPV CPV6t vЍe[^ÐUh h'藋ÐUVS]=t ʋt%2h hum 5'#t Mjj9bu 135'ƃt 3辎ve[^ÐUhT h 'ϊÐUVS]=t t%2h\ hHum 5 '[t Mjjqau 135 'Uƃt 3ve[^ÐUh h'ÐUVS]=t :t%2h$ h耋um 5'蓉t Mh j`u .35'芌ƃt 3+e[^ÐUh' h'?ÐUVS]=t rt&2h h踊um 5'ˈt MjHj_u 135'ŋƃt 3fve[^ÐUjhhhpwhjÍvUuhhhpwhjlÐUhhhpwh@jCÐUVS]uS EE$uu ShhhpwhV0tUЍe[^ÍvUVS] uSEEPuuSuhhhpwhV0tUЍe[^ÍvUVS] uSTEEPuuSuhhhpwhV(0tUЍe[^ÍvUW }E@@ @@@@@ <$ÐUWVS }u =L'u< hL'u L'P'v EP5P'5L'h 'V׉à }uU"uE 5L'ÉP'=wP'P' PaL'z}u"tEe[^_ÉUuuuu uUuuuu u2Uuuuu MÍvUuh ÍvUuh ÍvUjh UVSuu jjjjhà u% jjjjhӗà t]EE@jURPSS u EBvRh`j09$S؍e[^ÐUS]tt PP S]UVS] EPu]tt1LE0E@t] C PEpE8t PPEЍe[^ÉUWVSlUEEu t.w tvt'ЃEE1ЃEE3E2ЃEЃEERU EPUt vu Eăx>]ă;u C PtEtF;EwUlE"YvEċ@EEȉEt7w t rvt?hjuEP4iw@EIEăx  UU/vEvE@Eăx @ Eċ@EEUȃϋMċA  ˆUȋjEPEP1R uu E@w Eċ@ uuV}wuŀà u;E9GuuuyEċ@ uuuuńà u }u Eă8t PPEvuUB(% B(}tE؍e[^_ÍvUVS]uM 9s :t B9r:uYtTuSuFD@2B9s :t B9r:uBB9sE;u ve[^UWVS]UM 9:tB9:u9BS9:tB9:u9BBE9CBE9C BE9:S9sg:t B9s]:u9sTBS9sL:t B9sB:u9s9BS9s1:t B9s':u9sBS 9s:t B9s :u9r vE7BBE9w(2BE9wC({s$EvE[^_ÐUVS]uM 9s :t B9r:u@tSuSuR1B9s :t B9r:uBB9r9ED@e[^ÐUVS]UM 9:tB9:u9BS9:tB9:u9BB9CB9C B9CS9se:t B9s[:u9sRBS9sJ:t B9s@:u9s7BS9s/:t B9s%:u9sBS 9s:t B9s :u9r9BB9w,C$B9wC([^ÉUu袀UEPuEÍvUWVS<UDžDžDžDžu tw!uЃ ЃЃЃR PAt N P}Ft~tw t YtPGh6Tv8~0hhSǷ=VtpwPSIu5u }8 } V8IQ2ǃ t'IDž0\a;r"F*IDžjǃ u ;tHt EuH(0}tUe[^_ÉUS]K}$C}]ÉUWVS u]}SuO} t0Ph SV螵9skEPVu>uG} t0PhSVO9sEPVuBЍe[^_ÐUWVSU EEPEPIQRhuƃ ujU])Pj:Rv^ǃtIG9sD)Pj:WX^ƒt+);Er")SWu0E u{e[^_ÉUEPu0Eǀ E{{EǀÐUWVS|MEE] twuȃE ȃEȃEȃEEIM EP/Uu+E8u/hPetyU EPj@EPSub Eǀ'Et*w t Rt;Iuuuh]uh6TuuͲ;EEvEEUu,EPEPPPEPRUƃ NEǀEPEPUPPQWEPRƃW{y ueyETyEǀEPEP}IQuEPuM t uxsvE9EuuuEUuxuuSuu ƃ u uuuuuƃ vu urh5Ep.t7EU)JRUDPuuƃx6u EE@UBUB(% B(}tEvU"e[^_UW}wwwwwww w }ÍvUVS]u VC(tCFC(tC F C(@t sP/FtF{(y s5/Ft+C)t s /F tC(F(vhj'e[^ÐUWVS\E x(EU:t:щM}tWMExtPMExtPMExtPMEx tP M utEuhj& #vuEEU:u EuE)P}7VXt0Exu EuE)PUrVXt0}u E"vũE)PEpVdXt0Uzu E"vuЃE)P}wV0Xt0Exu E"vuԃE)PUrVWt0} u Evu؃E)PEp VWuUUEu }*U2])SPVWE9a}t7EuE@.vUr])SPVRWE9 }t7E̅uE@-Ur])SPVWE9}t7E @(@t@vEЅu UB,}w])SPVVE9Et0U z(yBEԅu }G'Ur])SPVvVE9sH}t7E @)t@ E؅u UB 4}w ])SPV.V9rv ur"6E @(t @UB} G(t G UB ure[^_UWVSu >u jjhXjjʁ t?]}IKEEE@EjPSRRu Aqe[^_ÍvUWVSu] t.UIJujEPRSS e[^_ÉUWVSL]}L vR\Bvv u t-wtC_uY u,u(u$u h<hHu,u(u$u uh<h*u,u(u$u uh<h h8EPEPr0ƒEpU 2t} u{.u(u$EPu tU,"JC} t} t 0E 0uiuuEU ;BtЍe[^_ÉUVSut:>t PP{t CPP CPN4$ pe[^ÍvUWVSX] } EPt tWE0E@t} G PEpR\Bvjhph>E8t PPER\Bvjhphh8EPj Ѝe[^_ÉUWVSlUEEEu t'w t(tЃE ЃEЃEЃEERU EPUt u Eăx]ă;u C PjuuEăxEE@Eċ@EEċ@Dw ttDuuuuuuuVVuÃ0E@DEPEPEPÃuE@D4}t.E8t&uuuuuPujVueÃ0EăxDuWtMuuuuuEp@ujVP)Ã$Ep@lE@@E@DtPEkUE@E" U"EȉEEĉƒxBEăx @vEċ@EEUċB Eȋ jEPEP2Q ÃGOU+t-qBt@t$E@D] BP&E@D6]ă BP#C@Eăx@uhjE  E@DU9U]suuuEċ@ uusuń !EăPuE B@uX BPC}tU:tEăPRvEPEPEPuEăPBPEpu?ut Eċ@ uuV}wuŀà tWuEU9WwuuhtEċ@ uuwuńà uvUăz{}uEă8t PPEu'}uUB(% B(}tUE؍e[^_ÉUWVS ]}uE 9s v::t B9r::uyttu,I)9uS98:B9s ::t B9r::u)j EPBRQ!ƒE8:u ;Utȍe[^_ÐU }Puu&D@ÐUWSp];v=t5SPmIEPhjy 5g8tE EuX'hh.u=CEPh=5#5r}+uX'=t'=\'t=t{ 5{sh Sot) QfSPGW=t 5se[_ÍvU\'=t:PEPE P EÐUVS5t*6 sfs ~f$vfu=t 5Nf5tSv6{t sf{t s f{ t s e SeuX'e[^ÐUWVS ]} эq@vCv RoV%@#L4ȅuϋEE9C;,t0;t+v R!V D4%@tʃVu Wu)9tJvC;,tv RU D4%@u΋EE9_Ѝe[^_ÐUSM] UE8~ qvt-tVt&t7IЅuuPSh,Sh!ЅuuPh hvQ H]ÐUWVS,u] >\' VF\'=Dž hT'vPPIQP}uP5T'蔹ǃ tue8V_ÃcvPuEuPP4E V&ttSgu]}t!tu]gu6}t!tu6gu8vPPPXcvЍe[^_ÐUWVSutsVftuu VÃ{t CC En8eE8( j(`E@E@@ UEhc6EP7EEhEP6ƃtl8 t8 u F> t> thVt)эA~4 XSp_MUD SPV#MEDE}%^hEPY6$eu/}t;E8 t 8,t8 uEE8 t8,t8 t}t E8e[^_UWVS<u=X'=T'u hT' PPIQVh5T'ܵ t- _=X't VhhhP2_+uX'%;#; t; u C; t; t; t$; t; t;tC; t; t ; t;u+; t; u C; t; t; ; jM]@G$5]B WPBэyDž| uO|\u ODž Dž DP\~&PQ]WPS)tQ5hP3tэy DžB VratHv=X'5hP 5`Ѝe[^_ÐUhA h(XÐUVS]=t Xt`'2hh; h+uj:^S)Et9uE@ ] E)PFCEx])CVPREpqQEXCE@ z uuWuVE uVE9EuVuQEMuUE)HPD PuRQwE u EPE0ƃ}uE8t 0^RE}u}tUEEe[^_ÍvUWVS ] }Suytt]U9}"9s::u@B9}9r9tLwt k_}эY+E9uFu}98)j EPRƒ9]sE8:u 9Utȍe[^_ÐUWVS uEUFFF X))ʉ~~hgEPtd8t_hgEPFtDhgEPEt)8t$EEj EPuƒE8taV^ ~4}t.hEP3t 8tO~}u}uE"e[^_UVSu]=t V,Su VcÃ=t VL-؍e[^UVS]u 9sHs VsDlDƒt SDsHe[^UWVS }=t W., WPwj 7u%Ãt7CE)ƋE 0fO )w=t W,EwEvFPPW+EUWDP7RLu<$6Pu_wj 7$Ãt?C+EƃVWuLEGDu7PLE)G vw`E 0=t W+GD$E =t W+e[^_ÐUWVS ] =u hIC(hgEPE}u8EE8t8+uxuK(hgEP3Cy8tK(hgEP ƃR8t K(+v8+t!8-tEDPh.j EPV!?8"uE jVhE8tEVh}ttE hEt'=tvhVh{hgEPƃG8tK('8+t 8-tE<Ph(&j EPV>8"uEjVh;E8tEVhTEt'=tvhVh{ EhgEPCX8tK( hgEPƃ18tK( VChgEPƃ8tK( VaC$hgEP~C8tK(@hgEPVC8tK(hgEP+C tuƃ}tB8tIuEt& hhvPVBuȀ>tK(hgEPƃtEt hZe[^_ÐU=(u ((t(U=(tj5(((UA(ÉUWVS=(tj5(C(hhyƃv;#;/t;tC;#tw;/t;u;#th;tcCv RN-%@@#L4ȅu ;#t;uC WIP5(&vVhSV VHe[^_UWVS,}ؾ󥤃=(tj5(e(E EPqvShj EPt h~EPuƃuU:8uMD@E.u@PC@P`(GC7 ;t 3*8{t s8t S8e[^_ÉUS]s7;t 37 S7]ÍvUWVS@} EDžhWP=-j@V5Ãt\Cj.St)ljGhSut 6Iҋ}эT 8t)ωI8.tTʍvэA9.tTv2tutL5(hS&uS&8t78t08.thSd&2PJ&9.thP(&P&tu PÃu c4 ؉e[^_UWVS}uu WxƃtAVwÃu!48u tVw à V4؍e[^_ÐUVSu t&>t 34;u V4e[^ÍvUWVS4}GG hu ƃu9 ht$fG?ylGb#M @ 3 t u C; t; t; t; t;=tC; t ; t;=uCv R}$%@@#L4ȅù;=tȉCv R=$%@@#L4ȅthqthWuJh=t_  1 EhDž8;t;,t C;t;,u;tCh蘹uDA/hguD@;td%DAVhP V=ttG;G u0e[^_ÐUWVS,hu.@ hPjjjjuu jh+Ã0 hPSPÃ=v/=f+Dž9}HVx D0;ve/(<t19| P.u3/ / mv.(ZDžDž9V 0x ;T1 ЉD1T1 \1D1 É;;X;Uu t S- B;9sKF<3;w%SV79;r-(;9V9}HDž9}D 4U.9|u#2- .vvЍe[^_ÉUÉUxE=(t 5(-u u5((u(ÍvUyxE=(t 5(M-u u5((u(ÍvUÉUu5(ÉU=u; h(yÍvU+ t2  t&(t=t USj +Ãt!@@ jP*uhj!؋]ÐUS]SB9Cu'BCP3 u vKE C]UVS]tD;t6} t#;ssv 4{+F;sr 3h+ S\+e[^ÐUWVS u} ;^s%vW40u C;^r޸e[^_ÐUÉUWEfEfExEI|MEl EEE؉EEEEEEEPu xP }USP]E E؍EP 6ESh66uMEPEPSz6xUЋ]UWVSu Ut5Ǎv@A9uu@U t؉[^_ÐUVSu=t V~uu V$Ã=t V ؍e[^ÐUWVSuE H+F8xu@Dž<Dž8Dž4HBHv S D4%@tV 4N~ VR6uv R} D4%@uj%u4DžDDž@HAHz$~ V59NB4@띁@@t @v@m@^@O@ @@4@t@@@@D\CЉDADž0@Dž0@Dž0 }@qb@QHPT H@ "@@ @Dž08@?@@tEE4@tEE4f@uL@u @tEE4Q@ u$@tEE4EE4s ~ V 3 @@ t+Z4N~~ V2 v R%@ #L4ȅu$Du DžD@@uEE, Dž,D; C@NX 󫍅XPSP, u@u ,t$4D@u,~ Vx1t tN D8@ @tP^;Ds$)D V1tۅ DD)N4 VDjEE0 HDH D@@u EEP,Dž$D;: C@NX 󫍅XPSP, u , ,1X t@ ,0@ (u#ttKV+P tZv4D@u,$~ V_/u D)$%@*,@th(tECNBDt4~ V.t(uEE8(tCNGDt1~ Vc.t 9$(u)ى%<,DH D@@u EEL, ;C@NX 󫍅XPSP,9 cu ,t|,v R D4%@t(KV+Pu4D@u,~ V,t tGv R%@@#L4ȅu D@?,@tn@&CNDtG~ V3,u1v R^%@ #L4ȅt4EE8-vNGDtJ~ V+u4v R%@@#L4ȅt)4<.DDv DžD@DCՃM$0uDž0@@tG@?0 0"0 00 ~w@??@@t_@*@tJ9u@Dž0@GN~~ VF*u D@y&9 VGPf_xtXuOVSC@f@x0jP< 0jPщƒ@up@@tEE@tEEf@u+@u @tEEHEEDDv DžD@DCՃ:wP$8@?[@@t{@F@%=u`@@8+uB@t6@GN~~ V<(u DY@yd@t,9ÃVOPN9OetEtVS(OVS@uZjP @t EE8$@t EE EENy:HvEp46PUr0ǃt$>VWS!Ex06UB4e[^_ÉUVS]u tI=tu)=t VVS&Ã=t V؍e[^ÍvUVSu] C8xu@fS ЃfuPЃffC ft, Sfc CCfK {0t-C;C4| S@ueBB"fc ߃{t;SvB9uBC.vCC;EE>t+}u%}WEPEPVI u>t}t;t+}u%}WEPEPS ]܃;t}t}t+}t%E;EuD}u E+EEԀ>t;a>u;t ]]'>t;u 6u+E >u ;uEԉE؃ u$uE؍e[^_ÐUWVSFЁv R%@ #L4ȅuˉ<-u E E<+u>F}t}u0u>xt>Xu~E}u<0TUEEEE"!EEȉURPjjEUuujjzEԋEEUĉG< wG<w7G<W;E}x.M9Mw&rU9UwU3UE3E u;E~EAvEEeEUUUċEЋUUUEUEU>FE}yEE0"#}u }t ]U]} tE}tFU EUe[^_UWVS<}@vGӁv R%@v#L4ȅuˀ-u E E+uG}t}u0u?xt?Xu _E}u0DEEEEE"SEE}uEEEEȉURPuuCEuuuuEUEEUĐC< wC<w7C<W;E}x,U9Uw$rE9EwU3UE3E u;E~E?vEEeEUUUċEЋUUUÙEUEUGL}y/EE}uEE "#}u }t ]U]} tE}tGU EUe[^_ÐUWVSEDž|DžxEEEE܋E-w.$hvDžxE܋E܀8u&EʍvE܀80@Xtxuu xEPEPhDEPGà u UUu5DEPiuSuEPEP Dž|vE܋E܀80t8 E܉tDž`DždE0/~O9JdDFЉd`DFЉ`GE܋E0/~9~}$9E܋E0}u:0uEE܋E00tFσE܉tUUEFЃ E0EE9}9Gdd``C;]|ȉGdFd`F`EE܋E0FЃ ]Eet Eu}u |E܉EE@E0+t -uEE܋E0FЃ 0uE܋E00tFσw^NЋ]܍CE܉0/~!9LFЍBE܉0/~9~E)؃ MN~EN}t]EUU܅} | NtaN Itit ntHh6EPM܃hC?EPuEE[h;EPtPE܀8(u4EPhXEP uE EEȉEE EE1 EEDžx U)Uu}u}~dRP,$d$] ~#͘@M苅`RP,$d$]DžXl} }~?}EE @?)C9E6)]@E UU }|EE4@]C )Et E @]4~"EEe~`@Et A]EhPE `@]P`|w|v@EEPމt E4@]tEj~@Et A]}tN]C%k)~3~$E4~ Cp !E !EEE@u+EEL"X1tdWutXXr\XB\ փ ЃtfЃtEPEPuuEjfT}xuuUډE}x}+u}E+M]K}3 6+Mu9~;]~]~)))]~4RTTuPÃuJ]~WuE}~u\\~V\\}~uTT\uPp @ TPmy~}E%=Pxu xjP$PTPwv4ttU%=]}t+dwk)9UB%BEvEuV}uP}t"MpUJ BEEtuuE]huumUE@8TPtݝh0݅ht$?EUhlv}u Et(}u }ݝhEEo݅hEu8ݝh݅h 8ݝhhl"݅h 8ݝhhluEU]C%d=unEUEUkPuu1ME]C%=|v&}u }>EE|EP}d@݅hug}fE fEm}mE`u Dž``RP,$d$ݝhhluEU؍UB+dBuu(ME]U%`}9d}fE fE݅hmUmMQ$$d$ݝhu}u t(vH݅hEtcPX݅hEt?v u\TP&؃}t.EP9EEM]}u}u " ue\WTIX;P-} tE܋U xtEU쉅HL݅HEe[^_ÐUWVS} +] )ސUB‰M UBU9r[^_ÉUWVS=puE EU4EtuEEE8G@u] wBU9U}x9sQSV ;uvVMM>)u}uPEA~;uv ЉGd}GUs9sQSVx;uv$];uv;]w!Mt )ʸU!];u ;]te[^_UWVS,}E׀=puPUx0u vCM< 0t]M@uSE9uA΋UB@uH90uA90t@tΉMv@t A@uE9u uA@t A@uEt )؉E؉PtpurEA+t -uEA@t~>SA@t TCA@t~}tUؐ+]K~ G WEƒUܻ;uvEU׉N9t2 uM܉9Mܿ@ ǃ;uwE܉8+][UZ W)ËM 1EEE܃9~v)Su? tPE{ыU# t)E~CPu tESu]"9}!)ى˃QuE)]؃E܃M؋U ;J~ u*EU؋E ;PE@)9M A t2t at)Z9u~$CPu0  }t3}t-U BME@UMb u7Pq{}t E~Wu EM#tM)ރSuE @E؃}M A t~:t&t-.Et%EM t+UUEx PEƒU܃9x!t> t2 )ڃ9}$juE؃U؋E ;P +}u%~M#tEM MUEE؋MEe[^_UWVS,]޿|8t޿8u l h(Sul:5pVh.nV#SVh`V hV蹈jj EPDžuؿl8u Dž$uؿq8u Džx>tSjjP+uU( O!Džd h Cƃuu hǃuP V Pu V<${jh VOu?jhW4u$j;tE V<${ aSh(c=8t 58558=0t 50=0=4t 544,89u|t , A~le[^_UWVS ]IMt;u hxvEyE EEPƃtOE;t=8ыU| 9},EEPVƃuhvjG8BPCU2P};ue[^_ÍvUWVS uE UE4;tR:uBIQSV u!IU C UC$;u0ЋU0DUe[^_ÍvUuuhjGÉUWVS 0E³LjIQRj jhj } IQu j jhj4$ E IQuj jhjuyUEU EUM@~MEE/vE)ʸEEÐUSMU ]؃wY$A2BA=RE3 ‰QAAtI$UWVSu;tM9CuCE 9C u;E9Cu3uCPuVP{t CPPRVuu uACiC{u XzUBEC@RjsP CPEPjsRtjjuE C EC}Iw9Iw+uCP8VP(EEC@uuu$u uuus te[^_ÐUWVS<()s߃=t hukjdjdzÃu&=t hv=ujh`"耳C,()EEEEċE EjjC0PVaEPVvu h菇 FVPC`Fxt VPjh`"s,V`GS=t he[^_UWVS\E E()Uփ}uh]hhhS=t h}u%=t hC=t hvFjVPE@0 Vp`E0PVR tCUUFURVPt(UP VPRtuVUu  FVP$"VFjVP@EġDEȡHE̋EEԋUU؃}WVwsu WV^sEPEPu]u"EJ EPRQu&EJ EPRQ u>EJ EPRQu}tEPV>pv؍e[^_ÉUÍvUVS()s=t hu!=t h'*=t huVU e[^UÍvUÉUÍvU=t hd=)u<) )d ) )  )x $)l =t hV)U juuuuu uÍvUWVS8EE}u uuu u2à E ECuujh2 jh2 jSƃ uEU ut9}voSEPSRU܋E;EsEM9v;}wPCURj SPCuujh2 jh2 jSƃ0t u9}wSEPSRas0ZsU؉PU܉PUP CSPe[^_ÐUjuuu uÐUWVSLUE]u #IwRSJ SbÃurr Sbu|r8ugrrZ uPuu uƃ u:Er8t+;r8 t!1rE'rPU؋PU܋@ Et r8t r8 u'}t!qUqU؉PU܉PUP Sce[^_ÉUjuuu uÐUWVS uEuquEPuVuu dà }u vEPSjPRu`} u 6荐G }u vsGUJE PjRQ UJEPj RQ+ EPPR jjuu SVj%E s$Ee[^_ÐUWVS,EE}uw}  u dE;} PEEE XEPubeju"CvEPub6 uiÃuoAUB@9Eto tW ti} t9u F Ɖ8u jEPjju u uuuuu6u uuuuuà tq} t& E 0VC U rEC@ @}tCjjSP5n nC}t u3e[^_ÍvUVS];}85jSƃ؃tG Vu V( SuSh jKe[^ÐUWVSDžxDžtDž|]S EPSjz=t h=D)YƍSjD)ti=D)ڻЃtfЃtتPj躧H)uN 5D)XD)=t hjEPj9}vjH)PC9|吃=t h&jEPj?} uQlEPu^t5uuuXE uuuuXE}tukk@jj聦x EeEeUMPjHtU rrP.M AtMǂǂǂǂEǂǂǂjEP3E3EEEEċEEjutӁèS@SEPS3hujj@ tPRt |Ph~futAExBtJExBB tǁʁfBfBBB Bxhv hHxi iCxt+ xtt te[^_ÍvUWVSE E U$ UrDžDžXS7 hPSj=t h0D)<t2=thH)PD)<u΃=tD) =t h u v8<t2u2FP6zdžtDžDžVDžPDžT04jHPx nDžu }%BRP@DPDPRt2UP PRtuUudž BRPj6 ;tdž8u <@@EġDEȡHE̋EEԋUU؋0;8u4;<0;8}"0+P((4 8+P((<+TBy (B@B(x ,yDž,Dž(( ,BRjxPPDž f~%@fjjjP6 à y8tЅy8#Zv#O;;u8j(P@(+HPP,+LBy PB@BP;8uT;< P;8~džvP;0uT;4 P;0%ѥ`x?B~ h@B000BB=?B0j@BjSP]StKEPS_}u}u džPEPauYEJ EPRQudždž}EPR\bvuV~MEJ EPRQ t3Ekdž džx dž=t h D)=t h4jhPjJ=t H)Pve[^_ÐUM EPAAUWVS8Ep]S2 EPSj=t h.D)<t4=thH)PD)<uuWU Ã=t hjEPj(=t H)PT؍e[^_ÍvUÍvUWVS8} Ep]S5 EPSj=t h1D)<t3=thH)PD)<u΃=tD) =t h t tF*F}$h urMQUFPu~ uNMQ~MQeFMAAA]{FssPCCMH8@#MB@ UMB UM|=t hD)=t hjEPj=t H)PHz=t h^D)=t hjEPj=t H)P̿e[^_UWVS8Ep>]S EPSjG=t hD)<t5=thH)PmD)<uӃ~t Wx zt PR V"Uz tB 8t PExt@8t Pv u=t hjEPj!=t H)PPe[^_ÐUS0]SH EPSj=t hD=,)u<,)X 0) 4)d 8) <) @) =t h6jEPjO,)]ÐUU@=wz| z@B~ÐUWVSX]EEPo}Uȉ]̋E EԋEEЍEPRhj,}ąG @9G h辿ƃ wt;Gt0t*WNMPRQ E@f@UfBTuAfy:NMF PhSkEXFE@f@UfBB VS*džMA0AEv? uuUЍe[^_ÍvUSEt Pտ؃u]ÍvUEjEPj hu HÍvUWVS\]0DžDžDžDž,DžDžDžDžDž  u S`Gǃ ~PVJzMǂ(P . xyDžUӍ0B B0r @ $C@fDŽ|0x j BF9wuF u=, PDž W/Fƃ>uVDžGu1Dž" 莻ztuDž jPH33EEEEEEMXE \U`MhElHM PETEBEBEB EBEBEjMQ<EPEPXPUR E̍MQPẼxt URPEEEEM(E ,U0M8E<U$M jEP;EPURt(PMQ<u/Dž Dž  E̍URPẼxt MQPE(U,9|;N9,sDžU‰ CS04=uC@j0 ;t h[tdUЃ8uM@j0_ ;t h `DžF;}$xPÃtۅuDžDž;9Džf~tf~ ftDŽxN(JQRjMD0ƒ y)8t h`_Dž;u1@EDEHEHEEH R;q@EDEHEEE jREP68EPURL}}t^tZf*2E H*0hhvSV<t7CPV;t#CPV;tC PV;e[^UWVS =`)uE `)jjsj`jsƃtu7h hhjP(8 8肞C@ ]S9 EPSjʞ=t h5=|)#SjVr|)V=|)ڻЃtfЃtت=)th hh h  Pjq)u 5|){|);}Ij)PC;}*ߍv=)uh hh h DžPPuȭyq89uU rruyLW6 L6豜C=t hޚjEPj"=t h讚Pu(jEPj誜FEF FU 2ϛFUU rrP?U FFjP藠`)\333`)EEEEEċEEjjF,P^HSEPS2u ~ u軣v FL^HSPFDFLxt SP Br4u  E u  Eh h puuFHP Ovt>t ~t v芛 V~t de[^_UWVS|E EE U$EUUzwHG,EDž|uh hOh h w ]Ș EPSj]=t hȗ|)<t2=th)P膖|)<u΃=t|) =t h街u EP` u EUGW E}u }u}tEG UHÆVwDG,PVR tCEEFURVPt(UP VPRtuVUu  uG jVLvuV8=t hC|)=t hljEPj腘=t )P豔G }u~=t h踕|)=t hjEPj=t )P&$}}=t h&|)=t hOjEPjh=t )P蔓G @EġDEȡHEEEؐ2  V5EPV,u tv9]uG PEP/ ufEJ EPRQuG G$uVUu  uG }tEEPV)-||tEJ EPRQ =t h荓|)=t h趓jEPjϕ=t )PG e[^_ÐUVSu] uh hh h- t uh hh h- S VB B$CB(Ce[^ÐUWVS,]uh hh h<  s~H ]SZ EPSj=t hV|)<t4=th)P|)<uuWU Ã=t h7jEPjP=t )P|؍e[^_ÍvUÍvUWVS<]} EEąuh hh hL vs ]S1 EPSj“=t h-|)<t3=th)P|)<u΃=t|) =t ht tFvFj}$\  uMċQFV F FV MĉQ vvuxVFMFAFAF,1M@F,F<MF<F8UMF8v=t h芏|)=t h賏jEPj̑=t )Pz=t h|)=t h7jEPjP=t )P|e[^_UWVS,Ep>uh hzh h vEp ]S: EPSjː=t h6|)<t5=th)P|)<uӃ~t>t 6BVLzt FHPR~t v踐 V謐u衐=t hԍjEPj=t )Pe[^_ÐUWVS,}uN ^ Mb)؍ȸEfESjEP)t u+F ێ8tF ʎF$zEEPEP6yu}uWu 6Wu 6ǃtu&F$6F RF$F e[^_UWVS0u }EEPEP7u0}u*]~_vSV7t()ƅ~@]~5SV7Pu迍G$G  )ƅ̋Ee[^_ÐUS0]S\ EPSj=t hX=d)u<d) h)\ l) p)D t)\ x)d =t hJjEPjcd)]ÐUU:wz~ z@B~ÍvUWx󫍍xE ppEBUEEEME`EjEPuE}UWx󫍍xE ppEBEDž|Džx`UEEEME`EjEPu袜}ÐUVSu] uhj@h` h uh[jAh` h vSV.(tghCPV9.tNCPV&t:C PV&t&h2 jjCPCPVL uЍe[^ÐUVS )=t h踈u=j@j^Ãu#=t hֈ){<uv @K DSHC SC'C ujjC(PV[ SV5C PV(4$EPC;}wu9sU:u_uumUtr^NVjfOËE u h #vdVjS9s#}tSuUE]F9suU:u E 0{U vUЍe[^_ÍvUWVS }] 9sSuUt ]F9rЍe[^_ÐU=)t )*EPj>u E) vÉUSU Mt`"t(#t9~؋$ÍvUUt j tÍvUWVS ut>uAD;= t$ 4VtC< u e[^_ÍvUWVSvEt))E=)uS=t hv=)uhh)u=t hvv 5)uE=)uS=t hiv=)uhh)u=t hvv 5)6uÃ}$Eh j)-vEp 8Ep 8u3 E00E}t )cvu5)HEp~?8u3 E0^0Ã}t)P5)uw u$E' u&u~?8tu M8u t9u v Q&e[^_ÍvUSj RvÃtx uCwV$| vu )C;v3#uh j"(S!w C ؉]ÍvUWVS ]fv{t 3 3F#E}2UBHwƃ{C$ MAtE@tUBwMA{ExUB]J Mο 8tu 8Ep XExP Uֿ 8tu 8Ep~?8Ee[^_ÐUS]t${t 3J 3f#$Fu]ÐUS]KRPjh2 jh2 jS H!؋]ÐU0EPu:t*EPEPt u#UVSu] DžttPxPV}ztC Džt tPpPhhVw xPyt(pupu ySpCЍe[^UWVS E0[E@ xt;U2 8uqM@ 8uR[D M H A EpU Bt& M 1kU B CFe[^_ÐU EPutuuuw‰ÍvUWVS]h!EEURD ;uyH ;Cun@ Ɖ8u}u} t%E } tUR@ M }t u#'E}c}t u#e[^_ÉU EPutu u<‰ÉU EPutu u‰ÉUSTUE t"vtBXjEPCPR1QfC† PPE5Xj.EPCPRPtbfC† PPEPh EP] PBPPh 3EP< x UЋ]ÐUWVS(}Eu |(ƃ >/t\j.V à @PEj.Vp à @Pӫ ] j nEt mtzc junǃL@@@ @؆fGGPVj WpE@x jnE}UB؆fBЃPVjz ununE|E@UPe jjwmEtQjjjPxE@ jgVÃSlQIAUUBEB VOnEe[^_UUt  tÍvUUt  tÍvUE HEPB:AuI<uEfB%f=ufA%f=tfB%f=ufA%f=u ABvÐUDžttPxPuCsx@yt t#vufzzÐUVSu] uhjMhhD GuhXjNhhD *vSVv thCPCPV0 e[^UVSu] uhj_hhT uhXj`hhT vjSV e[^ÐUVSu] uhjphhb ouhejqhhb RvSVtfC PV tM{ w@C $x sVS&CPVtCPVЍe[^ÍvUVSu] uhhhh uhphhh {SV thtt+=CPVgtACPVN CPV{ !vhhhh Ѝe[^ÐUVSu] uhhhh uh{hhh SVt7CPV t#{u jh C PCPVq ve[^UVSu] uhhhh (uhhhh CC>u]SVtLCPV/ t8CPVt$C PVtCPVe[^UVSu] uhhhh `w7$ 8 0 (  Cse[^ÐUVSu] uhhhh tt Cse[^ÐUVS]u uhh*hhuhh+hh_Ct t"2{u [Vs Vs  CF>w($CFCCF CFC Fe[^UScH 5UcÃti=t hdhhIct=t` hUuu Y0uvUEPuu uUVSu]=)u jZf Ph5)9t)uS5)>5)jjhF8 u  Ph!5)49=)t V) VRfU EPu uvUVSu] =)u je Ph5)8tuS5)v5)j 38=)t V) VeU E Pu#X0=ÍvU u uX0U EPu uÐUS] =)u jd Ph5)7t)uS5)菵5)jjh6 u- Ph!5)7]UE PuUS]=)u jPd Ph5)07tu S5)5)j 6]ÐUWVSjxVÃCuh ji C hC_ƃu CS seCщ $UCu SWVsGCC ؍e[^_ÐUVSut> tU~ uJ~uFuh j vÃttCtWv^t];tXj:SF$Ãt- jU‰@~uFFP^t;ue[^UVSut> tT^~t v~ t v U^t 3j؋[$Uu VUe[^ÐUWVS]} WS:ƃte9v,~\u&C9v~\tVFPPEWV5Fz\uBZSR(Ej\SҬƒuՉe[^_ÐUSlQ=u`=t hQ=uhhPÃ=t hQuX 5tPÃu? jSÃP5Stt S(TډЋ]ÍvUSj RÃth=)uhhK)tCC"  SSv]ÍvUWVS ]t\=)tS;uK{uCCt"N{tCxt @C3=u hQƃ5)hV>#t܃ j zQǃu VY jDaQEu V7EGG@7PViu V\RuQR<$IR+=u)==0 V'R%x@C@e[^_UWVS ut>t > tvFF =~ VQvtB{Cxt p1Q s#Q3Q$Qu VP5)\)e[^_ÉUWVS E*}[E8Ou 85j%jh`.5jjhZ. 5j'jhr.5jjhn^. 5j)jhG.5jjh3. 5j&jh .$ ,=t/tuC0Tto[u=tUhhKEu , h;NƃuB ug[n  sI uhVÃ8#t݅hPEt}эQE)9uZRuSuF jDtMEt@@uVu uNE@}u V]N uSZEe[^_US]t- 3,N{t sN S N]UWVS ] D EPhSt?U EPhjL?ÃZƿ 8u M Ay޿ 8u E @S޿ 8u U B.޿8M AEPhj>ÃE @;t>btb-t&vuU JM I QC;uƒEPhj>U B !EPhj=M AEPhj=U BEPhj=Ãƿy8uM AAyE xt pK jUJU BBޅtBj,VËM QA4A@APq(LU Bޅuȍe[^_ÉU-8*w,$` !); `ÐUPuhZ5)ÍvUWVShqIà  jDUIEu S}uE0St:UjSXMq SR:UB jSXMqS/:UBjS֡XMqS :UBB$HMAu 1IGE;ps5vjSqXUB4S9MQF;qr΋Ee[^_ÐUVS]gH0hj*j h.hh)PS  t.hhh)+ j hh.+ uPh.h)u hu( G0e[^ÐUSGht" unPu hu'G]ÍvUEÍvUEÍvUUqu ` pUWVS }}EG;l Su9u?A;Fu7yuy u yuytcA}8tFC;l}O뙐;l}?v S9uytA;GuEvC;l|ǍvEe[^_ÐUWVSu UfBOv hPVuu xeƍF;EwV VÃ4$;] u%;Eu uPtOyЍe[^_ÉUWVSu UfB;u wQE ;EwFUBuUBUfB9}vO~j hPVu u xƍF;E w V~Ã4$quuPSPW tOЍe[^_ÉUWVSu}EhuB !Dhu t+5jjh# 5u u4Džhu } ~ DžDžDžDž<DžBSy"tC 0h5 Dž;d} Dž; lJ 8t :xu Dž"xu Dž Džv =tbDž|PWVE PEPP > $Dž| C)! |thtKj"jjhh) u h)@Ph@5""dDžx=xA=t*Bt@9=x @jjPFy'RABA 0hv+A5Fy,@ @ 0hPE PEEEEE E jEP5PU 9t%x@h@ 0htfDžtff)fft'Pt5HÃ[?? 0h5m 6  Džx Vl9~3ht5jjhDžxf ff wh0P t tf)ft)Pt5GÃ$>> 0h2`xtfHf)fftGfw SP5F~f)fuff;hu  5jjh;+ 59~PVC}v=x=u@9tf=tJ@jjPBy&=q= 0hX i=lt= uK5By < 0hcv ju u5;E < 0hh5= tIƅyDž|fDžzjxP5jA G<ju u5dL ;E t< < 0ho5} `~ =l DžCjP@CC=?B~k@B=yjhvfDžfDžDžDžDžRjPjPWJ :8jPI?;u; ;}^++BBy B@B9 0hvu0ht5j jhDžy9DžPPjWV5@ *b9 0h5NDž Ihth5?Dž( ff;t,hu  5jjhiu? PXu)hu  K5jjhKiui7PVUE PRuNhu  5jjh2 59~PVJwBt tuaht35jjh 59~PVv ={h u>Bt2t5jjh^Dž`hu%!=!u5jjhhu  t2h5 59~PV vthtu iu!=tqDžpPWVu u w $Džp ;C)~ u>pt Y>; l;dY >u#u 5=5< {5Ѝe[^_U=x9 5= ÐUWVSu] }9mN=tv9tBu2;Xt f^P }}DžE u)~?E u PPW&t4Ѻ;Mu0J؆PhthSkmу;M4uPuFt t2FtuM _~uD~uS~ u9Ft@zu6z u0zu*9BtfF%f=t~uM }h}^E E D8hP2 Ѻ;MuPumdP7wÃtC8;Mv SQu3u$/aE uX8u# u uuVA …u,%uu2 tЍe[^_ÉUWVSu]hPu j< эy9SPV%ExtmuhPujxLD9w9T7PR;7%:D0vЍe[^_ÉUWVS ]} uKfS%f=t%f=tf=u+v&WQ!tэQ#shtVWix9rЍe[^_ÐUÉUS] EtzuQjjj4y1 P7 jjj4y P7t%jjS4xv P7=t h\4-uSuhhfh}hEPyà =t h\B-uE‰Ћ]ÐUWVS,] u}tt t~EPujuuZhEPuquetLut,t#E؉EEEfEfEWEPuSWVSu/Eԃuu|utltcWVjuÃ}u WP8t'0E03t SWSuDEԃ ue[^_ÐUE UttRuPuOÐUWVS,u] }Et t;tSVEP18u؃>tSVEP7u؃>uv~u ~u~ t]>u_~u9Ft(>uC~u=~u7~ t19F t El=t h\* uWSVhhoh}h EPQÃ0=t h\*uEԉe[^_Uu,UWVSEE}E8t8эQMYt-;t(8tэ E;u݃UMT}G E_ttEuEE‹MT R*ƃuE (vx}܋E8t">0WM܃U2FMYtPE;tDv8t2FU܋}G}3RNUװM܃;uFUFDE܋MAFA F }܉~YtJE|}E;t4FM܋U BU}w 3Q5EE܃;u΋FUe[^_ÍvU@UM؋E EEUHEEЉEEEEuQÍvUWVS E }8E} +EȉUuU EBDžEtE ptH C>t>9}vt6tC9|9uDG >u~DUB U ;B t@@ UBBUB B 8BDžvEtE pEtE @ ;B u.>v8Cn>ugb>t]vEǂ@f@fǂ 98C>u!DŽ8uau@u 5e[^_ÍvUVS]u tY{uO jr&u/@@@ @VSP7e[^UWVS<E}UBx}E]C0t|;M}Xɍ];Cu8E;X }v3":;u CE;X |U;Z tA;M|]ĈL+C]ċuF4u]ċExEC9E}MEvMA9}4uĊD.:D)~"4Uĉ4uĊT.ȊD)ȈD.ȈT)A9|EċE9E|E<[^_ÉUVSut?vP=Pt : tB:u#u@u :u :u@uĉt;u @[^ÉUhhx϶ƒu EÐUWVSEƒtp@lEl``uDž\pX  Pƃ PdtPDžh:utS٫h h\@h P1ÃuDXt'XXtMXtEPVEPVpruRXpUEPVu Džp4EPVj,u DžplUȋdEȍEE̋hDpEЃHEԍxE؍ExDž|lR lP\\`hP´ `.\UD@e[^_ÍvUWVSEƒtƒpd@lElÃDžh1 PƒduEPREPRdet}p9ɉ8 PƒEȉhUȍEE̿ TG RCƒuDdhFpV xFExDž|lVsh ShPϲ S,huD@e[^_ÐUVSEƒpuu%jSʦtVPED@e[^UVSEƒxu$jRS舦tVP}ED@e[^UWVS\uEU} } t&} }}Dž+ Dž,fFfFDž.^ ;mp N+PSVN H .\; }t}uDщU:ljUDž..}G.Dž . .G .DžDž; N+PSV.  C ; S $$;؉t}t }). hPSV8  P;:щщN+9^NPs E}  hPSV  R豰;щN+9}qP }9? t$  _\ N+PSV  RE}E0ݡuxU;z tu%E=Nrml.rYRSo;t $#u~;s DE8uK}щN+9NFu6 U:EE'EU }e[^_ÍvUWVS\EEEEE EhuuUE];t;.uEC;uE;]v{.uE hǃuE)} uÃuv hWvjS @ =wk~uEЃuEԃuEPvuRW t$uUR uPu@E6h+vE9EuvhWvjju @ =wh~uEЃuEԃu]SvuRW t!uS uPuwE6g}]EEE}u=hxI}?i2EEĤ=uhWvjU2u @ =wi~uEЃuEԃu]SvuRW t!uS uPusE6c}Y8=YUtt uEGuEEiuEEEă8t }}}u i@uhWvjju| @ =wh~uEЃuEԃu]SvuRW t!uS uPuCE6g}u- WX}t EUB}t-U1 W+E( WE}t Ue[^_ÉUWVSuEƒHt@t Ht@EE@E EE@EE@ǃQWSt e[^_ÍvUWVS|EDžDžDžDžfDžƒƒ@Euf%f=t  huyRv}EEЋUԃ huQ:-v\tX9}6v ȃUG.GUG.GFK;|̓0; cvff0G v8fэf(fҍf0GfЍf(ȃ0G.GFK;l2W hj jPNƃ y=vvEPj PVF t^ 0UЋEԍE؋DžEPIU'8 ډЍe[^_Uhu  x}t hÉU%hÐUWVSu] EP>x_Ut$z tB xu @9t uu jrSv uD 8ډЍe[^_ÐUWVSu} 5t=p5` H9sutWs t _HÅuك=`uHtp؍e[^_ÐUWVS ]ufhu uZhtSu uh. hWjjjSu uj4Ã0~!k@tuhWP Ã&ht hAuuSPÃy,ht h~Fu fFfutht"fFPFPh5Fw.$% vЍe[^_ÍvUWVS}EEEEEhu uvg ?tv8.uF@8u9v x.uu, Wt uuuu PdE9r3uuuu jW\ …DUEvu=hxiE=uuuu 3W I 8=tt#uEUBuEEiuE܃;t }{}u-u i@u uuuu jWQ …=}t E죠(}t}t Ѝe[^_ÐUWVS<u] huuht# uu؅uPVh@+ uHэybOx!<7.uWVPƄ/b]vщ߹ыL~0SVhPA uuuue[^_UWVS ui'  hfhPǃKjPPEC;v R~ D4%@tʀ;VP貏@Cv R%%@ #L4ȅuЀ;sF>t+v R D4%@tRhShN<$N4vWhP{ WvЍe[^_ÐUU hPRuUWVS u}}t}wy xv=t VE V~0tF@9F0t v0F0FF^ y v\}taEPEPV Ãu E }} u_ WBE uEE;}t} W E } u!؃fF FFCFF`ˀ;}t}uf^ E F~ttF؉F ~F|~=t VUEe[^_ÐUWVSlu$](huu;vht uuu uh~   FFuf@ffEV ˆVh ˆVf~ uE} }}}~u EPEPSWu ؗ \)ÃWEP膙WEPuUfB}}  EPEPSWue ǃWj WEPWjWjUfB E 9GWEP諘WEP蚘WjxWEP{}tuuW }UfB )Ѝe[^_ÉUWVS U} Eu}:)к ~mCSj)~SPڗCCSjėSj趗UfB @fB )Ѝe[^_ÐUWVSDžxDžtDžpDžl=`u `=du dhu hf=u ftq5frp`pl h hPh[t=tn=s>; t9; t; u tDžpC;t0=r€;t$; t; t; tC;t; t ; t; uhh|J;#8 t t t u C; t; t;V; MhShh@htDžpc8 t  t t u C; t; t;; hSh(j hVt=tU=s/; t; u t C;t&=rр;t; t; tC;t ; t; uDžp 8 t x t u C; t; t;X; Oހ;t>@v R%@ #L4ȅ?F>uǍ󫍵DžDžj5hzj W,6PVWS zzw"x`rrPx` 󫋕zw"xprrPF0pxǀpDDD x pv8g t Ql ; t; u C; t; t;h; _;;VC;tMPhSu5;;t0;x+v R D4%@t3PW虪,lVhMSCC;t5;;t0;x+v R- D4%@t3PWtlI l47l" l4llǀdAl_PWjAlǀTTT ThCC;t5;;t0;x+v R D4%@tʼn3&t/u. W{5ƒ#hWjtxC h#hyٿhh@v‹l@l˦8u+ t uh4P|hP肊x~ x ll Т |h=uAhS%u&j.SOt@Ph.put h% hthP he[^_UWVS ]htu Sh@讂;; t; u C; t; t޿8uX CP3ƒ Т h(PhL޿8u;huu uh h hq޿ 8u h ޿ 8u hm޿ 8u hH޿ 8u h@#޿)8u h@;t#; t; tC;t; t; u;De[^_ÉUEx%=uÉUSjEP.E3]1Á؋]ÐUEv ÍvUVS]s{t s Su׍e[^US];tEEj EPS 8u}tE8u ]ÉUWVS|uE}UȉUEEEEEEEE}u} ~~~~Ftt E}}tE}t?`=`x1U;u {t{tE;Cu E;C&;yԉE% =t= =t%= u}teEv}t }t}uF}u}uEu EPx Eu}}u`=`u};E;tCt ;vE;CtCt {E;CtCt {}uE}u {tCE}u {tCE}uEPu UREPu uEPE}}tUztE@Etxu퐃;}+Et E5}u E#Et EP- `=`u}E;E;CtCt{u{E;CtCtmt{uc}u {tCE}u {tCEEPu uURE}tExtURUtzu퐃;D}tE}u%}tEU0E E}t uEEe[^_UWVS ]}E=t h\WSkt$= h\Su h(hrh}h@EPr tt!Dtt]3TM]tjWSƃu/[u=t h\jUE0=t h\B}t ue[^_UWVS0]u EE}jjsy8t PVS  s tit ppPSGt(jVwÃuEU}t uډЍe[^_UWVSTu}EEUȉUWVDt vEÃW8EPu [ F;tEPSVUBjWEpÃ}UzE@ExuEPu 3OusF;tu`EPSVUBuUjWEp5Ãu;}t&UztE@EtxuEU}t u ڍvЍe[^_ÉUWVS}uVW wxtj%u CÃuvuVu W u 蹣E un+E UC]uVRWǃu;Et2v{u"sEPVutEF[uу uЍe[^_ÉUWVS ] uEtI QCu&QVsve[^_ÍvUWVS8uEh~ƒt^EPRjەuGE 8u?~u9U؉%=t!=tttE ]E M A PÃtvC CU rjPSM AACSCBC}uQ E؃qPRU B ruP؍e[^_ÉU ju uÍvUWVS u] VtV}$t  St- t{ S$ƒ w`І7V tH%~?PSaƒ t#R}uFtuFfPe[^_UUt"=tv9t 8uÐUVSu^uUjjj/y5 PK jjj y v P#t%jjSx P^Ѝe[^ÉUVS]uE ;twf%f=t %f=u S1u@;j EPS~É8u}tE8u9u ve[^UWVSE}PEEPt ERu}& EPTǃEMQtkEEB;us&XEȍv#9tF9rEljt}u ~ ;t}EERu}tuM9M}>uNx-D;D ~! \DT TL\ NyEE9E|‹UEM9M}MωBAME9|B W~e[^_ÐUWVS$]}EȉDžU ډ}t}}}fCxfCS fS +PSw  xt0}t}t }uAщEDžtDžpxx9 +PSv % (w  x|xuxx}t}t }| hWSu xL WTvt<щ+9~ pQ+PP}u'||tpE9|tT| |&Pu &$ j@&Puhj%譒 |t |Ght,hj%\#|u |uttu"񉍀}u󥃽|HE Pju|PEPBupt/~t#@txuvputxx~9s pttmt)}u# EPy u;vuu uuEe[^_ÐUWVSU2RU}}}ȹ]hǃt# hEu WvUBtYt ~tZuuEE}EEEuEEMMEOvuEEuEE}E WSuHvEPVy W#u uuuuW tCtt[t{u}t! uuuuuJ tC Wu}u#t#tUEve[^_U=`uhhxgn` 5`gÐU=`t 5``UWVS< u =`u<hhxm`u} vv5`h PZnǃ=?#tσhSWecthWMcÃtDžCt;t; t; uC?߃uhSbÃtCWu(ct 1륍}UȋFEEEEPRht7FCF C tSVG[uɋe[^_ÍvUWVS,U2Z}}Gtt tuSVuUE}ue[^_UWVSl] uE}UȉUj VA2t @EEhVXau}u@t<8t78 t&8 t!}uEhP at @t8uˍ}EEPEPju5u.utZvtuVSvt މE}t&EUBttE@EtxuuEe[^_ÍvUWVS\UERU}]ȃ=Ru hR:K=Rt 5RRExt xEPhR}IQuh5R. uL}uEEP5RtCttv[t {uvEPhR}IQuh5RT. u5u5RHtCtt[t {uv}uUEЍe[^_ÐUWVSEEhu t h-Eu} FwfGE_ GEGEhtSuuh7b hujjjSuujAÃ0~#k@tuhuPÃ5ht hQ uuuSuÃx;E~ FFFu fFfu:FEht6fFPFPhHavfFE_? uEuC}w.E$" e[^_ÍvUWVS}E @EEEEhuuO?tv8.uF@8u9v x.uu$ Wtu PL?vE9r'u jW=…%UEu=hxiE=txu 3WR8=tt#uEUBuEEiuE܃;t}t}u$u i@uu jWO…;}t E죠&}t}t Ѝe[^_ÐUWVS<u] huuht؅uPVhI^uJэywdt%O<7.uWVP͵Ƅ/jbщ߹ыLv/ SVhhP  ue[^_ÐU EUB E EjjEPujR HÐUWVS@}jjj)ƃtDjW]S Sh i V-t V$U V EP'x` C p6]ąt*{ tC xuWsMtɉuփ uSu CЍe[^_ÐUWVS}=lE p5`_ N6Wt^;t23Wt} t u v t ƅu=`u7 lpe[^_ÐUWVSEEEEfEEEEEEEvjjEPjjEP  uƃjjEPVjEP y+8 %C VtE9߀{C tevCtKfC fEES`U{`tC`MLMEEPUBMLM%fE]f} fEf9C tUU~f}MAMEEMEEPM!Щt)E8tEE}tMME}~EEEURwM"wtt;> t,> t'Ws3hVcKƃt Ft>uWe[^ÐU j ju薲UWVS u} Wjjhd!&u`#Ft Sj Ph!Wu؃Wj e[^_ÐUWVS< u }#E=tE@ h! lӽPSVu0td;8t#.0z Pht!WI-+Wj >u4t+t"V Ph!WܡuP P$ PPtPh!W苡 lhPjjPu y#0y Ph!W:$WPDWj Ce[^_U5uÉU u huUWVSLuhuIEPu u.y(d0"y Ph!V ]#h lE# U}MƉMMȉMMʉM=t ut R44h@%V =t tVj;=t RVjjh!謞E#` dtVjjh!脞E#p ttVjjh!\E#x |tVjjh!4E# tVjjh! E# tVjjh!E# tVjjh!輝E# tVjjh!蔝E# tVjjh"l=t txWSjo Ph"VLuSjR Ph"V/ uSj2 Ph"VuSj Ph"V =t  tVj Vjj]SVj jS Vj@jSVhjS u }u}u}uVj 藢e[^_UWVS(uE }hRVURP Qà x.uWj.<WP 3e[^_ÉUuhu usÐUWVS]uSuEEPu Pƃ x2щJt|.tB;E} f.Mȍe[^_US hPhu unà tuPB؋]ÍvUWVS ]} u{t)sW Du t {uׅte[^_ÍvUSEU ]xt;ut@/ xuRhzhW(tW]ÐUSEU ]xt;ut@/ xuRhzhWȟtW]ÐU juh+ÐU} u`juPÍvU juhÐUU$wr$w/w $$  w $$@vw/$txw $I<  tI w $%@t')@tRh%hX'XUS]j(h@XS%1yShth@X@X]ÉUWVSMf f׃ȉfӉ؃ dȺRQEUEPh%hhXhhXe[^_ÍvUWVSE LPC=wD1uӀ;.u^C=wt:3 C=wt t0C4;4rA~4 ~  ȋU[^_ÍvUWVS EEEE |PC=wD1@tCv R%@#L4ȅu=wuEDPЉEC=w D1@tCv RO%@#L4ȅu=wuKEDPЉEC=w D1uπ;.C=wt@EC=wtHM荄A EC=wtUTЉUvCv R%@@#L4Ⱦ@uŐCv Rצ%@#L4ȅuE2wg$U<M<U荼8M<U<+}E2w$ M E  U vCv R%@@#L4Ⱦ@uŐCv R迥%@#L4ȅuϋEe[^_UWVS4EEEEEEEEEыE\EPEPǃEPEPEE}u}u }M!v}u}u}M VE8-u E@EE8+u@E쿤U tABUE=wD1uˋE8.uu@E=wtNE U@E=wtEM܍L ЉM@EU܍}ǀ@vEEv R£%@ #L4ȅu9]rƾ@vEEv R~%@ #L4ȅt 9]rX9]O EPEՃ@EEv R%@ #L4ȅu9]rƾ@EEv Rܢ%@ #L4ȅt 9]r9] EPJE׃@EEv R{%@ #L4ȅu9]rƾ@EEv R:%@ #L4ȅt9]r9]s EPEփE UՈPM׈HUֈPEM AEAEAEAEAEA EA UQ A A AAЍe[^_ÉUWVSE  Ph(xSE4PE0PS DžSE4PE0Pu,E Pu u Dž!hPU )PR ~/E4PE0PjhqnqDž(y ;}gE4PE0PIQVE4PE0P)؃0~0P+Pq0;|$E4PE0Pjhn(Dž E4PE0Pu,E Pu uL Dž+u 9؅yCE ؅yC)tE S Ph!xP}E4PE0PxR xgC9"v((Ph(xSC}E4PE0PS DžDž9} DžxhcV|Ƌ+E ~ Dž;}$E Ph(V|ƃC;|܍E4PE0Px)PRDžME4PE0Pjhc6 E4PE0Pj0U)Ѝ@qP xh(V{ƻ;}SFE u3=v P豈 D4%t E .C;|E4PE0Px)PRM} 9E _E0+e[^_ÉUWVS ]} ހ;tNtWSlu )9v5H2;t'v;\u C;tv;.tC;uC;u)e[^_UWVS ]}]EEUuWjh@\;] s_3D;E wSCN~KPh(;tuWjh(x9uWjSx&CNuWjh@\bx+EEEUe[^_ÍvUWVSU}uEEEuPE0E PR(E W6_Ãt ?t<u%t x.tCU;wI.CuE8v0@@EUuVS3+UUEe[^_ÍvUWVS u} ];3vh(hh)h0(I 7)3e[^_ÉUWVS ] u};v譓#Su6 WVSe[^_ÐUWVS MU }uEE}uB9r4VWjh^rxE$NFe[^ÐUUt7BBB@BBBB$;uÉUWVS }u v>xuxtf j(DÃu h5FC {{CCCCC C$ S؍e[^_UU:t@<uPRÐUWVS}u FEPÃu h5_9}v:B9|DuSÃu hG6vC؍e[^_ÍvU uh!5<$jvUuJ\Uu uS^ÐUub]UÉU5hu5h*h6j&UUR UMQ Q Q ÉUM UfQÉUMU BBJÐUWVS }] EE7G";] t ;].C;EvUG PjtC;E\ EPgC;E\CfE ȉfЊCU(fҍfC fU(Š ;]s,ECN&7G;] u ;]s .C;]r^Z( C+E e[^_UWVS uU UUU UBUFASh²t}-<FESh菲,-u2tE9EUBUE+E =lthUUEU9UsTUBUF]+]Ku0E9Es(UtE9EsUBUE+E =~X(Ѝe[^_ÍvUWVS EE}uEEE9E 9F%t =t8vD;;Esk3;E scEDEGSVW7cރV;u s;}y +E@E؃? Ћu;ur;u sEE +E9E|W( FX}y+uuEe[^_ÉUWVSEƋ} UUEE}t/UUEt&UU:t EU:uUUETt3uىƍvtq}tkuuuV$ƒx#G;EGG}t*E9Es+E=?E8Eu>D;;Es5CPVWat3|;V;}v!}t U V(+E e[^_ÍvUShPuu u\à t$uuPH ؋]U hPu3t uuuu P‰ÐUVSu] 9s-@t%сt t)v9s@u9vT( @琉[^ÐUE":w$h6vÐUE!]UUBуwJ ÐUWVS EEU9EEU:}7G%t =tfxUBU9t-UBU PuG$g9uTNuՋE8u=?uE+E \U:u(2? Ћ} S(*v7GZEE9E0Se[^_UEM UttRQ"RQOS/ÉUWVS uEE}EFtovShT7Ϋƒt1B-T7=wM}u0EE}~ 3.u,}t&}t GEFu}~ UE e[^_ÍvUWVS:u F>:uEFSE_7h_7ϪuSEp7hp7質t +E E:uRuȃ}u}#UԉUsEԃM9UԈB BUEA.]ԃE9uu]EvF}t)EԃM9UԈB BUԃ}t/u+uл9M)ى)ڋ}Њ::C9~EEԺM9Mu+"E؋} E܉GEGEG vЍe[^_ÐUWVq7fjhqEPjA1qe^_ÐUEPutUÍvUWVS,]EOjEPS> O8"9]EЉt؋]t.u}EC?8v RhA vD4%@]}t}}t$}tJw`}wWElwG}w>}w5UE Bw}w}w }v1EU ЋU ƃ} tU e[^_USE< Sx( B+ ; };| ;B~A; |[ÐUVSu];s~s~Vu 3sY3)se[^ÍvU EPu uÐUWVSl ]u tSh7j#ك0nMu ,Dž jjhHjPc)ǃ  P0 ShH<Wh-PP Ph7W@-$ t# WG5+=(uZ(tW5(,$t7T Ph7W,=(tWjjh+hV@ jjhHjP4(à u WYt^v<%u@~muFS$>+-<%u~%uFSj%+Sj% SP+FuSj+$XƅuVW荩<$}X+$ tK+DžDžjPj[=quj$P5(jSV5 +jSV5 +ys$tjjjh7SǃxPj>VI@))ÉDžqDž jPWZ<$Rve[^_U= t 5 sR qÉUVSp= u?jjjO jjP#O= v=qEjEjhh7u]Se- jjV5 NquSjhh7S/- jjV5 NNqu 5 sQ e[^ÐUEUt(E $tu,$tqÍvU5 P (qÍvUU0t0ÐUWVS ]u EFt7эyCt:UuWVSuK؍e[^_ÐUWVSL]EMyپ ̐KȺEUEu؃}yK-uh7u + uSu ,e[^_USEU ]~;F|SRPY S4`ERk+9ރ"]ÐUS]~;F} `E!Gj$hqSq]ÐUWVSuSFǃt SVWRe[^_ÐUWVS}uFӁv Ra8%@v@#L4ȅuȀ-u E E+uFtu0u>xt>Xu ^u 0|?EEG"щEC< wC<w7 C<wHW9}>}xU9Uw 9Uu9~ EvEEljEEF뙃}yEkE"}u XE }t]} tE}tFU Ee[^_ÐSD$L$ T$@AJt}tm8ui@AJtnt^8uZ@AJt_tO8uK@AJtPt@8u<@AJtAt18u-@AJt2t"8u@AJt#t8u@AJtt8t )[1[US];H A~[UWVS r\I`I; (r}.\CELPpLA;M|߹;K}6\CE LPpLA;M|׃[^_ÍvUWVS#ut4Ft'>:u~/t>/tj.VItu8>:uF>/؅Džd8dd҉к=qdxW3h.nWF4VW<4j.V艛txtjVIjVJÃEPSExE%f=t SJ^hhPSJlj$J| Px`$d\ $PU  $=U B $)U B $U B d:2zzz~zrqz gz 2]`;BtJ\U ;Jt4+dhE p@@M Q `\9JE ;x}_ d+U DdG;z|ۿ;z}0dU :Ad:;BG;z|пM ;yU XƁL dXLddFBd~wFBd~x M ;A ~ RGE ;xxU ;z } R dM 9LdG9|E Ƅ8L;8}XU TցL dTLddFdGE ;8|U ;zM L`u B dB Adz GE ;x|;x}EM L\u BdBAdzGE ;x|Ѝe[^_ÉUMt<ƒ0 v1,t,-t'+t"Atƒ0 v,t -t+uߐUVS]ut= 0 w+vTP9C 0 v;U| E ؉[^US] hjEPutsU)9:uVAj;jEPQKt;E@9:u&AjƒtqB<.uej0 whmj >CPRƒt%8/uBCPR1ƒ C щȋ]UWVSMEE u)dE әuE әuEut\ ttgEP)}Uz;uǀQj]S)<IϻuF H9}6EE4J3@8)C9|ދEX ؉љZu~ M IM Q)ƍ)[\gfffEUUؙE)ЍȅyÉyFÍ6)CؙӅyMA)yu;^}(EEV <8Q;} CU;Z|)ljMAE[^_ÐUWVS}] E}}t*эq}vEL Wlj+uK8EPW ǃ#vSh8^Et?]} Wu+EE?t+?,t&?;t!EPWǃ E-E?,t ?;GEPWǃkG<,[EPWr>8CCE؉LǃPFTE؉`ǃdǃhSU}EEuEPuuuEPuu 9~ UE@:U@EU:}GUG}Eu'dEיuEיu8)EE}0?} L؉|AL؉xbDž|;{};PtG;{|Džx;{};PuG;{|;{}y; P;\u*tXu E+x E+|DLڃPtx|G;{|E؉LǃPǃTE؉`ǃdFh7vECCE؉LǃPǃTFC }t UDC { v BLVuWG}tuuWE8Ѝe[^_ÉUS ]Sh 8+tjSh 8]U=x5h rjt h r ÉU=t hTX2=t hT2ÐUWS h8>=Ãu Xv=~Ph9ItSh$;u< r$rlytyh 8hl$>h rSt,;:tjh rSt h rFe[_ÍvU=t hT1=t hT:1ÐUWVS }EE r=$rt;0r}-Pt@B;V| 3vPt#;V}E;D|B;V|LWV3EP)SW CL\G(e[^_ÍvUS] =t hT0Sju=t hT10؋]ÍvUVSu= hd/=hy2hhh.y hd/ hd/5hq.Ãu, j,1Ãt^S5hy1 hT/ SjV"$TJ/hjVe[^ÍvUVSu ]=t hX.=u h=t hX.ShVu5t C(IC(Le[^ÉUVSu= hl.=py.hhp@-y hl<.v hl'.5p,Ãu, j,~/Ãt9S5p/SjVhjVe[^US] Sju؋]U hu ufÍvUWVS}EJE׍L;L;LuzEu~ F;H~E}tP~LD@9Lu;H@9Pu*EJ~"D@9LuH@9Pt֋^J]U Qȉ֙EE )y M€QxQ~QEQЙ]C<ЙCUEљSyBCEmEәMM}yIME+E<<t AJt9u)։)uэD#;tvtAJC;u)0[^_UEfEfEEEEExEDžxDž|EEEEPu EP yUÐUVS] =t SjC8xu@MڋCHCy ;C| t RQ&vƃ=t Se[^UVSu] CCfS Ѓft{u!%fu SZuxC8xu@+S;S| S{uAKB;StfC ft u S?uvЍe[^ÐUE@(}@,~ÉUMU} ut @0 tAÉUME U}t*tvtt@ tÐU=PPP PPPıPȱP ɱP$ʱP(˱P,̱P0ͱP4αP8ϱP<бP@ѱPDұPHӱPLԱ@Pձ=t(P@ÐUShرjjhs5huà t u*ر8u p9ر 5؋]ÍvU=tرp9ÐU j juNuUShjjhg5XhTuà t  55w5 a 5$K$5(5(5,,50 0544588=<u $< 5<<=@u ,@ 5@@=Du (D 5DSD=Hu 0H 5H%H=Lu 4L 5LL=Pu 8P 5PP؋]ÐU=Tt9ÐUWVSu|8tu8u E &}t*uuuU v}щ|5pSh.nS@uS4h.nS&uSjSƃPV"x wRO| Pǃu$ fuP|9 PSV13 y u:S)U9|#M9|O V}t uYDžt9t}2߉э tE At9|֋tM9}tU @tM9|E 9 W Vve[^_UVSEu 9sj P5j@C9r؍e[^UVSu>>9;9-uy1uCAv=wtG0A=wvt ATBЈu9u :CA9e[^UWVS}uFӁv RE%@v@#L4ȅuȀ-u E E+uFtu0u>xt>Xu ^u 0|?EEG"}щEC< wC<w7 C<wHW9}>}xU9Uw 9Uu9~ EvEEljEEF뙃}y}E8"}u % }t]} tE}tFU Ee[^_ÐL$T$QtLBAtBBAt8BAt.BAt$BAtBAtBAuXW|$T$ W1OtLBAtBBAt8BAt.BAt$BAtBAtBAuX_ÐUS]4 Jx>+A 0v;};|;Yy uًAv@;|[UWVS\EuEu}EEE} EEEE EE9EE EEEԋ}Z}u+U B+EM}N~ΉCAN+};}vW+EPUUUM9MqE EEE} }E HEE} (u u}Љtqdht#hPdP tdh ddxuE tC<u V PƃxJ+B B-|F PZF tHFe B u rB RB2C / Ѝe[^_ÐU=\u=EE@EjjURh\jP t\ÐUWVS u=t F PvVl>Fv f4$=t ^ S$ V2<$ e[^_ÐUWVS<}wH} 9EEuEuE E EP~Eȃ}EEă uuu uPE EEȉEEE EȃU9kEĉẼEUȉU֋E9EE}+EEĉEЉEU9UtEEE+EEĉE;}J9EuWU,EEԉ}؋UЉUE*E_]v}ԋEE؋ỦUE}u8 E}tËEE؋U9U uuU;EEE]];]r)]+];]vSuU;Em]3vSuU;E]܋U9Uu_EV]e뜋EE9EvtE+EغuE]SuU;E]]؋EE9Ev5E9Ev+}]]SuU;E]]؋U9UwՋE܉E؋UU9}uU}t.UUE9r鐋mtqUBUFE9r퐊GFMtN}t);}rUUmtGF;}rUBUFMu;}sE9EDU9Us<}tUUE9sHvUBUFE9s0v;}s&}t;}svGF;}rE̋UEU9UuċEȉEĉuȋE EEU9E9EuE EPuu/UĉUȃ ue[^_UWVSEE}w+uuuuU EEE MuuQ])]]S]+EM TEEȉMuU2PVUE;urM<1;}s)U:PWU;Eu };}r׃FUM1+EE E}~E0FBIu+uu9뺉}U<2;}saW+]SU;Ett$ 6)CKC =?~tFC4~t F ~tFE~t-~t~t%vFCuSH!‰Ѝe[^_UWVS]E H{4@}P(ADDDHK C$jP AQS; uP~{0{(D6C,K@C<{@ P(;C~CPS} ‰Ѝe[^_ÐUWVSu4jV-t8tc 0t0 J4uЃ b Vt uJ8;}(v8t 8C;|ۃt X Vt8ve[^_ÍvUSU} t?vtLZ4t;jjS,u S*t vǃ0v]ÉUWVS]4aCj h: C@WS jjjV !Ѓt8hWVYt!=t!O,>8t$ jjsP8Sɾ uF~̸e[^_ÍvUSEX}tDǃ,uu jS]ÐUSUEXttǃ,uǃ,vuu @PSm]USEX}vǃ, ujǃ,vju jS]ÉUWVS,Ex URUM Mjj RQPUPu&E uurEEHUR MԃUػ9Hvuf~vJ)9Eu)EE܋My׋E9u܉8FExE؃Ufzu>juPu%EH1uԃMػEx Ufz uuSuuà u\MMEPuzfjuPu1%E\pEԃuػUz Ma;v;]} w1} r+uuuu~E` vUb+} t} r)} t} Mauvuf|^w juSuu oUDZMAuZMTY)ЉFqSuu裰uuuuu诶tCuf3Suulu,E`Ub MaЍe[^_ÉUWVS UEXt$ttǃ,$xuǃ$ǃ(ǃ  uc$;{(w7jjWS#ƒp pf>uGǃ(;{(vɉ$;{(~ǃ$G p(f|Fuuǃ $"f>f(f|Fw' juu RS  NBU NfvDNC )ЋM A DVAMVTV)ЉAf;>v&ǃ $ǃ(vlj(Ѝe[^_ÐUWVS uF(@F(E#F0EN};|c;~|0FPSPt~FjvȳtV F(@Pƒ;F ~F DDDDV E;F,v F,F0 EF,uuVA‰Ѝe[^_ÐUWVS}u uÃt/V7PDE) PjR7؍e[^_ÍvUS ]uu #C,;C(~#C0]ÍvUWVS]} js跲tjKP蘲EuE0 S>5049}&vKu B9|ݸe[^_US]M CCACAACACACACAC AC A C A CA CA CA C AC ACACACACACACACACACACACACACACACACAC#A C"A!C!A"C A#C'A$C&A%C%A&C$A'C+A(C*A)C)A*C(A+C/A,C.A-C-A.C,A/C3A0C2A1C1A2C0A3C7A4C6A5C5A6C4A7C;A8C:A9C9A:C8A;C?AA=C=A>CEA?A@EUBA@BAABABEAC]uvDDECDDCDECDFEDGfQfEFQEQB~L[^UWVSu,HH7Xt#X= TtT vDžT\uDž\hM`u Dž`MduW,dIDž\hMDžLDžH,dDžTDž`MDžXdtdD h$ÃǸǃdǃ\`ǃ j${ƉC Ǹ󫋅,9t ^FlFF hF F<F3F}tRE L t>t 4 uu ux#*E  jjEP3E EjhPzhb1u ] hDDBhBiBjDkl@@BlBmBn@op<C tf]ÐUWVS EX{tjs3C}tvEPu Sqƃta}uj63莡FvjPujjVS~ǃ !@tj63NCe[^_ÐUWVSlUE } u RӋEUBBCBCECCEUBCBCBCECCE܍U܊BCBC BC E܈C C E؍U؊BC BC BCE؈CfCfE֊E׈CEֈCfCfEԊEՈCEԈCCfEC f;u}ȉfDSfEҊEӈDSE҈DSDS E̊EψEΈAE͈AËAEȊGGAGAEȈAt:K;]r;Xt{} u}tR;]vMv;/u?EPu/E%f=@t4K;]w} t'hh uwU ,!}t'hu 8t%EPu=;t9u-Ph:St@8u0C̊Me[^_ÐUWVSjhPp jjh;ÃxjttPS$guHDždGD\0VڈWdW*hFЊD2DD1\2dd~e[^_U=u*vD@=~B hUWVS=uEEU U M܊\1F؈E}ME NъL2E܈L0\2G~[^_ÍvUWVS =u!E@؊4ȊU4ڊ ЊU4ڊ ЊU4ڊ Ѓ [^_ÐUM9s@9rÐUVSuM Itvۍ 1FIuغЃ[^ÉUSM] 9t"vAu9wij37覀ƃHf{jP7DEG,9tuM}tgEDF\0jV7 jS7ƃ@HfEȋUfPM}ujV7蚁 ju7ƃti,f[Kf]ȋUfP8U;jV75 jE07\U ЉЍe[^_ÉUWVS }EEPu WPÃu}P}u"j07贀}qE0CPVu Wp  tDFuVW9jV7;vESF9sSu WdiSF9uEfSBfCftISu Wcu5CPVu WtIf{uEfSBfCfuFu2VWTu;rvjV7WjV7C}AЍe[^_ÍvUWVS Vj3E0;}ƃf{DF0CtC PueRFu[>u#fFUffFF vVuVuQy MF0)RPPxEfFf\FVGftf9sMf HfuFf)fHtfJf9sMf fHufnjVE0}4vE,U9t{M 9u.jQE0w}MjVU2`}6u uuu uxt؍e[^_ÍvUWVS }UB( <u/B;u(B;EuuWu R*UDW8ފCt C PucCt$ PucCà G8)RPPvf_EftGWEHftf92sfHfuGf+EfHtfJf9sf fHufoUB( <uB;uB;EvfJЍe[^_ÐUWVS}u_cE  } u0tI0 EEtS0t,I0AoEEQ0t*I0 \EEH@tC0t%[0CEE t<0t!@0QEE90t!I0AEEy ƅ- y Dž-%ƅCu Džy Džt 'b0t"I0 QIEE HPE؉U܉M,P(P$PPEP#I 0t@0LEEHU؉M܃,P(P$PPQRz; $'u Dž$(tƅ-$uP :Nu"Dž >` Dž >ƅDž >` Dž > ,+ gtGu{$~Z9$Lƅt$)ى+$y&Džu tOP$HPP\! C $~$u t \$~{DžDž$:t=9~,)ytA8uËL $;  u(um5tE0tI0 EEQt@0tI0AEED@t@0t@0EEf t@0tI0AEE0t@0EEm  t>0tI0 EEtT0t(I0@EE=0t'I0 \EEH@tC0t%[0CEE t>0t!@0SEE;0t!I0AEEQ0t+[0 EEDžl;ƅ7xt 80tI0AEEDž ɣtzPm uX0t![0 CEE u Dž ɣx<j rt+ ; эY "t0@t>0tI0 EEtR0t(I0?EE<0t'I0 \EEH@tC0t%[0CEE t?0t!@0TEE0t$uH]U;U|EPEPRE9E~UUEU]^@vE;E|EPEPumU9U~EEEUBUBЃ C|BCBЃ v$}ME@teM M@MEte MpM gM[MOME9E;E|EPEPunU9U~EEEU`vMEt?E;E|EPEPu U9U~EEEUEEE tAE;E|EPEPuU9U~EEEUvEt?E;E|EPEPutU9U~EEEUfE;E|EPEPu5U9U~EEEU'EtAE;E|EPEPuU9U~EEEUvE;E|EPEPuU9U~EEEUEtAE;E|EPEPufU9U~EEEUXvEt?E;E|EPEPuU9U~EEEU Et?E;E|EPEPuU9U~EEEUE t?E;E|EPEPuU9U~EEEU ~Et?E;E|EPEPuDU9U~EEEU6E@t?E;E|EPEPuU9U~EEEUE t?E;E|EPEPuU9U~EEEUE;E|EPEPuuU9U~EEEUgE;E|EPEPu7U9U~EEEU)MEt?E;E|EPEPuU9U~EEEUE;E|EPEPuU9U~EEEUMEtAE;E|EPEPubU9U~EEEUTvEt?E;E|EPEPuU9U~EEEU Et?E;E|EPEPuU9U~EEEU E t;E;E|EPEPuU9U~EEEU }Et;E;E|EPEPuDU9U~EEEU9E;E|EPEPu U9U~EEEUBUf^}~ UR PnuUU;}}E<wm$d>EU E E PT?E0E E HPTLU EE E G;}~}tE9Et uue[^_UWVS E 8UEE@9E}Eu& u{tƃt'SPW/'uWWƃu~]͐;=v j6uÃyGE 0j6EPlÃyU 2Lv9=E؃SPu~>uE UԍD]])oE 0Eԍe[^_ÐUS$]U u]EP5SRP,}u=rVE)؋]ÐUWVS<}]E fEE 8uSEPEPEPu uSEPEPEPu u ƸEfVf)fVfTF0U yGEC0UBGECr2S=UZ w7S=] ;E y'uuSPl)jVU2Buuu u4EEċUUj3E0@ƃfC@fEUB tCw tiR]C؉E̋8 vUBЉEȋ8 ]tp@uf~uf}vY]CD؍M؋Q E؍UЋ]ȋB؃ EЃRQUE 9sEvFV)ЍW9sVu >uWEPEPEPVu-vWEPEPEPVu{ EuDFf9Es"U)PVBPR;fFE]C t]w tJUfFf)fFfDVEDF0WuS;UfFf)fFfDVEDF0EuUȋUUȊBCEuPEȃ PS:]ȊCs u f}tEDF0EPT u UċCUfFf)fFfDVEDF0u UCvf}tEDF0vEPTUBCUfFf)fFfDVEDF0UBCw}] ;u;E yuuSPEvuuu ujuċU2> ju]3s>E,U9tju]3-> ju3>XjuċE0> juU2=ju]3= ju3=s|e[^_ÍvUWVSEPu8ÃdM fCUffCu FCCF C ~u7EF9u$NfCUfE0U ukƃujSE0<\U FBFfFUffFU B F ztDjrE0:ǃu VkhGjWU2{<uuSVu uǃEVu 69u} Vtku U2Ee[^_ÐUWVS}EPW*7ƃtEPW7ÃufEEFCCFfCfFffCfFU B C F uuSVRWU2Ue[^_ÉUWVS u }UffFfF0G t G WCCfFfFfF0E@ t @ uUCfFF F jVE0:e[^_ÐUWVS } Uf fGfG8ECG t~UBƋ fGf)fGfG8C6F PS4Ftcv utoFEP‹ fGf)fGfG8QRS[4UCMrfGG G jWE09Ѝe[^_ÍvUWVSw tUvtRtfCEދU DBƋ vEދM DAƋ^ FE8EދU DBƻEދM DAƋEf9}wEƍDU9s UEH9uOhvf9}t.fE׋MfAf)fAfDQSVAP2fEƍDfEƋUf9r}t}tEGMf9MUfBDxfBUBtF(tSEPV&SWEPVciÃu\]CPE0V jPuPWSVà !@tju64EF؍e[^_ÐUWVS u} UE $?:tzu bkEPWRV_jS62ƒt>@t;B uB\jR6+4뺉fGjR64ojS62ƒt@tB u%BD\jR63믉BHfGve[^_ÍvUWVS,u}^CtEPu FPV;+j36v1 t tvCupf[Cf]A9YjQ62jS61fEzCtcE fCU fBdf[f]fuGYjQ6o2t@jS60t%AHfEfMȋE UfPe[^_ÍvUWVSuVu uÃ>E  e3{Ev;tjVU213{f{f{uMy;tjQE0v1jUrM1/Eu(;ujVE0;1UBfCfKSu u4M;tjQE00U2zsS A9uQMqjQM10tAjVE0.E}t fCUvSMQe[^_ÉUS]{t su_C CC(U SUfSC(]ÐUWVS E,UvjSM1.ǃSExfEGft]UU쐉ffuƋMfq uu QwuG EU~FfuKfuG U  u^f}u$tuu WREMQUG9u"tuu Wu~MQufEfMUfJ EPJfuftNMfpDG\8jW1{.Ѝe[^_ÐUVS]u jv3,Et[Ef@PuS!u*jV3.EUCS Eju3-Ѝe[^ÍvUVS]u jv3+EtgUE@HfBRuSu+jV3z-EUCS Eju3M-Ѝe[^ÐUWVS|EU EUUExy`UB%=u8E'}uBuju h@?:ju hI?*EE@u!Uju h$c EPEPuu8EEt/EUE؉U܍U؋B% ?BEcE}2 ~@)EOE  )EкRP,$d$]؁m3EP?E X?`?h?W $d$}fEδ fEmUmEuEE@tME}w#U@EEuJUEux Eu މuE}xEUUUM)MىME} !E}~ mE}wiE$(?EEECE}E}}}$EUM|}GE W+"|E}EU؋]M~S؃@tɃ5@]مt`@tB GuE:؋E؉Et5E @Uut`@tB Gu]؃}t9EEu%}~#}EEM 0]BR$d$Mp?]Ёm@}uBEEx?mUEE=E`}8U4@e]п0}fEδ fE̍vEmUm΋UR$$d$]B0UBUEEEEG;}]]EЋU @]п}fEδ fEEmUm΋UR$$d$UE@u}B0UBU;}u>8EEEWeEu/MU:0tlG0M]v؋|EE؋U܉EU]Mv}R}HU@}y<}6EE}] x?EXB}fEδ fẺEm]m΋UR $d$]B0MAMEـE@];}UEt.E@8, MU:9uv|9MtME89tUBUE|0G0M]EĉEuEE}t1}t }3 6+}}} j+E}~}~};}~})})})}}~Y}t?~.Vu,EuP+Ãu)]U)tRuu,E j=+E}~uP},E}~}t"}uEut EE}t MAtx*})}Gt )ǃ~ }}}}~uu-E}~uu,E}tOuu-y:Mjj u(E}tjj u(EEE}^}t}uR}x)jjuy(EPuR-؋U҉U ؋M1AME }-}~uu,EEEtV pV&EUB} փ ЃtfЃtju+Euu0Euur,ƃuu,Ãx uPuK,E vE S`&}u#}tEu}9~nEixup}tjEuaUzuz~B}~<ju*EuP+E uEt E}:tMEqv}~&}9uU9BUE@M4vEUBU;}jj uT&EM9Mujj Q9&EE%jj u!&E jj u&EGWvu]Eu0EExu x;}}jj u%EG뱃ju)EuP}* uIEt@MU:9u|9MtME89tUBU!E|1AMME80t@E u?$}t:}tU9Ut u$ u$؃ u#ME@U} tE |e[^_ÐUVS$uEHPEUMEUEÁ>@EEEEuuuowC$?E;vE/vE#vEvE vXvuVuu EPEPSh0 >ue[^ÐVWt$ |$L$)9rу_^ʃON_^ÐUUuu PeKv36pM/F3C P6G vGC }CtA EPuEP Pu UU} u E!@tzC@U;Bv<:u PJC@PE0LtUUC@Bs PE0CUBUUCUB Ѝe[^_ÍvUS]EfxuzuB u uv@DBŠBtJ B EEt1 PPEPQS uEEPu ‰Ћ]ÍvUWVSu} O;NvNItv:t)‰BCIuF+G[^_ÐUWVS}E P;WvWE Jtv:tCAFJuGU ;Bs@[^_ÐUWVS} ]ujWEP> jGPEP,UE;Es2;u RpH u3+u{EEU;vjuE0^ƃtŋ];]v]SFPW jVU2E)؉Et ߋFE룸e[^_ÉUWVSE UMEUxEPuÃECCC fCfCu9vVuCP}tMAjQE0 U)tMM]_jSE0e[^_ÍvUVSu] jSEP^ jSEPL ju6ƒt^B tjR6DBERVL9]v"ju6ƒt )]Ƹe[^ÐUWVS ]u 9} v@9| PǍF w9v)J<u!uGE-J<tBG t:)à Ee[^_ÍvUWVS|] EEЃϋMǃ$?E ju$h@?U ju$hI?uEPM MQuE]ĉ$6EtPuPE])EExu, PXU ju$hYEPu!]EHEUB% ?BP?E X?`?h?Muyށ5~@V $d$}fEִ fEmUmEuEE@tMEEHE}w#U@EEuJUEE+uNx Eu މuE}xEUUUM)MىME} !E}~ mE}E$?EE@Mm]m֋EЃEEJE}EUUUU(EUMDEEHE}E uj x|UJ IMtyEt +EE}}}EEEE}t= @Ut#`@tB @u]E؃}t9EEu%}~#}$MMM 0]BR$d$Mp?]؁m@}uFEEx?mUEEE} 8U4@e]E0}fEִ fEEm]m֋UR $d$]B0|A|EEEeEEIEU9U]E]E؋M @]E}fEִ fEEm]m֋UЅtR $d$]؍B0|B|M9Mul 8EEEeEua||:0tB|EE@@ vE0M]<؋x|]EMM}E@}y>}8EE} x?EvE}fEִ fEEm]m֋UR $d$]B0|A|EE@;M9M}t#E}KEx0tEUEt(E@uktc E ||:9ux9|t||89tዕ|B|EtE0M]M̉M}EE}tp}$E+E)@EE;P};؋U+B@E-uN9|) )uuȿMMy )MEEEE jIE}~}~EU9~ЉE)E)E)E}~Y}t?~.Wu[EuPÃu]u)tVuuE jE}~uPE}}uMA@9E~ EE}t UBtM)E@Et +EE}~m }EEEEE}~uuE}~uuoE}tNuuAy9Mjj u@E}tjj u%EEE}o}~i}x)jjuEPu؋U҉UEE |1A|Ec}5}~uuEEEtV pEUB} փ ЃtfЃtju"EEuu0Euuƃuu&Ãx uPu SuW}uQMuI}uC}9}ExxtE EE U|vx(}E}Uz zE}ZM|@|jj uU9UuEEjj uEuPEE0uuEE }:u\q~@jutEuPQ uEt E}:t4E MyytEE2~@}t:}9u|9A|=E E@|B|M|@|U9Ujj uEM9Mujj QEE$jj uE jj usEEMEu||u*0EE9E}jj u EE빃}t}Uz6z.juEuP u_EtVE ||99ux9|t||:9tው|WSø )؋U  A )؉E܉M ?E;uvFSU؉M )\;uv EE tH )ڋ} ?E;uv~E )ڈ ЉE ?E}}Ee[^_ÐUWVS(EU EUjƍxUB%EB%BtMEEtK EPwƒt )E EmEEG@F& EP,‹EF tM5)ЋU(U t{)ËMe[^_ÍvUMU Bt ABuÐUWVS,u}EEЍEЋ] މX]EE=t Wx G8xu@EPW8t+uu ƃ=t W e[^_ÐUWVSE x"MfQ Ѓftyu'%fu upu E{UfB ftYu M{tvPuuCƃE)NjU B)Bn먋MfA EEfGvu3u{tUfB %Bf=BuK9zsFJ)ȉEBErPQUBEMqfA %ft*9s~VuE0*U)r2yM;Av+9v'VuP)E0$FnDUr9rVuRƃHWuM1)E)x8u)U B)B uE M{t}u+Wj u1t +E@EwuEU9vMAq;Av'9~#VuP(E0$Su@Mq9|VuQƃ~]փRuE0(U)r2)uu uu&Eu)M A)A ufN @Ѝe[^_ÐUVSuu VÃut Vv؍e[^ÐW|$D$ L$uG_Ð1_ÐUS]=tuLfS ЃfuXЃffC ft4{0tC@9C0t s0.C0fc CCfK {u SGfC ftCC؉CvfC fuSSЋ]ÐUVS]fC fu-EPEPStƃuGufK vCCCC?v|~΀CEC}t CP tf s e[^ÐUWVSl]u }f{xEPCPy vE%f= }u *EȉCLE%f=u{(u e[^_ÐUWVS][P)E}tPUC‹MYQKx) ׹B8xǹXKy׋Ee[^_UVS=tu=t h_)t^FHxf{ tjXHy6u=t h) j ƃ=t h(05^fC =t h(CCCCCfCC0C4CDCHC8@؍e[^ÉUS\)+~m=t+C~[;u~R P Ãt@=t h'=t h']ÍvUh ÉU=t h'=tu6vAؽA~|~t=t h@'ÐUVS]u h V=t S^fC ur  Skƃ=t Se[^UEu h (f@ u  PÉUWVS }W tZwtN)7uG fO @(G~SVW1~)ƅe[^_ÐUVSu=t V2 VZÃ=t V؍e[^ÐUVS];ƋC89pu@ " C8PC8pC8@ e[^ÍvUuUWVS ]ƿC89pu@ 0v C8PuC8pC8@ e[^_ÐUS]S89Bu1z ~J &C8@ C8@ C8Po]ÐUWVS]} E9}}3+uvECMDC ‹EfC@E9|ڋUSMfS[^_ÉUWVSEE]u UM u1 EE}Mq9w#r9s}tEpE؉EEȉEEE]ufEEfEڋEfE܋EfEދ]f]UMEfEʋEfE̋EfE΋EfEEf}M}UrMAfxA ‰кA ‰кA ‰к}t E@x ‰U ‰UEUfzT+EEMfyuME]f{t]ӃxEfXKy+EUBUEMqw Ev}~/uEEPua uEHPEPJE]f[f]Ef@fEU]f SfDSftSf;Mu 0 ]ȺӉMȉ 9v&OEÁwElj 9wܾ]~>E EHEXt))֋Uf4J)K‹]UZ)fZtLO]~5MUBpU Zp֋Mf4AK͋]Ef4XUMf$A% -HHPP``dzdnXbXVTJT>\2\&5HH hC5HCt ;GP u: t U u H=dt&EEEj EP=\t `=`t PjjjhjhjB, u hB j $0=u % jle[^_ÍvUWVS Eu 4t<9qr/9quy9tABQMy7A)q u u VnǃtU +$,9s,A9r=`t PhW+}t!=lu El u,e[^_ÍvUWVS EwEHt Eu,U<u R&,] 9r7;,r"w S Sƃ=\ttSjV e[^ÐUWVS }=Lt +$ w hCv;(v h Dv,4>u_t hB>u>t=P9] 9E >v{@Ht hBn%EC mUM#Dt hC2X=Pu-9] s(9E wu] h)CG u ƃt1} tt;] sSu WV6  WЍe[^_ÍvUMtw=u h`D4=Lu[ +$ w hC;(v h D#),w PRQX PRQ#ÉUVS]=t hp@C = tG hNC =t h_Xv=u=Xt t Sƃ=dtE]uj EP1 =t h=Ttu" hu  e[^ÍvUS]=t hlp^C = t< hNCo =t h$X`t S=dt"]EEj EP  =t h ]ÍvUWVS,]} E=t h pjC = tD hNC =t h8 Xt=u# h`D2=uH!Ã=Xtu( S{u Sg+u W# WSƃEԃ=dt]؉}܉uj EP  =t hC =Tt}t! h}t e[^_ÉUWVShyE}OMEU]9~+ u(Ãu u@MfC}f{ MfC fC}{vD )Ѓw9}vу |B9|;[uM}~BM}fs у!LNfKE)EB}fs E +$,,U,e[^_ÐUWVS M EEu hyC'vt h)CEt hBv_z,,ƒ|u C ,<t =`tVhu[=tjVu }=lu j"llUPlx lp=4u*ll@4l4}4E9C s;tU9S s;u9{v'lSlPlClBxE9C uA0C KK;;BuwUB C ȋUBCtdXV9{u sECD;u,llXlll hCVv;C;v|C ;huq jg9hu\SS C RC hC + $A(˃9w,C;(vv}t uge[^_UWVS }uN FHt hB!ك#Dt hC=`tFPhWك DfF V ,f~ u9:t,8t#@;Fsʃ9t 9t @;Fr萋2PfF f;FuF92t92uF +$,^9t V9 S-e[^_UWVS EE=uw+Ej];t;=tvC;t;=u+]]=t8v]ut9tCA8uNt 9uuA<=tu˸ [^_ÉUWVS}=uw+E h];t;=t C;t;=u+]]=t8v]ut9tCA8uNt 9uuA<=tu˸[^_ÐUVS =|t| u؍]SNjS jSjj$EE$  jVj~jS jSjzj$$eWS|$ D$L$W~$ĉ Љڃ)ӉكX[_VW|$ t$L$)9rу_^ʃON_^ÐD$9v D$̀rD$Uu ujuuuu ujhÐU uuu jujhÐUS]U BvJ ]ÐUS]U BvzJ!]ÐUU@~UU@~USU Bv JU#]ÐU yÐv̀rÐvT̀rÐUVS5dtv^Kx TKy6u=|t| uL$tD$̀r  PYUWS E]؅t+8t&E؉IMEE] 5EIKC U؉)@PRje[_ÍvUU Ex;} "EÐUÍvUhOÐUhOÐUOÉUE t uЃÉUhOÐUhOxÐUhO`ÐUhOHÐUÐUÉUÍvUÍvUÐGvk̀rÐ3vj̀rÐvÒrÐ vF̀rÐv̀rÐv̀rÐv̀rÐv̀rÐv̀rÐv̀rÐvỳrÐkvx̀rÐWvỲrÐCvK̀rÐ/v+̀rÐv̀rÐv̀rÐv̀rÐUWVS ]SCv:tuv9rC;C|N C@PZEC} s ЃtfЃt$]CD@C؍e[^_UEP@:t v9rUVSu U 9su$9rt [^ÍvUVSEu ^9X} P$QtCXP 9s9rt )je[^ÉUWVS] EEEPEPu u#ƋE8)}EEE} }ugG5u}8Uz tJ*vt=t1]Kx2u} FكDtEEE}uVEtEuV豹}trE V`ƃtM)ى˃ Ft9t9}u FEjVUE}yEPVGƃUM;QA)ӉE9ytEFE$PSU܅~}u RVE}u }UM܃#DE ESV蠸M$}t VME`C}t=EP4EU;B~)B@EM$"EFUEVWuUE$ E V,E؍e[^_ÐUEU EUEEt EPP5E E EP1)‰ÉUWVSEEDž|DžpEEEEEEUUE-w1$\PDžpEE8uDžpEŐE80ul@Xtxu@ pEPuuEPE܃ EEDžpDž|EE80t8URlMhDžPE/~D9?vPDCЉPtCGEE/~9~ĉ}(9EE}u:0uEEE0tCσMhEEECЃ E0tkUU9}.GPP 4A;M|ӉGPCP 4CEEECЃ xEet E u!}u|uEEEUUE@E+t -uEEECЃ 0uEE0tCσw0TM4@E/~-9(TDCЉTBE/~9~؋E+4TE=N~EN}t]EUU}|Nt`N Itit ntGh6EPt~MhC?EPuEEph;EPtM@A2% ?AE]؍MQ%0?QE`@t EM ]E݅ۉكt E4@]~=M@A2% ?AE]؍MQ%0?QE~"@EtU E]EPEPuu'EuԋE+EE~Pu]MM؋EEԃEEԉu+uU;r~-E@Eܣ"MA@U EԋMU)щtMIM9E)ȉE~PuӻEEE}UU؃}}}(E@E@MEEPm EE@@OE@E@EUMDEE!E EPu UtUԃlt F9OPWuhDDq#HDBH փ ЃtfЃtEpԴLEPL p ЃtfЃtE+EE]]$蕷@}x}}UډEx)߉uM+MAME +M;M}+EEu}9~;M~M~)))M~=R@W@LPÃL肴L+u~VLGLvyPL}~uHַH~WHH}~u@θ@EE HL<x x;urMAU +BM M9s?E‹M<%ƒE%EfVf>;urÃ}tvUB;BuY B@P譩E MA} ΃ ЃtfЃtu*E EUBD@BEe[^_UWS]PS uSh@Qj^;vBщjuuu RSe[_ÐUWVS$] j(jLƃuhQj5vhtjuhQv@@$ǀhǀlǀp@(@,h3sP$ڳ׈уHAQj]U׈эAB Qj-A9t8t4}tqUQjB$uhQUуQRp$B+}t}pA @B@PR1`G @ PuwGEG}u( FP y#hRj蹃PMQFVF tF ~$jVtLJpt V_8t 0:zt r y$t q$ht hlt l e[^_ÐUÍvUWVSD}u _$C4ECLEjCXP;CXC(CXC\C,C\=?B~v-@BCX=?BC\CXE؋C\E܃{4uFCECHEE@E PjjEPGPU jjEPGP~h`Rj謁`E؋U܉CLSP{4uECDECT C0CHCT{4u[FjVPƒt؆BGẼVEPVR]ȃFURVPvuV FjVPƒt؆B=G EăVEPVRt4]FURVPtuVЉЍe[^_UWVS,uE ^$x @UЃMЋQ@EjjQFP~ hRj>EІ@E؋EԆE܍sX}ع8thRjEC0C4ve[^_UWVS }_$s4{tD hPlPs$pC(P uCh Sj GWC`SdUChBщMC`PRsjyh`Sj~C`SdFV Fe[^_UVSu^$ 3s{$t s$xht h^lt lD S84$0e[^ÐU=t h=tu2t`xh|X=t htÐUS]ujjSjPS]ÍvUWVS ]u EPuU]߲֋=эL w Su 5hSuЍe[^_ÐUWVS<uu% P:} uhSF] ҋ} щ=ȋ)L w Vu 5hSuЍe[^_ÐUS] tZhPuPt<j:hP"tj0hPS覭C0Ћ]ÐUWVSDhhS[ jhP\t8#tԀ8+ PT"uDžPPUIQRhS ku 躹hP`uPhShS9hSV*Ãt 8tu$PhShT5@uSu e[^_ÐUUE =tPR PRjUS@U ]UEE؊CEيCEڊCEۊCE܊CE݊CEފCEߍEPuuRu_U؈UوSUڈSUۈSU܈SU݈SUވSU߈S]ÍvUDE EEURuuPuUWVS M} u]Uu vq؃BABABABABABABAB=tRVW RVWt ЉЍe[^_ÐUVSu] SVfttt tGbhCPVhtGjCPVft,jCjCPVfЍe[^ÉUVSu] jSVUftjCPV:fЉЍe[^ÐUÐUVS0u U؍EPEPEPEPEPRh"Tuƒ ~I^D؍ B~^EE֍U֊EBFjFPR9we[^ÐUWVS };u }4 v4wtkt_F;u |΍e[^_ÉUWVS<E} u+vu$ u e)@Bƒ8;} 0+sPh:ThP%$|U$ s|UD$ `|UDFGP<t;}|Bƒ8;} 0rPh:ThP${U$ {UD$~?{UDFGP<t;}|E UzEBB BBUЍe[^_ÐUWVS,E UDžDžDžDžDžDžDžMAM93tu6 j PPRu^ Džp@9}gt uYh~?[tIu߃h [tIuC;}ttv~&RDž%~ DžU:tvM $P PPPhCTr$ hPThS&DžDžDžDžPSu-jjPjhPHƃ u/vtPDžDž Dž@ Rh3 jh2 jV uDžt FVP$P PPPhCT$ hbT]S迣WSjjDžDžjWjjP ( Hu ( Pjj(PW$Oà y 8t2DžPPjjP zhj&$ jPw=jPuyDž hDžtU| DžjPyt t FVP jtjtrE8u OuU= ~@;v+ +‹;sڋMAtP!ȍe[^_ÐU=u4=v ÐU,UEEEEEEPRjx }tEUUWS= uphP(x]װI~= ׉Q萺 t P5 迫v Ѝe[_ÉUS]Ut]ÐUWVS}j j蘎ƃtaEPWF?u uu@ uuu @FDFj`j7Ãu hU@$pP@T@X@CDDCHHCL S fC;DžT TPXPWny h@U]XC0C,Pj蔍C4u hU0XXPRs4rC8$( vat VЍe[^_ÐUWVS}uh!UhhUhsT'.uu WmƃPDžddPhPWfy hUhF0F,hPj职F4tthhPSv4iDžd dPSWy h VhF6F j |F >K~A9t ~+V GB^ w|CF xwwp=t h|=F5{t ߋ[{u 3B}s7}C p)}s }{t s }tGF5 5F S|=t h{e[^_UWVSDž E=t hz}tE 0uǃ_ jjjhSu jR t8}t w,4U=H hz3CẼ szEЃu Essu=t h~z}tO=t hz EP4=t h7z uM{EPu _u}EEEEEEE x t]p  8uD/  jh}yU jhhr^P]v$PEPhut $]؍vGEGE؉E܃jjjhSu jH tC}tSu %SEPE 0uw}tU vu$t $蒄 e[^_ÐUWVShfhjjj}dƅir^jfjIAhEEj]jjjPPjhEPdà t@jjSP d-=t hu= aDž\$Xh jp) `X ޿ 8t޿ 8un`Bw] R xM P``\p 8u^v^ X.$`9\u+'=t htU \2& X^%=t hytj5 5de[^_UWVS\]}EuRus@vƸWSEԃu FVP1hEEȋE E̋E|Phzj ]S]؋V5 5EPhT7 EPh jV$FVPu'vEe[^_UVSP]EYƸttEE؋E E܅t E vEp^Ep^|Phzj ]S\]V5 5EPhT7 EPh jV$FVPEe[^ÍvUWVS u ]tWsv>zu;s v )zu&F;Cu;t8tPVhǃ[ue[^_ÍvUWVS +vdx tp  8t S7!dud S"xf jjjxttx}ƅyjhhr^xzSWIAx PVtxy tR{ t={e[^_UWVSDžpDžtDžlDžh}ttE}uEEp 8ifEEUr 8uL h~?S"Ãu $EPSuLp$$EPuu*pppBh$jRP pPEPj pRUUE EUr 8HEEpPEp0EPh5 EPhp jp t@ Gf}uDžlQfEfEpPEPjpR$ yplt uaplBuY pX PpSl lCqDžluulrq{lBfUfPElB=,tkEp  8uNu:\ Q @EPSup,UUȋE EEp^UEЋBDžxpug h ƃt?vEp s uc VÃu҃ V}p~.vDž|pP|Pj pR}uEp^pBh$jRPpPEp0xPhh EPh j p0ujuxlt3xPhh  pB]SjRPSxPhh e L@Džhv:qa-OpZpt4UBw pBRPDžppu#EPuup}uEp^pBh$jRPh|0upP|Pj pRpPEp0tPh: EPh jpÃ0tt t8u(tultPh: l|pBVjRPVlLv u'pPEPpR}wh v/||lt lzu2VpX<PpSpt pBRPDžpExt&pt pBRPDžp}t pEpt pBRP}t}p^t ukle[^_ÐUVSujjuuu uà t]C;v' sk$k+1ssvuCFsbk$Zke[^ÉUVSEEjuu yƃP5 5EPh jh2 jV w]VEPj VR}uDEVEPj VRV5 5EPh jh2 jV0t&^ PVS FVPEe[^UWVSPu,}0Ejuu }ÃuAEE4@3E vi4$iU4BChh^jSPEEȋEE̋EEЋE E؋EEEE(EE$EE}SEPj SRSWVEPhH EPh jSE0ub}4t\uuƃ@U4;Pvr`sFU4Bvh4$hvEw M}P CSP}tEPh: Ee[^_ÉUWVS ]t;u u +K9 hƃu uA V'u8u&jPSLǃtÍv VoG5 5u h2 jh2 jWÍ@ w[WEPj WR}uBEGURj WPG5 5u h2 jh2 jWÃ0v GWPve[^_UVSu E}uvuB;øt0C5 5URh: Vh jSCSPEe[^ÐUVS}u ,D} u1øtoj j9ƃu CSPHC5 5Vh U Rh: jS t V f CSPe[^ÐUWVS u=h8 uO=$~^h?Vth? 0u.Wh*hdjc VWh*h`djhK;$}$vV 4tC;$|߉5(h(h_e[^_ÍvUVSxu "''~'\L)tPRe Ptctr\pL=`tP5`Xe P(ct&`px\DXXЍe[^ÐUWVS ThP=\u >\L`pfv6_=PyPy Pv6 `P| b;PulL;Xr 6LBL`frpBptBP=h7 h,6``t0Px(  b;Pu`v=hu hPNT=hhL `tcx[Sf buG;Xr *LBL`frpBptSL;\ZL-pcv=P6P_)plC$tc hwdht $, p0,{ pp1fp:t, B,Lp@!,:l.l"ll l?L)‰L2)p@_uau]BLfBpBplB=PyPy P=Pa?`t$x  b9u ` ?`L;Xr u-LBLfrpBplB hLe[^_ÐUS]hu\u/i tjS …uvjS ‰Ћ]U Eu uhdh0eh}hdEP\ uUUEuu uhdh>eh}heEP uUÐUWVuu uƃt}e^_ÐUS]S$$H]ÍvUM\ÐU=0uhhx70 50E4ÐU=0t%=4u 50i0ÉUVS=0u*hhx0u +50hh4Ãuvv8#tÃhSP1thSƃtFhSjp~ ShSjLQi t$hh vPLH> t> u F> t> t5@D``hV5ƃtFFt@>t;> t,> t's3hVƃt Ft>u@e[^ÉUWVSUEzjI@9{u;u3t2s>tu6t>uvÅuED@e[^_ÍvUWVSEƒUU@Ej'vE9CuC0}M98t /ÅuED@e[^_ÐUShtYu uY]UWVS\uDžEU } t'}  }v}Dž+ Dž,fFfFDžDž^ ;WN )PRSV  \;}t}uBщ‰EDžDž   DžDž|B;6 )PRSV  tC ; Sl$X}uu S!| S;O؉t}t }!h hRSVp q WV;щ щ+9PF}  hPSVU xZ RtD;щ+9~ GPEfvU9tO 讙Pu袙$ jٙPuhej%F > t%  ^Ptu )PRSV  8;u /hs Džщ~ q`v58t#5h`ej%;tu(щ;r!hAfr)uj#hTfWlPSe;t;hf#u~;s t%~}uh 0=uU}щ)9iauRAi tPPh' ve[^_ÐUEtuvPuu uÍvUWVS UrEhudNu@vttE.E O/)5j.SFu S2Gt=wڀ:z.hSVhSh2EE $ i tEPEPhUv=wu:.uB=wtj:S֦u ;:ڀ:z.hSVRThSh1E $ E=wu ::t:.u B'v hLǃu hPujS/Aƃ y WMVhmf=v WMVh f9uSPWU<$ME8te[^_UWVS<Eƒ@EhuJuluce Ɖ8t e Ɖ8u" DžDžt t sK/v;t[Ktt:PBPBPBPhfP/ rv;P;Phf/KyʃhhP/Tv h;Jƃu hPj jP<à y]u9hhW.$Vj jW<à y VJShfvv" VJSh f j PSV&Ãu VJ VJSs Vh $u,i t#hhhCC }D@e[^_UWVSlEEEU 9}nEE;Ms-]lEА#`9tA9rfLu}u~ Du9}uFE;u |}tOE 9E}GMIx4fDMf;DM~&fDMfDMftM]DTIyEE 9E|l[^_ÍvUhu `Ft}t hÐU%h[ÐUS] jEPu,C@ ~CCjSEP]ÉUWVS E} xukx ue@@ X;tOvʃ)֋U)ȍV9} &P3K;ue[^_UWVSEEu@ǃEP7BJ5jjuu6|$?FE}t SU CPEƃCFfCfFCF@PFPCP|9Er$(PuGtfE| UE4BU W'OÃB WC}t}tujuu7E UEG ViF}t MEU4LF}u u8F<$Ce[^_ÍvUE PEPJÐUWVSu]}t,uu uKMddtUoEFEEEFEEEF E SEPhjv Sjhjjjǃ Xt+t FFƃ  }u  d}CjjjdO!ЃupC8ufE Q  hdXN. @ Wu0YUvE t t  hPdFE Ei Gp^Gl\G UG WGGpUG\_jj3ƒtiH ȃuȃB jjR3.t%t  ujStG7B,Bt Wy}t dbJAe[^_ÍvUSEX{tjs3C!tA]ÐUWVS uEX{tjs31C w~$fvU 0tivC(ts$FleC(ts$NuTv  ujSv@vt;v?  uVS…t;v kvjFPS= EtJK(s$ uu VuS ǃ !@tjE03UCЍe[^_ÐUWVS EX{tjs3C}u E 0u?;v%  tiVSuWNjVSJ ƃt< ujjVS ǃ !@tj63Cve[^_UWVSU;sXu >E!UUUE苂E싂EU 9E U[JǃtKu>tSUPVSIjEPuuSKu@FEtU 9UzE 9EsU Ѝe[^_ÐUWVSEEUUE 9U E{Iǃt;EuDUEU)ÉZujEPuunJuufE+‹u P<vEUtEÉCN'tEU 9UE 9EsU Ѝe[^_ÐUWVS U;sru <EJUu#E UUE苂E싚 ;} sl9sEst3vCAJ9s uvtRUPQFjEPWuHUG;} rEe[^_ÉUWVSE EE;} s_9rE U]9s;EtC9s;Eu+EEjEPWuGuCG;} rEЍe[^_ÐUVSuEX{tjs39 Ctt&XE tM;w$HPSbGC(t*u:C$HPS4u%K$:u e[^ÐUWVS}ju Wt?@PSW8ƃtjS7Z jS7G Ѝe[^_UWVS } UDW8ފCt CPu*G8)RPPqf_EftGWEHftf92sfHfuG8)ЃfHtfJf9sf fHufoUЍe[^_ÐUWVS }_{tjs34 CjW!t">p uA@t Dt% :@H ƃ W+oH ‰Ѝe[^_UWVSf\Ff+Zr2Í0PGfFEf+X p0Í0P~GfVf>f)ȃfDVf\Ve[^_UWVS E p>Uf|VwPu/}t UfDVUfB Uf+DVfEG9t}LFˋE XUEDFE)PSRM9Af|NuNfNfPfTNNfUfNfPfUfTNfP9~fUfTFf~fEfD~fD~GfEH8U Je[^_UWVSxu&PuhPE(u] Sǭu8u.t%uhP' S9t\BoA jjjqhM :u BRPsDžB@Rj1P PPj1Rtjje[^_UWVS ]u#=tu$&u7=t.u$MPQ@A3u3=t*j$PMQbCv t t u j jbƒt*BWVuuuu SR e[^_ÐUu u跞ÉU j0u u詞U hu u薠ÐUVSu] SVtCPVЉЍe[^ÉUVSu] SVt3CPV膟tC PV荑ЉЍe[^ÍvUVSu] SVt#;uCPVAtЍe[^ÍvUVSu] SV藘t?CPV~t&h3 jjCPC PV蜀 АЍe[^ÍvUVSu] SV't#;uCPVatЍe[^ÍvUVSu] SVt3C0PVtC`PVЉЍe[^ÍvUVSu] SVwt#;uCPVmtЍe[^ÐUWVS,u EE]C}OEEE܃jjEPVjS u 8 u U܉ Ev7E]C EHE؋UUE܃jjEPD7PjS8 u s8 u iU܉ EvEDE]CEHEԋUU+E܃jjEPU؍:D0PjS u 8 u U܉ EvEUDE]CEHEЋUUE܃jjEPU؍:EԍD0PjS@ u {8 u qU܉ EvEEԋUD:EԍL0EHEt"‰ <w AJuUE]CEHE̋UUE܃jjEPU؍:EEЍD0PjS u8 u U܉E>EEEЋUDEe[^_ÐUWVS ..., where is one of: ăڃ(:benstuvstdoutstdin%6d usage: cat [-benstuv] [file ...] ggggggggg3gggCggggLgggggsgggggggggggggUs^ggggggsggssssnssϋϋϋϋȌϋϋȌϋHLPRXfghorstuvwxinvalid file mode: %s: 0%o [%s] -> 0%o [%s]fts_readfts_openthe -R and -h options may not be specified together.usage: chmod [-fhv] [-R [-H | -L | -P]] mode file ... ɎɎɎ.ɎɎɎ<ɎCɎɎɎɎɎɎɎɎɎɎɎɎɎɎɎɎɎɎɎOɎɎrɎɎɎɎɎɎɎɎɎӎHLPRfinprv%s: name too long%s is not a directorydirectory %s does not exist%s -> %s chmod: %s%s: directory causes a cycle%s not overwritten %s -> %s %3d%% (y/n [n]) overwrite %s? %ssymlink: %sunlink: %sreadlink: %smkfifo: %smknod: %schown: %schflags: %sutimes: %sthe -R and -r options may not be specified together.the -H, -L, and -P options may not be specified with the -r option.%s%s: name too long (not copied)%s is a directory (not copied).cannot overwrite directory %s with non-directory %s%s and %s are identical (not copied). cp [-R [-H | -L | -P]] [-f | -i | -n] [-pv] src1 ... srcN directoryusage: cp [-R [-H | -L | -P]] [-f | -i | -n] [-pv] src targetY@ɡZ6lHM@@ŷ|ɷƢ̷BӢ ҷ*@@!*@@ŹBܸ   øɸѸٸ     X____F___P_Z_________d'''''''''''''''''˧    [.<(+!&]$*);^-/|,%_>?`:#@'="abcdefghijklmnopqr~stuvwxyz{ABCDEFGHI}JKLMNOPQR\STUVWXYZ01234567897-./% <=2&?'@O{[lP}M]\Nk`Kaz^L~no|JZ_myjС !"#$()*+, 01345689:;>ABCDEFGHIQRSTUVWXYbcdefghipqrstuvwx7-./% <=2&?'@Z{[lP}M]\Nk`Kaz^L~no|_myOС !"#$()*+, 01345689:;>ABCDEFGHIQRSTUVWXYbcdefghipqrstuvwx    .<(+|&!$*);~-/,%_>?`:#@'="abcdefghijklmnopqr^stuvwxyz[]{ABCDEFGHI}JKLMNOPQR\STUVWXYZ01234567897-./% <=2&?'@Z{[lP}M]\Nk`Kaz^L~no|ཚmyO_ !"#$()*+, 01345689:;>ABCDEFGHIQRSTUVWXYbcdefghipqrstuvwxjJ7-./% <=2&?'@Z{[lP}M]\Nk`Kaz^L~no|_myOС !"#$()*+, 01345689:;>ABCDEFGHIQRSTUVWXYbcdefghipqrstuvwxconvibsifiseekoseekcbs cannot be zerorecord operations require cbsbs supersedes ibs and obsunknown operand %sno value specified for %scbs must be between 1 and %jdcount cannot be negativeibs must be between 1 and %jdobs must be between 1 and %jdlcasenoerrornotruncoldasciioldebcdicoldibmosyncsparseswabucaseunblockunknown conversion %s%s: illegal numeric value%s: short input recordtruncating %soutput bufferinput buffer%s: end of device%ju odd length swab %s %ju truncated %s iseek/skip%s: illegal offsetskip reached end of input%s: write failureoseek/seekcbs meaningless if not doing record operations%s: illegal argument combination or already setunable to allocate space for the argument "%s"seek offsets cannot be larger than %jdfiles must be between 1 and %jd%s: illegal conversion combinationfiles is not supported for non-tape devices%s: short write on character device%s: short write on tape device%s: seek error creating sparse file%ju+%ju records in %ju+%ju records out %ju bytes transferred in %.6f secs (%.0f bytes/sec) ư>?@׽׽׽׽׽׽׽׽׽;׽׽׽׽׽׽׽Q׽׽׽׽׽׽׽׽׽׽׽׽׽׽׽׽/Q׽׽׽׽ho׽Ƚ׽׽׽׽׽ufsabgHhiklmnPt:BLOCKSIZE=512BLOCKSIZE=1gBLOCKSIZE=1kBLOCKSIZE=1m/tmp/df.XXXXXXmkdtemp("%s") failedstrdup failedBKMGTPE %5.0f%c %5.1f%c 0B%-*s %*ld %*ld %*ld %5.0f%% %*ld %*ld %4.0f%% SizeAvailUsedFilesystem%-*s %-*s %*s %*s Capacityifree %*s %*s %%iused Mounted onvfs.conflistmalloc failedsysctl(vfs.conflist)-l and -t are mutually exclusive.only one -t option may be specifiedusage: df [-b | -H | -h | -k | -m | -P] [-ailn] [-t type] [file | filesystem ...] $@-n$FreeBSD: src/usr.bin/yacc/skeleton.c,v 1.37 2003/02/12 18:03:55 davidc Exp $B[aim3O (                      !"   (:%&)*+%-/*+-/:<=>:%&)*+-)/%&)*+-/<=>%&*)<=>/%&)*+-:/&|)+-<=>&)<=>&)+-|<=>&|)&|)<=>&)&)<=>|<=>|<=><=>|&)%&|*+-/|<=>:<=>||%&|*+|-/:<=>%*+-/||:<=> #1>T`lxmalloc() failed|&=<>+-*/%:()EXPR_COMPAT%jd usage: expr [-e] expression syntax errornon-numeric argumentdivision by zeroyacc stack overflow-l-s--illegal process id: %sillegal signal number: %s kill -l [exit_status]%s %s %s %s option requires an argument -- sunknown signal %s; valid signals: kill -signal_number pid ... kill -signal_name pid ...usage: kill [-s signal_name] pid ...<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<$<<<<$<<<<0<<Cfhinsv%s %c> %s replace %s? not replaced link file1 file2 ln [-fhinsv] file ... directoryusage: ln [-fhinsv] file1 file2@(#) Copyright (c) 1989, 1993, 1994 The Regents of the University of California. All rights reserved. 66666666666666666?Xq666y6666666666666666(7F6Ud}6@Lquy}dCOLUMNSCLICOLORCLICOLOR_FORCEcolor support not compiled inLS_COLWIDTHSmallocMAC label for %s/%sfflagstostrtotal %lu %s %*u %-*s %-*s %*s%*jd %3d, 0x%08x %3d, %3d %-*s %*lu , %e %b %T %Y %b %e %T %Y %e %b %R %b %e %R %e %b %Y %b %e %Y -> ls: %s: %s %*.*f%c %*s 1ABCFGHLPRTWZabcdfghiklmnopqrstuwx %lu : %ld : %lu : %u : %u : %i : %jd : %lu : %lu usage: ls [-ABCFHLPRTWZabcdfghiklnoqrstu1] [file ...] m:pvusage: mkdir [-pv] [-m mode] directory ... finvrename %s to %scannot resolve %s: %scannot rename a mount pointoverride %s%s%s/%s for %s? %s%s: remove%s: set times%s: set flags (was: 0%07o)%s: set mode (was: 0%03o)/bin/cp/bin/rm%s: waitpid-rf-PRpv-PRp%s: destination pathname too long%s: set owner/group (was: %lu/%lu)%s: owner/group changed; clearing suid/sgid (mode was 0%03o)%s: terminated with %d (non-zero) status%s: did not terminate normally mv [-f | -i | -n] [-v] source ... directoryusage: mv [-f | -i | -n] [-v] source target"EE EAfEEjdfiPRrvW%s: is a directoryremove %s? unlink fileoverride %s%s%s/%s %s%sfor %s? "." and ".." may not be removedusage: rm [-f | -i] [-dPRrvW] file ...usage: rmdir [-p] directory ... usage: sleep seconds @(#) Copyright (c) 1987, 1993 The Regents of the University of California. All rights reserved. W#W#]"i"W#W#W#W#W#W#W#W#W#W#W#W#W#W#W#q"W#W#W#W#W#W#W#W#W#W#W#W#W#W#W#"W#W#"W#W#W#W#W#W#W#"H#W#W#W#."W#W#W#W#a#$#$K$$$SMDMSCPold DECSCSIESDIST506HP-IBHP-FLtype 9floppyCCDVinumDOC2KRaidjfsunusedswapVersion 6Version 7System V4.1BSDEighth Edition4.2BSDMSDOS4.4LFSHPFSISO9660vinumraidABb:em:nRrs:wi386pc98alphaia64/dev/Unsupported architecturefopen %s%s: unknown disk type/boot/bootread error %scannot open %sboot code %s is wrong sizewrite %swrite labelverbwrite bootcoderead mbroffset%s read%s: no valid label found# %s: disk: %.*s label: %.*s bytes/sector: %lu sectors/track: %lu tracks/cylinder: %lu sectors/cylinder: %lu cylinders: %lu sectors/unit: %lu rpm: %u interleave: %u trackskew: %u cylinderskew: %u drivedata: %u partitions: %c: %8lu %8lu %8.8s%20.20s # "raw" part, don't edit %5lu %5lu %5.5s %5lu %5lu %5d %5lu %5lu %5u %8d badsect ecc removeabletype: %u re-edit the label? [y]: can't reopen %s for readingcan't create %sforkyou have too many processesEDITOR/usr/bin/vidrivedata%lu partitionsbytes/sectorsectors/tracksectors/cylindertracks/cylindersectors/unitrpminterleavetrackskewcylinderskewheadswitchtrack-to-track seekline %d: %s: bad %s line %d: %s: bad sector size line %d: bad # of partitions line %d: %s: bad flag Warning, unknown disk typeline %d:%s %lu line %d: syntax error boot block size 0 revolutions/minute 0cylinders/unit 0 tracks/cylinder 0 sectors/track 0 sector size 0 (to edit label) (to read label)usage: bsdlabel diskwrite to disk label supressed - label was as follows:headswitch: %lu # milliseconds track-to-track seek: %ld # milliseconds # size offset fstype [fsize bsize bps/cpg] line %d: partition name out of range a-%c: %s line %d: %s: Unknown disklabel field line %d: %s: bad partition size line %d: too few numeric fields line %d: Warning, unknown file system type %s line %d: missing file system type line %d: %s: bad partition offset unknown size specifier '%c' (K/M/G are valid)Offset %ld for partition %c overlaps previous partition which ends at %lu Labels with any *'s for offset must be in ascending order by sector partitions %c and %c overlap! unused partition %c: size %d offset %lupartition %c doesn't cover the whole unit!An incorrect partition %c may cause problems for standard system utilitiespartition %c doesn't start at 0!partition %c is not marked as unused!partition %c: partition extends past end of unit partition %c: offset past end of unit partition %c: size 0, but offset %luOffset %ld for partition %c doesn't match expected value %ld%ld sectors available to give to '*' and '%%' partitions total percentage %lu is greater than 100 partition %c not an integer number of sectorsToo many '*' partitions (%c and %c)number of partitions (%lu) > MAXPARTITIONS (%d)boot block size %% sector-size != 0 (to restore label and install boot program) bsdlabel -R -B [-n] [-b boot] [-m machine] disk protofile (to write label and install boot program) bsdlabel -w -B [-n] [-b boot] [-m machine] disk [type] (to install boot program with existing on-disk label) bsdlabel -B [-b boot] [-m machine] disk (to restore label with existing boot program) bsdlabel -R [-n] [-m machine] disk protofile bsdlabel -e [-n] [-m machine] disk (to write label with existing boot program) bsdlabel -w [-n] [-m machine] disk [type]%s %s %s %s %s %s %s %s %s %s %s %s %s %s usage: clri special_device inode_number ... %s is not a valid inode numberCannot find file system superblock clearing %d %s: can't read superblock_msgbufpaM:N:%s: msgbufp not foundkvm_read: %skvm_nlist: %ssysctl kern.msgbufkernel message buffer has different magic numberusage: dmesg [-a] [-M core] [-N system] $FreeBSD: src/sbin/fdisk_pc98/fdisk.c,v 1.13 2003/05/01 14:30:59 nyan Exp $5X5X5X5X5X5X5X5X^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^XFX^X^XRX^X^X^X^X^X^X^X^X^XeXqX}XXPrimary DOS with 12 bit FATXENIX / file systemXENIX /usr file systemPC-UXExtended DOSPrimary 'big' DOS (> 32MB)AIX file systemOS/2 Boot Manager or OPUSFreeBSD/NetBSD/386BSDVENIX 286DMCP/M or Microport SysV/ATGBSpeedNovell Netware 2.xxNovell Netware 3.xxPCIXMinixBa:f:istuv12345678read_s0%s: %d cyl %d hd %d sec StartPart %11s %11s SID %4d: %11lu %11lu 0x%02x Media sector size is %d This is your last chance.cannot open disk %s%d: sysmid %d (%#04x),(%s) system Name %.16s Do you want to change it?sysmidsyssidsystem namebeginning cylinderbeginning headbeginning sectorending cylinderending headending sectorAre we happy with this entry?active partitionBIOS's idea of #cylindersBIOS's idea of #headsBIOS's idea of #sectorscan't open device %s%ss%dcan't get file status of %s%s [n] yesYESregcomp() failed (%d)statfs("/")OS/2 HPFS, QNX or Advanced UNIXAIX boot partition or CoherentISC UNIX, other System V/386, GNU HURD or Mach******* Working on device %s ******* Warning: BIOS sector numbering starts with sector 1Information from DOS bootblock is: We haven't changed the partition table yet. Should we write new partition table? -t flag specified -- partition table not written. fdisk -f configfile [-itv] [disk] usage: fdisk [-Baistu] [-12345678] [disk] start %lu, size %lu (%ju Meg), sid %d beg: cyl %d/ head %d/ sector %d; end: cyl %d/ head %d/ sector %d The data for partition %d is: Explicitly specify beg/end address ? The static data for the DOS partition 4 has been reinitialized to:parameters extracted from in-core disklabel are:cylinders=%d heads=%d sectors/track=%d (%d blks/cyl) parameters to be used for BIOS calculations are:Do you want to change the active partition?Are you happy with this choiceActive partition number must be in range 1-8. Try again.Do you want to change the boot code?Do you want to change our idea of what BIOS thinks ?can't get disk parameters on %sdevice %s is not character specialinvalid fdisk partition table foundcan't read fdisk partition tablecan't write fdisk partition tableSupply a decimal value for "%s" [%d] %s is an invalid decimal number. Try again. Supply a string value for "%s" [%s] ^(/dev/[a-z]+[0-9]+)([sp][0-9]+)?[a-h]?$mounted root fs resource doesn't match expectations (regexec returned %d)@(#) Copyright (c) 1989, 1993 The Regents of the University of California. All rights reserved. $FreeBSD: src/sbin/mknod/mknod.c,v 1.13 2000/01/06 17:51:46 obrien Exp $usage: mknod name [b | c] major minor [owner:group] group must be specified when the owner isowner must be specified when the group ismajor or minor number too large%s: illegal %s namenode must be type 'b' or 'c'%s: non-numeric major number%s: non-numeric minor numbersetting ownership on %s@(#) Copyright (c) 1980, 1989, 1993, 1994 The Regents of the University of California. All rights reserved. $FreeBSD: src/sbin/mount/mount.c,v 1.51 2003/04/07 12:56:01 mdodd Exp $nnnnnnn0nnnnnnnnnnnnnnnnnnnnnnnnnnn)nnn>nnJnnnnnnnnnSnmnnnnnnwnn@(#) Copyright (c) 1993, 1994 The Regents of the University of California. All rights reserved. $FreeBSD: src/sbin/mount/mount_ufs.c,v 1.23 2002/08/03 16:03:18 mux Exp $asynchronousNFS exportednoatimenodevnoexecnosuidnosymfollowwith quotasread-onlyunionnoclusterrnoclusterwsuiddirsoft-updatesmultilabelaclsffsext2fsadF:fo:prwt:uvnoro/var/run/mountd.pidsignal mountdgetmntinforqnoautonot currently mounted %s/usr/sbinmsdosexec: mount_%sstatfs %s%s/mount_%sexec mount_%s not found in %supdateforce%s on %s (%s, writes: sync %ld async %ld, reads: sync %ld async %ld, mounted by %s,%s-ocurrentno%s %s %s %s %u %u 1 1 2 2 0 0asyncuserquotagroupquotardonlyo:%s on %s: mount table full-o %s: option not supported%s: not a directory%s has unknown file system type%s: unknown special file or file system mount [-dfpruvw] special | node mount [-adfpruvw] [ -F fstab] [-t ufs | external_type]usage: mount [-dfpruvw] [-o options] [-t ufs | external_type] special node%s on %s: specified device does not match mounted device%s on %s: incorrect super blockusage: mount_ufs [-o options] special node $FreeBSD: src/sbin/mount_cd9660/mount_cd9660.c,v 1.21 2002/08/21 18:10:55 trhodes Exp $>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>ڃ>>>>>>>>>>>!*>>Hextattgensrripstrictjolietbegjo:rs:vusing starting sector %d could not determine starting sector, using very first sessionusage: mount_cd9660 [-egrv] [-o options] [-s startsector] special node $FreeBSD: src/sbin/mount_msdosfs/mount_msdosfs.c,v 1.24 2002/08/03 16:03:19 mux Exp $tttttttttttttttttttttttttttttttttttttttttttوttttt$ttttJshortnameslongnamesnowin95sl9u:g:m:o:L:W:stat %sunknown group id: %sunknown user id: %s/usr/libdata/msdosfs/%s%i%i%i%i%i%i%i%i [-s] [-l] [-9] [-L locale] [-W table] bdev dirusage: mount_msdosfs [-o options] [-u user] [-g group] [-m mask]u2d table: missing item(s) in row %d, line %dcan't read u2d table row %d near line %dd2u table: missing item(s) in row %d, line %dcan't read d2u table row %d near line %du2w table: missing item(s) in row %d, line %dcan't read u2w table row %d near line %d !*haltdk:lnpq/boot/nextboot.confnextboot_enable="YES" kernel="halted by %sshutdown~(can't restart init): SIGTERM processesSIGTSTP initrebooted by %s???vm.stats.vm.v_swappgsinWARNING: some process(es) wouldn't die cannot dump (-d) when halting; must reboot insteadusage: %s [-dnpq] [-k kernel] @(#) Copyright (c) 1983, 1993 The Regents of the University of California. All rights reserved. $FreeBSD: src/sbin/restore/main.c,v 1.20 2003/05/01 21:18:36 ru Exp $ەBBBBBBBBBBBBBBBBBBBBBBBBBBBB"l{BgHm$FreeBSD: src/sbin/restore/interactive.c,v 1.13 2002/09/25 04:06:37 mike Exp $; Nş%Z CMl`+M+`+B+f+l+r$FreeBSD: src/sbin/restore/restore.c,v 1.16 2002/09/25 04:06:37 mike Exp $3N!I-E--E$FreeBSD: src/sbin/restore/dirs.c,v 1.24 2002/09/25 04:06:37 mike Exp $$FreeBSD: src/sbin/restore/symtab.c,v 1.13 2002/09/25 04:06:37 mike Exp $$FreeBSD: src/sbin/restore/tape.c,v 1.37 2002/09/25 04:06:37 mike Exp $>9h>9 3RQQQQQQQQQQhx$FreeBSD: src/sbin/restore/utilities.c,v 1.13 2002/09/25 04:06:37 mike Exp $$FreeBSD: src/sbin/dump/dumprmt.c,v 1.19 2003/05/01 20:09:58 markm Exp $b:df:himNRrs:tuvxyillegal blocksize -- %sillegal dump number -- %s./restoresymtableBegin incremental restore Calculate node updates. Begin level 0 restore Calculate extraction list. /dev/sa0usage: %s %s %s %s %s directory is used (useful with ``ls'') files to be extracted cd arg - change directory ls [arg] - list directory Available commands are: Debugdebugging mode on debugging mode off %s: not a directory %s: not on extraction list extract/ setmodesverboseverbose mode on verbose mode off whatrestore > %s: out of memory missing %c ./%s%s: name exceeds %d char directory reopen failed ls: out of memory %*d restore interrupted, continuedir %10d %s %s: not on the tape ./%u%s: REMOVE Delete whiteouts Mark entries to be removed. [%s] %s: %s [%s] %s: %s|LINK [%s] %s: Extraneous name [%s] %s: impossible state [%s] %s: inconsistent state cannot KEEP and change modescorrupted symbol table |MODECHG|NAMEFND|INOFND|ONTAPE%s: remove unreferenced name unreferenced with flagsFind unreferenced names. cannot remove, non-emptyunexpected file on tapeunknown file on tape %s: not found on tape %d: bad first Extract new leaves. Extract requested files Add links Add whiteouts incomplete operationsCheck the symbol table. missing inumber %d type should be LEAFWarning: missing name %s TMPDIR/tmp/%s/rstdir%d-XXXXXXopendirfile: %s %s/rstmode%dreclen not multiple of 4 Mangled directory: error reading directory set owner/mode for '.'fopen: %s cannot open mode file %s modefile not defined read: %s no memory directory table addino: out of range %d duplicate inumdeleteino: out of range %d deleteino: %d not found %s is not a directory %s: pathname too long duplicate entry link to non-existent name bad name to addentry %s not marked REMOVEDlink not foundlookupino failedfreeing non-empty directoryfreeing referenced directorycannot move ROOTno space for string table bad name fwrite: %s Check pointing the restore Incremental tape too low Incremental tape too high stat: %s no memory for entry table Initialize symbol table. /dev/ttycannot open %s: %s /dev/nullno header after volume mark! no memory for file dump list Cannot find file dump list maxino = %d bad block size %ld cannot stat .: %s Tape is not a dump tape tape is not dump tape Mount tape volume %ld none Cannot open %s can quickly skip tapes that start with the last volume %s%s%s%s%s%s%sSpecify next volume #: You have read volumes%s%ldWrong volume (%ld) Wrong dump date got: %s wanted: %sactive file into volume 1 Warning: %s %s ioctl MTFSF: %s Dump date: %sthe epoch Dumped from: %sLabel: %s %s: unknown file mode 0%o %s: cannot create fifo: %s extract fifo %s extract file %s unextracted directory %s extract special file %s %s: cannot create file: %s skipped socket %s not at beginning of a file ran off end of tape hole in map End-of-tape encountered Tape read error while trying to set up tape continuation failed: %s restoring %s trying to resynchronize skipping over inode %d mid-media short read error. Tape block size is %ld tape read error: %s 8l4s1q8l2q17l2l4qNote: Doing Byte swapping Dumped inodes map headerFile header, ino %dEnd of tape headerUsed inodes map headerVolume header begins with record %qdunexpected tape header unknown tape header type %d RSTTMP%s%ld%lunot on ino listrename %s to %s newnode: not a nodeMake node %s warning: %s: %s removenode: not a nodeRemove node %s removeleaf: not a leafRemove leaf %s linkit: unknown type %d symbolichardCreate %s link %s->%s Create whiteout %s delwhiteout: not a leafDelete whiteout %s bad entry: %s parent name %s entry type: %s inode number: %lu flags: %s NODEnext hashchain name: %s next link name: %s next entry name: %s sibling name: %s |EXISTED|KEEP|NEW|EXTRACT|TMPNAME|REMOVED%s is not on the tape %s? [yn] abortdump coreon %s: %s%sRMTTCP_NODELAY setsockoptlogin to %s as %s failed. /etc/rmttcpwho are you? shell/tcp: unknown service invalid user name %s O%.226s %d C R%d W%d L%d %d I%d %d ioctl(rmtgets got "%s"). block size must be greater than 0dump number must be greater than 0none of i, R, r, t or x options specifiedVerify the directory structure %c and %c options are mutually exclusiverestore -t [-cdhNuvy] [-b blocksize] [-f file] [-s fileno] [file ...]restore -x [-cdhmNuvy] [-b blocksize] [-f file] [-s fileno] [file ...]restore -R [-cdNuvy] [-b blocksize] [-f file] [-s fileno]restore -r [-cdNuvy] [-b blocksize] [-f file] [-s fileno]restore -i [-cdhmNuvy] [-b blocksize] [-f file] [-s fileno]option requires an argument -- %c%s: unknown command; type ? for help If no `arg' is supplied, the current help or `?' - print this list verbose - toggle verbose flag what - list dump header information quit - immediately exit program setmodes - set modes of requested directories extract - extract requested files list of files to be extracted delete [arg] - delete `arg' from add [arg] - add `arg' to list of pwd - print current directory %s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%scommand lines cannot be continued canonname: not enough buffer space Warning: undefined file type %d %s: (inode %d) not found on tape deleted hard link %s to directory %s NODE and LEAF links to same inodename/inode conflict, mktempname %s Remove old nodes (directories). expected next file %d, got %d Continue extraction of new leaves Root directory is not on tape %s - cannot create modefile fopen%s - cannot create directory temporary fopenExtract directories from tape Warning: `.' missing from directory %s Warning: `..' missing from directory %s reclen less than DIRSIZ (%d < %d) bad seek pointer to rst_seekdir %ld corrupted directory: bad inum %d corrupted directory: bad reclen %d cannot find directory inode %d error setting directory modes directory mode, owner, and times not set Set directory mode, owner, and times. write error extracting inode %d, name %s Cannot find directory inode %d named %s no memory to extend symbol table cannot find entry in parent listoutput error to file %s writing symbol table cannot create save file %s for symbol table initsymtable called from command %c cannot read symbol table file %s cannot allocate space for symbol table cannot stat symbol table file %s cannot open symbol table file %s Cannot allocate space for magtape buffer Cannot allocate space for tape buffer no memory for active inode map Cannot find file removal list header read failed at %ld blocks Tape is not volume 1 of the dump Verify tape and initialize maps Changing volumes on pipe input? Enter ``none'' if there are no more tapes otherwise enter tape name (default: %s) Otherwise, begin with volume 1. have no further files to extract.and work towards the first; restoreIf you are extracting just a few files,You have not read any tapes yet. Volume numbers are positive numerics Skipping %ld duplicate record%s. last rec %qd, tape starts with %qd End-of-input encountered while extractingCannot have multiple dumps on pipe input Level %ld dump of %s on %s:%s %s: cannot create special file: %s %s: zero length symbolic link (ignored) Missing address (header) block for %s at %ld blocks write error extracting inode %d, name %s write: %s seek error extracting inode %d, name %s lseek: %s symbolic link name: %s->%s%s; too long %d unallocated block in symbolic link %s partial block read: %d should be %d partial block read: %ld should be %ld is not a multiple of dump block sizeTape block size (%ld) %s (%d) Format of dump tape is too old. Must use a version of restore from before 2002. gethead: unknown inode type %d ; predicted %ld blocks, got %ld blocksFile continuation header, ino %dresync restore, skipped %ld blocks Checksum error %o, inode %d file %s Unknown conversion character: %c mktempname: called with TMPNAMEwarning: cannot rename %s to %s: %s removenode: non-empty directorywarning: cannot create hard link %s->%s: %s warning: cannot create symbolic link %s->%s: %s warning: cannot create whiteout %s: %s warning: cannot delete whiteout %s: %s Lost connection to remote host. Connection to %s established. IP_TOS:IPTOS_THROUGHPUT setsockoptProtocol to remote tape server botched (code "%s"). Protocol to remote tape server botched. ^ ^ U ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ v ^ ^ ^ ^ ^ ^ ^ ^ ^ ^ ^  ^ ^  ^ ^ ^  ^ ^   ^ ^ ^ ^ ^ ^  AadlhksUsw%s: %sing %s as swap device removswapoff%s: NSWAPDEV limit reached%s: device already in useusage: %s [-a] [special_file ...] vm.swap_info/dev/%-8s %*lld %*lld Total: %*lld %*lld sysctl()%ld-blocksUsed:Device:%-13s %*s %*s sysctlnametomib()xswdev version mismatch[-lshAU] [-a/-d special_file ...] @(#) Copyright (c) 1980, 1989, 1993 The Regents of the University of California. All rights reserved. $FreeBSD: src/sbin/umount/umount.c,v 1.34 2003/04/07 12:56:01 mdodd Exp $...............................................5DEAaF:fh:t:vfstab reading failurenoneudpRPCMNT_UMOUNTRPCPROG_MNT%s: unmount from %s unmount of %s failedcan't get net id for hostcalloc/var/db/mounttab%ld %s %s can't open %scan't remove %swrite mounttab entry %s:%scan't write to %s by hostdelete mounttab entry%s %s:%sbad mounttab %s field '%s'cannot umount %s, %s is mounted there, umount it first%s not found in mount table, unmounted it anywaycannot remove mounttab entry %s:%s umount -a | -A [ -F fstab] [-fv] [-h host] [-t type]usage: umount [-fv] special | node==============================================================================="5HiCopyright (c) 1986, 1990, 1991, 1992, 1993, 1994, 1995, 1996 Hugh Mahon This software and documentation containsproprietary information which is protected bycopyright. All rights are reserved.Control keys: ^a ascii code ^i tab ^r right ^b bottom of text ^j newline ^t top of text ^c command ^k delete char ^u up ^d down ^l left ^v undelete word ^e search prompt ^m newline ^w delete word ^f undelete char ^n next page ^x search ^g begin of line ^o end of line ^y delete line ^h backspace ^p prev page ^z undelete line ^[ (escape) menu ESC-Enter: exit ee Commands: help : get this info file : print file name read : read a file char : ascii code of char write : write a file case : case sensitive search exit : leave and save nocase : case insensitive search quit : leave, no save !cmd : execute "cmd" in shell line : display line # 0-9 : go to line "#" expand : expand tabs noexpand: do not expand tabs ee [+#] [-i] [-e] [-h] [file(s)] +# :go to line # -i :no info window -e : don't expand tabs -h :no highlight^[ (escape) menu ^e search prompt ^y delete line ^u up ^p prev page ^a ascii code ^x search ^z undelete line ^d down ^n next page ^b bottom of text ^g begin of line ^w delete word ^l left ^t top of text ^o end of line ^v undelete word ^r right ^c command ^k delete char ^f undelete char ESC-Enter: exit ee help : get help info |file : print file name |line : print line # read : read a file |char : ascii code of char |0-9 : go to line "#"write: write a file |case : case sensitive search |exit : leave and save !cmd : shell "cmd" |nocase: ignore case in search |quit : leave, no saveexpand: expand tabs |noexpand: do not expand tabs press Escape (^[) for menusending contents of buffer to "%s" usage: %s [-i] [-e] [-h] [+line_number] [file(s)] -i turn off info window -e do not convert tabs to spaces -h do not use highlighting no filename entered: file not savedchanges have been made, are you sure? (y/n [n]) file already exists, overwrite? (y/n) [n] !%swritten by Hugh Mahon-i-e-h-?SHELL/bin/sh-c%c) /usr/share/misc/init.eeHOMELANGzh_TW.big5/root%s.old%s %d ~/.init.ee<>!spell/tmp/ee.%dispell %s$modes menutabs to spaces case sensitive searchmargins observed auto-paragraph formateightbit characters info window right margin leave menusave changesno savefile menuread a filewrite a filesave fileprint editor contentssearch menusearch for ...spell menuuse 'spell'use 'ispell'miscellaneous menuformat paragraphshell commandcheck spellingmain menuleave editorfile operationsredraw screensettingsmiscellaneousno fileascii code: name of file to write: name of file to read: character = %dunknown command "%s"entered command is not uniqueline %d length = %dcurrent file is "%s" file "%s" is a directorynew file "%s"can't open "%s"file "%s", %d linesfinished reading file "%s", read onlyenter name of file: unable to create file "%s"writing file "%s""%s" %d lines, %d characters ...searchingstring "%s" not foundsearch for: could not exec %spress return to continue press Esc to cancelmenu too large for windowpress any key to continue shell command: ...formatting paragraph...right margin is: HELPWRITEREADLINEFILECHARACTERREDRAWRESEQUENCEAUTHORNOCASENOEXPANDEXITQUITNOINFONOMARGINSNOAUTOFORMATPRINTCOMMANDRIGHTMARGINNOHIGHLIGHTNOEIGHTBITemacs key bindings NOEMACSsave editor configurationsave ee configurationsave in current directorysave in home directoryee configuration not saved^^more^^VVmoreVV16 bit characters NO16BITK(elABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/uwuwwwwwwwwwwuwwwwwwwwwwwwuwvw*vw9vwvwwwwwwwwwwvwwvvwwwwwwww-w for the NetBSD project. Execute `man ftp' for more details. Luke Mewburn is the author of most of the enhancements in this ftp client. Please email feedback to . NetBSD is a freely available and redistributable UNIX-like operating system. For more information, see http://www.netbsd.org/index.html `%s' is an interesting topic. auto_put: url `%s' argv[2] `%s' No control connection for command.421 Service not available, user interrupt. Connection closed. 421 Service not available, remote server has closed connection. 421 Service not available, remote server timed out. Connection closed aborted. Waiting for remote to finish abort. abortxfer called with unknown direction `%s'Can't change modification time on %s to %sWARNING! %d bare linefeeds received in ASCII mode. File may not have transferred correctly. Passive mode address scan failure. Shouldn't happen! wrong server: return code must be 227 Passive mode AF mismatch. Shouldn't happen! %u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%uwrong server: return code must be 228 wrong server: return code must be 229 disabling epsv4 for this connection LPRT %d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%duse of scoped address can be troublesomeproxy server does not support third party transfers. runique: can't find unique file name. remote abort aborted; closing connection. Lost control connection for abort.Neither $FTPSERVER nor GATE_SERVER is defined; disabling gate-ftpunknown $FTPMODE '%s'; using defaultsunable to get default sndbuf sizeunable to get default rcvbuf size%sommands may be abbreviated. Commands are: getoptionvalue() invoked with NULL namegetoptionvalue() invoked with unknown option `%s'usage: %s [-46AadefginpRtvV] [-N netrc] [-o outfile] [-P port] [-r retry] [-T dir,max[,inc][[user@]host [port]]] [host:path[/]] [file:///file] [ftp://[user[:pass]@]host[:port]/path[/]] [http://[user[:pass]@]host[:port]/path] [...] %s -u url file [...] Error: .netrc file is readable by others.Remove password or make file unreadable by others.Remove account or make file unreadable by others.Macro definition missing null line terminator. Missing macdef name argument. Connecting via pass-through server %s Already connected to %s, use close first. gateserver not defined (shouldn't happen)Remember to set tenex mode when transferring binary files from this machine. ftp_login: user `%s' pass `%s' host `%s' can't find list of remote files, oops.can't find list of remote files, oops. unable to create temporary file %sSIZE is not supported by remote server. MDTM is not supported by remote server. Y2K warning! Incorrect time-val `%s' received from server. ***************************************************************************************************************************************************************************************************************************************crankrate invoked with unknown signal: %dContext sensitive argument completionUnknown port `%s', using port %dUnable to allocate %ld bytes of memoryUnable to allocate memory for stringlistUnable to add `%s' to stringlistxstrdup() called with NULL argumentUnable to allocate memory for string copyxsignal_restart called with signal %d.A @$$$ $$$$$$$$$$$$,<$$$$W$`$$$$o$$$$$$$$$$$$|$$$$$$$$$$$$.>   &-4;BIPWWnssnssXsssssssssssssssssnssssssnnnsssnF  H  3hl3L[jy3z=z=z=z=z=z=z=z=z=z=z=z=z=z=z=z=z=z=-3z=z=z=z=z=z=6778f=z=z=z==;55545%s sequence challenge /usr/bin/opiekeyaoSend Telnet Abort outputaytSend Telnet 'Are You There'Send Telnet BreakbreakSend Telnet Erase CharacterSend Telnet Erase LineSend current escape characterSend Telnet Interrupt ProcessintpinterruptintrnopSend Telnet 'No operation'eorSend Telnet 'End of Record'Send Telnet 'Abort Process'Send Telnet 'Suspend Process'getstatusSend request for STATUSDisplay send optionsdontwillwontSENTbuffer, if this might help.)?Need to be connected first.'send ?' for help"value" must be from 0 to 255Valid options are: %-15s %s setsockopt (SO_DEBUG)autoflushautosynchskiprcdon't read ~/.telnetrc fileinbinaryreceiving of binary dataoutbinarysending of binary datacrlfcrmodmap carriage return on outputlocalcharsdebuggingnetdataprettydumpshow option processingtermdata%-15s toggle %s display help informationenabledisable%-15s %s %s WillWon'trloginrlogin escape charactertracefileflushoutputcharacter to cause an EOF lnextreprintworderasecharacter to use for XONcharacter to use for XOFFforw1forw2alternate AYT character%s character is '%s'. %s set to "%s". %s reset to "%s". 'mode ?' for help.Disable LINEMODE optionEnable LINEMODE optionEnable signal trapping+isig-isigDisable signal trappingEnable character editing+edit-editDisable character editingEnable tab expansion+softtabs-softtabsEnable literal character echo+litecho-litechokludgelinePrint help information%-15s [%s] %-15s "%s" won't?Unknown argument '%s'. ?Ambiguous argument '%s'. new escape character: ExeclFork failed fromquitConnection closed.importcheckundefineunexportSend an environment variableonly DISPLAYunix:USERPRINTERLOGNAME%c %-20s %s notmuchLocalRemote%s character echo No%s flow control Escape character is '%s'. Catching signals locally%s line editing %s catching of signals No connection.setsockopt (source route)telnet: socketBad source route option: %s -a(to) ?Already connected to %s logouttoggleslcenvironopie%s> ?Invalid command?Ambiguous command?Invalid help command %s ?Ambiguous help command %s ?Invalid command: %s ?Ambiguous command: %s /.telnetrc[host-name [port]][-r] [-s src_addr] [-u] usage: %s %s%s%s%s rlogSetSockOptUNKNOWN%c%c%c%c%s%c%c%c%c%c%c%ld,%ld%c%clm_will: no command!!!lm_wont: no command!!!lm_do: no command!!!lm_dont: no command!!!remote defaultremoteslc_import: not enough roomSYSTEMTYPEJOBACCTIn SUBOPTION processing, RCVDz close SUSPABORTEORNOPDMARKBRKIPAOAYTGASBWILLWONTDONTIACBINARYRCPSUPPRESS GO AHEADTIMING MARKRCTENAOLNAOPNAOCRDNAOHTSNAOHTDNAOFFDNAOVTSNAOVTDNAOLFDEXTEND ASCIILOGOUTBYTE MACRODATA ENTRY TERMINALSUPDUPSUPDUP OUTPUTSEND LOCATIONTERMINAL TYPEEND OF RECORDTACACS UIDOUTPUT MARKINGTTYLOC3270 REGIMEX.3 PADNAWSTSPEEDLFLOWLINEMODEXDISPLOCOLD-ENVIRONAUTHENTICATIONENCRYPTNEW-ENVIRONTN3270ECHARSETCOM-PORTKERMITSYNCHRPLNEXTFORW1FORW2MCLMCRMCWLMCWRMCBOLMCEOLINSRTOVERECREWREBOLEEOL(standard output)Cannot open %s. %c 0x%x %c%.2x%s %s EXOPL%s %d %d%s IAC %s%s IAC %dresp DO_DONT %s: %d want DO %s resp WILL_WONT %s: %d want WILL %s want WILL %d want WONT %s want WONT %d resp WILL_WONT %d: %d WILL %s WILL %d want DO %d want DONT %s want DONT %d resp DO_DONT %d: %d DO %s DO %d %s IAC SB (terminated by , not IAC SE!) TERMINAL-TYPE IS "%.*s" %d (unknown) ?%d? SEND IS %s %d SE IS %d %d (%d) (empty suboption???)TERMINAL-SPEED IS TOGGLE-FLOW-CONTROL RESTART-XON RESTART-ANY OFF ONLINEMODE SLC|FLUSHOUT|FLUSHIN|ACK %d; DEFAULT VARIABLE NOSUPPORT CANTCHANGE|LIT_ECHO|SOFT_TAB|TRAPSIG|EDIT ?0x%x? (0x%x)(no mode???)DONT Forward Mask %x(no option???)WONT DO WILL X-DISPLAY-LOCATION %s (unknown)NEW-ENVIRON INFO " %03o " USERVAR " ESC " VAR " VALUE SEND (Empty suboption???)%d %02xSend Telnet 'Go Ahead' sequenceSend Telnet End of File CharacterPerform Telnet 'Synch operation'Telnet 'send' error - argument disappeared! There is not enough room in the buffer TO the networkto process your request. Nothing will be done.('send synch' will throw away most data in the networkNeed %d argument%s to 'send %s' command. 'send %s ?' for help. Ambiguous send argument '%s' 'send ?' for help. Unknown send argument '%s' 'send ?' for help. need at least one argument for 'send' commandusage: send %s '%s': bad value ('send %s ?' for help). '%s': unknown argument ('send %s ?' for help). '%s': ambiguous argument ('send %s ?' for help). Will send carriage returns as telnet .Will send carriage returns as telnet .Already in network ascii mode with remote host.Negotiating network ascii mode with remote host.Negotiating binary mode with remote host.Already operating in binary mode with remote host.Already receiving in network ascii mode.Negotiating network ascii mode on input.Already receiving in binary mode.Negotiating binary mode on input.Already transmitting in network ascii mode.Negotiating network ascii mode on output.Already transmitting in binary mode.Negotiating binary mode on output.flushing of output when sending interrupt charactersflush output when sending interrupt charactersautomatic sending of interrupt characters in urgent modesend interrupt characters in urgent modeskip reading of ~/.telnetrc filesending and receiving of binary datasending carriage returns as telnet mapping of received carriage returnslocal recognition of certain control charactersrecognize certain control charactersturn on socket level debuggingprinting of hexadecimal network data (debugging)print hexadecimal representation of network trafficoutput of "netdata" to user readable format (debugging)print user readable output for "netdata"viewing of options processing (debugging)(debugging) toggle printing of hexadecimal terminal dataprint hexadecimal representation of terminal traffic'%s': unknown argument ('toggle ?' for help). '%s': ambiguous argument ('toggle ?' for help). Need an argument to 'toggle' command. 'toggle ?' for help. character to toggle local echoing on/offcharacter to escape back to telnet command modefile to write trace information toThe following need 'localchars' to be toggled truecharacter to cause an Abort Outputcharacter to cause an Interrupt Processcharacter to cause an Abort processThe following are for local editing in linemodecharacter to use to erase a charactercharacter to use to erase a linecharacter to use for literal nextcharacter to cause a Suspend Processcharacter to use for line reprintcharacter to use to erase a wordalternate end of line characterTelnet rlogin escape character is '%s'. Telnet escape character is '%s'. Format is 'set Name Value' 'set ?' for help.'%s': ambiguous argument ('set ?' for help). Format is 'set togglename [on|off]' 'set ?' for help.'%s': unknown argument ('set ?' for help). '%s': ambiguous argument ('unset ?' for help). '%s': unknown argument ('unset ?' for help). Need an argument to 'unset' command. 'unset ?' for help. ?Need to have LINEMODE option enabled first.(or disable obsolete line-by-line mode)(or enable obsolete line-by-line mode)These require the LINEMODE option to be enabledDisable literal character echoformat is: 'mode Mode', where 'Mode' is one of: 'mode' command requires an argumentAmbiguous mode '%s' ('mode ?' for help). Unknown mode '%s' ('mode ?' for help). Deprecated usage - please use 'set escape%s%s' in the future. Deprecated usage - please use 'toggle crmod' in the future.%s map carriage return on output. Use local special character definitionsUse remote special character definitionsVerify remote special character definitionsNeed an argument to 'slc' command. 'slc ?' for help. '%s': ambiguous argument ('slc ?' for help). '%s': unknown argument ('slc ?' for help). Define an environment variableUndefine an environment variableMark an environment variable for automatic exportDon't mark an environment variable for automatic exportList the current environment variablesNeed %s%d argument%s to 'environ %s' command. 'environ ?' for help. '%s': ambiguous argument ('environ ?' for help). '%s': unknown argument ('environ ?' for help). Need an argument to 'environ' command. 'environ ?' for help. Cannot send '%s': Telnet ENVIRON option not enabled Cannot send '%s': variable not defined Operating in single character modeOperating in obsolete linemodeOperating with LINEMODE optionConnection closed by foreign host. Unable to connect to remote hosttelnet: setsockopt (IP_TOS) (ignored)hostname too long for unix domain socket: %susage: %s [-l user] [-a] [-s src_addr] host-name [port] Commands may be abbreviated. Commands are: ?Need to be connected first for %s. [-e char] [-l user] [-n tracefile] [-4] [-6] [-8] [-E] [-L] [-N] [-S tos] [-c] [-d]468EKLNS:X:acde:fFk:l:n:rs:t:uxy%s: Warning: -F ignored, no Kerberos V5 support. %s: Warning: -S ignored, no parsetos() support. %s: Warning: -f ignored, no Kerberos V5 support. %s: Warning: -k ignored, no Kerberos V4 support. %s: Warning: -x ignored, no ENCRYPT support. %s: Warning: -y ignored, no ENCRYPT support. sleep(5) from telnet, after select: %s No room in buffer for terminal type. lm_will: not enough room in bufferlm_do: not enough room in bufferlm_mode: not enough room in bufferSpecial characters are %s values slc_end_reply: not enough roomenv_opt_start: malloc()/realloc() failed!!!env_opt_add: realloc() failed!!!Remote side does not support STATUS option- unknown qualifier %d (0x%x).BDBDBDBDBDBDBDBDBDDBDBDBDDBDBDBDCBD'DBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBDBD0DBD9DBDBDBDBDBDBDBDBDBDBDBDBDBDID*E^E^E>E^E^EF^E^EF^EFFHLPRfhv: %ju:%ju -> %ju:%ju: %ju -> %juthe -R%c and -h options may not be specified togetheryou are not a member of group %s chown [-fhv] [-R [-H | -L | -P]] :group file ...usage: chown [-fhv] [-R [-H | -L | -P]] owner[:group] file ...usage: chgrp [-fhv] [-R [-H | -L | -P]] group file ...usage: chroot newroot [command] _HiStOrY_V2_ a *>TVTTU;UIU-UeUWUTTTVVUUUUUuUunknown errorfirst event not foundlast event not foundempty listno next eventno previous eventcurrent event is invalidcan't read history from filecan't write historyhistory size negativebad parametersrequired parameter(s) not suppliedfunction not allowed with other history-functions-set the defaultrrrrrrrrrsssr s:sQshsstLtt$tLtLtLtLtLtLtLt1tt/.editrci0kpej ehxccetf4fj fU`uX}Y;Z= B`AR)Q8OMeN@{CHVW@KL' &5 ,-@'%6)J0W4@e#u.1(3/@2 $9*Lj+}  % @ 4 ` C V c p` }  "!?So~!    (` 8EZ h | `  &1%-15s-> %s 1 ' ""   !,-5/"""""""""""""""""""""""""""""""$""""""""""""""""""""""""#&"0"""""."""""4"%""""""""#&"0""""".""""""4"%"""""""B=   !A;""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""" "" """   !"A""""/""" """ """"""L"RZK"""Q"7I: UH""@""NG"PTWY"D"""" ""6J9<>C"? "M"F"OSVX"E"""""8""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""ϓTTTTTTTT TTTTTTTL[|\v|NULbƙڙЙf}vϡ)EfwdbckƴشlشlشششششششششششششششششششششششششششششششششZmp"}Hg_ "I ǧ1=Nǹ`orm2<{$&2[BPS`Gv{K  14DGY\Li`o\[1~[4~OAOBOCODOHOF%s %d _____\__\___\\_____________________________________________\___________@@@ a@ = =,A"'B" """" @  #) /6@=CKRX_ f@ls~@@  yk. @- @ 8*?_-.[]~=telltcsettcechotcsettyedit: Bad value `%s'. ^Dvi-paste-nextvi-paste-prevvi-prev-space-wordvi-prev-wordVi move to the previous wordvi-next-space-wordvi-next-wordVi move to the next wordvi-change-casevi-change-metaVi change prefix commandvi-insert-at-bolvi-replace-charvi-replace-modeVi enter replace modevi-substitute-charvi-substitute-lineVi substitute entire linevi-change-to-eolVi change to end of linevi-insertVi enter insert modevi-addvi-add-at-eolvi-delete-metaVi delete prefix commandvi-end-wordvi-to-end-wordvi-undoVi undo last changevi-undo-lineVi undo all changesvi-command-modevi-zerovi-delete-prev-charvi-list-or-eofvi-kill-line-prevvi-search-prevVi search history previousvi-search-nextVi search history nextvi-repeat-search-nextvi-repeat-search-prevvi-next-charvi-prev-charvi-to-next-charvi-to-prev-charvi-repeat-next-charvi-repeat-prev-charem-delete-or-listem-delete-next-wordem-yankem-kill-lineem-kill-regionem-copy-regionem-gosmacs-trasposeem-next-wordem-upper-caseem-capitol-caseem-lower-caseem-set-markSet the mark at cursorem-exchange-markExchange the cursor and markem-universal-argumentem-meta-nextem-toggle-overwriteem-copy-prev-wordCopy current word to cursorem-inc-search-nextEmacs incremental next searchem-inc-search-preved-end-of-fileIndicate end of fileAdd character to the lineed-delete-prev-worded-delete-next-charDelete character under cursored-kill-lineCut to the end of lineed-move-to-ended-move-to-beged-transpose-charsed-next-chared-prev-worded-prev-chared-quoted-inserted-digited-argument-digitDigit that starts argumented-unassignedIndicates unbound charactered-tty-sigintTty interrupt charactered-tty-dsuspTty delayed suspend charactered-tty-flush-outputTty flush output charactersed-tty-sigquitTty quit charactered-tty-sigtstpTty suspend charactered-tty-stop-outputed-tty-start-outputTty allow output charactersed-newlineExecute commanded-delete-prev-chared-clear-screened-redisplayRedisplay everythinged-start-overed-sequence-lead-ined-prev-historyed-next-historyMove to the next history lineed-search-prev-historyed-search-next-historyed-prev-lineMove up one lineed-next-lineMove down one lineed-commandEditline extended commandUnbound extended key "%s" "%s..." ""[]no input%s -> %s %-15s-> is undefined %-4s to %-7s-> %s %-15s-> %s Standard key bindings Alternative key bindings Multi-character bindings Arrow key bindings %s: Invalid switch `%c'. %s: Invalid command `%s'. *[]?add new blank lineblaudible bellclear to bottomclear to end of linecursor to horiz posclear screendelete a characterdelete a linestart delete modeend delete modeeiend insert modecursor from status linehome cursorinsert characterstart insert modeinsert paddingkdsends cursor downklsends cursor leftkrsends cursor rightkusends cursor upbegin boldend attributesnon destructive spaceend standoutbegin standoutcursor to status linecursor up onebegin underlineend underlinevbvisible belldelete multiple charscursor down multipleinsert multiple charscursor left multipleRIcursor right multiplecursor up multiplekhsend cursor home@7send cursor endhas automatic marginshas physical tabsliNumber of linescoNumber of columnskmHas meta keyTab chars destructivexnOut of termcap string space. Your terminal has the following characteristics: It has %s meta key not It can%suse tabs hasdoes not have It %s automatic margins It %s magic margins (empty) %25s (%s) == %s settc: Bad value `%s'. baudrowscolsechotc: Bad value `%s'. iflag:oflag:cflag:lflag:chars:ignbrkbrkintignparparmrkinpckistripinlcrigncricrnlixonixanyixoffimaxbelopostonlcrocrnlonocronoeotonlretxtabscignorecstopbcreadparenbparoddhupclclocalccts_oflowcrts_iflowmdmbuficanonechoeechokechonlnoflshtostopechoctlechoprtechokeflushopendiniextennokerninfoaltweraseextproceol2erase2discardmin%s: Unknown switch `%c'. %*s%c%s %s: Invalid argument `%s'. Vi paste previous deletion to the right of the cursorVi paste previous deletion to the left of the cursorVi move to the previous space delimited wordVi move to the next space delimited wordVi change case of character under the cursor and advance one characterVi enter insert mode at the beginning of lineVi replace character under the cursor with the next character typedVi replace character under the cursor and enter insert modeVi enter insert mode after the cursorVi enter insert mode at end of lineVi move to the end of the current space delimited wordVi move to the end of the current wordVi enter command mode (use alternative key bindings)Vi move to the beginning of lineVi move to previous character (backspace)Vi list choices for completion or indicate end of file if empty lineVi cut from beginning of line to cursorVi repeat current search in the same search directionVi repeat current search in the opposite search directionVi move to the character specified nextVi move to the character specified previousVi move up to the character specified nextVi move up to the character specified previousVi repeat current character search in the same search directionVi repeat current character search in the opposite search directionDelete character under cursor or list completions if at end of lineCut from cursor to end of current wordPaste cut buffer at cursor positionCut the entire line and save in cut bufferCut area between mark and cursor and save in cut bufferCopy area between mark and cursor to cut bufferExchange the two characters before the cursorMove next to end of current wordUppercase the characters from cursor to end of current wordCapitalize the characters from cursor to end of current wordLowercase the characters from cursor to end of current wordUniversal argument (argument times 4)Add 8th bit to next character typedSwitch from insert to overwrite mode or vice versaEmacs incremental reverse searchDelete from beginning of current word to cursorMove cursor to the end of lineMove cursor to the beginning of lineExchange the character to the left of the cursor with the one under itMove to the right one characterMove to the beginning of the current wordMove to the left one characterAdd the next character typed verbatimAdds to argument or enters a digitTty disallow output charactersDelete the character to the left of the cursorClear screen leaving current line at the topErase current line and start from scratchFirst character in a bound sequenceMove to the previous history lineSearch previous in history for a line matching the currentSearch next in history for a line matching the currentkey_add: Null extended-key not allowed. key_add: sequence-lead-in command not allowed key_delete: Null extended-key not allowed. Some extended keys too long for internal print buffer%s: Invalid \ or ^ in instring. %s: Invalid \ or ^ in outstring. newline ignored at right marginCannot read termcap database; No entry for terminal type "%s"; using dumb terminal settings. It has %d columns and %d lines echotc: Termcap parameter `%s' not found. echotc: Warning: unknown termcap %% `%c'. echotc: Warning: Extra argument `%s'. echotc: Warning: Too many required arguments (%d). echotc: Bad value `%s' for cols. echotc: Warning: Missing argument. echotc: Bad value `%s' for rows.   Z @} create geomdestroy geomattachdetachcreate providerdestroy providerinsert geomeliminate geomconfig geom*INVALID*Dump of gctl request at NULL error: "%s" error: NULL param: "%s" [%s%s%d] = "%s"%d] = 0] = %pCould not allocate memoryInvalid requestNULL request pointer/dev/geom.ctlDump of gctl %s request at %p: can't allocate %u bytes: %sexec file name too longbad flags arg/dev/mem/dev/kmeminvalid address (%x)kvm_readshort readkvm_write%s: not physical memory devicekvm_write not implemented for dead kernelscannot allocate vmkernbasebad namelistcannot read IdlePTDcannot read PTDvatop called in live kernel!_kvm_vatop: lseek_kvm_vatop: read                                     )                         O    o                                       G     e    9 %03dError opening terminal: %s. ESCDELAYK"%Y(+.L1 47:=@^Z&CFILORUXָo D1Oշ[^aodgfjmpsvy| ;mge_H"g7I|pum "L{&2I<[PL*ǧVɷǹo  ϴI <!$'*-03G{69<”?BE­lszHܧK[NQTWZ]`ch$filorux{~   =z        # & ) , / 2 5 8 ; > A D G ZJ M P S V Y \ 3_ b p$d$e h k n 'q t w z }                     u          B<             !!!8 ! !!!!!!!"!%!(!+!.!1!4!7!:!=!@!C!F!I!L!O!R!U!X![!^!a!d!g!j!m!p!s!v!y!|!!!!!!!!!!!!!!T&*. o!!!!!!!!!!!!!!!!!!!!Ř\o$).38=BGLQV[`!bwxbxshcdamimshzxonxHCNRNPhlYAYBYCYDYEYFYGNllhlwMWCoNCYaYbYcYdYeYfYgYhYiYjYkYlYmYnBTYoYpCCCMvshdtimhmkmraei1i3kbkakCktkDkLkMkEkSk0k1k;k2k3k4k5k6k7k8k9kIkAkHkNkPkFkRkTl0lal3l4l5l6l7l8l9monwSFSRpkpxpfpowiuciPK1K3K2K4K5pOrPkBSXRXSARAXNXFeALOLF@1@2@3@4@5@6@8@9@0%1%2%3%4%5%6%7%8%9%0&1&2&3&4&5&6&7&8&9&0*1*2*3*4*5*6*7*8*9*0#1#2#3#4%a%b%e%f%g%h%j!1!2!3RFF1F3F4F5F6F7F8F9FAFBFCFEFGFHFIFJFKFMFNFPFQFUFVFWFXFZFaFbFcFdFeFfFgFhFiFjFkFlFmFnFoFpFqFrcbMCMLMRLfDKCWWGHUQDTOPUfhPAWAu0u2u3u4u5u6u7u8u9IcIpSfSbZAZBZCZDZFZGZHZIZJZKZLZMZNZOZPZQZRZSZTZUZVZWZXZYZZZaZbZcZdZeZfZgZhZiZjZkZlZmZnZoZpZqZrZsZtZuZvZwZxZyKmMiRQGmdvciXyZzYvYwYxYyYzYZS5S6S7S8XhXlXoXrXtXvsAsLbxNCURSES_NO_PADDINGCOLORFGBG[3%p1%dm[3%?%p1%{8}%>%t9%e%p1%d%;m[4%p1%dm[4%?%p1%{8}%>%t9%e%p1%d%;m2 7 Q }  כ  Ax2d2d2dJ2d<2d,2d2d        ϭ                                         ̭                       ̭                    ۭ    ^    O  L      S  $                                U l                                "   `         R    ̺ ̺  ̺ ̺ ̺ ̺ ̺ ̺ ̺ ̺ ̺ ú  ̺ ̺ ̺ ̺ ̺ ̺ ̺ ̺ ̺ ̺ ̺  ̺ ̺ ̺ ̺ ̺ ̺ ̺ ̺ ̺ ̺ ̺ ̺ ̺ ̺ ̺ ̺ ̺ ̺ ̺ ̺ ̺ ̺ ̺ ̺ ̺ ̺ ̺ ̺ ̺  ̺ ̺ ̺ ̺ ̺ ̺ ̺ ̺ ̺ ̺   ̺ ̺ ̺ ̺ ̺ ̺ ̺ ̺ ̺ ̺  ̺ ̺ ̺  ̺ ̺ ̺ ̺  Out of memoryNCURSES_NO_SETBUFLINES'%s': unknown terminal type. TERM environment variable not set. TERM environment must be <= %d characters. Not enough memory to create terminal structure. terminals database is inaccessible '%s': I need something more specific. '%s': I can't handle hardcopy terminals. @(#)termcap.c 8.1 (Berkeley) 6/4/93TERMCAPTERMPATH/usr/share/misc/termcap|:.termcap /usr/share/misc/termcapName collision between %sresolution of use=%s failedmeta_on but no meta_offmeta_off but no meta_onprtr_off but no prtr_onprtr_on but no prtr_offlabel_off but no label_onterminal names must start with letter or digitexit_standout_mode but no enter_standout_modeenter_standout_mode but no exit_standout_modeexit_underline_mode but no enter_underline_modeenter_underline_mode but no exit_underline_mode``aaffggiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~exit_alt_charset_mode but no enter_alt_charset_modeenter_alt_charset_mode but no exit_alt_charset_modeenter_alt_charset_mode but no acs_charsexit_alt_charset_mode but no acs_charsenter_blink_mode but no exit_attribute_modeenter_bold_mode but no exit_attribute_modeenter_ca_mode but no exit_ca_modeexit_ca_mode but no enter_ca_modeexit_delete_mode but no enter_delete_modeenter_delete_mode but no exit_delete_modeenter_dim_mode but no exit_attribute_modeexit_insert_mode but no enter_insert_modeenter_insert_mode but no exit_insert_modeenter_secure_mode but no exit_attribute_modeenter_protected_mode but no exit_attribute_modeenter_reverse_mode but no exit_attribute_modeto_status_line but no from_status_linefrom_status_line but no to_status_linerestore_cursor but no save_cursorsave_cursor but no restore_cursorexit_xon_mode but no enter_xon_modeenter_xon_mode but no exit_xon_modeexit_am_mode but no enter_am_modeenter_am_mode but no exit_am_moderemove_clock but no display_clockdisplay_clock but no remove_clockset_color_pair but no initialize_pair/usr/share/misc/terminfoTERMINFO%c/%.*sTERMINFO_DIRS;;;"hoH;_;e6<<I <<<<%<p)</<5<:<ܧ?<  Entry does not start with terminal names in column one%s (%s termcap extension) aliased to %s%s (%s terminfo extension) aliased to %swrong type used for %s capability '%s'%s (%s termcap extension) ignored%s (%s terminfo extension) ignoredhardware tabs with a width other than 8: %dhardware tabs with a non-^I tab string %sunknown capability `%.*s' in ko stringko translation table is invalid, I give up%s (%s) already has an explicit value %s, ignoring koacsc string synthesized from XENIX capabilitiesacsc string synthesized from AIX capabilitiesprimary namealias%s `%.*s' may be too longextended capability '%s'unknown capability '%s'numericbooleanunknown token typekil1kcbtkelkclrkdch1kdl1kcud1krmirkhomekich1kICkcub1kcuf1kentkhtskcuu1%s$<%d>no value for ko capability %s%s/.terminfo@%&*!#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 [9 [9 [9 [9 [9 [9 [9 Q9 [9 [9 [9 [9 [9 [9 [9 [9 [9 [9 [9 [9 [9 V9 [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 [9 [9 [9 [9 [9 [9 G9 [9 L9 [9 [9 $9 39 [9 [9 9 =9 [9 [9 [9 [9 [9 )9 [9 )9 [9 [9 [9 .9 89 B9 premature EOFempty longname field$[]!*?no value given for `%s'Missing separatorIllegal character - %sIllegal ^ character - %sAllow ^? as synonym for \177Premature EOFIllegal character (expected alphanumeric or %s) - %swhitespace in name or alias fieldslashes aren't allowed in names or aliasesdubious character `%c' in name or alias fieldSeparator inconsistent with syntaxMissing separator after `%s', have %sNon-octal digit `%c' in \ sequenceIllegal character %s in \ sequenceVery long string found. Missing separator?Can't backspace off beginning of lineKԑܑؑ%Y  (  < L1 3 ! '!,"0#5$!\:O>B^ a o G R LP.V\bhngrx| D;46IP ҵ I<   *<0<@<Ò< <ɒ͒Ӓْߒ !w"y#$%&'е( )<*+,-L*.!/%0)1;-2Lɷ3 <4;5ǹ61758;9b::<;<< <=<>;?ho@@ADBHCMDQEUFYG=]HaIeJiK<L<M;N)<OmPqQuR/<SyT7~Ui:<V?<WQXYZ[\]^!_`abc^defghijyk$lœmSn~opʓqrΓs3ԓtړuޓvwx0yz{|~}­~gK[  "';+17<AFLRW\afkpu6z5<F ŔPʔϔԔٔޔe  %<"H',16;@EJOTY^chlqv{+ !"#$%&ƕ˕(Е)Օ*ڕ+ߕ,-./0234 5678 9%:*/<4=9>>?C@HAMBRCWD\a Ff Gk Hp Iu y}OL% B<  ! " # $ % & ' ()*+,ǖ-˖.EЖ/Ֆ0ٖ1ݖ23456789: ;<N=>!?%@+A0B4C:Dp?EEFKGOHTIZJ`K5fLkM/qNxO}PQRSTUVWXYZ[X\]Ɨ^|̗_җ`חaݗb[c2defWghij klmnmo"p(q.r4s:t?uGvMwSx\ytczi{o|u}Rz~ØȘ͘!Ҙ%ט&ܘ'"# ()$% &*+"',16;@EJO<TyY^c,WMVMKGIEUTQDB4RILDMW0GS$SR0VOdRX SVJ(C8EFTGW Q,B`GU0JlGQ BMLXQDLEP|IGH?@ABCDEFGHIJKLMNOPQ RS TUVWϴXIYZ <[\#]^_!`$a'b*c-d0efx3ghijGk{l6mnopo9qr<s”t?uvBwExyz{|}­~lszHܧK[NQTWZ]`c%h$fiulorux~{~tamd v`W   =z      z  # & .) ', / 2 X5 (8 ; > /A D G Z5J 6M 7P 8S 9V :;Y <\ =3>_ ?b @p$AdB$De Eh k n 'q t w z }     ^                     u          B<  ! " # $ % & ' ()* + ,- . / 0!1!2!384 !50 !6!7!8!9!:!;!<"!=%!>(!?+!@.!A1!B4!C7!Dg:!E=!Fh@!GC!HF!II!JL!KO!LR!MU!NX!O[!P^!Qa!Rd!Sg!Tj!Um!Vp!Ws!Xv!Yy!Z|![!\!]!^!_!`!a!b!c!d!e!fghi!j!kTl&mC*n.o pUoq!r!s!t!u!v!w!x!yz{|}e!~f!g!h!i!!!!!!!!Ř\!%&ָ'"#o()$% &o{ *+$).38=BGLQV[`!%t%+%;%/%+%c%-%c%2d%3d%\$</>\%03o%>%%?%%{%d}%%>%%t%%{%d}%%+%%;%%?%%{%d}%%>%%t%%'%c'%%+%%;%%?%%'%c'%%>%%t%%{%d}%%+%%;%%?%%'%c'%%>%%t%%'%c'%%+%%;%B%%{%d}%%+%%c%%'%c'%%+%%c%D%ndoxX.%.%runknown %% code %s (%#x) in %sAXDXGXJXMXPXSXVXYXz\X_XbXeXhXkXnXqXtXwXzX}XXXXXXXXX^X@\6TY:rnc6uy.n;XUjO>Mg,LrBXzy|[igT b wAί)i]>'<uW:r b(*f?]9h YH)NI't@]q u:soXâƢɢ̢ϢҢբآۢޢ   "$&(*,.02468:<>@BDFHJLNPRTVXZ\^`bdfhjlnprtvxz|~`~@~A~B~C~D~E~F~G~H~I~J~K~L~M~N~O~P~Q~R~S~T~U~V~W~X~Y~Z~[~\~]~^~_\%03lo(null)(cancelled), line %d, col %d, terminal '%s'2Kn,X   `  %KKԑܑؑ%Y(<L1 3 !',05Ҙטܘ|yҴߴ &7JVi~ȵֵ.>Tdt϶ !\:O>B^aoGRLPV\bhngrx|͘ Q2!\<L`rȷط .@O^n}ǸҸ #9HXm;46IPҵ<*<0<@<Ò< <ɒ͒Ӓْߒwyе <L*!%)-ɷ <;ǹ15;:<< <<;ho@DHMQUY]aei<<;)<mqu/<y~:<?<y$œS~ʓΓԓړޓ0­gK[  "';+17<AFLRW\afkpuz5< ŔʔϔԔٔޔ %<"',16;@EJOTY^chlqv{ƕ˕ЕՕڕߕ  %*/49>CHMRW\afkpuy} B<        ǖ˖ЖՖٖݖ !%+04:?EKOTZ`fkqx}Ɨ̗җחݗ2 "(.4:?GMS\ciouzØȘ"',16;@EJOTY^cx*tǹٹ0>KXbqɺٺ,ATh}ѻ  1>KXb8sļ̼Լܼ#*3:AJQ[eov}ýʽѽؽ߽F*_*ٵ(3DUgs*w*Ǿվ '6>?IXgt~˿Կ )*1;CNXdmx'3>GS\eq~)7BLYdoy&.6>FNV^fnv~&.6>FN\l} %+17=CMYjz !4HYs"3G]n /F[q.8CQ[l}.:Rgv2EWk}*7DQZcluauto_left_marginno_esc_ctlcceol_standout_glitcheat_newline_glitcherase_overstrikegeneric_typehard_copyhas_status_lineinsert_null_glitchmemory_abovememory_belowmove_insert_modemove_standout_modeover_strikestatus_line_esc_okdest_tabs_magic_smsotilde_glitchtransparent_underlineneeds_xon_xoffprtr_silenthard_cursornon_rev_rmcupno_pad_charnon_dest_scroll_regioncan_changeback_color_erasehue_lightness_saturationcol_addr_glitchcr_cancels_micro_modehas_print_wheelrow_addr_glitchsemi_auto_right_margincpi_changes_reslpi_changes_resbackspaces_with_bscrt_no_scrollingno_correctly_working_crgnu_has_meta_keylinefeed_is_newlinehas_hardware_tabsreturn_does_clr_eolinit_tabslines_of_memorymagic_cookie_glitchpadding_baud_ratevirtual_terminalwidth_status_linenum_labelslabel_heightlabel_widthmax_attributesmaximum_windowsmax_colorsmax_pairsno_color_videobuffer_capacitydot_vert_spacingdot_horz_spacingmax_micro_addressmax_micro_jumpmicro_col_sizemicro_line_sizenumber_of_pinsoutput_res_charoutput_res_lineoutput_res_horz_inchoutput_res_vert_inchprint_ratewide_char_sizebuttonsbit_image_entwiningbit_image_typemagic_cookie_glitch_ulcarriage_return_delaynew_line_delaybackspace_delayhorizontal_tab_delaynumber_of_function_keysback_tabchange_scroll_regionclear_all_tabsclear_screenclr_eoscommand_charactercursor_addresscursor_downcursor_homecursor_invisiblecursor_leftcursor_mem_addresscursor_normalcursor_rightcursor_to_llcursor_upcursor_visibledelete_characterdis_status_linedown_half_lineenter_alt_charset_modeenter_blink_modeenter_bold_modeenter_ca_modeenter_delete_modeenter_dim_modeenter_insert_modeenter_secure_modeenter_protected_modeenter_reverse_modeenter_standout_modeenter_underline_modeerase_charsexit_alt_charset_modeexit_attribute_modeexit_ca_modeexit_delete_modeexit_insert_modeexit_standout_modeexit_underline_modeflash_screenform_feedfrom_status_lineinit_1stringinit_2stringinit_3stringinit_fileinsert_characterinsert_paddingkey_backspacekey_catabkey_clearkey_ctabkey_dckey_dlkey_downkey_eickey_eolkey_eoskey_f0key_f1key_f10key_f2key_f3key_f4key_f5key_f6key_f7key_f8key_f9key_homekey_ickey_ilkey_leftkey_llkey_npagekey_ppagekey_rightkey_sfkey_srkey_stabkey_upkeypad_localkeypad_xmitlab_f0lab_f1lab_f10lab_f2lab_f3lab_f4lab_f5lab_f6lab_f7lab_f8lab_f9parm_dchparm_delete_lineparm_down_cursorparm_ichparm_indexparm_insert_lineparm_left_cursorparm_right_cursorparm_rindexparm_up_cursorpkey_keypkey_localpkey_xmitprint_screenrepeat_charreset_1stringreset_2stringreset_3stringreset_filerestore_cursorsave_cursorscroll_forwardscroll_reverseset_attributesset_tabset_windowto_status_lineunderline_charup_half_lineinit_progkey_a1key_a3key_b2key_c1key_c3prtr_nonchar_paddingacs_charsplab_normkey_btabenter_xon_modeexit_xon_modeenter_am_modeexit_am_modexon_characterxoff_characterena_acslabel_offkey_begkey_cancelkey_closekey_commandkey_copykey_createkey_endkey_enterkey_exitkey_findkey_helpkey_markkey_messagekey_movekey_nextkey_openkey_optionskey_previouskey_printkey_redokey_referencekey_refreshkey_replacekey_restartkey_resumekey_savekey_suspendkey_undokey_sbegkey_scancelkey_scommandkey_scopykey_screatekey_sdckey_sdlkey_selectkey_sendkey_seolkey_sexitkey_sfindkey_shelpkey_shomekey_sickey_sleftkey_smessagekey_smovekey_snextkey_soptionskey_spreviouskey_sprintkey_sredokey_sreplacekey_srightkey_srsumekey_ssavekey_ssuspendkey_sundoreq_for_inputkey_f11key_f12key_f13key_f14key_f15key_f16key_f17key_f18key_f19key_f20key_f21key_f22key_f23key_f24key_f25key_f26key_f27key_f28key_f29key_f30key_f31key_f32key_f33key_f34key_f35key_f36key_f37key_f38key_f39key_f40key_f41key_f42key_f43key_f44key_f45key_f46key_f47key_f48key_f49key_f50key_f51key_f52key_f53key_f54key_f55key_f56key_f57key_f58key_f59key_f60key_f61key_f62key_f63clr_bolclear_marginsset_left_marginset_right_marginlabel_formatset_clockdisplay_clockremove_clockcreate_windowgoto_windowhangupdial_phonequick_dialflash_hookfixed_pausewait_toneuser0user1user2user3user4user5user6user7user8user9orig_pairorig_colorsinitialize_colorinitialize_pairset_color_pairset_foregroundset_backgroundchange_char_pitchchange_line_pitchchange_res_horzchange_res_vertdefine_charenter_doublewide_modeenter_draft_qualityenter_italics_modeenter_leftward_modeenter_micro_modeenter_near_letter_qualityenter_normal_qualityenter_shadow_modeenter_subscript_modeenter_superscript_modeenter_upward_modeexit_doublewide_modeexit_italics_modeexit_leftward_modeexit_micro_modeexit_shadow_modeexit_subscript_modeexit_superscript_modeexit_upward_modemicro_column_addressmicro_downmicro_leftmicro_rightmicro_row_addressmicro_uporder_of_pinsparm_down_microparm_left_microparm_right_microparm_up_microselect_char_setset_bottom_marginset_bottom_margin_parmset_left_margin_parmset_right_margin_parmset_top_marginset_top_margin_parmstart_bit_imagestart_char_set_defstop_bit_imagestop_char_set_defsubscript_characterssuperscript_charactersthese_cause_crzero_motionchar_set_nameskey_mousemouse_inforeq_mouse_posget_mouseset_a_foregroundset_a_backgroundpkey_plabdevice_typecode_set_initset0_des_seqset1_des_seqset2_des_seqset3_des_seqset_lr_marginset_tb_marginbit_image_repeatbit_image_newlinebit_image_carriage_returncolor_namesdefine_bit_image_regionend_bit_image_regionset_color_bandset_page_lengthdisplay_pc_charenter_pc_charset_modeexit_pc_charset_modeenter_scancode_modeexit_scancode_modepc_term_optionsscancode_escapealt_scancode_escenter_horizontal_hl_modeenter_left_hl_modeenter_low_hl_modeenter_right_hl_modeenter_top_hl_modeenter_vertical_hl_modeset_a_attributesset_pglen_inchtermcap_init2termcap_resetlinefeed_if_not_lfbackspace_if_not_bsother_non_function_keysarrow_key_mapacs_ulcorneracs_llcorneracs_urcorneracs_lrcorneracs_lteeacs_rteeacs_bteeacs_tteeacs_hlineacs_vlineacs_plusmemory_lockmemory_unlockbox_chars_1invalid hostname/var/log/wtmp\\#0123456789%s: illegal option -- %c %s: option requires an argument -- %c A                                     A      [                       n o 1 A ~         `                   n  Y Y   n     B   8   [     Ǚ  %m/%d/%y%Y-%m-%d%H:%M%H:%M:%Sshut up gccREG_NOMATCHregexec() failed to matchREG_BADPATinvalid regular expressionREG_ECOLLATEinvalid collating elementREG_ECTYPEinvalid character classREG_EESCAPEtrailing backslash (\)REG_ESUBREGinvalid backreference numberREG_EBRACKbrackets ([ ]) not balancedREG_EPARENparentheses not balancedREG_EBRACEbraces not balancedREG_BADBRinvalid repetition count(s)REG_ERANGEinvalid character rangeREG_ESPACEREG_BADRPTREG_EMPTYempty (sub)expressionREG_ASSERTREG_INVARGREG_0x%xrepetition-operator operand invalid"can't happen" -- you found a buginvalid argument to regex routine*** unknown regexp error code *** 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   t  0   >   X   n          " #          alnumblankcntrllowerpunctupperxdigitNULSOHSTXETXEOTENQBELalertBSVTvertical-tabform-feedcarriage-returnSODC1DC2DC3DC4NAKSYNETBEMSUBESCIS4IS3IS2IS1exclamation-markquotation-marknumber-signdollar-signpercent-signampersandapostropheleft-parenthesisright-parenthesisasteriskplus-signcommahyphenhyphen-minusperiodfull-stoptwothreefourfivesixsevenninesemicolonless-than-signequals-signgreater-than-signquestion-markcommercial-atleft-square-bracketbackslashreverse-solidusright-square-bracketcircumflexcircumflex-accentunderscorelow-linegrave-accentleft-braceleft-curly-bracketvertical-lineright-braceright-curly-brackettildeDEL[:<:]][:>:]]/etc/mac.confdefault_file_labels# default_ifnet_labelsdefault_process_labels.=security.mac..enabledsecurity.macNLSPATHMessage Catalog System*nazgul*%s: %s has %ld sets! %s: no more memory.%s: corrupt file./usr/share/nls/%L/%N.cat:/usr/share/nls/%N/%L:/usr/local/share/nls/%L/%N.cat:/usr/local/share/nls/%N/%L%s: %s is version %ld, we need %ld. RSHrcmd: getaddrinfo: %s rcmd: socket: %s connect to address %s: rcmd: too many files rcmd: accept: %s rcmd: %s: %s /etc/hosts.equiv/.rhosts.rhosts lstat failed.rhosts not regular file.rhosts fstat failedbad .rhosts ownerrcmd: socket: All ports in use rcmd: write (setting up stderr): %s rcmd: select (setting up stderr): %s select: protocol failure in circuit setup socket: protocol failure in circuit setup. .rhosts writeable by other than owner0 1 1 1 1 1  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 /2 :2 :2 :2 :2 :2 :2 :2 :2 :2 :2 :2 :2 P2 P2 P2 P2 P2 \2 c2 j2 v2 2 2 2 \3 ISO_EUCja_JPeucJPko_KReucKRzh_CNeucCNPOSIXUS-ASCIIL6 p6 p6 p6 p6 p6 p6 6 6 (6 5 6 46 5 p6 p6 p6 p6 p6 p6 p6 p6 p6 p6 p6 p6 p6 p6 p6 p6 p6 p6 @6 0%X[8 8 6: V: f: : : : &: ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; &: ; ; ; ; ; ; ; ; ; ; ; 9 9 9 9 9 9 9 9 ; ; ; ; ; ; ; ; ; ; ; ; ; : ; ; ; ; ; ; ; 9 ; ; ; ; ; ; ; ; ; ; ; ; ; ; 9 ; N: ; ; 9 9 ; ; ; : ; ; ; ; ; ; ; 9 ; ; ; 9 : : ; 9 nosappndnosappendnoarchnoarchivednoschgnoschangenosimmutablenosunlnknosunlinknosnapshotnouappndnouappendnouchgnouchangenouimmutablenodumpnoopaquenouunlnknouunlink ,$Oy-26k:>C.sGLPUZ_dglqx}2$'3?J_r|&:Nd Signal 0abrtemtfpebussegvsystermurgcontchldttinttouioxcpuxfszvtalrmprofwinchusr1usr2HangupInterruptQuitIllegal instructionTrace/BPT trapAbort trapEMT trapFloating point exceptionKilledBus errorSegmentation faultBad system callBroken pipeAlarm clockTerminatedUrgent I/O conditionSuspended (signal)SuspendedContinuedChild exitedStopped (tty input)Stopped (tty output)I/O possibleCputime limit exceededFilesize limit exceededVirtual timer expiredProfiling timer expiredWindow size changesInformation requestUser defined signal 1User defined signal 2C D D D D D D D D D D D D D D C D D D D D D D C D D  max uid value (%lu)%s uid is incorrectroot uid should be 0no gid for user %s%s > max gid value (%lu)%s gid is incorrectwarning, unknown root shellcorrupted entry%s > recommended max uid value (%u)%s > recommended max gid value (%u)XpHZ \  ] /bin/csh/etc/shellsshells-XXXXXshells-%dinitshellsHESIOD_CONFIG/etc/hesiod.confHES_DOMAINrhs-extensionlhsrhsclassesstringlist: %m~r ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ o ~ ~ ~ ~ o ~ ~ ~ ~ ~ p p p p p p p p p p ~ ~ ~ ~ ~ ~ ~ ~ ~ fq ~ q q q ~ ~ ~ ~ ap ~ ~ ~ ~ ~ ~ &q ~ ~ ~ ~  q ~ ~ 7q ~ ~ ~ ~ ~ ~ ~ mq p q q q mp p p ~ p ~ q p ~q 4p ~ -q Cp p ~ ~  q ~ Rp !s t yw 6z | { m{ { m{ m{ z z z z z z z z z z m{ m{ m{ m{ m{ m{ m{ z z z z z z 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{ z z z z z z m{ m{ m{ m{ m{ m{ m{ m{ m{ m{ m{ m{ m{ m{ m{ m{ m{ { | -} | -} -} | | | | | | | | | | -} -} -} -} -} -} -} -} -} -} -} } -} -} -} -} -} -} -} -} -} -} -} -} -} -} -} -} -} -} -} -} -} -} -} -} -} -} -} -} -} -} -} } ؗҜ<3#I9=D2[%Cod(                                             ؉ @?A5?55?5?/LC_COLLATE1.0 1.1 __collate_substitute__collate_strdup   ֦    abcdefABCDEFCould not get %s transportloopbacksvc%s_create: could not open connection<pmap_getportaddress != NULL/usr/src/lib/libc/rpc/pmap_getport.cnetpathclnt_raw_callclntraw_create - Fatal header serialization error./usr/src/lib/libc/rpc/clnt_raw.cinetcould not close() fd %d; mem & fd leakclnt_dg_create: out of memory      ' .   {      K     sunrpcff02::202datagram_nclnt_bcast: cannot sendbroadcast packetclnt_bcast: Cannot send broadcast packetclnt_bcast: Cannot receive reply to broadcastauthunix_marshalauthunix_validateauthunix_refreshauthunix_destroymarshal_new_authauthunix_create: out of memory/usr/src/lib/libc/rpc/auth_unix.cauth_none.c - Fatal marshalling problemauth != NULLxdrs != NULLverf != NULLxdr_callmsgcmsg != NULL/usr/src/lib/libc/rpc/rpc_callmsg.cpmap_rmtcallxdr_rmtcall_argsxdr_rmtcallresaddr != NULLport_ptr != NULLcap != NULLcrp != NULL/usr/src/lib/libc/rpc/pmap_rmt.cxdr_pmapregs != NULL/usr/src/lib/libc/rpc/pmap_prot.c%s : %sclnt_vc_createread_vcout of memoryclnt_vc_createclnt_vc_callclnt_vc_geterrclnt_vc_freeresclnt_vc_control`    ` `   ` `     $ 8 L ` clnt_vc_destroyvc_cv == (cond_t *) NULLvc_cv != (cond_t *) NULLcl != NULLerrp != NULL/usr/src/lib/libc/rpc/clnt_vc.cxdr_authunix_parms/usr/src/lib/libc/rpc/authunix_prot.cauthnone_marshal/usr/src/lib/libc/rpc/auth_none.cxdr_reference: out of memory  d  `  0  xdrrec_create: out of memoryd  h    $ \   h    H \ xdr_array: out of memory     ~?~?            " " n! |! ! ! ! ! " circuit_vdatagram_vcircuit_nudp6tcp6inet6unix%s.%u.%urpc: failed to open /etc/netconfigxdr_opaque_authxdr_des_blockxdr_accepted_replyk, , w, , , , xdr_rejected_reply+ , xdr_replymsgxdr_callhdracceptedP/ (/ 0/ 8/ @/ H/ rejected_seterr_reply0 0 0 0 0 0 v0 0 0 0 0 0 0 0 0 0 0 0 blkp != NULLar != NULLrr != NULLrmsg != NULLerror != NULL/usr/src/lib/libc/rpc/rpc_prot.cxdr_bytes: out of memoryxdr_string: out of memoryNETPATH ); M M L M M M M M M  M M M L 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 Netconfig database not foundNot enough memoryNot initialized/etc/netconfigin /etc/netconfig. or run mergemaster(8). Continuing in 10 seconds tpi_cots_ordtpi_cotstpi_cltstpi_rawNetconfig database has invalid formatNetid not found in netconfig databaseThe local transport is called "unix" Please change this to "local" manually See UPDATING entry 20021216 for details. This warning will be removed 20030301 Unknown network selection errorT ` T ` ` ` ` ` ` ` res_send: %s ([%s].%s): %s res_send: %s: %s ;; res_send() kqueuesocket(vc)connect/vcwrite failedread failed;; response truncated read(vc);; old answer (unexpected): socket(dg)connect(dg)sendtos out-of-boundskevent;; timeout recvfrom;; undersized: %d ;; old answer: ;; not our server: ;; wrong query name: server rejected query: ;; truncated answer ;; got answer: ;; Querying server (# %d) address = %s HH|r  Dw HXu  w # 0123456789abcdefghbynameghbyaddr/etc/hostsip6.arpaip6.int% 4   4 4 ;; res_query(%s, %d, %d) ;; res_query: mkquery failed;; res_query: send error;; rcode = %d, ancount=%d HOSTALIASES;; res_querydomain(%s, %s, %d, %d) ;; res_mkquery(%d, %s, %d, %d) /&LOCALDOMAIN/etc/resolv.confdomainnameserversortlistRES_OPTIONSenvndots:;; ndots=%d ;; debuginsecure1insecure2no_tld_queryedns0;; res_setoptions("%s", "%s")... ;; res_setoptions("%s", "%s").. ~? ~? ~? HHܼ   gethostby*.getanswer: asked for "%s", got "%s"B N 6 * N N Invalid value for ai_flagsai_family not supportedMemory allocation failureai_socktype not supportedInvalid value for hintsResolved protocol is unknownUnknown errorgetaddrinfoGAIhosts.bynameipnodes.byname;; rcode = %u, ancount=%u ;; res_querydomain(%s, %s) Address family for hostname not supportedTemporary failure in name resolutionNon-recoverable failure in name resolutionNo address associated with hostnamehostname nor servname provided, or not knownservname not supported for ai_socktypeSystem error returned in errnogethostby*.getanswer: asked for "%s %s %s", got type "%s"%d/%sservices.byportservices.byname/etc/services,/""R'&"-"7"B"G"T"7"zy{B["g""""""""""" " g "% ## ##3+#?#B#Q#U#ѰZ#m#s#####u#####ͳ##Mg###%##x$2%$& $@&!$$".$3$O$T$n$`$s$`&y$$#$$R$?         ?     l    l              ?         ?     l    l                                                    ;; res options:;; ns_parserr: %s ;; %s SECTION: ;; %s, type = %s, class = %s ;; ns_sprintrr: %s ;; ns_initparse: %s ; flags: qr aa tc rd ra ?? ad cd; %s: %d, %s: %dCHAOSHESIODANSWERAUTHORITYADDITIONALZONEPREREQUISITEUPDATEname servermail destination (deprecated)MFmail forwarder (deprecated)CNAMEcanonical nameSOAstart of authorityMBmailboxMGmail group membermail renameWKSdomain name pointerHINFOhost informationmailbox informationMXmail exchangerTXTtextresponsible personAFSDBDCE or AFS serverX25X25 addressISDNISDN addressrouterNSAPnsap addressNSAP_PTRsignatureKEYPXmapping informationGPOSAAAAIPv6 addresslocationEIDNIMLOCSRVserver selectionATMAATM address (unimplemented)IXFRincremental zone transferAXFRMAILBMAILAmail agent (deprecated)NAPTRURN Naming Authority"any"defnamusevcaaonly(unimpl)igntcprimry(unimpl)recursdnsrchstyopnnoaliasesno-tld-query?0x%lx?%ld.%.2ld;; ->>HEADER<<- opcode: %s, status: %s, id: %d well-known service (deprecated)geographical position (withdrawn)next valid name (unimplemented)endpoint identifier (unimplemented)NIMROD locator (unimplemented)mailbox-related data (deprecated); error: unknown LOC RR version%d %.2d %.2d.%.3d %c %d %.2d %.2d.%.3d %c %d.%.2dm %sm %sm %smIQUERYCQUERYMCQUERYUNOTIFYZONEINITZONEREFNOERRORFORMERRSERVFAILNXDOMAINNOTIMPREFUSEDYXDOMAINYXRRSETNXRRSETNOTAUTHZONEERRNOCHANGEPREREQUISITES             3 S 0 . S 0  3 0    M          K addlen@ ( ; serial ; refresh ; retry ; expiry ); minimum %u %u %u %u ( 0x%04x %u %u %s %d %lu unknown RR typeRR format error\#( ; %s%02x ; "\len <= *buflen/usr/src/lib/libc/net/ns_print.cABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=Assertion failed: (%s), file %s, line %d. Assertion failed: (%s), function %s, file %s, line %d. hhhhhhhhhhhh(hhhHvector_appendnss_load_modulenss_method_lookup/etc/nsswitch.confnss_%s.so.%dnss_module_registerNSSWITCH(%s): %s, %sNSSWITCH(%s): memory allocation failureNSSWITCH(%s): %s, registration failedNSSWITCH(%s): %s, %s, %s, not foundhosts.byaddr           !#$%&'()*+,-./0123456789:;<=>?@ACDEFGHJKMOQSS    DEAE216+-.99+&%/ /E!()*!!# E:::::;<<<<<<<::;<<<<<<<:<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<::   9876543210/.-,+*)('&%$#"! ::::::::::::::::::::::::;<;53210/-,+*)('&%$#"!  ::::::::::::::::::::::::2---_/i/s/}/////k0x000NSSWITCH(nslexer): memory allocation failurefatal flex scanner internal error--no action foundfatal flex scanner internal error--end of buffer missedinput buffer overflow, can't enlarge buffer because scanner uses REJECTout of dynamic memory in yy_create_buffer()out of dynamic memory in yy_scan_buffer()out of dynamic memory in yy_scan_bytes()NSSWITCH(nslexer): %s line %d: %s at '%s'input in flex scanner failedbad buffer in yy_scan_bytes()@BHB@BHBHBHBHBHBHBHBHBHB@BHBHBHBHBHBHBHBHBHBHBHBHB@BHBHBHBHB@BHBHBHBHBHBHBHBHBHBHBHBHBHBHBHBHBHBHBHBHBHBHBHBHBHBHBHB@B01234567890123456789abcdef0123456789ABCDEF[inet_ntoa error]syslog: unknown facility/priority: %x%.15s [%d]/dev/console/var/run/log/dev/logUnknown error: GMTmn/etc/localtime/usr/share/zoneinfoposixrulesTZSunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec%.3s %.3s%3d %02d:%02d:%02d %d %u.%u.%u.%u               unionfstt|/usr/bin:/bin:/usr/sbin:/sbin:%$sniglet^&/tmp%s/bt.XXXXXXXXXX0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz/dev/urandom<ubOobUH:,0123456789abcdef0123456789ABCDEFl  ~       3BBBBBBBBB         N                        U''  s%$ 0  !  ?6!6!6!6!6!6!6!6!6!6!6!6!6!6!6!6!6!6!~6!6!6!6!6! 6!6!6!6!6!6!6!6!6!6!6!6!6!6!6!6!6!6!96!E6!]6!f6!6!6!r!!!!!!!!!!!!!!!!!!!!!!!!!nanNANinfINF3t33t333t3X33X385-485V485854V4854 > >%>D>,>K>InfinityNaN?aCoc?`(?yPD?@@PI8IDIPIIPIPIPI,IPIPIPIPIPIPIPI IRQQQQSSSSST}-<2ZGUD?mpool_new: page allocation overflow. 7yACnF?O8M20HwZ FS^Ƚcg;>@" *@5S^@,%@(#) Copyright (c) 1992, 1993, 1994 The Regents of the University of California. All rights reserved. ;>@" *@5S^%X_doi;>@" *@5S^,%##.`BBC@C&X=XPAXDXGXJXMXPXSXVXYXd\X_XbXeXhXkXnXqXtXwXzX}XXXXXXXXX^Xׇ+YY{{{E9a^?~b}o}xo}ooo@abcdefghijklmnopqrstuvwxyz0123456789 X-Yܸzyb )Lsend account command to remote serverappend to a fileset ascii transfer typebeep when command completedset binary transfer typetoggle mget upper/lower case id mappingchange remote working directorychange remote working directory to parent directorychange file permissions of remote fileconnect to remote ftp servertoggle carriage return stripping on ascii getstoggle/set debugging modedelete remote fileterminate ftp sessionexecute macrotoggle command line editingtoggle use of EPSV/EPRT on IPv4 ftpshow FEATures supported by remote systemset file transfer formattoggle gate-ftp; specify host[:port] to change proxytoggle metacharacter expansion of local file namestoggle printing `#' marks; specify number to set sizeprint local help informationget (set) idle timer on remote sidechange local working directoryview a local file through your pagerprint local working directorylist contents of remote pathdefine a macrodelete multiple filesget multiple filesget multiple files restarting at end of local fileget files using a localfile as a source of namesmake directory on the remote machinelist contents of multiple remote directorieslist contents of remote directory in a machine parsable formlist remote path in a machine parsable formset file transfer modeshow last modification time of remote filesend multiple filesget file if remote file is newer than local file set templates for default file name mappingset translation table for default file name mappingshow or set options for remote commandsview a remote file through your pagerenter passive transfer modelist contents of remote path through your pagerlist contents of remote directory in a machine parsable form through your pagertoggle use of PORT/LPRT cmd for each data connectiontoggle preservation of modification time of retrieved filestoggle transfer progress meterforce interactive prompting on multiple commandsissue command on alternate connectionprint working directory on remote machineterminate ftp session and exitsend arbitrary ftp commandset transfer rate limit (in bytes/second)receive fileget file restarting at end of local fileget help from remote serverrename fileclear queued command repliesrestart file transfer at bytecountremove directory on the remote machineshow status of remote machinetoggle store unique for local filessend one fileset or display optionsescape to the shellsend site specific command to remote server Try "rhelp site" or "site help" for more informationshow size of remote fileshow current statusset file transfer structuretoggle store unique on remote machineshow remote system typeset tenex file transfer typetoggle packet tracingset file transfer typeget (set) umask on remote sideunset an optionshow command usagesend new user informationtoggle verbose modeset socket send/receive buffer sizeITYr4l`T%|ܸJx̿˗l"%011n+`l yZlǢlh$%|m~2w m`Zã}Rk@ܣmFm HFb^!m*m{)L0m6mߤ\F@˦<Qh3.3t@h¨ɨ, @yk@ @-*C]chiϩ o`..!=9.R.X^=x..^=..Ȫ=.LѪ@ܪL @ .ܪ@` th .ܪconnect to a siteclose current connectionforcibly logout remote user and close the connectionexit telnetprint status informationprint help informationtransmit special characters ('send ?' for more)set operating parameters ('set ?' for more)unset operating parameters ('unset ?' for more)toggle operating parameters ('toggle ?' for more)change state of special charaters ('slc ?' for more)display operating parameterssuspend telnetcompute response to OPIE challengeinvoke a subshellchange environment variables ('environ ?' for more)try to enter line or character mode ('mode ?' for more)RX=U4- tktyշh Ӽ`R6m lrùZ ;P(pdeprecated command -- use 'toggle crmod' insteaddeprecated command -- use 'set escape' instead.P """"> ]!%(+l/25:G?DHOSk eqv{ůЯ#.=DPX]djs|İ˰!%(+ >l[ Ѱ԰?Xڰ (standard output)/etc/gettytab@(#)history.c 8.1 (Berkeley) 6/4/93? :@(#)tokenizer.c 8.1 (Berkeley) 6/4/93`ly x $FreeBSD: src/lib/msun/src/s_ilogb.c,v 1.7 2002/05/28 17:51:46 alfred Exp $`< \]^7ba_`c8V9Mdefg:U;J<H=>LhW?O@NiAB CD  !"#$%E &'()*+,-./F 0123456789G :;<=>?@ABCH D E F GIJKjkLMKNIOP[lmcnoQRpqRSrZstuvwxSyz{|}~TPUQVTW 2%%p%c%%{10}%%/%%{16}%%*%%p%c%%{10}%%m%%+@(#) Copyright (c) 1994 Powerdog Industries. All rights reserved.@(#)strptime.c 0.1 (Powerdog) 94/03/27]i"?Jfq    U `(3 (.4Z:<@ F L SW[_cgFkou1^ ?   x { Z    5id3 !"#$%!&+'6(G)Y*b+l,r-y-..%/3/0.123456789:;<=>?@ [!\+\;]P^[^m_x_`{{|}}~sHQ[bmt~  R V \  *4=DSZ`\gltz                                                        `ags~CCCCCCC d  X    545 ` `/Gd d'@Bʚ;'&'''T">M_T'&'.'6'>'G'P'W'_'h'p'x''_T'B"'T"7"x   @ [0123456789@(#)localtime.c 7.57WILDABBRII@(#)asctime.c 7.7RuneMagiNONE}~BBBBB@(((((((((((((((          (((((((    ((((((    ((((  !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~ 0000000000000000@ÿ?}$̆$̆ 0$̆0``DDD@E <@(#)rec_seq.c 8.3 (Berkeley) 7/14/94_hashXXXXXX 1h>h.shstrtab.init.text.fini.rodata.data.eh_frame.ctors.dtors.jcr.bss.note.ABI-tag  & Ȧ& & 9 % y xn +W5W<WCWHW MW[ 0x0a "Control Mode Page" { {Reserved} *t7 {RLEC} t1 {Queue Algorithm Modifier} t4 {Reserved} *t2 {QErr} t1 {DQue} t1 {EECA} t1 {Reserved} *t4 {RAENP} t1 {UAAENP} t1 {EAENP} t1 {Reserved} *i1 {Ready AEN Holdoff Period} i2 } 0x02 "Disconnect-Reconnect Page" { {Buffer Full Ratio} i1 {Buffer Empty Ratio} i1 {Bus Inactivity Limit} i2 {Disconnect Time Limit} i2 {Connect Time Limit} i2 {Maximum Burst Size} i2 {Reserved} *t6 {DTDC} t2 {Reserved} *i1 {Reserved} *i1 {Reserved} *i1 } 0x09 "Peripheral Device Page" { {Interface Identifier} i2 {Reserved} *i1 {Reserved} *i1 {Reserved} *i1 {Reserved} *i1 } 0x1a "Power Control" { {Reserved} *i1 {Reserved} *t6 {Idle} t1 {Standby} t1 {Idle Condition Timer} i4 {Standby Condition Timer} i4 } 0x08 "Caching Page" { {IC} t1 {ABPF} t1 {CAP} t1 {DISC} t1 {SIZE} t1 {WCE} t1 {MF} t1 {RCD} t1 {Demand Retention Priority} t4 {Write Retention Priority} t4 {Disable Pre-fetch Transfer Length} i2 {Minimum Pre-fetch} i2 {Maximum Pre-fetch} i2 {Maximum Pre-fetch Ceiling} i2 } 0x05 "Flexible Disk Page" { {Transfer rate} i2 {Number of heads} i1 {Sectors per track} i1 {Data bytes per sector} i2 {Number of cylinders} i2 {Starting cylinder-write precompensation} i2 {Starting cylinder-reduced write current} i2 {Drive step rate} i2 {Drive step pulse width} i1 {Head settle delay} i2 {Motor on delay} i1 {Motor off delay} i1 {TRDY} t1 {SSN} t1 {MO} t1 {Reserved} *t5 {Reserved} *t4 {SPC} t4 {Write Compensation} i1 {Head load delay} i1 {Head unload delay} i1 {Pin 34} t4 {Pin 2} t4 {Pin 4} t4 {Pin 1} t4 {Medium rotation rate} i2 {Reserved} *i1 {Reserved} *i1 } 0x03 "Format Device Page" { {Tracks per Zone} i2 {Alternate Sectors per Zone} i2 {Alternate Tracks per Zone} i2 {Alternate Tracks per Logical Unit} i2 {Sectors per Track} i2 {Data Bytes per Physical Sector} i2 {Interleave} i2 {Track Skew Factor} i2 {Cylinder Skew Factor} i2 {SSEC} t1 {HSEC} t1 {RMB} t1 {SURF} t1 {Reserved} *t4 } 0x0b "Medium Types Supported Page" { {Reserved} *i1 {Reserved} *i1 {Medium type one supported} i1 {Medium type two supported} i1 {Medium type three supported} i1 {Medium type four supported} i1 } 0x0c "Notch and Partition Page"; 0x01 "Read-Write Error Recovery Page" { {AWRE (Auto Write Reallocation Enbld)} t1 {ARRE (Auto Read Reallocation Enbld)} t1 {TB (Transfer Block)} t1 {RC (Read Continuous)} t1 {EER (Enable Early Recovery)} t1 {PER (Post Error)} t1 {DTE (Disable Transfer on Error)} t1 {DCR (Disable Correction)} t1 {Read Retry Count} i1 {Correction Span} i1 {Head Offset Count} i1 {Data Strobe Offset Count} i1 {Reserved} *i1 {Write Retry Count} i1 {Reserved} *i1 {Recovery Time Limit} i2 } 0x04 "Rigid Disk Drive Geometry Page" { {Number of Cylinders} i3 {Number of Heads} i1 {Starting Cylinder-Write Precompensation} i3 {Starting Cylinder-Reduced Write Current} i3 {Drive Step Rate} i2 {Landing Zone Cylinder} i3 {Reserved} *t6 {RPL} t2 {Rotational Offset} i1 {Reserved} *i1 {Medium Rotation Rate} i2 {Reserved} *i1 {Reserved} *i1 } 0x07 "Verify Error Recovery Page" { {Reserved} *t4 {EER} t1 {PER} t1 {DTE} t1 {DCR} t1 {Verify Retry Count} i1 {Verify Correction Span} i1 {Reserved} *i1 {Reserved} *i1 {Reserved} *i1 {Reserved} *i1 {Reserved} *i1 {Verify Recovery Time Limit} i2 } 0x0E "CD-ROM Audio Control Parameters Page" { {Reserved} *t5 {Immed} t1 {SOTC} t1 {Reserved} *t1 {Reserved} *i2 {APRVal} t1 {Reserved} *t3 {Format of LBAs / sec.} t4 {Logical Blocks per Second of Audio Playback} i2 {Reserved} *t4 {Output Port 0 Channel Selection} t4 {Output Port 0 Volume} i1 {Reserved} *t4 {Output Port 1 Channel Selection} t4 {Output Port 1 Volume} i1 {Reserved} *t4 {Output Port 2 Channel Selection} t4 {Output Port 2 Volume} i1 {Reserved} *t4 {Output Port 3 Channel Selection} t4 {Output Port 3 Volume} i1 } 0x10 "Device Configuration Page" { {Reserved} *t1 {Change Active Partition} t1 {Change Active Format} t1 {Active Format} t5 {Active Partition} i1 {Write Buffer Full Ratio} i1 {Write Buffer Empty Ratio} i1 {Write Delay Time} i2 {Data Buffer Recovery} t1 {Block Identifiers Support} t1 {Report Setmarks} t1 {Automatic Velocity Control} t1 {Stop on Consecutive Filemarks} t2 {Recover Buffer Order} t1 {Report Early-Warning} t1 {Gap Size} i1 {EOD Defined} t3 {Enable EOD Generation} t1 {Synchronize at Early-Warning} t1 {Reserved} *t3 {Buffer Size at Early-Warning} i3 {Select Data Compression Algorithm} i1 {Reserved} *t5 {SCSI-3 Associated Write Protect} t1 {SCSI-3 Persistent Write Protect} t1 {SCSI-3 Permanent Write Protect} t1 } 0x0f "Data Compression Page" { {Data Compression Enabled} t1 {Date Compression Capable} t1 {Reserved} *t6 {Data Decompression Capable} t1 {Data Decompression Report on Exception} t2 {Reserved} *t5 {Compression Algorithm} i4 {Decompression Algorithm} i4 {Reserved} *i4 } 0x2a "CD capabilities and mechanical status page" { {Reserved} *t4 {Method 2} t1 {CD-RW Read} t1 {CD-R Read} t1 {Reserved} *t4 {Test Write} t1 {CD-RW Write} t1 {CD-R Write} t1 {Reserved} *t1 {Multi Session} t1 {Mode 2 Form 2} t1 {Mode 2 Form 1} t1 {Digital Port (2)} t1 {Digital Port (1)} t1 {Composite} t1 {Audio Play} t1 {Read Bar Code} t1 {UPC} t1 {ISRC} t1 {C2 Pointers are supported} t1 {R-W De-interleaved & corrected} t1 {R-W Supported} t1 {CD-DA Stream is Accurate} t1 {CD-DA Commands Supported} t1 {Loading Mechanism Type} t3 {Reserved} *t1 {Eject} t1 {Prevent Jumper} t1 {Lock State} t1 {Lock} t1 {Reserved} *t4 {S/W Slot Selection} t1 {Changer Supports Disc Present reporting} t1 {Separate Channel Mute Supported} t1 {Separate volume levels per channel} t1 {Maximum Read Speed Supported (kBps)} i2 {Number of Volume Leves Supported} i2 {Buffer Size supported by Drive (KB)} i2 {Current Read Speed Selected (kBps)} i2 {Reserved} *i1 {Reserved} *t2 {Length} t2 {LSBF} t1 {RCK} t1 {BCK} t1 {Reserved} *t1 {Maximum Write Speed Supported (kBps)} i2 {Current Write Speed Supported (kBps)} i2 }; 0x00 "Vendor-Specific";