home *** CD-ROM | disk | FTP | other *** search
Wrap
Text File | 2001-10-05 | 85.0 KB | 2,414 lines
; ; ; DAT replication and AutoUpdate have been seperated into 2 distinct tasks. ; ; This script is the Updater. ; ; ; ; ; Update Steps :- ; ; ; 1) Create the logfile if necessary. If this fails, just continue ; LogEvent 4570 ; ; ; 2) Locate the DATs and engine. If this fails, quit with error 4501 or 4502 ; ; ; 3) Read the version of the DATs and engine If registry values are missing quit with error 4503 ; If files are missing, log 4500 and continue. ; ; ; 4) Create a temp directory for downloading/patching If this fails, quit with error 4504 ; ; ; 5) There is no step 5. ; ; ; 6) Try and connect. ; Internally, LWI will establish a connection to ; each Local, UNC, Ftp, Http, or EPO site in turn; ; logging in if necessary If all connections fail, quit with error 4505 ; ; ; 7) Get Update.Ini ; LWI will try each successful connection in turn ; until a file is downloaded. If no file downloaded quit with error 4517 ; ; ; 8) Analyse update.ini & delta.ini. ; LWI does this internally and will download the ; file named in the incremental section ; (called delta.ini probably). ; ; 3 methods will be sorted into descending order of ; "goodness" based on engine, DAT and size. If this fails, quit with error 4506 ; If force is set, then sort is hardcoded ; superdat > zip > increments ; ; ; ; 8a) Call HotFixes method (Described below in steps H.1 onwards); ; ; ; 9) Analyse data more closely. ; ; 9a) Force update _is_not_set_. ; ; Compare the DAT and version information for every ; update with what's currently installed. If the ; version is higher then mark the method to run. ; SD is not marked to run if 'Update Engine' is off ; If no method will give newer files, exit with code 4550 ; ;or 9b) Force update _is_set_ ; ; Mark the incremental method not to run. ; For each of the other 2 methods check that ; the DAT and/or engine version is not 0. ; If so, mark the method to run. ; SD is not marked to run if 'Update Engine' is off ; If no method can be run, exit with code 4551 ; ; ; 10) Backup the DATs if required. If this fails, log error 4507 (& quit) or 4508 (& continue) ; ; ; 11) Call the best method (S, Z or I below). ; ; ; 12) Call the next best method (S, Z or I below). ; ; ; 13) Call the final method (S, Z or I below). ; ; ; 14) Quit with error 4552 ; ; ;---------------------------------------- ; ; When exiting, whether due to error or success ; ;X.1) Close any open connections ; ; ;X.2) If the download directory was created, delete the temp ; directory and any files in it. ; ; ;X.3) Restart the OAS ; ; ;X.3) Close the log file. ; ;---------------------------------------- ; ; ; ;---------------------------------------- ; ; Superdat Method ; ;S.1) If method not marked to be run leave method (failure) ; ; ;S.2) Download the superdat file named in the ; [SuperDat-<platform>] section of update.ini If this fails, log error 4517 and leave method (failure) ; ; ;S.3) CRC the downloaded file and compare with value in ; update.ini If CRCs don't match log error 4509 and leave method (failure) ; ; ;S.4) Execute Superdat and wait for it to complete. If it failed log error 4522 and leave method (failure) ; ; ;S.5) Run program after successful update. If it failed log error 4529. ; ; ;S.6) SuperDat succeeded Exit with code 4560 (dats) or 4561 (engine and dats) ; ; ;---------------------------------------- ; ; Zip Method ; ;Z.1) If method not marked to be run leave method (failure) ; ; ;Z.2) Download the zip file named in the ; [ZIP] section of update.ini ([TAR] if unix) If this fails, log error 4513 and leave method (failure) ; ; ;Z.3) CRC the downloaded file and compare with value in ; update.ini If CRCs don't match log error 4509 and leave method (failure) ; ; ;Z.4) UnZip the file. If this fails, log error 4523 and leave method (failure) ; (Failure means complete and utter disaster. Managing ; to extract just a single file counts as success) ; ;Z.5) Read PkgDesc.Ini. If this fails, log error 4524 and leave method (failure) ; ; ;Z.6) CRC the unzipped files and compare with values in ; PkgDesc.Ini. If any CRC doesn't match, log error 4514 and leave method (failure) ; ; ;Z.7) Copy the 3 new DAT files to the DAT directory. If this fails log error 4525 or 4526 and leave method (failure) ; ; ;Z.7a) Copy extra.dat, if it exists, to the DAT directory ; If this worked, log event 4562 ; ; ;Z.8) Update the registry with new DAT version ; ; ;Z.9) Run program after successful update. If it failed log error 4529. ; ; ;Z.10) Update Succeeded Exit with code 4560 (dats) ; ; ;---------------------------------------- ; ; Incremental ; ;I.1) If method not marked to be run leave method (failure) ; ; ;I.2) Download all the incrementals delta.ini told us ; we needed (step 8 in the main list above) If any download failed, log error 4511 and leave method (failure) ; ; ;I.3) CRC the downloaded files and compare with values in ; delta.ini If CRCs don't match log error 4512 and leave method (failure) ; ; ;I.4) Copy the DATs from the DAT directory to the temp ; (download) directory ; ; ;I.5) Apply the patches (can take a few minutes). If patch failed log error 4527 and leave method (failure) ; ; ;I.6) Copy the 3 new DAT files to the DAT directory. If this fails (extremely unlikely since we've already checked ; we can do this because skewed DATs are bad), ; log error 4528 and leave method (failure) ; ;I.7) Update the registry with new DAT version ; ; ;I.8) Run program after successful update. If it failed log error 4529. ; ; ;I.9) Leave method (success) ; ;============================================ ; ; ; ; ; ;============================================ ; Hotfix method. ; ; ;H.1) Assume product ID is "VirusScan" ; ;H.2) Read product version from HKLM\Software\Neta\TVD\VirusScan\szCurrentVersionNumber ; ;H.3) Read language from HKLM\Software\Neta\TVD\VirusScan\szLangID ; ; ; ;H.4) Retrieve next update information from the INI file. If information is zero then quit since we're at the end of the list. ; ;H.5) Compare update's ProductID with product's ProductID If different - goto H.4 ; ;H.6) Compare update's ProductVer with product's ProductVer If different - goto H.4 ; ;H.7) Compare update's Language with product's Language ; and the string "Any" If both different - goto H.4 ; ;H.8) Read the value named by the update's UpdateID from ; HKLM\Software\Neta\Shared Components\LWI If value exists and isn't 0 then ; update is already installed - goto H.4 ; ;H.9) Update is needed. Download the zipfile If download fails log error 4517 and goto H.4 ; ;H.10) CRC downloaded Zip and compare with CRC in ; update information If CRC doesn't match then log error 4509 and goto H.4 ; ;H.11) Unzip file If unzip fails then log error 4523 and goto H.4 ; ;H.12) Execute the script named in the update information If this fails then log error xxxx and goto H.4 ; ;H.13) Log message xxxx to say update worked and goto H.4 ; ; [tratSrcS] --- --- --- --- --- --- --- -;-;--- - - --- - - --- - -;--- - - --- - - --- - -;--- -)- -----4- -----.-;-----S- ----- - -----p-;-----e- -----t-N-----S-b ----(-. ---- - ;----t-T-----a-h-----D-e-----r-r-----e-e-----p- -----u-a-----S-r----- -e-----g- -----n-l-----i-o-----t-t-----u-s-----c- -----e-o-----x-f-----e- ----- - -----f- -----o-;----- - -- --d- -- --n- -- --E- -- -- - -- --;- -- -- - --;-- - -- -- - --E-- -;--n-- - --d-- - -- ---- --o---- --f---- -- ---- --I---- --n----M--c----e--r----s--e----s--m----a--e----g--n----e--t----B--a----o--l----x-- ---- --d---- --o-;-- --w- -- --n- -- --l- -- --o- --<--a- --s--d- --o-- - --m--(- --e--S- --t--t- --h--e-E--i--p-S--n-- -L--g--I-A-- --.-F--i--2- --n--)-=-- -- -=--E-- - --n-- -d--g-- -e--l-- -d--i-- -a--s--;-o-;h----l- >----n- ----w- ----o- ;----D- ----r- ----c-E;----n-S ----I-Lc---- -Ao---- -Fm---- - m---- -=a---- -=n---- - d- -- -ds- -- -e - -- -ts- -- -cc- -- -ea- -- -nt- -- -nt- -- -oe- -- -Cr- -- - e-;-- - d- -- - -S--n- t-5--r- h- -;u- r-i- t- o-s- e- u- --r- g-c-- - h-o-- - -m-- - t-m-- - h-o-- - i-n-- - s- -- - . -- - -- - ; -- -nI -- -rnE -- -u n --]-ttd --d-eh ;--e-reo---l- f---i- f ---a- ic---F- no---d- an---a- ln---o- e---l- rc---n- et---w- li---o-]en---D-dag---r-es ---c-tet---n-c o---I-eb ---[-nun--- -nie--- -olt--- -Cdw--- -oso--- -N r--- -[tk---E- h ---S; e(---L sS---A et---F e--- wp---= 5i --- 0l6---e 5l)---u 4 ---n d ---i o;---t ----n n----o0 o----C t----r= h----c! i----n n----Ie g---- d .---- o ---- C ---- n ;---- r ---- u T---- t h---- e e---- R r---- D e---- St ---- ii---- xs---- e ---- n---- o---- ---- t---- e---- x---- t----t ----e i-- -s n-- - 5 -- - 0a-- - 5n-- - 4y-- - -- - n s-- - r c-- - u r-- - t i--;- e p---- r t---- ----t t----s h----i a----L t----e ----l n----i e----F e----_ td----rens----cde ----novt----ICEr----,nga----sron----tuLs----at l----De a----wR t---;eD i--- NS n--- _ g--- r .---dc ---on ---hI ;---t, d ---e1 e ---M1 t;--- 5 c ---s4 e ---e n ---x n ---i o ---F C - -t xo;- -o oN - -H B P- - e u- -f g t- -o a -;- s O- -d s p-S-n e t-t-E M i-a- o-r-; n-t- t s- - n -o--e a-f--v n- --E fd-S--g I -u--o eC-p--L uo-e-- nn-r-- in-D-- ]te-a-- dnc-t-- eot- -- lCi-s-- i o-u-- a n-c-- F s-c-- D -e-- S a-s-- [ t-s--d - --e e-l--l n-o--i d g--a d. g--F e ;i--d t -n--aTc -g--oNe - --lEn -(--nLn -S--wIo -t--oSC -e--D/ ;-p--r - --c I-S--n, n-.--It i-6-- s t-)-- i i- -- L a- -- e l- -- l i- -- i s- -- F e- -- _ -;-- D t---- S h---- e---- = ---- ts---- ecy----fdem----Ionb----eCno----unol----nrCs----iu ----tt w----ne e----oR '----CD l---- S l---- ---- b-- - e-- - -- - 3u-- - 0s-- - 0i-- - 6n--;- g-- - .--S- --t-tt --a-si [--r-ia I--t-LW n-- -ed i--o-ln t--f-iA i-- -Fp a--I-_p l--n-rA i--c-cnss--r-nuse--e-IReS--m-= ry--e-d gm--n-e ob--t-d ro--a-a Pl--l-o gs-- -l o]--C-n L --R-w --C-o -- -Dl --(-re --S-cc --t-nn --e-Ia --p- C -- - e --I- l --.- b] --3- at;--)- sc -- - ieF-- - Dni-- - _nr-- - tos-- - dCt-- - pd --;- Un4---- SA ---; Vyw--- ri--- Tl----t [l----s ----it b----Ln e----te ----ev-s----GE-e---- t-t---- e- ---- S-t---- -o---- - ---- -l---- -o---- f-c---- f-a---- O-t----ts-i----sI-o----ie-n----Lc- ----er-a ---lo-n ---iF-d ---F - ---_ -v ---r -e ---c -r;---n -s----I -i----, -o----5 -n----0 - ----0 -o----6 -f---- - ---- -t---- -h---- f-e---- I- ---- e-d---- u-a- -- n-t- -- i-s- -- t- - -- n-&- -- o- - -- C-e-[--s -n-L--s -g-o--e -i-g--r -n-S--g -e-D--o - -S--r - -u--P - -c--g - -c--o - -e--L - -s-- - -s-- ]- -]-- e- - -- c- - -- r-;- -- o- - -- F-t- -- o-h- -- N-a- -- _-t- -- t- - -- a-a- --yD-r- --rr-e- --oe- -c--tp-a-a--cu-l-l--eS-r-l--rn-e- --iu-a- --DR-d- --d[-y- --a - - --o -o- --l -n- --n - - --w -t- --o -h- --DF-e- -- /- - -- -s- -- T-y- -- N-s- -- E-t- -- L-e- -- I-m- -- S-.- -- /- - -- - -L-- - -o-- ,- -g-- t- -S-- s- -D--ri- -_--iL- -D--De- -a--kl- -t--ri- -A--oF- -n--W_-s-d--tD-e-E -eS-t-n -S - -g - =- -i - - -n ; e- -e d- - [ o- - C C- - R n- - C r; - P u - aE t - tS e- - cL R- - hA]D- - eFsS- -cs e - -a]=h - -l !c - -l t - - ea - - uP - - nd -D- ia -a- to -t- nl -D- on -i- Cwt-r- xoi-e- iDa-c- CF[W-t- Rt d-o- Co n-r LH A-y i p- ; s p- - t A- - -n- - -u- - -R- -L - - -o - - -g - - -S - - -D - - -_ - - -D - -=-a - - -t - -0-O - - -n -l- -l -e- -y n-c- - r-n- - Iu-a- - nt-C- - ce-e- - rr-l- - C -b- - R -a-s- C -s-e-[O -i-t-Lk -D- -oa -_- -gy -t- -S= -d- -DI -p- -_n -U- -Dc]-S- -are-V- -t_u- - -AFn- - -nii- - -dlt- - -Een-t- -nLo-n- -giC-e- -isd-v- -nto-E- -e,h-t- -]It-e- - ne-S- - cM- - - rx- -E- _i- -n- CF- -g- Rt- -i- Co- -n- LH- -e- i[-n-D- s -O-i- t -s-r- -I-e-C -e-c-o -c-t-n -r-o-t -o-r-i -F-y-n - - -u - - -e - - -I - - -f -- - - -- - - C-- - - o-- - - n-- - - t-- -=- i-- - - n-- -0- u-- - - e-- - - I--f- - f--I- - --e- - --u- - --n- -S --i- -D --t- -E --n- -n --o-s-g --C-e-i -- -t-n -- - -e -- - -D -- - -i -- ; -f -- -fI-- -en-- ) -rc-- 6 -er-- -nF-- p -ta-- e - i--]t - l--eS - e--c( - d--r - C--ok - R--Fr - C--_o - --tw - --at - --De - --rnC- --e u-L --por-o --utr-g --S e-E --ngn v --unt e -;RiD;n - [ta tL- ctS o- eVt g- nea E- nrr v- ost e-) ci n-2E oo t-.Sfnf -ILo - A d -pFt i -e r s -t=a c -S t o -(eS n - u =n -dn; e4 -ai 0c5 -ot t6 -ln- i1 -no- n, -wC- gC -ot- u -da- fr4- D- rr5-lr- oe1-ae- mn2-tp- t,-nu-snDI-eS-eean-m -tttc-e - wVr-r - oe_-c - rrN-n - kse-I - iw- - (oD-f - Sna-o - t,t- - eSs-t - pD,-r - _I-a - 6Nn-t - )ec-S - wr- - D_-; - ;aF- - -ti- - -sl- - -,e- - -CL- t- -ui- e-C-rs--s-u-rt-- -r-e -- -r-n -- -e-t -- -n-E -- -t-n -- -E-g -- -n-i -- -g-n -- -i-e ;- -n-V - -e-e - -V-r -e-e-ss -d-r-ie -o-s-ot -C-i-n )-n-o-, 2-r-n-S 1-u- -D .-t- -_ H-e- -N -R- -e p-D-=-w e-S- -E t-,-0-n S-t- -g (-s- -i -i- -n x-L- -e i-e- - f-l- - t-i- - o-F- - h-_- - -D- - e-S- - h-,- - It-2- - n -2- - cg-5-;-ern-4- -xCi- -N-ion- -e-tnn- -x- tu- -t- ir- - - n - -w- uf- -i- eo- -l- - -l- =t- - - r- -b- Fa- -e- At- - - LS- -s- S - -e- E;- -t- -t- - -n-t- -e-o- -v- - -E-t- -g-h- [--o-e-4I--L- -5n-- -n-6c-- -a-1r-- -m- F-- -e- a-- - - i-- -o- l-- -f- e-- - - d-- -t-[C-- -h-LR-- -e-oC-- - -g]--d-d-S --e-i-D --l;r-_ --i e-D --a c-a --F-t-t --D-o-O --S-r-n -- -y-l -- - -y -- -w-]r-- -h- e-- -e- t-- -r- u-- -e- r-- - - n-- -w- -- -e- -- -'- -- -l- -- -l- -- - -L --f-d-o --I-o-g --e-w-E --u-n-v --n-l-e --i-o-n --t-a-t --n-d- --o- --C-a -- -n; -- -d- -- - - I-- -p- n-; -a- c- -t- r- -c- C- -h- R- - - C- - - O- - - k- - - a- e- - y- c- -4 - r- -5=- o- -6=- F- -0 --o- -,F--N- -CA--_- -uL--t-s-rS--a-e-rE--D-t-e --r- -n --e- -t --p- -D --u- -a --S- -t --n- -V --u- -e --R- -r -- - -s -- - -i;-- - -o--- - -n--- - -,--- - -S--- - -D--- - -_--- - -N--- - -e--- - -w--- - -D--- - -a--- -D-t--- -o-s--- -w- --- -n- --- -l- --- -o- --- -a- ---l-d- ---l-D- ---a-i- ---C-r- --- -e- --- -c-e--- -t-x--- -o-i--- -r-t--- -y- --- - - --- - - --- - - --- - - ---e- - ---c- - ---r- - -;-o-=- - -F- - - -_-0- - -t- - - -a- - - -D- - - -r- - - -e- - - -p- - -E-u- - -S-S- - -L-n- - -A-u- -4-F-R- -5- - - -6-=- - -0-=- - - - - -;- -d- - - -e- ;N- -l- e- -l- x- -a- t-[-t- -S-s- w-D-n- i-E-I- -l-n-x- -l-g-i- - -i-F- -b-n-t- -e-e-o- - -D-H- -s-i- - -e-f- -l-t-f- -l- -e- -a-t-r- -C-o-e- - - -n- - -T-t- - -R-]- - -U- - - -E- - - - - - - -i- - - -f- - - - - - - -t - - -h - - -e - - - -n- -D[r-r-]-ADe-u-t-Tit-t-a-ssu-e-D- cr-r-r-won- -e-en - -p-rn - -u-ee - -S- c - -n-mt - -u-aC - ;R-do - [-en - - n - -we -] -rc -e -it -s -ti -l) -ao -a1--bn -F.--l] -dI--e -e -- -lp--b S-le--y D-at-- _-tS--d N-s(--i e n --s w Is--a E xi--b n ih--lCg Ft--ioi t --nnn;og--gte Hn-- i E[i--on!n o--ru=d d-- e --sICo e--tfufEb--o r S --p rILn--p enAe--i ncFv--n tr e--g Ee= -- nm!d--t ge l--h indu--e nteo-- ealh--O Vlls--A e a --S rCte-- YsRsw-- eiCn -- so Ik-- Cn(xc-- o Sie-- n tFh-- n etc-- e po -- c Hf-- t I o-- e . -- d 3 d--s ) n--e E--t -- ; ;-- - -- - -- - -- -; -- -- -- -- -- D-- --- i-- --- s-- --- c-- --- o-- --- n--n--- n--r--- e--u--- c--t--- t--e--- --r--; -- -- -- -- -- ---O -- ---A -- ---S -- ---S -- ---t -- ---o -- ---pr-- ---pe--]---et--e---du--u---Ar--r---nn--T---d --d---D --e---a --l---t --l---s --a---F --t---r[--s---eY--n---ee--I---ds--x--- C--i--- o--F---=n--t--- n--o---Fe--H---Ac--[---Lt-- ---Se-- ---Ed-- --- ]-- --- -- --- -- --- -- --- -- --- --e--- --m--- --a--- --N--- --p--- --i-;- r--Z- - e--e- - t--t- -;u--a- - r--d- -Nn--p- -e --U-)-x --,-4-t --7-.- --7-S-w --5- -i --4-p-l -- -e-l -- -t- -- -S-b -- -(-e -- - - -- -t-s -- -a-e -- -D-t -- -r- -- -e-t -- -p-o -- -u- C-- -S-To-- - -Rn-- -g-Un-- -n-Ee--t-i- c--n-t-it--e-u-fe--v-c- d--E-e-a --g-x-t!--o-e- =--L- -l -- -f-eF-- -o-aA-- - -sL-- -t-tS-- -r- E-- -a-1 -- -t- -- -S-c -- - -o -- -;-n --e- -n --s- -e;--l- -c---a- -t---F- -i---d- -o- -e---n- -l--- - -l---w- -a---o- t---r- s---k-; n;--e- I --d-E x --.-n i -- -d F -- - t -- -o o -- -f H -- - ; -- -S- E-- -u- S-- -p- L-- -e- A-- -r- F-; -D- - -a- =- s-t- -)e- - e-5t-s- u- -u- n-p -c- i-e -c- t-t -e-fn-S -s-Io-( -s-eC- - -ur-s -l-nc-T -o-in-A -g-tI-D -g-n - -i-o -e -n-C -e -g- -r - - -f -(- - -S- -o -t- -t -e- - -p- -t - - -cC-S- -uo-.- -dn-6-] -on-)-e -re- -r -pc- -u - t- -l -ne- -i -wd- -a -o - -F -d -;-Ft- ---He-g ---gs-n ---o -i ---L -t ---[ -t --- -u --- -h --- -s --- - ---e -f ---m -o ---a - ---Nn-d=---pu-n ---iR-EF---Zt- A---eo-;L---tN- S---al- E---dl-- ---pi-- ---UW-- ---,r-- ---6c-- ---7n-- ---5I-- ---4 -- --- -- --- -- --- -- --- -- --- -- --- -- --- --;--- -- --- --N--- --e--- --x--- --t--- -- --- f--w--- I--i--- e--l---tu--l---nn-- ---ei--b---vt--e---En-- ---go--s---oC--e---L --t--- -- --- --t--- --o -- -- -- --T;-- --R--- ;-U--- -E--- - --- -i---e -f---u] - ---rn -u---Tu -p---dR -d---er -a---lc -t---ln -e---aI -.---tk -i---sc -n-- ne--i-- Ih-- -- xC--w-- i[--a-- F --s-- t -- --;o --d-- H --o--S --w--t --n--a ---l--r ---o--t ---a-- ---d--o ---e--f ---d-- --- --g --- --e --- --t --- --t --- --i --- --nf--- --gI--- -- e--- --ou--- --ln--- --di--- -- t---s--dn---e--ao---t--tC--- --s --- -- --- --s --- --o --- -- --- --t --- --h --- --e --- --y --- -- --- - c]--- - as--- - ns--- - e--- - bc--- - ec--- - u--- - pS--- - aF--- - tH--- -[cg---U-Sho---p-ueL---d-pd[---a-e ---t-r( ---e-DS ---I-at ---n-te ---i-Mp --;D-e -- o-tI -- w-h.e---n-o4r---l-d)u---o-C l---a-o i---d-n a---e-t F---d-i F--- -n H--- -u;g--- -e-o--- -]-L--- - - ---=- - --- - - ---F- - ---A- - ---L- - ---S- - ---E- - --- - - --- - - --- -r- --- -e- --- -t- --- -u- --- -r- --- -n- --- - - --- - - --- - - --- - - --- - -l--- - -l---;- -a--- -C---N - ---e; - ---x - ---tE - --- n - ---wd - ---i - ---lo - ---lf - --- - ---bdS-s---eiu-s--- sp-e---sce-c---eor-c-;-tnD-u- - na-S- -tet-F- -ocC-H- - to-g- -Tin-o- -Rnt-L-)-Ugi- -3-E n- -.- fu- ;S-ire- -fo - p- m!- e-u =- t-pn - S-deF- (-atA- ) -twL- 1C-eoS- .R-.rE- IC-ik - -n - pt-i( - ea- S - tD-wt - Sr-ae - (e-sp - p- -lsu-r6;-liS-e)--ah -a --Ctf-d -- o- ;-- g -s--- nd-u--- in-c--- oE-c--- d -e--- ;-s--- e -s--- b -f--- -u--- n -l--- e -l---dv -y---ee-- ---l -- ---ld-- ---al-- ---tu-- ---so-- ---nh-- ---Is-- ---x -- ---ie-- ---Fw-- ---t -- ---ok--s---Hc--e--- e--t--- h-- --- c-- --- -- --- f-- --- o-; --- - --- t- --- r- --- a- --- t-E --- S-S --- -L --- ;-A ---x -F -- o - -- B -= -- e -= -- g - -- a -d -- s--e --[s--e --Ie--rU--nM--FD--c --sI--r --tO--G --ak--e --Da--t --dy--O --n --l --A --d --d --D --e --a --p --t --p --s --o --]t--t -- p--S -- i--S -- r--A -- c--O -- S-- -- e-- -- t-- -- a-- -- d-- -- p-- =-- U-- -- =-- F--Sd-- A--ee-- L--tl-- S--Wl-- E--oa-- --rt-- --ks-- --Dn-- --iI-- --rx-- -- i--n -- F--r -- t--u -- o--t -- H--e -- --r -- -- -- -- -- -- ;-- -- -- -- N-- -- e-- -- x-- -- t--D -- --a -- f--t --]e--D --dw--i --e --r --pw--et--pi--cp--ol--ti--tl--or--S --rc--lb--yS--le- n--A - u--ts-; R--oe-- --Nt - --[ - -- t;- -- o-- -- -- -- t-- -- h-- -- e-- --0 --C --1i--o --5n--p --4f--y]-; o--Fx- r--ii- m--lF- a--et- t--so- i-- H- o-- e- n-- h- -- T- n-- n- e-- u-E e-- R-S d-- [-L e-- -A d-- -F -- - t-- -= o-- --= -- -- r-- --ytu--O--ain--l--kx --d--Oee--D--C a--a--R c--t--C h--s--D --C--S u--o-- p--p-- d--i-- a--e-- t--d-- e--=-; 0 --D- 1m--o- 5e--w- 4t--n- h--l- o--o- d--a- --d- --D- --i- --r- --e- --c-sn --t-sr --o-eu --r-ct --y-ce --=-ur --S-S s--c-r te--a-c nt--n-n e --.-I v --D-g E --a-o g --t-L o --,- L --N- --a- ] --m- C --e- R --s- C --.- d --d- e --a- l --t- i --,- a --C- F --l- D --e- Sd --a- [e --n- p --.- pS--d- oD--a- t_--t- SN-- -l le-- -lElw-- -aSAE-- -CLtn-- - Aog-- - FNi-- - n-- - = e-- - -- - e -- - u -- - n --;- i ---- t ----sn ----so ----eC ----ct ----ca ----uD ----srf=- -- eI - --gpe0-;--nuu - --iSn E--g i n--g t d--o n --L o o-- C f--) --9 S--. ;u--I s-p--( e-e-- t-r-- -D-- -a-- -t-- -M-- -e-- d -t-- e -h-- e -o-- r -d-- F - -- ts -(-- et -S-- sa -t--x D -e--o d -p-;B n -s- e A - - g d -S- a e -.- s p -1- s p - - e oS---)M tD- -2 S_-S-1 SN-.-. tAe-6-H sOw-)- i D- -p L a- -e e t-;-t l s---S i ---( F --- _ ---x D ---i;S ---f , ---t 9 ---o 0 ---h 5 --- p4 ---ep x ---hA o ---th B --- c e ---gn g=---nu a ---ia s0---nL s ---nn e ---uo M ---rm --- m ---fo ---oC --- ---t ---r t ---a n s---t e e---S v t--- E ---; g --- oS --- Lw --- L --- . --- P --- A ---- o ---- t ---- S ---- 1 ---- 5 ---- 4 ----l = ----l d ----aCe ----CRe ---- Cr ---- dF ---- es ---- ltS---- iaD---- aD_---- FdF---- Dni---- SAl---- de----. eL----e pi-- -t ps-- -a ot-- -d t -- -p S -- -u S -- - A --;-l O -- -u --E-f --n-s --d-s -- -ef --o-cI --f-ce -- -uu --g-sn =--e- i --t-rt 0--t-en --i-to --n-fC -g-a - - t ;-o-p p --l-p i --d-A r -- - c --d-g S --a-n ns--t-i ue--s-h Rt-- -c --s-n --o-ut -- -as --t-Li --h- L --e-)C --y-8R -- -.C --c-I_ --a-(Dy --n- Sr -- - ,o --b- tt --e- sc -- - ie --p- Lr --a- ei --t- lD --c- ip --h- Fp --e- _AS--d- D D- - S _- (- = C-;S-xy R--t-oa C--e-Bk L--p-eO i-- -gC s--I-aR t--.-sC --4-sD --)-eS -- -M -- - -- - r -- - i -- - D -- - k --;- r ---- o ---- W ---- t ---- e ---- S=---- ----; 0---- ---- ---- ---- t ----es ----ui ----nL ----iC ----tR ----nC ----o ] ----C s ----d rs---;o ee--- h nt--- t n --- e a --- M c --- r S --- c n --- n w --- I o --- ]D --- tt ---- au ---- Dh ---- rS ---- e[ ---- p ---- u ---- S ---- C ---- R- ---- C- ---- [- ---- - ----f -Z----I -i----e -p----u -_----n -N----i--e----t--w----n--E----o--n----C--g---- --i---- --n---- --e---- -- ---- -- ---- -- ---- -- ---- -- ---- -- ---- -- ---- -- ---- -- ----;-- --- -- --- --=;--- -- --- --0S---y-- t---r-- a---t-- r---s-- t---i-- ---g-- u---e-- p---R-- d---e-- a---t-- t---a--se---d--e.---p--ti---U-- n---r-- i---c-- ---n-- d---I-- o--- -- w--- -- n--- -- l--- -- o--- -- a--- -- d--- -- --- -- (--- -- S--- -- t--- -- e -- -- p -- -- -- -- 7 -- -- ) -- -- -- --Z -- --i; -- --p-;-- --_----l--N----l--e----a--w----C--D---- --a---- --t-- - --s-- - -- -- - -- -- - -- -- - -- -- - -- -- - -- -- - -- -- -y-- -- -r-- -- -t-- -- -s-- --;-i-- ----g-- ----e--=----r-- ---- --0----g-- ----n-- ----i-- ----t-- ----a-- ----d-- ----p-- ----U-- ---- -- ----)-- ----7--s----.--e----I--t----(-- ---; -- --- -- --- -- --- -- --- -- --- -- --- -- ---) -- ---1 -; ---1 - ---. - ---H -- --- -- ---p -- ---ex-- ---to-- ---SB-- ---(e;- --- g - ---Fa - ---Hs -Z--- s -i---ee -p---hM -_---t )-F--- 3-i---g .-l---n S-e---i -L---p p-i---p e-s---i t-t---z S- ---n (- ---u - --- C- ---f;R- ---o C- --- - ---d t- ---n a- ---EeD- --- ur- ---;ne- --- ip-=--- tu- --- nS-0--- o - --- Cf- --- do- ----o - ----ht- ----tr- ----ea- ----Mt- ----rS- ----c - ----n;-s----I -e---- -t---- - ---- - ---- - ---- - ---- -- ---- -- ---- -- ---- -- ---- -- ---- -- ---- -- ---- -- ---- -- ----f-- ----I-- ----e-- ---u-- --n-- ; --i-- -;--t-- ----n-- ----o--Z----C--i---- --p---- --_---- --C---- --R---- --C---- --L---- --i---- --s---- --t---- -- ---- -- ---- -- ----;-- -- - -- -- - -- -- - -- -- - -- -- -k-- -- -c-- --;-a-- -- -B-- --S-s-- --t-t--=--a-a-- --r-D--0--t-y-- -- -p-- --o-o-- --f-C-- -- -r-- --p-c-- --a-n-- --t-I-- --c- -- --h- -- --i- -- --n- -- --g- --s-- - --e--(- --t--S- -- --t- -- --e- -; --p- - -- - - --I- -) --.- -5 --5- - --)- -p -- - -e -- - -t -- - -S -- - -( -- -l- -- -l-s --;-a-T ----C-A ---- -D ---- - ---- -e ---- -e ---- -rI---- -fn---- - c---- -or---- -t_---- - N----y-te----r-cw----o-uE----t-dn----c-og----e-ri----r-pn----i- e----d-n ---- -w ----t-o ----a-d ----d- ---- -g ---;o-n --- t-i --- -t --- k-t --- c-u=--- a-h --- b-s0--- - --- s-f --- T-o --- A- ---ED-t ---S -r ---Ld-a ---Ae;t ---Fh S --- c ---=t ;s--- a e---ep t---u - ---ng - ---in - ---ti - ---ny - ---op-- ---Co-- ---xC-- ---i -- --F)-- -t6-- -o.-- ;-HI-- [ - (-- GS- -- et- -- ta- -- Ur- -- pt- -- d - -- ao- -- tf- --Ie - --nIZ- --cni- --rip- --_]D- --N a- --e t- x--w M- o--D e- B--a t- e--t h- g--s o- a-- d-ts-- -es-- (-se-- S- M-- t- -- ;e- -- p- -- fs- -- t - -- pZ- -- ..- -- n1- --=a - -- i-- --0. - -- cZ-e -- o.-m;-- m1-a -- 0-N -- i)-p -- s -i -- -Ze-- a;-eu-- l--tn-- l--ai--s --dt--el--pn--to--Uo-- w--,C-- e--3d-- r--2o-- --5h-- c--4t-- a-- e-- s-- M-- e- r-- ,- c-- - n-- t- I-- h- -- i- -- s-[ -- -I -- s-n -- h-c -- o-r -- u-P -- l-a -- d-t --I -ct --nb-hn --ce-]e --r - v --_p- Ef--Fr- gI--ie- oe--ls- Lu--ee- n--Lr- i--iv- t--se- n--td- o-- - C-- i- -- n- -- - -- r-S -- e-e -- p-t -- l-Wd -- i-oe -- c-rl -- a-ki --=t-Da -- i-iF --0o-rp;-- n- i -- .- Z -- - n -- - U -- - h-; - c- - t- - a-- - P-- - r;-s - c -e - n -t - I - - - S-D - e-o - t-w )- W-n 2- o-lf .- r-oI S- k-ae - D-du p- i-Dn e- r-ii t- -rt S- -en (- -co - -tC d- -o a- -r o- -y l- - n- - w- - lo-I - ld-n - a -c - Ct-r - a-_D- D-Co- r-Rw- e e-Cn- m p-Ll- a u-io-AN S-sa-pp -td-pi f- D-lZ o- i-ye. - r-Ptsd- e-aaen- c-tdhE- t-cpc - o-hUt;- r-e=a - y-sdp - - e - - pl - - pa -= - ir - - Ze--0 - nv-- Ue-- ms-- ; u -- - Ne-- - r-- - a-- L-A -- o-l e-- g-l r-- P-P e-- r-a h-- o-t t--;g-c -- r-h f--Ne-e i--es-s --xs-A s--t -p e-- -p t--3 -l u-- -i n--w -e i--i -d m--l -=p --l -Iiw-- -nze--b -cnf--e -rU -- -_ a--s -F --e6-i e--t0-l k-- 0-e a--t5-L t--o,-i -- u-s d--tp-t l--hd- u--ea- o-- t- c--ne- ] --a.- ps--mi- ii--en- Zh--si- Ft-- - H --o - e,--f - hg-- - Tn--t -Cpi--h -oih--e -nzc-- -tnt--3 -iUa-- -n[P--uG-u --pe-e )--dt-I 5--a -f .--t - I--e - (-; - - - f - - - u - - - n - - - c - - - t - - - i - - - o - - - n - - - s - - - - - - i - - - n -I- -- -n- --o -c-x--r -r-o--d -P-B--e -a-e--rU-t-g-- p-c-a--od-h-s--fa-F-s-- t-a-e--"e-i-M--gI-l- --on-e- --oi-d- --dD- - --no- - --ew- - --sn- - --sl- - --"o- - -- a- - -- d- - -- e- - -- d- -;-- =- - -- u- - -- p-L- -- d-o- -- a-g-e-- t-E-u-- e-v-n-- .-e-i--si-n-t--en-t-n--ti- -o-- ,- -C-- u- -d-- p- -o-- d- -h;- a- -t - t- -e - e- -M - .- -r - i -c - n -n - i -I - - - [ - - Z - - i - E- p4- S- M5- L- e2- A- t7- F- h,- - oI- =-BCdn- =-eo]c- -sn r- d-tt _- e-Mi N-fd-en e-Ia-tu w-eo-he D-ul-oI a-nn-df t-iw- s-to- -nD- -ot- -Ca- ; - D- - r- T - e- h - p- i - u- s - S- - - l - - o - - cs- -=Nae- - olt- -EU -; -mpw - -pdi - -tal - -ytl - -Me -s -eIb -t -tne -a -hi -D -o s -d -d e -l - t -O - -tn- t -er- o -Gu- -rt- F -ce- a -nr- l -I - Ls ; - oe -sg I -eEin -tvfc - e r - nsC - too) - mn1 - et1 - ti. - hnH ]- iu d; nep e g e l =t i- f S a- aF( F- tA d- aLF a- lSHlo- E ll- h ean- a hCw- 4p t o- 5p D-M1e g D-i7n n S-d,s[i [-du Ip -lpdnp -educi -Marrz -etiPn -tenaug -h.gt nE-oi cfiS-dnthohL- ihF cA- eattF- ira - Zlap=- iet - pdSre- ] ou- m ;fn- e i- t yt- h rn- eo oo-=xd tC- i. ct-Et -ea-m -rD-p -ir-t r-de-y e- p-M t-du-e u-aS-t r-o -h n-l -o -n -d -w - -o - -d - - - -o - -t - - - -s - -T - -A - -D -s4s - -e5e -d -t1t -l - 7 -o - - - -g - A-n - l-it- l-ye- P-ps- [ a-o - N t-C - o c- - U h-) - p e-4 - d s-. - a A-I - t p-( - e p- - I l- - n i- - i e- - ] d- t- - s-W Z=- i-o i=- L-r p - e-s CF- l-t oA- i-M nL- F-e tS- _-t iE- D-h n -xS-oru -o,-dee -B7- t -e1- u= -g5- r -a4- nT -s - R -s - U -e - E -M - - - - - ;- - -- - -- - -- -= -- - -- -E -- -m -- -p -- -t -- -y --;t-M -- n-e -- e;tU -- v hp -- E od --eg)da --uo2 t --nL. e --i 1 I --t nM--n p ie--o e Ds--C t os--d S wa--o ( ng--h le--t y oB--e r ao--M o;dx--r t e --cdcSd --neeo --Ilrm= -- iie= -- ad -- F oF -- dprA -- am L -- oeaS -- ltlE -- n l -- wg -- ono -- Dif (-- Dv Z-- Son .-- me;1--f ex-)--I rt- -;e -C- u f3-h- n o -e- i w-c- t di-k- n nl-i- o El-n- C -g- ;b- - e-w- -e-- f-s- -- I-e-s-- e-t-h-- u- -o-- n-t-u-- i-o-l-- t- -d-- n-T- -- o-R-r--;C-U-e-- -E-a-- - -l-- -i-l-- -f-y--s - - --e -t-b--h -h-e--c -e-i--t - -n--a -m-g--P -e- --C -t-d--Rt-h-o--Cs-o-i-- i-d-n-- L- -g-- e-s- -- l-h-t-- i-o-h-- F-u-e-- _-l- -- D-d-Z-- S- -i-- =-b-p-- d-e- -- e- -m-- d-r-e-- a-u-t-- o-n-h-- l- -o-- n- -d-- w- - -- o- - -- D- - --lt- - --la- - --aD- - --Cr- - -- e- - -- p-;- -- u- - -- S-(-C-- -b-a-- -a-l-- -s-l - -e- - -d- - - - -s -o- -e -n- -h - - ;-c -t- -t -h- E-a -e- n-P - - d- -'- -e -f- o-h -o- f-t -r- - t-c- p-gs-e- a-ni-'- t-iL- - c-mt-f- h-me-l- i-uG-a-Cn-s -g-hg-k -,-e -c - -c(-e - -kS-h -v-Zt-C -e-ie- -r-pp-) -s-R -3 -i-uI-. -o-n.-It-n- 5-(s-s- )- i- -; - L-o- - e-f- - l- - - i-d- - F-a- - _-t- ;- D-/- -- S-e- -- ,-n- -- 5-g- -- 0-i- -- 0-n- -- 6-e C--x - o--o -a;n--B -v-t--e -a-i--g -i-n--a -l-u--s -a-e--s -b-I--e -l-f--M -e- -- - - -- -e- -; ;t- - s c- - s )- - e- - - r- - - g- - - o- - -) r- - -0 P- - -1 g- - -.;o- - -H L- -Z- - -i-p - -p-e - -M-te -s-e-Su -e-t-(n -t-h- i - -o-Ct - -d-Rn - -C-Co - -o- C - -n-Fd - -t-Hoy- -i- hr- -n-fto- -u-oet- -e- Mc- - -dre- - -ncr- - -Eni- - - ID- -;-; d- - - a- - - o- - - l- - - n- - - w- - - o-S- -- D-D- -- -S- -- -h- -- -o- -- -u- -- -l-M-- -d-e--f -B-s--I -e-s--e -R-a--u -u-g--n -n-e--i - -B--t - -o--n - -x--or- - --Ci- - -- D- - -- k- - -- r- - -- o- - -- W- - -- t- - -- e-=- -- S- - -- -F- -- -A- -- -L- -- -S- --; -E-(-- - -Z-- - -.-- - -2-- - -)--s - - --e - -D--h - -o--c]- -w--tt- -n--aa- -l--PD-s-o--dr-e-a--ae-t-d--op- -i--lu- -n--nS- -g--wd- - --oa- -t--Do- -h-- l- -e-- n- - -- w- -Z-- o- -i-- D- -p-- [- - -- - -u - - -p - - -d - - -a - - -t - - -e - -- - - -- - - -- - - --Z - --i - --p; - --S - --hE -l--on ;-l--ud --a--l C--C--dua-- --Bpl-- --edl-- --Ra -- --ut -- -;ne -- - . -- - i -- - n -- - i -- -0 --s- d --e-= o --h-! w --c- n --t-y l --a-r=o --p-o a -- -tFd --e-cA --h-eL( --t-rSS -- -iEt --l-D eD--l-d po--a-a w-- -o 7n--g-l )l--n-n o--i-w a--d-o ;d--a-D -Z--o- -i--l- s-p--n- e- --w- t- --o- - --D- - -- - -;--)- - --2- - --.- - -;I- - - (- - - - - - - - - - - - - - - - - - - - - -n - - -r -C- -u -o-E -t -n-S -e -t-L -r -i-A - -n-F - I-u- x- n-e-=o- c-I-=B- r-f- e- S- -yg- h- -aa- o- -ks- u- -Os- l- -Ce-]d- -RM-yB- -C -re- -F -oR- -H -tu- - -cn- - -e - - -r - - -i - - -D -Z- -d -i- -a -p- -o -M- -l -e- ;-n -t- -w=-h- -o -o- -DF-d- -sA-C- e-eL-o- u-YS-n- n-[E-t- i- -i-nt- -n-rn- -u-uo- -e-tC- - -ed- - -ro- - - h- - - t-n -;- e-r - - M-u - - r-t - - c-e - - n-r - - I- ;- - ; - - - -] - -C - -R - -C - -d -M-e ) -e-l 2 -s-i .y -s a Sr;-a F o -g p pt -e i ec -B Zfte -o FISr -x;He(i - [u D - S ndd - t iaa - a too - r nll;- t onn - CwwH- oE ooo- fS dDt- L - cA t f- oF a i- p D x- y= r -(i e o-Zne p n-.gu u e-3 n S s-)Di .- At;f -CTn o -hso -e Cnt -cbxur -kaiRar -scFrti uktcSD m on e ;mtHI;v -io k o;-n c m -gD e e - a h R -tt C -hD -ei - - r - -Ze - -ic - -pt - - o - ;- r - - y - T- -yh- ( -re- S -os- t -te- e -c - p -ea- -rr-CIt -ie-a.e -D -l6s -dt-l) -ah- l-oe- l-l - a-ns- C-wt- -oa- -Dt- ; -se- - -e - - -Yo- - - f- - - - -e - t- -m - h- -a - e- -Nd- - -po- s- -ih- y- -Zt- s- -ee- t- -tm- e-C-a - m-R-dr- -C-pc- :-Z-Un-f--i-,I-I -p-9 -e - -0e-u - -5h-n - -4t-i - - -t -;- g-n - - n-o - - i-C - - o- - - d- ;- - - - - g- - - n- - - i- - - e- - - b- - - - - - y- -C- l-] -o- l-y -n-ta-r -t-ne-o -i-er-ts-n-v -ce-u-Ed-et-e-gl-r -I-ou-i -f-Lo-D - - h-d - - s-a - - -o - - e-l - - w-n - - -w - - g-o - - n-D - - i-e - - k-v - - c-o - - e-m - -Ch-e - -RC-R -Z-C -[ -i-d)- -p-e1- -M-l.-y -e-iI-rS-t-a(-oy-h-F -ts-o-p -ct-d-i -ee-C-Z -rm-o-F -iP-n-H -Dr-t- -do-i- -ad-n- -oI-u- -lD-e- -n - - -w - - -o - - -D - - x-e -;- o-k - B-a - e-M - g- - a-n -fs-i -Is- ; -ee;d=- -uM e - -n tV- -i ai- -t er- -n ru-M-o cs-e-C S-s- yc-s- ra-a- on-g- -t -e- -c -B- -e -o- -r -x- -i - - -d - - - - - -e - - -h - -C -t - -R - s- -C -ee- -p -vt- -iE-o - -ZU-m - eR-e - tT-R - a - - d=-; -([p - -ZIUe- -.n,u- -4cen- -)rmi-- - Cat-- -UoNn-- -nppo-- -zyiC-- -iDZr-- -paec-- -pttn-- -isaI-- -nBd -- -gap -- - cU --S-tk= --y-h]y --s-e a --t- k --e-z O --m-i C --P-p R --r- C --o-f;F --d-i H --V-l --e-ed --r-se -- - f -- - e -- - c -- - t -- - -- - 2 t-- - 7 e-- - 5 s-- - 9 -- - . -- -C --=-a -- -l --0-l -- - t -- - s -- - i -- - L -- - C -- - R -- - cC -- - a -- - l -- - l --s- --e- --t- -- - -- - -- - .-- - d-- - o-- - h-- - ]t-- -U pe-- -n im-- -z Z -- -i Fl-- -p Ha-- -T Ct-- -h Rn-- -e Ce-- -Z [m-- -i e-- -pS r-- - h c-- - u n-- - t I--S- D --y-;o-e--s- w-h--t- n-t--e- S- --m- c-g--L- a-n--a- n-i--n n-r--g e-u-- ; r-d-- - s- -- - -s-- - -n-- -C -e-- -o -p-- -n -p-- -t -a-- -i -h;- -n - - -u -l - -e -a - -I -t - -f -a -=- S-f - - e- )-0- t-g1- - W-n.- - o-iS- - r-h - - k-tp- - D-ee- - i-mt- - r-oS- - -s(- - - - - -fs-s- -ii-e-Z - h-t-i -et- -p -s - -M -lg; -e -an -t -Fi -h - o- -o -od- -d -t - -C - e- -oD-tb- -no-e - -tw-sn- -in- e- -nl-ev- -uo-be- -ea- - - d-ld- - D-ll- - i-iu- - r-wo- -;e- h- - c-ls-A- t-a -n- o-ce-y- r-ow-L- y-l -a- - k-n- -sc-g- -ie- - -hh- - -Tc- - - - - -;f- -M - o- -e - - -s - d- -s - n- -a - E- -gC- - -eo- ;- -Bp- - -oy- - -xF- - - i- - - l- - - e-] -=- s-d-- - -o--A- -h--n- -t--y- -e-- - -M-- - -r-- - -c-- - -n-- - -I-- - -[-- -( - -- -Z - -- -. - -- -5 - -- -) - -- - D- -- -Ra---- -et---- -as---- -dC----;-io---- -np---- -gi---- - e---- -td---- -h=---- -eD---- - a---- -Pt---- -kD;--- -gi ---;-Dr --- -ee ---T-sc ---h-ct ---e-.o ---s-Ir)---e-ny0--- -i=1---a S.---r fcH---e;ia --- lnp---sSe.e---et Dt---tataS--- rht(---bta, ---y tNC--- u aR---tpsmC---hdhe ---eaosF--- tu.H---Geld ---e.daf---ti'to---Nnv, ---eieCt---x lr---tabea---Hneat---oaenS---tln. ---fy d;---isia ---xint --- s ---c t ---o(h ---mSe ---mt ----aeZ ---;npi --- d p --- 8 ---):) ---2- ---. ---1 ; C--- - o---p - n---e - t---t - i---S - n---( -Cu--- -ae---y -lI---r;-lf---o - ---t - ---c - ---e - ---r - ---i - ---d - --- - ---p - ---m - ---e - ---t - --- s- ---ge- ---nt- D---i - a---v - t---o - s---m - N---e - o---r -Zt--- -iC---f -po---o -Rp--- -ei--;t -ae-- r -dd-- a -P -- t -k -- S -g -- -D -- ; -e -- -s -- -c --E- - --S- - --L-U- --A-p- --F-d-; -- -a- L--=-t- o-- -e- g-;e-P- E- u-r- v- n-o- e--i-d- n--t-I- t--n-D- --o- - --C- - --t- - --a- -C --D- -o --r- -n --e- -t --p- -i --u- -n --S- -u -- - -e -- - -I -- -=-f -- - - -- -0- -- - - 4-- - - 5-- - - 2-- - - 8-- - - ,-- - - D-- - - a-- - - t-- - - D-- - - i-- -s- r-- -e- e-- -t-Zc-- - -it-- - -po-- - -Mr--t- -ey--e- -t --s- -h -- - -o -- - -d -- - -C -- - -o -- - -n -- - -t -- - -i -- - -n -- - -us-- - -ee--n- - t--u- - --R- - --t- - --o- -; ;-N-U- -l-p- -l-d- -i-a- -W-t- -D-e- -S-P- - -r- - -o - -d - -V; - -e- - -r-M -- - -e -- - -s -- - -s -- - -a -- - -gI-- - -en-- - -Bc-- - -or--f- -xC--I- - o--e- - n--u-=- t--n- - i--i-0- n--t- - u--n- - e--o- - --C- - =-- - - -- - - F-- - - A-- - - L-- - - S-- - -(E-- -s-Z -- -e-. -- -t-6 -- - -) -- - - -- - -C --]- -h --n- -e --u- -c;--R- -k---t- -s---a- -u---D- -m---r- -m---e; -i---p -n---u -g---S- - ---k- -a---c- -l---e- -l---h- - ---C- -t---[- -h--- -U-e--; -p- -- -d-Z-- -a-I--) -t-P--9 -e-'--.--L-s--I--a- -- --n-c-----g-o-- -- -n--1-- -t--.-- -e--I-- -n-- -- -t--s-- -s--p-- -.--e-- - --t-- - --S-- - --(-- - -- -- - --d-- - --o-- - --h--=- --t-- - --e--0- --M-- -C-- -- -a--l-- -l--a-- -l--t-- - --n-- - --e-- - --m-- - --e-- - --r-- - --c--s- --n--e- --I--t- -- -- - --f-- - --o-- - -- -- - --t-- - --r-- - --a-- - --t-- - --S-- - -- -- - --;-- - -- -- -C-- -- -R----- -C----- -Z----- -i----- -p----- -M----- -e----- -m----- -b-----U-e-----p-r-----d-s-----a -----t -;---e - ---I - ---D ;- --- - --- [ - --- A - --- n -)--- a -9--- l -.--- y -H--- s - --- e -p--- U -e--- D -t--- I -S--- ]C-(--- o- --- n-x--- t-i---= i-f--- n-t---0 u-o--- e-H--- I- --- f-g--- -n--- -i--- -d--- c -a--- a -o--- l -l--- l -n---s -w---e o---t d--- --- f--- o--- --- Z;d--- i n--; pEE-- Mn -- ed;-- t -- ho -- of -- d -- Cc -- oo --- np---- ty---- Lii---- onn--;- aug-- - de -- -UU D-- -pD A-- -dI T-- -a s-- -t ; --)-e b--1-Z a--.-i c--S-p k-- -N --p-a t--e-m o--t-e --S- D--(- a-- - U t--s- D D--i- IMi--h- Uer--t- pse-- - dsc--g- aat--n- tgo--i- eer--o-=OBy--d- ro -- -0dx(--e- e S--b- r t-- - e--n- p--e- --v- I--e- .-- - 6--d- )--l- --u-s --o-e --h-tB --s- e -- - s( --e- tZ;--w- M.--- - e7--;k- t)-- c- h -- e- oC---h- do---c- ,p--- - My---f- ii---o- dn--- - dg---t- l ---r- ee---a- Mx---t- et---S- tr--- - ha---;- oc--- -Udt--- -p,e--- -dWd--- -ao --- -trD--- -esA-----ZtT-----iMs-----pe -----Ctt-----Rho-----Co ----- dd----- =a----- St----- u ----- pd----- ei----- rr----- de----- ac----- tt----- Mo----- er-----=ty----- h -----0o ----- d ----- , ----- Z ----- i ----- p ----- M ----- e ----- t ----- hC----- oa-----sdl-----e,l-----tI ----- n ----- c ----- r ----- M ----- e ----- t ----- h ----; o -;-- d - -- , - --- E - --- m - --- p - --- t - --- y - --- M - --- e -E--- t -S--- h -L--- oZ-A--- di-F---U p- ---p C-=---d o-=---a p- ---t y-d---e D-e---S a-d---c t-a---r s-o---i -l---p -n---t -w--- -o--- ;-D--- C -F--- a -H--- l - --- l - --- - --- - --- - --- - --- - --- - ---= - --- - ---0 M- --- e- --- s- --- s- --- a- --- g- --- e- --- B- --- o-n--- x r--- u--- t--- R e--- e r;-- o -- r -- d --re --er --tI --uf --rF --no --- r ; --- c(- --- eZ- --- .-]--- 7-d--- a-e--- )-l--- -i---[ C-a---M o-F-;-a p-d- -i y-a- -n i-o- -] n-l- - g-n- - -w- - e-o- - ;x-D- - t-F- - 0r-H- - ,a-[- - 1c- - - ,t- - - 2e- - - d- - - a - - -SrE- - -eex-E- -t t-S- -WSr-L- -oDa-A- -r,.-F- -k D- -s-DZA-=-s-iiT- -e-rp -e-c- t-u-c- ao-n-u- n -i-S- dd-t-D- a-n-S- It-o-g- n -C-o- cd-x-L- ri-i- - r-F- - re-t- - ec-o- - st-H- - po- - -Aer- - -pcy- - -pt - - -Di - - ;iv - - re - - el - - )cy - - 4t. - - o - - prS - - eye - - t eC- - S a- - ( Ml- -l El- -ly T - -ar H - -Co O - - t D - - c _ -t- e x -e- rMx -s- iex - - ds - - si - - pan - - mg - - ees - -.tBc - -e or - -tgxi - -an p - -di t - -pt . - -ua h -e- e Z-m-lr i-a-uc p-N-f C-p-sf o-i-so p-Z-e y-e-cd E-t-cn x-a-uE t-d-s S r-p- ;c a-U-g rUD-,-n iDa-7-i-pIt-1-g-tG -5-g-Ne -4-o-at - -L-mI - - -en;- -)- f - -6- o - -.- - -S- - -(- - - - - - - - - - - ; - - - -D - -e - -l C - -e o t- -t n n- -e t;e- -FSi v- -iDnSE- -l_utg-x-eNeao-o- eIrL-B- wft -e- E -g- n o -a- g f -s- i -s- n u -e- e p -M- d - - a - - , t - - S i - - D n - - _ gd- -SN e- -ce rl- -rwZei- -iDiga- -papiF- -ttMsd- -Nseta-;-a tro- -m hyl- -e o n- - d(w- - ,CSo-p- SotD-p- DneF-A- _tpH-h- Fi -c- inI -n- lu. -u- ee7 -a- L ) -L- i -n- s -o-Mt -m-e ; -m-s -o-s -C-a, ; - -gS - - -eD - - -B_ -f- -oC -I- -xR -e- - C -u- - L -n- - i -i- - s -t- - tM-n- - e-o- - s-C- - s- - - =a- - - g- - - 0e- - - B- - - o- - - x- - -I - -l-n - -l-i - -a-t - -C-i - - -a -e- -l -m- -iU -a- -sD -N- -eI -p- -SG -i- -ye -Z- -mt -e-;-bI -t- -on(-a- -lfZ-d-.-so.-p-e- 8-U-t- )-=-a- -d-d- U-e-p- p-d-u- d-a- - a-o-l- t-l-u- i-n-f- n-w-s-C g-o-s;a -D-e l r-F-c l e-H-c- Zg- -u- ii- -s- ps- - - _t- -r- Nr- -e- ey- -t- w - -f- E - -a- n - - - g - -p- i - -p- n - -A- e - - - - ;g- , - n- Z - i- iC- )h- pa-t0c- _l-s1n- Nl-i.u-Ie -LZa-nw -t L-iD -e- -ta -G )-it - 15-as - ..-l - ZS-i - (-s - s -e, - p -SZ - e -yi - t -mp - S -b_ - ( -oF -e -li -md -sl -ao - e -Nh - L -pt - i -ie - sZ-ZM - ti-et - p-tax- U-aDo- ,p-dpB- Zd-pie- ia-UZg- pt-, a- _e-5fs-MCR-0os-eRe-0 e-sCg-6dM-sLi- n -ais- E -gst- -etr- ; -B y- -o - -x= - - - - - - 1 - -;- ;- - - - - - - - - - - s-;- s- - e- - [r- - Ig- - no-e- cr-u- rP-n-(U Ug-i-1DCpo-t-aIodL-n-)Gna -o- ett -C-Otie -d-pInR -o-enue -h-nfeg -t-LoIi -e-o fs -M-g t -t-F r -a-i y -D-l ] -r-e y-e- r-p- o-u- t-S- c- - e- - r- - i- - D- - I d- - nZ a- -Cci o- -arpCl- -l_Man- -lNelw- - etlo- - wh D- - Eo - - nd -f- gC -I- io -e- nn -u- et -n- ,i -i- In -t- nu -n; ce -o r -C _ - N - e - w; r- D i- 0 a D- t k- =Os r- =p Zo- e iW- yn, pt- rLI Ue- oon pS-;tgc d - cFr a - ei_ t - rlFMe - ieieR -tD lse -ad esg -Da Lai -ro igs -el set -pn tBr -uw oy -So ,x ]-nD I x-u n i-R c f- r t- M_ o- eC H- sR d- sC a- aL o- gi ;l- es -n- Bt -w- o -o- x= -D- (-[- 2Z- - .- - 9- - )- - n --- r L--- u a--- t u---le n---lr c---a h---C [i--- Ln--- (og--- 1a --- bdA--; )Up-- Dp-- OI --- p]a--- ]e f--- yn t---trE e---aov r---Dte ---rcn s---eet u---prL c---uio c---SDg e--- d Us---ea Ds---ho If---tl Pu--- n al---gw r ---no su---iD ep---to d---uN a---c[C t---e a e---x l .---E l --- ---) ---4 ---.4 ---S0 ---(5 --- 4 --- --- --- C--- Ua--- Dl--- Il--- O --- k --- a --- y --- = --- u --- p ---x Od ---o pa ---B et ---e ne ---g E. ---a vi ---s en ---stni ---eit, ---MxLC --- eou --- gr --- r --- eC--- no--- tm--- Dm--- ao--- tn--- VL--- ea--- 4 ru---;0 sn--- 5 ic--- 4;oh--- nA--- A,p---e uCp---u tu ---n or ---i Ur ---t pe ---n dn;---o at ---C tE ---d en ---o g ---h si ---t tn ---e ae ---M rV ---ttte ---aner ---Deds ---rv i ---eE oM --pg ne --uo s --SL s -- a -- g -- e;-- B -- oE-- L xn;- o d - g - EC o - vo f - yen - rnt u - oti p)- t n d9-fc u a.-Ie e tH-er I i -ui f np-nD ge-id t;ta (rS no Ze( ol .g Cn 1ix w 0si o )tf D rt o Lyo N o HE 4 g( S 5 gSgL 7 itnA 0NneiF ,ogpd TU a= aDsIo!; sIu.l kOc7ne Nkc wu aae)on mys dit e s ta f fnDf u oorI l Cee tppu u;riun p-aZSi d-t Ct a-S Rn t- Co Le-; C o - g - ME - ev - se - sn - at -- g -- e -- B -- o C-- yx a-- r l-- o l-- t --n c --r e --u r --t i --e D --rld -- la -- ao -- Cl 4 -- n 5 -- w 0 -- o(6 -- D2 -- -- & -- --] 3 --e ) --u --nt G L--ia e o--tD t g--nr IeZ--oe nxi--Cprsip--duittS--oSDa u--h pl c--teml c--ehea e--MtTt s--p ei s--igto --Znan --[ieI -- mrn -- mCf -- u o -- s r -- k m -- c a -- e t -- h i -- C o -- n -- ) -- 3 4 ---.] 5 ---Sy 0;---(r 6---- o ---- t ---- c ---- e ---- r ---- iC ---- Da[---- dlN---- alo---- o U---- l D---- n I---- w O---- o k----xD a----oe y----Bk ]----ea ----gM ----a[ ----s ----s ----e. ----Mo ---- t ---- ---- d ---- e r---- d e---- aGt---- oeu---- ltr---- nIn---- wn ---- os ---- dt ----; a ---- el ---- bl ---- a ---- ot ----eti ----u o ----nsn ----ieI - --tln - --nif - --ofo - --C r - --drm - --ooa - --hftU- --t iD- --eyoI- --MrnO-;--to k--;-at a-- -Dc y-- -re -- -er =-- -pi =-- -ud -- -S F-- - y A-- - r L-- - a S-- - r E---- oM ---- pe ---- ms ---- es ---- ta ---- g ---- ae ---- B ---- so[---- exR----ft e----Ia o----ee r----ur d----nc e----i r----ts I----ni f----oh F----CT o---- r---- ; c---- e---- ]---- ( ---- 2 ---- ---- & ---- - ---- -3 ---- -) ---- - ----;-N ---- -e ---- -xC---- -to---- - n----t-Dt----a-ii----D-an----r-lu----e-oe----p-gI----u- f---;S-s --- d-h --- a-o -- o-u -- l-l -- n-d -- w- --)o-s --)D-h ;--9 -o --. -w S--I - t-- -c a--d -o r--n -rFt--a -ro --( -ero-- -ccf--0 -te --1 - Ic--. -dsh--Z -iOe-- -rnc--p -e k--e -c --t -t w--S -o e--( -r -- -i s--el-e h--tl-s o--aa- u--dC-a l--p -nMd--u -de -- - se--p -vsv--i -eae--Z -rgn-- -se --l -iBb--u -ooe--f -nx --st- d--sa-i o--eD-n i--cr-f n--ce-o g--up-r --su-m t-- S-a h--g -t i--ne-i s--ih-o --gt-n (--g - S--og-f t--ln-oRe-- i-rep -fd- s -oa-coZ - o-ur. -dl-rt1 -nn-ri) -Ew-en ;- o-ng -;D-t S- - M t- )-De a- 2-At r; .-Th;t S-so- (- d-o - -&s-f - - - - -eb-l - -ne-o)- -gc-g8- -ia-g.- -nu-iH- -es-n - - e-gp- - - e- - F-st- - o-uS- - r-c(- - c-c -x- e-ed-o- -se-B- i-sl-e- s-fl-g-D -ua-a-uo-lt-s-mn- s-s-p.-un-e-S -pi-M-y -d - -m -ay- ;b -td- o -ea- l - e- -s -(r- - -Sl- - -ta- - -e - - s-ps- - e- i- - t-I - - -.F-;- -9H- - - - - -)f- - - i- - - -e- - g-u- - n-n- - i-i- - e-t-M -;e-n-e --s-o-s -- -C-s --f-d-a --o-o-g -- -h-e --d-t-B --n-e-o --E-M-x -- -t- --;-a- B-- -D- e-- -r- s-- -e- t-- -p- M-- -u- e-- -S- t---- - h---- - o---- - d---- - =---- - S---- - u---- -(p---- -4e---- -)r---- - d---- -Ma---- -at---- -kM---- -ee----f-Dt----I-oh----e-wo----u-nd----n-l ----i-o ----t-a ----n-d ----o-D ----C-i ---- -r ---- -e ---- -c ---- -t ---- -os---- -re---- -yt---- - ---- - ---- - ---- - ---- - ----;- ---- - ---- - ---- - ---- - ----n-C ----u-a ----R-l ----t-l ----a- ----D- ----r- ----e- ----p- ---u- --;S- -- k- M -- c- i -- e- d -- h- d[-- C- lC-- - eh-- - Me-- - ec-- - tk-- - hZ--0 - oi--6 - dp--5 - =R--4 -MZu-- -ain-- -kp]-- -eM -- -De -- -ot -- -wh -- -no -- -ld -- -o -- -a -- -d -- l-D -- l-i -- a;r -- C e C-- c o-- )t n-- 4o t-- rsi-- pyen--t e tu--i t e--x S I--e ( f-- -- dy -- or -- ho -- tt -- ec -- meM -- re - tis - ads -nD a -orpg [-ieme L-speB o-ruto Zg-eS x iI-V g pn-ten Wc-ahi Iir-Dtt nlS-w a clu-ege rNc-Nnr Moc-,ic ete;no tRs odf hus i o on] se d rbt = e r E Vya(m tlt4p als)t 0Da y te;NM =nr ee !e xt rd-ths erl- oe uuu-DdtClCo-i aa,h-a lV0s-l lD6 -o I5e-g e4w- t -w a g-i d n-l; p i-l- U k- - c-s- e-h- h-o- C-w- - - )-n- 1-a- .-m- S-e- (- - -o-Z t -f-i n - -pL e -d-Co v -o-og E -w-nZ g -n-ti o -l-ipnL -o-nSr -a-uuu -d-ect - - ce -d-=er -i- s x-r-Fs o-e-A B-c-L e-t-S g-o-E a-r- s-y- ]s- - se- - sM- - ]e - - oc - - ;rc - - -eu - -;-ZS - ---np - ---oi - ---NZ -D---eg -u---uo -m---lL -p---a[ -S---V -y---D -m---I -b---e -o---t -l---a -s---d- - ---p- - ---U- - ---[- - --- -E- --- -U- --- -R-;--- -T- ---E- - ---S-=- ---L- - ---A-e- ---F-u- --- -n- ---=-i- --- -t-M---e-n-e---u-o-s---n-C-s---i-t-a---t-a-g---n-D-e---o-r-B---C-e-o---x-p-x---i-u- ---F-S- ---t- - ---o- - ---H- - --- - - --- - - --- - - --- - - --- - - --- - - --- - - --- - - --- - - --- - -(--- - -5--- - -)--- - - --- - -S--- - -h--- - -u--- - -t--- - -D--- -t;o--- -e w--- -s n---t- -S---e- -c---s- -a--- - -n--- - -n--- - -e--- - -r--- - -s--- - - --- - -( -- - -m -- - -a;-- - -y---o- - ---r- -t---e- -a---Z- -k---n- -e---o- - ---N- -a---e- - ---u-.-f---l-d-e---a-o-w---V-h- ---D-t-s---I-e-e---e-m-c---t- -o---a-t-n---d-a-d---p-D-s---U-r-)--- -e- --- -p- --- -u-;--- -S- --- - - --- -e- --- -h- --- -t- --- - - --- -g- --- -n- --- -i-c--- -r-a--- -u-l---f-d-l-- I- - -- e-s- - u-n- - n-e- - i-p- - t-p- - ;n-a- - o-h- -;EC- - - n -l- -Ed -a- -n -t- -do -a- - f -f- -o - - -fl ;g- - o n- -cg i- -hg h- -eie t- -cnu e-S-kgl m-h- a)o-u-wsV)s-t-euD9 -D- cI.f-o-sceIi-w-het -n-osade-S-usdns-c-lfpal-a-duU(a-n- l F-n-e 0 -e-vu 1o-r-ep .t-s-nd Z - - a t- -bt pe-;-ee es- - t - -d( Se- -oS (b- -it - -ne el- -gp tl- - xai- -tIodw-M-h.Bp -e-i9eul-s-s g a-s- )apc-a-( sio-g-S sZl-e-t e -B-e Mls-o-p ui-x- fh- -Z; sT- -.- s - -1- e;- -)- c - - - c - - - u - - - s - - - - - -Dg ; - -In -;-ei ---tg ---ag ---do (---pl 5---U -)---,f - ---Io]-O---W d-A---Lto-S---\rh- --sat-i --tte-s;--nSM- --e t-dE--n;a-in--o d-sd--p r-a --m e-bu--o p-lp--C u-ed-- S-da--d-[- t--e- -oe--r- -r.--a- - i--h- -sn--S- -ti--\- -o --D- -pa--V- -pn--T---ea--\---dl--s---.y--e--- s--t--- i--a--- s--i--- --c--- (--o--- S--s--- t--s--- e--A--- p-- --- --k--- 8--r--- )--o--- --w--- --t--- ;--e--- ---N--- ---\--- ---E---M---R---e---A---s---W---s---T---a---F---g---O---e---S---B---\---o---M---x---L--- ---K--- ---H--- --- --- ---=--- --- --- ---e--- ---u--- ---l--- ---a--- ---V--- ---D--- ---I--- ---e--- ---t---(---a---6---d---)---p--- ---U---C--- ---o--- ---n--- ---n--- ---e--- ---c--- ---t--- ---i--- ---n--- ---g--- --- --- ---t--- ---o--- --- ---e---n---u---e---l---t---a---w---V---o---g---r---e---k---R--- ---t--- ---e---(---G---m-- ---a-- ---y-- --- -- ---t-- ---a-- ---k-- ---e-- --- -- ---a-- --- - [ ---w- I ---h- n]---i- cd---l- re--;e- Ml-- )- el-- - ta--- - ht--- - os--- - dn--- - CI--- - oy--- - nd--- -;ta--- --ie--- --nr---C--ul---a--eA---l--]x---l-- i--- -- F;-- -- t -- -- o -- -- H -- -- f -- -- I -- -- k -- -- c -- -- e -- --rh ;- --eC - --t[- - --u --- --r --- --n --- -- --- -- --- -- --- -- ---- -- ----T-- ----r-- ----y-- ----A-- ----n-- ----d-- ----C-- ----o-- ----n - ----n - ----e;- ----c-- ----t-- ---- --I---- --n---- --c---- --r---- --C---- --o---- --n---- --t---- --i---- --n----M--u----e--e----s-- ----s--!----a--=----g-- ----e--F----B--A----o--L----x--S---- --E---- -- ---- -- ---- -- ---- -- ---- -- ---- -- ---- -- ---- -- ---- --;---- ------- ------- ------- -------(-------6-------)------- -------A-------t------- -------l-------e-------a-------s-------t------- -------o-------n-------e------- -------c-------o-------n-------n-------e-------c-------t-------i-------o-------n------- -------w-------o-------r-------k-------e-------d------;.------ ------ N------)e------3x------ t------d ------nd- ----ai- ---- a- ----2l- ---- o- ----sg- ----p -;----es- ----th-S----So-t----(w-a---- s-r----e -t----nw- ----ih-o----hi-f----cc- ----ah-Z--;-m -i-- ; o-p-- en- -- he-d-- )t(-o-- 6 s-w-- .n)-n-;)So.-l- ) -o- 7-s -a- . ' -d- I1t - - .a -(- dSh -S-)n w -t-8as -e-.(pt -p-H eu - - 8toC-Z-p.S o .-eZ(gn 2-t nn )-Spdie -(eodc - thnt -dStiS -e(eft -l M a; -lytft-;-araou---ttD s---ssrd ---nien ---igpE --- eu ---yrS; ---d ---agf ---eno- ---ri - ---ltt- ---aar- --- da- ---spt- ---iuS- --- - ---Ff;- ---Ho - --- - ---fd-- ---in-- --- E-- -- g -- -- n;-- --;i --M---e --e---e --s---s --s--- --a---f --g---o---e--- ---B---t---o---r---x---a--- ---t--- ---S--- --- --- ---;--- --- --- --- --- --- --- --- --- --- --- --- --- ------- ------- ------- -------(-------7-------)------- -------D-------o-------w-------n-------l-------o-------a-------d-------i-------n-------g------- -------u-------p-------d-------a-------t-------e-------.-------i-------n-------i------- ------- ------- ------- ------- ------- ------- ------- ------- ------- -------C-------a-------l-------l------- ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- ------- -------G-------e-------t-------U-------p ------d -----a; -----t- -----e- -----I- -----n- -----i-[----- -D----- -o----; -w---- -n---- -l----- -o----- -a----- -d----- -Z----- -i-----M-p-----e-]-----s- ---;-s- --- -a- --- -g- -----e- -----B- -----o- ----x- ---- - ;---- - ---- - E---- - n-;-- -Sd- -- -e - -- -to- -- -Wf- -- -o - -- -rI- -- -kn- -- -Dc- -- -ir- -- -re- --(- m- --7- e- --)- n-e-- - t-t--U- a;a--p- l D--d- t--a- M a--t- e D--e- t y--.- h a--i- o l--n- d p--i- -s-- -D(-i--d-oS-D--o-wt- --w-ne-=--n-lp- --l-os- --o-a - --a-dI-e--d-D.-t--e-i1-a--d-r -D-- -e--t--t-c -a--o-tI-D-- -o.-z--t-r9-s--e-y)-,--m- -x--p- -x-- - ;-.--d- --0--i- --.--r- --4--e- --\--c- --e--t- --n--o- --i--r- --g--y- --n--.-L--E-- -o-- -- -g--n-- -P--a-- -r--c-- -o--S-- -g--s-- -r--u-- -e--r-- -s--i-- -s--V-- - --\-- - --s-- - --t-- - --n--M- --e--e- --n--s- --o--s- --p--a- --m--g- --o--e- --C--B- -- --o- --d--x-6--e-- -0--r-- -0--a-- -5--h-- -,--S-- -Z--\-- -i--D-- -p--V-- _--T-- F--\-- ;i--s-- l--e-- Se--t-- tL--a-- ai--i--(rs--c--8tt--o--) --s-; o --s- Df --A- o -- - wm --k- no --r- lr --o- oe --w- a --t- dc --e- ioG--N- nme--\;Wgpt--E T lL--R Ndei--A _exs--W 2l t--T 3tu --F Nap --O I.d --S Wia --\ nt --M =ie --L-= . --K- ai --H-enn -- -pdi -- -y -- -Taa -- -Snn -- -Oaa -- -zll -- -syy -- - ss -- -|iiZ-- - nsi-- -Sg p--e-T (D--u-NtSo--l-_htw--a-2een--V-3 pl--g-Nt o--e-Iw9a-;R-Wo)d- t- e- e-=i d- S-=n;=- - i-Z- -e -i- -pf-p-) -yi-_-7 -Tl-F-. -Se-i-H -Os-l- -z.-e-d -s -L-n - -i-an- -s- o- -t-6i- - -.s- - -Hr- - - e- - -,V- - 5t- - .a- C- ;HD- a- - w- l- -pe- l- -eN- - -t - - -S=- -C-(n- -o- o- -n-xi-n -t-is-r -i-fr-u -n-te-t -u-oV-e -e-ht-r -I- a- -f-gD- - -nz- - -is- - -k,- - -cx- - -ex- - -h.- - -c0- - - .- A- -f4-]n- -o\-ka- - e-cl- -dn-ey- -ni-hs- -Eg-Ce-Z- n-TU-i-;E-ND-p- -_I-D- n-2 -o- a-3 -w- c-n -n- S-i -l- s-W -o--u-m -a--r-r -d--i-o -F--V-f -a--\-t -i--s-aM-l--t-le-e--n-Ps-d--e-[s- --n- a- --o- g- --p- e- --m- B- --o-Xo- --C-9x- -- -_ - --d-2 - --e-3 - --r-N - --a-I - --h-W -L--S- -o--\-= -g--D-= -E--V- -v--T-e -e--\-p -n--s-y -t--e-T - --t-S(- --a-O8- --i-z)- --c;s - --o F- --s o- --s- l- --A- l- -- - o- --k- w- --r- i- --o- n- --w- g- --t- - --e- d- --N- i-4--\- a-5--E- l-1--R- o-3--A- g-,--W- -Z--T- w-i--F-ni-p--O-rl-_--S-ul-N--\-t -e--M-es-w--L-rh-D--K- o a--H- w t-- - ;s-- - w-,-- - h-Z-- - a-i-- - t-p-- - -_-- - u-F-- - p-i-- -]d-l-- -ka-e-- -ct-L--e-ee-i--u-hs-s--l-C -t--a-Xw- --V-9i- --g-_l- --e-2l- -R-3 - -t-ng- -e-ii- -S-Wv- - -me- - -r - - -ow- - -fh- - -ta-s - -at-e;- -l -t-- -Pa- -- -[n- -- - d- -- - - -- - w- --t- h- --a- a- --D- t- --.- - --n- o- --a-0r- --c- d- --S-=e- --=-=r- --e- - --t-nt- --a-oh- --D-ie- --t-sy- --a-r'- --D-el- --y-Vl-Z--a-e -i--l-nb-p--p-ie-C--s-g -o-;i-nc-n- D-Ea-t- ,-tl-i- e-nl-n- t-ee-u- a-rd-e- D-r - - t-ui-=- a-Cn- - D- -F- t- -A-gr- -L-no- -S-aS- -E-L - - -e - - -t - - -a - - -d - - -p - D- -U - u-[- - m-Z-= - p-i-= - S-p- - y-D-g - m-o-ne- b-w-at-no-n-La-rl-l-yD-us-o-nt-t -a-Aa-e -d- D-r -F-|x- -a- 4- -i-gt; -l-ne -e-aG -d-L ) -]-e 0 - -t 1 - -a - -d p - -p e] - -U te - - Sn - -= (i - -= g - - Tsn - -gAtE - -nDad - -a.De -r-LN lM-e-mAple-t-eCuas-u-tS ts-r-s gsa-n-y=nng- -S iIe- - nkoB- - ocNo - ia[x - sB - r - ef [ - Vo C - t 0 h - ad e - Dn= c - wE= k - e F - N; o - r - V - -n a - -o lZ- -i(ii-n -s8dp-r -raUD-u -e)po-t -V dw-en-tAan-ro-antl- i-Daeo- s-tlsa- r-ny]d- e-es e- V-ri d t-rn a-ug =; D-C =- x- H - 4- o F-]t- t A-te- F L-cG- i S-e - x E-r - -r - ic -o - na -C - fl -g - ol -n - r -a - m -L - a -t - t -c - i -u - o ;-dy- n --or-n --ro-r& --Pt-u --xc-td --ie-eo --Fr-rw --ti- n --oD- l --Ht- o --[a- a -- D- d -- - i -- - n -- - gC--r - h--e - te--V -]hc--d -sek--o -tmF--r -a o--P -Dir--e -dfV--t -e a--a -lnl--d -lei--pr-acd--Ui-teU-- D-ssp--=k-nsd--=r-Iaa-- o-ort--rW-Nye--et-[.s--Ve- _--dS- F--o - o--r - r--P -0 c--m - e--e -= I--t -= s--s - O--y - f--S - Cf-- - a -- - l -- - l -- ]-y -- y-r -- r-o -- t-t -- s-c -- i-e -- g-r -- e-i c-- R-D a-- e-e l-- t-n l-- a-i -- d-g -- p-n -- U-E --np- --ri- --uZ- --t[- --e - --r - D -- - o -- - H -- -- o -- -- t -- -- f -- -- i -- -- x -- -- e -- -- s -- -- --]-- C--t-; h--c- n e--e- r c--r--u k--r--t F--o--e o--C--r r--r-- V--e-- Ma--V-- el--t-- si--c-- sd--u-- aU--d-- gp--o-- ed--r-- Ba--P-- ot- x--]xe- i--r s-;F--i _- t--D F-So--e o-tH--n r-a[--i c-r --g e-t --n I- --E s-o --o O-fD--N n- I--[ -Ld-- -ao-- -ur-- ( -nP-- 8 -ce--0a ht-- ) ia--= nd--=H gp-- o U-- t; A -- f-;p=-- i- p=-- x-E -- e-naD-- s-dfI-- - td-- f-oeo--yi-frr--rn- P--oi-Zum--ts-ipe--ch-pdt--ee- as--rd-dty--i -oeS--D -w --t -n --a -l; --D -o- -- -a- -- -d- -- - - -- -(- -- -S- -- D-t- -- u-e- -- m-p- -- p- - -- S-Z- -- y-.- -- m-2- -- b-)- -- o- - -- l- -n-- s- -r-- - -u-- - -t--n - -e--r -;-r--u --- --t --- --e --- --r --- -- --- -- --- -- --- -- --- -- --- -- --- -- M---]-- e---t-- s---c-- s---e--]a---r--rg---r--ie---o--DB---C--to---D--ax---I--D ---t--o ---c--N ---u--[ ---d-- ---o-- ---r;- ---P - ---x - ---i - ---F - ---t - ---o -3 ---H)-0 ---[)-5(--- 7-49--- .- )--- I- --- ; C---0d h--- n e---=a c---!( k--- 0 i---D8 n---I.= g---dZ= ---o t---rpp h---PeU a---etd t---tSe ---a(k a---d c n---pya ---UrB u--- tstp--- stid--- iaxa--- gDet--- el e--- rl --- A w--- g i--- n l--- i l--- t --- a a--- d c--- p t--- u yu--- ra--- f ol--- o tl---n cy---rt e --ur ru --ta ip --et Dd --rS ea -- nt -- ;nie;-- rg -- unsS-- tEot-- e,ma-- r3er-- 0tt-- - 5h -- - 4io--]- nf--n- g --o- .m--i- o- t- r- a- e-;m- --r-] c--o-p h--f-U e--n-d c--I-e k--e-k i--t-c Cn--a-a ag--d-B l --p-stlw--U-tn h--y-ae e--n-Dv n--A-lE --[-lg f-- -Ao o-- -tL r-- -o c - -N e ---[ --- i --- s --- --- O --- F --- F ---0 --- e (;---=n S----=i t---- gCe----rnhp----iEe ----Ddc9----peka----ulF)----klo ----car ----atV ----Bsa ----tnl ----aIi ----Dod;---- NU----- p----- d----- a----- t----- e----- s----- ----- ----- ----- ----- ----- ----- ----- ----- f ----- I ----- eM-----nue-----rns-----uis-----tta-----eng-----roe----- CB----- o----- x----- ----- ----- ----- ----- ----- ----- -----] -----r3 -----i, -----Dl -----pl -----ud -----B. -----t2(-----a39-----Dn)-----oa -----NcT-----[Sh----- ce----- Mr----- =e----- n ----- oa----- ir-----Ese-----Sr -----Len-----AVe-----Few----- ne-----=ir-----!g ----- nD----;sEA---- ttT---- ans---- De ---- pra---- urn---- kud---- cC/---- a o-- - B r-- - -- - e-- - n-- - g-- - i--[-- n--C-- Ee--o-- P --m-- no--m-- ou--o-- it--n-- s --L-- rt--a-- eh--u-- Ve--n-- er--c-- le--h-- i.--A;-nF --p -rtD--p -uei--] -tGa-- -e l-- -r o-- - g-- )- -- 7- w-- .- i- H- l- - l- d- - n- s- a- yh- - ro-;C6-]ow- o.-st -SnH-tcw-tt -aeh-ai,-Dri-rn5-pic-tu.-uDh- eH-ke -oI -cnm ffp-aie e-Bgt Z t-snh i S-eEo[p (-Y dC -[ shC x- eR i- wcC f- ik t- lF( o- loS h- rt - bVe g- eap n- l Li- riZak- ud.uc- nU3ne-7r p)ch-0i d hc-5D a A -4k t pf- r e po- o s - W _ t- t F; r- e o- a- S r- t- Dc- S- ue- - mI- ;- ps- - SO- - yf-S - mf-e - b]-t - o -W - l -o-- s -r-- -k-- T -D-- N -i--t -r--in - --xo - --e - -- n - -- o - -- i C- -- s o- -- r n- -- e t- -- v i- -- Mn- -- eeu- -- nse- --yisI- --rgaf-A--ong -p--tEe -p--c B -D--ego -i--rnx -r--ii -e--Dt -c--tt -t--ae -o--DG -r--, -y--7) - --03 - --5( - --4 F- -- o- -- r- -- c- -; e- - (I- - 1s- - 0O- - )f- - f-R- B -u-) a -n-a c -A-7 k -p-. xi -p-Z on - - Bg - -pte - -engu - -teap - -Svs M- -(EsDe- - geAs- -yoMTs- -rL sa- -o g- -t (e- -c iB- -e fo- -r x- -i c - -D o - -t n - -a f -A-D i -p- r g -p-oiku -L-tDcr -a- pee -u-Tuhd -n-ABC -c-DtTt -h-.aNo -e-aD_ -d-ro2d(-=-tN3o9-P-x n a-r-E is)-o- Wo -g-g m)F-r-n r o-a-i o r-m-y f c-T-p t e-o-o a U-R-c l p-u- P d-n-f a- -o t- - e- -df C - -nI ai- -Ee ls- - u l - -;n o- - i f- - t f- - n - - o - C - -- f C-- I o-- e n-- u [t-- n Ci-- i Rn-- t Cu-- n Ze-- o ciI;-VC apf -A l] -S l -. -k B -c a -a c -B k -_ u -T p -A E -D]x -=Ti -rNs -int C x-Doi RAi-pin CpF-usg Lpt-krD iNo-cea soH-aVt tte-Bes Lh-tn aT-ai C un-Dg h nu- n e cR- E c h - t k e - e S d - G D - [ I - s - MV - ea - sl - si - ad - Rg_ - EeNZ - BBoi -rMoFp -iUxoCL -DN rRo -e cCg -t, eOE -ar kv -ee ael-rV ynl-Ce =ta- n Z C- i i - g p - n _ - E F - z i - s cl - (ae - ,1lL - 0li -vx) s -ax t .-s.B , t-.0a Z p-,.c i i-n4k p r-o\e _4c-ied C5s-sn R2 -riu C9x-egp L,i-Vn iPf-tED srt-a A too-DnT gh-tas r -nc ae-eS( mh-rsi Tt-ruf o -ur C Rg-Cich un-,Voe ni-_\nc n-Tsfk n-AtiZ u-DngiC R-=eupo -rnrIn )-ioest[2-DpdViL1-pm ana.-uotluuH-kCoien(-c dIc -add_fh -BeoN A -tr o p -aasF p -Dhoo ] - S)r - \.c - D e - VB - Ta - \c ; sk eu tp x a o id ZrB ci iee or ptg secFua scaars rAtlins i oll eEDkr e MSery d Lto C Aawi R Fets C re =CNa ! \t E d Rb e Ao i Wt p Tt o Fo eC Om ut;S na \o iD Mf LRtayL ounrrKt gnotoHhCEPCxt=ihvrdEcnseeoo eo cngh rilktrt isiI ae Drsn mM tetc x aV r !i De:I =F n-s t i V Fo g a AH n l L E i S t d E n _ e N r o r F u o n CDr4 r uc5[ u me0A tr p 9p ei S ,p rD y ZN k m iof r b ptI o o _Le W l Fau t s iun e lni S ect Lhn e ieo u csdC] l at] d a l e V l i g p e o R C t t e a G D] M ay e prr s rito s eZxt a stFEc g euHse e treer B nhYi o T[D x p px i u9 z k n cn U ao Q B u 2tn i 6ao t 5Di I 4es f kr N ae o Mv U [ p e(d n1a i1t A g)e p n sZp EC_iL aNpa gloCu 8nlFon 0iionc 5tnrthl 4tgcielt e endan Gt u Ce h e= v )e = E 3 = g (b F o e FA L s AL t LS [SE uCE ph de x ac i tk f eS t D o mI[ h esZ; tVi-edtxhap-heioolF-tixBdia- pee.di-go g _l-nC a Ne-it s od-pa s FC-pD e oR-ia M rC-zr c]-nt e -Ux; ] - E -)s C -1er a -1Yi l -. D l -H p -( u - kk - cc r- ae e- Bh t- tC u- aX Cr- D9 on- ,_ n - y2 t - r3 i - on n - fti u - IcW e - eem I -xurr f -onio -BiDf -ettt -gnaaB -aoDle -sC,Ps -s 8 t -e 0 M -M 5 e - 4 t - h Z- o i- d p- C- DR- oC- iO- nk- t ga- a Ey- D f n - . I g=- a e i=-er u n -ut n eF-nx iM A-iEtte L-t=nns S-nyeos E-orvCa -CoE g -dtg e -oco B -heL o -tr x -ei C -MD o -xt n -ia t -FD i;-t= n--od u--He e-- i I-- p f-- o -- Cp -- tU -- ad -- De]( -- akx1 -- rc92 -- tan) -- xBo -- EsiC -- tsa -- arl --f Del --I lVi --e lenS--u AngD--n ti P--i ogtr--t Nnho--n Eev--o t i--C emd-- Gie-- [ds-- dN-- s le-- e ew-- l F-- i ui-- F pl-- y de-- p as--po t --iCf e - Z I - F e m -;H u e --C n t --R i h --C t o -- nTd -- oN. -- Cn -- o -- i s-- s e-- ] r t-- t e -- a V -- D e -- a n -- r i -- t gC -- x na -- E El -- yttl -- pae -- odG -- C. -- ps --lie --lZm --a[a --C n -- , -- t -- a -- d -- . S-- -n D-- -a S-- -e h-- -l o-- -c u--x-, l--i-t d--f-a MB--t-d ie--o-.ldR--h-nldu-- -aaln--g-cCe --n-s M --i-= e --C-r t --R-i h --C-D o -- -p d --)-u --0-k --1-c --.-a --H-Bx =--(-t9 -- -an T-- -Do R-- -=i U-- -ps E-- -Ur -- -de -- -eV -- -ke -- -cn -- -ai -- -Bg [-- -sn C-- -tE h-- -at e--x-De c--o-lG k -B-l Z -e-A i -g- Mp -a- eI -s- ss -s- sV;-e- aa -M- glE- - ein- - Bdd- - o_ - - xNo- - of- - F - - oZ- - ri- - cp- -s e - -e ]C- -l R- -il C- -Fl - -ya (- -pC S- -o t- -C e- - ( p- - 1 -e- 3 Z-u- ) .-n- 3-i- CC)-t- ao -n- ln -o- elt -C- pii -d- ynn -o- Tgu -h-yS e;-t-rOtI--e-ozhf- M-tse - x-c -;i-e w - F-r o -Et-i r -no-D s -dH-p t - -u -o -k u -f -c p - -a d -L -B a -a -t t -u -a e -n -D Z-c -e mi-h -keep-i -aptP-n -Myhr-g - Too- - sdv-Af- O.i-pI- t d-pe- e e- u- G s-an- N-fi- e-tt- w-en- F-ro- i- C- l-u - e-p ; s-d C -a a -t l -e l - . - ) -; )ll -- all --x7aa --i.c --fZ t --t a --op s--He l e--dt i t--aS a --o( f --l --ny e --wr w --oo --Dt g -- csn -- eti -- ramW -- iDuo -- Dpsr -- tuss -- akat -- Dc(M -- a e -- oB t -- tseh -- edo -- TYid -- A s -- D Z-- . d i-- a o p-- r o S-- t g h-- x o--lE e u--l h l--ag t d--Cn B-- i n e-- y o R-- p u-- ofg n-- cIn -- ei -- ful -- oni -- ia -- ttf --xrn --iaoe --ftCr --tS ' --o e --h; w =-- M --g teT--n ssR--i asU--d eaE--a lg --o- e --l- tB --n- ao --w-] x --o-so --D-ts [-- -a C--)-D; h--9-g e--.-n c--H-ig k--(-tn I - -si n - -it c - -xa r - -Ed I - -pp s - -uu V - -k (a - -cs1l - -ad4i - -Be)d - -[e _ - - nAN;- - lo-- - tlF--x- i o--o- ur--B- npc--e--ede--g--ha]--a--wt --s-- e --s--ts --e--i --M-- f -- --ga -- --ni -- --il -- --te -- --ad -- --d -- --p -- --u C-- -- o-- --t n-- --o t-- --n i--.-- n--g--n u--n--a e--i--hLI--d--tof- a-- g - o--rE -;l--ev --n--te --w--tn --o--et --d--b -- -- --.--s --.--i --.-- -- --s --9--i --.--h --H--T I-- -- n-- --. c--.--y r--d--r P--e--a r--d--s o--e--s v--e--e4i--n--c5d-- --e5e--s--n2s--i-- ,N-- --;Ce--x-- uw--i-- rF--F--sri--t--iel--o-- ne--H--nts-- --aD --8--ha --.--tt --H-- V -- --ne -- --er -- --ts -- --fi -- --oo -- -- n -- --e, -- --rC -- --ous-- --mre-- -- rt-- --ee -- --nn -- --it --x--gE --o--nn --B--eg --e-- i --g--en --a--he --s--tV --s-- e --e--er --M;-ts -- -ai -- -do -- -pn -- -u -- - -- -t -- -h -- -g -- -i I-- -m n-- -- c-- --e r--e--w S--u-- eh--n--oxo--i--siu--t-- tl--n-- d--o--, B--C--n e--d--o R--o--i u--h--s n--t--r -e--e -M--v -x-- -i--l -F-;a -t- e ;-o- r -H-- S- --e t- --h a- --t =r- -- t- --; T - -- 4Ro- -- 5Uf- --n5E - --a2 U- --h n- --t Z- -- i- --r p- --e -f--w (-I--o S-e--l [t-u-- Qe-n--s up-i--i i -t-- tZ-n--y I.-o--r f4 C--t N) --s o --i U --g p --e d --r a -- t --e e;; --h;s-- --t _-- -- cN--d--nao--e--ilF--l-- lo--l--ner--a--odc--t--i e--s--sw]--n--rh --I--ee --y--vn --d-- --a--ee --e--hx --r--ti --l-- t --A--t --x--ai --i--hs --F--t --t-- cC--o--sao--H--iln--f-- lt--I--rei--k--odn--c--r.u--e--r e--h--e I--C-- [f-- --yE -- --lx -- --ei -- --kt -- --i] -- --l -- -- -- --t -- --s -- --o -- --M -- -- -- --; -- -- -- -- S-- --. D-- --x W-- --9Mi-- -- el-- --nsl--l--osN--l-- ao--a--ygt--C--reR-- --tBu-- --son-- --ix -- --g -- --e -- ;-r -- - -- -e -- -h -- -t -- - -- -d --t)-a C--c7-e o--u.-r n--dZ- t--o -o i--rp-sEn--pe- xu-- t-,ie--sS-htI--i(-gif--h -un --ty-og -- r-h. --ro-t --ot; E --fc ox -- e fi --sr)nt --ii0iC -- D1 o --xt nd --iapoe --FDei --t tsw --ooSriZ--Ht(eli-- vlp--:ss W-- Ttebi--7Aavel--.DDa l--H haN-- gp to--dnut t--ni 'tR--aygnhu-- pnsen--6oie --.ckoe --H cdn -- fa d --,oBD --5 xo --.dfVf --Hno -- E et -- thh ;rTeC a o ; t;fn - S ot - li - ;.ln[- couU- - nwen- --yiIz- --snfi- -- g p- --n T-x--il h-o-- i e-B--gs Z-e--nt i-g--i p-a--e. ]-s--b. -s-- . -e--y -M--r - --t - --s - --i I - --g n - --e c - --r r - -- W - --e i - --hDlU- --tuln- -- mNz- --npoi-t--oStp-c-- yR -e--;mu -r-- bn -r-- o -o--gl -C--ns -g--i -n--y -a--l -L--e -t--r -c-- -u--f -d--o -o-- -r--d L -P--a o -x--e g -i--t E -F--s vN-t--n eu-o--i nm-H-- tU- --e n- --n Z- --i i- --g p- --n p- --eM e- -- e d- --es =- --hs Z- --ta i- -- g p- --ye _- --rB F- --eo i-f--ux l-I--q e-e-- 4L-u--s 5i-n--i 5s-i-- 0t-t--t , -n--i C -o-- u -C--o r - --d r - -- e - --o n - --t t - -- D - --y(a - --aXt - --w.V - -- 1eC- --r)ro-t--e sn-c--pDit-e--oioi-r--rsnn-r--pc,u-o-- oCe-C--enuI-r--hnrf-e--Ter -V-- ce -t--;tn -c-- it -u-- nE -d-- gn -o-- g -r--](i -P--nin -x--ofe -i--i V -F--sce -t--ror -o--ens -H--VniU- --eeon- --ncnZ --it i --ge p; --nd F --E) aS ;-t it ;e la G er [ dt - - o - e f - x f - i EI - t me -0C puE-0a tnS-5l yiL-4l MtA- enF- to - LhC=- oo =- gd - E d- v e- e i- n; p- t- o- - C- - s- - t- -ta- -cD- -e - 4 -r - 5 -r - 5 -o - 0 -C -tD -D -ii -I -xs -t -ec -c - o -u - n -d - n 4-o - e 5-r - c 2-P - t 3-x - C ,-i -;o Z-F - n[i-t - nSp-on-yeD_-Hr-rcPF- u-otri- t-tiol- e-cove- r-eniL- -r di- -i es- -D st- -t N - -a e - -D w - -, F - -0 i - -0 l - -5 e -f]-4 s -Id- ] -ee- -ui- -np- -io- s-tC- e-nt- t-oo- -CN- - s- - t- - a- r - D- e - [- t - - u - - r - -t n - -n - -e - -v - -E -E -g -U -o -R -L -T - - - -= - - - -eE- Z-uS- i-nL- p-iA- C-tF- o-n - n-o=-sM t-C=-teSi-x -asDn-is-Ds_u-Ft-daNe-ts-ege -oi-lew=-Hx-lBE - E-aonF- n-txgA- a-s iL- e-n nS- l-I eE- C-o - -N > - |- - - C - E- u - S- r - L; r[- A eU- F nn- tZ- = Ei- = (np- XgF- s .ia- t 2ni- s )el-ti f Ve-ex-IRed-sE-eer]- s-ums - e-noi - m-ivo - a-tin - N-nn - -og| - |-C - DS E- oD ; S- w_ - L- nNr- A- lee-]F- owt-e - aDu-t=- dar-a=- tn-d - Ds -ps-Ti -Ut-Ar> -ss-De -si-.cC -ex-Ntu -cE-Aor -on-Crr -ra-Sye -Pc- n -[S-=(t - - iD - -nfa - -o t - -iwV - -see - -r r - -ems - -VaiN-x -tdou-i -aenm-F -D U-t -to n-o -nn Z-H -ee i-t -r) p-x -r p-e -u [e-N -C Zd-on- i -Dr- p=- u- P=- t- r - e- o0- r- v - - i - - Cd - - ae - -nls - -olN - -i e - -s w - -r F - -e i - -V l - ]-t e - g-a s;- n-D ]-- i-x -- s-4 -- s-t --li-e --lM-G --ae- --Cn- -- O- -- [- -- - -- - r-- - e-- - Rt-- - eu-- - mr-- -yon-- -rv -- E-oe -- S-tD --eL-co --tA-ew --aF-rn --d -il --p=-Do --U -ta --se-ad --su-DD --en- i --ci- r --ot- e --rn- c --Po- t -- C- o -- p- r -- i- yZ-- Z- i-- - p-- - _-- - N-- - e-- - w-- -r D-- -i a-- -D t-- -k s-- -r -- -o >-- -W -- ;t C-- eMu-- Ser-- - sr--l - se--l - an--a - gt--C - eD-- - Ba-- t- ot-- e- xV-- s- e- - r- -] s- -n i- -o o-; -i n- -s -T -r -h -e -in -V -so -t - it-a -its-D [-sai-t I- mL-e(n-are-GXc- ol-[.r-pfi- 3P-lnF- )r-aI_- o-cep- Rv-eti- ei-haZ- sd-od,-2te-lp5-0as-dU2-5rN-ey5-4te-rn4- iw- A - nF-f - gi-u - l-n - Oe-c - As-t - S]-i - . -o - -n - - - -w - -h - -i - -c - -h - - f - -oIt- r-nen- Se-eue- et- nv-ttu-oiE-iWr-rtg-xon- no-er -moL- k -oC - D -r - i -e - r - o - f - - B - e - ;s -2 t -0 E/ -5 nM g-4 disn- dli- odos- flbs- I emi- AnU/yM- pcnWSe- prZopn- D_irmO- iNpsu - re tD - ew - cD(m - taSa - otty - rse - y pb -t > e -n Z -e C.s -v u4e -E r)t -g r -o e ttf-L n opI- t ie- D ru- Ra ;cn- ut; Si- nV-iet- Se-ftn- cr- ao- rs-udC- ii-pp - po-dU -rtn-a, -i -tC -D -eR -e -.C -n -ip -i -ni -g -iZ ;n [- e E F-ft o o-aa )N r-idt9 c-lpa e-eUDp I-d,.e s- ent O-tmaS Af-oae( lf- Nl l]-gpCs S -ei=i t -tZss a - ety r -ttsl t -haia e -edxnfd - pEaI= -iUn e4 -n,aiu5 -fDenn1r-oIliiSe-reC.ttt-mt enau-aa toAr-td aCPn-ip d . -oU p L -n, u w - g S -an x -ba e -oL l -ue p -tt m - a o -ad cr - ps i -pUteD -a,srl -rriol -texma -iVE t -cdefs -uolonrF-lri Ieo-aPFdztr-re nsuc- t E re-ua ,nU-pd ; p-dp x d-aU x a-t, -. t-eD -0 e- I -. -md -4 =-eot-\ =-tra-e -hPD-n F-oe.-i A-dts-g L-.ae-n S- dm-E E- pa- -;UN-n - =-a -T s-c -h t-S -s s-s - i-u -i x-r -s E-i - s-V -m e-\ -o m-s -s a-t; -txN-n- - i -e- -lF -n- -it -o- -ko -p- -eH -m- -lt -o- -yx -C-;- e - ---tN -d---ot -e--- e -r---hG -a---a -h---p -S---p s-\---e t-D---n s-V--- i-T---w x-\---h E-s---e e-e---n l-t-- i-a-- t F-i-- hx -c-- ei -o-- F -s-- Dt -s-- Ao -A-- TH - -- s -k-- t -r--;ax -o---re -w---eNt-t--- a-e---s:D-N---o .-\--- 4n-E---o.a-R---lHc-A---d S-W--- =-T---t -F---h s-O---a t-S---t s-\--- i-M---t x-L---h E-K---e n-H--- a-=---i c-y---n S-r---c -o---rx -t---eo -c---mB -e---ee -r---ng -i---ta -D---as -e---ls -n---se -i--- M -g---d -n---o -E---n - ---' s- ---t t- --- s- --- i- ---; x- --- E- ---g e- ---o l- --- i- ---b]F- ---ax - ---ci - ---kF -e--- t -u---fo -l---aH -a---rt -V--- x -g---ee -e---nN -R---oo -t---uD ;e---g[] G---h t ---, s- --- i- ---o x- ---r E- --- s- ---i t- ---f a- --- xD- ---'il- ---DFl-]---otA-y---Eok-r---nHc-o---gte-t---ixh-c---neC-e---eN[-r---'o -i--- D -D---i -e---s -n--- -i --F -g --A E-n;--L S-E---S L-t---E A-e--- F-G---( -[---s =- - -o - - - e- - -S u- - -u n- - -p i- - -e t-1-;-r n-0- -D o-5-E-a C-4-n-tlp- -d- li- - -waZ- -o-oC - -f-n - - -' - -m-t - -o- - -r-b - -e-e - - - - -c-u - -h-s - -e-e - -c-d - -k-) - -i .s - -n l - -g o - - b - -w m -t-h [y -i-e;ES -x-n mp -e- Spmt- -fttue- -oayDs- -rrM - -cte - -e t - - oh - -ifo - -s d - - r] - -Oe -1-Fa -0-Fd; -5- i y-4-(n r- -Sg;Do- -t It- -eP gc- -pk ne- - g ar- -9D Li- -ae zD- -)s st- - c ,a- - . nD- - I a,- - n ct- - i Ss- - si- -;( uL- --S re-t--t;il-n--e Vi-e--p \F-v-- D_-E--Z Vp-g--. Ti-o--5 \Z-L--) s,- -- e6- -- t2- -- a5- -- i4- -- c - -- o - --; s - --- s - --- A - --- -r--- k -i--- r -D--- o ;t--- w a--- t D--- e o--- N N--- \ --- E --- R --- At --- Wn --- Te --- FvE --- OES --- SgL ---,\oA ---~MLF ---.L --- K = --- H = --- = f--- nI--- ue--- Ru--- g en--- n Bi -- a dt -- L ln;-- m uo -- edoCS-- teh t-- siS a-- ypr r-- Soc t-- Cn -- tI o-- o f-- N -- s l-- t o-- a Tg-- D A---; Df-- i-- ,l-- e-- x -- e xf-- u .u-- l 0n-- a .c-- V 4t-- g \i-- e eo-- R nnn-- t ris-- efug -- GItn -- eeE(-- ur S-- n nt-- i ae-- t cp-- n S -- o s1-- C u)-- r -- i -- r V;-- e \--- b ]s--- m nt--- u un---,N Re----n tn---'o oo---_i Np---_s lm--- rtlo---`eaiC----VdW ---,t.rd--- nnce--- eanr--- reIa--- rl[h--- uC S--- C, \--- zt D--- sa V--- ,dET--- n.S\--- asLs--- ceAe- - SmFt- - sa a- - uN=i- - r,=c- - it o- - Vans- - \Dus- - D.RA- - Vne - -;TaBk- - \cdr- - sSlo-;- e=uw--- tyot--- arhe--- ioSN-- ctp\-- ociE-- seZR-- sr A-- Ai W-- D T--[ kt F--Z ra O--i oD S--p w= \--R td M--e ee L--a Ni K--d \p H--P Eo =--k RC y--g As r--D Wt o--e Ta t--s FD c--c O e--] S nr-- \ ri-- {M uD-- ,L tt-- -K ea-- 'H rD-- = -- r -- `e -- .V -- d -- }o -- r --P P --a ms --r ee --s tl] --e sin --P yFu --k SyRe--g ptu--D ool--e CNa--s lV--c lg--D ie--o, WR--t' pt--I) ie--n ZG--i [ -- -- -- ;e -- u -- lyE -- arS --Z VoL --i gtA --p ecF --M Re ]--e tr=y--m ei=r--b GD o--e dnt--r auc--s oRe--F ler--i nBi--l wdD--e olt--s Dua--, oD -Z ht -i Se;-p DG--M S[--e --m --b --e --r --s, --C( --r . --cas n--s er o--=)ii i--P tD s--k rk r--g er e--D`po V--e-oW t--s.rt a--c_pe D--._ Snt--I m rn--n e ue--i t tr-- s er-- y ru-- s C-- -- t -- e -- ,g -- ' -- ,: -- ' s -- )3r - ~.e - C,Hn] - o nn - n oau - t;tcR - i St -;n 1nox- u .wNo-Se HolB-tI Dle-af tig-r uWa-t hDs- SSs-o [e-f M- -m -o -r -e - E -c S -h x L -e o A -cZ B F -ki e .-ip g =.-nP a !.-ga s - r s s-ws e I-he<M -eF= en-na. lno- i) lii-fl ags-oe( cnr-rd Ee-c oV-e D - T-i A-s D- -O ] -N s - `e -( -x. -S .i9 -t _f5 -eL_t7 -po,o2 - g=H -9E=ot -bv'Dc -)e [e - n' f - t e x- ' dno- rB- ' ue- } ;tg-; - ea-- - rs-- ;- s-- - e-- - M-- - -- - -- -. -- -. -- -. -- - -- -d --4 -e] --5 -ke --2 -cn --4 -oi --, -lg -Z -nnn -i -uEo -p - gi -_ -ens[-F -rirO-i -aoep-l - DVe-e -y[en-L -r nL-i -o io-s -t gg-t -c nF- -e Ei- -r tl- -i ne- (-D e]- -t-r - -a-r - -D-u - )- -C - -e- - -h- - -t- - - - -s -n- -e -i- -t - - C- -s- o- -T- n- -A- t- -D- i- - - n- -e- u- -h- e- -T-xI- - -of- -,-B - -e-e - -r-g - -e-a - -h-s - - -s - /-e-e - -r-M - -a- - - - - ;-s- - -T- -Z -A- -i -D- -p - - Y-C -e- e-o -h- s-n -T- L-t_- -.o-i -;-.g-n - -.T-u - - o-e - -sF- - -Ii-= - - l- - -ne-F - -o -A - -i -L - -s -S;- -r -E-- -e - .- -V - --e- - .-u-e - _-n-n - -i-i - -t-gO-[ -n-np-Z -o-Ee-i -C- n-p -d- L-P`-o- o-a--h- g-r'-t- -s\-e- -e -M- -F -p- -a -i- -i,-Z- -l - - -e - - -d - - -] - - - - -x - - -o - - -B - - -e - - -g - - -a - - -s - - -sL- ; -eo -Mg r f- F e -I- i t -e- l u -u- e r)-n- N[n -i- aC -t- mh -n- ee ;-o- ,c -C- Lk - - oF - - go - -nVr .- -oeV -- -ira "- -sbl - -roi "- -esd -- -VeU .- -e,p - -nLd - -iia -t-gmt -s-nieZ -i-Etsi -x-tS_p -E-eiFM\-s-Gzoe.-t- erm -a- ,cb -D- Mee_-l; aIr{-l xss -A KOF -k ini -c l]l -e o e -h B s -C) y - b t = - 9 e = - s - p 0|- e - t - S \- ( - - Nl C - Ol o - a[n - scOt - i pi - en; - e nu-`- c Ee-~- r vI-.- o ef- - f n - -l t - -ln L - -ae o - -Chng - - wo] -/- i - - gs - - nr - - ie - - kV -;- ct - - ea - - hD - - ct F-/- e o- - eGCr- -]r oc- -so ne- -tm tI- -a is- -Df nO- -yo un-\-p e - -od I - -Cn f - -pE - -i - -Z; - -[ -/- - - - - - - M-o-- e- --- s-)--- s-_---l a- ---l g- ---a e- ---cYB- --- eo- --- sx- --- L - --- o - --- g -\--- T - --- o - --- E - --- v -`--- L -.---3o -_--- g - ---p - ---e - ---t - ---s - ;-- (- --; 9- -- b- -- )-\d-- - o-- F- h-- Oo- t-- pr- e-- ec-/M-- ne- -- EU- s-- vp- e-- ed- x-- na- i--ytt-;F--rLe- t--oo - o--tgi-;H--c s- --e - f--r o- o--i n- --D - t--e - r--n - a--i - t--g - S--n -| --E - ;--t - --e - --G - --- -;--- - --- - --- -,--- [c-_--- Ca-_--- ll-(--- ol-_--- s -<--- e -`--- L - --- o - --- g - --- F - --- i - --- l - --- e - --- ] - --- -\--- - ---l - ---l ---a ---c --- `--- .--- _--- ;_--- CC _--- lhE_--- oen_--- scd,--- ek '--- LSo ---yoDf ---rgI ---o sr/---t Ve ---c aa ---e ld ---r ii ---i dn ---D _g ---t F ;---a oP ---D rk ---t cg|---e eD ---G e --- s --- ;c --- . --- I --- n --- i --- /--- ( --- S --- t -;- Ce - ; [op - Yn |- etZ - si. - Ln5 - ou) -) ge -7 TI \-. of (-Z lF )- li -p al -e ce ; -t ] - -S - -(E - - S - -yL - -rA - -oF - -t -`-c= ---e! -.-r 2 S- -ie rD- -DtpeW- -taeti- -adtul- -Dpsrl- - U nN- -oe; o- -tc t- - r R- -so u- -TF n- -A -,-D -'- - -g - -n - -i - -y - -p - -o ] - -c n -;- o - -f i - -o t c-|- aLa- -t mol- -r rgl-/-a oT -`-t fo -\-SnnF - ; rIi - ;unl -( toe - - ei! - - rt= - - aF - - lA - - lL - -- aS -|-- tE - -- s - -- n - -- I - -- t - -- e[ - --]GY -;--n[e - --O sC- --s Lh- --I oe- --e gc- --c-Tk- --r-oZ- --o-Ei- --F-vp- --[-LI- -- -os- -- -gV- -- -]a- -- - l- -- - i-`-- - d----0- _-.-- - F- -->- o- -- - r- --s- c- --t- e- --a- - --D-r -,--w-e ----e-t -'--N-u - --_-r - --p-n - --i- - --Z- - -- - - -- - c- -- - a- -- - l- -- - l-;-- - - -- - - -- - - -- - -\-- - - -- - -\-- - - -- - -|-- - - -- - - -- - - -- -L -'-- -o ----n-g -.--r-T -.--u-o ----t-E -'--e-v -;--r-l - -- -o - -- -gC- -- -!h -- -=e -- -Fc -- -Ak |-- -LI \-- -Sn -- -Ec -- - r --]- I --s- s --e- V; --l-;a- --i--l- --F--i- --y--d- --n--_- --A--F- --s--o- --e--r- --d--c- --i--e- --v-- -`--o-- -~--r-- -~--P-- -~--p-- -~--i-- -'--Z-- - --[-- - -- -- - -- -- - -- -- - -- -- - -- --c- -- --a- --0--l- -- --l- -->-- - -- -- - --s-- -;--t-- - --a-- - --D-- - --w-- - ;-e-- -' -N-- -. -_-- -; -D-- -| -S-- - ; -- - |-- - -- -, 0-- -_- -- - - >-- -_- -- -.- e-- -=- n--Q- - i--u-\- g--i- - n--t- - E--I- --w;-f- --e -N-/--N -o-`--_--U-|--D--p- --S--d- -- --a- -- --t- -- --e- -- --s- -- --_- -- --F- -- --o- -- --r- -- --c- -- --e- -- -- - -- -- - -- -- - -- -- - -- -- -/-- -- -/-- -- -_-- -- -|--n--[-|--r--C- --u--h- --t--e- --e--c- --r--k- -- --S- -- --D- -- --I- -- --s- -- --V- -- --a- -- --l- -- --i- -- --d-;-- --_- --]--F- --s--o- --e--r- --l--c- --i--e- --F--]- --y-- -\--n-- - --A-- - --s-- -'--e-- -.--d-- - --i-- - --v-- - --o-- - --r-- - --P-- - --D-- - --S--C-'--[--o---- --n-'-- --t- -- --i- -- --n -- - u |-- - e -- -;I -- --f -- -- -- -- ; -- -- -- -- S --0-- t --5-- a --5-- r --4-- t -- -- -- -- o -- -- f_-- -- _-- -- C/-- -- R/-- --DC--- --o --- --iz'-- --ni/-- --gp`-- --E -- --nm -- --ge -- --im -- --nb -- --ee -- -- r -- -- s -- -- --t-- ( --i-- S --x-- t --e-- e;-- -- p -- -- -- -- Z -- --C. -- --o6 ;- --n) - --t - --i -- --n \-- --u --n--e --o--I --i--f;'--s-- -=-;r-- -.- e-- - - V-- - - e;- - - n - - - i - - - g)- - -)n3- - -6E - - -.td- - -Znn- -/- ea- - -pr - - -er2-S- -tu -D- -SCs-P- -(,p-r- - ne-o- -sot-v- -riS-i- -es(-d- -br -e- -mee-s- -eVn-A-,-mti-n--- ah-y---pDc-F-'-ita-i-/-znm-l-`- e -e- -Cre-s- -Rrh- -'-Cut- - - C - - -f,n- - -o0o- - - 5 - - -t5s- - -r4'- - -a t- - -t a- - -S h- - - w- - -; -s- - t-e- - u-t- - o- -;- - - - g- - - n- - -- i- - -- d- - -- n- - -- i- - -- f- - --t - - --nf- -'--eo- -.--v - - --Et- - --gr- - --oa- - --Lt- - -- S- -/-- - - -- ;- - -- - - -- S- -- - D- -- -;S-.-- - h-'-- -Eo- -- -nu- -- -dl- -- - d- --n-oB- --u-fe- --R- R- --t-lu- --o-on- --N-g - --l-- - --l-f - --i-i - --W-l - --r-e - --c- - --n-f -'--I-u - -- -n - -- -c - -- -t=- -- -i - -- -oT- -- -nR- -- -sU- -- - E- -- -( - -- -S - -- -t - -- -e - -- -p - -- - - --f-1[- --I-)C- --e- h- --u- e- --n-;c-;;-i--k- -t--Z- -n--i- d-o--p- o-C--I- h- --s t- --V e- --a M- --l y- --i[ t- --dC p- --_R\m- --FC E- --oZ - --ri.f-n--cp'o-u--eM- -R--]e-d-t-- m-n-o-- b'E-N-- e; -l-- r`;-l--Ms -i--e] -W--s ;--p--s --i--a --Z--g -- --e -- --B -- --o -- --x -- -- -- --C -- --h -- --e -- --cC|-- --kr -- --Zc/-- --iL -- --pi -- --Is`--f--st.--I--V --e--a --u--l |--n--i --i--d --t--_ ;--n--F --o--o --C--r -- --c -- --e -- -- -- -- -; --D - --u - --m - --p _- --SA|- --yl|- n--ml - u--bZ - R--oi - t--lp - o--sM - N-- e`- l-- m\- l-- b\- i-- e - W-- r - D-- s;- S-- O - ;- k - - a - - y -E -- = -S -- Z -L -- i -A -- p -F --CM - --oe`-= --nm -= --tb-- --ie.-y --nr'-a --us--kf--eF--OI--Ii -se--fl.-ru-- e--en-- s'-bi-- ,_-mt-- Z'-en-- i--Mo-- p--pC-- M.-i -- e -Z -- m -l -- b;-l -- e -A -- r - -- s - -- C - --Zr - --ic - --ps - --P - --r - ]--o - e--v - c--i - r--d - o- e `- F- s "- _-;A - s--n - e--y - t--F - a--iC -nd--lo -rp--en`-uU--st--to-- i--eN-- n -rf-- u - I-- e;- t--MI - i--ef - u--s ;- Q--s - [--a - --g - --e - --B - --o -] --x -c -- ;r --C C --h d --e M-e --c e-lt--k s-i'--ZZs-an--iia-Fs--ppg-si--IMe-r --seB-et--Vmo-bi--abx-m --le -e;--ir -M --ds -p --_F -i --Fa -Z --oi -[ --rl - --ce - --ed - -- C - -- r - --Dc - ]--u - e--m - c--p E-Er--S m-So--y p-LF--m t-A_--b y-Fd--o M- i--l e-=l--s t- a-- h-eV-- o-us-- Ld-nI-- o -ir-- g -tc-- E -nn-- v -oI-- e;-Ck-- n--pc-- t--ie-- --Zh-- -- C-- -- [-- -- --s -- --e -- --t -- -- -- ;- -- - -- - -- - -- E - -- U - -- R - -- T - -- - 4-- = - 5-- - 1-- - 4-- - ,-- - Z-- - i--t -- p--e -- _--s -- F-- -- i-- -- l-- --Ze-- n--iL-- u--pi-- R--Ss-- e--ht-- B--o -- d--u -- l- [dnEcrS] ;------------------------------------------------------------------------------------------------------------------ ;------------------------------------------------------------------------------------------------------------------ ; Script Generator overwrites the following :- ;------------------------------------------------------------------------------------------------------------------ ;------------------------------------------------------------------------------------------------------------------ [Sample_Options] ; If BackupDats=TRUE then the current DATs will be saved to a directory ; called DAT_xxxx.sav in the directory where the DATs are installed. ; xxxx is the version of the DATs being saved. ; Dats are actually always backed up in case the update fails, therefore this ; flag really means don't delete the backup after the update. set BackupDats=FALSE ; If ForceUpdate is TRUE then the latest DAT file will be retrieved and applied ; regardless of the currently installed DATs. Nothing related to incrementals ; will be done. set ForceUpdate=FALSE ; If DoEngine is TRUE then we will attempt a SuperDat update if one ; is available with a new engine. set DoEngine=TRUE ; If RunProgram is TRUE then the program named in ProgramToRun will be run ; when the update completes. ; This program will run with System rights, therefore it should not required ; user interaction. ; For security, the named program must be in the same directory as LWI.exe. set RunProgram=FALSE set ProgramToRun=notepad.exe ; If LogToFile is TRUE, then messages will be written to the named file. set LogToFile =TRUE set LogFileName =AutoUpdate.log set LimitSize =FALSE set MaxKiloBytes=10 set LogVerbose = TRUE set LogToEvlog=TRUE ; ConnectionName is optional. It is only used in log entries. ; LOCAL <path> [Sample_Connection_1] ConnectionName My dev. machine LOCAL c:\mirror2 ; UNC <server>,<share>,[path] [Sample_Connection_2] ConnectionName My ePO server UNC tom,DATShare,4089 ; FTP <server>,<path>,[passive|active] [Sample_Connection_3] ConnectionName NAI's public website ftp ftp.nai.com,virusdefs/4.x