IPL1 1fffQRfB@f  1Ҵfff0fff%f&$ZfYˁtu1ɠ$<0t6<t%< t< t & G 1҉)׉։>6f[fXRead error No bootable partition PUWEVfd1200?&?` WEV^J ` ` ` f)Ȏ؎ffggg*g,g"g$ffgf:fd)( RUVSu1] tPOC~jjR p5uD1 t3Ë` uuA9| 5hhh="t3hhhh/Y[t ?huFPaP54@P^uRdukR55hht!%0th-u j hh-=8t)5hXZUWVS$Ej P Mэv; t3t+=t=t= t=t hEЁ tt f=  u1҉ы}W5aP54@Ph huh,uW XuZtFuh7uV uuhBhut )؉jEVP5ujShL+uV& ]jSu^ jVSEЃPjheEЃuV   á á ÍuУ5T(BAuIBAuhh&h(?hhh&WVhrhS PWe[^_UVS] uEuVS! D3e[^ UVSu U< t< uB<-usB< 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@]D`  <  ` ]Dqd@` `  ` /mnt ]D`  @@@<@T 08@]D`  <  ` ]Dqd@` `  ` # #]D`  @@@<@TU ]D ` F ,]DA]D]D]DH8$A]D]D]DPA]D]D]DAL"A]D]D]DB9m ]D]D]DIbm&Ņ]DŅ]D]D g$A]D]D]DO\9A]D]D]DD,q#;A]D]D]DEx?Q]D]D]DFg]D]D]DX`hpxP!]D]D]DQNB]D]D]Du16A]D]D]DGaiA]D]D]DVw'A]D]D]DWT"hA]D]D]D;zA]D]D]DA]D]D]D}*xA]D]D]D&A]D]D]DIDA]D]D]D.8]D]D]D F]D]D]D}w\ ... . .. tarfixit-small_crunch catchmoda cp dd dfecho|aexpr|akill|a ln lsmkdira mv rmrmdirasleepasync|absdlabel7clri|admesgafdiskamknodamounta mount_cd9660+ mount_msdosfs+rebootrestoreswaponumount ee disklabel7rrestore7 ftptelnetedit|achownachrootchgrpa ... . .. group7 spwd.db  protocols7services7# $FreeBSD: src/etc/group,v 1.32.2.1 2006/03/06 22:23:10 rwatson 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: proxy:*:62: authpf:*:63: _pflogd:*:64: _dhcp:*:65: uucp:*:66: dialer:*:68: network:*:69: audit:*:77: www:*:80: nogroup:*:65533: nobody:*:65534:  ... . ...snap devstand* bin sbin* etc mntmnt1*mnt2*mnt3*mnt4* tmp usr0.profile7#!/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 icmp6 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 carp 112 CARP 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 pfsync 240 PFSYNC divert 258 DIVERT  ... ...a  }n}{>9xs61 T O v nobody*Unprivileged user/nonexistent/usr/sbin/nologin3nobody*Unprivileged user/nonexistent/usr/sbin/nologinCpop*DPost Office Owner/nonexistent/usr/sbin/nologin1poppop*DPost Office Owner/nonexistent/usr/sbin/nologinApopbind*55Bind Sandbox//usr/sbin/nologin35bind*55Bind Sandbox//usr/sbin/nologin2bind*55Bind Sandbox//usr/sbin/nologinC5bind*55Bind Sandbox//usr/sbin/nologinBkmem*KMem Sandbox//usr/sbin/nologin3kmem*KMem Sandbox//usr/sbin/nologinCtty*Tty Sandbox//usr/sbin/nologin2tty*Tty Sandbox//usr/sbin/nologinB|w*%rl  V Q r proxy*>>Packet Filter pseudo-user/nonexistent/usr/sbin/nologin3>proxy*>>Packet Filter pseudo-user/nonexistent/usr/sbin/nologin2proxy*>>Packet Filter pseudo-user/nonexistent/usr/sbin/nologinC>proxy*>>Packet Filter pseudo-user/nonexistent/usr/sbin/nologinBsmmsp*Sendmail Submission User/var/spool/clientmqueue/usr/sbin/nologin1smmspsmmsp*Sendmail Submission User/var/spool/clientmqueue/usr/sbin/nologinAsmmspsshd*Secure Shell Daemon/var/empty/usr/sbin/nologin3sshd*Secure Shell Daemon/var/empty/usr/sbin/nologinCkmem*KMem Sandbox//usr/sbin/nologin2kmem*KMem Sandbox//usr/sbin/nologinB`\!@; I D _pflogd*@@pflogd privsep user/var/empty/usr/sbin/nologin2_pflogd*@@pflogd privsep user/var/empty/usr/sbin/nologinBgames* Games pseudo-user/usr/games/usr/sbin/nologin3games* Games pseudo-user/usr/games/usr/sbin/nologin2games* Games pseudo-user/usr/games/usr/sbin/nologinCgames* Games pseudo-user/usr/games/usr/sbin/nologinBtty*Tty Sandbox//usr/sbin/nologin1ttytty*Tty Sandbox//usr/sbin/nologinAttybin*Binaries Commands and Source//usr/sbin/nologin1binbin*Binaries Commands and Source//usr/sbin/nologinAbin(UPTO  6 1 , ' } 5 0 @ @ www*PPWorld Wide Web Owner/nonexistent/usr/sbin/nologin3Pwww*PPWorld Wide Web Owner/nonexistent/usr/sbin/nologinCP_dhcp*AAdhcp programs/var/empty/usr/sbin/nologin2_dhcp*AAdhcp programs/var/empty/usr/sbin/nologinB_pflogd*@@pflogd privsep user/var/empty/usr/sbin/nologin3@_pflogd*@@pflogd privsep user/var/empty/usr/sbin/nologinC@proxy*>>Packet Filter pseudo-user/nonexistent/usr/sbin/nologin1proxyproxy*>>Packet Filter pseudo-user/nonexistent/usr/sbin/nologinAproxysshd*Secure Shell Daemon/var/empty/usr/sbin/nologin1sshdsshd*Secure Shell Daemon/var/empty/usr/sbin/nologinAsshdnews*News Subsystem//usr/sbin/nologin3news*News Subsystem//usr/sbin/nologin2 news*News Subsystem//usr/sbin/nologinCnews*News Subsystem//usr/sbin/nologinB kmem*KMem Sandbox//usr/sbin/nologin1kmemkmem*KMem Sandbox//usr/sbin/nologinAkmemrootCharlie &/root/bin/csh3rootCharlie &/root/bin/csh2rootCharlie &/root/bin/cshCrootCharlie &/root/bin/cshB$}(#|w*% !  d \  r m  N G nobody*Unprivileged user/nonexistent/usr/sbin/nologin1nobodynobody*Unprivileged user/nonexistent/usr/sbin/nologinAnobodyuucp*BBUUCP pseudo-user/var/spool/uucppublic/usr/local/libexec/uucp/uucico2uucp*BBUUCP pseudo-user/var/spool/uucppublic/usr/local/libexec/uucp/uucicoB_dhcp*AAdhcp programs/var/empty/usr/sbin/nologin3A_dhcp*AAdhcp programs/var/empty/usr/sbin/nologinCA_pflogd*@@pflogd privsep user/var/empty/usr/sbin/nologin1_pflogd_pflogd*@@pflogd privsep user/var/empty/usr/sbin/nologinA_pflogdsmmsp*Sendmail Submission User/var/spool/clientmqueue/usr/sbin/nologin3smmsp*Sendmail Submission User/var/spool/clientmqueue/usr/sbin/nologinCman* Mister Man Pages/usr/share/man/usr/sbin/nologin3 man* Mister Man Pages/usr/share/man/usr/sbin/nologin2 man* Mister Man Pages/usr/share/man/usr/sbin/nologinC man* Mister Man Pages/usr/share/man/usr/sbin/nologinB daemon*Owner of many system processes/root/usr/sbin/nologin3daemon*Owner of many system processes/root/usr/sbin/nologinCtoor*Bourne-again Superuser/root2toor*Bourne-again Superuser/rootB.FAQJ U P  : 6 E @  h c   pop*DPost Office Owner/nonexistent/usr/sbin/nologin2pop*DPost Office Owner/nonexistent/usr/sbin/nologinBuucp*BBUUCP pseudo-user/var/spool/uucppublic/usr/local/libexec/uucp/uucico3Buucp*BBUUCP pseudo-user/var/spool/uucppublic/usr/local/libexec/uucp/uucicoCBmailnull*Sendmail Default User/var/spool/mqueue/usr/sbin/nologin3mailnull*Sendmail Default User/var/spool/mqueue/usr/sbin/nologinCsshd*Secure Shell Daemon/var/empty/usr/sbin/nologin2 sshd*Secure Shell Daemon/var/empty/usr/sbin/nologinB man* Mister Man Pages/usr/share/man/usr/sbin/nologin1manman* Mister Man Pages/usr/share/man/usr/sbin/nologinAmanoperator*System &//usr/sbin/nologin3operator*System &//usr/sbin/nologin1operatoroperator*System &//usr/sbin/nologinCoperator*System &//usr/sbin/nologinAoperatordaemon*Owner of many system processes/root/usr/sbin/nologin2daemon*Owner of many system processes/root/usr/sbin/nologin1daemondaemon*Owner of many system processes/root/usr/sbin/nologinBdaemon*Owner of many system processes/root/usr/sbin/nologinAdaemontoor*Bourne-again Superuser/root1toortoor*Bourne-again Superuser/rootAtoorrootCharlie &/root/bin/csh1rootrootCharlie &/root/bin/cshArootVERSION$|w+&61 I D ` [ ? : D D www*PPWorld Wide Web Owner/nonexistent/usr/sbin/nologin2www*PPWorld Wide Web Owner/nonexistent/usr/sbin/nologin1wwwwww*PPWorld Wide Web Owner/nonexistent/usr/sbin/nologinBwww*PPWorld Wide Web Owner/nonexistent/usr/sbin/nologinAwwwuucp*BBUUCP pseudo-user/var/spool/uucppublic/usr/local/libexec/uucp/uucico1uucpuucp*BBUUCP pseudo-user/var/spool/uucppublic/usr/local/libexec/uucp/uucicoAuucpbind*55Bind Sandbox//usr/sbin/nologin1bindbind*55Bind Sandbox//usr/sbin/nologinAbindsmmsp*Sendmail Submission User/var/spool/clientmqueue/usr/sbin/nologin2 smmsp*Sendmail Submission User/var/spool/clientmqueue/usr/sbin/nologinB news*News Subsystem//usr/sbin/nologin1newsnews*News Subsystem//usr/sbin/nologinAnewsgames* Games pseudo-user/usr/games/usr/sbin/nologin1gamesgames* Games pseudo-user/usr/games/usr/sbin/nologinAgamesbin*Binaries Commands and Source//usr/sbin/nologin3bin*Binaries Commands and Source//usr/sbin/nologinCoperator*System &//usr/sbin/nologin2operator*System &//usr/sbin/nologinB^Y{v Z T  m h   t 6 t nobody*Unprivileged user/nonexistent/usr/sbin/nologin2nobody*Unprivileged user/nonexistent/usr/sbin/nologinBpop*DPost Office Owner/nonexistent/usr/sbin/nologin3Dpop*DPost Office Owner/nonexistent/usr/sbin/nologinCD_dhcp*AAdhcp programs/var/empty/usr/sbin/nologin1_dhcp_dhcp*AAdhcp programs/var/empty/usr/sbin/nologinA_dhcpmailnull*Sendmail Default User/var/spool/mqueue/usr/sbin/nologin2 mailnull*Sendmail Default User/var/spool/mqueue/usr/sbin/nologin1mailnullmailnull*Sendmail Default User/var/spool/mqueue/usr/sbin/nologinB mailnull*Sendmail Default User/var/spool/mqueue/usr/sbin/nologinAmailnulltty*Tty Sandbox//usr/sbin/nologin3tty*Tty Sandbox//usr/sbin/nologinCbin*Binaries Commands and Source//usr/sbin/nologin2bin*Binaries Commands and Source//usr/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  . ..miscJq . .. 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`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 44 ( b|b|Yw ; UWVS ]׍t ۉ5Ph~$Ett W5  hh4 PVEPSP2 щǐU=Yt8vҡut hY~YÐUthYhYw~Ytt hYU~ÐUVSj/]S ^Zt p& = t3V > ZYt݃;1e[^UWVSPPhsh58W 1 = tN1MUUO~58Wj  Yu_3hH58W ;58Wj jY1 UWVSWWEE} EEt8uGj/7 [^Xu = t66S= ZYt>>tEEE} ENe[^_Shsh58W e[^_UWVSu] }N}] u[^_,U>UWVSRR;@Wu;=D!u@ PX_t!=D!u @Wf` 5@WX[EE n =Zt u}KEE=YtO=Yt tFEuh(5 YÃZ=D!uF @ V Zt35Yhs/g [=D!Y_uff VTY=D!u * @5@W' Yƒ tB뼃ytYtu0 58Wh {=hZt,hhV UBPhhh_x E)jhMAPhhh4x E؃ }u!hhhs/= uy/ UB%=EHB0R4:4+#| =jjujjEp0jEЃ@u UrME}Ћq0VWu. Eԉá`Z t^1REPEh0},$fE  fEm]mEPhhUrh58W`Z% 9} ~ )v9thhhs/ XEZMq0u% ^_hhhs/Ӝ Y[EE`ZuVWu- Eԉá`Z t^1REPUj0},$fE  fEm]mEPhhMqh58W`Z7 9} ~ )v9=hh`Zuy- EF}yEphs/ XEZ=tZt9uux^_tE=tZtuu7Y[tEu, u, _Zthhhs/y [E^E܍e[^_UWVSj;} WHZYuj;uH[^t1E@%=u 0    jWӅZYuWhʼnJ8tPjuփ y uh,jWӅZYuWhPjuփ 1҅yuh5讚 e[^_UhUhh=58W~ j@W UIUWVS}[[Z5ZG ÅۣZXu 7hmj=Ss Y^ƅuS@Fxu 5ZhٓChjjZhEEP u uhZP tuhj PZVPZGZt*4tZZtt h6% XZ t1uhPa=\uhnQ uT\Lt>!t.t Z\T*Z\ hj- \[RPhjӋ[9ډ[6|9w0[RPhjgӋ\9ډ\|9vhjhj谗 e[^_UE E EE' UUW1t hהjm \}UE[UE[U}tjhEP hjjhEEP u uhZPtuhj P@ Zt\UE E EEN UWVS ) jEPSEU) 8t5Zhs/jÕ E9؉EiEEUWt_GtOBt-]Kt/Mt3Qkt# btgt)>mtwt&2E"EEE@EEE EtOuE]މً}]ߍu]uU؉EԋERPEUn9u{9uwE@EEXt *xum@UuE]މً}]ߍu]uU؉EԋERPEU9u9t.j"蝬 $5ZhSj 5Zh+j EUe[^_UZSEu2 w=vjhhEj蜔 []UZSEu2w=vjhhcjU []UE ptujjhj UE[y hj u\ \ \ \UESw=vjhhj襓 \]UESӃwvjhhjd [[]UWVS$% jEPSEU% 8t5Zhs/jb }9EEWt_GtOBt-]Kt/Mt3Qkt# btgt)>mtwt&2E"EEE@EEE E]EU܉E؋EËU‹uEƍE܋U܋E؅UE |w1҃} |}w19uuuu99GEEXt *x@i]EUUԋUӉEЋEЋuU֍UԋUԋEЅUE| v1҃} |}w19tuuuu9u9t.j"ɨ $5ZhSj$ 5Zh+j EUe[^_UE\\UE[[US\t[ [)Jt A[[[;[[rj[[[[X]á[Ut[UWVSQQ=Ztl[ [څtC< tIu1[[[R)P5[ eA[D Z[[[1)Ë5[-\[9v¡\Et19s,;C t:E8AF19s;C tAF t[;\F[)ȃ [uH[\9s!)P\ tP RV N[t; t@\D\C< tB[u롨[u ZH[\[[;[[rjZ5[=[[[[e[^_Ë[U҉t]@\[RD\)P5[ \[)P\ tH Q[R \[U \VSt[5[)Kt F\5[9[H9r5x u I9r*9 9r!)YSV5[Z [[ [ [@[;[[rj[\[)9У[w[t[R)P5[ [[[e[^U=[Stp5[hؕf [ [A[9[r5y u H9r*8 9r!)ЍXSR5[u [[ [[ []Ð111111U1‰USdÍEPs @ZYt9E%=uK = t=`uXEPhzf@s @ushs/jQ UtK tKE%= uAu jjjs Bu@u 8uKK]UWVSQ[}Et=[=[Zt-19s U<u@}u15ZZZZ tu}tZZj5Z5Z5[  Bu@u5[hjs}tju5[ ZZ-Vu5[ à -u 5[hv 8t5[hs/j踉 1ۉؙ]P\T\9u;=[0\4\]8\<\9tK[t5[h%j t%=Zu5[hDZT XZ)h[)[9‰[rH8\<\҅t[R)P5[Q [[[e[^_UWVShjfu [ u[4[jjPc [ @[tpwv[u hhj [u[[-wZ%%hPR1c [ @uGZ%%hP5[b [ [@u 5[[Z [u'[BP _[uhF[F\9ЉsP^[t\[Pظ[[u hj [[[[[ѡ[ tX\\ tZ%(= ua[ tX5[\U1\׋] \ˉ]uEu5[ @u5[h=Z!ps\1t2ZFv񈎠ZFvpt'uZZFvt71Zv RG Y J4ZFv=t51Zv R| Z J4ZFvpt1ZFv@t1ZFvfy&1ZUt ˀZFv܁ t&1Z'u ˀZFv\ZjEP` Y[hMjEX\hjh pttBpu@$= \5\ t+ut(\ \,\$\9rw9sZtG@t5[\P t5[j 5[ =[ [15[5[5[ u[Zu5[hs/j蘃 5[hs/ XZ[t1j1R[P5[: у t5[hs/詄 _XZ[ [9u[ \$\[EZ(\ ,\5[t [[[(\ ,\Zt![j[^[&t-[tH\L\HP5[5[Z [[\\=u= uj =TuZ@t\[t\ [9sI@t )Q\P  t)Qj 5[ )=[1[[=[uZZ tj[j UWSjxP\ ڍ|څx%X\XɞݝpZvݝp5<\58\54\50\5,\5(\5$\5 \hjd]S; 1у,IQSj L\H\ȃ tIЃ ȿt!W5L\5H\hjd]S; 1IQSjL $ D\@\ tIЃ ȿt!W5D\5@\hjd]S7; 1IQSj $T\RP\P,$y]Eܵp$tpRPh]jdS: 1у$IQSj e[_US ! [U1}P UWVS[tx [E1ҡ[U[e]׋M [ߍ jMuEu5[  B @@ 8[ҡ[yhDhOj ׋[E S5[5[ ~[t)[wu4tpwvptMhbj Zt&}u25[hs/ EXZ5[hs/j&~ Be[^_UWVS [ tw  [E1ҡ\U\e]׋M \j}u؉Eu5[ Bb@[ 8M\ҡ\yh|hO t1\EEPhm5[fE @EE9U| 9E5[5[5[ @tiEPhm5[fEE^ @tB}u\EU9ס\i|9sc5[5[5[F u5[hs/jt| ;[t5[hj} EU\\e[^_ÐU.UWVSLpprrEU]K MEEU[$eM]ĉϋMĉEM]U MS UMB(R,K$EUeU܋UUu܋}}<>E؉}܋EMH(MQ0]X,ЉUeUЋUI4UE̋]ЋEEЉMEM̋]H0MX4]A8Q<C8A@Se[^_US1ۅ|w ؃ڻ|vjj RPGC؋]UWVSQQ=t\Ɖuht\EP'Y_1(ыA9}5t\ssS$C 7 ~\9}5t\FC +C(sS$S,s ~+9}5t\ssFS4C0 ~ 9}F C8+C@S<SD~9}FSDC@~9}Fe[^_UWVS|hjPDžL jXhAPDžDž5 Dž0h+ateHPtdcta|Xgtilikn{ktx`\hPx\h^{|\a|\n|\_\Phk븃t hxjjVjhbUyht (_uhu jjVPhUy ht 5$1ǍP趤^uhu $19Dž}vCt'CPF YB|t>F$9|˃t$D8P.Zu3~ ht XXX1n@o1;};j 4S 1у \,R趣F_CC袣^薣[6hʘ\Ht hטjNr dlP&Y58Wh訸 XZj@hTu uC ;U jQ)EU ~1^;_s$1Ku} ?Džu*=\jP}Y[9DžDžÉP_ZuVVW螩Z=\Yuy.9t y WhcJr _XhSVp 9t19sTDžx1=x\t{xxKu=x\t]tXDž|1=`\u1ҋD% u|+|Ku=x\tj" EP} 7I ZYyD7QE%= $U |M h{\ ^uho [DžtP, Yu#Who WDž Dh\jP^tE 0hs/do DžbVS7YZu,ƅ4=x\t*U 2hs/ o XDžZjSƩS蔨WJM VS輦Y_yShs/n XZDžhP[_t DžD}u򍅴=x\t E } ?=x\te[^_ÐUVS] 1ۋut-]$;t3V ZYt1=]e[^UWVS]1tz;nu{ou ]1؀8t 8,uG@P͝Yuh8n 1.؉ @j,P ZYu KEETKUEUPgE_u E>tU1у~Auv|\u|cu AEC>tEC뫃}uEEC}t<]~SujD @u FE9E)]Ee[^1_ÐUiUj ~Xu h(joj EU AQUVSSj uEYtV CZu h(j(j =]Et j PV8 j PV E <e[^UUHw BEUWVS}1҅ɸtt11҃tk& =]t&j jw 8 É 8"ujjh j jwA Ɖ wo_w1ҍe[^_UVSuHv4j%ÅXu h(ji vvhԕSu ^e[^UE8UWVS(]01҅ts(]1щuSh8FC ZYuD2щu&~=u <t#!>tVD]e[^_UVS];Cu C'18tSZY tSC ue[^UhFjg UVS]Su Zt SV؍e[^UVSu] VhYu S]Zt'VSY[EE e[^Se[^UWVSuVr} [u WdYtVWwv1 [ZV_WYFVO_11 1RP~VW e[^_UWVSSSuYu u Zt1uu }E pUr1 ^_1RP?uu EU XHBR19ӾEU |9w11WVu]u Ue[^_UWVSSSu4Yu u 'Zt/uu E pUrJ0 ^_1RP?uu EU XHBR19ӾEU| 9r11WVuu e[^_UWVSSSuYu u sZt1uu E pUr/ ^_1RP?uXu PEU XHBR19ӾEU |9s11WVbuu e[^_UWVSSSuYu u Zt1ueu ]E pUr. ^_1RP?uu EU XHBR19ӾEU| 9v11WVu=u 5e[^_UWVSuV} Zu W[tVWwv4. ZYVWFVO_11 1RP!VWe[^_UU WVSEM]u}|(v|v|wy y y1[^_UWVSuV} V [t WIY uhSA=]t?GFWVRPeppwwvvF thjb GFRP+YXVWe[^_UVSVVEMU EȉU5U tڃىUMY[[^E^Z[^UWVSuV} p [t WcY uhSA=]t?F+GVWRPppwwvvU thja F+GRPEXZVWe[^_UM WVUS1 Ћu}tQRuu9u9te[^_UWVSu [tu Y uhSs=]tqUBRUEE HXEuM MuEutppU rrMqq* t%hj` U BMARP-_Xuu e[^_UE 5 EUMu AuBt1UWVS}Wu [t VY uhSRVF uhh?=]t=RPwwRPvvwwhthj_ G~RPUXZWVe[^_UWVS}Wu [t VY uhSVF u hhj_ =]tRPww0 G~ЙRPXZW^VXe[^_UWVS0}Wu jE puV&t hSVPtShs/j^ jEPjwV~u3]ȋMĉ u'}xWEEGP(E)ȋURP }ujjXZ h$^Wu ~EP[e[^_UVS]u''~'8]5,])t PR6Y PZt`H]8]ҍp,]tPRZ P轎Yt#H]$]8]DX] ]1ҍe[^UWV=8]S0]]L]u 8]H],]$]1f6 =L]y4L]y L]6L]x9ul ]9,]r hw,]Bfr$],]B$]D]B]L]t"x9u ? ]9,]r u-,]Bfr$],]B$]4]B hy-Y1e[^_UVSu] hj6h uhׄlZt jC hSV uġ;(]<]8upphӖ pU X<]Ee[^UUWVSjh_P/q u=y9}V4 zp ZYuCe[^_UWVSR;y}AV4 zR yȉי9ZE_tA9uVj Vj 軞 _XC뷍e[^_UPhX 8Wj Uhݣhh!h>h758W j UWVSSSu] hc3 NZYN~Num=w Juoj EP3  :E8~ǀ~;=y| 4 zT j EP3  :tE8t RhjU x;=y| N~jh3o uNuEtUj EP3"  :tE8t RhV WQR @ZYu3hs/U YEXNu UUhhhh:58W~ jW UWVS`=l]}] u4EPW. ^ZE%=@u }uFuVS. ZYuE%=@t&=\]ucVS. ZYuVE%=@uFj/W@ Y^u@PSh!hS= =~j ?W8EPS. ^=T]Zt=d]5=|]u5$@ $B@8.u=]u B $A&;\v\=]u =]tP$w@;\Y[v\k$@<(@(O<9W8|9v(B8@(A;8P@^u!$r@BphG $fy2duq@hs/hR "$w@Gph!hR Edt8R4 8R2Y@[u$p@@#4P8@_Zu)$q@AphF 8 8^4uhK] 4[14эA;`v`D8PvYu hjD @PT DCP; (A%= t=`u Dž=]t-DCP 2v =]tFD=]TuDC 4P蚱 4u $_ $@$ u#=]u =]d0W, \UME@hjUR1ۋ }E}^ ؉򮋅P [t P軺 xY1G$]]P]]b]]]\]]]9]]]]]]]]]jhh/~ ] ]s]d|]]K]<]-]]x]]]]]]]]]x]]]u]i]]]Q]]]1]]]]h8WV ';)ƃ=] Y=]u0=]u'=]u=]u=]u =]u]u=|]u =]u=]tˀu =]t9=x]t ]$h]EPCK]љ]XZ=]]]tmu=]ut]S=]tt]%=]tt]=]t t]nt]bu=]u t]8I=]t t]4=]t t]:=]t t] t]nt p]@4=]t p]/ =]t p] p]tS S8[5]ײ UVSEK41U tVP4tK t uE ][^9tf{2u=|]uItJtE ][ t]^[^ÐU=]Eu =]t E=]t E E U=]t1@Hwth@t"A$=D!u(=D!u$u F@^,5 8u u Ytu hs/R" ujhu  xS5^W{ 9u5^5^ut }>uhs/! XZu 6 ^tu h! Y[u W uf^vv W[f t5vv u h! à tPu h3;" ff j;WZHYZuBj;uZHYZu3uZu uhDPWZYyu ho!! YXu[ FPW[ tPu hp 谲 vDW[[Zt#薲 8-u~DtvDu h FEF EEPu EEZZYtu h{ [^W跱 Yt u hs/u ZtuhJ =^tu uhވ] 1e[^_UPHuDju u=^huPhhhhs/ $ujEPR @uhzEt ht Phs`u7juhhƩhhʩShʩhs/X j֩ jEPR @uhʩhҩ- 0Uthʩhީ 1tRhʩh UWVSP=^u} jWz [Z|]SVE @ZY3= ^t=^xWh;\ [^f=^th,Wh58Wee yjWtz ZY SW ZYEPEP賞h,WjuY[Pju[Z} PtPEPh&58Wd (=D!u# @WAHAyQ @5@W Yƒ tGtB=D!u# @WAHAyQͨ @5@Wz Zƒ tB뼃ytYt58Whc %WV WZYu=^tWVhވZ 1ڮ 8uvEPV @Y[E%=taSVYZuSVhD [PSTYZu-$PS葟 [ZuhZa )WVhv ]SV ZYtVhs/r &E%=u SWV[ WV*ZYe[^_UWVSxitft$nnt=vtXb^ ^4^ ^^1 ^^^^hu u a;U )E}U UEP} Mt _ZuE%=@t }~!E p0t5EP4s YZuE%=@u GEEC<Ʌtd=8^t[58Wh5q[ XZu uhHWhH58W{\ }u58WhQ6[ ^X/~-uh]UPhk58W2\ 58Wh?<Z 58Wx =D!u# @WAHAyQ= @5@W [ƒ tGt]=D!u# @WAHAyQ @5@W褝 Yƒ tBBtntNtyt Y1ytYue[^_UWVS=0^}utWh{58W,[ =,^F%=wju p Y[uFDuU= ^HEPFPJvD u hjM =<^t Whj W;uP;uPjv_ZPjv ZY} PtPEPh58W6Z $SC_58W腓 =D!^u# @WAHAyQL @5@W [ƒ tGtB=D!u# @WAHAyQ @5@W賛 Yƒ tB1ytYue[^_UWVSd}EPS YGE^4^t0tfEO=$^t 8OShs/ Pt'j( $ShS @^U%=@u%=(^uSh֫ XZ@^=$^u$%=tEPSSA = ^u EبtuPS*LYXuME%=uS|J.=@uSJ=<^tEPS^ZtKSp Yt*=$^t Ϣ 8tShs/ X@^Z=^t uS ^}_e[^_UWVS1= ^Ut=$^u=0^u=,^t=4^t jPR2% =$^t 8>h+C4H $s' $shSje =$^t {s& $shS @^.=$^u-s Yshs/V @^XZV|.ÅX 8t hKj ue[^_0e[^_UVS1];t_j/3ZYt@8.uAPt .u5xu/Fu h X@^ڋCt롃뜍e[^UVSj/] 32NZuYu@hyPQ ZYu6&hSVؘ @u;)NtS{8^<^dtG(P ItmRt{Wit: ftrtWvt^t(^m$^0^W$^0^AD^5<^)8^^4^h SV˗ #;)ƅ=$^uyS h ZYuSCXf; ^t=jl =D^,^XtS^uj=8^tSS4[5@^臂 e[1^ÐUU58Wh#QQ jV UWVSS]u )ptvtH^L^hVS躖 uá;9Í4uE>6DYy.6hs/ XZEShs/ [_y=L^t6 Y=H^tb1эDH9v8/t@-H9r8/t@9t)S#DZx=L^tSC _j/SZYu1 E9u# U)US jhE]S jSjo ]UWVS }ucE @CE]v Rv Y JD4%@uъ1<-u3SUC=fw Ju:.tc<+uCEU=wJtj EPRs 1ɉMEE8.]uDUBEBЁw(Jt0C ȉיuu}}~ jEPd XZ1e[^_ÐUUXCj UU1ҍt8u'B~ 15ȀQ<)‰UU`RP ZYt hsj E%=t=t5_h/jq EЋUȀĀUWVSRj5_E _Xy 5_jG=t _:hhd@V uhȀhd@V֘ t hNj3 ȀӋĀ9ډ|9v hgj jjjVИ h h`V贘 = t5_hj Vj Ȁjh^h_`P$}tt5_hj- hjhͭP hjhoS 5_jhҭShxjhíSb S^tSx|h1R_P5|5x1ۃ9ӣx| X`u49u0f*`1ft"5x1҃4`t)8`AÃ9|e[^_Uh׭hh@hlhhܮhh5hchuhhǯhhh58WL @jk| UWVSVV׉u_5_hDVeL =lGWf_Uw4 hPhKV(L SjhUVL ujhaVL VhJ YGX[t VhnJ XZGXt VhzJ Y[GXt VhJ XZVj "K w(hVK w,hVK w0hVK w8hŰV{K w4hܰVmK $w~`j5_ ÅXZ(=t5_h˲<hjhͭPhjhoS 5_jhҭSȀh^`PhhS S^uxS{=hYhjhͭPthjhoSb 5_jhҭSLh`h hS7 SJZtPhs/S:S?5h`S ;t5_h S܏  SϏ X1e[^UVSFt1Ӂv R E܃ EffEU<tB̀%u91ҋRP},$fEV $fEm}mEEÃ9E|Vh58W= E܃ }1Ҹ M5Ȁ1IÉMx?EU<t"t*u MyɋMHU9ЋqhhaXZhhq^_h [11'So YjZbw 8CtsXw 8#uuj _|utV`[PYPh$D ZujhSSzShs/jh hX39tPV_yV[ h;h+ ZYhjWko Sn Xt hWh_o 'h" ^5u(x$tc 8ut}t$]Cj)PSu"uhs/ hjH U[ Uh 5T5L5P5HhԽM =hw=lw =pv h H XhJ= 5t5p5l5hhԽ UWVS j hEBPEa_ uh{ AUBR )@TEMÉE}M EԉM؋M؋UMMBU19tF|븇PUPPh MAPuuuA TPh U(B PB PBPBPB PB PhǾ EPh  e[^_USh Xu!ShBy CZY~ ؋]p]Uf`UUWVSQQ]f;uuuj hSlZ i15tUfCfC 15pCC 1҉5pSS41+5T15tUfC15pC 1҉5pS e[^_USJX)hbbc6]Ujjj5d3` =Phb5d` @uhG1f=`Ut hh6UWVS=t X.hjhͭPvhjhoSaj/5DɹY^uD@PjhҭS5hb5hYSS/Zu SPhs/x_XSМ$j5hb5d=> ;te1xW5DhS!- jjS4 x hbhMPo^ Vx^ ^t~h[e[^1_UWVSQ1ۉUuVh 5X 8u48/t-Ph[hhD~=DuhףjhD$P5D5蝟 @Y[uW 8'5Dhn- u5DhXZ=u=u1ۅtS5Dr d^@_u:KW 8uuj5DL Y[d=duW 8du5DhXZn Shd@POV u pLpLShd@5dV u lPlPSP Lhd@H5dTtXU u u Dž  Phd@5dlU uP1R PVSBXl1 RpPVSBhH=Xu5Dh=dy5DhjQ=t hj/5p5l5h5Dh hhh 1ۃ bFt.PV F)Ћ T@PRCPh2 C ~5DhI _=Xt#=t==o5h^t h5l[[t l5p5Yt ppltRf95t p5h  h$贾 h誾  uCP~ >=u =Dž1c?y^ShX XZuF ~Ӄ=t$ t  hw [!u DžtHSYtCwtC=tt=u=u =tP=uh hBA XZg=u\(t h Xj 7 UMS] ACACACACACQA fCACA C Q A  fC A C A C QA fC1ҊDDBv[US] UCBCBCBCBCBfCBfBCBC B fC B fB C B C B fCBfB1ɊDD Av[ÐU{U58Wh j5 UWVSQ׉P j EPS P 8t Shs/j\E8tWShje[^_UWVSE} vlG YZu(wLZt(P7> ZYu Ny1e[^_UWVSS] ;nu{ou 1uw E1Y68nuxouSP YZuSP YZu1hPYZuuhe[^_UWVSuPP(Ph~ ^t.=t%twh)U !XZt?fx t6h) Y[t 0hs/ h}P XZ=^LNH u VTFP tvTvPSQh ^\NX u VdF` tvdv`SQh u t(hz 1XPhyCc _XvEje[^_u UWVSPPu ]t>umtS;tN1ЃщMMQMDžXu hj茸VShuWr  V= ^tSxYe[^_UWVSVE 0E}EDt><-uj=Sɒ FY[t(@hKS; YZt FFhEP\8ÅXZuE 0e[^_UWVSQE} tU8tPtL?tGÉE'VWF; YZt;,u<FCuK,hEP7ƅXZue[^_US]SRuKPjfYZt hPTYZt hPBYZt h P0YZ t h2PYZ@t hP YZt hPYZ@t h8PYZy hCPYZ@t hPYZt hNPYZt hcPYZt hnP}[Z]UWVSS]sPƍEPW(Sh V6S u W{YtpphZ e[^_hLuz9 ^Zu#hWi9 Y[u EEEe[^_2 UWVSx P]u}u XZuu;Kt޻VS' $jhR8 uth V7Y[thSRV XZthV [_huy8 ZYuE3uh%hPdn WPVdDž8U dh=DŽdt>uh _X;}dhH Y^Cj _S7ttth讴VhLuz7 ^ZuW~Y[P6Wh.P腬,F 8uh.uh>N j + Vj|PSy h֩j|ƒut%wtt4yRhS諴3=tISP_ZyRh\貳=tSS^1e[^_UWVS }} uh /h}WhWu)EE1E5Sh}6 ZYuWSh5 ZYuuSVlY[hEP2ÅXZuuGu?Euu1уQDžXu hjfnoGSW WuWjShf uCPuY_SuEXZhEP2Y_oVEe[^_Uhihhh:58W j( UWVS$uE1EEEL p%dt[FtcatEftaoteurtittkvw5dl@QMydl8toPX;hSRE}t hטjc5dlEdlEX.M%h%u?Y[Eh*u VF< ;U )ƍU E tjEPÅXZu h9(hSRw(3 Y^t&hKw3 ^ZthDw3 ZYutuwY^uchGw r^ZuPEuSuW u6Epw u@w Puw7wEX$tEDh=t>9]V1EuPZYu EPE_Ku!9]1EuPZYu EPXKu}tE 00_EXU 2EEE^uE 0hN1Pc[ta](V0w1 ZYu!Pwb1 ZYu Eu)U 8/uxuh NjEEX}Etpw (pUju jEuЋEu܍RuPWE 0DžXuU 2DžXu E 0hgChSRw0 [^t7hKw0 ZYt$hDwy0 [^tU 2hjʬw uuw7w}j@E 0: ZYuj:U 2& ^_t{?@uw1э|1E 09tR=w Ju5Ӂv R Y JD4%u.t -t:uF9uEZjuu܋U r2up@E؃}ufu]h;h ÅXZtFEPh}PS  Hu*E~#jP" @^_u> 8t hjϪSE6 [u" U58Wh j" UVStu] Ehl;%oujEPh`5dlhSV.7 uǡ;)ƃtnUEЃ%EE[PRShLE<1҅yT= tu/SuhEt Suh8 Suhqث uhs/XZe[^ÐUWVSE EUEUEu E܅^jjV>nu~ou EEj=Vx Y[t@];taU1IMQRV uUt <=tă;t%{ MuME;CCu !‰=u VhjS1hVzƅXZ8U܉Ue[^_<UUSM ˀ:tz/uB:/tBA)H~ y/uA[US`] Su0ZYt-EPS ZYuE%=@t)Shj@螨; 0" $ShSj@肨]UWVSQQE uEÍPU2zMljXZu E Uu UU1҉߃}ыELCM ؅_y}֋Et]U e[^_ÐUVS] 1ۋut-$;t3VI+ ZYt1=e[^UWVS]1tz;nu{ou 1؀8t 8,uG@PIYuh质1.؉ @j,P踁 [ZWue[^_ÐUU58Whe j@j UVS,juU Y^Phc@S8 @tT)ƍFd<fPhcSƅƅ38 @uS;8 S38 ZxuHy ȍe[^UShJ]Zy-hJjYxhJoZyhWH_jCxYtMjC|Zt;jhsxp jju uZYPs|Y s|sxv ҉Ћ]UWVShjtP]u DžpDžl10 EEE jtg$bt?Cet6gt=rth ot>st`vtlpppzpqpPlPh 5dlBNpE5dl YE4G15dltP8@YZu hJjG艣p 3hVSS0 ;)Ã4ttPv SSlp}DžxtDž|Eu8SEZut h ^Et Ph Y[tPltPh&yths/j蕢j UWVSE EUEUEu E܅^jjR>nu~ou EEj=Vt} Y[t@];taU1IMQRV詻 uUt <=tă;t%{ MuME;CCu !‰=u VhjO1hVvƅXZ8U܉Ue[^_8UUSM ˀ:tz/uB:/tBA)H~ y/uA[US`] Su)ZYt-EPS| ZYuE%=@t)Shj@蚡 4 0 $ShSj@~]UWVSQQE uEÍPU2vMljXZu E Uu UU1҉߃}ыELCM ؅_y}֋Et]U e[^_ÐUZUSRÊ0<w"jEP5dl{ xE8t Shj@艠‹]Uhh3hrh:58W j@ UShZy0hYxhZyh蓡jYjhP hpuZtPHp[Z7jYt+PW j ou1҉Ћ]UWVS hTjPDžDžDž1* 1DžEEE-g5Lu9tjDEM?W.olt)mst ut)dlSsZt@5CtЁw Juu Qk YQh^DžSdlSZt@:CtЁw Juu Q  [ Qh jC˝DždlfdlfE5dljzZYtj.5dlw Y[u5dlhs/jNj>EZjjCPmY[PujEZj5dlP PPh` 5dl jE[ujEYbh5dl7 [Zu*EISO8@859-f@2ECP85f@2h'5dl ZYu'EISO8@859-f@7ECP73f@7jh05dl Y[u jh8h?5dl [Zu#jhIu' ECP86f@6 5dlhs/jBhPu u' ;B;EttufEtEfE }4\u/}tJjQEYuhd&ISO8@859-f@1T@u hjGmPSAVV%TDž\Xt tucPSt @YZuShmnu u uf%fEfTPPh3y Vhs/jGyj UWVSE EUEUEuű E܅^jj6>nu~ou EEj=VXt Y[t@];taU1IMQRV荲 uUt <=tă;t%{ MuME;CCu !‰=u Vhj31hVZƅXZ8U܉Ue[^_UUSM ˀ:tz/uB:/tBA)H~ y/uA[US`] Suq ZYt-EPSr ZYuE%=@t)Shj@~* 0 $ShSj@b]UWVSQQE uEÍPU2ZMljXZu E Uuگ UU1҉߃}ыELCM ؅_y}֋Et]U e[^_ÐU?UPPjjEPEPhExth1EUWVSj/] 3EZYt@hP: ^_EtE1EE|F w@$xMddlEZEQMEDM@;4=u~PP Ph58WL j" hSu" hE%=u hj[t (  tua%j1}thh$hh)p ~Jjh=P ( jhTS( 1}IQuS' $jhS' S' }u_auP[]t8=tj"jhY Whaj"jh;C Whnj hh}h }ujj` @ZYuh'jjjjB @u*' 8t hjN58Whn _Xdj1^+}uj9YtC~׻j j @_Zu ' 8uP辨C^u#[& 0 $jj @ZYtRhjEU\UhXhchhXhchhchhchhchh58W 8j/UWVSj?}YAhj%qXE ZERDž :-Pk_ÉE 1QG^Dž8:OtruWh2IY[J1уQZ‰u jj-B0BPD Y_"u-FDžF94tu+] CEB+q$j P5dl ‹ 8t5dlhT$hlT =u# dl=ut hdl tPRhj  {oj P5dl ‹ 8t5dlhj诐0hcChu u `;)EE =u h2j:hjH_Zu jj[^hjHZYu jj^_58W#/[uhnI Yu Dž\5E<X}ZuU BEE B;rtIRtittx~Xj@-j8D/sX= ~ft5> t uH@ڸ@^48u'hPRx ƅ2 @ 8u   =@/uhQh@2h@Sh!hSeB hPS FPjj@R赐t'@uAv4h58W )quitCoQv4h58Wd FtKFhF+FV4S\ ƅFH FuFPtXlEcDA ?atk ehx s pqV w v = x/ 1IQhR  WiVÅX= tW&[^hSW1IQhR菠  W VYvP"HZu Wh WP e 1IQh(R) B Sk(^t@u Sh, hpS1IQhRʟ ej[=[tK1IQhplRq hhh'hGh^h}hhhhh9h!h[h}hhhh58We L1IQhpRڞ VY=uI=u ?VZDžRDž1_ʉщ\ 9'$(lj1I^f[uk $RYu58WhVZu h$T_VhF58W hVWDž hW 1[^q=uI=u.?h;_S ZYt}h`S ZYtlƄ5W=~%hGPPh=58W 1RGPS ؃ _[ 7Y4hj k DžxDžtDžp|9sE9sC9x}x{ t Džt{ t Džp ;|빃txpx=t<Džhׅ~ әh担xhDxQxxufT1Й1d9Džl9l`k` Ã=t*3hhY58W hfC@fCttO=D!u08WBHK By ;B| tRQ 58WC PZR XZfC58WsB YpXtO=D!u08WBHK By ;B| tRQ$ 58WC PQ XZfCkd ;|r58Wj a Y[x[;x}Nx)ډӃ=D!u)8WBHBy;B|  Rj 58Wj tQ XZKuld`9lcG;d5 ;r s"Y58Wj XZ莯G1IQh1R袘 u58Wh? Ph*1IQhRI 1IQh R( ]<1IQh^R =t58Whf 58Whx 1IQhR茗 j'_{1IQhRU ur*K1IQhR% uB=t58Wh= 58Wh! [^Ph58W) e[^_UVSu1=u;t#=u) IuVÅXuu1(@CGC@PCPhH @e[^UVSuu tYt1=uIt=u ;u3ZufF@fF1e[^UE @E E@EEU=iu=Ht jh`IhfKZuj>ÐUVu NS1ۃ= át;=t}5X;5$vE9u4E9t4^u;5$sCVFÅXu h@XS$h58W' fcV<>ƃ;5$9VÅXu h8@XS${4Efc9^F4e[^_UWVSjYt<=t5XZ[F뵍e[^UWVSPuV} EÅXuVhX58W 1LW9YtEt 9t@u Whr+>XZ{u}t hS]>_XEe[^_ÐU"%=@u1=$uUS1Qt 9Ht1Z[USf@ fC=~95hjf)h`fd CPS`P SУ]UWVS1;u ]=`t ShpcXZ=dt;t=`u {uCCC%S)u9C 9=t5s؍e[^_UWVS ] ujSuUjSuU huP1ۃ EѸ)PhP؉򮋅PIR5e t$h;@PM _Zu5=^uho58W< t$h`CP ZYu5Xuh58W IDžƄS=CvhPVh=58W覮 +RPVչu3VVp5TáXhe[^_US]3 Y]]阗USjPA YX1t"h _Zu SP 1 @]UVSu6Zt$St VR:1e[^UWVS@=t5 yBVhSs58W 58Wc 0z $h58W 1SRA0Xs Z~SP @u25X5$h58Wh + 0b![_5jfDž5f)fh`fdC 51 Y+FF e[^_ÐUMt(; s 15t 9Ht@ 1UVSƉt;r Vh/YX1҉5=C st[ t9suhS/XZe[^US]t;r Sh..XZ15t9XH u @ P ShJ^.]UVSjuYtX M9sFBIZ1Yt*W`/X1t~t Whc-[_e[^_UVSuޥV9v"R6)S0 j 9tK/vShzH-e[^UPB9ȉuAB$t@9uA҉Bu hQQ-XZUUW1I_UVSuf~t hV -Y[~u&~t hV,XZ~t hV,[XFt^P+Yu hV,XZ9u^SVXt/1&tC9tFۉCu hVz,Y[6F 5e[^UWS]u h+X1ЍHt ׉P蹋DžXu h(+XSWd e[_UWVSQu ]u hCS+XZ;{t'G{C_j/VFY^3xDW61IKSE/Z3P fCu fCe[^_UWVSP=tG  1j$jĿ ^_u hT*YECEuK} u jAZtuhv*^_uu}1IڸK[j/uEZY@P@ǃ1IFKsC^EXt+u ƅXu h *XE CFC^(} t"u _t h)^ڋE e[^_UWVS\=t5Μ [^}uL 1һjP ZYu hX '_jjh;fHjjuz0 y/T 0em $h58Wr uhs&tPS Y^y/ 0#m $h58W0 uhq&uVjR DžXZu hN&XVWSg xjEPST y/ 0l $h58W辜 uh%Rt7ruh 9Etk} 58Wh  58Wh%H ^_jE =Ef u u[u Y Ph@x%XZE]ܣ47)ƉE؉5H19}t k$BQ$9sQkB$BB:t k$BBt k$BBt k$BB t k$B $뫍e[^_US]; ~BLtPĄY P蠄LZu58Whe j ]UB=SD]tRj |@W} Yt j:S- YZt/j:S- [Z5+CYhKS YZh;h蛚 YZue; 0Lj $hh58WT h;h] u& 0 j $hh58W 2XPOSj [@Zu58Wh赘 j@]UVSV55]OSEB $h5˃htH09~.bqtn ltAstwtk DF륅uщKxAQuKx~ BJBJJBuKxX BJBJJBJBBJBJJBʅuPh|58W8 jFe[^UREEPhdEUWVSW C=T=l=ku%58Wh蠓 58Wh萓 =Tt=C=lt3=k58WhZ 58WhJ =`u%=t5_BW$ CC(K,~)19@{lujxu dssC|XZC{lC|sss0s8CXS\C`Kd RhCu_X=dtC$C&=CTU;uW58Whc蜐 Y ^tRPhr58W袑 58Wj XZ= w[$,58Wh@58Wh35h 5h58W 58Whߏ _X`H$9tPRh58W 58Wj C Y^;1҃t&19}5u tB@9|C$`= e[^_UWVS$}ud =`}thh(c=[=D!u @ @5dE Y=D!u @ 5Z==7@=w 5hSs hS Y_u  t4S5@蘲 @1򮋕DXZ=Vh}PS jSh@u& 0] $h58W jnh;5@/[_t=D!uP PA Y6=tj5@"XZjj5@|  =u%5@h058Wu 5@D;uC=t5`h@5t<>/u4WÅXujWY0WP"fK/F뿍e[^_UVS]s{1Yt9tF@u h SXZsVhh#h e[^UWVSuF t h,V[_fN V$S 6JVa$41INV$S e[^_UWVS`=u} t=uW X}u6=WVdY[4 0EA $VWhLu}u|=WVeÅXZyqEPV ZYu)}t#jVdZYuWVleuVdy4轻 0@ $VWh}58Wp uh14=t&V}WtPh5G= EhY Zu]hhs/^_hSu0@PhFyu5hf 5h58Wn  =E~EEm}~"jEPhh5AxjEPhh5jEPjj5Ey h7wYjEPjj5EҀy h wZe[^_UWS uhj]S 1IQS5V e[_Uu u5; UPjEP58 Htj3XEUWVSlj։Ã~< uC#CNh%Whje[^_UWS]؁ ljU؍B<wH{SWhSEP蚞۶ }Fu CAt51эD9v H8 uEPhmj: EP6e[_UWVS1ۃ ׉EU؉IQR5޵ }I 9tjXEe[^_USU x&RuhRhS ڸZl]UWV1=Su+UyGKGNy[^_USPu uh`jP]SD ڸڸ]UWVS u hhj]S ڸ_x119}+)PEP5ʴ jXэe[^_U=umJqUVSu uVhphSx ډ*e[^UF]UWVS u Vhj]S3 1IQS5 Vu5ڳ (F e[^_ÐUU=VS։uPYP\\@YuM tt&u/Sh|=u Sh"u Shs/!XZ1e[^U>6 Ph58Wh  vt58Wh 58Whlg XZjo UWVSj/u 6Dž\DžX# 1[ZuhKS6 ZYt hS{6 Y[t 1dtjU At,at2ktn ht`ltJst9w=un=w\P=t6@Dž\9DžX-M&K=umhVuɫ ';=4Dž`tzkhs _ZuXhGs <5 ZYuEt Dž`)=3tP4 Ph X] Ku >u>1ҋ t Dž`2=u)=6tP3 Ph \ 맃Xu \EDžLDžPDžDDžH辘 KTtMt"Džp DžpDžl pPlP,^_hPEPh)Džhr @u h6]Xt@phHj tS hSlSlhYha[ 1jjdPhEP|BREPDždѢ @}t hpj5Tm4pVP884舜VG ~1e[^_UVSSS]SuVjZYujSjju"jjVjujjjVe[^UWVSHuVÅX1эA |/u HVb_uoj@VZYV)PBPhhWn 1эA/uHƄ荅P_t.jjVjjjVjPVZMZYtVhfPV Y_tVK%=@ubVhhW PW tWhXZ9uVh uVh"u P^_uS2e[^_UWVS4@t 1=hjhs/ ^_hKs ZYt&hSRs ^_thDs ZYu~EPst@^_tmusZYu\{QDDžXu hjbsW uuW?1utWC?#1e[^_UE hPuUhh?h=58W:Z j UWVS,}] E1MEftJFt6 At!at|ttHht0nvt]ge^5dl7=Edl4}t hטj05dlEXhiSW H;9Ǎut t=t}uhZsE_t@1}ԹhEPjRtPM$5hSj t EP[OE~=iuuȍPZYuV^tEOuA&k8u6Phs/juE[(E;tu3ZYtEuӇ UVS] 1ۋut-$;t3V豓 ZYt1=e[^UWVS]1tz;nu{ou 1؀8t 8,uG@P@Yuh1.؉ @j,P [ZWue[^_ÐUShhtW X1Zt&u ujk $hSV S ]U҉uRPhj" UWVSh;htV Yp[DžxsB 1҃8hthjj" hj\" pe 1d <#<  < hV踎ÅXZtm;thhV蠎YXt?u OoNhVƅXZt>u -j |PSk t @t |8tڸmh>YthWCPal ƃhVPHl ƃxǃxphcSU p e[^_UWVSVVh,htT YE[uhthE5~twt8CVPRW _ZuPR> ZYtȅu5W^S6hu*T }tWSh  E싶pu }_u#ht? @^uhthj 1e[^_UWVSPPEu Eu# E_tnu{Wz ZYuTtVPc ZYu=}t$PWtPh  hjCP 뎋EEe[^_<UtR_<XÐUyUj*<UVS] C EuC P3<<ZY~V@Jue[^U1=tEjj55555UM Ut ȉBARUE@љҸt )UU u u Z8v.~ u%uy=htUWVSSSE < uu=Vx19Y}'+@;}j uGEX9Z}>ۉ<w Tx<u9<u?=hu#yRh}Wi PuB1;t,+@;};PuGY<;Xt>1эAe[^_UWVSU E׉EEUEUE+5UEy9ju55UWPUY[EExVu55{E9E}W;5cEB<^v"WSYZWS5Cǃ P5XGFZEUE9U;5} 5^)EUEUE Ee[^_Uj8UE t @t ut t u@UWVS QڋA )Ѓ5$QSe< BPq8ljËX;5 FCB <$;P} FBCAB <~ VCAJuW8p5$5<55xe[^_UVStP7Xp7 UQUQU<$X < tCAB;X}#< u;X}< t< u CAB+55 <;X} CAB)pp5$5<55xUUPUPe[^U@<x;$$u_jj5xj5j5$5X 5pj5<j5$@xUS@<x$u+j5tpj5<jjHx $X9}<AB9؉|<$]UWVSSSUҋ] tt:t ;u1R }USUt8DЁv RsY J4v RQZ J49t1U ɋ]tt t < t{e[^_UWVSu 11ۃ>tj4u& C<e[^_UE WVS}u~VPKZGYue[^_U=xSt5_1XjS5B5tu=jt Puj45k C~5]UWVSh]3jj5E貼5jS5 5j1IQSuljEE5Ec[2t t=ud}~^uMuur)Éǃ ~:H9}*j5Qj 5Dj57KN  t|=uu5E@YtqBE^vH9}WR5.ǃ GH9}55XZF5+}Xt  t u< t< u} t uX1Q1VPwm u15e[^_UVS55xRX;5$sj3jVGF[ujV5K+P5x5.e[^UU$V9S~19։}{tF9֋A}xujj5xȹ)u 5x+P5x5蒹e[^UWVSS5${= << u5YB<w 5t+y'C$)H~A<B$$@<95$};C| );~Ⱥә)+ fA9},ȉә)y15<5xFXZ+P5x5Ne[^_Uxt ~Uxt<{UztBxuPj<$UztBxuP5$<$?UWVSPP+P5x5+5j .EBCB@CC PSDCtX=$;xCX5<}vEC +CuSj vE CEUGBF;xU|Nj5<5$5+CP0Ƌ+2FB $PE}$<x;$}65@xj5x5޵j5]>jj5轵j5<j5$5蝵 5cX=t5<5x/^_p5$5<55xe[^_UWVSS01;usE=hv# u SmY"B<v B<^vu uCF;ur);~غљ)+fC9},؉љ)y15<5xDXZe[^_U $P9щ}l=t<8y)J~@<A$<@P<$+P5x5@}u<$i=t5<5xSXZ+P5x5[$ U9<u =~'B9$}jX@jYztUB9$}juX@9$|ztjUX@9$|U < t#j2X@9$}4<< u١@9$}<< t< u jXU<;th=t$~xyH<B$<HP< $+P5x5ޱbBt^}uPУ<$?$}5<n+P5x5pU9<tjX9<uztUVSE8u] $u{~jX=$~Ku=$=x5<1ۃxtCxHtLxtA=t$5<5x%Y^~ KKu$ ~R9x~G5<1ۃxtC)xV5<Z+P5x5輯e[^UWVS 8t8u1}tCjj5肯5[555o $<;JEE}@Y;X=EtN8M: ABEA:Bu]ˡhGEF=v R^ J459uu8u}u;XE} E@C;X} },}u&P҉tE}t(jj555}u9$j.Y}%uh~PRXZ9$jXꡄP<$$љ5<Pb}t?jj55585t55 +P5x5踬 Ee[^_UWP8tP#_ht 8tP#Yj58|1QI#h 8tG=v RRZ J4Bz뷡j+}UVS1M1ۊB< w k ҍ\A؋ 1ytCI9AytC~PI9A|Cw SVM7P<$ љP$XZjj5*5p55*+P5x5e[^UVS0xjmjt5$50p{0 SQJQ<‹ ;s}F0BA;pp5$5<55x!e[^U=$<B< t< u$< tj=$Xtv<< u=$tb<< t< ujX< tjyX=$t4<< u=$t << t< uj0j^_jz`ux5$PwWң<tBPPBRp[Y=E[u @<;w}U@BFCU7W5x;5$X=Z}!jFP5vj5t$9}Fu;5$uUtQjV555wjSj5$$+P5x5 p5$5<55xe[^_UWVSPtP_pË$<^E׋5;V} ACB)0BPE$P5"xYtjjXZe[^_U $P9щ}A=t<8y)J~@<A$<@P$<j jHjXZUWVSSj/E 0E1ZYuU @h Po [^u ;uE Sh n ZYuxSh n ZYupShtn ZYuShTn ZYudU 2558WP2 5P58W?2 5l58W.2 558W2 $558W 2 ja ;+u CShm [_tNF;u}E =u  UBE1QUY€;tCBFE;u@|e[^_UWVSQQEE9Eu FEu E9E} FEG> uE8uVËBCB@PSXCXCZtXW<xx X&pPW<BHB ~OE<<EIu<EE9Eu> t EE9E e[^_UWVSW1=]jj5Y52S55`jSE $tJz 8t(z 8 tz 8tz 8t xz 8u55[^5Yx~jkjrXZEE1EPh`R hh`5y tuƅt?xu4X@CtXtPRX5FX=tcjj55p555  t55^_5[t =t e[^_U5觟.>=D!Yu$55 55=jj5 Z@Yjj5R5+=t55p 555: 5+P5x55 5;Xx=t<=t1thP\HPh~PGjj5)5t8tP55 5+P5x5ƛ5UWVSPP} EEtuPe ^_h;u3) ZDYtsj5y[_v RvY J4v ROZ J495Dk V^_1h,u( YD[uJjj5訚5u5|551Jjj5h5Au5,5m5R 3;S}U=D!zvu/DȋBHBy ;B| tRQ? 5DPZXZ릋CE=D![u$DBHBy Rj I?  5Dj ^_EJ5DDj jj5e5>uuu55d(5Fe[^_U=xtj5j j5tjXZ5<5xUS5j5Cj1ۃ jS5贘j=t  `P5C~55zjj5_5x5r5W 5Q56jj5555 ]UWVSVVEEhq [u}?t:/Bu‰E€8=uCj5j5轣@芖5=h *YuVj 0jo 5/j/Ljn 5/5n jj7x5n h.5 n x$<tjj7=kjj6X=tZt h^=t<=D!u$j+S螤1E9} j-S臤YXFj+SzCjjSjE0Sl jGPSU ztj5@SC =uC1EE9}:}u~jWS蘐j|SEPWS肐 j|SߣXZF뼋M9MC1}~ juSLj5S趜fEH9Nju}nkE}ԉEjE+UPS  }~#F$~$Ph&S jE0SJEEH FE9E|jUM܍D PS諏 ;uu3~#F$~$Ph&S kUHE ]e[^_};u\MM؋}jWS: }~#F$~$Ph&S5 jE0SFxG E;u~e[^_UWVS0Ex0EEEt0E8u}Ex$]UC1:эA;E~EKu1ۋ@EыEI9ȉEw׈IMċUċ M̉U1}̈ЉI5HMЉI9Mvً}ىI9MvE81}̈ЉIMĉI9Mvً}ىэA f9ȉE~Gjj5覍5555蓸1cf9]E~ ]~ uuV9|UUzuFEE+Mȿ+]CQPuuNjPE苻Vjuuuuuu8M܃} ~+Ej@j+EPu賌 u輷u輘YXv WR. Z J4`~"v W0. Y J4z~ GЃ v W. Z J4`~Dv W- Y J4z"v W- Z J4` GЃ wGEU9U ] tY& tt tKBtNt\xtHq}.t)tRt t@C;]~:3Ku0]+Myt"1VuuuuuuuO U+U؍F9|U؍D29~ J~;]t09ut0M؍D19~%;]u )E(}u EE;]}-E~]Vuuuuuuu t tuu芵uBkU |u| u|t0kMTtRT MTtRTXUT=xt؍e[^_U=x5輽5豽jjfP5fHP$xjP; j5j5[5<5xR5肴U=xf5$jjf5fPnjP詷j5l$5jj5fjx+Px$9t5<~P j5Z-jj5fjӄjP4莻 54耳5uUSj5jYXt;tSCS?XZ]U=t h#jqXUS]۸t1<.t<>u AB< t< u;K|1;K[US];<\nC=D!u(=D!u( t@8 hV@HZY,j5\Vn tj5VJ tj5,V& tpj5 V tpj5<V txxj5V txTj5V uCj5LV tlj5V] tlj5V/ tj5pV tV8_P[j5V t.Vr1QGSPd4 Uj5lV t/V/Ê0< Y*S6BZj5VS tj5V/ tj5V j5`V thj5pV t kj5V t Jj5dV thj54Va t uhV4 uQ _E}HVuh6C t%h;P!J Y[uhe[^_UVS^jhFxSQ S* hh P贠 y.jj5V5|5 5PPW jV( t;VhWxS8& S5qV~ e[^UE1Ʌt[tt .t>u1A t uPuZ1Ʉt( t @At ut t u@AUWVS0EBEB=lE&5_$Eȡ0@UJEt'< t tM;Htu[E̡8EС@+$@ PUM98á<< ^t< u~ $)M5<ωt/< t+< t'E;x}BCGt < t < tEItcp[t1;5<tjC;5<Yt=$t$pZt1@9$tujX<8 tjj t^XjY1<< t< uwA=$t5Zt<.t <>t $1j jtYX<8 tjLj XZj:X@tPY~;>9j(=$t}pBZt jX<< t< uyX=$tjX뉡pYtt1GW=$tYOpZt~ jK_u}~ jM)^~}y jE'[tPuYE̋U؋M58 OEЊU8UPUP0UP5<M5x e[^_UVSu uA=pt85j EZYÅ~ j K^=e[^WB +B5$Rj /< PB$ <9ӉP})ډAKuA9sAQ9<<5Yv~~35V5˵<$ *V5 @<$XZ=ltf9}W$9~<9=$u9})jX9$)jX~ jKYu);~B5<5x־XZ=t u=u t t p5$5<55x臵e[^UWVS(EBEB=lE,5cZjj5Mx5&55U5:Eء$EHtEСEܡ8Eԡ@+$@P8ơ<< _t< u $)M=<ˉt2< t.< t*E;H}BFCt< t < tE;XItp?[t1۾;=<tjqC;=<Ytjj5w5555=$tdpZtlJjYX<8 tj2j _Xj Yk<< t< u蓵pXZt@9$}!<8 u x ujX@9$}C<8.u/x u)jj j  <8 ujdXlHjj5u5}55謪5葠 $P9}e9}+9}'j9_}@9$|붡@9$}=$ujj謽YpZt ~ j*K_u}~ jMh^tP[E58EܣEԣ8UUPUP5<5xEأ35[5Xe[^_U< u jͼ)PEX@tP*YUVS=ptP5Dh58 =tP5Hh5  =ltP5Lh5 =tP5Ph5  =htP5Th58 =xtP5Xh5PV =tP5\h5h' 55`hYy5  =tP5dh5 hwƍ@,$1=pp1=1=ll1=l1=hhu 5՚c=xtz8s1==xtYRj5$萴YXt=S1Z~S`X$1=t h)e[^UM Sɋ]9tڅ:t 8uBuAu1[UWVSEp8~x/uPMAÉl@j/u8 lZlYElE@Pul/_E1Ћ{΋lэL1Q.sPp" lp2# h p[^kp1;5CFt<$u;$C1<{u+Ct<}ttCBt <}t~;}u-C*t&j50PjP9PXt:uj5T蒭YXt;uBjj5Pj55c55=LuS09أZt SXjS;ZYt uS^e[1^USt;uj5TάYXt;uBjj5i55蟞5T5y=Sp9أZt SWXjS{ZYtjX]UWVSuj50Vd1 t j5XVC tKУVΦÀ;Xuj50̫^ljXSjP ij5V thpVn8Yuj58lljXZSG^9:P Y.j5DVf tTjj5g5軗p55p55ɜ(j5V tXjj5yg5Ru55uXZP5h5\ k0< w VFUj5HV| t.jj5f5і<P5j5|V9 t j5xV t7@‹B@@BRuj5VΧ t2jj5Jf5#hz5Sbj5XV臧 t8jj5f5ܕ5|hs/5j5\V: tj5V tj5,V tpj5 VΦ tpj5V誦 t hfj5dV苦 tBj54Vg tj5VC t j3Xu?=tu6tF< ^t< u S)XSt7jj5c5ȓV5t}e[^_e[^_U輞u`訫jKjD蕫5,w=jj5zc5l5荘 5oh:UVStХj5 ThPJth5jj5buS55 55XZ5ՍtGX@S5貍+P5x5bttSyXe[^U=u j=u jӭ==h=u=u鹩=Ru$}Ph~P=Su"$}Ph蓰=Hu=Ju鋻=u j=Iuj j'= u1=||%= u=|t|O= u=|t|L1= u6=|t'|{5<5x讦XZ%= u#=|t|jYr=u=|t|ͨt=u=|t|g=u=|t|USu ]騮u j軭u ]u ]ֹu ]u jku$}Ph&u je ] u ]A u ]鲸 u ] u j!u ]uWj5@VÀ;XZt6SQ+P5x5^5"Su ]魦u ]u ]馦u ]u!$}Ph~PS[XHu ]锝u j觮+u ]颱u ]雫u h@DY]USuWj5@4À;XZt6S/+P5x5]5Su ]u ]Yu ]Tu ]u ]Bu ]u j߳!  t$ u ]3 u j u j̥u$}Ph~P+u ]u$$}Ph諫[Xu jUvtru ]靤u ]hu ]ƚu ]飛u j趬+u ]鞵u ]ku h@SY]US5dhS jj5\55d55 (5S]UWVS] Suj5TQ9؉t 1QVPO e[^_UWVShj~jhiRhjThjs hjD_hjHNhjL=hjP, hjTh-jXhCj `hNj  hjj h[j 0hej `hqjx h~jhjyhjhhjW hjChj02hj!hj hjhj hj8hjP hjhh(j@hpljXh5jp hEjnhSj ]hj!Lh\j"; hjj#'hj$`hj%dhNj&h hj'lhj(ph2j)th~j*x hj+|hj,hj-whbj.f hj/Rhj0AhFj10hj2 hj3 h*j4hvj5hj6 hj7haj8hj9hj: hNj;}hj<lhj=[h;j>J hj?6hj@%h$jAhrjB hjChjDhjEhjF@ hbjGhjH h1jI0hHjJ8u hWjKahljLPhjM?hjN. hjOhjPh hjQh jRP h6jSlh[jThtjU hjVp hjWhjX {hjYjhjZY hj[Ehj\4hj]T#hj^ h#mj_h7j`hbjah}jb| hjc,hjdhjehjft hjgphjh_hjiNh'jj@= hAjkt)h\jlxhljmhjn hjo,hjplhjq$hYxjr hTxjsh1jth6ju0yh<jvXh hAjwThqjxDChAjy2hKjzH! hRj{| h]j|xhj}hfj~X hdj\hmhhkh,hth  hyhshh_h~h<Khh7 hh hhL hhhyh hhphhhhlhh hhzhhfhh`Rh\h` 4 h.h$hzh( hh,h h0 h^ h4h h8h h<@DHLPTX\`dhhB lpht h hh hh/ hh~ h h hh hph hzh hf h5 hOhW h;hq h'h h` h hxh hh hh'hd h hh hh hHh# hdm h! hdV0XD|xX5,=\ 54= q:;sHd<L $p5  = (,l048<`@pD[HdLPT^jPY~5T#Be[^_UVSju Yt j Zu58Wh) j jj#jj hUjhUj j<h-@0Ʌj ã<@@ @@@h,h8h$x<P|i~ u V菤[^=u fH=uj t@jj5I55d5~5tj- 55~5t c=y=xtuh@@Pph\ 5`hI jj54BI$=u 4@h54>~4@P,r 5r聸5UZ@YL荶=tUjj5H5越=xu5hs/5} 5sX=~ tujÞ u PdX=t ze[1^ÐUUVS=ÉY=%LVShn5d+i5d+ 5@WhP uL5h5d+  =D!u@Wf` 5@W-[v RY J4nt~?t{atpt'qt@Sh5d+% _5d+hHXZA5h5d+P 1SSh5d+7e[^UEVSu t~]6h5d+ =t#3Ph5d+;5d+h&eH$h4h5d+/=t3v[ YZt;;uvh5d+M/QC t8tPsh轈 sh諈^Zuj 3h4`C, e[^UVS]ۋE 5<u;,=!uu <=t;Xt88u] Ee[^Bu =3th3ph phއYZu,5<e[^U}E u0h 5d+/WE EU}E u0h 5d+/UE E{U}E u0h 5d+/hE E3U}t E 0h*  h`h? 5d+,/U}t E 0h`  hhr 5d+/U}t E 0h  hh 5d+/UWVS} `\}1ۀ?tJH9sC`Ёv R?Z JD4%t1C<t\븋`tv1ۀ8to`[ҁv R_ JD4%t-[v R^ J4`C`<돋`}t~1= `tF tv;tN1Ҁ=/t;/8u"9s2 Aʋ\+`H9rB/tvŊAC`}+1DžT1DŽd@~?=+ƒ$St \u;F8|9t DŽd`!=!DžTƒ[t,$m\AAA<$ucA=wbJtXA<0u?t1BF:XσdT;TtBFDžTt{u<]tu\uA]$uPA=wIJt?A<0u?t5BF:XσdtT;TtBFtAF<,u9DžTITAt*<]t9\uA<A9uq,]tYIA=wEJt;A<0u?t0BF:XσdtT;Tt BFFA9`8u5d+h Y[Ǎe[^_UWVS1}uU BEBfEtAHuh E PEP t%}h E PEP t}~E 0h!5d+E pYu/E Ptڋ8a)!t=.!u3!1Ʌt =@+tQ1Ʌt =%tQjRf‹E 1;Xu;PtQRSV趝 SVe[^_U=VStW=\+tN8!5%%t5%5%[^UWVS4EtHu=hF!E PEP! u$E 0hR!5d+3/E hjjhOt=T+B?t =%u=E 5@+5%53W19u =uPR=W.!u3!P =u@=\+t7i!8!djju o I=%<=D=E 5@+5%E j4‹E 1;u =uQE R=4.!u3!P ==\+i!8!WK1 SjhE 4轈u uE 4hn!]Sy =%=E 5@+5%j7z19u =uPR=7.!u3!P趙 =u@=\+t7i!8!#t &Px[F;uje[^_UWVSh1}DžuU BEBfEtAHuh E PEP t%}h E PEP t}~E 0h|!5d+E Pp[u /o1҅t =@+tR1҅t =%tR1҅t =3tRV}=@u5d+h!1PSW Z}Yu/ySh!~[_%%,u(jE pcZYt[9| DžGWE 1;Hu;XtRuSh!*%%Ve[^_U%%S ù!u,Qju u]Uh!ju uUj&=\+Yt0j=D!hu d+@ 5d+yZPC jhIUWVShEtHu=h!E PEP u$E 0h!5d+/EE h"0%%Dž.ZYu(=@Džu5d+h!hjjhH{q;t =%uT=Gh S^_uSh"5d+ E ڋ 5@+5%53St9PVT ZYu%% Vhm{_X19ju =u%Pס% ǹ!u,QSVh!b=%%u@=\+t73"8!j5T+u rje[^_UWVSQ}u t 6h8"h;v*DžXZu%vhM"5d+/e[^_Ë%%  "E!u(E,;t^ujVj?S[jh jjWJulj}e[^_ U} uYU}VSu$E 0h 5d+A/%t)@5i"tRhw"5d+5d+h"ľ[^=T+uFjr=%Yt5h"5d+辿 5d+h"}XZj4^5@<+8u"P5$h"5d+k5`$5$h#5d+?$hhh4h`h0#5d+5D$5$5%{$5<m$h^#5d+о05%L$5>$h#5d+衾5 $h#5d+胾53$53$h#5d+W,=%th h/h#5d+15d+h$Y[=@+th!h+h!$5d+5d+h9$趼XZ5&_$5P+5!K$hE$5d+讽535H+5H+!$h$5d+脽(54+5D+5D+$h$5d+W5 &5`+h$5d+;$5%$h#%5d+=0+:%uP58$hZ%5d+53g$h%5d+ʼ(=(~A5d+h%1耻[;5(X}%Sh)5d+F苼 ;5(|h%h%h%5d+c/e[^UEWVSu] }u 1>Ru6h syZYu2hYs^ZYu3h%5d+$t6\$Wh%5d+辻e[^_Uh%h%u uG/Uh%h3u u(/Uh&hu u/UES] u1=!!{t 3h&Gh slYZtPhYsYYZu !;ssZsh3&5d+˺/|P+!5!/$hT&5d+蒺 =!t5P+hj&5d+p 5d+h/1[X!t &/]Uh&h<u u/Uh&h%u u/Uh&h&u u=&/t !Uh&hu ua/UES] t~!3h&5d+臹/ 1=u>h s誉ZYu [hYs苉ZYu<us@XhshX<+ =t,<+t8u5d+h&获Y[75@<+8u"P5$h"5d+x/]Uh$'hDu u/Uh-'hu u/UES] t~ 3hI'Uujh sYYZu !\hYs:YZu !=sTZy+shn'5d+謷/d1=!!=!%t5!5!%$h'5d+P1=!/]UEt!Hu:h'E PEP u!E 0h'5d+/dE ph'qlZYu9=/uA=<t5d+h'胵YXE ph'3lYZuX+MUSEU /u Bt2h(5d+KvriÅXtgS耪@Yu Sh()oB = t$h h%(5d+ /5d+h>(赴XZ]]7]UEt!Hu:h E PEP| u!E 0hc(5d+莵/!E phz(kZYu X+USQEtHu=h!E PEP u$E 0h(5d+"/E hjojEh:;u ~=tuE ڋteShz(0j[Zu X+=u@=\+t7(8!jju Xuj]UEtAHuh(E PEP t%}h(E PEP t}~!E 0h(5d+讳/8E ph((iZYu!E ph(iZYu X+UWVSE EEEEE;puKuEUh)2PYZu+=<Eud+E E(e[^_鹱t]}E)u%Uh)P[ZE)tE )~ E@E~Uz E Et:~5}u}t U2h%) E0h>)5d+W }tNhd)训Yt8uj)1ӍCP&|SVǍ@PgEPhKW^Zt??|t:UW[t¸o)Eu /1jjh,uWu$}tt}e[^_ޚe[^_UVSEt;Hh!E PEP t}0h E PEP uE 0h)5d+VUE LDhKQMM裐^Zt5E8|t-PE[t¸o)u/E h)0ZYhjEjEhS6t}=%,tjjPE 4}u )u)P諐=u@=\+t7E 8!EF=t EH9^uj-M[9M^t uYe[^UWVS}u$E 0h)5d+e/Rjjɽ~dÅXZSCy X~jj螽h! uj/SSY^u@hPPE =!tJ5d+S衭X=D!Zu$d+BHBy Rj  5d+j i9Y^O~j5%h#PSb^ jPST^ Shs/Zgj/% ~PG9ZuVj覼^C_uh)gY/ /e[^_UWSPE1ۅt#Hh)E PEP EvE 0h)5d+賭E ph *4cZY}h*MU BE_E ph*bZY}5d+h%*5d+ 5@WjO]Sحu?5d+h/*[=D!_u @Wf` 5@W{Y/s1D)E X EE p hN*Nb_Zt5d+hV*p+u}uE p hN*bY[%e[_U}E /t0h 5d+@N=@u#=@ud+E Ee*h@h*5d+/ U}E /t0h 5d+ƫN= u#= ud+E E>(lh h*5d+胫/ UEt!Hu:h*E PEP" u!E 0h*5d+4/_E ph +`YZu9=/u<=<t5d+h*XZE ph +p`ZYu X+UEt!Hu:h*E PEPu u!E 0h*5d+自/_E ph<+`ZYu9=/u<=<t5d+h+YXE ph;+_YZu X+UWVShuP} R 9}7hE4VxG 9}hhV^ CōPhs/9_^_Hu jX[X+e[^_UEtHu:hC+E PEP5 u!E 0h]+5d+G/u uhu+UEtHu:h{+E PEP u!E 0h]+5d+/u uhUEtAHuhZE PEP t%}h E PEPd t}~!E 0h+5d+p/E pph+]UESU <u2h+5d+)//H<u h+]Yrh+]XZ<]UUBSM <v1h+5d+迧//J<u h+2]Yqh,"]XZ<]UESU <u2h 5d+Y//H<u h1\Yrh,\XZ<]U}E u"t0h 5d+/=%thyn\XU}E u"t0h 5d+警/Ã=%t jjvXZjp=%Yt jjZXZjJ UUҋE t~0h,5d+F/u@ h3,FYE EN*[Uj% =T+XujoX1=%j3nojh`+UWSWEtHu3hlE PEP~ uE 0h<,5d+营E p\E@[u 5d+hO,}u5d+hd,*qEx u 5d+hw,jh`+ZYuIhj蜳jnM y t4=%u+5d+h"ƣjnSj_/vhh4Y_~&1)QPh豻 ME PPEHPQXZ1=%j3mSjݲe[_Uh,h3u u/Uh,h3u u/UVS]ۋu t~6h,5d+/ju&5d+h,%蟢%/?j%v@h/%/ u  jvh e[^UESu)5d+h,@+'@+/t$h,E PEP t}~!E 0h,5d+/wj 5%@+/5 [=T+ZtC; tj S%5 ZYh5%h+ C; thSh!]UES] u1=`t!3h-5d+>/h s~rYZu hYs_rYZu`'hIs6rYZu`5`?$51$h#5d+蔡/]U=</-u1Ph8u u/0+UhA-hu u/UhN-h%u u/UWVS u] }t~ 3.}t 3h]-3h-5d+ɠ uh?{sEEpY_Et8h "sp_ZEthj!spZY{E~sE_y ZEus Y6jj蓮jj舮EtP}uEH+=3}t =<t-535H+5H+Q$h$5d+负EtP}uED+=4+}t =<t-54+5D+5D+$h$5d+^VjϭSjǭ1e[^_Uju u/U}E u0h 5d+ /Wh-TZu2=/u;=<t5d+h-蟝YXh.UTZuX+oUSPE] t~!3h.5d+聞/=@u5d+h!-uEj EPs5у ɉxE8tsh".5d+ % %%% u5d+h@.轜Y[RPh[.5d+ӝ]U}S<u!E 0h 5d+覝/h.<S<]UESt;=(u5d+h.Hh.E PEP t}~E 0h.5d+ =t5d+h.֛Y[j E pk(PF ( uD` H5d+h/K CA(/2k@k`to=D!u# @WAHAyQ@5@WMZƒd u" (k;X{VC뉃=D!u# @WAHAyQ1@5@WYƒ tB@BtC=D!u% @WAHAyQB: 5@WZ x5d+h>/A/]UEVSt!Hu:h E PEP u!E 0hc(5d+/OjE p։ÃXZutVSE phg/5d+ۚ |w1/e[^UQEt!Hu:h E PEPg u!E 0hc(5d+y/PjE pEY@Zt-EP藂$[$E php/5d+.1}/UEU u2hv/5d+/Hu E/vOBE E/cOUSh,j] SuLtssh/5d+虙]UWVSWEt!Hu0h E PEP; uE 0h/5d+ME phE^u /~hd)葔[t8uj)1ˋ}Ӎ<WWVPEWhS}WuSs(SS/ue[^_UWVSEt!Hu=h E PEPN u$E 0hc(5d+`/hd)趓EZt8uEj)1}ӍCP*|Suƍ@Pijj%h!EE pV<h!!U<%%!>xE(%VU!%<e[^_U}VSu t!6h/5d+a/h/6g[Zt(h/6gZYth06wgZYuvYtu6h 05d+ tt`+t &5 &5`+h$5d+跖/e[^UEVSu /t ttG6h%0U`=`CuP3j h?05d+D;v%ÅXuvhH05d+JCtPoCXvoC=<YtP3h^05d+ە/e[^U}VSu /t 6hu0v菇ÅXuvhH05d+脕1CtP~CX3h05d+[/e[^US}E <u0h 5d+%/;=4ud+E E0]̓<h0zJ<]USUBM <v1h%)5d+诔/P=<ud+E E0]VJ<u h0JYqh0IXZ<]USMAU <v2h15d+$/Z=4ud+E E!1]˒<urhN1qIXZrrhV1]I <]ÐUE E EEUWVS1ہ,lj؉IMIɉIuX}:؉׉IQRhSS5&5d@DMEэYDž9sf 1I9s(48u B19s;vA+SPhSS5&Bc@D@]=D!u$d+BHBy Rj  5d+j XZhXjUr2u]e[^_UWVSƉUE1IME=t?E1I9MwuSVc u Su_XEU:uU<^uh5&4b@Y[ujue[^_UWVSuhË@+=YW@P3hC+/3$}=$ 39Džxu:9=u23uWPhb u Džx#;&sGP34he $=3ƀ30跂Z p 1эY93v2~.Tv Rx_ JD4%t339غDR`(Lti CtMN{O|ndct!lt1oTr xEkj/h3Y[uƅ.ƅ2=uƅ/ƅ-PhP F~u2WÅZhSW SwXPpp_`t1Ilp[t]h;xWZYth`WZYtC9lwlWV`` uW+$t_Xp[tx<YhPSâ hhS ht0Sܢ PS _ZxCff%=@uƅ/P5& ^@Y[ujtXZDLh1Id`=`tE1I9dw&dSh_ uSh_X>hx<[uh5&;]@ZYujh ^_=%t5d+h2踊jj/hDžPDžn0Y[XuƅDžX7X vK;/tShP X=X+u$=thP_Zt jP [^FDž|C=t:;u )j/S/ZYt@P9$5^_|PjP+ u|tPh?5d+| hPh蹟 X+z\DžT1;PsyT1XЉIP߉I9Pw/XIQSXv\ uS\Y[TT\xX$\K XZ Ph2jAe[^_ÐUWVSEDžDžu} uH%h.E PEP u E 0h2\Dž 5(9 }+j SE p~[ t 9 |ڋ ;(u%E ph25d+覈/hh$P k ;Cҁv R,^ JD4%@uѾ $t\CS=wY1Ju Kk |CЁw JuދEK9|u!)PE tV E |AiuOC;EDž}t1j/V,"9[_uu xt{1u t=!t{uPuPuPuPuPuPuPh45d+|$=DDžDžtQuHt >th4VKZYt Džt ?th4WJY[t Dž=%t jjXZIEԋE؋Et EEEPR  %Y [t!Hu3N uh4`5t tEPj莩EPj9h5j3XZ1ۃuj/V Y[tC=!t+ۉuPuPh$55d+zt>taEPjEuEX+wX=X+Zu0>V=/F58Wh=5Ny^_/ۉ-t?uDž t3hVS薏hhSʏhWS辏߃$E "}Eu t<=&t E"E3"EPjR=%uj/WeY[t@%=%%=&EEEt Pj/PjXZ/dљu DžtPbDž_tP}bDž^tPbbDž[tPGbDžYe[^_UWVS DžPPPDžDžPDžHDžLDžDžDžDžxDž|DžDžDžDžDžDžDžtDžDžDžDžPPPPQ7@/u0t&8t!hB6PG^_thL6t8u,Cu =%uhs6~t%[uj/tZYt@PtA_t 8uh64=!th65d+vv =&%%%%DžTDžXDž\Dž`DždDžhDžtKhKԱ[^t5:|t*XPRr ZYu%%Eh;t%6u^L_uth6X=D!Pu LA Li*[Pڸ ZYu#x%%%% tGjR=D!Pu LG L*_PU yth7-a=<th 75d+t%%у tRPh+75d+tt5d+j s[^uu.uht1DžHuhj1oY%A7>h1Dž[oZ8PH1эq_{8tvj:PkY[t0j PBP貖‹ 8uA9u61эQ9rR)SPD hlyP_ZdtPp\Dž^u&ug PPPPPPPK7@-w/t%8t t#8thP=Y[t hU7.Zt~j% ^_tkhn7+Y[tPa[DžZtPF[DžXoP'[DžEtP[DžXtPZDžXtPZDžX质XtPZDžX1}Թ8+E؍PEPjEEEtP5$hs/_BtDžӅSojjjhVssT thhbV迅 =<t;tVh75d+:p SffBs jsZ> y h7)_CssP[ y2Ph7(P Dž [yh7h!Px[=<L^th75d+]o 18th=<t)Wh85d+$ofh8Lo =HiLh#8Rh68Lnj: tF!PiZYtj%S ZYtShH8L}nSWhS8L\n ffPtPh\8L8n Lhk8lLh`8lLhn8l%%у tM5d+Wl5%5%h8Lm5%5%h85d+mF(=HtLh8_lY[h8wZtPh8Lim h%h%h8LJm} t9=<tWh85d+'mF u h,9L m }t4=<tWh 95d+lF uh&9Ll =<tt5d+h[k[^Lhk8skL @uh@9-jhAjPL(u&hU9Y%HtD< t< t< t< tŃ=!thj95d+k j ZYjj @RPƋ t*Ёv R~_ JD4%@x[t TYjhAjPLHD< t< t< t< t=!tQhj95d+j y9tdj P_у ɉ£% %8 =!QRh95d+Xj998*u@j SP^ ҉dh}8-nj @SP^ ҉\`Gh9`5d9\!8/Px*u,j PRC^ ҉TX8=!t5d+h9gXhZudu5d+j*Oh_X+`\hdh95d+hXTh95d+h%%  h99(Sh:_ u4Sh(:G uShB:/ DžH8u(P\[=!j]PTS$hX:Nk:t/ =!|Yhu: :teWth: !:=!5d+h:eXZ:Ku ;7\;u=!9jh";:t OXS=!XhE;5d+^f tODž_/!,}d3t1 1t5%% hZ;O |t |?u h;1 B~ h; 1uD=<t|h;5d+ae u u|} =<t|h;5d+e | uE DUD=<uD9ttuxh*5d+d t ?u h; D85d+h<2c5@Wj Pdu(=D!u@Wf` 5@W謼 v Rx[ J4y 11ۋD=!@<Dž4Dž8Dž0tQhB<5d+c ;t6jh\<4 uj"S3ZYuhd<_X)؍XS.$P4jx 4h<5d+b t+hVS8x Sh*5d+b h5d+ ^5@WhWLc u)=D!u@Wf` 5@W[01Ƅ)$^_tPjfY[tPj fXZLt L2@t PC XPtHt HPXtP_Xt A_tP ADž^tP@Dž[tP@DžYtP@DžZtP@DžXtt t~@XtPm@DžXtPR@DžXt 3@Xt @X|t | @_xt x?^e[^_USjh1>P' h%S&ZYth8>S&ZYu 5d+h>>:h>S&ZYu 5d+h>hD?Sd&ZYu5d+hK?TY[Ih?S?&YZu$hh%h%h?5d+USh?5d+U 5d+j U1jjh53S& t / ȉיut 5d+h0Cʍ\PXPEPEPEPURhCh@ hBS{ZY / ȉיut5d+hWCHt\PXPTPEPEPEPURPPLPhCh@d, LPT1UE E E fXf\\PXSTPEPEPEPEPEPEPEPEPEPEPEPEPEPEPEPURPPLPh~Ch@c\t5d+hCLPT11DBvfXfS hBSy[_  / ȉיDžXut5d+hBKP\PJPIPHPhCh@^uH:Iu:Ju:Kt5d+hCjhh \f=`%h DiPh5& r xjh h茀 =%t f&tP賆 YjjP  £&yhoE=%u2j`PjhRO@uh%Dh2D XZmPh5&yO yhΒ%t;j`Pjh5&3O@u=!thBhA_X1DžD󫍅DPh5&S @uhlA[[jD5&pZYy h@D-_=%*ƒt=8=0+jhdP~ G eu Dž|j j VhSdPdRuVVSWhGD=%A=!0+t5d+hB9Y[t tIPPPPPPhWDyǃPPjPPPPPPPPPPPPPPPPjjhnDǃX=%u=%u%]1t %=uBj`Pjj5&Dž`4L@u=!thDhAXZ1)5&т &_t %e[^_UWVSH=jj5&~ rPj5&_ @Wj]ġ&SEfEX!UY~BEXZ%% tRPhEm uuuhU Htuj+>j} tU :-tRhE5d+, }tuhE5d+, =T+tuu ui 9,t jPY[^jDž`Dž\DžXDžT,hZYt=~ j`Xhj:h?jy:hKu \gu @Wh& ] ;|uLjj 3:] h;CSX:huShs/:&Dž`) h;u +^h_uu h!R/bE=D!Dž`0Pu hB h5[Pn ZYxE%=t%u hE5d+* / EċUȣ%% jh腰^_ %% h3!uafY[th)!uNf_Z,t |_wWj5%5%h'5j5%=D!5%u hC h^Pot ƒyu h!Y[ 5%5%hEV  DžT!}tuuh* uhs/_ZHM TX+d^(9`+v&,tP[`+P(7`,Yj7jj 7X, M=D+jEP蝻s D+ljXDžlZ~ s19ס(|9vQ=D!5,u hB h[Pr p%%)׋,p=D!Su dB d-YP^r l~)pÃpl=!=&t =%%EU9Ӌ %|e9r_=D!u)d+BHBy;B| #Rj#`? 5d+j#1XZP+ËEUډEU5d+` Xzj|PU+U|+E^҉tx_yHt@Bxt@B+xP@;[q 5(=D!Džl5,u hA hYPp p%%,p=D!Su dB dVZPp l~)pÃpl=!.=&t =%%EU9Ӌ %|e9r_=D!u)d+BHBy;B| #Rj#= 5d+j#Z_XP+ËEUډEU5d+^ ^=!=&t =% %ɋ% P+9G|9sA=D!u)d+BHBy;B| #Rj#< 5d+j#蔯Y[=D!u$d+BHBy Rj < 5d+j XXZpyu h!l_Xl@p -i=D!u)d+BHBy;B| #Rj# < 5d+j#ޮ[^5d+]] P+ËEUډEYU=!t6=&t =%y$%EU9Ӌ %|`9X=D!u dA @dZ=D!u4dCHCy;C|d dj 1; dj _X%%=D!uBdBHpBy;B|p tdpRQ:dp薭[^%%=D!u/hCHCySf!h@ph{dYpp=!=&t =%%EU9Ӌ %G|9sA=D!u)d+BHBy;B| #Rj#9 5d+j#豬XZ=D!u$d+BHBy Rj 9 5d+j u_X=D!u hC @h^tu h!mY[=D!u d@ @dZt)l 8 t hE2X%%j/`_th`Džh^ddjDždY%%[\j2/X=Dž\Zu /i&xPj &XdtdcDždXj/%%_|vjL(^\t\j.Y[XtXj z.XZ&xP5j &_`tht h`^dt db[P&%%%%e[^_UWVSE PP+Eh!U &uDžLDžH%E%%E%%40ZEE[^t^=<tU}tOPt*}u P;-tPhE5d+ }tuhE5d+p =T+tEtuPu31҃=3DžDDž@Dž<u EtjUhZYt=j4XhjY,h?jM,}@u)hKPY^_P8|jP2Y[j/P5_Z4h 8t *h 8 ult;PjtۋPu;PN2Yۉ8^t/8x)=%uHg 8 u5hP_ZyPh!/=%t/g 8 u% =%tPP^y Eu=,tRjjIY[E9,t jPIXZjuvD%/^=%_^ @W O jhY[ Et)%% tRPhE  }t];tSuh_ uhs/M_ZH h;AH^K }hKPcWY[u$[^P+ËEUډEU5d+O Y=!=&t =% %ɋ% P+9G|9sA=D!u)d+BHBy;B| #Rj#- 5d+j#xXZ=D!u$d+BHBy Rj t- 5d+j <^Xy)!` 8 t hFN[%%988xPh FsE%% jjjL211۾1%9ӡ%h|9sb=D!u/LCHCySX!LL@LxVYƒt3 ujjjLPh!!XZ5 E@E=D!u)d+BHBy;B| #Rj#+ 5d+j#蚞_X5d+M P+ËEUډE^U=!t6=&t =%y$%EU9Ӌ %|`9X%%=D!u)HCHCySwWH8@HU[ǃ uEt~=D!u LA @L[Y=D!u4LCHCy;C|L Lj * Lj dXZt\te =D!u7LBHBy ;B|< tLRQ2* LW[^%%=D!u)HCHCySHVH8@HSYǃ=!=&t =%%EU9Ӌ %G|9sA=D!u)d+BHBy;B| #Rj#\) 5d+j#-XZ=D!u$d+BHBy Rj )) 5d+j ^_=D!u HA @Hs[t)[ 8 t hFY%%=D!u LC @L%ZtPh!^_jDD[tLDDžLYHSjDžH薿XEZt'EPhF5d+15d+hPF %ɋ%)E|vj X=D0juA9T^@_jpStSTPxDž|@TP$|$PhzF5d+OijhY[u/h:QjX=Zu /4H_%/%|vj^@t@jGY[<t5d+h.5d+hLhyL5hM+[^5v$e[^_ÐUS]Ct&Ёv RZ JD4%@uh8MScZYu 8ujh0S8 u <Uh=MS&ZYu @8h}S ZYu DhIMSZYu H]UWV=!S5<u <h.YtWj h/$s1[Zuj h/sZYt {.uK;h/hNM5d+ tjhiMh/x T+uVt 3 j hWh4 tbh4h5d+ Ht 3 t*j h{Mh/ u5d+hM[_14@~h0Ȣ衔Yu)0<4u 4@~4 4=!54hM5d+58hM5d+5<hN5d+$5@h"N5d+j5DhCN5d+T5Hh]N5d+>$5<e[^_á3UtP1!X=&3%3u &&0+tPX=T+u (Uj%=\+Yt0j=D!hu d+@ 5d+rZP' jh+XcUS' j.=%Ytr3t6=D!ju@P ZP53 3 &x jP5& ' & %j7=%YtI3t6=D!ju@P蝑ZP.533 %j3ӥ& ]UWVS1Ӎ{v5d+hwNjc uhN5d+5@W)PVƇ nu)=D!u @Wf` 5@W#4Xj_1э|~ uƇQ&EM;3 U e[^_U=!VS5/<u <hN袐Zuwj h/mZYtc8t^x"uX1Ʉt#<"uz"uB@BAtv݃=!Ɓ@t!h@hN5d+ @<5/e[^UWVS=]}t =%u;=DuD-@ PFX@ =Du7=DuDDBDBD=@h5%V /thhV9 hhNV&VNyVhNnYP# <X &Ѓ} 5!<!&t1=T+P蝢X,;t"jjP3Ph)q֡/dљt t/} t1=T+P7Xh;S &<5!S@I =@u u5d+hN^_9 O15@hh@ u5@6@1j h@jY[t@e[^_UWVSSS<=!} Eu <=Du5d+h4Omuh]OZYuij h/`jY_j U@RPQËE Ёv RZ JD4%@u=/u=Du DtW=!uN5d+h/Y=D!_u$d+BHBy Rj  5d+j raXZE<e[^_UWVST</=!u EUEu <=8u 5d+heOuhO谋ZY^j /ShY_tj.h/h_Zt1uTjhOh/` uB9E H9]AB߃=%t uK9tvmu9.tlE H9so]AB݃=%Kt 9t?E H9sB]ABE H9s.E%E H9sM %B9s BEEhM[^_UWVS1؍}Թ$EPEPh uVEEE u u~Y=!tVShP5d+1e[^_UVS]u SXu ]e[^UUWVS(uVjjV;ePjV; @L=!ufE~jEP\!EXZuu V@à C 8$=!~JjEP\U+UE+EY҉EԉU[y HEԍ@BE؋EغәiMy1PjEPfE u H 8tu 8 <SCtgEt:EPEPhhVEK@t7}t Ủ  WjVG:1҃ Je[^_US]S0Yu ShQjv]UIu h8QjYUS] SuJ@ZYu ShaQj5]UEu hQjƀP茘Zu hQjUWVSQ}W] j EPV`U:t69u2hW,YZut-SWhQс f@A=wՀ:uЉVFe[^_UWS0=D]uS2T1}ȹ }WjhS覈u}uShn!NWy1E0Wy؍e[_UWVSp=!uEEEEEt9uPEuPE uPhQ5d+=&tha1E JEEY} uE}uEEPEPE PVE} 0tPVhR5d+oVh*R5d+Y 5@WjO]SE uB5d+h/*X=D!Zu @Wf` 5@WX/1щщMD)}Eu 0E 4] ,=tOы} 1ˉӍ<WWu PWhS!WVSE] (u h *z^_uj}uh6REeEYuh*zÃXZu9}Euh3,E{eE_E8t3PhN*zY^u}uYEtRPhN*az_Zt@h@R~^hhNRh臺305&%;Wu E=T+[uC%15(9}Wh#ZYtC9|E t }tPt_Et }tP`^Et }tPL[Ee[^_UESt9=%t 5hTR-HhmZE PEPx MAv$E 0hR5d+/Bt@3~E Pt<+t8u hRj{RPRE p,z[Z=t"=<t5<+hR5d+ j hUh4%3j hRh,j hRh`d$j hXh%j hh3L+= %tjjE p ]ÐUs-USS}] t3he`趸C7wtuSh|`rjhYEP.[EZu1]UWVSSS==!E??=u/Vh>hs蚑?E??= EFӁv RY JD4%@uׄE0E?}t;EuYES\u FuDL"u E"7'u E')Ӂv RZ JD4%@u GFutF+Ee[^_UŠ<^uR?tЃUSøtvYtlv80Q40R4B0P4\S4T4*vP4Q4C@P4^Q4R4P4[U=-S-tCtP3h`[ ;1]UBHPjhB1UWVShpluVUE!~1[ZuhV~ZYuh`ߵh`uh`˵3E=3tD1;эqEA~h`萵EX3hɳ|u^_;j Ljh3Vd~P~t uVh`9t ߁3H0< wk B|Њ:tuVha58WH&v uVhKa=Ruhtas1 jWUe[^_U庵^U庰^ZmU庫^ZUL2GU\UáOU~%5TAjhPMiy ha=YU= Othaha0sXUE(OxB>Q¨tt B¨uu B1=BHQu%t thb#h9brjU)uu hcbrYhbrj6fXZUE(Ou 1QHQuthbhb2rj2U"u hcrYh1crjeXZUE(Ou 1QHQuthZchcqjT"u hcqYhcqjReXZU=*S*t.Ct8tP3hc5 j X;j h dhh`1]UVSƻ*=*t=Ct.8t!P"du)dP3h1dj X;e[^UWVSP}E258Wh>d裹Vh{dVhd58W贺1E tvE 0jh*VE GzPzutS t21:Ct!PC 8dudRh% {t jS!EXO녋Ee[^_Ujh+PyU=TEt't 8tsTPhd%t 8tLHPZPhe^XZUEWVS} V}uxhwGxZYuhplw4x[^tR+=+ts3h` ;j h dhh`ɯGjh*wx u wh1ePxYs tp}twh YZu'whY_Zu h]e]nhCt!PC 8dudRh%  {jSY}theP8xZtwhe58W1l{twSs 3he訮BwhYY^t GU‹C C bP3hed Ce[^_UWV}S} 58WhfThw6v^Zuhplw#vY[tl+=+ts3h` ;j 1h dhh`軭VhQfVhf58W1m}7udjh*Vwv tPvZuC t.Ct!PC 8dudRh%# {tWjSYOPevZR{tjSs 3hf!C C P3heƬ M)e[^_Ujj"16jj5jj5U=1t jjp5YXjj"5jj\5U=1t jj4 jj"]6XZjj4UQQuhf2khf(k1'ҋ Tt !jEjEP9UEUE1UShgj/X=/t.Ct8tP3h`耫 j X X;1]UVS}u th4gYjh/vNt u vhXgPtYtvhg58W_ <{ t!=RuhtajhfjXZKtCEe[^e[1^UWV}S*=*t;F t,~t&8th^hgXvh*#q[_>j D +Y=+'t28 t-{uC "P3hg s 3hg ;;}U )jh*ËE 4rS6su V)sZt U 4hguuE 4hg覩1t3F t,~t&8th^hgxXvh*#j^Xt8t28 t-{uC 9P3hg s 3hg/ Gae[^_UVS@]u ~FPPhgި ~F h;hǨ5@Wj2]S趲؃tHP5h#PS` jPSt` hh;jjIEPEP( t$=Rt}uE9EuE9EtM]U=Rt>j5Oʢhhe5O(R1}uhhE pZYt jhTM6Ujj.U=$S$t.Ct8tP3h` j X;Ћ]U}VSu t58Whh@jh$vn u vhiPoZtvhCi58W1s S3e[^U=$S$t.Ct8tP3h`[ j 3Y;Ћ]UW}VSu 58WhqiDjh$vn u vhiPLnZtvhi58W+CC 9t=3{ tPs G9C j|Rhj58W1v vSe[^_UVSƋBtVsYZu1e[^UEt@UEt@UVuSt@tP譖XC t0P蟖X'j}áBBCBYtXV:CCV}Cu }C e[^UWVS=Ph?t0j=7?ZYt@P7C@=[^˸^j@ 8:tjhfjP uzj:s O?ZYhP 1E΋эL1QgPhVs ]s lju(qjtp hlj_hlj% h^j0hyj&e[^_USEt8PtPCtP֔XC tPȔX]]黔]UVSQ]uShjfuShj58We[^8ve9XEe[^I7USBt&s sC*Phjw֋]U}U tX4B+@(X4tX4tX4xt9Pt1UE1҅tP U=RS5BhA[}X~hjE p ZYTQtHhj_kukPhk蕠kukPh,k{.8=1tQuhDkhckz_=TXt hkf_XkukPhkYQXt)kukPhkXZ hk_XHPPhkԟ5=D!u$_5OjhoS t ^ t [e[^1_U>? Uhohohph7p5HAhhp58W跔jUWVS<] uEE j/3G9ZYHAt@jh|pHA5HAf1 HT\AxctKd084DEF-SLN Xa1n9fRd+e1kJlNusrUsUx]yaw@m`A^HPTK `A?10jEP5dlU :u;dlt=v.hp5dlhp5HAhrp58W襒%\AXATA5dlMD5HAhpq5HAhpd5HAhqW=dl\AZ5dl=XLT~CdlE9@-5HAhJq 5HAhxq58WБ hqSVB p=\Au1=T\A;)ƍ~HAUȅEĉUthczaEȍEЉE}X}thf]aUEUXUNU~ CUEhTc_t%jwO^hTJ[jjj EċU)PPFHZYe[^_UhhGhB HuhhChB HtjRv; t,ShBY9XuhBZt(1e[^ÐU1W}SU ]EPPډXP [_UMQB;As+QBAUU9BUE@UUBE ;B r+BB@@@BUU ҋMtEAt+yA9}A;Q r+Q@@;Q@Au ;ArAAUS] S9u C9CrC )yC[US] S9r u C9CrC )yC[US]St9uK9u C9CvC))‰yC[US]Ct9uK9ruC9CwsC )yC[UWVuSt>uJ9Zlj| u9XSu EpSuz] )e[^_ÐU=D!u 4 B41Ujh@h04US4]؀9 AT@P `QPy4Zv;EP5OvYXEPj5O{@P `QP@4w։j,h 4 AEP E؋Mt= OE؉MtM E؉Mu e%=T} ME~EEu$ET ETEtEE؁eEEuEMtMЋEt@Eu EEt E̋MЋUtU@% ‰UԃCMEtlhj›h)j趛hLj誛hj螛TM X-Er2U}  E;rm2U} E ERrI11hBZ~$jh1hB2jh1j>,Egr2U}  Er1U} UMu{ T9tlugЃɣ T1u1hBZ~$jh1hBjh1j>E, hrs1YE&US]hB Y~Etj h1hBBjh1j h1hB(jh1j>+]Er]01Urt H HtrRhrqUUQ1tGU@TATBT"CT$ODTUWVSV}u U$OEBM=Twl $OBã$Ou B$O$O$OB}$Ou B$O$O$OB}$Ou B$O[[^_Ë$OBU=TSw}$OP$O@$O@Á@T$O~PhB9Z~6$O-@TPh@ThB$O-BTPhBTj>!* hsO/X]U帬RS1=Ts&PyPPt 8 t  Ӊ[UWVSE E}M}҉U_~jjRkE ӉEUGֈEUR:RuUA9u_A 9uEU舂RGARY u؃9ƉEGȀAWE舐Ru}tYAPAPu mtEe[^_4#e[^_US6RTsJC t>;uCCCtPCP-RiP j"]UQ1tiUTR=Ts@@ @ jRYtRRRRjRZtRRRRjRYtRRRRjgRZtRRbRRj8SYtS SS Sj SZt SSB SSj SYtS!SS!Sj (SZt$S-S$S-Sj |4SYt0S9S0S9Sj M@SZt# hs(^DAt%Pt\T$TDA[e[^áDAUthPO\DAXZh \DAYDAu*h5s(T$TDAP$TT$TB$TB$TB$TB'$TB$TB$TUB$Tt@UShlj]SZYtWh^jSZYtFhyjSѭZYt5hasSZYt$hlsS语ZYthpsS螭Y1҅[uЋ]UWVSQQ=DA]t;uOjjXZSXjj_Xujj[^SYjjÅXZuVSE1эt } $T_MTt}ыELHL19 MD19vuTDA)WRT;ZZDAYu-hus&T$TDAT+$T)щ $TTSG$T^EtM$TCt7$TB;TwP~ =u$T$T뺋]t#$TB;Tw$TE떍e[^_UWVSWWE }EE1?u~}ujV;]}Rt&u}t u^tu CtFC;]|}t u[Ee[^_e[^_UWVSB+BPhAj<BBBƒ $dSQvB;BdBB:S=1pA1t=hAtPW_h.J^0pPjS dI(v1DždhA ShA[4Dž\4<:t\8|uG\\uލ P WTTYhAWT4΃1DžX4Dž\4cc|t c:\B\+X)dt)PXd{> uXTM1XыTPZ9sPX3.> t݋Xc:\c<|u\\|c勍\X1c t cyOcv S3Z JD4%t%v S[ J4\\\ ɈcwTx4u214u T9sB4VT9u:dt dT9s BT:hAtTpA51I(wShAY 1hApAhApAtAtA8u pAtAtABtA1hB~9Z}>hhSjjhhhs]Ss$WShBFjhs$)Q"B;BBB:lPhPhhhljj hhhsMQւ}10hBs9_VEPhBCPE_QjB;BY@Bt2 t8@t t1T"TDP DPjQBB9 BBt(tgtTt+|t/)PR)PR6)PR@)PR)PRj)PR ?B B9+tQ Q)QSw`QB;BBB:h^j蛽^t1ۉI+vjj#Y[hhRjj#hhhstj2RBx(hBs9Z})VtPhBeCPvPj>  hr9Xe[^_U1=dAt'jhsjdA1US]t jj*YXt jjBXZ]UBjhB|BjhBhBjhBTjPU@PjhhmUBjhBBjhBhhhm=PAtBUBjhBBjhBhhhmZUBjhB{BjhBghhhmUBjhB:BjhB!hhhmUWVSQuhs$1XhBu]EEEEEE)79؍}Z|SVhBCPWj>@Ae[^_UBjhBoBjhB[hhhm =PAPUt=XUtjYUBjhBBjhBhhhm=PAPUt,=XUtj^XUBjhBBjhBhhhm3=PAPUt=XUtjXUBjhB(BjhBhhhm=PAPUtR=XUtjXUBjhBBjhBhhhmYUBjhBzBjhBfhhhmUWVSQEPEPY[MEuEE}EUuEU BuBEBuBE܈BuBBZhB5)9Z|SVhBCPWj>e[^_UWVSQQ1EE%u>}tuhBXEEZhB5BGDžXBOFE$SB uQ=LPu=UBl Q~Hu,FOE=`Q9=@P,dU Qu uFOE?B=`Qu=@PudU jh`U(Y[=LP=`Q=@PdU !=`Q=@PdUjh`UXZs $SBNB?B0B!hhh&t! j`Q =T`QBTTBAk=`Q=@PdUjh`UShh&t rShh&t SShh&th SB<Shh&t@ `P t,B`PtQt B`P`PQ!}tzt #t |/'t^vjj[X%Qh^jгYtP4jj1LXZjS QcYX QijSQDXZj0 jS`PYX6"u1jj1XZ Qcjj[XQu !DPjYShh&t `P t(B`PtQu B`P`Pu8Qt."u  TQt jSXZj/XjQPUYBuBB=BBBtb=Bs BB=BsBShBh tBBA B=Bs BBPB=Bs BB=Bs BBBBABh`UZ}tuhBN^_1}u}te[^_UWVS,hBEEZt4=PUu$Qu=1tQu QtEh`UyhUEY^t=LAuE1=,OuhBZtf1=`Q1҃}RSuPuVhUETE1Eu>}tuhU"^_EEhU=U[QGẼډEu TNE=1t$91dAe=dAts.dAt 049ujh+t1:49u j1hsjJ HP9tU9t FOMɃ t u`1THP 9u$9~ )ރ}uV5hUYX~Sh`U#XZx9u )ߍGe[^_U1Quf=DPtQtt=1t'Qu-=(Tt!T9T~Qt  TU}tEUjÐUVSutEv S[zY JD4%tv SZ J4F봍e[^UEjPuu ugUBS]t;Shv6Qt4/w 43w40h wShwGXZ`P/w P43wP40h&wPSh=wF Qt//w 43w40hTwmShbwe/w 43w40hpw>Sh~w6Qt4/w 43w40hwShw%FYXC]UWVSDE=T}Eu!=@A U : }}<&ttmPhw5BN M \9t9u 5BhwMX/Zw 43w40hShw5BN /w5B43w5B40#MY[Vh}P5B:N 5BhwLXZ5BhwL^B_j ] Ѓ th#tDv  "z#.' 5BhwnLYU [B5BhwQLXZ5Bh x:LC M AЅu35Bh xLE PGPh5B)MZ u5Bh%xK^XRh+x5BL 9! U Ph9x5BLC 5Bh?xKY[9M AЃt!tGt!t);5BhSx%5BhXx5Bh\x 5Bhix*KXZPh+x5B>L 9g U Ph9x5BLC 5BhuJ^XM At/] K RQPhvx5BKCuPh9x5BK ] K RQPhvx5B{K9U Ph9x5BSKC 5BhxJY[M AЁt0zYt)|t,B5Bhx%5Bhx5Bhx 5BhxIXZ5Bhx8] Cu=5Bhx[IY^9U Phx5B`JC Ph,x5BIJ 9rM Ph|P5B!JC 5BhxHXZG97U <w43hH Ph|P5BIM D t!tEt!t)95Bhx%5Bhx5Bhx 5Bhx@HY^U D xuPM D@xuPU |yxPhll5BIM DtPh>y5BH U DPhy5BHM |u|uC9U Ph9x5BHC 5Bhx`GXZ5Bh y M AyuRyuR$yuR.yuR7yuRhEP`}5B tEPF] C$tPh=y5BG 9U PhEy5BGC Ph,x5BG 9M Ph|P5BsGC 5Bh^1F^] XCЅtWu5Bh%xFY[Rh+x5B%G 9NU Ph9x5BFC ڡ@AH@Ay @AB;RQ[5BPlXZ"M PyP5BvC C9=D!u)BBHBy;B| "nRj"%[ 5Bj"_XSuE 8t+EE)e[^_UW}V1St4 .B'1] ;t3WZYt|ۅuۉ]e[^_U1}BÐUVSPPu E4EPÍEPhBS )e[^UVSRuÍEPS5BXS(1~Ee[^ÐUE aEaBtP(BXUVS] u~K~Phy5ZFYe[^ÐUUVSPu覉j EPVT草 8t Vhs/jTE8tu Vhje[^US];t"S Zt@ hԪS|ZYa]US];t(Sat>Zt@ hSCY[a]US@]܈8=at=4uQ4ue=at\=4uS=4uJoQ4tJD4%Ѓ]Ð]ÉJD4뭐 SsZ뽉UUv RRZ%@áJD4%@UWVS ÉKuvNt69r PU t2v PU tK9sNuC9se[^_KUWVS É׋uNt69s PU t1v PU tC9rNu9ve[^_C뷐UWVS EE HӋuEt PUǃ PU9uC9r}u%Edu8 RX%@t"C9swۡJD4%@uM}u9w؍e[^_UWVS ËEHKE@t[9vh3Ёv` RX%@uH PU ƃ PU 9uK9sM}uC9r؍e[^_3K댡JD4롐UWVS ËEHCE@t[9sb3ЁvZ RW%@uB PU ƃ PU 9uC9rM}ueK[^_3C뒡JD4맍vUSQ@(A,A0hHҋ|ǁ4ǁ8ǁdA8A<ADA@AH"ǁt.llx‰ C4Jwy]ÐUWVSNj@4+G(E;UEveE+E9ruw(Aƃ1UE+ERPjSEYtG(EG,+EG,YG0+E_4[uw(@G0ƃ1)URujPt@D)D[H+E艷@^G(u<Hƃ1QuUjPsXZu쉷<LNƃ1LP)PT)uTLÃ1tKVuUjP%s+؉W(E쉇ЉEG4e[^_UVS֋P0Í2;C4s 9S,sv2J9S,vS02C0[^ÉtS0ΉUWVS ] 1щOut/F0;F4s/~tF,F,@CF,u1҃ [^_ÉsuUVSu ]~ C(9C,s[^ÍvSC,)S(9sS,[^ÉC,[^ÐUP,H(19ʉtB9wz t H9w8 u)BÍvUUxB,;B(ǂdǂhB<B8vHB,ÐUWVS uN,V(9ѸtThNv@;V,lj@9vAV,C9w)D`F(9sF,e[^_É~,USS]C,;C0u;C(t'HC,S@S,C09r ;S(vHC,Y[ÐUS]C,9C0‹@vBA9S0wC,C0D[ÐUWVSuN,^09s=V(B9ÿv&AB9N,vQAQV,Bf[^_ÐV(B9vQAQV,fBӍvUSM =]w4Jt*CV FtQt\tAJ;RuC‰C빋V tiVuu WEe1ҍe[^_ËFt PvEFt~S}u E 0\Fu믍v‰F 눋EF :t:AU FivUWVS Ê֋} tJt"tPPWuVe[^_ÍvU:usj.jh@Eve[^_sj(jhp{E ‰랉UWVS uEE8 t2S҉tvP8 tZۉue[^1_ËStEF>t'K t݃ VS EuƋS 0u&Et'CUBCEe[^_ËCU:t$1҃uà Q!1҉pj+jhnDÐUWVSu<t[^_Ív|9tx9u<tމ[^_qx<uۍvUWVS ]ۉljuF^0@e[^_Áw8JD4%t;>^F؃@7e[^_Ív S{?%uŃ^tM\t_ t;w`JD4%t\ S1?%@u;7O>\F7^A7?8>\F7\* S>뛉>\0F>F0>؃F07)JD4끍vUWVS M׉ӊt_u^C@EC8uce[^_ÉƈUvU RK>%tC^C<@FCEuU:t BtCe[^_Ív}^}\} tCUwPJD4%tSU R=%@u.M lJD4> R}=%u\C0C0C0\C ?JD4vUWVS ƋEӋM t|t ~Kt5 ItFR$PShve[^_Ívu:t v t;Bu2h볍vUWVS uÉҸt= RWW ҉t' @PWuFv1e[^_ÉD"DwGPWt VR뭐F0"Dsj5jhȮ? h sjUWVS lj֋]M ttH8tStӅue[^_É ҋRDS ҉tFA뭃 Qډ1e[^_À~uD"DCsP1뼍vUVSËu:t#"j@~e[^PVhsUVS|$ SS:%tCw֡JD4׍e[^UWVS|1ۀ>0NjxtCY<0u]ػE5t&؃jEPU؉C*t~"1ۀ80tC<0uE0e[^_ÃqjUWVSÉU썀AxEUEE|MME`|`|t+UEVM 8ЈUuEu u֍e[^_É EPtUM܊ :E$XDU:E؃t UR؋U,UM؊ M E$ʉ D0 UM YE܉U UWVSuljE ƅƅ2"@ 9ʉv 99Pu;u  0 hPh Ph0wo e[^_;u u hz PhD$0hT Ph[we[^_/vUWVS EUxp_1EE8t4>PLuD> t>PSElMye[^_ÉUWVS Uxp114>uVLtC~e[^_ËED>E D> e[^1_ÍvUWVSzƸt<\t<^t&B[^_ÍvB 0Fw&$ČvBG0+G(ELJ뤍vUWVS uEF0džddž4ɺjjURP@vE~pF(^0)RSPWu<;tt EEvjju1@tEU9~u}uatE쉆tЍe[^_Íve[^_ÐUWVS X,ƋHMx@^t@;t9^4vuFC;uM [^_Éu K9^(vE׊M1^, [^_ÊE1^,UPH@(A0tujQÐÐjQUWVS @X@ShUJ1t zuCXUrCX+@CXsd‹F t 85SXFt 8FxKXF81҅t8uF48v SXSXFht 8t 8KXU҉t CXNjE@t{XFTt8t VpcXFTt-8t(V\t!:tRP^@sXuSXe[^_Ë@hEUrCXJ8у8у :KRP?uSX1UWVS p@t)>t 3u Vw G t*>t 3;u Ve[^_ÉUWVS,ꠀËu@d…>1҉I 1ɉtэy9S`B=19ȉv>vt*;t Št/BGuƄ/G9wRhPs\@FG={`~usjjhh', e[^_ÃVC\ЋP'K`@C`e[^_ÉV0&e[^_ÃVC\P&C`뱐UWVS EHhEPA MҋAhPEuUBhP MQP@P FPF1ۃ @P`tzCF9ExF P.tIF1ۃv @P t&CF9Uz Ve[^1_Íe[^_ú UWVS Etppti@Et_t`V3%<wu@@tWvV3;Nuᐺe[^_át EuE 1ѡ@tÁH`@pt|Vj EPu"E8؋u-@Vh NhA FTAXFPt Pr QEq @'1 uuRU@BhE&} GhPp 01҃Jfuu0U@BhQuhEpnqWuhuvUXUVSƉ~k@Xte9PP|`PdBxt8uXB t 8Bt-8t(Ku VdPhܛjrKhuVdB$t8u+e[^Ã~OVhܛSSSrxLP'Phܛjr$Qhܛjr VdeBt8E럍vUWVS,EDžDžE@EU;-tA;t<މPUBXPhMq1e[^_ÃttQVhUrEMt 8u}wj#jh4_&e[^_ÍvCsvEMމuNPUBh@ufRRމu`VUzXf;މuWUBYDž]DžNމtAމtމu8QUBhphr1`SEhpDމDž}766u݃P PS菍Pt u,PM1hX}wW1 Cv%uCƒ%Mw$tWPhEpFRUBhp J-MQd׃E}t:uBEp&vVj PR‹8B:}Gt 8PVhܛjRjȒP裤1WjUBt 8-PhܛjŐRj VP‹8EM<83Wj VP‹8u(x$MAt 8WhܛRRS+SE0hUrFPE0hԯՋQU2hMqWPhEprRPh봋[RPhEvUWVS Ë@h@ }Ch@EPhht@s A@tfEfu\EftPEPhht@s yA@tfEftEftKh19A te[^_Ð띐9AuvUVS<]S%Y^jS %u VSj2&Eԉ$UЋEuRjVj&e[^à UuԋERjVj%e[^ÉUWVS<Ƌxp@\|EMwGPE,7Y[w WRU܉0XZwWhBtBvV PR/}P袎PڋuɋPhz kruB GTBGP* P+[@t3QjPj WL1Pe[^_à h.J^[Dž3J@rjjhhAh@ PAh@@@QhBB= jڋw;u⋅Phz B PPhrBQhvPhp[$wjjh@U5auÉUWVS ]ۉlj~9XP} e[^_Ív PG@FKGuWP9|ԋGXy=WBGWtGEt jUG됉W닃 j PUWVS lj)9vz j GO9t}9wP|xt|)ˍCvWdBt 8.qڃ~Odt 8GXz9؃~à jKuwe[^_à j ~Ge[^_Ã~:Wdt-8t(PhܛSSS PwGXt=ʉ%9t*9Љ~E j 9]%GGW )PʉPhܛRRRqPhܛVVVr]vUWVS Ƌ@9Љtd9VT|_)Åv~XyFV8uD~%VdB|t8tv j >KF~e[^_ËVPJ FNVKjy~ċVdu0Bht8tyVdPhܛjrhfCx~뇀8tˉH~@PhܛPPPP~P+~LPhܛSSSr|֋Bht8t뮐UWVS @XƉt PdB u&v~ j Ku~e[^_À8tQhܛjr 褏ލvUщSU ËExx9~9~‰[uمyUWVS ]ۉƉ@X9XPPdtL8tG~6PhܛSSS'}P]e[^_XB4tÀ8tB88B(8Phܛjr8討^ PGKuVdBP6vhw u˃wj Fe[^1_hZ벍vU5a ÐUWVSE@,EMQ09r#x9MA(MUQ,UB(MƋQP9u䋙 $Uv^vC M} U R%t>C;]~ vG;]|1GF9uwEڋEQe[^_ Uv4 R%u;]~+]뢉JD4{JD4͐Cuz1qA(9JUQ,UVSdt |ht-C,)t+S,t0~Q Vxǃde[^ÃS,uЅ~*؉~+ǃde[^ 멉ډ躜s,֐USP]K,S09Ѹt0hNs@藞C,u du ]É]ÍvUSP]K,S(9Ѹt0hNs@ӝC,u du ]É]ÍvUSSEH,P(9ѻv"+H@9r"H,u duZ[ÐP,NvUVSUZ0J,9sOC9t3B@9wB,Nu du2[^ÍvZ,vuȋdu[^É[^ÉUUB0uHB,duÉB,UVSu^(^,tCv R%@t!C^,wܡJD4%@uߋdu e[^ÉUVSU ]ҍlt l@ ~8e[^m lR1lVte[^l뼍vUVSË@,P Ut;C0t e[^RSP+S,)…uZUv| R%t@}?t Eƃ@^Љe[^Uve R%tUJD4녺\eu0O0؃:V0vJD4뜍vUVSE u^@tPF0;F4sOtb~8t V@vKtF,;F0sU F,K@F,u鐉1҃~8tVe[^ÉډWtuF8tF,;F0r F,U F,/1҃~8ujVe[Љ^ÍvUSRM =]w?Jt5CXClC`sd'XCdshXChsp؃Cpʽ ǃ( xªXǃx|謪Xǃ|ǃǃǃxXǃbYǃs(OZC(C4<5Xǃ<LXǃLǃPǃTƃX"@؃ǃ@Ŏ tǩXǃt豩Xǃ蛩Xǃ腩Xǃ3s]]d]ÍvUWVS ËH1҃vCt e[^_ÍvVs @t֋%=E9tRuXZuv;|t;t! ;t;t! ;tt;t! x9t;t! 0ǃZ1A(8Zt1ɺuZ:(tAt AA~1҉聪AE1ɺuZ:(t(t (A~ut Vujs @ǃe[^1҉_ËCXvUWVS,Ƌ@uFu9  V%Α1҉]Fe[^_Ð]؃ SXZjS Y_jSXZjSY_jSXZjSY_jSXZjS_XjS}ȃ WSj1ۃ= |5vh 4 |d= t C< |ủ5aQjWjFce[^_ÉvUWVS8]Su_XVS}ȃ WSj?tfaL1ҡ |v9t B |ua4V jWjY[Vje[^_áagj5aF<ZYt뉃 5aCsah_vUWVS E }ElCxmC4C tE@CEC C<te[^_à ARC׉ JVC덉1҅xEE }e[^_vUWVS NjE ӋuE8tSt"8uC t+VW Hu8[ ϋEe[^_ËCUCtCe[^_ËUe[^1_UWVSuEFtb^(F@< < SVHtC;F4rĉߺ+~(gS~(G루sr^(2;CC1< Y< QFSVHC;F4rߺ+~(Շ^(뒋F1tF0F0@F0F,fFF@F<dždEPV[ts];s҈^IUU냾VJIE닖PVЃE FHw$ HOvVDFDEȀEЋt|xu |-]:FE t F0+F(U 1tvF(e[^_ÐEЋuE싖PEPoHuVF^0^,M tF,+F(U 냍v|9PE;T@&EUPE]Ek j Y$ M3~0+~(NFXt1҉1ۅxډICVP9}1҉-끉贊@q4F~^0]E +U :!;LPv* RY%MU䉖PJD4UWVS ]ۉƉUtXE쉆EV,M } t< ~09t9v9V(w 9tU9we[^_M } uɋEu+dt.]~fBF,Te[^_Ëd+Uu҉V,e[^_ÃEPVQHtjVz]"V,뛉UWVS UU҉ƋX(t1эyPWRS 1CE^, EF0zEPVHUƒ tc&t+ tW(E]G@룍vt6uڅ~KC댉놋F(F(F0F,e[^_ËE8F(F(F0F,e[^_ÃjVF(F(F0F,e[^_ÉUWVSׁ(ƃƅ.ƅ*tPÃƄƄ+.CƄ+*CƄPhPFHF(F0F,jVr<ujVOe[^_Ë<.t<*tPhRS . @*hSPBD.BD*Be[^_ÃjVUWVS]h$ x4Ƅ5@t |衅e[^_É|ze[^_ÐUWVS,UË@,E4EEEE܉U؉C0;C4 u74:.zD*EEC0 S0BS0}ttS0BS0Fu4S0pB9S0vS0BFS09w-EPS|HnM(w $v<( ahaSEES0;S(v: C0P;S(S0vx uuԅ%E̋t89E]wv<[<]N9v}[MЅt E9EE.xD*G8C,;C(r ;C0#E؈CH}jS[E}t}C(C,U؉}8}4:U؉)<Et(}t8}Eԅur}ulF=4?uf}:u`EvE4E܉E9t/<EC,}uEԅtUe[^_ËU܅n뚃ẺƃPh"?~FE9w{,OK,S0hNjxK,9s\9 tWwBC,HK,S0S0K,B9S0s9 tveS0EC,jS EC0U؉葥<E8} E9t蘃<EC,4?=4?}C,@C,EEYE냻]s诧 cF;Et\}̍@Utt}0PhMqg^}̍[]؍U|t1IMԉMЃU؍RM̍ENPx!ʃӃ+H|}RxPd[aEEEUj8-t`Q6h}wuuhDUre[^_Éhuh`r[MMЃM}Epj 蘥e[^1_ÉEEMƒ+1ۃ-|j=u8Eǡ}}+EE6Puu6ZxuR~H uȃu6oՃqxaEME]àE]Et}1^ڍG ӉECuMKtw/$E踔hehhnhQfUDE~}}EhMƒ+yEz}E}E눻끻wmcY O E; 1 ' 1 Ã+tb-} V FRЍ]!DxF@V!T|hhhnhOPyMIF@N] LxF@@PuhEpq} V FRЋ]!DxF@V T| vUWVSl]1ۋM tEw$e[^_Ëx1蓶ԋEP4u8¹듋}K냾 vFЋDuA$Hɋt(M1@@ 1@8c1P8U@EFP跊tmvP萊tFM v<tML1҉0C$&0C,CK11躭1ɉPEPVSEpƃPEPVSE\ɢƃPEPVSEj蜟ƃPEPVSEcƃbPEPVSEΒVƃE9M1+C;C~1 cK1T1 uHu\vTuUWVS ֋d҉tv9te[^_ÉtUS(C0 )P~hǃdǃhu C(C0C,t |e[^_Ég뢋@,hdzUWVSÍ@ Ep@)ƅtue[^_Éigu C,;C0s@C,#oK,1;C0wRVE0Q*뱍vUE1pÍvUEUUSS]K,S(9Ѹt'hOs@jdɉC,u]Ð]]ÍvUSQ]K,S(9Ѹt'hOs@jd҉C,u]Ð]ÍvUVS]s0FS,9¹s/PhOs@ViC,u due[^ÉUVS]s0FS,9¹s/PhOs@V5iC,u due[^É?UWVS uF09F,deEF@~i~, S%tM S(~,G;F0F,EE9F@1ҍe[^_ÐvP S%tv? S6O또JD4hJ4vvJD4뱐J4VV,moUEUSQ]C(C,/d|Z[ÉUUB09B,rÉ|B8cÐUE|@8c1ÍvUSP]؋S@Bd|[[ÐUSP]ycS(C0 )PcjSbu|]USP]9cS,C0 )PcjS.m|]UE|b1ÉUSQU|J,B019sA9vB,vbZ[ÉJ,UE|P0P,|bÐUEUSQ]K,S09Ѹt'hOs@fduC,]Ð@C,]ÍvUSQ]K,S09Ѹt'hOs@fduC,]Ð@C,a]ÍvUWVSM4u؋8}܋<]t>Q(A0)Љ4A,)Љ8A4)ЍA4;A,3A0<Y([^_ÐUUBQPhSs58Wv SV58WEXZ58Wj )ve[^ÍvSVhEPye[^ÍvUWVS E u]tNRPhSs58Whv SV58W8E_0+F Ph58W7ve[^_ËEESVhPjy}1уY^0EPhKI)P]]Sc e[^_UWVSju V}t e[^_ÃbY0rE$Vh27W USP]x P詿 x P蓿x P}0u$u2$u@ So^1]à S#tЉ PG^$t‰ P/^ S#^1]UWVS|҉Uǀ ǀǀǀ0ǀǀǀ$(1}IE EPju u‰EPR薷E%=Wjj E%=  uN uu hWP xVjjPhWhs/3SEtPhCPu{ Se[^1҉_ÍvUҋE|  誽PhaQjjuRjjPx} S;Ze[^_ÃjhUډ ݍvPhl3SZENPhu:EuvUWVSEEE E}uh4C[t4Ph4jS蜵3EEE} Ue[^_t(vZ0APVhs58Wqe[^1_UWVSEEE} uEh4Zt4Ph4jSEEu }Ue[^_jWhܻ^0@Y[Puae[^1_ÍvUWVSE ҋ} 1tU8tOEEEE8_t^PEPjjTb@tCCfCECF u)Љe[)^_É@E뜃We[^_ÍvUWVSE ۋ} uϺ1jRWE i!Ѓ@t5RVuE B9؍e[^_ÍvstWhjuӉEEtxPEPWut9v&juuE边!Ѓ@u ubQSuE茹|2t E)uE+Ee[^_PhE0P&PhE0PBPhNjuPhju UWVS u ] }xK1jRS !Ѓ@t(PWu 谸xL9r+؍e[^_ÐtShjV#PhF6VWhȴ6PhjVa륐UWVS 0 ɉƉu/{RjjjjWjW 1@t#e[^_Ðs3wPh6VzȍvUWVSW0x@,E1v1;M W wr;UwG1G ;u r w;Ewv Muu1ۉ[[^_Ë]u )Ήڋ_1ڋEHE%)É[[^_ÍvUVSu0u$Cu5 SVdž0e[^Ívs3wCt̐ PU SUdž0e[^ÉUWVSTujV0*@4@@0P*H,P@]EESVE?ESVjEPE)PVg_h@VE1ÍvjEPEčPV-hSE%PV =G~0UP0@ 1ҍe[^_Ð}E?ESV-EgESVjEPE)PVqhVEhPuVE =un0UPQPh6VHXuSe[^_Ph"Qh36VShHPh[RhoPh|ѐUWVS,} xShjW1e[^_É0H M P%1ۅ҉EEE tb^؋] %؉EP1QR EMU Q)؍e[^_ËP] E yE] ?ڍEP1RPh E؋MU܉@)؉Q뉋E %UR1RP" xjuu!Ѓ@1PjEPŲEԨu1%RP )M ؁%1ۉȍMQRPz juuG!Ѓ@tdPjEP! Mȃ]%EȉUuRP +EPh7Wu hjW>jPh׵Vh7W RhPhPhPhu1ҋE RP} QhuSQ^ WRh,Ph!WPhXLPh>APhO6Vhd\PhQSh|FUWVSEԍa9v׃aP5aDaua}t25aaP萊a1уt1a0ae[^_É<$B<%uBpu1CƒrwY$UЋEKdיEЉRU2UQaP}a1уt1EЍU)MMEzs;B| RQV bxg@D PRe[^_Ív SЃ뽡g@x2v jj] brQ8| Pv SЃrQ0ۃ`<~\0ۃ`R;B| MRQUA P{ SЃmrQY;B| ERQU9UWVS ǡbt^ btxNxA9~6x)tbR(@98t 8 bCA9ʉ b09ht P[ bA+x9Tp^NQ bAH9tg@xt ~09ht Pt[ bD!QBHB bxg@Du= bA9x;1AH9xAʼn P뵉 SЃ닐qSv0ۃ`;B| XRSSLg @pe[^_UWVSljUg@uEv}7;w bBH9tg@xt <~,09ht PY bD!˅RBHB bxg@DO bB9x M})7}aEU9U}9wuEE9E}U94tgCtb b;E}KCxl104C1gC bU9Ax9EE}EtJU09ht P;Xgu%PC:P bUx} bBH9tg@xt ~09ht PW bD!˅RBHB bxg@D| bB9x|E<)EE1e[^_1;u} bBH9t g@xt ~09ht PV bD!˅RBHB bxg@DL bB9x}F;F0BH9x1v Pv SЃnrQX1;u bBH9t g@xt ~09ht PU bD!˅RBHB bxg@DuC bB9x} F;vF-BH9x>뿉 P믉 SЃ념rQp0ۃ`0ۃ`;B| FRQM:;B| RQvM8t/EQPEPPvf}f}v% h0ҡ b9ht RSug@PxE9E bu苂hx@tut!g@xu j{S bVSxtd bt bxE<)E BH9x2 P SЃtrQؾ`0ۃ`0ۃ` bBH9t^g@xt <~u09ht PR b D!˅%RBHB; bxg@D bB9x;B| rRQJfBH9x Pxs SЃDrQ莽0;B| RQJ P%? SЃBH9xrQ0ۃ`;B| RQ JUWVS E9UEUEu }tB)@ b;~/19'MM9 b9|!1C9~ڋMe[)^W_v)Љ‹M)  bh@ut!g@xu j8P bSuxta bU艐t b1҉x\vCB9SvUWVS  b09htxt PO bQh. B)Pg@p bB9~* vb@(4 bCB9GB9~? 1fz~ vb@(4 bCB9GB 9ˍe[^_ÍvUWVS,EEb b@@S9‰E gBHɋ5btv uB@1E nEHE@b bU܉M؉ẺEԍv19}Fu܋v(uЋEԋ 0u94Bt:9|19}M؋A(ű E9Bt9|u]m m KyU9U,M9g@P4 bh@juxt_ bu艰t bǀxE{u bt8t.A9 bCA9ߍvEe[^_Ëlh10b4t11Og@x* jL b8uEEQPEPEP!of}uf}1vUWVS bESuUxtO bM艈t bx1ҋEN@TIE])9< SЃCH9x} PY}wQ衩0ۃ`N;B| RQ6 bURh. W WpP= b}qf} b]Xf} b]UWVS(j# bfbftHfb bdxdEbx$b{VE 5gFxbtRUM C bQ@9‰EUFx1ۅuPu@tlt 0FXE09ht P;5g Fp bǀxǀt b1fy~<1҉1fy~#vb@(M bFA9GA 9ȋEd19ÉE} C;]|b@b@buC9|6vC(fDb@(fDbFC 9}Ջ buA9|=vA(fDb@(fD bFA 9}Ջb{fCfAbfbfb bph@ut!g@xu jN: bVSxtK bt bx bh bP bPj e[^1_< bd _; bPX bǀdbExbh. jjhPS\5gFx bE09ht P)9 b1fyXh@ut!g@xu j8 bjWxtaJ bt bǀx bQ1 vFQ9AH9tg@x]t E~09ht PK8 bD!QBHB bxg@DuD bA9x:] b*B9x7EY뿍v PO뮉 SЃ널qSho`;B| SRS`0GPǁxǁt bh@jjxtH bǀt bǀxU0ҡ b9ht R6g @p[@ǁxǁtE b09ht Ph6 b1fyh@ut!g@xu j)6 bjWxtGX bt bǀxg@p bGA9yGA9h@ut!g@xu j5 bjjxtG bǀt bǀx jD56Ehb@ bQ@9‰EUE19ƉE1bC(f|ub@(f|tTEbC9|C(fDb@(fDbB9|B(fDb@(fDF ;u}p*EW bg@x j4 bQ'UuUWVS EHӋu MUgBuNBt 9M:Bt9BpXt 9Me[^_Ív9u9Mu bh@u tBxu j13 bjuxtD bUt bǀxU0ҡ b9ht R2Ph. ujug@ bh@u tBxu j2 bjSxtC bt bǀxU0ҡ b9ht R12E~#uPh. jg@pX蔾Nu blP0Cg@x11v;u#]h)@ut!g@xu j1 bjSxt C bt bǀx bQ1 GQ9AH9t6g@x]t ~|09ht P0 b D!QBHB= bxg@D bA9x: b*gBBxX9M bh@u tBxu j0 bjSxtA bt bǀxU0ҡ b9ht R/Rh. jg@pX9G9M> bh@u tBxu jm/ bjuxt@ bUt bǀxU0ҡ b9ht R/Ph. jg@)B9xE@ P/v SЃqS萚e[^1_É0ۃ`zF;B| RSr' bh@]HjSxt? bt bǀxU0ҡ b9ht R-Ph. ujug@`PO9M/ bh@u tBxu j- bjuxt? bUt bǀxU0ҡ b9ht R2-E uWh. jg@莹NuBx j, bUWVS EHU]u MagBuNBt9SBt 9uBt9e[^_Ð9uu9u bh@u tBxu j!, bjuxt= bU쉐t bǀxU0ҡ b9ht R+Ph. ujug@ bh@u tBxu jv+ bjuxt< bU쉐t bǀxU0ҡ b9ht R+E~*uvPh. jg@yNuߍv bl\0Og@x=1v;u/]싁h@ut!g@xu jy* bjSxt; bt bǀx bQ1 GQ9AH9tBg@x]t ~09ht P) b,D!)QBHBI bxg@D bA9x: b*gBB}9u bh@u tBxu j( bjuxto: bU쉐t bǀxU0ҡ b9ht R(Rh. jg@9u<94 bh@u tBxu jG( bjuxt9 bU쉐t bǀxU0ҡ b9ht R'Ph. jg@0vB9xEa4 PW#v SЃqShe[^1_É0ۃ`nF;B| RSJ  bh@aLjuxt8 bU쉐t bǀxU0ҡ b9ht R&Ph. ujug@YP"9 bh@u tBxu j`& bjuxt7 bU쉐t bǀxU0ҡ b9ht R&EuWh. jg@bNuBx j% bUWVS ӋgƋBɋ}uHXue[^_Ð bh@jSxt6 bt bǀxU 0ҡ b9ht R$zgBgPh. jBpX;Ku bh@ut!g@xu j~$ bjWxt5 bt bǀxU 0ҡ b9ht R)$gB $gPh. jBhKu1e[^_Ë`?Bxm j# bUgBjSh. j=gBHXxSh. jpXGRh. VjV\VP路1MRh. VjV1VP茯OUWVS gE @x]btRUM E1`uSjuU EgHyuLy  G  uEPE Pu5buu uPe[^1_9]1~v buh)ީ@ut!g@xu j! bjVxto3 bt bǀx1Ҹ 2C;]|+vgBx }*tP bt;MtEH9u8Bt+t!Wh. j­gQh. juu Bp 4TP菭{ bǀxǀtuuu uU E h. jSjǡg@p SP' bǀxǀt bFe[^_ÍvEuSju؋U nOg@xux ] E1ۃE  b4h@ut!g@xu j bjVxtB1 bt bǀx1Ҹ EC9w9]@@( b]h+]@u tyu j. bjSxt0 bt bǀx igJA E t bt;} E H9Wh. juu Bp QP / bǀxǀtEuuu uU r h. jSjǡg@p HQP裪 bǀxǀt bF|EMTuu MuE+E@PU ERh. jg@{Vh. jg@趩n`Ph. jg:UϵvU bhlt 0tÉƀ0h. jjj? bƀ0j bBHPxt- bBHt bǀx  鳿v j& bZUWVSl btd ]S+_XjS&+Y^jS+}ȃ WSjA,XZjW+ Sh+XZjS*t{VjSj,EuE$7+ V]SjE+ZYjP+$+ jVj+Yo`l jWj+e[^_ÉjSQ*r S*YXjS5* jSj\+* jC9+lUVS 8b@8bHut j+Fw EP@* j]SVEE*ubV@P;t bƀ bǀ.  S& bt ǀd|W btŋ@t D! tPZUbƀx|uÐUWVuSù1hUEPJ)tMEEPEPjS)uEȅt;Ett ve[^1_HuvWjVS)e[^_ÉUSR==b]u;@bu>PhXbjjS)u Xb=b=xcvtc^`d#dd#c#d-d-d<d>d*d!df5gFlFHtD11I9s/FHa&`})+| .~0tC9rӍe[^_ÍvfwFHDC @Cblj Pk5gaUWVS b@;d~0P5d d b@d5= bfG1f9Nw9~x d)ډ]C9~t)9tGHPLQuR = bG9~2 dt9WvC9~t9~w9GKx^ dKxQt9}xA5d)ډKxt)9tDE b@HPQuRgye[^_U bB1;Et ÍvB;E tUWVS  bCESC)Eu uEZYtt$VB@EBB x6uޡgU@ fPMfKg@ M  bfE fBg@ f@f+E bfB bU)UE Mf f1e[^_ÍvfJ;E|@Ef+CfB bC9tLPWuR9 b6K+E;EtC;EuEEC9uv} ;Mt܋M+MM뗃 P  bǀ3 P bǀ bvUWVS bu }ƀxVW1YZu e[^_à h7zXZj5b-[XVWÃe[^_UWVS  bEEt ltEEt;lt)hdg@ fx~<!EdEu}tCg@ f@f~2ЉЉ%?   !M9].EĀ}Eteu!#}}t-Eu&}u 9Uu EPjR*]d@Ag@  bEt Dg@Qu jEE0JEAgP @t bt Et=t5g@t#Ru j bvt Dttg@tg@}tG]u}t:d9Mu}ttE9tu EPuQ(@tg@Hdytg@pht tg@Hlotg@pxjtg@btg@]tg@Xtg@Stg@Ntg@Itg@ Dtg@?tg@ tg@@t)g@tRu j蚐v}tM bUhe[^1_ÍvuPu jE PEPEPEPEPEPEPEPEP 64P%d}6EUd9Mu}tEtE9u EPuQ%g@CRu jQddG9Wu j  bSu jd0d}8Uu }'9Uu}tEtE9u EPuR$Ede[^1_À}E9Su j3Ru j)Su j.Vu jE0 ǁ%dRu jpd軍qSu jph襍vRu jpl菍{Su jpxyRu j`Su jGRu j.Su jRu jSu jRu j ʌSu j豌Qu j蘌Uh. u ÍvUg@Hd1҅ɉt@HhtHlt Hxtttttt bltÐUWVS,Uҋ} @Bt:t5 b<$t0چCu}fE fEm]mE܍e[^_É{S]rEt<>t2vЁwAJt70P $C<>uыu]C d<*t@<.uC<>tЁwJt0P$5]E뛍vW $ vUS RP=@Bt bT Йȋ]ÐUgB@puvRJ uD bǀxǀt bpt ǀpR}Ív b@HPjr 0P 떉 PgsUSPgҋ b ~ _ә bjg@pYX bjg@p0XZ bjg@pHdYX bjg@p8DXZ bjg@pD$YX bjg@p,XZ bjg@pLYX bjg@p| XZ bjg@ bǀgPPB( buB< bjjj.P4YX bj jg@p.PXZ bj jg@?.PYX bj jg@.PXZ bj jg@-PpYX bj jg@p -PBXZ bj jg@~-Pg@@ bg@@ bg@4 bg@@T bg@ b bjg@,] bjg@u,, bjg@D, bPjj g@, bPjj+ bjg@p +s bjg@+B b9‹~=9~=93ЉgXu1v]v9ËgXtҋSpt˃PR!tǃg@ǀ] bjBgvǃ b^vUWVSV׍U؊ERDžDž9} Dž@BgB9} SM )BB@,m8  b;EURVLDž bg@@,1I9KK2qK΋vu (ZYPVt b9} g+} JBXLt b;_@B@BE؋MFE9MFEDž@BgBH E9EM)Jt` b9}M'ZYP EPViP|t bgB@D@B@Bt e[^_Ð]+]J'B@8tPhRQDž bg@@81I˃9K4vPo؋K͋9S EPV Pvup 6&_ZP ]SVPt bg b9%ZYP EPV\Pot bgv b9Wf%_ZP EPVP t bg b9$ZYP EPVPt bgrPhRQZ9H;u:u1 bA$M P(I]=wJ1;}9 bA$] P([]h09G;|耽1;+U R< b@$@(UڋCA;|) b;R MQVPDž@BURVDž bg@@L1I9Kv>KK~%5uDž@B b|l bg@@D1I19v@O)PtON@BDDž@B UWVS, bۋ} E9EK;M9|WЙEC;E1g@ D!f}gVujhɐUMɋU tQ1ÐUWVSơb@H1ɉ~9tGI[^_ÐUVSg@1ۀx tbp b@P~v9tCJ[^ÍvUWVS| bEEJ1~d8uE;M~ ]Ѓx-E x&StGTuMA@9~e[^_ËU 19W4uGM TMtsMA@9W\_0E G4ZU R]11ۍ #G@9~"EP(UG( F uڃ|ލe[^1_ÃX뒋U JxUMɋU tQ1ÍvUWVS }t G8Eu e[^_É PEfWƀuEEG4M@Y( fDfxCЋuG0Lw())xUG9}fFft994fFft"9|fWEƒE ;E}e[^_ÉfN݉fVƉ1USP]t,C8t%PCC0PC4Ps89 [8u׍v]ÍvUWVSEUB PBPB@PB@P>EMUfAfBfffQMfQMfAMfAMfAMfAMfA MfA MfAHMfAHMfA MfA MAMAMAMAMAMAMAMAMAMAMA MA MA$MA$MAMAMAMAA0A4A8MfA,MfA,MfA.MfA.MA怉EEuh1ۉE䐋UMB(Q(M<4EtfEMP(A(fDfDEP(A(fDfDEUB ;E}Ee[^_Íe[^1_ÐUWVS ut" bt1vC9tڋue[^_ÅF uKEfVƀu;1Eƒ ;E|(F(t P~fVE ;E}؃ v(~$~;5btC;5bt/;5bt 1e[^_1btZbb뱐U19‰tÅ~ÉUWVS uEEt E u 1e[^_Éj`jȲEU1tۃ]j u該ljC(fCUfBEHfCE HfCEfCUfS bfAfCHfs CC 1Ҁ}SCCCCC C$CCC0C4C8fC,EHfC.fCfC@fCDfCBfCFE~+u N1ɋU{(fD9C(ft Ju b}uUU A9t vCuFUS] E Pt&@0u t0 [É%鐋@ȉ 0ۀtÁ [UWVSE @uEu ؃} NVF0 Et0 E@V(fBf9~[fJf^A9}ffBfF.fN @f9~ff^tDjVu%vB9}fJf^A9|vfN1e[^_ÉfJlv^É Ёt߁ $ffF뵐 S角ExfNщUfЃ fEډUn  5UVЋE0 E ɋ^Fǁ\% t0 ЉEڍ@V(fBf9fJjVE4 VfN @EF.9EEVUM~jV}EUWVS,uE EE8@} NV;F0% Et0 E@V(fBf9fJf^A9fBfF.fN @f9~ff^vjV؃@ SǍEx'fNщUfЃ fE։UUvЋE0 E ɋ^Fǁt% t0 ЉE֍@V(fBfN9fJjVF먐UWVS,uE EEB@} NVGF0#% Et0 E@V(fBf9fJf^A9fBfF.fN @f9~ff^vjVi؃@ S蛈Ex'fNщUfЃ fE։UUvЋE0 E ɋ^Fǁ% t0 ЉE֍@V(fBfZ9fJUSR];bt0 Su{t b@DDC]ÍvC/D]ÐUWVS }U t1ۄҋ5 bu_1F [^_Ðkug@@ tԳUWVS }E t1ۄ5 bu_G [^_tvUSQ]C=wS b1҉Z[ÉUMɊU t1HA$1ÉUMɋU tQ1ÍvUUtE B$ÉUM ѡ bɉtg@u1Ívg@t P1ÉUVSu bpw&9މt t#~ut`p tBe[^Ðg@P@Ҹt R bpS ue[^ág@PP뺍vug@P4릍vU bUP1ÉUWVS1҅ۉt C 9t1t[^_ÐStvU bER,랉USS]t<g@duR bx4uf b@4 bX5]1Ðg@`tރ P < ˍv P & bx4u뛉UMɋU tQ ‰ETÐUg1҉t%JtRJTu tÉuڃy|t틉uÐgU1҉t-Ru tJXu tÐUSPEggt1 f gg@1҅ug؋]ÐUSR]۸t SJ$RG;gt1]1g퐐UWVS ]۸tvfS @ffsuo@uzf9C|tfKf9|k@S(fBf{tf9~frfKfJƋ C99v S1e[^_Ðf9C~fS 낐e[^_ÐUSS1ۃ=6 C6t86w6QPg@4 b,PZ뽐]ÐUSuEt!PjEPSx U9t:t]ÐUWVS u ]}=gftTӉUCt58tSu68FtJÊCuˀtStʉ봃j jzÉEFt|Sf@ t0vj jytbFt%Pf@ >uf{ ve[^_ÀT@؃j jyCtÉE|CggE SEuD]u땐U1ÐUWVSEU `h\DždXhTt 8/~ h QhPSot󥍅hEhCt5< t<:uCt!< t<:tt9wʃvTt,Tt bt u+  gP+gR R 9|vE1=wJJt@JtÍF|PЊ=vߍ.<*u} FE:t8$uF>V1ɅuJtÍFLPЊ=vߍ. 1*%/(7}u}u#gfffӉ )S.^ j$U$<Ugfffщ )QBe[^_EF=wJt F|8Њv=.J FF=wJt ÍLАF=JuFM *tFU h. juÐUUҋM t#B9|xB(If|ÍvÐUS]t#C1҃|C(f8u B 9}1[ø[ÐUWVSP}M ]txx fW9} Z[^_É9ˉ]~RI4:1}؋W(fD}G(tfWfTA 9M~fW9}vZ[^1_U bt guǀ bǀg`dg`Xg@xg@yg XP谿ÉU bǀg`dg`XgHdg@xg@ygXPSÐUg`dgXP0ÉU bǀ bǀgB8% Bd BdgHX gXPվÍvU bǀgHdgHXgXP蕾ÍvUgHdgXPpÉU} tg`dgXEFgHdgXE'UVSuMbЉ)ȉE)ƍjEPUbe[1^ÐUM; gt+ɸx1Bw9 ugágUMɸx1Bw9 uUSgXPgPf ggt؋]UVS]t/CuA Sv6;gtO;gtuэe[^Ég P;6 S)6;gugUWVSj|RƉt e[^_ÉэyvPWSVaf>|e[^_ÉUWVS<uƋU pE j|tnE +Cj|t8+9uЋ9ue[^_Ë@[UWVS,Eh}uthu u8vQhjSʎ PWS@vq Rp%tnt Sփu SYggǂ`UJD4%u hAcgt$gtgu늅he[^_à hbUWVS|gEۈDžDž1utl;v23@tFB~ 73 PhH58WOIu~" D!u-8WBHBxM t(=g058Wj u؋1~e[^_ÃRj `ҋgDžhYDžC((Džv 32z4r,ƅ$_=gt]9t4PhUDV02t|0ƅuuWU1׹ PRPV{HhVh*_B0 9{(=g1JK(DžS0p( ;SP>lC(t$@t$R.YC(HC(u܃SWYCC Co ߍjSiU*=g\fK1fu "B9~C<ufKB9fK1fu &B9~C fk^\C9r܀}uy}p}.MQ$EQ&4PqU]C EPDN;uw ut=MQ]UBM$g]Ef,g(gf.ge[^$g_ËEE9EH9]E8E,Mt=e[^1_ËEf@"fE΋MQ$ЉEA&]܍4uA EEUfR"fUΉM][uE]+]܃}]5}EzEfE΋]fEfC"fC@fCPsTCCpMQD22N;uw]f["f]6Ef@$UfB@fBPr SMA Ap]S fDrfrN;uwEf@"fEE'UfB @fB fB&Pr`SMAA p;uv4]SDN;uwfC"fE{UPE,GUfR"fUWvUVS]ۋu u<$tQu8uyCF $u{uCр~{F)[^1҅t[^[1҉^ÉUEuÍvEEUEPQEBUWVSӋU҉t1t[^_ÐE[^_UWVSxEPe u38PgULgHg5=tUt}2 =Xg:t,P@A=Xg5Dgi V4}KWC }SG=XgH=t$5tۃ4^at#vCt4;au j&!ƒ9zt 9zuB9uЉÅ=:P 5u@뾋}G@MA(Ή Kj+v,uƅًFh v%m  VQ(WH$1GǀtSBS,BQh VS/XZUBpS07MAv h'MQBALGx*fBQC PV5tGtu݊럋E֐UWS(1҅t 4gt e[_à h+Gt1щу v4g뽉щу Q\4gtRShbP,ǃ h,UWS]CuEuSCu`C umCuzCC 1e[_Ð Pt PCt PC t PCt PCz PCm Pk 1e[_ÐUU::ÐUElgpgt E*hj99pgE*UpgMU lgtɉ |gtgxgTgt hhÍvUWVS|guItgEҸt. U;xghgh@tgЍe[^_Ëtg҉U 1xg1ې`g9=dP5|g`g)P\gP<\gۣxguhhxgEtgыUYEE}=tg@< t< t}эQvE| 1| E| \g8#:vM\gfD xgEtg2e[^_Ã`gP5\g6\gt̅ 5|g6+TgQD tg=tg} hhUSS]v9t@uY[UWVSuEEEsÉig9tjteE H9t]Xgti^tp\ tNF}E}X~}u hpq'E Éig9ue[^_Åt묃 t^u}%tÉw = P4%u SF#ZYPh&?߃u,_ÉF@ЃwzEE;É"@Ѓv+J ShZ&EE\Ѓ}]~]uEECjw$ Sl"ZYPh&FiJD4(hFJ h(%5 , $   ^\:, hE/&tg;xgtBtgZ h&UWVS|lgEEEt&u tVE9tO\tW$t%ggEVE̋u tE U tu9u1}uge[^_ÉU B<^t<,uE u ggEE룋E x}vE NjE x%*u%]S}Wh;u AURWh;u #mS]Sh:;u #URShV;u EPEPh:u ƻPWhr;u 諻HmWSh;u 蒻HT:u PF:u E؃E };+EvE̋E x/XvЁw Ju<.t<*uKM u <<ggE CE̊Ёw Ju<.t<*tTj;u aZE uUEu Eej;u 4YE uUEzE̋E 8}PEyE̋U j+u E :EAE̊EЉUEIEK;$]j;u 荇Tj;u {M=JU=J8E ;U_:u u.EԃE }`E  E ;E U Ã%Nw$P=gËgEEU s/E U 121T;jg%Jt(E ggEE̋E =v΃Ph;#d낉g%u]܅;E5u EEEUSPh]KfC,fC'fC fC"fC$fC&S Ctd1f{tCCB91f{tvC fPCB91f{ tCC B9h]à hx9C뇃 jN'C k j,CK hhUVShjutQhVPo5XZVSe[^ÉUWVS U1ˋ5hӍ=v5he[^_ÃRhPh5he[^_ÉUWVS E ug=h)P`F 1ۃ~;NDŽC9~$t0+PC9މN(1ۃ~4V,DŽhC 9~t+PhC 9 5hxFR5h5hP4F``1ۃf~ u<;FVCF 9~!uًFF C9gV$F"V&Љ`19Dž\}S=hPV1 DD\P)DDC;`| \bFo1;`Dž\}TVvF\hPF4V<1C\;`|~(1ۅ~3V,FC 9^(~huC 9^(ve[^_DŽ h6fV 1ۃf҉t0Ftt PVfV vC9ЋN(1ۃ~0 C 9~"G,u jsG,N(C 9ރ vvF h|UWVSu V}WfV1Ƀfu0HA9~FuGfVA9f^1ft'vF Ht`t G fHf^A9f^ 1ft"Ft=t Gf^ A9ߍe[^_ÍvGfV끍vG fH롐GUS ]j/SRt@]Ð؋]ÐUvUWVS] uSVs1҅x e[^_Ãt 78te[^_1IwڃVS$St9tjS댉fDž.vUSQ\1҅tZ[É1ۅuډZ[<t됐UE?UWVS U ҋ]C(} C1} у Q4 hE h"U FBU ؃"\w.JD4% v  Ӂ RW%C@~\F^FU BU >"FEe[^_à S%O~뺉\^~뫍~\Fn~\Fr~\FbPShCV1э|1^~\Fe룡JD4$Uuj ÐUUҋM t JEHɉBtUu juÉUM EQPQPÐUWSU ҋ]t11эyC9vKu)Ce[_Ðe[1_ÍvRQ {C͍vUWSU ҋ]t11эyC9v u)Ce[_Ée[1_ÍvRQ CCȐUE hÍvUSR$h]t#tPhS5$hf]Éhj$hčvU$huPu ÐU=htÍvP5 hhʳ58WhxQPhC58WhxRPhC58W}$ht8uE58Wj:XZ58Wj  E Pu58WYX58Wj QPhC58WU 5 hhʳ58WhxRPhC58WhxQPhC58W$ht8uO58Wj:YX58Wj  E Pu58WSXZ58Wj $8RPhC58WF뚐U 5 hhʳ58W$hxQPhC58WhxRPhC58W$ht8uO58Wj:3XZ58Wj $ E Pu58W胴YX58Wj $hQPhC58Wv뚐UWVS ]EU}1~F~BE 0U2&!|[~qU U UOFȋUUUFKO~U U UFOe[^_ÐUUUKFlfUUEFE KOKvUWVS ƉӋ}WPh tKe[^1_ðe[^_ÍvUWVSƉUfx"f^$ӍN&;EUEf)fFfFPv FF"HUEF)ЉEӉKx9 M4FU5rFU‹MEMKyNjEfF"f^$;E E f)fFfFPv F M F$VH)ʉEUˉKxAM  M4FUEEMMV fBKfJyE fF$fV&;EEf)fF fF Pvq MFV F&H)ʃKEUx[E E؋U<EEMMVًKx, 7FUűUڋFKyԋMfN&e[^_ËEF]UڋF fPUt ~"t 1Ð@"ÉP"@$Ív1t1ۉU҉tJtQ$@"Q&É@"ÉP"@$ÍvUWVS UUzËU9Ésv4urtC9re[^_Íe[^_ÍvUVSËEt$Ht5C&K S$)C")[^ÍvCS")[^ÉCS$)UWVSu9ǃ1xGV$F"V&\ VDA9|u]}Zt~z}tBe[^_fVX9߉}vV fDJfJA9|fVBfN$fFfV X9߉}VDA9|fV BfN&fF 댋EufVX9߉}VD  A9|fVBfN"fFRUWVSƋEUE‰ËUEV$F"V&T;]Us#~v4utj|C;]rEPvFMI VDI9wFUuډ}[to~*}e[^_ËUUe[^_MufF@fFfF"PvFFH VD  I9wfF@fFfF$Pv NF FHvV fDJfJI9we[^_fF @fF fF&PvFF H VDI9we[^_ÉUWVS ÉU@"S$fS&EEu9ƉEC<C +E)ЍShlhl|h~lj=hlhl|rhljUVS uƃt,j=Vt!Rj@PVVÉ4$؍e[^à V鐐UWVS hlɋ}uj;t^Z;llƃ:VWNx:dl;u;e[^_É ;hlE ;M} C;:-t;e[^_ÉBZ-;lltC5llL;j-WeMtf-ll- zuA ;y;tzdl ;A;;;;ң;t*?:t%5ll S Phl58W۹e[^?_Ë ;A;M ;|5;?::;tV  Phl뜋U dl;VWt$ |$L$tfffIutCffffffffffffffffffffffffIu_^ÐWV|$ t$L$uL$u1^_ù))GV)^_ÐWV|$ t$L$u L$^_?v7̀rϐUEUEUEUEÍvUEUvUEUUWVSLӉvmEԉ];vtEE<%EЁvo R%@uj R%@t'Ft Ӂw١JD4%@u܍vU{uEe[^_áJD4%@uF:]tE1EEEEy$4m=wJtE]܅Et5t/=w%JtEM܍Ë]܍TPFۉUu˃}hU}GEj8cSj EPVI8"~ ]58uEPu譡E UEԃu u}}ԋ1׉IPQRVM;J Eԋ1׉IPQRVMSUB Dt }GEu܊=JE}܅Et5t/=w%JtEM܍}ÍTPFUuˋEH UBWЁ= R%@N R%@8E}0Ӂw̡JD4=2J$EE܅Et5t/=w%JtEMÍTPЋEFUuˀ}H}k} U}WvЁg R%@ R%@8EE0Ӂw̡JD4̓}ԋu uXEE}BE} wjE؅uUԋED01ۉEǹIPQuVMrt0EUԋEعIPQuMVBu} EUBu܋}u R%EEU5Ёw̡JD4̓}ԋu u>UE}ԋUT|1UIWQRVMvt7UԋED`Elj1IRQuVMHt E}v}}EUBu=^JPEE܅Et5t/=w%Jt}M܍TPЋEFUuˋEH=mUB}0=JEE܅Et5t/=w%Jt}M܍TPЋEFUu˃}wEUB 1Ё R%@ Rr%@E}Ӂw̡JD4=JEE܅Et5t/=w%JtEMÍTPЋEFUu˃}5/Ё# R%@& R%@EUӁw̡JD4F% }ԃ(:Ӂ R%@|=J1}Y|}E0t/=w%JtEÍTPЉUMFM܅uˀ}Y}yUCU}WЁ8 RY%@L R>%@EEӁw̡JD4͋Eԃ=JÃ0EE}xЁ% R%@ R%@EUӁw̡JD4ͅE؅=Eu umM؅uu umSӁ+ R%@J=oJaEE܅Et5t/=w%JtEMÍTPЋEFUuˀ}M@}<EU5Ё R%@w R%@E}xӁw̡JD4̓u u%mau u+m4EUԋ1߹IPQSMV|Ex (UBu}E9u])C)č|$PSVW}g;~$:ǹu8uE uES5IuuqUB uϡJD4"JD4JD4JD4JD4JD4JD4<5IuO}G u?JD4JD4};U}Wml[}DQEdH8vUVSMEU uEQVtMu e[^Ð VCEXZVEPܒe[^US]fEfEBh豒EEEEEDžDžDžDžDžRhj P uu EPHxEE]à u#| ]UU uPRuBUjjju,ÐUVSD!ҋrE/c뮐UWVS ]ۋu} tVtRWS8(u!ǃ]} ue[^_龎 S'EtU e[^_UWVS ]ۋu} tVtRWS'u!ǃ]} ue[^_J Sc'EtlU _e[^_UVS ] S#'uǃPSju訍e[^0vUWVSEuE] VS&u%ǃE]u Ee[^_Kv S&t8e[^_ÉUUtE ffB1tɸÍvUMɋE tttu A1Ív3ɸÉUUҋE t w$LrɸÉ1ÐUSj )1҅tPSu u莌uЋ]à S*1USj Z)1҅tRPu uZuЋ]à S)1USj )1҅tQPjuߋuЋ]à S)1USj (1҅tPSu u蚋uЋ]à SI)1UMɋU tƒ| ~tfu1ÉUEU tt 1ÍvsɸÉUSP]t-tu! jƂƒ1tCЋ]&]1ÐUEU t t1ɸÐUWVS }u tEw<@@JB@f@ǀ1 [^_UMɋE t;u4ǁ1;}@@TEÉHt,ÐUWVS EtmthEE}G1ȍX90R} 9} )Džt2|r9~SE [^_ÐZ UB ȍD]EtDȍ\09R} 9})Džt|r9~7S|Z뷋EP]‹DȍD^vUSP]t$ts3$~1]Ív ]ÍvUVShjP)ÃtgEPShu]RjjSjjuj}St'=t1uVfEe[^Ív S jt 0EȉB̃uVUWVSEt-E8t%j/u(t)Ee[^_Ðe[^_Ã} M h6t*t1IDžIv eÃۉttj@S5(tDžlDžpj_t(t@Épj.S't@l hrv VdhhsR Q|%)|)=|@|Fuȃ|PQ&g t5}[h)}r.)j/}&jj5)ExN+|WSx|表91xы|L|FchL%&|)=|B|| t|gltupFxB<.zlFx t{^h{?/N#U낃 t\{YhP{FxdtFUjjuuu u}yÐUWVShjh] W6i8p<t@xDƅhj|PjjiPT_Ã۸x$fWSGS@tDfU؍e[^_ÉjƅhDžl/˃ S뻐UjuÉUWVS] Quȉ|1E ĔEEEPh}PjPPVRM1 St1сbDžp vpvu ލDžtS<XZjS貽 RSjԾDžxDžvQ4xwS|j4b vv4:] 4=80vQ04y8#FJhhu&9pjuuuVue[^_É8=#FutxpPpPjjjhhlvvrhlh758WԍwPjjjhhlvvqhlh@s58W蔍W$EF\xDžPP9ѥxDžtDžt hXst+hht9pwWcf8#tP_0\ Ph\s58W行^) jSje[^_58Wjjh$teQhRhivEivEvQxddFjdh}PjS1P؉QP4񍽠у9d49}@=\B Hu44 dPPd  jjjV\ @P)WPHPd`It #fJ؃ `Z0-ZP}7hs58W4X輼 jP58Wjjhns[d? 4. jSj;Z[@}^0Y PhDt58W虉Z,HZ0XY Phlt58WdX\Pjh4Dž1Q}ىQu4w}ى Qu4Y}ى Qu4; jS48H1WjS4HuPjSj uԋ M1n1ۃ d``}=58Wj+jht늃 Pn Phs58W d[0W Phs58W‡8VjRj [,4+MZ0]WPE0hs58Wd58Wj*jhtLX@[0W Phs58WDžvU juuuuE PucÐUWVSlxƅPjjjhVRSj 1҅t e[^_}CEEDžPEPh uq1҅u ƅPjjjhSwwBj uσSVu 脸@@ C {}EEC]؉Ev e[^1҉_ÉUWVSdP}Dž\DžX}t DždPjjjhhPuu Ji tƅhPWhhP譅Rj hVh< t<#t< p< s< ráJTv= Pa%t= PpˆF 9 > 'u`h+-5 hPUE X`ƒ+-CXҋ`uEPu藿\X\r1vTD4T4GHG6@ $B5D!tσ W*ƒ1ې t vF t t `  F< < < |uh+xiDžX<@UhDžXhdjhPjPxB`DžXƒ+8`BDž\^<@`@Puɽ-i@ht&djhRjPwe[^_ËXu`Bt<@`@PuE밊h5 . 'i PUE :r i WRƒdujP*w\:du`jPwUWVShjh]Pu }@tluQƅiƅhpFtFxF | uuhPhPue[^_Ãuƅiƅhl붸ύvUW }1uuE jEEPuEE2}ÐUWVS} Pu uPsE1Džu<GPbEt;BEt0 uuu RW | W;u E uDžKpV袣1IDŽ /.rhDostsD ËXrp_Xh;V`~lj$pte]SVxzE%= D!SW3ZP sWle[^_Ãh;hs}ǃs Wl¸st݃ W1맸tɐUW }1uuEu EjEPEE}ÐUWVS1}ȹtm耗X*x@,8uY<<ۃ-1Q5m讫mtVm@PmEEe[^_ÐEEe[^_識EEe[^_1|]0\܉]0\(]0\`]0E0E0E0Ew0Edw0EQEjj j.P tbFu'0E@ E@E@Eh@IvމtuމjEu^EpV.;D$L$A,tAPjjl L$T$QYai qyy1ÐT$z,tjBPj1 T$D$JZbj rzju@L$ÐL$APjj L$T$QYai qyy1ËT$jBPj迨 T$D$JZbj rzju@L$ÐUjuu u6.UWVS }u] y{JD4%u]$tX-tS_tN.tI+tD!t?*t:'t5(t0)t+,t&%FS v~ vPjVqux S?%u;u t"u t tACCF\e[^_Ív*t?t[t #pt< w7$v S觝vJD4R \뉐؃ t&vV Se%u tT\0FF0؃F0Fe[^_ÍvJD4뫐@\FՃ@tPyMF S؜%^FC@u?F뎃 \F\FsFm\FrF`\FfFS\FvFF\FnF9\FtF,\FbF\FaF\F0E0F<80F0F-FFJD4(UWVS ] MҋutCPVPQue[)^_ÉUWVS ]Mu }MvvFPWRQKwu+Me[^_jWPQh+Me[^_ÐUWVS M}] ut"Bw0e[^_Ív$@$ve[^P_ÁJ4tE1v<CPV蹨t0SV訨tIE }vɃ}ue[^_Ë<t*Mt܋<U }\ˉ<t֋] t<U ԍe[^1_US ]j/St @]É]ÐUWVSu %I@EMgt.v6- +f qguՉ8ou%AEtEt]tf#A!tf#A!ƃt f#Q!֍vUkt f#A t f#A ƃ@f#y 5XuE f q[^_fA!ƃ(UVSg]u Et;-=Xuۈt!fA[A^Ðotuuۈt:%Ѓ uXt+AfAuI[A^Ív+AfAt-tI=uI돍v+s-hv룍v-u fQ+AIHUWVSl}E1? ]Svuȃ VSj$\fE$\ fUjVjӘE$ REU1EEE=v:EÃgtnaM GÃguM8GJtPjEPW‹Eă8u xt| uR1e[^_ÉotuuM G돃MG놐G+t8-t3=sEe1EX wa$|=uU9Urj0uQ%EEEPVh=EBEEe[^_Ð=V]t^U9Ur8E]Su:QE+EЍ\EU]EPuuXEE ,G6vIGvΒGtbE9Er>EUURuPE+EЉEEDUEEPVuӋE&E1 =@+ZU9Ur>EEEPu+PE+EЉEEDUEEPPuEG EvEt EMGEt E G$GGEI=t|U9Ur>EEEPuYOE+EЉEEDUEEPVuӋE EEEExEU9Ur:EEEPuNtBE+EЉEEDUEEPuuXEM EE/M< uMN1)E}Ѓ+t&-t!XtЃ+u1E1Ѓ-t$+t2Xu<A!Ѓ ÊЃ-uA E!!ÃA !E!Ut-GUfWt+GfwDXGf_1 u^M=UWVSM1jh|x@uEDž|Džx pPC HhDžlDžh$ PSj跒 (RSj襒 QSj蓒 PSj聒 RSjo QSj] PSjKXZUR|  }uEueEMPQj|P}1IQuxE U|ƃvPjQ|ӬH  9sEt ؃Ӂ R%tTEt#Ӂ RuEt%Ӂ\ RAÉPjQ|FH1DEG,u}]QHjRj蟐 (jQj茐 jPjy jRjf jQjS jPj@ jRj-|$n$nPP<$ $nt$nJD4]J4J4e 1}}Wjhxru,}EVPj|) |$n 芪E te[^_o1e[^_Z1UjhhmuzummÐUE$nÐUWVS }?)Ѝ9@n@n@u Wg+@nt:FSj0^StFU ҍ^t8Fu1e[^1_ÍvFWhj^S,M 1u؍e[^_É~u@um j'@uPUWVS }?)Ѝ9`u`u`| WS^`ut:FQj0^SsFE ^t8Fu1e[^1_ÍvFWhj^S<U 1u؍e[^_É~u`|m j:[`|PUVS(j+u B_EE ! EPW1҅ j fFEEED!E E#EVdD!E 8ru u虝YuU܉rZD!uPh|U܉D!h|u e[^à hd|[ hd|Sv hd|랉 hd|E 8rQPuXuNEU MI d= d?UBс Rf %%u~ƉuDž|] u΅xt/v8t'CCfCC| u׍v t{Fuuxɋ] thx:t]Mt3tu*FCFCfFfCFC||~ t8u quu蓗|e[^_ÃdUBс tIt:f t1%`odiƋ`R`8?UU1Ɂ:ELFtËB%=ufzuzuÉUWVS@jjj}WDžDDž@Dž<Dž8Dž0!1@tQj4SW4t e[^_SFZtHPW轗xֿ(ؿ(1SR(ȿPWjj(j=$ $t$,ؿ1҃~#Ë,1ɉ8B((91QRDPWjj5QӃ u5ыG P4G묐UWVS DžE H Ѓ/ ȋ} tj_vځ1 t Dž;E Z_ t ȃ/ uP} / Gt9Rv] S] VE HЃ/ ";Mve[^_ËO Fhu~E@ @uVPubUB t0A/ AtE%=@_=uF u=e?1+URQP$zM9vCV fDž.uF @ SV DžDž]C @t s {.u U . BuPhjQF]9sHPjR Í@vQщV t ;ur WU uEC+PhjP蔋uuWu4uF @ V S)z_ hڋ%EXu 1҉ hڋȑZY0SURu MA tt y; htuu]C @t|uVPS(E%=@;U/CBp?`URQ뀍vUWVS@‹~ BuA Ƌܿt*v?{m*1҉WuG ;ܿA 1e[^_Ã[u!V +[G!DB u ue[^_h3 j+ܿPYܿAܿPwiU9WӃQ uߍAFؿ]_[G!ؿ1҉W- Fu%^]t-G1҃W]uJ ]<% PƒҋYrt Pau݃L,$\븸!GvUWVS, Ë{ CuC} C {uSW9uGDžyQI ЉtJЃ[ ЋN] t u uމN u‹uV  ue[^_ËSC  ue[^_ÉЃ{ u lЃ} _iF9ЋK[ [Ѓ, ȍ{{9s QW9rFQщW uރ u{9.Džv߃ЋK] t uȃ t{뽍vЃ{ t%Ѓ} ȍ{u{{vUWVS E }uE@E E tUB`uDž` vDž`E ]C ECCE \RhjhP E);`J|advhVjWSԾ@t3dƋ\rE);`J\}\F}  `PUe[^_ÍvPhjhPDE)`J9|11?\tshPjWdP@Yd ؋\S\ϋ`JE+\911?\uG?uK\\C@\뿐@ `PUe[^_1۾@0e[^_ÐUWVS(jj]Sjh  u%Et| jjSPh 98e19ˉM}-u}}䐃Vuwt2CE$$;]| u5%蔆e[^_Ë} u u%e[^1҉_à u$뿐USP p|ɋ] t|~(QSR5l|Z,p|1t|I)9wkl|uwI)ȃ t|PK$l|tbRS5t|P+‰p|xD@)9t|vEl|p|]É P$ p|r1]Pjjj+p|1]ÐUSRápt=||||u1]Ðjh||*x pل1ːUSPD!uE D!ɉu-؋]É hx|{E` D!ɉtӃ hx|{؃]ÐUWPD!u>E&‹Eu1;M ~FE"D!uE}É hx|{밉 hx|;{E}PQRuENUWVSh|}t8uJ WPh}jh|^|1ыEIE e[^|_ÐPj EPS[|ot>U t zуMt/tGum@뻃muS)m9\؁= h}kt?gtLSh}렃jh}뎃Kuȿ(qo@]U jjEPh|jEPEEE1u @}t|ÐUWVSQE1ۅt)1v׹эQ9vӃEEuZC[^_USSv [PT ۉu]ÉUVSut3CuC R f{2y߃ S FuaFuL vF$u& v*1ۃu9 v覀u@ V1e[^à P* vft VrрUUwE fP81Ív觀ɸÉUE@(ÐUE@DÐUU EP(ÉUWVSl@$Ӎuur{,VS(fF fC0C@8.t:Cfx2xv9P(t@fx2ye[^_9x,uAHt .uxu%E9tPj`jVxfF~ UU@DH vUSQPÍ=CvNCuC~?]Ív P#Cx~?ӍvPs0cC]ÐUWVS ]9XƉ|TN@uhO jSvYN9KuAKBuBe[^_ÍC(FPvbFuFe[^_ÍvUWVS Ƌ}F$UGIu PÃ1tWF$uZCHS@CE EEPSjS?uE؋]US0]S>E EEPSj?uE؋]US ]SL>E$E.]Ð1̀+Zv̀rÐZv̀rÐZv̀rÐYv̀rÐYv̀rÐYv̀rÐYv̀rÐYv̀rÐYv̀rÐwYv̀rÐcYv^̀rÐOYv]̀rÐ;Yv\̀rÐ'Yv[̀rÐYvÙrÐXvQ̀rÐXv0̀rÐXv/̀rÐXv̀rÐXv̀rÐXv̀rÐXv̀rÐsXv̀rÐ_Xv̀rÐKXv̀rÐ7Xv̀rÐ#Xv̀rÐXv̀rÐWv̀rÐWv̀rÐWv̀rÐWv|̀rÐWv{̀rÐWvÙrÐWvQ̀rÐoWvP̀rÐ[Wv=̀rÐGWv<̀rÐ3Wv9̀rÐWv$̀rÐ Wv#̀rÐVv"̀rÐVv̀rÐVv̀rÐVv̀rÐVv̀rÐVv̀rÐVv ̀rÐkVv ̀rÐWVv ̀rÐUWVS,}1?] tjEDBv t"vЉ DC uC ЃDt),[^_UWVS<} R0%@t#7GwڡJD4%@u݉<-+EE}Eu10LME"EEEE܅EEuEEERPuuEȉUwuuuuE0?UM̋UȃEUMčC< wK;M}SE؅x'E9EwrU9UwUE3U3E u};M~xEGC< vC<wN7;M|}BTM tU؅ҋEtGU EUe[^_ÐC<wWSEeUUEUċEЋUUЉEÉEEEMUUEGE0Q=te1عEPIuMty}1Ʌt"I;MrFBu1ɍe[^_F똋}Utv<=tBu+UM D PPhtMEPhAMt<=EB@ɉEt=u=BFBu1gPh1vGu9t^ ȃ PMTùPuS5PhPhPhD}PR-Ph뾐UVSu]SVwtUPhBtۃe[^ÐST$L$ 18uBu[ÐPv*̀rL$QYB̀rQPUS]9ډsvAtB9r[ÍvUS(PR]SMMu U]ÉUWVSEE UEEU$%t/]9]t}UBUEMuًEe[^_É11EE}Ãzw$~MY xY$۸: uU Eع<RU=puu$MIMWuuuUE8uEEEE.EPwMD|uUQ^EEP w܋]ɍuD0Ƌ]=t}wlQЃu)ut.RuuuUm<4gPuuuUm]}=GuuE=UB ҉u uuډhM]=C뤅PuuuU%mFu]u}=*PuuuU+m E=tUr+r$IEP}ҋ=@)Ѝp$I鉅h )lMPu]S}D`UVuuuULEM|q]}=G @EM=A (}G(@UB %ЃI]E]MC=lEPpUHlMdufEnE+E EJ)Ѓ}E9E$9MhNdufEn`Emz}W M]MC=@}M=A}=M}A=@xuU]{ w}sMPPuuuU~UBuu}PE]UWRuuUEE}9EMAUld=uUUBSLE Nju P Ph]SuU[EmxFVgtcMu=uUrFU})ϸ$I)@띰E}E=dK]=gUWVS u}EPEPE PEWUËEu19]t)e[^_à hsotփ58Wj QVh~58WG58Wj#jh 4'Etet658Wj jh~'XZ58Wj iWQ(58Wjjh~58Wjjh~&y58Wj jh~랐US] ؃UUURhEEjEЍ PfEfEDžDžDžDžDž? uuEPۉtEЋ]ÍvtWLUWVS E"ЃU3B8e[^_ÐEP,1ۃ~ @(94ttC9EP41ۃ~@0949t}hC9E@$1ۃE~]UR U V!!uMC9]~9M %=uE#E EMy }^}3EM3G8^E #E EG<U1ۅuO}JM4u(} uʣƒfto}t }^E U1EE^9^}E#E E1%=^E#E uƒ(JM4_t9]t1Ӂ Ry%_t3с RA% _GGEU<tE܉E؋UX9ۋu}M9MPSuuU puuuuuuMU EEE܃ uU܋E9PQ11ۃ EESEBME Z$EEB?1xZ(,t=]Ӂ R%_GuWuuMU EJD4gJD4-JD4 JD4uUBRUBS E؍e[^_EUWVS] ;]EU}v]EQ%=X=HEA %=H w3=(t=tv];]|Ee[^_=hWW=XuԋEvFRuSPUE uuu‰ƋE;Eű}OPWCSVUE]eBu]ov=x!u%Ɖu%=u%Ɖu%=uEFRuSPUE uuu‰ƋE;EuC}]O]] 9t!]PWuVڋEu؋]QWuP=0E]=p=xnEFRuSPUE9 uuu‰ƋE!;Eu̍CEU@%|PWuVUE9tAG_]UP%Nj%=uOPWuVUE9uPWuVU萋E,]uA%EN]E+C ƋSt]eE]PE+C Dt ]8QWSVUEuUWVS\E؉UЋE U9EE}cM؃8M}؋EQ%=0wZ=we=EMEE9E|U9UEuEЉE܋E܍e[^_É=)ws=`u벉= =(uM9Mz]؉ȃ8S+EPuЍEPUƒE҉EtBMЃ}-v=:=*}؋_;]';]UЊ< Ёf RG%_}ЋM9yGЁE R%}_5}9}ttދ]8q +ESPuЍEPTƒE҉EtB$]MЃt&*3F8E7~<ډEuH S`ƒpu#4J4MtEEvEMv]}%=ufEЋ}9Gu}ЋU9z. $AډPhjSGE}؋G;EU؋Z;]v }Ѐ ;EEЊ@ЁE  R%}_;]wMЊӁ R%b_Y_t9]t1Ӂ Ra%_t3с R)% _GGEU<tE؉EԋUX9ۋu}M9MPSuu U puu uuuuMU EEE؃ uM؋U9J)11ۃ EEVEBPE Z$HEBB1xZ(/t=]Ӂ R%_GuWuuMU EJD4gJD4-JD4 JD4uPhju% E%UBFUBEԍe[^_EUWVS,] ;]EUU8EЉE[v=HEA %=H=(=Sv];]u]EQ%=Xv=xuu%Ɖu%=iu%Ɖu%=uEEFVuSPU܋E uuu‰ƋE;EuC}]O]܉] 9t!]ԉQWuVڋEu؋]RWuP=h=XEvFRuSPU܋El uuu‰ƋET;Eű}OPWCSVU܋E]5u܋];]E܍e[^_=0iEu+EPu܍EPC¹t@MM/=p=xEFVuSPU܋E uuu‰ƋE;Eu̍CE؋U@%|QWuVU܋EQ9tAG_]؋UP%Nj%=uOQWuVU܋E9uRWuVU܋EuQA%E]E+C ƋStEP]E+C Dt Qhju2MPWSVU܋ECu%Eu+EPu܍EPA¹Q@CShju뎐UWVSEH 8eU]u9Ete[^_ÐF u=`Jd~GFFt Dž UM  u r9sI,ɉhN4dv8WGƒ ҉$tBh(lI9ɉދu 11 C  $ T i t)~'vSWS(N܃t> R%uJ_tA$t6с RH% _ vt; R% _ G < 9 (RpS (pSS$(m$9<Dž$ G@WGt DžxMu 1} y9v,hO4w8GE F9*v,hO4w8G||S R%uJ|_tA t6с R`%_v|t;| R%|_G<9(RpS (pSS (Ã} 1ыE LDžvtB$8Ё R%_SWS(Ãl@$l r$lA1xlp(JD4WtB GЁ R-%_ JD4}SWS(ÃtA1xtp(t@tr$VJD4X,,`JD4JD4,y,>t@BӁ R%_DžDž LVV(脼ƃJD4 (B1Z((BDžZ$rCJD46JD4@1< uGD@v@@P(@<)pRPP/t@wPhjpo0 D~ Li1&QhjpDž$n 0 (;p@v 7v0DD DF(;p@v̋rDu - AH~ D ~D j@S(`@9PCP(jS@(tt(4@))Ӊދ}O_w ; M30DADAD A F;(;p@vAAA ŋU 1эLJD4}Dž,(.,(Džax@<;Fu1 u"@Duv@B@P(t̃0(;p@v 60DD DF(;p@v̋qDu - FH~ D~D j@S(I`@9JPCP(!jS@(tt(4@))ӉƉߋMqYy ";M30DADAD A F;(;p@vAAA šJD4JD4r9ʉs\h9s68u܋)ȋV<9|lj9ҋhu9Y9ʉsZh9s68u܋)ȋV<9|lj9ҋhu9d@Gu1`u!@Du@B@P(起t̃#0(;p@v 60DD DF(;p@v̋qDu -FH~ D[~Dj@S(}`@9PCP(袶jS@(tt(4@))ӉƉߋMqYy ;M30DADAD A F;(;p@vAAA šJD4'@)pPRP%¹t@+@K+h9d PqE 1} ыU Lx P赍(p+PP$¹t@1 (@@ P.0 L% xD@G20xDd PS+h9d PqDFH(@@ PB0*zD@Dž$ PDFHR@GQ@S(6DDž (@@ P_0 !zD9ʉsZh9s68u܋)ȋV<9|lj9ҋhu9F{Q@S(' PhDFHDž PWwQ@S(褴r+h9}QdAPhjpLPhjp,[뭋0ucDuK L蝉W 0肉G0u:Dt̃ P뾃 PW맃 PI돃 0 P-;h;hU;hUWVS E"ЃU3B8e[^_ÐEP,1ۃ~ @(94ttC9EP41ۃ~@0949t}hC9E@$1ۃE~]UR U V!uMC9]~9M`>t-P`W3pu`<tbuPhjhSS`WdP ;`taWdUCLUVShjxSSF)PRtPb@ vtte[^Ée[1^ÍvUVSP9щsA9r-[^kv S9rى[^Kv9[u΀y.uȃ .8K9ʉs B9s:.ti[^Àz]uBUWSPNjB@Pr 9t-GP WBZ @B1؍e[_ò 1UWVS ]ljىڃF GDH Spw9sP8) j GH G@({B9B=J|BE܅~Ã+*w9FC<v6?t1{/B9$B=J /w9GE؋E9EO9`:|WBMG +EPGP+EUPUGEXZjv?{Ƌ;Gs 8,WSVU؉Tw9x:}YB9bx}u ,v Ã+vu؋G+E@PHVG+EغP$uG+E@Px)UUUE j(h7u؋G+E@PHG+E؉$P [^u؋G+E@PXG+E؉$`P@=wJSVU؉w9 8w9Et{e[^_Ãu؋G+E@PxG+E؉$4G+EPU؉tjWJjSjG+EPU3G+EPe[^_Bh#9Ɖf UUWVSUƋ@EEEN19:^9B9s ;E5:B\)6.E*dJ‰QN9s*eB9s \$t1E9ʋFEY!E9EQe[^_Ð{ugXЋDH S8IXT BtH$@)F@D"v9ʉ):B)}ރ[(F@@FX@  ShN9s$B9s :\ j)\ FDH SpDN9FB9;:\2z)(B;EMF@t>  j(~M |ME F jjFH F@(FEE9Epe[^_Àz{ZNjN9s 8,5SWUN9aB9s :\n9IB9s :\BFD  BjFH F@$FENBuF+E@PHF+E$PJXZuF+E@PXF+E$`NI .z}* NP9ʉs@=w Ju 9lj v 돀z) z}vUWVSQUBƸ11ҋ%=`=%=pt\w=0tw1=t=(uLB@=t9w'=xtD=u29~듐=Xt-=h=t =u kZ[^_É=tv4%=`t=t=u%=`t=uă뗍v9~׋UZ[^_ÉUWVSLE$t  "1} эq jLhú UD@ EPhEE } 7|]xEE1DD@ ~C C KC C$C(C,C0C4C8C<C@CDxjEHCU|9xrxxux|9xrڃ jxqUBC^_SRugCEX=`J~5Jۃ׉2DžDžC0= ==9K<}%K<S0DžDž%=XZ=xP=ht1=`^9S<S<C0YUB;E rQ+u tK CHEC@UBZ eC e[^_É <7%=`t=t=uF%=`=u9S<|kK EK<~-C8C4}11DžK=Pt(%=HuF;~N=0[=(n9C<C<C0v== u0}+ x}{AxxMK<oC0UC<C0Mp jxlr=2=p-l==H䋕S0CPPhPI9K<K<@S0 h2bDC4S4C<A~s<1)C, 8S4FGs<9UC< PaC< PaC8DžK<& +S8HAK<;؉OΉp94~9S,28:t(+{8A9~Љ4K<9N륋C0Q AP`C,PhjPKPUrh=58WnvWhph}2 hUtxH P Phh58Wn! h6xQuhу hІV}7 B6uuuoUB E8tEj/u$uh#UtPRu/"觸Z0=Puh jHj/uo juuhc}7UU wAÐUSPU] v R@!؃]ÉJD4!؅]UVShhhPu1 VPt Chu㋄le[^ÐUWVSh`Ahԑ@APh`A茨uG~ۍe[^_1Avfǁߐ/Sh őB~ʍe[^_ÐUS5 B t18t,t8u h6t8uIv]à 4 BUpWSt 1e[_à hΉtNuEу+?w S;pu7 upډ{UWVS @A . Ut*j/Wt+ϵ1ҍe[^_ÐGt<.uˀt褵E蓵茵1҅uUw$ uW}Ut WӃ1@zWu}Uf9 뽻붻@믻: 먻3롉UWVS EEu  v@AP P  Kyu@lj1IRVC贎 ~ɻ v@APP膎+C ~ύe[^_sMj/V%x/@E@vtG)@RPVuJ~E CuP PC襍 ~GGVS G~U hȑjjh‰hܑhؑu u Бtԑu ԑMt,t+BA8tItv<:t A<|tۊu[^Ê<|t<:tu[1^ÍvUu%1Ív Ps1UWVS j=u uà ۸ jd>H_Ed:tItE^td\twCAMu)FdPWI%Ed: 0uvA)}XE8؍e[^_C<:tՄt뎃 >XuF%Dž1IjRQR t(H8uI@H뱃 S>Dž R @S=81Ӊ$= SPXQ{x0;0s SO=DžF V4=vUWVS} u= 5tP5߀:DЁ Ry%@1|3\xjÍ؊t:\t @FuP5=D뱐JD4%@^:Q#D 61|3\X5D!X  5 BZ-h;rQe[^_à PÃt:nh;0멡D!X  5>ntǛ\:F|t:t @Au jjRjWEÍ@ vCe[^_1C PÃ1('vUVSu] ] u[^jUjjujEu UÐUVSuU} ЋAu")čD$Ãt;E VC AuP5PhSue[^] UVSuU} ЋAu")čD$Ãt7E VC AuV2Sue[^ٙ U 5Phu uÉUWVSj/uDž|!xE81} у)̍D$eu PyshsS:1}Dž;ѾyD>=WjhjO Vj> jhj-hsS|n|de[^_Ð11q}эyD>=PSVS2J W\3SƄ5/uJEƄ8Q5Phux?w,$ ExDž蘗 /舗0PxM8 Dž| U1: @UuB&)čD$à xCPRCPEP I 5PhShzӖ jÖ0^UhܽtRu PuÉRu PuUVSuU} ЋAu")čD$Ãt7E VC AuSuYe[^  vF̀rÐϕv̀rÐ黕v;̀rÐ駕v̀rÐ铕v̀rÐv̀rÐUEPj ÐU҉u@ÍvU hj:j:hhhuiUWVS E8ete[^_ËX t;EuCu}C tRK117C t0e3ZC t(X3XC t GJ3@9{˃ s 43C,uAC4u'C8uA]e[^_ 3 P3r -P2ƃ P2뱃 P2뱐UWVS,Ivuuu thu5p1PnX؉ZfDŽ)/uP6nY_h;IPDŽ /LC_DŽ CTYPfDŽ EHp PAs Ss˃\JXJTJG PJLJT (A,A(ރۃ-19@D޿I8»O 0t hJ1e[^_É$`J(\J0XJ4TJ,PJ8JLJ밃 _= t+- 5 /J `J$\J(XJ0TJu4PJ,hLJ8.k Jɐҳ踐謐OuL S  a P0뫃 L .  sUWVSE]DžlP D!nCP蓈1҅-E=7 2 P.1҅D胏 S:o#SjuD1HDEDE8 Q|DD4 ȉ4 D( ʉ( D, ɉX, D0 ˉ0 1DD(ȉD((ȉ((ȉ(F~Nj||xR4}9||tI| u9||[ ]9ىp|1x SʋCȅ SCuB)ʉh|B<lЋU9׉|ah ȉJFD 9( , X1X~.tȉBȉBBȉBFD 9, ؋D0 1~0pȉBȉBBȉBDF0 9֋D4 |:;EfD, ( ȋl T P8+EgE}T RuneGMagiL DǃE@0D4 MP ( 4 , T< 0 }D 1DD(}D4(4(4F~ʋL d8 d@ TЉH ЉL pI1|dDžPDžLHPx ;HT;PD;HC)ʉC\|`|ً]L HG ЉL \!Ld`D KFLHP U94 ;< T]1T@ ~211ɋt;D;DD;DFE 9< ҋMD 1H ~211ɋp;D;DD;DFE 9D WUP |L '^D(MP u ǁL ]4 u ǃ8 u< u dž@ }D u LJH Ue[^_à V(mO1ҍe[^_SZ D': D'%1҉뺋H@ AUEJ\J F PJ0G XJF `J1ÐUU1tuÍvUWVS }uU ]۹t)t1 t [^_É Bv w*vztH t [^_Ét [^ȉ_ú1^އV [^_ćOvUWVS Eɋ]} u?۸t.FVv CJ [^_L搐UVSEu] MUtEUM] u[ TJ^@EUM] u[ TJ^UWVS E Eu}EtFOt0uVSu\JtXtZt`)EEOuЋU Ee[^_Í}vt)EuVSW\JtЅuNjU Í3U 붋E 뫐UEJ\JH PJI XJH `J1ÐUU1tuÍvUWVS UuM }tnt(u1Ё~ABtZt1҅ƒ [^_ÍvtZ ÅtE [^_É1덉vBt ÅtVlU]UEMU u(ɸt fx ÉQ袄ɸÐUEJ\JJ PJK XJ|J `J1ÐUU1tuÍvUWVS }M u`J)9w_9vVSQD:P,}E؃Ot(Wv0t,vAvZB~vRBЃ w[ уW}w; уvnWBЃ w% EVv EB`VJE$USPE]M ۸t_tS}w}ЍBC wjՍC}wYэBC wKY[u8tGՍ}w%C?~tt Y[É?VY[à Y[ڐUWVS EL ҸOӍv< t< uC j$UE1vQjEPSXU9tv҉tp;E~E< t< uCvRjEPSWDE9t=t7v< t< uCvG~PjEPSWF E9tu VOe[^_ËEL ǀP $JE`J\JLP PJQ XJ0P e[^1_~ۺ u~둍vUU1tRuÉUWVS EPҋ] }xo;`JgHx`[tZ҉]u[ JыL 1E4wNO C C$} [^_ÉME֋UBt| CB9v9r9JL B !uE LtU E@1t+Ey21@!I}VEEE])։XpU]SsUWVS E@]} ۸tX JL P !!9Pt9Pt?9Ptk9PtTL xWv ȀCJ [^_Ë8 CJًx CW΀x,|뭐UEJ\JS PJ T XJR `J1ÐUU1tuÍvUWVS UuM }tnt(u1Ё^ABtZt1҅ƒ [^_ÍvtZ ÅtE [^_É1덉vBt ÅtzVzlU]UEMU u(ɸt fx ÉQzɸÐczv̀rÐUVSEu] MUtEUM] u[ LJ^EUM] u[ LJ^UWVSE 0E}DžTEtLOtFE9`JsOSu6uPJ]T)]uvU 2Te[^_ÐQhuhPr u6XRPJt[;ERPXPujrxPu6XRPJtt,TOubE 0YE TDAU 22PhhRuq UEJ\JV PJY XJV TJX LJZ `J1ÐUU1tRuÉUWVS EPu Z}tu#€uutE1 [^_ËUZuq%=%=&%=$%==EE@EUߋ %uj? FCE9v9r9;M|F]tEUB [^1_øE!F|vV [^_þEEE뵰E 륰E땰E^v뎋E)߉xUPMvUWVS E 8E]uEtLtHE@~>?~9uVe[^_Ív~"U)EENtE䡤pUP xt,@ttuHB9Cv9C  ]t ue[^_É%EfS ECEHy}eEMeDEc TfK EADfK ҡlf7f;Kto‹9uC +dls99p suC;ESPCBPuhVhfS D+PjWVN>E䡤)PWhVg9s t5;Et%3urXa{sSMK S;HE@ C QSXn j ;HBCC HB SP C S +d;hlC;hvBhhxe[^_e[^_ܸո΋t%t{9ysȅt t9xr Ύ둸느UWVSÁt1Et(J9s tJ9rz)ىBJ  +5dllA9r5Tu"Utu'E𣤔e[^_ QShWheɋEe[^_Ë ɋztBABUS j %E U41;us҉(` V 1҅u߉ +dpH9Љ h5sUUWjjjh%j EPj 1҃Eu p5lmEUplluPibU-UWVSǡP19s(ttPWjSce[^_Él9s΁wHEEuEuU܉ыZt1ۺCt1ЉUfB HffB u2El4u+M܋E܍\ˀH T:M܋A؉냸EMEU9Ћ]MfCufs MfC fCu1҉sED E)ЃwщЃ tB;U|9]m 5d)ulUlMlliE>Eb1R@PhU܋BPa<E1҅rMufC fEfKfM܉уЉ!LE)EufMfMBыUfSfMfK UWVS5D!ljUE"E\5`\uY!h|1,pvv<>;$,E +d P;hx?lssF%tC ӭttttD;u9uw;E1(Et'Ett;]PSWV_yvhȏhc5P$@BCvFTt TPjjjhjhjl @1 j dHBpu HB HB{e|`ut ɻM}M]Ej PD!\ h@ [v h@ZE\vH{ D!dXe[^1_Rj?]ShRDt1ۋ  D!\=tEu ؍e[^_ø%Et@d %HBC-HBCCCCCyCiCTYCXICP9C)CC CCCTCXCPΎ11Ej h@X \2j hÃEEEEj P?f1Yp\l*8u8t ]9]T;EETuP+]ShMPZv.EwSuTtP+]ShUO5vUU1ELvUE1EZvUEU EfD$9LBv LBD$̀rD$PB`Uu ujuuuu ujh`Ð`vÒrÐ`vK̀rÐ`v:̀rÐ{`v/̀rÐg`v̀rÐL$PBtD$̀r PB PB-`UVSƋ]t6CB 3ZsXs$Npe[^ÉCFlUWVSEplEP1)tE9F~vue[^_à ^VEgˍvUUt,~/t tQRh+h^-ÍvڍvUWVS,EX`ۉuMAl1\P9}щNj@uBGEo j u uG uGte jGUЉW E܉G Rwu uwuUBlGBpzlUBp j3 7& WFUSR=t1҉Ћ]Ívhh? tUSPD!uE D!ɉu-؋]É hIEt D!ɉtӃ hI؃]ÐUWVS<}E8u U :MEUMD!vEPuuwM MU}ȹUUċB`1HTBVSEPh@ EPh@ jr` tUhEp` E뀸e[^_Ë D!u hGucZtJEPh@  D!u렃 hG댃 hbGEԋU @PM U2PuNMME̋U@$M U2PuMMCvUWVSLE E8E} U :uM9E UM$ED!URuMMMMċU }ȹUUUUB`1HTBVSEPh@ EPh jr` tnhEp` Emme[^_à hEJ D!u҃ hEu*Zt8EPh@ ҩD!u닃 hmEtEԋU @PM U2Pu'MME̋U$@$`M  U$2PuM M$UUWVSUEw $dvRPh.h@_@øCøTøpøeø}øøøøГøøӒøøø4øøøÐUSPD!]uW=t>tZtJ D!u1]Ð h=1Eu봉 h=뗉vD!u ]à h=䐐UU hBPRuUWVS1}ȃ,EPu5 Eȅ]̃E؃ @P: uPu܉E0E@$ uPuԉEY_EPh( XZ5puSuVjpǃE V$7e[^_ÃEPh( 蕠E ׃EPh( yE e[^1_ÃtEPh( PE 떐UtÍv h#ÐUU̖wÍvUWVS,}.M A1E؉]ԋWPWRu hSshuk u>FRPuu$S`1эA)ƋE؃w$])빍v uuhVS{k EƀEԍe[^_Ív uuh΋E1w<`PhVS2kt)ƅteWhs/VSk뙐 uYPhhjWhhhhjXhhJuhԗUVuS] t)tCSV[ Ph*58We[^hhhhؘhhhhؘɤU u$h*58WÐUWVS u1tYVhSshSiuFVwVOZY0p$SoO ttKƃ؍e[^_É)QVhS7G PdOZp^_PS붐QVhSG P0O_Zp^hhhh袣USP]t" S Ph*58W_]hh+hhQUWVS<}t ?PhWP@Y0;1IKCD! )58Wo. CPV8W@Pp78Wf` D!uAe[^_Ð1IDžDž0 58Wf0e[^_Ív 58W/L?v̀rÐ?vx̀rÐ?vZ̀rÐ?v)̀rÐUVS]ۋut%E >vB:u@t BKu[^ÐUu u胟ÉUu ucÉU j@u uyU j@u uYU j@u u9UhE PPu號UhE PPuqUVS] SuV;1҅u e[^ÐCPV;1҅tCPV)1҅tʃC PV/1҃뱍vUVS] SuV1҅u e[^ÐCPV1҅tCPV1҃ǐUVS] uSVs1҅u e[^ÐCPVs1҅e[^UVS] SuV1҅u e[^ÐCPV/1҅tCPV1҅tʃCPV1҃뱍vUVS] uSV{1҅u e[^ÐCPV#1҅e[^UVS] SuV31҅u e[^ÐCPV1҅tC PV1҃ǐUVS] uSV1҅u e[^ÐCPV;1҅e[^UVS] uSV1҅u e[^ÐCPVח1҅e[^UVS] uSVk1҅t t$Ht e[^ÃCPV1҅tᐍe[^ÉUVS] uSVW1҅u e[^ÐCPV1҅e[^UVS] uSV 1҅u e[^Ðhȓ jCPVi1҅e[^UVS] uSV_1҅u e[^Ðhȓ jCPVi1҅e[^Uu u諚ÉUVS] uSVW1҅u e[^ÐCPV1҅e[^Uu uCÉUVSu] RjSV+1҅u e[^ÐPjCPV 1҅e[^UVS] SuV1҅t tt&e[^ÃCPVx1҅tڃCPV_UVS] SuV#1҅u e[^ÐCPV#1҅tC PV1҃ǐUu u#ÉUu uÉUVS] SuV1҅tt'wHt?1ҍe[^ÍvuCPV CPV1҅tʺÃCPVJUVS] SuVS1҅tt'wHt?1ҍe[^ÍvuCPV CPVG1҅tʺÃCPVUVSLE E؍EP]ZYShpEuuMPEPVSxUe[^G7vS̀rÐUWVS,ÉUEE E̡D!* uo2E}_f{ua=D!uN( PuuSg"ffC5D!]EEju uuuuԍEPuuk tr} uED!u e[^_É h؛W- h؛C-v h؛,v} uӮD!u 1e[^_à h؛,1䐃 u7Ẽ@tcE h؛,vQ@jjSPE̋U  u4cBaB B5C2UShNu$u uuEU à 1tPESPjSR؋]ÐUh`"h`"uuuuu uÍvUWVS}u]MEM]EU }u [^_Us$vUWVS8} WÉUE/td1}عEPSEzXZhS-6XuujVS%VtNG4f@fGe[^_à P5Eu V詬 Wh0jմ1EЅt S21QWh ՐUMEU ME UMEU ME NUC=vUhNEh`"`"ÐU vU1W}E@f@o@_1ÉUhNu$u uuuuu uÉU hNuuuuu uUWVS EEE0N] t e[^1_)tCE EEe[^_ 5(ƒ֍vUSP]$(t3 hNhX u uuuuu u3]Ðu7D!uEhtm hD(D!t hЛ(S5)| hЛ|(u렉UWVSUҋ} ut$PjjjhSPR tVjWuUe[^_ÍvVSWuUe[^_ÐUWVS ]E;u(> |>0CEe[^_Ð j .tŃ jjFtVEx^^Fjuuuu VM1'E v4$Ee[^_à VJWjjj蒳UKM1}I ыMxQRSPFS= w=/CUX P$/GUWVSDž\`v `V;C t޿$ uͅ Sl1dVjjjxP( jhuzVƅyg1IxQjjxRd jjDžhjDžljptXRjjxRP'{thd0xA uu hPSdq \ `\e[^_à pѐU8UWVSSVuu u|sCDCC e[^_Ëu>D!h hD!t hЛZ v 5Ã3њI9C;E 9C /E9C#uCP VPEEPCPEPjsRC PEPjsRE C EC1ы}IwщIEEC@uuu$u uuus pe[^_É BRP hЛeKuCPZYVPWWjju6 h4Ʈt/tC]P5 C~UWVSSW V e[^_É   $ (T , 0 4P FF 4 D!f h]fF>SWVEPS< u{F(& hSvh4hh\hgX* h| e hd4$茔1UWVSu\ uU Ã1DžddWPhWV >hC0C,hPj‰C4hQPWR| dDždPWVhC@$pP@T@X`qCDdqCHhqCLD!$8C8C PfCEDžTTWPXWuP XC0C,Pj‰C4XQPWRC8$jڍe[^_É8 < @DHL PX C8C P hv h[D! hL1at V轐e[^1҉_à h|҃ h=ȃ h=`UE@@xu"PEPEPQuUE ʉÐUWVS4jEP9EED!E1ۋ=\B9EUWVS,uE FPhvPRWDž6yl8t~8tt8*PhhpS jjSPRWDž6~x pYXjsF@RWPFCT1DžDžtRMȋut69HuP9;Džs9v΋ủ SD! hpM9D!e[^_Ð h' CSP CSPe[^_à hI hD!PWSd:PSR끃SURPn h{UWVS ]tX]1vUƃU DPcK11 CuӃ ve[^_hhUh]hOC늉U单x Hu ERxFUWVS E ~\Nju0D!ufʸ!pu6t%fFftO uà 6}uލve[^_à h?܉ hCD!UEU tHt1Ë1~pÉpɸÐUVS] SuV=1҅u e[^ÐCPV<1҅tQjCPVA1҅tRjC PVA1҅tPjCPVA1҃뛐UWVS }?] E1;EEPW>tTEt`t@Eh jSW4 t,t1EE]1;EEPWx>ue[^_Ðze[^_ÐUCvUVSPj] SuV@1҅u e[^ÐPjCPV@1҅tCPV;1҅tPjC PV@1҅tPjCPVy@1҃뛐UWVS }?] E1;EEPW=tTEt`t@Ehd jSW t,t1EE]1;EEPW4=ue[^_Ðze[^_ÐUWVS]Cj Su PʋȉFȉFȉA CSPY_~ WSE81҅u e[^_Ð CSPEXZvSV1҅tփ CSPE+EF ^XCuSPZYWS81҅tCuSP둃VS91҅zFPS91҅`FPS91҅FUVSu] PjSV>u e[1^ÍvCPV7tCE uK e[^UVS] uSV91҅u e[^Ð3CPCPV<e[‰^ÐUWVS }u V E(N,ʃ(GRWPڃȉڋFȉEFڋFȉE~ڃF ȉڃFȉڋFȉFEڋFȉUBȉMAN$MڃF$ȉڋAȉAE!Ht)VW7EEe[^_ÉGj WPt‹ȉȅFEuȃFEuȉF ȉFȉFFEȉFCUȅBts=E^Ru#PjMAE4MAWPWRPUrSrmN$MGjWPȉF$UCȉBMA=EYu&Pj3UBEBWPWRREpSp辤FPW8(FFPW5~F PWz5FPWb5FPWJ5FPWF$E }e[^_~hjAhТh9hjBhТh9VPqSWPqS覣UBÃPEppW7EuWU7F,PW 3QMqqW)7EwUWVSL}EE0EfGoP55jhW谡 þt_E EȋEE̋EEЋEE؋EE܋E0EE$EE EċSu,u(EPhX EPh jSƋCSPfGe[^_h)j`h`h)8?h:j_h`h 8vUWVS ]ۋu VSK2u 1ҍe[^_ÃFPS+2tFPS2t̃ CSPY_~ WSE11҅t CSPEXZvSV1҅t CSPE+EF ^XCuSPZYWS11҅XCuSPAvhhh`h 6hGhh`h 6UVSu] tOtih+jEEPVu 1e[^ÃCPV0tEsVS hhh`hN6hShh`h06vUVSu] t]ttSV0u e[1^ÍvCPV_0tCPVK0t̍C E ue[^00hj=hh5hj>hh5nUWVS,U]t1t e[^_Ð NtPTǃ1tԃ PPhj ]SSWTt)PWu u2 4$Hq<$Ke[^_à WK1mUWVShN} E1tPSWu E$RK htQPWu Ɖ$$K1uUte[^_ÐUEtPEPjjuEP  uUҰuUE EU1Ðv̀rÐUWVS E ۋ}utSWU?t.e[^_Ët4tSWU?uӐ SoE 뻃Vj螤ÃE ۉtPVjS끃 hȣ?1UVS] 1;EEuPV01҅tMue[^uuSVe[‰^U1ÐUWVS } ]GC GCG CS`qBDs C@LtJ~~tU D!X90tl@uD!u4e[^_Ív} ]e[^_j} ]e[^_` h뺅u} ]e[^_$WSPD!҉u1؍e[^_É} ]e[^_ h@ hUSP]vVD!uRX9tkRuj j衢tyE BXBD!ۉXu1]à h뜃 h1աD!u ]à hD!u ]à hUWVS \fDžE@U ZȃtHe[^_Ë3΁w䋅GPVwSG0FËGG CGM Y(EȃE̋CEЋ>fRf?fn)¡\EȋỦE؉U܋ AEEЃ E䍅PjjuVDžDž H=E؉ȉEȉMɉJE9Љhhj hjP\uXZhj1ң`v`fPB?~Bvjj}W\t)ЋtD ?B')Ћt;xPhhwfSwte1VэPph* vh<hvhI狵v\?ÉtDžddd?9uA9CuҋSt19ɉ֋uC9h1ffDhVhv;JijP+9Љt]|ihjhuh|hurl`@~;9}jjBȉE؋ȉE܍EP}HE؋U܉ỦEȋU EȋZ(ẼEЃMA@Du QF(BHA+^(XL\)4VF`fff9f`fXf XCf;u狍AyFQ1׹QjțFpvvQVF~ tf@1FBVAQ F A1hhs P?f)hףhqsVC9ddh뙐UWVS EP?}wm)Ѝ4\\fSft^1ft2U CUCUCDSJye[^_Ãhhr1e[^_à WEPEPEPUr uAhhlr1fC뺃j&jÃ\\fC5hѤh+rEfU EfCUEfCUU fDSJy#UWVS$h;h1{ƃ1RVhP{w<#t<+hP~[hP\8tڃuSjoWu {4$能e[^_É Pr2DžPP}1IQuhn u ߞ4$XcSPhh$58WyRVhP.z V脼e[^1_ÍPhh 먍vUVSu 1҅tHhSu1҅t-j:S 1҅tQj0SVF0ve[^ÍvU pɋUE tE UtUSP]tu]]a]Ív BRP]]avUWVS<Mt/蹧9B+ PPR::1DžPh@J So>tL q $uЋx, S#>uu2t(hPs! S911襊B胦 Ajjjqh" DžDžQPPj1R PPj1R[e[^_áuSn URSj苂D!9tC t1 D!thPuщFx PPul V(UB t 8UBt 8 u'D!uPPjEPj见5D!ue[^_à P҃냡 P0e[^_à h랃 W:! h P0'= P'?UWVSu F^ ~DžT)DžPDžXDžd^d~f?uc `P\PPTuDž`谿 xH jXPPTukP xRdVudPf?t ڍe[^_Ðۋ8h9tPdPVu~yN8빉DžTDžPDžXDžddSPhVuDžd@\QdjVipȆ.) j\PPTuLO 9UUVuS] SVu 1ҍe[^ÐPhCPVt݃CPVtɃC PVth*jjCPCPV# u덐hj@hth`UhIjAhth`?U1ÐUW}fDžfDž1hX0jlIP Dž0I Dž(Dž<DžXDž\Dž`DždDžh} EPu P蓓}ÐUh\Q hpS{ÐUVSáD!u1ҍe[^ÍvW{uhJ hЗ|uЃ 5pz1҅ujjW tP5p|u끃 3"gvUhX htzÐUD!VSuؗ1ҍe[^ÉzuhJ hܗM{uу 5tz1҅ujjV tP5t{u낃 3!hvUh Y hxyÐU D!VSu1ҍe[^ÉyuhK h zuу 5xJy1҅uh j(V tP5x {u| 3!bUh` h|xÐUV5D!Su 1ҍe[^ÉxuhpL hhyuу 5|zx1҅ujHj[U tP5|>zu낃 3K hvUjh@hhLh`jÍvUuh@hhLhjXÐUh@hhLhj/ÐUWRE}1 E@@ B@B@B@B@B@ B__ÐUVS] ؋uEEPuuSuh@hhLh V01HtUe[^ÍvUVS] ؋u3EEPuuSuh@hhLh`V'01HtUe[^ÍvUVS]؋u EEPuu Sh@hʧhLhV01HtUe[^ÉUWVS ɉlj EP55hV׉ËE u"tu e[^_LE萃 5=wW PtREu"n또 ho1҅tA~"1WU;vUvUS] MUEEUM ][mUU(P vUU4P vU1Ҹ@P UVS Gu! jjjjhէ z u#v jjjjhyà 1t5jEPEPSEES tBw؍e[^ËEBvVRhDj$S1ۃʍvUSP]t,u]] PP]]]ÍvUVSE] qu tt*ve[^ËE0E@u&EpًEtЃ PPE뻋]C UWVSl} UEEw0tTEu Eċ~te[^_ÐuE2-UB(πB(EtыEʉЋEE1ЋEЋEЋU@EESUuW]ċ3 Et ]ċ[]EȉE>]čMS E ЈEȋUjRQ3P  Eċ@ uuWuuŀB E@]ă{ CEɍMEgЋEE3 PPEăj+렍C zU#E@]ċC]ă{ ~ EKUUCE;EvE"CRPuunsEċ@ uuuuńBƃ QjuEPDw@M]ĉECELvUWVS u] 9ދ}sY:tB9r ɸu:t0OtFB9s :t B9r u#BB9sE;D@e[^_Ê뱍e[^_ÃVupje[^_ÉUWVSQUM u9ʉs :tB9rEEZ[^_É9sB9ʉVs:t B9s؀:u9sBZ9EwNjڍ[9ˉFEwF C9Ew‰Fs:t B9s:u9xB9ʉVl:t B9r[9SB9ʉVG:t B9r890B9ʉV $:t B9r9 BB9E:@9F(^~$EUWVS u] 9ދ}s[:tB9r ɸu<t2OtHB9s :t B9r u%BB9s9ED@e[^_Ê믍e[^_ÃVuvhe[^_UEVU S9Ћ]s 8t@9r[^Ív9s@9ЉCs8t @9s܀8u9s@H9ѾwˋȉCȃ9wȉC ȃ9w9щCKs9t v@9s8u9s@9ЉCt8t @9rc9[@9ЉCO8t @9r@98@9ЉC ,8t @9r9@H9Ѿ ȉC$ȃ9fȉC(UvUEu EÉUS]S]]DUEzt ÍvEǀE  EǀɸÉUWpXwXwXw  1}ÐUWS׋҉u jjhXjjp ‰tB1IM]EEEjPEPRR1@t e[_te[_UWS1t,jEPэEIPRM]R e[_ÐUWVS }E|]U Hyf)u$u uuuhܩhhMQEP0upEMP1|EtKv u$u uuhܩhʧhEPEPy0te[^‰_Ðu$u uuuhܩhhURHe[^_ËEx@(DžpMEPt1pMQt1pEPt1pMQt1pEP t1p pttMpcEMQ2EEPEMQEEPEUB tEEuM <KU2S)SPV%<9؍tEUr)QSPV;9؍tEUr)RSPV;9؍txQ(@AUrS)SPV;9؉pCpxtP(_xAmUr)QSPV<;9؉ppxtP(%xA +Ur )RSPV:9xQ(txAMAtxB MA t||t2e[^_1щpME9Hu t."U$"LEM1u `뤋Eu)RWPV9}u)QPRV9t0Lu)SPRV9t0uP)PRV9t0uP)PRVd9t0tEP+tPRt99ttsMA/EiMAEEE@EE@E@ hpja USP]tXuCu+C]] v PPCt؍v PPCb]]J ]ÍvUWVSL  }E] 0u ttie[^_ËE0E@uwEpU HyjhhhEPj! e[^_ËEu7U Hyjhh벋]C w PPEUWVSl} UEEEaw;} Mu EċKSe[^_Ív} uɉЋEЋEЋU@EEMu} ]ċT} C]ċKMCDHPEȉEUċB!}rCEGC EȋUjRW3P M+-t}EċPUċB@B]ă{ ~CzvUtEUEMQ(πQ(׉ЋEAt@/UăAt Eċ@ uuu uuŀB >E;ESPuucEċ@ uuuuńB ЋE PPEă:}]$UEăxDEVPWS u fE@D뽍C ^] APPUPRMQEP~ tEt8tۋUă, ]ċC){E,:uuuuuRujEċU ƃ uuuuus@ujU `ƃEp@@E@@Eă@DhUE@A(@ AP]C@EċH@ @DE;ERPuu?aEċ@ uuuuńBƃ Nt]]ă}EP(t@Ct MA C @u S(] Ep C MQ(S(uuuuuuuu U E@DqE@DhpjUM E| Ep:CtrMQ($ EpCtOMQ( APvEă@DlE"M"hpjE UWVS ]E 9Ë}st::tB9r :uRtHOtSB9s ::tB9r :u*Pj EBPR,1‹E8:u ;Ute[^_Ê 1}щI)9u9u8U 1}PuuI@ÍvUWVSu UEDžx!ЋEЋEЋ|@tEtuN];tSE-uo tHPhj@EPk@tie[^_ÍvhSQ0E]8-t tHPh j@}W@҃uEEEPEP}1IQuEPu &rE;|RPuu\EU_u/[xuVuu9 w."x**Ee[^_ËUu{EPEPPPEPR,ǃ ! utYEeEǀzf,vEǂPEPUPPQS}WRSe uh}wE)|U|TOElpEPEP1߹IQShu jEu)QRj:P1JGC9>)PVj:SJ');lH uuUUE@}GUB(π B(Et}ЋE tuuuu^ǃ exh|u;|t"ЋxePEPURSEW|uu*늿6`EǀPVSp:YpUWVS<u 1ۃUDžDžDž\eЋЋЋ@ P複 P tLPŏ V81IQ3 S輆1ۃVVxqP@h1hR/=wMP3(;"TvtSuJ(0EtEe[^_h8NS莅Xj1ۉǃ PmЋЋ4]"t"]8]АU1҉Йt3REPE P EÉUVS5&v 6sXs $u١uh5Cu5C uB StZC6t׃ PCt˃ PC t P밃 Py뀉̙e[^ÍvUWVSL sLFuމ̙5șu hș uՐPP1IQh5ș9  lq̙̙eW5ęhP=̙4<+uU̙ hhR <+t<#< t>< t:< t< t< tt C< uv)< t< CvC< t< t뿃 5ę%1Å۸t[suOS Ct8:t3:(t8hQfGu1e[^_à jǹ1󫋕ZYhjQFDžhPF4< < hV )~* XS DSPV l B@< t<,t< tvFVm<  j@F$j AVPW B01уqDž<\Dž~w GPɉ~"RP~ XPVPSZ :P5ęhQ ty1эqD3< #ND3<\DžNDžD1эAJ rbGpUWSp];=t5SGOElqPh訝ŰEȉ u̙lqh;h £ęu(lqtx=ЙtGęe[_PEPhQR57X5ę}+lqu|t/ęt P]M==e[_1 QZZYSP/묃 PMRT8̙lqVUWVSLMtE8u 1ҍe[^_à ЙulqЙtE E…1Ш uvWVS &U ttPu DuɐEttPuDuEttPuDue[^_à hș'1҅șE DžE Dž3GPhhVzP1ۍPعIQV %}I R]-%@t FӁwݡJD4%@u9=J P,%@u#F,tt=wՋD4%@tPuwu+;,t=v] P,%@tF׃?@9F1ۃ tҺD4멋EthPh,ucE tQPhhVx hĪHj됋맋M1҅#nEbDžɪBUhx h,FÐUVSáD!u1ҍe[^ÍvFuhp~ hGuЃ 5,zF1҅ujj[# tP5,>Hu끃 3KgvUh< h0FÐUD!VSu1ҍe[^É#Fuh< hFuу 50E1҅ujj" tP50rGu낃 3hvUhl h4SEÐU D!VSu1ҍe[^ÉWEuh h Fuу 54D1҅uh j! tP54Fu| 3bUh h8DÐUV5D!Su1ҍe[^ÉDuh؀ h$IEuу 58D1҅ujj  tP58Eu낃 3hvUjh`h٪hhjÉUuh`h٪hhjÐUh`hhhjýÐUEUERuu uh`hhh@P能01HtUUEUERuuu uh`hhhP401HtUÐUEUERuuu uh`hhhP01HtUÐUWVS ǡL EP5P5Lh<V׉ËE u"tu e[^_qKE 5LP=wW PPLtREu"m뗐 h1҅LtP@LJ"1VU_vUvUS] MUEEUM ][UU vUU vU1Ҹ USP]tu]]]Ív PB]]USPE] u tt7]Ë]Eҋu=th;h "ˋEtƒ PBE뫃 R띐U/vUEu EÉUSP]t ]]v]ÍvUErt ÍvEǀE EǀɸÉUSP]t smu]]X]Ív PA]]8UWVSL  }E] u,t4tjE@ E pE@e[^_Ë]EҋuiU Hyjhh٪,EuhU HyjhhhEPj̸ Rh;h { Rj P?EUWVS U u} 9r"v R_"%@t+F9s~#tcӁwԡJD4%@u׉#t?9t;}t]1] 9ȋU}v9s8::t#B9|}tuw2}t9e[^_Ð@Bڊ뤋E띐9Ⱦ}ڐ}u1}+U9эAu9u}8Pj EPRU9x::o9E뚐UWVS uU1]z))~hsEP3ue[^_É8thsEP3FtσhsEP3‰Et8tEQj EEPRE8uN~ ~YEt/uhV>3t 8tK~*Euԅ9E")EUWVSl@ }} UEEw} {e[^_Ã} uЋEЃ8ЋU@EEMu]3} Et 3]KMC EEP3&tRE| v >+3 uuu PVqE HtH]EP3{&uuu En}Ue[^_ÍvUB;E_QRVW<EXZuUE)HPDPuRW+ Eu]lЋEHE%ЋEqUM Hy6IQE'E@ ]h;h ]FU HyuuWuEph0hhEPEPy0EM EpE@E@ }d]} ! uuWuh0hhEPEP0E]1UM U$VUQPj:RQ*t\9EtW )]EP CEP$EHSPuR:E@MDE@ ] E@ ] P9ExE"EO} } MU9JE@UEuuWuuh0hhURuuWuuh0hhMQU2u1lhdjM EwUWVS,} UEEQ} [ЋEЃ0ЋU؋@EЍE*UЉE8 E} } EEPEP1IQVuu DE؃U90PRuVx8EXuXuuu uV } u} 0} 0Ee[^_Ã} ЋEE$Uu{EPEPPPuRǃ  uXEEǀJZfvǂE싊PUEPPPQSuRSue uahP+=UЉEUEEU؃)uJRTRuPVǃ )uhuVd;EqEк"ARuuV҉ЋEE1EǀUWVS<} UDžDžDž} ЋЋЋ@ PdOv} } P|tPl} 0! u >1IQ67 Vc} 1(} JK} KP@h=hVb=WS69؉WVb[^)HPD:PWRà !PhPV ]S EPSj`D!tD vt1 D!thPuщFtt P#FLPF VXuD!uTPjEPj5D!ue[^_à h% P$e[^_à h뚃 PJk FHP҃Oh~hzhh<ą5UWVSEX HMb  )؋} 1UPPfDžT #8PSjVtDžLPLPEPE0u}t{PWu U2T"ǃtJuE@$6@ e[^_ËUB m"UB$e[^_S"UB$B 뼋U2Pj`jXSE @@DEEEE]E`EEjPVǃ,E@ _vUWVST} DžTPEPE0Nu}tNuPVWE0!t)DžEe[^_O!UB$B e[^_ËuvURj`jXP HXUHLDž`Dž\DžX`EEEEE`EUjRSxD)Džd(UVS D!Ks< `qK dqShqC SCD! u2     C jjC(uPV'XZSV'ZYC PV'4$EPCUSS] tlt'RSp<(PSR áD!u؋]Ív D!u1]Ív hЃ h1hjvḫh芀vUÍvUÉU1ÐUÐUVS D!ɋu]u#RSu V,áD!u2e[^Ð Vs RSu V,áD!tэv Ve[^ÐUVS]u 19sHr e[^ÍvVsD(ƒҸt܉SDsHe[1^ÍvUWVS D!ɋuurF8Pu@~"Svj 6tPCߋE )׉U8fN )~ D!u Ee[^_Ð V7  Vc 뀉~EGPPV VD+EURP6u}4$uPSvj 6tSC+ljEWVuTVDUQu6u`E)FU :D!uBFD%~N V E D!u1e[^_à V+ FD V 1UWVS =B] C(EhsPo E1uEUhsEP& C8tK(hsEP8K(Wj MQV38"nE8UEt= hm<+K(hsEPwCQEu21e[^_Ë<+h<-`Et܃Rh v h/뼉EtVh&vzK(mE{EhsPb8K(Pj EPV 8"!E8E%Vh:Q hN@BEQjVh^BF:PhVh !<+C<-;ERhwEtBt p{ EhsEPC18tK( hsEP 8tK( VCZYhsEPM8tK( VoC$hsEPC8tK(@hsEPCv8tK(hsEPljC IEtF?uihsEPƃEPjVh<tK(PhVhPwcrtPWPuEt h Uu ÐjPMUWVS,Mh;hǃvPWhVS#t/ttF#tЀ/uv#tÄۉu&뷍v R;%@u)#t$t FӁwԡJD4%@t׃ 1ZYP5wLPWhFVS We[^_ÃjPLUWVS,}ءK EPE=@1ۍvSh*j EP< hEPuEt518tv45GKu VoC8t+ ul<UЍe[^_ÃjPK7EuEUWVSJu h"EEEPEPEP}Wh5N u\UEu5JE]PEPEPWuSh5$SVt1҃Be[^_Ãte[^_ÃjP{J vUuII hDh4hh`jE Ht;u"@ÐjP J맃jPI΃j5IÍvUaÉUttÍv/U jE jEEPujEPEEt @HÐCv̀rÐ/v̀rÐv̀rÐv̀rÐUWVES1ۋu t%߉CtA9uu1ۋE[^_CU j juUcwÍvUWVS$EEEEEEEu }Ej`jC8PjCC=D!zhtm hěD!t hЛ 5ěJÃFM;%{E uE@Ep uҋE@EܿuܿNu E0芈ËE {vuMvD!uFhtm huD! hЛMe[^_鵀 hЛu럃 hЛ5ě}c E0貇U҉Et u8zu5{S5ěhpjDvUWVS}j iƃ1t\t1ۀ?u)Fwb$(vPWBt CuytFe[^_Ãhpj諂XV1e[^_ut Fƒ ՍvUWVS ]1taKt5 3vEUt>EPBwԋCw($L 3|ɋE@tBwvEe[^_ËMAtJuJuE@ EutuTEpNKB;E@ EutuEp^MA7vUSP]t/tTj.VTUtg @PEj.V.U tA @P ] j 荙Et}t}~} VEe[^_Ã}u jjLtPjjjS CjgV{W1I EɃHX됃 jEx}1E@U؆fBЃQPVj&E@UP! j臘E ǹEUB؆fBPЃPVj躼~AE@UP u6Xu-E uۉUE Pu1҅tu u‰ÐUUt~tÐJvUE HEPB:At É<uzuB %t.B %=uπyuA %=uAB뱀yuA %uU卅tDžtPxPu1҅xyt Ht#1҉ÍvuvfzЉÀzUVSu] tZt;SVWX1҅u e[^ÐhCPCPVXe[‰^hHjNhhZhjMhhYUVuS] tt,PjSVWe[^hj_hhYhDj`hhY빉UVSu] tJtaSV1҅u e[^ÐC PVWW1҅tC tBtQhjphhʲ)YhQjqhhʲY넋CE uKe[^CPVT1҅iCE ue[^SvUVSu] SVVt$t*HtOh hhhݲvXe[1^ÍvCPVwStCE ue[^\SCE ue[^(VhhhhݲXZh\hhhݲWAUVuS] tUtoSVRu 1e[^ÍvCPVUt{uڃ jhC PCPV:WhhhhkWhghhhMWpUVSu] CCt e[1^ÃSVRtCPVTt҃CPVQtC PVQtCE ue[^QvhhhhVVhhhhnV=UWVS }u Gt2HtGFt\wFu"GFGFe[^_Ð_ue[^_Ívw[$, u܋GFG F븐GFe[^_É_ txF^`vF^Hhth+hh ^Uhh*hh =U    hthhhThthhh TUWSpqt e[_à 5$=D!u1htm h$t*D!uIpqe[_à hЛ뽋 D!u ڍe[_à hЛ hЛpq륃 jXZS5$tw S뇐UWVSE HUB8Pu@Dž<Dž8Dž4H9AHvh W%@teUB%JD4%@t4MAHCAEvà R뾡JD4%@u%u0DžDDž@H:BzHwF$MA~^E9u)MZIH49AH Y Džtg<,Gt ,uGh#VYuUDBuuh#V1YthѦVYuD딋DBJ!܊딃 hX$vX2B9, PqT떐UWVS<{@uЫ1@ hVjjjjSj袣01҅hPSVY=fDž9};W虉D;9|Ƌ PPpDDž9DžWuH 9W0LD\ D D Ë9Љ;tR9XZe[^_Ívu S.o+A;s0G4;wFPSW;rЋ43(1ҍe[^_(;s (9Dž9}. 4^n9|҃ 9n1k1=Yr1 :` RUWVSuu }WLƃ1tGCt Vm؍e[^_ 8uG t܉щUWVS@] DžhSP]=j@R5Gj.W6)߉1ۈʋ}EхT1эA9.!T1۾؉уfDŽ).uRyMt  v8.t1fDŽ).R$tuR QRe[^_ÐljыI8.1TэA9.tu(1e[^_Ð<.tfDŽ).U2Q'r (vURvPhFWut 1UUt1Ð h1x1BBÍvUBÉU(t*~=t#BÍvuBÍvBUE1҅x)u6Pu u5@t‰És Pi뼉U1҅x)u6Ru u5|t‰É P?i뼉UBÉUu5pÐUVSuhhxStPSVhPPJHte[^Éhe[^ÐUSE]M UtEUM ] \J[EUM ] \J[UEE E EUSj ht( @@jPgt؋]ÃhTj66USP]SBK9tE C1҉Ћ]ÍvBCP3tԋKUVS]ۋU tYu]e[^}gt$S1u 4F^g9sw 3Jg]e[^9ge[^ÐUWVS Ex1ۃv0u 4莹tC9we[^1_Ëe[^_Ð3v̀rÐvv̀rÐUWVS, $CɋEu tVP!e[^_ÉEEqEEEEÊ>vEE;t%EPUREPS0];tEt܊t.Eu'}܍UREPWVm0u܊t EtމUE9Uԅu UE)‰UԊt VuVUԄUt؉E؃ useXujeE؍e[^_à Pr1EЉ4$e1ƃE>u뱊)‰U멐UWVS<} R臡%@t#7GwڡJD4%@u݉<-+EE}Eu10LME"EEEERPjjEȉU uujjEU8JUȋM̃EԉUMčC< wNv;M}Su؅x'E9EwrU9UwUE3U3E u};M~xEGC< vC<wN7;M|}M tU؅ҋEtGU EUe[^_ÐC<wWSEeUUEUċEЋUUЉEÉEEEMUUEGE0u;uBMM1*e[^_QG;uX뵃DQډ#_4MS )ʈѸU!9)uEtGU-UWVS*|=qEUHM1ۀx0u vCE<0t]u1qu!:UyE0e[^_Fqu:M+Et)}P"pU2+EX1F VgƃEu11҃;}v,O:Et qك ƒ;}wԋEM)ȍX YRā)ËE 89EuU܋E 9PEE P;U~`+]9EUҍsEMtMSu,wE @)߉E܃Et U B OHMUM EU܉Ee[^_ËMM10ۊE@ ,'Hj u~Ee[^P_ø+Ew EpPE}EE9p}QM 6G1Ƀ+w:-/qt@S8FqtFTCqutU~w)SutLsEU t'NE~CPu^tESuPu]܃FFquMQFqn0qucFw)QuہE)]܃EE(EVuE.MaF0aF0tTEOM ME9~ CPuoE PME@UMbU Ut} )ڃ9jusE܋E܋M ;Al u{M]hU H90MEM BST$L$ 18uBu[ÐUEPu umÐUWVSE uEVu1҅tN>;}wS1Ҹu9rEutm19sSuFU]9EsuU:t$Ue[^_ÉE1҃8te[^_à E 0CU U‹Ut{먅tVjdxÃE ۉtPVjSȝE h1`UWVS }19] svSuUt ]F9re[^_ÐU0u EEPUÍvUÉUSPM] t2rt1҉Ћ]ÐEEQPQR‰Ћ]ÃUARQ1҅tƋE뽐USRM] t2rt1҉Ћ]ÐEEQPQR‰Ћ]ÃUARQ1҅tƋE뽐USU ] t#rt1[ÉB] UH[B] U[USU ] t#rt1[ÉB] UH[B] U[USQM] t2rt1҉Ћ]ÐEEQPQR‰Ћ]ÃUARQ1҅tƋE뽐USSM] t2rt1҉Ћ]ÐEEQPQR‰Ћ]ÃUARQ1҅tƋE뽐USPM] t6rt1҉Ћ]ÐEEQPQR‰Ћ]ÍvUARQ1҅t‹EfUSPM] t6rt1҉Ћ]ÐEEQPQR‰Ћ]ÍvUARQ1҅t‹EfUSPM] t6rt1҉Ћ]ÐEEQPQR‰Ћ]ÍvUARQ1҅t‹EfUSPM] t6rt1҉Ћ]ÐEEQPQR‰Ћ]ÍvUARQ1҅t‹EfUS ] EEPu,1҅tEЋ]ÐUS ] EEPu\1҅tEЋ]ÐUSPM] t:rt1҉Ћ]Ð1;EEQPQR‰Ћ]ÉUARQ1҅t1}믍vU+vUWVS Uҋ]u t׃u"tUt#1Ƀve[^_É)ӐPCRVSP 1ɅtՅtϋC}E ]H ,QCRVSP1ɅttC}E ]He[^_UWVSE E]Uu}SV1҅tc9witsqE]E ue[^_ۺt3}u؃SjrUEu hq 1ҍve[^_Éte[^_Ãuً]t uuEe[^_EE EEPp3EEnq<1@fC냐UWVSj*Ã1tvCt~  ChX+tR sC1щ $N*CtBVPeCC ؍e[^_ÍvChpj 1e[^_à S*1UVSut> tWe[^ÐFuKF u6^ 3.؋[$)u V)e[1^à P)뼃 PUWVS u} ,v9vBx\u t3e[1^ËV ^t;t߃j:SF$tՃ jg(@VuWF؍e[^Ív3Fuhpj  v[@uFu빉B먐USP.`uY\u5D!1ۅuahtm h\à D!u,ۺ`u 5\t;ډЋ]Ð hX/‰ hX\u넃 jG'XZS5\+tt S;'`둉뇍vUSj &Ã1t&dLtCPC؋]Ãh;h=du L S&1]ÐUWVS }t=t= toe[^_GGLH~ LW<&1e[^_É5PLHPT" s%Z3%$%tC@vtσ P% W%X5dc1d\USQ]t 3~%Cu]]h%]Ív PW%]]H%UWVS Ɖ* 1D1ERPhVoUPRhjzEK ut} u)CPEPhj#EC-E}t+bt~v~KC뙐KˉPEPhjC UPRhjCtd}PWhjoCtDPWhjREt'KuujCC1ɍve[^_øĹ ut-͹u8¹uCCCuo j #CCuj,uESC4C@C^_Ps"Cuu1Be[^_à P"냐UWVS } d?GGPG1=H h-"Ã1V5dhSn9;#tރ j !E jD!Ep@F|@ PuYETPGT@e[^_Ív1e[^_ÍvG @G@뿡TUPT@T뚃 S7!H릃 S"!뛃 S![u!뇃 S!4$U*w $DvløDø`øø}øÉUPuhs58W17ÍvUWVSEo*E"E8uXPt4Ɛ^u3rvu1=Hh;h6E hEPuhu 7t>8#thP[1}щ؍Q)9t@u um uyEe[^_à VK1e[^_ÉPRuViu jDEt@‹E@Euz58Wj%jh|_58Wjjhչh_ 58Wj'jhQ_58Wjjh=_ 58Wj)jhܺ&_58Wjjh_ 58Wj&jh^$ s h"ƃ1 jD EPjDSuxY_3VY_ZUjVvY^s pVY_MZA jVXY^spVnY_ZUBjV:ZYspVPYMAA$tUBtMA1uE%jVZYpC4VXMQG9yw* uv  2 uEdUS]x*E]EPEPDH1@t$Ћ]Ð hЋ]Ð}8uЋU}UWVSQ]ۋ} t\EwvUC҉t 9tAust?vCtA9uu1ۋEZ[^_CE1uEZ[^1_ÍvUhhu u]ÐUWVSL] }0R@u|0e[^_Wj j PhWPS2 u> uZYPPWh1 |0e[^_ShhWF j hPF떐UWVS ։J|Q@u8|e[^_É u9PVh WI1 |e[^_ÍvUQQUPÐU=QUPÐUVSÉvQ|u?Q[^ÉWQ[D0^ÍvUWVS UEBty1ۃtME [^_ÉF9Au4AuA uAuAtxA}tcvCvP9X ~Gu009tC1ېP9X ~u009tCۍvAt;FuEE [^_ÉUWVSuUfB O~q hPVuu1 xYƍF;EwO V34$Ã3;] u;EuuRu1e[^_Íe[^_ÐUWVSu UfB;u w E ;Eve[^_ÍvUBUfB19tpe[^_Ív hPVu u0 xƍF;E w V24$2ZuuPSR t2OMUBS,1%UQNxBCNY0[x6N+N@N@N@ ÍvUWVSE:N@ } h !N@h55hh^0KhVh[0Vh<zhm`h^0a8WIW5h^0h hZ0A UWVShSRjF- 1эA;M Qu SuG2^VNvhhP5xZ=sSxM4F;E w-]RQRCP``%ED1ҍe[^_Íe[^_ÐA%t$` AtAHDRS"+'1IЍe[^_ËE1e[^_ÐuEu 1u׋UԉPjR]SZڃېPjR]SoZڃ UvUWVSu1[^_ÅCu؀8u؉CCUVSƋBCB RڅtۉuۋBF אe[^ÐUWVS\EEH1}:_<]w,EЍ_;uEE]sGG,t@x\FEE;us,t&]!Ћ]:u'uFEEE;urՐE9E~ ]}ĉ]?uEă\[^_ÉEyEx딋Eč}EEEEFE0vUWVSPu~] t{NE;9t3{t-uuxttfvttt2tA@9B@~&_[^_Ð{:_[^_ÐuxE9E|؅x ;E|ʊ8u9}_[^_Ív9{tЋB@9A@xBD9GD ,AD9BD AD9BDhZBD9GDIUPtEHt\PuP uPuxt t?ÉHtX tt@t޺tٺP Ð@ %=t=@%뵺x0W/ÐUWVS<] u}t UPRVjtpEPVHuyt<uE؉E1}ffEuMQe[^_Ð8u]S֋EPWډm+dɉ{WzrDž71;1C$;;+Q9u$+8+8@ 1Ƀ!v ": u A99p\ A{42uuWt01E uڋNt5Bt`t[e[^_ËE1e[^_ËMe[^0_ËU1؅DžytvuKz) S8ɋً1DžEEE)E&jj Wjj]SBF L -jjWPjSF  H;wL jPIRjHW@PKCHGH;v Dž9c1Qh8P$KCǃ9Ѓ9FF?ƃƃ-qDž@9ȉ}:vD8D~"44T5DD5TC9|ɋ9fDž:RjjP:P8P8R8WPSgKd1DžC1҃9 |O0  qu:uru zƃƃBBB Mhth*Dž9}7SF9|Ճ 1tO{tG jf @@@ @ug Sa1ۃe[^_-V'ٍvECe[^_ú먃 W봍vUWVS|EDžDžDžlDž‹‹@E (@u 1} EEЉUh ɻЉ1K hj jR %=y _ڍe[^_Ív; cvfэf0G v8fэf(fҍf0GfЍf(эA0G.KGNx0WOvURj P򋅌 _UЉEԋE؉DžE`Ue[^_;}3 ȃG.GG.KGNuՃ23:#B% /j#@#UWVSEPu] T11҅x7UtB txt+u1ۃ uZF;8ڍe[^_@9uͅtPjrSŐUWVSE}uE W\WVj]u$E9FuU tu v +uɋtLJLJe[^_à W\LJLJe[^_ÍvUSQZ1҅t@PSu u"1҅uډЋ]UWVS }]g@u @z@ hVjjjSu uj 0g@ @~uuWSV%Gu fGfub)@G e[^_Ív@uu ڍe[^_ÉSu uh vuhVSi Ã.fGRPGPhG h۾軣vE! @ +@u:3 h.봐UWVS<u] @u @ @ux1҈щ߹ыLSVhQz uuuu=e[^_Ð uutEPVh$) j1эY.˃x<.t6뉸zuQSVQ+Ƅ މމu[H@EH CPd ʈd~@u@ Mv}t*} t} CEt< t< u}e[^_Ã0d_ZPhQE럃 CP 0@ Y^0hd3 C P~~@@ }_ZphȿPQuSh(MT=@t hտ莒 pVuuhL?HH@EsH E]HEGHE1UWVSDžtDžpDžlDžhg=`C@@@ @@$Hc@ofx@{@@f@5@x@ ddǀ`0Lh;h޿|{W|hQp<;t<#tϿu< d< \u< <  u< < u< |< t^< t< qVW|hQVtddh ʃ d|x`lnhJHH1ҍe[^_Ãt< T< T ۋT= $ R%@ F ЁwѡJD4ҍh Th\TTT t tT K;BTd# V%@uMTTt;Vhhju#;txwJD4%@tTۍxWdhhxhh9jTxBTd R%@u8TTt&;t!xӁwšJD4%@tȃTۉxPd<hl\DŽhhhl$Ah\p:< T< T ShTQC`$3ƀ_'`hPJ TtDžlp< Ti< aTm dPhTP`$Gƀ_`j Pg Ttc`TUTPDpHDžx)< tPxtTDžxTT:`\9 T< uTDžx뺃 h GFT@@@{fx@kfC@pV1F?`CDCHthS)5Gj.SwfT+@PV`$t hGETBRhPP`$Nƀ_Džp`TuTPDpHDžx4 tdxtTDžxDžlTT:R\9 T  uTDžxXىptx vTT t t vTT t tvTT t tfwPPdjSHt xTh "\DŽBBB Bz8TxBTd R%@TT;ӁwJD4#hhvlTt- t( t# TTt < t< t< u⋅T=xۋT&x /t(xdFJx d]yIhDŽh3hDŽl\$Ahى1׹j5h}Pj SDžDžAPPSTA u~xuwxB[tVqqRxMtTQppRt P)hhShlTt$ t TTt< t< u担TDžl7PVdjHdtT1tShjRlvU-wtÐU j juUVS] S軶t*Cst P蟶 S蓶u؉e[^ÐUPtEHt\PuP uPuxt t?ÉHtX tt@t޺tٺP Ð@ %=t=@%뵺x /ÐUWVS\EEH1}:_<]w,EЍ_;uEE]sGG,t@x\FEE;us,t&]!Ћ]:u'uFEEE;urՐE9E~ ]}ĉ]?uEă\[^_ÉEyEx딋Eč}EEEEFE0vUVSƋBCB R耴څtۉuۋBF אe[^ÐUWVSPu~] t{NE;.9t3{t-uuxttfvtt$t2tA@9B@~&Y[^_Ð{:Y[^_Ð} 9E|ԅx ;E|ƋP@@8Bu9vY[^_Ív9gtЋB@9A@hBD9GD AD9BDAD9BDhZBD9GDIU1ɉt 9t u1ÍvUSQu 1҉Ћ]Ív u蝘CuUWVS8hmUԉEI:tEQPRjHUԋB PkÃ1t_C MԉCRqjP MԋASACSCB}St!EP VpuR ؍e[^_ÐQ WEqPߍvEԃ8_~UMЉ%=9=.&EUEUWVS 1҉t St te[^_ËShE>ui} twІЋuuC1e[^_Ív z e[^_EAPj EPV~$uUt :VLE3 뗋CfP1kCt Nt1҃RV)ƒҸ RvUjÐUWVS<ƋE EU1҅t e[^_ÐF1҅t8t+PEPW3HUE e[^1҉_ÃEPWHuًF;t EPډE jUUtЅv@ujvF;tu[ EPډ-EtA jUIu+uGUЅ @uEu P Uuxtă Uu]륉UWVS1}DžpDžhMUȅɉtEEEEEEEEEMAyqY]QuFt9t/DžpvE}pe[^_}u]tyutrDžlx_UllxG9u鋽lGt܋Ot9u9t͍vDžp e P^vM% ==YUt tuB}uMuEU E4p}u}u=DžlllE}u󥋝ltϋU9t Ct…ul]N9tFtvluO9tGttuuEulBtEulAtEU9U Et/1҅ppttCvt@u= YUPMEU ҰtEEEtS]Pjjjg P[  jjjE P9 ]=Džlll9}u󥋽l9Eu΋]G9tGttuluQ9tAttuutEulCtEU EtDžn1҅tp=tB,t@u"}DžpEu pDžp]t]u0hu&DžPË[PuPu1jDžhDžp@PjjSt/DžpE:1҅@9j%uP u`+E`8PuVCu E\dtX{t[틍\{9WG<Pj P\5Ɖ89G[WttCPjjuEh PU E1҅E1҅wE  pEC jU yE1҉$}PWuh<hqhhPw H#1҉PuVu UEƒ `dP) 4V豤XQljjj|VjjXSDžDžXDž\Dž`)Džd&  |jjVPjS |GH9ȉLwL jPգXRjHV@PkHCFH;Lv W袣DžTP9T]X@%[PT@9T@C@Cs@8󥋵@Fdž<t eQhjWDž@DžDDžT HPW(8P$ D@<5RHPPHxPxP@W@x@3HDžHFn1҃@<u Wp W{ XjEu PTy1҃8Eu PB%1 \Xo p[hhPXfMȋP~5P1҉TXœTu X"tE@ jU Q[uB} `譟R@9sD2@AuH9r닕HH;D|@@뢋@APh jRDžlo0DžDžDž< HPPa QhIi W@UWVS$}ȉ1Eȃ} Džt ~} t1e[^_É} ufBxfB fH +PSd S 蹶:} \6} ,} xxDžtDžp;r;pxx; p +PS| x յt S#$| $N: uC1сЋMttdt }  UEE|} t7} t1} t(U 9|tE|?|-} uƒ|t|u̓|t | ||tu*1}u󥃽|tE` SEBput@upt UuhuDž\Džd/dvudd PřlluDž`5Nh1(lh#B9htGd9rŋ`l4ȉ|\u~ 9|~\`vx\d9\}J\Ox-l4F 9F~^FV VN^ Oy\d9\Dž`du9`#`lʉFAƋd`9|F lt |%ZYPu $$ j$Puhj%z hPS趰  R 1򮍅+9ȉuVPQGh`j%y FZUWVSl EDž@}1Eȉh;hxPh R8#tփhP{thV{tGDžtt< l< d\hWV{tGS|th룃 P覢!h;hoUEe[^@_}󫋕BEEEEPEPh VuBGB G tڃ t vG| PhUEDže[^@_Ë҉B@uUWVSlӉE}1UEUj u=Et@Ehu>y@t?Rt8 t( t#UhPyt@tuE}PEPjuE*ukEu Lvt"t uEvuދEtU҉BEt @uEtEEEEuEe[^_ÉE$MuUWVSxEPJ1tvE@E}ȉUȉUUBtXtSEPUR1IQSh}u UEe[^_ÃEPUR1IQShu距 yu}UEEtE䐅Et@u uˑ0vEUetEp u螑77UWVS(EEEhBE~gFEF^ E܋FE3@ hujjjSuujj0@ @uuSuy;E؉~eWWxufGuKvЃE@uA67 ulEe[^_ÉW뢍vE^6ÉfGRPGPho6SuuhWvuhuSÃ@u ȕe[^_à h۾"\΃}tN]tZ#}ujU@+vUWVS<ƍӉ@tۉWtzPVh6ts1҈щ߹ыLwo SVhhQ Ue[^_ø|1эYwt |1.Yt0QSVQƄ끍vUWVSE0@p1}]߱}Eȉlh讍n h蔍tGpBtr~+3 WyXtme[^_ÅuڋtuEE}E]uEEMEuEE}EDžTDžPDžLDžHDžD@u 2@1ۄ҉tv.@u9Dž\v x.PhxPVUBEhPUpuut lA WXtUkEe[^_Ív@C;vDžXd9v[\uQ\ru4uX$FXT EP1҉\~8=H WXtߊe[^_Dž\WPUpuut0rlɉAlW@uKeuEE/HTP#xeDž@PD`@DBDžDA<.LLt=Ht3``@uL빃 MQ`. 8="(Ht@)@%@cGuDHkL] EP1҉h=wTr蛿@ PGAz WK:\%25@ @5GXDžHFUEE jjE PujEP 1@t8 t ?v ̀rÐUWVS@jjj4ltGPju]S; Sh i V@t VU؍e[^_à V EP1҅xՋ]1ts t~t'u ut*e[^_Ívus*u~ɐUWVSUEuU P uV< uk6ut;^t΃3utt3uu㐋M tu v cuEt!Uǂǂe[^_à P] Uǂǂe[^_ÐUSP1҅t@PSu u1҅uډЋ]UWVS|uEEEEEfEEEEEEE}ȃjjVjjW@  u覄jjVPjW Uč9؉vǍ9wvEEEHE+EU4 EP&E{MMMMM1}Uč9؋ufEEǍ9uG TufEGtfW fUEUO`MuPMGAUBQPWhRuMAUADEMEA G`PuuG`EEeUMJVjPGPQEPEP@ƉUU W8 5E}( SԂjjVjjW+ e[^_G fEGfG O`EfEMG`MLMMEPAMLM S,;uyMU 1e[^_f}~fEf9G f}eGEWOE1MEM F;#EtMEt EEEf}~fMf9O @f}eG[UBMABAGAEEEWU1 FЉ#EtMEt EEE뼋E S輀1 S謀E u蓀1yE.MMM1M F#EtEEt EtEEMM뷄uMMEEU1U FlOM#EtUEt EtT tnUU봃uMUJPuuQ<EEҋMIA΋UĉEEFEMARuuPUU뒋EMAU:uQujPMMgRuuuvNUUSRËu ~ǃ]É P ~ǃ]ÐUSP]tC][[~Y[Uhh$s@ÐUSP`t Ћ]ÉhhD:u @u 1҉Ћ]à 5$uhjӲ1҅tP5$t S}1룍vUWVS ۉ }XZEPEPPPh  dž uuh[hP[u(}e[^_ÐEPEPPPSh uS|tdže[^1҉_Ð P1҅e[^_ÉUSP] u&h;h(E ]Ð PE ]ÉUSP])ǃǃǃX[ÍvUWVS<u GqQ6hú<+% j bu P誊t h!hPjdždžPP1IQPh 蒆  h[hz%Ê<#hS_t}hS_lC< t< th(Ss_APj PS˳G9: =UBFz BhW_tuGtoti< t-< t)9v;hW^t;G‰h;ht^1ҍe[^_Ë% Ph+hR dždžu PWP1IQRh1 tP|WP1IQRh Ӄ 5 h[h,<+WUqtPu.UQt PaÍvUSP21҅t@PSq1҅uډЋ]ÐUWVS(hU WuEPR]ƃ 1x)u;D!u"CHCx6.Ee[^_ÍvSj.iSWV;C}ŃSj.eUuhu uGÐUWVSu]SEuEPu :ƃ 1x#щJu1;M} f.Ee[^_À|.uvUVShVhu uuà 1tuV~؍e[^ÐUWVS ]Sҋu }t vsV\t Sute[^_Åte[^_ÍvUUtnw(tbwdؿtV.t7wQt(vkvtQRhh@}@É tw\Ή tv'@tȸ@룸떸%뉸/|>@ovUWVS } uWjjhE"tit$^t S PhHWu܋D!uGHGx. e[^_É} E e[^_!뎉} E e[^_釢vUSPUM ]9 t2 BuPQh}Phhth]ÅtB]U juhÐU} `tRjuPnU juh`WÐUWVS< ։C`!U5`t EG hI lI!1ۍPSVW/u|u M P$ PBPu;PhUu C PSVW)/t8_0X Phsu ˈe[^_ÃhPjjRW, u PWYXu j C^ߨaV/ Phu :buW蒨aED!uHU BHBxOU  Z0W Phu Çe[^_Ãu j Rj 蓟vUWVS\u@u L@)EWPu u,hIE‹ lI!UUE#I IEUEUʉEU}~` W4HE4 IhV؆ H`D!FHF;`taVjjhsfU#`I dI#pI tI#xI |I#I I #I I##I I:#I IQ#I Ih`tatzuPujY PhVfuPuj< PhVI uPuj PhV)uWuj PhV |` D!$FHF V1jEXZVj E_XVj@EY[VhEUu;Eu4Eu-Eu&D!kFHFo ve[^_诤a2M%菤akD!HVj;J[`  D!Vj p[0S PhV葃e[^_ÐVjjh}fU#pI tI#VjjhMfU#xI |I VjjhfU#I IVjjhfU#I IVjjh转fU#I IVjjh荬fU#I IVjjh]fU#I IVjjh-;FrVj;fVj  Vj Vj ̙U u hu&U5tFF뮉)9܍vUWVS u9Ér )e[^_hhhhl )e[^_UWVSM uMM} uQM1RPu Et?uct |.tCU;wX.CuM9v?@@UE u؉e[^_Ë<u듉߽MEUe[^_ÍvUWVS } 9Ӌur%RSP6Ѷ؉<$1e[^_}UWVSÉEE E׋UUu u9s3D39u uIxn+Ee[^_ÐPhtu ux)u ux CNs苼UEE Ue[^_UWVS u} E]ۉEuBB9v;)ʍBvVW`x8Ky1e[^_ÃVW4xָ͋EEUWVS|:E(M$M U01tuP*AU,E$M4E0QPDž#Pu4u0u!DžM4 QU0& uGPu Ph+xPۈU4RM0Q‰ƍx DžU4PRM0QW35Džd}#}$tU4RM0Q‹EDž&E,t },?U|2.t0M4Q}0W;WDžFPE4PU0Rj~ǃDžQPh,xR谇XZM4Q}0WxDžfE ;D)ƒfDžx ƅzz~ Dž1;|#] P3Ph6WFǃ;|ރx}4)WE0Pډ<z1fDžx; ƅz+v@ R˓%t'3F;}#] 3G€t.ءJD4xU4R)ǍM0QxwE E ;}0)lje[^_ÃWM0QjCx VWU0RjC0{Dže[^_ÃE4PU0REE<0]}4WE0Pu,] SU EDžAWM0QDžWE0Pu,SU EDžWM0Q<=DžU )Ѓ @E U4RM0Q=DžttE YU4E M0RQDžo E PhxQXZ}4E0WPxDžWM0Qu,E PU EDžbnxQSu u$X1߹ZE4PQM0Q뭃}$ u xnËE PU PpU xE $enE $VSL PhPxQƃE4PU0Rx!Dž u99 u mE $c PhxQ~_ƍ}4XWE0PxDž4 u mE $ PhxR$Y[W}0Wx\Dž u ,m E PhxPׁXZU4RWx Dž}4WE0Pu,E PU EDžahRU )PRDž w19}n1эE4PQM0QZ3)ڃ0~0}4WM0Q)09|}4WE0P=}$ u kU JM JZM JU $SPh\xRhM4Q}0WxDžhXPU )PRHDž 19}n1}4WE0PэQ)ڃ0~0M4QX}0W09|SE4PU0Ri}$u4u0u jv}01э}4A<$}$Xu4u0u jpv}01эU4A$U0 U BE BPhlxQ~_ƍ}4XWE0PxDžE @E 1Dž; @E yvu/U4RM0QswDž QWhwxP*~XZU4RM0Qx]6GwE \}$ u i E PhxW}[XE4PU0RDžuM4Q}0Wu,] SU EDžFE4PWDžM4QWu,SyM4Q}0WeU4RM0Qu,E PU EeDž] )߉1G9] )tȃ W PhHxPn|[ƍU4XRM0Qxyy}$w u pgƋE E $]gËE E $JgE $SVhyS{}4WE0P }$ u gËE E $fE PSh|8S{}4WƍE0PDžXE M0WQDž-{E WE0PuDžE M0WQDžE WE0PDžE M0WQ6DžmE E0WP}$u4u0u jq}01эU4A$U0J}4WE0Pu,] SU EpDžWM0Q,DžWE0Pu,SE ;}4WU0R0E ;E r뵃xSu )W}0Wf] r RsdE ^XWE0PSDžQShxRxXZW}0WxDžPE4PWj@DžoM4Q}0W Dž@ u cE ^XE4PWDžQu4u0SDž M4Q }4 WE0PjuDžU4RM0Q Džu u bE XZ}4WE0PDž6Pu4u0SDž WU0> W}0WjDžE4PU0R)Dž u bE ^_M4Q}0WúDžmQu4u0SDžI E4Pq U4RWjDž}4WE0P \Dž u @aE XZWM0Q DžPu4u0S6Dž WU0[XWU0RiDžHQW}0WjDžE4PU0R mxU4RW8QDžDžG3}4E0WPj W}0W8DžqDž7UuuuuU  PPP:Mu;PA)PRaÐUWVS u É׉E~BWS]xAUҍXtP9w-H 9w&@R ЍN9w +Ee[^_蹥(e[^_ÉUWVS]E ؋}Ej0j^WwEK9GwvfC fGˍI;Mw[fC fG 1;Mw@QfA fDw FˍI~1vfDw fu.DF~;]t<(e[^_ÍvPVUx׉\G$G(G,e[^1_UWVS } u];~$tD~$F(F,zD~ 9mF(9~DF,F(1ك)VQWCF, F,^(huPv6@[ V,B;FV,<fR ‹EfV,BJ;FN,RfA ЋUfV,JN,B;FAR A A ‹EV,BJ;FN,BfQ ‹Mf V,V,E  ;FwkEN,F(1҉e[^_Éߢe[^_É^(ZMǁfǁ ǁF(1멐蓢(벐UWVSl11} MEAUAEEUȈÃEЈNJUE ÊE? Am ?nF>F>UF>F}  EEڊUEȈUوE؋E 1EEE vDAB;U rM؈UوÃȈNJEڃ Ӏ?FE=F;us }7l[^_ÊUȈU؊EUEوUOt=뽊EȈE؊UEUوE2tUȈU؊UEUںE멐UWVS u1EvFӁ R${%@uЃ=cSh StM t}9}#(ȋ] };E1Fgv=uEe[^_ÍvJD4Q} [MA;M-] };л(U D:M] <MA;Msr-]} л(UDME tE9Es*й(] };dFt v t(Ӂvs Ry%@tFu؃=FtVӁv* RAy%@uظǡJD4סJD4뎋]KU fU M< P]KqUSPEM U]tRQPShD58WR Tq RQSh|@U w BÍvBUWVS }EG}.+/€JD4%tӁ R=J1ƊGЁvq RD=wzJtpڋu E ؈EvGt E9EEe[^_à R?w3vJ4덡J451UWVSQUҋ}] Utr~19}DB H0CB ,0Fu 9}.Bv9|EZ[^_É7ҍv7붺U널UWVS }EEE1GtqÀ< S/v%wKJtAtCEvGuU~EuvE Ue[^1_ÉMvM Su%tv< S;ÃCw|$JD4BJD4봐J4č)ƍv4v4v4u1EE e[^_UWVSLRPhCEPu }gÍ@;wEP7s)1ҍe[^_ÍvUWVS,E <1҉EE񹉈EUv)ƻ1󸫪U1ع%I$EЉ)UE1EE;gEu|E܅teK~RutHÀu8 Ss%tvo SaFuU +Ue[^_Åu}uuEPE PSEdxCaJD4끐J4됃EPE PWEvEPE PDCECEPE PHECvEPE PMClUVSMJɍD x,D ҋst99H}pJu[^É9H}pJ@)[^ÐUWVS uu 1tmUB8HtiUBxp9u}s2vRSE0WǏU$蚐)ރuGEX9rPVU2W蘏E)p0Ee[^_Ð@UBy1B)uE1u e[^_ÐUVSD!uu'Vuu u$áD!u6e[^Ð VVuu uáD!t͍v Ve[^ÐUVSD!uu^u'e[^É VD!^t܍v V迅e[^ÐUVSD!uu^ u)e[^à V軄^ D!tؐ V_e[^ÐUWS U1эAE܉UEEM D!E؅ɉEEuFP@h)Ѓ )ÉlDžpk8DžthjPV@w4$ h [we[^_ 5IPj@PL(YXSRG3GDjjh^q{d PhOD4@ D%n+dH (j$*Hx)ЉH+H|DžDžPjxPjvKSj%3XZSj%G}3 Dw"UE Pu uÐUWVS D!}u ]u9 ST5D!u e[^_ÍvE e[^_u h Su뵉UD!uQ 5I}D!I$,uÍv h #uÉ h t띉UVSD!uuIt5Iu#e[^É h tD!ʐ h te[^ÐUÐUu ukÐUÍvUhz1UhzÐUzÉUM tvÉUhz1Uhz1Uhzt1UEz`|vb̀rÐw|vàrÐUWVS u F]Et01эyCt :EuPWVSuKe[^_Íe[^1_ÐUWVSQ]CU t/ MzvU҉tsv9tAuCuZ[^1_Z[^_UWVSLu1ۅ~E;Mɍ]E ̍v1lKUEEuۋMxgK K:Ruhu E uSu Fe[^_PuU4 u E;Er؍e"[^_K-SU hh@uu @Ézɸ@ÐUWVS1}Sƃ1t PSuVse[^_UWVS Ju} E3v PCEG=v: PyC9Eu8Ftp=wċU싄4EG=wƋU싄49EtӁw R C)Ã؍e[^_Ée[^1_à RBWw¡J4)ÉUWVS uE J}EU9 PBEUB=UvC PsB9EuIGt:Nt7=wU苄4EUB=UwU苄4뽐1e[^_=w*U苜4UB=v" PA)Ãă PAÃЋU苄4)É뤐UWVS ]ۋ} t*E48VuUt~E<Ku׍e[^1_Íe[^_ÐSD$L$ T$@AJt}tm8ui@AJtnt^8uZ@AJt_tO8uK@AJtPt@8u<@AJtAt18u-@AJt2t"8u@AJt#t8u@AJtt8t )[1[SD$L$ 8t@u1[ÐUS1 A ƒ~[áhUIISII~"vCSIIud1Ƀ)v8P@AI9[ÐUWVS#É`tC_<:df؉֙t/vUt3t[MIMEE [^_EUu͋uV)ȉEMIMEE [^_ÉME@ O1ɃE~5EE4v)AE9݋E љ}zKQ։)ƍˍ  )ÍL gfff)ȅۍ…6)@֙MA)Ep~$EEUS9}A9Ή)EMIMEE [^_ÍvMuV)ȍMM ;ESP 0F UWVSMɉÉUEE1IˁMEU/t U;EE@@EU؉LǂPǂT}G}UҋEtsUD}G =w)Pu]LuSx6]}Cu1ҍe[^_E1VuuSB6};ωUB 뒋E4+EEv;tU'ú덉؉]+}É}iE-Eut'::<,M<;E#EX11ɃUPpA91Ƀ}9PuA91Ƀ~~UP}9\u E)DLP؅uA9<,<;Uú>vEU؉LǂPǂTE؉`ǂd}G}hBCUȉúC<,U8E@@EU؉LǂP}G}TE؉։Ӊ`ǂdǂhEEvuEPUEuURNjUE9~sC>C1Eu&dEיufEיu)EE}hJv>C닋LUSSøu]à jڸG]ÍvU x!1` Cu É`UD!u%D!uÐ hD_É hD^ɉUWS hJҎ ~Sh X1I1 ;ug`dhhhAAe[_ve[_Ð`tڀ;:t j`t`1뱍ve[_YSh @6UD!u%D!uÐ hD]É hDO]ɉUWVS$M UMU 11IWʐ;LL*Iy躀Q؉љEE)yOvQEQй]Cй<CEљ]SEUxA1Eu)dEәfEә;EmEәM}+UKҍ…ۉM܍<"QUԉEЋE))ƋE)؋]KDžۉQUԉEЋE))ƋE)؍)NjU)}UM€QM€Qx;EE-lUB ]ȋMZA9v]C @)MC]9~EUM@B B J$$[^_ÐutpBC71tfp;HɿD@9LH@9PxIGkD@9LtWvp딍vUVSE dɋuEto9pg~9pB97vV`h`LLESV CIF(e[^Ð1҅t hB9}tB9|1늉UVSD!uts hHrYJxz hHYX5JX hD3Yj SjV$DFYe[^ÐCPh@jV@e[^Ðhtm hJbXi hHX1ʉ j,&Ã1tS5JZPUSS D!ɋ] u&RSjuD!u9؋]É hDKXRSjuD!tʍv hDKX؃]ÐUVSEED!u ]uG$tZ D!upSh@EXZtC(Ie[^C(e[^É h@W$uv@$ D!t h@W{vUVSD!ҋutN hL9WJxQ hLPWX5JVt[PSjVe[^Ph@jV@e[^Éhtm hJRVy hLV1͉ j,Ã1tS5JWyUS] Sju_؋]U h@u uB@ÍvUuEj U@u EPuP ÐUS 191[ÉUWVSSE ɉ׋]xșƉ)EY[^_볍v҉Й։)EY[^_뎉U@+Bu'A+BuA +B uA+BuA+Bu+vÉUWVS|ExtU Ep }|u]j<^jEĉYUj EZlEMą%]̋}ȁnO~F1u(dי4fי!)MĺE+%Mān~']̋}EEMċ]̋}Dž4u%ؙdu ؙfu Dž44449~E)EčG vEȉDž4t4449EICE̅8U;Džhvl=XhEEPEPtURxUEH;K)Efљu DžDD MąɉME]u[}ȋũ~FDžDudљu뉍v)MĺEe[^_jUSjEP]}xUtЋ]Ð5v̀rÐ5v̀rÐ5v!̀rÐUSMt]U vBCtIuE[ÐCIuE[ÐUWVu} S]tItBCuutBu[)^B_ÐUWVSEP]u ىt 9tJAu)ډӉ)u1эD[^_Ð>tvtJAG?u)[^_ÐUWVS u R%@t#>FwڡJD4%@u݉<-U+EJ}}Mu10DEE1"Ewl1ҸuщEC< w4v;E}9Uxw;}wrtlE}NJFC< vύC<w`7;E|ǃ}3M tUҋEtFU e[^_Ív9~EF딉C<wW[0 FwڡJD4%@u݉<-Y+EN}}Mu10DEE1"Ewp}-1uщEC< w2;E}9Uxw;}wrtlE}NJFC< vύC<w`7;E|ǃ}&M tUҋEtFU e[^_Ív9~EF딉C<wW[0 FZv 4$. D!u2 V}e[^_v F P8뙍v ^ ST$  V蜵}e[^_nv̀rÐUWVS UEEMEtF}E9v1+uWVU ~]vFAKu+};}wϋEEMue[^_UWVS\}e] 1EEh] ] CP谴EȋMȃɸnUE} EĉUuuU Mȃuȉʃ3E EEȉEEE9Mĉ΋EȃU9ЉM̉uEEEu+EEċM9uMEЉEtEEE+EEĉE̋E9Es U9jU9UlMM܋ũ9MrM̋U uM9u_Eȋ}ĉEċE EE}ȃU9M9M uF1e[^_ËU܊BU܈MG9sU܊BU܈MG9rlM9M]U9Uv+m]SuU;EV]؋M9Mw׋u؋UE9UԉE=]vU9UrM܋mMuu9uE9EuuUlUM̉Uԋu܉MEEu4u;u\VuU;EFE}uEEESuU;EeU;]rڋ]+]9ދEU9ЉEvE)1uESuU;E]؋E9ErEEu9uUt3UMЃ9ʉUrM̋U u9uMuFuEG9ZuFuEG9rBM܋EЋuMԉEEE PE )EuEuE2XEZ+EċUȍDuĉEMPMVUUE9UċEȍHME;]EU+EEȃEE~E FAJu+uU9GM벍vUBUG9rM܊AM܈GMIM܊AM܈GMu3SuU;E]UPWU;Eu }E;}rփ}"};}s`W+]SU;Et;U+EEȃEE~ًUFAJu+M9r};}rE~+MUFAJu+M9r;}U+EEȉE1};uEFM$vM މMEtNM܋9MrumuumuuvU܊BU܈G9rMAMGMMAMGMukEW+EPUUE Eu uPVuQREăEC;D$T$@BtX8 uT@BtL8 uH@Bt@8 u<@Bt48 u0@Bt(8 u$@Bt8 u@Bt8 u @Bt8 t)ÐUVS juެÃ۸tLD!u^V$JABKFC FCV$tXV$F$CD!u Ce[^Ð F P,v F P둍vUVSuF$U  9St ue[^ÅtF9Ct\C jRP6C C FFKu:C]e[^v VotԋC9F|ʋC ;FuCBUVSuF$tv ؋P諫uF$e[^UWVS M9} ]uUt [^_vyt(t >1t:AwZ$t >t`f1 [^_c5 ,     UWVS u~V9|YFu1FFtNN uffAft]؋F)@9PFtyuFuȍe[^_ÉuFuFPvv 6yljF~V됍e[^1_ÉUVSD!ҋut* ^ S.4$2$Le[^à Ve[^ÐUWVS ] E 5D!tu C PE$tH} ur uYg UۉuOE1e[^_É S[tH}  tt U E  v̀rÐ v̀rÐUWVS ҋ}EPu sƃ1tfPjjW 0Ã1xPڃt E9ue]1t/fr Eu/fzRB$XB,lB(B Ѝe[^_ÉủfB W 1ȐvỳrÐvÌrÐUuu jujhÐUVSD!ҋ]u&CHCx30@D!u:e[^Ð SCHCyΐ SơD!tǐ Se[^ÐUVSUBrtC~wt\[1^Ívau<+u11ۊ<+tC=C<CCCBCAC@1҉DGDDDFDEDEDFDDDGSVSVB~jjjW!Ѓ@tWRhVWetB1=t NF<8t jjsP8S" t˸e[^_Íe[^1_kO`,ϐUWVS4jP31u-t1ۃ~8u=C9t P\ Vl1e[^_Ív PKC9믃 0H 4H@uσ 1L8@8,48eUWVSjpÉtMKjPjEt11K} B9|1e[^_0Y0܍vUWVS<} HuhjÃ1ǃDžt -8Džt:PuWV#E@WjjW#Et MAu(J PhSH$'&C%C$CC #C"C!C CCCC C C C C C CCCCCCCCCCCCC CC C CC C C CCC C C!C"C#C$C$C%C&C'C(C(C)C*C+C,C,C-C.C/C0C0C1C2C3C4C4C5C6C7C8C8C9C:C;CC?C@C@CACBCC1ҍDDADDADEADFDGfSfGSSB~Ou-;au%CHwj h ;C@t Z Sj81e[^_DžC8CC C CCCC4(J RhjCDPS1P(PV@1҅҉}tUB hS+10t t 4ǃ$j$DX@@@ @ @$@P@4e[^_ÃEPVB?AV83EP =t71^QPlg8CH{4@ P%@DDDHK C$j PAQS yOD?K0K(C,K@C<{ PR%9S}S1x18 P$C=C K{(ωǃ1[C K DD|C 88UVuStFk VL؍e[^ÍvUSQU ҋEu`tX41҅u Ћ]ÉPjjS9(u otЋ]Ívǃ01҉Ћ]0эvUS u]u #C,9C(}#C0]ÍvUWVS,EUp E@EԋUUjj PRuPu#Etp]]{K}ȉ}EE9E؉E}.UfZfvG);u-EEE9E|ҋEHy]ce[^_Ívffwà uuuuuƚ EFEEEPu袛fjuPu"EPUȉU M܃EE]s E0vjuUPu"EHMȉM]܃EE}w EE̋M9ɋuЉ}}7}>Suuu迃E`1ҍe[^_u uuuuMa1Ӌ}g_UbN]c=E@EȋUfDPfvrEȋ] }؋UzTz)ЉC\MMVuuuuu uuuAMa ju Ruu腛 }gvUVSUEҋu MXtu#t8M u҉[^Bǃ,e[^Qǃ,vUSPEXEM UuU MY1[ ǃ,Z[USSE}U Xw@tUE Yغ[ǃ,Z[ǃ,UWVS UEҋXtt $xmth1ɋ 2H(f|QtjHǃ(fyuTjPQPS u̺e[^_ǃ$ǃ(ǃ uf9uǃ $f9Uf(f|q qBU fqDq)ЋU B DqBUTqq)ЋUBf99syǃ $ǃ(1ҍe[^_Ë$S(9r7jjVS Hf9uyFǃ(S(9s9h$~1҉(떋C > juu PS葛 1e}ǃ,lS(딺ǃ$XvUWVSu~(GV0!~(UNU9;F9~~jv{UtLF( @P,‹F 9} DDDDV F,9sF0 F,PWuV裋e[^_Ív PMEútPuS譸E +EPM jR=XيEFUWVS u1ۅHHuXt[=wtIt.C>t P* S:1e[^_ÐTDžT\u`Dž\u Dž`Xd.Džd h$诉tRh$jPǃdǃ\`ǃ$$JƉC1 󫁻t ^FFF F FFfFEfE NePuu uE2OPjj@5EPUE XH  ǃǃ XLXyt!DL9sL‹T:11ҍGTf3fǃQj9+ Wjj3QjP3շE t @E@t E PvHDž\DžLDžHDždDžTDž`XDžX==& e } =1 Phh(P8l<$ (RWj.( $,t (P Pj(RjGv E=-DžXXHDžX9 VfX} PjhP`hb1 h$'h&i%j$kl #l"m!n oppqrsttuvwxxyz{||}~hb1u l]O/XShHhPԳ8 R3r Q3P @@f@fGG tft Rj3 j  h ǃp=|_rX txUSPEXCu u&]ÉPjs37C]ÐUWVS EXCEPEPu S~ƃt}uQj63e[^_ÍvRjPujjVS !@u.Ce[^_ÍvPjs3kCbPj63P,yUUUUPUPUPPUUPUHQUQUQPUUPUHQUQUQP UUP UH QUQUQPUUPUHQUQUQPUUPHEAEAEAÍvUWVSDE ME EEEAEAEAAEEAEAEAEAAEEAEA EA EA A EEA EA EAEAfAfEEAEAfAfEEAEAQ A'tD[^_ÉAD[^_ft1fDyfEʊEˈDyEʈDyDyEĊELjEƈBEňBEĈBEEÈEˆBEBEBBt;EEEBEBEBEEEBEBEBtAEEEBEBEBEEEBEBEBvGfNf}1ۉfDYfEފE߈DYEވDYDYE؊EۈEڈBEوBE؈BEԊGGBGBEԈBt1K94;XtE{/E6Et+hV&={EPV1҃8IvEPV1҅/&E%=@Uj1jEUu1҉UvUj1jEUu1҉UjjUEtUUu jUEtUÐUWVSjdhP裹 jjh?pxPjttPSS$#Dž\dRVd UUW@UdWt:V\G*hGGVdҊDD9D\\yDž`vWrWdL8VӉ$VDdD:$L`yZ e[^_ËU҉u(1D@=~BÐU tÉ*ÉUD!u1D!uÍv h#É h뽉UWVSEEE ED!!Tp1FȢƠ؈E}EEEG~D!ue[^_Ee[^_Z h_UWVS D!iBҊȊҊ NJȈ ǠȊӈۢЈ ǡD!u"e[^_à hv he[^_ÐUM1@9rÐUE 1҅SMtXw $Lv[ÉAAAAAAAKtA닐UWVSE}EESEXtU 9S t1ۋEuEt5CBCCCe[^_ÉfEu^& jm1҅tj w mF vU V FU4MqFFF0҉ju1}Pu rWa E ]MEU OE I!MOꋇUMÃEEu0E|VPVF Vfft fDBfE6ۉ]؃t<_KF O!Ë00Eu  u~EX@]KoE;C bSfft fDBfEރujCBCBCXCKC C{e[^1_H jjs sWeb x1vF jQv vW2b 1҅^ Vk1US]C E HK}R[ÍvUWVS }1҅t[Í9tMK uCtUtCuTE t9Cu6SPS Shj9u1ҍe[^_Ív뜃 P?j뼉 jPs sWa t뼐UE SP]QP QPBP@@ @[UWVS\ExG }r!}te[^_ÐEE UZpf99w99]PSu WZ@tEEEVjSP谖M A EjEPEP蕖E؃ME Uu܋Zf9vS]SuW@EȉEEQjSP:MA EjEPEPEMEU r]f}TMSQu WdEEEUfR}fUvuEELUBM A EEfXfHE)9VFf;EEUAfBf+]fZMf\JӋU BMAEPr2CS U MZq1SG(tuU9Gcu"MYAH9EPRju7g} N e[^1҉_ÍvPjw77GG(   MMQuu W@Sju7ܖvQuuuuu uWV EPj7舘fGfO UBU B Ss)9r4\Cu fuwPVu W|LJVjS71ErLʉMMRjP7R+EPUMQPRPEfXfHUJ!f}LJfLJRjw7MEKfOfM6fGf;E@fGLJfEfPMAP0WI]CFH9wPVu W+{tKfG @fG f1ELJzktfLJfG 븐UVSƋBu@Cu 1e[^RjP6)ɸtCAPjQ6ȐRjP6ɸtCAPjQ6두UWVSǍ@,UE;EXۉQjp7蓕tWf[f]UDP0CuJFH>DuVWΐse[^_ÉC PW|@uQjV7f^Ãf+UfJtfAf;EsEffJuf^CfFPjV7ђU:t6UX1ۅt luWtSjR7腒1@ EF)RSPEP蓏UfVEfDFfENfUJf!ff;EsEffFfFF )UWVSUB(tMUDQCCUp B)WSPPڎMfqEUf|AJMftff9sfJfuUfZÃf+UfJtfAf9sffJuMfYCUfBMA(tu 9A1ҍe[^_Ë؃ Puz@ҋM9BB;Eփ} fE  uTEUBH;EMuUBrMAH;EEUMUfMtMNTC Puy@ CGfQ;EB1fAPjjjFPPEPuXt tMSQWE@uUfEvNEEfFEHfEPEPWMuMuNARjPE06hEUPRWufEuNPjSM1^RjPM1ߐE@HfEPEPWu'uuCN룋EfEPjjjSSURuM s EQjSU2kPjSE0UUWVSTtPj VugkvUWVSLÉU1UȉUEEEvUG~uA}U;}UvwX$lCt%utCECBZ$UEEP TUG;}~tE9t RJSe[^_ËU܋UR  P SU9EEEU뚋U MEE;EU9U~EEUEBUE-MElE;E%U9U~EEUEBUMEE;EU9U~EEUEBU}MEE;EU9U~EEUEBU `Dž( Dž(UȋEU$UȋEyM$\ȃO u%  PIA((Dž(C  P! IA' P IA P PK IA (jj 0(OB X$(CE@EЃ$EQUȋExU$0$WMQEPURU EEMA zH1fFUf)fDVfFEDF0PWuS;UCUE 8u-U uu‹E@xPjuċM17> juE0%>U;EXۉMUMĉUVjpM1?fSBfUMA wH"UBЉE̋8 f^V)ʍG9nAfUf9CfFMEA fFf)UfDVfFEDF0EuMȋUMȊAWECuPEȃ PS%:Eȃ@ZP E@HPjuċU2< juM1<WGM Pw7CS9U :]M uuU Ew@/PjuE0A< juU2/<XMqie[^_Ét zb^fEfDF0UBCfFUf)fDVfFEDFM0ACUWjVE0s;PjuM1`; juE0N;e[^1_ËMAȉEȋ8E tkE@ub^ufvUUBDЋ U܉E؋UȋEԉЃ EЍEPEPщE 9s EuuU EBv)VQPBPR7f^WMQEPURE-\EPT`fEftTDF0EUċCfFUf)fDVfFEDF0EMCIEPTSURMQEPU Euu1?>UWVS ] SRPEUEM1E  E8pPjSM19Epf@fuTG]9tPjWE08PjwU2:U@fBHMfAPQuuuNU9_MfAfmMQ A9t;MQMQ1e[^_Ë9tQjWE088UrՋYRjQU28۸tPjSM19ǃtEf@8|M9t wPjSE07\USS]Cu!U C(SUfSC(]Ív PC CU C(SUfSC(]UWVSEpF]u_ w"$vF( w-$ge[^_ÉUfEv1t(؍e[^_ÉPjv66F눍vPEPE0V jPuPu EPV !@JEF늍~GEPEVPX4v@B %B\PjR66PjS67u2@)B 7DB\PjR65PjS67uE t P!YfPjv6D7ɸ`t0 fEމMfE@Wju653GfGf}A9uYPjQ64۸PjS66ɸfEovPjR64UBHfEGt)GMfGfEqEPEPU fff}t fMYPjQ64۸,WjS65ɸAHfEUWVSEU,JMQjSE05UBfE@ft8fMf4Efp Ruu P~FfuKfuG fuffEUfpDG\8PjW22QjSE04@1e[^_G tUEM  u#f}u GGU9t"MEfUfP MAe[^_ËGtVjwM1F4EtfEESPu uQjWE02EUMAQ EAPjw13EB@HfEPEPu u(u1PjWE01EURjuU21PjuU2|1UWVS|E ]U %=EE@u#UQju h +e[^_ÉcEEPEPu u?U E%EE]E% ?EmE]8E} HXMPfE fEEmUmEE@tM}Ew#UEEuJUE+]O E}EUEUU} vE1ۃ}Ã}~m1ۃ}EE$`E'}ut@Sju h(e%E 3EUVju h,%EE UUUU u)}EE~ }tE} ]EEUM ߉tt EB EuUEt2Eu'E~ E ɋEEMUBR $<]؋Em@Q%@EEEEU EEE]]ME}uU}fEִ EfE?J]MB0EEA@MLM9MK E]Em]m֋UR $ɃEUt뗋MɋuEEt,U3EE EEj[5E~E~U9U~uM)M))MEȅ~8Euuv6E[_uP 5Yu2] j4U҉E~uP46E1ۃ}~Et }EE@EEt +EE}mUUU}̅~uu7EM~uu6EUEJEE~Vu6EEۉEEiUEĈMB9MUQjj ug2EE9EePjj uH2 Ejj u62EEuu/&0EY[uu7XZuuM7Ë@  S 1u}tEu E|"}EUBuz~N}~EtA}~3juv5E^_uPd69Eă}:EMĈ@EvPjj u#1EE]Euu%0EĈUBuz~kM9M|}T}t&ju4E[^uP5ME89uU9U%MM99tEE u/Mt+UtM9Mt u}/ uo/ ua/EE@UE tEM Ee[^_ÐSu5ƃ Rjj P/EEk]E荈2 M~^@+M⍈E ‰1RP,$]mm3E}REMMM> +MU몃}+EM)MىME߉}Euu1EVuu3MPjj u.EEEEU Bt/M)MFu EMU:0tBUE6M)M@EEEHɉMMEEEEEE5]-ً})U}4fEeش ]EfE6EEU9U.]UmUm֋UR$$B0U]EEBEUuك}~]t}EUE@MU:9uM9MME89tEEE]E ODEE4듃}t }Ex9jjue,EPu^1~M1EAM؋U҉U}REE|@Et뭃 p-*UJlj֍  ^_jP/E E}fEMش ]EfEEEUmUm֋UR$$E@]uEEB0UEB9EUuEEEEtEMU:0tBUutqى ]t^tEMB]Eދ]g}9uWU9BUE<0EEE1@EEBEċM@AMEU0X}9tEEPjj u)E)UWVS0EpXuEUM؉]܋}E%->@EȋE؉EЋE܉EVSQw $x'vEuWuu EPEPuhdJ ?t:e[^_ÉEÍvE뷍vE뫍vE럍ve[^_ÐUSzÍJt @[19t I<u9u[UWVS ƉӋ}t&~t;v [^_Hu<uD uډ{tӋE ˍvtUWVS4U] EUU EUEډEEMSQw$%EUEU E,e[^_EUEU E(e[^_j%-UMuEEE}E uU܉ÍL@ I9rS99vI99w%U} U<E EtU  UI9se[^_É%ƒ I9wyuЉ]E P]Ћ}ԉ%u-EUEU E e[^_ E{ ?vME|ME|tuPRUWVS@m}MM]EUu ۉE؉U܋}QRP}mw$L#؋MPju$h,Ee[^_؋EWju$h(E%-@Uuf} VÍT0@J9rK99v E؉EJ9щE9wE܃ <;u$;tM$ MJ9se[^_ P}E%-B-؋MPju$h 9rE܃EJ9ډEwZ{iO|;KO|;t>uEPR.VWt$ |$L$)9rу_^ʃON_^ÐUP}E XÐUUuÁuÍvUSM ÁUu% Ѓ[Áu% Ѓ[ÍvUMEMEEU UuE EÍvUUu UÐUWVS E }@DButaCE ;Fv+jPRFP3C P6CGM1҅CU uE!@!C@U;Bv,PRQt7UC@BPs؃ PM1CUBM1ҍe[^_ËE!@ GC F FPVGPC Pu uvE PEuPC Pu tUMcv P7 P'CUBC +vUWVS Ef@fuuJuJ toDBBt? ҍ}tC PPGPRV u*EB E}EWu Íe[^_ÐUWVSEM qx9v ]8]]u@AJu[)^_U[^)‰_UWVSVMQUE x;}vU 8uCAFJu9}E[[^_[[^_ÐUWVS} u]jWEPZ jGPEPHUE9s'RP-txEEU;BvE]9vPSFPW jVU2E)؃Et>F߉ERjuE0iue[^_à Rbe[^1҉_ÍvUWVSUE MEUx&UBPjRM1)twMM]MQutqECCC fCfCu9vPVuCPEwU)uQjSE0ve[^1_Íe[^_UVSu] jSEPv jSEPd ju6ƒҸtFB uSPju6t$)]BERVW9]w1e[^Íe[^PjR6ސUWVSUEσ} x 1҃$xvM 1]9ʉM@;U| PtEHtU 9v) v2J tt BAt)à ] t]}SEEPua PU Pju$h Je[^_ÉE Sju$h(׉] Vju$h,뿃EPu!]E% ?EU8ELM HQX $Pɍ]5~Vh $}fEִ fEEmUmu1EE@t$MPSE})E؍DEC}w#]EEuK]E)ʉNEEuEUEUU} vE}~m0ۃ}Ew(E$EE UUUU uD |EEP J҉Ut:xt +EE}VNEC}9EݕhhlMEt7Eu.~*E ɋU UEUɺR $<]؋Um@G %@EEEEE Eua]U҉UE uMUtE9Et u u؋|U]uEMx }ẺEEuEEtE}uN9u_E)ƋU҉UE EEjEE~E~E]9~؉E)E)E)E}ȅ~K]\~1Vu3EZYtPXt]E)( j}E~uPE1ۃ}]uUB҉Ut )ЉEEEEEEM̅~uuEU~uuEEEy}u~uu|EEۉEE SsuEuMu E uEuMv~ }UEMB9MUOPjj u]9]EVjj u Ejj uEEuu 0E^_uu~Y[uuP ҉ÿPuNǃEM?}fEִ EEfEE;E@E m]m֋UR $MɍB0]EEA@Mu؃ uUE@M E$t]$UE |e[^_EEUUBEEUnEbpMm]m֋EЃEEEE-Wjj SEEQtBEESjj uEE]Euu0EE9E|ËM}UBME M99u|9]ZME89tEEM9M)MىMEމuEًE؃}EME U:9u|9MM];9tEEuuMPjj unEEEEM At8U)(utE}}EQjjuEPu(|E 1EAM}UB@;EEE|+uuu1E]{}Eu,$EWjj uLE[^uPN0Euu/AUEBUPjj uM9MuE뗃juE^_uPbERUBHEM];0tC]C~:juEZYuPsE}:E ]{WEUEBUPuEUE@u $E5}EE9@EvR2 p UJlj֍  ZYjPrE}9M9AME+EE])‹K@9})ύGE=@M)щMEE |E1C]9E}:E qE]@E C]EU}4fEeش ]EfE0E6E@;EE]mUm֋UR$$B0U]EEBEUuE@:MY1%؋U}fEMش ]EfE.R$$]B0UEB;EUt$@MEUmUm֋UЅuEEE1EMU:0tBU$E|0p}9EE MA1C]uEkYPjj u EDE@USPM1ۃv BC9v S ]ÍvUVS u]u ƒCBCute[^ÍvUEHPJBU UWVSE逋EHEPR7UBtMfQ RWuPoM)y9uRVuPOE)p0)u[ uP 6E9RVuPE0$! RVuPM1 $ USQM I]wʸ Z1[fZ[ÍvUSPM I]wʸ![1[&[[ÍvUU1@~1ÍvUU1@~1ÍvUSQM Iw˸UZ[Z[ÐUuPQ$5Ðcv̀rÐOvT̀rÐ;v%̀rÐ'v̀rÐUVSuu V̹t e[^Ét V蓹e[^ÐUjD6=wu u~UWVS ǡD!y#ۉK~xD! hD!;5# D! SɸD!#KʋDGD GDG DACD!u e[^1_à h`!䐃 h`! h'9e[^_Ð h`!;5#(C#މ# h`!Sv h`!k h`!&#ۉw! !#UEEEEEEÐUEEE EEEEEÍvUWVS D!5#v~O vOxrD3tUt U9T3uE؋D3 E܋D3ED3ED3D!uLE؃t\HD!t h`!Oyv6jD!uCe[^_à h`!E؃u uU܃띃 h`! h`!e[^_UhW|$D$ L$uG_Ð1_ÐUSRw]fS ¨uHK0tC@9t Q蝵fS C0CC]Ct=¨u1ҨuSS1]ÍvC؉C1Ck SfS 뱉CfS w ]ÐUWVSl]fSfҋu }xaEPP xJU1 Eȅt:CLte[^_É{(uf̉UVS]C tCCCCe[^ÐEQPEPS1ZutJwCECE΀u f s e[^à CP tf s fK tUWǍ@VS)P荳EU1t\]G4ËExX3vPjXh#S s8hh $V XƔOy͋Ee[^_ÉUSSD!uY wu1$*”XHywwu]à h# ]à h# D!UwVSD! W^F f{ tLXHy6uD! 1D!hX05hX^fC D!C8CCCCCfCC0C4CDCH@C8VhjP ؍e[^à h#b h#Z h# h# USQ +$W~J Wt+P~9u~/Lt"D!u2hXD!hXu]à h#"]à h# Uhȼ\]ÐUWVS }G 1Ҩt6wt/)7uWWPSVWk ~)ƅ1҉e[^_fO @UUt+B u ɸÐ RkÉE\vUVS]tt D!uZC t" S-D!҉u$e[^Ð D!Ҿt܃ See[^Ð S똉Ee[^\UVSD!uu# VáD!u0e[^Ív V3 VwáD!tѐ Ve[^ÐUVSuËF89Xt) PMF8XF8@ e[^Ív@ e[^ÉUvUWVS uWËF819Xt? Pte[^_ÐF8XF8@ e[^_É@ e[^_ÍvUSQ]S89BtX[ÍvB ~HB X[B C8@C8EZ[UWVSQE9UÉ}/+uECMDC ‹EfC@9E|ڋUSMfSX[^_UWVSMU EE]u u41ҋ lXEEEtMqEUe[^_9vE؉EEȉuEEEE]fEڋEfE܋EMfEދEUUfEEfM̅ҋMfEfUfEfMEuM}-EUfztEM)MEfxEMUfztuփ vMfqNy+EUBUEMfIفfVwGEvE~3UUuEUEuJ_XEf@fVVEpMIEtPPffXfVPf9XfQfqX 1ptȉlj 9%pOwt 9wڋu1ۅ~RM@EHMq))ډӋ@UfB)N؅Pf fXX)؉ËPftDO1ۋu/UM ADU rDӋMfAN͋PfUMf,EE 48W(x(X E@ DžD,Plt  ,(wcݝP݅PEEE ݕHݝPE̋U‰@Uu ;EEPEPTPNjE ~PWǃEu Ft[XWuEVMJɉUu"9P]9hME W4$uEE9@SME) 8cZ4WX,KX(?3CX"xDžpvC]@<0tAEX|]pu|0uCt]p0tFσt~Љ\xDžtAEE@G@DžtC]p~Ѓ ntttx~Iv}<;urUBM +AU9։U>M‹M<%EUfFf>;urEtMA;AtMD@AEe[^_ËA @PE EH} ƍ  $߸U UB뢐UÍvUWVSDEX$S4CLUE} CXjP?+K(S,KXS\ΉЃ -@BA‰΁?BS\ɉsXM؋C\ȉE܋K4ɍUCȉEC HȉEEEEPjjREP( HE؋U܉CLC4SPECDECT[GjWPXuWQ 1҅uWe[^_jjREP'H{hj`ce[^1҉_ËC0CHCTrGjWPts@ uWM 1҅e[^_ËUẼE̋WPWR1҅F]ȍUȋGRWP1҅(UB EăEċWPWR1҅E UGRWP1҅OUWVS,E M1҃x Y$t e[^_ËPEЃEԋBjjEEPAP&H7EЍU@E؍sXEԹȉ׉Eu*EC0C4뒃h(ja1|hTjUWVS}_$Cs4u_GW{hC`Sd1}щMC`WPEPs-$xrC`SdV FFe[^_É hPlPs$pC(P sChxjaUhj`e[^1_ÍvUVSu^$ 3#~Xs~C$u0hu>luL S}ue[^} P}htĉ P}lt P} S}ue[^}UWVS} j(jLshtj0w@@$ǀhǀlǀp@(@,Q7w@hP$ugt V|tHQC2C$hl S|e[^1_Ð1уKAQj1}1эAC XZQj҉C@8E}1QjӰ‰C$}1PQuReCC@WPPRFC @Pus3ECMrMQVFF D!0H6u2H6lL6tP6T6\X6<F H6^$jVǃpe[^_Ívhj}] Pzl Pz v Pzv Pzv PkzvEt}MpC h hD! FPh hPj\UChPvUWVS$uSVdt=1щjuuu PVe[^_SVhtj[e[^1_UWVS ]td1҈߹щM5tYыEL 1ҁv e[^_Ð Su Vhu?e[^_à EPh1҅u]낉UWVS<uE 1ʋ} щtY)ҋL1ҁv e[^_Ð Vu Shu臧e[^_à P譢1҅uXhW } DUSS] uQjjS]ÍvRjPSb]ÐUVS] SuV791҅ttHtH1ҍve[^ÍvPhCPV<;1҅tQjCPV81҅tRjCPjCPV81҃UVSu] PjSV81҅u e[^ÐPjCPV81҅e[^U\6ÐUVS0֍URURURURURMQhP[R ~C1^T؍ @ ڃ~EE֋EEPjFPE։VFPى1ҍe[^ÉUWVS ҉~-1Ӑ 47vYt7vZt7 v Ku؍e[^_UWVSLUDžDžDžDžDžDžM EB]tu1e[^_Ë]1%,DžQ1t1ې 0"PhhP$$[+$[+$[+FQG t |1 v 2PhhP$[+$Z+$NZ+FAG t |]DžDžDž1҉=Džq1I19ωvhNt3{Zuht3]ZuG ;}ttRDž]tЃRQSShPNhhP1 htX1e[^_ÉjjPjhV tDžDžDž@Rh+jh|*jW  DžjPAt Pt GWP jtj+tA]3tm= ~@9Љ)9vًU Be[^_Ð1 hPWz GWPXZQPRShhQ|Lh]S 1PjjEU:hjߙ\6$c jVT@.\6!PjQDž+ U|Dž>J)!IDž-1҅n u61҅KDžDžjVjjSP艚 @ Huʰ PjjSPf$J y 8tDžPPjjRlƃ F`[U`6tÍvc=v`6Ív`6ÐUWVd6fjhd6EPj腔e^d6_ÐU,EEEPURjEEE蘗xEt E@E‰ËEUEM t.~tOt91ÉHuxY|YQÉQxY|Y׍vƉUWVSjjjhP, jjjQ"jƅif1jIhhɉMEjEVjjjZYPPjhEPS{ tPFjjVPe[^_à S=D!5x6t,D! jx6|6e[^_ÉDž`D\v \HC XtXuCw Sx P3`s 8up|68a hv h`t} `0EJx6Z\$D|6BhpjFM D!u1K h14wˍvUWVS D!DžE 56t7 6tuSvaKvu1p WjjjhVj' t6ut s;PU D!e[^_ËF Ev6iERvvPD!E̅D!6Dž tFUЉ]̉B p9ۋ P҉uȋ D! uhEPb]1EEEEEEB t$ $PSh Ⱥ$u؉CECWjjjhVjE؉EG% [u$@ P԰/ he h` h3 hL1 jhg Ujhh"P˒MDžtVz 8jf dM<$ZMC1t :M Cj ZfljC tACt:t6tKt%F GPfGC @}]UM h菿U 0eXreB _pe^p eBuJ tlB B ye 6z1 PPeZ 1EB6RvvP訿D!t h裾686CB66D! hM561ƋFu 6dXvdXF p}dXv tdFu*t4G6C6 VHdm P7dȉ6CҍvUWVS\]ۋ}E1t-WS{Eu! FVP1e[^_ËEEȋE E̋EPh}Pj ]S]؋V5|Y5xYEPh.EPh jV$FVPXuUcEe[^_ÉW1vE1dUVSP]E1thEE؅ۋE EtaEE $Ph}Pj ]S]V5|Y5xYEPh.EPh jV$FVPEe[^ÉE 뛍vUWVSS;Ð S?ddB tٺ $ƉuƋd S; jjjxVh jjjFÃ1xgƅyPjhh"zW蠍1I xQVSFx Se[^_à Sv1e[^_UWVS]DžpDžtDžlDžhMEcEp *fEEUr hN\@ EPڋEvp$,;p1pPBhYjRPp PEPj pRUE UEUr(EEpPEp0EPh-EPh jp @vYtEp $ VUE UȉEE UEЋBpDžxapDž||VBWj RP]ԅpQBhYjRPpBUr2xWh uVh j p0ox1tHsEpwu(s Ur _uCU9B>[ulWh ] pBSjRPXZSlExt'pt pBRPDžpUvpEEԅt= t P^le[^_ÃWh pUBEԅuE pPBhYjRPh||u!D|H|pPBWj RPpBUr2tRh@2Vh jp0v upPEPpR}w_|H|xlt lBu1pX^_PpSpp BRPDžpv EPUEpvfEffEPpPEPjpR$ \lt u[lB pX^_PpSl l[DžlE &8PuTƃkpZQ^_PpSDžl.o pBRP EPUEp[ExYp pBRPo@DžhJYRuuPlBfUfPElB hx莹 V8t2Ep s vuփ EPڋEp V0pKt8zPuy^_ltPh@2`lt^pQBURjpPXZEPRF14)@iYUVSujjuuu uPà 1t0C;w2RPsvQCF^sX$Xe[^É sX$Xe[1^ÐUWVSjUE EEtw@5|Y5xY}Wh jh|*jV tBw]PFSj VP}t8^Y_PVS FVPEe[^_EPFSj VPF5|Y5xYWh jh|*jV0u믐UWVSXjE UÃ۸WChjSPEEȋEE̋EEЋE E؋EE܋E(EE$EEE}ȍvMVCQj SPCu0u,URh Wh jS0uM4uHFw EHEw CSPEu e[^_ÃEPh@2vuuctc@M4;w/RPwqGU4BXwEV<$=V| w*V<$VU4BRE4@>vUWVS u1t>u u &e[^_Ð hњ# j‰6u S訵u SŶ1tG5|Y5xYu h*jh|*jWÍ@ v. GWP1e[^_1)uPGVj WP}uEPGVj WPG5|Y5xYu h*jh|*jWÃ0|*UVSEu EtWtD~1t0C5|Y5xYURh@2Vh jSCSPEe[^>1/1ېUVSEE tq1tKj j輈tcC5|Y5xYVh U Rh@2jS u CSPe[^É VS11e[^à CSP1u1ܐUWVS 1E WEpNXxf{ ~ SU ǃXNyEEuύe[^_ÐUWVS EYEw8 =6~3hu9te56h69tI1ۃ~ 56u49tKC9E6h6h6!e[^_uh.hj4e[^_MV uuh.hj4e[^_ÉUVSwȋw5w) PQt[wwҍpwPRQt#wwwDXww1ҍe[^Ív''Nw5w)һ'IPR;QC PPdvUWVS wwww ww wEfEwUtwx E@twxUvw\gwww-wt!xf`;wwe[^_Ë wtEw ) wC$`9w;wrBLwЉ]wUfPwwJ wBwwJHw?`91w?5w)Ɖ5wE)E w`uPuLwEfFwwJ wBw[1xv?t]x ?};5wr wBwEfBwBwwB( hFwwwx:w`;EU]Pww;wr1u?wЉ]wUfPwJw wBO hy ww ww666w6 ww6 h6wMwwA멉wtNA 6]wNw?w0zxwA!6 1wU 6A6Q6w6墴6UWVSQ5w 66;56 6=FEtEf U@9t4 :~֊`Uf U@9uUFǣFF;56hZ[^_UÉUM69tBt)6666P66P 66ÐUUt0BBB@BBBB$;6t^UWVS u] V1F Xt"D! u#CP ~~e[^_ÉS[؍vU Ph*58WI`$UP|IÉUWVS u }v|7t e[^1_Ív|7u(tHFC {{CCCCC C$SWe[^_ø;묐UWVS u F}EBt>1B9|D33uS(tCe[^_ø$붸׉UU1:@<uPRgÐUVS(u tVs FCtCuSe[^ÉPJCuSe[^øP$랉USP6]tS56]h56E6S56j]UWVSYtO6Y6u @W66u v]ÍvUh.hLh胖FÐUSQ薖Gt Ћ]Éh.hFJu Fu 1҉Ћ]à 5LhuhL!jr1҅tP5Lhȗt S=1룉UWVS,ƉmUzB j.V!J=JU ,U ,!t'ʁw Ju .@uۀx.Pu VWbaPhVhE ƀ-E .UE BU RǂBЃUBs@ ~1e[^_É=Jj:V] ,t+ʁw Ju:t .@uրx.tyPu VWM` WhVSgE ƀ-UE BE ǀ@@E B薄1:E u uWVhhhhj 01HtЍe[^_øPhPVes/PPu]UӃyvUWVS EE} u]q@t] uE [^_t@uw [^_UWVS }u ]mq@ut@tKZq@ u] ue[^_SvSV?1҅uʍe[^_UWVS }}u ]p@t`t{9uuSVuhhhh j 0He[^H_s@uSe[^_Ãu?t|uOut,WlGaG V=K }6Er5/bG%r裁KvUS ]u S ]]UuFUSP1҅tPCPSu1҅uډЋ]ÉUSP1҅t@PSu u>1҅uډЋ]USPz1҅t! @PSuu u 1҅uډЋ]ÉU=tPuUt P ÐUSP] ,!u*h;h N,!E0!]Ð PCE0!]ÉUSQ],!t 0!t]Ív P賐ǃ,!]ÐUWVS<Nj,!P,!hPM8#tЃhPthStPSjZFPSjZiMDž`~e[^_Ãh;hL,! ~뽍vDžȃIAGG W< t< uFv,,!GhVxtC1򮋅+9ȉ$RPV`ރ< < (;hVtC1򮋅+9ȉ|AWPVR`ʉKFO}e[^1_ÃVDž*|vUVSu] j@% E[^USP1҅t@PS1҅uډЋ]ÍvUWVSE‹U‹Ux0Wj jFEu]F;Eutpu6t<^tu3ttu3u WB}e[^_i@ tF0F0RUF F]UWVS$E‹U‹U‹U@PjEv jU=Eu(CE܋E9EuًC0E9}uŃ}t" ul}e[^_h@ tӃC0C0|TC C뮐UWVS ljh@ue[^_ےVW>ʒe[^_ÐUWVSMEDž\X} |t4~} tye[^_Ã} uDžT DžTfGhUM fG,,!;|xwHzx )PRV|I N T4t;|$} } }EǠtǀUzM8pA8zhhDždDž`w;| TލF ;|] VI4$I} l VI؍|9Љ<lƉhh,;| `x )PRV|YG `똋1PӁbPEPڋPM+ VHw} t`} tZ} ;} t7 W裺ZYPu 蘺$ jOPuhj%| <uE(;t hQV|8F  WT;<Ftt1Ӂډˋx)9YMWRhUdtpcdtd~ } !EuU1}ˋx)98,uRgU؉)c@ t1 hQV|{D " WE;<1ˋx)9WRgډXpvPxPuN} } S}7E9X  dM1ʉЃP;xkE;p\\#Dž@d89@DDžH1)/aDƋ al#9htGad9rċHfM@u~M9~@HdD9Hq@9@@;f}f}f9~)f}f}8DTOy@d렃} Xt-uh`j% <7܋x )PRV|_A x] AtH;<wdueUCt(1Ӂ``d4xڸ.xE(;tvttzppPSVRj<wډj UVSutMt8@@ CPSVuU Eu Ѝe[^1@@ /p1֐UWVS E‹U‹8@EE WG h& hPujuR xk=v V&ڸe[^1_uWuu‰É4$k&e[^_ÐEV V:&ڸA o腇/o륉UWVS,Eƒ:‹‹@\@@SvPPhYVTƃKyShhRQ h$%{ hPj jPRL o=j R‰ V$P P RW<@@tgwme[^_^@SmډPGPGPGPh`PS 0[@ tFBB ^ V#ڸ5O V#]EU싇 E䋷;u sF;]vtCAJ;]ru:jEPVW'uMF;u r1ҍe[^_à RCPPRPQpjEPVWf'te[^_Á e[^_ÍvUWVSE EE;u s=9sLډ]C9s;Eu)ЉEjEPVu&u4CF;u rËEe[^1_ËE e[^_Íe[^_ÐUWVS M UDQCtCPuP/@U B3)ÃRSPPBM fqEU f|AJJftff9sfJfuE fXÃE )ȃfJtfAf9sffJuU fZCM fAE1ҍe[^_ÐUWVSjRPXt%R@PSVuQjS6D1ҍe[^_ÐPjS6De[^_ÐUVSEXCuuOtNtdCue[^ÐE t9rJDuԁ Pjs3 DC똍vC(tɸtS$JuK$믐UWVS<]{G} 0 ('jjjtփ ƹG$EEEE!juVURSSu3vQvus;F:jVEPSStЋu@w$tHjjj}s!Ѓ@t(PRSju 1ɍe[^_Vjw7BG} vjS著e[^_ÐjW@띍vEEujVURSSvEE؋FERjEPiVB9ujVURSSt$UWVS u^CunjV@tE 1ugu"@ jt V苗@t e[^_ÐPjs3;ACvit n ZquUWVS ]ۋu}t'EC1҅U RTPC!@@;v2 Pt3@P3CPb=G1ҍe[^_Éur jhtԉ‰džGC뮃 PPGPCPVi' uvjP%닃PRUWVS E,UE쉂BE1EPjuU2.A@ $@1 ;E wADCf9э4uUUEAfBUv}ur}jQjDC PjSE0>PjuU2w@I]o}8u"FDCPjSE0N>U;EtqptdRjpU2@tK}uFDC 맋EXE f)UfB Ee[^_DCVjSU2-n8e[^1_ÐUWVSf0ƋJf\Gf)Q2PF:fGUBf)à P2FP:֍؍DfWf7fDWf\We[^_ÉUWVSEEU EUErfщUfDFffE}UfDVNjEHf+};EttLFPE)ȍPSR9];]D^vffBfB;]$fJftffB9fB;]~ffDFUf|VfVGfDVEfEH8UJe[^1_Íve[^_|UfB $UWVS}G EtEu$U ffG fBG fBe[^1_ËEuEw<jO t1RPS6l!Ѓ@Vuu SlU fMu~u f>uuffG fFG fF[M G޺ uEEP3UB@E9F PuEFP u$LJ LJ(jSDAPW虃ú}Hf@ fEfIfMfE=NSUWVS ËBE@{ )NjEfR fUEUfBfuv uktL uu jVSs u.E9F PWUBFPEuUe[^_Ív PyvjVUDBPSgt!Ruu u‰Ete[^_RUVSQuuuU j]C@t 1ҍe[^ÐUWVS(jEPEP]Su Quuuj];E_ZE܍EPu ..., where is one of: %s: %s not compiled in ۊRRRRRRRRRRRRRR5F%6d stdoutstdinusage: cat [-benstuv] [file ...] benstuvbb bb1bb1bXXusage: chmod [-fhv] [-R [-H | -L | -P]] mode file ... HLPRXfghorstuvwxthe -R and -h options may not be specified together.invalid file mode: %sfts_open: 0%o [%s] -> 0%o [%s]fts_readHLPRfinprvthe -R and -r options may not be specified together.the -H, -L, and -P options may not be specified with the -r option.%s: name too longdirectory %s does not exist%s is not a directory%s: directory causes a cycle%s%s: name too long (not copied)chmod: %s%s and %s are identical (not copied).cannot overwrite directory %s with non-directory %s%s is a directory (not copied).%s -> %s %sutimes: %schown: %schflags: %sunlink: %smknod: %smkfifo: %sreadlink: %ssymlink: %sfailed to get acl entries while setting %sfailed to set acl entries for %s%s not overwritten overwrite %s? %s%s -> %s %3d%% failed to get default acl entries on %sfailed to set default acl entries on %sfailed to get acl entries on %sfailed to set acl entries on %s cp [-R [-H | -L | -P]] [-f | -i | -n] [-pv] source_file ... target_directoryusage: cp [-R [-H | -L | -P]] [-f | -i | -n] [-pv] source_file target_fileBƨPjR1De@@ Ѥ@@)ϧ-0tLz  6\ڸ\JtU  ^  h  <BJR [  e  l@rpz` P@0 7-./% <=2&?'@Z{[lP}M]\Nk`Kaz^L~no|_myOС !"#$()*+, 01345689:;>ABCDEFGHIQRSTUVWXYbcdefghipqrstuvwx7-./% <=2&?'@Z{[lP}M]\Nk`Kaz^L~no|ཚmyO_ !"#$()*+, 01345689:;>ABCDEFGHIQRSTUVWXYbcdefghipqrstuvwxjJ    .<(+|&!$*);~-/,%_>?`:#@'="abcdefghijklmnopqr^stuvwxyz[]{ABCDEFGHI}JKLMNOPQR\STUVWXYZ01234567897-./% <=2&?'@Z{[lP}M]\Nk`Kaz^L~no|_myOС !"#$()*+, 01345689:;>ABCDEFGHIQRSTUVWXYbcdefghipqrstuvwx7-./% <=2&?'@O{[lP}M]\Nk`Kaz^L~no|JZ_myjС !"#$()*+, 01345689:;>ABCDEFGHIQRSTUVWXYbcdefghipqrstuvwx    [.<(+!&]$*);^-/|,%_>?`:#@'="abcdefghijklmnopqr~stuvwxyz{ABCDEFGHI}JKLMNOPQR\STUVWXYZ0123456789fillcharibsifiseekoseeklcasenoerrornotruncoldasciioldebcdicoldibmosyncparevenparnoneparoddparsetsparseswabucaseunblockunable to allocate space for the argument "%s"no value specified for %sunknown operand %s%s: illegal argument combination or already setbs supersedes ibs and obsrecord operations require cbscbs cannot be zerocbs meaningless if not doing record operationsseek offsets cannot be larger than %jdneed exactly one fill charunknown conversion %s%s: illegal conversion combination%s: illegal numeric valueobs must be between 1 and %jdibs must be between 1 and %jdfiles must be between 1 and %jdcount cannot be negativecbs must be between 1 and %jd%s: short input record%s: seek error creating sparse file%s: end of device%s: short write on tape device%s: short write on character devicefiles is not supported for non-tape devicesinput bufferoutput buffertruncating %s%ju+%ju records in %ju+%ju records out %ju odd length swab %s %ju truncated %s %ju bytes transferred in %.6f secs (%.0f bytes/sec) iseek/skip%s: illegal offsetskip reached end of inputoseek/seek%s: write failureư>_ %6s SizeAvailUsedFilesystem%-*s %-*s %*s %*s Capacityifree %*s %*s %%iused Mounted on%-*s %*jd %*jd %*jd %5.0f%% %*jd %*jd %4.0f%% total %sufsBLOCKSIZE=512BLOCKSIZE=1gBLOCKSIZE=1k-l and -t are mutually exclusive.vfs.conflistsysctl(vfs.conflist)malloc failedBLOCKSIZE=1monly one -t option may be specifiedusage: df [-b | -g | -H | -h | -k | -m | -P] [-aciln] [-t type] [file | filesystem ...] abcgHhiklmnPt:%s stats possibly stale/tmp/df.XXXXXXstrdup failedmkdtemp("%s") failed-n(:%&)*+%-/*+-/:<=>:%&)*+-)/%&)*+-/<=>%&*)<=>/%&)*+-:/&|)+-<=>&)<=>&)+-|<=>&|)&|)<=>&)&)<=>|<=>|<=><=>|&)%&|*+-/|<=>:<=>||%&|*+|-/:<=>%*+-/||:<=>                       !"   B[aim3O (ETapmalloc() failed|&=<>+-*/%:()syntax errornon-numeric argumentdivision by zeroyacc stack overflowEXPR_COMPATusage: expr [-e] expression %jd unknown signal %s; valid signals: kill -signal_number pid ... kill -signal_name pid ... kill -l [exit_status]usage: kill [-s signal_name] pid ...-l-soption requires an argument -- sillegal signal number: %s--illegal process id: %s link source_file target_file ln [-Ffhinsv] source_file ... target_dirusage: ln [-Ffhinsv] source_file [target_file]replace %s? not replaced %s %c> %s Ffhinsv&0DN$'3=%I!UB[jyJ1um\\""ab f n r t vLS_COLWIDTHS %lu : %ld : %lu : %u : %u : %i : %jd : %lu : %lu fflagstostrMAC label for %s/%sCOLUMNSCLICOLOR1ABCFGHILPRSTWZabcdfghiklmnopqrstuwxCLICOLOR_FORCEcolor support not compiled in%*lu , total %lu %e %b %T %Y %b %e %T %Y %e %b %R %b %e %R %e %b %Y %b %e %Y %s %*u %-*s %-*s %-*s %3d, 0x%08x %3d, %3d %*s%*jd %5s ls: %s: %s -> usage: ls [-ABCFHILPRSTWZabcdfghiklmnopqrstuwx1] [file ...] usage: mkdir [-pv] [-m mode] directory_name ... m:pv mv [-f | -i | -n] [-v] source ... directoryusage: mv [-f | -i | -n] [-v] source target%s: remove%s: set owner/group (was: %lu/%lu)%s: owner/group changed; clearing suid/sgid (mode was 0%03o)%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: did not terminate normally%s: terminated with %d (non-zero) statusoverride %s%s%s/%s for %s? %scannot resolve %s: %scannot rename a mount pointrename %s to %sfinv%s: destination pathname too long:------,--,"/" may not be removed%s: malloc unlink fileusage: rm [-f | -i] [-dIPRrvW] file ...recursively remove %d dirs and 1 file and %d filesremove %d filesremove %s? %s: -P was specified, but file is not writableoverride %s%s%s/%s %s%sfor %s? %s: is a directory"." and ".." may not be removeddfiIPRrvWPOSIXLY_CORRECTusage: rmdir [-pv] directory ... usage: sleep seconds VRY|YYZunusedswapVersion 6Version 7System V4.1BSDEighth Edition4.2BSDMSDOS4.4LFSHPFSISO9660vinumraidjfsSMDMSCPold DECSCSIESDIST506HP-IBHP-FLtype 9floppyCCDVinumDOC2KRaid%s is not a valid file or linkcannot get disk geometrydisks with more than 2^32-1 sectors are not supported%s read%s: no valid label foundread mbroffsetverbgeom (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 (to edit label) bsdlabel -e [-n] [-m machine] disk (to write label with existing boot program) bsdlabel -w [-n] [-m machine] disk [type] (to read label)usage: bsdlabel disk%s %s %s %s %s %s %s %s %s %s %s %s %s %s # %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 headswitch: %lu # milliseconds track-to-track seek: %ld # milliseconds drivedata: %u partitions: # size offset fstype [fsize bsize bps/cpg] %c: %8lu %8lu %8.8s%8d %5lu %5lu %5.5s %5lu %5lu %5u %5lu %5lu %5d%20.20s # "raw" part, don't editwrite to disk label supressed - label was as follows:/boot/bootcannot open %sread error %sboot code %s is wrong sizecannot open file %s for writing labelwrite labelwrite bootcodewrite %s%s: unknown disk typesector size 0 sectors/track 0 tracks/cylinder 0 cylinders/unit 0 revolutions/minute 0boot block size 0 boot block size %% sector-size != 0number of partitions (%lu) > MAXPARTITIONS (%d)Too many '*' partitions (%c and %c)unknown multiplier suffix '%c' for partition %c (should be K, M, G or T)partition %c not an integer number of sectorstotal percentage %lu is greater than 100 %ld sectors available to give to '*' and '%%' partitions Cannot find space for partition %c Need more than %lu sectors between %lu and %lu 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 %luline %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 seekline %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 i386amd64ia64pc98alphaUnsupported architectureABb:efm:nRrs:wa -m option must be specified/dev/can't create %scan't reopen %s for readingEDITOR/usr/bin/viyou have too many processesforkre-edit the label? [y]: fopen %susage: clri special_device inode_number ... %s: can't read superblockcannot find file system superblock%s is not a valid inode numberclearing %d usage: dmesg [-a] [-M core [-N system]] aM:N:sysctl kern.msgbufkvm_nlist: %s%s: msgbufp not foundkernel message buffer has different magic numberkvm_read: %sPrimary DOS with 12 bit FATXENIX / file systemXENIX /usr file systemPC-UXExtended DOSPrimary 'big' DOS (> 32MB)OS/2 HPFS, QNX or Advanced UNIXAIX file systemAIX boot partition or CoherentOS/2 Boot Manager or OPUSFreeBSD/NetBSD/386BSDVENIX 286DMCP/M or Microport SysV/ATGBSpeedISC UNIX, other System V/386, GNU HURD or MachNovell Netware 2.xxNovell Netware 3.xxPCIXMinixparameters extracted from in-core disklabel are:cylinders=%d heads=%d sectors/track=%d (%d blks/cyl) Figures below won't work with BIOS for partitions not in cyl 1parameters to be used for BIOS calculations are:sysmid %d (%#04x),(%s) start %lu, size %lu (%ju Meg), sid %d beg: cyl %d/ head %d/ sector %d; end: cyl %d/ head %d/ sector %d system Name %.16s Information from DOS bootblock is:%d: can't read fdisk partition tableinvalid fdisk partition table foundwrite PC98%ss%dFailed to write sector zeroSupply a decimal value for "%s" [%d] %s is an invalid decimal number. Try again. %s [n] yesYESThe data for partition %d is: Do you want to change it? The static data for the slice 1 has been reinitialized to:sysmidsyssidsystem nameSupply a string value for "%s" [%s] Explicitly specify beg/end address ?beginning cylinderbeginning headbeginning sectorending cylinderending headending sectorAre we happy with this entry? fdisk -f configfile [-itv] [disk] usage: fdisk [-Baistu] [-12345678] [disk] Ba:f:istuv12345678statfs("/")^(/dev/[a-z]+[0-9]+)([sp][0-9]+)?[a-h]?$regcomp() failed (%d)mounted root fs resource doesn't match expectations (regexec returned %d)can't get file status of %sdevice %s is not character specialcan't open device %scan't get disk parameters on %scannot open disk %sread_s0%s: %d cyl %d hd %d sec StartPart %11s %11s SID %4d: %11u %11u 0x%02x ******* Working on device %s ******* Do you want to change our idea of what BIOS thinks ?BIOS's idea of #cylindersBIOS's idea of #headsBIOS's idea of #sectorsAre you happy with this choiceMedia sector size is %d Warning: BIOS sector numbering starts with sector 1Partition %d is marked active Active partition number must be in range 1-8. Try again.Do you want to change the active partition?active partitionDo you want to change the boot code? We haven't changed the partition table yet. This is your last chance.Should we write new partition table? -t flag specified -- partition table not written.usage: mknod name [b | c] major minor [owner:group] %s: illegal %s namenode must be type 'b' or 'c'%s: non-numeric major number%s: non-numeric minor numbermajor or minor number too largegroup must be specified when the owner isowner must be specified when the group issetting ownership on %sasynchronousNFS exportednoatimenoexecnosuidnosymfollowwith quotasread-onlyunionnoclusterrnoclusterwsuiddirsoft-updatesmultilabelaclsffsext2fs%s on %s (%s, mounted by , writes: sync %ju async %ju, reads: sync %ju async %ju, fsid %s,%s-oasync%s %s %s %s %u %u 1 1 2 2 0 0forceupdatemsdosexec: mount_%s/sbin:/usr/sbinexec mount_%s not found in %sstatfs %sno mount [-dfpruvw] [-o options] [-t ufs | external_type] special node mount [-dfpruvw] special | nodeusage: mount [-adfpruvw] [-F fstab] [-o options] [-t ufs | external_type]noroadF:fo:prwt:uvgetmntinforqnoautonot currently mounted %s%s: unknown special file or file system%s has unknown file system type/var/run/mountd.pidsignal mountduserquotagroupquotadevrdonlyusage: mount_ufs [-o options] special node %s on %s: mount table full%s on %s: specified device does not match mounted device%s on %s: incorrect super block-o %s: option not supported%s: not a directoryextattgensrripstrictjolietusage: mount_cd9660 [-begjrv] [-C charset] [-o options] [-s startsector] special node cd9660_iconvcannot find or load "cd9660_iconv" kernel moduleUTF-16BEbegjo:rs:vC:could not determine starting sector, using very first sessionusing starting sector %d shortnameslongnamesnowin95 [-W table] special node [-M mask] [-m mask] [-o options] [-u uid]usage: mount_msdosfs [-9ls] [-D DOS_codepage] [-g gid] [-L locale]msdosfs_iconvcannot find or load "msdosfs_iconv" kernel moduleunknown user id: %sunknown group id: %siso22dosiso72doskoi2dosKOI8-Rkoi8u2dosKOI8-Usl9u:g:m:M:o:L:D:W:malloc()stat %sajt}vm.stats.vm.v_swappgsinhaltusage: %s [-%slnpq] [-k kernel] dk:lnpqcannot dump (-d) when halting; must reboot instead/boot/nextboot.confnextboot_enable="YES" kernel="???halted by %srebooted by %sshutdown~SIGTSTP initSIGTERM processesWARNING: some process(es) wouldn't die (can't restart init): j9v˪ڪ*9^9v9ȫ9ԫ7%+7+J%1a[F0nSnnSUI[~[file ...][-b blocksize] [-f file | -P pipecommand] [-s fileno]restore -x [-dhmNuvy]restore -t [-dhNuvy]restore -r [-dNuvy]restore -R [-dNuvy]restore -i [-dhmNuvy]usage: %s %s %s %s %s %s %s %s %s %s %s %s option requires an argument -- %cillegal blocksize -- %sblock size must be greater than 0-P and -f options are mutually exclusive%c and %c options are mutually exclusiveillegal dump number -- %sdump number must be greater than 0b:df:himNP:Rrs:tuvxynone of i, R, r, t or x options specified/dev/sa0Begin incremental restore ./restoresymtableCalculate node updates. Begin level 0 restore Calculate extraction list. Verify the directory structure command lines cannot be continued missing %c ./canonname: not enough buffer space Warning: undefined file type %d restore > %s: out of memory %s %s: no such file or directory %s: not a directory %s: not on extraction list extract directory is used If no `arg' is supplied, the current help or `?' - print this list (useful with ``ls'') 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 cd arg - change directory ls [arg] - list directory Available commands are: %s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%s%sls: out of memory directory reopen failed %s%s: name exceeds %d char %*d verboseverbose mode off verbose mode on setmodeswhatDebugdebugging mode off debugging mode on %s: unknown command; type ? for help restore interrupted, continuedir %10d %s %s: not on the tape ./%uMark entries to be removed. Delete whiteouts %s: REMOVE |ONTAPE|INOFND|NAMEFND|MODECHGcorrupted symbol table name/inode conflict, mktempname %s deleted hard link %s to directory %s [%s] %s: %s|LINK cannot KEEP and change modesNODE and LEAF links to same inode[%s] %s: %s [%s] %s: Extraneous name %s: (inode %d) not found on tape [%s] %s: inconsistent state [%s] %s: impossible state Find unreferenced names. %s: remove unreferenced name unreferenced with flagsRemove old nodes (directories). cannot remove, non-emptyContinue extraction of new leaves Extract new leaves. %d: bad first %s: not found on tape expected next file %d, got %d 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 LEAFMangled directory: reclen not multiple of 4 reclen less than DIRSIZ (%d < %d) bad seek pointer to rst_seekdir %ld error reading directory corrupted directory: bad reclen %d corrupted directory: bad inum %d Warning: `.' missing from directory %s Warning: `..' missing from directory %s Set directory mode, owner, and times. TMPDIR/tmp/%s/rstmode%dmodefile not defined fopen: %s cannot open mode file %s directory mode, owner, and times not set set owner/mode for '.'cannot find directory inode %d error setting directory modes Cannot find directory inode %d named %s write error extracting inode %d, name %s read: %s Extract directories from tape %s/rstdir%d-XXXXXX%s - cannot create directory temporary fopen%s - cannot create modefile fopenopendirfile: %s Root directory is not on tape 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 cannot find entry in parent listnot marked REMOVEDfreeing referenced directoryfreeing non-empty directorylookupino failedlink not foundbad name no space for string table cannot move ROOTno memory to extend symbol table bad name to addentry %s link to non-existent name duplicate entry Check pointing the restore cannot create save file %s for symbol table fwrite: %s output error to file %s writing symbol table Initialize symbol table. no memory for entry table cannot open symbol table file %s stat: %s cannot stat symbol table file %s cannot allocate space for symbol table cannot read symbol table file %s Incremental tape too low Incremental tape too high initsymtable called from command %c Cannot allocate space for tape buffer /dev/ttycannot open %s: %s /dev/nullCannot allocate space for magtape buffer Dump date: %sthe epoch Dumped from: %sLevel %ld dump of %s on %s:%s Label: %s End-of-input encountered while extractingWarning: %s %s Cannot have multiple dumps on pipe input ioctl MTFSF: %s 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 hole in map Unknown conversion character: %c Format of dump tape is too old. Must use a version of restore from before 2002. Note: Doing Byte swapping Checksum error %o, inode %d file %s 8l4s1q8l2q17l2l4qgethead: unknown inode type %d Volume header begins with record %qdDumped inodes map headerUsed inodes map headerFile header, ino %dFile continuation header, ino %dEnd of tape header; predicted %ld blocks, got %ld blocksChanging volumes on pipe input? Otherwise, begin with volume 1. have no further files to extract. can quickly skip tapes that and work towards the first; restore start with the last volume If you are extracting just a few files,You have not read any tapes yet. You have read volumes%s%ldSpecify next volume #: Volume numbers are positive numerics Mount tape volume %ld Enter ``none'' if there are no more tapes otherwise enter tape name (default: %s) none RESTORE_VOLUMECannot set $RESTORE_VOLUME: %s Cannot open %s header read failed at %ld blocks tape is not dump tape Wrong volume (%ld) Wrong dump date got: %s wanted: %slast rec %qd, tape starts with %qd Skipping %ld duplicate record%s. active file into volume 1 mid-media short read error. partial block read: %ld should be %ld 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 partial block read: %d should be %d unexpected tape header unknown tape header type %d resync restore, skipped %ld blocks ran off end of tape not at beginning of a file Missing address (header) block for %s at %ld blocks %s: unknown file mode 0%o skipped socket %s unextracted directory %s extract file %s %s: zero length symbolic link (ignored) extract fifo %s %s: cannot create fifo: %s extract special file %s %s: cannot create special file: %s %s: cannot create file: %s Verify tape and initialize maps tape read error: %s is not a multiple of dump block sizeTape block size (%ld) %s (%d) Tape block size is %ld Tape is not a dump tape cannot stat .: %s bad block size %ld Tape is not volume 1 of the dump no header after volume mark! Cannot find file removal list maxino = %d no memory for active inode map Cannot find file dump list no memory for file dump list warning: cannot rename %s to %s: %s rename %s to %s warning: cannot create whiteout %s: %s Create whiteout %s |REMOVED|TMPNAME|EXTRACT|NEW|KEEP|EXISTED%s is not on the tape %s? [yn] abortdump corebad 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 delwhiteout: not a leafwarning: cannot delete whiteout %s: %s Delete whiteout %s removeleaf: not a leafwarning: %s: %s Remove leaf %s removenode: not a noderemovenode: non-empty directoryRemove node %s newnode: not a nodeMake node %s not on ino listRSTTMP%s%ld%lumktempname: called with TMPNAMEwarning: cannot create symbolic link %s->%s: %s warning: cannot create hard link %s->%s: %s linkit: unknown type %d symbolichardCreate %s link %s->%s Lost connection to remote host. on %s: %s%stcpshell/tcp: unknown service who are you? invalid user name %s RMT/etc/rmtlogin to %s as %s failed. Connection to %s established. IP_TOS:IPTOS_THROUGHPUT setsockoptTCP_NODELAY setsockoptW%d Protocol to remote tape server botched. (rmtgets got "%s"). Protocol to remote tape server botched (code "%s"). I%d %d ioctlL%d %d R%d C O%.226s %d %s: device already in use%s: NSWAPDEV limit reachedusage: %s -a | file ... [-AhklsU] [-a file ... | -d file ...] swapoffAadlhksUswremov%s: %sing %s as swap device vm.swap_infosysctlnametomib()%ld-blocksUsed:Device:%-13s %*s %*s xswdev version mismatch/dev/%-8s %*lld %*lld sysctl()Total: %*lld %*lld callocstrdupcan't get net id for hostFSID:%d:%dunmount of %s failedretrying using path instead of file system ID%s: unmount from %s udpRPCPROG_MNTRPCMNT_UMOUNTcannot remove mounttab entry %s:%s%s:%.*s%s: statfs%s/..%s: stat%s: not a file system root directory%s: unknown file systemfstab reading failure umount -a | -A [-F fstab] [-fv] [-h host] [-t type]usage: umount [-fv] special | node | fsidAaF:fh:t:v/var/db/mounttab%ld %s %s bad mounttab %s field '%s'can't open %s can't write to %swrite mounttab entry %s:%scan't remove %s by hostdelete mounttab entry%s %s:%s===============================================================================,BXȄ/usr/share/misc/init.ee^@^A^B^C^D^E^F^G^H^J^K^L^M^N^O^P^Q^R^S^T^U^V^W^X^Y^Z^[^\^]^_lpr@(#) ee, version 1.4.1This software and documentation containsproprietary information which is protected bycopyright. All rights are reserved.Copyright (c) 1986, 1990, 1991, 1992, 1993, 1994, 1995, 1996 Hugh Mahon ^?-i-e-h-?SHELL/bin/sh-c%c) HOME/rootLANGzh_TW.big5/tmp/ee.XXXXXXXXispell %s~/.init.ee%s.old%s %d written by Hugh Mahon<>!spell>!%smodes menutabs to spaces case sensitive searchmargins observed auto-paragraph formateightbit characters info window right margin leave menusave changesfile menuread a filewrite a filesave fileprint editor contentssearch menusearch for ...spell menuuse 'spell'use 'ispell'miscellaneous menuformat paragraphshell commandcheck spellingmain menuleave editorfile operationsredraw screensettingsmiscellaneousControl 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 menuno fileascii code: sending contents of buffer to "%s" 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" 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 file "%s" is a directorynew file "%s"can't open "%s"file "%s", %d linesfinished reading file "%s", read onlyenter name of file: no filename entered: file not savedchanges have been made, are you sure? (y/n [n]) file already exists, overwrite? (y/n) [n] 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... for the NetBSD project. Execute `man ftp' for more details. lukemLuke Mewburn is the author of most of the enhancements in this ftp client. Please email feedback to . netbsdNetBSD is a freely available and redistributable UNIX-like operating system. For more information, see http://www.NetBSD.org/ versionVersion: %s %s%s `%s' is an interesting topic. auto_put: target `%s' auto_put: URL `%s' argv[2] `%s' %c%c%c421 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. %s:---> PASS PASS XXXXACCT ACCT XXXXNo control connection for command.connect to address %sgetsocknameIPTOS_LOWDELAYsetsockopt %s (ignored)fdopen failed.Connected to %s. SO_OOBINLINE receive sendabortxfer called with unknown direction `%s' aborted. Waiting for remote to finish abort. runique: can't find unique file name. use of scoped address can be troublesomeSO_DEBUGEPSVwrong server: return code must be 229 disabling epsv4 for this connection PASVLPSVPassive mode refused. Passive mode AF mismatch. Shouldn't happen! 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! %c%c%c%d%cparse error! connect for data channelSO_REUSEADDRsetsockopt %slistenEPRT |%d|%s|%s|PORT %d,%d,%d,%d,%d,%dLPRT %d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%d,%dIPTOS_THROUGHPUTpoll waiting before acceptpoll timeout waiting before accept remote abort aborted; closing connection. Lost control connection for abort.%cABOR proxy server does not support third party transfers. No primary connection. PORT %sREST %lldlocal: %s remote: %s sentlocal: %s %s: not a plain file. netoutreceivednetin%s: short writeWARNING! %d bare linefeeds received in ASCII mode. File may not have transferred correctly. Can't change modification time on %s to %susage: %s [-46AadefginpRtvV] [-N netrc] [-o outfile] [-P port] [-q quittime] [-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 [...] no such option `prompt'ftp> no such option `rprompt'Sorry, input line is too long. usage: %s [command [...]] Proxy c%sommands may be abbreviated. Commands are: ?Ambiguous %s command `%s' ?Invalid %s command `%s' getoptionvalue() invoked with NULL namegetoptionvalue() invoked with unknown option `%s'setupoption()FTPSERVERPORThttpftpgateNETRC$NETRC `%s': %scan't create socketunable to get default rcvbuf sizeunable to get default sndbuf sizeFTPMODEactiveunknown $FTPMODE '%s'; using defaultspftpFTPSERVERNeither $FTPSERVER nor GATE_SERVER is defined; disabling gate-ftpTERMdumbbad quit value: %sbad retry value: %s-Tbad throttle value: %s46AadefginN:o:pP:q:r:RtT:u:vVanonymous/.netrc%s/.netrc: %sFTPANONPASSPAGERFTPPROMPTFTPRPROMPTRetrying in %d seconds... %lld byte%s %s in %d day%s %2d:%02d:%02d (%lld.%02d %cB/s) ETA: %02d:%02d (stalled)xsignal_restart called with signal %d %s: transfer aborted because stalled for %lu sec. %3d%% |%.*s%*s| %5lld %c%c %3lld.%02d %cB/s --:-- ETA - stalled -%02d:%02d ETApasswordpasswdmachineMissing macdef name argument. 4K macro buffer exceeded. Unknown .netrc keyword %sError: .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.MDTMREST STREAMTVFSRemote system type is %s. 215 UNIX Type: L8215 TOPS20Remember to set tenex mode when transferring binary files from this machine. features[FEAT_FEAT] = %d features[FEAT_MDTM] = %d features[FEAT_MLST] = %d features[FEAT_REST_STREAM] = %d features[FEAT_SIZE] = %d features[FEAT_TVFS] = %d sorry, arguments too long. (%s) PWDgot remotecwd as `%s' ftpXXXXXXXXXXunable 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. SIZE %sMDTM is not supported by remote server. MDTM %s191Y2K warning! Incorrect time-val `%s' received from server. Converted to `%s' %04d%02d%02d%02d%02d%02dCan't parse time `%s'. got localcwd as `%s' Unable to determine real path of `%s'crankrate invoked with unknown signal: %demacsContext sensitive argument completionftp-complete^Iunable to set sndbuf size %dunable to set rcvbuf size %disipv6addr: got %d for %s Unable 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 copyUnknown port `%s', using port %dftp_login: user `%s' pass `%s' host `%s' Name (%s:%s): Name (%s): Password:Login failed.$initAlready connected to %s, use close first. usage: %s host-name [port] gateserver not defined (shouldn't happen)Connecting via pass-through server %s non-printstream$tI4W^ ;BIP&--T1=u"#$%(%&"I'}'C$$$$$$$$$$$%$4$$=====Define an environment variableundefineUndefine an environment variableMark an environment variable for automatic exportunexportDon't mark an environment variable for automatic exportSend an environment variableList the current environment variablesPrint help informationUse local special character definitionsimportUse remote special character definitionscheckVerify remote special character definitionscrmodlogouttoggleslcenvironopieautoflushflushing of output when sending interrupt charactersflush output when sending interrupt charactersautosynchautomatic sending of interrupt characters in urgent modesend interrupt characters in urgent modeskiprcdon't read ~/.telnetrc fileskip reading of ~/.telnetrc filesending and receiving of binary datainbinaryoutbinarysending of binary datacrlfsending carriage returns as telnet mapping of received carriage returnsmap carriage return on outputlocalcharslocal recognition of certain control charactersrecognize certain control charactersturn on socket level debuggingnetdataprinting of hexadecimal network data (debugging)print hexadecimal representation of network trafficprettydumpoutput of "netdata" to user readable format (debugging)print user readable output for "netdata"viewing of options processing (debugging)show option processingtermdata(debugging) toggle printing of hexadecimal terminal dataprint hexadecimal representation of terminal trafficcharacter to toggle local echoing on/offcharacter to escape back to telnet command moderloginrlogin escape charactertracefilefile to write trace information toThe following need 'localchars' to be toggled trueflushoutputcharacter to cause an Abort Outputinterruptcharacter to cause an Interrupt Processcharacter to cause an Abort processcharacter to cause an EOF The following are for local editing in linemodecharacter to use to erase a charactercharacter to use to erase a linelnextcharacter to use for literal nextcharacter to cause a Suspend Processcharacter to use for line reprintworderasecharacter to use to erase a wordcharacter to use for XONcharacter to use for XOFFforw1alternate end of line characterforw2aytalternate AYT characteraoSend Telnet Abort outputSend Telnet 'Are You There'Send Telnet BreakbreakSend Telnet Erase CharacterSend Telnet Erase LineSend current escape characterSend Telnet 'Go Ahead' sequenceSend Telnet Interrupt ProcessintpintrnopSend Telnet 'No operation'eorSend Telnet 'End of Record'Send Telnet 'Abort Process'Send Telnet 'Suspend Process'Send Telnet End of File CharacterPerform Telnet 'Synch operation'getstatusSend request for STATUSDisplay send optionsdontwillwontDisable LINEMODE option(or disable obsolete line-by-line mode)Enable LINEMODE option(or enable obsolete line-by-line mode)These require the LINEMODE option to be enabledEnable signal trapping+isig-isigDisable signal trappingEnable character editing+edit-editDisable character editingEnable tab expansion+softtabs-softtabsEnable literal character echo+litecho-litechoDisable literal character echokludgeline%s sequence challenge /usr/bin/opiekey%-15s %s usage: send %s "value" must be from 0 to 255Valid options are: '%s': ambiguous argument ('send %s ?' for help). '%s': unknown argument ('send %s ?' for help). '%s': bad value ('send %s ?' for help). ?Need to be connected first.setsockopt (SO_DEBUG)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.%-15s toggle %s display help informationenabledisable%-15s %s %s Need an argument to 'toggle' command. 'toggle ?' for help. '%s': ambiguous argument ('toggle ?' for help). '%s': unknown argument ('toggle ?' for help). WillWon'tTelnet 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). %s set to "%s". %s character is '%s'. Need an argument to 'unset' command. 'unset ?' for help. '%s': unknown argument ('unset ?' for help). '%s': ambiguous argument ('unset ?' for help). %s reset to "%s". ?Need to have LINEMODE option enabled first.'mode ?' for help.format is: 'mode Mode', where 'Mode' is one of: 'mode' command requires an argumentUnknown mode '%s' ('mode ?' for help). Ambiguous mode '%s' ('mode ?' for help). won't%-15s [%s] %-15s "%s" ?Ambiguous argument '%s'. ?Unknown argument '%s'. Deprecated usage - please use 'set escape%s%s' in the future. new escape character: Deprecated usage - please use 'toggle crmod' in the future.%s map carriage return on output. Fork failed ExeclConnection closed.fromquitNeed an argument to 'slc' command. 'slc ?' for help. '%s': unknown argument ('slc ?' for help). '%s': ambiguous argument ('slc ?' for help). Need an argument to 'environ' command. 'environ ?' for help. '%s': unknown argument ('environ ?' for help). '%s': ambiguous argument ('environ ?' for help). only Need %s%d argument%s to 'environ %s' command. 'environ ?' for help. DISPLAYunix:USERLOGNAMEPRINTERCannot send '%s': Telnet ENVIRON option not enabled Cannot send '%s': variable not defined %c %-20s %s notmuchOperating with LINEMODE optionLocalNo%s line editing %s catching of signals Operating in obsolete linemodeOperating in single character modeCatching signals locallyRemote%s character echo %s flow control No connection.Escape character is '%s'. need at least one argument for 'send' commandNeed %d argument%s to 'send %s' command. 'send %s ?' for help. 'send ?' for helpThere 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 networkbuffer, if this might help.)Unknown send argument '%s' 'send ?' for help. Ambiguous send argument '%s' 'send ?' for help. Telnet 'send' error - argument disappeared! SENT%s> ?Ambiguous command?Invalid commandCommands may be abbreviated. Commands are: ?Ambiguous help command %s ?Invalid help command %s ?Already connected to %s (to) -ausage: %s [-l user] [-a] [-s src_addr] host-name [port] hostname too long for unix domain socket: %sBad source route option: %s setsockopt (source route)telnet: setsockopt (IP_TOS) (ignored)Unable to connect to remote host/.telnetrc?Ambiguous command: %s ?Invalid command: %s ?Need to be connected first for %s. telnet: socketConnection closed by foreign host. [host-name [port]][-r] [-s src_addr] [-u] [-e char] [-l user] [-n tracefile] [-4] [-6] [-8] [-E] [-L] [-N] [-S tos] [-c] [-d]usage: %s %s%s%s%s rlog; will try to use default TOS: Bad TOS argument '%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:uxySetSockOptsleep(5) from telnet, after select: %s UNKNOWNlm_will: no command!!!lm_will: not enough room in bufferlm_wont: no command!!!lm_do: no command!!!lm_do: not enough room in bufferlm_dont: no command!!!lm_mode: not enough room in bufferslc_import: not enough roomremote defaultremoteSpecial characters are %s values slc_end_reply: not enough roomenv_opt_start: malloc()/realloc() failed!!!SYSTEMTYPEJOBACCTenv_opt_add: realloc() failed!!!%c%c%c%c%s%c%cNo room in buffer for terminal type. %c%c%c%c%ld,%ld%c%cz Remote side does not support STATUS optionIn SUBOPTION processing, RCVDclose SYNCHBRKIPAOAYTEORABORTSUSPRPLNEXTFORW1FORW2MCLMCRMCWLMCWRMCBOLMCEOLINSRTOVERECREWREBOLEEOLBINARYRCPSUPPRESS GO AHEADTIMING MARKRCTENAOLNAOPNAOCRDNAOHTSNAOHTDNAOFFDNAOVTSNAOVTDNAOLFDEXTEND ASCIILOGOUTBYTE MACRODATA ENTRY TERMINALSUPDUPSUPDUP OUTPUTSEND LOCATIONTERMINAL TYPEEND OF RECORDTACACS UIDOUTPUT MARKINGTTYLOC3270 REGIMEX.3 PADNAWSTSPEEDLFLOWLINEMODEXDISPLOCOLD-ENVIRONAUTHENTICATIONENCRYPTNEW-ENVIRONTN3270ECHARSETCOM-PORTKERMITNOPDMARKGASBWILLWONTDONTIACCannot 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"- unknown qualifier %d (0x%x).NEW-ENVIRON SEND INFO " VALUE " VAR " ESC " USERVAR " %03o %s (unknown) %02xHIIHIIHIIHI I Iyou 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 ...HLPRfhvthe -R%c and -h options may not be specified together: %ju:%ju -> %ju:%ju: %ju -> %juusage: chroot [-g group] [-G group,group,...] [-u user] newroot [command] G:g:u:no such group `%s'too many supplementary groups providedno such user `%s'setgroupssetgidsetuid(@ (@-G"'H" """"Β\Mdcjptv} @‘ ʑБܑ֑ @  @*5_<$`CIOV]@d@l t{ ][܄.F @K{ @!\[RŒqے%;̢%:k>QTaKqmh)G0Gȓړ{&`G!2LDSVhk}HT֔`E|&47EDZo׉.ƕɕڕݕ"H@   !G=@" "" """   !"G""""0""" ""> I"""""TRZeS"""Y98O< AP^"F""VN"X\`b"Jd""" D"7Q;?BK"E "U"M"W[_aCLc""]":""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""""2 ' "("   !-.60""("""""""""""""""""""""""""""""$""""""""""""""""""""""""#&"1"""""/"""""5"%""""""""#&"1"""""/""""""5"%""""""MN$ O\Q'DJULb{:;FÖW0ӖX[t \9<JcEm78ؤ?AϗB4ۗa=\e@#H2G,DZSnY}UTVKȦ͘Pژ_`HSxT"I+IbVr]dcę̙>ۙ9^C7DDGRlO'a&Шu6}-.H%*1ʚ5ؚ#@/2)*G4]0j3~$+ݛ,<(` (BVj   ʜݜ Pp0K"YuƝڝ'=!P d `(̞X#A̭Xo|WLV|X`Vl<$W@@]|Z,]Y̱HY8|z(YY\WLXTXDX\XdXtXlX8X,ac_(^0dXcD`l_T_bclDccxcx`^,xV08 `h|,t(H<dtpX ҟٟ@ҟ@ٟ@ aҟ@ٟ][#[*[J[[[[[[[[R[][y[[[%-15s-> %s tttttttt@t@t@t@t@t@t@t@t@t@t@t@t@t@t@t@t@t@t@t@t@t@t@t@t@t@t@t@t@t@t@t@t@t@t@t@t@t@t@t@t@t|tut@t@tntgt@t@t@t@t@t@t@t`t@t@t@tYt@tRt@tKt/.editrc%s %d ͉͉͉͉͉͉͉[1~[4~OAOBOCODOHOFWH90dFfwdbckytty_sttye[QG@6,DD"DDDD4e}4U_#echotctelltcsettcsettyignbrkbrkintignparparmrkinpckistripinlcrigncricrnlixonixanyixoffimaxbelopostonlcrocrnlonocronoeotonlretxtabscignorecstopbcreadparenbhupclclocalccts_oflowcrts_iflowmdmbuficanonechoeechokechonlnoflshtostopechoctlechoprtechokeflushopendiniextennokerninfoaltweraseextproceol2erase2discardminhas automatic marginshas physical tabsliNumber of linescoNumber of columnskmHas meta keyTab chars destructivexnadd 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 endvi-paste-nextvi-paste-prevvi-prev-big-wordvi-prev-wordVi move to the previous wordvi-next-big-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-big-wordvi-end-wordvi-undoVi undo last changevi-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-charvi-matchVi go to matching () {} or []vi-undo-lineVi undo all changes to linevi-to-columnVi go to specified columnvi-yank-endVi yank to end of linevi-yankVi yankvi-comment-outvi-aliasVi include shell aliasvi-to-history-linevi-histeditVi edit history line with vivi-history-wordvi-redoem-delete-or-listem-delete-next-wordem-yankem-kill-lineem-kill-regionem-copy-regionem-gosmacs-transposeem-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-prevem-delete-prev-chared-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 commandiflag:oflag:cflag:lflag:chars:*?_-.[]~=""no input "%s..." Unbound extended key "%s" %-4s to %-7s-> %s %-15s-> is undefined %-15s-> %s Out of termcap string space. settc: Bad value `%s'. baudrowscols%s: Invalid switch `%c'. Standard key bindings Alternative key bindings Multi-character bindings Arrow key bindings %s %s %s: Invalid command `%s'. %s -> %s 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 ^D / ? : *[]?edit: Bad value `%s'. %c%s %s: Invalid argument `%s'. %*sc-- != 0/usr/src/lib/libedit/tty.cc != -1%s: Unknown switch `%c'. ()[]{}/tmp/histedit.XXXXXXXXXXnewline ignored at right marginVi 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 directionVi comment out current commandVi go to specified history file line.Vi append word from previous input lineVi redo last non-motion commandDelete 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 the character to the left of the cursorDelete 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 charactersClear 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: sequence-lead-in command not allowed key_add: Null extended-key not allowed. key_delete: Null extended-key not allowed. Some extended keys too long for internal print bufferechotc: Warning: Too many required arguments (%d). echotc: Warning: Missing argument. echotc: Termcap parameter `%s' not found. echotc: Warning: unknown termcap %% `%c'. echotc: Bad value `%s' for rows. echotc: Bad value `%s' for cols. echotc: Warning: Extra argument `%s'. %s: Invalid \ or ^ in instring. %s: Invalid \ or ^ in outstring. using dumb terminal settings. No entry for terminal type "%s"; Cannot read termcap database; It has %d columns and %d lines 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(&1?Qj_HiStOrY_V2_ o=- _ W o    ay` ,      4  %    A 4             K C C   Dump of gctl request at %p: error: NULL param: "%s" (%d) [%s%s%d] = error: "%s" %d] = "%s"0] = %pDump of gctl request at NULL Could not allocate memoryNULL request pointer/dev/geom.ctlcan't allocate %u bytes: %s/dev/mem/dev/kmemempty fileexec file name too longbad flags arginvalid address (%x)short readkvm_readkvm_writekvm_write not implemented for dead kernelscannot mmap corefilekernbaseCannot read PDPTcannot read PDPTcannot read IdlePDPTcannot allocate vmcannot read IdlePTDbad namelistcannot read PTDvatop called in live kernel!_kvm_vatop_pae: lseekinvalid address (0x%lx)_kvm_vatop: lseek_kvm_vatop: pde not valid_kvm_vatop: pdpe_pa not found_kvm_vatop: pde_pa not found_kvm_vatop: read_kvm_vatop_pae: read_kvm_vatop_pae: pte not valid_kvm_kvatop: pte not valid_kvm_vatop: address not in dump_kvm_kvatop_pae: pde not valid_kvm_vatop_pae: pdpe_pa not found_kvm_vatop: bootstrap data not in dump_kvm_vatop_pae: bootstrap data not in dump_kvm_vatop_pae: pde_pa not found_kvm_vatop_pae: address not in dump%03d[ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \  \ \ \ \ \  \ \  \ \ \    \ \ \ \ \ \ \ \ \ \  \ \ \  \  \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ \ r \ \ \ \ | \ \ \ \ N \ \ \ a ESCDELAYError opening terminal: %s. CCCMvshdtimhmkmraei1i3kbkakCktkDkLkMkEkSk0k1k;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!3RFF1F2F3F4F5F6F7F8F9FAFBFCFEFGFHFIFJFKFMFNFPFQFUFVFWFXFZFaFbFcFdFeFfFgFhFiFjFkFlFmFnFoFpFqFrcbMCMLMRLfDKCWWGHUQDTOPUfhPAWAu0u2u3u4u5u6u7u8u9IcIpSfSbZAZBZCZDZFZGZHZIZJZKZLZMZNZOZPZQZRZSZTZUZVZWZXZYZZZaZbZcZdZeZfZgZhZiZjZkZlZmZnZoZpZqZrZsZtZuZvZwZxZyKmMiRQGmdvciXyZzYvYwYxYyYzYZS5S6S7S8XhXlXoXrXtXvsAsLbxNllhlwMWCoNCYaYbYcYdYeYfYgYhYiYjYkYlYmYnBTYoYpbwxbxshcdamimshzxonxHCNRNPhlYAYBYCYDYEYFYG/QSJEhKmL&`4~TD)G0G{5J3`|MH4Y{-GkLĹǹʹS͹йӹֹٹܹ߹ƕh}  ZZ%C!$'*-OEI0>u׉3.69<?iOOOǩ?2qGGR9BYEEHKNQTWZ]Hr`cfilorux{~ڕúƺɺ̺ϺҺպغۺ޺Q}P  #&),/258;>ADtGUxJMPSV Y\_bVlehknXqtwz}=I»ŻȻ˻λѻԻ׻{ڻݻ]$}  "%(+.147:=@CFILORUX[^adgjmpsvy|~Isw{%:ļǼʼͼмӼּټܼ߼!&DIX]bglqv{NWI  !$'=5:?*R-0;Wׂ3t"69<$?9BE@HKNY!QTWZ]`cf %:0qSNCURSES_NO_PADDINGCOLORFGBG[4%p1%dm[4%?%p1%{8}%>%t9%e%p1%d%;m[3%p1%dm[3%?%p1%{8}%>%t9%e%p1%d%;m A| e  ù  < x2d2d2dJ2d<2d,2d2d  Out of memory x x  x x x x x x x x x   x x x x x x x x x x x  x x x x x x x x x x x x x x x x x x x x x x x x x x x x x  x x x x x x x x x x   x x x x x x x x x x  x x x  x x x x  9     9 U   9 9  9  9             9 9 9   9              9 J              9         J     j 9      j        " 9  9 a , , a , , , , , , , , ,  ] , , , , , , , , , , , K , , , , , , , , , , , , , , , , , , , , , , , , , , , , , > , , , , , , , , , , > > , , , , , , , , , , > , , , > , , , , >               L               F                  +                             2   V            E   NCURSES_NO_SETBUFLINES'%s': unknown terminal type. terminals database is inaccessible TERM environment must be <= %d characters. '%s': I need something more specific. TERM environment variable not set. Not enough memory to create terminal structure. '%s': I can't handle hardcopy terminals. TERMCAPTERMPATH/usr/share/misc/termcap|:.termcap /usr/share/misc/termcap2Kn,X   `  %Kterminal names must start with letter or digitset_color_pair but no initialize_pairenter_underline_mode but no exit_underline_modeexit_standout_mode but no enter_standout_mode``aaffggiijjkkllmmnnooppqqrrssttuuvvwwxxyyzz{{||}}~~display_clock but no remove_clockenter_alt_charset_mode but no exit_alt_charset_modeexit_alt_charset_mode but no enter_alt_charset_modeenter_bold_mode but no exit_attribute_modeenter_blink_mode but no exit_attribute_modeexit_alt_charset_mode but no acs_charsenter_alt_charset_mode but no acs_charsremove_clock but no display_clockenter_am_mode but no exit_am_modeexit_am_mode but no enter_am_modeenter_xon_mode but no exit_xon_modeexit_xon_mode but no enter_xon_modesave_cursor but no restore_cursorrestore_cursor but no save_cursorfrom_status_line but no to_status_lineto_status_line but no from_status_lineenter_reverse_mode but no exit_attribute_modeenter_protected_mode but no exit_attribute_modeenter_secure_mode but no exit_attribute_modeenter_insert_mode but no exit_insert_modeexit_insert_mode but no enter_insert_modeenter_dim_mode but no exit_attribute_modeenter_delete_mode but no exit_delete_modeexit_delete_mode but no enter_delete_modeexit_ca_mode but no enter_ca_modeenter_ca_mode but no exit_ca_modeexit_underline_mode but no enter_underline_modeenter_standout_mode but no exit_standout_moderesolution of use=%s failedName collision between %slabel_off but no label_onprtr_on but no prtr_offprtr_off but no prtr_onmeta_off but no meta_onmeta_on but no meta_off/usr/share/misc/terminfoTERMINFO%c/%.*sTERMINFO_DIRSk(/-:K2h6E)G;0GALFL&`RGX^~bTh!nR9sYx  kil1kcbtkelkclrkdch1kdl1kcud1krmirkhomekich1kICkcub1kcuf1kentkhtskcuu1primary name%s `%.*s' may be too longnumericunknown capability '%s'%s$<%d>unknown token typeno value for ko capability %sbooleanextended capability '%s'wrong type used for %s capability '%s'acsc string synthesized from XENIX capabilitieshardware tabs with a width other than 8: %dunknown capability `%.*s' in ko string%s (%s) already has an explicit value %s, ignoring koacsc string synthesized from AIX capabilitiesko translation table is invalid, I give up%s (%s termcap extension) aliased to %s%s (%s terminfo extension) ignoredEntry does not start with terminal names in column one%s (%s terminfo extension) aliased to %s%s (%s termcap extension) ignoredhardware tabs with a non-^I tab string %s%s/.terminfoVery long string found. Missing separator?Non-octal digit `%c' in \ sequenceIllegal character %s in \ sequenceCan't backspace off beginning of lineIllegal character (expected alphanumeric or %s) - %sMissing separator after `%s', have %swhitespace in name or alias fielddubious character `%c' in name or alias fieldslashes aren't allowed in names or aliasesSeparator inconsistent with syntaxIllegal ^ character - %sAllow ^? as synonym for \177Premature EOFIllegal character - %sempty longname field$[]!*?no value given for `%s'Missing separatorpremature EOFXt v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v v |v v |v v v v tv lv dv @%&*!#font0s0dsIBMfont1s1dsfont2s2dsfont3s3dskbtabkselksltBOAT&TCICVXSEEXENIXGSCFCOHMLDPNPSG6G7G8GrGuGdGhGvGcGGkqIRISKATekKBKCKDKEKFBCxsbxhpxenlmsgresloknxonmc5ichtsnrrmcnpcndscrcccbcehlsxhpacrxmdaisyxvpasamcpixlpixxmcwslnlabwnumncvbufszspinvspinhmaddrmjumpmcsnpinsorcorlorhiorvicpswidcsbtnsbitwinbitypecsrcmdchcivismrcupcnormcvvisdslsmacsblinksmcupsmdcdimsmirinvisprotsmulechrmacssgr0rmdcrmsormulflashfslis1is2is3kbsktbckctabkf0kf1kf10kf2kf3kf4kf5kf6kf7kf8kf9kllknpkppkindkrirmkxsmkxlf0lf1lf10lf2lf3lf4lf5lf6lf7lf8lf9rmmsmmpadindnrinpfkeypflocpfxmc0mc4mc5rs1rs2rs3windtsliprogka1ka3kb2kc1kc3mc5prmpacscplnsmxonrmxonsmamrmamxoncxoffcenacssmlnrmlnkbegkcankclokcmdkcpykcrtkendkextkfndkhlpkmrkkmsgkmovknxtkopnkprvkprtkrdokrefkrfrkrplkrstkresksavkspdkundkBEGkCANkCMDkCPYkCRTkDCkDLkENDkEOLkEXTkFNDkHLPkHOMkLFTkMSGkMOVkNXTkOPTkPRVkPRTkRDOkRPLkRITkRESkSAVkSPDkUNDrfikf11kf12kf13kf14kf15kf16kf17kf18kf19kf20kf21kf22kf23kf24kf25kf26kf27kf28kf29kf30kf31kf32kf33kf34kf35kf36kf37kf38kf39kf40kf41kf42kf43kf44kf45kf46kf47kf48kf49kf50kf51kf52kf53kf54kf55kf56kf57kf58kf59kf60kf61kf62kf63el1mgcsmglsmgrflnsclkdclkrmclkcwinwingohupqdialpulsewaitinitcinitpscpsetfsetbcpilpichrcvrdefcswidmsdrfqsitmslmsmicmsnlqsnrmqsshmssubmssupmsumrwidmritmrlmrmicmrshmrsubmrsupmrummhpamcud1mcub1mcuf1mvpamcuu1pordermcudmcubmcufmcuuscssmgbsmgbpsmglpsmgrpsmgtsmgtpsbimscsdrbimrcsdsubcssupcsdocrzeromcsnmkmousreqmpgetmsetafsetabpfxldevtcsinsmglrsmgtbbirepbinelbicrcolornmdefbiendbisetcolorslinesdispcsmpchrmpchsmscrmscpctrmscescscesaehhlmelhlmelohlmerhlmethlmevhlmsgr1slengthOTi2OTrsOTugOTbsOTnsOTncOTdCOTdNOTnlOTbcOTMTOTNLOTdBOTdTOTknOTkoOTmaOTptOTxrOTG2OTG3OTG1OTG4OTGROTGLOTGUOTGDOTGHOTGVOTGCmemlmemubox1sy~~~~-~~"G4[G{ x:4-pڕƕʹ?<˻A.F~Ѧܹ # & ) , /  D ,T D  d 8x0  L 8 $  P d8hL8  4T  dD $ @X@$,P P,  h x 0  \ 4@ p X`  d | p Dp< Dt  pt,`t  0   @` <   P  p  D0 $  8 lt  < X@ h L @,l  8(|  P D L  P X \x|l 4   Ll   P  h0 HpD ( |H tt X   l8$8x (4 ,\  X4,,T4\\  d (p (H L <h Xx (  \H  \ l $ hX P 4 d*R-0;Wׂ3 t" 6  9 <$?9BE@HKNY!QTWZ ]!`"c#f$NW  I     !$' /QSJEhKm  L &` 4 ~TD)G0G{5J 3!"`#|$M%&H'()*+,4-Y.{/0f12-3G4k5L6789Ĺ:ǹ;ʹ<S=͹>й?ӹ@ֹAٹBܹC߹DEFGHIJKƕLMNhOPQR}ST U VWZZX%YZC[\#]^_`a!b$c'd*efx-gOhEiIjkl0m>un׉opo3q.r6st9uv<w?xiyOzO{O|ǩ}~?2qGGR9BYEEHKNQTWZ]%Hr`cufilor~ux{~ڕtamd v`Wúƺɺ̺ϺҺպغۺ޺Q}P z #&.)',/2X5(8;>/ADtGUx5J6M7P8S9V: ;Y<\=>_?b@VABlDeEhknXqtwz}^     =I»ŻȻ˻λѻԻ׻{ ڻ!ݻ"#$%&'(])$*+,-./0123}4 50 6789:;<"=%>(?+@.A1B4C7Dg:E=Fh@GCHFIIJLKOLRMUNXO[P^QaRdSgTjUmVpWsXvYyZ|[\]^_`abcdefg~hIijklsmCwn{opU%:qrstuvwxyz{|}e~fgļhǼiʼͼмӼּټܼ߼=!% &'"#!&%:(0)5$:%?&DI{q*S+X]bglqv{8.,8,/,`(0+&p6h53#3*<.8&\/@9(5437 13d9l4P8P,$&'(t82#(7+(43#.9L3&T.h&D2* )L*+8@-49X3-(D#x4*+%p-"H45T40%)* 54,56/d$P54p$%(3,'T7x( ,%5&@'#'" 42d3$$5X9d6L63h/.3/x7H79123p3p9@$.t,9&76,2@39$7`%X$(&96,28)d*+)8/ 784p'654P#x%h)*5$$%6-`42('7,9**t52+: .)H(%+-7|3H.7$8#\54)(#(-<4X*3D,.D8t/L'6*'+604%3"9`+\8/9D54t&%77%070&8/4#|69d-\2#D)p*$46/8<+D&'24(t)*T+x+'4'4/,h,7988H+l7$( (589'77/L9'd'/'<($T(69\,-$X6@63%`7"9$65083|98,08,##$+t#)23,4-",868*546782h8@*&$/(9l%85(6P)|*/'-h#L-D/\&)*)5"868 8(*4*) %)5&"*R!%)Wׂ3 t" 6  N .$3?99>CHNRX\`din t!y"}#$N  I  O W.) D.SG Z IG Օ  c iDy<B &,15: @!@"Z#E$J%N&T'Z(Y)M*^+c,h-Y.n/r0v1;z2L-3Y4)5L6~7869b:;;A<F=L>2?:@ABCDEFG=HIJKRLXM(NbOPQRhST7UisVxWQXYZ[\]^!_`abc^de fjghqHi0GjkHlmGnopqrs3!t'u+v/w3xdy7z;{?|~ǩ}~qϒ/DCWHELRVZ^bfkot-x~6nF P!&+05e:?DHLQV[`e ^jHoty~+ !"#$% &()*"+',,-1.6/;0@E2J3O4T5Y6^7c8h9m:rw<|=>?@ABCD F G H I OL%YOzOdOoO׻{ ڻ!ݻ"#$%&'(])$*+ ,-.E/0!1%2)3-42586>7C8G9M:R;X<N]=c>i?m@sAxB|CDpEFGHIJK5LM/NOPQRSTUVWXYZ[X\ ]^|_`a%b[*cid0e6fW;gAhGiLjQkylmnmoVp\qbrhsntsu{vwxytz{|}R~!% &'"#$ )(.)3$8%=&BGL*Q+V[`ejoty~<yI'm confused%'%{%{127}%^string too complex to convert%{96}%^string may not be optimal%Pa%ga$</>%2d%3dsaw %%r twice in %ssaw %%n twice in %ssaw %%m twice in %s%-%c%+%c%\%{2}%*%-%{10}%/%{16}%*%{10}%m%+%?%>%t%+%;%/\%03o%>%%?%%{%d}%%>%%t%%{%d}%%+%%;%%?%%{%d}%%>%%t%%'%c'%%+%%;%%?%%'%c'%%>%%t%%{%d}%%+%%;%%?%%'%c'%%>%%t%%'%c'%%+%%;%%{%d}%%+%%c%%'%c'%%+%%c%n%B%D%.doxX.%runknown %% code %s (%#x) in %s         L  υ   6     Ȉ            Ȉ                             m `  G  :   ·         b ݇    $                Ή  > > > > > > > > > >           > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > > >   > > > >  > > > > > > l > > b `~@~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~[~\~]~^~_P   #s +p8j::K; sp;q:.r;;Iv;vo6toT(?u)m3@tq=2mNPvV:raL:$>PH~P  vda;ճA;:r,x#m:UD>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>????? ? ?????????? ?"?$?&?(?*?,?.?0?2?4?6?8?:??@?B?D?F?H?J?L?N?P?R?T?V?X?Z?\?^?`?b?d?f?h?j?l?n?p?r?t?v?x?z?|?~????????????????????????(null)(cancelled)\%03lo, line %d, col %d, terminal '%s'back_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_1init_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_keysauto_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_eolC\TDD*D1\7DQ?DQD`DlDxDDDDDDDDDzHD EE0EAEQE_EqEEEEEEEEFF+F8FIFZFmFFFFFFFFFHFFGGG%G,G3GMFMNMVM^MfMnMvM~MMMMMMMMMMMMMMMMMNNNN&N.N6N>NFNNNVN^NfNnNvN~NNNNNNNNNNNNNO OO'O5OAOHOSOzO^OiOuOOOOOOOOOOOOOOOOPPP1PCPSPcPoPPPPPPPQQ'Q>QPQeQwQQQQQQQQRRR/R8RFRVRfRwRRRRRRRR SS/S>SPSeS|SSSSSSSSSSS TT&T3T@TMT[TiTzTTTTTTTTU$U9UMU`UpUUUUUUUU VV,V:VHV[VoVVVVVVVVVVVVW WW$W.SGZGՕc iDy<B &,15:@@ZEJNTZYM^chYnrvz-Y)L~6;AFL2:RX(bhsx jqH0GHG!'+/3d7;?ǩqϒ/DCWHELRVZ^bfkot-x~n !&+05:?DHLQV[`e^joty~ "',16;@EJOTY^chmrw|YOzOdOoO׻{ڻݻ]$ !%)-28>CGMRX]cimsx| %*i06;AGLQyV\bhns{$BGV[`ejoty~ 0W:WJW^WpWWWWWWWWWWW XX,X>XMX\XlX{XXXXXXXXX Y!Y7YFYVYkYNIOW)38=Y[YYYYYY[YZZ Z-Z>ZQZ]ZpZZZZZZZZZZ[ [[5[E[[[k[{[[[[[[[[\%\*R!%)Wׂ3t"6N.$3?99>CHNRX\`dinty} ).LQ/var/log/wtmpinvalid hostnamehumanize_numberBkMGTPEBKMGTPEKMGTPEkMGTPE%lld%s%s%s%d%s%d%s%s%sscale >= 0suffix != NULLbuf != NULL/usr/src/lib/libutil/humanize_number.c\\#0123456789%s: illegal option -- %c %s: option requires an argument -- %c %Y-%m-%d%m/%d/%y%H:%M%H:%M:%S ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ]  ] ] ] ] ]  ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ] ]       ] o o ] ] ]  ]  ] ] '  :  ]    E ] ] ] ] ] ]   o   ] ]  ] C o o  ] ]  ]  i ] ] ]    REG_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_ILLSEQillegal byte sequenceREG_0x%xrepetition-operator operand invalid"can't happen" -- you found a buginvalid argument to regex routine*** unknown regexp error code ***/etc/mac.confMAC_CONFFILEdefault_labelsdefault_ifnet_labelsdefault_file_labelsifnetdefault_process_labelspacket.=security.mac.security.mac                                 NLSPATH/usr/share/nls/%L/%N.cat:/usr/share/nls/%N/%L:/usr/local/share/nls/%L/%N.cat:/usr/local/share/nls/%N/%Lconnect to address %s: RSHrcmd: socket: %s rcmd: too many files rcmd: getaddrinfo: %s rcmd: %s: %s rcmd: accept: %s .rhosts fstat failed/etc/hosts.equiv.rhosts lstat failed.rhosts not regular filebad .rhosts ownerrcmd: socket: All ports in use rcmd: write (setting up stderr): %s rcmd: select (setting up stderr): %s socket: protocol failure in circuit setup. select: protocol failure in circuit setup .rhosts writeable by other than ownerPOSIXUS-ASCII              z z z z z z z l l l l l l l l l l l l [ [ [ [ [ [ [ [ [ [ [ [ 4 4 4 4 4 F   o _ O  < 0%X p p p p p p     u h [ p p p p p p p p p p p p p p p p p p N  K / "       ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ; ;  ; ; ; ; ; ; ; ; ; ; ;         ; ; ; ; ; ; ; ; ; ; ; ; ;  ; ; ; ; ; ; ;  ; ; ; ; ; ; ; ; ; ; ; ; ; ;  ; A ; ;   ; ; ;  ; ; ; ; ; ; ;  ; ; ;    ;  __libc_allocate_tlstcbsize >= 2*sizeof(Elf_Addr)/usr/src/lib/libc/gen/tls.cnosappndnosappendnoarchnoarchivednoschgnoschangenosimmutablenosunlnknosunlinknosnapshotnouappndnouappendnouchgnouchangenouimmutablenodumpnoopaquenouunlnknouunlink , zzzzzzzzz{{ {3{C{O{[{f{{{{{{{{{{{|*|B|V|j||zdz|||܄|||J{|||{"||||||||||S||Signal 0HangupInterruptQuitIllegal 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 2abrtemtfpebussegvsystermurgcontchldttinttouioxcpuxfszvtalrmprofwinchusr1usr2                                 BLOCKSIZE%ld%s-blocksminimum blocksize is 512%s: unknown blocksizemaximum blocksize is %ldG/boot/kernel/kernelnfs4/etc/fstabfstab: PATH_FSTAB/etc/disktabremovabledtsusimulated#NODEV#%c:%d:0x%xkern.devname_COMPAT_FreeBSD_4/etc/compat-FreeBSD-4-util%04d%4d%e-%b-%Ystrftime format "%s" all localesthe current localeNULL strftime format some locales@ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ H ~ o ~ ~  ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~ ~    6 M d ˂ {  ~ ~ ~ Հ ~  ~ ~   : Q ˂  ΁  f ~ ~ ~ ~  ~ ݁   6 N ~ ˂  ~  Ӄ    ~ & ~ A $   P g  ̄ ~ CHECK_STRFTIME_FORMATS_FOR_TWO_DIGIT_YEARSyields only two digits of years in shut up gccNULSOHSTXETXEOTENQBELalertBSVTvertical-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[:<:]][:>:]]UTF-8                  X l                                                                                          x P  x  x x x  x x x x x x x  x x x x x x x x x x x x x x x  rcmdsh: dup2 failed/usr/bin/rshrcmdsh: setuid(%u): %s rcmdsh: socketpairrcmdsh: getaddrinfo: %s rcmdsh: fork failedrcmdsh: unknown user: %s rcmdsh: execlp %s failed: %s rcmdsh: fork to lose parent failedInvalid value for ai_flagsai_family not supportedMemory allocation failureai_socktype not supportedInvalid value for hintsResolved protocol is unknownUnknown errorAddress family for hostname not supportedTemporary failure in name resolutionNon-recoverable failure in name resolutionNo address associated with hostnamehostname nor servname provided, or not knownservname not supported for ai_socktypeSystem error returned in errnoalnumblankcntrllowerpunctupperxdigitideogramphonogramruneLj͈Rӈ Д@و߈ LC_ALLLC_COLLATELC_CTYPELC_MONETARYLC_NUMERICLC_TIMELC_MESSAGESPATH_LOCALE/usr/share/locale      j ^[yY]^[nN]f& z& H& r& j& H& H& H& H& H& H& H& b& H& H& H& Z& H& R& H& H& H& H& H& H& H& H& H& H& H& H& H& & z& H& r& j& H& H& H& H& H& H& H& b& H& H& H& Z& H& R& %s.dbexecvP: : path too long /usr/bin:/binK7 K7 5 K7 K7 K7 K7 z6 7 K7 K7 K7 z6 K7 K7 K7 K7 K7 K7 K7 5 K7 K7 K7 K7 K7 z6 K7 K7 K7 K7 K7 K7 K7 K7 K7 K7 K7 K7 K7 K7 K7 K7 K7 K7 K7 K7 K7 K7 K7 K7 K7 K7 K7 K7 K7 K7 K7 K7 K7 K7 K7 5 5 JanFebMarAprMayJunJulAugSepOctNovDecJanuaryFebruaryMarchAprilJuneJulyAugustSeptemberOctoberNovemberDecemberSunMonTueWedThuFriSatSundayMondayTuesdayWednesdayThursdayFridaySaturday%a %b %e %H:%M:%S %YPM%a %b %e %H:%M:%S %Z %Y%I:%M:%S %p $(,048<@DHLPXag0mrw~Ō̌Ԍތ+mmFM PXag0mrw~'NONEEUCGB18030GB2312GBKBIG5MSKanjiRuneMag1 error: warning: freelist is destroyed modified (chunk-) pointer pointer to wrong page chunk is already free modified (page-) pointer page is already free /etc/malloc.confMALLOC_OPTIONSrecursive call mmap(2) failed, check limits in malloc(): in free(): in realloc():junk pointer, too high to make sense junk pointer, too low to make sense unknown char in MALLOC_OPTIONS malloc() has never been called j Ph j Ph Ph k Ph Ph Ph Ph Ph Ph k Ph k Ph Ph Ph Ph Ph Ph Ph zk Ph Ph jk Zk Ph Jk Ph :k Ph Ph Ph Ph Ph Ph *k Ph Ph Ph Ph Ph Ph k Ph  k Ph Ph Ph Ph Ph Ph Ph j Ph Ph j j Ph j Ph j Internal ypbind errorDomain not boundUnknown ypbind error: #%d /var/yp/binding%s/%s.%dclntudp_createclnttcp_createfcntl: F_SETFDyp_match: clnt_callyp_first: clnt_callyp_next: clnt_callyp_all: clnt_callclnttcp_create failedyp_order: clnt_callyp_master: clnt_callyp_maplist: clnt_callYP unknown error %d Database is busyAccess violationServer data base is badLocal domain name not setCan't communicate with ypservCan't communicate with ypbindYP server errorNo such key in mapRPC failureRequest arguments badSystem resource allocation failureYP: server for domain %s not responding, retrying YP server version mismatch - server can't supply service.Can't communicate with portmapperNo more records in map databaseLocal resource allocation failureNo such map in server's domainCan't bind to server which serves this domain  ڇ Ӈ ̇ Ň           x RPC: 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 protocolAuthentication OKInvalid client credentialServer rejected credentialInvalid client verifierServer rejected verifierClient credential too weakInvalid server verifierFailed (unspecified error)RPC: (unknown error code); s1 = %u, s2 = %u; why = ; errno = %srpch != NULL - RPC: Incompatible versions of RPCRPC: Server can't decode argumentsRPC: Failed (unspecified error); low version = %u, high version = %u/usr/src/lib/libc/rpc/clnt_perror.c(unknown authentication error - %d)є $>WuDԕh2Me~clnt_sperror$ $ $   $ < L $ < $ $ $ $ $ $ $ $ clnt_perrorclnt_spcreateerrorclnt_pcreateerrorCould not get %s transportloopbacksvc%s_create: could not open connectionout of memoryunsupported transport sizecan't get protocol infocan't find appropriate transport%s: %srpc_reg: %s couldn't register prog %u vers %u for %s%s can't reassign procedure number %u%s cant find suitable transport for %srpc: rpc_reg: never registered prog %u vers %urpc: rpc_reg trouble replying to prog %u vers %unetpathsvc_sendreply failedsvc_tli_create: bad service typesvc_tli_create: could not get transport informationsvc_tli_create: could not bind to requested addresssvc_tli_create: could not bind to anonymous portsvc_tli_create: could not open connection for %ssvc_tli_create: invalid netconfigsvc_tp_create: Could not register prog %u vers %u on %ssvc_tp_create: invalid netconfig structure for prog %u vers %usvc_create: could not register prog %u vers %u on %ssvc_create: no memorysvc_create: unknown protocolcould not allocate cache cache already enabledsvc_enablecache: %s %sout of memory transport does not support data transfercould not get transport informationsvc_dg_create: %scould not allocate new rpc buffervictim alloc failedvictim not foundcache_set: %sfifo<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_destroyread_vcwrite_vcsvc_vc_statsvc_vc_recvsvc_vc_getargssvc_vc_freeargssvc_vc_replymakefd_xprtsvc_fd_createrendezvous_requestxprt != NULLfd != -1svc_vc_create: out of memory/usr/src/lib/libc/rpc/svc_vc.csvc_vc: makefd_xprt: out of memorysvc_tcp: makefd_xprt: out of memorysvc_fd_create: no mem for local addrsvc_fd_create: could not retrieve remote addrsvc_fd_create: could not retrieve local addrsvc_vc_create: could not retrieve local addrsvc_vc_create: no mem for local addrxprt_register__xprt_do_unregistersvc_findsvc_registersvc_sendreplysvcerr_noprocsvcerr_decodesvcerr_systemerrsvcerr_authsvcerr_weakauthsvcerr_noprogsvcerr_progverssvc_getreqset/usr/src/lib/libc/rpc/svc.cprev != NULLdispatch != NULLreadfds != NULLxdr_callmsgxdrs != NULLcmsg != NULL/usr/src/lib/libc/rpc/rpc_callmsg.cpmap_rmtcallxdr_rmtcall_argsxdr_rmtcallresport_ptr != NULLaddr != 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 memorywindow verifier mismatchtimestamp before last seensvcauth_des: %s decryptsessionkeybad nicknamegetpublickeyreplayed credentialtimestamp expiredinvalid usecsdecryption failureencryption failureinvalid nicknameunknown netnamemissed ucred cache/etc/publickey # publickey.bynameBad record in %s -- %sBad 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_marshalmarshal_new_authauthunix_validateauthunix_refreshauthunix_destroyauth != NULLverf != NULL/usr/src/lib/libc/rpc/auth_unix.cauth_none.c - Fatal marshalling problemauthunix_create: out of memoryunixnetid.byname/etc/netid ,getnetconfig: %scould not close() fd %d; mem & fd leakinetclnt_dg_create: out of memoryA B D 1D C LD ZD C A A B C %C :C OC ZC oC A A C D xdr_authunix_parms/usr/src/lib/libc/rpc/authunix_prot.cdnsnissetpwentendpwentgetpwuid_rgetpwnam_rgetpwent_r/etc/spwd.db/etc/pwd.dbVERSIONpasswd_compatmaster.passwd.by%s##passwd.adjunct.bynamepasswd-%ldeQ X 0Y 4a eQ X 0Y 4a eQ X 0Y 4a eR n i $b eR n i $b eR n i $b i n 0Y X Unsupported password database version %dgetpwent memory allocation failure, /etc/netgroupnetgroup.byhost*.**.%s%s.%s%s.*netgroup.byusersetgrentendgrentgetgrent_rgetgrnam_rgetgrgid_r/etc/groupgroup_compatgroup.bynamegroup.bygidgroup-%lde H  < e H  < e H  < eT   ԉ eT   ԉ eT   ԉ H    getgrent memory allocation failureout of memoryclnt_vc_create%s : %sclnt_vc_createclnt_vc_callclnt_vc_geterrclnt_vc_freeresclnt_vc_control . f y   ¨ Ψ          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.croot uid should be 0no uid for user %scorrupted entry%s uid is incorrect%s gid is incorrectPW_SCAN_BIG_IDS%s > max uid value (%lu)no gid for user %s%s > max gid value (%lu)warning, unknown root shell%s > recommended max uid value (%u)%s > recommended max gid value (%u)/bin/csh/etc/shellsshells-XXXXXshells-%dinitshellse P T   x @     xdrrec_create: out of memoryl  h     d   h    H d udp6tcp6circuit_vdatagram_vcircuit_ninet6%s.%u.%uNdi HњDnxNx  F F F   F F       $ m ) rpc: failed to open /etc/netconfig \ xdr_opaque_authxdr_des_blockxdr_accepted_replyxdr_rejected_replyxdr_replymsgxdr_callhdr_seterr_replyacceptedrejected- "     blkp != NULLar != NULLrr != NULLrmsg != NULLerror != NULL/usr/src/lib/libc/rpc/rpc_prot.cNFINITY2                                          a      I I I I I I I I I I                   =            H                s _     p R > /       H  9     w  <    G i Z 5  K  K K p          K K K K K K K       K K K K K K K K K K K K K K K K K  K K K K K K K K       K K K K K K K K K K K K K K K K K  /etc/hesiod.conflhsrhsHESIOD_CONFIGHES_DOMAINclassesrhs-extensionstringlist: %m       ؗҜ<3#I9=D2[%Cod(sg]AA5?55?5?@?xdr_array: out of memoryxdr_bytes: out of memoryxdr_string: out of memory1.0 1.2 __collate_strdup__collate_substituter>>>>>>r>abcdefABCDEF0BpBpBPBApB0BNETPATHNetconfig database not foundNot enough memoryNot initialized/etc/netconfigtpi_cots_ordtpi_cotstpi_cltstpi_rawin /etc/netconfig. or run mergemaster(8). Continuing in 10 seconds Netconfig database has invalid formatNetid not found in netconfig databaseUnknown network selection errorThe local transport is called "unix" Please change this to "local" manually See UPDATING entry 20021216 for details. This warning will be removed 20030301 `}DLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLLres_send: %s ([%s].%s): %s res_send: %s: %s ;; res_send() ;; old answer (unexpected): ;; old answer: s out-of-bounds;; wrong query name: sendto;; not our server: keventread failedrecvfrom;; response truncated ;; timeout ;; undersized: %d ;; truncated answer server rejected query: read(vc);; got answer: socket(dg)write failedsocket(vc)connect/vckqueueconnect(dg);; Querying server (# %d) address = %s ghbynameghbyaddr/etc/hostsip6.arpaee<e\|# 0123456789abcdef;; res_query(%s, %d, %d) ;; rcode = %d, ancount=%d ;; res_query: mkquery failed;; res_query: send errorHOSTALIASES;; res_querydomain(%s, %s, %d, %d) ;; res_mkquery(%d, %s, %d, %d) /&ndots:timeout:attempts:insecure1insecure2no_tld_queryedns0;; ndots=%d ;; timeout=%d ;; retry=%d ;; debug/etc/resolv.confdomainnameserversortlistRES_OPTIONSenvLOCALDOMAIN;; res_setoptions("%s", "%s")... ;; res_setoptions("%s", "%s").. GAIgetaddrinfoipnodes.bynamehosts.byname;; rcode = %u, ancount=%u ;; res_querydomain(%s, %s) NNN,egethostby*.getanswer: asked for "%s", got "%s"ePdgethostby*.getanswer: asked for "%s %s %s", got type "%s"services.byname/etc/services,/%d/%sservices.byportname 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"ZONEPREREQUISITEUPDATEADDITIONALANSWERAUTHORITYCHAOSHESIODdefnamusevcdnsrch?0x%lx?igntcprimry(unimpl)no-tld-querystyopnnoaliasesaaonly(unimpl)recurs;; res options:;; %s, type = %s, class = %s ;; ns_parserr: %s ;; %s SECTION: ;; ns_sprintrr: %s ; flags:; %s: %d, %s: %d;; ns_initparse: %s qr aa tc rd ra ?? ad cd%ld.%.2ldwell-known service (deprecated)geographical position (withdrawn)next valid name (unimplemented)endpoint identifier (unimplemented)NIMROD locator (unimplemented)mailbox-related data (deprecated);; ->>HEADER<<- opcode: %s, status: %s, id: %d ; error: unknown LOC RR version%d %.2d %.2d.%.3d %c %d %.2d %.2d.%.3d %c %d.%.2dm %sm %sm %smsA7Mkn  `   %(7;Ut@SYko{A3y!$zHh !"5:TFY_e#}ex>#Ѧex("""""""""""""""""""""""""""""""""""""""""""PREREQUISITESNOERRORFORMERRSERVFAILNXDOMAINNOTIMPREFUSEDYXDOMAINYXRRSETNXRRSETNOTAUTHZONEERRNOCHANGEIQUERYCQUERYMCQUERYUNOTIFYZONEINITZONEREFaddlenh"DJ"#"JH oa#  len <= *buflen "\@ unknown RR type\#( ; %s%02x ( RR format error %s %d %lu 0x%04x %u %u ) %u ( %u %u %u ; serial ; refresh ; retry ; expiry ; minimum /usr/src/lib/libc/net/ns_print.cABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/Assertion failed: (%s), function %s, file %s, line %d. Assertion failed: (%s), file %s, line %d. 44444444444444444444nss_%s.so.%dnss_module_registerNSSWITCH(%s): %s, %s/etc/nsswitch.confevector_appendnss_load_modulenss_method_lookupNSSWITCH(%s): memory allocation failureNSSWITCH(%s): %s, registration failedNSSWITCH(%s): %s, %s, %s, not foundhosts.byaddripnodes.byaddr/var/run/logpriv/var/run/log/dev/log%.15s /dev/console[%d]syslog: unknown facility/priority: %xService unavailablemnUTC/usr/share/zoneinfo/etc/localtimeposixrules,M4.1.0,M10.5.0TZSunMonTueWedThuFriSatJanFebMarAprMayJunJulAugSepOctNovDec%.3s %.3s%3d %02d:%02d:%02d %d 01234567890123456789abcdef0123456789ABCDEF%u.%u.%u.%u; J&J&J&J&J$J&J&J$J$J$J$J$J$J$J$J$J$J$J$J$J$Junionfs/usr/bin:/bin:/usr/sbin:/sbin:~~~~~~~~~%$sniglet^&%s/bt.XXXXXXXXXX/tmp0123456789ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz/dev/urandomu]]v]v]v]v]v]v]]vvJv]yD5}} HHI)>0123456789abcdef0123456789ABCDEFl0`-`-c0`-`-`-{2`-`-12`-11`-{1C1C1C1C1C1C1C1C1C1`-`-`-`-`-`-`--`-)4)443`-`-`-`-e/`-`-(`-`-`-'`-&`-`-?3`-`-`-`-`-`-`-`--`-);)4433;)3`-3`-2(q/4`- 'L0&`-`-0`-0infINFnanNANffffffffff gfh gg g ghg ghNaNInfinity?@@aCoc?`(?yPD?vvnvnv{{{{{{{{{{{{{{{{{|})}|R}|||[~|||||||~U\UUUU^UUUUUUUz`}-<2ZGUD?Yאא"mpool_new: page allocation overflow. ?$@Y@@@@j@.AcAחAeA _BvH7BmB@0BļB4&k C7yAC؅W4vCNgmC=`XC@xDPKDMDؗҜ<3#I9=D2[%Cod( 7yACnF?O8M20HwZ?@ACDEFGHJKMOQSS   9876543210/.-,+*)('&%$#"! :::::::::::::::::::::::::::::;<<<<<<<::;<<<<<<<:<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<::;<;53210/-,+*)('&%$#"!  ::::::::::::::::::::::::    DEAE216+-.99+&%/ /E!()*!!# E(\&\&\&***}*p*c*V*))z)((bad buffer in yy_scan_bytes()input in flex scanner failedout of dynamic memory in yy_scan_buffer()out of dynamic memory in yy_scan_bytes()out of dynamic memory in yy_create_buffer()fatal flex scanner internal error--no action foundinput buffer overflow, can't enlarge buffer because scanner uses REJECTfatal flex scanner internal error--end of buffer missedNSSWITCH(nslexer): memory allocation failureNSSWITCH(nslexer): %s line %d: %s at '%s'gethostbynamegethostbyaddree :DFHe;tGHgethostby*.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) Too many addresses (%d) size (%d) too big res_search failed (%d) %x.%x.%u.%u.%u.%u.in-addr.arpares_query failed (%d) QPQPQQPHQQ\QHASH: Out of overflow pages. Increase page size łԁԁ ԁԁԁ $FreeBSD: src/lib/csu/i386-elf/crtn.S,v 1.6 2005/05/19 07:31:06 dfr Exp $Yʄl΄épԄ|$`ׄ܄dp,ϩH#t12<4X4X4 dh8k}S4 `-;BKRH i1M1%`Y`EfElhJs<hhP.| /tmp/EdDk.XXXXXXXXXXpw|ìȬЬ֬۬߬ $*۬unknown _msgbufpp !"#9Mdjw ¼ @PQRV8a;cAdpeu@@ H @ ( 2@8CN VcnLswSRKIN @2 :@Ecn@ ySRKIN @2 :@EcnSRKIN @2 :@Ecn  ##.c4[:4!\\64)\3\44KT\<4{m\=4\\14\\14\\B4\\\\y]]M];]yUR]wm:p]L]]Z]]]]]a]^.1^LVS^at^~^^?pl?L@^-^^\^q^[^A_8__h____M_______`_*` `)`2`;`pl Z`U ""q""(standard output) 2t8tLhW?O@NiAB CD  !"#$%E &'()*+,-./F 0123456789G :;<=>?@ABCH D E F GIJKjkLMKNIOP[lmcnoQRpqRSrZstuvwxSyz{|}~TPUQVTW. ? %%p%c%%{10}%%/%%{16}%%*%%p%c%%{10}%%m%%+o(oBoMohouoooooooo p%p0p IpTp hprp pp pף p(qpppLqppqpqqxxxxxxxxy y y y*y1y;yHyOyXyay* X/ LZ}wpw|ìȬЬ֬۬߬ $*۬EK}Pv:EKv:}Pv:EK}Pz:~}P~~<@DHLPpTX^F m {  a d Ux q t { ,1Д Ł!ց"#$% &'(0)B*K+U,[-b-o.v.//|01234567W89:;<=Ȃ>ڂ?@[ \\$]9^D^V_a_j`w{{|}}Ã~Ƀ̇& Dt@ZrCCCCCCC‰\ @ww T U V W   kh545@ÿ? d'@Bʚ; $,=+M%4>=DLT1H=+M[dx   @ IIWILDABBR0123456789H 0000000000000000LUTTTT`T@ÿ?JRuneMagiNONEBBBBB@(((((((((((((((          (((((((    ((((((    ((((  !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~  !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`ABCDEFGHIJKLMNOPQRSTUVWXYZ{|}~@},W`W$XW`W`WXl4WXl5 XXl5,Wtttttttttt||ttttttttttttttttttttttttttttttttttttttttLh<_hashXXXXXX.shstrtab.init.text.fini.rodata.data.eh_frame.ctors.dtors.jcr.bss tt hh  w %Y +Y5Y<YCYHY, M {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 } 0x1b "Removable Block Access Capacities Page" { {System Floppy Type Device} t1 {Supports Reporting Format Progress} t1 {Reserved} *t6 {Non CD Optical Device} t1 {Single or Multiple LUN Supported} t1 {Reserved} *t3 {Total Logical Units Supported} t3 {Reserved} *i8 } 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.10 2004/09/02 13:40:34 keramida 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 can 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 /