IPL1 1fffQRfB@f  1Ҵfff0fff%f&$ZfYˁtu1ɠ$<0t6<t%< t< t & G 1҉)׉։>6f[fXRead error No bootable partition PUWEVfd1200?&?` WEV^J ` ` ` f)Ȏ؎ffggggggffgff1P)( RUVSu1] tPkC~jj8<4n p5(HuD1 Dt3Ë` uuDA9| 5Dhh`h=`t3h`hhh`AY[t h`uP0aP5DH4(PuRuR5<58hh=%0th-u j &hh-,=8dt'5hVXZUWVS$Ej P@Mэv@ t8t0=t=t= t=t heEЁ ttf=  u1҉ы}W05aP5DH4(Phv LhuhuW uXZt FuuhuV uuhrut )؉jEVP5@ujSh5uVx ]jSu jVSEЃPjhEЃuV? , H áD á0 ÍuУ(5D0T5`)BAuIBAuhh`'h`)?hhh`'WVh#hS PWe[^_UVS] uEcuVSu De[^ UVSUu < t< u B< t< t<-uoB< t< t> 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@\I@`  <  ` [I@b@` `  ` /mnteee \I@`  @@@<@T 08@[I@`  <  ` [I@b@` `  ` # #[I@`  @@@<@TU \I@ ` hhF ,\I@A[I@\I@\I@HyA[I@[I@[I@PA[I@[I@[I@A}A[I@\I@\I@B{0qm [I@[I@[I@I!$$m&8F@F@\I@ &{GA[I@[I@\I@OG A[I@[I@\I@Dd_A[I@\I@\I@E4uV[I@[I@\I@F?[I@[I@\I@X`hpxP*hRD[I@[I@\I@Q5}e[I@[I@\I@dA[I@[I@\I@GY1yA[I@[I@\I@V7&A[I@[I@\I@W61A[I@[I@\I@}A[I@[I@\I@=A[I@[I@\I@6"EA[I@\I@\I@FzA[I@\I@\I@1A[I@\I@\I@j$[I@[I@\I@h bT[I@[I@\I@mQ ... . .. tarfixit-small_crunch catchmod cp dd dfechoexprkill ln lsmkdir mv rmrmdirsleepsyncbsdlabeloZclridmesgfdiskmknodmount mount_cd9660 mount_msdosfsrebootrestoreswaponumount ee disklabelZrrestoreoZ ftptelneteditchownchrootchgrp ... . .. group spwd.db  protocolsservices# $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:  ... . ...snap devstand bin sbin@ etc mntmnt1@mnt2@mnt3@mnt4@ tmp usr0.profile#!/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  ... ... 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  ... ...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# # 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)  ... ... ... . ..share . ..misc@ . .. scsi_modes(08@HPX`hpx (08@HPX`hpx (08@HPX`hpx (08@HPX`hpx (08@HPX`hpx (08@HPX`hpx (08@HPX`hpx (08@HPX` 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 ELF 464 ( PP,fFreeBSD UWVS э}_t5~-}t'EP€8t:/u BPvB:ut Q2  h4" VWSPD U=@uAPtPСPut hz~@ÉUthDhK~=(tt h()~ÐUWVS} t8uj/7[^Xu= P Pt)6S : ZYt >u>t uWuVShh50z e[^_UVSj/]S^Ztp= P Pt3V9 ZYt ;u1ҍe[^UWVSu] }N}] u[^_UWVSPhh50 1 = P PtRE}1MUU2O~50j ) Yu_3h^50s ;u50j jCB UUVSh@ju] vbw~$|xfdtP|D8dh"j5,1# XZdh SV ]=xu-=tu$=|u=u=hu =dtjjSCY[5,> Zt hj5lA U50h@ j@ UWVSWWEEE}t>^uu1pOEjPpY^y78-ujuvXZyuh&_XlG} t/u 5(a/h}S; PLS= S<^tSY}t!EU}҉U+}e[^_UWVSWW};=(uW^t 5([ EE[ uk=t u}<EE=|t:=xt t1Euh!5,[ 5,ت  u!=tj$$@Y u#=hj^@ZjI=dÀt<v S4! ^ tD4%ujM@Ytlj-@Ztav S ^ tD4%tj^t@Yt0?t؃@PSX@ZtW: ÃXWʩ Yt#5ph&Wl 5,藩 Zt hje[^_UWVS`5, =`XuuEPW[^t5ph&jPE=sP\20 `Yu/hɞ`SPWf y hj)u5\5`uM1 y5ph&XlZe[^_UWVSp1}ju jjj xujhuEPE/ g]v??JPSW1 y Wl[x(tHtjjW(@ZYu ha1Xe[^_ÐUUWVSLu} EEEE(A9ww$dEEeEEELECE:E1T:-u<B9u4zu.C$EYhWV b)N<-}t0}t hj}t}t}u}EHm uE r 7V轉EZu VhjjSW茶 EE\htG4H ws$L}7jWu製Cw} $wh^ E1wY $wh^E }G<@Pu踇‰EG<@%[9^uwUZYt}uwh&j^_Et}tnwh&h Y}[~QuVG<@P]SG<@% EPSG<@% EPVG<@Ph $j Zu˸DžX8t hǏju&- uB9 U50h S j(9 UUWVSu1AH.$X1Dž0Dž,1Dž,Dž,Dž0ضܶ_ܶܶض)Զhu V& U )ƍU =Dž(t<=th@0u ,ut hjoDž(=t)0t(,t((((hj5NE hShQ =v Sh1QсQQ QuQ.QQQQJ/t-Qv%/u BQBQQvz/tࡀQQU EPhQYXu8t*hQh&jE%=@N~ $j1҃ux=u=t%,u 0t4PE 0=4PU 2X<%=@Zu=u =t1҅t$u Cu hQh1 hQhMjZ(Ru P~5 UWVSxhEPfUh^uuEu hE|F4tt0Ft u<|p $|rh^|vhc#} |fx2u[} tHj/pc^_Et |+JAM|EFBuE |@$E|MJz$+}9/Qt z/t/B-Q=vQhQh`ETWQR*QQ Qv&z/u BQBQQvz/t|f~4~ =tjv< Y[X|B6-%x =jjujjEp0j, EЃ@u UrME}Ћq0VWuEԉáж t^1REPEh0},$fE ` fEm]mEPhQUrhđ50ж 9} ~ )v9thQh&XEZMq0u^_hQh&Y[EEuVWu$Eԉáж t^1REPUj0},$fE ` fEm]mEPhQMqhđ50ж 9} ~ )v9=hhu EF}yEph&ַXEZ=tuu^_tEu uY[thQh&臷XEZE܍e[^_UVShPuv u vhԑF} Ƅ(thQSYt hQhhQSeYZtSh=tjv<^Z1e[^US} ]thQZt hQhCPhQZYthQh聶=t]E ]1]US} ]thQlYt hQh#sCPhQ  thQh=t]E ]1]UWVSl} 1]EuC%=uCCĶC ȶC$fc̶thhQehhQXYZt(hQ'u@Ph ,E tEPu Et PhQ PhQYZt EEfe9C EuE9Ctitss u G&tss hQss hQS t(8thQhkXEZfc}t Ef9CtWtCPu &fCtPhQ<PhQZYthQhYEX}tE9CDtMt sDu t NsDhQ_ZthQh$褳[E^Ee[^_Uhh h50 j@' U UVSup05 Yu 6hxj=Pp YZu5BCxu 5h3Ihjj hEEP苧 u uhM#A tuhj QSQZCt* ttt h`,Xt1uhza=uhQu%Lt>!t.t %*hj,0RPhjZӋD9ډ@6|9w0pRPhj*Ӌ9ډ|9vhjh@j藰e[^UE E EE# USufӃZwvjhhj@p0]USu [w=vjhhj ]UuYy hɝj֯ u UuUUYwwjjhj|USu6u`[w=vjhhj= 0]UE8USu6u [w=vjhhj p]UExUucUuK@DU}tthEP<hfjjh`EEP u uhn#Atuhj;A Qt}uUE E EE UWVS ]jEPS^EU 8t5h&j詬E9؉E-Ub11w*$` @1 tWEEUEU]߉ً]ލ W]VU؉EԋERPEU;U;EuE@EExtx*us@PƋEE׋EUU]߉ً]ލ W]VU؉EԋERPEUc;Uu;Et.j" $5h^j肬5hjpEUe[^_UWVS]jEPSEU 8t5h&jE9؉EEEUbw9$E"EEE@EEE Et{uEE‹}EǍM] xw1҅۸ xw19uuSQ貴99E@EExtx*@PEuEUӋU։Ћ}U׍M]Xx v1҅۸ xw19tuuSQ9u9t.j" $5h^jy5hjgEUe[^_ÐUSt#, $)JtJAu$d(;phrj d$h(X]á(UthUWVSQQ=ts , ɉtC< t It C< uu1($$R)P5  A(D$($1)Å5dS(9v¡Et(19sF;C tTEAF9s/;C u;19s;C t,AF9s ;C u t(;,()ȃ (uH(9s!)P tP RVz Y(t; tĸtC< tB(tC< u(u H(dh;phrj Z=(5d( $e[^_Ë(U҉t]$Rĸ)P5d ()P tH QdRo hU VSt#,5$)KtKFu9(5 2H9r5x u I9r*9 t9r!)YSV5dM dh d h@d;phrj`[()9У(s(t$R)P5  ( $e[^U=(Stp58hا  (A[9[r5y u H9r*8 t9r!)ЍXSR5dk dh dh d]ÐUh@ju u zh7jDhQj8hh^ UU UBUu@t'PUUUBUu@uNj~ UWVS8u8< jjP8< @u 58h UUYwv4u hjŤ=xu|xHhuP5x| @uKHhuP5xq| t @u5xh&9h`-X0u'pBP _uhF`F9ЉsP ^tpP `[u hžj艢 $D`dѡ@ tW  t %h=`uet t\1ҋpUE}5ы]ىMuEu5| @u5xhОjӡ!tu1t7v RM Y t4 Cvvv R Z t4 Cv?1tt4 Cvt4 Cv jEP8MEظe[^_USdEP]s>@ZYt9E%=uK = t=`uXEPhzf@s @ush&jyUtK tKE%= uAu EZu1}~hgֈX hgɈuA u9 1jEn@o1Ã;u}=j U4S M M1}э\ ,uF C;u|Cu u Ee[^_ÐUVS] 1ۋut0';t3V- ZYt;u1=e[^UWVS]1t};nu{ou 1;t 8,uG@8uP Yuhg螇1.ؿ @j,P2D [ZWue[^_UUWVSy0 1ۋUƃIQRjͧjh j迧} ؃IQu j覧(jh j蕧؃IQVjjhSjq$jg UWVSfHfEfS] fEEt"XƉuMEEED}EEUP EZuhuY_;tU1у{Auv|\u|cu AEF;tEF뫃}uEEF}t>u~VujX @uhu1XZ}<)u}ue[^1_ÐUUVSj ]u Zu h$j襃Xpe[^UVSPj uj ÅXtV CYu h$ja=Et j PVX^ j PV E 8@e[^UUHw BE$ UWVS}1҅ɸtt11҃tk誛=t&j jw]É膛 8"ujj蝁j jw Ɖ w _w1ҍe[^_UVSuHv4jI ÅXu h$jNvvhŝS! ^e[^UE8UWS1Ʌtz1щuPh4/@ ZYt= Hщu,{=u&<t)< !>tSĹe[_UVS];Cu C'18tSUY tSC ue[^UVSu] h@jӳ hB- uhƌԔZt;EB-h=̹$̹)C$B2r2r2r2rv2rDj2r^2rR2rmF2rF:2r .2r"2r2r 2r^X?)‹ 2) uZuVBA=̹fBAy̹y ̹=̹?Ft"x 9u `?9r u-BfrBB hY1e[^_ÐUUWVS}] E亷EMu׉M}~}up=w Uuj EP3 E :7E8+}~E쀋EHvR_E4Q 5,ju׉uMM}h q^Eǹu8EuEE8-x-@MQv Rk Y tD4%t3EZyWM=wAUt7j EPR E :tE8t RhjQo}v R3XM}~ׯ3uM}u1}tWj EP3;  :tE8t RhگtpuQ-@Y_u3h&loXZMuV UVSjhOuV&c uV42b ZYt C~e[^Uuh`o50jz UVSuV4脆 YXtuVj Vj C XZ~ҍe[^Uhhhh h50% j UUWVS`j/] 3ǔY^u@,Ɖth@Su @u)E}tJpr ?7wW$HԹ?ܹ3Թйh(Su# u)Ep upr -u=}عt}}t +}t#njh53 PjsE=ܹtt-EPV蔉_ZuE%=u EPV菉ZYt Vh&jjE%=@t193tjV3 ǃ 93uW UWVS`=}u u4EPW [ZE%=@uM}uF]SV辈ZYuE%=@t&=ܹueSVY[uXE%=@uHj/W._[Zu@PVhMhS/ =~躃?WEPV0Z=ԹYtuf=thtd5,ͺ Vh/50 o tt [ t@uytYt50h<ł $V5[uVWZYtVh&j"=йtWعPVhJ 1e[^_UhUhhh50< j! UUE @@E E@@EAUE@@U E B@E@UE Hpdp0@@0`Pjh@hK vg U<-<l<phP`Hi 8uXi]QH\41H\4D3h WV{ Eh)ƍ< Zt&j Yuht Zt hfY=lu'=pu=8u=u =`upu=u =`u=tˀu =8t9=t L$hLEPSLљLXZ= tFu z=@t 'e=0t UPDu 4=@t =0t > t 4=pt 0=t  CtSWVShHVj 5  UWVSV=u61Puu eT u hhujP[Y[Pjb =J=u=DuEEEC4tHtOtts@hcdXZs $s@h^id f{2tC@8.u =t|=$tj s hMC $}~s hMC ^$XuWZuPSK=ut jSWiZ WVYz8t hǏj`e[^_UWVS } Dž4 =lDžu=pu =8t Džh&Dž( DžTDžXDžPDžLDžHDžDDž\Dž<Dž@Dž`_81Q ^N<:uQf0:A QAC;t{:u ;:u0BBBC;uz:uf0`P\PTPPPLPHPDP@P=u5,@ ,B@8.u=u B ,A&;\v\=\u =4tP,w@J;\Y[v\U,@<0@0O<9W8|9v0B8@0A;^М Y_u h3эq;Pv P1=DDž4@8P@Zu!,r@Bph?[ ,fy2duq@h&hR ",w@GphMhR Edt8R 8R[@_u,p@@#4P8@ZYu),q@Aph?Z88 8(X4uh>^d 4X14эA;`v `1 DP ÅXu hjXCPz DC Pa 0B%= t=`u Dž$=ht- DCP < =Dt> =hDtDDC 4Pȯ 4 ,X,R҉,QM \M}E@h9jMQ(1ۋ$U}Ez ؉򮋅PuO}t4u _uuhjIhPK S觲 1ۃ>}tP6ZYtZQP6* Y)}t#P6j@YZu6h&IXZ>ZS UWVS|E ufEfEDžx>/uCDž|1uuh&ZBXZu |c^tu h>BY[ucWc%ucf^vv W_ft5vv u h`Aà tPu hBff FPWE_YZtPu hA YvDWoa[Zt#Y8-u~DtvDu hqA FEF EEPu EEP^ZYtu hѸ5A^XWb[t u h&uBbYtuhA=tu uhX 1e[^_UWVSPbuFju u=hׯt߸Ph֌hhh&@$jEPR @u hEthhM@tPh:Xu7juhׯhh֌h膉hh&@ j}ZjEPRy @u hh뉋Ut hr1tRhh?e[^_Uh@hh50,X j@ UUWVSj/] 3e^_u@Ɖu< h@SuT @u)E}t S1wP&wj$\F0$ hpSuT o)E}=uF SQ ^;Yt j ZtSSX5虲 e[^1_UWV1=St=u=u=t1=t jPu- hC4H $Hs} $sh^j<=t {s} $sh^>.=u-stCu-WW ĺHu*W@W ĺihNS=ȺtD!Ⱥ9=Ⱥt*!Ⱥ=Ⱥt!Ⱥ hgu uE U )E}U  =Wx =y h`j/U 8/t 2huhVh j/P"@U ^_=t=ȺuȺ=Ⱥu ȺȺD$\}t j&h)% Y[}tjj5,j}th}E pw ƅXZuU rh{j,jhVY j}u E @E}u EKj]huhSj3j3h6^}_uhU r_Y[jZuEu茢 UM1ҍt8u'B~ 15(Q<)‰UWVS]޿u  S8Xu Shj,} E} ȃe[^_UVS`=u j5NY^y 5h}EPSI ĺXZt#U̅ҋEx=w uh !uKU̅ҋEAx= w6uh SgNM̃ 9΋Uu9t$5hj*5h¾j+e[^U=VSthQ-j5, A19WEVWEVfs f3 9r=ftf 1ft"51҃tC9|(Wh P&#Y=ĺ[t+111  $C>~ j5LÅXZ OhݾjhP軮hjh S詮 5jhS蓮(W PhhSk S~^uxS?=YĭhjhP0hjh S 5jhSh h hS SZtPh&N+S輯:S贯?5Wh SK ;Wt5h&*SK S{KX1e[^UWVSj5rK_Xy 5j5h hd@SHI uh(hd@S1I t h j'jjjS h h S2K= t5h$j'SJ(Wjh P"}tt5h,j{(hEjhP膬hjh St 5jhS^hjhJSܬ S_^tS h1R(P55H11ۃ9ӣ u49u0f1ft"51҃t)AÃ9|e[^_UWVSQQ} uu5hTV@ =GWf_Uw4Vh"Ph[Vw@ SjheVf@ ujhqVV@ Vh X? XGXZt Vh~E? Y[GXt Vh2? XZGXt Vh? Y[Vj ? w(hV? w,hV? w0hV? w8hտV? w4hV? $w EE|\uHEy}yE1;]t\hVC> ;]~VhR= XZPhUV> Vh`= fE;s3EaPheV> C <w4 Whw Ph}Vc> C t*t X t2Qh@C CPsh.CPC CPshCPC CPshV= h@hV= }u Vh< YXVj b= XZE9Eue[^_kt UWVS hxW! ^thBP Y[u;hxWh%hxWh%XZhxWE1jPQV觖 h}hxWpm _XtE1󫍅PVVY toh #; 5,ls M[^t t M unVhxWDe[^_UVSSj=;8Ctp;8#urjYEExمumVm=CPf@CPCh# u*jhxWSSmSh&jt!h6$ hR#1"9tEPZyV<X1}e[^US]Ct&Ёv Ry Z tD4%@uӊt#u1]US]Ct+Ёv Ry Y tD4%@u;#uΊtC<#t ]]a1]UWVSu hDžDž`Y1ٿ,ٿF} LJ LJY[+j V) ÅXZtVÅXj:S ^_uhW50': @P}08Yu DžWVWsBtP _Zt Wr-VU WfB:j jwK vPhnh50Q9 M fAމDž;މǹ 8^u Xމu <މu  Sh508 t ;_U BX މuf18j jJ U D\F8~PhSo> HuNHv-h507 M fǁ} f#u DžWIމujE !މujE PH  މuGj jH tthU B(gމu+j jH  U B,) މu+j jSH U B81މu+j jH U B05 މu+j jG QU B4oA މu+j jG U B<1Nމu6j j[G H =U fBHR މu6j jG H =U fBJ] މu1j jF =wDU fBL[g މuHj jF =vShtU fBN މuj j*F U BP.މu#j jE U BT B<w{t"Sh503 i‹M a9r&SB`Ph503 /Pu `QtuhVT3 u D1[e[^_UWVS uE }EWj ǍEPSD ‹Et,u,*t Suh REOWGj ǍEPS~D ‹EtFu'F<*ttSuh`50H2 MQu uhW WtWXst SPc ZYt tWr>t WUB N=wUtj jSC ƒ vSuh501 1҃MQ UB t tWj jSVC MAt^uuh 5061 BWj jSC M1qA tWj jWB UfB1e[^_UWVS(}EuE=Ex(u 50h*Uz,u 50hMy0u50h/ Ex4u50hc/ XEZUfzHu h~_My8u A0A,A8Ex<u ‹@4B8B} 7[7hjVh ÉЙlTPTZYXu Ɖ Ƌ!Ë Éי t1 jRPhu S# ;PTlu%֙ӋSP@1BSP#֙ӋSlB 1SljRPt x#P" ;th&jE XE 8"ju UUWVSLh@j} E2 X11Z5Nt#N ?t!Mt auE$ 5$nh/Wu> uuYuUjj]Sjh< 4@t/ug _jjSPh<31@h5jwhjjSV臊ujhWP訋@ZYuS $hH=WuuPhVjEP5WS.uWjEPuSu@}b0thuf ƅXu hgjuVuS׋;EtSi$hljS,U܉щUE1X2҉]uEEEEE9u}tP uEE>u#Et }EEpBЃ whkM L ЉM[}t=@tGt0t 5tyu1e[^_UWVSu1Vuh3 5,|> 5(jdh@ uj|c 1@Ɓ>@1҄Ѕҹ@t t uAt t tu1rAtBЃ wk \Au t u#t t uAt t tu E h@hH _Xe[^_UWVSu @6uh@ 5(jdS 1Ɓ>@1…t t uCt t t"uCt9"t4Ct,"u%t t tCt t u1>эQ  B~@e[^_UVSu1۹W9uAC||[^UWVPhdT@Y^u hj jhVI tPh%jPj@WVGt Phj+@PS Zu hj)4>e^_ÐUMS] 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[ÐUU50h j_ UVSPuj EPV  8t Vh&j E8tu Vhje[^US];u h@jS#CZuhSuZY@]US];u hjSqZuhS;Y[@]UWVSEu vFn= tC}9}Y1ۉEuPwZYu EP _Nu"E9E1ۉƋEuP4ZYu EPL_Nu}t E3Es1EYu 3hMP}EZtkE(PU2P Y_u-EPMqxP _Zu}(}%8/uxuhdTEȋE[Et pUr (pMjuF jEűEu؍RuPY33K3 Eu3SEYu 3hO}ȋ}ĉ׉t8{uĉ׉t#uĉ׉t3hjEp uup0p}j@3ء DžXZuj:3ǡ Y^t|?@uw1Mэ|39tU=w Uu4ҁv R: Z tD4%u<.t<-t<:uF9u9uE0 juus3uE }ufu]h}ho, ^_tFEPhaSe Hu*E~#jP@ZYuE8t hj\S:U XuW UWVS}G8/UuxtXNxSi] PwM YZu(w3Zt(P7M ZYu Ny1e[^_U=xYVSuxYtV3sM YZt ;u1ҍe[^UWVSS] ;nu{ou 1u" 1YE68nuxouSPYZuSP YZu1hP+YZuuAJ e[^_UWVS| P]uub _Xu@u;u{޻@VS9" $xdTY8[uMEthxCxXZEthx%^x_EthxYx[uuE"EdRdPxDž?U dh =DŽdtDuh%qX;Z}dh^CU^;_|j bt thRxeH uudPY[POuh+hS.~ dRh4S*8uh4uhD jT xG j|PSy hLj|ƒut%wtt4Wh^3=tISP _ZyRhb= tSS ^1e[^_UWVS]PP(PhlsXt2=Xt)#twhz!XZt?u׃t6hySdZYt 0h& ha)^_=SLCH u STCP tsPsHh S\CX u SdC` ts`sXh u t(h1YPhFXZvEKe[^_ӽUWVSVjEP}.YN[xFiEW(P&H YZtEWPH YZuE Ny1e[^_UWVSPPu ]t>umtS;tN1ЃщMMQMC DžXu hgjVShuWz  V/ XtSD Xe[^_UWVSPPE EEZUtQ<-u'Mj=Rϙ C^E_t5E@U%{utEUCChEP:iZEYuM e[^_UWVS}uh@k Jhu Ehu 8uEEEE:uu uuSuSYE[hEPhÅXZuuC uC EEE}1уQ/B DžXu hgj4fnoGSWd1 WukW-C 8uCPu=^_SuEY[hEPgÅXZguB Ee[^_UWVSQE} tT8tOtK?tFÉE&VW/E YZt;,u>tCFCuK,hEPZgƅXZue[^_Uhh h`h50qjVN UWVSVV]sPƍEPE(PShVA S u u@[tpphw e[^_ÿuu#dTuu EEEe[^_逹US]u{PjZYt hPZYt h2PZYt h9PZYt h,PZY t hbPZY@t hPZYt h$PzZY@t hhPeZYy hsPTZY@t h@P?ZYt h~P*ZYt hPZYt hPZY]UVStu] E(*?t oujEPhY5$h!SV' u¡)ƃtUE1EE[PRShE1҅yTEtu/Suh$Et Suh Suh uh&XZe[^U50h vjKK UWVSE U}EU}uM E܅^jj>nu~ou EEj=V Y[t@];tmE؋}1IMQuV  uUt<=t ;u,;t'{ tMM};{Cu !‰=u Vh?j1hVƅXZ,E܉Ee[^_> UUSM :t":/uz/u B:/uz/tBA:uމ)H~ y/uA[US`] SuiZYt-EPSZYuE%=@t)Sh[j@V0f $Sh^j@:]ÐUVS] 1ۋut0';t3V? ZYt;u1=e[^UWVS]1t};nu{ou 1;t 8,uG@8uP; Yuhg*1.ؿ @j,P辑 [ZWue[^_UUWVSt 1u] DžhDžpDžlEEE?7$8ppppvpPlPh [5$SpJ5$tYE9h15$tP@_Zu h6jG9p hCSV 5)ƃtt;PsWWklp}DžxtDž|EuBWE[uht hʲYEht PhPPXZtPltPhyth&j;jF U50hj@jF UVS,juA^XPhc@S @tT)ƍFd<fPhcSƅƅ @uS S[xuHyye[^USh6]Zy-h6Yxh6Zyh `j7 CxYtNj7 C|Ztnu~ou EEj=V蜍 Y[t@];tmE؋}1IMQuV uUt<=t ;u,;t'{ tMM};{Cu !‰=u Vh?j1hVƅXZ,E܉Ee[^_7 UUSM :t":/uz/u B:/uz/tBA:uމ)H~ y/uA[US`] Su ZYt-EPSZYuE%=@t)Sh[j@0  $Sh^j@]ÐUUWVS1ۍdd؁DžDžDžDžDžEEEt9<$UI=5$FDžR5$Dž55$bf5$IfDž_5$jUY^tj.5$ ƅXZu5$h&jN@j]4 E_ jjFPRY^Puj54 EZj5$PC =PPh\5$j3 E_j3 E^=$ u*EISO8@859-f@2ECP85f@2 u'EISO8@859-f@7ECP73f@7ju } u }ECP86f@6h&jBhu u* pB;Ettuf tuffE } US]Sg"Yt@:CtЁw Uuu QjZ Qh2jC]US]SZt@:CtЁw Uuu Q-j[ QhGjC]USQ]0<w"jEP5$ xE8t Shj@D‹]Uh`hhh50jj@O= USh]Yy0h{ZxhYyh mj/ ZjhjP2NuZtPNY[7jS/ Zt+P1 j Mu1҉Ћ]ÐUWVSE U}EU}ui E܅^jj>nu~ou EEj=V Y[t@];tmE؋}1IMQuV& uUt<=t ;u,;t'{ tMM};{Cu !‰=u Vh?j31hVƅXZ,E܉Ee[^_ / UUSM :t":/uz/u B:/uz/tBA:uމ)H~ y/uA[US`] SuZYt-EPS ZYuE%=@t)Sh[j@r10 $Sh^j@V]ÐUUWVSh j/] 3FZYt@P-^_Et E1EEETF2wG$TM<$E-E$MEM@EIh%Su uE%=u hj[Rt }tuj/thh$hh-@ ~JjhAP=jhXS01}IQuS$jhS S}u_ݱuP[at8= tj"jh Whej"jh*׵Whrj躰h@hh }ujj@ZYuh'jj6jjr@u*8t hj50h J_Xdj1^}u:jׄ9YtC~׻j j@_Zu _8uP蚄C^u[80 $jj@ZYt@RhVjEU= t *Ph`50ljQ7 UPPjjEPEPhEGthz1EÐUUVSj?}Xph@jOh2 uE PEP^X=B+,$Hj P5$@ 0‹ 8t5$hhH$ ^\tPRhj\$^{Toj P5$ (^‹ 8t5$h jn0hcXLP]h$u uv )EE =\u h@jh$j3HZYu jjs3^Xh$je3HZYu jjW3Y^50S=X}ZuU BEE B5\R&$)?j#j:#/ ?=,L~ft5,h7^XhR:j|#Y=L[t5,hd`XZhajh5&RmRt5,h}-^Xj:j#Y=L[t5,hXZhajh5% hR j,!^=HXt/=Lt5,hY[hOjh5N% jhR97XZ@hRr9L$hRI jt,A!jhR6=j1"j&9^XEHE@hVE 0E r Vcth`PV$ EHE@u)=j!j8EHYE@[tThVE 0E Vct=$^tV[ZhҦSV%$ EHE@uBjm+=HXt0 j/Uhhh`hhh50j/UWVSE U0NMC9-:PZ$ ËE X1}Q7$ EE_tpEU:MЃftfbsu`uPh 菽1уQ# Yu jj跺-MB6BP XZ%}uE-@EEUMAMEE8P}tUM uE +CUe[^_ÐUWVS@ hPhdTEEE@E@EEԄEE䘥 hqZt2}tEPEE/X`EPhPPP?9o$1I~9;Wr`ÅX1=$^tWX^hҦSW1I~ 9W`YP+HZuWh\WPs 1I~gM9uS-^t@uSh50RhʧpS: ?1I~9u2j]'=H[t `1I~D9hh` h hh h h h` h h h h/h@ h hGhchh 50LL1I~w9PP+1I~R9u50hPh^ F1I~"1I~(9^H1I~9=Lt50hNL50h/L1I ~ 9j %Y1I~9uu@@x1I~9uB=Ht50huH50hYHXZ Ph e[^_UWVSu~] =50h50 5(hh= t1I t u H t t@Sh4^4Z8YuuuuEUDh58[_u =/u$uuh <quitChuhMhSS uuSH FPjj@uIyv4h 50 FtIFuF+FV4u1EUDFH FuFPuYe[^_UVS]< t< u C< t< t< u < t~\uCu50h XZN 't "tCF:C8ttCF8tuCuPh50K < t< tue[^UWVSQ]޿5t޿+uE ;/u U f. M f./A1} Ή߃эL;Mr50h` j%Su } }X?Zt-UB }uPEXfK=HtS}ufFufFFu'uV$'EuVfNu~uVEb$uh Muu ufH ;}ucW[FWEPu um}uPE_fK=HScJ$uu$h}ufOfO=HeWFth&VH[^E~uOu Yt(~t h` VHXZVEVv[_uuu uP@D1 uVBYv F uu u5 gƃfN=HVjI$uu$hC5,~=Ht!uuu$hP5,ɼEKu uh uu>$hj50蒼uu$h9J Ee[^_US]|NILthh$YXthhXZthhYXthhXZ]UWV=LSt5,h׺[^;=4s~WYthxtbO$tH^tAf{u3=HtSE$h5,[ S\CSXZ[uG;=4r5 tb^tT{uGf{t hS5FY_=HtS$h5, SBSNXZ[uv ue[^_UWV=LSt5,h 跹Y[ 1۾ tG{ts C SASXGZuۅuƋ thSzE[ _Xue[^_UWV=\RSLut85,h -$t5,h-Y[5`uXZjDX49D=`VD;D[sKVYu VhBoGXZSz$hQ50萹fcVCD;DrD9tPVh`50].QV9ÅXu hhGYCu h~SNDXZCt S&AfcXS$c*fcY`9tPu2.X=`Z49De[^_UWVSWW=Lt5,h蹷[^jf@`"-jDCE4HPkCǃ u`E CWEMC9EZY<D9v.;4s~=`~jf@!d-X;4sPPB;5DXv%E9`u%[-;5Dv E9`t E9`t-DKu;5DsIVÅXu h_EXSk$hQ50職fcV4B;Dr;5D9V;ÅXu hEXS$(Efc9`^\,e[^_UWVSjYt<=Lt5,hXZFtV$@ff_vu߃=Lt5,h詵[^;4DžstaYtNXtGCt:V2$WX~ZujjS$W> fc[u;4re[^_U=LVSt5,h[^;54sKVYt5fSЃ{fCufSf{t hS@XZ[uF;54re[^UWVSPuV} EcÅXuVh50S1PW59YtEt9t @uu WhBXZ{u}t h&S(@_XEe[^_ÐUVS=Lt5,h^Xh: [t8uA5 VhGh@^1\ t"sBu5 t^uh50 5 ۉYƄ(S=CvhPVhZ50訰+RPVu3VTpW5 ^$5 5 +DžXZke[^_UVSuSX/Zu@x/t1PV1Y1^t 3hdTP$YZt8uщ؍e[^UWVSuu ? 1҅[tSpp5 1эY 5 1҅Yt@9uSVGP u҉e[^_UWVS1;u ]=t Shw3Y_%S)u9C 9=Lt5,hyXZCt=Lt5,hϭYXC S9s=Lt-PRh5,萮=Lt5,j XZփ;tS_;u e[^_US]fC fC@=~=5hjf+DDhf @CP@SP @SDУ@]U5j5@hDf+Dfk 5@UWS] 1߹BUCj{RW1IKfɃ fKe[_UWVS}W] u9ZtU)ySh 50 %0jRP7u %GthG P7贵G e[^_UWVSVExu=h PU2胵U B=Htj50hmY[VEH;H| @릋]ˍS UfRft)9~$=HtPh`50 1aUB{ usdT18t6U;4r&=HPh50詫 Me[^_UVSu8Zt)PƅXth@^UvvP@1e[^US]3Y]] USjj]j3 +CC]USjuYX1t"h  Zu S謳1 @]UWVS@=Lt5,hĩ[^h:h Yt8uA\rtRu5 Ph[h@b=@b#u h!8Kh}h@bDžXZuI賩0$h50%h@bh5050h W^Wj4jEPNWuƠ\^h}hE^(_ue 0[$hEhN50wh}hb(u&˙0$hbhN5082@PS3ZlYu50h`je[^_US];Lf0~BxtP Y P] xZu50h軘jXLf]U`=Lt5,h芘YX=Ttj5l*HfXZ,=@t Hfjj5l Hf =Hfy*蓘0$5lhZ50R`0@=@pu=@uh Yu50hl=@t4T1HuI)У=Lu =\tu55՗55,迗 EPh5Dy脗0տ$h=UB=w Df=wDfDfBtRh50跗 =,t50h h wZu-=Ht5h`5,k h"%Xh = Xt50h @=H4tPh5, 4Pj ZYu h$Yh_h>|f@O X= Zt50h踕jU4Pj薹 ZYu h=$Yh_h>$f@ $X=\rZu UWVS}uPLH=@te}t@h#=P^5(D]Y5(̫Z=` =@\ `I =Ht%uuh 5,聑f=@t+=`~xPN _dU;EV|;wL+E=Hpt$-@PVh`50NxP N[yf=@u=`uBh Y5h h KX=PZtjhP+.e[^_U=Pt"f=@u5xhh'Ȏ 4=Px7f@fBDtjhP-UQQ(^=`u|=@t50hj~H=TfEEt Pj5#XZ=EPhm5Hfg y"0P$hF50q UVSV55]SEa$hW5,655赎E֡ ƹgt S[Qhr5,(=Xt:hhXh5h 50hh50謎e[^UWVS 5dE؉E\EhE`EܡlX]]BE%}=`=xf@5P!=`(= =  =_/=@tZ&== =:=t SWh=LWh5,褍 =$^t'W^t @rWh7Y[`=LtWh5,R 5DWDyhh X= Zu&=L<Wh@5, #jWhq 1H5L5HWHSW-EPWEPW=LtWh5,膌 =Tun=XtWXSWZYy̋0$Wh5L5HWUSWbEPW脐EPWz$VWTv:=LtWh5, =TuЃ=XtWUX5TSW  q#0t$Whk=LtWh5,胋 =Tg=XtWXhhW+ y)越0$Wh,50'1[5L5HPS5܏h}h*}5誓 EPW=EPW3VWe[^_á Utu ttUhwhwf@UWVS HL= Džu hHX=8Tt h]X=Puh}'_NP1;=u  (Pb DfȾ9^-x w DfPPUDž~Vx  v  PPUXDžZx vPh`U ^_Ex w3C;}7=u t P YC;| C;]h 'HZuPxG v5= =Ht55xh5,~ PPU_Xh c Pe[^_U=TuEu u5y @u.0G$5x5Dh50\UE jRP5 Bu5@u2视0$5x5Dh@50 jU E =U ~$PRh5xh50͆jzU EU5xh50蝆jJUS] Su5蘡 ]Uhy,E UUWVSPEEp;t} xhPBp0~ x1҉DKu=tut=0 1=TxtWPYXWP5Hf趎à =@u609t})~%=Ht5,h莄XZ0t@t u~Z~V0 9tJt)ޅ~G&$1;}(t PXC;|hV[tQ}; ZYufF fBHLPFHTFXXF4dF`\F/u4WYujWAZ0WPXfK/F>ue[^_UWVSuF t hVg_XfN V $S跷6V1$71INV$Sde[^_UVS]s1Yt9t @Ft9uu htSXZsVhhh -e[ ^U=TVSu] u0SV:~ZYy#x0,$SVh50Ky=LtSVh5,.ye[^UVSu~t hV/XZV=TXuAhSx}ZYy0=Xu'fN@Gx0蘠$Sh50x=LtSh5,x e[^US]{t hSYX{t h SXZfCfCS(=TXu-S|Yy"w0$Sh50x=LtSh5,w ]US]{t hSXZfCfCS=TYu-P>Zy" w0q$Sh50w=LtSh5,uw ]UWVS`=Xu} t=TuW[}u6=TWV}ZYv0$VWh@u}u|=TWVYXyqEPV{YZu)}t#jV~YZuWVXuV}y4v0j$VWh50v uh&>14=Lt&V}W?tHPhM5,Jve[^_U=TS]u8jhSi~ y$u0֝$Sh50u1"=LtShd5,u ]US]{t hxSXZfCfCSt=TYu-PcyZy"t0F$Sh50fu=LtSh5,Ju ]US];4s SYt xt@u C;4r؋]US]vSZt xt@uKw؋]US]u h50tS$h 50tsx$h50tC$tPU$h50kt CtP2$h50Ht CtP$h50%t C tP$h50t {u5Ph50ssh,50sSY]E E?pU|NILS]CthJhhXZC thShQYXCth\h:XZCtheh#YXCthjh XZC@thph[X]UVSuV1ۅYttK$uVhy50r e[^UVSuVh50r50O 5(Ã1t' t5( Zuytnu1e[^UE Pu50 =Pu(hjHZuh\HYu jÐUuZ1҅thj  XYUSh@dTfY| Huكڸ |tPjj|PCPDžtDžxvtWh|P5Tfz ~9({ Ƅ(|u@SP|P5hj UVS =uBhhY[uhYxP'~Zu h@)j@5l Y^t$5VpZuj9 C0h ÅXuh@h&hTfSV0@Ph yV5h5h50o0 =E~EEm}~"jEPhh5 txjEPhh5 tjEPjj5 Et(y h^jEPjj5 EVty h ٿ[e[^UWV}S?tMÀu-v S Z tD4%u_t-tWh#W1 F>ue[^_UVSu uVh9hS/SV e[^U=uhEhUWVS u hHj]SSh3x319}-)PEP5 v jY9|Ӎe[^_UWVS u VhMj]Sf1IQS5 `vVu5 Qv(h~e[^_UWS uhMj]S 1IQS5 ve[_Uu u5 uUhUSPu uhRjP]SSh]UWV=St1-hch׌d[1XGjFKve[^_USU x%RuhZhS$Shb]UWVS } E1ۉE}؉IQu5 tE}I 9Mtj3XEEe[^_UWS j]SEZuVh,j |PSht @t |8tSh[^mhV Y thWCPq ƃhVPq ƃxǃxphcS\V p讯e[^_UWVSVVhBhR&rYE[uhR&h&5E~t{tjj5!Cj5!j5D5!# 5!!^=#t5\5#Y[4p5D5\55#e[^_Uj Uj UEt t t@t t ut t u@t t tU=D\B< t< u.< t(< t$j=DX\< t< u܃=D\< t< u jM=DXtp\< t< t=DtX\< t$< t j=DXt8\< t< u=Dt \< t< ujjXUSuWj5`OY;Xt6SX+P5#5!5S覓 u ]u ]k u ]u ]&u ]'u ](.u jd!  t$ u ]8' u j u jwuD}Ph+u ]F-u$D}PhW[+XZu j?vtru ]u ]vu ]z(u ]!'u j"+u ]I)u ])u hjJ3X]USu ],u ju ] u ]%u ]8,u jcuD}PhW[&u je ] u ]% u ]k( u ] ) u j!u ]ZuWj5`Y;Xt6S+P5#5!>5S֐ u ]u ]&u ]u ]su!D}Phb)XZHu ] %u j +u ]#u ](u hjI1X]U4ztBxu44=\t P5DD-#U4ztBxu44=\t PjD#U4@4\#;DDu_jj5!o}j5!"j5D5!O} 5!M4pj5\j5D@#U4S@4\#Du+j5!4pj5\jjH#4 DX9}\AB9؉|\D]U4\;th=tD~xyH\BD\HP\ D+P5#5!|#bBt^}uP4У\D?D5\m#+P5#5!{U4 DP9щ}l=t\8y)J~@\AD\@P\D+P5#5!9{#@}u4\DiM=#t5\5#XZ+P5#5!zD UWV5#SD4x=Ë \< u5ZB<w 5t+y'CD)H~A\BDD@\95D};C| );!~Ⱥ֙)+ xA9},ȉ֙)y15\5# Y[+P5#5!Vye[^_U4xt$4\U4xt h{U=u jm=u j;==h=um=u=RuD}Ph=Su"D}PhW[#=Hu!=Ju=u j =IujIj= u1=!!%= u=!t!M!= u=!t!~-= u6=!t'!^35\5# XZ!= u#=!t!Mj4Yr=u=!t!=u=!t!(##=u=!t!s#US5fh=S0Pjj5!v5!5f5"5!Ͽ(5!ɒS]UVSxf#2j5@$]h#POth5!jj5!vuS585!K 5$5!5XZ5!0xf1^@SL5! +P5#5!uxfZ1tS0 Ye[^UWVSu!j5P$V1 t !0j5x#V tHNVÀ;Xuj5PYlj^S[K4P^4Zij5V/ thMV18Yuj5X$ljXZ4!SJ4| 4^9<P Y0j5dV tTjj5!Jt5!苗4p5(5!n4p585!U(j50VI tXjj5!s5!"u5#5!XZP5!5! m0< w Vj5hV t.jj5!`s5!衖\P5#j5"V t 2j5!Vf t7!@#‹B@@BRu#j5<V t2jj5!r5!h=5!߻dj5!V t8jj5!kr5!謕5pfh&5!蒻j5|#V t!j5Vb t!j5LV> t|fj5@V t|fj5V t hj5!V tDj5T$V t j5"V t j<>u==#u4#F< ^t< u S^S#YBjj5!^p5!蟓V585!艹t}e[^_ׁ e[^_UE WVS}u~VPKZGYue[^_UWVSh]V jj5!Eo5! jS5!{ 5!j!1IQSu[ljEE5!EAw[4t t=uf}~`uMuu)à ۉ~Ƌ}utf >Ƌ}u|f>Ƌ}u>Ƌ}udE 05 50,5p50 ,5#50+5!50+$5"50+j踇 U:+u B$ׯƹ}8EtKC;]}E =Eu  UBE1}Qy Mu>XtMAMB9uCu;]F!!ue[^_U`#"!=!4!#t4BEP54.UfY@fUYtJftCft>545,5!5!轄=!j%j543Z@Yjj5!'h5!h=!t545# 545"5!3 5!-+P5#5!g5!!! 54X"#=!!!t!#44\=!t1!thPMHPhGjj5!f5!?4t8tP5"5! 5!+P5#5!f5!UWVSW1=!]jj5!ff5!觉S5$5!葯jS/$tJ'8t('8 ty'8to'8t e'8u5"5!?[^5!5Y4x~jjBXZEE1EPhR hh5m0 tuƅt?4xu4X@CtX4tPv X54v 4X=!tcjj5! e5!a4p55#5!> t5"5!$^_5![t =!t e[^_UWVS EE9Eu E}uE9E} FEEu> tE9E}FEG> tE9E|E8uV4ËBCB@PS=4XCXCZtXW4nt \4xx X&4pPW14\BHB ~OE\\EIu\EE9Eu> t EE9Ee[^_UVS5!45#LYt*;5D"sj3jV[Ft;5D~jV5!c+P5#5!be[^USt;uj5tYXt;uBjj5!b5!5!ګ5!Ӆ5!~!:S89أ4Zt St 4YSZtj[]U!VSjtB@Pj5!J5!O~=ts}umj5$[Xv RY t4"v RZ t49uzV-s X=u8=tft 5!}X5!}n`j "3j R!!e[1^U5!P}`j 2j~ U4ztBxu4!94t040\r 4@p4Gr X!94ZuС4@4@@\##DUWVSWWEEtuPJtY^h}u?R_d$Ztsj5 #[^v RY t4"v RZ t495d$zW#q ^_1!=hBuQYd$[uJjj5!!0_5!qu5#5!Y5!V{1jj5!^5!1u5L$5!5!{! tC;s;}5d$PF4GX;sZ|C[5d$j E3EY^u5d$yjj5!\^5!蝁uuu5!5!(5!yze[^_UWVSWXt8u1}tCjj5!]5!,5"5!5!z!4 D1\;JE!!}@!ҍY!;X!=!tKX": "AB"A:BuZuT#F"v R^ t45"9uu"8uu!1;X}!C!;X} 2u.!P҉!t!Eһ}t(jj5!6\5!w5!px}u!9Dj\9DY|}0uhX9DZj&9DX|!4!P\D>#Dљ5\Pb}t?jj5!d[5!~5X5!5!芤5!w +P5#5![ e[^_áXUWtPl _#t 8tPl Yj5"X"!1Q*k #!" 8tG"=!v RZ t4"B!"zu!j%}U4 DP9щ}A=t\8y)J~@\AD\@PD\~j j-jXZU!< u j)P;X!@tP YUVS tPk X4pi  !UQUQUDX4;X\}T< t< tC4AB;X}9< t< u4;X}%< t< uC4AB;X} < t< tΡ4+5 ;X5$ \}C4AB;X|4)p4p5D5\55#iU!U!PU!Pe[^UWVS 4$QڋA )Ѓ5DQSq\ 4$BPih ;5$ljË XFCB;5$~D4;P \}B4FCA;P|4$B \~ VCAJuWi 4p5D5\55#=e[^_UWVSP tPh _4pg D^54 ;V\E} BCA;V|)PBPED4P5! z4xYtjjvXZe[^_UVSPxjj5D54PpP 4SQJQ;s\‹ }FPBA;p|4p5D5\55#e[^U4@9D}|\< t+< t'jX4@9D}U\< t< u١4@9D}6\< t< u'jX4@9D}\< t< tUVSE8u] Du}H#~j=DY~Ku=D=#41ۃx5\#tC 4xu#HtL4xtA=#t$5\5#XZ<~ K?KuD ~V9#~K41ۃx5\#tC  4xu)##V45\X+P5#5!Se[^U4B9D}jX4@9D|6zt0jX4@9D}jX4@9D|U49\tjX49\uzt#U49\u =#~-B9D}j_X4@9D|jGXzt#UWVSPPEE+Rh>Sl DžXu>}?t:/Bu‰E€8u=$uCj5!rj5!qK^RhQ=$h,Y ƅXuV$j"j50jl$j5050xjjm#4"50O,h@5,0"##D4\#jjhm=$5jjOm^=#Xt h">[u{=!tj "Y=#t+j5"5"w5 "ljSClXZ~juh">uWMCW5!j=#tZ5"!Xt.CHP35 "*jhS5 "[u5 "#Xj9_t@u=!ujm hFj%l[^=!t-5!h&>5,H 7" u=$uIM[Opj5!/oj5!"o=tftj5!%ZYe[^_ e[^_U=u#QNP[Ot~=xO~=tft tfj5D\mtjHP5xjfGjP!an j5!)m5!k =tftu jj5xH jj5xP Gj!5!nj5!l5!jjjt5xHPF$jP"mj5"l=tftZjj5xjxfFP!蛤 jj5xjeF$jPTe5Tj xP!táU9tu 9xtV=tft 5!X5!5!5"5Tؕ 5!wiUWVS(Ex0EEEt0E8u}Ex$u]F1;эA;E~ENu1ҋ5`$EىыEI9ȉEwىIMԋUԋ !MЉU1}Љы5h$YI9vы}щI9Mw:1}ЈЉIM̉I9Mvً}ىэAEԃ5x9E~Gjj5!K5!臢5"5!5!h1!wt9]E~ ]]~ڃU MM܉MU܃9|ExuU܃UE+u+]CQPuuCjPjujSuuuuu8M}1~+Ej@j+EPSJ S1gSRYXv WZ t4`~"v WY t4z~ GЃ v WZ t4`~Dv WY t4z"v WaZ t4` GЃ wGEU9U u tb , tz  tNEtQt\xtHq}.t)tRt t@F;u~:3Nu0u+Myt"1uuSuuuuu' UE+UH9|U؋M܍D9~J~ ;uu:)E9Et1U؍D9~&;uu +E܃E(}u EE;u}-E~uuuSuuuuu t tSRSdS6kM |u| u|t0k]TtRT MTtRTX]T=tfte[^_UWVS$EU MEUMEU M$]}EUMS袞;}XjjSG =uCj+S VYXE19}j-SUXEF9Z|j+SUjGPSGj+SUE19}j-SUYXEF9|j+SUCjjSKGjE0SfS jGPS/GU ztj5`$S=S =uCE1E9}B}u~jWSFj|SUEPWSF j|SUXEFE9Z|M9MC1}~!juSFj5!SREH9Nju}nkE}ԉEjE+UPSLF }~#F$~$kPh%>Sk jE0S;REEH FE9E|jUM܍DPSE ;uu3~#F$~$kPh%>S kUh$E ]e[^_;u\MM؋}jWS{E }~#F$~$kPh%>S蚎 jE0SFiQG E;u~e[^_US5"ɛj5"1ۃ jS5"Dj= t @"$P5"CP~5"a5!cjj5!D5"5!ߍ5!` 5!bL5!jj5!dD5"5"`5!` ]U=tfSt5!˚1XjS5!D5!Ogxfu= jt ""Puj4$5!O C~5!_]U=tf5!'5!jjtP5xHPDtf;jP!b j5!aj5!5\5#55!a_!U=tft5!Dyjjt5xPQ;jP!Lbj5!a$5!Ijj5xjtf;P!#D#9xf5\~Pi j5!jj5xj:jPT蹉 5T_^5!T^!UVS]@u3j5X$P!44 -u9أ4Zt S~R 4YSZt uSPR Xe[1^USj5<YXt;tSSR XZ]U=t hh.jXU=tftj5! j5!XZ5\5# US]۸t1<.t<>u AB< t< u;K|1;K[UWVS(!EBEB=fEj54ZVjj5!q?5!b5!5!蝈5![EءDEHtݻ EС!EܡXEԡ4@+D@P !`O Xơ\< _t< u D)M=\ˉt2< t.< t*4;HE}BFCt< t < tE;X|It4p`[t1;=\tj.C;=\Ytujj5!+>5!la5!5!W5!TZ=Dtz4pZtfJj@X\8 tjj F_XjYc\< t< u4pyZt4@9D}/\8 u x ujX4@9D|4@9D}Y\8.u7x u1j\j 蓮j 茮\ 8 u\8 tj+X4@9D|f:jj5!<5!_5!5!Ѕ5!X4 DP9}u9#}+9}'j9#_}4@9D|+4@9D}Ӹ=Du%j&Y4 DP9|u4pZtt~jK_t}~jM }[ tPIM YE5X Eܣ!-M EԣXU!U!PU!P5\5#EأY5!5!zWe[^_UWVS hB>T ^uG>1߃у QjK SPEX:h^>u:EhkAK EjE4kZYh}E4k,^_ER; t@8 uh #SHZY.j5|#S t! j5S| t!j5LSX t|fj5@S4 t|fj5\$S ttfzj5(S ttfVj5"S uCj5lS tfj5$S tfj5Sa tj5!S= tSLƀ>XVjXj5S t.S1QI VPf7Uj5S t/SִƊ0< _*Vz^j5"S tj5"S_ tj5S; j5#S" tfj5S t  kj5"S t  Jj5!S tfj5T$S t uhS uqRYE}FSH uH hM>P t%R> ufe[^_UWVSlDžDž_>|h@hW5!jj5!\6u 5!uh]> [P%@ZYtHhh>SuScSkLh}S!($hB([_u!5"5!~5!Q)tsE1D h #SHZYuj5!S tSh^ V* hP( u|PX=!t|#Ph^ V=|ftL@Ph^ V=tft\$(Ph^ V$=ft"lPh^ Vt=t$Ph^ VS5f5hKV<(55ho>V"=t""Ph^ V=ft#Ph^ V(= t"Ph^ V=t!T$Ph^ VVO5"5!|(5!OXu]>t E _e[^_US];<\[ur˼UVS# u_ Ph>xV Vt;Vh>xSs S!54!VAe[^UE1Ʌtqtt .t>u1W t uPZ1Ʉt> t t@At t ut t u@At t tUWVS4!EEBEB=fEJ54_6 DEġP@UJE t'\ t t4M;Htu` EȡXE̡4@+D@$ !PU$ M!@ Xá\< ^t< uO D)M5\ωt2< t.< t*4;HE}BCGt< t < tE;x|Ith4p[t1;5\tjC;5\Ytu=Dt)4pZt14@9DtjX\8 tj踳j ^Xj観Y1 \< t< uE=Dt54 Zt4<.t <>t 1j[jJYX\8 tjj OXZjX4@tPY~#;>#9u*=DtZ4pRZt jkX\< t< uG=Dtj臱X#9~4pYttGE}C=DtJO4pZt~jK_t}~jMݱ}^~}yjE}[x tP? YMȋE؋U5X $!> M̊U! XU!PU!PPUP5\M5# e[^_UVS=|ft!P5dh>O58g =!t!P5hh>O5Pg =ft!P5lh>O5hg=t!P5ph>O5g =ft!P5th>O5gU=tft!P5xh>O5g) = t!P5|h>O5g55hg5g =t!P5h>O5gh gƍ@,$p'1=|f|f1=!!1=ff1=f1=ffu @5!Gc=tftz`s1= =tf tY Rj5D$EYXt=SOtZ~S; X$1=t f)e[^UM S]t*9t%ۉt;t8uBt:uAt9u1[UWVSE8~x/u%PMAƉl@j/uCllXZE1lE@Pl/_E1҈~щhlыhLQk9 vPpT(lp( Mph>p[^p1;8t'<$t#.CFt <$t~;$C1<{u+Ct<}t*tCBt <}t~;}u-C*t&tj4u tGC<ue[^_UEU t P@BuUWVS] Suj5t$j9؉t 1Q6 VP% e[^_UWVSh@jJjh?>eh>jt$h>j gs h>jd_h>jhNh>jl=h>jp, h?jth%?jxh;?j hF?j h hS?j hh[?j hhe?j ihq?ji h~?j0ih?jHiyh?j`ihh?jiW hjiCh?ji2h?jj!h?jj h?j0jh?j`jh@jxjh@jj h@jjh(@jjhDjjh5@jk hE@j(knhS@j @k]hj!XkLh\@j"pk; h(j#k'h )j$$h)j%$h)j&$ h@*j'$h*j($h+j)$h`+j*$ h+j+$h ,j,$h,j-$wh,j.$f h@-j/$Rh-j0$Ah.j1$0h`.j2$ h.j3$ h /j4$h/j5$h/j6$ h@0j7$h0j8$h1j9$h`1j:" h1j; "}h 2j<"lh2j="[h2j>"J h@3j?$6h3j@$%h4jA$h`4jB$ h4jC$hj@jD"hr@jE#h4jF` hBjG"h@jH@$h@jIPh@jJX$u h@jK#ah@jL8Ph@jM$?h@jN(. hAjO8h 5jP! h`5jQ h5jRp h5jS#hAjT!h5AjU,hCAjV# hSAjW"hgAjX@{hpAjY"jhAjZ$Y hSAj["EhAj\#4h 6j]t#h`6j^! h5j_$h6j`"hAja #hAjb# hAjcL$hAjd!hBje"hBjf! h(Bjg"ph:Bjh!_hTBji!NhhBjj`$= hBjk)hBjl"hBjm<h6jn! h 7joLhBjp!h`7jqD$hxjr# hjs!hBjthBjuP$yhBjvx#h hBjwThjxdChBjy02hBjzh! hCj{" h Cj|!hj}<hCj~! hCj|#hChhChLh"Ch@ h'Chshh"_h,Ch\$Kh5Ch(7 h3Ch" h?Chl h=Ch$h-h hJCh!hWChheChhcCh" hqCh"zhoChfhzCh#Rh7|h$@"4 h8hD"h`8hH" h8hL"h 9hP" h9hT"h9hX"h@:h\"`"$d"$h"$l"$p"$t"$x"$|"$"$"$"$h:"$"h$" h;h"h`;h"h;h"h <h" hCh"hChh<h"zh<h"f h=h"OhCh";hChh'hCh@h hChXhhChphh@=h!hhBh# hDh"hDh!h&Dhh$h>Dhm huE 1;xu;XtRuWSh-Jo V Ee[^_Uj=|XtjhS5$ jh`hU=|VStY=|tP5`hJh5؅h؅CZYth5؅h5؅|e[^UWVShEtHu=h2JE PEPW u$E 0h?J5 U `| E2WJu%=lfu5h dEhj%jh`ENgPF>t =u|)=|VE 0ZY=ēt V8X=Ѕt SX=`t S!X}t0EPSY_uEċUȣ  Sh*XZ19ju =hu Pס ǹ JuBQVSh-J=| u:=|t1h^JhJhh^_t|hj5tu uj|e[^_UWVSQQEEu t 6hcJh}vDžXZu%vhxJ5e[^_Ë  ZJE Ju)EB ;t^ujVuS [jh,EjjWuƉ}e[^_!U}tV2U}VSu$E 0hmI5t)@5|Jt@RhJ55hJ[^=tuFj襠=Yt5|h`d5G 5hJBXZjg^5`h\8uJP5f$hd55|$5 h$hd5$h|h hh@hfh e55dh$5h$5ȅy$5\hk$h`e5Y05J$5f<$he5*5Df$he5 5$5ē$hJ5,=ЅthLfhhK55hKY[=`thhh(K55h@K{XZ5,]$5p5I$h f575ȓ5h5h$h`f5 (5T5d5d$hf55 5hf5$5$hLK5=Pt g@P5Xh$h@g5o5c$hcK5Q(h~KhKhK54=Hh~A5hK1&[;5HhX}%fSh5F ;5Hh|e[^UEWVSu] }u 1>Ru6hVs ZYu2h2sZYu3hK5f$t6U$WhK5Be[^_UhKhȅu uGUhKhu u(LUhKhhu uUES] u1={t 3hgGhVsYZtPh2sYZu ;s=Zshg5O|p5($hK5 =t5phL5 5h[Xt ,]UhLh\hu uUh+Lhu uUhALh,u u=,t UhNLhhu uaUVS]ۋu t~!6hh5  1=ffu>hVv9ZYu f[h2vZYu f<uv`hXhvh%\%f =ft,\t8u5h@hMY[f75`h\8uJP5f $hd5fe[^Uh_Lhdhu uUhhLhDfu uUES] t~ 3hhXujhVsYZu \h2sęYZu =sZy+shL5*d1==̅t55̅$hL5ξ1=]UEt!Hu:hLE PEP u!E 0hL5udE phLjZYu9=u-=\ht5hh=YXE phLjYZuxUVSUM u @fAt1hL5追lqnÅXt]S^ySh#J=hVZYt Vh M5s  Sh"M赤^XS e[^UEt!Hu:hIE PEPt u!E 0h-M5 !E phDMziZYu xUWVSPEtHu=h2JE PEP u$E 0hLM5蜼E hj`|%jh`ENY;u |y=|tpSE 0^_t_ShDMhZYu x=|u:=|t1hfMhJhh^_t|hjju ]ujT|e[^_UEtAHuhnME PEP t%}hxME PEP t}~!E 0hM5*8E phMgZYu!E phMgZYu xUWVS EEE EEE>^EEE;puEE؍4 Su+=hfuE Eie[^_uE}tj}EMu+E؍4M8EMtEM}~ E@E}~ E@E}E Et;}~5}u}t E0hM E0h@i5 }tPhM謱ƅXt>uM1ӍCPE|SVE@PEL>^ut:E8|t2PE_tPhM[^Eu 8jjhBuuudx}t}tEEe[^_ e[^_UWVSEt;Hh2JE PEP t}0hIE PEP uE 0hi5wPUE LMMD>^t6E8|t.PEZtPhM^_uEE ޿Mh(j‰E`|莾jh`ETt=|EH9=Bt u>j/SY^u@hPV| =t5S 5j O~j5h">VS jVS Sh&)j ~PS9ZuVjW^C_uhNY e[^_UWSPE1ۅt#Hh,NE PEP EvE 0hi5(E ph5NaZY}h=N0jU BEXE phHNjaY_}t5hPNͳ5~5(jO]S蹴u'5hj蚳5(ss1D E X EE p hZN`_Zt5hbN=+u}uE p hZN`Y[e[_U}S\hu!E 0hmI5ԳIhrN\h@`Zu)=u5h j袲hqN` \h]US}u!E 0hmI5ULhSZYt ShvN5! hNdY]UEt!Hu:hNE PEP" u!E 0hN5踲_E phN(_YZu9=u-=\ht5h`j耱XZE phN^ZYu xUEt!Hu:hNE PEPu u!E 0hN5 _E phN{^ZYu9=u-=\ht5hjӰYXE phN=^YZu xUEtHu:hNE PEP u!E 0hN5cu uh@[UEtHu:hNE PEPt u!E 0hN5 u uhOUWVShu} P 9}9hE4VFG 9}hhHV, C9|ǍPh&\H^_u jC^H[txe[^_UEtAHuhE PEP t%}hIE PEPa t}~!E 0hO5E pph3O^\UESU \hu2hDO5誯/H\hu hWO\YrhbO\XZ\h]UUBSM \hv1hpO5@/J\hu hO[YqhO[XZ\h]UESU \hu2hmI5ڮ/H\hu hBC[YrhO3[XZ\h]U}E u"t0hmI5xÃ=t jj%XZj菇=Yt jj XZj! U}E u"t0hmI5=th'CZYUUҋE t~0hO5ǭÃu@ hObZE EZN"ZUjг=tXuj蹆Y1=j 蠆jh`JUWVSSEtHu3hE PEP uE 0hO5E p觟E@Yu 5hO}u5hOqEx u 5hOjh`I_ZuIh>j_j܅M y t4=u+5hJ艫j谅Sj"vhh|oY^~&1|)Q|Ph|< ME PPEHPQXZ1=j .Sj蠲e[^_UhPhēu uUWVSu1ۀ>t@3Ё&v RZ tD4%t1C<3tvƃ&ti1ۀ=&t^&v R_ tD4%t*&v R_^ t4&C&ue[^&_Uh$Phu uUVS]ۋu t~6hj5親ju&5h>PЅ苩Ѕ?jЅv@hЅ u LfjvhLfe[^UV1=LfS*tFLft~M9tA1Ҁ=t+8u 9}"LfBt ~1uCA9u[*^UESu)5hKP`蚨`t$hVPE PEP t}~!E 0h]P5>wj 5` NÃ=tXZtC; tj SMYXh5h( C; thSh]UWVS}1Dž`1DŽd@~?=_$t\u=C8tJmS0~,CC8t!pdLAt8CuLC_:t Dž``t9tA;tC9t;w9t DŽd=..&Dž`ƒ[t/[$\CCC$uiC=w^UtTC<0u?t7BA:u*pσdT;Tt BA;TuDž`,]\uCe$uXC=wMUtCC<0u?t=BA:u0pσdt T;TtBA;TutCA<,t<]{;Dž`K`Ct5Ê<]t;\u{tCC<]u;uy,]taKC=wMUtCC<0u?t8BA:u+pσdtT;TtBA;TuAC;=.u5hwP~.e[^_UES] u1= h h|t!3hk5hVshYZu  hh2sIYZu h|'hs YZu h|5|$5 h$hd5r h]U=\htP1PhXhu ugPUhPhfu u>UhPhu uUWVS u] }t,}t 3h k3h`k5詣 uh+sEE}Y_Et8hZJs}_ZEth]s}ZY{E~sE_y ZEus Y6jj诩jj褩EtP}uEh=ȓ}t =\ht-5ȓ5h5h$h`f5蔢EtP}uEd=T}t =\ht-5T5d5dP$hf5>VjSj1e[^_Uju u#U}E u0hmI5WhPbNZu2=u&=\ht5hk軠YXhP+NZux"USPE] t~!3hP5a=lfu5h dIuEj EPsqу ɉxE8tshP5    u5hQٟY[RPhk5賠]U}S\hu!E 0hmI5膠hQ\hL\h]UESt;=Hhu5h l;Hh$QE PEPp t}~E 0h/Q5=ht5h`lXZj E pkHhfP Hh uDflH5hlf CfAHhkf@fkf|t3ӯt< u Hhk;ft{tC|u蠯 t@ @t 萯 u5hl]UEVSt!Hu:hIE PEP u!E 0h-M5覞QjE p轹YÉXutVSE phEQ5e xw1e[^UPEt!Hu:hIE PEPk u!E 0h-M5PjE pFEZ@Yt-EPo$进$E phNQ5趝1}UEU u2hTQ5脝Hu EmQIBE ErQIUShBj] Sutssh m5!]UWVSQEt!Hu0hIE PEP? uE 0hzQ5՜E p職EZu ~hM譔ƅXt>uM1ˋ}Ӎ< WWVPWhHSWuS(SSue[^_UWVS Et!Hu=hIE PEPR u$E 0h-M5hMғE[t8uEM1}ӍCP?|Suƍ@Pjjh JEE pV\hh-JU\h ZE( VU\he[^_U}VSu t!6hQ5hQ66u[Zt.hQ6uZYthQ6uY[uvcZtu6hQ5q ntt 5 5hf59e[^UEVSu t ttI6hQW=Cu@P3j hQ5ƙ;udvxÅXuvhQ5蚙JCtPSCXv|C=\hYtP3h R5[e[^U}VSu t 6h"RvÅXuvhQ51CtPCX3h4R5ۘe[^US}E \hu0hmI5襘;=`fuE E`m]鈗\hhERD\h]USUBM \hv1hM5/P=hfuE Em]J\hu hJRwDYqhORgDXZ\h]USMAU \hv2hWR5褗Z=`fuE Em]釖\hurhtRCXZrrh|RC \h]ÐUE E EE{UWVS1҈Ћ}IMIɉIuZM0>u kЉىIQVhS舺S5(\a@D-} M Љ򮋕Dž9qss<1ыI9s/8 u1CI9r9s9r;vA+VPhS膹S5(Z`@D@.5j hjUr2%u軴e[^_UWVSPƃ1}I=zMzt91I9MwuRu_ u 3Vν_X;uVu u <uhH5(_@ZYujVQe[^_UWVStj/}WCoZYuƅ.ƅ89uƅ/ƅ)@PWP ~u1VٮÅXhSVXSPX~葼1IÅXtvs5tPsBt=C9w1S趻 uSNP ÅXuu <hPS<hhdTSxh0Sc$PSۖ[_xCfHf%=@uƅ/P5(8]@ZYujOe[^_UWVSPƃ1}I=Mt91I9MwuRu_ u 3VκY_;uVu u <uhH5(\@[ZujVNe[^_UWVS$j/}WDž`Dž#l[^uƅ5;/u9v K;/u9w)CPWP| =xu$=2th 2PXZY2t jP-N_X蚹2|DžB=|t9;u |(j/SQkY^t@P荹P52Z PjP蕨 utPh5DhPh 2xx Ҹ1ҡ2;PDžs|1ЉI߉I9w/IQS uSlXZ2;Pru GjLÍe[^_UWVSumNj@+=[@P7h|lG+|Г:Dh:Dh :1;Гu6:9u-Pu@Ph 6 u,Г;sDh@P4h 6軿 Dh=Гƀ 60݀YP 1эy9=Гv2~.Tv RXZ tD4%t=ГГ9C DP/we$0EVh 6XLVh 6?JVh 67+=t5h n|Vh 6 PhSjse[^_ÐUWVSEDžDžu} uH%h$QE PEPH u E 0hS^1;HhDž }1fj SE p t ;Hh|ԋ ;Hhu%E phS5~~hh|$P譽 k f;f.Cv RZ tD4%@uـ;| $t\CS=wYUtO1 k |CЁw UuދEK9|o)PE tVE |;iuIC;UDž}6)PE 4V証E <1эt F;t C;A~0}ǃXu 5hO+u 5hO t*=u!5hJ؉_X=\ht 5h|讉5j R5WY=ȅ^tt5jߝXZh$Ph|藻d}EE k f9t C9t;Ee[^_ÐUWVS]E }SDž軲=XtShT5蓉 hHP3jh-TPduMhH|jh3TP|duj"P.ZYuSh`nUq_X+XS蓱SP8thWS \h;T5谈5q5(hS謈u5(v"1Ƅ ]u h=N=^1Ή߃֍4VΰVPmVhM訹VS蛹(}u1I1׉1)SQU SPShHM 13} PV[11(t #Yt Zt Xe[^_UWVS} 19uMsi3F3D30 AFT3D3< AFD3?AFA9rK9v IK9=w[^_UWVSPPE8ƉNJ%GЁ$D2G=w}L0tquFӉutD5tBB0EW=w UuҁvR'XUD UUGF?,e[^_UWVSPP}t0} t*}t$}t}t}t} t }$t}(u hnjkEUEU E(EUEU$fjhOTuE+` u"EUEE$|fP6jhWTu_ u(EUEE$f̓Ujh^Tu_ uEUEuu hfTl UtPEXUtPE_UtPE^U tPE [U(tPE(YU:j/u(ƅXZu u蚬/+]CS%SuPѴE8uFVlU($@WU(^XtJE8u 0UC:P/j:E0( t@PUY?[ukj]_S'ƅXZt Ft<:tuu Whnw)PÍGPWݝ;W胪uuu WhoG~:u^1j:W'^XtCUۉ:t1jS赩ZYuuu ShvTjU$f]}tu<U XE(8uhdT$U(X=tpU(u&U$PffuRU u&PUu&PUu&PUu&Ph@o5见 1e[^_UWVSDžPPPPPDžDž`DžXDž\DžDžDžDžDžDžDžDžDžDžDžDžDžDžDžDžPPhUu$@u-t#8thTPZY[t uhot8u)u =u uhoPUXZuj/Z^_t@P赨[t 8uquhp=thT5` = DždDžhDžlDžpDžtDžxDžtJ>^t5:|t*XPRZYu h}ԅTۮ^\_u hT}XP\T$TY[u#x  t3jRP\$yhT4en=\h,hT5} ׃ tRPhT5}5j }XZ} u+uhSDž HuhSIuE _} ԅ UE 8hSDžu^8P1эq[u;tpj:SW…XYt0j PBP蠸‹ 8u;9u01эQ9rRS)PW hP_XntPDž[u#u uPPPPPPPhUu 4$@Vw-t#8tt>tdTt u h!U.6Yt~j%X _Ztkh@pc[^tPDžYtPDžZPDžtPDžXtP|DžXtPUDžXu{XtP+DžX1}ԹXE؍PEPjEEEtP$h&BtDžS\jjjhVss thhſV =\ht;tVh:U5ty SffBs js~ y hHU`XCssPp y5Ph\Uf`PDž [ _yhtUh JP[=\h\^tuhU5x 1Uti=\ht*WhU5RxhU\/x =hhi\hURhU\wj:tF۠P蚟ZYtj%SZYtShU\wSlhU\w ffPtPhU\ew \hWVbv\hURv\hVBv у tM5W"v5 5hV\v5 5h-V5vF(=hht\h@VuY[hZVlZtPhgV\v h~KhKhxV\wv}t9=\htWhV5TvF uhV\8v }t4=\htWhV5vF uhV\u =\htt5ht_X\hWVt\荬 @uhV-jhAFjP\]uhV\t?D8< t< u-Ht D< t< tӃ=thW5u j Y^j PCSٰNj t*Ёv R'Z tD4%@9S詝Xt U^jhAFjP\]\ D< t< u1HD< t< tσ=thW5s jhWO uhj PS|у ɉ£  8=QRh W5gsjh5WN y*uȃj VS^|x xt} 8-n j VXS'|p plF x9p4 t9l 8/ x*Xu +j PS{h hd 8 =t5hKW/qYx[utu5j*qXZ+plxth]W5qhdhgW5q  hp jhnWL (Vh~WS u*VhWS uVhWS DžH8u(PmX=m`Pf$hWzj hWL u. S謙=^ ShW3jhWK ufhSJZYu ShpX8hXSJY^ =5hX$oXZjh2X;K u@t 蟿XSј=X0ShGX[jhaXJ  t BXSt=^ShtX5No tDžY/!,}jqt7A 1t5   hq1 t 8u h@q :B:~ hq1uD=\hthX5Kn uuu=\hthX5n ih^ 5m t :u hq;u]];tl5hql5(j P~mu5(H~v R~Z t4y11PRS(uuu uZ31IkP萼YthX:hX>^u,X:|uHjj shBCSi#Xu ShXTDž`# Tpu lt 9p|G9lv=xuXtuO ut9 9ӡ|(9w$=\h5hXj_X  txxu ttfhu dtdh 9xu9ttuh r`S h5j#{p|XZ;|;|s5Ȟ_t)TT~x =hthjPl++Y҉[yH@B@B+PX똃Tt<\5:5:5g t5:WV|=tP=,uGۋ x7v.p9|9s5j#4z_X5j %z[^\.Yt h0Yjx_X?X`TZu~tujSzkXDž譿SDžX{j@u*PV$c$h`r5e ҡxvjQfXDžDShr5hrh sh=Yh`sMhJYM_XtPjl[^tPj kZY\t \蛾@t PmX`tXt X`Xt 蘴XtP致DžXtPlDžXtPQDžXtP6Dž_tPDž^t [tPDžYtPгDžZt 豳Xt 蜳Xt 至Xt rXe[^_USpjijdhfY]SєPS5|$Tljh aUWVSLjhWTuVDžDžDžDžDžDžDž:>1  PPPPPPPhUV"$@t-t:tt8tt8u Vh|YRXZ8j;P<YXhYS<YZu DžFhYSu<YZt5hYSd<_Zuhs4J[VShs"J xVDž辊j@P t)CP0腊Yj:lÅXZtCP]X=84t6>t1j/V;_9Xuu {dTt{1u tW[Y=t{u&Pu&Pu&Pu&Pu&Pu&Pu&Phs5g`$=dhDžDžtQuHt >thYVJ:[Zt Džt ?thYW&:ZYt Dž=t jj诱Y[轻EԋE؋EtEEEPR@h@hlX@hZt!Hu3#s uh@tGt tEPj譊EPjXhtjEY[uj/VÅXZtCVCY1ۃ=t+ۉu&Pu&PhY5^t>taEPjEԱ uEx诟X=xZu0>F=650ht@]_Xۉ+t?uDžt3hVS@hhdTS|hWSp߃$EZJ}Eu t*EPjhE^JhXhT=uj/W!8Y^t @==EEEt PjCPjPXZdљu DžtP¬DžXtP觬DžXtP茬Dž_tPqDž^e[^_US]jhYS7 hKS6ZYthYS6ZYu 5hu:hYS6ZYu 5hvhYS~6ZYu5hw[[XIhYSY6ZYu$h@h~KhKhY5[Shw5[ 5j B[1jjhOTS6 t^tE8|t ~EXE@ۉEu E;Ef=tt jj^_؍e[^_UWVS U EI=uEEEEEtVhY5Y V趂EEԉÃ1ъT /Y:}~91u7SSVPE貊ShdTu bj/SE]3ÅXZu3j:u3^_uuh|Y]ACS E/ CPEYCE=t#Eu&Puhw5XEPjuEo }yJU }uEEPj8XZ-t"M EEPu>E E ^8_uEEtPE[E؍e[^_UWVS81e]Dž|`a}Թju 0XE؍PEPjSEEE腨t"P謧$h&?Hxt hphSh ;辈 | ;8Sz:xYtKjjjhVsssfthhV\ Vh:U5V SfBs jsi\ yDžUUss~ y V8t܅tu{tDjjjhVssethhV诇 VhZ=XZDžR^DžX[y*h&c="sKeCeePh`aDž]yh&Z<X*=e`au4jPjjDžZy h2Z<_h}蛬hB膬=$tu hKZC=^/=\ht5|hZZ5T j[~"tP:Y$tSP*ZJjPhhDžYy=t h;X| ]1e[^_USSjpZ=|XtjhS5$\ ;@=;;t jheTS]USDSj Z=|XtjhS5跄$\ ;@=;;t jheR]UWV=S5hlZaRrZ}^8] _u 5hxZZ}u5hZRY[Su5 5j dfXZ=$uhw;1hj;\YÍE Pu5$\5$hWVQ5$A'Cuf P(X;t tjXSjXe[^_UWVS hj;DžDžDžDža;XhjvXDž1Džu|5ߩÁX~5诩Ph5蜩PhhhZ5$Q5$ڇpFj;5;-W}Yt;5fZt+j}WjpW1jfdc=\hXt@t 5h xt 5hx 5hxjO^_5[jVjV tc\h~U5uL~G=Thu>= t't uu5|hZ5O 5S} tU :-tRhZ5LK }tuh[50K =ttuu u^'m h9Lht jPuu_XjheDž`Dž\DžXDžTB[^t#=fj=fYuhojIQhej=Q\u >^8u (h,E 8|uLjj P] h}CSXAhuSh&:,Dž`# h}u Nz_hZuu h#J)1?EPhDž`Tz$M[^xE%=tu hZ5tI EċUȣOjhe2ZYI L щHuItuILht|KwCjLHhr!j5 5hy$5ƒyu h#J/^_"5 5hZ DžT J}tuuh>O uh&Y[HTxf dZ <9v&$<tP裗_P <fp$<^j@jj lNXLh OC=djEPLFdYDžl[H?19ס <|9vQ5$<hx$ P p)׋$<pSdw$O l~)pÃpȃl:==,t =yoEU9Ӌ |K9rG5j#YpËEUډEUXZEU9Ӌ |9s5|Xx j|PKU+U|+EY҉tx[yHt@Bxt/@B+xP)_E5 <5$<hDžlvv$bN p$<pSd8v$N l~)pÃpȃl=V=,t =@EU9Ӌ |K9rG5j#1XpËEUډEU[EU9^ |9s54{Y=tY=,t =yGۋ x7v.p9|9s5j#WXZ5j W^_pyu h#JF+Y[lhp 75j#>W5{zpËEUډE U=t.=,t =yEU9Ӌ |9sd ZuWdj V_XdpV[^hhp@Y=tL=,t =y:EU9Ӌ |9s5j#2VXZ5j #V_Xh ^tu h#J)Y[d Zt)A8 t hZ)Xj8;`_th`Džh^d蒛jDždY[\jH_=fDž\Xu k$xPvJ$^dtdDžd[j]YxvjAX\t\jG^_XtXj GY[$xPI$Z`tht h`Xdt dYXP, e[^_UWVSE PpE DfU,E,DžLDžHԅZ0u-JEEt^=\htU}tOPt*}u P8-tPhZ5? }tuh[5? =ttEtuPuc 1҃=DžDDž@Dž<u EtjheUZYt#=f! j=f_u hojEhejE}@u(P>^P:|jPF[^j/PF=8ZYt =8 ult;PjdTtۋPu5PE_ۉ4Xt/4x)=uH=8 u5hPLF[^yPh#JZ%=t/U=8 u% =tP|PY Eu=LhtRjjhXZEh9Lht jPg^_juXY=[ @ I N jhe,_Z Et)  tRPhZ J }tE8tPuh>Or uh&`[^H h}!HY }P>^u%,L,DfP9|uVjj CPhBCSX P(<d,<_jR4Lh^Et3  t"jRPLl$襕=hjhP @N:hYDž4[3*19ס(<|9vQ5,<Hk$xC 8u85,<L)Kk$#C8 9Љ4.==,t =yoEU9Ӌ |K9rG5j#\MpËEUډEUXZEU9Ӌ |9s5_pXx j`P>d+l`+h[҉X\^yHX@B\X8@B+\PY85(<5,<HDž4i$A 885,<Li$A8 9Љ4=k=,t =UEU9Ӌ |K9rG5j#KpËEUډEUXZEU9Ӌ |9s5nX=tY=,t =yGۋ x7v.p9|9s5j#%K_X5j K[^8y)68 t hZY8944PhZwE  jjjL1axw1ۋ 119Ӿ|?9s;L/ZtF u 9ӡ|9rjjjL`EPh#J[8 uE@E能8 75j#I5lpËEUډE U=t.=,t =yEU9Ӌ |9sH 8YuEt5LZulLj I_8X8t.8 [L8H[^H蓍8@Y=tL=,t =y:EU9Ӌ |9s5j#]HXZ5j NH^_HE[t)'48 t hZYL ZtPh#J^_j`-D[tLDDžLYH躍jDžHXEZt'EPhy5 45hy 3 ɋ-E"xvjO4X=DfDTjuOT^@_jpS8STPxDž|7@TP#$11$Ph z5(3kjheY[u/hKj9X=fZu 6H_xvjB3^@t@jZ9Y[<t[ha%5, L PT1 fUE E E fXff\ f f\PXVTPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPURPPLPh{ha4\t5h{LuPu Tt5h |1 f1 f fDfBvfXfV [  ȉיDžXut 5hzcKP\PJPIPHPhY[ha3uH:Iu:Ju:Kt5hd[K+XZ^e f󥋅\ff!+8t=|hRO fPh f5$'T x`a f=t ff$tP]4_jj fP1 £$yhUU=u'j`PjhR0y hr[ fPh f5$0 yhr̅t-j`Pjh5$D0y h[;^1 fDžD󫍅DPh f5$2 yh&Z[jD5$ fRZYy h[X=7 fƒt t=Xh=P1ۍd fCeu Dž|j j WhVdPdP)9u]WVSh[M=H=Pt5hz(_X ft tIfPfPfPfPfPfPh[ƃfPfPj#fP"fP!fP fPfPfPfPfPfPfPfPfPfPfPfPfPjjh`|ƃX=u"=uDž@j1@t = fu4j`Pjj5$Dž`@-y h2Z7^1.5$0$@[t e[^_UVS(`a= huEEPEP5$. y#h[5$01$M5$/}$Xu)jEPjjSEd,y h2Z[XV5$^~e[^USV&j-;@;=&]UWVSSShBj;\-Z}EYtt uEE@<tU@<EEtU|thPCPW CEэ e|u ѿeэ`auѿ`aU쉃<<$@@$hDDhLhHHLhfLLffPPfTTēXXēЅ\\jhЅ`PIVEj`Ph4VjhLfqP!V$EjqPhLf V`M싁hh`PUEhPhU$hhPUEhPhUuj*; tj;UXe[^_UjI*=|XtjhS5T$, jhee|;UWVS uEE-J8E-Ju=tIIEhu=ft=t9Lht jSMY^h[Zt5h|"<j@=_u&5h[!j9Lht jS;M[^hah[=ZYuljhe莿^_hEj@) YEѡ [tRPhZ uuuh>O Htuj(juejjbE@EXZ  tRPhZ ugu uh>Or HuQj;j jujs(juu h[5;!jhes^_hKj%(-J;uY8[t =tuju-Ju=ttjVX=fu,Euu uh>O HJ=ftjX1=tP=fXuGEu7u uh>O3 Ht!j=fXjy=ftjd_1=tP=f^tPj j5L *y h[=et j2YjjXZ=ttj1Xj)=eXt uj&e[^_U}SE u"t0hmI5Gjj5 yh+j12XZ tj0X]UWVSWWj/}WYEE1^t9jdTt ۉu5Pa&ƅXZt/y!Wh#JG5h}1xhWhOP ƀO.OuOE}dtEC<9uE0EjhO%Y_x}0uC<.uC1@CKtOe[^_USpj$jdh@}]SOPS56O$'j0 jhe<UVS$ҋuu*h}2=eXt j0jjPRƅƅƅN$t hXhh[5$t5$5Tj V5c*y hX=et j/Yt&t!hPVN$& jZu=(ujXje[^UWVS]{uZ{uTSzuKB uDzu;}EBEfBCEfEuC[^_ÐUWVSPh@jU EUE5E0ah\̓K|\`hst`h `h\h\dhh@h h|Df\h,f$(phȓdTXhPEEhXhrÅXt/hShh L =vj?qB$Sh"\jjj  uh2\WuVh hhPEsyh})VhhhSEHy h~jS"= X   =  Bh:q_u AhF\~q^hSPZYu  hhN\S^_u h|Qh\SZYu f4hS^_u h| Sh@~hY[tƿU\u h| tƿZ\ u fhc\p\Zt8u \@=ft\8uh~f_hm\=p^tƿr\18u5(YI$}V|,P$5$h^j5$5>^0 h|k$̓\j EP5$R ~ E835$hw\4j EP5$KR Th~ E85$h\jh5$EԞ\?EX&;u5$h\)]Y_\FhEPvÅXZujEPVq @u$uce5$Eh~>EX1\h,\h, h\uu2 Cjjj5RUhB>)EUft@fPhE\{lt8t P=@fXr1t P"XuFP"ƅXt1=@fuFt8t P_=@fX6R=PhE_=hue@ftehPhhzE =whh\hhE =v$j?;$5@fh\,h =@fuhdT<@f^1}QMG<uuPDuh=S/ESh\Dk$hS (h@hS%k$hS h@hS k$hSv h@hSj$hSZ $hMh]j$hM; h]h]j$hS h@h]j$hS $SbjA3hojehojYhjM hj>h\j2}X}tuuuJ6j:E0GY[t'U2:Zuuu^_ Pjh Y[tjmhe|jh|j E0j@Vܶ1tpmEĉuȋUBEE@ht0@hEPE@PX=@hZut jWV&% Tht?=u6Ph#]5Hh:5Th=kTh}t a2jh he|jh|j U=Su#hSZu h>]j`SSu]PhhS4SU=Wu#hS/Yu hV]j WWu@PhhW4WUWVS ==|t=5*P u8[^tPhZ5 5FY5(hh| u#=|t5j !#XZjj`^_1|эAEA| Euƀ|=5ho]EY[ E@uEP5(ÅXZt}u#=|t5j a"_Xjj8`Y^MIM< u u$8v5ho] XZ|Sj ƀ|EP5H==0ƃXu 5hOduFj:0$^_u#055( 5hO~ t =u5hJ Y[R5؅VX=ȅZt~t5j![_~=`^he|j,h|j e[^_UWVSQQ}1tnz1EEztLB8u 9t:AB8t9u);E~ E];EuFuN E_Z[^_UWS(ą|@Hf@qP5h5_Xtߡ=|uГDh,t(|Г1I Dhe[_UWVSą1=Hf( t  . u)B;uۡГDh뻡(tHt((à 9 , #b"t1\uXB;uSГ+HfDh0B;uhГ+HfDhE BA;u!Г+HfDh3Åtq"Bu4;Г+HfDhA;u!Г+HfDh놅tA Hfąu0(tHt ((1[^_UWVS E E츏Sǹu}Ett"}uh]5D }ur1=tt]Ph~5 z zt!=tt{ t PV1_XuV2(jVM}~zE E 0VOYu Vuh] uVuh]52}tEEPjSXZp0j hQ5PM}e[^_UVu1҅St(tVPZYt u1ҍe[^US]u h jSZu Sh`j~@]USEEE E]uEEEP\hj\hbm\h]UWcPPh50ejJcU= u g  5G8$+I; ZUSj ]UWVSP}u:jh[ [[[[ ^[[_jS   +[+[Y҉[yH@B[9[|E9v;[[ [[Dže~d9~QPaPhhS菋PS56$ jjN j jh 賢= =,}ujhbj j }ujj j{ =,h]hW܊ ҉ RٽP߭f,$ɀ `f٭۝٭y1d~dVh]+P:P9,=vHՅ~I։оdh@)QhGPh]+P:P؉Dž  xv vڃ tBV`GPQRh^+P*PI+[+[҉yH@Bڽ11څxYvPɉٞv?RٽVf,$ f٭߽٭Dž  xv vڋ`GPy  )Ӹdkdy Ph^+P)Pݝ豇=5݅ ۋ x$vs9 |*9v"ظ+h&^P*)~1ظ+h3^P)P+5= WV,$SQ,$ٽf f٭۝٭?~~4h&^+P+PtÉ ؉љt,Ph@^+PP')h8D+PP عл<RPhE^+P)P蹅؃}u/hS+P+P肅É P50$ke[^_UWVSH=\hu=,u }.jSm+[+[Y҉[yH@Bڽ څ11ݝxavX݅ٞ։vAQٽRf,$ f٭߽٭؉Ѓ 5ԅ@t-S55hS^hPٽf f݅٭۝٭Q~RعQӉ@t-RQhf^+P)P脃ؙt.Ph@^+P)P@غ<љRPhp^+P+Pà @ xvv`GPy  )Ӹdkdy Ph{^+PP?}=5 ݅ҡ  񉝰9x|9n+RP,$WV,$ٽܵf fܥ٭۝٭عøh^+PP- t-Sh@^+PP<әRPh^+PP€+[+[҉yH@B~,h^+PPR hS+PP#}Su 54+ZP e[^_USҋx7v.=|tjhS5*$ jRX7]UEEEjEEEPUjUU@E EEPT1}EE$EPuy xUUUBw$hH1 Rh jPu RÐUWVSx=hDž|h}hhB)Z[Yu$>8}hhh&_XghSrY^yƅj.SE}_ZDž@t tDž||= h\u[^h\5|oZYuj.5|^_tAPDZYu/|)Rh\P u+|\j.u虜^_"PZY +]Sh\u \th t#U uh\ U h\PKI^_]qU t\ t-P5['$Y[x ?sE8h\wUSP5[k'$k_Zx ?EE8h\"U^=t t u5[ZN[u t u5h`+Hhkf1f GC95[MYV=v P3Z tD4%@t+ t5[MƃX  uF Hhu flkf@fkf|tN5[YM_< u {tC|uHhkS@|fHhu&5h^h\h^Y[t0 t+$ phh85[M1>5h l5hhdh@ZXZ5[Me[^_US5[ Y5[_Z5[+LƒXBv t܃,t׃"\u2\u5[KXC5[KƒXtQ"uJ\\\u5[KXC5[KƒXt t t t,u=\u 12C-=@@th\3CEZYtۃ;u ]ÐUESt9=t 5|h-HhE PEP MAv$E 0h^5sBft`h̓~E Pt\t8u hjRPRE pߙZY=ft"=\ht5\h5 j h7h@#j h_h hhLh"j h_hf|"$j hXh|"j hhl"=@htjjE p ]US]Ct&Ёv R\/Y tD4%@uh%_SDYZu dfujhJRS u hfUh*_SYZu lf8h>SYZu pfh6_S[Zu tf]UWV=S\hu \hhQ賜ZtWj hď 1YXuj hďƅXZt ~.uN>hďh;_5 tV_tuVt  fj hh@h  t^h@h`b5X Dt  ft&h_ u5h@!_X1`f@~hERhxt^u)1<`fu `f@~`f `f=5`fhs_55dfh_5v5hfh_5`$5lfh5G5pfh_515tfh_5$\hhe[^_á$UtPnGX=0$fu 0h$PtPW=Y=thu HhUj=|XtjhS5U$- jh bUSjd=Xtd$t(jP$5$rF$ $x jPt5$$ j=Xt;$t(jP$(5$E$ j P]UWVSt=EEEEEt:Eu&PEu&PE u&Ph5=0thSE \E[} uE}uEEPEPE PuEv} PhtPuh_5Puh`58 5(jO]SE8 N1щD }Eu PhE ] } q=ftRы} 1΋}֍4VNVu PVh=S:VuS0E] (u h5NZEYul}uh`E荟E_uhHNЖ[E^u:}EuhOETEYE8t9PhZN葖EXZ}u#}EtPhZNj^_tmh`[5hj5( hh(`h|053\lu E\=thYuSHhE9EE}+1۸frEE9E|E t }tP8ZEt }tP8XEt }tP8XEe[^_UWV|S1֍^v5h.`j uhJ`5a5()Pƃ| |VVu5( j_X1э\ ~| uƃ| M1; U e[^_UWVS=|]}t =u1=dhu`*`PAX=dhu7=`u``B`B`=`h5Vn (/thhdTV hhP`VV|myVh .`P\hX1H ,} 5\h,t1=tP访X;Bt(jjP3PhM諥;`1j h\YZYt\e[^_UWS0=dh]uS.T1}ȹ }WjhS表u}uShJ=W1E0 W؍e[_UWVSPP\h=} Eu \h=pfu5h_Xuh^`ZYuaj hXY_j U@RPËE tЁv R"Z tD4%@uYQu=u=pfu pft)=u 5h5j =E\he[^_UWVST\h=EUEu \h=dfu!} 5h [^_uhf`ÏY[Qj ďS_Ztj.hďY^t1uLn`uB9E H9]AB9u=t hu>^9mu9.txE H9s]AB9u_=t h>^9tDE H9sK]AB9u+E H9s2E%E H9s!M %B9s BEE8@M [^_UWVSQ}W] j EPVU:t69u2hWSYZut-SWh  f@A=wՀ:uЉV (e[^_UWVS1ۃ$؍}ԹuEPEPhVEEE(uu(_=tVSha51e[^_UWVS]} uSXu} ]e[^_UVS]u SXu ]e[^US]S%Zu Sh`j]Uu hjļUS] Su@YZu Shj蠼]UEu h j虽PYu h`jnUK.USS}] t3h\"CtuShsjt2hRf'YEPrtEZu1]UWVSSS=@!E`@@u/Vh@h6`Ed@A EFӁv RAY tD4%@uׄE0E@}t;EuYES\u FuDL"u E"7'u E')Ӂv RZ tD4%@u GFut F0Ee[^_UU<^uR?tЃUS]˃ڸ=tv2tlv80a0bB0`\cd*v`aC@`^ab`[UWVSSS}EE h1;ujhE 4} P#~YC ;E|/33{ u@-Ps h50{{eSpU;uw=u}thjh7`Xh`09Z}Ph@Eh;h1hIŋE 4h U 4h@11;ujhE 4| u50hYX{t2G{ ~ U D1P{ ~ U D1PSEXs Z?djh`R/Sdjh`t ށM0< wk Bt0Њ0< v:tu Wh 50&v u Wh`=uhZ1 jVUe[^_U=StCtP3h ;u1]UܹáU~%5̥jhP0fy h XU=thh袗XUEx 5 u  u  1= Hu" uh h`)jc" u hYhj'cXZUEuHuth h`賖jb"u h蜖Yh菖jbXZUEuHuth h`>j4b"u h'Yhjuj =Y;t58 t0{uC P$3h1 s 3h=# ;u;}E 4jhËE 42oSvou VioZt E 4hIuuE 4hd1t3F t,~t&8thh+yXvhJk^Xt;t58 t0{uC P$3h1 s 3h=- G;}]e[^_UVS@]u @~FPH@Ph@ ~F h}5(j2]SP؃tȴ5,e[^U1=̴h̴Nj=̴tPhK5,UStYEPEP&ZYjj1ۅEPEP&t"=tuE9EuE9EtpV"jX]UWVSXEPEP|&ZYE}ttthXh>ÅXu>j/S蘝^_u@}~jhAh">PS jPS hj~j`EPEP% t$=t}uE9EuE9EtoUe[^_U=WVt>j5h5%LA}uE p t jh`_e^_UjhhRhCj;jUjj{+U=`S`t.Ct8tP3h j ZX;uҋ]Ujh`ukU}VSu t50h27vYu vhPkZtvh@501s SI<e[^U=St.Ct8tP3h j X;uҋ]Ujhu;jUW}VSu 50hdvYu vhP@jZtvh 50GC 9tA3{ u@-Ps G9C }@Ph`50Ͽ1v vSe[^_UVS(ۋutVsZYtu1ҍe[^UWVS;t3j=3]d_XtFP3.@=Y^;uhxZ@ 8:t Ɖj:p chR81Eщ߃ыLQ? SRhVP&$q Iw _h^u/h[tp h)h hh e[^_UVSuVZÅXtCtP XC t0P X'j{ á(C((XtXVACCVCu C e[^USuYt8PtPCtP. ZC tP X]] ]UuZt@UumYt@UVS']uShS@ƅXuSh50ݼe[^A>vP>[Ee[^@US(t,s s{t* Ph(uԋ]U}U t(4@1t&txt9Pt׋u1UugZ1҅tP U=WV5$hZZdX}Z~E p5P"tNh@腃=uCPhF =uCPhW68=Dtuh`h=\_t ho Y=uPh萹X!Zt,=uCPhh^_ h趂YȴP$h’?5,e^_Ujh5h׌hƭ UMSYӃt 1uQQj.hRPs]UWVS=] DžLDžHDž@Dž<Dž8Dž4Dž0Dž,t5$hݒv}mh@openfD 315(@Ѹ)Pوп@с?Q蜹!@U`;MDD3h3b^_(ƸuM8~(uMĥ}(uMt>4,@u(@<u(<M Dh޶!P/}@t̓41}Թ󫍽`WuVj@4EEuWVj4EÃtXS$4hZ50躷 H0n$4hZ50艷`,@^5LjhFY 0t 0[,t ,Ye[^1_U1ɁU ЋpAu퍅pPAPUUSjh@]SY u jhSY]UWVSPEEu }E}u j Bjj* jj! =Tu5إhe9[XtZ@~ F< @AtO~ FB< u1@t'J: u!@t=Tukh@8wY^=Tt5إheXZ5(hh@I u'5(C^u5(v[t{2t=@tk`t]PPXZYthjuh}{ t=uhv[h`5@SZY}u(=u jh`LEe[^_De[^_UWVS]u…ңXt"׈у wRh^_hēhY[h}5MÅXZShh@ @<#tԃt=Ёv R_ tD4%@u Dž@v R^ tD4%@`Rh@b u+P,u h@4 u+P@P&jhh@ hhGh@c@ < t < t< Dž`P#PqUZYt 5`hϓu5`h販* t=u 5`h@h`5@W^_.Se[^_UWVS0}}Et'EЃxu M9tEӋډU#MEȋU Ù:!Cu BUM̀9@|@XEE}1EE@EEE1}:tH ":ůEt4},u F>@uF}@tЀ}:Ft̊҉ƈUu}u1MQEPjuEuURMQjuEkǃtUW$uhZ50z u%02$uhZ50PŰE1mEЋ@@tC;EȉuwMuIXM*<BEUC+Mu e[^_ÐU<Uhhhh5إh)50胨jhUWVS<] Ej/3 ZإYt@إE5إ=8±~t Tĥ?4E.$@ȴT @5إhĥȥ̥5$F5إh@t5إhg5إhZ$ĥE[5$Z=XMT~D$U9@-5إh 5إh@50Ϧ hSu賣 =ĥu1=Tĥ)E}~إEă}EȉEthkEȋUEЉEUX}thKUEUXU}U~ CUEh`fC_t%jnN^h`MC[jjj EċU)PP[HZYe[^_ÐUhhh` Huhhh@ HtjN, USĀ| HuуӸhD ||PjjBR軪u h8tyh  X |]Uh`UVSh`[ÉY~.h`ZujSjj5`5该ÃyGͣ87t;ã8#t1:5$"5h`jhA1ۃ=ttAS5`j>: t,Sh`Y9Xuh`Zt(1e[^UWVuSU ]1VVډ^V [^_UMAP;Qr+AHAUU9BUE@UUBE ;B r+BBL@LBUU ҋMtEAt+yA9}A;Q r+QL@;QLAu ;ArAAUS] S9u C9CrC )yC[US] S9r 9u C9CrC )yC[US]St9uK9u C9CvC))‰yC[US]Ct9uK9r9uC9Cw9sC )yC[UWV}Su t,uB9EY}]ExSPX)]Zuԍe[^_ÐU5,5(Uu u5dUu u5bUUU9u 29u=Dti2q2j9u"tZ3O9u3=9u0+u&9uI09u x01Ujht5,$WUWVh`j` e^_UEHwi$]VOHA:3,% 1UWVp^_UWVS4]؀9 P 4^v;EP5ZYEPj5 P3w։؍}ľ UȋEt=EЉUtM EЉUu e'y ME~EEu$E\ E\EtEEЁeEEuEUtUȋEt@Eu EKEt EċUȋMtMh% M̃UECtlhj/hj#hjhj TM +Z~MEe[^_UW*@1_ĴȴTԹйU} S]t.u ufu[@djh`djh`|djh`iShhf-]U} S]t.u tft[@djh`djh`djh`Shhf,]U} S]t.u ufu[@djh`zdjh`fdjh`SShhfp,]U} S]t.u tft[@djh`djh`djh`Shhf+]US]tBtt Busuh"wR$@H@@jSbj*) /=t j@SXZ]US]t(Btu Bu}trtt>t7=Dt.@H@@=t %IЃt jSXZj7(Yu=t %]US]t,Btt B'w|$|jS%hZtR5Djj "jS "] jSjC' AjSYX/"u*DjjE " jj0]US]t(Btu Bu8t."u t jS\XZj&Y]UWVS } t-1} I(v E E Pܥb&[ HܥE}t<:t?|uEGt<:uU PE}YܥEUEUƊۉ|t:utG}uL+E)B} tPuu (k u UEEVPu tE:t{|uG|t}E ty EEہv SZ tD4%tv SVY t4G EU9Bu.1}u9s B9rU~>E8u+} tU U9s B9rE8tEܥe[^_UWVS1}] ;]sVu3i 1҅t ;]re[^_UWSW=LLt=ܥtP[hm\YtHEPjS uSh2XZ51I(wSܥ#_ Hܥܥ8u e[_UWVS+Phj<(у@ $;B:1h`!~9Y}>hhSjjhhhU]SV$WSh`Fjh75 &;B:pPlPqhhlpjj hhhduV蹣}10h`9{9ZWVh`CPEf!q;`@t5 t8Dt t5"Ĵ Ĵ(!j!" 9A= t0=tjtW=t/=|=t/)RQ)RQ)RQ)RQQ)RQj)RQK ;9't  )SR] ^#;B:h^t1ۃI+vjj#fY[hhRjj#hhhUj2tVx(h`{9Z}#WVh`CPvPj>$ h@&$ h@PXU}  EPU} E EPSTh`Z~$jhPh`jhRj># hNPYU}  E5PU} UMu9tpukɢ[u[h`CZ~$jhWh`jhYj> # hOYEvø U=\s@@ @ =rj80Yt,5,5j TZtPYPYj`Yt\e\ejxZtt}bt}j|Ytj MZtBj Ytj Ztj Ytj Ztŷŷjb̷Ytȷѷȷѷj3طZtԷݷԷݷjYtjZtjYtjwHZtDMbDM=`ujqYá`UҔt HtRhU"`tUU1"`tUS]h`B Z~Etj hmh`jhoj hdh`jhfj>]E]KUS,,sPC t>;uCCCtPCP- iP  rj]UWVSE E}}҉U_~jjRkE ӉEUGֈEU : uUA9u_A 9uEU舂 GARY u؃9ƉEGȀAWE舐 u}tYAPAPu m}StEe[^_e[^_US,hsOCt=8t7uCC CPCP- iPJ rj"]U¸"øĸUWVSSuEU]  Q߉u ABu BB}u BY[^_áUSBB𡤳@Á~Ph`9Z~6-Phh``-¸Ph¸j>f h@HX]U,S1=s+PyPPt 8 t  =rՉ[UWVSWWE }EE1?}ujY;]}U;t)u}t u^t;u Ct;FC;]|}t uYEe[^_e[^_áUthPXZhXu*h`FXPXBBBB'BBUBt@UWVSQQ=]t;uOjjXZS_jjY^ujjXZSXjj^_uKSE1эq}Y MXt}ыELL9 MD9vuX)WRXC^Zu-hVEXX+)щ XSYEtMCt;ƒ~=uCuŋ]tE렍e[^_UWVS]޿tZ޿tJ޿ t:޿ t*޿t޿18u[^_UV+5}S^u~\P@h`!9Z~'S5h`VPj> h@C^t%PsX[e[^UWVSQQ1EE^u>}tuh@-XEEZh@5@DžX0OFE$\ uu =̴u ~Hu,FOE=={ u uFOE?=u=u jhY[=̴= = !==jhXZ$phhh1Hj @P@@==jh[XShh1 Shh1SShh1SdShh1sS'u e!\Ĵ j Y@Shh1&Sjй u=tb=s =sShho =s P=s =s h0Z}tuh@Y[1}u}te[^_U=t)jh6jx1UWVS1EELu>}tuh4XEEZh5DžXFE܃ډEu TOE=xt$9x=ts.t 9ujh9x9u jxh6jb Pȴ9tU9t GNMɃ t u`xTȴY e[^_Udjh`djh`hhhf=Хйt=عtjYUdjh`Wdjh`Chhhf\=Хйt'=عtjYXUdjh`djh`hhhf=Хйt=عtjXUdjh`}djh`ihhhf=ХйtM=عtjXUdjh`djh`hhhfUdjh`djh`hhhfUWVSEPEPY[EEuEE}EUuEUEBuBEBuBE܈BuBBZh`)9Z|SVh`FCPWj>We[^_US]t jjYXt jjXZ]US]t jjOYXt jjUXZ]ÐUhh@h Huhh@h Htj1ХUWVShh0YۉX~p}tS5XZ~O= tS5j> 9u$9~ )ރ}uV5YX~ShXZx9u 1H)ߍGe[^_U1u=Ĵttt=Dt'u-=t!H9D~"t U}tEzUjpÐUVSutJv SwY tD4%tv S01Z t4Fue[^UEjPuu uoU WVS]t;,tPXtJ>^މt7hBS^ _t Sh@0ShY50Oi ,@j e[^_UWVSQQuE} EEuEPh|5 h=@tH~9s-P*t Ph5 Ch9rӃE5 ~ 9sPh5 Cph 9r E ;,u PhWVZgPj gXZx- Ee[^_US=ME ]$=u4w4ЍQhSQh5 g=t*=t=t=wtr+ rmt[RQh5 }g/w5 4u5 h^fXZ,Sha5 9g SPQh5 !g ;,uPhWVf[X E]鿝E E ]|f]US1ۊ/w P4wP4ЍhPSh˗e t//w 4w4ЍhmShe/w 4w4Ѝh>Sh 6t4/w 4w4ЍhSh&_dXZ/w P4wP4Ѝh4PShKd t//w 4w4ЍhbmShpe/w 4w4Ѝh~>Sh6t4/w 4w4ЍhShocYXC]UWVSDE=}Eu!=+ U : }}<1tfPh5 |d M \tu 5 hOcX/Zw 4w4ЍhZShј5 d /w5 4w5 4ЍbY[Vha5 c 5 h՘bXZ5 hb^ _ ] ƒ"T $5 hibYU [B5 h LbXZ5 h5b M AЅu35 h.bE PGPh5 b u5 h3a^XRh95 b 9 U PhG5 Cb 9| 5 hMaY[2M AЃt$tGt!t);5 ha%5 hf5 hj 5 hwaXZPh95 a 9 U PhG5 Ca 9|5 h`^XnM At/] K RQPh5 taCuPhG5 Ua ] K RQPh5 $a9SU PhG5 Ca 9|.5 h_Y[M AЁt<t/|t,o5 h%5 h5 h 5 he_XZ5 h] CuD5 h-_Y9^MU Ph̙5 C_ 9|(Ph:5 _ 9M  Pha5 C_ 9|5 hЙ^XG9ZFU <w4h^ Pha5 W_M D  t$tEt!t)95 hԙ%5 hߙ5 h 5 h^Y^E D t@PU D@t@PM | y@PhT5 ^U DtPhL5 ^ M D Ph5 c^E |u|uCG99rU PhG5 C^ 9|M5 h]XZ5 hM Au@R(u@R2u@R<u@REu@RhPEP!u}5 tEP\] C$tPhK5 R] 9|U PhS5 C)] 9|WPh:5 ] 93M  Pha5 C\ 9|5 h[^] XCЅt^u5 h3[Y[Rh95 \ 9U PhG5 Cc\ 9|Hy  ;,uPh[Pha)[X9ZIM  s$H+w mrM uE 8t+E E)1e[^_UW}V1҅St3] 1;t'3WZYtxu ];uىe[^_U1}ÐUVSPPu E@E}PÍEPh*wSee[^UVSRu}ÍEPS5S41~Ee[^ÐUE HEDtPXUVS] u~K~PhߚwSFZKYe[^ÐUUWVS] 3PƿO8^XEEEE&?7wI$@E9EE1%EEE E5hTSu$Q u)E} }tC}t%u}tHLPhj:t}t }u=XLPt#j:3ZYt @PX333$VS*1 jF4H wm$ }jVS2?vz$vh^M; /vz$vh^+; 0}&LtF<;P uPF<;P}\m uq 5P5LvЃ @u}v}vh&PY}X=XPtQ@uF<@P1R=LPuF<@ L1RPF<1ҋ@RPF<1ҋ@ RPh\VP$+@uF<@P1RPF<1ҋ@RPhq)Pj aZS,ƅXRQ8t hǏj7WeUS];t(STUZt@ hS?ZYP]US];t"S^Zt@ hS Y[L]UVSQusPj EPVbZP 8t Vh&jm6E8tu Vhji7e[^US@]P8=Lt=Pu-XPug=Pt^=TuU=PuLXPt>EPjVZYT PHx;LuTy5Th[8 Sh&b7]U=Xthh@h50Ohh^ 50O j裫UUWVSL]} EEGgt"g ?t3Gt,uu'$`$\ $d8u%hWS2L u)Åۍ<\tN=w$UtjEPR`EE 8t 5\̎[t@E5\N1UtO=w%UtjEPS`DE 8tSxYt @D ShFhhdÅXZt~u hj4`tX=w$UtjEPR`EE 8t*5`v[[t@E5`hѽj47HV@Yth52T@Zu7tEPVS@[^uh6=\tuQ@Yuh=`tuHU@Zu hj3WtGPRw%h>ÅXu>jh>SS~Sh&j2U50h@LjUM UBB9uA^BPQUM UB B9uAtBPQUM U9RuAvB@B9uAvBPQUM U9Ru2z~z~AB@ B9uAvBPQUM E9@u6x~x~ A@PQUS] MUzuCC9RtB9t BB9tB9t @B9u 9Ruv Cd[UWVS ]9[uuu SvCx֋}э| W-ƃuE @$GWCpV{ WuV{CpCpCPM Qe[^_ÉUVSu]9u C SPSB s辙$趙Ne[^UWVS]} jfƉCt" uqF{t CxuG$udv{ LtQjEPSCC LCCCCtC 4!C$ C(_{ LuEP3CFCF C FCFCFCFCF C F$C$F(C(ve[^ÐUWVS4Eh}u kvǃEPW0uhP$n EhAExvEUׅt| uHEEE;Es!E%E܃PVƃSVEU׈ VEPE0P$E؃EPWbÃq VȔ WtE؍e[^_ÐUWVS$EhBu 3uE}huu$zIuhCE$ÃEPE0Pttuv~э;Er%E܃PS֔ÃjvS Sh^ uDVE0PEu S譓uZEe[^_ÍvUWVS]u }V3St9>u$V3Su Fde[^_ÐUWVS]u }V3St9>u$V3S u Fde[^_ÐUWVSu] }эyS6Vt-Wsu9kt#S6V u CdЍe[^_UWVSu] }эyS6Vt-Wsujt#S6Vu CdЍe[^_UWVStuu2~C(C(HC(C,>NDC$C$C,C(P~ SkE>FS(C(@C(C, S9AE}4E>e[^_UUB(;B$u 'vJ(A;B$ry tvH;B$r8 uB(ÉUS]SBC,]UVS]} RS 0$Q2V)2V[2VE:t NfЍRDtC~Aw}$EEPSV; EEPSV ekEEPSVVfTEEPSVoh=EEPSVv&|Bp02V#r2VD :tfNve[^ÐUUE t\}tV wQ$(PEPR( EPRm-REBUvÐUU EÍvUEtÉUE$ÐUVSuE % hB>yhPPS=hh\P&S=ulh}PQÃtxN Szdt| u HvRV"tPS8ƒu SZzȍe[^ÍvUVSusj(jhvuE8usj.jhA5u P WuVSe[^_UVSuM ]< u9;hu d<u;duh<t SV e[^ÐUUE 8urj+jh A$vtPPRÐUVS]u u>t7"jVS[Vhsve[^ÐUWVS ] u}:u@{ t&Vut ?WVs C{tC${tWVsuve[^_ÐUWVS } u:t<tvS:t Ӄzu {uv P(C{F> tw uuG vGtt atuWt w6aEG}t}}t )t "UGP E0G9G;v3jv u PfG  uuVw u e[^_ÍvUWVS ]E 0:t(~txQ:t уzueyt_ϋqC;t$~ tLSF Puu4~ u.u FU FGFVue[^_ÍvUVSu] tv{ ts VC sVCtt0&t'u{t s_ hv Sw_e[^Uj3^ƒt#EBBB BUWVS }u ]U>u RSW`:ubPRƒ{ t @Ps FPB~uDD"DsCPW{t RsVWSe[^_UWVS }u ]~BC"Dwj5jh`K< hwUt|PSƒ~ u-D"DvFPW@@Pv W@~tSvW*ve[^_ÍvUVSu] UEtjtt6UuOvtQP2P10-8t3v;Pt 8uKfhShPv& e[^UWVS }u ]u>^F>@vv SCK tD4%t&>^Fu >?v؃@v^u>\F>^\u>\F>\ tPv SJ tD4%t-v SJ tD4%@u>.>\F0>F0>F؃0>e[^_ÉUWVS U}] ?t] C:u^C@Cvր: v RI%t#L4ȅt$^C>u ?v@v>^t>\u\C`> t[v RI tD4%t2v RZI tD4%@uv,\C0C0C0CF>v?tt GCvE e[^_ÉUWVS]hXd hXhtgǃp`ǃt`ǃx` hDXt/ hlyXu.}[ǃ[ Se[^_ÍvUS]dGYǃdh/YǃhǃpǃtǃxXǃXǃ]ÉUWVS Ehv S;G%t#L4ȅt3C~ƍe[^_ÉUWVS}hd>/tC<3/u~48/tvC</u~|uƈ]E3t9"t)؃Ej3PWc PEPWC~E0e[^_ÐUWVSEhdMxtǀ|lP+v2:M B~ uuRjuiUuVGe[^_ÉUWVS(Ehdpǀ|lP2:"B~ u6uEEEjj(u PEPujuTuFe[^_UWVS ] ޿`8u u +޿38u u[ȍe[^_UU t1E|tt `3ÉUVSu];t{uWh@PS9tAE v9At 9u%1Phvg SVge[^ÐUVSu] MBEƅ<"u.;MhPR Ph:ti9BuW;Mt_ 2hPPPhPP Phv ; :u]2hPPm Ph2vDe[^ÉUVSuvjjh?1h:tCPQRVكC~؍CPQhVvjjhV1 d:tCPQRVNكC~؍CPQdV/vjjhpN1h@Vlvjjh/1h@VBe[^ÉUWVS,}uDžhDžDžDžV:-Ba$`dDžDžsDžg W* W1; s3hwB ;uBP6hwC8<u Wt C14CPu6htmtW@xtP<uRW"<u7tW@W*t(~4Pu6ht'W PWf?%W PW'4Wu46hwt'WX PW>sxt:W PWu-W YXe[^_ÍvUWVS u}} t }tu P0[Pw0tZ<[M \MLD[Ѝe[^_ÍvUS j"cÍEPEPu SduuuE$cE]ÍvUWVS } j:E0ݢƃE;0u vE+K CPDLǃSE0WK;FWE0É<$6MtRuu uTC;F0r +~$jV蔿^$C{ { SVts V4$趾4$Ftu^$74vC;F0r+~$jVt%^$C{ t{ tSV t^,^(} F(+F$U uEPEPVÃM;EPVЊEFD $F<F8 V V4$vF<F8 VF<F8 V4$,fF<F8ZSF,+^$I V 4$44$|F<F8F<F8 Vu,T6B6 VFFt V} tE tF$e[^_ÐUVSu] v S2 tD4%tjSV u;jjV;džC u#vjj Vuv S2 tD4%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苆E쐃PV{C;^,r҃}uE苆EFH++$$tB(u9u0~+K~jj VuKj VVdž$dž(jjV;99vSF 4F4V vHF 4F4C;~ʋ ;~L9HSV"!jV"F<IQVV'FC; ~ uV uV4"e[^_US ] S $ 1$ 1$N 1]UWVSu]~dE+E9~Å~,E UL)E9r JI9sE UU UE E9s~FBK9s[^_ÍvUWVS} MuU~2 9|9%~ 9 >9s BA9r>[^_ÍvUS]U MIt:tBCIt:u[UWVS<] M;t:uCA;t:t]π;tC;u9]s { uK9]r]9tA9u9s y uI9rME8u ?m;]v 9vKI:tC]AM]؉MЉ]ԉM̋U:toE;}scvU: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ċUBPuF}~EE؉EԋUUЉŨ}~ EEU܉UU+UE)9} EEU܉UE@PuG}yUU؉UԋEEЉẼ}y UUE܉EU+UE)9~UUE܉EE+E؃UU؉UԋEEЉE̋U)E+E)‰UȋE+ẺEċE+E)Eăuuu9uuuԐ9}}+E EȋU;BH+EPRE9EtXuWu@!uWUrHE+E Pu R])+]SEȍ48Vul SVEEP])SWuI SWuTnv}u+u VuPU9UtH]Su$EpHVu P])SWu SWu8E)PWuE+E U+U)Pu!E}E+E EȋU;BH}vPRE9Et(EPu E+EPuu76E+EPuu U+U E+E9t)Ru!9}u+u])9}+EPuU9Uta)]ȅ~/SWu@uWEpHE+E Pu u ])+]SUȍ4:Vug SVEEP])SWuG SWuRv}xeE+EPuTE9Et0}~uuuE+E+EPEEP E+EPuue[^_ÐUVSMU u9s%:t BAC9r9s AC9rv[^ÐUWVS E@HEEp$;p(vEC< u } uCuyUv R& tD4%tC;]~E=Uv R& tD4%u;]~+]vG;]|GFE;p(CWuGSu)e[^_ÉUWVSu] SO)VFFF@F;FHFF@;FL|=NLF89}VDC9|jh@W1F| F ~PyFQt/ j ($ j ($ (ve[^_UWVS uF(X t!;F,uFH+F+$$t VgӁv R% tD4%t'?t߃@j^V1Ӂv R$ tD4%t PBj\VWۉ0PV?0PV*0SV'e[^_UMAA;QL}AB;QL|ǁ ÐUVS]CPtNjSS; %vVSsHSF; ~ރjS( S$ &$ &e[^ÍvUS]h3u*ǃǃƃǃ]ÐUS]s4ǃ]UWVS$u] SVJuFjS}W(u' jjjVW&WvډЍe[^_ÉUEu uÍvUWS]CD<|ul;duC(+C$=v ǃt,s$UIe[_UWVS,uF(E젇EE䋆EE E܋EF,;F0rbjVʯOu4:.B*EEF, F,H}tD;tV,CF,;uV,F,X9sV,CF,9rF, VEPVEl'wr$LE V,EV,BF,BEEEG71Et4 V C9F(HF(h+jv,PÃ9F(sNF(8 tFwTF( V,F(V(BF(F,9sz uEF(F, VWP Vi؃Ph蓅/EihiVaE؋F,;F$v 8 tF,V,BF,;F$vz uF,} KE];v v;[t;]u E vK;wヾ}[}tcE 9Eu[=?uB}H% V<u V}uF,F$ F(}uH@F(.B*BF(;F$r";F,wu܋@PVǃ<uUE܈FD}u jV贴 jV[<t(}uF,F$F(u܋@PV5J<uE VLE9t V<EF(?:uVǃ<u=?u }:ut <uV}uPE뢇EE9t Va<t.EF(<u Vd}u ЉЍe[^_ÐUWVS$u} ƅ.ƅ*F$F$F,F(jV距F( F(PF(/t? VPV貨Ã+Ƅ+uF$F$F,F(v8.8*hPS{.@* hSPPB.B*B;Ƅ.CƄ*CƄ+hPFDF$F,F(ujV譱vjVQ<u Vi9u) VIF, V,BF,B4$*e[^_ÐUWVS u} }u/^(;^$rSvWSuK;^$s7^(2^(;t$;^0svWSuC;t;^0re[^_ÍvUMU QDA$A,t t#vjQIvjQ腰vÉUVS]u S(MIt(9uJ;S$v9t J;S$v9uIu;S$r ;S$u9t?9u}tBS(LtBC( S S3e[^ÍvUVS]u S(MIt(9uB;S,s9t B;S,s9uIu;S,r?9u}tJS(LtBC( Sk Se[^ÍvUVS,u]S4VS&4 EPSjctt?P 5l(j5l­ <u 5l$ 5l1v 5l6+=t;4tB=tB1jS31jS(1jS1jS1jS1jS0 EPSj9=t,0C<uljEPje[^ÍvUVS]CPtC`xtxuvSPCPS`zuzt@CP‹C\x t@ 8tvSPC\xt@8uC\xxt @x8tSPC\x8t@88u+C\x4t@48uC\t8tv CPCP‹C\xht@h8uC\t8t SPC`8tʀSPыC`xtKPS\zTt7BT8t/zpt)Bp8t!΃PrT&uSPcPS\zTt7BT8t/z\t)B\8t!sPPrT&uSPve[^ÐUWS] h"CTtm hx"CdtV j`d"ChtBCX hF"C\t${\& j ""C`u:{`Cp SwjSH He[_US]sT"CTsd"CdCXs\"C\s`"C`$]ÐUWVSEp\E -@0}tU:u4}I9t 9эY9u0vMQXB=uAT򍆘9s;Ɛ:t,;t 8tAC9uƄC9rȍhPEpT+UZXC=~rjjhn0uMATAXPMAX@AXve[^_UVS]sH SS`B CHBF$He[^ÐUWVS}HGPƃ;_} @Pdt9C;_|GEp GP1ƃtH ?;_} @PtC;_|GEp e[^_ÍvUWVS }wGt+>tv 3;u Vw G t*>t 3;u Ve[^_ÍvUWVS u} ;~Q;~LH+^~Py:FV8t,FHHPV" jVFFPVK=v~;V\z|t2B|8t*h\SSSr|,KP9~ j zKF[V\tP8tE؃zhtBh8u.h\PPPF\JP90F\xht'@h8tyh\jF\ph8Cx~e[^_ÍvUWVS u} ;~;~Hu j F+^Cv'V\ztB8th\WWWr~3V\t'8th\SSSvFPt=F%9t)E9}Ӄ j E9]|%FV)PNFRVBڃ~?N\t38t(h\RRR IP~7eFPt؉9w !9~ j >F{E9E}à jE9]|~e[^_ÐUWVS }u ]~z;_Hu PF GKuG;GH|VPyJGWBWGQt suwj 蕼e[^_UWVS E xxp@E@=@tAV3t ;u$;tuSuu=V3t ;um;dttt u츬8u-MQ`Hu8u-MQ`uhuvb u }G`p pW0Jj EPu=E8tuhEp*\-uV` V`B FLBFHtu"}G`p pWtЍe[^_ÐUWVS,]DžDž{8-u)@stvuDž Dž;838uE@P38u3MA`xtPhEp迹f38u&UBQtPhM3V08u#ExPyPhUu38uM{ƿ8taA8uUB`phr38uMA`p hq@=@t:36 t >u-@MQ\>uP3<t 8u3ho>tD>%u9F%Mw $ G#tPh@Mq賷F>utE tv;t8uqh\j;8j P3!ƒ8/';t"8tyPhh\jltWhUr迶;t8u Mqpj P3uƒ8uy%3hEpvփ;t8u&Urj#jh@j P3ƒ8uyue3hMqJ8tu?3hV;t/8t(uPhUr脵*h\RRVx1Pe[^_ÍvUWVS ]ECPs Ml 󥍻l lPpt%=}RPPEER:t9:t 9E}~EUR:t E}~މ# # # # 9PPjSvЍe[^_ÐUWVEǀƀ`xl-  f Pe^_ÉUÍvUS]S u S]ÍvUEU H HJHJHJHJHJHJHJ HJ HJ HJ HJ HJHJHJHJH"JH J@!BUUE JHJHJHJHJHJHJH JH JH JH JH JHJHJHJHJHJ"HJ @B!UWVSu9E썖UEEhdM䃾|uxEtUpME=UECMEE:Eu } vEPWV蚝UM : EPWVU|D:}tEEPuVUUM܊ M EPQV7U|D M  ;@e[^_UWVS ]HCPs %= P'4$;t!VIV&;tt;t! ;xt;t! ;lt;t! ;pt;t! pt ǃCPRPP R: uA~v#u R: t 9#t  9A~jS9PP#u R: t #t  A~ul Pjs )tǃЍe[^_ÐUS]t1Cu+lPjs tǃЋ]UWVS ] 󥋃# # # # Pjs tǃЍe[^_ÐUS]u-Pjs tǃЋ]UWVSuEEE>€8-xuvBdt#d at;vqt'xt,E8E,E E@Puht!>t:-uztt >EE=Z9stkSMIR}tlSu@vPhVEpsURvM|lIMM܃}vUDp#CE+uEMIv}Dt#CtE-}u };ЍP}txzEU;BH| h@uhr7}܉}}}t3EPhMqv3hZ}w ;Epj t?WuhUr迩& +t E-uM@ǻ=tW3t ;u뉃;tE+t-t:oS}  RUBp CBpC@SҋM!TtjS}  RCЋ}!DpC@Pt SPt3SE @ RCЋ}!DpC@S!Ttt e[^_ÍvUVS]u LǃLǃPǃ0ǃ4<S$;S,sA4B;S,rǃ,C$8C,C(t hlvC(PL[^UWVS ],~t1} uC(;C,s@C({(vSgC(F;C,vvvWee[^_UjuÍvUjulÍvUS]C(;C$u @v h ,sQ<E TPЉQ<&A$A(Lt QcÐUS]TtC(+C<9TvsC $C 4C (SC(c${ woC $K$C K$C { C $C$tC$Q SsC UCU-#C cvc${ wbC $ P3~=t7 SAC\SBCC BvC SC SB9CrQC)ǃWPƉ+Ktbt&;S} C  B;S|KK7CsSB9CB CPs `tC xЍe[^_ÐUWVS } }uWjjh KOuh>WSExtph[W6WjjhjEU;BEËUZ 3shyWCtw@PCtB@PhW跖WzCt sshX{~GshW聖<$E;s}5CPhߚWVF;s|shW:Wj ȕEUE;Pe[^_ÍvUUzuEPu BPÉUS]} u hS{u C]ÍvUj$j襸ÍvUWS]C@CPs &C PS{ uC!{S Ѝe[_ÉUWVS ]tx{ur Suƃt` u FPS~щEFF}xEFN}щNve[^_UWVS ]tt{un Sƃt\ u }FPSx~щEFF}xEF}щNve[^_UWVS ]{u1C hoCujSCovsjsXKjhnƃx-ShG$PNlj4$8C8ut̒0e[^_UVSut];^s(V |t tC;^rڃ v ~t v Ve[^UEU5UUEÐUVSE u]t6Ph50j SV50&<50j SVhEP譧e[^ÉUWVS E u}tNPh50 WV50;]0諹 Ph50ˑV]WVhS)Ѝp 0XPh)PSK e[^_UWVS}u jVYÃu(贐0$Vh7W ؍e[^_ÉUWVSl]ǃ ǃǃǃ0ǃǃǃ$} u gE &} Iv hEth3S[}u E,vjuu$x3EPAxjjy uE%= ub 8ujhb蟘 u, 8uFuh5f xjj ;څh5;vjju !xjjyu h&3S S{څy-}thCPu2 SЍe[^_ÍvUWS] h4Cƒu.h0TPSҿ+v  Suu uR8e[_ÐUWS] h4ƒu6t*莍0ܵPShZ50&  juu uRe[_US]x g x Mx 30t Svt $t $ S]ÐUWVSE} yWG?th8taEEEE8_u@EܐEPjj踏tCCfCECF ;t8u)ȉȍB)e[^_ÐUWVS } uE 茋jRWE !Ѓu`8tWh?juG1VuE 返ÃyhTju|9sh]E0Ph,juhTE0P+vEEEPWuÃt|9v胊jERPE!ЃuT8bSuE“QtE)nE+Ee[^_ÉUWVS u] } jRS !Ѓu軉8t Sh?jVWu ÃyhhjV/v9shZ6Vdh6VLve[^_US]0t*08t 0l 0Z]ÉUWVSDujV ǃuh0EȾEEPV-u]EEEPVt hZjEPE)PVt h4hV^hPuVy =thv6Ve[^_ÐUWVS ]u } x h0U8u 70y%?Љ@) %jкRPz!Ѓu h$jEP貐th'3SrEt%E+EVh?jSe[^_ÍvU uu uÐ$FreeBSD: src/lib/msun/i387/s_ilogb.S,v 1.8 2000/06/06 12:12:36 bde Exp $UE]EÐUUt:u;vt4:%uB tpJ:$u zUM:1ttӋUЍHJt&t"D2]:DuIJtt D2}:D9t<2t2M1BAM<2u]3vE}<7n VEщЀ|muu U2PE81u[ CS9tHM)M|1;uIM E@P)<2t2]3BC]<2u}7@5u 5F u.vBxtDxt>j*Bp2$t @Pd…t@ fPDvBtJtAj*B#t @P…t@ fPFv@(t (u:Pt)t (@ǀ@,t ,un@t]tTt uB@t u(P,@ǀP fzBu%fzt@tt fBfBBXE@t,t#S8uEEC)Bx8tCx8t=j*Bp8)"t @P[…t@ fPHBtJtAj*B!t @P…t@ fPJv}t"= thh u@Ee[^_ÐUWVS }=tc5F9}N+~F")‰Љ)‹F v jPWqu FCV9|ve[^_ÍvUWVS }=ttC9}_&~C$)‰Љ)‰S"ЋS vjPWuC fuV| N| =G fx~9}3@9tCPGLBPVtEPH!Rv=ttFRP}D@PVtvγV@BVD CF9B fx~-~t Bt @pe[^_ÍvU=tuDxt, !pkvÉU=tuDxt, pvÐUSfbuHxx%@EEf@jjPk~tfǀb]ÉUWVS }@xu W}:@\tG`t> `<$H:x@\J@x|t u!@uvXKph@ut@xu j>VVSxtgtx<$u9XKph@ut@xu jUVSxtgtxj A@B(Q@TRe[^_ÐU塀@xt#ǀxǀt;v@xtǀxtxÉUWVSu} @u _v~k;FtdBH9tuBH9xu QM v Q7B9x|O~;FuuYًBH9tuBH9xu S Qw7B9xE9}}9^uvE9}}E9t Az9E_]Axuilt`0tP4u?8u3Et1EPEPUPLuf}uf}tE% ڲ9ht RRu졀@蛅P9}^tUxU䋀h@ut@xu jqRuSxt,dtU䉐xiv@U;x@9EEE܀}tJU܉ڲ9ht RQuP@{PUx}ًBH9tuBH9xu S, Q4B9x|piv;]}\ BH9tuBH9xu Q Q[4B9x|uC;]|E4)Dž`9}W BH9tuBH9xu QS Q3B9x|C9|e[^_ÍvUWVS } u9}E)@;;uM;u Bv;)Ѓ)PPEEމ]졜h@ut@xu jOuuxtMaUtM쉈xC;]=E)@PPEe[^_ÐUWVSj@6fbtfbdu xt菳dt1Q20 PXǀdxu xt@@@Pp9~֡tA Vƻ9ujP([ f| u@(f|t SGB9 R([fDR(fDB9 R([fDR(fDC9L@92vR([fDR(fDCB9~щ@9/R([fDR(fDCB9~ѡxfPfPffph@ut@xu jsLVSxt0^txht j'LPP j-3e[^_UVS  @xt; t@% ‰ѡ@Pp9~փ Qt4$@ƻ9} SC9|e[^UVSu] =tXƒtxHx@9}Ytǀx<$EEƒt7t.]@9}#ЋCB9|݋Ee[^_ÐUWVS<P(MIUR(EEttvǃlEfx]UM;to ˁƁ9tXʁ%9uG;L}5;L}-(fBf;Zu0M]}% ЉE=G9EjBxtABxt8fx~'HvE]9tEF9|v}h@ut@xu j6ESuxtV}tx @xt@% ƒjRh@H$jt@9})M];uRvF9}}M;t퐋B9F A4h]]؋Axuelt\0tL4u;8u/t.EPEPPff}uf}t% fx~@M؋}9 uB9|fx~@M؋}9 uC9| 9zA9;h@ut@xu j'CjuxtT}tǀxUز9ht RB @p{h@ut@xu jBWuxtBTUtxUز9ht R3B @469}}؋Muuxt{PUtMԉx)ڡ;~# SVuuu :]9}} uV]Љ}̋UM;uKOttUM;t}9~]9uuȡh@ut@xu j=uuxtOUtMȉxuVRuu2 9ZEЉEċU9}UċMAMh@ut@xu j*=uuxtNUtMxM+Mࡀ@t 9f@x|t3t* U)U9%@t)9 ,?B$ uċE@Pvuuu )PM]DPv9E@Eh@ut@xu j;uuxtMUtMx U+UJ@t9"@xTt)9?B uЋE@Puuu tk]Ch@ut@xu j:SuxtL}txju9+Uز9ht R: )P@9~7)M<]4ЃtfЃte[^_UWVS @xu xuxtlt40u+h jjhPN\@xu@xtOU9ht R9 @p萴ǀxǀt@xǀxǀth@ut@xu j8jjxtJǀtǀxU9ht R8 @p誳|@xjǀxǀtU9ht R@8¾fxh@ut@xu j7jSxtItǀx@pβFB9v!vU9ht Ry7¾fxh@ut@xu j47jSxtHtǀx»fx~_}BH9tuBH9xu u W#B9x|=CB9|FB9h@ut@xu jH6jjxtHǀtǀx¾fx~Ivfz~+v@(M C@9|FB9|e[^_ÉUVSu] BtGh S SBtǀxU9ht R,h j@d}B9] h@u tBxu jT,jSxt>tǀxU9ht R,h j@B9u 9] h@u tBxu j+jSxtI=tǀxU9ht R9+h uju@B9] h@u tBxu j*jSxt<tǀxU9ht Rr*h uju@]PtB9u 9] h@u tBxu j)jSxt;tǀxU9ht R);u h j@藤F;u|B9] h@u tBxu j )jSxt:tǀxU9ht R(;u}5h j@迣F;u| 3l0 @x;u] h@ut@xu j(jSxt9tǀx»fx~`}BH9tuBH9xu W] v W B9x| CB9|F;uve[^_ÍvUWVS u}@uxXt@uu O] h@ut@xu j&jSxtw8tǀx9ht Rh&u$BxXth jBpX6vBt.h VjVBXP83v9}'vh j@pX C9|މ]h@ut@xu j%jSxtW7tǀx9ht RH%u(Bth jB4Bt.h VjVBWP7v9}+vh j@C9|ۍve[^_ÍvUWVS ]  @xt; t@% ‰U}RSjuu uSǃ @x F}u u@tUE9tt H9tu;Bt)t h jB͞h juu @p CVP螞t"h j@xǀxǀtuuu uu u4ǃh jSj@p UPǀxǀtu4FtuE+E@Pu udǃ@xux 9]v9]Bxt|]+]h@u tBxu j!"jSxt3tǀx$ v;u])h@ut@xu j!jSxtM3tǀxjj F;u|euSjuu EPǃ @x 1} tWM 9tt H9tu;Bt)t h jBh juu @p WSP貛t"h j@茛ǀxǀtuuu uu EPǃh jSj@p RP&ǀxǀtu7Ft uu UMDPPpǃ@xux } E9E 0h@ut@xu j0jSxt0tǀxjj FE9yu4 uEPE Pu5Ruu uLe[^_Uǀh@lu$@t e@t b@t %@t @t ݘ@t 軘P\t7`t. @xt \@`PtÉUÍvUht j"vltz0uqƀ0h jjjn?ƀ0jBHPxt.BHtǀxjj /ÉUS]@xt~u ذÃ`ڲ9ht RNt SӃpR@@x@Dt D ]ÐUWVSl=t.du jRno29uchv uV茇jVjV ]SVj#/jS蜇ǃu' VJjV识 jVj.v ]SjS耆ujSnvjEPj.E]E$ӆE uVSj-jl3$`2 jVjg-.jgp jEPj8.e[^_UVS u=F ]؍EP;EE jSV,=tCxt8 p[$htƀǀ v S =tǀd|u jU塘tƀx|uÐUWVSX]u }EP4tMuEPjS+u3}t9ut u#}ujEPS+ve[^_ÍvUS]=uh]=tjhLvhjj?+u@=u7 hV P=  jhj+ v=u;t7h> jh> jh? j]ÐUWVSEp)5F F$F($P,L@D؍e[^_US]t 3s$w]ÐUS]=t!9u |||u߃ s H]s$=]s(2]s,gs0\ t wv(t (wt vt v s{t0{t* s]t?&8 u sv Swv;u<PL]ÍvUÉUÉUÉUÍvUÍvUS]EjEPSaƒ}u] vxE E8t8;tEE8t8;uE8;u@EE]UWVS]EfEhjH|jSbPfUfPfPM fHǀtǀxǀ|ǀǀǀfǀ\ǀdXǀp$V|ƀ0ƀ1ǀ4ǀ8$|C h{ƒ4PRƒ8PRƒ8t8PR A P94~ZYt+ 8u ǃ## @ P4ә4 A P98~[Yt+? 8u ǃI$ @ P8ә8ǀHǀLtC ǀPC ǀTC ǀXC ǀ\C ǀ`ǀhǀlǀp@ fx~M%o@@%<@ f@@ǀH@=D󥡜ƀGƀFǀtǀǀjjE PEP8XjjE PEPXpP$P ǀdxP @@\2]Ȕ=ȔxyېȔ8yBj@)Pu VSeWƒȔPVRȔP?jju VS-WƒȔPVRȔPfXf)XȔȔB ȔGz t (ȔjjE P@tPVu P(ȍe[^_ÍvUUt?=Ȕ<r ,ȔU ȔPȔ@Ȕ UUtu PU=t/ǀd P\:[ÐUWVS ++++++++- |+~ _+:'#8o<>v^###--$<(>,*0!4f@lt l@HtwHI9s[=@GHa`}+|/.~0t #fwGHD @CC9re[^_UWVS @9D}0P5@lj@@DQ5fx@~vt(Bxhtu jBph~v t(Bxltu jBpl}vt(Bxxtu jBpx}vt,Btu jBx}t,Btu jBD}t,Btu jB}t,Btu jB|t,Btu jB|t,Btu jBt|t,B tu jB @|t,Btu jB |t,Btu jB{ t,Btu jB{@t,Btu jBp{}t=th=He[^_ÐUh uÍvU@xdt@@xht@xlt @xxt@t@t@t@t@tltÐUVSUu @BK]Ӏ:;${<j>SZ;>$T=wD1tvt0P$ ;*u V $d$J;.uAC;>t;=w D1tt0P$d$]EɉC;>f١u! TEvEڀ]؍vC;}fE fEEm]mEe[^ÍvUS u u~=@BtIșȋ]ÍvUBx t'@HPjBp /P;xÉU@xpt ppxǀxǀtptpǂp PkÐUS ~_ v ǀj@p1j@p0j@pHj@p8j@pDj@p,j@pLkj@p|J j@&ǀBt$jB @P(uP<jjju-Pj j@C-Pbj j@-P0j j@,Pj j@,Pj j@p ~,Pj j@L,Pkj@pj@pj@4uj@pTTj@0j j@o+Pj j@=+Pj j@ +Pjjj @*Pfjjj*P:j j@p |*P j j@J*P ;~9~ЉBtExpt?Bppot$@ǀ@ǀ]ÉUj@HPjjpt je@t q j qUWVS] EDžDžuEP9]8Dž@BBt8uB(Putt9]ku)ދBt\9}IVB_(P EPuPtv@x,2@,8 u|;EPuoDž@@,I΋;Hs9^~<tK Dž@BGv+uBtY9}FVB&P EPu}Pt@xL;EPu!Dž@@LI΋;Hs7^~:tK Dž@B@B@B ƅUE؋BE܋BEM9MDž@BBx tGuBp v%P EPuPtE9Eu)ƋBtY9}FVB$P EPuPt@xDhPP~;|ƅ~[;}SuJuA@$P(MIU=wUttƅ9}1C$P(E@Eȋ;hA9|倽ta9}6UR@$@(UʋA9|׋)@@DI;s:^~=QtK Dž@B;P EPuJP]zovu+uBt\9}IVBO"P EPuPtv@x8hPSKDž@@8I;s9K~>vP;tK Dž@B;}/P EPuPt@B@Bt e[^_ÍvUWVS }u =u 6;}u;u!P9U|EәEUEP9|^؉љNjUB9|)\Bth jBh j K~8Bxth jBp^h j  @H9~ǡ@H9E~E juuVWe[^_UWVS@u]Dž@BVucPhPEPPNtW}} ~-@9}"U+Uyډ+E y؍sv}} tHPVuu u hEP2Pi =@Bt;} }tb@xtTPVuju hEPPƒ =@Bt;} @x0tVPVujj hEPvPƒ =@Bt!;}v@xHt^PVuj@HP hEP P@ƒ =@Bt ;} Dž} ~B8xu{}~uBx8tlPVu@HPEHP hEP`Pƒ =@Bt+;}vthPEP$lPVuu uEP@p}WKPVuju@p0}WPVujj@pH}WPVuj@P} ~@pEPg@p8}WMPVu@HPEHPW8 @Bth jPce[^_U=t4vÐU=t8vÐUE US]M BtQj SB!QjSP@Pb]ÐUS]M BtQj SB!QjS=P@Pub]ÐU@t @t bÐUWVS <t3h V$h b$@ fx@ P,Lj@ @P((%% f@ fxy @ P$Pǀl P@PD '@xt;P' [fTfT [ ؅yC)RfDfD@xt [fDBd_v [f<tf [f|tfD [f|tfDC;P Ѝ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,[^_UWVSEfEM fMEfEf}E;L0tVf}yfEf}yfEE;P|f}"E;P|Lf}9f}x(E;P}f}xE;P} f} ME MU(fË @f< ft fMfLBt. EPPPPBP*Ze[^_U塀@xÐUB fxxNfxxGBt u-@t u@tÉUWVS] u}Mfx ;P| avt @fBft @fDBft @fDBf[^_ÐUVS] uMfx ;L| =vtѡ(fDPftѡ(fPf[^ÉUVS]U uEEfEfE;LtY At'Vj RAPFXM=tEPEPP=EPEPPf}uf}uf}uyf}tq1tPf}uf}t Vjh` )1t%f}uf}tVjhf {W vxof}u fEf}u fEv}tUfEfEfUf}tVEP9f}tVEPe[^ÐUMU tQUWVSu] HA~9tGI[^_ÐUVSM @xt@%ƃ PB~9tCJ[^ÍvUWVS\EEfx @ƒ8uAG9}}~ EDДxoA0 wcU;|~X|PAMEAA0< w7A0< v+ExE| Dž|9tA);t"x ~ Džx |t ؃D ؃DB|x9}9| | xJ L=  D @ `Jy >%t7u,@;(v P<$,`5̔FEP5hV ƃ!]V $ ,@;(v P$,%, =h= ~ H |t `ˋU,D;(v P^SWє= ~" H |u<t `эY,;(v PShahpє= ~" H |u<t `l]эQ9~ڡ,D;(v Pelp$,P,=$эL ,rF1b|t%L=  D`L?FA<wBA= ~ H |t `a<a= ~ H |t `FA<w a<l oF=  D @ `F*DžxF0< w xDBЉxF0< v= ! Dx= ~ H |t `= ~ H |t `z= ~ H |t `˹= ~ H |t `)= ~ H |t `= ~ H |t `= ~ H |t `˸= ~ I |t `8.= ~ H |t `˸= ~ I |t `= ~ H |t `tt9= ~ H |t `u4= ~ H |t `t=  D= ~ H |t `= ~ H |t `!{= ~ H |t `= ~ H |t ` = ~ H |t `= ~ H |t `1= ~ H |t `˹= ~ H |t `9 = ~ H |t `˹= ~ H |t `9= ~ H |t `˹= ~ H |t `9돹= ~ H |t `U= ~ H |t `у=  D @ `}uE}E= ~ H |t `unF>tr>%uF>?u@>;u~LH >eut@>tJF>uBF>t7>%uF>?u@ >;u~H>tF>uv>t F>1,@;(v P~$,$Ѝe[^_UWVSM] EEE]EEE%C9 Xw=$l CsAC}tEE}XAEQ}u>D=wUtt |PЁ'~EAC9t `}tEE]%CC}t}}E;E}EUȃ[^_US]{t S){t SI]ÍvUWVS} ]}E@8Et~U9Z0u 9z4xhxd}t MATS}t MA@9v2}t UBT8W}t MA@9v~ m uEX0x4]*UZ( vME@(EMU U GF}t MA@9|e[^_UMU tQUWVS Ex8F8EEFuoV(UMI<\:xFF4@MQ( ET8F0fytA9~fYfytA9}fQEF9E~v8~8q [^_ÐUWVS}Ex8P8U REMAEuF4UZ(@ f| x_uvuF(<D V0)D )Љ‰H!ƋMA9~ftG9~fwftG9}fWEuF9Eme[^_US]t2{8t,CC0PC4Ps8 [8t{8u։]ÍvUWVS }t'UB PBPB@PB@PGÃu -ufFfCfffFfCfFfCfFfCfF fC fFHfCHfF fC FCFCFCFCFCF C F$C$FCFCC0C4C8fF,fC,fF.fC.FECutEEvK(URuV(<4MEtf}tK(E@uF(fDfDK(F(fDfDEC9E~؍e[^_ÐUWVS utvC9utF u5Fu*V(<t 4vGF9~׃ v($x;5u ;5u ;5u  ڋDȍe[^_ÉUWVS u]}x} xy}u@)E} u@)؉E U ڋ A9>UA91 jSVu u'ǃ  WbEE9E}tvw(MIju G(<t‹uvE 9s!  G(49rEE9E|e[^_UWVSM}]x=x9}t3} x-x)E 8E@E@9E@E@9~} u UR)BU u EH)AUB t VUB PBPQu E }t\My4Y0UBABA;u }.]MY(vEUR(M U GF;u |؋EMA8Ȑe[^_UMQ E)PQE)Puu QÐUE9u ~UWVS}uEWtX u tFj`jrE}]j WLC(u SzfCfGfCE HfCMfKEfC fBfCHfs CC }uB9u B9E uKCCCCC C$CCC0C4C8fC,GfC.fCfC@fCDfCBfCF9}$u NvC(IfDC(ftA9|}uYUU A9uEfS ЃfC }uA9u}u ЃfC ER9ufK vtMt؍ve[^_U=t!u@(PtÍvU=t#uj@(PtÐU,Ptu#@0t@ǀÐUXP,u`\ÉU=tX XP(=t4x5t j#x ujpÉU=tL=t0 j",x tjpJv ,PÉUh@(ÉUh@PÐUVSu] h \uq VXӡP tVxt ~ xu- SƒtPSPRVe[^ÐU塜ǀ|ÍvU塜ǀ|ÐUSU] Mt7x3B9+x'B9fJffB ࿃ fB v$ÐUÉUS=tX?9H Ë]ÉUS=tXA9H Ë]ÉU=tQj@(P=t*fǀ\fǀ^fǀ`vÐUWVS}E wf\tCf`f;\t3 Wr.u G G  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 PC W,uG tG u Wuf$y~R~W$f\ujRj  /=uF PPuHvHx7u/jHj0u VTt S f\f^ƅWjWP25W@ ^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 w~t)G u#؁u=w PW u|t }uyE HЍe[^_ÉU EPu;tEÉUWVS ԔE졜X,vf\tf`f;^f^u EjEP0bM@ ^L8fǀbf\uf^f`f\f^u fǀ^ f^f^f;\u fǂ^ȃU`L8f`ufǂ`vf`΁f\f`f^u fǀ^ f^f\f;^u7z8󫡜fǀ\fǀ`fǀ^8Ktv[8Kuf{ tof`f;^u9z8󫡜fǀ\fǀ`fǀ^f`f\C Rvf\tf`f;^nEPujR\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}tjtfEyэY~8>t3vFKPuu E~>uӍv u Ee[^_ÍvUWVS u ]EffPfU}y>t C8uvUBU)@9~ø@MQ(EENjU:ЃtfЃtMfyt fEf9A~ fMUfJEfxtPED9}fUDMfA ue[^_ÐUSMU A u"Q ‹I˳tˁ (I˳tˁ t0 Љ‰Ћ$ÍvUu uÐUVS]t'u Sst SFe[^ÍvUVSut/u V/t^F V^؍e[^ÍvUWVS } @u$w S貂ƃxuvWuE@EUU t* wC|  eE=||)EUzu B.9Et UB9EGà UB;E!Su7UB;E| ufEfH @EUB.E9EBEMzjR E uEUB.9E~"MztjR  nEEf` E}tPMUfb -v FPu6t>uUEfPUfЍe[^_ÉUWVS }] OڋG u'W ‹_ށtށ -v_ށtށ t0 Љ‰@W(fzu fJ vB9}fJB9~fJAG9~FfO @f@ff;G.~*fG.ffGfGu!jW fGfOe[^_ÐU塜f^u f\uifǀ\f^u fǀ^ f^f^f;\u fǂ^f^f`Jf\u fǀ\f\f\f;^u fǂ^\UT8ÐUS]jEPtEUlpE+l ]+pMb)؍ȋ]ÍvUWVS] H!à j~ƺ}EtEfEEt`x DfDBSREPͱ$x))Åud~ jdd^}tMt8~/Et Dt B~e[^_ÐUEÉUVS]u =u!@ @@  h ~ hy~;~>r @(PtYLEPhht@@(P腳y 8u 8tʃ;E>E;@ @>@ ;>PP ffBP ffv@ fxx @||e[^ÐUEPEPq=t!dtuudÉUVSu] j/VPu{SPVR8tSVvuIf{tC<vBC9|f{ tCC 9t13VusVtЍe[^_ÍvUp,uUS]t"@dt d u+@`t ` tx4u@4X5]ÐU=tG@uux|t't@xTu tU=t7@u t@xXu tUSEt: f@t ؋]ÉUS]t. SF$;u v]ÐUVS]ffKC @tf;C}fc vC @uf;Cf;K~ Ys@S(fztf9J~fJfCfB C9w v19v Se[^ÐUVS=tA<ޝw+DPޡ@4,PfvC|uče[^ÐUSEu:Ãt%jEPSRƒx 9]tE8tЋ]UWVS ]}u >= f;tc][{t8C;tX뿃j j踿Ct!ÉE#j j蛿ÉEu uCFtXj j_Ãu(]t7E S]uCFuf{ e[^_ÐUÐUWVS DždhT\hqXt 8/ hNthP hB>,t>hPSEы\L/A\\)¸)Ph\$ThXP蘬ltETT\\9\> t>:u_\B\:t^\9 t9:u\\>u9\:t.TT9\\>uvTXt+X:t :/t R:uhPdP'PDžL d`j:Pu>u:`эqw:`L]+`FL-=~DžP0V`L`LLIHvhM`Pu Ãx\t68tԀ8\tv R tD4%tHt3zt-B:u B:Cxj:R>=ƒtxuӉэqL-=VSLLL:FLdt dP h9j$jjh j~ =uJ } C 5 ev jJ t$hu3=uu݃ 5C Ѝe[^_US]@xt{ S~a Pظh )~ PK= u]ÉU=t @v,PÍvUM=t>t/MjEPtB,P$襞'v=t @,PQÉU h juÐUWVS ]tu %=uEuE@;Xt;uEEBxuIB fx t?=tu( PR R 9|E=wUt$utPC=wD1tuԍ4;.uUC=wUttt0C$vC=w D1tu;*uu CE;v;$uC;S|8u j$U$<U$vLPC=wD1tuԍ ;.uUC=wUttLC$vC=w D1tu;*t ;/u;*uM C~/}u }ut gfffș)P;t C;~+}u}t gfff)Pr e[^_UUM tB9y vB(If|USEt.@u#X(HvRf|t  B9~$ÐUWVSuU Mtx xF9~ VӍ9}DǐF99N([}fHfDV([}tfNfLC9|[^_ÐU=te=t\ǀǀ`d`X@x@y XPCÐUǀ`d`XHd@x@yXPÐU`dXPÉUǀǀB8% Bd BdHX XPaÍvUǀHdHXXP!ÍvUHdXPÉU} t`dHd XPÐUVSuMb)ȉEM)QjQ~e[^ÐUSM; u *Dx@9 tBv$ÍvUSEx@9DuBv[ÐUSXPKÉ$f=t ؋]ÐUuWƒu hl aǂt ÉUVS]tR{t sS SA;u ;u ue[^ÍvUWVSu j|V(2u9эYvSVu躞Ef|ƃe[^_ÉUWVSTuPÃu PqE gv+)9u ߉9҉8tQCj|SR1u@j|(1] uȍe[^_ÐUWVS,uEtu u>PuStgv R tD4%u h]_t Sփ{ S2j=t,tu犅e[^_ÉUWVSlEDžDžv;vt13t[Fu) 30 Ph50G~( 70 Ph^50j~50j f)/DžDž;S( 3/Ir,R4ƅ$[=tlR9t<h[1/t|30ƅvuU RPquu hu hl v\E 󥋅@(It0ƅu;=h [RD0;K(?t {(Dž;s(}$D0x(G;{(|݃SPg{(t'C(@t$VTK({(uSPT{t s{ t s {t sq ߉jSPtvf{tC<uBC9|f{tC fWvCxdt+xdt%t u h` WvCxdt+xdt%Ht Hu hVvCt,t#Ht Hu hVCxht+xht%t u h jVvCxlt+xlt%t u h`6VvCxpt+xpt%t u hVvCt(txptxpu hUvCt(txttxtu h UvCxtt+xtt%t u h`fUvCxxt+xxt%t u h2UvCt(tx|tx|u hTvCx|t+x|t%t u h TvCt,t#t u h`TCt,t#t u hXTCt,t#t u h TCt,t#t u h SCt,t#t u h`SCt,t#t u hxSCt,t#t u h6@SCt,t#t u hNSCt,t#t u hfRCt,t#t u hRCt,t#t u h`RCXt,Xt#Tt Tu h (RCTt,Tt#Xt Xu h`QC`t,`t#\t \u hQC\t,\t#`t `u hQCtt,tt#pt pu h~HQCPt,Pt#Lt Lu h QCLt,Lt#Pt Pu h`PCt,t#t u hP]ÐUE=uFt4=u+Lt" ht PvÐUuÐUWVS]u }9}Hu=ta56uB~hGv"Ãt/}u!vv6h{? >u 5Ãui=Ět?u5uÃt&=v5h{"?u}~5h"}E9CuA=8u$ =PR" PjhE}uJW=8u- =P " PjhW!Ãb}u{u EM}C"t "!t|5Rh=Z}} }tw}}Ct+ tt-SMAS]C fPSMAS]CKEP ffJ5=u!CPV5%ƃ V3K]SY}u h"< =u+:)v6h v6h` ,P EPEt P uE0$;} =ukj+U2 t6M;Y(})j+[Ut, uCM;Y(|׃Pu u ju2e[^_ÍvUVSMU utu$)‰9$uGyuAɐ:$uGzuBɐ9u :@:@ABI[^ÐUUtE EUEEPu+9ÉUWUt&uPu u}ÍvUWVS<E UBu&(t (0MQ]Cu#,t ,0SUBxuNB fxD~+@DPhh%#S}$?0MQ h*0]SBUBx8uzB fxH~+@HPhh%#S}$/MQ]Cx%u h/SB8!EP4t4t 4B8MQz,uw0t0t 0B,Z]Cx)tNC fxF~+@FPhh%#S|$6/MQ h!/]SB,EP@x&tz0t0t 0B,]]Cx)tQC fxF~+@FPhh%#SC|$.MQ h.]SUBXBx)u;B fxF~#@FPhh%#S{$ hUBxxt{trtih VSy5MApS5UBS5 V-MQz]Cxtwxtqx,tkx,teh VS4UBpS85t1MAp,S5t V#-]SUBx+tx'u MA@]CuQC fxJ~+@JPhh%#SLz$,MQ h,]SEP fzu@x*ufB]Cxu h-#S,SBUBx*B fxtfxt@Ph FMAtPht' ]C]3Ph 47UBu h+MQ]C f@UB8;8.ji8cƅt xmuƅMA8v+`=`t6I9uVRSt;ũ{uVh !c{hn3ƃhGsǃtu h`!4vVMA<u3h/#3GMQ<tB4F4螲 GMQ41P3sh!뤍V]C:t%:$uzuAB:u P)O]S@j,Kt1MQ4u" t 4Aǀ ]CxuxCu h)SUB<u h(MQ<]Cu h(SUB@t @ MADt D]CHt HUBLt LMAPt P]CTt TUBXt XuhMA\t \uP]C`t `u8UBdt du MAhih\hVS/UBHSH/ MALjjS UBHjkS MA@jlS UBDjmS MAhjnS UB`jqS MAPjtS UBTjuSl MAXjvSU UB\jwS> MAdjxS't] VJ&]SH$!R/7UBHu+xdt%t h&MQHe[^_ÉUWVSuFtt|hWS9-FHS- FtPjlS Ft@PjqS Ft@PjkS Ft@PjxS Ft@PjjS Ft@PjmS Ft@PjwS} Ft@PjuSd Ft@PjvSK Ft@ PjtS2 Ft@ PjnSt1 Wl$VH$ "w-Fǀtve[^_UWVS Gt `t@ b>tƉu4Bu3 jƒ9xu @9tv 9zuB9u C<upe[^_US]=uhj;vt<|t Avݡ]ÉUWVSutm>th] ;t:uFC;u>t-U:t: uB:uu F>uӅt;tFt>u[^_UWS*(=ux hB>;Ãtbǰу wG ߉у Qۦu hl 6,ShM#5oЍe[_ÐUWS]{t s诧;t 3蝧{t s臧{ t s s{t s_{t sK{t s7 e[_ÉUĚUĚÐUWVSlEEE=tB u@P)=tn   lj t t t\uv t t tþ=:u :u Ã.u(=uEk Ã.t t tYv S tD4%u|.u =unPh\#uV}u S% Ph\#h%( P:v=uhj75F=t=au h%:u,d,u,؃\u t t tÈFà u=u:-=u$N> t > t>,uN> t> t>,tFj|5cƃuэt  5&j|5.Ã}ut8u h%'uэ\ 59@v R%@ t#L4ȅt}ua h&D>/u}uJ h@&-vPh3%_t}uPh&a& F9j55Jv So tD4%u=u_;uFÃuF:tC:+##,t=C@t19t h&~&u9t&}u S " P5h'E%; \5FNw2=v PC% t#L4ȅuD.jEPuV衍ǃ}u>9uu5h:%$E8u 9t hR%$=zPV؃}u9t hR%5$5(v}u S Phd%#}u EPƃЍe[^_ÍvUWVS}EEEEAE H9Q=u ?^}%lÉƃw'=v P莎 tD4%u VPh{%#?u#G=l h%"<LB\#Éƃt'@ЃEEvÉƃu h%#@ЃvDwUttSh@'Z" PMU\Љ]E}~}uEECjwC$d#pk f a\ W R M\H^C,>:9 VxPh'!G u=uEG}uuEE}X~}u h'k!E_É9t e[^_ÍvUE=uhj/ 5 US]9tu[UMU =t H!ÐUWS=эYtK@v R~%@ t#L4ȅu  Kue[_ÉUWVS =u78t#8 =t8v;r.P5-tu 56~5)PPLt u,thS5諉эY: t: uvBz tz tEэQv#E| u| uQD | 8#;@Ѝe[^_ÍvUM;u h(BJÐU=t 5|=t+ÐU=t 5o`$=t8uvUVSM9tAA9u؉֙[^ÉUWVSu} Vt7#vf{ y &C @V3uΉ؍e[^_UWVS } UӍL9s(ƍv9{u3u覛څt 9rݺЍe[^_ÐU}t`W`0ÐU}tnGÐU=|u1 hj|u hl ||ÐUWVS ]|)֋} );v5ࣀPR|u hl [v|u SȅэD e[^_ÉU=`~ hԀv`d @`ÉU=`u)=du h%d`H` dtÐUWVS U\t ^taovB3O0}%E$}@\tP8$\BF=w D1tuZ vӁv R= tD4%tV,tQ'tL\tG:tBh5xxhPx'h5xxcv2fÍf0hQ~x vSfÍЍffʍf(ƒ0h5x$xfù f0h5xx}hPxe[^_UVSu] =ptu u95dud  h:h5xcxKh#5x=xKu=dt5dKt=h5xxV0hPxKuÃ=lt"h'5xx=ht#h/5xxve[^ÐUWVS ] }`dhlptxu@xX=wUtt6޹$=w D1tu ;*t;.uCр;d;%/C~%CN$%p=puh8h=huhLl=luh`h2@j5t4ht5xxj5t h5xx7j5thуj5th5xrx$Ãh5xPx$gÃhp;=t;+t;-t;*t ;/!{pt {c{E;=tj5t!{pu8jCt@Pt;dt w tE CPE*$܃hhhh5xGx?=pt,=tu d!=tud td]j5t&$Ãh j5t$Ãhj5th&5xxJ SÃj5thj5thu맀;3t;2utj5t`h냃j5tFhfj5t)haIt t|h%h5xxKuPPPh<&vCh5xUx;h5x)xv=wUtu ;*t;.u%h5xxC뭃h5xxh5x|e[^_USEPEPhuDuWE=wUtt4E=wUttE:Euv؋]ÐUVSPu] wmv S{ vtD4%tB:t\u\hVƈhVKv؃9u S PEPzvShEPTEPV9ƃe[^ÍvUhǁuu P uPÍvUWVSLEEEEEEEoEE} ыU \ ;>K;/K$vK=w D1tu;.tۀ;*tր;2E9'vU :\uz^tz,uE E 8$u\x.tЀ>*tˀ>/tƀ>>tNu E 8%u$x%u h.9U :%u }vu  EPEPhʁu `AtWEPEPhu CAt:EPEPhu &AtEPEPhu Au&j;u HE uuuh u tE h:]EPh=u @tEPhJu @uPj+u t<E huEă}tEމEuuE 8uE hWE '8uE EЃ}hZnE /8uE Ẽ}uh\4E U %N/$,%hu E)%u Fu huEċU =wUtuu Ph]?>djhaohceh&[E E 81u E{U :2u(}um}ughfu/EE"u >2~Ceh2uEă$U huEEu >tFu >t E9EH#|e[^_ÐUS]=u hąfC,fC'fC fC"fC$fC&{u j,舅C{ u jNpC {u hxUCvf{tCBC9|f{tC fPBC9|f{ tCBC 9|]ÉUWVShj;YÃtNjuuP}؍e[^_UWSU׍;=wRP[s=e[_ÐUWVS E gu 6xMfy t-F<tЁv Rm tD4%t\C^CF@C+%PhSFэ\ ؍e[^_ÉUWVS u trthэ QE4\U"PFtvPRƒFu"B؍e[^_ÐUuj`ÐUUM t JEHBtU u juÍvUEM QPQPÐUWS]U t=эy;{s'{tRsqk{v){e[_UWS]U t=эy;{s';tR3kC){e[_UEÍvUS]=uhjthS5 ]Uu@PuwjÐU=5h}A50,=x5h50,=x5hĊ50n,=t"8tPh͊50D,50j:+50j + E Pu5050j +vÉU 5h}A50+=x5h50+=x5hĊ50+=t"8tPh͊50d+50j:*50j * E Pu5050j *$vU 5h}A50*=x5h50*=x5hĊ50*=t"8tPh͊50|*50j:*50j ) E Pu5050j )$UWVS ]}~i~eE0U 2R|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"fBBPrP MAy"Oq+u]KxEE 4uUr5tMQ 37OEP3KyMUfJ"UB$;EEf+B$fBBPr MA y$Oq+u]KxPUM 4uEpt 3EP 7fBfJO3MA fPKyUEfP$MA&;EEf+A&fA A Pq UBz&Or +u]KxRvMEU 4uMqt 3EP7O3MAKyUEfP&e[^_ÍvUME t t%t Q"Q"A$ÍvUME tuQ"vQ"A$Q"A$A&‰UWVS]SucSulj9s$UB4u xڅt C9r޺Ѝe[^_ÍvUVSu] Et uF FV$)V")N F&)F"V$)ˉ[^ÉUWVS}uu W,ƃ_"G$G&\9}WDA9|uVWH}t:}}t y}tNq_K9}WDA9|fO"fOM_K9}W fDJfJA9|fO$fO%_ K9}WDA9|fO&fO e[^_ÍvUWVS}uWuWEw"G$G&t0;]s&G4u vxC;]rڃPwGN9vWDI9wGU uSWÃ}tb}}tv}fG"fGGPw]GOI9WDI9wfG$fGGPw G OI9vaW fDJfJI9wMuSWD=fG&fG G PwGO I9vWDI9w؍e[^_ÉUWVS uF"EF$EF&EE]9N<F +EV&)ЍV<j4u 1x=jWVujWVtxjWV‹FYjF4u xHjWVujWVpt!jWV]‹F fPvC;]e[^_ÉUWVS}G"EG$EW&M I"MM A$EA&EUu } E9Eu\fG"U f;B"uOB$9G$uG;]}.M A4G4st vC;]|҉ EEPoEf&tM Q$A"tQWE fx&tW$G"tWu v U B"PrG"PwuEM A$PA"QPG$PG"WPUMPjEU B&PB"R$ЋQPG&PG"W$ЋWP]]UP!à 9]t3 PuuuW t wovMOEE9EtZE Vuuuu ]SE p\U BNjuډ؃tfЃte[^_ÍvUWVS] ߋu CP nCC$mC C $mCf{tSu FAC9|f{tS u F fHfJAC9|f{ tSu FAC 9|E H"@$U B&t@ MQImCNjE pUЃtfЃtCe[^_ÐUVSuE t)PVoÃu& V n PlÃ؍e[^ÐUWVS ]uE;uN;CEuu S[ juShE tE EtCE9| 9u+C;E}"j Si9|9u C;E|ރuu S[e[^_ÉUWVS\u } EPX|UUUEZ"gՌPg[E[EE}t EEE}t URU u車E@ v t ttWu:}yUff;Biz_j RhLvE9ttu9EPvE9u09]SVWuuuƃ 9w}x);E| LF}EESugu0Ufb j RgjVWuuu8ƃ ME@ @t4xt&@9EuUff;BuM}H!EEf` uqu u`ÃcUfBfb ff;B}@f u-uU|UUUE$VHe[^_ÐUS@xt p@t 虄؋]UWVShuXS+ƅWjSrމI8Dž<Dž84P8PjSMju 4xuܲWj"jjXIQR4pp( tPha50ܲvjj h!ǃXPWuoju]S* ju EPy* jVEPj*$2*$E j,SWs!,tuuWp W'!e[^_ÐUVSuMt)U J9r9uCJ9r 9tv؃[^ÍvUWVS}EEEEuvUPU@E}WEtEPuƃ-}}tWE9sNE8u9EPSVu#)EEu#}uECE9r}tV tE|0 uHE}t:}t-]KE8u EPSVu ME}u}uZEE@Puogu uyf4vEEuVPpUUEU}E}}EPu@]ހ;E8tCF;tU8u;ts{tmE8CuUE8CuEŠE8CuEŠE8CtE8CtE8CtUtCCFCF;o}IM} tUE Ee[^_ÐUWVS =  hh:u_j.htIPQRh0+QUDPS/I =]E ttv5hCPuR|r|:u; DPVt'E|эQ)98C)Pj.SFÃre[^_UVS]hSt6<t(<.u*\hSxt<u vve[^ÐUWVS,EEEEM] EUƉ׉M܉]̅ue9vȉU܉ÿ.vuƺEỦNjEU܉ú.E܉EE ;Uv0ƒEuU9Uw 9urM̋U)U܉M̐E܉EỦUEU +EԉE؊MM NJMŮMMe̋E܊M E̊Me܋EỦE;Uw ;UuE9Ev KM)Mȿt‰ÃuF9Uw9urM̋U)UԉM̍EUԉU؋M̉MܐE؋U܉EUv )؉EЈM LjŮMe̋EԊM ËeԋEUE;Uw ;UuE9Ev M)MȍEt8M̋E+EщEԉM̉ʊM ‰U؋EE܍vU؋M܉UM}t ]U]EU,[^_ÐUWVS4EEEEEM] EUyEكۉy U؃ډƉ׉Mԉ]ąub9vȉUԉÿ+uƺEUĉNjEUԉú.EԉEE ;Uv0ƒEuU9Uw 9urMċU)UԉMĐEԉE؋UĉU܋E؋Uܣ +ẺEЊMM NJMUĊMMeċEԊM EĊMeԋEUĉE;Uw ;UuE9Ev KM)Mthdh>(;j. ƍdjjWVÃu 8tjEPj5  jEPj%  jhPj H de[^_ÐU uu uÐUWVSFЁv RG%@ t#L4ȅuˉ<-u E E<+u>F}t}u0u>xt>Xu~E}u<0TUEEEE"#EEȉURPjjBEUuujjEԋEEUĉG< wG<w7G<W;E}x,M9Mw$rU9UwU3UE3E u;E~ ECvEEeEUUUċEЋUUЉEEUEUv>FC}yEEN"#}u ;}t ]U]} tE}tFU EUe[^_ÐU uu uÐUWVS| ]xDž|;/u-E /@{DžhCPThu "uhh5u @8v} IhSP 8Ã=w1v5#x>?j/QO…uډЍ)=w)ȉtft)Ƅ()ÃtCPBPQ E |/t@=AM  /58B8u;E Dj/PP@+U hPu 6=EPu t$U8u0vQE%=||  hPu * ÃƄ+/uM ADž5v,E Dj/PP@+U tQ+/tC=zƄ+/Ƅ+hQPk5=AhPP4Ã0vU |/uDE e[^_ÐUVS ul+ƃt>j=Vu VRj@PVÉ4$R؍e[^ÐUWVS u} ]=(u 8uS(95}58-u#zt#Bz-uv@8,@:tRSeuf=,-uv8u=;:=,?5, ] Phnx:t$8z8ua;5K@;:u:Z=t%5, w] Ph@50?%$@,ve[^_VWt$ |$L$tfffIutCffffffffffffffffffffffffIu_^Ð3]v7̀rϐ]v*̀rL$QYB̀rQ\UhÐUEUEUEUEÍvUEUuÐUEUuÐUWVS,u)EԋE E8>UBU%tvӁv R5> tD4%@t=F>2v R= tD4%@uFE84E}G}Ãy $FE<% uuEb=wUtE EE$}TPЉUMF}t$>t=w D1tuE} U}G uuEuuhg }  } EuuhpKuuhy>uuU-uuh uu}uuEVƃE3  =wUtE EE$}TPЉUMF}t$>t=w D1tu‹EHE=m EHUBz >q v R=; tD4%@B =wUtE$ EE$}TPЉUMF}t$>t=w D1tu€MuE}; EUBE}< }E8> v RK: tD4%@P EU:K v R : tD4%@t v=wUtE EE$}TPЉUMF}t$>t=w D1tu€Htku E} E} s EUB>R v R9 tD4%@# E}? v R8 tD4%@tEԋIM܃QUVvu&} =Ex @UԋIM܃QV E]} PEx L@ CEUEԋ||ٰIM܃Q}t|Vt8EUԋ|`ٰIM܃Q}t`Vt G}vE}EUB=wUtE{EE$}TPЉUMF}t$>t=w D1tuE}5>v R6 tD4%@EE8v R6 tD4%@t=wUtEq0UEX}Ex>7v R6 tD4%@EU:v R5 tD4%@t=wUtEEE$}TPЉUMF}t$>t=w D1tuE}EEUB >$v R4 tD4%@E}?v R4 tD4%@tE}t6BEUԋIM܃Q}UEUԋ|0IM܃Q}t0Vt=EUԋ<IM܃Q}4Vt E} UE} EUBu=wUtEEE$}TPЉUMF}t$>t=w D1tu‹EHE [EHUB>9v R3 tD4%@ E}?v R2 tD4%@t8j EPV08"t-]8uuEPEl[8Eh>Ov R2 tD4%@ =wUtEYTUE$}TPЉUMF}t$>t=w D1tu€Yumlyu }DEdE}zEUB>Yv R%1 tD4%@*E}?%v R0 tD4%@tuE̋È8t+v R0 tD4%u9u])C)ĉeЃSVuU?uиW8u EM5uDu UB )5uCEu}G u̐E8tuEe[^_ÉUVSuEEPVu uÃt%}t VEVEPVv؍e[^ÐUS]fEfEBh}?EEtfEExEDžxDž|EEEuu EP誚ƒy% u:@ EEЋ]ÐUU uPRu-ÉUjjju-ÐUVS,=t SK(C8xu@MڋCHCy ;C| tRQvƃ=t S(e[^ÐUS=t 5('v(@8xu@ 5(GÃ=t 5(5(؋]ÐUS]=t SP'fc =t S']ÐUWVS|EP BUH$M@H#EEEt} u>}E FEU UэL MU9UMy<yDyHY<]ALtuϋIDWHUu\0;]sT<t;]s@<u;]s2KJ:u ;Uu:t!+E}9}ËU;]r;USp]E9s@UR]Ѐ{_1}Ћu;~"v R" tD4% EЀ8_MЋU;JuBtfuЋ];s> u@uJEЋ};Gv RU" tD4%}UЀ:_q]ЋM;YbSv R " tD4%uOuЀ~_tF(Eԋ}@UԋP%EԋMԋ%=uEEԃ}u)]9]}uu9uHM!Mԋ}@Uԋ%=X0=Xw.=Hm=Hw =8tGt=Pud=p=pw=hSB=x2]]KUD#D  uFU\+E)ع9E}OUG E̋u9ۉ8UPE @M9tE @Eԋ}9uuuE@PuEPGuuE@Puuu Fuu%UԍDPuuuMAuЋ]t@PuE@PuVQz}GMЋU; uHPuE@PuQWSuFUЋ}Wu%M)@PuRVG HPuE@PuuVtMA%uԍ\0uSQuuu ?}@%=CKP%Ë%=uK똁]EHt]uEЋu+F |uuE@PuuVN EPEM] \u]]KUt| u}E+C D| uuE@PuuS u'EPEM]L\ pȍe[^_ÉUWVSE EU;Bt HMEƊMVhVuuE0KƉEEv }MU;JtEE;uuUUE u M@uuE@uEUX,} uM@uv}u'E@u}EUX0t&~"VuVuuM1pƃ Kށ}t@Ёv RG tD4%uJ_tE}t<Uv R  tD4%u}_u Evсv R tD4%u_uM}t;}t:Uv R} tD4%u}_tEE-wVuVuuE0'ƃ Mu,E9Et$uuVuuU2EEMAMtUBЍe[^_ÉUWVSE@0EU UM;Qt BEEƊMVhVuuE0jE }MU;JtEEE u U@uuMAuEUX,} uM@uv}u'E@u}EUX0t&~"VuVuuM1ƃ Kށ}t@Ёv Rw tD4%uJ_tE}t<Uv R; tD4%u}_u Evсv R tD4%u_uM}t;}t:Uv R tD4%u}_tEE-wVuVuuE0Wƃ MtEE;ut,U9Ut$uuVuuM1EEe[^_ÍvUWVS ]E ENJMu9uUBM%=P=Pww=(D=(w1==W== <=8)=8w=0=@=HD=xY=xw>=`=`w=X5=h=p==w= =\=t9=t;x9E5}ts}#E-MW}}5?v}&0%uN}U"AE! Éс‰! Ä)MMNJM! É!сVuvuuET%=t"%Eȋu%=uމ!2! ÉсUʋuF%=t ʉ! EE9EK؃ [^_ÐUWVS|EP BUH$M@H#EEEt} u>}E FEU UэL MU9UzMy<yDyHq ƃuWuPu) ;EtFC]_EEE SuVuu t;Et UUEօu EUU SuPuE WSPuu ƃuWuPu ;EtF͍CEU@%\v SuVuu] 9t+CCEUP%Ë%=uK뻃 SuVuuu `U@%JE]+C \1U@%JE]+C D\ v;}Ee[^_ÉUWVS,E EEUUԋM9V]@uԋ%=0=0w9==w=t_v= =(ta==w=`==}9}|UЊBU8=]9]hElu%J}9}3E"AEЄkvMЋU;Ju BuЋ];s~ 2EЋ};Gu GMЋU;J9 v@uЋ];suCteEЋ};Gsx u@uLMЋU;JnQv R  tD4%>]Ѐ{_1}Ћu;~"v RK  tD4% EЀ8_MЋU;JuBtfuЋ];s> u@uJEЋ};Gv R  tD4%}UЀ:_q]ЋM;YbSv R  tD4%uOuЀ~_tF(Eԋ}@UԋP%EԋMԋ%=uEEԃ}u)]9]}uu9uHM!Mԋ}@Uԋ%=X0=Xw.=Hm=Hw =8tGt=Pud=p=pw=hSB=x2]]KUD#D  uFU\+E)ع9E}OUG E̋u9ۉ8UPE @M9tE @Eԋ}9uuuE@PuEPGuuE@Puuu Fuu%UԍDPuuuMAuЋ]t@PuE@PuVQz}GMЋU; uHPuE@PuQWSuFUЋ}Wu%M)@PuRVG HPuE@PuuVtMA%uԍ\0uSQuuu ?}@%=CKP%Ë%=uK똁]EHt]uEЋu+F |uuE@PuuVN EPEM] \u]]KUt| u}E+C D| uuE@PuuS u'EPEM]L\ pȍe[^_ÉUWVSEX(P,U@0EU UE;Pt RUEUpjS( EShSuPU2ËUpSu3 EEEEU;BtUEUދ}H98uEEܾ} uU@uv}uE@uUx,} uU@uv}u#E@uUx0t$~ SVSuuE0à Ot@}Uv R tD4%uF}_t@}t7Uv RJ tD4%u}_u}t{Uv R  tD4%u}_uHt;}t7Uv R tD4%u }_t{wSVSuuU2à E<uWU9UtOUpSuU puSSuuuuE0EE E܋UBU<tE@e[^_ÍvUWVSEX(P4U@0EU UE;Pt RUEUpjSEShSuPU2E uUE;PtEEE u U@uuE@uEUx,} uU@uv}u'E@u}EUx0t&~"SuSuuE0à Oށ}t@Ёv R tD4%uJ_tE}t<Uv RO tD4%u}_u EvЁv R tD4%u_uM}t;}t:Uv R tD4%u}_tEE-wSuSuuU2à E<tUU܋EE؉ދ}H98tRU9UtJEpSuU puSSuuuuE0EpE܍e[^_ÐUWVSuE EËU9MA} %=P=Pww=(X=(w1==== p=8Y=8w=0N=@7=HD=xu=xw>=`=`w=XQ=h=p==w=)=~=t==tR9E0}}6E-}5}nD3U Z}RI}FD3} ;2%UJ}U"AD3M  3T3ρ)11<1)}M]3T3%<3}}}EL%=t"%‹EЋ} %=uލ2 32F3ED3Eȋ}W%=tU0vD3 3D3ECM9M[^_ÉUWVS E} u]MP 8eu:Eu B(t v5z w%u QSVWRK QSVWRCve[^_UWVSLMu]ʀuEPu ƒZv=t9t 8ut38tpEPRh]EP UvPׅt&9v RVCPRVD3e[^_ÐUWVS u} =t'vvsRt ;u;u3haW]ve[^_UWVSxE$tt t"E U9Bs gUB+} } эy h_ à )@@F P F Fu S  v^E U :FFFD DH@ ~CCCC tCC(C,C0C<C@CDCHCLCPC4C8{\@CTjhVw"FHC tthV'tt VjhhV jhV"FHC$SV!SV>#SV#{L~;SV=(SV({Hu{Dt sD1 CDvSV)CXECPUBZ eC(tjV~t uVЍe[^_ÍvUWVS ]Es;Cs2<|t,;E t$ S;Cs<|t ;E uߍv9sujS<;Csw8|ur@}t#VC)@PhxS!uEC+EPhS CPU )PWS]!{ jhSz 2}u(C)PWS,! C+EPhSG e[^_UWVS uE@~Ã$X$,;FrjV?F@PFXP FD ShhV;Fs8)tj)V_ FDHShpV;VsB:)jPjhVfFH(F@,Ejh V=FH(F@0jVhj F@t Vjh(Vp Ve;FrjV@:;Fs3=wUttj VvPV;VC<vD?t?{vB;FjB=wUtCv}tj VUÃ+tq+ *t?{WF)@PhHV F)PhPVWF)@PhXVF)Ph`!WF)@PhHV F)PhPVh/WF)@PhxV F)PhV< F)PWV jhV jFHPV jh뒃 V;Ã;VsW:,uRBB=wUtEt& VE9~j V]uSWV;Fs 8}u@B;Fs8}tB;Fs z}u;Frj Vj V|;VsIC<v5?t0{u6B;Fs.B=wUtt j V(e[^_US];CrjS;CsvR@S;Sr]ÍvUWVS ]CE;Cs(8^u#@jhSMCH(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 Vs3j F@PFxP FD WhhVy;Vs#B;Fs :\uz)tj)j\V FDHWhpV1;VsB;Fs:\uz)u BjVE߁0|Ht3Wh8V tHD @PVL Wh@V jVF@T%} uj VPV;Fse8*u`@uF+E@PhHV F+EPhPV:uF+E@PhXVtF+EPh`V.;V)B;F:\z{ B Vǃ;Vs[:,uVB;FsEB=wUtt" VÃ9~j V SWuV;VsB;Fs:\u z}uBn;Vs8-u9P;Ss1x]t+;Ssx-u - S)ƃu8Euȋ GffG=tH8Evj S ]‰9ˋ GffGC9~wPEPd~j S SEP~d/PShdˋ GffGvC~e[^_UWVS uE;Fs-v R tD4%uʋ+}𻠜=t-Wu3u<t ;u;ujV N{ DC$Ӂv RJ% t#L4ȅtˋ}  GffGC~Ӂv R% t#L4ȅtˋ}  GffGC~Ӂv R% t#L4ȅtˋ}  GffGC~#Ӂv R3% t#L4ȅtˋ}  GffGC~$ú=w D1ttˋE } GffGC~vӁv R% t#L4ȅtˋ}  GffGC~Ӂv R)% t#L4ȅtˋ}  GffGC~Ӂv R% t#L4ȅtˋ}  GffGC~_ Ӂv Ro% t#L4ȅtˋ}  GffGC~@Ӂv R%@ t#L4ȅtˋ}  GffGC~Ӂv R% t#L4ȅtˋ}  GffGC~K$ú=w D2ttˋE } GffGC~e[^_ÉUVS] j=u  SffCe[^ÉUVS];CrjSv;SsB;Cs :[uz.t@Hj.SBƃ;SsB;Cs:.u z]uBjSe[^ÐUWVS ]u E;Cs@@;CsU9uz]t#J ;KsB;CsB9uy]uދ;CrjU+} = t(vWu6u<t>uۃuUFjSe[^_US]v St vtD4%t&v S1Rvt4Rv S# tT4Åt%v Sg t4]UWVS(]3{U E؉EډCUE]ESg3{e[^_ÉUWVS u] Fx8@tMӁv Rm tD4%t" S9tSV]'PhV<;u FP4;@4e[^_ÐUWVS]3{EECE^E@ @]@S3{e[^_ÉUWVS ]u}CE{~~u v$E+E )C|u C+E @PhxSvWjE @PS`C+E PhS C+E Pu S jhS jCHPS jhu C+E @PhxS C+E PhS C+E Pu SS jhSs jCHPS3 jhSS E@PE @PSGPjZu C+E @PhHSp C+E PhPS Duu SGPuu SkWFPRS jS e[^_UUzuE BBÉUWVS EPr FB UZKM;rBBщU{u P}vMYPsCEX{u uFCVUZusDC9}1MAxЅyBvEAB9|҉EPzt ztE+EBujPj uMQZyFEByFv)CfCCC ؍e[^_ÐUWVSu EPB BEz9sˋF ff)FC9rE9u UBH v[^_UWVS,E f@fEUBP HʉU@E܉9s|fEf9CuN;] tI;Ms8;SUۋE 0PUUۄ8EȊUڄ0U1ШuA;Mr;Mt ;]r;]su u] UBU +Pe[^_ÍvUVSM E@p9sI„ t vB9r[^ÉUWVSM E@x9sIv„ tFB9r[^_ÍvUWVS ] s}эC{ u Pavss jC { uj u= vuC HPS CDe[^_ÍvUÍvUÍvUVSuV JȅyB] F9}v<t vBF9|[^ÍvUWVSEP Z؅yB} uEP9}:tAEP9|[^_ÍvUWVS E x8Exunv<>uZVu tGU B4EPM Q4>^*<;uSVu 9tE;C~ډF~e[^_ÉUWVS u EURU)tN؋MAPQ<EP@ <4ЃtfЃtEXUЍe[^_ÉUS]{u:C;C| C@@PSvKS E E C]ÐUWVS u}~uc^uu VF v9| |D 9|H|DH@ ~F)PF PPF e[^_UEM xuP % EÉUVSu] 9^}0Pv =uj V F ^e[^ÐUVS]u CFCPs Fuj SC Fve[^ÐUWVS} ExE;G }O| tEB;W |EG@w%=X=Xwb= $= w&==w ===0]=0w=(=H-=xtm=xw)=h=hw=`1=pQ==w==vts)}uFEEEuRVƒ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@PG<uGLG@5O(/O3ut [ut sH{BvE~ECt SP C }t ut Wt Ve[^_US ]hSt$8uvhSrt8t]ÍvUWVS,Džu' h2t hh}P譼Cр t(v rDž?vƄ hPZ$Ãƿ+8uX Pmƍ$]à  P9SV޿:8t4޿O8t޿c8޿:8u DžzH޿O8u DžX#޿c8u Dž+ P[Ãt PCt }uDDž hSu}u ѐ}hP /tOve[^_ÉU=u jÐU=t jUS]{t s S]ÐUWS} jt- u Cxu Pv zщ e[_ÐUS] Ep藰u v]ÉUWVS u} Iwd jt, h Cxu P u pt e[^_ÍvUVSu ?…uJsuE6t3Vtϋ[uЍe[^ÉUhzuÍvUhXumÍvUhuUÍvUh+u=ÍvUWVS<}huU<tD }уQ=ÃfuSfhSXE EPEPS-Ɖ$ EEPEPh,Ɖu膅tuve[^_USj Ãt(Pu u豈څt S蓝Ћ]ÐUSj ҜÃt(Pu uuڅt SGЋ]ÐUSj 膜Ãt(Pjuڅt SvЋ]ÐUSj :Ãt(Pu u蹇څt S诜Ћ]ÐUME t$Ѓ|~uf#fu vUEU tu˃ US]t-tu! jƒtCp]ÍvUEU tuC ÐUS]M t:v 9@D@f@ǀ]UME tKʅt t>vǁ;|1@DU`ÐUWVS}tE8u1j/u't u } ujjڛ hM>/tM:tBIw.:.uzt#z.uztj/'t Dž Étj@S&tDžl@Džp@j_S&tpj.Su&tl h ƃt ؄t  V>|肀 tmx>Z>%FctBcLt@L %tCNt4lt tt t#pl }FqvFxӍ\SWx裱9r, t|?ыxLx'x)wxBxF>xPSփu/ ta|S$V}N hMPƃg t|~e[^_ÍvUWVS }t}  E HU;B}u ]s)v]C ЋE 9tQ9}y+D9~ƻ vλ9}D)u볍v)뜃{$tSu~ډЍe[^_ÉUWVS}tEx$u}  E HU;B }] EX )UB U 9tN9}y+D 9~þ˾9}$)u뷍v)[^_ÍvUS]Etu+u u P6P څtPЋ]ÉUS]tu| 'v ssS$]ÍvUWVS } 9}4vMA Ѓ{$u sws lF9|σ Ep Ue[^_ÐUWVS8j Ãh}u贬Cu{0 vjjs-$sjj uVq uͽ8t }t+ sO$juu5 h-}: s$^uu5 hֽ50w{ E܉C PC z0 s 5 h50!{Sz0AWSsx 5 h50z$FzOeEU;{}RjRPstS 4sjj(Vr~$tOF$FVG;{|ؐe[^_UWVS u jvvEpq vFEpjvv_ujvv Epu Cy T F PQF uSy ve yx v Bvv4xR;~ }:^ EpjjS螨u{ tOFCG;~ |F$Ѝe[^_ÐUjjuuu u}ÐU juuuuE PuÐUWVS] D|u@ hžWƃt*hht9Pu V2v t?hht&9PujuuuRu7'tEȉddEE EEE؆PhajPPEPPE0oà tZ P Phɾ50}w v0+ Phɾ50KwWvzt8zсw!hrhȈMDžht hvu󋵜Džl SjSu PSjyDžpDžvPTu8#t ~tvu8#u50jjh&u0 Ph50 v, jPjxtjT{ vvT6{k Te~u80u t8=u Džl~u:lt p~(t0P]3hZ"vh~Stj"jjhh`vvZh`h50t]t$vuEpBPRXx牽pDžlhj"jjhh`vv赃h`h:U50It}u'jh@T}DžvP7`F|`j`yhajP߉QSTz|P߉у9Pt r0) Ph`\T9}\\\v50jjh  HuTT `` $r jjjP\Gx ~uTq8t(q0) Ph 50Ir50j*jh``|PHP`yƃIt u fJ؃u Vz `zy7#q0q Ph 50qDžb}7=v50j+jh:U׈QRTz U׈QRTy U׈QRTy j{PTyt0@p0莘PE0h250pn{t<{jSjry{ tDjSTiyt)jPj\snTOt M1x Tx jPj se[^_ÍvUjuÉUWSĀU x 󫈕yttKƅxzDž|?vƅxz*E*E*E*E n/HjjyPtǃx=fxPWru WwfUe[_ÉUWVStEPu蓹`\t`u(vWhhPgЍe[^_ÐUWVSl]U {u<{u6{ u0{u'}EECE܍]غƅj"jjhPRSu }CEEDžPEPhu %ntMƅj"jjhSwwu uSPtu 践Ѝe[^_ÐUWVS ]E@9<$E@jj~Ãj.P" Et@8t8E Í賍裍蓍t胍dsTc\`"X\(M\ B|]#vE@觙 蠙蹄譄@蠄@蓄@ E@ӛ@E8裗X*蛗:X,Eu%蝛puuE.E-uE+}tbUQ5t6Uu@Pˠ5uE쐋Ee[^_ÐD$L$A,tAPjjf L$T$QYai qyy1ÐT$z,tjBPje T$D$JZbj rzju@L$ÐL$APjje L$T$QYai qyy1ËT$jBPjWe T$D$JZbj rzju@L$ÐUjuu ujUjjujjÐUWVS u}] v S tD4%ub$t]-tX_tS.tN+tI!tD*t?'t:(t5)t0,t+%FS~PjV&vt$*?[#v Sc tD4%u>u t1u t$u t t/Cv u"F\u@i\` $\Fn8\Fr,\Fb \Fa\Fv\Ft\Ff\Fs\F0FE0<0F0؃ t2v S1 tD4%u t)\F0F0F؃0Q@u\FyMFv S tD4%t^FC@u? -FFe[^_ÉUWVS M] uϊtCPVPQu)e[^_ÉUWVS Mu ]}MvvFPWRQKwtjWPQv+Ee[^_UVSM@BEֺQCeEjQae[^ÐUWVS }] uUt&x>ux$`$\u y%u $>v Sn t4@PV[u$Ht }twUB} tlM L@Vu8Ht} t3U  D$}tM D GVt#hEP ƃe[^_ÐUS]y hD]E@URPZu`V8tE}t@vЋ]ÐUS ]j/Sn1t @P vP]ÐUWVSE UǁI@gtXg7--+vXot#u%ȃ8΃vBtDtBtf#B!Btf#B!Bt f#B!BtHt f#B Bt f#B Bt f#B fB! tf J[^_UWVS\}E?0 ]S谰 uVSj=X$[fE$[fU jVjXE$ 膣ƃ-uEDE=wUtjEPW芐ƒEĀ8;ur.UPuƒ+E4U EPShj=VoEgt0gat8ot(ut,M vM vM8MvG뵐EG<+t<-t<=t uw}=uEeEX $$}t Eu m}t EYMJ˒@EI4I,t^;ur8EEPu蕣ƒ+E4UEDE EPSuEPV ƻ }=uE}+uf}t`;ur8EEPuƒ8+E4UEDE EPuujXVE ;ur8EEPu轢ƒ+E4UEDE EPEPuPV1ƃ vu }=uh}ub}=uE;ur4EEPu<ƒt[+E4UEDE EPSuEPVƃ }t|;urOEEPuƒu}t ub+E4UEDE EPuujXVBƃ vGN?t?,G uEe[^_ÍvUVSUE M]ugtcg"=t-= +t=-Xt1ot7ut2-ȅu fB+ȅu!fB\t*H ttBfB Bfr+uJ-uJ =uJvB[^ÐUWVS}+t.-t)Xt$+t -tXuܻEv-uA E!v+uA !E!XuA! Ã뾃}t-GEfGt+GfwCXGf_0[^_ÐUWVS|}u9N5jhEWx|u1EtNDž|Džx hpP觩DžlDžh<  HPSjMP (PSj;P PSj)P PSjP PSjP PSjO PSjOuV|u8} Eue}tEEPj|Ŏ} }}IQux!VE UtÃ9Etv RS tD4%tjEt/v R^ t4Et/v R t4CjP|PUu t  KEujhSxTu},8tEPj|(jHPjM j(PjM jPjM jPjM jPjM jPjM jPjpM|t |StBP)S$Rt |w,WJH#E e[^_Ujhh uu  ÐUEÐUWVS u} ?)9u{u|=u jT VW3t"Cj0CP[C*CVhV[jCPu t{t C vve[^_UWVS u} ?)9u{u|=u j Vc3t"Cj0CPZC*CVhV[jCPu t{t C vve[^_UWVS4j+u tEE J*EE 8rt 8wU zv EPGJ j Ẽu uQu QEdE">EEE=t hFgGÃt tJ'=t h1F uPuPu腗E 8rub ucP]Ѓ{t*jsfMs?P}tYjj}tJEЃxtAjp-M/v}tjuMuO uOt sx$Ou5EPh>pM$H=t h EvU :ruRu ƃuu uƃu=OẺpX=t hWDỦ=t h~DvЍe[^_UWVS u=t hCvt9st ڋuu$=t h Dvuu =t hC V}jjWsNƃu D8t߃ SH Ee[^_UVSjjuMƃxu VÉ4$M؍e[^ÍvUWVS }u VW$uCve[^_ÉUWVS]EPSH}} }}x}~CjjSjjuj趞E }@uˍvb tZtR؆f=tC؆f=t4؆f= t%؆f=tuVJ~Fxȁ t+t#f= tf=v^ȁ t$tf= tf=uIVȁ t%tf= t%?NЁ t'tf= t   %^Ё t$tf= tf=uDNЁ t%tf= t%:NЁ t4tf= t xD  x x~ȋuƉuuDž|] ;t48t-CCfCC| ;t 8u։t ttiFuc] ;t[8tT3EtP褓u)FCFCfFfCFC||~ ;t8u uuuKG|e[^_ÐUU:ELFu!B%=ufzu zuUWVS@DžDDž@Dž<Dž4jjju!ЃtFj4SuBI4u* SMtHPu,Dy ֿ,ؿ,,ȿRPujj,j5ƒ .0tLDD|D@60fؿt!ؿ0|tB9|RWujj@j螙 4Dž<U :t48t-vBBfBB< :t8uօWjRVuY!ЃuDž<-D <D@v@VSu`G9)D8<488?t}] ;tu8tn8_u@PWZtv3WEu,ؿP08S<<~ ;t 8uv8~ <UDt <<4t@4C0t,0C<{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[ ,tJ{t6}t4f>]tf>tf>]tf>uf>ufbG_t OXtf>,tN9sff9rKfffuuuP UN9AEe[^_ÍvUWVS ]} f;~u E@ u EDGEs9s-f{t&f{/tvA;Msf>t f>/uv?uLC<u hB>VuD\ t PEƒu&*@$E WEƒ؅tDJ;}s09tffA;Us9u;Usfffufve[^_UWVSu hSuƋE ߃??*[!uf>tj]FP\ uf[!f[!uf!ff>-u^]tf-f]uɋU J f]?M I f?.vE H 9tf*tf*fffuu P…urU 9 u-B u%=uMuu u8E @ u*h3 j‹+PBRPtЍe[^_ÐUE 0E0KÐUEf8u vuu PEPRRÉUWVS|u ]Ef;fuEPu{ E@ tcf~/t\E%=@t0=uEuEPuu,E%=@uF;Ef/fFE@uPuFf;t;f;/t5f:y EvA;Ewlfff:tf:/u˃}u5Ήf:/vF;Ew0fff;/tuuRSuVu lje[^_ÐUWVSu9u tE f3uuǃunUzt[hPu130PURu E@ t DžUB @tBDžvx.u Uf:.ue] P9sffBfuuuu u E f&u uuVSuA u WwUB @t WR Wp}Ѝe[^_ÐUWVS } U:t;~1GtPw PÅu" wGqu~GHxvHy_Uffu+EE Ppƃt1uPut Vx G4GHe[^_ÐUWVSu] ;]}f=?td=? =*tA=[t]4;]IuSV,ff͍vffEf>ff;!Etff]ljEf;-ua=tU9EC9~4;EEPP CPu Evf9uEff]{E9Et%ff9u;]f>ȉȍe[^_ÍvUWVS }tDWG4Kt>t 6iKu wPGe[^_ÉUSU] f:ufDž.'vhPRKu,vC @t PS v Pt‰Ћ]UVSu ]hPut?.?*C @tVPS$VP2e[^ÐUVSu ]hPuwt-?*C @tVPS(VPL2e[^ÐUSU] 9tffu[ÉUVS]M UJtAt Ju[^ÐUWVSjjEPjhEH  u|E jjEPuhEYH y. u }s } u|Zv98e9}&U4FPuLtG9|܃ u|H,Ѝe[^_ÐUS] =jjj/x-v=~+S55.y R)9=t 5{@) RztMS5PY.c@)9qEЋ]ÐUS]=du-jhV-y *$d=t ]ÉUS=t h) EPpÃ=t h5)؋]ÐUW=t h( EPƒ}u1;E ~ E"vPRu3<=t h(vE}UWVS@h9Ã8j EPSeƒuE8txu~EMtVMGt*GtT^Kt+Wkt$kgt Fmt$?q@I84_'@ShC9~jhYځ+ hsh@  WRhjhĮIEE e[^_ÐU EEE@jjURh@jP| t@ÐUWVSuE t'v j,và EC U S$EtЃC$ V,=vVvRS-jh@S6ETf@2EE>v>щHP6Sf@2EGG@G C$PWSp fG4fufG4}tUW}#vG}u}Ex}vE>a}t}~uuS Ejh@S8tBUPf@4 C$ujjh5b/CyK$@% uuv sv Sve[^_UWVSu fF&fF$؍CPv@EpAj/v@ƒt3;F@uxt(BэYQRv@@f^&UBFFF,B e[^_UVSu>t8f{2x#ڋCuCà R=uf{2y߃ S*u~t v~ v~t vt vtF$uL vu-t x$ v-t VtT$v Vte[^ÍvUWVS }?cG%Y7V8fF8ujVW fF4UvuofF4 fwbjVW fF4f#G$jjh5-F y#FfF4fN6f~4tG$@tBF,;G t:F6t v ,t w GfF4tfG$tG$ w Gt=vjVW tQ"FfN6wt;F@Fvu)jWGuG%H!wGv Prf~2u,G$u w3+}VWf~8tf~8uZjVWfF4fu:G$u4jjh5R+F y!FfF4fN6fF8OFP$@|/uT F@$/BF&@Pv@R.=p Pqf~2u Vqa!V$Gf~2uG$ w*aF6tEG$u/ v )t! v G* / v 1*+F6u%hBjvW tO$~tfF4v7e[^_UUvy  E fP8ÉUWVS }u tt < +- G%uf{4 u Sf{4t vt wuO$f{2uC8/tG$tVWGMjjh5(Ãx.VWXG$](u S(WЍe[^_ÉUE@(ÐUE@DÐUU EP(ÉUWVSD}E$PUrjeEu(} lEf@4UBQv} u E2W$ЃuE@0E uEEEEE}u E} uejU2uWbEtG}t} u 7UBEfH6EE؃ uSiEUR$UЋUBUЀ|/uJUG$tEG/@EEEЋG+EЉEȋUR2BUEEEEvG$ u&~.u ~ F%=.vFPFPWZÃt+F;EWU܃UЍDPW tJ0t SZm uu5hEf@4O$0WU;WtEG$t EGEG+EЉEȐFE=UfS2CfFEfC$~ufK6v}t*}tfC4 E؉CfC4 UBC}t}t(~t"~tG$tCC@CfC4 ZG$t"CCC&@Ps@u7 vC@CjSWfC4}~Hfvf{4uMC}u ]] vEX]E}t, uqƃ}t uf}tuWG$tU;Wt}uME}tY} t }Ufz2uG$u9 w#hBjEpWtUfB4O$S}uT} uGEf@4< Sju\ueUfB4O$?$ t}~uuWEEe[^_ÍvUWVSlE} @$t]_u jOe[^_ÉU=u tuÐUS]t)vS5QbtXuܺЋ]US]9t)vS5 btuܺЋ]U=t 58T=Du+t jv hg$h}5?t@t0BÉU=t 5OhDUWVS0jhj ߉IQSjc jhMjR 5@h+]S% ߉IQSj u5ƒ IQRj jhSje[^_ÐUWVS u} ?t3V5t:;u=wUtt Vҕ)e[^_UWVSEE@uPEP.EEM9Es?Et4E8|t,8:t'vEA9]sEtE8|t8:uߍvEEPhu2:~#u 8u X(}t"u 8u Xj:hԓub-t XEPhn!u0<tU(EPh~u< H#E0|Phu; H#|,xPh1u; H#x4EPhu9~h@uf2tPhuO;ttfpPhwu;u,0p8lPhu:u84l<hPhu:thfHdPhFu|:tdfJ`PhKuK:t`fL\Ph5u:t\fNXPhAu9 H#XPTPhu9 H#TTPPhu9 tPLPh'(ua9H#LfEpxEfEbxEfEfxEfEoxEfEtxE`ǔa]]]]Ɉ]كHPEPu8u HHPEPu8HG DPEPu8H#DGt5@PEPu_8u@wG G uf.эT9v*:/u J9v:/t9v:/tvJ9v:/u9u$:/udT5P5,DRJ9v:/t)=~?+)CPV5Dve[^_ÐUWVS u}] %= u$} jEPEPVh! tD}u vE0RP%= BPQWV芋Ѝe[^_ÉUj@h E PuRUS ]h1]thPP6<hPh. xo=vƄ(vuHSPFWt"hP~yuϺЋ]ÐUWS]=`u h.S`t;u`f.эL 9v9/u I9v9/t9u9/u`f/\v9vy/t J9vz/u)Ѓ=~v?')ӍCPR5``D`e[_ÐUuÍvUuÍvUuÍvUu ÍvUu uUu uUuÍvUuÍvUu ÍvUu$ÍvUu(ÍvUu,ÍvUu u0Uu u4Uu8ÍvUu<ÍvU@ÉUDÉUuHÍvUuLÍvUu uPUu uTUuXÍvUu\ÍvUu`ÍvUudÍvUuhÍvUulÍvUupÍvUutÍvUuxÍvUu|ÍvUuÍvUuÍvUu uUu uUuÍvUuÍvUu uUu uUuÍvUuÍvUuÍvUuÍvUuÍvUuÍvUuÍvUuÍvUuÍvUuĢÍvUȢÉU̢ÉUu uТUu uԢU uu uآÐU uu uܢÐUÉUÉUdÉUÐUWVSLu }t(EȋFẼ ]ȍEP[ZFEЉكUH!ƒRQuƒutEEGEGЍe[^_ÉUS0]SYEE EPSj…uU؉Ћ]US0]SYEE EPSjg…uU؉Ћ]US ]SYEE$"]Ð̀ø1̀oZv̀rÐ[Zv̀rÐGZv̀rÐ3Zv̀rÐZv̀rÐ Zv̀rÐYv̀rÐYv̀rÐYv̀rÐYv̀rÐYv̀rÐYv]̀rÐYv[̀rÐkYvÙrÐWYvT̀rÐCYvQ̀rÐ/Yv0̀rÐYv/̀rÐYv̀rÐXv̀rÐXv̀rÐXv̀rÐXv̀rÐXv̀rÐXv̀rÐ{Xv̀rÐgXv̀rÐSXv̀rÐ?Xv̀rÐ+Xv̀rÐXv̀rÐXv̀rÐWv̀rÐWv̀rÐWv̀rÐWv̀rÐWv̀rÐWv|̀rÐwWv{̀rÐcWvỳrÐOWvv̀rÐ;Wvt̀rÐ'Wvj̀rÐWvìrÐVvh̀rÐVvb̀rÐVvàrÐVv_̀rÐVv]̀rÐVv\̀rÐVvZ̀rÐsVvÙrÐ_VvS̀rÐKVvQ̀rÐ7VvP̀rÐ#VvÒrÐVvÌrÐUv=̀rÐUv<̀rÐUv;̀rÐUv:̀rÐUv9̀rÐUv6̀rÐUv/̀rÐoUv)̀rÐ[Uv%̀rÐGUv$̀rÐ3Uv#̀rÐUv"̀rÐ Uv!̀rÐTv ̀rÐTv̀rÐTv̀rÐTv̀rÐTv̀rÐTv̀rÐTv̀rÐkTv̀rÐWTv̀rÐCTv̀rÐ/Tv̀rÐTv̀rÐTv ̀rÐSv ̀rÐSv ̀rÐSv ̀rÐSv̀rÐSv̀rÐSv̀rÐ{Sv̀rÐgSv̀rÐSSv̀rÐUWVS}u Cv B8tu)H[^_ÐUWVSFЁv R4%@ t#L4ȅuˉ<-u E E<+u>F}t}u0u>xt>Xu~E}u<0TUEEEE"[EE}uEEEEȉURPuujEuuuuEUEEUčG< wG<w7G<W;E}x,M9Mw$rU9UwU3UE3E u;E~ ECvEEeEUUUċEЋUUЉEEUEUv>FC}y/EE}uEE "#}u }t ]U]} tE}tFU EUe[^_ÐUWVS u >=uFIMEPu{Lƒt?}rI;MvFBD;t vG;ud;u-PR8DdH PAÃPS5dD}U:t:=tvB:t:=u} +EUDPwAtKEMAMt:=tBMAMt:=u=BvFBuȍe[^_ÍvUS]UBtvEPSJuЋ]ÐST$L$ 18uBu[ÐUVS]u LPSuEuuP"9t)ىȍe[^ÐUWVSlEE8vU:%E]zl$`M]uuu ~F}D|=uuE xwh@MD`uu] { wGtCu } GUD0uuM y wA]uuh`u NlQWuuu }guuu hgTuuh`E p {>>,$uuhU r uuu hpuuh`M quuh`] C ֙Duuh8} GjuuhE pCuuhU B љ^ Tuuh`] suuh`u F@CuuhSuu}  ~ U MPuuu hyuuu ]uuh`u 6iE Nju P Ph]S: uuSTuuu h^uuh.uuh`E H+H$I )5uuhaU BCu)θ$I2EE)ЍHU ZlJMruu%عduعu EnEmE+E JE)Ѓ}E9EU9MWKu(عduعu EnfEmZu>Vuuuh`}?guuuh`d؉֙uuhLS}uuu hQuuh`} t G+OU JA$I ș)Q&uuhaU ruuu M;uuu ]$uuh`u FldיRuuhLU BlPM y(tuuq(] { wuuC 4uuhwu ~$x^$uuh} G$ۃuuh>^Euuh`ؙPvEuPh`<؉љPXE 6uuu ]UEu9ut}UBUEM9GEe[^_USuu ]Sf uuS]ÉUSMU ]9sAtB9s AuЋ$ÐUSUE Åt@yutvfEfEUUEExEDžxDž|EEEuuEPƒtEЋ]UVSu=t V""v^ =t V"؍e[^ÐUSE8eX ;E{t s9{t s8{t s8{<t s<8{Dt CD-P8{Ht sH8 S8]ÐUWE ~ ( y) h7ƒtbЋ}UWVS]j t bljǃǀe[^_ÐUEt P7UWVSL]uZv u]EuuhgvE0T 8}ȹEEEE PhV[jEP?mEPEPEPU28 t" PA7 Ph50-~vExt+hphEv u7EPjjjEu hu h7vx uQju`tjjLu hgu h '7~ j Uru&~0 PEphU2T 8uIuu8u4UB 8u>EX j/SL$uh"> j/S0 juuhU2څtPRS 0 PShv50-$ u$ Ee[^_ÐUWSXUE]CE8IQREPEPjS8 …x!muuuu uEP8‰Ѝe[_ÐUWVSE E}t?Džhuu"v}5 Džhh2E}Y}h+EPu[BulE8/tLÉэ| 9s4CO9r$K/)PuSXQ3E"t_G Dždh1XE\Xt.X@EPhdT4UpEl^DžxEPXU|EE9pu 9lt;\r?ѥddX!X`td\t.@.@t X'EEPU2t/@tDž`U9Uu( u7ƃ|9u u7ƃux.ux t܋@%=.t͐F@PtFPEPXNt'`u`tU9Uh|9EY+UFxt@9}|h\+UP)߉TѥhhufEPhT+TLPSLxuK/F)ÃPSFPu*EtDžxE8u`uvk`ht u/}t u* X~/%`e[^_UWS]u4=t 5A/[эA Q-u !vS5e[_ÍvUVS] uU:tPB<:uي:u:tAB:u:u9uӀ:@t#:u :t::u9uB:@t[^ÉU jjuju EPuUWVS\]} }=u5uk P,=5oDž5FX h7,Dž;Dž}x jjju7Dž3hEhSb$jjjS9  , uP-Ӎ{ S2+ƃ SPx6R] ;E0jj2 EDž߉;rlhPuÃ8t ueEDžv(G u;~\NgvF;U)Ƌ)ÁSP u,  uÉvFu[88#uPG} tu E ~Džu78u &*Džj=hP@ƒ)Ð;t C<:uCB+jE@PRuPPl tg}0t u\ O)*u DžuC:CDž;tC<:u+)lj{:t:G+)9)Ƌ)Ë)‰)‰SPo u2 t uS ÉƋÉ+PS Wm'Ct u)ʍB] 9v%RQw u% KUu=6 S! V &'e[^_ÉUWVS(uuHE܃}E܉EIM]}jSWVV tt% u&K u&9E8u @ECHG믋UBE  uc&E8e[^_UVSu t@>t;]9u;|t ;:t;u-AC8tK;t;:u C<|u뷍v[^Uu uWÐU=t 5g/ÍvUWVS=uE =uNh}0u.g\MFv=t=u[P5K?Ã= 5_Ãt = 53.HBz!h}0+dDt`v R vtD4%@u;:t;#t =t.v|\u|\u  vڀ;t::t(:\t FB:ut:F݃P5=Ãu^=tU 5迚Ãt 5,aD4:|t::t AB:ujjPju PuBÍ@ wCe[^_ÐUWVSj=u u~Ã{ jd ǃu SEd€;: ;;^u/C;:;;?u BC;\C;:;0<w'tCIt ;/~;7~;:t ;B)K}t)PWǃt vE8؍e[^_ÐUWVSj=u uà jdBu d€;:tB;t=vCBNu')σGdPQtCd;:t;uB)Kt)PQtE؍e[^_ÐUSj#u uƒtx:0uB:xt:XuB  0< w 0'va<w WvA<w79}B뼋E]ÐUVSE ƀ8:tF>:u^FPu!^e[^ÐUSEP8t AЍR8u)ĉE $EPD$tAЍRu5SuW]ÉUSEP8t AЍR8u)ĉE $EPD$tAЍRu2Su]ÉUSEP8t AЍR8u)ĉE $EPD$tAЍRuSu%]U 5u u]ÉUhp%uu PuÍvUWVS] Dž|j/u)tExDž)xE8у)̉u S :uDž5эq}эyD7=v>jh&j} Vjl jh/j[vVSƄ./ W\SuEƄ5uxz8?wr$@U:t @U<uB)ĉ$dxD$RCPEP 5Sh>+PxuDž| t FhMP??|t e[^_ÐUVSuU ]u CFlCB 3ss$~Npe[^UVSuFltXPjV؃ue[^ÐUWVSEplEPt)E;F|^VWu@ރvu׍e[^_ÍvUWVS u}~pt Vv~p~>Flt9P}P@uA VC jJà u u G 7Cu $ E0Cu j3SM jCSMC Rswa E0spNFlC^lFpe[^_UVS]u SX[lt3V[ue[^ÍvUU@t= vVt"`tRhghÉUWVSDžpDžtDžlDžhDžj/umǃ=tF9t>5pt*~`t Vm V}ރup=} t E }tE8u 5pt%vFPut6uu8 jtF\FhDžl~PPv\etu ff;FdtJ~\ WÃ~`t F`PPRFhF`WSx$Thh~hT~`t F`PPRF`F\juhhhSLjSÃu jjP%`8#DžDž jPS$Nj9t SK~HFIFHjFLPP jFJPPfFJfFX$9v SFh@;~`t! F`PPRF`F\vƅDžDžjjPjhP!à u@w\8i\8 [\x= hvff=v CSPpDžtStpPh EPhP jSǃ tD CSPFh  uh50vtG CSPFhBxPR CSP~HFI jFJPPa jFLPPLfFX FhjAuFP.v~`>pDžtF\h hF\PtpjhFHPF` u hFhjjv\u hDžtftЪSv\Nƅ PSv\<u ffFd, F`PPRlt V^ (lt p5p} tE 0Ѝe[^_ÉUWVS,}E`tkEPEPw\t}u fEf;Gdt._\ SƋG`P$RSV4$ G`PPRG`G\Gh W e[^_ÉUjuLÉUWVS }ptECPWu( Stp S ދue[^_UWVSt} t E 8u vVUMEUEPV3 MEu]E C}UċB`HuuEPh Shؽ jr` t&hEp` ue ujÃunEԋU @Pg M U2Pu MME̋U@$2 M U2PuԽMMEPh NډЍe[^_ÉUWVSL}t-E8t%}~} tU :t}t M9u v^E UM$EEPuUUM MEEċUU}UB`HVSEPh EPhx jr` t&hEp` u] uǃunEԋM @P U M1PuYEME̋U$@$ M  U$2Pu$M M$EPh 螕Ѝe[^_ÉUWVS<}tE8t} t M 9uv:EPu5EUԋBHE؋BLE܋BPEBTEfEjjEPjhEPà u h vEEȍUȋM JMtAlKWVEPhx Rhؽ jS t/hEp`<C$Pu  CSP]ăEPhx >t S‰Ѝe[^_ÉUWVS}tE8t} t E 8uvEPu5EE]E CEUBMA`@WVRh Shؽ j q`  t[t&h+Ep`u a uÃuU܋EEPh ډЍe[^_ÉUWVS}tE8t} t E 8uvEPu5EE]E CEUBMA`@WVRh@ Shؽ j q` t&h?Ep`uk uÃu uHUEPh@ ڐЍe[^_ÉUWVS}tE8u vEPu5EUBMA`XWVRh EPhP j q` t&hTEp`"uw uuUE ʐЍe[^_ÉUE$j|u ng`@YRKD=6/(!.Ph?hÉUUt{w7tlw t^MtI8t5w t&ttÍvUS]=`u EPu9t` h`u h`vЋ]ÐUU hBPRu荕UWVS<}vEPu- u&URhп E }ỦUăt E@Pkƃ uPuE0E@$Gà uPuEEPhп r5luSuVutNjEċU V!$uAURhп E URhп UċE e[^_U=`u hx``ÐUWVS,}uhjWh@h`bsv} uhjXh@h`@sø]ԃWEPWRu hhu8 t])ƃFPuIPSэA)ƃ}w}E$pv uPh> uǃ hVS7t)ƅtWh& uhVSm7( uuh uuhVSC7 EƀEԍe[^_ÍvUVSu] uhhh@hquhhh@hqSV* Ph^ 50e[^ÍvUUTwÍvUu Ph^ 50螰UWVS }uhhh@h(+qoøWhhS6t)ƃFPH0HPSG8wu$<FPhnS FPGp.FPhnS FPGptPSvƃ؍e[^_ÍvUS]uhh+h@hp S Ph^ 50;]ÉUUwÐUWVS,Et:8t5IDž DžhS"0INSF=t 50v 50 )@PR0@P40f` =t 50'e[^_UVSu]t%M >t vB:uAtBKu[^ÐUu uÉUu uߍÉU j@u uU j@u uŏU j@u u襏UE hPPu-UE hPPuUVSu] SV;tKCPVBt2CPVtC PV0АЍe[^ÍvUVSu] SVt3CPVtCPVЉЍe[^ÍvUVSu] SVctCPVjЍvЍe[^ÍvUVSu] SVtKCPVt2CPVtCPV܆АЍe[^ÍvUVSu] SVctCPVЍvЍe[^ÍvUVSu] SVt3CPVtC PVЉЍe[^ÍvUVSu] SVtCPV"ЍvЍe[^ÍvUVSu] SVstCPV覅ЍvЍe[^ÍvUVSu] SV軉t3t%u#CPVt vЍe[^ÍvUVSu] SVtCPVЍvЍe[^ÍvUVSu] SVthx jCPVeЍvЍe[^ÍvUVSu] SV7thx jCPVeЍvЍe[^ÍvUu uÉUVSu] SVtCPVЍvЍe[^ÍvUu u藈ÉUVSu] jSV腈tjCPVjЍvЍe[^ÍvUVSu] SVt?tu.CPV9 CPVftЍe[^ÍvUVSu] SVt3CPVtC PVłЉЍe[^ÍvUu u_ÉUu u?ÉUVSu] SVtgt"wt Dt =CPV@CPVCPVt vЍe[^ÍvUVSu] SV7tgt"wt Dt =CPVCPVCPVt vЍe[^ÐUSP]E E؍EPEShx"uMEPEPS蒧 E]UWVS,]u EEEЃ=t h0 V+*Ẽu=s}u" u/1EЃEf{uu=t h-&8HPuu S ffC=t hiEE]ju uuuu EPuutà tg}u@jjSPEЋU u9=t h,`; ;1C}u uk uݚ=t hСve[^_USEUEUh-&u$u uuu uà tSEPjSR؋]Uh`"h`"uuuuu uÍvU huuuuu ufUu u#ÐUWVS8]}EW'ƃu Wh1u7 P.ÃEu V蠙 WhjTvg}EEPShSYuu jVS;ǃV@u}t S說G4f@fGe[^_ÐUhuu uÐUh-&uu uÐU uu u4ÉUh-&h`"h`"uÐUM ÍvUWUBfBoB<$Uh-&u$u uuuuu uÉU h-&uuuuu uUWVE0-&8u6)th 5d蛝ƒE pu҉ȍe^_ÍvUS]$ݝt hs=duW=t h%=duhhdE=t h:vS5d% h-&h u uuuuu uG1]ÉUWVS} Uut+jjjhSPR uVSVjWu|e[^_UWVS ]E;t' j ƃt$ jjFu4t V6 6UCvE8jjjJUSI U:xPS2y5d6 Y6ڝC}?t@ 71^Fjuuuu VE0E v4$Ee[^_ÐUWVSDž\A`!{ ts  8t `薏Ãu?7 S)dxfƅyjhuzVgIxjjxPdsDžhjDžlj jjzptnjjxRP{t.hdy pZ& uu hPSd \ `\e[^_ÍvU uu u/ÐUWVSuuVhU BWs RP=tI h蓕7[(=t hkuVhOe[^_ÐUVS=t h5unh j˹ƃu&=t hv=pujh`"脹pp5vFfFF\ ^SF|FLjh`"6FdPSg7=t hZvFe[^ÉUÉUVS=t hѓ5u"=t hJ=t hړv^dFdCjSPu SGe[^UVS=t h5u"=t h`]=t h>vsdCdFjVPu V)t FVPvЍe[^ÍvUS=t hu"=t h謒*=t h芒vuCdPU ]ÉUS=t hu"=t h01=t hvCdCduPU ]ÍvUÍvUÉUS]=t hh=tuFt x |8   8 @ CtC =t hA]ÐUWVSEu`ǃ/ h z6uu h@zw=t h~vtV6p(u.Vuu +4$uuu 3`5 tE [uurvVuu uƃtW jÃu1 h)(z=t hO0CE=t h Wƃ W-Ee[^_ÉUWVS }uuWu hy` jjjVj_à tEVWu *4$uWu S,4 څu6Wu h/yC$PЍe[^_ÉUWVS]uDžDDžPu]} u h# u ÃuE 0h@x-EPu DžP"EPSu h븉Pu S!vudjSœyFX ׉E؈YE䈅XuRS%y hh,uvSy hv S謔Et tPbDžTTPXPSuuuSy";uuS *uuSv h@3wfDDtR uDB\} t- } 7輶DB(w訶DG$DNPt S2vDt(Pu D DBRPe[^_ÐUWVSu ]EPuu h5Vuuƃ SuuÃtuhhupj`j謰PPhjyǃ9sPjQPBPj7PGP{ LJEPyTG AH $PB8DžT TPXSuAxJhjïPA4A,TQ0 RSPP-PFh htPt"t W P e[^_ÍvUÉUWVSu~TGXDžddPhPj7vP6wà u D8túF<;ds1t v@kdj蘮F@dF<hdPv@Yiu!V@FBFBFB FF XBjRPu XK=tcU GtJ`P\PRVt.dhPj`\6 vЍe[^_ÉUWVS] ExTwEGFjVPGSV-tN FVPÃEpnE0jƒu!hh_n$E C GPCWPjM1RȃPUBFCFCFC G8CGu;tMH9CuCE 9C u;E9Cu3uCPpuVPY{t CPPRVuu uUkC͈C{u UBEC@RjsP CPEPjsRtjju"vE C EC}Iw:Iw,uCP蝽VP荽EEC@uuu$u uuus t ve[^_UWVS<s߃=t hz}vuhjdjlÃu#=t h}=pujh`"(ppC,EEEEċE EjjC0PV4EPVCu h@g FVPC`Fxt VPjh`"s,V'G=t h|e[^_ÉUWVS\E EUփ}uhhhh>=t h{v}u&=t h(|v=t h|vFjVPE@0 Vp`E0PVR tCUUFURVPt(UP VPRtuVUu  FVP$F(FjVP Eġ$Eȡ(E̋EEԋUU؃}WVu WVEPEP]u"EJ EPRQu&EJ EPRQ u>EJ EPRQu}tEPVbv؍e[^_ÉUÍvUVSs=t hyu$=t h zv-=t hyvuVU e[^ÐUÍvUÉUÍvU=t h@y=u< \   p d =t h1yÐUWVSX]EEPp}]̋E EԋEEЍEPEPhjA-}ąG @9G hƃ wvt;Gt0t*WNMPRQE@f@UfBTuAfy:NMF PhSEXFE@f@UfBB VS*džMA0AEv? uulUЍe[^_ÉUSEt P؃u]ÍvUEjEPj hu .~ ÉUWVSL]0DžDžDžDžXPDžDžDžDžDž  u S ~PVMjMǂ(P  }ǃyDžUӍ0B B0r @ @fDŽ|0x j F9wuF u=, P7Dž ƃIu-DžuDž tuDž jPz}33EEEEEEEXU \M`EhUlHE PUTEAEAEA EAEAEjEPQEPUR%'XPMQ3% E̍URPẼxt MQPEEEEE(U ,M0E8U<M$E jUReEPMQ9&t(PEP+u,Dž W|Dž  E̍URPẼxt MQPE(U,9V;=9,sDž U< CS04=u=@j0 ;t h[tdUЃ8uM@j0V ;t h ZDžF;}$xPuÃtۅuDž;9Džf~i~ tDŽxGNGJQRjMD0xƒ y)p8t h`YDž;u1 E$E(EHEEx R;u E$E(EEE# jREPEPUR:}}t`t\f*2ЍU H(0}u E{ t s 膪v SwjEPVWSÃu=t h`Ze[^_ÐUWVS } u]}uhh!hhXuh h"hhXjEPVWt 9Xt7Pjj|ƒt6zrZ}tUBPuVWve[^_UVSu] jEPSVAt0}u E Q&SVpe[^ÐUWVS }}uhhbhhet99{u+E 9Cu#}t%{ ts uAt ދuȋE0؍e[^_ÐUS4]uhh}hhnUEECDEԋCHE؋CLEEEEE ESEPSR ]ÉUS4]uhhhh|EECDEԋCHE؋CLEESEPSR ]ÉUS4]uhhhhyEECDEԋCHE؋CLEESEPSR ]ÉUS4]uhhhhEECDEԋCHE؋CLEESEPSR ]ÉUS4]uhhhhEEEE E؃SEPSR ]ÉUS]uhhhhMjSm]US4]uhhhhEECDEԋCHE؋CLEESEPSR ]ÉUS4]uhh%hhEECDEԋCHE؋CLEEE EEESEPSR ]ÉUx HuEx xPÉUWVS ]uh+hUhh]E0E ‰Ct1D; P7K1Ƹ ‰CuЃ ve[^_ÐUWVS ExEE=t hSU=t hOTaCURS]EEȋEE̋EEЋEEԋEE؋EE܃EPEPtPSvt-vB;EuB;Ety9s9JvJuօt QVS S=t hRvU;t'=tc h9SCSEPR=t hS CSPu CSP ve[^_ÍvUWVS ;} }vEf{tcGC tL=t hRv !=t hbR 3vF;} |e[^_ÉUEU tt$~ ÐUVSu] SV/tkCPV/tRjCPVK4t7jC PV04tjCPV4ЉЍe[^ÍvUWVS u] >E;EEPV1tN}u At@Eh jSV ttEE]뗍v덉Ѝe[^_ÍvUu uOÐUVSu] jSV13tijCPV3tNCPV-t5jC PV2tjCPV2ЉЍe[^ÍvUWVS u] >E;EEPV/tN}u At@Eh jSV ttEE]뗍v덉Ѝe[^_ÍvUWVSu] Fj VPuWSV,CPVd,CPVG,*ʃCCA FVPǃC PVj*tn FVPEsVStK FVPE+EC FWVPC PV*tFuVPЍe[^_ÉUVSu] jSV0t%CPV)t sVS ‰Ѝe[^ÍvUVSu] SV+t3CPCPV.Ѝe[^ÐUWVS }u uhGjAhh;WuhTjBhh;:v?[~ J~,=GV N,ʍ(RWPÃڃFڃ~Fڃ~F ڃFڃFڃFEFڃUBڃMyt qqSgUBÃN$MF$ڃAڃyNqqS7?CGj WPÃ*FFF FFFEUCB=<MyuqjJnUBWMAPWRu$EppWa+UrPreN$MGjWPÃu3uW*F,PW#&u#svUCBMyy;ExupjImUBWMAPWRu$EppW`*UrPrdvVW&FPW)~u}FPW&ti~ucF PW&tOFPWn&t;FPWZ&t'FPWtF$PWnЍe[^_ÐUWVSL}E(U,EUEuhj`h h }0uhjah hl fGoEP55jhWrà t_E EȋEE̋EEЋEE؋EE܋U0UE$EE EċSuuEPh# EPh! jSƃCSPfGe[^_ÐUWVS ]u uhGhh huhhh hwVS#FPS#FPS# CSPǃF PS#ts CSPEvSVtP CSPE+EF CWSPF PSP#tCuSPЍe[^_ÐUVSu] uhGhh hauhhh h?Eh F jEPVrt'CPV"tEsVS e[^UVSu] uhGj=h`hAuhJj>h`hAvSV."t7CPV"t#CPV"tC PV!e[^UWVS,U]t -&tPfǃtd PPhj ]S SWƃu W]<&PWu uÉ4$<$5<؍ve[^_UWVS} Eh-&ÃtPWu<E$; hÃtPWu Ɖ$;u}te[^_ÐUtEPEPEPjjuGI …u#}tUE UEÐUWVS }uE uTtrHth<VjfËE u h+9VjSCSWUƃ?u S=E e[^_ÉUVSu] ;EEPV#t$}uuuSVЍe[^ÐUWVS u} GF GFG FV BDF@L^ t) tKvt%t/<WVWVWVWVu}=t hR@vt:v9u,WVPÃ=t hi@'@uɃ=t hC@e[^_ÍvUÉUS]=t h?vt-9u =t h?qRuՃj jedƒu =t h?5E BB=t hX?]ÐUWVSlfDž=uE@‹M Yt tmPƸBBVrSAAFËAA CAvGE X(EȃE̋CEЋ:Pq u htBщRp yRh#vfRff?v h)¡EȋỦE؉U܋9u?AEEЉE䍅@Dž PjjEP jjEP~ hME؍]܆?CJ9thh<JPpffy@hh~<)¡T ?Bv%h*h2<tr)J;Bu ;A");B}h8h;1jPLB);u; ;|&hShM;D@EЋHE؋EjjEP~heh:_E؋U܉EȉŰM Y(EȉẺEЉ}G@DWA(BHW+A(BL)؋4FV SP8PX~t vyQQj^Ftpvxhh9QVF v)FBVAQ F Ave[^_UW hj]ǣhj]  fPB?~}U @~ÉUVSU֡ fff9t fXf XCf9u[^ÍvUWVS EEEU9uqCM;Auf{t`U װыCE9ɋu8u6U;CuB;CM;C} ()$EE}?x, [^_UWVS }EP?vhxh7)Ѝ4\0u#j&jG\á\0fCvf{ WEPEPEPUr. uhha7fCYhhG7EfU EfCUEfCUUJxOffDSJyAf{u 5U CUCUSJxvDSJye[^_UEtf@ÐUS] tZhPuPt<j:hPtj0hPSIC0Ћ]ÐUWVS4h}hh hPf7t8#tԀ8+ PxuDžPP}IQuhv ku Bt$^hP,ǃuPhh3hVÃt 8tu$Phh506uW`Su }s_e[^_ÉUUE =0tPR0 PRrUEPhN uhN j t}tÍvUWS|}ˍEPhHQ jhD j  t }u}t} e[_US@]EE؋E PE܉USEUEPhO EPh|O j: t}tE̋UЉSЋ]ÐUS@]EE؋E PE܉USEUEPhO EPh|O j t}tE̋UЉSЋ]ÐUS0] EESEUEPhO EPh4O j` t }t vE܋USЋ]ÐUS0] EESEUEPhO EPh4O j t }t vE܋USЋ]ÐUuh jhD j HÉUEPhN uhP jz t}tÍvU$EPhO uhN j 6 t!}tUME HÐUS]t";t PPR S]ÍvUWVS</Åt @p=DuP=t h0=DuhT7 hD'/=t h0 5D.uZ j 9t@5D18M99Bt PPR889Btl8A P PR$jjph@ :u BRPvPEPj 1R!øDžPh un S#"q  8u>xu&PuhPu] S!u8u.t%uhP S#9t\7BW7A jjjqh@B :u BRPsDžB@Rj1P PPj1Rtjj[4e[^_UWVS ]u#=4tu6$4&u7=8t.u5$8MPQ@A6u7=<t.j5$<PMQvfCv t t u j jv[ƒt*BWVuuuu SR e[^_ÐUS@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=HtRVWH RVWt ЉЍe[^_ÐUWVS<}uh:jMh`h,} uhUjNh`h,pEpFFFU R UjRM q]SثuSEPÃEE=)uSvDFFUUӃFF EF9sVA9rMD;EvEuQWh)%V]SW0u EVS?0EUvE x,t+MQ@$BDEPA(BHMQM A,BLUB@DB@LEŨzt EPREče[^_ÐUÐUWVS]j(jLƃ*hjLǃF ~$ W $G(GV GFGFGGjPx.EȋEE̋E EЋEEԉ]؋EEjh8PSbEPS.u PPÉGPjKGt1S8PwCGFGF4$N ht V;xt t w#x Wxve[^_UVSXhP$t,E/\ÃPj9.ƒyv PRSVPe[^UÍvUVSu] uhhhhhLuhGhhhh+F$SPSR e[^ÉUWVS,}] uhhhhyuhhhhy;w$jssEP7~t vvFF PEPtF FGFG2EF PEPϸFFGFG We[^_ÍvUWVS\}_$uhhhhG;Cu CEEjssEP:EPEP+ƃtajEP*EEEjEPEPEPEP_+ƃtCGCG WEEP]S!+Ext SPve[^_ÉUVSuuhh;hh^$ st{t stv v$t~t vt V{te[^UWVS,]uȅuhhWhh8{$jhGPV輤SV誶tC PV薶u h@~  FVPFxt VPe[^_U=t h!=Lu2LB PB TB XC \D =t h!LÐUWVS,u EE]C}OEE"E܃jjEPVjStw u "8 u "U܉ Ev7E]C EHE؋UUa"E܃jjEPD7PjSw u 7"8 u -"U܉ EvEDE]CEHEԋUU!E܃jjEPU؍:D0PjSv u !8 u !U܉ EvEUDE]CEHEЋUUr!E܃jjEPU؍:EԍD0PjSv u ?!8 u 5!U܉ EvEEԋUD:EԍL0EHEt"‰ <w AJuUE]CEHE̋UU E܃jjEPU؍:EEЍD0PjSRu u 8 u w U܉E>EEEЋUDEe[^_ÐUWVS$uSVhMPG P~U hP PLUvhPؔt PUC~͋E3vj.VÃ)P5V%HCj@Sǃ)ށ~hSP51Ƅ.$sGPquqPhP%uI ,t-@U A Uu1UvvЍe[^_ÉUWVS [wvC 8tgvuC 4pu@tRE9svM ;CuEB9r}u CU FvGC <uG^Åu[e[^_ÉUWVS$uPVt10u(:uuPu /j.VÃ)P5VEuuCj@Smǃt[)ދEH9~ƃVSu /E $puGPqoЉЍe[^_ÉUWVS4h}5HMƃu3DžWv V?vvVhPt8#tɀ8+ P%^uDžPP}IQu5[ _u Ykt VTuvhPduP5h3hW.Ãt 8tu%P5h50KumsSu X4$te[^_Uu u?ÉU j0u u1U hu u"ÐUVSu] SVtCPV>ЍvЍe[^ÍvUVSu] SVt3CPVtC PVݬЉЍe[^ÍvUVSu] SVt$;uCPV葬tЍe[^ÉUVSu] SVt?CPVt&h\E jjCPC PVԛ АЍe[^ÍvUVSu] SV#t$;uCPVatЍe[^ÉUVSu] SVt3C0PVtC`PVЉЍe[^ÍvUVSu] SVst$;uCPVmtЍe[^ÐUWVS< 'Eăx tp  8t S Eău}uHPh"ujh#jƃu SB f S7 E EUUMAEЋA Eԃ j]ȍEPȃP jSuVSjÃu FVPLxw)u upr jEPCP]FSh VP F4$Pe[^_ÐU juuuuu uÍvUWVS8EE}u uuu u>à E ECuujhD jhD jSƃ uEU u9}vzSEPSRU܋E;EsEvM9v;}wWCURj SPCuujhD jhD jSƃ0x u9}wvSEPSR莭0臭U؉PU܉PUP CSPe[^_ÉUjuuu uÐUWVSLUE]u #Iw RSR S薜Ãu߬vǬ Su裬8uf虬Y uPuu uƃ u:m8t,c8 t"YEOPU؋PU܋@ Et38t )8 u(}t"UU؉PU܉PUP SÝe[^_ÐUjuuu uÐUWVS }Eu谫uEPuWuu wà }u vEPSjPRudu~ u 7a;F vu~u wD;FUJE PjRQ UJEPj RQ* EPPR jjuu SWj%E sb$bEe[^_ÐUWVS,EE}uw}  u 躞E;} PEEE XEPuijuCvEPu葜: uÃuةEUB@9Et踩 tW ti} t9u F 3Ɖ8u jEPjju u uuuuu.eu uuuuuà ts} t& E 0$9C U r9C@ @@@}tCjjSP7賨 訨)C}t uce[^_ÍvUVS];}85jS7ƃ؃tG Vu V ( SuSh@j'e[^ÐUWVSuDžxDžtDž|]SNk EPSjG=t h v=x芓pSj2xtl=xڻЃtfЃtتpPj<2|uP 5x^x=t hF vjEPj\;p}#vj|PU C;p|ᐃ=t h vjEPj} uZvEPuјt2uuuiE VuuWƃ}tu@jj0xEeUPj0tM qqPgU BtǁǁǁǁEǁǁǁjEP@3E3EEEEċEEjutӁèS/EPS>u认裤@v tPRt |Ph~fu;tAE<xBtJsxBB tǁʁfBfBBB Bxhv hh貣 解( Cxt+ x][tt tC[e[^_ÍvUWVSE E U$ UrDžDžXSf hPSj =t hx<t2=th|Px<u΃=tx =t hu 8<t2u2FP6džtDžDžVDžPDžT04jHPx 9gDžu }0BRP@DPDPRt2UP PRtuUudžzv BRPj63g ;tdž8u <4 Eġ$Eȡ(E̋EEԋUU؉0;8u4;< 0;8}"0+P((4 8+P((<+TBy (B@B(x ,yDž,Dž(( ,BRjxPP&eDž uz@jjjP6Cà y8tЅy8#Zv#O;;u8j(Pc (+HPP,+LBy PB@BP;8uT;< P;8~džvP;0uT;4 P;0%ѥ`x?B~ h@B000BB=?B0j@BjSP]SdEPSә}u}u džPEPuYEJ EPRQudždž}EPR輖bvuV~MEJ EPRQ t3Edž džx dž=t hx=t hjhPj=t |P:e[^_ÐUM EPAAUWVS8Ep]S^ EPSj=t hvx<t8v=th|Pvx<uuWU Ã=t hjEPj=t |P؍e[^_ÉUÍvUWVS8} Ep]S] EPSj=t hx<t8v=th|Pvx<u˃=tx =t hvt tF,F }$ utMQUFPuZ uhMQMQgFMAAC]{FssP8ZCCMH8@#MB@ UMB UM~=t hx=t hjEPj=t |P=t hvx=t h4jEPjL=t |Pxe[^_ÍvUWVS8Ep>]SY EPSj=t hZvx<t8=th|Px<uу~t Wvx zt PR VMUz tB 8t PfMvExt@8t PFMv u5M=t hjEPj=t |Pe[^_US0]S|X EPSju=t h=`u<`l^ dg htf lf p8k tg =t hjEPj`]ÉUU@=wz| z@B~ÐUu uÐUWVSu uQDždhdPVuV^djVpUv^tt.VDžTDžPDžXDždBDžT)DžPDžXDžd.~^df?ulDž` `P\PPTu … jXPPTu …vdVuÃf?u_8y( j\PPTu #vh9t"dPVuy8ډЍe[^_UVSu] uhGj@h hǺuh;jAh h誺vSV.tghCPV=tNCPVt:C PVt&hD jjCPCPV| uЍe[^ÐUÉUWEfEfExEI|MEpp EEE؉EEEEEEEPu xP}UhTx h0ÐUVS]=t &t 0h q hjuk 50}tMjjQu 1350yƃt 3Gve[^ÐUh h4+ÐUVS]=t ^t 0hq huk 54tMjju 1354ƃt 3Gve[^ÐUh h8cÐUVS]=t t 0hr huk 58tMh ju .358ƃt 3KFe[^ÐUh h<ÐUVS]=t t 0hds h(uk 5<%tMjHju 135<!ƃt 3Eve[^ÐUjhhNh^h jÍvUuhhNh^h`jÐUhhWh^hj_ÐUVS]uSEE$uu Shh`h^hV0H#Ee[^ÐUVS] uSEEPuuSuhhkh^h V0H#Ee[^ÐUVS] uSPEEPuuSuhhvh^h`VL0H#Ee[^ÐUWU BB (B(B(B(B(B (<$ÉUWVS }u =lu< h'Blu lpv EP5p5lh@V׉à }uU"uE 5lBp=wpp PAlz}u"tEe[^_ÉUuuuu uUuuuu u6Uuuuu YÍvUuhv ÍvUuhw ÍvUjh4w UVSuu jjjjhNà u% jjjjhNà t_EE@jURPSS u EBv Rh j$S؍e[^ÍvUS]tt PP S!A]UVS] EPu]tt1LE0E@t] C PEpE8t PPEЍe[^ÉUWVSlUEE} t.w tvt'ЃEE1ЃEE3E2ЃEЃEERU EPUt !vuEăxF]ă;u C PtvEtE:ECUrE"_vEċ@EEȉEt7w t tvt?jjuEP w@EKEăx  UU1vEvE@Eăx @Eċ@EEUȃϋMċA  ˆUȋjURUR1P uu E@y Eċ@ uuWuvuà u>E9FuuumHEċ@ uuuuà vu }uEă8t PPEuUB(πB(}tE؍e[^_ÉUVS]uM 9s :t B9r:uDtPuSu@.vB9s v:t B9r:uBB9rE;D@e[^UWVS]UM 9:tB9:u9BS9:tB9:u9BBE9CBE9C BE92S9sg:t B9s[:u9sRBS9sJ:t B9s@:u9s7BS9s/:t B9s%:u9sBS 9s:t B9s :u9r E7BBE9w(:BE9wC(s{$EvE[^_ÐUVS]uM 9s :t B9r:uDtWuSu&>5vB9s v: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([^ÉUu9UEPuEÍvUWVS<UDžDžDžDžu tw$uЃЃvЃЃR PBt S P腘titw t ZtQHh9v8~0hhSWn=V<t^PSu4u 8  V8IQ2ǃ t'蟛Dž0;r"F>Džjǃ u ;tޚt 謗uH(0}tUve[^_ÉUS]g6$_6]ÉUWVS u]}uO<} tPhSV*l9sMEPVu -u)<} tPhSVk9҃Ѝe[^_ÍvUWVSU EEPEPIQRhu%ƃ ujU])Pj:RǃtIG9sD)Pj:Wdƒt+);Er")SWuu jjhXjj8 tD]}IKEEE@EjPSRRu 8Ѝe[^_ÉUWVSu] t.UIJujEPRSS e[^_ÉUWVSL]} vR\Bvv u t-wtC_uY u,u(u$u hh`Hu,u(u$u uhhv*u,u(u$u uhhk hEPEPª0ƒEpU 2t} u.u(u$EPu tU,"JG} t} t 1E 0ui,uEU ;Bt vЍe[^_ÉUVSut<>t PP{t CPP CP`4$X)e[^ÐUWVSX] } EP t tWE0E@t} G PEpR\BvjhhN>E8t PPER\BvjhhWhEPjШ Ѝe[^_ÉUWVSlUEEE} t%w t,t"ЃE ЃEЃEЃEERU EPUt vuEăx]ă;u C PwvuEăx~EE@Eċ@EEċ@Dw ttDuuuuuuuWWuÃ0E@DEPEPEPÃuE@D4}t.E8t&uuuuuPujWu[Ã0EăxDuUtNuuuuuEp@ujWP"Ã$Ep@>&E@@E@DvtSEvUE@E" U"EȉEEĉƒxBEăx @vEċ@EEUċB Eȋ jEPEP2Q ÃGOU+t-qBt@t$E@D] BP&E@D6]ă BP?C@Eăx@uh`jU  E@DE9Euuu.Eċ@ uuuu &EăPu U vB@uX BPC}tU:tEăPRvEPEPEPuEăPBPEpu7up Eċ@ uuWuvuà tVuAE9Fuuu-Eċ@ uuuuà uUăzv}uEă8t PPEu#}uUB(πB(}tUE؍e[^_ÉUWVS ]uE 9s ::t B9r::utzu2}I)9uXu98>B9s v::t B9r::u'j EPBRuƒE8:u ;Utȍe[^_ÍvU }Puu>D@ÐUWSp];v=|t5SH$I,EPhy )8tE Eu,h}hu=,KEPhu5 ;5z}+u,=,t(=t=t| 5|*iv Sot) Q^SPG=t 5*|xe[_ÍvU=xt:xPExPE xP ExxÐUVS5tt*6 ss $ut=t 55|tR6{t sk{t sW{ t s C S7u|e[^ÐUWVS ]} эq@vCv Ro %@t#L4ȅuϋEE9C;,t0;t+v R!  tD4%@tʃVu Wu)9tJvC;,tv R  tD4%@u΋EE9_Ѝe[^_ÐUSM] UE8~ qvt-tVt&t7IЅuPSh,Sh!ЅuPh hvQ>]ÐUWVS,}E8 uE=,Dž hPPIQV}uP5 à tud<uaÃePuEuE PV9N u)} t"tu |u]}t"tuTu5}t!tu,u 6PPPTcvЍe[^_ÐUWVSutt!sVtuu VÃ{t CC El8cE8( j~EǸ|U|EhKEPd?EhEPG?Ety8 t8 uvE}? t? thu|t+EUװэA~1 XSUD SPue }DFV hEP>$cu-}t9E8 t 8,t8 uEE8 t8,t8 t}t E8e[^_UWVSL[v=v=u h 'vPP}IQuh5 t0 =, v uh>OhPNp+ua?#Q? t? uv8 t8 tꋵ> t/> t*> t%>t : t: t : t:u)󋽴? t? u8 t8 tꋕ: : j\@C$DG SPVGװэYDž| uK|\uKDž Dž~| D;P~!WPRSP%tQ5hVtэY DžP t=tuwtHv=5hPv 5Ѝe[^_ÐUht hÐUVS]=t .t 0h hruk 5tMjjYu 135ƃt 3ve[^ÐUh h3ÐUVS]=t ft 0h̤ huk 5tMjju 135ƃt 3ve[^ÐUh hkÐUVS]=t t 0h huk 5tMh ju .35ƃt 3Se[^ÐUh hÐUVS]=t t 0h\ huk 5-tMjju 135)ƃt 3ve[^ÐUjh@hhh`j蹒ÉUuh@hhhj茒ÐUh@hhhjcÐUUEEPuu uh@hhh R#0H#EÐUUEEPuuu uh@hhh`RБ0H#EÉUUEEPuuu uh@hhhR|0H#EÉUWVS }u = u< h u  v EP55 hV׉à }uU"uE 5 w=w P! z}u"tEe[^_ÉUuuuu ubUuuuu uUuuuu ÍvUuht ÍvUuh ÍvUjh UVS]u 9s:v;#t2v R tD4%@tC9rɸ;#t9uve[^US]t;t 3 S]ÉUS] EPeuftt8UEU:t 2&8t8]h}h;E8t 0=EЋ]UWVS,UEE} twt t$ЃEЃE ЃEЃE܋E؋RUЃ EPjUЉu/];u2h}hdubMЉEt.E" E0E@EԃvE| uHE uuWuS ƃ uOE9EvuSuAEUuЋUE)HPM܍D PuRQƃ uEPE0W'Ãf}uE8t 0fEu}tUEe[^_ÐUuv UEPuEÍvUWVS<UDžDžDžDžu tw$uЃЃvЃЃR Pt  P5kt2N"8vt.w tvtKvh9hS@=vHv80hhS@=vtPnu.ufhPm vu3u 8賹 V8IQ2 ǃ t#mDž|S0ǃ9omDž)HPDPWR ǃ u tmt iu}t Ee[^_ÉUS]t $]ÍvUEPu1Eǀ EGEǀUWVS,UEEu twt .t!'ЃEЃEEEЃEЃE؋EԋRŨ EPỦu)E8uEhP3,t0'M̉nEǀ0vEt*w t Rt;Iuuuuh9uu=;EvEEUu,EPEPPPuRǃ NvEǀEPEPUPPQSuR?ǃSP u:E)EǀEPEP}IQuuu t u|Eԃ9EuuuEUu{uuVuu2ǃ u(űEU)JRM؍TRuPQǃ u u}tUEM"e[^_US]t+ s;t 3 S]ÉUWVSX] } EPgt t_EU:t 2tuh}hR\BvjhhBE8t 0 EvR\Bvjhhh*EPj( E@ EpE@Ѝe[^_UWVS|U}  EE} twt t$ЃEЃE ЃEЃEERU EPUt u>u4h}hnulM9vEt E0E@EE@ tR|Bvt,wt@qul uuuuhh:uuuuuhhuuuuuhhh*EPEPBÃ0ZE@ RDBvuuuuEphhh*EPEPށÃ0t lttR`E0uBh`jsU M"UE;Pt EpE@E@ U-E|0 uHE}>+uj:NMQEtU9uE@ MM E)P%UBExM)MHVPREpI E@UDE@ z uuWuVà uSE9EuVu EMuUE)HPD PuRQxà u!vEPE0ƃ}uE8t 0 Eu}tUE؍e[^_ÐUWVS ] }Sutt]U9}$9s::u@B9}9r9tMwt qb}эY+E9uKu}98,j EPRƒ9]sE8:u9Uvte[^_ÐUWVS u]U{))‰~~hMEP"td8t_hMEP"FtDhMEP"Et)8t$EEj EPu赿ƒE8taV~ ~4}t.hEP7"t 8tK~}u}uE"e[^_UWU B505,hh uh, jR H%}UWVS =(uwhP/!x]߰I~= ߉Q(tP5((Ѝe[^_US]Utv]ÐUWVS =,uE ,jjj`jƃtu7hhhjC CC,@ ]S EPSj=t h]=H6/Sj8H`=HڻЃtfЃtت=LthPhhhkvPjLu 5HbH;}OvjLPC;|+v=LuhihhhjvDžPPuq yvq89uU rru`yQA A:C=t hvjEPj#v=t hƧvPu3jEPj迩FEF FU 2FRU rrPU FFjP ,333,EEEEEċEEjjF,P^HS(EPS=u~ u0 FL^HSPFDFLxt SP Bru 9,E u ,Eh h puuFHP3RvtAt#~t vfv VWt =e[^_ÐUWVS|E EE U$EUUzwHG,EDž|uhhOhhg ]Sx EPSjq=t hܤH<t8v=thLP薣vH<u˃=tH =t h认vu" EP uEUGW vE}u}u }t vEG UHÆVwDG,PVR tCEEFURVPt(UP VPRtuVUu  uG jVx!vuVd!=t hGH=t hpjEPj艥=t LP赡G }u~=t h輢H=t hjEPj=t LP*,}}=t h*H=t hSjEPjl=t LP蘠G  Eġ$Eȡ(EEED  VQEPV=8u tv9]uG PEP[: ufEJ EPRQuG G$uVUu  uG }tHEPV%50||t!EJ EPRQ v=t h莠vH=t h贠jEPj̢=t LPG e[^_ÐUVSu] uhhhhbuhhhhbVB B$CB(Ce[^ÐUWVS,]uhhhhGbs~H ]S EPSj=t hRvH<t8v=thLP vH<uuWU Ã=t h,jEPjD=t LPp؍e[^_ÉUÍvUWVS<]} EEąuhhhhavs ]S EPSj趠=t h!H<t8v=thLPڜvH<u˃=tH =t hvt tFtFh}$ uMċQFV FFV MĉQ vvuVFMFAFAF,1M@F,F<MF<F8UMF8}=t hvH=t h蟜jEPj踞=t LP=t hvH=t h jEPj8=t LPde[^_ÍvUWVS,Ep>uhhzhh@^vEp ]S EPSj话=t hvH<t8=thLPљH<uу~t>t 6耥VLzt FHPR~t vW VKu@=t h诚jEPjȜ=t LPe[^_UWVS,}uN ^ Mb)؍ȸEfESjEP荟t u+F #8tF F$zEEPEP6u}uWu 6Wu 6Nǃtu&F$6F 蚚F$F e[^_UWVS0u }EEPEP7SuH}uB]~_vSV7t )ƅ>%G$G )]~SV7tt)ƅEe[^_ÐUS0]S EPSjɚ=t h4=0u<0p 4< 8 < @L DD =t h%jEPj<0]ÉUU:wz~ z@B~ÐUWxE ppEBUEEExEE`EjEPu}UWxE ppEBEDž|Džx`UEEExEE`EjEPu}ÐUVS d=t h`u@j@jTÃu#=t h}dv{<uv K $S(C SC+C ujjC(PV+SV*C PV *4$EPC}ttE hREt'=4tvhVhz{hMEPƃ58tK($8+t8-tE,Phgj EPV脑8"uEjVhzE8tEVhEt'=4tvhVh y{ EhMEP7CU8tK( hMEPƃ.8tK( V@ChMEPƃ8tK( V C$hMEPC8tK(@hMEP{C8tK(hMEPPC trƃ}t?8tFuEt& hxvPVuˀ>tK(hMEPƃtEt hUxe[^_ÐU=lu lvltlÐU=ptj5pLplUUlÉUWVS,=ptj5pLKph}hM蜿ǃv;#;/t;tC;#;/t;u;#ts;tn@Cv R%@t#L4ȅu ;#t;uC 蛶P5ppKWhS}F We[^_UWVS,}ؾY󥤃=ptj5p]KJpE EPu= EShfj EP hREPuAƃu 8uFEu;멍v8t45p_JG<u VC낃 u >UЉЍe[^_ÉUVS=ptj5p_JIp=hu) hhtJEEEPEPEPEPhR5h uavUEu5pqI]EPEPEPEPuShR5hƃ$StBЍe[^ÐU=ptj5pYIHp hhphRhj \ t0=ptj5p Ipvj5pHpÐU EUBE EjjEPujR HÐUWVSu Et3ߍvCA9uuCEu[^_ÐU j juUu u#kÉUu ukÉUVSu] hdI jjSV2 trCPVtYC PVt@ hdI jjCPV tjCPCPV>kЍvЍe[^ÍvUVSu] jSCPV kt< hdI jjCPVn tCPVdЉЍe[^ÐUWVSu }j`j脬Ãu hq VC ƉC8PjOCu hxq> W ljC<PjC$u% hDqs$~E@X EECECCCPS 0CC{ C$C,C(C0C4CDCPCHCLC@CTCXe[^_UVS]u S J(z0v"B,)ȃvj0B(*vjEPStEЍe[^ÍvUSEX S BC ;Cv-S CjStS BC vE Ћ]ÉUWVS }Ep tZ^0u%~4tI Vt4(9vSu Vt] )^0)߅uЍe[^_ÐUWVS }Ep tVF+^ 9vSu v F F ] )߃;FuFjVt uЍe[^_ÐUWVS }w jjj6!Ѓt,t tvF +FF,+F()vȍe[^_ÉUVS]s S+U tGts;F );Fv1;Fs,F vF();V0};F,w;F$rF()V0ve[^UVSE] P ts-J ;Bw"ΉB v;Z0wB( ;J,w)Z0J([^ÉUSEX ss$ $]ÍvUSUZ {@t4jEPRvuC(;C,u}u C0ca{0{4uIs0Spt;}wu9sU:u_uumUtr^NVjËE u heveVjSm9s#}tSuUE]F9suU:u E 0?U vUЍe[^_ÉUWVS }] 9sSuUt ]F9rЍe[^_ÐU=tt t%EPj u Et‰USU Mt`"t(#t9~؋$ÍvUUt j tÍvUWVS ut>uDD>=t$4VUtC<uve[^_UWVSvxEt|xE=uW=t hx=uhhw=t hxv 5zwE=uW=t h=x=uhh]w=t hRxv 5wÃ} 6kEhjM)vEp 38Ep8u. E0zE}tx_u5FEp-&8u4 E0/Ã}t|P5Jyv ujE+ uhlu-&8tuM8u t9u v Qmve[^_USj Ãtz uCwZ$veu )C?vsiuhjLSvC v؋]ÐUWVS ]jv{t 3f 3iE}6UBHwƃ{ C$MAtE@tUBwMA{ExUB]J Mο38tu8EpXExP Uֿ38tu8Ep-&8‰Ee[^_ÐUS]t${t 3e 3i$]ÐUS]KRPjhD jhD jS H!؋]ÐU0EPu:t)EPEPt u/j‰ÐUVSu] DžttPxPV|tC Džt tPpPhhV%z xQyt(pupu !ySpCЍe[^ÍvUWVS E0[E`t;U28uuM`8uV[dM hA EpU Bt* M 1_U B vCBe[^_ÐU EPutuuu)yvUWVS]h"hEEURd;uyh;Cun`Ɖ8u}u} t%E } tUR`M }t u+j'E}c}t uje[^_ÉU EPutu u<‰ÉU EPutu u‰ÉUSTUE t"vtBXjEPCPR fC† PPE5Xj.EPCPR҅tbfC† PPEPhEPQ PBPPhEP0 x UЋ]ÐUWVS(}EEu >ƃ>/t_j.VKà @P3Ej.VKà @P U ЉE j BEhtPtiF jÃ/CEfCCPVjx|~dE@X j褾ÃCEfCCPVj| S茿u聿EvUBZd jj&EtPjjjP'E@ jgVÃSIU ɋEHPv VEe[^_UUt  tÍvUUt  tÍvUE HEPB:Aue<uazu[B %=uyuA %=t,zu/B %=uyuA %=u ABvÐUDžttPxPu{uxDyt t'vuvfz zvÐUVSu] uhGjMhh$G.uhjNhh$*.vSVMthCPCPVgNЍe[^ÍvUVSu] uhGj_hh4-uh8j`hh4-vjSV@Me[^ÐUVSu] uhGjphhBk-uhEjqhhBN-vSVtfC PVLtM{ w@C $XsVS&CPVHItCPV/IЍe[^ÍvUVSu] uhGhhhp,uhPhhhpw,SVKtjtt+=CPVHtCCPVH CPVK#vhhhhp+Ѝe[^ÍvUVSu] uhGhhh+uh[hhh+SVGt7CPVKt#{u jhC PCPVLve[^UVSu] uhGhhh +uhThhh*CC>u]SV7GtLCPV_Jt8CPVGt$C PVFtCPVFe[^UVSu] uhhhhhX*w7$8 0 (  Cse[^ÐUVSu] uhhhhh)tt Cse[^ÐUVS]u uhUh*hhx)uhhh+hhW)Ct t"6{u bVsVs vCF>w+$CFCCFCFC Fve[^ÐUWSe0 5eÃtp=t hehhdt=tf heTv=t hevڅuJ jÃP5gtt S0ډЍe[_ÐUVSu=t Vfvuu V)Ã=t Vv؍e[^ÍvUWVSL]E C8xu@DžDž2BIv V踤 tD4%@tT vGK{ S7uv Rj tD4%@uf%u4DžDž1Az ${ SU 9g KBG뢁t xiZ K?t@ DFЉADžyDž[Dž =q"P  DžN@tEE0tEEf8uHtEE8PtEE8HEE8{ S= t)[vGK{~ S  v R:%@t@#L4ȅu,$u DžDžuEE;5x 5F@KjVPŁ uu tu{ S߼t t vWR t^Džs;s-)3 Sxt׃ )K SjEE0臐H duEEDž;5xf5F@KjVP3u ty 1t> 0v(u!tkNS.P uOu{ Sںu zzti(tFFKBt5{ SStv(uEEƋ(tQKt4{ Sҹt9j(u)eH suEE;5x5F@KjVP}u tqv R tD4%@t$NS.P= u}u{ Sht tFv R蒛%@t@#L4ȅu tg%FKtJ{ S˷u4v R%@t@#L4ȅt)EE7KtJ{ SFu4v Ry%@t@#L4ȅt)v Dž0FՃM$uDžtK?@&@ ?@@tp.t[9uMDžK{~ S蹵u y59USP4pxtXuSVfxjPjPiщƒua@t EEStEEf<u(u tEEH EEU)ЍH=v Dž1PVS6tPV3EE8Mt#PP[EE!PPEE=t);tnufK @e[^_UWVS E @E E^uE@E huu舱tC+EEUEU :BU -t)- tE ]E HE 8]t =t9|SWy -댉E =tCUE9|=vVSyWV UEF~ˉ4#e[^_ÐUWVS }E藊EEEE HE] M9vE$gENt1N 0tIt*itntlnd또}UM)%9t9^}tQ}Ev}t } }35}t}t#'}Atl}a]}Nt }n]Q}(B})u ]E9Uv Rؓ tD4%u }_vE|}Xt}xu EbEv}t#E=wVtu#E=wUttEUE9&}}Et}eu}t}Pt}pu}t=}}t#E=wVtu'E=wUt]EKv}-t=}+n1E=wUtt9]ECO~ WĮu ;]K9]sWP?K9]rEM+E e[^_UWVS E@U9B0uI hǃtxEx0@4UD2@>Ny:HvEp46PUr0褣ǃt$>VWS̬Ex06UB4e[^_ÉUVS]u tM=\u=t VvVS&Ã=t V{؍e[^ÍvUVSu] C8xu@C uDC t, S藉fc CCfK {0t/C;C4| SNugBB"fc ߃{t;SvB9uBC.vCCSu h'輧ƃv{t s螟v QQCt#.>.u@PC@P%KN ;t 39{t s#t Se[^_ÍvUS]s;t 3ܞ SϞ]ÉUWVS@} EDžhWP =&j@VÃt\Cj.St)ljGh2Sut MIӋ}э\ 8t&ωҍJ8.tˋЍP9.tӁv5tu{M(vh5S\uSP8t:8t38.th5S(1Pv8.th5PPъtu PtÃu L ؍e[^_ÉUWVS}uu WxƃtAVwÃu!K8u tVw mà V؍e[^_ÐUVSu t&>t 3ʛ;u V趛e[^ÍvUWVS4E@@ h}u "|u= h@sU$@sMA9rE@v#    t u C; t; t; t; t;=tC; t ; t;=uC@Cv R'%@t#L4ȅuπ;=tʉ߾@Cv R%@t#L4ȅth@$thD$uFh@$]t WrmI hHC$?tq?t?,t C;t;,u;tChW$u ED h0W#u UDF߀;t~MDF~vhP:I 艢Extxt ‹@;B u\He[^_ÉUWVS,HuA hPjjjjuu j̇ƃ0 hPVPHƃ=vG=f.Dž9}HSIx D;v?G(>\9| P0u3F F qvF(^DžDž9SHP 9T ЉDT DT ֋;D;}u t  V$A49sB3C;wVSW2;rE(;v9V9}HDž9}D 4腕9|u# E Jv‰Ѝe[^_ÐUdÉUxJ=t 5u u5uvÉU}xJ=t 5}u u5 uvÉUdÉUu5<ÉU=u= hyddÐUmC t2  t&(t=tdd dUEtjPEP[tEÐUEE hhOÐUSj Ãt!@@ jPuhPj(؋]ÐUS]SB9Cu'BCP3tu vKE C]UVS]tF;t8} t%;ssv 4KF;sr 36 S*e[^ÍvUWVS u} ;^s%vW4芔u C;^r޸e[^_ÐUWVS,E] =tSPFbEEEE=Lt# P fEЉƉ$eẺÃvEEƀ>;EE>t)}u#}WEPEPVfu>t}t;t+}u%}WEPEPSuf]܃;t}t}t+}t%E;EuD}u E+EEԀ>t;c>u;t ]]*>t;u 6u+E >u;u EԉE؍v uYuNE؍e[^_ÐUWVSFЁv R~%@ t#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~ ECvEEeEUUUċEЋUUЉEEUEUv>FC}yEE >"#}u =}t ]U]} tE}tFU EUe[^_ÐUWVSFЁv Rv|%@ t#L4ȅuˉ<-u E E<+u>F}t}u0u>xt>Xu~E}u<0TUEEEE"[EE}uEEEEȉURPuuEuuuu)EUEEUčG< wG<w7G<W;E}x,M9Mw$rU9UwU3UE3E u;E~ ECvEEeEUUUċEЋUUЉEEUEUv>FC}y/EE}uEE;"#}u ;}t ]U]} tE}tFU EUe[^_ÐUS EPEPhhu u w<$`.UE ]vt]E]ÐUWVSEDž|DžxEEEEE-w&$DžxEE8u %EϋE80@XtDž|xux xEPEPh|EP!à  u UUu5|EP&u^SuEPEP$ vEE80t8 E䉅tDž`DždE0/~O9JdDFЉd`DFЉ`GEE0/~9~}m9EE0}u:0uEEE00tFσE䉅tUUEFЃ E0EE9};Gdd``C;]|ƉGdFd`F`vEEE0FЃ XEet Eu}u |EEE@E0+t -uEEE0FЃ 0uEE00tFEwgNЋ]CE0/~!9LFЍBE0/~9~E)؃ MN~EN}t] UUv} | NtaN Itit ntHh>EP#Mh+%EPr#uEEZh"EPN#tOE8(u3EPhEP uE EԋEȉE( EE EEDžx U)Uu}u}~dRP,$d$]Ѓ ~#͸&MЋ`RP,$d$]DžXl} }~?}EЋE '?)C9E6)]'E UЋU }|EE4']' )Et E ']Ѓ4~5"EEe~&Et A]ЍEЁhPE ̀&]ЋP`|w|v@EEPމt E4']tEj~Et A]Ѓ}tN]ЋC%k)~3~$E4~ Cp !E !EEE@u+EE3"XXdWut XXrOW\XB\ փ ЃtfЃtEPEPuu3`EjYT}xuuUډE}x}+u}E+M]K} 3 v6+Mu9~;]~]~)))]~4RTZTuP[YÃuV]~Wu[E}~u\SZ\~V\o[\}~uTO[T\uy\Pp @ TP[y~}Eԩ%=Pxu xjPZPTP[Wv(tlUԉ%=]Ѓ}t+dwk)9uzE%EEEuS}uM}t"MԁpMԁ EEEvtuuDE]ЃVuu(mUЃE@$&TPݝhl݅ht$?EUhlv}u Et$}u }ݝhp]k݅hEut ݅h tݝhhl$݅h tݝhhluEU]ЋC%d=unEЋUԉEUkPuuME]ЋC%=|v&}u }NEEpEP}dx݅hug}fE fEm}mE`u Dž``RP,$d$ݝhhluEU؍UB+dBuuME]ЃUԉ%`}9dux}fE fE݅hmUmMQ$$d$ݝhu}u t ݅hEt[ ݅hEt= uQ\QT}QPoQB؃}t.EP9EEM]Ѓ}u}u z," u)Q\QT QXPPP} tEU xtEЋUԉHL݅HEЍe[^_ÐUWVS} +] )ސUB‰M UBU9r[^_ÉUWVS=puyE EU4EtuEEE8G@u] wBU9U}x9sQSV$;uvVMM>)u}uPEA~;uv ЉGd} GU9sQSV;uv-];uv;]v'3Mt )ʸU!];u ;]tʃe[^_UWVS,}K^E׀=puPUx0u CM< 0t]M@uOE9uA΋UB@uH90uA90t@tщM@t A@uE9u uA@t A@uEt )؉E؉PtpurEA+t -uEA@t~>SA@t TCA@t~}tUؐ+]K~ G WGLEƒUܻ;uvEU׉N9t2 uM܉9Mܿ@ ǃ;uwE܉8+][UZ WsN)ËM 1EEE܃9~y)SutPE{ыU# t)E~CPutESuC]%v9}!)ى˃QuPE)]؃E܃M؋U ;J~ uK&vEU؋E ;PE@)9A t2t at)Z9u~$CPu }t3}t-U BME@UMb uJPk{}t E~WufEM#tM)ރSugBE @E؃}M A t~4t t'(Et"EM t+UUEx P葅EƒU܃9x!t> tK )ڃ9}$juAE؃E؋M ;A+}u%~M#tEM MUEE؋MEe[^_ÐST$L$ 18uBu[ÐUEPu u mÐU0Eu EPUÍvUÉUSM] t,rtJCvEQEPQR.AURQtEvЋ]USM] t,rtJCvEQEPQR.AURQtEvЋ]USM] t$rt&vASQPvASQ]ÉUSM] t$rt&vASQPvASQ]ÉUSM] t,rtJCvEQEPQR.AURQtEvЋ]USM] t,rtJCvEQEPQR.AURQtEvЋ]USM] t,rtJCvEQEPQR-AURQtEfЋ]USM] t,rtJCvEQEPQR-AURQtEfЋ]USM] t,rtJCvEQEPQR-AURQtEfЋ]USM] t,rtJCvEQEPQR-AURQtEfЋ]US ] EEPut EЋ]ÍvUS ] EEPut EЋ]ÍvUSM] t4rtVOv;EQEPQR3AURQt}Ћ]Uu uÐUWVS ]} Uփt )ƃ;u4CRWSPtltcCVhSP7;u7CRWSP t3t*CVhSP ;uvȍe[^_ÉUWVS}]E 0SWI;]v?uyt r<tFetdu(SjAƋE 0u h0SVW)t VnE  vЍe[^_ÉUE hPPu!ÍvUWVS}u ]VW+t={tv9t {u}tuWU uWS‰Ѝe[^_UWVS uE t*ru IMEPVE9EMAt rEtQjtiu)Qj?ËE u h5EuSV# SzlE  vЍe[^_ÉU ju uÍvUVS]u tSrvFEUBCRSPtlSEPSRZCURSt@CURSt'E¸M ډVЍe[^ÉUVS]u tSrvFEUBCRSPtlSEPSRZCURSt@CURSt'E¸M ډVЍe[^ÉUu uWÐUu uÐUu u/ÐUu uÐUEu0ÐUEÍvUEPu 0u>Uuu 0uvUEPuu uUVSu]=u jZvu Ph5t)uS5w5jjh wG u UA Ph^ 5u=t V V?uvU EPu uvUVSu] =u jvt Ph5tuS55j h=t Vv VtvU E Pu0=ÍvU u u0U EPu uÐUS] =u jt Ph5 t)uS55jjh E u? Ph^ 5]UE PuUS]=u j\s Ph5htu S55j ]ÐUS ]EPEPhu uJ{ $fCfCfCfCfqEfEfCUfBfCBfCE>@fCAfCffCfCfC!fCffCfCfCvtfKȋ]ÐUEU EUM@~MEE/vE)ʸEvEÐUSMU ]؃wY$A2BA=RE3 ‰QAAtI$ÍvUWVS t~ uJ~uFuhjC vÃttCtWv^t];tXj:SF$Ãt- jw_‰@~uFFP^t;ue[^UVSut> t^~t v~ t v `^t 3؋[$_u V_e[^ÐUWVS]} WSƃtf9v,~\u&C9v~\tVFP`MWV6Fz\uBZSR7Mj\S蕴ƒuԉe[^_ÐUS 0=,uc=t h(G =,uhh,i Ã=t h(^ v0u[ 5, Ãu@ jv]ÃP5,tt S^0 ډЋ]ÐUSj &]Ãth=4u!h}h>4tvC C  S]]ÍvUWVS ut\=4tS>uK~uF Ft"]~tFxt @FB=u h\Ã54hSx ;#t܃ j [Eu S$ jD[ǃu S\u\kvEx@GWSpu S\<$뵉= u.U$ 5 Su\v)$UP$@$$F$@e[^_UWVS ut>t > tvFF =~ V[v  $tD{Cxt py[ si[3_[$W[u VE[54d4e[^_UWVS E*}\E8Pu850j%jh850jjh8 50j'jh850jjh8 50j)jh@850jjhk8 50j&jhT8$ ,= t/ tuC0\tp[u=tVh}h:Eu - hXEuA ubcY  s4 uhu Ã8#tۅhPƃt}эQ)9u^RuS1uJ jDWEtD@uuu! uXE <}u uX uIbEe[^_ÉUS]t. 3lX{t sXX SKX]ÍvUWVS ] D EPhSXU EPhj0Ã]ƿ 8u M Ay޿  8u E @T޿ 8u U B/޿8M AvEPhjmÃE @;t>btb-t&vuU JM I TC;uƒEPhjU B $EPhjM AEPhjU BEPhjÃƿ>^8uM AA|E xt pU jTU BBޅtEvj,VËM QA4A@APqeVU Bޅuȍe[^_ÍvU 8*w,$k!@ ÐUPuhZ505ÍvUWVShSà  jDSEu S}uE0S`BUjS輩XMq S>BUB jS虩XMqSBUBjSvXMqSAUBB$RMAu 1TGE;ps5vjSXUB4SAMQF;qr΋Ee[^_ÐUVS]G0Hj*j hhh`PS t1hhh`F j hh2v u-+Phh`u huC 0e[^ÉUSHt% u*Pu huvc]UELÍvUEPÍvUUQu @ PUWVS uuEF;LUv S‹;EuABM;Au6zuz u zuztfrE8tIC;L|Q;L}C>v S‹9uztB;FuEvC;L|ˍvEe[^_ÐUWVSu UfBOv hPVuu xeƍF;EwV VÃ4$;] u%;Eu uR^tOyЍe[^_ÉUWVSu UfB;u w E ;Ev UBuUBUfB9O~t hPVu u xUƍF;E wK VÃ4$uuPSRW tOvЍe[^_ÉUWVS|}EHuA} hHu t+5,jjh*- 5,u u DžHu } ~ DžDžDžDž<Dž0]y"B 0h50 Dž;DB Dž; L 8t ;xu Dž#xu Dž Dž? =LtVPuWE PEPPL  $h C) tHtKj"jjhh` u h`@Ph@5,SDDž|=̣xA=Dt*Bt@9H=̣x @HjjPX̣y$+ 0h5̣yH 0h50\ ]DPE PrEEEEE E jEP5̣U 9t%8( 0hfDžvff)fft"PV5̣eÃ[ 0h50/ 6S F DžW WU9~6Ht5,jjh(Dž|Mf ff wHP f)ft"PV5̣JÃ$ 0h*E|tgHf+EfftGfw SP5̣~f)fuff;Hu  5,jjh3E' 5,;E~EPW=̣x=Du@9Hte=Dt@HjjP̣y%TD 0hP@I=Lt=@uK5̣y 0h[v@ju u5̣g;E  0hN50=@tIƅyDž|fDžzjxP5̣2@ju u5̣lV ;E t 0hgv@~ =L DžCjPCC=?B~k@B=̣yjhṇfDžfDžDžDžDžRjPjPgT 8jP-;u; ;}^++BBy B@B 0h~vu0Ht5,j jh#DžeDžPPjuW5̣ ,P 0h503Dž IHth5,Dž( ff;t,Hu  5,jjhIu? Phu)Hu  G5,jjhNIunU:PWUE PRuPHu  5,jjhc! 5,;E~EPW9~At tucHt55,jjh! 5,;E~EPW} =WH u;Bt/t5,jjh Dž~Hu%!=!u5,jjhL Hu  t!5,;E~EPW }tHtu Iu=PtdPuWu uP w$| 6C)~ mt V; L;DZ u#u =< Ѝe[^_ÐU=̣x9 5̣̣@DHÐUWVSu] e9UN=tv9tBu;Xt f^P }}DžE u&-&E uPP%t28Ѻ;Mqu2J؆PhV[hSCuу;M$uPu Ft t2FtuM V~u4~uJ~ u ~t?zu5z u/zu)zt$~uF %=tzuM }a}WE E C8hP2M Ѻ;MuPuLfP0p ÃtE8;Mv STu3u$0^E uX:u# u uuVA …u,%uu0I tЍe[^_ÉUWVS uhPu j эY9VPuExt^uhPuWǃx>D9w1ETWPRLFU%DЍe[^_ÐUWVS ]} uKS{uB%=t:u?Btu.v'WQ]!tэQ$vshV[VWqx9rЍe[^_ÐUÉUS] EtzuQjjjy1 P jjjy Pt%jjSxy P=t hD$uSuh hhh@EPà =t hD$H#UЋ]ÉUWVS,u] }ttt E~EPVju uXjEPVugtNut*yt!E؉E}ffEEuEPVSEPWSV&EԃuuutotfuWjVÃ}uuP;t'0E0;t SuSuBEԃ ue[^_UE UttRuPuGÐUWVS,u}Et t>} t]؃u VSvBރ>} u~t]؃u VSBBރ>uk~u ~u~ tR>uS~u ~t >u?~u9~u3~ t-~ t$ E vEq=t hD$v uWu Vh hhhEPķÃ0=t hD$H#Eԍe[^_ÍvUu7UWVSEE}E8t8эQMYt-;t(8tэ E;u݃UMT}G E_ttEuEE‹MT R5ƃuE ,vx}܋E8t">0W#M܃U2FMYtSE;tGv8t5FU܋}G}3Rv#UװM܃v;uFUFDE܋MAFA F }܉~YtKE|}E;t5vFM܋U BU}w 3QG?EE܃;u΋FUe[^_ÍvU@UM؋E EEUHA EЉAEEEuQÍvUWVSE },E} EȉUuM EBDžEtE XtN I;tD9}vt3设tG9|9uDF ;uv~DMA U ;B tAA UBAB A 8BDžEtE XEtE @ ;A u*;tv8Fj;uc^;tYU‹ffǂ8F;u)DŽ8uiuHu =e[^_ÍvUVS]u tY{uO j0u/@@@ @VSPCe[^UWVS<E}UBx}E]C0t|;M}Xɍ];Cu8E;X }v3":;u CE;X |U;Z tA;M|]ĈL+C]ċuF4u]ċExEC9E}NEvMA9}4uĊD.:D)~"4Uĉ4uĊT.ȊD)ȈD.ȈT)A9|EċE9E|E<[^_ÐUVSutCv=t : tB:u#u@u :u v:u@ut;u @[^ÉUh}hƒu EUWVSEƒtp@lEl``Dž\pX1 Ph PdtP͹-vutS襹 \G P;ÃuvXt%XXt}XtAEPhtlXpURhpu\Xp_EPhu Džp9URhjtu DžplUȋdEȍEEDpEЃHB xBExDž|lR^ lP\\`hP `6\UD@e[^_ÍvUWVSEƒtƒp@lElhhDžd& PuURPHURPSt}p98 PaUȉdEȍEE̾ DF W$uDdXpP xdBExDž|lR^d(vhhP h4dUD@e[^_ÍvUVSEƒpuu%jS*tVPED@e[^UVSEƒxu$jRStVPYED@e[^UWVSLEUEE } t$} }}:Džk DžlUfBfBDž@Ӄ ; @ +PSu3ƃ  \;p}t}u8ցPUUDžE@Dž@DžDžH;<v @ +PSu$ƃ { aC ;l S$$;tc}t } $6 hPSuLƃ  P;ցGָ@ +9PU}  hWSuGƃ  W;ָ@ +9UIPE9 t  ty2h @ +PSu9  t}UnE0ufU;r u^u!Eʉ=@ r v`rPVPSJ;t -u~;s E8uG}ָ@ +9B:uUUEU Eve[^_ÍvUWVS\EEEEE EHu#uUEu>t>.uEF>uE;uv~.uE h"ǃuE1} uƃ]v hWsjV @ =wm{uEЃuEԃuEPsuRW5 t&uUR[ uPuEf1E9E]vhWsjju @ =wi{uEЃuEԃuuVsuRWi t"uV uPuEf}dEEE}u=HxM}CI6EEĄ=v]hWsjU2u @ =wj{uEЃuEԃuuVsuRWa t"uV uPuEb}\8=\Utt uEGuEEIuEEEă8t }}}u I@]hWsjju @ =wi{uEЃuEԃuuVsuRW1 t"uVZ uPuEf}u0 WC}t EUE}t0U4v WE* WE}t Ue[^_UWVSuEƒHt@t Ht@EE@E EE@EE@ǃQWSt e[^_ÍvUWVS|EDžDžDžDž1MDžƒƒ@Eu&:uB%=t vHuyhRv}EEЋUԃ huMv:&\tX9}6v ȃG.GG.GFK;|̓0; cvfэf0G v8fэf(fҍf0GfЍf(ȃ0G.GFK;n2Wm  hj jPLƃ yh=vvEPj PV t^ UЋEԍE؋DžEPU'8 ډЍe[^_UHu  x}t HÉU%HÐUWVSu] EPcFx_Ut$z tB xu @9t uu jrSv u}Lt8ډЍe[^_ÐUWVS}u =p$5l$5@O9{utVs t OÅuك=@uOp$l$؍e[^_ÐUWVS ]ufHu uhfHtSu uhv hWjjjSu ujAÃ0~$K@tuhWP Ãv(Ht h膐vhDuuSPÃy0Ht hBvhFu fFfuuHt$fFPFPhFw,$Dh#hh hЍe[^_ÉUWVSuEEEEEHu uhvh>tv8.uG@8u9v x.uu, Vt uuuu P|E9r3uuuu jV\ …ChUEvu=HxIE=uuuu 3V …8=htt#uEUBuEEIuE܃;t }y}u-u I@u uuuu jVO …:}t Eh"}t h}t hvЍe[^_ÉUWVS<u] HuuhHt& uu؅u1vPVh` uEэy_Ox!<7.uWVPƄ/_Zщ߹ыL~h0SVhP uuuue[^_UWVS uI~ h7ah}PTǃFjPLEC;v R  tD4%@tʀ;VPޝ@Cv R%@ t#L4ȅuЀ;sF>t+v Rn tD4%@t@$hSh@ <$R@ 7vWhP WЍe[^_ÐUU hPRuUWVS u}}t}wy ~v=t VvE V~0tF@9F0t v0F0FF^ y v\}tdEPEPV Ãu E }} u^ WE uHE;}t} WE } u$v؃fF FFCFF\ˀ;}t}uvf^ E F~t tF؉Fv~ vFd=t VEe[^_ÐUWVSlu$](Huuh+vHt uuu uh־ v uf@ffUMA ЈAH ЈAa~ uE}}}}ja EPEPSWu @ H)ÃWEPWEPUfB}} MQEPSWu ǃWj WEPtWjRWjXEf@ E 9|}GWEP#WEPWjWEP}tuuW\}UfB )Ѝe[^_ÉUWVS U} Eu}:)к ~mCSj)v~SPVCCSj@Sj2UfB @fB )Ѝe[^_ÐUWVSDžtDžpDžlDžh=@u @=Du DHu Hf=u fTQfR5P@PL^ hmhPhOp5Džx=t}=sM> tH> t> uDžx"xt0DžxDžlF>t0=r>t$> t> t> tF>t> t > t> uh}h,|*;#8 t p t u F> t> t>> hVhh|&h tDžlN83 t p t u F> t> t>> hVhj h*_t5Džx=td=s>> t> uDžxxt0DžxF>t&=r€>t> t> tF>t > t> uDžl 8 t t t u F> t> t>> >t>@v RC%@ t#L4ȅ?C;uǍDžDžj5haj SZ>PPSV9 zzw"t@rrPt@ 󫋕zw"tPrrPtPt* v8 t h > t> u F> t> t>> >;F>tPPh[u8>;t3>x.v R8 vtD4%@txPW^XhH`Shm[FvF>t8>;t3>x.v R vtD4%@txPWthL`W hH`[hL`& hH`-L`hǀDH`L`Ah[PWjm=hǀTTT TxFvF>t5>;t0>x+v R tD4%@tŋxx&t/u) W<ƒSWjtx.yٿ C@vًhHDŽ`LDŽ`@hxh I8u, t uh<Pv|hP肳t~ t=Lh Т | =uAhS-u&j.SWt@PhjluQt H% hX thP He[^_UWVS ]Htu Sh`辰;; t; u C; t; t޿ 8uX CP@:ƒ Т H*Ph*L޿"8u;Huu uh H h8y޿8u H ޿( 8u Ho޿2 8u HJ޿< 8u H@%޿I8u H@;t$; t; tC;t; t; u;?e[^_ÍvUE†y %=H%vÉUSjEPJE3]!1Á؋]ÐUU=t9Puv8u츄ÐUVS]s{t s| Sou֍e[^ÍvUS];tEEj EPS`Ӯ8u}tE8u ]ÉUWVS|EDž|}UȉUEEEEEEEE}u} 3v}ExxxxUUBtt E}u}tC}t==x/U;u {t{tE;Cu E;CH;yԋE% =t= =t%= u}teEv}t }t}uF}u}uEu EPpEu}}u󥻀=u};E;tCt ;vE;CtCt {E;CtCt {}uE}u {tCE}u {tCE}uEPu UR- EPu uEP E}}tUztE@Etxu퐃;}tDž|}tEt EKEt EP-'=u}E;E;CtCt{u{E;CtCtmt{uc}u {tCE}u {tCEEPu uURE}tExtURUtzu퐃;D}tE}uM}t@}tEu|u EPLEU2E E}t uEEe[^_UWVSEEpt vEuEd U)PEE}:])}ЃtfЃtتEE@ Pu uUr;}}Q)E䉴 v4U䉄EPvU䉄vG;}|h\ huuM;}}()]䋔G;}| uE$-Ee[^_ÉUWVS4EEE)E&jjEPjjEP  uEЃjjEPujEP y$ uz u{ZEEԉE̋]Љ؃H;EwB jPƒtÍxMABQHCH;Ev uЍe[^_ÉUVSut1t ACAFQ QNمuэe[^ÉUWVSLuEEVt}&}EEEEFE܋E Et~M,E/j EPS袭É8u}tE8u 9ue[^UWVS ]}E=t hD$DWS2t#= hD$eSu hHhhh`EPk tt!Dtt`3WP]tjWSƃu2[u=t hD$ʘvUE1=t hD$蟘}t uke[^_UWVS$}EȉDžUU }t} } v}ufFfF f +PSuߚt  Dt\}t}t }uAщtBt‰EDž|Džx;~ +PSut  `t S$ڛ$̛tt}t}t } hWSuAt xH W诙t8tщt+9 ~ x+PPt}utd:U9tT 'Pu'$ j'Puh j%j t !pt&hj%tjtu turu tu`|u"񉍈}u󥃽HE PutrSPEPBuxt-~t!@txutxu |v~;s x|tjt&}u EPdy u28uu uuChEhe[^_ÐUWVSE}PEEPt ERu}& EPǃEMQtkEEB;us&XEȍv#9tF9rMωt}u ~ ;t}MERu}tuE9E}>uNx-D;D ~! \DT TL\ NyEM9M|‹UEE9E}MωBAME9|B We[^_ÐUWVSU2RU}}}ȹ}hÃt hsEu ShUBtYt ~tZuuEE]EEEuEEMMEOvuEEuEE]E SuvEPVy Su uuuuS tGttt uv}t" uuuuuS tG S3u(}u#ht#tUEve[^_U=H$uh}hcH$ 5H$ÐU=H$t 5H$CH$ÉUWVS< =H$u;h}hH$u| 5H$h P^Ã=;#tσhSAjthS)jǃtGt?t? t? uG9vuhWiǃtGSujt:?u0}U BEEEEPEPht5U BCB C tVSRw[uˋe[^_ÍvUWVS,U2Z}}GtttuSVuUE}ue[^_ÍvUWVSl] uE}UȉUj V13Et@EhV2hu}vu@t=8t88 t'8 t"}uEhPgt @t8uʍ}EEPEPjuTu1ut^tuVSvvu vE}t'EUBttE@Etxu퐋uEe[^_ÉUWVS\UERU}]ȃ=P$u hP$O=L$t 5L$aL$Ext xEPhL$}IQuh5P$ uL}uEEP5L$tCttv[t {uvEPhL$}IQuh5P$ u5u5L$@tCtt[t {uv}uhUEЍe[^_ÐUWVSEEHu t hEuh} OwfGE_ GEGEHtSuuh>v hujjjSuujÃ0~$K@tuhuP>Ã8Ht h2R uhvuuSumÃx;E~ FFFu fFfu:FEHt5fFPFPhFfFE_? ukEuE}w.E$h"hh he[^_UWVSuE @EEEEHutuhoh>tv8.uG@8u9v x.uu$ Vktu P@UE9r'u jV=…$hUEu=HxIE=tzu 3V…l8=htt#uEUBuEEIuE܃;t}t}u$u I@uu jVM…8}t Eh"}t h}t hЍe[^_ÉUWVS<u] HuduhHt؅u1PVhDuMэywgt(O<7.u!WVPPƄ/mvbщ߹ыLvh/ SVhhP  ue[^_ÐUEE@ jjU RujP u48 u *?vUWVS@}jjjƃtDjW]Sȶ Sh i V5t VU V EP/xa C p6]ąt*{ tC xuWsQtɉuփ uSu CЍe[^_UWVS}=h$E l$5@_ V6Wt&^;t:3Wt ;u} t!u v t { ƅu=@u/ h$l$e[^_ÐUWVSEEEEfEEEEEEE]ăjjSjjEP  u ƃjjSPjEP y+趂8 G VpE9߀{C tenCtKfC fEES`U{`tC`MLMEEPUBMLMfE]f}fEf9C tUU{f}MAMEEMEEPM!Шt)E8tEE}tMME}~EEEURwM"wt+uY j3tH=h$t h$=p$t h$vM h$v>#ohVRV5(hVRƃ2F> t> u F> t> th VRÃC V(((((hS@RÃtFCt@;t;; t,; t'()shSRÃt Ct;u(e[^ÐU j ju蚳UWVS u} Wjjh ju@v#Ft Sn Ph^WSwu؃Wj Ŋe[^_ÐUWVS< u }#E=tE@ H! LӽPSVu0td3v8t#&v0t Ph! Wv-+Wj u4t+t"V Ph4 W,vuP P$ PPt5PhD Wu lhPjjPu y#u0e Phb Wu$WPtWj uCe[^_U5,uÉU u huUWVSLuHurMEPu u .y(\t0誜 Phv Vt]#H LE# U}MƉMMȉMMʉM=tut! R44hVSt =t tVj;跇=t RVjjh E#@ DtVjjh áE#P TtVjjh 蛡E#X \tVjjh sE#` dtVjjh KE#h ltVjjh #E#p ttVjjh E#x |tVjjh ӠE# tVjjh 諠=t txWSjr Ph VruSjU Ph V~r uSj5 Ph V^ruSj Ph VAr =t  tVj 袅Vjj]SVj jS Vj@jSVhjS u#}u}u}uVj Fve[^_UWVS(uE }hRVURPrà x.uWj.WP`p3e[^_ÉUuhu usÐUWVS]uSuEEPu jrƃ x2щJt|.tB;E} f.Mȍe[^_US hPhu unà tuPo؋]ÍvUWVS ]} u{t)sWJu t {uׅte[^_ÍvUSEU ]xt;ut@/ xuRhah@)\t@)]ÐUSEU ]xt;ut@/ xuRhahT)tT)]ÐU juh+ÐU} u@juPÍvU juhÐUUjwrqw/"w w  w @v2w/tzw I(< tK w @t)I@tRhh)[)ÉUS]j(h)S0yShV[h))]ÉUWVS M Ӄș `dȉֺRQPhh)賄)e[^_ÉUWVSE$ LPC=wD1tuԀ;.u[C=wUtt83 C=wUttt0C4d;4rA~4` ~  ȋU[^_ÍvUWVS EEEE$ |PC=wD1t@t͐Cv R%@t#L4ȅu=wUt$uvETPЉUC=w D1t@tɐCv Rk%@t#L4ȅu=wUt$uHvETPЉUC=w D1tuЀ;.C=wUtt}@EC=wUttGM荄A EC=wUttUTЉUvCv R3%@t@#L4Ⱦ@uŐCv R%@t#L4ȅuE2wg$lU<M<U荼8M<U<+}E2w$8M E  U vCv R%@t@#L4Ⱦ@uŐCv Rߦ%@t#L4ȅuϋEe[^_UWVS4EEEEEEEEEыE\EPEPǃEPEPEE}u}u }M!v}u}u}M VE8-u E@EE8+u@E$U tABUE=w D1tűE8.us@E=wUttME U@E=wUttEM܍L ЉM@EU܍}ǀ@EEv R%@ t#L4ȅu9]rƾ@vEEv R袤%@ t#L4ȅt 9]r^9]U EPEՃ@vEEv R>%@ t#L4ȅu9]rƾ@vEEv R%@ t#L4ȅt 9]r9] EPPE׃@EEv R虣%@ t#L4ȅu9]rƾ@EEv RX%@ t#L4ȅt9]r9]s EPEփE UՈPM׈HUֈPEM AEAEAEAEAEA EA UQ A A AAЍe[^_ÉUWVSEAUAEAA A A ƒA A A ƒA A A w)E igEENyESېؿUMb)Éؿ<UUEEEyEW޻UԸMb)ƻ<UؙU܉EdșUȸQ)‹}}̃ EP.$越ǃu =v EP$菊ƃu5 EP$kÃu SVWuuEPuuuuEPuuuuh`u yP;=t W;5t V譱;t S虱E e[^_ÍvUWS]I9}v<.u@B9|;*utH~|.t@[_UEEEPS@l@0ppp pph`h)x)ÐUMU uuuu PPP:tv5PQ)RPÉUWVSl:E(U0}$} Džt$uP:uE4PE0Pjh*u,uuE4PE0PjhE4PE0PuDž},tE,8tU<u?E|.t/E4PE0Pjh5sDž E4PE0Pj Džu4u0u"ƃDžbE4PE0PV uPu Ph=OxSv E4PE0PSDž E4PE0Pj7P Dž}#E$d}$u4u0u jE4PE0Pu DžZ5U E4PE0PjhHDžE4PE0Pu Dž} E4PE0Pu,E Pu u DžE4PE0PjhHDžtE4PE0Pu,E Pu u DžBE4PE0PjhDžDžU )Ѓ R`ÃE E4PE0Pjhm DžSh9xS3tE4PE0PS) Dž E4PE0PjJ DžLE4PE0Pj hDž#Dž u _ÃE E4PE0Pjh Džu4u0SDžE4PE0PE4$E0Pjk DžmE4PE0Pj hDžDDž u ^ÃE E4PE0Pjh Džu4u0S6DžE4PE0PE4$E0Pj DžE4PE0PjhDžeDž u ]ÃE E4PE0Pjh Dž!u4u0SWDžE4PE0P6E4$E0Pj DžE4PE0Pj h0DžDž u ]ÃE E4PE0Pjh DžBu4u0SxDžE4PE0PWE4PE0Pjh Dž E4PE0Pj Dž E4PE0Pj hq }$p u \E  PhxSoE4PE0PS }$ u [E  PhxSoE4PE0PS Dž lE4PE0Pu K Dž  E 9U v ]4u0SVu DžT 4 E 9} + SVjhHDž 9} r xSu u$E4PE0PIQSo }$ u4u0u jj E4PE0P}0IQ  xSu :냃}$Y u YÃE u YE PSh8Sm E4PE0PS Dž E4PE0Pu w Dž E E4PE0PjhHF Dž E4PE0Pu  Džk FU E4PE0PjhH Dž, E4PE0Pu Dž } }$ u cXƃE u RXÃE u AXE $SVhSl E4PE0PSAE4PE0Pu,E Pu u DžB E4PE0PjhH Dž E4PE0Pu,E Pu ue }$u4u0u jg E4PE0P}0IQ E  E PhxS"kE4PE0PS DžnE Dž9E E @E u3U4R}0Wjh Dž Dž VhјxPojU4R}0WPxPd DžFb9U IE4PE0PjhKa}$` u VE U BU  BU $SPhxSi E4PE0PS DžhXPU )PRH~.E4PE0PjhUX Dž ;[}4WE0PIQV DžeE4PU0R)؃0~0P+XPDž(0;|}$ u TÃE E 0@E 8@E $TE $VSn PhxS=h E4PE0PS0Dž u9T u TE $ PhZxSgE4PE0PS Dž u SE ${ PhZxSjgE4PE0PS` Dž u DSE  PhxSgE4PE0PS  DžcE4PE0Pu,E Pu u Dž1hPU )PR$ H~.E4PE0PjhUDž ;}{E4PU0RIQV/DžE4PU0R)؃0~0P+PDžH0;|!E4PE0PjhDžE4PE0Pu,E Pu uN Dž+u 9؅yCE ؅yC)tM S Ph^xWdE4PE0PW Dž6C9s-Ph=xSdE4PE0PSy Dž9U DžvxhV$dƋ+} ~9}#vE PhGVcƃC9|E4PU0Rx)PRDž-bU4RE0PjhKDž U4RE0Pj0x)@P DžxhMV7cƻ9}XFE u3=v P͉ tD4%t E .C9|E4PU0Rx)PRDžx"} 9U ]E0+e[^_ÍvUWVS ]} ހ;tNtWS$%u )9v5H2;t'v;\u C;tv;.tC;uC;u)e[^_UWVS ]}]EEUuWjhA;] sa3D;E wUCN~MPhPtuWjhRx=uWjSx*CNuWjhAdx +E"IEEUve[^_UWVSU}uEEEuPE0E PRJE W6[Ãt?t <u%t |.tCU;wI.CuE8v0@@EUuVS33HUUEe[^_ÍvUWVS u} ];3vhThhh% 7)3e[^_UWVS ] u};vG#Su6 WVSe[^_ÐUWVS MU }uEE}uB9r4VWjh9DrxH?EE0)KxVWjh2xKyv‰Ѝe[^_UWVS ]} u]~FvWSIx= Y}t!A9w*ÍA 9w!AS Ѝ\ N9w+EuF(e[^_ÉUWVS]}E ؉Ej0j^W{EGK9fC fGˍI;MfC fG ˾K;MfC fDw F~ھf|w u D&Dw PVuSx@\ÉF~;]uG$G(G,_E(Ѝe[^_ÉUWVS u} ];~$t~$F(DF,u^(vD~ 9w;^(}F(DF,+F(PWv6dF,F,^( huPv6F 5V,V,B;FfR ‹EfV,JN,B;FRfA ЋUfF,u$ǂfǂ ǂN,A;FA A A ‹EV,JN,B;FwYBfQ ‹Ef V,V,  ;Fw)EN,F(#{CvkC(Ѝe[^_ÐUWVSu} EFUFMFm E؃ˆEك Ã? ˀ??Ӂv R| tD4%t(Ӂv R t4ú=wVtà PƋE@EӁv Rvt4=wVttFËu E Pz ljEE@EtE9EvEe[^_ÐUWVS}] UUu *Uv~9}SB 0v7CB 0v7u F9}.BF9|E[^_ÐUWVSE E<EU蹉EU܋uv)ƋMȺU丫غ׹%I$E؉U܉)EܻEt&EPE PjWu4Cvt$EPE PjDW Cv}t&EPE PjHuCvt$EPE PjMV`Cv}u}u/u+}u%u!EPE PjSuxzC~lutbÀuPv Scy tD4%t&v S!L t4FuE +UЍe[^_ÉUWVS }EEEG$À4v Sx tD4%wUtttCE}v SMx tD4%t$v S t4ÍCwv$)ƍv4v4v4uEEG}~ }uuE U8e[^_UWVSL}uE Puh_[EPPÍ@;vEP7fv)e[^_ÐUSEtD Sx+ B+ ; }v;| ;B~A; |[UVSu=t Vpv^ =t VXq؍e[^ÐUWS UэAU؉EESEME؉EE=t 5,5pEP5,:fK =t 5,p؍e[_ÐUuuu u1vÍvUuuuu uvUWVS } ]uu6P7Ӈuhhj VuPRe[^_ÍvUE;Es EE vÉUWVS }u ;s#u67St PUC;r݃ 7?e[^_ÍvUE 0E0ÐUVSu] sv苈…u36v‰Ѝe[^ÍvUSE] jPRPS$t3j54-58-Sh uj3i]ÍvUSlEPho9/E;,-  h(-3 h -.5$ -J5Ãh}hoeLh 6j h0-h$-Ah`8jh4-h8-+ b 5LLht3j 50-5$-, =,-u h8E,- h -c4$ -3à h(-2ڍvЋ]ÐUWVS };50-s\vj 50-5$-VLPWu){tsCPPj WS OvF;50-rj h0-h$-We[^_ÐUEpPÐUWVS u} 9}<t 4MC9| 69e[^_ÍvUÍvUWS,] uC[uhhjt6 jhhS蚸 =jSUhP: ƒuA ߏDž$hhjR PP҉t u=;t PfDžhh@j$vh3jspvjh4-h8-PEht3j54-58-e[_ÉUS]3+{t.{ts sSC;t P蜎]ÍvUh -1h 6j h0-h$-B h`8jh4-h8-)$ -0ÍvUWVS}t8?t.v4u ttFv<u׍v ht3j54-58-EP tRxtLU U؋MM܃ h3jp pEP_ ƒ t@ MBHDUD9t uu uhhj Me[^_ÐUWVS :/E h -/u Åt ht3j 50-5$-EP t PUxEE8tvGU<u9}Nv EPu uuE4D tURuuЉËU#DuF9| h -.K.U؍e[^_UWVS ]}t%./#=T-u" hT-Mpth=EPEPIQSu 5T-n th>vuh`-um/Eƀ`-u}E`-j u thuCP-D2D2 2uM=E VP-0EP.5L-H-; t; u C; t; t@-D-11hSrÃtICtC;t>; t,; t'2shS7ÃtCt;uŐ@-e[^_ÐU u huU uhE0<$ÉUS]Eph0t]ÉUS]Urh0;$t ]ÐUVSu];s~s~Vu 33)se[^ÍvU EPu uÐUWVSl ]u tShj#ك̥t+u ȥDž jjh=jP)ǃ  P< Sh(#W"+PPVe@))ÉDžWVDž jPW6-<$0ve[^_U=ĥt 5ĥ0ĥT2ÉUVSp=ĥu?jjjU-ĥjjPs-=ĥv=T2EjEjhhu]S)9 jjV5ĥ,T2uSjhh S8 jjV5ĥ,T2u 5ĥ/ĥe[^ÐUEUtP2E L2tuȥL2tX2U5ĥO/ĥP2T2ÍvUU̥t̥ÐUu uÐUWVS ]u EFt7эyCt:UuWVSPNuK؍e[^_ÐUWVSuFt)vM At~9tAuFuڻ[^_ÐUWVS ]u vCv R6 t4Fv R6t49tv RT6 t4Vv R,6 t4)vЍe[^_ÉUWVS u]} v R5Et4UGv R5vt49EtSv R5 t4Wv RW5 t4)ÉCtNFe[^_ÐUWVS } ]t.E48VuUt~E<0KuӺЍe[^_UVS=t h`2q!Du2D{5D=t h`2x! hqÃ=t h`2 ;5DtL=t h`2!v Sr=t h`2 vDCDD{6CUT@C=t h`2 ve[^SD$L$ 8t@u1[ÐUS];yv A~[UWVS@3; H3}.CELPpLA;M|߹;K}6CE LPpLA;M|׃[^_ÍvUWVS#ut9$t)>:u~/t>/tj.Vtuv>:uF>/`Džddd҉к=SdxS]hdTSP^VSF^j.VGt Dž`x`tjV|'jV(ÃEPS#xE%=t S(HhhPS(lj$e(a| PZ\$FX $2U  $U B $ U B $U B d:2zzrzhzr[z Qz 2G\;Bt4XU ;Jt+dhE p@@M Q \X9 E ;x}[ d U DdG;z|ۿ;z},dU :Ad:;B}vG;z|ԿM ;y}vE L dLddFBd~wFBd~x M ;A ~ >GE ;x|U ;z } R dM 9LdG9|E Ƅ8L;8}JU L dLddFdGM ;9|E ;xM L\u B dB Adz GE ;x|;x}EM LXu BdBAdzGE ;x|Ѝe[^_ÉUMt@ƒ0 v5,t0-t++t&Atƒ0 v,t -t+uߍvUVS]ut 0 v4TPи9!C 0 v߸;U| E ؉[^US] hjEPutsU)9:uVAj;jEPQKt;E@9:u&AjƒtiB<.u]j0 wIhmjCPRƒt$8/uBCPR8ƒC щȋ]UWVS]M EEu'dȉיuȉיuEUt] tvtkuV)E}w~;mQE`}W)É]?v]UB H9}6EE<r;@)EC9|݋u^ ؉֙Z} IQ)ƍ)[\gfffؙ)ЍȅyÉyFÍ6)CؙӅyuF)y};_}&EEW <Q;} CU;Z|)E쐋EuFE[^_UWVS]E]}t-IMˁvEEM S+EEc; EPSÃ;u h|ƃt U ;a] S}É+MM8t-8,t(8;t#EPSà E-E;,t ;;wCEPSÃ|C<,lEPSzO8] CCE؉LǃPE@TE؉`ǃdǃhރ߁EEvuEPuuuEPuu 9~GGGEu'dEәuEәu)EE}Q;LGL؉Eovu ;^}%E U PtC;Z|EM ;Y}!u PuC;^|E ;XvM  Pu \u*tXu E+ED E)M Du LڃPtUCE ;X|E؋U LǂPǂTE؉`ǂdE@h9EM AAE؉LǁPǁTE@] C }t uD0C E x vI] LuuS$]C}tuuSq$UvЍe[^_ÐUS ]Sh 3tjSh ]ÍvU=rx6rh@3jt h@3#ÐU=t h 3=t h 3)ÉUWS h~iÃu Tv=r~PhqcIrtShqN;u?@3D3::h hNNCvh@3St.;:tjh@3Srt h@3:e[_ÐU=t h 3=t h 3ÉUWVS }EE@3=D3t;P3}*Pt@B;V}Pu+$;V}Ev;D|B;V|LWV3EP-SW CLG(e[^_ÍvUS] =t h 3 Sju=t h 3 ؋]ÐUVSu= h(3F =y2hhh y h(3d h(3K 5 Ãu, j,r]Ãt^S5  h 3 SjV"$ 3 h rjV re[^ÍvUVSu ]=t h$3C =rur h R=t h$3V vSh RVu5t C(C(lme[^ÉUVSu= h,3 =y.hh y h,3 v h,3 5q Ãu, j,[Ãt9S5y SjVh rjV re[^US] Sju؋]U h ru ub rÍvUWVS}EJE׍L;L;LuzEu{ C;H~E}tP~LD@9Lu;H@9Pu*EJ~"D@9LuH@9Pt֋sJ]U QșщEE )y MQxQ~QEQșыuF<ȉәFUE֙EPy BUBEmEәMM}yIM䐋E+E<<Eu'dE֙uE֙uE;E-lUB]Z @uF;@|MA)]@Au;4}E@UB B M J$[^_ÐUur$U@u EPuPÐUSUM  91ȋ$ÐUVS] u;x Й Йѐ)Que[^ÉUMU A+Bu'A+BuA +B uA+BuA+Bu+vÉUWVSĀE} ujNDyMÍv~)E뮉E랃}E;E@3} \Yt RsNvP;Euy{OxsxvP;EtOELx+LEMQuEPU EPEP uE;EvOyNqJ|EE;E|9u#EEuuEPU UMȍe[^_ÉUWVS} ~G EPuu W} yG E@3} \YtE REpNU싄P;G ZKE M䐍MP;G t]LU+L G EPuu W}u5M싄LU+L) G KyNUe[^_US=t h 3jh\YuÃ=t h 3v؋]ÐUE@ PU E@ jhp[PKÐU E@ u hp[P*UVS@3@3Jx E֍L;L|A Jy[^U EP‹E)US EPEEE${U)ƒ;U}*]vE S\U)ƒ;U|9Ut2EH/;U~']M S0U)ƒ;U9UtE@E]Uh`ruÍvUVSU] zva B@z v avB@ BlP2rrr QVh@S(؍e[^ÐU E Pu5,<ÐUWVS } uuu#EK5¸t$fZ fBEBz$r,EB(EB Ѓ [^_ÐUWS E] EUIMJUE=t S 9C8xu@EPS/ǃ=t S9e[_ÐUVSu =t V8vF8xu@VuÃ=t V-9؍e[^ÐU EPu u跩ÐUWVS u =t u8UB8xu@EENUZuF RZt.E9E=t uz8UZE89vSj W!1t&@)U)ZSWuYE)U)ZSWuX])IE=t u7Ee[^_ÐUjjuuu u]ÐUS]uSuu uP ~ ;.u]ÍvUuuuu uzUS ]u EPtE)ډЋ]ÍvUVSM.AtgvA.tS.t .tu!Bv=Bv5Bо w5&BvBvBЃ v -uЉڅu[^ÐUE8*ux.u xu  v PCÐUVSM9u WvAt4B߻]w?u.t( \uAu̻.u QÍv؍e[^ÍvUUBt!]w BuÉUu uÐUu EPeÍvUu*UuÐUUR UMQ Q Q ÉUM UfQÉUMU BBJÐUWVS }] EE7G$;] t ;].C;EEG PVtC;E\ EPSC;E\CfE ȉfЊCU(fҍfC f E(v;]s/vECN#7G;] u ;]s .C;]r( C+E e[^_ÐUWVS uU UUU UBUF1Sht}-<F7Sh-u)tE9EUBUE+E itjUUEU9UsVUBUF]+]Ku5E9Es-UtE9EsUBUE+E =~1(Ѝe[^_ÉUWVS EE}uEEE9E 9F%t =t8vD;;Esk3;E scEDEGSVWRރV;u s;}y +E@E؃? Ћu;ur;u sEE +E9E|C(!FX}y+uu쐋Ee[^_ÐUWVSEƋ} UUEEE}t.UUEtUU:t EU:uUUTt3u܉Ɖtq}tkuuuV$ƒx#G;EGG}t*E9Es+E=?E8Eu>D;;Es5CPVWdPt3|;Y;}v!}t U(+E e[^_ÉUShPuu udà t$uuPH ؋]U hPuOt uuuu P‰ÐUVSu] 9s/@t'сt t-v9s @uۉ9v( @吉[^ÐUE":w$`vÐUE!]UUBуwJ ÐUWVS EEU9EEU:}7G%t =thzUBU9t-UBU PqG$c9uTNuՋE8u=?uE+E \U:u(2? Ћ} s(*v7GXEE9E,Ge[^_UEM UttRQ"RQ/ÉUWVS uEE}EFtxvShL:ƒt5B-L=wh}u4EE}~$7.u1}t+}t7GEFu}~ vUE Ѝe[^_ÐUWVS:uF>:t]EuEFSEWhW,uSEhhht!+E E:uWuȃ}u}#UԉUoEԃM9UԈB BUE8.]ԃu9uuF}t*EԃM9uԈFFuԐ}t2]+]п9vM))uЊ22G9~EEԺM9Mu+!E؋u E܉FEFEF Ѝe[^_ÐUWVryfjhrEPjre^_ÐUEPuH EÐUWVS,]EjEPS8"9]EЉt؋]t.u }ECBv8v R . vtD4%@U}t}}t$}tJw`}wWElwG}w>}w5UE Bw}w}w }v1EU ЋU ƃ} tU e[^_USEt< Sx+ B+ ; }v;| ;B~A; |[US]jEP Et]ÐUSMt(]U vBCuItvCIuvIuE[ÐUWVS}uFӁv R=,%@vt@#L4ȅuȀ-u E E+uFtu0u>xt>Xu ^u 0|?EEG"щEC< wC<w7 C<wLW9}@}xU9Uw 9Uu9~EvEEljEEF땃}yE7"}u $ }t]} tE}tFU Ee[^_ÐUVS] =t S$vC8xu@MڋCHCy ;C| tRQvƃ=t S%e[^ÐUSE] MUtt!RQS-#vRQSuv/]ÍvUVSUu ]BPBPBPPhSV@q 9rvЍe[^ÍvUWVSlEEEE}8U)щʉ) \G~EE|u}u}E2vE*v}t!}tE9E~ UMUMEG~}t}tM9M~ EUEU}t}H E]v}t";}|EE9};}:Ct:Cu_}uY}t}uM}uDE)¸.)PSE P)э\ "thSÃGK}tEEu:C؍U)Ѝ@1;EvEPu &U Ѝe[^_UVSu] CCC t {uu SuuC8xu@+S;S| S u>vKB;St C t u SuvЍe[^ÐUEfEfEEEEExEDžxDž|EEEEPu EP"UÐU uu uÐUS$]U u ]vEP5xSRtP,}uVE)؋]ÐUVS]uju SEPu tvutCt@0utEe[^UWVS } ujuEPÃut=ƒt:uIRErP?#} 4I=ƒt8urIuRrP"F~8}t:U I2u ErP"j/u ÃuDU Iu rPA"F~x/uC{/t{vtR+E @Pu rPF] ;/u E E 8/tC;t;/uU :u#rRrP!F~ݾ}t" uOYRsPN!4$ukE9}DsPrP!<$ufǃrC WG9|}8vFb e[^_US hht PhP5t=hdTht Pht C~ vC~t]UWVS }rUr.u~~.u~tuj/VQubE8uKUw1$B70)"[:uV(4Ut" VӃtVu3UЍe[^_ÉUWS=Huz h99ÃtXuOу+?wB ST Hu(8t  He[_U|8EtxUMU t}tt:ÍvUMU t"vVÐUuuu u|ÉUWVS }u ]u@vEPSVtP(ƒt;P0u$;xrcVttE)e[^_U hhujjhh|uhxuu u'=puu pu=tuu tuÉU=xuthuÐUWVS,u8tu8u %huuH1uv5HSIhdTSuSh(Sh}Sjj EP uؿ48uuؿ98ux5tPjjPN uMÆ$ =7,Od h 2,ƃu h ,ǃu V P+u V,<$uvjh Vy u6jhW^ uSjB 9tEB V,<$,u,6 6uhu=Xt 5X,5X=Pt 5P+=P=Tt 5T+TLXv9u|tL vA~e[^_UWVS ]IMt;u h@vEyE EEP)ƃtUE;=XыU| 9},EEPV ƃuh>jGXBPCU2PP};ue[^_ÍvUWVS uE UET;tR:uBIQSVu!IU C UC$;uPЋUPDUe[^_ÍvUuuhSjGÉUWVS 605E³LjIQRj jh jt } IQu jV jh jE4$E IQuj jhSj u5UWVSL]EMyٍv ̉KȺEUEu؃}yK-uhdu uSu 6 e[^_ÉUSEU ]~;6|SRPQ"S44R 9Ѓ"v]ÍvUS]~;6} 4!j$huSu]ÐUWVSuWb&Ãt WVS1؍e[^_ÐSD$L$ T$@AJt}tm8ui@AJtnt^8uZ@AJt_tO8uK@AJtPt@8u<@AJtAt18u-@AJt2t"8u@AJt#t8u@AJtt8t )[1[U=vtuÐU huj:j:hhvhvuUVS]/0=\u v=t Sv jjjjSC u fc 0=t Svve[^ÐUWVS u8=\u{ v=t Vvv juE RPVà =t VuK8؍e[^_ÉUWVS }] u%E=\u =t W v juVSW8à =t Wyu U؍e[^_ÉUWVS}] uG(|tQ}t(}}v}EPW+}y8x4v+v)M9Q|9Ev]uJ}txEDžh!EEDžhu WG uT|du0fx)EPGPuE%=t fO yEȉGLfO pt}EPGP:x+v")9U|9E؉EUptyd}t&txt<p,huEPWvG 0t4GEUG8+Gll)EUW<l%+Gll)EUGlEt;P|y p;ErllEU9tS|9psIp+EWl)‰W0G@9G0t w0!G0GLHЙ#p#tEUjRPW!ЃtsGG0tG@9G0t w0N!G0plU)lt Wl,ul9Gr)Gfg v WutuVSWÉփ!Ѓt[0tG@9G0t w0 G0GGfg ߃}t)x%vfO @/T vЍe[^_ÐUWVS uu =t uUB8xu@Exy@u}UZ9vZSE0W*U)މ$ +t)=t u E)u BvEX9wVU2W)E)p0=t PvEe[^_ÐUVSEPu d(ƃtxøthhuu+yfC AvfCfs [C$,C,HC(dC EtjjjS؍e[^ÐUVSu=t V:v^=t Vv؍e[^ÐUWVS} u]t#ItBCtIuutBu)H[^_ÐUWVSu} EPt>t AJt9u)։)uэD#;tvtAJC;u)0[^_Uu&x=v;TÉUVSu=t VEPVWÃ=t Vu$}yEUe[^ÍvUWVS ]{(uC t sP{T&jjjS Ɖ׃!кC t>{0tC<vC)ׅyfK @&R{0t^C)TC tN;tI+CEM)9|9vTEאE 0xЍe[^_ÐU=vPvPvP vPvPwPwPwP  wP$ wP( wP, wP0 wP4wP8wP<wP@wPDwPHwPLw@Pwv=t+vPv@vvvÐUShwjjhh(wh$wuà t u*w8u w 5 w w؋]U=$wtwÐU j juFuÍvUSh@wjjhhwhwu%à t  5Pw Pw5\wt\w5`w^`w5dwHdw5hw2hw5lwlw5pwpw5twtw5xwxw=|wu dw|w 5|w|w=wu lww 5w}w=wu hww 5wMw=wu pww 5ww=wu tww 5ww=wu xww 5ww؋]ÐU=wt@wÐUWVSu8tu8u E *U:t,2uuM vV}փ5HShdTS0uS$hdTSuS jSP#x w(Oe P/ǃu :uP>4 PST13 ~ u!VS;E|u;E|uO E8t 0U:Džt9t}+߹э tE At9|ىtU9}tE AtU9|M > W ve[^_UVSEu 9sj Pi@C9r؍e[^UWVS}??9;9-uy1uCAz=wUt* t_0QwUtt ADBЈu9uv* CA9a[^_ÐUWVS}uFӁv RI%@vt@#L4ȅuȀ-u E E+uFtu0u>xt>Xu ^u 0|?EEG"}щEC< wC<w7 C<wLW9}@}xU9Uw 9Uu9~EvEEljEEF땃}y}E,"}u  }t]} tE}tFU Ee[^_ÐL$T$QtLBAtBBAt8BAt.BAt$BAtBAtBAuXW|$T$ W1OtLBAtBBAt8BAt.BAt$BAtBAtBAuX_ÐUS]t4 Jx>+A 0v;}v;|;Y y u֋A @;|[UWVS\EuEu}EEE} EEEE EE9EE EEEԋ}\}u+U D+EM}NΉvCAN+};}vW+EPUUUM9MtE EEE} }E HEE} (u u}ЉFv 4$=t ^ S*$育v V<$e[^_ÐUWVS<}wJ} ;EEu EuE E EPEȃ}EEă uuu uPE EEȉEEE EȃU9uEĉẼEUȉU׋E9(EEỦU+EEĉEЉE܋E9EtEEE+EEĉE̋U9UA9EtuuUE܉EԋuUЉUEEEԋu܋ỦUE}u= vE}t(u;uVuU;E]jEEEU2;]r!]+]9vSuU;E~ʼn0SuU;E]؋E9Eu[ERe륋U29EvpE)uE0SuU;E]ދU29Ew2E9Ev*}U2SuU;E]ދE9Ew֋u؋UUE9EuX}t/vU܋U܃9rUUmuyU܊BUG9rUBUGMuV}t/vUU9rU܋U܃mu!UBUG9rU܊BUGMuE9EsU9U}t!uuSÃ)Hv}tExt@ hSƉ$sur8vO;au+CHOej h  ;C@t OBC(C{ǃPSd>S C TDDK8ЃtfЃtv}tUz t r hS1E0}tt4ǃ$ j$Wu'8 S`X@@@ @ @@@`,t  S赞8Ѝe[^_UVSut vlÉ4$؍e[^ÐUUt$BuQUWVS|]U uEC8CC C CCCC4 {D 󫍻t2EPRfEȉC P)C>t$ 6)CKC =?~tFC4~t F ~tFE~t-~t~t%vFCuSH!‰Ѝe[^_UWVS]E H{4@}vP(ADDDHK C$jP AQSx uP~{0{(D6C,K@C<{@ Ph(;C~CPS ‰Ѝe[^_ÉUWVSu4jV-t 8vtg 0't1 J4uЃ v Vt uc8;}(v8t 8C;|ۃt d V\t 8e[^_USU} tӚ !Ѓt;hWSqt$=t!Oՙ,C8t* jj^P8V  uC~ƉЍe[^_ÐUSEX}t`ǃ,uu jS]ÐUSUEXttǃ, uǃ,vuu @PSm]USEX}v記ǃ, u膘ǃ,vju jS]ÉUWVS,Ex URUM Mjj RQPePua&E uuvEEHUR MԃUػ9Lvuf~vN)9Eu*EE܋My׋E9u܉8JExE؃vUfzu>juPu%EH1uԃMػEx Ufz uuSuu转à u\MMEPu袭fjuPu %E\pEԃuػUz Ma;v;]} w1} r+uuuu袜E` vUb+} t} r)} t} Mauvuf|^w juSuu oUDZMAuZMTY)ЉFqSuuϕuuuuuӛtCuf3Suu蘕u,E`Ub MaЍe[^_ÉUWVS UEXt*t%t ǃ,$xuǃ$ǃ(ǃ v uj$;{(w?vjjWS"ƒ pf>uGǃ(;{(vĉ$;{(~ǃ$A p(f|FuAjR(FPSh" ƒpǃ(f~tf>uǃ $f> f(f|Fw' juu RS0  NBU NfvDNC )ЋM A DVAMVTV)ЉAf;>vǃ $ǃ( lj(ȍe[^_ÉUWVS uF(@F(E#F0EN};|c;~|0FPSPt~Fjv$tV F(@Pƒ;F ~F DDDDV E;F,v F,F0 EF,uuVe‰Ѝe[^_ÐUWVS}u u-Ãt/V7P蘭E) PjR7*؍e[^_ÍvUS ]uu #C,;C(~#C0]ÍvUWVS]} jstjKPEuQ0 S*A049}&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,HH/Xt"X=TtT DžT\uDž\n`u Dž`@oduW,dIDž\nDžLDžH,dDžTDž`@oDžXdtd@ h$WÃ|Ǹǃdǃ\`ǃ j$ƉC Ǹ󫋅,9t ^FlFF F F(FTF}tTE H t:t . uu uz*E s jjEPIE EjhPthb1u ] hDDBhBiBjDkl@@BlBmBn@op< K9r;Xts} u}tT9vPv;/uCEPWW|/E%=@t{wK9w} t*hh W趀U  }t)hW?|tow8t+vEPW{;t;]u 1Ph St@8u0CȊDvЍe[^_ÐUWVSjhP>|p jjh!ÃxjttPS$}HDždccc\9G؈WdW*hGЊD:D9\:dd~ce[^_ÐU=wu*wvD@=~Bw hwUWVS=wuwEEu u wE\9G؈EE}Eu2GЊD:D9\:E}~[^_ÐUWVS =wu!wE@؊ww4ȊwwwwUw4ڊwwww ЊUw4ڊwwww ЊUww4wڊwwww Ѓ [^_ÐUM9s@9rÐUVSuM Itۍ 1FIuغ[^ÐUSM] 9t"vAu9wij378ƃOf{jP7EG,9tuM}tmEDF\0jV7螄 jS7豂ƃ@HfEfUfPM}ujV7> ju7Oƃtj-f[Kf]fUfP1U;jV7؃ jE07U ЉЍe[^_ÐUWVS }EEPu WSÃu}P}u"j07X}qE0vCPVu Wq  tAFuVW6jV7܂ESF9sSu WflSF9uEfSBfCftLSu WWfu8CPVu WtIf{uEfSBfCfuvFu/VWQu8ojV7jV7}AЍe[^_ÍvUWVS Vj3E0ƃf{DF0CtC PuhTFuY>u!fFUffFF VuVu{ MF0)RPP^{EfFf\FVGftf9sMf HfuFf)fHtfJf9sMf fHufnjVE0l7vE,U9tvxM 9u/jQE0QjVU29u uuu uzt؍ve[^_UWVS }UB( u-B;u&B;EuuWu R$ UDW8Ct!C PubfCt$ Pu7fCà G8)RPPqyf_EftGWEHftf92sfHfuGf+EfHtfJf9sf fHufoUB( uB;uB;EvfJvЍe[^_ÐUWVSu}^cE  } uEEԐjE0EԍEPnÃt6t189w*΋EEjjEPj2ǃtz GP@EЃ}t[uЋEEԅt1jE0EV~nÃttƉ+E9rуu uEЍe[^_UVSu=t Vzvuu V)Ã=t V v؍e[^ÍvUWVSƅDžxDž,Dž`ztUB t zu u u荇O&MA  uJfyxCuu Q#&]fK @%}fO @%vDž%E DžDž4U0M$MEEDž3t%t7t%u苝+t`X$ Z]Ѓ$Ẽ}~&EPu_$}$vk$DžDžDDžDž|ƅƅ0@FZ$!uƅ ˃¾ƒ0 wtBBЃ v⋝;$uw4u0P0u $tvEE4G>t 4@44EEƅ+F@6@xn2B*ƒ0 wtBBЃ v⋝;$uz4u0P0u "tv|EE|4Gt#4@|4n4EE|TDž|FЃ L|DFЉ|1AFЃ v\FЋ7GFЃ v$u@4P0u m!{@t \@PAt # t_jt4@44EEPRgƃ1t4[C44EEZ jt;4 \HLG4t>t4I 4EEtWt,4IHLA4s4EEHLQt*4@ \HL44EEHHLL;HLLt14ITA4@tCt%4[TC44EE t=t"4TG4P4EE8t 4@T44EETTy Tƅ- s|y Dž|-|%ƅsNs|u Dž||y Dž|`t `dt#4[ QIC44EE HPE؉U܉MPPP|sPEPK` t 4RG44EEPE؉U܃PPP|sPuuW>` 'u Džtƅ-uP8Nu"Dž$` Dž$ƅDž$` Dž$ +dgtGuu~W|9Iƅst)ʉ|d+||y#Dž|u d|stLsPHPP$l||  F ~|u t |t0x~{DžXDž\hx9t=x9h~,)h{t\CxXx?uË\X h u(uh1tCt4I 44EEQVt@t4IA44EE @tAt4G44EEf tCt4IA44EEwvt4G44EE4 &t4ItJt(4I HL4EEtVt(4IHL4EEHLTt4@ \P4EEHHL t14ITA4@tCt%4[TC44EE t=t"4TG4P4EE8t 4@T44EETt+4I HL4 4EEHLDž8l!ƅx/,t ,̓t4IA44EEDžtz|P,uXet!4[C44EEu Dž|xF|ju|K+;|7|,эq tJt(4I HL4EEtVt(4IHL4EEHLTt4@ \P4EEHHL t14ITA4@tCt%4[TC44EE t=t"4TG4P4EE8t 4@T44EET Dž8|! Dž8l! &t4ItJt(4I HL4EEtVt(4IHL4EEHLTt4@ \P4EEHHL t14ITA4@tCt%4[TC44EE t=t"4TG4P4EE8t 4@T44EETt+ tL HTt󈝷ƅ|Dx | tkL Hu | xP%P8PRLH0XTu |tFxP%P8PRT u+vd~/- ƅ@D9}@t @t@@<9}<<:+@~T$@E$Ẽ}~#EPua U$$Y]Ѓ$Ẽ}~$EPu ]$tS$GEЃ$Ẽ}EPun E$\xtPƅ0$BE$Ẽ}~$EPuZ M$%=+@~U$̳GE$Ẽ}~#EPu E$$̳Z]Ѓ$Ẽ}~$EPuE M$D)~Wv$̳GE$Ẽ}~#EPu) E$$̳Z]Ѓ$Ẽ}~$EPu M$uT$;suЃ$Ẽ}EPu7 E$bsm$̳BEЃ$Ẽ}~#EPu M$|u tMt$;CEЃ$Ẽ}~#EPulE$ۅ~T$̳BE$Ẽ}~#EPu RM$$̳_]Ѓ$Ẽ}~#EPuE$|s+;h~h~I$quЃ$Ẽ}~#EPu@}$H!h)Å~Wv$̳@E$Ẽ}~#EPuU$$̳Y]Ѓ$Ẽ}~#EPu]$hxX~X x\$BEЃ$Ẽ}~#EPuFM$+x9~ƅ~I$wuЃ$Ẽ}~#EPuU$xH!)Å~T$̳GE$Ẽ}~#EPu'pE$$̳Z]Ѓ$Ẽ}~#EPu!M$x\UXQ;v |u tMt$ BEЃ$Ẽ}~#EPu6]$+;|~|~I$wuЃ$Ẽ}~#EPuU$H!‹|)Ӆ~T$̳AE$Ẽ}~#EPub}$$̳X]Ѓ$Ẽ}bEPuXU$:| At$GE$Ẽ}~#EPuE$$ dHBdEHEЃ$Ẽ}~#EPu'p]$|+d~V$̳GE$Ẽ}~#EPu E$$̳Z]Ѓ$Ẽ}~rEPuqM$M$;CEЃ$Ẽ}~#EPu"kE$$lJMЃ$Ẽ}~&EPu]$v+@~V$GE$Ẽ}~#EPu\E$$Z]Ẽ}~EPuucv<}tEPuu8E]$}tEPuuE`t `IH,t ,+}G @H t9t ~Ѝe[^_UWVSL]EȉEEEE@f%tCU%uHCECBZ($"0 wMTPF0 v5C*0 wTPF0 v>$uE]U;U|EPEPRE9E~UUEU]^@E;E|EPEPu@U9U~EEEUBUBЃ CBЃ v|BCBЃ v$}vME@teM M@MEte MlM cMWMKME,E;E|EPEPu=U9U~EEEU.MEt>E;E|EPEPuU9U~EEEUEEE t>E;E|EPEPuU9U~EEEUEt?E;E|EPEPuPU9U~EEEUAE;E|EPEPuU9U~EEEUEt>E;E|EPEPuU9U~EEEUE;E|EPEPuU9U~EEEUEt>E;E|EPEPuHU9U~EEEU9Et>E;E|EPEPuU9U~EEEU Et>E;E|EPEPuU9U~EEEUE t>E;E|EPEPuvU9U~EEEU gEt>E;E|EPEPu2U9U~EEEU#E@t>E;E|EPEPuU9U~EEEUE t>E;E|EPEPuU9U~EEEUE;E|EPEPuiU9U~EEEUZE;E|EPEPu)U9U~EEEUMEt>E;E|EPEPuU9U~EEEUE;E|EPEPuU9U~EEEUMEt>E;E|EPEPuXU9U~EEEUIEt>E;E|EPEPuU9U~EEEU Et>E;E|EPEPuU9U~EEEU E t;E;E|EPEPuU9U~EEEU zEt;E;E|EPEPuEU9U~EEEU9E;E|EPEPu U9U~EEEUBU}~ UR PtUU;}~E<wm$d$EU E E PT?E0E E HPTLU EE E G;}~}tE9Et ugue[^_UWVS E 8UEE@9E}Eu& usƃt'SPW&uWVƃu:~]͐;=xvj6u;ÃyCj6UR;ÃyE 0Lv9=PURuP}>uE UԍD]])sE 0Eԍe[^_ÐUWVS<}]E fEE 8uSEPEPEPu uSEPEPEPu u ƸEfVf)fVfTF0U yGEC0UBGECr2Sp=UZ w7S\=] ;E y'uuSPh)jVU2Buuu u0EEċUUj3E0w@ƃfC@fEUB tCw teN]C؉E̋8 vUBЉEȋ8 ]tl@uf~uf}vYUBDЍM؋Q E؍UЋ]ȋB؃ EЃRQUE 9sEvFV)ЍW9sVu >uWEPEPEPVu-vWEPEPEPVu{ EuGFf9Es%U)PVBPRB;vfFE]C t^w t vFUfFf)fFfDVEDF0WuS:UfFf)fFfDVEDF0EuUȋUUȊBCEuPEȃ PSc:]Cs u f}tEDF0EPT u UċCUfFf)fFfDVEDF0u~ UCvf}tEDF0vEPTUBCUfFf)fFfDVEDF0UBC6w}] ;u;E yuuSPEvuuu ujuċU2Y> ju]3G>E,U9tvju]3= ju3=XjuċE0= juU2=ju]3= ju3=s9ze[^_UWVSEPu{8ƃeMfFUffF] CFFC F {u7EC9u$KfFUfEU2 ]jÃujVE0<\U CBCfCUffCU B C ztDjrE0:ǃu SkiGjWU2O<uuVSu uǃESu 69u} S?k] UE0e[^_UWVS}EPW6ƃtEPW6ÃufEEFCCFfCfFffCfFU B C F uuSVRWU2Ue[^_ÉUWVS u }UffFfF0G t G W;CfFfFfF0E@ t @ uUCfFF F jVE0:e[^_ÍvUWVS } Uf fGfG8ECG tzUBƋ fGf)fGfG8C6F PSp4Ftcv utoFEP‹ fGf)fGfG8QRS4UCqfGG G jWE0^9Ѝe[^_ÍvUWVSw tLvtPtb:EދU DBƋ vEދM DAƋ^ FE6EދU DBƻEދM DAƋEf9}wEƍDU9s UEH9uOhvf9}t.fE׋MfAf)fAfDQSVAP_2fEƍDfEƋUf9r}t}tEGMf9MUfBDxfBUBt1t trCulf[Cf]A9YjQ62jS60fEvCtcE fCU fBdf[f]fuGYjQ6W2t@jS6^0t%AHfEfMȋE UfPe[^_ÍvUWVSuVu uÃ>E  e3{Ev;tjVU213{f{f{uMy;tjQE0^1jUrM1f/Eu(;ujVE0#1UBfCfKSu u4M;tjQE00U2zsS A9uQMqjQM10tAjVE0.E}t fCUvSMQe[^_ÉUS]{t sU_C CC(U SUfSC(]ÐUWVS E,UvjSM1-ǃSExfEGft]UU쐉ffuƋMfq uu QOuG EU~FfuKfuG U  u^f}u$tuu WREMQUG9u"tuu Wu~MQufEfMUfJ EPJfuftNMfpDG\8jW1c.Ѝe[^_ÐUVS]u jv3V,Et[Ef@PuSu*jV3-EUCS Eju3-Ѝe[^ÍvUVS]u jv3+EtgUE@HfBRuS^u+jV3b-EUCS Eju35-Ѝe[^ÐUWVS|EU EUUExy`UB%=u8E'}uBuju h(%:ju h1%*EE@u!Uju hj$? EPEPuum8EEt/EUE؉U܍U؋B% ?BEcE}2 ~@)EOE  )EкRP,$d$]؁m3E<%E P%X%`%W $d$}fEδ fEmUmEuEE@tME}w#U'EEuJUEux Eu މuE}xEUUUM)MىME} !E}~ mE}wjE$h%EEEDE}E}}}%EUM|}GE W!|E}EU؋]M~S؃'tɃ5&]مt&tB GuE:؋E؉Et5E 'Uut&tB Gu]؃}t5EEu%}~}EEM T]BR$d$MD%]Ёm@}uBEEH%mUEE-Ed }tU4&e]п@%T}fEδ fE̍vEmUm΋UR$$d$]B0UBUEEEEG;}]]EЋU &]п8%}fEδ fEEmUm΋UR$$d$UE@u}B0UBU;}u>tEEEFeEu+MU:0tTGTM]v؋|EE؋U܉EU]Mv}>}4U'}y<}6EE}I H%ED.}fEδ fẺEm]m΋UR $d$]B0MAMEـE@5;}utUEtE@ MU:9u|9MtME89tUBUE|0GTM],EĉEuEE}t1}t }3 6+}}} j+E}~}~};}~})})})}}~Y}t?~.Vu,EuPs+Ãu)]U)tRuu},E j+E}~uPU,E}~}t"}uEut EE}t MAtT*})}Gt )ǃ~ }}}}~uu,E}~uu,E}tOuu-y:Mjj u(E}tjj u(EEE}^}t}uR}x)jjuU(EPu.-؋U҉U؋M1AME}!}~uu+EEEtV p>&EUB} փ ЃtfЃtju+Euub0EuuN,ƃuu,Ãx uPu',E vE SP&}u}tEu}9~gEbxuh}tbEu\Uzuz~?}~9ju*EuP+E uEt E}:tMEk}~&}9uU9BUE@M0vEUBU;}jj u<&EM9Mujj Q!&EE%jj u &E jj u%EGcvu]Eu0EExu x;}}jj u%EG뱃ju)EuPe* uEEt?MU:9u|9MtME89tUBU#E|1AMME80t@E u=$}t4}tU9Ut u$ u $؃ u#ME@U} tE |e[^_ÐUVS$uEHPEUMEUEÁ>@EEEEuuuswC$%E;vE/vE#vEvE vWvuVuu EPEPShܳ >ue[^ÐVWt$ |$L$)9rу_^ʃON_^ÐUMuЍu PsK 36xM+F3C P6G vGC }CtA EPuEP Pu UU} u E!@tzC@U;Bv<:u PJC@PE0LtUUC@Bs PE0CUBUUCUB Ѝe[^_ÍvUS]EfxuzuB u qv@DBBtJ B EEt1 PPEPQS uEEPu ‰Ћ]ÍvUWVSu} O;NvNItv:t)‰BCIuF+G[^_ÐUWVS}E P;WvWE Jtv:tCAFJuGU ;Bs@[^_ÐUWVS} ]ujWEP: jGPEP(UE;Es0;u RH u3+t~EEU;juE0^ƃtG];]v]SFPW jVU2E)؉Et ߋFE뙉Ѝe[^_ÍvUWVSE UMEUxEPuÃECCC fCfCu9vVuCP}tMAjQE0/ U)tMM]_jSE0e[^_ÍvUVSu] jSEPV jSEPD ju6ƒt^B tjR6DBERVD9]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$h1%wEPM MQuE]ĉ$.EtPuHE])EExu/ P^U ju$hKvEPu!]EHEUB% ?B<%E P%X%`%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 uU x|UJ IMtyEt +EE}}}EEEE}t= 'Ut#&tB @u]E؃}t5EEu%}~})MMM T]BR$d$MD%]؁m@}uDEEH%mUEEE} tU4&e]ET}fEִ fEEm]m֋UR $d$]B0|A|EEEu8%veEE;EU9U]E]oE؋M &]E}fEִ fEEm]m֋UЅtR $d$]؍B0|B|M9Mub tEEEeEuQ||:0tB|EE@& ETM]F؋x|]EMM}zE'}y>}8EE} H%EvE}fEִ fEEm]m֋UR $d$]B0|A|EE@$M9M}t#E}:Ex0cEUEtE@uZtUE ||:9ux9|t||89tዕ|B|}EqETM]M̉M}EE}tp}$E+E)@EE;P};؋U+B@E-uN9|) )uuȿMMy )MEEEE jEE}~}~EU9~ЉE)E)E)E}~Y}t?~.WuSEuP Ãu]u)tVuuE jE}~uPE}}uMA@9E~ EE}t UBtM)E@Et +EE}~m }EEEEE}~uuE}~uukE}tNuu=y9Mjj u<E}tjj u!EEE}o}~i}x)jjuEPu؋U҉UEE |1A|E\}1}~uu~EEEtV pEUB} փ ЃtfЃtjuEEuu0Euuƃuu"Ãx uPu SuW}uQMuI}uC}9yExxtE EE U|vx$}E}Uz zE}YM|@|jj uU9UuEEjj uEuP0EuuEE }:uYn~=juqEuPN uEt E}:t4E MyytEE2~@}t:}9u|9A|:E E@|B|M|@|U9Ujj uEM9Mujj QEE$jj uE jj usEEQEu||u*0EE9E}jj u EE빃}t}Uz3z+juEuP u\EtVE ||99ux9|t||:9tው|WOø )؋U  A )؉E܉M ?E;uvFSU؉M )aE;uvE tK )ډUԋUM ?E;uv~E )ډUЉM ?EEEEe[^_ÐUWVS(EU EUjƍxUB%EB%BtMEEtK EPƒt )E EmEEG@F& EP@‹EF tM5)ЋU(U tw)ËMe[^_ÍvUMU Bt ABuÐUWVS,u}EEЍEЋ] މX]EE=t W@ G8xu@EPW;t+uu ƃ=t W e[^_ÐUWVSE xUB t zu u u]M E{UB tWu M{tvPuu'ƃE)NjU B)BuaMA AuE{tUB %B=BuN9zsIJ)΍B7E耉BEPQUB0vMqA t*9s~VuE0*U)r2zM;Av+9v'VuP)E0$:~EUr9rVuRƃXWuM1)E)x8u)U B)BEEuE M{t}u+Wj u1t+E@GEEvU9vMAq;Av'9~#VuP(E0$7u@Mq9|VuQ ƃ~]փRuE0(U)r2)uu uu&Eu)M A)A EfH @Ѝe[^_ÐUVSuu VÃut Vv؍e[^ÐW|$D$ L$uG_Ð1_ÐUS]=\u(S uMC t4{0tC@9C0t s0jC0fc CCfK {u S;C tCC؉CC uCC]ÐUVS]C u+EPEPSrƃuufK CCCC?vd΀CEC}t CP tf s e[^ÐUWVSl]u }f{xEPCPy vE%= }u(EȉCLE%=u{(due[^_ÐUWVS][PE}tPUC‹MYQKx)׹B8؂ǹXKy׋Ee[^_UVS=\u=t h`w)4t^FHxf{ tjXHy6u=t h`7) j ƃ=t h`)@05@^fC =t h`(CCCCCfCC0C4CDCHC8@؍e[^ÉUSt)4+8~m=4t+C~[;u~R P Ãt@=t h`(@@=t h`']ÍvUhh ÉU=t h`'=\u5A8A~d\=t h`X'ÐUVS]u h [=t SfvC ug  Soƃ=t Se[^ÍvUUu hz (B u  RÉUWVS }W tZwtN)7uGfO @+vG~SVWA~)ƅe[^_UVSu=t V6v V[Ã=t V؍e[^ÐUVS]ƋC89pu@ " C8PuC8pC8@ e[^ÍvUuUWVS ]cƿC89pu@ 3v C8P9uC8pC8@ ve[^_ÉUS]S89Bu1z ~J &C8@ C8@ C8P]ÐUWVS]} E9}}3+uvECMDC ‹EfC@E9|ڋUSMfS[^_ÉUWVSEE]u UM u1 DEE}Mq9w#r9s}tEpE؉EEȉEEE]ufEEfEڋEfE܋EfEދ]f]UMEfEʋEfE̋EfE΋EfEEf}M}UrMAfxA кA кA к}t E@x ‰U ‰UEUfzX+EEMfyuME]f{t]ӃxEfXKy+EUBUEMqw Ev}~/uEEPue uEHPEPNE]f[f]ÉtURpvM]fKfTKftKf;Eu 0 кtӉNjpȉ 9v(Otwplj 9wھ]~@E EHEXd))֋Uf4J)K‹]UZ)fZtLO]~5MUB`U Z`֋Mf4AK͋]Ef4XUMf7<>$)%L -LĊĊԊԊ؊z؊n̊b̊VȊJȊ>Њ2Њ& h(Ft >GP7uRt mu =؊t&EEEj EP=Њt Ԋjjjhjhj u h' j. =Lu L%L jUe[^_UWVS Eu t>9qr19quy9tABQMy7A)q uĉ u VpǃtWv +9sA9r=Ԋt PhWo}t"=u E ue[^_ÉUWVS EwEHt EuU<u Rv]u_t h(>uv>t=Ċ9] 9E >@Ht h.(vMC mUM#Dt hI(YX=ĊuU9] wP9E wuB=Ԋt+E PhU :P ^ h`([J u ƃt4} t"t;] sSu WV v We[^_ÉUMtw=u h)4=u[ + w h );v h`))w PRQ, PRQÉUVS]=t h|cw(=tG h(. =t h|kXv=̊tt S*ƃ=؊t E]uj EP =t h|=Ȋtu# h6vu 迯 e[^ÍvUS]=t h|4(=t? h( =t h| ;Xcvt S=؊t#]EEj EP  =t h|| ]ÍvUWVS,]} E=t h|D (=tG h( =t h| KXvH!Ã=̊tu( Su S+u W WSƃEԃ=؊t]؉}܉uj EP v =t h|0 =Ȋt}t% h}tY ve[^_ÉUWVSh%E}OMEU]9~+ uÃu ulMfC}f{ MfC fC}{vD )Ѓw9}vу |B9|;[uM}~BM}fs у!LNfKE)EB}fs E +Ue[^_ÐUWVS }M EEu h( t h`(t h(~ƒ|u C <t =ԊtVhWU=tjVW >E=u jvxUP p=u(@>E9{ s;t9{ s;uU9Sv'SPCBt9{ u@7C KK;;BuvUB C ȋUBCtcXUE9Cus{D;u,X h(v;C;LC ;܊uu j79܊u`SLS LC RC ܊C + ˃; wC;vAv}t ue[^_UWVS }uN FHt h.(!ك#Dt hI(2=ԊtFPhWك DfF V f~ u8:t+8t"@;Fsʃ9t 9t @;Fr2PfF f;FuF92t92uF +^9t Ve SYe[^_UWVS EE=uz+Emu>t>=tvF>t>=u+uu=t;vu]t9tFA8uKt 9uuA<=tuʉ [^_ÍvUWVS}=ux+E iu>t>=t F>t>=u+uu=t9vu]t9tFA8uKt 9uuA<=tuʸ[^_ÐUVS =dtd u؍]S=jS jSj$EE$ jVj袨jS jSjz$$>WS|$ D$L$W~$ĉ Љڃ)ӉكX[_VW|$ t$L$)9rу_^ʃON_^ÐD$9Tv TD$̀rD$XUu ujuuuu ujhÐU uuu jujhÐUS]U Bv薤J ]ÐUS]U BvNJ!]ÐUU@~UU@~USU Bvɣ JU#]ÐUPÐUVS5Dtv^Kx TKy6u=dtd u詥L$XtD$̀r X XP YUWS E]؅t+8t&E؉IME E] 5hEIKSC U؉)@PRje[_ÍvUU+x;p} \&+ÐUuϪ$éÐUÍvUh6ÐUh6ÐU6ÉUE t uЃÉUh6ÐUh6xÐUh6`ÐUh6HÐUÐUÉUÍvUÍvUÐ+vk̀rÐvj̀rÐvÒrÐvF̀rÐv̀rÐv̀rÐv̀rÐv̀rÐv̀rÐwv̀rÐcv̀rÐOvx̀rÐ;vỲrÐ'vK̀rÐv+̀rÐv̀rÐv̀rÐv̀rÐUWVS ]SCv:tvv9rC;C|O C@PEC} s ЃtfЃt$]CD@C؍e[^_ÍvUEP@:t v9rUVSu U 9su$9rt [^ÍvUVSEu ^9X} PM$}tCXP 9s 9rt )je[^ÉUWVS] EEEPEPu uGƋE8)}EEE} }udK5u}<Uz tG.vt:t.]Kx/u} FكDtEEE}uVEtEuVع}twE V_ƃtM)ى˃ Ft9t>}u FEjV|Ev}yEPVgƐUM;QA)ӉE9ytEFE$PSU܅~}u RVʉE}u }UM܃#DE ESVM$}t VFE`D}t>EP5EU;B~)B@EM$"EFUEVWu迈UE$ E V\E؍e[^_ÐUEU EUEEt EP5E E EPe)‰ÉUWVSEDž|DžxDžlEEEEEEUUE-w2$|6DžlEE8uDžl EʼnE80ul@XtDžxxu@ lEPuuEPlpE EEDžlEE80t8URhM艍dDžHE/~D9?vHDCЉHtCGEE/~9~ĉ} 9EE}uC0u|EE0tCσM艍d|EDž| CЃ |0tw|U9}4vGHH 4A;||ωGHCH 4CDž|EECЃ iEet Eu'|uxuEEEvUUE@E+t -uEEECЃ 0uvEE0tCE0LM艍,@E/~-9(LDCЉLBE/~9~؋E+,LE=N~EN}t ]UU|xNt`N Itit ntGh>EPރtMh+%EPÃuEElh"EP蜃t=EMA@UE8(5uQEPkEvEMMEE)E]DžtUB tt3t!,+ltDžt lAt}u}}~EHRP,$d$]؃} ~ EŸ&MغRV,$d$]؃}590}u0EPtjuuuuuV }}CuuU 65E 'U؍EPtQ)A9Eu))˸'E U U؍EPtjuuud$$ k )G}|AEE4'U؍EPtjuuud$$Z # +]+Eþكt E ']؃\~?M&A2% ?AE]؃؍M؋Q%0?QE&E؍vtM Eۉكt E4']؃~=M&A2% ?AE]؃؍M؋Q%0?QE~&EtU E]؍EPEPuu EuЋE+EE~PuVMMԋEEЃEEЉu+uU;r~-E@E菒"MA@U EЋMU)щpMIM9E)ȉE~PuȻEEE}UUԃ}}}(E@E@MEEPr EE@@OE@E@EUMDEE!E EPuUpUЃht F9OHWud|<htE@EP"UEx~UШ0t@E䐃} tEU ltM}tuuutu诫Ee[^_ÐUWVSUBM ;A}U M Ep譪EUBMAEUE E΃U BEEUЋU<%ٍEE%EfVf>;urMAU +BM M9s?E‹M<%ƒE%EfVf>;urÃ}tvUB;BuY B@P譩E MA} ΃ ЃtfЃtu2E EUBD@BEe[^_UWS]PSOuSh`7jY;vBщjuuu RSe[_ÐUWVS4] j(jLuh7j0Yhvhtjuh7v@@$ǀhǀlǀp@(@,h3sP$ڳ׈уHAQjWU׈эAB Qj*A9t9t5}trUQjB$uvh7UуQRp$B-}t}pA@B@PR16G @ PuwEG}u. POy)h 8jVlMQGW@ B J$jRtLJpt 58t 0zt ry$t q$ht hlt l e[^_ÉUÍvUWVSD}u _$C4ECLEjCXP视CXC(CXC\C,C\=?B~v-@BCX=?BC\CXM܆E؋C\ʃ{4uECCHAE@E PjjEPGPS jjEPGPS~h8jTPE؋U܉CLSP{4uECDECT C0CHCT{4u[FjVPt؆AGẼVEPVR]ȃFURVPvuV FjVPt؆A=G EăVEPVRt6]FURVPtuVЉЍe[^_ÉUWVS,uE ^$x @UЃMЋQ@EjjQFP=R~ h8j>EІ@E؋EԆE܍sX}ع8th9jREC0C4ve[^_UWVS }_$s4{tD hPlPs$pC(P  uCh@9j@RGWC`SdUChBщMC`PRsIyh9jQC`SdFV Fe[^_UVSu^$ 3osd{$t s$Pht h5lt l S 4$e[^U=t h{=u2(0D=t h{ÐUS]UujjSjPS]ÍvUWVS ]u EPuX]߲֋=tэL w" Su 5th9u蜓vЍe[^_ÉUWVS<uu% P} uhS] ҋ} щ=tȋ)L w" Vu 5th9uВvЍe[^_ÐUVSu] SV_[twt tGbhCPVZ]tJjCPV+[t/jCjCPV[ vЍe[^ÍvUVSu] jSVZtjCPVZЍvЍe[^ÐU ÐUVS0u U؍EPEPEPEPEPRh9u蠀ƒ ~I^D؍ B~^EE֍U֊EBFjFPRze[^ÐUWVS };u }4 v47t+tF;u |΍e[^_ÉUWVS<E} u+vu$ u 6)@Bƒ8;} 0Ph9hPU$}U$3kUD$XUDFGP<t;}|Bƒ8;} 0SPh9hP$ٟU$3ǟUD$-&负UDFGP<t;}|E UzEBB BBUЍe[^_ÐUWVS,E UDžDžDžDžDžDžDžMAM93tu6 j PPRu^ Džx@9}gtuYh-&[tPuh[tPuC;}ttv~ vDž/~&RDžE8tvU$P PPPh9|$ h9hSΌPu-jjPjhPƃ u3vtP"vDžDž Dž@ Rh F jhD jV uDžt FVP$P PPPh9z$ h:]SsWS jjByDžDžjWjjPS ( Hu ( PjjWY$xà y kr8t2DžPPjjPQz zhj $ jPw= jP9{uyDžq zqDžtU| DžjPvt ezt FVP jtjtrM9u YU= ~@;v+ +‹;sڋMAtP3ȍe[^_ÐU=u=v ÐU,UEEEEEEPRjXvx }tEUUEM t. tJt/t3J~@8t ~*V GB^ w艼CF xwwp=t hm= F5 {t ߋ[{u 31s&C ps {t stGF5 5F Sż=t hle[^_UWVSE=t hlv}tE 0uǃw jjjhVu jYà t8}t wZU=9 hl#FẼ v覺EЃu Evvuv=t hkv}tP=t hk EP8=t hck u=EPu uC}EEEEEEE x tQp  8u8ø jh肹U jhh.:P|$PEPhu脻t $u؍vGEGE؉E܃jjjhVu jWà t;}tVu WVE 0u}tU:u$t $.؍e[^_ÉUWVShfjjjPoÃƅi.:jfjIhɉMEjhEjjjPPjhEPS&ƃ t@jjVP Sq=t hgv=SDždDZ`hj<C \ƿ8t\38u^CwS SxC Pqds 38u D: N: `YÃIdu,=t hf[ d0\\`9[=t hevj55e[^_ÉUWVS\]}Eu-Ru@v3ƸWSZEԃu FVPhEEȋE E̋EvnPhaj ]S]؋V5|5xEPhI EPh jV$FVPuCEe[^_UVSP]EmƸtuEE؋E E܅t E vE,:E,:mPhaj ]S]V5|5xEPhI EPh jV$FVPEe[^ÉUWVS u ]tWsvu;s v u&F;Cu;t8tPVǃ[ue[^_ÍvUWVSV+vdx tp  8t SVdud S{Xxf jjjPjttx}ƅyjhh.:xzSFvIx PVtiy t m tle[^_UWVSDžpDžtDžlDžh}tvE}u ExEp 38kfEEUr8uN h-&%XÃu[%vEPSutp$ZEPuuRpppBhjRP pPEPj pRUUE EUr8HEEpPEp0EPhG EPh# jp t@CCf}uDžlMfEfEpPEPjpR$ 蝰lt u腰lBuY pXPpSl l[Džluulr]lBfUfPElB=tkEp  8uNu:@EPSupUUȋE EE,:UEЋBDžxpuc hƃt<Ep s ʲf VÃu҃ Vp}-Dž|pP|Pj pR}uE,:pBhjRPpPEp0xPh EPh j p0ujuxlt3xPh h: pB]SjRPSxPh 5:L@Džhv: -pZpt4UBw pBRPDžppu#EPuup}uE,:pBhjRPh|0upP|Pj pRpPEp0tPhHM EPh jpÃ0tt t8utuPltPhHM 8l|pBVjRPVlv u'pPEPpR}wh v/||lt lzu2pXPpSpt pBRPDžpExt&pt pBRPDžp}t pEpt pBRP}t},:t uvle[^_ÉUVSujjuuu uà t]C;v' s踫$谫1ssv賵CFsz$re[^ÉUVSEEjuu ƃP5|5xEPhL jhD jV w]VEPj VR}uDEVEPj VRV5|5xEPhL jhD jV0t&^PVS FVPEe[^UWVSPu,}0Ejuu ÃvAEE4@3E v 4$U4BCh$:jSPEEȋEE̋EEЋE E؋EEEE(EE$EE}SEPj SRSWVEPhx EPh8 jSE0ub}4t\uuƃ@U4;PvrLFU4Bv4$vEw M}P CSP}tEPhHM 3Ee[^_ÐUWVS ]t;u u [j5 hCƃuV  Vug8u5](jPSǃu7t VG5|5xu hD jhD jWÍ@ wXWEPj WR}u?EGURj WPG5|5xu hD jhD jWÃ0 GWPve[^_UVSu E}uOvu;BOøt0C5|5xURhHM Vh jSCSPEe[^ÐUVS}u D} u1øtpj jyƃu CSPIC5|5xVh U RhHM jS t V) CSPe[^ÐUWVS u=8 uOv=,~_hVu0th(0Z0u/Whoh?j)d VWhoh @j)Lv;,}$vV(40tC;,|߉50h0h$ge[^_ÍvUVSu "''~'|l)tPR躥 P蘣tr|pl=tP5t PLt&|DXxЍe[^ÐUWVS tp=|u :|lfv?;=pypy pv?;p|=;pull;xr 6lBl<fzBBp=7 ,? <t0px( =;pu<v=u hp~t=l;tcx[Sf=uG;xr *lBl<fzBOl;|Vl-c=p5p@;)C$4? h$d$(,4 04{ p0f:t4 B4L@!4:." 6l)‰l:);u`u\BlfBBB=pypy p=pd6`<t$x =9u < 6;l;xr u-lBlfzBB h e[^_ÐUWVS =tl=Hu H=Lu (L=Pu ,P=@uh5L @ DETUU H `hdvUAE FUG9t5FFG O:~ E]N]B9u FUGhhEf FEihPhH Ap"A A=pt N9p|MhPhHKp̡p`@M lE죜+E죠T Dt*;} < u@9|$|H 5uÃuhHja!Ttpv R脋%t#L4ȅt)v R9^ t4FI9r 5Pj55sz]+KTU@z$uBXL@@$@@X9DwODq PL‹ MtD@DEDEKt thn`\- t#DHKX=\ 5LfDDUE@@XDwDU Mw hI'e[^_ÍvUWVS @X5X@9Dv h@I@x uDH;@D+=O9} FCB9|@x$uX@ӡ@X  hIW~ ~ @x*@@F9} 5LLƒt u u@@ Fu% 5L4t hJ5XM5LSj@P:PxXu' 5Lt hJiX@P=Xu/u 5L@@$XX@@@PXD@@؍e[^_ÉUWVS H `hdE;DU:tAEE FUG9t6FFG O:~ E]N]B9u FUGhhEE;D]ȃ[^_ÍvUWVSM FG9t5FGv F:~ ÊEOF9u FG:thh[^_USTDD:@@X9s~D+@Dt!tITuO 5LyEu^=\u 5LQY;DDDBDBT uʉЋ]ÍvU=@uh5L@u5@K^UM9 @tG=@t)TDD@PX@P @\ÉU @AXQDLTUVSu j(Ãu hIs FPCu hIVvCuSM؍e[^US]t/;@u @{t sO SC]ÉUWVSu] V?F t Su$ɂ~~e[^_ÉUUt7BBB@BBBB$;@uÉUWVS }u v|>u|>t kv j(FÃu h JFC {{CCCCC C$ Sؐe[^_UU:t@<uPRÐUWVS}u FEPÃu h`J_9}v:B9|DuSÃu hJvC؍e[^_ÍvU uh^ 50B$裞vUu>Uu u?ÐUuJUÉU5u5hohJjVUS]Hu蔄uh/I tjS …uvjS ‰Ћ]U Eu uh@KhKhh`KEP H#EÉUEuu uh@KhKhhKEP H#EÍvUS]S$$t]ÍvUMÐU=uh}hoq 5*jEÐU=t%=u 5>ÉUVS=u*h}hpu h+5hh@t@ƃuhuv8#tÃhPIthV1ÃtChDVj4L~ PhDVjLQI t!hDhD" TDXT; t; u C; t; thSNÃtFCt@;t;; t,; t'(shSÃt Ct;uhe[^ÍvUWVSUEzjI@9{u;u3t2s>tvu6t>uÅuED@e[^_ÍvUWVSEƒUU@Ej'vE9CuC0}M98t /ÅuED@e[^_ÐUSHt =u u<<]ÍvUWVS\DžEUU } t%} }}Džk DžlUfBfBDžDžӃ ;ne )PRSu>ƃ 6 \; }t}u7ց0EDž   Dž```DžDžt;hv )PRSu<ƃ 9 C ; S>$>}uu S> S>;tj}t }A hWSu;ƃ > W);ց֋+9Pqw0}  hWSu;ƃ xJ W<t:;֋+9~ Pv2;}tF+ WPu$ jPuh`Lj%  t tu )PRSu9ƃ  *:ts;u *s`ց~ 9.5t5hLj% m;5u"щ;rVhLZr%uj#hL"_VPS7;t1WhLu~;s t%~}uh`4=uN}֋)9e]uREs0I tPPh: hhe[^_ÐUEtuvPuu uÍvUWVS U2ZEHu0wuhBvttE2E"h3/3vj.VVu V ptƐ=wUt8x.hVS2@hVhEEE  `d`I tEPEPh"hUvwUtu8.u@=wVttj:Vu >:8x.hVS>ShVhPDE  `d`hEwVtu 8:t8.u@( h胀ǃuhv hPujVià y WrSh M=v WWShL:uVPWU<$*E8the[^_UWVS<Eƒ@EHuNsuouf3L Ɖ8t ?L Ɖ8u% DžDžvtt%//h;t/ڍvtt:PBPBPBPh%MPgG nv;P;Ph>M$GKỹhhP aq h}ƃuhv hPj jPeà yZu9hhW`$Vj jWieà y V~ShEMv$ Vs~ShLvj PSVÃu V6~ V#~Ss Vh/`du-I t$hhrCC h}D@e[^_ÐUWVSlEEEU 9}t]E;Ms-ULEА#`9ͨtA9rfLu}u~Du9}uFE;u |}tO] 9]}GMIx6fDMf;DM~(fDMfDMftMEËDTIyEE 9E|l[^_ÐUHu otv}t HÉU%H;ÐUS] jEPu-C@ ~CCjSEP-]ÉUWVS E} xukx ue@@ X;tOvʃ)֋U)ȍV9} &P3K;ue[^_UWS]tD;t?Iw+;.u{t {.u{tj/Smt I…u SvЍe[_ÍvUWVSu8tu8u-t x|8Kv=tKhu}u4tx| f5HSghdTSIhuS=hh\MS/hh}SZÃu )8t ) Pgu*a)8t W)0O SQ S?|@,@(Pƃ 8u jHfM8u bkM8u (/qM8u IuM8u n }M8u 7 M8u 4 fM8u 6MO8u vÃ=tOƃqM8u L Gw 56wtx| uhd vv؍ve[^_USuÃtb&v]ÐU|(CtDEtxUWVS ] +}x%=u}%=u^%=u?%=u %=u_v9urZ!CIt!v%=u&? CIu9|}tEu$V [^_UWVS ]M u tu `u Lu 8u $x ?$V%V~ȃ?ȀJ Ȉ [^_ÐUE@(pE@,dFtxÉUS]U Mt9vt* ttAtCC%=uetCC?EC%=u:C%=u*tC S? S? tCvt@0$ÍvUSUM E]tLv5t& ?ȀAЃ?ȀAtA tp€t@v'tЃ?ȀAtA t*vtttA vt$UWVS]EPSS$&n}}}S  upE3! SPK!8uSjuueQtd! uqR!mEtUUT tL θM8t ttB0B0P P 4 4 < < D D tD4D44444F~L 8 4 ЉL }98tL @ t< ЉL }9tL H tD ЉL }9t;4 t8 DDDDujD+ AtL D L E9L 7I~9||D; I D Ft;4 ,t;< }Pt@ DDDDF;< |t;D }WtH DDDDFt;D |tL P ;Ev u=nOjtP u LJL t4 u ǀ8 t< u ǂ@ tD u ǁH tЍe[^_ÐU|LLEtxUWVS}M ]tPtGAv wv ¾tH![^_ÍvUWVS]} t.FV~v CJ[^_U|MlMEtxUWVS}] UtOtЍp9v0N~ CItH![^_UMU tfyQÐUEt|MpNxUWVS}] Uعt=;v$;tv){v{t8yvΉȅx/I~ CItH![^_UMU tfyQÐUE@(N@,OtxÉUWVS]}u ـ;vU;tP~RC@<>v {y {t:A0< w+~&yv ytA0< v utt@0!vIx  CIyt[^_ÐUWVSM} u]u @t/ t wvt;mthtGavOOtG@v/ȀGGOtG t;[^_UWVS EL EL ; t; u C; t; t j$gǃu"8t  EjEPST;]]E;}E; t; uvC; t; tjEPSTD;]tG]t@; t; u C; t; tFojEPS`TG ;]t}u WhO9EL ǀP $tEx|QRe[^_ÉUWVS] ut=tL yt @Nj M9v]M~ICI~ CItL B ! t}tE0H#E[^_ÍvUWVS]u tL #J !;Ju8tL xWv ȀCJotL ;Hu8:tL ;HuxtL ;Hux CW΀J~ CJ[^_U|STEtxUWVS}] UtSt-^Ѝp9v 2vN~ CItH![^_UMU tfyQÐUWVSEu<[||EP|0Q,jjuu7E$cE}t SU CPjcƃCFfCfFCF@PFPCP;}r$U(Pu&etaEE E4G |CjÃJ |^t}tujWuRE UF Vct OE4cu uc|^e[^_UE PEPfÐUWVSu]}t,uu uSddtUoEFEEEFEEEF E SEPhjv Sjhjjvǃ  Xt+t FFƃ  }u vd}jjjdl!Ѓuh8u^E P  h}d{i- @ \u`]TE t t  hPdE El GbG`G HYG ([GGYGcjj3/ƒtkH ȃuȃB jjR31t(t#  ujStvEK@t WU}t dje[^_ÍvUSEX{tjs30C!t]ÐUWVS uEX{tjs30Cv ws$MU 0tawvC(ts$FhaC(ts$NuTv  u jSvvt;vC  uVS…vt ;v vijFPSm EtJK(s$ uu VuS ǃ !@tjE03]/UCЍe[^_ÐUWVS Ep~tjv6/F}u E u ;v(  tmSVuZKjSVs Ãt= ujjSV ǃ !@tj36p.vFe[^_UWVSU;sXu +\E.?UUUE苂E싂EU 9E UoeǃtKu>tSUPVfjEPuuO,u@FEtU 9UzE 9EsU Ѝe[^_ÐUWVSEEUUE 9U Edǃt;EuDUEU)ÉZujEPuuj+uufE+‹u P5ZvE5=UtEÉCN'tEU 9UE 9EsU Ѝe[^_ÐUWVS U;squ YE<UE UUE苂E싚 ;} sn9sEst3vCAJ9s uvtRUPQcjEPWu)uG;} rEЍe[^_ÍvUWVSE EE;} s_9rE U]9s;EtC9s;Eu+EEjEPWu(uCG;} rEЍe[^_ÐUVSuEX{tjs3)Cvtt'YE tM;w!HPSfIC(t.uAC$HPS;u,K$vu e[^ÐUWVS}ju Wt?@PSW8ƃtjS7(jS7(Ѝe[^_UWVS } UDW8Ct CPuG8)RPP"f_EftGWEHftf92sfHfuG8)ЃfHtfJf9sf fHufoUЍe[^_ÐUWVS }_{tjs3'CjW!t" H Ƌ u=@t `t$ :H ƃ WH ‰Ѝe[^_UWVSf\Ff+Zr2Í0PGfFEf+X p0Í0PGfVf>f)ȃfDVf\Ve[^_UWVS E p>Uf|VwPu7}t UfDVUfB Uf+DVfEG9t}LFˋE XUEDFE)PSRU9Af|VufVfDVfDVfEfVfDVfEfDVfDV9~‰fUfTFf~fEfD~fD~GfEH8U Je[^_ÍvUWVS8Ѝe[^UWVSEU z}M@EEE܋URUfDG}8U9~fUfDGf)fESuEP' )]]7FMf wFf7֍6f)ȃfDWUfTGfwu uE } 7}uzf|wtjTwE9~fEfDGf+EfEfw]SuEEP|])]fDwfMf)LGUfTG vfDwM y}IfDG}fDG}ȋU9~fU;EuUE;PufMfDGf+EfE]SuEP]7FMf wFf7֍6f)ȃfDWUfTG)]t1fwu uE } t3M y}fwE HfDG}&e[^_ÐUWVS u ^EfCfwEf{u f|CuRfDCNjVPukyƃtWu^}tf{ufDSM Y~fCfCFA E @fEf@ fEf)ЃfDKMfA HfDSE Ht VQ 9tWuMI8e[^_ÉUWVS E HMUU]]uf^ }f+yÉ9f|yvE}G4 }98E)Eju UMDQPuwE t\HMEuf^ f+Y;u fyx;Uu$}]{4}9M8tȍe[^_ÐUVS]u vAfxut.f ..., where is one of: ++ʃ++++++++++++benstuvstdoutstdin%6d usage: cat [-benstuv] [file ...]               ɉ ى                          pppp?pp?pffHLPRXfghorstuvwxinvalid file mode: %sfts_open: 0%o [%s] -> 0%o [%s]fts_readthe -R and -h options may not be specified together.usage: chmod [-fhv] [-R [-H | -L | -P]] mode file ... ʌ=SsHLPRfinprv%s: name too longdirectory %s does not exist%s is not a directory%s: directory causes a cyclechmod: %s%s -> %s %s not overwritten (y/n [n]) overwrite %s? %s%s -> %s %3d%% readlink: %sunlink: %ssymlink: %smkfifo: %smknod: %s%sutimes: %schown: %schflags: %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 and %s are identical (not copied).cannot overwrite directory %s with non-directory %s%s is a directory (not copied). cp [-R [-H | -L | -P]] [-f | -i | -n] [-pv] src1 ... srcN directoryusage: cp [-R [-H | -L | -P]] [-f | -i | -n] [-pv] src targetB S%R1-נ@@  $R'̡v_h -@@@@ ̡7 @  J  $,4 =  G  NT [`f ͤͤͤͤͤͤͤͤͤͤͤͤͤͤͤͤͤ    [.<(+!&]$*);^-/|,%_>?`:#@'="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:;>ABCDEFGHIQRSTUVWXYbcdefghipqrstuvwxibsifiseekoseekno value specified for %sunknown operand %sbs supersedes ibs and obsrecord operations require cbscbs cannot be zerocbs 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 recordinput bufferoutput buffertruncating %s%s: end of device%ju odd length swab %s %ju truncated %s iseek/skip%s: illegal offsetskip reached end of inputoseek/seek%s: write failureunable to allocate space for the argument "%s"%s: illegal argument combination or already setcbs meaningless if not doing record operationsseek offsets cannot be larger than %jdfiles must be between 1 and %jd%s: illegal conversion combinationfiles is not supported for non-tape devices%s: seek error creating sparse file%s: short write on tape device%s: short write on character device%ju+%ju records in %ju+%ju records out %ju bytes transferred in %.6f secs (%.0f bytes/sec) ư>__?0?Fx˺ufsBLOCKSIZE=512BLOCKSIZE=1gBLOCKSIZE=1kBLOCKSIZE=1mabgHhiklmnPt:/tmp/df.XXXXXXstrdup failedmkdtemp("%s") failed 0BBKMGTPE %5.0f%c %5.1f%c SizeAvailUsedFilesystem%-*s %-*s %*s %*s Capacityifree %*s %*s %%iused Mounted on%-*s %*jd %*jd %*jd %5.0f%% %*jd %*jd %4.0f%% vfs.conflistsysctl(vfs.conflist)malloc failed-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 ...] A-n$FreeBSD: src/usr.bin/yacc/skeleton.c,v 1.37 2003/02/12 18:03:55 davidc Exp $B[aim3O (                      !"   (:%&)*+%-/*+-/:<=>:%&)*+-)/%&)*+-/<=>%&*)<=>/%&)*+-:/&|)+-<=>&)<=>&)+-|<=>&|)&|)<=>&)&)<=>|<=>|<=><=>|&)%&|*+-/|<=>:<=>||%&|*+|-/:<=>%*+-/||:<=> X*gt malloc() failed|&=<>+-*/%:()EXPR_COMPATusage: expr [-e] expression %jd syntax errornon-numeric argumentdivision by zeroyacc stack overflow-l-sillegal signal number: %s--illegal process id: %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 ...J`l`fhinsvreplace %s? not replaced %s %c> %s 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. Iu_x4,MXcd|r$=IXp.8BLV`j~]aqiuemYUCOLUMNSCLICOLORCLICOLOR_FORCEcolor support not compiled inLS_COLWIDTHSfflagstostrMAC label for %s/%stotal %lu %*lu %s %*u %-*s %-*s %-*s %3d, 0x%08x %3d, %3d %*s%*jd , %e %b %T %Y %b %e %T %Y %e %b %R %b %e %R %e %b %Y %b %e %Y ls: %s: %s -> %*s %*.*f%c 1ABCFGHLPRTWZabcdfghiklmnopqrstuwx %lu : %ld : %lu : %u : %u : %i : %jd : %lu : %lu usage: ls [-ABCFHLPRTWZabcdfghiklmnoqrstuwx1] [file ...] m:pvusage: mkdir [-pv] [-m mode] directory ... finvoverride %s%s%s/%s for %s? %scannot resolve %s: %scannot rename a mount pointrename %s to %s%s: remove%s: set mode (was: 0%03o)%s: set flags (was: 0%07o)%s: set times-PRpv-PRp/bin/cp-rf/bin/rm%s: waitpid%s: destination pathname too long%s: set owner/group (was: %lu/%lu)%s: owner/group changed; clearing suid/sgid (mode was 0%03o)%s: did not terminate normally%s: terminated with %d (non-zero) status mv [-f | -i | -n] [-v] source ... directoryusage: mv [-f | -i | -n] [-v] source target}EQg dfiPRrvW%s: is a directory%s: mallocremove %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 ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !  ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! ! !  ! ! ! ! ! ! !  ! ! !! ! ! ! ! ,#!"E"""SMDMSCPold DECSCSIESDIST506HP-IBHP-FLtype 9floppyCCDVinumDOC2KRaidjfsunusedswapVersion 6Version 7System V4.1BSDEighth Edition4.2BSDMSDOS4.4LFSHPFSISO9660vinumraidi386amd64ia64pc98alphaUnsupported architectureABb:em:nRrs:w/dev/fopen %s%s: unknown disk type/boot/bootcannot open %sread error %sboot code %s is wrong sizewrite labelverbgeomwrite bootcodewrite %scannot get disk geometry%s read%s: no valid label foundread mbroffset# %s: type: %u disk: %.*s label: %.*s removeable ecc badsectbytes/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%8d %5lu %5lu %5.5s %5lu %5lu %5u %5lu %5lu %5d%20.20s # "raw" part, don't editcan't create %scan't reopen %s for readingre-edit the label? [y]: EDITOR/usr/bin/viyou have too many processesforkline %d: syntax error Warning, unknown disk typeline %d:%s %lu line %d: %s: bad flag drivedata%lu partitionsline %d: bad # of partitions bytes/sectorline %d: %s: bad sector size sectors/tracksectors/cylindertracks/cylindersectors/unitrpminterleavetrackskewcylinderskewline %d: %s: bad %s headswitchtrack-to-track seeksector size 0 sectors/track 0 tracks/cylinder 0 cylinders/unit 0 revolutions/minute 0boot block size 0 (to edit label) (to read label)usage: bsdlabel diska -m option must be specifiedwrite 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: %s: Unknown disklabel field line %d: partition name out of range a-%c: %s line %d: %s: bad partition size line %d: %s: bad partition offset line %d: missing file system type line %d: Warning, unknown file system type %s line %d: too few numeric fields boot block size %% sector-size != 0number of partitions (%lu) > MAXPARTITIONS (%d)Too many '*' partitions (%c and %c)unknown size specifier '%c' (K/M/G are valid)partition %c not an integer number of sectorstotal percentage %lu is greater than 100 %ld sectors available to give to '*' and '%%' partitions 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 Offset %ld for partition %c doesn't match expected value %ldpartition %c: size 0, but offset %lupartition %c: offset past end of unit partition %c: partition extends past end of unit partition %c is not marked as unused!partition %c doesn't start at 0!partition %c doesn't cover the whole unit!An incorrect partition %c may cause problems for standard system utilitiespartitions %c and %c overlap! unused partition %c: size %d offset %lu (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 ... Cannot find file system superblock %s is not a valid inode number%s: can't read superblockclearing %d _msgbufpaM:N:sysctl kern.msgbufkvm_nlist: %s%s: msgbufp not foundkvm_read: %skernel 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 $SSSSSSSSSSSSSSSSS;SSSSSSSSSSSSSSSSSSSSSSSSSSSSSSSGSSSSSSSSS_SSSSSSSSSSkSwSSSPrimary 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:istuv12345678cannot open disk %sread_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.%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 get file status of %s%ss%dcan't open device %s%s [n] yesYESstatfs("/")regcomp() failed (%d)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: The static data for the DOS partition 4 has been reinitialized to:Explicitly specify beg/end address ?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?Active partition number must be in range 1-8. Try again.Are you happy with this choiceDo you want to change the boot code?Do you want to change our idea of what BIOS thinks ?device %s is not character specialcan't get disk parameters on %scan't read fdisk partition tableinvalid fdisk partition table foundcan'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.55 2003/12/05 09:36:56 iedowse Exp $gigigigigigigihgigigigigigigigigigigigigigigigigigigigigigigigigigihgigihgihgigigigigigigigihigi igii>iGiSi@(#) 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-updatesmultilabelaclsffsext2fsnoroadF:fo:prwt:uvgetmntinforqnoautonot currently mounted %s/var/run/mountd.pidsignal mountdforceupdatemsdosexec: mount_%s/sbin:/usr/sbinexec mount_%s not found in %sstatfs %s%s on %s (%s, mounted by , writes: sync %ld async %ld, reads: sync %ld async %ld, fsid %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: unknown special file or file system%s has unknown file system type 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 @(#) Copyright (c) 1992, 1993, 1994 The Regents of the University of California. All rights reserved. $FreeBSD: src/sbin/mount_cd9660/mount_cd9660.c,v 1.25.2.1 2003/12/17 11:35:10 tjr Exp $@~@~@~@~~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~@~}@~@~}@~}@~@~}@~@~@~@~}@~@~}}@~@~ ~extattgensrripstrictjolietcd9660_iconvbegjo:rs:vC:using starting sector %d ISO-10646-UCS-2could not determine starting sector, using very first sessionusage: mount_cd9660 [-egrv] [-o options] [-s startsector] [-C charset ] special node cannot find or load "cd9660_iconv" kernel module$FreeBSD: src/sbin/mount_msdosfs/mount_msdosfs.c,v 1.31.2.1 2003/12/17 11:35:10 tjr Exp $M0΃vAY5Yshortnameslongnamesnowin95iso22dosiso72doskoi2dosKOI8-Rkoi8u2dosKOI8-Usl9u:g:m:M:o:L:D:W:malloc()msdosfs_iconvstat %sunknown group id: %sunknown user id: %s [-W table] special node [-M mask] [-m mask] [-o options] [-u uid]usage: mount_msdosfs [-9ls] [-D DOS_codepage] [-g gid] [-L locale]cannot find or load "msdosfs_iconv" kernel moduleɋҋߋhaltdk:lnpq/boot/nextboot.confnextboot_enable="YES" kernel="???halted by %srebooted by %sshutdown~SIGTSTP initSIGTERM processes(can't restart init): vm.stats.vm.v_swappgsincannot dump (-d) when halting; must reboot insteadWARNING: some process(es) wouldn't die usage: %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.21 2003/08/06 08:46:21 ache Exp $ϏEEEEEEEEEEEEEEEEEE EuEEEEEÏEEEEۏ!-E9` * $FreeBSD: src/sbin/restore/interactive.c,v 1.14 2003/08/06 08:46:21 ache Exp $-0cYP 2 $FreeBSD: src/sbin/restore/restore.c,v 1.16 2002/09/25 04:06:37 mike Exp $ wGG$$$$FreeBSD: src/sbin/restore/dirs.c,v 1.25 2003/10/26 04:43:02 peter 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 $;G;"pppppppppp~~~$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.20 2003/11/14 13:07:38 johan Exp $/dev/sa0illegal blocksize -- %sillegal dump number -- %sb:df:himNRrs:tuvxyBegin incremental restore ./restoresymtableCalculate node updates. Begin level 0 restore Calculate extraction list. usage: %s %s %s %s %s %s: not a directory %s: not on extraction list extract directory is used (useful with ``ls'') files to be extracted cd arg - change directory ls [arg] - list directory Available commands are: / verboseverbose mode off verbose mode on setmodeswhatDebugdebugging mode off debugging mode on restore > %s: out of memory missing %c ./ls: out of memory directory reopen failed %s%s: name exceeds %d char %*d restore interrupted, continuedir %10d %s %s: not on the tape ./%uMark entries to be removed. Delete whiteouts %s: REMOVE corrupted symbol table [%s] %s: %s|LINK cannot KEEP and change modes[%s] %s: %s [%s] %s: Extraneous name [%s] %s: inconsistent state [%s] %s: impossible state |ONTAPE|INOFND|NAMEFND|MODECHGFind unreferenced names. %s: remove unreferenced name unreferenced with flagscannot remove, non-emptyExtract new leaves. %d: bad first %s: not found on tape unknown file on tape unexpected file on tapeExtract requested files Add whiteouts Add links Check the symbol table. incomplete operationsWarning: missing name %s missing inumber %d type should be LEAFTMPDIR/tmp/%s/rstdir%d-XXXXXX%s/rstmode%dopendirfile: %s Mangled directory: reclen not multiple of 4 error reading directory modefile not defined fopen: %s cannot open mode file %s set owner/mode for '.'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 bad name to addentry %s link to non-existent name duplicate entry not marked REMOVEDfreeing referenced directoryfreeing non-empty directorylookupino failedlink not foundcannot move ROOTbad name no space for string table Check pointing the restore fwrite: %s Initialize symbol table. no memory for entry table stat: %s Incremental tape too low Incremental tape too high /dev/ttycannot open %s: %s /dev/nullTape is not a dump tape cannot stat .: %s bad block size %ld no header after volume mark! maxino = %d Cannot find file dump list no memory for file dump list can quickly skip tapes that start with the last volume %s%s%s%s%s%s%sYou have read volumes%s%ldSpecify next volume #: Mount tape volume %ld none Cannot open %s tape is not dump tape Wrong 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 skipped socket %s unextracted directory %s extract file %s extract fifo %s %s: cannot create fifo: %s extract special file %s %s: cannot create file: %s ran off end of tape not at beginning of a file hole in map mid-media short read error. Tape read error while trying to set up tape trying to resynchronize restoring %s skipping over inode %d continuation failed: %s End-of-tape encountered tape read error: %s Tape block size is %ld Note: Doing Byte swapping 8l4s1q8l2q17l2l4qVolume header begins with record %qdDumped inodes map headerUsed inodes map headerFile header, ino %dEnd of tape headerunexpected tape header unknown tape header type %d not on ino listRSTTMP%s%ld%lurename %s to %s newnode: not a nodewarning: %s: %s Make node %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 sibling name: %s next entry name: %s next link name: %s next hashchain name: %s NODEentry type: %s inode number: %lu flags: %s |REMOVED|TMPNAME|EXTRACT|NEW|KEEP|EXISTED%s is not on the tape %s? [yn] abortdump coreon %s: %s%stcpshell/tcp: unknown service who are you? RMT/etc/rmtlogin to %s as %s failed. TCP_NODELAY setsockoptinvalid 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 0%c and %c options are mutually exclusivedump number must be greater than 0none of i, R, r, t or x options specifiedVerify the directory structure restore -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 -- %cIf 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%s%s: unknown command; type ? for help command lines cannot be continued canonname: not enough buffer space Warning: undefined file type %d name/inode conflict, mktempname %s deleted hard link %s to directory %s NODE and LEAF links to same inode%s: (inode %d) not found on tape Remove old nodes (directories). Continue extraction of new leaves expected next file %d, got %d Extract directories from tape %s - cannot create directory temporary fopen%s - cannot create modefile fopenRoot directory is not on 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 reclen %d corrupted directory: bad inum %d Set directory mode, owner, and times. directory mode, owner, and times not set cannot find directory inode %d error setting directory modes Cannot find directory inode %d named %s write error extracting inode %d, name %s no memory to extend symbol table cannot find entry in parent listcannot create save file %s for symbol table output error to file %s writing symbol table cannot open symbol table file %s cannot stat symbol table file %s cannot allocate space for symbol table cannot read symbol table file %s initsymtable called from command %c Cannot allocate space for magtape buffer Cannot allocate space for tape buffer Verify tape and initialize maps Tape is not volume 1 of the dump header read failed at %ld blocks Cannot find file removal list no memory for active inode map Changing volumes on pipe input? 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 Enter ``none'' if there are no more tapes otherwise enter tape name (default: %s) last rec %qd, tape starts with %qd Skipping %ld duplicate record%s. End-of-input encountered while extractingCannot have multiple dumps on pipe input Level %ld dump of %s on %s:%s %s: zero length symbolic link (ignored) %s: cannot create special file: %s 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: %ld should be %ld partial block read: %d should be %d 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 File continuation header, ino %d; predicted %ld blocks, got %ld blocksresync 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 symbolic link %s->%s: %s warning: cannot create hard 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. ?????????????????????%????????????????????????swapoffAadlhksUswremov%s: %sing %s as swap device %s: device already in use%s: NSWAPDEV limit reachedusage: %s [-a] [special_file ...] vm.swap_infosysctlnametomib()%ld-blocksUsed:Device:%-13s %*s %*s xswdev version mismatch/dev/%-8s %*lld %*lld sysctl()Total: %*lld %*lld [-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.43 2003/12/05 09:29:42 iedowse Exp $llllllllllllllllllllllllllllll llll l,lllllllllll=l`%s: not a file system root directoryretrying using path instead of file system IDcannot remove mounttab entry %s:%s umount -a | -A [ -F fstab] [-fv] [-h host] [-t type]usage: umount [-fv] special | nodeAaF:fh:t:vfstab reading failure%s:%.*s%s: statfs%s/..%s: stat%s: unknown file systemcan't get net id for hostFSID:%d:%dunmount of %s failed%s: unmount from %s udpRPCPROG_MNTRPCMNT_UMOUNTcalloc/var/db/mounttab%ld %s %s can't open %s can't write to %swrite mounttab entry %s:%scan't remove %s by hostdelete mounttab entry%s %s:%sbad mounttab %s field '%s'===============================================================================||}}E}v}}}}Copyright (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.eeHOME/rootLANGzh_TW.big5~/.init.ee%s.old%s %d <>!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: HELPWRITEREADLINECHARACTERREDRAWRESEQUENCEAUTHORNOCASENOEXPANDEXITQUITNOINFONOMARGINSNOAUTOFORMATPRINTCOMMANDRIGHTMARGINNOHIGHLIGHTNOEIGHTBITemacs key bindings NOEMACSsave editor configurationsave ee configurationsave in current directorysave in home directoryee configuration not saved^^more^^VVmoreVV16 bit characters NO16BITĒ!.;BO!.;BOABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/RT RTTTTTTTTTTRTTTTTTTTTTTTRT#STSTSTsTTTTTTTTTTT1RTT@RRRaRpRTRTTTTRR S2ShSTS;T]T KMGTP***************************************************************************************************************************************************************************************************************************************pppppppppppppppppppppppppppppptenex EOF received; %s aborted %s %s [anpqy?]? Interactive mode: off. %s aborted. usage: %s [ | %s: unknown mode. TYPE %s %sTYPE %susage: %s usage: %s mode-name usage: %s format usage: %s struct-mode local-fileremote-fileSTOUSTORAPPElocal-filesusage: %s local-files mputContinue with%s: not foundr+local: %sRETRremote-filesusage: %s remote-files mregetmgetusage: %s localfile Cannot open source file %s and logged inConnected %sto %s. Not connected. No proxy connection. (none)Case: %s; CR stripping: %s. Ntrans: (in) %s (out) %s Ntrans: off. Nmap: (in) %s (out) %s Nmap: off. Use of PORT cmds: %s. Command line editing: %s. 20030731bNetBSD-ftpVersion: %s %s Macros: usage: %s [ on | off ] %s %s. Bell modeEditing modePacket tracingHash mark printing %s (%d bytes/hash mark)Verbose modeUse of PORT/LPRT cmdsProgress barInteractive modeGlobbingPreserve modification times%s: bad debugging value. Debugging %s (debug=%d). remote-directoryusage: %s remote-directory XCWD %susage: %s [local-directory] Local directory now %s getcwd: %susage: %s remote-file DELE %susage: %s [remote-files] mdeletefrom-nameto-nameusage: %s from-name to-name RNFR %sRNTO %sMLSDnlistNLSTLISTusage: %s [remote-path] pagermoreoutput to local-file:mlsusage: %s [command [args]] Try again laterusernameUSER %sPassword: PASS %sAccount: ACCT %sLogin failed. XPWDLocal directory %s getcwddirectory-nameusage: %s directory-name XMKD %sXRMD %scommand line to sendusage: %s line-to-send arguments to SITE commandSITE usage: %s mode remote-file SITE CHMOD %s %susage: %s [umask] SITE UMASKSITE UMASK %susage: %s [seconds] SITE IDLESITE IDLE %sHELP %susage: %s [password] Account:usage: %s command ?Ambiguous command. ?Invalid command. ?Invalid proxy command. Case mappingCarriage Return strippingNtrans off. Nmap off. mapoutusage: %s [mapin mapout] nmap: unbalanced brackets. EPSV/EPRT on IPv4Store uniqueReceive uniqueCDUPXCUPusage: %s [restart-point] restart: Invalid offset `%s' No restart point defined. SYSTmacro nameusage: %s macro_name %s %lld %s %susage: %s [remote-file] STATSTAT %susage: %s local-file usage: %s size sndbufrcvbufxferbuf%s: size must be positive. usage: %s [option value] %-*s %s No such option `%s'. Setting `%s' to `%s'. usage: %s option Unsetting `%s'. FEATMLSTMLST %susage: %s command [options] OPTS %sOPTS %s %saccountbyecdupnrdisconnectepsv4featuresfgetformglobhashidlelcdlesslpagelpwdmacdefmlstmodtimemsendnewernmapntranspassivepdirplspmlsdpreservequoterecvremoptsrhelprstatusruniquesendportsitestructsuniquethrottletraceumaskunsetusageanonpassftp_proxyhttp_proxyno_proxyrpromptunknown complete type `%c'usage: %s macro_name [args] '%s' macro not found. auth_url: challenge `%s' Basicrealm="Username for `%s': http://ftp://file://Invalid %s `%s'Unknown port `%s' in %s `%s'localhostgot savefile as `%s' copiedCannot open file `%s'Can't lseek to restart `%s'Copying %s (restarting at %lld)retrievedproxy URLMalformed proxy URL `%s'Trying %s... Can't create socketConnect to address `%s'Can't connect to %sRequesting %s (%svia %s:%sGET %s HTTP/1.0 Pragma: no-cache GET %s HTTP/1.1 Host: [%s]Host: %s:%uAccept: */* Connection: close Range: bytes=%lld- restarting at %lldCache-Control: no-cache FTPUSERAGENTUser-Agent: %s User-Agent: %s/%s %swith authorization%swith proxy authorizationProxy-Authorization: %s Writing HTTP requestReceiving HTTP replyreceived `%s' Content-Length: parsed len as: %lld Content-Range: bytes parsed range as: %lld-%lld/%lld Last-Modified: %a, %d %b %Y %H:%M:%S GMT%a, %d-%b-%y %H:%M:%S GMT%a, %b %d %H:%M:%S %Yparsed date as: %sLocation: parsed location as: %s Transfer-Encoding: chunkedusing chunked encoding Proxy-Authenticate: parsed proxy-auth as: %s WWW-Authenticate: parsed www-auth as: %s Redirected via %s Redirected to %s Error retrieving file - `%s'Unknown error retrieving fileCan't run `%s'already done Can't open `%s'got chunksize of %lld Reading fileWriting `%s'Improper response from `%s' HTTP fetch aborted. Invalid URL `%s';type=a;type=i;type=d*?[]{}dir `%s', nextpart `%s' about:tnftplukemnetbsdversionVersion: %s %s%s auto_put: target `%s' connect to address %sgetsocknamesetsockopt TOS (ignored)fdopen failed.Connected to %s. ---> PASS PASS XXXXACCT ACCT XXXX%c%c%c%s: receive sendsentlocal: %s %s: not a plain file. REST %lldnetoutreceivednetin%s: short writesetsockopt (ignored)EPSVPASVLPSVPassive mode refused. %u,%u,%u,%u,%u,%u,%u,%u,%u%c%c%c%d%cparse error! setsockopt (reuse address)listenEPRT |%d|%s|%s|PORT %d,%d,%d,%d,%d,%dacceptNo primary connection. PORT %slocal: %s remote: %s %cABOR FTPSERVERPORThttpftpgateNETRC$NETRC `%s': %scan't create socketFTPMODEactivepftpgate-ftpFTPSERVERTERMdumbbad quit value: %sbad retry value: %s-Tbad throttle value: %s46AadefginN:o:pP:q:r:RtT:u:vVanonymous/.netrc%s/.netrc: %sFTPANONPASSPAGERftp> FTPPROMPTFTPRPROMPTRetrying in %d seconds... no such option `prompt'no such option `rprompt'sorry, input line too long. usage: %s [command [...]] Proxy c?Ambiguous %s command `%s' ?Invalid %s command `%s' setupoption() %3d%% |%.*s%*s| %5lld %c%c %3lld.%02d %cB/s --:-- ETA - stalled -%2d:%02d:%02d ETA%lld byte%s %s in %d day%s %02d:%02d (%lld.%02d %cB/s) ETA: %02d:%02d (stalled)passwordpasswdmachine4K macro buffer exceeded. Unknown .netrc keyword %susage: %s host-name [port] non-printstreamMDTMREST STREAMTVFSRemote system type is %s. 215 UNIX Type: L8215 TOPS20features[FEAT_FEAT] = %d features[FEAT_MDTM] = %d features[FEAT_MLST] = %d features[FEAT_SIZE] = %d features[FEAT_TVFS] = %d Name (%s:%s): Name (%s): Password:Login failed.$initsorry, arguments too long. (%s) ftpXXXXXXXXXXSIZE %sMDTM %s191Converted to `%s' %04d%02d%02d%02d%02d%02dCan't parse time `%s'. got remotepwd as `%s' emacsftp-complete^Iunable to set sndbuf size %dunable to set rcvbuf size %disipv6addr: got %d for %s Prompting off for duration of %s. confirmation options: a answer `yes' for the duration of %s n answer `no' for this file p turn off `prompt' mode q stop the current %s y answer `yes' for this file ? this help list Using %s mode to transfer files. internal error: unknown type %d.We only support %s mode, sorry. We only support %s format, sorry. We only support %s structure, sorry. usage: %s local-file [remote-file] usage: %s remote-file [local-file] Restart is not supported by the remote server. Connected for proxy commands to %s. Gate ftp: %s, server %s, port %s. Passive mode: %s; fallback to active mode: %s. Mode: %s; Type: %s; Form: %s; Structure: %s. Verbose: %s; Bell: %s; Prompting: %s; Globbing: %s. Store unique: %s; Receive unique: %s. Preserve modification times: %s. Hash mark printing: %s; Mark count: %d; Progress bar: %s. Get transfer rate throttle: %s; maximum: %d; increment %d. Put transfer rate throttle: %s; maximum: %d; increment %d. Socket buffer sizes: send %d, receive %d. (disabled for this connection)Use of EPSV/EPRT cmds for IPv4: %s%s. usage: %s [ on | off | bytecount ] mark: bad bytecount value `%s'. usage: %s [ on | off | gateserver [port] ] Disabling gate-ftp mode - no gate-ftp server defined. usage: %s [ on | off | debuglevel ] CWD command not recognized, trying XCWD. MLSD is not supported by the remote server. usage: %s [remote-path [local-file]] usage: %s remote-files local-file usage: %s username [password [account]] EOF received; login aborted. PWD command not recognized, trying XPWD. MKD command not recognized, trying XMKD. RMD command not recognized, trying XRMD. usage: %s [inchars [outchars]] usage: %s [ on | off | auto ] usage: %s (all|get|put),maximum-bytes[,increment-bytes]] usage: %s (all|get|put) [maximum-bytes [increment-bytes]] CDUP command not recognized, trying XCUP. Restarting at %lld for next get, put or append Limit of 16 macros have already been defined. Enter macro line by line, terminating it with a null line. macdef: end of file encountered. Macro not defined - 4K buffer exceeded. Local file "%s" is newer than remote file "%s". FEAT is not supported by the remote server. MLST is not supported by the remote server. OPTS is not supported by the remote server. Must be logged in to complete. Unsupported WWW Authentication challenge - `%s'parse_url: invoked with NULL argument!Invalid address `%s' in %s `%s'Invalid IPv6 address `%s' in %s `%s'parse_url: user `%s' pass `%s' host %s port %s(%d) path `%s' No support for non local file URL `%s'Invalid URL (no file after host) `%s'no file after directory (you must specify an output file) `%s'Scoped address notation `%s' disallowed via web proxyReceived unexpected Content-Range headerBogus transfer encoding - `%s' (fetching anyway)Not expecting partial content headerNo redirection Location provided by serverToo many redirections requestedNo authentication challenge provided by serverAuthorization failed. Retry (y/n)? Size of `%s' differs from save file `%s'Can't change modification time to %sUnsupported transfer encoding - `%s'Unexpected EOF reading chunksizeUnexpected data following chunksizeUnexpected data following chunkDirectory listing via a URL is not supportedInvalid suffix `%s' in URL `%s'fetch_ftp: user `%s' pass `%s' host %s port %s path `%s' dir `%s' file `%s' Can't connect or login to host `%s'fetch_ftp: unknown transfer type %d ftp: The `CWD ' command (without a directory), which is required by RFC 1738 to support the empty directory in the URL pathname (`//'), conflicts with the server's conformance to RFC 959. Try the same URL without the `//' in the URL pathname. This version of ftp has been enhanced by Luke Mewburn 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/ `%s' is an interesting topic. auto_put: URL `%s' argv[2] `%s' No control connection for command.421 Service not available, remote server timed out. Connection closed 421 Service not available, user interrupt. Connection closed. 421 Service not available, remote server has closed connection. aborted. Waiting for remote to finish abort. abortxfer called with unknown direction `%s'WARNING! %d bare linefeeds received in ASCII mode. File may not have transferred correctly. Can't change modification time on %s to %suse of scoped address can be troublesomewrong server: return code must be 229 disabling epsv4 for this connection wrong server: return code must be 227 wrong server: return code must be 228 %u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%u,%uPassive mode address scan failure. Shouldn't happen! Passive mode AF mismatch. Shouldn't happen! LPRT %d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%dproxy server does not support third party transfers. runique: can't find unique file name. remote abort aborted; closing connection. Lost control connection for abort.unable to get default rcvbuf sizeunable to get default sndbuf sizeunknown $FTPMODE '%s'; using defaultsNeither $FTPSERVER nor GATE_SERVER is defined; disabling gate-ftp%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 [...] %s: transfer aborted because stalled for %lu sec. xsignal_restart called with signal %dMissing macdef name argument. Error: .netrc file is readable by others.Remove account or make file unreadable by others.Macro definition missing null line terminator. Remove password or make file unreadable by others.Already connected to %s, use close first. gateserver not defined (shouldn't happen)Connecting via pass-through server %s Remember to set tenex mode when transferring binary files from this machine. features[FEAT_REST_STREAM] = %d ftp_login: user `%s' pass `%s' host `%s' unable to create temporary file %scan't find list of remote files, oops. can't find list of remote files, oops.SIZE 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 copy$tI                         /            ? N]ly           ''r'r7Trrrrrrrrrrrrrrrrrrrrrrrrrrrr ;; ;;;;;;;;;;;;;;;;;;; ;;;;;;   ;;; mmmmmmm:wmmm23Z-<K kRS7    %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 optionsdontwillwont?Need to be connected first.'send ?' for helpbuffer, if this might help.)SENT"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 set to "%s". %s character is '%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 informationwon't%-15s [%s] %-15s "%s" ?Ambiguous argument '%s'. ?Unknown argument '%s'. new escape character: Fork failed ExeclConnection closed.fromquitimportcheckundefineunexportSend an environment variableonly DISPLAYunix:USERLOGNAMEPRINTER%c %-20s %s notmuchLocalNo%s line editing %s catching of signals Catching signals locallyRemote%s character echo %s flow control No connection.Escape character is '%s'. ?Already connected to %s (to) -aBad source route option: %s setsockopt (source route)telnet: socketlogouttoggleslcenvironopie%s> ?Ambiguous command?Invalid command?Ambiguous help command %s ?Invalid help command %s /.telnetrc?Ambiguous command: %s ?Invalid command: %s [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-PORTKERMITSYNCHRPLNEXTFORW1FORW2MCLMCRMCWLMCWRMCBOLMCEOLINSRTOVERECREWREBOLEEOLCannot open %s. (standard output)%c 0x%x %c%.2x%s IAC %s%s IAC %d%s %s EXOPL%s %d %dresp DO_DONT %s: %d resp DO_DONT %d: %d want DO %s want DO %d want DONT %s want DONT %d DO %s DO %d resp WILL_WONT %s: %d resp WILL_WONT %d: %d want WILL %s want WILL %d want WONT %s want WONT %d WILL %s WILL %d %s IAC SB (terminated by %d , not IAC SE!) (Empty suboption???)TERMINAL-TYPE TERMINAL-SPEED (empty suboption???) IS SEND %d (unknown) ?%d?TOGGLE-FLOW-CONTROL OFF ON RESTART-ANY RESTART-XON %d %d (%d)LINEMODE WILL WONT DO DONT (no option???)Forward Mask %xSLC NOSUPPORT CANTCHANGE VARIABLE DEFAULT|FLUSHOUT|FLUSHIN|ACK %d;(no mode???)|LIT_ECHO|SOFT_TAB|TRAPSIG|EDIT (0x%x) ?0x%x? IS IS %s %d SEX-DISPLAY-LOCATION IS "%.*s"NEW-ENVIRON SEND INFO " VALUE " VAR " ESC " USERVAR " %03o %s (unknown) %02xSend Telnet 'Go Ahead' sequenceSend Telnet End of File CharacterPerform Telnet 'Synch operation'need at least one argument for 'send' commandNeed %d argument%s to 'send %s' command. 'send %s ?' for help. 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 networkUnknown send argument '%s' 'send ?' for help. Ambiguous send argument '%s' 'send ?' for help. Telnet 'send' error - argument disappeared! usage: send %s '%s': ambiguous argument ('send %s ?' for help). '%s': unknown argument ('send %s ?' for help). '%s': bad value ('send %s ?' for help). Will send carriage returns as telnet .Will send carriage returns as telnet .Already operating in binary mode with remote host.Negotiating binary mode with remote host.Already in network ascii mode with remote host.Negotiating network ascii mode with remote host.Already receiving in binary mode.Negotiating binary mode on input.Already receiving in network ascii mode.Negotiating network ascii mode on input.Already transmitting in binary mode.Negotiating binary mode on output.Already transmitting in network ascii mode.Negotiating network ascii 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 trafficNeed an argument to 'toggle' command. 'toggle ?' for help. '%s': ambiguous argument ('toggle ?' for help). '%s': unknown argument ('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'. '%s': unknown argument ('set ?' for help). Format is 'set togglename [on|off]' 'set ?' for help.Format is 'set Name Value' 'set ?' for help.'%s': ambiguous argument ('set ?' for help). Need an argument to 'unset' command. 'unset ?' for help. '%s': unknown argument ('unset ?' for help). '%s': ambiguous argument ('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 argumentUnknown mode '%s' ('mode ?' for help). Ambiguous 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': unknown argument ('slc ?' for help). '%s': ambiguous 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 an argument to 'environ' command. 'environ ?' for help. '%s': unknown argument ('environ ?' for help). '%s': ambiguous argument ('environ ?' for help). Need %s%d argument%s to 'environ %s' command. 'environ ?' for help. Cannot send '%s': Telnet ENVIRON option not enabled Cannot send '%s': variable not defined Operating with LINEMODE optionOperating in obsolete linemodeOperating in single character modeusage: %s [-l user] [-a] [-s src_addr] host-name [port] hostname too long for unix domain socket: %stelnet: setsockopt (IP_TOS) (ignored)Unable to connect to remote hostConnection closed by foreign host. 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]%s: Warning: -S ignored, no parsetos() support. %s: Warning: -f ignored, no Kerberos V5 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. 468EKLNS:X:acde:fFk:l:n:rs:t:uxysleep(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).WenyHLPRfhv: %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 ...G:g:u:no such group `%s'no such user `%s'setgroupssetgidsetuidtoo many supplementary groups providedusage: chroot [-g group] [-G group,group,...] [-u user] newroot [command] _HiStOrY_V2_ P$^tdͿ@B)''M(c(n(X((|('(%()1) ))((((unknown 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 default*?_-.[]~=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'. EEE F#F#F#F#F#FFFFELFfF}FFF.GxG>GPGxGxGxGxGxGxGxG]G.G/.editrc<L>C8>,8;6699T9=\:D?4C;>B:l;p>HA?>|>:t==h=====L=XNPLJJdPMPQpQKKOPHMLPPPMK, T@8 P|8l\l <p,0t,F G`I1J>[DnE{8 9@OPS %T8R:c|?6`7<>U XY0;`@ZH=\B kA}RQMNC@HV#W3K@GL['m&@5,-%@)04#@.1 $(5R3h/u2@$*+ 9Ma   `  @ 'B"Plz4!G [w  ` 8 O`fs%-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""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""ggggbggggggmmmmmmmm*mmmmHmm mm4mttt$u}tMtutittfwdbck'8͇8͇888888888888888888888888888888888 j-  4AT b.t'D."-0*@KZn!p܋}a@J++ 47 M`ctwV0  W[1~[4~OAOBOCODOHOF%s %d $$$$$$$%@,3:@%@,3 :a@%,3: = =,A"'B" """"AHOV]c j@pv|  @ @N!(/@6@> FMT [bmwVpˌg @̹p @PJ׌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. $$ht$$DhDump of gctl request at NULL Dump of gctl request at %p: error: "%s" error: NULL param: "%s" (%d) [%s%s%d] = "%s"%d] = 0] = %pCould not allocate memoryNULL request pointer/dev/geom.ctlcan't allocate %u bytes: %sexec file name too longbad flags arg/dev/mem/dev/kmeminvalid address (%x)kvm_readshort readkvm_writekvm_write not implemented for dead kernelscannot allocate vmkernbasebad namelistcannot read IdlePTDcannot read PTDvatop called in live kernel!_kvm_vatop: lseek_kvm_vatop: read%03d(((((((((((((((((((((((((((((((((((((((((Q((Z((("3((((((((((((((((((((((((((((((((((((((((((((((((((((((((Error opening terminal: %s. ESCDELAYbwxbxshcdamimshzxonxHCNRNPhlYAYBYCYDYEYFYGNllhlwMWCoNCYaYbYcYdYeYfYgYhYiYjYkYlYmYnBTYoYpCCCMvshdtimhmkmraei1i3kbkakCktkDkLkMkEkSk0k1k;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%i%j!1!2!3RFF1F3F4F5F6F7F8F9FAFBFCFEFGFHFIFJFKFMFNFPFQFUFVFWFXFZFaFbFcFdFeFfFgFhFiFjFkFlFmFnFoFpFqFrcbMCMLMRLfDKCWWGHUQDTOPUfhPAWAu0u2u3u4u5u6u7u8u9IcIpSfSbZAZBZCZDZFZGZHZIZJZKZLZMZNZOZPZQZRZSZTZUZVZWZXZYZZZaZbZcZdZeZfZgZhZiZjZkZlZmZnZoZpZqZrZsZtZuZvZwZxZyKmMiRQGmdvciXyZzYvYwYxYyYzYZS5S6S7S8XhXlXoXrXtXvsAsLbx7V0:=Z(@A#CFI1@LORE(UX[TCy^^adgjmps1WN/ q/.X.6vy|;M%5/:/S/X/]/"E5j- -3XߝaRUt\* .܋6P.n!@3'$D"  `!$'*--0-0"369<?BEHK *NJ+N++Q4T W+Z]`Xqw}̓6Swԓۓ.Jcfilorux{~t  #ua&),/258;>ADhMGJMPSVY\_behknqtwz}"v+\"#  ι"%@(+.147:=@CFILORUX[^adgjmpsvy|7S.x)|))W /A%D/b/v/{////////////NCURSES_NO_PADDINGCOLORFGBG[3%p1%dm[3%?%p1%{8}%>%t9%e%p1%d%;m[4%p1%dm[4%?%p1%{8}%>%t9%e%p1%d%;mp o o o  p 8p x2d2d2dJ2d<2d,2d2d  Out of memoryy     y W   y y  y  y             y y y   y              y T              y         T      y   5           c y  y ʗ $ $ $ Վ T Ǒ $ $ % U $  $  $ $ $ $ $ $ $ $ $ $ $ $   a $ $  $ $ $ $ $ $ $ $ $ $ $ $ $   $ $ $ $ $ $ $  $ $ $ $ $ " $ $ $ $    $  $ g $ $ w  $   $ $   $ $ $  $ $   $  <   <           љ                                          ʙ           ʙ ʙ           ʙ    ʙ     ʙ NCURSES_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/termcap2Kn,X   `  %KName 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""" Xj-"")"""""D".#X ##%#J#a#  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@%&*!#                                                                                                            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 linexsbxhpxenlmsgresloknxonmc5ichtsnrrmcnpcndscrcccbcehlsxhpacrxmdaisyxvpasamcpixlpixxmcwslnlabwnumncvbufszspinvspinhmaddrmjumpmcsnpinsorcorlorhiorvicpswidcsbtnsbitwinbitypecsrcmdchcivismrcupcnormcvvisdslsmacsblinksmcupsmdcdimsmirinvisprotsmulechrmacssgr0rmdcrmsormulflashfslis1is2is3kbsktbckctabkf0kf1kf10kf2kf3kf4kf5kf6kf7kf8kf9kllknpkppkindkrirmkxsmkxlf0lf1lf10lf2lf3lf4lf5lf6lf7lf8lf9rmmsmmpadindnrinpfkeypflocpfxmc0mc4mc5rs1rs2rs3windtsliprogka1ka3kb2kc1kc3mc5prmpacscplnsmxonrmxonsmamrmamxoncxoffcenacssmlnrmlnkbegkcankclokcmdkcpykcrtkendkextkfndkhlpkmrkkmsgkmovknxtkopnkprvkprtkrdokrefkrfrkrplkrstkresksavkspdkundkBEGkCANkCMDkCPYkCRTkDCkDLksltkENDkEOLkEXTkFNDkHLPkHOMkLFTkMSGkMOVkNXTkOPTkPRVkPRTkRDOkRPLkRITkRESkSAVkSPDkUNDrfikf11kf12kf13kf14kf15kf16kf17kf18kf19kf20kf21kf22kf23kf24kf25kf26kf27kf28kf29kf30kf31kf32kf33kf34kf35kf36kf37kf38kf39kf40kf41kf42kf43kf44kf45kf46kf47kf48kf49kf50kf51kf52kf53kf54kf55kf56kf57kf58kf59kf60kf61kf62kf63el1mgcsmglsmgrflnsclkdclkrmclkcwinwingohupqdialpulsewaitinitcinitpscpsetfsetbcpilpichrcvrdefcswidmsdrfqsitmslmsmicmsnlqsnrmqsshmssubmssupmsumrwidmritmrlmrmicmrshmrsubmrsupmrummhpamcud1mcub1mcuf1mvpamcuu1pordermcudmcubmcufmcuuscssmgbsmgbpsmglpsmgrpsmgtsmgtpsbimscsdrbimrcsdsubcssupcsdocrzeromcsnmkmousreqmpgetmsetafsetabpfxldevtcsins0dss1dss2dss3dssmglrsmgtbbirepbinelbicrcolornmdefbiendbisetcolorslinesdispcsmpchrmpchsmscrmscpctrmscescscesaehhlmelhlmelohlmerhlmethlmevhlmsgr1slengthOTi2OTrsOTugOTbsOTnsOTncOTdCOTdNOTnlOTbcOTMTOTNLOTdBOTdTOTknOTkoOTmaOTptOTxrOTG2OTG3OTG1OTG4OTGROTGLOTGUOTGDOTGHOTGVOTGCmemlmemubox1BOAT&TCICVXSEEXENIXGSCFCOHMLDPNPSG6G7G8GrGuGdGhGvGcGGkqIBMIRISKATekKBKCKDKEKFBCfont0font1font2font3kbtabksel7V0&(*(.(Z(@A # C  " 3(18(L*>(C(H(M(S(W(](a(e(i(n(s( y(!~("(#($aA.(X.((y |  (  H((.(((((M(((((((((( D"E().-( 3 I" o ) # ))# #)""))%)F+)1)6):)?) E)!"ڋ#J)$O)%S)&Y)'1(^))"*c)+h),m)-3.s)/w)0{)1;)2L$3#4"5"6)7)8"9b):";"<"=">"?X@)A)B)C)D)E)F)G=)H)I)J)K"L"M"N #O)P)Q)R#S)T7)Ui#V#WQ)X)Y)Z)[)\)])^!)_)`)a)b*c^*d *e*fg*hZij-kl*mFn-o-p*q-r *s3&*t,*u0*v4*w8*x.y<*z@*{D*|~}̓~-w4(I(H**M*fQ*W*[*_*c*g*k*p*t*y*"}***************6*#****F******++ +++P+!+&+++0+5+:+e?+D+I+M+Q+V+[+`+e+j+o+ #t+Hy+~++++++++++++++++++++++++++ +!+",# ,$,%,&,,(",)',*,,+1,,6,-;,.@,/E,0J,O,2T,3Y,4^,5c,6h,7m,8r,9w,:|,,<,=,>,?,@,A,B,C,D,, F, G, H, I, ,,O,L,,,,,%,,B,c-MX-"# !"#$%& ' (ι)* -+-,---.E"-/'-0+-1/-23-37-4<-5B-6H-7M-8Q-9W-:\-;b-<Ng-=m->s-?w-@}-A-B-C-Dp-E-F-G-H-I-J-K5-L-M/-N-O-P-Q-R-S-T-U-V-W-X-Y.Z .[X.\.].^|._$.`).a/.b[4.cd:.e@.fWE.gK.hQ.iV.j[.k`.le.mj.nmo.ot.pz.q.r.s.t.u.v.w.x.yt.z.{.|.}R.~........// ////!$/%)/&./'3/"8/#=/B/ G/(L/)Q/$V/%[/&`/e/j/*o/+t/y/~////////</y///,F<E<:684DC@D14A8;3<F06B$BA0E>dAG BE9(2845T6F @,1`6D09l6@ 1<LG@3;4?|867<9E:F@L;<60B(8T92;x0ACA2,7X8BHBBCP=2BB2`3@t:4D693C44\145l0A@A@21hCFDC@A=$<@h=EDG$?P@pAAG1<:4GP4ECh:,@@FD316\4pGpD9h@68H9D7<DFlB5DBtFXAG9=\F0181P7\@A,::`0 :DF(D F7DCC?@ABCDEF G HIJK`LMNOP!Q$RS'T*U-V-W0X-Y0Z"[3\#]6^9_<`?aBbEcHdKe *fxNghJ+iN+j+klQmno4poTq rWs+tZuv]w`xXyqzw{}|}̓~6Swԓۓ.Jcfilorux{~%u~ttamd v`W  #ua&),/258z;>ADhM.G'JMPXS(VY\/_be5h6k7n8q9t:;w<z=>}?@"ABv+DE^     \"# !"#$%& ' (ι)*+,-./01"2%3@4(50+6.718497::;=<@=C>F?I@LAOBRCUDgXE[Fh^GaHdIgJjKmLpMsNvOyP|QRSTUVWXYZ[\]^_`abcdef7ghS.ijklx)mC|)n)opUWqrstuvwxyz{ |}e~fghi/A%!%&1'5/":/#%D/W(N/)S/$X/%]/&b/{ *q/+v/{////////////0o. 0D0" 0J0Q+ 0string too complex to convertI'm confused%'%{string may not be optimal%Pa%ga%{96}%^%{127}%^saw %%r twice in %ssaw %%m twice in %ssaw %%n twice in %s%{10}%/%{16}%*%{10}%m%+%{2}%*%-%?%>%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 %s& p* p* p* p* p* ]) p* ) ) p* ) p* ) * p* p* (' p* }' p* p* p* p* p* ' p* p* p* (' p* }' p* p* p* p* p* p* p* p* p* p* p* p* p* p* p* p* p* p* p* p* p* p* p* c* p* p* p* p* ' [* p* 3* p* P* p* p* ' p* p* p* & & p* p* p* & ) ( ( .) ( .) ( .) .) .) .) .) .) .) .) .) .) .) .) .) ( 1 02 02 02 02 02 02 02 02 02 02 +1 +1 +1 +1 +1 +1 +1 +1 +1 +1 02 02 02 02 02 02 02 02 02 02 02 02 02 02 02 02 02 02 02 02 02 02 02 02 02 02 02 02 02 02 02 02 02 02 02 02 02 02 02 02 02 1 1 02 02 02 02 2 02 02 02 02 02 02 1 02 02 1 `~@~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~[~\~]~^~_=========`====================D=HA>/ ҌUK>^5dT{=P!%M8,=Q^4qr4_yB~/!\w yAIR 6=v@BDFHJLNPRTVXZ\^`bdfhjlnprtvxz|~\%03lo(null)(cancelled), line %d, col %d, terminal '%s'auto_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_17V0&(*(.(Z(@A#C"3(18(L*>(C(H(M(S(W(](a(e(i(n(s(y(~((($/)/./G/L/j/o/݊ڌ"3@LJZmzʋߋ)7CZevŌՌ 0HYmaA.(X.((y|(H(((((((M((((((((((/3/8/Q/V/[/aAӍ)9DN]m~ώގ(3BJ^mΏ"E().-(3"o) # ))# #)""))%)F+)1)6):)?)E)ڋJ)O)S)Y)1^)"c)h)m)3s)w){))$#""))")"""""X)))))))))))""" #)))#))##)))))))))))** ***Z-*F--*- *&*,*0*4*8*.<*@*D*̓-w4(I(H**M*fQ*W*[*_*c*g*k*p*t*y*"}****************#**********++ ++++!+&+++0+5+:+?+D+I+M+Q+V+[+`+e+j+o+#t+y+~+++++++++++++++++++++++++++, ,,,,,",',,,1,6,;,@,E,J,O,T,Y,^,c,h,m,r,w,|,,,,,,,,,,,,,,,,,,,,,,,,,,B,c-MX-"#  ι ----"-'-+-/-3-7-<-B-H-M-Q-W-\-b-g-m-s-w-}-------------------------. .....$.)./.4.:.@.E.K.Q.V.[.`.e.j.o.t.z......................// ///=/B/`/e/t/y/~//////////// ՝(:IUar~ÐҐc*:HZi{ɑޑ!2CVjwÒԒ%-5=DKSZahov}ƓГדޓ$+29@GN-Fe:U^oȔԔu^(6DO ^jy_&ȕՕߕ ",5DR`m{ŖΖٖ$-6BOYbp|Ɨҗߗ",6@JR\is}ŘИژ'/7?GOW_gowǙϙיߙ'/7?GOW_gow͚ޚ*1<c-GR^hntz˛ۛ,<LXnԜ'9N`sϝ!/?O`n~Ҟ'9Net͟ޟ)6DRcuȠנ "6IYiz̡ޡ#1DXp~Ģ֢͢ invalid hostname/var/log/wtmp\\#0123456789%s: illegal option -- %c %s: option requires an argument -- %c %m/%d/%y%Y-%m-%d%H:%M%H:%M:%Sj Tx Tx Tx Tx Tx Tx Tx Tx Tx Tx Tx Tx Tx Tx Tx Tx Tx Tx Tx Tx Tx Tx Tx Tx Tx Tx Tx Tx Tx Tx Tx Tx Tx Tx Tx Tx j Tx Tx Tx Tx Tx j Tx Tx Tx Tx Tx Tx Tx Tx Tx Tx Tx Tx Tx Tx Tx Tx Tx Tx Tx Tx Tx )p s j tk k k Tx Hn Hn Tx Tx Tx l Tx k Tx Tx k l k p Tx p k u lw Tx Tx Tx Tx Tx Tx )p s `k r r Tx Tx s Tx 5l Hn Hn tt Tx Tx ro Tx k u Tx Tx Tx q l u shut 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 ***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[:<:]][:>:]]߲    #                                                   A L                               j   )   @   J   a      \ \ \ \ \ l k  \ \ \ \ \ \ # : MAC_CONFFILE/etc/mac.confdefault_labelsdefault_ifnet_labelsdefault_file_labelsdefault_process_labelsifnetpacket.=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 ownerPOSIXUS-ASCII     0 @ P ` ` ` ` ` ` ` k k k k k k k v v v v v v v v v v v v                          0%X        |  d   p                     2     0 T  ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ]  ] ] ] ] ] ] ] ] ] ] ] D D D D D D D D ] ] ] ] ] ] ] ] ] ] ] ] ]  ] ] ] ] ] ] ] T ] ] ] ] ] ] ] ] ] ] ] ] ] ] = ]  ] ] z r ] ] ]  ] ] ] ] ] ] ] b ] ] ] j   ]  nosappndnosappendnoarchnoarchivednoschgnoschangenosimmutablenosunlnknosunlinknosnapshotnouappndnouappendnouchgnouchangenouimmutablenodumpnoopaquenouunlnknouunlink ,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 2,}#'ˌ+/4d8=̹AFKPUX]binty~$0;Pcmw+?U                                                  d p       BLOCKSIZE%s: unknown blocksizemaximum blocksize is %ldGminimum blocksize is 512%ld%s-blocks/boot/kernel/kernel/etc/fstabPATH_FSTABfstab: /etc/disktabremovablesimulateddtsukern.devname#NODEV#%c:%d:0x%x_COMPAT_FreeBSD_4/etc/compat-FreeBSD-4-util@(#)strftime.c 7.38Wx ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ _x x y Gy vy y { y y ~ ~ ~ Vz ~ y ~ ~ z z ={ c{ { } \} } } ~ ~ ~ ~ ~ ~ x x 0y Zy y ~ { x ~ z z )z lz z ~ z ~ z { P{ { | F} s} } ~ %04d%e-%b-%Y/usr/bin/rshrcmdsh: unknown user: %s rcmdsh: getaddrinfo: %s rcmdsh: socketpairrcmdsh: fork failedrcmdsh: dup2 failedrcmdsh: setuid(%u): %s rcmdsh: execlp %s failed: %s rcmdsh: fork to lose parent failed%s.dbK i n d Z n n n n n n n U n n n _ n P n n n n n n n n n n n n n K i n d Z n n n n n n n U n n n _ n P /usr/bin:/binexecvP: : path too long E E  E E E E ƞ ܝ E E E ƞ E E E E E E E  E E E E E ƞ E E E E E E E E E E E E E E E E E E E E E E E E E E E E E E E E E E E   Internal ypbind errorDomain not boundUnknown ypbind error: #%d /var/yp/binding%s/%s.%dclnttcp_createclntudp_createfcntl: F_SETFDyp_match: clnt_callyp_first: clnt_callyp_next: clnt_callclnttcp_create failedyp_all: clnt_callyp_order: clnt_callyp_master: clnt_callyp_maplist: clnt_callRequest arguments badRPC failureNo such key in mapYP server errorCan't communicate with ypbindCan't communicate with ypservLocal domain name not setServer data base is badAccess violationDatabase is busyYP unknown error %d System resource allocation failureYP: server for domain %s not responding, retrying Can't bind to server which serves this domainNo such map in server's domainLocal resource allocation failureNo more records in map databaseCan't communicate with portmapperYP server version mismatch - server can't supply service. ó ͳ Գ ۳          ! ( / clnt_sperrorl l l   l D  l D l l l l l l l l clnt_perror8Lcr@ ">clnt_spcreateerror< < < < < < < < < < < <  < й < < < clnt_pcreateerrorrrpch != NULL; errno = %s; why = ; s1 = %u, s2 = %uRPC: SuccessRPC: Can't encode argumentsRPC: Can't decode resultRPC: Unable to sendRPC: Unable to receiveRPC: Timed outRPC: Authentication errorRPC: Program unavailableRPC: Program/version mismatchRPC: Procedure unavailableRPC: Remote system errorRPC: Unknown hostRPC: Port mapper failureRPC: Program not registeredRPC: Unknown protocolRPC: (unknown error code) - Authentication OKInvalid client credentialServer rejected credentialInvalid client verifierServer rejected verifierClient credential too weakInvalid server verifierFailed (unspecified error)/usr/src/lib/libc/rpc/clnt_perror.c(unknown authentication error - %d); low version = %u, high version = %uRPC: Incompatible versions of RPCRPC: Server can't decode argumentsRPC: Failed (unspecified error)Could not get %s transportloopbacksvc%s_create: could not open connection%s: %srpc_reg: can't find appropriate transportcan't get protocol infounsupported transport sizeout of memory%s can't reassign procedure number %u%s couldn't register prog %u vers %u for %s%s cant find suitable transport for %srpc: rpc_reg trouble replying to prog %u vers %urpc: rpc_reg: never registered prog %u vers %unetpathsvc_sendreply failedsvc_create: unknown protocolsvc_create: no memorysvc_create: could not register prog %u vers %u on %ssvc_tp_create: invalid netconfig structure for prog %u vers %usvc_tp_create: Could not register prog %u vers %u on %ssvc_tli_create: invalid netconfigsvc_tli_create: could not open connection for %ssvc_tli_create: could not get transport informationsvc_tli_create: could not bind to anonymous portsvc_tli_create: could not bind to requested addresssvc_tli_create: bad service typesvc_dg_create: %scould not get transport information transport does not support data transferout of memorysvc_enablecache: %s %scould not allocate cache cache already enabledcache_set: %svictim not foundvictim alloc failedcould not allocate new rpc bufferfifo<pmap_getportaddress != NULL/usr/src/lib/libc/rpc/pmap_getport.cclntraw_create - Fatal header serialization error./usr/src/lib/libc/rpc/clnt_raw.cclnt_raw_callsunrpcff02::202datagram_nclnt_bcast: cannot sendbroadcast packetclnt_bcast: Cannot send broadcast packetclnt_bcast: Cannot receive reply to broadcastsvc_vc_create: out of memoryfd != -1xprt != NULLsvc_vc_create: could not retrieve local addrsvc_vc_create: no mem for local addr/usr/src/lib/libc/rpc/svc_vc.csvc_fd_create: could not retrieve local addrsvc_fd_create: could not retrieve remote addrsvc_fd_create: no mem for local addrsvc_vc: makefd_xprt: out of memorysvc_tcp: makefd_xprt: out of memorysvc_fd_createmakefd_xprtrendezvous_requestsvc_vc_destroyread_vcwrite_vcsvc_vc_statsvc_vc_recvsvc_vc_getargssvc_vc_freeargssvc_vc_replyxprt_register__xprt_do_unregistersvc_registersvc_findsvc_sendreplysvcerr_noprocsvcerr_decodesvcerr_systemerrsvcerr_authsvcerr_weakauthsvcerr_noprogsvcerr_progverssvc_getreqset/usr/src/lib/libc/rpc/svc.cdispatch != NULLprev != NULLreadfds != NULLxdr_callmsgxdrs != NULLcmsg != 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.c0.0.0.0.%d.%dxdr_reference: out of memorygetpublickeydecryptsessionkeybad nicknamedecryption failurewindow verifier mismatchsvcauth_des: %s replayed credentialinvalid usecstimestamp before last seentimestamp expiredencryption failureinvalid nicknameunknown netnamemissed ucred cache/etc/publickeypublickey.byname Bad record in %s -- %s # Bad record in %s val problem - %s_svcauth_unixrqst != NULL/usr/src/lib/libc/rpc/svc_auth_unix.cbad auth_len gid %ld str %ld auth %u authunix_create: out of memory/usr/src/lib/libc/rpc/auth_unix.cauth_none.c - Fatal marshalling problemauthunix_marshalauthunix_validateauthunix_refreshauthunix_destroymarshal_new_authauth != NULLverf != NULLunixnetid.byname/etc/netid ,getnetconfig: %sinetcould not close() fd %d; mem & fd leakclnt_dg_create: out of memory4j h h h i 0i Ii Pi 4j 4j i i i i i i mi 4j 4j j %j xdr_authunix_parms/usr/src/lib/libc/rpc/authunix_prot.cdnsnissetpwentendpwentgetpwent_rgetpwnam_rgetpwuid_r/etc/spwd.db/etc/pwd.dbVERSIONpasswd-%ldmaster.passwd.by%spasswd.adjunct.byname##passwd_compat1-x F J L 1-x F J L 1-x F J L 1-y F J D 1-y F J D 1-y F J D JJ F JJ F Unsupported password database version %dgetpwent memory allocation failure/etc/netgroup%s.%s%s.**.%s*.*netgroup.byusernetgroup.byhost, setgrentendgrentgetgrent_rgetgrnam_rgetgrgid_r/etc/groupgroup-%ldgroup.bygidgroup.bynamegroup_compat1- F( J  1- F( J  1- F( J  1-0 FX Jl  1-0 FX Jl  1-0 FX Jl  JF( J JJl FX getgrent memory allocation failure%s : %sclnt_vc_createread_vcout of memoryclnt_vc_createclnt_vc_callclnt_vc_geterrclnt_vc_freeresclnt_vc_controlH v   H H   H H     " 6 H clnt_vc_destroyvc_cv == (cond_t *) NULLvc_cv != (cond_t *) NULLcl != NULLerrp != NULL/usr/src/lib/libc/rpc/clnt_vc.cauthnone_marshal/usr/src/lib/libc/rpc/auth_none.cPW_SCAN_BIG_IDSno uid for user %s%s > 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)/bin/csh/etc/shellsshells-XXXXXshells-%dinitshells>D1-\ F J t  L  H   p xdrrec_create: out of memory`  h    $ X   h    H X xdr_array: out of memorycircuit_vdatagram_vcircuit_nudp6tcp6inet6%s.%u.%uj-&-&           n |      rpc: failed to open /etc/netconfigxdr_opaque_authxdr_des_blockxdr_accepted_reply      xdr_rejected_reply  xdr_replymsgxdr_callhdracceptedl D L T \ d rejected_seterr_reply                  blkp != NULLar != NULLrr != NULLrmsg != NULLerror != NULL/usr/src/lib/libc/rpc/rpc_prot.c                                           U                       l    l l l            v     [         l    l l l    ^  j       }  =   [   (  W    >  > > E } } } } } } }   > > > > > > >       > > > > > > > > > > > > > > > > >  > > > > > > > >       > > > > > > > > > > > > > > > > >  P \     (   NFINITYHESIOD_CONFIG/etc/hesiod.confHES_DOMAINrhs-extensionlhsrhsclassesstringlist: %m/. 6. P. U. \. 6. /. ؗҜ<3#I9=D2[%Cod(3 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . @?A5?55?5?xdr_bytes: out of memoryxdr_string: out of memoryR R R ,S LS R R T 3T 'T RT aT 3T T abcdefABCDEFNETPATHNetconfig 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 errork@xd xd Ud xd xd xd xd xd xd jd xd xd \d xd xd xd xd xd xd xd xd xd cd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd xd qd 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 l x !l 4x x  x x x  x x ghbynameghbyaddr/etc/hostsip6.arpaip6.int1-F1- F J 1- F` J # 0123456789abcdef;; 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").. -&-&-&1-F1- F J gethostby*.getanswer: asked for "%s", got "%s"c o W K o o Invalid value for ai_flagsai_family not supportedMemory allocation failureai_socktype not supportedInvalid value for hintsResolved protocol is unknownUnknown errorGAIgetaddrinfohosts.bynameipnodes.byname;; rcode = %u, ancount=%u ;; res_querydomain(%s, %s) Temporary failure in name resolutionNon-recoverable failure in name resolutionhostname nor servname provided, or not knownservname not supported for ai_socktypeSystem error returned in errnoAddress family for hostname not supportedNo address associated with hostnamegethostby*.getanswer: asked for "%s %s %s", got type "%s"%d/%sservices.byportservices.byname/etc/services,/;; 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: %dCHAOSHESIODNONEANSWERAUTHORITYADDITIONALZONEPREREQUISITEUPDATEname 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 %sm 0 s        Q^ܝ' <+ 7 : V \ k o        }g   w            % 7 ; G L  \Y ` e r  A{     @   +  !  "   %+1#IOsdkkkkIQUERYCQUERYMCQUERYUNOTIFYZONEINITZONEREFNOERRORFORMERRSERVFAILNXDOMAINNOTIMPREFUSEDYXDOMAINYXRRSETNXRRSETNOTAUTHZONEERRNOCHANGEPREREQUISITES@ ( ; 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>  X oQOoQX QaThaddlen/usr/src/lib/libc/net/ns_print.cABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/=Assertion failed: (%s), file %s, line %d. Assertion failed: (%s), function %s, file %s, line %d. <0000F00000S000000`000010/etc/nsswitch.confnss_%s.so.%dnss_module_registerNSSWITCH(%s): %s, %s1-vector_appendnss_load_modulenss_method_lookupNSSWITCH(%s): memory allocation failureNSSWITCH(%s): %s, registration failedNSSWITCH(%s): %s, %s, %s, not foundhosts.byaddrsyslog: unknown facility/priority: %x%.15s [%d]/dev/console/var/run/log/dev/logGMTmn/etc/localtime/usr/share/zoneinfoposixrulesTZSunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec%.3s %.3s%3d %02d:%02d:%02d %d ttttttttttttttttttttttttttttttttttttttttttttttttttttttttttt01234567890123456789abcdef0123456789ABCDEF[inet_ntoa error]%u.%u.%u.%uLC_ALLLC_MONETARYLC_NUMERICLC_TIMELC_MESSAGESPATH_LOCALE/usr/share/localeŇڇӇ̇^[yY]^[nN] /LC_COLLATE1.0 1.1 __collate_substitute__collate_strdupUnknown error: JanFebMarAprMayJunJulAugSepOctNovDecJanuaryFebruaryMarchAprilJuneJulyAugustSeptemberOctoberNovemberDecemberSunMonTueWedThuFriSatSundayMondayTuesdayWednesdayThursdayFridaySaturday%a %b %e %H:%M:%S %YPM%a %b %e %H:%M:%S %Z %Y%I:%M:%S %ptx|  (2;BgK3_`c*{5@unionfs/usr/bin:/bin:/usr/sbin:/sbin:  þ۾þ˾Ӿ۾%$sniglet^&/tmp%s/bt.XXXXXXXXXX0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz/dev/urandom<ubOqdVH:,0123456789abcdef0123456789ABCDEF,,#,,,S,,,G,;,,,,,,,,,,X},,,,g,,",,,%,&,,6),,,,,,,,,,X}s,,B!",%,%',,B),%;]C]C%;]C]C]C%;]C]C<;%;]C%;f;]C%;D<D<D<D<D<D<D<D<D<]C]C]C]C]C]C]C]C]C<&=R>]CR>]C]C]C]Cp<]C]CA]C]C]C:A]CA]C]CA]C]C]C]C]C]C]C]C]C]C<*=R>R>R>y<*=<]C<]C>A@<]C>A<A]C]CA]C<DDCDCDCDCCCDCDCCCDDCCCCCDnanNANinfINFDU4UDU4UDUDU4UUDUUVUV"VVVV"VVVInfinityNaN??@@aCoc?`(?yPD?_____`jjjjjjjjjjjjjjjjj}-<2ZGUD?sLsLss4sDuDuvuu}uumpool_new: page allocation overflow. 7yACnF?O8M20HwZz\ȱResolver Error 0 (no error)Host name lookup failureUnknown server errorResolver internal errorUnknown resolver errorNo address associated with nameUndefined error: 0Operation not permittedNo such file or directoryNo such processInterrupted system callInput/output errorDevice not configuredArgument list too longExec format errorBad file descriptorNo child processesResource deadlock avoidedCannot allocate memoryPermission deniedBad addressBlock device requiredDevice busyFile existsCross-device linkNot a directoryIs a directoryInvalid argumentToo many open files in systemToo many open filesText file busyFile too largeNo space left on deviceIllegal seekRead-only file systemToo many linksResult too largeOperation now in progressOperation already in progressDestination address requiredMessage too longProtocol not availableProtocol not supportedSocket type not supportedOperation not supportedProtocol family not supportedAddress already in useNetwork is downNetwork is unreachableConnection reset by peerNo buffer space availableSocket is already connectedSocket is not connectedOperation timed outConnection refusedFile name too longHost is downNo route to hostDirectory not emptyToo many processesToo many usersDisc quota exceededStale NFS file handleRPC struct is badRPC version wrongRPC prog. not availProgram version wrongBad procedure for programNo locks availableFunction not implementedNeed authenticatorIdentifier removedNo message of desired typeOperation canceledIllegal byte sequenceAttribute not foundProgramming errorOperation not supported by deviceInappropriate ioctl for deviceNumerical argument out of domainResource temporarily unavailableSocket operation on non-socketProtocol wrong type for socketAddress family not supported by protocol familyCan't assign requested addressNetwork dropped connection on resetSoftware caused connection abortCan't send after socket shutdownToo many references: can't spliceToo many levels of symbolic linksToo many levels of remote in pathInappropriate file type or formatValue too large to be stored in data type`+s+++++++ ,,3,F,`,w,,,,,, 1,,,-#-`17-F-U-m-z--1-1--2-. 2.-.D.^.v.@2.2..22../!/ 3`39/M/3`/s///////3/00)0?0Y0l0 4w000`40001YService unavailable !#&(*-/14yV瞯<authdes_seccreate: no public key found for %sauthdes_pk_seccreate: out of memoryauthdes_seccreate: out of memoryauthdes_seccreate: keyserv(1m) is unable to generate session keyauthdes_marshal: DES encryption failureauthdes_validate: DES decryption failureauthdes_validate: verifier mismatchauthdes_refresh: unable to synchronize clockauthdes_refresh: keyserv(1m) is unable to encrypt session key%s.%ld@%s%s.%s@%s%lu.%lu.%lu.%lu.%lu.%lu%s.0.111%d.%d.%d.%d.%d.%d.%d.%d.0.111%d.%d.%d.%d.0.37/var/run/rpcbind.sock127.0.0.1::1$FreeBSD: src/usr.bin/yacc/skeleton.c,v 1.37 2003/02/12 18:03:55 davidc Exp $             ]:    [=  .DPeNSSWITCH(nsparser): %s line %d: 'compat' used with other sourcesNSSWITCH(nsparser): %s line %d: duplicate source '%s'           !#$%&'()*+,-./0123456789:;<=>?@ACDEFGHJKMOQSS    DEAE216+-.99+&%/ /E!()*!!# E:::::;<<<<<<<::;<<<<<<<:<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<::   9876543210/.-,+*)('&%$#"! ::::::::::::::::::::::::;<;53210/-,+*)('&%$#"!  ::::::::::::::::::::::::vvv#-7AKU(PFNSSWITCH(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()gethostbynamegethostbyaddr1-F1-+F4J$=1-+F8J\=gethostby*.gethostanswer: asked for "%s", got "%s"gethostby*.gethostanswer: asked for "%s %s %s", got type "%s"Impossible condition (type=%d) static buffer is too small (%d) size (%d) too big Too many addresses (%d) res_search failed (%d) %u.%u.%u.%u.in-addr.arpa%x.%x.res_query failed (%d) /LC_CTYPEUTF2UTF-8EUCGB18030GB2312GBKBIG5MSKanjiRuneMagiHZYHZYHZHZZYHZZHASH: Out of overflow pages. Increase page size ԇԇԇ$FreeBSD: src/lib/csu/i386-elf/crtn.S,v 1.5 2002/05/15 04:19:49 obrien Exp $@$hĝÌƌˌP*wЌ(֌$ ٌߌxLP S fBph,}*421:8A?>KHOU[ Q`Q@Bʚ;Ƥ~@P.DV@|tx}ĽȽϽԽ޽| (.Ľ/tmp/EdDk.XXXXXXXXXXunknown  &Ƚd !"#  @P#Q#R&V@aCc dIe]uq@v@ $,29@@ LX  b@hs~ {&.4~;B@b j@u@{&.4~;B@b j@u$/){&.4~;B@b j@u##.'(@((f=}=P=============================D=@@@@@@@@@@@=q@@@@@E@E@@e@e@e@1@@L@I@@=u@u@@/h@Vg@Zj@@g@b@Zi@g@,{@Zi@Z`jabcdefghijklmnopqrstuvwxyz0123456789 *>_>7Q^@H0@send 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 pagertoggle use of 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 sizex@ >n@Rl@hlw.7l@Ul@l@ Rv@: m@ `m}Rm@mR|n@E n@"On@+gMin}pqR|n@n@Rn@q'v@:Ro@ Rq' R)o@Km@w\`o@ZJ wqRo@Ro@Dp=`R@p@jl@ Rp'ѫR t}Rp'Rp@ZwpqRq@yfMqBڌrB^J%qBЌq}ܶMrB S@r}Rr}{r@Rr}M t}I sWJ@qBR sR s}MpqS`s@$Ss@m@w t}S`t@wSt}St}St}%Su@ -u@PSu@S v ~]dxw.R`v@۵v@:.Sv@6΍v@Qz@4S wqXJ wq9Ss@ ewpJ+qw@Jw@MASIw@Ժٌw}GSx}1OS@x@Ndxw.WS@u@1rx`Sx@ؾy}Qz@׌y@eS0y@QlS`y@-y@)Hy@tSv@}Sy@0y@Sz@SzS/z=`Bz@c\z@Qz@p=`SSSSMSSٔ^^R^ RDҋ6؋b |$")GLV[_z~g ̍`Ԍތ.eDe ͗ Х`ȍعҍٍȥ `!)8=̴Ca \`H@"l̥v~@@ @D@ԹbȴT@H@H#@Lg/H@Hp@ˌJP@Xb̹{@`3@@@@N6vMvSYqvvƐvŐvϐِvv D @@ۑnÑ@ʑD;;ґБ>ۑّ Nh`Dconnect 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)bF#5~HP{P{Nf@S׌ƭMZT:RX_ڌ{`deprecated command -- use 'toggle crmod' insteaddeprecated command -- use 'set escape' insteadD{b>=åM""""%@EKCOSY]`cgjmr+w|-Wƕ͕ԕە#1?M[fu|ϖזY]`cKE%@g  w"&+06<BGKOT(standard output)/etc/gettytab@(#)history.c 8.1 (Berkeley) 6/4/93? :@(#)tokenizer.c 8.1 (Berkeley) 6/4/93@\]^7ba_`c8V9Mdefg:U;J<H=>LhW?O@NiAB CD  !"#$%E &'()*+,-./F 0123456789G :;<=>?@ABCH D E F GIJKjkLMKNIOP[lmcnoQRpqRSrZstuvwxSyz{|}~TPUQVTW L %%p%c%%{10}%%/%%{16}%%*%%p%c%%{10}%%m%%+@@(#) Copyright (c) 1994 Powerdog Industries. All rights reserved.@(#)strptime.c 0.1 (Powerdog) 94/03/27|ȵյ5A^i  ȶҶ   '1GR@@bHhn!?tzj   elC _&  e    ¸ H ̸ ܸO߸6+ /j !'"6#B$N%[&e'p()*+,--.ǹ._/m/01ѹ2չ3۹456789:;< =>+?9@G[[\e\u]^^__`Ⱥ{Ӻ{|}}~\eov  % () |tx}ĽȽϽԽ޽| (.Ľhj hj hj hj hj hj hj hj hj hj tj tj hj hj hj hj j j hj hj hj hj hj hj hj hj hj hj hj hj hj hj hj hj hj hj hj hj hj hj hj hj hj hj hj hj hj hj hj hj j j hj hj hj hj  { `| } X~   kh54@ÿ?5 @    5  O g `  d'@Bʚ;  !%P:"+3;CLU\dmu}:   x   @ <-@(#)localtime.c 7.57WILDABBR@(#)asctime.c 7.70123456789RuneMagiNONEPBBBBB@(((((((((((((((          (((((((    ((((((    ((((  !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~ 8)]MCCCCCCC 0000000000000000@ÿ?@y} ,dH@x,dHT д,dHh xд |,***@+<@(#)rec_seq.c 8.3 (Berkeley) 7/14/94_hashXXXXXX.shstrtab.init.text.fini.rodata.data.eh_frame.ctors.dtors.jcr.bss.note.ABI-tag  | 44 @@ M %Pf +656<  6C((6H@@6h M@6[ {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"; : # $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 /