DOS                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                            DOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSDOSoices fullinstall partialinstall)
                 )
)

(if fullinstall
  (
    (set @default-dest
      (askdir (prompt where_vc)
              (help @askdir-help)
              (default @default-dest)
      )
    )

    (complete 10)

    ; Copy Virus_Checker drawer
    (copylib (prompt copyingdir)
             (help @copylib-help)
             (source "Virus_Checker")
             (dest @default-dest)
             (infos)
             (optional oknodelete force)
    )
    (copylib (prompt copyingdir)
             (help @copylib-help)
             (source "VirusChecker.brain")
             (dest @default-dest)
             (optional oknodelete askuser)
    )
    (copylib (prompt copyingdir)
             (help @copylib-help)
             (source "Virus_Checker.guide")
             (dest @default-dest)
             (infos)
             (optional nofail askuser)
    )
    (copyfiles (prompt copyingdir)
               (help @copyfiles-help)
               (source "NZ_VC.bsh")
               (dest @default-dest)
               (optional nofail askuser)
    )
    (copylib (prompt copyingdir)
             (help @copylib-help)
             (source "MakeKey")
             (dest @default-dest)
             (infos)
             (optional nofail askuser)
    )
  )
  ; If partial install
  (
(debug "")    
  )
)
(complete 20)
 
; Install libraries

(copylib (prompt copybblib)
         (help @copylib-help)
         (source "libs/Bootblock.library")
         (dest "LIBS:")
         (optional nofail askuser)
)

(complete 30)

(copylib (prompt copybbfile)
         (help @copylib-help)
         (source "l/Bootblock.brainfile")
         (dest "L:")
         (optional nofail askuser)
)

(complete 40)

(copylib (prompt copyunpacklib)
         (help @copylib-help)
         (source "libs/unpack.library")
         (dest "LIBS:")
         (optional nofail askuser)
)

(complete 50)

(copylib (prompt copyxfdlib)
         (help @copylib-help)
         (source "libs/xfdmaster.library")
         (dest "LIBS:")
         (optional nofail askuser)
)

(copylib (prompt copybguilib)
         (help @copylib-help)
         (source "libs/bgui.library")
         (dest "LIBS:")
         (optional nofail askuser)
)

(complete 60)

(copyfiles (prompt copyxfddecrs)
           (help @copyfiles-help)
           (source "libs/xfd")
           (dest "LIBS:xfd")
           (optional nofail askuser)
           (confirm)
           (all)
)

(complete 70)

; Check if brainfile is in L:
(set brainfile (exists "L:VirusChecker.brain"))

(set wherestart (exists "SYS:WBStartup/Virus_Checker"))

(if (= wherestart 0)
  (set wherestart (askchoice (prompt vcrunfrom)
                             (help bestplace)
                             (default 0)
                             (choices "User-Startup" "WBStartup" "None")
                  )
       
  )
  (
    (if (= wherestart 1)
      (message instaloverold)
      (abort cantinstalloverdir)
    )
  )
)

(if (= wherestart 0)
  (
    (if (= fullinstall 0)
      (
        (if (exists (tackon @default-dest "Utilities"))
          (set @default-dest (tackon @default-dest "Utilities"))
          (if (exists "SYS:Utilities")
            (set @default-dest (expandpath "SYS:Utilities"))
          )
        )
        (set @default-dest (askdir (prompt "")
                                   (help @askdir-help)
                                   (default @default-dest)
                           )
        )
        (copylib (prompt copyvcprog)
                 (help @copylib-help)
                 (source "Virus_Checker")
                 (dest @default-dest)
                 (infos)
                 (optional oknodelete force)
        )
        (copylib (prompt copyvcbrain)
                 (help @copylib-help)
                 (source "VirusChecker.brain")
                 (dest @default-dest)
                 (optional nofail askuser)
        )
      )
    )
  )
)

(if (= wherestart 1)
  (
    (copylib (prompt copyvcbrain)
             (help @copylib-help)
             (source "VirusChecker.brain")
             (dest "L:")
             (optional nofail askuser)
    )
    (copylib (prompt copyvcprog)
             (set @default-dest "SYS:WBStartup")
             (help @copylib-help)
             (source "Virus_Checker")
             (dest "SYS:WBStartup")
             (optional oknodelete force)
             (infos)
    )
  )
  (
    (if (= brainfile 1)
      (
	(set VerN "L:VirusChecker.brain")
	(WhatVersion)		;Get version
        (set rembrain (askbool (prompt (removebrain Ver Rev))
                               (help @askbool-help)
                               (default 1)
                      )
        )
        (if (= rembrain 1)
          (delete ("L:VirusChecker.brain")
                  (optional force)
          )
        )
      )
    )
    (if (= wherestartup 0) ; User-Startup
      (
	(set cmd (tackon @default-dest "Virus_Checker"))
        (startup @app-name (prompt (adddat cmd))
                           (help @startup-help)
                           (command cmd)
        )
      )
    )
  )
)

(complete 80)

(if (askbool (prompt installguide)
             (help @askbool-help)
             (default 1)
    )
  (
    (copylib (prompt copyingguide)
             (help @copylib-help)
             (source "Virus_Checker.guide")
	     (dest "HELP:")
;             (dest (cat "HELP:" @language))  Later
             (optional nofail force)
    )
  )
)

(complete 90)

(set localever (/ (getversion "locale.library" (resident)) 65536))

;(if (>= (/ (getversion "locale.library" (resident)) 65536) 38))
(if (>= localever 38)
  (
    (set locales (askoptions (prompt whichlangs)
                             (help langhelp)
                             (choices "nederlands"
                                      "svenska"
					"italiano"
					"deutsch"
					"franais"
			      )
                 )
    )
  )
)
(if (IN locales 0)
  (
    (copylib (prompt copycat)
             (help @copylib-help)
             (source "catalogs/nederlands/Virus_Checker.catalog")
             (dest "LOCALE:Catalogs/nederlands")
             (optional nofail askuser)
    )
  )
)
(if (IN locales 1)
  (
    (copylib (prompt copycat)
             (help @copylib-help)
             (source "catalogs/svenska/Virus_Checker.catalog")
             (dest "LOCALE:Catalogs/svenska")
             (optional nofail askuser)
    )
  )
)

(if (IN locales 2)
  (
    (copylib (prompt copycat)
             (help @copylib-help)
             (source "catalogs/italiano/Virus_Checker.catalog")
             (dest "LOCALE:Catalogs/italiano")
             (optional nofail askuser)
    )
  )
)

(if (IN locales 3)
  (
    (copylib (prompt copycat)
             (help @copylib-help)
             (source "catalogs/deutsch/Virus_Checker.catalog")
             (dest "LOCALE:Catalogs/deutsch")
             (optional nofail askuser)
    )
  )
)

(if (IN locales 4)
  (
    (copylib (prompt copycat)
             (help @copylib-help)
             (source "catalogs/franais/Virus_Checker.catalog")
             (dest "LOCALE:Catalogs/franais")
             (optional nofail askuser)
    )
  )
)

(set installrexx (askbool (prompt instlrexx)
                          (help @askbool-help)
                          (default 1)
                 )
)

(if installrexx
  (copyfiles (prompt copyrexx)
             (help @copyfiles-help)
             (source "ARexx")
             (dest "REXX:")
             (all)
             (optional nofail askuser)
             (confirm)
  )
)

(setVCEnv)
(complete 100)

(if (= wherestartup 2)
  (exit)
  (exit needtoreset)
)
                                                                            `M,                                                                                                                                                                                                                                                                                                         $                                                                                                  LInstall_Virus_Checker.info                                                     v ; 7    cd@                   eX$       r   +                7                  G . } *<ꪮ Tn     @O / ~ < n
`L  ꅤ $瘝 理  .[  ٿ  +~ u 8+ݤ ?={ k^ 7  @_  z
  =   <               (   t   ?         >   @    `      x  ΢+  @@Y `
 ` x` h@ @@ `&@ / @ x'@ - @  F@ n 	@  D@ @0@ UU@ }                                     @  .. } ? * 
 T  (@    ! 1A  d  J
 @ W~  m    ]   	o   D H j 4 0 B * ! ~
 Ph 8@t T8O 
                  7                      ?  ? ? AW_V > uUWUV *7~ c  V ' ? xpB 7|%   c oR 
h  xh-  x
   ?R :? <n p 5w  R  ~/wR  ?@UUR                   @   @:?   @}   @ ?  A@    C    G    Kx  MPt  OXgQ GM, GZ^` KxTR} MI0 OXQ4  GHR  G]h  KxJ  Mg Nj  G{@#@  CHKY AD"  @ @p  @@z @>@    @                       ` } @W_WT   UUUT     T @   T  2K  %T   +  @ 6  .π     "  ψ     2 }?Q @2  !-T  ʜ' UUL               
Installer                                                                                                                                                                                                                                                                                                                                                                e    	Virus_Checker.catalog                                                                      ;                       !                                                                                                                                                                                                                                                                                                                                                                                       3  l                                                                                    	       <$                                                                                                                                                                                                                                                                                                                                                                                                     |  Bootblock.brainfile                                                       BBBF !- 016 Bit Crew clone `ABC vABC Viruskiller 1.0 پMAIDS VirusKiller b-ASS 1.0 anti )OASV !LAccess Forbidden 4;QAdam Brierly wGAlien New Beat ꊊAmida 1NAmiga Fanatic 1.1 hAmigaDos Killer 2.1 `Amigafreak Angel uDAustralian Parasite EAvirex Timebomb 1.0 clone ݚBLF BOMBed by some virus aiBad Bytes Inc 3 #{Big Ben :RBlackFlash zQBlizzard Protector 1.0 anti RNBlizzard Protector 3.1 anti TRM3Blizzard Protector 3.3 anti upBlowJob ٱBootXKiller Butonic INByte Bandit 1 'DByte Bandit 2 Byte Bandit 3 oPByte Bandit 4 61=Byte Bandit 5 (European) 'Byte Fast JByte Voyager 1 "Byte Voyager 2 1'HgByte Warrior CCCP clone ^CLI-Manager anti lCList $Claas Abraham 47Clonk! anti ugECobra >)g0Coder's Nightmare clone BCracker Exterminator CCreeping Eel 49d7Crusader Loader Curse of Little Sven cbhDAT '89 @Derk Mallander )-Destructor 1.2 bDetlef Digital Emotion ,偝Diskdoktors clone SDiskguard 1.0  PDivina Exterminator Dotty 	|vDr. Mosh 3#rDumDum $K_+DumDum II 
Electro Vision ,cEleni (boot) RGExterminator 2 anti cHȪExtreme `  F.A.S.T. 1 *F.A.S.T. 2 oHF.I.C.A. 	` Fast Eddie cForpib SFred Cohen T]French pFrench Kiss ]EFrity 31FuckDevice ,qFuture Disaster }GX Team 	]qGeneStealer uQGermany #Glasnost raGraffiti e_Grapa umGremlins _Gyros HPHCS 4220 3.0 anti HUHCS 4220 4.0 anti n[Hauke ӶIIHeil 2Highlander nXHilly Hoden 33.17 xHIncognito (Dirty Tricks) sInfluenza Inger IQ Ingo wIngoReturn t,JITR )<Jinx 0تJoshua 1 KNJoshua 2.x #TBJulie 0/Kauki )PKilled v*Lads ͬLamer Decoded MLamer Exterminator 1 0TLamer Exterminator 10 	削Lamer Exterminator 3 `-Lamer Exterminator 6 0TLamer Exterminator 7 0TLamer Exterminator 9 0TLamer Exterminator II.1a 0TLamer Exterminator II.1b A4	Lamer Exterminator II.2 :ځ,Lamer Exterminator II.2b jLaureline Male-Female >xM&U 5.5 !M&U 6.1 EEMAD I >)glMAD II 1@gMAD III xқMG ZMegamaster Metamorphosis 1.0 zSMicroSystems 2 clone bMorbid Angel 5jMutilator u!5Nasty Nasty No Bandit any more &{xNorthStar 1 clone x&gNorthstar 2 "f8Northstar Checker f#Obelisk Crew 2 clone p6qObelisk Softworks Crew nOpapa CH|Overkill Paradox I kT2Paradox II 01\xyParamount  "PayDay WPentagon Circle 3 anti gPentagon Circle Slayer WPentagon Virus Slayer 1 WPentagon Virus Slayer 2 /VPerverse 1 Pestilence D)Powerbomb 1Random Access soRed Ghost Revenge 1.2 clone c<KRevenge Boot Loader KRipper =2Riska JlRude Xeroxx 2.0 3HSCA 2 |oiSCA Devils Strain L|SCA Xcopy 5SCA clone SSS w$5Sachsen 1 A``KSachsen 3 ґSaddam Hussein i.Sao Paulo >)fSatan `ScarFace ZsSentinel }'Sherlock 2.0 #tShit V"Sinister Syndicate V"Sinmut Virus QSonja \Starcom 3 v]LStarcom 6 \Suicide Machine }Suntronic paSuperBoy  Supply Team 0RKSwitch Off .SystemZ 3.0 anti ISystemZ 5.0 anti YSystemZ 6.0 anti e>ySystemZ 6.1 anti hȪT.F.C. Revenge vTTS2 2dTaiPan Chaos 
2TaiPan LameBlame ԢTarget o6Termigator KNTraveller 1.0 ` TriSector 911 ,=Triplex s	Turk 1.3 _sULDV8 riUltrafox "9VIPHS _-eVermin Virkill 2.0   Virus 4.2 fake J3Virus Slayer 1.0 |7VirusHunter 1.3 anti `  >Viruskiller Pro. 2.0 anti 	fWaft  tWahnfried k04Warhawk Warsaw Avanger #<fVWieder da ZAccess 2 Lf/MZEST  Zombi 1 $VER: BBBF 1.09 (22.3.95)                                                                        $                                                                                                  LInstall_Virus_Checker.info                                                     !          "	                                                                                                                                                                                                                                                                                               "                                                                                                              #  4Bootblock.brainfile.sig                                                     03&mUԄ/P{(GA(TCl|ݟET+AC3Sv1/R/mU~}n?Uf.p!W\T}}iY飬WPUsm                                                                                                                                                                    q                                                                                                        3  
MAShare_66                                 3        %          q         #            bd                                                                                                                                                                                 $                                                                                                                                                                                                                3  libs                                                                              $   H       %   l   k   j   i   h   g   f   e   d   c   b   a   `   _   ^   ]   \   [   Z   Y   X   W   V   U   T   S   R   Q   P   O   N   M   L   K   J   I   H   G   F   E   D   C   B   A   @   ?   >   =   <   ;   :   9   8   7   6   5   4   3   2   1   0   /   .   -   ,   +   *   )   (   '   &   %                                                                                                              bgui.library                                                        #   m                  k*       k*p NuJ       (	       zNq/,x C Dp N,_NuH ",o  / "/  o "o E  NLD Nu/,o  o N,_Nuworkbench.library NqH ",x C Dp NJg$,@ o C NJg @NaLD pNuaLD p Nu"N,x NbNuamigaguide.library  NqH 2Hx   o "o &OE ,y   N LL NuRNuH 2&o  o "o E ,y   NLL NuNu/
$o C `/
 j`&/
 o $o C `/
 o $o C `/
 h Hz /( Nu$_Nu/ g H ,l.*h  gNrHgNJLa ,l*N,_NuLa ,_NuNqH 8I  &h $g gP`Hz /+ Nu h Hz /( NuL NuNq/,l6 "Np"Ё"Nd,_NuNqH 0G^`  SJf S$H k N$$SJfap `PJfpL NuH G^`PJfQ SJg"S Q,l*N6J@fap `,Sp ,M^f`Q`pLH NuH I  " t*e FANN N N N0N,N(N$N NNNN N N N N N N N N N N N N N N N N N N N N N N N N N N N N N N N  ,`   ,`   ,
`  ~ ,`  v ,`  n ,`  f ,`  ^ ,"`V ,&`P ,*`J ,.`D ,2`> ,6`8 ,:`2 ,>`, ,B`& ,F`  ,J` ,N` ,R` ,Z` ,V`p LNuH:. &HI   a $@ 
g J ,l*/
$@N,@$_ L\NuNq          ???~???      $VER: BGUI_LIB 40.2 (17.10.95)
 bgui.library         	        <    :  Q6  H 
I  JJg"lJ,l&NbJFg"lF,l&NbJBg"lB,l&NbJ>g"l>,l&NbJ:g"l:,l&NbJ6g"l6,l&NbJ2g"l2,l&NbJ.g"l.,l&NbJ*g"l*,l&NbJ"g"l",l&NbLP NuH2JJg  A샆,l&NJNg lN,lJNp )@Npr ,l&NT&@"g
"K,l&NNBHx /<	 Hz8/<	 Hz6Ba @O )@NJNgD~ `:r 2M lNp 0r 2E"j ",J/,AN$@,_-J RGleA샆,l&NLLNuH!8.I  )N&Cp%",&/,AN)@",_Czp%",&/,AN)@*,_CPp%",&/,AN)@.,_C&p%",&/,AN)@2,_Cp%",&/,AN)@6,_Cp%",&/,AN)@:,_Cp%",&/,AN)@>,_Cp%",&/,AN)@B,_C^p%",&/,AN)@F,_C6p&",&/,AN)@J,_J"g  J*g  J.g  J2g  J6g  J:g  J>g  JBg  JFg  pFr$,&ŎN:)@VŎJVg  AX"lVpF$,&ŎNŎa &4 JBgfAɕp"r $,&ŎN&@Ŏ)KJgB| 	 Ew'J 
|  7| ( 7|  E<'J )GR"K$,&ŎNtŎa  `"lVpF$,&ŎN.Ŏa np LNuH. I  a J@gRn     `p LNu/I  a J@fp `"Jn  gSn  Jn  gp `.  ga`p (_NuH I  Jn  fa ZJ@f  p `  ~Jg
/,a VX"lVpF",&/,AN.,_JNg lN",J/,AN,_a C",&/,AN,_r 2. D"Nr 2. t 4.  Ђ$,&ŎN.Ŏ ,RLNu/I  p (_Nulocale.library  keymap.library  commodities.library asl.library layers.library  utility.library gadtools.library  graphics.library  intuition.library dos.library english BGUI.catalog    N lN N nN N   ""H 0&H$I K"J//	$
ňa N" ň "_ _aLNuH2&I. NU+H"m K E,l.NN0-H2-HDҀ|܁r 2-d"`r 2- N]LLNuH &H,IJn g`Jn gZ Kp 0* aV Kp a  AT'H |  0. H2. HҀS/2H0. HЁS/ 0. H/ 0H/ /a O LH NuH&H.  l&h ' e K,l.Nf``+ HHf`"K ,l.NLHNuH&H.  l&h ' e K,l.Nf``+ HHf`"K ,l.NLHNuH&H.  l&h ' e K,l.Nf``+ HHf`"K ,l.NLHNuH 2&H$INU l&h ' eBHm/<   /a |O `+k 4g"K J,l.NN]LL NuH>2&o $NUJ ,g  m ,Jg m  :o |"K m ,Er 6- :HxJo6- :Hx$`t v 6+ :,l.x /	//,- ,͈a * ͈ " _"_ɋNHɋ;@ K"m ,0-Ha ;@0- :HS2-HDҀ0- 2A;@Jm Fgr 2+ >p 0+ :DЁ2- 6@;A`;m 60-H2-HҀpA;@ Kp 0- Ba  Kp a ^p '@ |   0-Hr 2+ >DҀp 0+ :ЁS/ 0-H/ 0-Hr 2+ >DҀ/2-HY//a lO  Kp 0- >a p Kp a "K0-H2-H,l.N"K m ,0-H,l.NN]LL|NuH?2&o (>/ .</ 2:/ 68/ :$o <NU0- FS@g[@g`6* ;j `
6* ;j Jm Jg
46-;Bp '@ |    Kp 0-a "K2H S2H,l.NJm Nf0;G;F;G;DrG;A2SA;ArG;A;Ft`;G;F;G;Dt"Kp 0A,l.N Kp 0a P"K2HpЁ2H,l.NJm Nf0;E;D;E;F2SA;ArF;A2SA;A;Dt`;E;D;E;Ft"Kp 0A,l.NN]LLNuH?2./ ,,/ 0&o 8NU   l&h ' e" - ,"$&- 8(,. KɎNj @Ɏ `  p("<  (,&ɎNT$@Ɏ(
g   J "- ,$(,.ɎNzɎxح ,ȼ   "a (  "a -   ;gr`"<  ,l&NT,@"g8z `(r H%Rrҭ ,¼   "a x" p b 
`"J ,&/,@NN,_p N]LLNuH2&H. ,*	pd"<  ,l&NT$@"
g>rMA Qr $/+ Hx ///a O %@ J g 
`"J,l&NNp LLNuH &H,l.N,l&n ' e k ,l.Nd`,k "n ,l&NN"k ,l&NN"K,l&NNLH NuH?&o $./ (,/ ,*/ 0(/ 4bb"K "$&,l.NLHNuH?&H,INU+@| zx -[gPjXgSg$Sg*Sg4`  fSgBSgJSgP`V>* <* `L>* <* `B>* <* zx`4>* 
<* `*>* <* 
x`>* <* 
x`>* z x `>* z x  l&h ' e"Kp 0r 2t 4&,.ǎNǎ` Kp 0a  Kp 0a P Kp 0a JDgAr'H |  `p '@ |   0. H2. HҀS/2H0. HЁS/ 0. H/ 0H/ /a O p '@ |   N]LHNuN N PN D   
                                       (              /
"lp8EƑa  @ $_NuH8&II  NU+H m$h  k pAC"QJ g k +h `AZ+Hpf JJj gp k ;P k ;h  k 0( H k 2HDҀpA;@ k 2( H k 0( HDЁr@;AACp 0* "-/
$Aa h$_`  p +@|  0+ S@g[@g`>j 2g>* 2`"j 6gp 0* 6"m>`"m>) 
Ap 0a `<j 0g>* 0`"j 4gp 0* 4 m>` m>( Ap 0a  k 0( H/  k 0( H/  k 0( H/  k 0H/ Hma `O p `pN]LNuH?2&o (>/ 2</ 6:/ :$o <NU k pAC"Q*  gp`pH;@*  gp`p H  fJ g
 k ,h `MZ*   g8. `  J fJ gh;m 2;G;F;Ep+@A+H+k A+H;k J g j ` j C"- D$,6/
$AŎNŎ$_Jfp` p +@|   + Sg[g`8. 
`8. j  gj  gj  f8. Ap 0a "Ap a j  g@0HS/ 0Hr 2-DҀ/0HR/ 0- 2Hr 2-Ҁ/Hma O ` (Ap 0. a 0H/ 0H/ 0H/ 0- 2H/ Hma O Ap 0a p g
p f p0HW/ 0Hr 2DҀ/0HV/ 0- 2Hr 2Ҁ/Hma 6O RCC2- 2Ht 4 Ђ4Hr҂$,.ŎNŎC2Ht 4 4Hr҂$,.ŎN
ŎC4- 2Hr 2 Ё4H"U$,.ŎNŎC2Ht 4 4H"U$,.ŎN
Ŏ`` pN]LLNuH2&o  >/ *</ .:/ 28/ 6$o 8NU    fdJ g
 k ,h `MZ*  gp`p H/ ?. U*  g0. `0. / 0H2HDҀR////* /- (a :O  N]LLNuH?2&o (>/ .</ 2:/ 68/ :$o <NUt k pAC"Q  f J g
 k ,h `
MZ``  + Sg[g`;n ;n `;n ;n *  g;m;m;mAp 0-a fC2H W2H$,.ŎNŎtG;Bv;Fx;GztF;B|;G~4UB;BtG;B;DtG;B4SB;B*  f4tG;B4UB;BtG;BtF;BtG;BtF;Bv`vCp 0Av$,.ŎNŎAp 0-a C2HpЁ2H$,.ŎNŎ4UB;Bv;Dx;Ez4UB;B|;E~tF;B4UB;B;F4UB;BtF;B*  f44SB;BtF;B4SB;B4UB;B4UB;B4SB;Bv`vCp 0Av$,.ŎNŎN]LLNuH/2&o $>/ *</ .:/ 28/ 6$o 8NU k pAC"Q  f fJ g
 k ,h `MZAp 0. a Ap a C2HpЁ2H$,.ŎNŎC2H S2H$,.ŎN
ŎC0H4Hr҂$,.ŎNŎC0H4H"S$,.ŎN
ŎC2HpЁ2H$,.ŎNŎC2H S2H$,.ŎN
ŎC0H4Hr҂$,.ŎNŎC0H4H"S$,.ŎN
Ŏ*  gt`t H/*  gt`t H/4+ //0HS/ 0HS/ 0HR/ 0HR/ Hma O $N]LLNuH 2&H$INU+J`    re  @N N FN JN LN PN \N PN N N TN N N N N ~N DN \N JN b7n  `d& `^'n  `V'n  `N'n  `F'n  `>7n  `67n  07| 4`(7n  47| 0`7n  27| 6`7n  67| 2A,l6N,@ f $Jk f k 0fk 4fk 2fk 6gA 'H Jg7|   `Jk f7|   +  JC",6/,AN'@ ,_N]LL NuH&INU+H m"Ka . JgJ"mp 0)  ,G Np8a f=|  =| 0=| 2=| 4=| 6A-H $-N , N"k a > N]LHNuH&INU+H mp 0(  ,J~ m"Ka N.  N"k a   N]LHNuH ,HNU+IJgFp+@+m+J.  gp`p H;@ VC"$,6/
$AŎNŎ$_Jf`  0. Y@g8jV@g  jS@g,S@g`^S@gZS@g:`T"m.  g `  `R"m.  g `  `6"m.  g `  `"m.  g `  N]LHNuH2NU+H+J+I mp 0(  &m~ m$h  KCM "-H 0$@&Aa L "m")  pe BANN FN NN `N LN `N LN `N hN pN xN N N N N N N N r 2+ $`  $`  $ `  $ `  $ `  $ `  r -$`  r -$`  r 2+ $`  +   gr`r HH$`  +  gr`r HH$`  +  gr`r HH$`  n+  gr`r HH$`V+  gr`r HH$`@r 2+ 0$`6r 2+ 4$`,r 2+ 2$`"r 2+ 6$` m"m"-/
$Aa . $_ N]LLNuH?2&INUl+H+J mp 0(  $mp +@ k pAC"Q;|  tp+@n*  gp`p  H  f Jj g. m"K"-/
$Aa $_` `J g
"k ,i `MZJ g.J g( j  ,./,@N+@,_JgA"ma "m>k "m<) k 
"m0i : SEJ g&*  gp 0-2-Β@;At`;mtmt m0h S@8 mt/-/
/////a O 0* W@g  jV@g$S@gxS@g ` S@g 2S@g RS@g b` r;G;F;E;Dp+@vA+Hz+k ~A+H;k  RCv -",6H "$@,AN+@nLD ` /*  gr`r H/2+ //////Hma RO $` JBgr`rH;Ar*  gr`r H//2+ //////Hma O $/p JCWD / 0+ / /0HU/ 0Hr 2-rDҀ/0HT/ 0Hr 2-rҀ/Hma O $` RJBgr`rH;Ar*  gr`r H/p JCWD / 0+ / /////Hma pO $//0+ / /0HS/ 0Hr 2-rDҀ/0HR/ 0Hr 2-rҀ/Hma *O $`  JBgr`rH;Ar*  gr`r H//2+ //////Hma O $/p JCWD / 0+ / /0HS/ 0Hr 2-rDҀ/0HR/ 0Hr 2-rҀ/Hma O $`*/
/////a O `/
/////a O J g/
////Hm/a O Jg"m",./,AN,_ -nN]LLNuNqN  ^N  W    X              '    (^    (    )    *    *    *    /
"lp,Ea 
, @ $_NuH#2NU+H+I mG ~ | Jg"S ,&/,@NN,_p &7|   p '@ 7|   
7|   Jg   ma 	Rr$,&ŎNT$@Ŏ&Jg  ,m mJ( gb` JR"NRRk Rk Jg m( f m( f(R'J  JR"NRRk ` JR"NRRk 
Rk Jf  ` J"Na 	B Ja 	6$ 7B p``p `pN]LLNuH2&HNU+I+m~| `   мg  pj$VgHjrg  rSg0`  SgHSg<`  [g  hjXg$Wg@`  |SgFSg^`  p& `  h7j  `^'j  `Vj  
`Nj  `F,j |`>'j  p'@  `0'j   p'@ `"'j  $p'@ (`'j  (p'@ $`7j  A ,6/,@N$@,_ 
f (JFg
 K"Na >  +  mCn",6/,AN'@ ,_0HN]LLNuH2&H,INU+J K"N -/
$@a x. $_JgVp 0+  $G Jp,a 5| |   
p%@ p%@  p%@ $p%@ ( J"n a lJ@fHx//a  O ~  N]LLNuH&INU+H mp 0(  ,J m"Ka .  N"k a Hހ N]LHNuH2&INU+H+J mp 0(  $m~,k  +  Qre  @N N .N 0N LN <N NN ,N LN ^N pN xN nN v,`  p 0* ,`  , `  xp * 
,`  lp * ,``, `Z*   	gp`p HH,`D*  	gp`p HH,`., `(,  `", $`, (` m"K -/
$@a . $_ N]LLNuH &INU+H mp 0(  ,JJ g"n  ,&/,@NN,_ m"Ka ׈N]LH NuH,INU+H.   	g mp 0* a \`   + Sg[g`Tp $g>. &`8p (g . (>2 `$J. 
f,.  gp`p@ H>2 `` mp 0a `Hp g>. `.p  g .  >2 `.  gp`p@ H>2  mp 0a N]LHNuH?2&INUt+H+Jp +@ mp 0(  $m k pAC"Q+Kp +@;|  zp+@v  fJ g k +h `AZ+H m: m8(  m;h  m;h ~  gk k 
+j Jg 6;j |Jg& R ,./,@N+@,_JgA"ma Ap a F  fA"J -/
$@a "$_`  fAp 0* a ߆j g6Cp 0* /	/ A$&,.ŉǎN" ŉǎ$,. "_ŎNŎA"m0-|Ha l$ ;B><* 
Ugj
TgSg`LSg&Sg2`B4-~Hp 0-r 2-DҀBA`"rmDAmA`2-~Hp 0-ЁV@@* 
U g8j
T gS g$`4S gS g`*0-H2-HDA@A`rmA`rmA  f | m,h =|   =n  =n  < JEoJDnJEnzmJDn xm`  m(   gZ* 
SgSgSg&Sg4`  rmHD<`  rm=A `  rmHD=A `  rm=A `  `  Go
0GHD<0H2-HҀ0H4-HԀSl4m0mS@2@=A 0Hr 2-DҀ0Hc0mD@DHD=@ 0Hr 2-DҀp 0-Ё2H4-~HԁSd 0Hr 2-DҀm0m~S@@=A  m h 0 m h 0p+@v` ,C0H2H$,.ŎNŎJ g  Jj gC mp 0* $,.ŎNŎ>-+j C mp$,.ŎNŎ:-8-*  	gA"mp 0) a ~C0H4Hr҂$,.ŎNŎC2H U4Hr҂$,.ŎN
Ŏ*  	gA"J$-Ŋa ŊC0H2H$,.ŎNŎRC mp 0* $,.ŎNŎ`C m0-|H$,.ŎNŎJg"m$,.ŎNŎ -vN]LLNuNqN  ^N N N                 	                              
                         	                                                                                                                                  
                                   	                                      
                          	    
 	    
 
     
            	                                            	        %     "     "     "     "     "     "    " 
                     	                       
                     	                          5    5    6$    6    6    /
"lp>EƑa < @ $_NuH 2&H$I,l.NJ 0g j 0p 0* 8r 2* :,l.Nr %A 0J 4g"j 4,l&NNr %A 45|   :5j : 8   'LL NuH'2&o $$o (>/ .</ 2NU  z *  f*  g`REP`TEGF0 "<  $,&ŎNT'@ 4ŎJ 4g  p 0r 2$,.ŎN'@ 0ŎJ 0gxA"k 0//	p 0r 2t҂¼  a 8"  ",."_ _/,AN,,_A "k 4p 0",./,AN,_"m $#K "m $A #H 7G 87F :   'p` m $"Ka p N]LLNuH 2&HNU+I`N м^g&j\g4   g`0SgSg`&'j  ,`7j  $`7j  (`7j  *`7j  <A,l6N$@ 
f0+ $[@gJjX@gS@g"S@g(S@g.`\S@g<S@gBS@gH`NM'N ,`DM'N ,`:M'N ,`0M 'N ,`&Mf'N ,`M'N ,`M'N ,`M 'N ,N]LL NuH&INU+H m"Ka . Jg,"mp 0)  ,G Np>a =| *=n * ( N"k a  N]LHNuH&INU+H mp 0(  ,J~ m"Ka `.  N"k a  N]LHNuH2&INU+H+J mp 0(  $m~,k  +  gSgSgSg`$, ,`4p 0* $,`*p 0* (,` p 0* *,` m"K -/
$@a . $_ N]LLNuH?2NU+H+J+I mp 0(  &m$k , m h pAC"Qp +@ 
fp` h m  f mJ g m h ,h `MZ m: m8(  m;h  m;h  mh  mh 
0mS@;@0mS@;@ m  fDk *gp 0+ *66 `2k (g6+ (`$ m ( Sg[g`6. `6. ``6+ <Ap a 2p +@|  *  g7R  7j  "` l m  fV*  g6`J*  g0H66 `6*  g6. `(*  g6. `*   g6. 
`*  g6. Ap 0a *   g *  g m  fj  ` *  g" m  f0Hv ` *  f *  f *  g/-/-/
/Hma O +@Jk  g0r 2+  a z> `>Jk "g2* p 0+ "Aa Z< `<* *  gDGm`E*  gDFm`DGc>`
mc>-Fc<`
mc<-*   g<+   'gCp 0r 2$,.ŎNŎ`\Cp 0r 2$,.ŎNŎ`B*  g:+   'gCp 0r 2$,.ŎNŎ`Cp 0r 2$,.ŎN
Ŏ*  g"+   'gC$,.ŎNŎA"Ka *  g*+   'gC$,.ŎNŎA"Ka t+B`P` | -N]LLNuNqN  ^N DN N p    <    >    A    D    EL    L     G:      Fh  )  HX  ,  J  *  H  -  J  0  K  1  K  2  K  /  L  +  Iv  .  J  3  O  4  J$  5  J _  P  S  M    /
"lphE6a  @ $_NuH2,HNU+I+J~  m"mE Ta J Hg  p 0. B  fd fJgZ f m ,*/,@N&@,_ f` 
~Hx Hn ^Hn \Hn L//. Ha O   CJGg K ,*/,@N,_0. LHDn T0. NHDn V0. LHDn Pn X0. NHDn Rn ZB0. ZH/ /< 0. XH/ /< 0. VH/ /< 0. TH/ /< B/. Ha O ,J DgHB0. ZH/ /< 0. XH/ /< 0. VH/ /< 0. TH/ /< B/. Da rO ,N]LLNuH2NU+H+J+I~  m$h +J m"m -/
$@a l. $_Jg `"mp 0)  &GAa  A a A a A $a 7|   B Ja |'@ H Ja T'@ D`   e bJ Df
 Na 0'@ D Qe \bJ Hf
 Na .'@ H мgTjrg,Sg0Sg4[gH`ZSg2SgLrMg`JA a ++@`<'n  2`4'n  6`,'n  :`$'n  >`  C`  C'n  ``'n  dA,l6N,@ f 4J `g@J HgB/+ `/< QB/+ Ha O J DgB/+ `/< B/+ Da O  N]LLNuH 2NU+H+I&m` *  m,l6N,@ g,A ,6/,@N$@,_ 
fN]LL NuH2NU+H+J+I mp 0(  &m m+h |  m"m -/
$@a f. $_` x мg  jVм   g j,Vg jrꐁg :rg ` BSg Sg ` 2rGg Sg Sg Sg ` _g  j Xg^jTg:Sg@` UgfSg  ` Sg  Sg Sg(Sg ` 'j  2` 'j  6` 'j  :` 'j  >` J g
   C`    C` J Hg k H,l*N~'j  H  C` nJ Dg k D,l*N~'j  D` Rp 0+ B  gJ `f'j  `  CJ HgB/+ `/< QB/+ Ha O J Dg B/+ `/< B/+ Da O `  J g
  C`    C`  J g
  C`    C`  J Dg  B/* /< B/+ Da FO `  J Dg  |``  J Dg  | m(  g|B/* /B/+ Da O `TJ HgN|``HJ HgB m(  g|B/* /B/+ Ha O `'j  d`J g  C`  CA,l6N$@ 
f xJFg m,m"n pa  N]LLNuH2&INU+H+J$k  <  J,l6N,@ gp, m"K -/
$@a . $_ g,  N]LLNuH 2&INU+H+J mp 0(  "-Ҁ+A m PJg   k ,l6N,@ g   m$P`  /<  2/* a PJfrJ g N"j p",6/,AN,_/<  0/* a P/+ /+ /Hx/* a ~O /<  1/* a lPJ g N"j a ``$RJf | N",6/,AN,_N]LL NuH 2NU+H+J+I mp 0(  "-Ҁ+A m&h `  /<  2/+ a PJf  ~ + "m i ",6/,AN$@,_"
gT/<  0/+ a P"+  fM `M B/. / m/( /+ a O /<  1/+ a ~P``&SJf pN]LL NuH2&INU+H+J mp 0(  $m~,j `  /<  2/. a .PJf  .   f2 n    gUg
YgSg` n !k  `
 n !k  .  g
+   g~ JGg6/<  0/. a P"n  . /
$@a $_/<  1/. a P``,VJf ^N]LLNuH NU+H+I mp 0(  &J,k $`$ n "m"
$,6/
$AŎNŎ$_Jf`,VJfN]LHNuH&H,INUp 0+  "
Ҁ+A K"Na N.  K"Na  K"Na  K"Na  K"Na j N]LHNuH 2NU+H+J+I mp 0(  &m`J g j  ,6/,@N,_ Ja 
A ,&/,@N$@,_ 
f` ma 
vA  ,&/,@N+@,_Jf`J g n a 
J Na 
DA ,l&N,@ f` ma 
(A $ ,&/,@N+@,_JfJ Dg k D ,*/,@N~,_J Hg k H ,*/,@N~,_ m"m"-/
$Aa $_N]LL NuH!2&INU+H+J mp 0(  $m~  m"k M /
$@a $_p 0* B  f^0+ H2* LHDn  n2+ H0-H4* PHDԀoR4+ 
H0* NHDn@0+ 
H2-H4* RHDԁo&~`"Jk m4+ mlJk 
m4+ 
ml~ N]LLNuH#2NU+H+J+I mp 0(  "-Ҁ+A m&h ~ m(   Cgp `   g   m"m,m$n a $mp f  $m*  Cg| `$mp 0*   gp`p  HH$mJ Dg$ K$m"j Dp r $,m,n $n ,l*N,mJ Hg( K,m"n Hp r $,m,n $n ,l*N`~  N]LLNu/&P` f `&SJfp &_NuH 2&INU+H+J mp 0(  "-Ҁ+AJ g
 + fp `Npa $@ 
g@%k  J g  k ,l6N%@ J f
 Ja `p `"mA"J,l&N
p`p N]LL NuH 2&INU+H+J mp 0(  $mJ g
 + fp `Pp$a ,@ gB-k  -k  -k  -k  -k  -k   -k  A "N ,&/,@N
,_p`p N]LL NuH 2&INU+H+J mp 0(  "-Ҁ+AJ g
 + fp `lpa v$@ 
g^%k  %k  "+  a X%@ J g6A "j //	"+  ,l&"_ _N,mA "J,l&N
p` Ja p N]LL NuH 2&INU+H+J mp 0(  $mJ fp `,pa ,@ g-k  A $"N ,&/,@N
,_p`p N]LL NuH 2&INU+H+J mp 0(  $m   ,gSgZSg  _g  `  A"k a p,@ g  "N ,&/,@N,_J g n  ,6/,@N,_ Na "p`  `  A "k a $+@Jg  "m ,&/,@N,_ ma p`  ~`  xA "k a +@Jg`"m ,&/,@N,_"m i a  ma p`8`4A $"k a +@Jg"m ,&/,@N,_ ma jp`p N]LL Nu/r 2(  &Jp "  0g
SgSg`Rk 0`Sk 0`p 0+ 0&_NuH2&INU+H+J mp 0(  $m~,k  + м	gBjVgSg*Sg.`RSg4Yg6`Hp 0* B   gp`p HH,`DA T,`<, H`6, D`0, ``**  Cgp ,`, d` m"K -/
$@a . $_ N]LLNuH?&INU+H mp 0(  ,JpAvC"QvJ 2fJ >g  >* <* ;j ;j 
p 0*   f k :(  k 8( 
` k :(  k 8( 
*  g0S@@*  g0S@@*  gm*  gmk n  0+ H2H4-Hԁohk nb4+ H0H2-HҀoLJ >g k "n >a wXv `8+n 2+n 6+n :"k +i .BHma P2 JAfv`v `v N]LHNuH &INU+H mp 0(  ,Jp +@p +@ N"J + "+ H 0$@&Aa  L +   fZJ DgT <  n DC",*/,ANr,_ <  n DC",*/,ANr,_"-+AX"-+ATJ Hg   < T n HC",*/,ANr,_T"-Ug>j
TgSg`BSgSg`8"k 2-0. \A2`&"k 2. LHD0-@2`"k 0-2. P@2 -Ugj
TgSg`VSgSg*`L"k 0-2. ^@2`:"k 0. NHD2-A2`$"k 2-0. RA2``"k 2"k 2pN]LH NuH &INU+H mp 0(  ,JJ HgLp 0. B  f0Hx HmHmHm/+ /. Ha O  k 0-HD0` k 0. LHD0` k 0  pN]LH NupNuN  ^N 0N N H 0&o $o NU  /
Hm Hx/a O N]L NuH0&o $o ./ NU  //
Hm  Hx/a O N]LNuH0&o $o ./ NU  //
Hm  Hx/a O N]LNuH2&H$I. |  
g2 Ja ,@ g&///
Hx /a NO ,  N ,*/,@N,_ LLNuH 2&o $o NU   m "KM  "/&Aa
&_N]LL NuH',II  NUX+H+KpA쁪C"Q2~ | &mz  g  l&h ' e` n 2"$,./*AŎNrŎ*_J@gD n 2 ",.H *@,ANJL`  m"N"- ,*H &A,@N* LH ` ~`` x"m)  g~"m)  g|JGg 
f` <JGg"j  "i pCAZ Q`*JFg"n :pCAZ Q`"n 2pCAZ Q+n .+N+JCZ+I+mZJGg;j `;n JGg;j 
`;n 
JGf&JFg. 6`p H;@JFg. 7`p H;@`;j ;j n bn c m ,*/,@NN+@,_   gUg
YgSg`
A'H `A'H "m -/
$@a ** $_Jg, m"m ,*/,@NH,_`"m -/
$@a * $_ N]LXNu  H2&o $o  ,o $./ (NU+|  +m +K+J+N;GC"- /
$Aa $_N]LLNuH2&o $o  ,o $./ (NU+|  S+m +K+J+N+GC"- /
$Aa R$_N]LLNuNqtopaz.font  strgclass propgclass  gadgetclass rootclass imageclass  /p r %h  $ $	g0) 2) (  g4 SBR(  g4SBj (  gj (  gj $NuNq       	 
             Q R S T U V W X Y [ Z \            H NU+H+I m ,6/,@N&@,_ g@ K"J",6p /,AN,_Jg m ,l*/
$@N,@$_ K ,6/,@N,_ N]LH NuH 0&H"KE la z @ L NuH 2NU+H < U m,l6N&@ gJ g l"mEa 6,@ `p N]LL NuH 0&H"KE l
a  @ L NuNq    V    W    W    ^    ^>     Z6     \J     ]$ _  ^ `  _ a  `  S  `            /
pE la n @ $_NuH2&INU+H+J+k ~  m"K -/
$@a . $_Jg  "mp 0)  $G Jpa  G(   g G   G   `  z G   G   `  f мmg"jjg6  gSg"`BSgSg.`8$ `2%n  `*5n  `"5n  `J g   `J g  A,l6N,@ fJf k a X%@  N]LLNuH2NU+H+J+I mp 0(  &m m+h +m~  m<< h  m:< h x  m"m -/
$@a J. $_"m  f  "m)   g   ` `   м\g  jVg0SgPSgp`  rTg   g  ~Sg  `  'j  `  J gB/* /< B/+ a O x``J gB/* /< B/+ a bO x`<J g6B/* /B/+ a BO x`& x`'j  "m)  gxA,l6N$@ 
f (,m.   g,m  ,m   `,m  ,m   ,mp 0.    2Hf,mr 2. ¼   0HfJDg m,m"n pa "m)   g  |"mp 0)    2HgbJEgr 2+   g `PB m/( (/< JEgr `rHH//<  mr 2( &//< B m/( /-a hO ( N]LLNuH72NU+H+J+I mp 0(  "-Ҁ+A m+h zJg  m$m"ma Jfp `  <  mC,l*Nr,mJg  ,mp 0.   g
,m&n `,m&V g`,m&V,m6,m7n  ,m0. H2+ H> A m2( H0+ H<@ m"Kp 0r 2$mv 6*  gv`v HH,m,n $n ,l*N`  ,mJ g  B,m4. H//< ,m4. H//< ,m4. H//< ,m4H//< B,m/. a vO , m,m"n p r ,mv 6.  gv`v HH,m,n $n ,l*N,m.   g4 m"m,m,n J g,m,n ,n $n `EZa `z  N]LLNuH&INU+H mp 0(  ,J*   gp`  J g  *   g  ~p 0.    gp 0*   gp`  zj   J"k pa B/* (/< p 0*   gp`p HH/ /< p 0* &/ /< B/+ /
a O (~
`   J"k pa ~ `~ N]LHNuH&INU+H mp 0(  ,J~ | p +@+k ;k ;k Ca rf>< "k )  fX"k 0) | igB| g`  ~JGg.B/* (/< p 0* &/ /< B/+ /
a O  |
`|~ `D~ |`>`< k (  f0JGg,B/* (/< p 0* &/ /< Hx /+ /
a O  p 0*    2Hgj   J"k pa  N]LHNuH&H,I~  g` n p 0*   gp`p HH `
 K"Na .  LHNuH &INU+H mp 0(  ,JJ g n  ,*/,@N~,_ m"Ka N]LH NuH&INU+H mp 0(  ,J~ *   g   k p 0(   	fjj   J"k pa B/* (/< p 0*   gp`p HH/ /< p 0* &/ /< B/+ /
a 8O ( k p 0* & ~`~`   J"k pa @ N]LHNuH&H,I~  n <(  n :( p 0  	f   g  zr 2 02 n A 
a b8  n r Ag n r 2C f  B/* (/< r 2* &//< B/. /
a rO   n r 2* & ~`dp 0rf n h E fN~`JB/* (/< p 0*   gp`p HH/ /< p 0* &/ /< Hx /. /
a O ( LHNuH &H,Ip 0*   f*  g   J"n pa p LH NuH &HNU+Ip 0+  ,J mpAC"QJn g\Jn gV   KCa T/. ?. U?. UHmHm/-a `O /-/-/-/
/a aO p` ` Jg "V;i "V;i J g0"n 0-i d
"n ;i "n 0-i d
"n ;i p 0.   f& K"ma /-/-/-/
/a aBO `     KCa Hm/< Hx/
/a ZO JgLHm/< Hx/-a O Hm/< Hx/-a O "- m"- m/-/-Hm/
/a `O p`  `  J g  |Hm/< Hx/. a O "m)  g"m;Q"m;i `"m)  g`2P`   KCa /-/-Hm/
/a `"O p`
 K"ma fN]LH NuN         cZ  S  c^  3  cv            /
"lp EΑa b @ $_Nup Nu/&i 6  &i 6  p&_Nu/&i 6  p&_NuNq    l    n    u     o     t*     t*     u&      sP  Q  u  R  y  S  V  T    U  v  V  x,  W    /    3      H2,INU+H+J~ C ,./,@N:,_ g> N ,./,@N$@,_ 
gA"Ja `p `JB//< B/-a O B//-HmB/-a O .  
g"J ,./,@N,_ N]LLNu/
p6E la ` @ $_NuH;0&H. | $S`8p 0*    f*$&+ (* a  5@ 0* j d5j  p 0* ܀$RJf`,$S`$p 0*    f0* j cSj Se`
$RJfؾeLNuH?2NU+H+I+K mp 0(  &m,k ~ | z Hm/< Hx/-/-a lO  m+h +P+  +g4J $f mz :( : m0( :m` k $z :(  k $0( m0-Hr + , ܁2-Hp + Ёڀ0-H$  + Sr + a " p + Ёr + Ҁ(2-Hp + t + Ԁ +@䘫  K a t$S`  *   gv 6* `v 6* ރp 0*   gp 0* +@`+mf"d `p 0*    f
c րB/-/< //< //< //< B/* a >O ,p + Ѓ܀$RJf bN]LLNuH;0&H. | $S`8p 0*   f*$&+ (* a 5@ 0* j d5j  p 0* ܀$RJf`,$S`$p 0*   f0* j cSj Se`
$RJfؾeLNuH?2NU+H+I+K mp 0(  &m,k ~ p +@p +@x v Hm/< Hx/-/-a $O  m+h +P+  +g8J $f m0( :m m0( :m` k $0( m k $0( m0-Hr + Ё+@2-Hp + Ҁ+A0-H$  + Sr + a `" p + Ёr + Ҁ,2-Hp + t + Ԁ +@ܜ  K a `$S`  p 0*    gp 0* +@`+m*  gz :* `z :* ޅf"d `p 0*   f
c ڀJk "gP0+ "j cBp 0*   f6p 0+ "r 2* ( r 2*   gv `r 2+ "p 0* DЁD& `v (B//<  -Ѓ/ /< /-/<  -Є/ /< B/* a O ,p + Ѕѭ$RJf N]LLNuH 2&HNU+K`,JA ,6/,@N$@,_ 
f gA `A  N]LL NuH 2&HNU+I+J+m'm p2'@ `  ,J мg  tjVg Sg:SgP`  SgjSg  tSg  |`  J g  |     7j  `  fJ g^    7j  `J'j  J f>p'@ `6J g0 k  `(J g" k  `J g  `J g  A ,6/,@N$@,_ 
f 2 gA ` mA  N]LL NuH2. NU+H+I mp 0(  &m| pa $@ 
gX%G BB/,a O %@ J g,+  +gA"J,l&N`A"J,l&N
  |` Ja H   +`   +0HN]LLNuH 2NU+H+I+J mp 0(  &m+m`   IgSg`   m"m * a `  J f   +A a +@`fpa +@JgD m"j M  /
$@a +@$_+  +gA"m,l&N`"A"m,l&N
`   +A a >+@A,l6N$@ 
f HN]LL NuH2&HNU+J+I m+h +m K"m -/
$@a 4. $_Jg p 0+  $G Jp6a Aa  G   `  мg  j6Xg  jgR  =gnSg``  Sg  Sg  Sg  `  [g  jXg  SgHUg  `  Sg  Sg  `  J g
  +`    +`  n  `  n  `  ~A a +@`  nn  j  `^n  j  `Pn  `Hn  `@n  `8n  `05n  ,`(J g"  +`J g  +`J g  +A,l6N,@ f  K"G -/
$@a r$_  + Ga S^*   +f `Hx//a O p N]LLNuH &INU+H m,P`$p 0.   fB/+ //
/. a O ,VJfN]LH NuH 2&INU+H+J mp 0(  $m+k  m"K -/
$@a $_"m   `   м gbj gD gSgb`  trg.   g&Yg`^%n  2 J"N + /
$@a $$_`D%n  $ J"N + /
$@a 
$_`*J g  +`  +`J g  +`  +A,l6N,@ f XpN]LL NuH>2&INU+H+J mp 0(  "-Ҁ+A+k p +@ k J g k  h +h `AZ+H;|  Jg " m(  +g   l&h ' e"m i r,l.N@+@`,m,n r . +A m,k 0. H,k 2. H"ma +@Jg"m mp 0( ,l.N;| `+m`+m/+ /-/+ Hx /-/-a 2O Jg HJmf  ,m.  +f,m.  +g  Hm/< Hx/-/-a O  m,mp 0. a 8 m0( H m2( HҀS/ m2H m0( HЁS/  m0( H/  m0H/ /-a O  mJ( f" m"m + "-H 0$@&Aa L `  m"m"+  -H 0$A&@a L p f  Hm/< Hx/-/-a O JfH"mJi ,g>Hm/< Hx/-/-a O  m"m,mp 0. ,"-/
$Aa H$_"m$Q`*p 0*   f/+ /-/+ Hx /* a O $RJf`. mJ g$/+ /-/+ Hx  m h /( a LO p+@ m(  +g  Jmg  x m"k M /
$@a b$_ m0-H2-H"m4-H6-H8-H:-H,<   ,l.N ma ` m(  +gJmg ma  -N]LL|NuH2&INU+H+J mp 0(  "-Ҁ+A+k +k +S~  mp !@  m"k M /
$@a $_"m$Q`jp 0*   f\ j "k M /
$@a r$_0-k m;@0-k 
m;@C * /
$@a . $_pf
"m#J `$RJf N]LLNuH2&INU+H+J mp 0(  $mpAC"Q~J g  pfBHx /<B j /( a ۮO  m"k M /
$@a ߨ$_"j  i "k M /
$@a ߌ$_0-k m;@0-k m;@C j  ( /
$@a . $_B"j "i p 0) &/ /< /-/-a O  N]LLNuH&INU+H mp 0(  ,J~ J g8"K n  ( /
$@a . $_BB/<B"n /) a ںO p -@  N]LHNuH 2&INU+H+J mp 0(  $m`Hx/. a >P Na $A,l&N,@ f m"K"-/
$Aa ,$_N]LL NuH2NU+H+J+I mp 0(  &m~ |  mJ fp `  J 2g/< /+ 2a P> pa +@Jgn m$m"j ,mE a A"m,l&N
JGg@/< /+ 2a rPJf("m,l&N ma F/< /+ 2a JP| `|`|`JGg/< /+ 2a *P N]LLNuH2NU+H+J+I mp 0(  "-Ҁ+A~ |  mJ fp `  mJ 2g/<  m/( 2a P> pa +@Jg   m$m"j ,mE a $mJ f$mA"m,l&N|`4,m&V`(,m +  f,mA"m$K,l&N|`&SJfJgLJGgH/< ,m/. 2a *PJf,"m,l&N ma 
/<  m/( 2a 
P| ` |`|`JGg/<  m/( 2a 
P N]LLNuH2NU+H+J+I mp 0(  "-Ҁ+A~ |  mJ g
 mJ fp ` n mJ 2g/<  m/( 2a 
lP> pa 
D+@Jg " m$m"j ,mE a P$m&R`  $m +  f  $mf"K,l&N,mA"m,l&N`&+k "K,l&N,mA"m$m,l&NJGg  /< ,m/. 2a 	PJfj,m -찖f"m,l&N,mA"K,l&N` "m,l&N,mA"K$m,l&N ma 	V/<  m/( 2a 	VP| ` Ka 	8 m,( `"&SJf `JGg/<  m/( 2a 	 P N]LLNuH2&INU+H+J mp 0(  $m~ ,R`T .  fHJ 2g/< /* 2a P> "N ,&/,@N,_ Na JGg/< /* 2a P + `,VJfp N]LLNuHNU+H+I+K mp 0(  &m~ | ,S`  R /* Hn Hn /-/* /. a O .  g=|   =n  p 0.   f`.   g0. n c=n  `=n  .  g0. n c=n  `=n  p 0. d~ >. p 0. d| <. ,VJf V7G .7F 0N]LHNuH#NU+H+I+K mp 0(  &m~ | p '@ 'k  'k   m"m -/&@a &_,S`  p 0.   f+  +g=k . p 0.   f&.   gp 0. ѫ `<p 0. ހ . ѫ `*.   gp 0. ѫ =n  `p 0. ހ . ѫ p 0.   f,.  gp 0. d8| <. `0p 0. d&| <. `.  g=n  p 0. d| <. ,VJf .+  +g J $f mp 0( :܀` k $p 0( ܀p + r + Ҁ$"+ Sp + a 
ЂЫ ހp + r + Ҁ܁ j rcr`"P j rcr`"PN]LHNuH?2NU+H+I+J mp 0(  $m~ | z x v p %@ %j  %j   m"m -/
$@a $_+|  3+KC+I,R`Xp 0.   f*  +g=j 0 C . /
$@a X$_=m Jmfp 0.   f  `
md8-,VJf5D ",R`  p 0.   fp 0.    f
0n n p 0.   f&.  gp 0. Ѫ `<p 0. ܀ . Ѫ `*.  gp 0. Ѫ =n  `p 0. ܀ . Ѫ p 0.   f..   gp 0. d>~ >. `6p 0. d~ >. v`".   g=n  `vp 0. d~ >. ,VJf  *  +gJ $f
p 0+ :܀` j $p 0( ܀p * r * Ҁ$"* Sp * a ЂЪ ܀p * r * Ҁށ m h rcr`"P m h rcr`"PN]LLNuH&H,INUp 0+  "
Ҁ+A+n pAC"Qp +@   KCa x"n >"n <"n 2   n 0Jg   mJ( f K"J "-H 0$@&Aa L ` K"J" -H 0$A&@a L Hm/< Hx/
/a O Jg  dHm/< THx/-a O  -WgSg`"n Qc"n 2`"n Q -SgSg`"n Qc"n 2`"n Qp+@ -N]LHNuH2&INU+H+J mp 0(  $m~,R`2p 0.   f$"K . /
$@a ,. $_Jf `pg `,VJf N]LLNuH &H,I K"J . a HLH NuH2&INU+H+J mp 0(  $m~ Hm/< Hx/-/-a O Hm/< Hx/-/-a O JfJg m"K"-/
$Aa ~$_`LJ* f,R"K". /
$Aa R$_`2`0,R` "K . /
$@a :$_"k Qd"k >,VJf"k 2pN]LLNuH'2&INU+H+J mp 0(  $m>+ <+ ,R`   n  (g   n  (f"K . /
$@a  * $_Jg `  xHm/< Hx/. a  O "mQmJ0H"m2H"m4) Hԁo."mi m$0H"m2) H"m4) Hԁo . `
,VJf Tp N]LLNuN DN N dN N N 0N  8N  DN N  \N  l                                                                                               Y   Z   [   \    ]   ^   b   c   d   e  D f   g  * h  l i   j  T k     J       H2&H$I,J~  
fp`N`R JfR ra 2a 2'@ J g( J"k //	 ra 2",&"_ _/,AN,_p`p LLNu/
"l <   Eʑa @j @ $_NuH :&II  NU+H+J mpAC"Q m,h p +@Jn g80+ H2. H4. HԁSm4+ 
H0. H2. 
HҀSm`   V",*/,ANN$@,_"
gn"
g+j `AZ+HA"mp 0) a 1Ap a 10+ 
H/ 0+ H/ 0+ H/ 0+ H/ Hma xO  V"J ,*/,@NH,_N]L\NuH#2&INU+H+J+k ,<@ m"K -/
$@a 1. $_Jg v"mp 0)  $G J <   a 1hA a 1fA a 1^A a 1V5|   A%H zp2%@ ` $ мg jjr	Ёg j2rЁg jZg  Sg  Sg  ` Sg rg :` Yg jVg  Sg  Sg  ` Sg  Sg ` _g j.Vg ljVg LSg NSg P` Sg VSg  ` vrЁg  jPg  Wg  Ug  ` V[g .Sg` H%n  ` >$ ` 6%n  ` ,5n  ` "5n  
` 5n  ` J f %n  J g     U`  J f   J"n a J@f  ` `  %n  `  %n  &`  %n  *`  %n  B`  %n  J`  %n  V`  %n  Z`  %n  ^`  ~%n  b`  t%n  `  j"n %i  >%Q :  U`R%n  f`J%n  j`B%n  n`:%n  r`2%n  v`*%n  z`"%n  ~`J g"n %i  6%Q 2  UA,l6N,@ f %| "/ F * F k C",6/,AN%@ F,_ < k $,6r ŎN" ŎJgr  F`  I*  Hf*   Hgrê F  Hr $ * R k C",6/,AN%@ R,_C%I *  Ig 	J g r  J  KJ gB//<B/* a ƞO  `DHx//-a .O  <r  k $,6ŎN+@ŎJgHx/-a -Pp N]LLNuH32NU+H+J+I mp 0(  &m m+h ~ | ` 6 мg  j4rЁg  jr␁g  rgXSgh` Sg  r	gdSgj` rЁg 2j^glWg  Sg ` Sg NSg` 'j  p '@ ` +  Tf & ~` 'j  |` 'j  V` 'j  Z` 'j  ^` z'j  b` pJ "f h'j  &` ^J "f V'j  *` LJ "f D'j  B` :J gTJ "f j 'h  6'P 2  U`  k ""j 0H"j 2) H"j 4) H"j 6) H,l*N`    U`  J g
  T`    T`  J "g  J g k "p J,l*Nj`   k " + J,l*Nj`  'j  ~J "g  vJ gn k ",l*NB/+ ~J ~g < 1`p/ Hx /< C/+ /+ a +O J@fBHx /< C/+ /+ a +O  k ""k ,l*NA,l6N$@ 
f JGfJFg2J "g, k "Jg"S`2|,l*J g + `p/
$@N$_pN]LLNuH 2NU+H+J+I mp 0(  &m` ma +A  ,&/,@N+@,_Jf` j a * Ja *A  ,&/,@N$@,_ 
f` Na *A ,l&N,@ f`/< \/-a *PJ NfJ "g/< Z/-a *lPJ g k a *hJ gHx/+ a *JP m"m"-/
$Aa *$_N]LL NuH 2&H$IB/
a *,P'@ J g  vB/+ a *P'@ J gLB/+ ~J ~g < 1`p/ Hx /< C/+ /+ a )O J@gp`& k ,l2Np '@  k ,l2N|p '@ p LL NuH &Ha )'@ J g\,l&Nf'@ J g8B/+ /+ "BB/+ a )xO '@ J g`$ k ,l&N`p '@ "k ,l&Nbp '@ LH NuH 2&HJ gbJ g/+ /+ a )&Pp '@ J g0`
"J,l&N k ,l&N$@ 
f k ,l&N`p '@ "k ,l&Nbp '@ LL NuH 2&HNU+I+@ K ,*/,@NN$@,_ 
g  Bp 0+   	gp `pHH/ /< Hx /< /
/< Hz(
Ba (pO $,@ g4 m0  m0  N ,*/,@N~,_ K"J ,*/,@NH,_`> K"l*NH"mp       m   H        x                                                                                                                                                                        ~   }   |   {   z   y   x   w   v   u   t   s   r   q   p   o   n                                                                                                                                                                                               $   0+   	gp`pH2"mp 0+   	gp
`pH2N]LL NuH?2NU+H+J mp 0(  &m~ | ;|  ;|  +  Ugp`p H;@+  Ugp`p H;@;| ;| J "g + "` J &g$k &;|  `4J *g$k *`( k B,l*N$@ 
f,l*N$@ 
g  U 
fp ` X JCM a F* %Hm* &HmA ,,l.N+@pf`  mC,l*pN&Jf` J vg+k v`+j (0-H2-HDҀvA2-H0-HDЁt@0HHrl;|  +  TgB0-H/ /< B/+ a O j o6* j o4*  k "mM M"H 0$@&Aa BL +  Hf  * $H* %HAm* #HH j (r 2( ҀR* &HAm* $H;@* #HH j (r 2( ҀpA;@* %HmHD;A* &HmHD;A+   IgV+  Ig 2-m2-HDm``+  Ig.2-m2-HDm`;|  ;m;m;mB+   Tgr `rHH//<Hx /<2-H//< 2-H//< 2-H//< 2-H//< B/+ a O <+   Hg:~ +  Tg* H|A* HDAj SA;A`| ;j ;j ` $:-8-Jk 
g"0H2-HDҀp 0+ 
a $rda $hmJk g"0H2-HDҀp 0+ a #rda $@m+  UfA 2 + a $.J@g  Jmg`;k 6Jmg`;k 8+  Ug60+ >H2-HDҀ>k :2+ @H0-HDЁ< k <`>+ 2<+ 4mo;Emo;D0-j oj n;j 0-j oj n;j 0H2-HҀ0* Hl>* m0H2-HҀ0* Hl  <* m`  +  Uf  0+ J@gS@gB`  0H2-HDҀ0* HHD>@0H2-HDҀ0* JHD<@`t0* H2-HDҀ0* HHD>@0* H2-HDҀ0* JHD<@`6`40+ >H2-HDҀ>k :2+ @H0-HDЁ< k <0-j n0-j nJmmJml -䰫 zf` N+k z` J g K"Ja J@f` .'J 7|   7|   7|   7|   +   Tgp `pH7@ C 'I +   Hg+  Tf Jp ,l*NB0H/ +  Ugp` <  s/ 0H/ +  Ugp` <  r/ Hx+  Ugp` <  u/ Hx+  Ugp` <  t/ /+ J+   Ugp` <  j/ Hk /<  Hx /<  /
Jmg <  y` <  p/ /+ F/<  k/+ J g <  o`p/ /Jg <  n`p/ 0-H/ /<  g0-H/ /<  f0H/ /<  e0H/ /<  dBa  O '@ "J "g   k ""k p,l*N k "k "p,l*r /
$ANP$_ + ,k "A a  J g k ""k ,l*N+   Ug@,l&N|,k "-k  V k " + J,l*Nj,l&Nv+  Hg k ",l*N>`
,k "'n V +  Ug Ka 4+  Ug"J,l*N  U + "N]LLNuH 2&H ,&/,@N|,_ k $h `, * , "f "J ,&/,@N,_"J ,&/,@N,_$N,R f ,&/,@Nv,_LL NuH&INU+H mp 0(  ,J~ J "g  `/< \/
a PJ Nf.  Ug Na =|   UJ g n " ,*/,@N,_ ,&/,@N|,_ Na  n "a .   Ug n "p !@ V n "p ",*/,ANj,_",&/,ANv,_ n "",*/,AN,_r -A "J g n ",2/,AN,_r -A J g n ",2/,AN|,_r -A ~ N]LHNuH0&INU+H+J mp 0(  $m~ J "gJ Nf j "a %@ .R N~ N]LNuH&INU+H mp 0(  ,J~ J "g$J NgS NJ Ng~` n .a p -@ .~ N]LHNuH&INU+H mp 0(  ,J~ J "g( n "-h  6-h  2  U~ . "n "A a x N]LHNuH2&INU+H+J mp 0(  $m~,k  + мgDjrߐg  zrgYg`  rgBUgZ`  x, `  J "g, `  xp ,`  pJ "g j p( ,`Xp ,`RJ g j p( ,`<p ,`6, "`0J "g j "-h  , `~ ` m"K -/
$@a ,. $_ N]LLNuH0&INU+H+J mp 0(  $mpAC"Q~J "g  +|  /+j "p +@ j ";h  j ";h /< [/-a PC * /
$@a . $_pf  J VfJ bg  rJmojJmod"j "0-i lV"j "0-i 
lHJ bg j ""j ba (~ `2+j V+j Z+j ^"j "+i .BHma PJ@f~`~ /< \/-a P N]LNu|  1@ 1A !Q 
NuH 2&H,k  ,&/,@N|,_$n `. * , "f""J ,&/,@N,_ ,&/,@Nv,_ 
`$RJf ,&/,@Nv,_p LL NuH?2NU m ,p 0(  &m 0pA6C"Q2pANC"Qp +@v+   Gf,l&N|,k "   ,l&Nvp 0- 6  f L2- : m <0- 6a $ < g 2$k ` $ j PŴ-g* f -  :g" j  (g  j  ("f` Hm/< Hx/* a O Jf  j p 0(   g` +| _A+HA+H+j A0- 62- :"m <a L j "k ""* M H 0$A&@a ( L J @g"m @,l&Np +@ @ g&-` 8` ,  g` *`  g( Ka V j "k ",l* * /
$@N2$_` ` +| ` k ,l&N` ,m.. ,m<. ,m:. ,m+n  м g  jg (r?g  ` j   g  g  ` TA02"ma > j "k ""* M H 0$A&@a ( L  g(B/< a/* /+ "/* a FO &-` &`    g  B/< a/* /+ "/* a O `  `  B/< a/* /+ "/* a O &<   `  B/< a/* /+ "/* a O "mv 6) &`  B/< a/* /+ "/* a O  Ka `  B/< a/* /+ "/* a |O  k "7h   k "7h 
  k ""k ,l*N  T Ka p`0"m,l&Np +@ Ka +@Jf 0` $RJf J @g"m @,l&NJg"m,l&N+   Gf,l&N|,k "   ,l&Nv N]LLNu  /&h ` f `&SJfp &_Nu/&h ` f `&SJfp &_NuH2&H. NU+I m ,6/,@N$@,_ 
gj,k `P fHJ g J"n p",6/,AN,_BB/
HxB/+ "/. a  O J g
 J"n a v,VJf J",6/,AN,_N]LLNuH?2NUx+H+I+J mp 0(  &mzHmz/< Hx/-a tO Jzg 4 k "+h . m ,*/,@NN+@,_Jg J vg+k v`
 m+h (C ,./,@N:,_Jg( m ,./,@N+@,_JgA"ma H"k ">) "k "<) C mz",./	//&-zǈa "$ ǈ " _"_/,AN,_r@;A~B/<  /<  k/<  /<  jp 0-X/ /<  gp 0-~/ /<  f k "0( Hr 2Ҁp 0-VDЁ/ /<  e k "0( Hr 2Ҁp 0-~SDЁ/ /<  dBa ZO 8,@ g Jg n 2"ma Z n 2"m"i p 0) a  n 2p a "n 2pr6. H$U8. 
H&U(,.ɎNɎ"n 2 m h p 0( (,.ɎNɎ"n 2p r (,.ɎNɎ"n 28. H Sr (,.ɎN
Ɏ"n 28. H S8. 
H"S(,.ɎN
Ɏ"n 2p 8. 
H"S(,.ɎN
Ɏ"n 2p r (,.ɎN
Ɏ"n 2px 8-r҄(,.ɎNɎ"n 2 mz/	/ -z/ @a B(  _ (,. _"_ɎNɎ>. <.  n V(,&ɎNɎ`$n fn fx fz "J(,&ɎNɎ n V(,&ɎN$@Ɏ(
fJEf N(,*ɎNɎJg"m(,.ɎNɎ m"m(,*ɎNHɎN]LLNuH2NU+H+J mp 0(  $m~*  UgJ "g
:* ` J "g j "a R, pg ` >J "g . Ja &@ g   j "%h  %h   j "( 8Hj  j "( 9Hj J jg: g6 +  r f( j j"K,l6 -/
$@N$_"K,l&N ` J fg* g& +  n f j f"K,l6 -/
$@N$_ + м g Jj4м  g jrg^Sg  ` H   g    g h` 0м g bj  g :   g :`  @  g ^  g 6` ,j "5n  ,j "5n 
 *  Tf  j ""j ,l*N  T` *  Tg B,j ". 7HH,j ". 9HHҀD//< ,j ". 6HH,j ". 8HHЁD/ /< ,j ". 7HH/ /< ,j ". 6HH/ /< /* a \O ( j ""j p,l*N,j "0. j f,j "0. 
j g j "j "p,l*r /
$ANP$_  T` .<   ` .<   ` .<   `  m -/
$@a $_` :+ |g  z j p 0,l*Np+@,m.. ",m.   g0,mp 0.   gp`p HH/ //< c/-a O ,mn  g,m5n     U` (  U` 0+ | Eg | g`* m -/
$@a x$_` *  Tg
.<   ` //+ ?+ U?+ U/-/-a O . ` ` "k ~ >) &` +k  <  m,l6N+@Jg  <  m,l6N,@ f" <  m,l6N,@ f
,m,. `| < m,l6N+@Jf < m,l6N+@Jg   J,m"n a ,+@Jg   -谪 g`"m+QHm/< Hx"m/) a xO "m"i p 0)   fJg`"m i "j ",l*p /
$@N2$_``+j Hm/< Hx,m/. a O ,m,n p 0.   f ^Jg` T,m n "j ",l*p /
$@N2$_,mf~` .`  < m,l6N+@Jf < m,l6N+@Jg   J,m"n a +@Jg   -谪 gb"m+i Hm/< Hx"m/) a @O "m"i p 0)   fJg`"m i "j ",l*p /
$@N2$_``+j Hm/< Hx,m/. a O ,m,n p 0.   f \Jg` R,m n "j ",l*p /
$@N2$_,mf~`  .`   J"m a 6.`  "j "8) "j "6) +|  W;D;C޸j f  j f  C * /
$@a +@$_JgV -ప f> * R Ⱚ fX m"m -/
$@a R$_p %@ p %@ 5|   5j  `(%m p %@ `%m p %@ `p %@ p %@ 5D 5C &g"K,l&N`.<    N]LLNuH2&HNU KCr,lFpN> | g`p -  `
p   N]LLNuH02&INU+H+J mp 0(  "-Ҁ+Ap +@J g  J g  pa 	$@ 
g  %k  %k   k a 
TRa 	%@ ,j  gd j "k a 
H`p C RJfrA//&* ǈa 4 ǈ0 _"a @ "mA "J ,&/,@N
,_p` Ja 	~p N]LLNu"H"	g` f 	`"Q"	fp NuH 0"H"	g<`6&i "g,`& "f `($k "
g` "f 
`$R"
f&S"f"Q"	fp L Nu` f `
 Jfp NuH2&INU+H+J mp 0(  $m~ J g  J "g   j " ,*/,@N,_ j  + a .+@JgJ g m   `> m   `2 j  + a +@JgJ g m  `
 m   j ""j  ,*/,@NB,_J gH j  + a &,@ g6~ fJ g   `    `JgJ g  `   N]LLNuH2&INU+H+J mp 0(  $m~ J gTJ "gN j ",l*N j  + a :+@JgJ g m   `
 m    j ""j ,l*NBJ g4 j  + a P+@Jg~J g m   
`
 m   
 N]LLNuH 2&INU+H+J mp 0(  ,mJ gN n  + a $@ 
g< fp 0* 
   gp`p HH` `Jgp 0* 
  gp`p HH`pN]LL NuH 2&INU+H+J mp 0(  ,mJ g* n  + a j$@ 
gp 0* 
  gp`p HH`pN]LL NuH2NU+H+J+I mp 0(  &m mM ~`Lpa $@ 
g<%V BHx/< Hx /< $B/a 4O A "J ,&/,@N
,_`~ XJf N]LLNuH&INU+H mp 0(  ,J~ J g n  ,&/,@N. ,_ N]LHNuH2&INU+H+J mp 0(  $m~ J g4pa ,@ g(-k  -k  -k  A "N ,&/,@N
,_~ N]LLNuH#&INU+H mp 0(  ,J~ | J "gP n " + a F> H+   gJFf|` ,&/,@N @,_"H n r(  ",&/,AN,_ N]LHNuH 2&INU+H+J mp 0(  $m*   Ug" j  h Jg j  h ,h ,`a ,@`,j " N]LL NuH 2&INU+H+J mp 0(  "-Ҁ+AJ gd+  g( m"k a Z$@ 
g"J ,&/,@N,_ Ja +   g( m"k a H,@ g"N ,&/,@N,_ Na p`p N]LL NuH2&INU+H+J mp 0(  $m~ J "g *  Tf j ""j ,l*N  T~ N]LLNuH2&H~ k ,l&N`    f~ "J,l&N Ka $@ 
fJGfLLNuH?2NU+H+J mp 0(  &m;|  ;|  x J "g p+  Tg f k "$h .A ,,l.N+@pf ` D mC,l*pN&Jf ` (0-H2-HDҀ~Aj o>* 2-H0-HDЁ|@j o<*  k ";h  k ";h +  Hf4 k "( 6H k "( 8HA;@ k "( 7H k "( 9H@;A k "k vM M"H 0$@&Aa L 2-m2-mmmml ` V+   Hf   k "prt v ,l*N,k ";n ,k ";n ,k "6-H0-HDЃ2. @;A,k "0-H2-HDҀ:. 
A2-H0-HЁ2Hl
2m;A2-H0HЁ2Hl2E;A k "0-H2-H4-H6H,l*N Ka  k "0-H2-Ht v ,l*NB6-HD//< 6-HD//< B/+ a O  k ""k p,l*N k "k "p,l*r /
$ANP$_  Tx`x N]LLNusysiclass NqN DN N  lN  N  lN N 0N  LN  8N N N 0N N    N   4N   ZN dN pN N DN RN 2N  DN   N  >N N N N N N   H1&H.  l&h ' e2JGg"BHx /<  Hx /<  /a 
O `2B/a  P`&JGg K"lVprtv ,l*N`
 K,l*NLHNuH0:&HI  p|a  $@ 
gP%K p%k  x%k  tA,l*NvA"K,l*N Kpa J K0+ H2+ 
H4+ H6+ 
H,l*N 
L\NuH0:&HI  $K 
gB j pp 0* tr 2* vt 4* xv 6* z,l*NA"j p,l*N j pp a  Ja  L\NuN N N   /./ NU   A a F @ N].NuH0 r `0t 4v 0( $ft 4Rv 0( 4E |   RAt 4J0( gt 40 |( ft 40 |( ft 4  ( t 4RE(  
`p LNuH?2./ ,/ 3NUzx v t p| m ,a  @ fxBHx /<LHx /<BHx a "O &@ g hJDg Hx 2/<  T/a dO Jf  `  `   m ,Cp a +@ , *f
JCfRvtBJgp`pHH/ /< 0RE  / /< p / /< Sp 0/ /< R//< UHx a xO 0$@ 
gX| g| f"m @"BHx /</
/<  Q/a O Jf`"Hm/
B/< ^/- 8a O Jf`` K ,*/,@N~,_p `Tt ,m , f 
 m <p 0U JDgHx 2/<  T/a :O Jf`BHx /< B/
a @O  `p N]LLNuH &II  NU+H m,h r A 0+ a | bg8| g`N+  gFBp fp`pHH/ /< i/
a O `+  gBHx /< i/
a O  V(  gV0+ | Cg
S@gS@g.`BBp fp` n 0( &H/ /< i/
a @O `BHx /< i/
a (O N]LX NuH?:&II  NU+H+JpAbC"QA+H,k ~| zx p +@;|  vt +   gJg;| Jg m+h .`+k J g J g | k a Ra +@Jg b m"k a JgF k "ma t( Jg4 a \,@+NJg" N"k  -/
$@a P$_t`
 
fRRJfRJBg ma 4J g+k `&Jg mJ  g m+h  `
a +lBBBBBHx /< Hx /< Hx /<Hx 
/</-/<Hx /<//</+ /<Hx a O H/ /<IHx +  gp` <K/ Hx /<BHx /<DHx /<CHx /<AHx a O @+@/-/</-Jg <`p/ +  gp`p HH/ /<Hx /<Hm/<	Hx /<Hx /</+ /<Hx /<Hx /<B/<B/</-/< mHh Jmg <`p/ p 0+ / /<Hx (a O $@ 
g *HmHm/
Yk  +  gp`p HH/ /-a PO +@Jg  BHx /</-/<  Q/-a  O +K+mA+H/< Y/
a  P+@Jg  +  gJg ma f+@ < JC",*/,ANr,_ -",&/,AN,_`rbb*Sv /< ]/
a  XP.    fJCf/< Z/
a  <P ma ` J",*/,AN~,_ ma  > N]L\NuNqN  N TN  8N N N N N N N  H&H,I. I  NUpAvC"Q+N+J+G g+k .`p +@BHma  PHN]LXNuN     p `R" J f" S NuH &HNUHm/< Hx//+a O Jg6 < T mC,l*NrJfBHx /< TB/-a  O N]LH NuH2&o >/ *</ .NU  z MJ 4g" m 4 ,./,@N$@,_ 
g K"Ja `$k 4"m (p 0Q2+ :@2 K"Na r7a : "m $p 0Q2@2 
g"J ,./,@N,_N]LLNuH2. ,&HNUpA삪C"Q2| ;G;F+SACr,lFNְ| gp`p -HN]LLNu  H2&o $o ,o  >/ &</ *NUp +@p +@.   fnHm/< Hx/
/a O  <  mC",*/,ANr,_ <  mC",*/,ANr,_"-+AX"-+ATHm/< Hx/
/a O Jg  Hm/< THx/-a O "-Ugj
TgSg`(SgSg`"n Qd"n <`2-A` n P"-Ug.j
TgSg$`8SgSg`. n Pd n >`2-A` n P``2-A2-A n 0 n 0N]LLNuH2&H.  g pЇ/ /a P$@ 
g0r@4T` "<  ,l&NT$@ 
LLNuH 2&H$I,J gUp 0/ //a O `"N ,&/,@NN,_LL NuH 0&H$INUp
AC"Q2a R+l+l+Jp+@ KCp /
$@a $_N]L NuH!&I. NU+H"K r $-,l*ŊNZ,@Ŋ"g-J $C -I  `p N]LHNuH!,HKNU+I N"ma  . c:Jg"S ,&/,@NN,_ "<  $,&ŎNT&ŎJg$`t $ ` S"N$-Ŋa  Ŋ N]LHNuabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ,_: NqN  \N  >N  
xN pN  8N N N  N  N N       P    Ȱ    Ȱ        "     Ϊ     ֬          <  S  b _              /
p E la N @ $_NuH0&H$I~ ` K"Ra < Fd>XJfp 0rЁ  LNuH!2&INU+H+J,k  <1",6 N/,AN @,_"fp ` " m"K"-/
$Aa r. $_Jg "mr 2)  $G"G   "G   Jp a H Ga BB/,a <O %@ J g   <1r  N$,6ŎN%@ Ŏ <2r  N$,6ŎN%@ Ŏ j a v%@ $*  c%j  B$*  j //< U/+ /* a O  <3 N$,6ŎN+@ŎJg mJ g    `Hx//-a O p N]LLNuH'&INU+H mp 0(  ,J+k ~ ,. :< j  m"Ka "      <  m",6/,AN+@,_Jg6Hn /< Hx/
/-a O B/. /< QB/. a O  <2 m",6/,AN+@,_Jg m-h  ".  c-n  r 2* ¼   0Hg J"k pa  g  Hm/< Hx/
/-a `O Jf: k a Z+@Jg( m"n p r $,*ŎNŎ m$,*ŎNŎB$.  n //< UB/. a O Jf J"k pa 켮 g,B/. /<2p 0* &/ /< B/+ /
a O  ~ N]LHNuH?2&o ($o ,NU:8* pE;@0j 6 SCJ 4g
 m 4,h `MZ - 8Sg[g`>. <. ;n `>. <. ;n  Kp 0a P Kp a N"Kr 2pЁt 4r҂$,.ŎNŎ"Kr 2pЁt 4"U$,.ŎN
Ŏ Kp 0a "Kr 2pЁt 4r҂$,.ŎNŎ"Kr 2pЁt 4"U$,.ŎN
Ŏ"m <)   g 4t 8g *t 8f`  Kp 0a "Kr 2pЁt 4r҂$,.ŎNŎtE;BtD;BtE;B4_B;BtE;B4_B;BtE;B4WB;Bt
E;B4WB;BtE;B4_B;B"KpA$,.ŎNŎ Kp 0a "Kr 2pЁt 4r҂$,.ŎNŎtE;BtD;BtE;BtD;BtE;B4_B;BtE;B4_B;B"KpA$,.ŎNŎ`  Kp 0-a z"Kr 2pЁt 4r҂$,.ŎNŎtE;BtD;BtE;BtD;BtE;BtD;BtE;BtD;B"KpA$,.ŎNŎ"Kr 2p
Ёt 4r҂$,.ŎNŎtE;BtD;BtE;BtD;B"KpA$,.ŎNŎ"Kr 2pЁt 4r҂$,.ŎNŎtE;BtD;BtE;BtD;B"KpA$,.ŎNŎ"Kr 2pЁt 4"W$,.ŎNŎtE;B4WB;BtE;B4YB;BtE;B4YB;B"KpA$,.ŎNŎ"Kr 2pЁt 4r҂$,.ŎNŎtE;B4YB;BtE;B4YB;BtE;BtD;B"KpA$,.ŎNŎN]LLNuH12&INU+H+J mp 0(  "-Ҁ+A+k ~ k J g k  h +h `AZ+HJg Hm/< Hx/-/-a O Jgp ` p f m$m"Ka Jfp ` Hm/< Hx/-/-a O "m+i +QHm/< Hx/-/-a O Jg2Hm/< Hx/-a O pfRmRmSmSmB"mp 0) / /<"m0) H/ /< "m0) Hr/ /< "m0) H/ /< "m0HrЁ/ /< B"m/) a O 4p f8/-"mp 0)   gp`p HH/ "k /) Hm/-a O  m$m"j p r $mv 6*  gv`v HH,k $n ,l*N,m.   g, m"m,k J g,k ,n $n `EZa b`~  N]LLNuH?2&o ($o 0./ 4</ :NU m 0 "h ,Q K"Na : "m 0"Q0) Hr 2≐A;@r 2+ : "a  " p 0+ >Ёr@;A l&h ' d86* `8* 6*  l&h ' e KJFg2`2p 0a `
 Kp 0a  Kp a p 0+ :"a Tr 2+ :ҀS/ m 0 P2( H[/r 2+ : "a f" T/Hx /a \O  l&h ' e KJFgr`rHHa ` Kpa  Kp 0a  Kp 0a "Kp 0-r 2-$,.ŎNŎ"K N/	/ / @a 
$  _ $,. _"_ŎNŎ l&h ' dXJFgT Kpa 
p 0+ :"a 
Tr 2+ :ҀS/ m 0 P2( H[/r 2+ : "a 
" T/Hx /a 
vO N]LLNuH?2NU+H+J+I mp 0(  &m m h +P m h J g m h  h $h `EZp+@ mA , ,./,@N+@,_pg . mC",*p/,AN&,_Jg 0-H2-HDҀpA;@2-H0-HDЁr@;AHm/< Hx/-/-a 	NO J g k  ,./,@N'@ ,_p 0-Y k r 2( a 	`;@rҫ p 0-ްd
p 0-" `rҫ > m2H m h  h 0( HЁr@;A m0( H m2( HҀ m h  h h ;A m<( |  k 2 zAB/-/<  pHx /<  Hx /<  Hx /<  Hx /<  Hx /<  B/<  kp 0/ /<  gp 0/ /<  fp 0-/ /<  ep 0-/ /<  dBa XO `&Jg v7|  S,h 2J g
 N"k a 6"l&i ' d8* `8*  Np 0a  Np a p 0/ p 0/ BB/a O  l&h ' d8`8*  Np 0a "Np r $,.ŎNŎ"Nr 2 Sr $,.ŎN
Ŏ"Nr 2 St 4"S$,.ŎN
Ŏ"Np t 4"S$,.ŎN
Ŏ"Np r $,.ŎN
Ŏ"Npr $,.ŎNŎ"Npt 4"S$,.ŎN
Ŏ"Nr 2 Ur $,.ŎNŎ"Nr 2 Ut 4"S$,.ŎN
Ŏv `Bp 0/ /
//a rO RCCbp +@ -N]LLNuH&H,INUp 0+  "
Ҁ+A~*   gp`  J g  ~ mp 0(    f   J"n pa 0~ `VHm/< Hx/
/a O 0. j  m< P0. j  m: h | o K"Na . Jg``` N]LHNuH0&H$I S>(  S<( z| mD0H S2( HYo2| m,0H S2( 
HUo0HUr 2* :a *  cz0  LNuH2&INU+H+J mp 0(  $m~  k J g k  h +h `AZ+Hz Jg  k  h (  fp`   J,R"n 2a $< j gNj gBp 0* / /-/
 R/( 2a O |gHx 0H/ /-/
 R/( 2a rO 5F  k (  f  k 0( | igt| g` vj g\p 0*  gJ  p 0* %@ B *  j //< U/+ /* a O  m"k pa z
` z` z` z` ` p +@+k ;k ;k C"-/
$Aa *$_rf>< "k )  f  "k 0) | ig  || g`  vJGgf"k pi gJ gS `%j  ` *  dR `p %@ B * "j //< U/+ /* a 4O z
  `z~ `~ z"mp 0)    2Hg"mi   m"k pa  N]LLNuH &INU+H mp 0(  ,JJg V ,*/,@N,_p ,J g"n  ,./,@N,_p -@ .  g0B/. /<2p 0* &/ /< B/+ /
a O     m"Ka <N]LH NuH&INU+H mp 0(  ,J~2 g`
 k   ` m"Ka .  N]LHNuH &INU+H mp 0(  ,J n  ,*/,@N~,_ m"Ka N]LH NuH2NU+H+J+I mp 0(  &m m+h  m"m -/
$@a f$_ k ,l.N$@ 
g>* "J,l.N`,k >. p 0T/  m"k a 6/ /-/-/-a  O pN]LLNuH!&INU+H mp 0(  ,J k >( pGgJ gS `-n  ` .  dR `p -@  k a  +@Jg( m"n p r $,*ŎNŎ m$,*ŎNŎB$.  n //< UB/. a  jO B/. /<2t 4* &//< B/+ /
a  ^O   J"k pa  B"k p 0* &"pN]LHNuN  
xN  lN N dN  P0N  LN  \N  PN  N  PN  lN  N  8N  
N DN  XN  N N pN DN  >N  D        ޶    ޶    ߸                S  2 _      /
pE la v @ $_NuH0NU+H+J+I m$h  m"m -/
$@a \. $_Jg  "mp 0)  &G"G  "G i  Kpa 2BHx /< B/,
a "O &Jg( Ga >BHx /<  m/( /a O  `Hx//-a O p N]LNuH&INU+H mp 0(  "
Ҁ+A+k >< j << j z  m"Ka    j  <  m,l6N,@ g
 m!n  p 0*    2Hfr 2* ¼   0Hg` J"k pa Bp 0*    2Hg>Br 2*  gr`r HH//< r 2* &//< B/+ /
a O  z N]LHNuH&INU+H mp 0(  ,J~  g` k p 0*   gp`p HH ` m"Ka t.  N]LHNuH!2NU+H+J+I mp 0(  "-Ҁ+A m&h ~ m h J g m h  h +h `AZ+H g $ m$m"ma Jfp ` Hm/< Hx/-/-a O B"mp 0) / /<"m0) H/ /< "m0) H/ /< "m0) H/ /< "m0H/ /< B"m/a zO 4"m)  g$ K$m"Rp r t ,m,n $n ,l*N` K,m"Vp r ,l*N,m.   g2 K"m,m,n J g,m,n ,n $n `EZa `~  N]LLNuH&INU+H mp 0(  ,J~*   gp`ZJ gRj   J"k pa Bp 0*   gp`p HH/ /< p 0* &/ /< B/+ /
a O  ~
 N]LHNuH &HNU+Ip 0+  "
Ҁ+A m,h  mpAC"Q   KCa "m/) Hx Hx HmHm/a ߊO /-/-Hm/
/a jO pN]LH NuH &INU+H mp 0(  ,J V ,*/,@N~,_ m"Ka  N]LH NuH &H,I n p 0(   	f`j   J"n pa  xBp 0*   gp`p HH/ /< p 0* &/ /< B/. /
a  DO   n p 0* & p`pLH NuNqN  lN N dN  P0N  LN  PN  PN  \N  
      P                 ,        S  \            /
p E la R @ $_NuH 0&H$IJg
 Sa 6p & 
g Ja .Ra .&Jg S"Ja &L NuH12&HNU+J+I m,h  K"m -/
$@a . $_Jg zp 0+  $G Jp a  Ga  J/r $&,6 <ňǎNňǎ"@ _a T <r  N$,6ŎN%@ Ŏ <r N&,6ǎN$ ǎ5B  <r N&,6ǎN$ ǎ5B  <r N&,6ǎN$ ǎ5B Hm/< Hx//a :O Jg  vHm/< Hx/-a O t 4* Jot 4* `t 5B Hm/< Hx/-a O t 4* Jot 4* `t 5B 5|   <r  N&,6ǎN$ ǎJg   j  d5|   N]LLNuH2NU+H+J+I mp 0(  &m m+h +m~  m"m -/
$@a $$_`Z  g2  gSg`B~ K"j a   `.~'j    `Hk /< Hx/-/-a O A,l6N$@ 
fJGg m,m"n pa pN]LLNuH 0&HJ f `4p 0+   f + `"  C E  +  S/&@a ވ @&_ L NuH2NU+H+J+I mp 0(  &m m$h ~ m h J g m h  h +h `AZ+H 
g r m"m"-/
$Aa $_Jfp ` VJ g k ,l.N,@ g J"Na  Ka +@Jg 
Hm/< Hx/-/-a O  m+h +PHm/< Hx/-/-a ^O Jfv J"mp 0) a \ Jp a Zp %@ |    m0( H m2( HҀS/ m2H m0( HЁS/  m0( H/  m0H/ /
a O 0+ m0+ mp 0+ 】mp 0+ 】mHxHm/-/-/
a O  g"N ,./,@N,_`~  N]LLNup NuH &INU+H mp 0(  ,JJ g"n  ,&/,@NN,_Jg Va  m"Ka "N]LH NuHNU+H+I mp 0(  &J m,h p +@ mpAC"Q   mCa  J g& k  ,./,@N+@,_Jg
 N"ma  0+  :r 2+ > A+   gD Ka +@JgL/ N"ma  2   p 0+ Ё/ Hm/
/-a O `/Hx Hm/
/-a O pN]LHNuNqN N N N N  lN N  \N  8N  PN  >N  lN  N  XN :N   BGUI Help...  Continue  BGUI Request                                   x          Z        S  B _  ,   0    /
p2E la  @ $_Nu/&HHk /< Hx/a HO Hk /< Hx/a 0O &_NuH &INU+H mp 0(  ,J V ,*/,@N~,_J g"n  ,./,@N,_J $g n $a J (g n (a J ,g n ,a  m"Ka N]LH NuH2&H$I.  < ,l6 JN @ f a '@ $J $fp `V < ,l6 JN @ f a j'@ (J (fp `, < ,l6 JN @ f a @'@ ,J ,fp `pLLNuH!2NU+H+J+I m"m -/
$@a . $_Jg ,"mp 0)  &G"G    Kp2a "m i  ,6/,@N$@,_ 
g  <"< J$,6ŎN'@ Ŏ <"< J$,6ŎN'@ Ŏ <  J,l6N,@ gp, <  J,l6N,@ gJ fBA2-H `8 <  J,l6N,@ g" .  l-k  ` .  o-k   <  J,l6N,@ g"R     c K"J . a  J@f`  /
Hx /+ ,J ,g < `p/ /+ (J (g < `p/ /+ $J $g < `p/ /,Ba 
O (&Jg   < 	 J,l6N,@ g'n   < 
 J,l6N,@ g'n   Ka p'@   < J,l6N,@ gp b'n    Ga  J ,6/,@N,_ `$ J ,6/,@N,_Hx//-a 	O p N]LLNuH2NU+H+J+I mp 0(  &m m>< h | z m"m -/
$@a 	v$_"m i ,l6N+@Jg  <"+  m,l6N'@  <"+  m,l6N'@  <  m,l6N$@ 
gJ fM%N |`< <  m,l6N$@ 
g$ *  l%k  ` *  o%k  | <  m,l6N$@ 
gp$Hm/< Hx/-/-a O ,m/. Jg`,m,n //-,m//a LO ,m   ,m  f   <  m,l6N$@ 
gXJ g"k ,l.NHm/< Hx/-/-a O  m,l.N'@ B/+ /< B/a O  < 	 m,l6N$@ 
g'j   < 
 m,l6N$@ 
g'j   Ka   mp 0(    2HfJFg m,m"n pa JFg  "S)  g<B/+ /< "mp 0) &/ /< "m/) "m/) /-a FO  `:B/+ /< "mp 0) &/ /< "m/) "m/) /-a 
O   m,l6N`z  N]LLNuH&INU+H mp 0(  ,J f k "V  "p`""K /
$@a . $_Jf m"Ka j.  N]LHNuH2&INU+H+J mp 0(  $m+k ~ k J g k  h +h `AZ+Hp +@p +@Jg  mp 0(     mr 2( ¼   ,Hm/< Hx/-a O Jg<Hm/< Hx/-a O Hm/< Hx/-a |O RR m"K -/
$@a j" $_Jfp ` 8Hm/< Hx/-/-a `O "m+i +Q2-m2-m -" m -" mBJ g"* `"//< 
J g"* `"//< 	2-H//< 2-H//< 2-H//< 2-H//< B/a O < mr !A  m|   /+ /-/+ Hx /a `O  m(   g4 mC,k J g,k ,n ". `MZ"/
$Aa j$_`~  N]LLNuH&INU+H mp 0(  ,J~ p 0*   f  m"Ka rf"K /
$@a . $_ N]LHNuH&INU+H mp 0(  ,J~p 0*   f"K /
$@a . $_Jf   1 N]LHNuH&INU+H mp 0(  ,J"K /
$@a . $_ g j Na  V(  g  Hm/< Hx/a O  - l8"k "i  i . ,*/,@N,_B/. /< /+ /a O ~ `@ - o6"k "i  i . ,*/,@N,_B/. /< /+ /a O ~ B/. /< p 0* &/ /< B/+ /
a O  `*B/. /< p 0* &/ /< B/+ /
a zO   g.B/
/<p 0* &/ /< B/+ /
a LO   `2 g,B/
/<p 0* &/ /< B/+ /
a O    N]LHNuH &INU+H mp 0(  ,J.   1g"K /
$@a $_   1pN]LH NuH0&INU+H+J mp 0(  $m k pAC"Q m"K -/
$@a N$_J gA"j a |AC a v> /-p 0"*  a j/ //-/-a NO Hm/< Hx/-/-a O Jg0Hm/< THx/-a  O pgpf k UPpN]LNupNuH2&INU+H+J mp 0(  "-Ҁ+A~  mp 0(   fP k C a  a  d$@ 
g: J"k M  /
$@a  $_B/
/< /+ "m/a  NO  Ja  ~ N]LLNuM     N  8N N  lN N N dN  LN  \N  P0N  PN  PN  DN  
N  >N  
xN DN N         @   @          Z     b        t      S  _     /
pDE la ˲ @ $_NuHNU+H+I mp 0(  &m0+ @> +  !gp`p H:+ >8+ Bv+    gx :6<Hm/< Hx/-/-a O  m'h  ('P $ m'h  0'P , m'h  8'P 4+   !gf+  !g0 m0( k k , m0( Gk $7k  (7k ( 0k 8`. m0( k k . m0( Gk &7k  *7k * 2k :0Fk 40Ck 6p 0r 2@k 8p 0r 2@k :B/+ /</+ /</+ /<	2+ :H//< 2+ 8H//< 2+ 6H//< 2+ 4H//< B/+ a O DN]LNuH?2&o 0>/ 6NU   m 0p 0(  $Kz 0J@gS@g,`R*  !g|`|M $*  !g8p 0+   g,z`(*  !g|`|M ,*  !gp 0+   gzB0. H/ /< 0. H/ /< 0. H/ /< 0H/ /< //< B/* a O 4B0. H/ /< 0. H/ /< 0. H/ /< 0H/ /< *  !gp`p HH/ /< B/a \O 4 m ,"Rp r t 4&- <(,*ǊɎNǊɎ m ,"j p r t 4(- <&,*ɊǎNɊǎN]LLNuH#2./ ,NU m $p 0(  &m (+  !gp`p H m  pAC"Qpf  +    f  B0+ :H$+ @"TҀ//< 2+ 8H$+ < t 4Ԁԁ//< 4+ 6HpЫ @DЂ/ /< 0+ 4Hr 2ҫ <DҀ//< B/a BO , m  "Sp r t ,m ,$n ,l*NB/+ /<	B/+ a O /-  Hm/- ,Hx /+ a O N]LLNuH!2&INU+H+J+k  m"K -/
$@a . $_Jg "mp 0)  $G"G3|   JpDa p%@ p%@ p%@ BB/< B/a nO `   мgLjrg  p]g6Sg(Sg`   gg@Wg  jUgd`  v%n  `  l%n  `  b%n  `XJ g  !`J  !`BJ g   !`4   !`,p f  !`  !`J g    `    A,l6N,@ f @ *  Jo
 *  `p  l" *  Jo *  %@ `p %@ `J lp %@ *   !gB*  !gr
 k $,6 <rŎNŎ5@ `r	 k $,6 <rŎNŎ5@ Br  k $,6 <uŎNŎJgp`pHH/ /< *  !gp`p HH/ /< B/,a O $Jg  Hj </< Hx/a O Hj @/< Hx/a O BB/,
a O %@ J g  BHx /< Hx /<*  !gp`p HH/ /<
*  !gp`p   / /</,Ba $O ,%@ J g>r  k $,6 <sŎNŎJfBHx/< B/a O  Ga  `Hx//-a O p N]LLNuH?2NU+H+J+I mp 0(  &m m+h  m+h ~ |*+ +k (+ v  m4< h  m"m -/
$@a D$_"m3|  `   gSg Sg g`  v'j  `l'j  `d'j  `\B/* /< B/a O Hk </< Hx/a O Hk @/< Hx/a O J g  !`  !A,l6N$@ 
f \ +  Jo
 +  `p  l" +  Jo +  '@ `p '@ `J lp '@  gv + gv gv mp 0(    2Hg|vJCg m,m"n  a ~ gLB/+ /<	"mp 0) &/ /< "m  f
"m ) `p / "m/) /-a 
O   N]LLNuH&INU+H mp 0(  "
Ҁ+A+k ~ Jg f m"Ka 
\Jfp ` T m"J + /
$@a $_Hm/< Hx/
/-a 
O p fd"m)   !g:"k /) Hx /
/-/-a hO "k /) B/
/-/-a LO Hx /+ /
/-/-a O `  |"m)  !g"k /) B/
/-/-a O `*"m)  !g"k /) Hx /
/-/-a O "m)  !fHx /+ /
/-/-a ,O *   g0 m"m,k J g,k ,n  . `MZ /
$@a 	*$_~ N]LHNuH&INU+H mp 0(  ,J~ + gQg`$ k .  !gp`pr   ` k   ` m"Ka .  N]LHNuH#&INU+H mp 0(  ,J+k +k +SHm/< Hx/
/-a 8O >* k <* k 
 mPm ^ mh m R0H m2H m4( Hԁo 40H m2( H m4( Hԁo n 4mrn 6ml0H2. 4H4. 8HԁoV0H2. 6H4. :Hԁo@4n 4;B4n 6;BC . /
$@a $ $_pf  !-n  p`  .   !g  n $mBn &m<0H2. $H4. (Hԁo&0H2. &H4. *Hԁo  !-n  p`Jn ,mBn .m<0H2. ,H4. 0Hԁo&0H2. .H4. 2Hԁo  !-n  p`p N]LHNu(  !gJ g8S p`2`.(  !g& (  Jo
 (  `p  oR p`p NuH&INU+H mp 0(  ,JpAC"Qzx p 0*   fJ fp  ` Hm/< Hx/
/-a O >* k <* k .  !gv0n 4;@0n 6;@C . /
$@a * $_ g  Hn /<	Hx/. a O B/. /<	p 0* &/ /< B/+ /
a O  `b.  !f.  !gR=|   " Na 8    J"k pa nJDg,B/. /<	p 0* &/ /< Hx /+ /
a HO  z  N]LHNuH?&INU+H mp 0(  ,JpAC"Qz x &. Hm/< Hx/
/-a O >* k <* k .  !g   k (  f k h i f  !p` ,0n 4;@0n 6;@C . /
$@a ( $_Hn /<	Hx/. a JO Jf8 g B/. /<	p 0* &/ /< Hx /+ /
a 6O  ` B/. /<	p 0* &/ /< B/+ /
a O  ` ~.  !g
A $+H`.  !gA ,+H mPmH mh m>0H m2H m4( Hԁo"0H m2( H m4( Hԁo:<  k (  f2 k 4( | ig| g`  x
z `  z   !x`  `   k (  f  JEg  n  "c   Na J4 JBg  | k a .+@Jg*Hx /+ /
/-/-a O  m$,*ŎNŎB/. /<	t 4* &//< JEgt`t HH//+ /
a O  `Rn "t 4* ļ   0Hgj   J"k pa ~ N]LHNuH&INU+H mp 0(  ,J~ .  !g"K . /
$@a R. $_  !`p  m"Ka .  !g/. /<	/+ /
a O   !N]LHNuH2&INU+H+J mp 0(  $m,k ~|
 m"K -/
$@a $_*   !g*  !g2* A0@`
2* A0@////-/-a O pN]LLNuH &INU+H mp 0(  ,JJ g n  ,*/,@N~,_Jg V ,*/,@N~,_J g n  ,*/,@N~,_ m"Ka  N]LH NuH&INU+H mp 0(  ,J k >( ,. *pGg Jgp l . S`pJlZz `V .  mp l . S`pڀ .  Jo
 .  `p l .  Jo .  * `z gB//<	/+ /
a  O  k p pN]LHNuN  \N  P0N  8N  lN N dN  LN  PN  PN  
N  DN     ~   |   |   T    @       S P    /
p"E la  @ $_NuH12&HNU+J+I m,h  K"m -/
$@a . $_Jg  p 0+  $G Jp"a  <TA" N$,6ŎN$Ŏ <Qr  N$,6ŎN%@ Ŏ <Rr  N$,6ŎN%@ Ŏ <Sr  N$,6ŎN%@ Ŏ <Ur  N&,6ǎN$ ǎ5B 5|   Jg
$*  oHx//a FO ~  N]LLNuH 2NU+H+J+I mp 0(  &m m+h  m"m -/
$@a $_ <S m,l6N$@ 
g" *  g'j   m,m"n pa  <  m,l6N$@ 
g$Hk /< Hx/-/-a O    !pN]LL NuH/2NU+H+J+I mp 0(  &m m$h p +@xp +@p +@ m h J g m h  h +h `AZ+H 
g  m"m"-/
$Aa $_Jfp ` zJ g  k ,l.N+@Jg
 J"ma Hm/< Hx/-/-a O "m+i +QHm/< Hx/-/-a O JgTHm/< Hx/-a nO Hm/< Hx/-a TO 0-m0-m0-ڑm0-֑m SC M  M "H 0$@&Aa +@L Jg  ma  " Jg  J"ma " >2+ SAgSAg`*2-mSA<G`2-Hp 0DЁ<-@`<-0-Hr 2* >t 4* :DԁԀ:-BJgSE J"mp 0) a  J"mp 0) a v Jpa t"Jp 0r 2,l.N"J m/	/ -/ @a 4"  _ ,l. _"_Nľmd | J,mp 0. a 0+ S@gRS@g`  0-H2-HҀU/2-H0-HЁUr 2DҀ/2-H/2-H//
a O ` 2-H0-HЁU/ p 0S/ 0-H/ 0-H/ /
a O 0-H2-HҀU/2-H0-HЁU/ 0-H/ p 0r 2Ҁ//
a \O `  2-H0-HЁU/ 0-H2-HҀU/2-H/2-Hp 0Ё/ /
a O `P`N J"mp 0) a 0-H2-HҀU/2-H0-HЁU/ 0-H/ 0-H/ /
a O Jg"m,l.N`x  N]LLNuH2NU+H+J+I mp 0(  &m m$h ~ +   !g  +k  SC M  M"H 0$@&Aa +@L Jgd J"ma " <+k  SC M "M H 0$A&@a +@L Jg$ J"ma  > Gd`> JC pa  @7G k   `>+ ?* :U//-/-/-a O pN]LLNuH &INU+H mp 0(  ,JJ g"n  ,&/,@NN,_ m"Ka  N]LH Nup Nu  %ld N  lN N  LN  PN  \N  >N  8N N  
xN  lN  N  N  XN  
   B   b   b         T    /
pE la & @ $_NuH2NU+H+J+I m$h  m"m -/
$@a . $_Jg  "mp 0)  &G <!r  J,l6N& <"rd J,l6N'@  <#r  J,l6N'@  <%r  J,l6N'@ J g + "+ a n'@  <$ J,l6r N" Jg7|  "+ l,& 'F `"+ fR "+  o'k  `"+ l'S  Ga ^ N]LLNuH2&INU+H+J mp 0(  $m+k +m,* z  m"K -/
$@a $_`T !g
SgSg$`@  f8$ z`0  f(%n  z`%n  J g * "* a f%@ zA,l6N,@ f * l.$ %G ` * fR  *  o%j  ` * l%R JEg m"k pa  g0B/* /<#"mp 0) &/ /< B/+ /-a O  pN]LLNuH;2NU+H+J+I mp 0(  &m m$h p +@p +@ m h J g m h  h ,h `MZ 
g  m"m"-/
$Aa B$_Jfp ` Hm/< Hx/-/-a 4O "m+i +QHm/< Hx/-/-a O Jg4Hm/< Hx/-a O Hm/< Hx/-a O JfJg00-R@m0-R@m"- T@m"- T@m Jp a p 0+    f 2-H$,6J l(+ D& ` + ŎNpŎ$ r&,6(+ Jl(+ D `(+  ǎNdǎЂ$+ Jl$+ D"`$+ "$,6ŎNd, Ŏ$+  m4-H0-HЂ. S` + n>-H`
0-H. ކ0-H2-HҀn2-H0-HЁ. S0-Hg: Jp 0. 
a 0-H2-HҀS//2-H/2-H//
a pO 2-H0-HЁSg  Jp 0. a D0-H2-HҀS/2-H0-HЁS/ 0-H/ //
a O ` 2-H$,6J l(+ D& ` + ŎNpŎ$ r&,6(+ Jl(+ D `(+  ǎNdǎЂ$+ Jl$+ D"`$+ "$,6ŎNd, Ŏ$+  m>-H`.$+ n4-H0-HЂ. S`0-H2-H. ށ2-H0-HЁn0-H2-HҀ.S2-H0-HЁSgD Jp 0. 
a  0-H2-HҀS/2-H0-HЁS/ /0-H/ /
a  O 0-Hg: Jp 0. a  /0-H2-HҀS/2-H/2-H//
a  O pN]LLNuH&INU+H mp 0(  ,J~# g`
 k   ` m"Ka  .  N]LHNup NuN  lN pN  PN  PN  \N  8N  N  lN  X                %r   *    #     %    (V    &    *$  S * _ +L    /
p&E la V @ $_NuH'2&INU+H+J+k ~  m"K -/
$@a , $_Jg x"mp 0)  $F"F3|   Jp&a rp%@ BB/< B/a `O `   мg6j
gRr	g  d g`  rSgSg Ug``  b%n  `X%n  `P%n  `HJ g  `:  `2p f   `"   `J g  `  `>. A,l6N,@ f V *  o** %j  %E  *  l%j   *  rҀ%A JGf  Br  k $,6 <ŎNŎJgp`pHH/ /< p 0*   gp`p HH/ /< B/,a O $Jg  Hj /<         H        ^                                                                                                                                                                                                                                                                                                                                                                                                                       $                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        $     Hx/a O Hj "/< Hx/a O ``  BHx /< Hx /</* /<Hx /<p 0*   gp`p HH/ /<
p 0*    gp`p   / /</,Ba hO <%@ J g"BHx/< B/a @O  Fa  `Hx//-a 6O p N]LLNuH?2NU+H+J+I mp 0(  &m m+h ~ |*+ +k +k v  m4< h  m"m -/
$@a 
$_"m3|  `    g  g  Sg  Sgh`  Jg  B/* /< B/a 
fO Hk /< Hx/a 
ZO Hk "/< Hx/a 
BO J g  `<  `4 *  g*'j  `" *  g'j  ` *  g'j  A,l6N$@ 
f 4 +  o(+ 'k  'D  +  l'k  ` +  o'k   +  rҀ'A  + f
 + gB/+ /<B/+ a 	`O v gv mp 0(    2Hg|vJCg m,m"n  a 	8~ gLB/+ /<"mp 0) &/ /< "m  f
"m ) `p / "m/) /-a O   N]LLNuH'0&H$Ip 0+   gp`p HzJfz <.+  +   g
 + . SB//<	0* H$+ ""t 4ԁDԀ//< 4* H"+  r 2ҀD҂//< 2* Hҫ "p 0Ё/ /< 0HЫ r 2Ҁ//< B/+ a O 4LNuH!2&INU+H+J mp 0(  "-Ҁ+A+k  mpAC"Q~ Jg 4 m$m"Ka Jfp ` Hm/< Hx/-/-a O p f  "mJgxB"m0) H/ /< "m0) H/ /< "m0) H/ /< "m0H/ /< B"m/a O , m$m"Rp r t ,k $n ,l*N,mt 4.  f, m"ma /+ Hm/+ Hx "m/) a O "m)   g( m"m,k J g,k ,n $n `EZa ~ N]LLNuH&INU+H mp 0(  ,J~ g`
 k   ` m"Ka ".  N]LHNuH'&INU+H mp 0(  ,J+k +k +Sp 0.   gp`p HHm/< Hx/
/-a O >* k <* k 
0H m2HҮ b  0H m2( HҮ "b  0H m2H m4( Hԁ c  |0H m2( H m4( Hԁ "cX m4HԮ 0E2@;A m0( HЮ "R@2@;AC". /
$Aa 2$_rf  -n  p`p N]LHNuH&INU+H mp 0(  ,JpAC"Qp 0.   gp`p Hx&. p 0*   fJ f   `  Hm/< Hx/
/-a O >* k <* k .  g   m0HЮ E2@;A m0( HЮ "R@2@;AC . /
$@a 8( $_ glHm/<	Hx/. a O .   g . S+@ . Э-@  g*B/. /<p 0* &/ /< B/+ /
a O   N]LHNuH?&INU+H mp 0(  ,JpAC"Qp 0.   gp`p Hx &. Hm/< Hx/
/-a NO >* k <* k .  g J k (  f k h i f  p` ( m0HЮ E2@;A m0( HЮ "R@2@;AC . /
$@a ( $_Hm/<	Hx/. a O $-.   g . S+@ . Э-@ Jf6 g  B/. /<p 0* &/ /< Hx /+ /
a PO  `hBJgp ` . / /<	B/. a O B//<	/+ /. a O B/. /<p 0* &/ /< B/+ /
a O   N]LHNuH&INU+H mp 0(  ,J~ .  g"K . /
$@a . $_  .  g B/. /</+ /
a ^O    N]LHNuH 2&INU+H+J mp 0(  $m,k  m"K -/
$@a $_Hx 
Hx //-/-a 4O pN]LL NuH &INU+H mp 0(  ,JJg V ,*/,@N~,_J g n  ,*/,@N~,_ m"Ka  N]LH NuH&INU+H mp 0(  ,J k >(  k <( *. (pGg
 oS` lRg"p 0  fB//</+ /
a  &O  k p pN]LHNuNqN  lN N  P0N dN  8N  LN  PN  PN  \N  
N  D          6h   8   8   ;   ; _ <    /
p*E la  @ $_NuH:&II  pf  $k J g
 k ,h `MZ k ~P k |h  k :( WE k 8( p %@ |    Jp 0. a  Jp a p 0/ p 0V/ p 0S/ p 0W/ /
a O 0+ S@g[@g` Jp 0. a Z` Jp 0. 
a Lp 0/ p 0/ p 0/ p 0/ /+ a 8O p `pL\NuH?2&o (>/ .</ 2:/ 68/ :$o <6/ BNU Kp 0* a "Kp 0r 2,l.NrG;A;DrG;A2SA;ArG;ArF;ArG;ArF;ArG;ArF;ArG;A;F2[A;A;F"KpA,l.N"Kp 0t 4"U,l.N"Kr 2pЁt 4"U,l.N
"Kp 0t 4"U,l.N"Kr 2 St 4"U,l.N
"Kp 0r 2,l.N"Kr 2 Sr 2,l.N
JCf\"Kr 2 Ur 2,l.N"Kr 2pЁr 2,l.NrG;A2SA;ArG;ArF;A"KpA,l.N Kp 0* a r"Kr 2 Yt 4r҂,l.N2WA;ArF;A2UA;ArF;A2UA;A2SA;A;E2SA;A"KpA,l.N"Kp 0t 4"W,l.N"Kr 2 St 4"W,l.N
"Kp 0t 4"W,l.N"Kr 2pЁt 4"W,l.N
"Kp 0t 4"S,l.N"Kr 2pЁt 4"S,l.N
JCf6"Kr 2 Wt 4"S,l.N"Kr 2 Wt 4r҂,l.N
`8 Kp 0* a 6"Kr 2pЁr 2,l.N"Kr 2 Ur 2,l.NN]LLNuH?2&o (>/ .</ 2:/ 68/ :$o <6/ BNU Kp 0* a "Kp 0r 2,l.N"Kp 0r 2,l.N
"Kp 0t 4"U,l.NrG;A2UA;ArG;ArF;ArG;ArF;ArG;ArF;ArG;A;F2[A;A;F"KpA,l.N"Kp 0t 4"U,l.N"Kr 2 Ut 4"U,l.N
JCf4"Kr 2pЁt 4"W,l.N"Kr 2pЁt 4r҂,l.N
 Kp 0* a "Kr 2 Yt 4r҂,l.N2WA;ArF;A2UA;ArF;A2UA;A2WA;A;E2WA;A"KpA,l.N"Kp 0t 4"S,l.N"Kp 0t 4"S,l.N
"Kp 0t 4"W,l.N"Kr 2pЁt 4"W,l.N
JCf6"Kr 2 Wt 4"W,l.N"Kr 2 Wt 4r҂,l.N
`@ Kp 0* 
a 
"Kr 2pЁt 4"U,l.N"Kr 2 Ut 4"U,l.NN]LLNuH :&II  NU+J Sg*Sg`   k Jk g `  k  p `  $k J g
 k ,h `MZHm/< Hx/-a 
O k  gk  f:0-/ / k ?( U k ?( U k ?( U k ?U/
a O `80-/ / k ?( U k ?( U k ?( U k ?U/
a O p `pN]L\ NuH2&H$INU+R~ "*  Xa X%@  J  g $` p 0 j  ,HBp 0 fp`p HH/ /< p 0+   gp`p HH/ /< Hx /</* /< /* /< /* /< /* /< Hx Jj (g <`p/ /* $Jj (g < Q`p/ Hx 	Jj (gp` </ Hx Jj (gp` </ Hx Jj (gp` < / Hl*Jj (g < `p/ HlJj (g < `p/ Hx /< p 0/ /< p 0+ &/ /< Jj (gp ` * / /< T m//< UB/,a pO ,Jg  BJj (gp `pHH/ /<Jj (gp `pHH/ /<p 0,j  //<  Q/a O  Jg2Hz//<  )p 0,j  /a pO JgRGX` ``p 0,j   V,l*N~```,mJf p`p N]LLNuH!2&INU+H+J+k  <",6 m/,AN @,_"fp ` & < m$,6r ŎN" ŎJg <A m,l6N,@ gp -@  m"K -/
$@a . $_Jg "mp 0)  $G"G  "G   p%@ `  z мOg2j@gFSgJSgNQg2`VSgSg
WgSg@`D%n  `<$ `6%n  `.5n  (`&%n  `%n  `%n  `%n  `%n  $A,l6N,@ f vp gp gp%@  Ra %@ J lJj (g%j  `p %@  *  cJj (gp %@ `%j   G"Ja J@g   < k ,l6N,@ g6p  b. .  b$BHx /< B .  j  /a <O  < k ,l6N,@ g4p  b, .  b"BB/< B .  j  /a O  `Hx//-a O p N]LLNuHNU+H+I mp 0(  &J m+h .+ << j 8* & m"ma j &g8z `*Bp 0* &/ /< B0H k  /a ZO RE0H c < ",6 m/,AN @,_"g:J $g4z `&B/+ $/< B2H k  /a O RE0H c      < m,l6N,@ g>'n  J lJk (g'k  `p '@  +  cJk (gp '@ `'k   g  BB/<  m/(   k  /a fO BHx /<  m/(  +  k  /a <O B/+ /<p 0* &/ /< B m/( /
a O  p 0*    2HgNz `@Br 2*  gr`r HH//<  m/( 2H k  /a O RE0H c < m,l6N,@ g<p  b4 .  b*BHx /<  m/(  .  k  /a XO  < m,l6N,@ g:p  b2 .  b(BB/<  m/(  .  k  /a O pN]LHNuH&INU+H mp 0(  ,J~ g`
 k   ` m"Ka .  N]LHNuH &INU+H mp 0(  ,JJ  g n  a P m"Ka tN]LH NuH&H. ,*JlfJg,S`   k   Pp 0(   f `  SJl`  Jk (g   +  k   P(   g Kr + a`  d`^ + `Z`V d*R`  k   Pp 0(   f `2R c`&Jk (g  k   P(   g Krp a >``p ` LNuH&INU+H mp 0(  ,J k >( ,. pGg N ra , ` N ra ,  gB//</+ /
a  <O  k r 2* & pN]LHNuNqN  lN  N  XN  8N  lN  P0N  LN  P   ?<   @   @   D`   C    A    C    C    C     C  S D  / C    /
pE la : @ $_Nur "P`f 	`
"QRJfp NuH 2NU+H+I+J mp 0(  &m+m``bg`VJ gJpa N&$@ 
g6%n  +  gA"J ,&/,@N,_`"A"J ,&/,@N
,_`   `   A,l6N,@ fN]LL NuH0&H+  gp`p  HH$S`&B f `p/ /< B/* a 2O $RJfLNuH!2&HNU+J+I m,h  K"m -/
$@a . $_Jg  p 0+  $GAa jp %@  G   p %@ r  N$,6 <cŎNŎJg  r  N$,6 <dŎNŎJg   K"G /
$@a f$_  *   fN <ar  N$,6ŎN%@ ŎA * a %@  Ja  Ga BB/< B/a $O  `Hx//a O p N]LLNuH &INU+H m,P`B/+ //
/. a O ,VJfN]LH NuH2&INU+H+J mp 0(  $m+k +m~ ,* x  m"K -/
$@a $_"m     f  +   g  p `  `    gP   gYgD  igN`lJ g  `  J gRB/. /< B"j /) a O `2 J"Np /
$@a $_` %n  ** A . a %@  Ja ^xA,l6N,@ f bJDg.g* m"k pa B//<aB/+ /-a O  N]LLNuH2&INU+H+J mp 0(  $m,k  k J g k  h +h `AZ+H~  g ` m"K"-/
$Aa $_Jfp ` DJ g :Hm/< Hx/-/-a O B*  gp `pHH/ /<"m0) H/ /< "m0) H/ /< "m0) H/ /< "m0H/ /< B"j /) a vO 4*  gb N"mp 0) a ~ m0( H m2( HҀS/ m2H m0( HЁS/  m0( H/  m0H/ /a 6O /+ //+ Hx  j /( a O BB/<B j /( a O ~ N]LLNuH&INU+H mp 0(  ,J~a g`J g
 k   ` k p ` m"Ka z.  N]LHNuH&INU+H mp 0(  ,J~J g<"K n  ( /
$@a h. $_B"n "i p 0) &/ /< /
/-a dO  N]LHNuH 2&INU+H+J mp 0(  $m`Hx/. a  P Na HLA,l&N,@ f m"K"-/
$Aa  $_N]LL NuH2&INU+H+J mp 0(  $m;|  ;|  ~ |  m"K -/
$@a  \$_,R`4BHmHm/+ /+ /. a  rO md>-md<-,VJf"k Q"k QpN]LLNuN  P0N  lN  LN  PN  PN  \N  lN  XN  8N  DN  S  H   I              F*   HX   GR  H  J4  J  K  Lb  L  L    /
"lp2Ea H @ $_NuH2NU+H+J+I m+h | m"m -/
$@a  . $_Jg  "mp 0)  &G Kp2a [|Aa c,l&Nf'@  J  g  |  `L мg&j
TgSg`6Wg&Sg`,'j  `$'j  `'j  `j  `J g7|  A,l6N$@ 
f ,m n C,l6N, 7F A p ,lBN'@ &J &g `Hx//-a  O p N]LLNuH 2NU+H+J+I mp 0(  &m`2.   f n  ,B/,@N,_ n  ,B/,@N,_ Na E:A,l&N,@ fJ &g.+   1g k &p ",B/,AN,_ k &",B/,AN,_+k  Jg<`"J",&/,AN,_ m",&/,AN$@,_"
f m",&/,AN`,_ m"m -/
$@a " $_ N]LL NuH2&INU+H+J mp 0(  $m~,k  + LgSg` j  p( ,`, *` m"K -/
$@a . $_ N]LLNu"P` f 	`"QJfp NuH2NU+H+J+I mp 0(  &m~ +   1g k &p ,lBNA"m ) a,@ f  pa Cz$@ 
g  ,m/. /+  ,m/. a ^DO %@ J g  ,m%n  ,m%n  *   f k &"j ,lBN j ,lBNJf.A"J,l&N
p '@ *+   1g k &p,lBNp`^`p'@ **   f j ,lBN j ,lBN`p'@ * Ja B`p'@ *`p'@ *+   1g k &p,lBNp N]LLNuH2&INU+H+J mp 0(  $m~ *   1g j &p ",B/,AN,_A + a L,@ gD"N ,&/,@N,_.   f n  ,B/,@N,_ n  ,B/,@N,_ Na B~*   1g j &p",B/,AN,_ N]LLNuH2&INU+H+J mp 0(  $m~ *   1g j &p ",B/,AN,_A + a ,@ g".   f n  ,B/,@N,_   ~*   1g j &p",B/,AN,_ N]LLNuH2NU+H+J+I mp 0(  &m~ +   1g k &p ,lBNA,m . a $@ 
g *   g k &"j ,lBN   ~+   1g k &p,lBN N]LLNuH&INU+H mp 0(  ,J~ .   1f n &p",B/,AN,_   1~ N]LHNuH&INU+H mp 0(  ,J~ .   1g n &p ",B/,AN,_   1~ N]LHNuH2&INU+H+J mp 0(  "-Ҁ+A~ "m i  ,l&N$@ 
gbJ g,k  J",B/,ANv,_,J g,k  J",B/,ANj,_,J g,k  J ,B/,@Np"@,_,"J,l&N`~ N]LLNuNqN  lN  LN  ^             O   P^   P^   RZ   O  S>    /
"l <  Ea  @ $_NuH2. " X"<  ,l&NT$@&J"g| `
$   RPbr $ LLNuH &H g
"K,l&NNLH NuH02&H$I <  K,l6N,@ g%n  <  K,l6N,@ g%n  <  K,l6N,@ g%n  <  K,l6N,@ g%n  < 	 K,l6N,@ gA"n  <   a Tf <  K,l6N,@ gA "n pla TB < 
 K,l6N,@ gAl"n pla TAlCa S < / K,l6N,@ gJ g|   `F <  K,l6N,@ g.   g|   ` Al"A $&<    ,"/,@N,_LLNuH &INU+H mp 0(  ,JJg na ^ m"Ka N]LH NuH2&H,INU+J K"N -/
$@a . $_Jgfp 0+  $G  |   |  l|  lp%@p%@%|  =%|   p %@ K"N"/
$Aa"$_JgHx//a hO ~  N]LLNuH2NU+H+J+I mp 0(  "-Ҁ+A m+h ~ | mJg"m i ,6/,@N&@,_`A ,6/,@N&@,_ g  m ,6/,@N+@,_Jg R+K`R ,6A/,@N @,_ f+m`.  K",6/,AN+@,_Jg m!j  r$`RA",6/,AN$@,_"
fR a j+@Jg  +K+m`A,l6N,@ g,-j  A ,6/,@N$@,_ 
f+m`A,l6N,@ g,-j  A ,6/,@N$@,_ 
fA,l6N,@ g*p ,"m ia  m!m m"ma 
| ` ma  m ,6/,@N,_ K ,6/,@N,_ N]LLNuH2&INU+H+J mp 0(  $m~ + мggRjXgSg"Sg,Sg4`fSgDSgJSgP`X k  `   k C  `  r k Cl `d k Cl `X k  `N k  `D k  `: k  `0Jg( +  j,l6N+@Jg,k  m, `~  N]LLNuH12NU+H+J mp 0(  &m~ BHkl/< 
HS/< 	Hk /< /+/< /+/< /+/< /+/< Ba SO @$@ 
g  J"k",>/,AN,_J@g A"j  <   a OLA "j pla O>Al"j 4pla O0Al"j  <   a O < / k,l6N,@ gJ g.|   `& <  k,l6N,@ g.   g|   Al"$* &<    ,"/,@N,_ <  k,l6N,@ gA -H  < 	 k,l6N,@ g-K  < 
 k,l6N,@ gAl-H `~ <  k,l6N,@ g
0* H-@  <  k,l6N,@ g
0* H-@  <  k,l6N,@ g
0* H-@  <  k,l6N,@ g
0* H-@ 0* H'@0* H'@0* H'@0* H'@ J ,>/,@N,_`~ N]LLNuN  ^N  lN  L               @           \   _   _   eX   f     k     o    p    r    u  S v2 _ wD  xF  x  y  z  z  z  z   | ! }& ' }@ " }v # ~" $ ~" % ~r &     /
 <   E la *` @ $_NuH "( *~ $h Jfp `"h `
f`"QRJf 	LNu/
"h $"( *$h Jfp `4d`
f`&"QRJf`c`f`"i SE  f 	$_NuH!&H. NU+I'J fJ $f'J $ SgUg"`    eA "J ,&/,@N,_`  "k Jf`  ,k  J >f j "n a KJm4`F`0+j +n  k >C"-$,6/
$AŎNŎ$_Jm` f` ,n `` v  eA "J ",&H "$@,ANLD `A "J",&/,AN
,_N]LHNuH#2&H,I. NU+J|;|  g  `  ~pa 4,$@ 
gnJ 6g(+V k 6C"-$,6/
$AŎNŎ$_%@ `  Va JHRa 3%@ J g
 j "Va J>J g K"m a zR .`|  Ja 3XJf 0HN]LLNu/"( *J 2ft!B 2 *d" `0$( *Ԩ 2b $( 2SDԀJo$( 2SDԀ"`r ` ` $Nu"h `)   g     "QJfNu"h `p 0)    f i  "QJfNuH?2&H,INU+J+@p +@J Fg+k F`+k J g  Na 'f$@ 
g J g n +h `AZ+HJg& m ,./,@N+@,_Jg
 J"ma '  e + *c  + *+@ K -a '@ $'m * -찫 2e"  eHx /
/Hx /-a &O `  J0+ H2+ 
H"J4+ H// //	6+ 
Hx 8+ ( "-a F( ؃&8+ H:+ H| <+ ( "-a Fj, D܅*,<   .,."_"  _ώNώ~ +G`8.+ *ޭ//. //-J g
 n  h `AZ//
a O R.-辭e` $.+ *d .- *+G K -a '@ $'m * -찫 2e"  eHx /
/Hx /-a %O `   J0+ H// 2+ 
H$r 2+ ( "-a E~" ҂"J4+ H6+ 
H8+ H//	:+ H| <+ ( "-a EL, D܅*,<   .,."_"  _ώNώ~ +G`@.+ 2ޭޫ *//. //-J g
 n  h `AZ//
a O R.-辭e  eJg"m.,.ώNώ J.,*ώNώ` K -a r'@ $'m *N]LLNuH;2&HNU+J+I m,h ~ | K"m -/
$@a $l. $_Jg p 0+  $G J <   a D <r  N$,6ŎN%@ *Ŏ <r  N$,6ŎN%@ FŎ <r  N$,6ŎN%@ 6Ŏ <r  N$,6ŎN%@ :Ŏ <r  N$,6ŎN%@ >Ŏ <r  N$,6ŎN%@ BŎ <r N&,6ǎN$ ǎ5B rA a Llp 0* d NC",6/,AN$ ,_5B d  e Ga #fBB/< //a JO Bt 4* d gt`t HH//<tHx /<s <
r  N&,6ǎN$ ǎ//<
 Gt 4( &//< B/,.a GO ,%@ J g  Hl>//<  )/* a "O $ Jg  Bt 4* d gt`t HH//< t 4* d  gt`t HH//< B/,a GO $Jg  Hj j/< Hx/a "HO Hj n/< Hx/a "0O  <r  N&,6ǎN$ ǎJg| J/ <r &(,6ǈɎN$ ǈɎ"B $ _Ŋa Ŋ `Hx//a !O p N]LLNuH2NU+H+J+I mp 0(  &m m+h .+ *, m8< h v  m"m -/
$@a !p$_`  м&g @j.\g  j:gH   g  ` ZWg *Ug :` JrЁg 
jTg Sg  ` 0Sg Sg `  B/* /< B/a !O B/* /< B/+ a  O Hk j/< Hx/a  O Hk n/< Hx/a  O J g
  e`   e` Hk J/< Hx/-/-a  O ` ,*  + . 2r d
 + . 2`p d ^ + . 2r d + . 2, ` B| ` < *  .e K + .Sa , ` K * a , v` ** pf Ka v`  .e + .S*  K a '@ V+k VJg 'E Z mp 0(    g p 0+ d   f  m    m  B/+ Z/< m/( /< mp 0( &/ /<  m  f
 m ( `p /  m/( /-a FO (v` :p 0+ d  f` *p f Ka 0v`  * XgFjVg  SgfSgZ`  SgSgSg`  z `  *+ .S`  J Vf`.zګ Z`  J Vf` + ZSJo + ZS* `  z `  *+ *`  J Vf`*+ Z *c*+ *`  r  2RJo  2R* `Xz `TJ Vf`*+ Z + 2SЫ *c + 2S*+ *ڀ`, + 2SЅ"+ .Sc"+ 2S҅*`"+ .S*`**  .e"+ .S* K a '@ V+k VJg  'E Z mp 0(    f  p 0+ d   f  ~gg Ka  m h  B/+ Z/< m/( /< mp 0( &/ /<  m  f
 m ( `p /  m/( /-a RO (vg@g8 K a , `,`*J g  e`  e`J g  e`  eA,l6N$@ 
f j,mp 0.    2Hg  evJCgR m,m"n pa g   K,m"n  "-/
$Aa $_B//<	"m/) /+ a tO `XgT < ,m n ,l6N"@ 	fB//<	"m/) /+ a 4O  K,m"n  "-/
$Aa V$_pN]LLNuH&INU+H mp 0(  ,J~| + м!g"jrgJSg`XUg.UgF`N k   F`PJ Vg k "n V  `< k p  `2J Vg,. Z k  `  k   *` k   .` m"Ka ^.  N]LHNuH NU+H+I mp 0(  &J;| `:J 6g&+n  k 6C 
",6H "$@,ANLD ` n a & Na &A ,l&N,@"fJ gHx/+ a PJgHx/a P m"ma "  N]LH NuH/&H,I. NUJ Fg+k F`+k Jzp 0+ d  gp`p HJ Bgpj :@0. Hr 2DҀp 0* :Aa :b'@ 20. Hr 2DҀp 0* :Aa :<<  + . 2b| /-Hx Hx HmHm/
a &O m d;| 0. Hr 2-DҀ0A7@ 7n  7m 7n  2Hҫ jD7A 2. Hҫ np 0Ёr@7A 
p 0-$+ j"Ҁp 0A2. @7A "+ n r 2ҀTA0. A7@ JFg   Jp 0a |0. HЫ nr 2Ҁ/2H0. HЁ$+ j"t 4-ԁDԀ/4. Hԫ n/4Hԫ j//
a 0O 4. H0. HЂ$+ n"DҀ/2H0. HЁ$+ j"t 4-ԁDԀ/4. H0. HЂ$+ n"t 4ԁDԀS/4Hԫ j//
a O J Bgtj :k 
tj :k B4+ H//< 4+ H//< 4+ H//< 4+ H//< B/+ a 2O ,$+ . 2Jo
$+ . 2`t  *d $+ . 2Jo$+ . 2'B *`t 'B * K + *a f'@ $B/+ 2/</+ ./</+ */<	B/+ a O $B0. H/ /< 0. Hr 2-DҀ//< 2. H//< 2H//< B/a jO ,7j : (N]LHNuH2&o $o  ./ (NUx J a ,@pAC"Qp 0* d  fp 0.   f`  g J :g  A+H+m (+n ;j 0* j S@;@  *r 2+ :a 6" 0* 
A;@2-k :SA;A m  (   gr 2.   gr`rH;A`r 2.   gr`r H;A j :C"-   ,6H "$A,@N+@xLD Jxg  `
`  +n x+j +j |  *r 2+ :a 6 2 m~;k :r 'A |   r 2.   g
 m 2( 
` m 2( /Hm|/- /-x/a .O  m  (   g:+j +j |" *p 0+ :a 5m~;k : KC| - /
$@a $_  N]LLNuH#2NU+H+J+I mp 0(  &m m+h p +@J Fg+k F`+k J m h J g m h  h +h `AZ+HJg D m$m"ma Jfp ` ,Hm/< Hx/-/-a O Jg, m,l.N+@Jg,m+n 4 m"ma z K"m$m,m0. a $mp fHHx /-$m/* Hx /+ a BO  m"Sp r t ,m,n $n ,l*N  e` Hx /-,m/. Hx /+ a O Jg m"ma J Bg  t 4+ d gv+m m h +h t +B;k 4+ k SB;B mth 0+ 
B;@4-H mp 0( :Ђr@;A;|   k B$mC,l6N.+ *| `:/,m,n /. //-/-/-a O Jg m"ma RR 2d .e"m)   g4"m+i +QTmRmpk mUm mC$ma   eJg m"ma "m,l.NpN]LLNuH&H. 0+ 
Ho,+ *S`:0+ 
H2+ HҀSl
,+ *ܫ 2`2+ 
HD҇p 0+ (Aa 2v, ܫ *Jo `p LNuH2&H.  K + ^a $@ K a ,@|  ^dDJk bfp 0*    f  j  |`*   g     |f0H`L$j ``@Jk bfp 0*    f  j  |`*   g     |f0H`$R`0HLLNuH'&INU+H mp 0(  ,J+k +k +Sz >* k <* k 
 m"Ka Drf  r0n ;@0n ;@C . /
$@a Z* $_pf  e`:n m40H2. H4. Hԁon 
m0H2. 
H4. Hԁoz N]LHNuH?2&INU+H+J mp 0(  $mpAC"Q|** ZJ fp`  m0( k ;@ m>( k *  eg00-ސj ;@0j ;@C"* /
$Aa x$_ ` "mp 0)   fp 0* d   fp 0* d  gp` d J0Ha R%@ R * R .d H J * Ra %@ V,j V g .%j R Zp 0* d  f Ja `>p 0* d  f k p 0( rf Ja .   g5|  b`5|   b%j R ^Jj bfA tC | ,*/,@N,_ n  `f*  egX RfDA xC  ,*/,@N,_"* |$* x&* (,* * tɎNɎJ@f"     `     ` n  B/* Z/</. /<"mp 0) &/ /< Hx /+ /-a O ( m"k pa |  N]LLNuH?&INU+H mp 0(  ,JpAC"Q;|  | z (. *&. *.  eg ` 0* k ;@>* k .  eg00-ސn ;@0n ;@C". /
$Aa J$_ `  N0Ha R$  .e$. .S k (  f d Rg   *e   . *Ю 2c  -B R N a r-@ V+n VJg  z-B Zp 0. d  f Na | m h  `
 N a 2< JFg J"k pa B/. Z/<"m/) /<p 0* &/ /< Hx /+ /
a FO ( k 0( | ig^| g` z
A tC | ,*/,@N,_B/. Z/<"n V/) /<p 0* &/ /< B/+ /
a O (` :zB/. Z/< n V/( /<p 0* &/ /< B/+ /
a O (`  `   k (  f  괮 Rg  -B R N a -@ V+n VJg  -B ZcS` Ю 2bR` `  p 0. d  f Na | m h  `
 N a < JFfgp J"k pa g& N"k  a $B//<	/+ /. a O B/. Z/<"m/) /<p 0* &/ /< Hx /+ /
a O ( N]LHNuH&INU+H mp 0(  ,J~ .  eg"K . /
$@a . $_  e` m"Ka ,.  N]LHNuH2NU+H+J+I mp 0(  &m m$h J Fg+k F`+k J m"m -/
$@a 
$_BHmHm/
"m/) /+ a 
O Jg  m,l.N,@ g+j 4 J"Na 
v0* : r~@<* : J Bgpj :@mmc;G g J"ma 
8"N ,./,@N,_/-/-/-/-/-a 
jO pN]LLNuH2&INU+H+J mp 0(  $m k >( | ** *(v *   egFpGgJgS` * . 2cRgB//</+ /-a 	O  k p `  x,j `.   gv`,VRJfJCfBB/</+ /-a 	jO `4pGgJgS` * .ScRB//</+ /-a 	4O  k p pN]LLNuH&INU+H mp 0(  ,J  e N"k  + a > H  e  e J"k pa  N]LHNuH2&INU+H+J mp 0(  $m~ +k p +@p %@ f  e JC"- + /
$Aa n$_< H,j fp .f`,p f
.* .S``p f~ `,j ~ `n ffd    e+  gB//</+ /-a O `<+   gB//</+ /-a O ` m"k pa `,VRJf  e N]LLNuH 2NU+H+J+I mp 0(  &m;|   e`6J 6g"+j  k 6C,l6 -/
$@N$_` j a  Ja A ,l&N$@ 
fp '@ *'k * .p '@ $p '@ Vp '@ Zp '@ f  eBB/<,mp 0. &/ /< B,m/. /-a O   m,m"n pa pN]LL Nu/&h ` f `&SJfp &_NuH2&INU+H+J mp 0(  $m~   e  gSgLSg  Sg  ` J .g +   g ,j `.   g.. `  ,VJf`   j .( `  J .g  +   g(,j  .   g.. `   f`  ,n ``   j  .( `   J"k a ,@ g  |  g  t+   g,V`.   g.. `X,VJf`P"V.) `H J"k a ,@ g8 g2+   g",n .   g.. ` f`,n ``"n .)   e N]LLNuH2NU+H+J+I mp 0(  &m~   e K,m"n a F$@ 
g  "J,l&N Vfp '@ Vp '@ Zp 0+ d  f2BB/< mp 0( &/ /< B m/( /-a O  J 6g*;| +j  k 6C,l6 -/
$@N. $_`
 j a ~ Ja S .  e m,m"n pa `  e N]LLNuH &H,I J"n pa <LH NuH &INU+H mp 0(  ,J  e J"k pa N]LH NuH 2&INU+H+J mp 0(  $mJ .g  z  eAa ,`A"N ,&/,@N
,_A ,l&N,@ f` J"mp"/
$Aa z$_A,l&N,@ f  e  e m"k pa ^pN]LL NuH &INU+H mp 0(  ,J  #gSg
`  e`  e J"k pa pN]LH NuH2NU+H+J+I mp 0(  &m~ |  mJ f$k V` K,m"n a $@ 
g B  e"m ) JgSg$SgPSgn`   g  "j +i ``  t  gl+R"J,l&NA "J,l& -/
$@N$_~`B g<"J,l&NA "J,l&N~`   g"J,l&NA "J,l&N
~Jg    e+k `  xff*   g'F Z  eB//<,m/. /-a O B//<,mp 0. &/ /< B,m/. /-a O   `,m+VR,mJf  e N]LLNuH2&INU+H+J mp 0(  $m~ J gJ fp `    e J"k a H+@Jg  J 6gp;| +k  j 6C -,l6/
$@N,@$_ g  ;| +k  j 6C -",6H "$@,ANLD "m#N "m  .`> k a "&" R a ,@ g& N"k a " k a  m!N  m  .  eJg m"k pa  H N]LLNuN  ^N  N  >N  8N  lN  N  LN  P0N  \N  PN  PN  N  lN  XN  
N  DN  SN  H 2ȓ$lp*r ,l*NZ&@"gM'N  LL NuH2&HNU+I+m~  m ,6/,@N'@  ,_J  g  p 0+ (   f  `
fRA ,6/,@N$@,_ 
fR a ː'@ $J $gH+m+k $`fA,l6N,@ g, A ,6/,@N$@,_ 
fp`p`p N]LLNuH 2&H$INU+k $`JgHn /Hx/a O A,l6N,@ fB/+ $Hx/
a O N]LL NuH/NU+H+I mp 0(  &m+k  2+ H J$,6 < ŎNŎ> 2+ H J$,6 < ŎNŎ< 2+ H J$,6 < ŎNŎ: 2+ H J$,6 < ŎNŎ8 Hm/< Hx/-/-a :O JgbC ,./,@N:,_Hx HmHmHk Hm/-a O 0+ HD@0+ HD@0+ HDk @0+ HDk @7G 7F 7E 7D `>  gUgUgUg `&0H-@ `0H-@ `0H-@ `0H-@ A,l6N,@ fN]LHNuH:&II  NU+H+Jp +@+K мg "j.м   g djTg Sg f` Sg L   g$` Sg nSg Yg b Kg l`  m"K -/
$@a . $_Jg "mp 0)  $G Jp*a +k r  m,l6 <N5@ r  m,l6 <N5@  <r  m,l6N%@  <r  m,l6N%@ J fJ g   J"ma &2 JAg   < m,l6r N" Jgr`r H5A (*   )gN j J g`"j ,l* *  /
$@N" $_$Jg(BHx/< B/a O  ` `` ` Hx//-a O ~ ` ,mr 2.  $m+k  m"K"-/
$Aa x. $_r 2* (  f . < ,l6 mN @,H fH <  m,l6N,@ f0 <  m,l6N,@ f <  m,l6N,@ g@ m"m -/
$@a $_ j J g`"j ,l* *  /
$@N+@$_`,Jf( j J g`"j ,l* *  /
$@N+@$_JgXJg6 J"ma 6BHx/< B/-a tO Hx/a NP$`BHx/< B/-a HO $Jg "K /
$@a :$_` "mp 0)  $mJgHx/a PJ  g j  ,l6NJ $g"j $,l&NN m"K -/
$@a . $_` "mp 0)  $m m"K -/
$@a . $_Jf` x"K"/
$Aa $_ހ` d"mp 0)  $m g`"k "~` <Jg 6"K /
$@a Z. $_` "` "mp 0)  $m m"K"-/
$Aa $_rf  +k +k +S0* m0* mJg  C /
$@a  . $_`  "mp 0)  $mpCA Q0* m0* mJg  C /
$@a  . $_`l"mp 0)  $m m"K -/
$@a  j. $_?* U?* U/-/-/-a  bO `$"mp 0)  $mJg"K /
$@a  6. $_ N]L\NuNqN  8N  \N  S^N  lN  P0N  LN  DN  /Ava  A샆,l&NHx Hx /<  a O )@,_NuH 2,l&N&@$lv` f 
`$RJfp LL NuH~ A샆,l&Na&@ gR A샆,l&Np`N lp(a &@ g.,l&N'@ A a pA a hAv"K,l&N
~A샆,l&N0HLHNuH 2A샆 ,&/,@N,_a 8&@ g  J gS A샆 ,&/,@N,_p `  r"K ,&/,@N,_`
 l"Ja `A  ,&/,@N$@,_ 
f`
 l"Na <A ,l&N,@ f l"Ka  A샆 ,&/,@N,_pLL Nu"P` f 	`"QJfp NuH2. &H| Jfp `  xA샆 ,&/,@N,_a V$@ 
gD A a,@ g'n  & |`( lpa ,@ g-G A "N ,&/,@N
,_A샆 ,&/,@N,_0HLLNuH2. &HJf`HA샆 ,&/,@N,_a $@ 
g A a &,@ g
-k  -S A샆 ,&/,@N,_LLNuH. A샆,l&N l a &@A샆,l&N LHNuH &HA샆,l&N l"Ka A샆,l&NLH NuH2&H. | A샆 ,&/,@N,_a ,@ g. lpa j$@ 
g5G %K 
A "J ,&/,@N
,_|A샆 ,&/,@N,_0HLLNuH2&H~A샆 ,&/,@N,_a ,@ g4$n `* 
f"~ >* "J ,&/,@N,_ l"Ja  `$RJfA샆 ,&/,@N,_ LLNuH 2A샆,l&Na :&@ g,k Jg,k $n 
A샆,l&N 
LL NuH 2&HNUA샆 ,&/,@N,_a +@Jg2 m$h `" 
f"J ,&/,@N,_ l"Ja  *$N,R fA샆 ,&/,@N,_N]LL NuN  ČN     .       d     l  S p                           /
p
E la  @ $_NuH2NU+H+J+I m$h  m"m -/
$@a . $_JgP"mp 0)  &G Kp
a ~ < J,l6N+@Jg,m&  JCB,l6p 0+ N7@  N]LLNuH2&INU+H+J mp 0(  $m m"K -/
$@a P. $_ <  k ,l6N,@ gHj /< Hx/-/-a  O  <  k ,l6N,@ gJ g   	`   	 N]LLNuH?2NU+H+J+I mp 0(  &m m$h p +@ m h J g m h  h ,h `MZx  
g  m"m"-/
$Aa n$_Jg Hm/< Hx/-/-a RO "m>"m<)  Jp a >+  	g  Jr 2+  gr`rA Hp 06 a +  	g m0( H@` m0( U@@"Jp 0r 2$,.ŎNŎ"Jr 2 m4( Hԁ Ur 2$,.ŎN
Ŏ"Jp 0t 4r҂$,.ŎNŎ Jt 4+  gt`tB Hp 06( a t"Jr 2pЁt 4r҂$,.ŎNŎ"Jr 2 m4( Hԁ St 4r҂$,.ŎN
Ŏ"Jr 2 m4( Hԁ Sr 2$,.ŎNŎJg J g$ k $,.ŎN+@ŎJg
 J"ma t 4+  gt`t H/?. Ut 4+  g4. `4. / m?( U////
a O  Jg "m$,.ŎNŎ` x Jt 4+  gt`tB Hp 06( a Fp 0+    gp`p H m0( H‐E@"Jp 0r 2$,.ŎNŎ"Jp 0t 4 m6( Hւ"S&,.ǎN
ǎv 6+   f`"Jr 2pЁt 4 m6( Hւ"S&,.ǎN
ǎ"Jr 2pЁr 2$,.ŎN
Ŏ"Jr 2pЁr 2$,.ŎN
Ŏ`0"Jp 0r 2$,.ŎNŎ"Jr 2pЁr 2$,.ŎN
Ŏ Jt 4+  gt`tB Hp 06( a ""Jr 2t 4 Ђt 4r҂$,.ŎNŎ"Jr 2t 4 Ђt 4 m6( Hւ"S&,.ǎN
ǎv 6+   f  RE"Jr 2t 4 Ђt 4 m6( Hւ"S&,.ǎN
ǎ"Jr 2t 4 Ђt 4r҂$,.ŎN
Ŏ"Jp 0t 4 m6( Hւ"S&,.ǎNǎ"Jr 2t 4 Ђt 4 m6( Hւ"S&,.ǎN
ǎ`&"Jp 0t 4 m6( Hւ"S&,.ǎN
ǎx N]LLNup NuH 2&INU+H+J mp 0(  $m+k  m"K -/
$@a  $_*  	g\J g Jg j ,l.N,@ g
 m"Na  "k TQJg"k  m0( :Q`"k TQ g2"N ,./,@N,_` "k p 0*    gp`pHQ"k TQpN]LL NuN  ^N  lN  \N  N  lN  >N    H0&H$INU~ Jf4   `@`p  RRp A p   g< 	ep    Aa 4 N]LNuH12&o $o  ,o ,NU m (>< g  tj&< 	gZj< g  < bg*`  S gZ[ g(`  U g0U g  rU g4W g`  `  | R`  r R`h  R``~ R`Z< R`R< R`J<  R`BR JCa $@ Kr 2-"m ,p 0a `R JCa $@ Kp 0-a  m (Pg4 m (0"Kp 0/	/ $&,.ŉǎN" ŉǎ$,. "_ŎNŎ 
N]LLNuH'2&o  $o $,o 0NU~  m ,;P`X g`R/- 8/- 0Hm/
/a O $@`2z `REJ2P g2 P g2 
P fJEg K"J0Ha JހEP Jg 
f"m 8)   g0. H$"DҀ<A` m 8(  g2n SA0<@`<Vl<0HN]LLNuH0&H$I~`
 
fRGRJf0 :  LNuH72&H$INUpAC"Q~ | ;|  MZ;|  Cp /	/ A$&,.ŉǎN" ŉǎ$,. "_ŎNŎ`   g` RHm/Hm/
Hma XO $@`  z `REt 4J2( gt 42 ( gt 42 
( fA"Jp 0a $ ނCp /	/ A"&,./	"AǎN$ ǎ"_"$,. "_ŎNŎt 42 
( g
t 4J2( fd,t 42 
( fR~ t 4Jf 2tԆ   N]LLNuH=2&o (NU|;|   m 4"m (0( i >;@;|  ;|  ;|  ;|  ;| "m (p /	/ ,l.$- (ŉN" ŉ,l. "_N m ("Ka ;@"m 42-i d"m 42) Hp 0-DЁm m (pAC"QHm/- 4/- 0Hm/Hma O ;@C Ka \ @ g  ;|  m (p !@  m (|    m (p a `m :g m (0- :Ha J` m ("m 0p 0) a 6 m 40( H m 42( HҀS/ m 42H m 40( HЁS/  m 40( H/  m 40H/ /- (a O `   m 40-Porm :gj m (0- :Ha  m 40( H m 42( HҀS/2-H/ m 42( H/ m 42H//- (a O  m (0- :Ha | m (pa xm :g m (0- :Ha \ m (pa X`
 m (p a L m ("m 02- :i 
f
"m 02) `"m 02) p 0a "m (0-H2-H,l.NC0-H2-H,l.N` &< 
g>< g`  RHm/- 0Hm//- (a O &@,m (rMA Q` m :g` RHm/- 4/- 0Hm/Hma O ;@,m (2. :m2-H m 40( H m 44( HԀSn`  "m (0-H2-H,l.N,m (rMA Q` P~ `RGr 2J3 gr 23  gr 23 
 fJGg ""m ( Kp 0E,m 46. H8-H,m 4:HDڄDڃJo$,m 4:. H6-H,m 48HD؃D؅$`t ,m (v 6. :,l.x r ɋNH" ɋ;A~Jm~g`"m ( Kp 0-~,l.Nľm~c`RGp 0J3 gp 03 
 f m ("Kp 0-~a m"m (0-H2-H,l.N"m (p /	/ ,l.$- (ŉN" ŉ,l. "_N,m (rMA Qr 2G Jf Jmg`  2-H m 40H m 44( HԀSorm :gj m (0- :Ha  j m (p a  x m 40( H m 42( HҀS/ m 42H m 40( HЁS/  m 40( H/ 0-H/ /- (a  O N]LLNui  N  lN  
N  XN  N    H I  &h 0S@gS@g
`,k R`,k R 0	LX NuH 2NU+H+IpANC"QA+Hp +@JJgP,lJNd+@Jg<;| M+NM+N m"m$mG,lJN m,lJN`/-/-a  P+@ -N]LL Nu  H 2NU+H+I+JpAbC"QA+HJJgN,lJNd+@Jg:;| +mM+N m"m$mG,lJN m,lJN`/-/-/-a  O N]LL NuN   N  H H@HA ЁH@B@2/  ЁPNuNqa   NuJgHAJAfB/HA$ i"BAHAp 0$Nu" pNu/$ BBHB6HCBC4 6 BBHB"&$NuH8 $ BBHB6t 4HA8HCքk
"  L NuSЁk"  L NuB`r `/  o  /    (c`Q / NuH?>4dS   $BB4HB&(*,."B$B&B(B*B,B"<   0kH?~jA2< Ak!AjA`QL| / NuH&H~ | `R  g 	g -f~R +f0R`,  b
0<  
`
 r
a n,  KRHHr0܀ 0m 9oJGgD LNu"H`RJf Nu/&H`RRJf &_NuNq/&H`RRSJgJfJg   &_NuNq` f `RJfJf `p NuNqH0&H$I Ja > JGf" `$`f K"J0Ha vJf `RJfp LNuNqH 0`Jfp `>RRp EAp G7gp G'p Edp`pL NuNq DDDDD@33333333333333333333333333@333333333333333333333333333333     	
 !"#$%&'()*+,-./0123456789:;<=>?@abcdefghijklmnopqrstuvwxyz[\]^_`abcdefghijklmnopqrstuvwxyz{|}~   Jfp `$`JgSJfp `RRgdp`pNuNq/&o NU  C  Ka  @ N]&_NuNqH 2&o $o NU  "JM   Ka  @ N]LL NuNq/&o NU   KC a N]&_NuNq/&o NU   KC a N]&_NuNq/./ NU   A a > @ N].NuNq/&o NU  C  Ka . @ N]&_NuNqH 2&o $o NU   K"JM  a HN]LL Nu/&o NU  C  Ka 
 @ N]&_NuNq/&o NU   KC a N]&_NuNqH 2&o $o NU  "JM   Ka ( @ N]LL NuNqH!2&o $o ./  p K,lBN,@ g   N/p"
$,B"G/ AŎN"@Ŏ _$,B _ŎNŎ N/pt ",B/ň,AN"@ň,_",B _/,AN,_ N ,B/,@N" ,_Jg N",B/,AN,_ LLNu/
$o  
gXC  j`D/
L   
gB g>C  h `*/
L   
g( g$C `/
L   
g g"o Hz 
/( Nup $_Nu/
$o  
g"o  j`/
L   
g g"o  h `/
L   
g g h /<    Ho /<  CHz /( NuO $_Nu  /,l>N,_NuNq/,l2N,_NuNqH "$@,l2NLD Nu/,l2N,_NuNq/,l.N,_NuNq/,l*N,_NuNqH "$@,l*NLD Nu/,l*Nx,_NuNq/,l*N,_NuNqH "$@,lJNjLD Nu/,y  $L   / N ,_Nu/,y  $ o  / N ,_Nu/,y  $ o N ,_NuH ,y  $L  N @L@Nu o B !H X!Nu  n ' eNHȲe2/ pҀF  /r pN:" _Jg!H XB!C """ Nun ' eNB gH  $P$g"J$B !N.`Nu"JYLpN.n ' eN<" gZ gVH00$$H dJ&&C&gr KJ gj NFJg @ *   g"H"^S0HAv ""QQ LNu PX"* a  Jg"@ JX ( !I H PB 	`"*  * м   $abJg&@"@ J  H @!I p
@ @ 	A 'H 
"* 7A A $rF  A * 'H 'H '@ B  !@ 'H ` X/ N:Jg @  XNun ' eN6"gf"	gb d^/"&A"glJ gf e d KN@"k ") g A!K  'H #K  k  #H  !I 'I  "K&_ ) Щ  gNuYQ 	 Y"Q"!I "@ !N.&_/.<  N.Nu Pool   p NupNup NupNuNuNqNuNqNuNq              
                   
V  
\  
b  
h  
n                          $  ,  4  D  <  %  %   %D  %L  %T  %\  %t  %l  %d  /  /  /  /  2  2  3   3  3  :j  :p  :v  :|  :  :  :  :  :  :  :  :  :  ;$  ;  :  :  :  :  :  :  :  ;  ;  ;  ;,  ;4  P  P   P&  P,  V,  V<  V4  VD  VL  VT  V\  Vd  Vl  Vt  V|  V  c  _  c  c$  c,  c  c  c  c  c  c  c  c  c  c  c  c  c  c  c  d  d                                                   $  ,  4  <  D  L  T  \  d  l                                      
        "  (  .  4  :  @  F  L  R                       &  ,  2  8      V  \  b  h  n  t  z  ƀ  Ɔ  ƌ  ƒ  Ɯ  Ƭ  Ƥ  ƴ  Ƽ                        $  *  0  6  <  B  H  N  T  Z  `  f  l  r  x  ~  ݄  ݌  ݜ  ݔ  ݤ  ݬ  ݴ  ݼ      ~                                ^  d  j  p  v  |                                    $  ,  4  <  D                                 $  *  0  8  H  @  P  X  `  h  p  x                    ( 8 0 @ H P X                    Z ` f l r x ~               + + + + + + + + , , , ,$ ,4 ,, ,< ,D ,L =~ = = = = = = = = = = = = = > = = = = >  E^ Ed Ej Ep Ev E| E E E E E E E E E E E E E E F Mj M^ Md M| M M M M M U U U U U U V  V V V V  V( V0 V8 V@ VH VP VX Vx Vp Vh V` V V V V V V V V : @ F L R X ^ d j p v |                      > D J P V \ b       : @   "               	            r  Q>    B        H 3 ,z                                                                                                                   P     %     3     ;@     V     c@     d               $     (  P   ,     0 d   4 (   8    < >   @ ,X   D V   H    L    P     X F   T M                                                                                  UU                                                                                                                  T     T8  T.  T"  T  T                                                                                                                                                                                                                                                                                    3                 ,r        	                                                     "       `   h   p   x                                                                             0         \   d   l   t   |                                                             %;   l   k   j   i   h   g   f   e   d   c   b   a   `   _   ^   ]   \   [   Z   Y   X   W   V   U   T   S   R   Q   P   O   N   M   L   K   J   I   H   G   F   E   D   C   B   A   @   ?   >   =   <   ;   :   9   8   7   6   5   4   3   2   1   0   /   .   -   ,   +   *   )   (   '   &   %                                                                                                               3  bgui.library                                                          #   m              C5*                                                                                                                                                                                                                                                                                                                                                                                                            $  bgui.library.sig                                                      #      03&@ Okyыkh?чeevތY4Xt,
ԝ1ų
$v
?H5\*v.g39Âb! HkV152L                                                                                                                                                                    q                                                                                                        3  
MAShare_66                                 3        %          q                 	;P1                                                                                                                                                                                                                                                                                
  	                                                                                                             ~    Bootblock.library                                                     #                       w        0     wpNuJ     ڀ	             ^   :       .#   #    @!|     (| 	 !|     
|  1y   6 1y   8 !|    p 1@ &A 0/,y   N,_CDp N#   fH.< ,x NL`N    NuA 0/,y   N,_Rn    &N   / A 0/,y   N,_ NuA 0/,y   N,_N   p Sn  f.  &ga  / A 0/,y   N,_ Nu/"y   A 0/,y   N,_Jgr"y   Ji  g
  &p `\N   Jf"y   A 0,y   Np g:"y   ,y   N"y   Nbp "y    I0( h N. <,_Nup Nudos.library Nq               
      *           b   Z   "      j      L              >   6  :  V  v       0   ~           (  F            l                   Bootblock.library Bootblock.library 3.1 (24.06.93)
            6           v                    F   B   >   :         f   b   ^   Z   V   R   N   J                                                                                                                 0/I     l )H  (_NuDOS    pC NJg
 @ h p Nup`dos.library   DOR=u  pC >p%NJg"@  "NbC NJg
 @ h p NupNudos.library expansion.library   trackdisk.device  /I     , (_Nu/I    (_Nu/I    Jl  ga p(_Nu H?>I    K /H 4Jl  gp` j",l $<  N, fN|` N"A <$vNYg"NN|` .BBBF <g"Np` "t vN"vN* "<  ,x N:&@Jf",l Np` "$&,l Nְg"NN|` "N r
N, ?|  8x `(p 2/ 83 H/@ , "NT"/ ,N^؀Ro 80/ 8Hep + r + t + HBBBv + HCBCւցրgp` @p + 	r + Ҁ9A ~
Bo 8`  p*r,x N:*f"K N.0/ 89@ a p`   KP "C Q #C Q $C Q %C E PG/I 0p ( r ( t HBBBv  o 0HCBCւցր+C &Bo :`3p 2/ :Ro :>/ ,0R@?@ ,J3p f >/ ,3  4/ : *URo 8p 0, 2/ 8Hm *Bo :\G`3p A @2/ : Ro :RGJ3p f3p A @2/ : "K ,x N.9|   p L| NuHI    Jl  g2*l ~ `"M*Qp*,x N.RGp 0, 2HmBl B, @Bl  LpNuYOH1<&I*HI    E Jl  fp&`    DOSgp&`l~ 0, ?@ `Pp * %H" p * $H$ p * #H& p * "H 5 е8 е( е  &fp& 
`$RRGp 0/ 2HmBp L<XONu/I    Jl  fp`0 A @fp (_Nu/I    Jl  fp `A  (_Nu/I    ra  $(_Nu/I    ra  (_Nu /  o "/ YOH,. I    /H p N8*@Jg   MN&@Jg  A "Kr ,x ND HHffp'@ $7| 	 "KN8'|    $'o  ( 7@ B ,"KN8J fWf7|  "KN8J g+ HHB $7| 	 "KN8"KN> KN`zg MN
`zg LxXONu H,. I    B/ AHC |p"QAlC p"Qp @ep@cp`  p@"<  ,x N:*@Jfpg`lp@d"p / HA |+  R/ /  e`p / H+ R/ /  ep 0ѕp 0   Ma V* "Mp@,x N. Lp NuJj  DJj  Da   DNua  DDNuJj  Da  DNu/HA4f  "H@HAHB4 g  0H@4 0HB2$Nu/vA d  QCA d  YCA  d  UCJAk  SC4 HBBBHC6 04HAd  SCЁr 2HCH@A&$Nu  Hp $ g JfB`& HBHBBBւHAH@B@ЃL Nu   o /"H|  0|#H #H p0,x N.,_Nu o H *HJ 
g
"M,x N|  p+@ p - ,x N"Mp"N.L` Nu   o H *H fp `&p0"<  ,x N:&@Jg|  B+ 	'M  Lh Nu   o  / H. *Hp,x N HH Rfp ``p""<  N:&@Jf N`DA 
 G 	|  BƓN'@  g"KN`A 'H A 'H B |    LhNu                    z                                                                                         q                                                                                                        3  
MAShare_66                                 3        %          q                 ͭ-0                                                                                                                                                                                                                                                                                                                                                                                                            #  Bootblock.library.sig                                                 #      03&/,$kʝc7UpZ=CmX?3*<˘Q#\lNwQI\_3稵l9@qb75߯LLSʊmRL!x,1                                                                                                                                                                    q                                                                                                        3  
MAShare_66                                 3        %          q           H      I  Z  Y  X  W  V  U  T  S  R  Q  P  O  N  M  L  K  J  I  H  G  F  E  D  C  B  A  @  ?  >  =  <  ;  :  9  8  7  6  5  4  3  2  1  0  /  .  -  ,  +  *  )  (  '  &  %  $  #  "  !                                          H                                                                                                  @unpack.library                                                        #  [                  5c      5cp Nuunpack.library Unpack.library 42.71 (20-November-1995)
 Coded by Thomas Neumann for SHI (Safe Hex International).  J   x   *	             2           	       *   G  
             z    >bz		$	F		
2H(@)H ",x )N .C Nh)@ &C Nh)@ * LNudos.library intuition.library Rn     Nup Sn  f.  fNuH(NJl  g
  p `2,x "l *Nb"l &Nb$, ""LN"Lp 0, l N. LNup Nu/,n . <  "<  N:Jg$ @0UI C !I C^!I rC Mf,_NuT:OutputFile.00 / ghUIf,n .C <  N.,_NuH?>(H,n &B B B B FB JBl Bl B, ,  f  )I  B " <  La  )@ <g ,  gd <  a Jg &@",  tN& f
"Ka ` "$N"Np"+ t$   g ",  NF"Ka 
J@g T",  $<  N)@ Zg :", Zt vN", Zt vN)@ x", Z$, <&<  LN. ", ZNB Zg  )G "a 
J <g  ., "g  RG$l <k 
cb+  	g
  g\`P0+ gJ+  	f.A  "J  f4 )  C 0C  0fQ`C  H JNLJ@f
0gpG  `)K j0+ A  )H 9k  + +   	g @ p,  f"l <a 	B <)l x "B xa 	L|Nur9A p `r`r`r`r`H?>H (HQ D,     g  f  ,  gJ9|  J Ng*H/L "_ i NNLJg  @Cf`
a LJg p J,g 9|  &l j0+ g C  9|  H*NNa L` ,  f LNJg t)l  <)l  ")l < R)l " VB B ,     g  f &l j+  	f 
9|   l RNJ@g "l R )  C  f  ) P VA  Rg!!`X)H R"l R )  " CA ?  g:Sg6Sg@Sg<Sg"SgSgSg
WgSg`l gR`SAk$X` ?`SAk ?`  f.FLID f$ X刑 V Rg!` `X)H RS S ,  gJ9|  J Ng*H/L "_ i NNLJg   @Cf`
a 	jJg  p J,g  9|  &l j0+ g  C  9|  H l RNa 
LJ@f"l a B B `p,  f"l <a B <B RB "B Vaza J g4H,  f l "l &NL`/L $_ j "j &NL,  f LNp,  f"l <a XB <B RB "B VHa tL|NuHNJg  &@ <   a '@ g   @., g""G>< WU :g( /g| / -C f| /B|  ,  g  'l  <'l  "A 'H   KNJ@gd+     gV  f'l   KNJ@g@"l a |)k  )k  ,     gk  )k  9k  )k F F)k J J"k a < KNLNuH?>  fBE L~ z "?  m&  n  A22 N JkJ@gJg
`Jgp `pL|Nu , , * * B J J J Z Z , <    > J J J , ,S"?pNuSpNuXSpNu"gR`pNu"g?Jg g g g g g g gp Nu"g`,(  RކچVpNup Nu"g
ApNu  f~ p NuA
|t RB0gA  `v3p*rGNuC
b!I n0) C  Nu"h n0gC  !I n0) C  pNup "@NuH?>(H*N9|  ,n &",  $<  N)@ Zgf" t vN", Zt vN)@ g:9|  a 6)@ g*9|  ", Z$, &, NfN LNNp / ", ZNB Z a 2a HL|Nu"h a B B NuH3>(H/$n &$j " * $@ * $@9| 	 p J f&,* (&F*I~ SG Am ߼fQ`Jg  ,$F`"* g  $A$&* ,* $F&I9|   <   a HJgz/ *@+L  A V~ SGQBA ~W9| 
 ,n .NC 4#@ NC  "A VNDJg
"_a p `C A 4#H ,o A paR Xa L|NuH  g6*@A p a2,n .C 3| 	 B $N8C 4NC N>"Ma L` NuH.*N. (H,m .pDa fJgb/ N/ $o A %H 
%J  WA \%H %|    %G (,m &"NR @"J,m .N WA \N WA \NX"_a (LtNuH 2&h  7|  &I,n .C $I3@ #K (#A ,#B $N8p * LLNuH0 NA 1@  1A 1C 1B L Nu        /
2 h vj
0C6!I r1A v"h rS@k2gDC Q!I rA 0) E  !J  1i  1i  i  B( 	)   	g   	 `p $_NuH`"<  ,  g"<  `H`"<  `
H`"<  ,x X$ N:Jg @  LCJNuH 	g
,x  !N.LCNuH,x n % mNLCNuJg
Bl B 8NuA 2, A20 A)H 8Nu * : K Y l }     5GnCan't open file Read/Write error Out of memory Unable to identify Illegal password Error in hunk structure Extern error occurs Crunched data is corrupt Illegal device Couldn't open device or create port CRC checksum error Checksum error Decruncher in library too old Error from device Couldn't set protection bits to normal Couldn't open text output file Couldn't open library Unknown error Can't unpack Password Required Can't make directory  H?>K&x ,n *NN|A n"k 8!I 0) 2) @ A 
HIA 01A NvNN4/ $@$j VN JN JN"@:) N g`BN _NpL|Nu      
                                Password  /9|  ,m &E| 0 | 0 ~ "
$<  N, g&" NR* * : f| 0 R* * : f`~,_JGNu/a ,m &"<  ^$<  N/ A"$v N"N|Fgp . "N,_ NuNIL:  //,m &G"$<  N, g  "t vN"t vN. a f
"N`  / $ &"N/ "N f"_a `x", tN)@ ^f"_a `j" N)@ b WC f$o N"_a ", bN", ^Np/ a 
,m &A"N X,_JNu9|  p `9|  p `9|  p `9|  p `,m &G  *g  "$<  N)@ Zg  " t vN", Zt vN. )@ a )@ g|", Z$, &, N/ ", ZNB Z gH/,Ma ,_P DJ g4H,  f l "l &NL`/L $_ j "j &NL"l a B Nu,  g  / <  a ^)@ f,m &", tN)@ ^" N)@ b~ ", ^$, fN", ^$, fNJg\ l fP"NJf l fJ kBN|@ gRG/, b/, ^/, f <  a )@ f WP"tN)@ ^" N)@ b`", bN"l fa ", ^NJGgSG)_ f)_ ^)_ b` \", bN,_Nu  f (  A pNup Nup E gYfQpJ@Nu `  |  FVL0   $  ANC-Cruncher    ( )@ a )@ g$"@$@ (z|~	a Jg
9|  p `pNu   4  4     * ^  ByteKiller 1.2-1.3   \ ` ra  j m gra  X62< `  2< 	BTB6)h * F)h  Jz ( I<( >( A`  |  5       & Z  ByteKiller 2.0   \ `raJ< m< gra:62< `
2< 	BTB6a&SJ  )h 4 F)h  Jz ( Q<( >( A `  t  6        & Z  ByteKiller 3.0   \ x`raBmgra66r`
r	BTB6a$SJ  Q)h * F)h  Jz|~	A `      8     * ^  ByteKiller Pro 1.0      "( *( A $I  f
  D eBrvf
)h @ F)h  Jz ( m| ( ~ ( A`  N    Z     0 d  ByteKiller Pro 1.0 Killer  B  "( *( A $I  f
  D eBrvf
)h b F)h Jz ( | ( ~ ( A2 ( )@ a F)@ g"@ $X(aJg
9|  p `pNu  faneH2vfabe&rah6rfaRQW`2BTB6aD2 WCg Nura, m f
ra6PC`ra62`  D NuSAt faQNu         , @  Chryseis Cruncher 0.9 ( v " $6N",$HtA & ԀAP02AfXH`@g  Ԁ` ԀX  gX gRԀ`Sf )@ a )@ g  &@&  BE & T@&Q02B[6Af &`8@g$""& J"KH/
E 6aH$_` &g&Sf &@g &gR&Sf`SfpNu					


	
	
	
H<0xz&I" Jga*Sa e>t pa&AWAgpaWDg"`ZgNu* NuS@r f* QNupap 2 4WAfaepa6paA_Ag`a6RB10 WDgL<Nu   8        ( \  Crunch Master 1.0      PTVf  :hTV f  0Jg  *(<   BB0( 2( | a)G  a :)@ g|apNu$l RE A *H]"l  x ~ SPTVf(hTV f Jgx0( 2( \]JFg3TQ`JFg3TUdNu j  <      , d  Crunch-Mania 1.4-1.91 C ` vx o  a~d x ra   Q`xraferax@`aZx `  t  @      6 n  Crunch-Mania 1.8t-1.91 Huffman  C ` P~@> vAtBQAI t	a  AI ta x` n   >  t     6   Crunch-Mania 1.8t-1.91 Library  p   f"(  A J( 2f
C 
ra NuHC ,x Nh,@ gNCrM.lix ` " p  ?  t     > j  Crunch-Mania 1.8t-1.91 Library/Huffman  p   f "(  A (  2f
Czra rNux`  n  =       4 h  Crunch-Mania 1.4-1.91 Simple   0  a~d x ra   Q`xraferax@`aZerx`x ` v   9  Z     4 h  Crunch-Mania 1.4-1.91 Address  0 (Sf*I0","~@> vx o  a~d x ra   )h * F)hD JEHK`      Z     > r  Crunch-Mania 1.9t-1.91 Address/Huffman   T AtBQAI t	a  AI ta  GI)h * F)h JEK`    :  Z     8 l  Crunch-Mania 1.4-1.8t Address/Pro  0   o&Io&JI  .R$L(Sf*I0","~@)h F F)h JEK`      Z     : n  Crunch-Mania 1.9t-1.91 Address/Pro   J   o&Io&JI  .R$L(Sf*I0","~@)h ` F)h JEK `  p    Z     <   Crunch-Mania 1.9t Address/Pro/Huffman  D "$G  o&Io&JI  .R$L(Sf*IH     Z     < p  Crunch-Mania 1.91 Address/Pro/Huffman  D "$G o&Io&JI.R$L(Sf*IH)h ` F)hP JETK`  >  ;  CrM!   2  Crunch-Mania 1.4-1.91 Data  E K` T X    crM!   <  Crunch-Mania 1.9t-1.91 Encrypted Data C  
a 4gE Kta Nu J  C  Crm!   :  Crunch-Mania 1.8t-1.91 Sample Data  E KM(`  d    crm!   D  Crunch-Mania 1.9t-1.91 Encrypted Sample Data  C  
a gE KfMa lNu F  A  CrM2   :  Crunch-Mania 1.8t-1.91 Data/Huffman E Kj`  `    crM2   D  Crunch-Mania 1.9t-1.91 Encrypted Data/Huffman C  
a gE Ka Nu R  B  Crm2   B  Crunch-Mania 1.8t-1.91 Sample Data/Huffman  E KlM` V    crm2   L  Crunch-Mania 1.9t-1.91 Encrypted Sample Data/Huffman  C  
a &gE KMNa Nup   fFE"(  $A "(?±b  gQA  rfQpJ@Nu.( U (  A  (*H A0( E  &Jv`X.( S (  A G 4 (*H SA$Hv`&.( S (  A 0( E  &JvB K Sr ҘQ* +l > g
l ? g , Ҁ Ё   a )@ g & ga .f"l a B ` 
"l  C,IH>l > gl ? g"$`"+$+Jga `a L|l = g$M`X V@ l    B B S "l RC0  Q g"@H AX  SfL x l < gl @ gl = gaT   aL`aH  aB@f  `X  Jga<a$   RDGfΑ )H  g"@a XpNu/	"Ng#a fX"_Nu/	t 0kfDg0gS@TJYfJQ`ta   p 0ga 2 0a /	p 0"Ng# f"_v SAp 0f Ѐր Q`JBga vB"_Nu )@ a )@ g
"@"$NpNu~ > * )@ Їa )@ g<&@A 
C * a /"K"* $* $KN.g l "H , SfpNu*I0","~@> vx a  d(x ra   WDgNuxraferax@`aZerx`aPerx`aFerx`rxaP@D gmSDa*er	t `a ert `r4< a(BG  #W`SGf~0HF<"HFHNuNu0⮞AnC<"A{Nu      ?  ?/ <  a )@ xg  ,@T&	0","~@> AtBQAI t	a AI ta  GIa  GI a ra  : A K(Na`  f48 I  MaPM2 4 frtanG #WDf#g# WEfra@f ^(_"l xa B xNur SGg`~0HF<"HFHQ0Acl >A00 Nu0⮞An
G <"A{Nu      ?  ?H|ra: SEx RD2Bo2a0Q:SE2a8QL>NuH B\~xv t r<9C @0,@l @FF8JQL NuN",  l SSfpNu4!BEp r g@AA`0@A IA@g
9|  p NupNuH$OO UkB2 H@(IB"JfB"$
  gB""Jf"J(I4f"L46B6YQQ0@ 6O LNu :    COM   .  Crunch-o-Matic 1.0 Data K A `  t         2 f  Crunch-o-Matic 1.0 Execute  B  g"a&	$BגSf`"UYSAe"Q`XNuva.dHK a \U` f r         0 d  Crunch-o-Matic 1.0 Module B a  ^A VC D  l! l9  f9  f! 2 la a  *HA 
`   t         2 f  Crunch-o-Matic 1.0 Picture  B CNhAZ ChNhAP  zRXC"XYCa  z*HA 
`           . b  Crunch-o-Matic 1.0 Text B K +z  +z      C xNh,@N*"$- &-a  
*HA 
`a  (A
Nu )@    a )@ g  "@$@ ,@ Hz va  d4t a  dptUB; da  { `V; `Ag  Qo>pandS@fBA; Bkah; ?Axa^$; 8BaT{ 8&IgTQnNu	    	 		
   Q fNur aASjNugX9|  p Nu l $H"- 0- C  Sfr @ft ggQggnpNu   V      " R  Defjam 3.6  p C "gC &fXI^ PfffpNu)h F)h JG"h L (E  4( (-(M([(a(}`    W       * Z  Defjam 3.2-3.6 Pro  p C |gC fXI& ff fpNu)h  F)h t JG"h   (  E  ((((((  J)@ a ߞ)@ gapNuO*OBB Bm A B C D E 	$`  ~ra  JBgz f:a  e
ra  ^B`*ra  JBgB 
`ra  JBgB	`
ra|  SB6aTezr`aJez r`a@ezHr`:< raLE3  WжGf~adVra42vJg\g6 gvr`f  D NuvraB2- `0SAt aՂQNura6C 2- `aev2- `v2- a2 WGg   l $H fr gRAWGffO 
Nu  }  BIMP!   2  Discovery File Imploder 1.0  ( )@ a )@ g,n ."@ , VN9|   l aNu&H(HX$K!!!$6kSO"Op"Q"Ox Jg#SfeO pgp Nuf#ddf#dTf#dDf#d4f#d#p`:f#f#f#\p`xp`xp`
xp`xp z 2 f#df#d; jP `zX ; bf#BS fEz $E0f#dAf#d4qP `4q X 1 f#ۅS fRJ"Sf` 

 0   	 P      j  Dms p DMS!f
(  fpNu   	 P     $ :  Dms Encrypted p DMS!f
(  gpNu~ <   na 2)@ |g &@ l  a `g /,n &", Zt vN", Zt vN,_)@ "B x*Ka g  m  pa ^f ~DMS!f  m  p4a Df ~ m  p2a 0h 2f v(  g/Aa @ _~h o ,b V0( 0[@gS@g
`;|  h`;|  hp2- h`;@ lTA;A jBm 0&m  G 4 Kpa f  , g  ~STRf  ~ Kpa k f 0+ @ On   m 0+ a f   m 0+ a vk f  ,  g m 0+ a  m "m a )@ g  ~0- .k f  0+ @f
p,  fJ@k J,   ,  x", *g 6)@ 2, 9@ 6)m  H,  f A"l &NL`/L $_ j *"j &NLJ@g ~`)l x ~ 9G a a  "l |a NB |pJGgp Nu", .g9G 0+ , )@ 2)m  H,  f A"l &NL`/L $_ j ."j &NLJ@f` hH`~,n &"$<  N)@ ZLCJNuH,n &", ZgNB ZLCNuHp~,n &", Z$v 6 N)@ gp LCJNu~ <   Ha J+@  g   <  N a ,+@ g   <  N a &+@ gz <  N a +@ gj < 	a +@ gZ <  *a +@ gJ <   a +@ g: <    a +@ g*pa +@  g <   a غ+@ $g <   a ت+@ (JNuH@A  r
"Xa غQLNuH`C   S@r t BI41  AQ0LNuHC   Bm ,Jg(0- ,2 IA t @@ t 4 Ԃ01( A;A ,`LNuHÐ&H> 0SGJ@g"p 2- ,@0- ,H;@ ,p m ,`L	NuH0~&H$I m  A 4:( H<( H>( 
Hp ( @ d @0; N    . L j    K"Ja  . `   K"Ja  . `  " K"m a 8 m "Ja  . `  " K"m a   m "Ja  . ` x " K"m a  m "Ja  . ` Z m  A 4(  g,p ( @ U?  " K"m a  m "JaRX. ` p ( @ U?  " K"m a  m "JaX. ` H Sr t BQ;A .L NuH0 /	E < p v l@g@`r f@` fISA@Q`SA@Q`;C . 	LNuH?0/G $m >< Jm 0f;|  0:< *J0< >r *Q`:- 2pREGQ*I| l  r Nf<D VQJg"r pNf<D VQQP REG`v pNf<D VSQt pNf<D VRQDBESBGRCp @m2@G2 P REGR@`$W5E 2 	*_LNuH?2/G $m ><?Jm 0f;|  0:<?*J0<r *Q`:- 4pAREGQ*I| l  r Nf<D VQJg"r pNf<D VQQP REG`t pNf<D VRQM   v 6  M   p 6  S@Nf<D VRQB M   r 6  IM   p 6  S@Nf<D VRQB ADBESBGTCp @m :2@G2 P REGR@`$W5E 4 	*_LLNuH?0/G $m ><?Jm 0f&H a L ;|  0:<?*J0<r *Q`:- 6p;REGQ/	| l  v *o *m 6-Cslp Nf<D VPЃЀ65 `  s H a BL C lP REG`t pNf<D VRQK   r 5  IK   p 5  S@Nf<D VRQB ADBESBGC p @o J2@G2 P REGR@`$o 5E 6 	*_LNuNUH30$l |$j AGZ~ G:l*0@7   0@2As5  0@2 A1 RG`~ <<:Frn80@2A4B63 s 7  0@5  0@2A411  TGRF`7|BhLN]NuNUH0+@ l | h EGZ+Hk fa  0-HЀ"   ;r 0-HЀRs :3 8-RD HЀs cxRD HЀs bSD0-HЀ"Hҁ7  7  m>0  HЀ5 Gsl5 HЀ<0 1  HЀ2-5 Fsl5 HЀ1 ;D0-HЀ;r Jmf RLN]NuNUH?0$l |$j AGZ| ~ +HGsl, HЀrs m"Hҁ43 RBJ7 5  RFRG`~ <<:Fsl  *RE HЀ"Hҁ$HԂ63 s( 7 (*SE HЀs dSE`RE E@;@"HҁJ@o KC S@ Q7 0-J@o JC S@ Q5 TGRF` l~ Gsl& HЀ:2  HЀ m1 Esl1RG`LN]NuH?>,IG $m Jm 0f
;|  0Bm 8*Hz | ~ pmo>|HGGBGHG Jo 0g 4p	mo>|HGGBGHG JfH4p	mo>|HGGBGHG p 2< l | h QJ2< l | h 0Q`\6SCx l | h 0hpmo>|HGGBGHG Q2<Bo
SAp Q0<"l | i "i ra 4pmo>|HGGBGHG v[CjfJ4pmo>|HGGBGHG p  l |2( jSA h  Qj2<  l | h $0Q``6SCx l | h  0hpmo>|HGGBGHG Q"l |2) jBo
SAp Q"l |0) j i  "i $ra  l |2( lSA8( 8/l  l | h 0H@60  Cl( l | h 00 mo>|HGGBGHG `npmo>|HGGBGHG  l | h (C pS@gC600 `C610 Cl l | h 00   mo>|HGGBGHG C l@ RDA` : l | h $0H@40   l |h jl$ h  0  mo>|HGGBGHG `tpmo>|HGGBGHG  l | h (C pS@gB40  `B41  /
$l |j j$_l l | h  0  Q mo>|HGGBGHG  l |0( jS@@f4( :`4JBg(SBp 0H@@mo>|HGGBGHG  l |1B :DBDSBAC p @o *A  @ RDARBR@` l |1D 8 L|NuNUH3 $l |. ,H  %m @%m <r$b5B LjRBB&RC5| DBj `5@ H5@ \5A T5A P5B d5C Xa
aLN]NuNU/$l |0* Pj TfdRj D0* Dj HlBp  j @2* D0 j Pf>* `0* dj `j `d0HЀRG j <1 D `0* D`  5| DRj P0* dH5@ dRj T0* Tj Xl
a xa t`pr Abj>* \Rj \0* H@S@@0HЀ/@ a L j (A "/ 1 0HЀ/@ a . j ("/ 1 0* T2* X@fr 2* `ҁRj ` j <1 Sj T .N]Nup  l | h  A 4 LNu~  D 
      ( T  Double Action 1.0    	G  7|@  7|  C      ~ 4< g6~4<g*~4<g~4<g9|  p Nu     p 0;pKL)m  J - 
Э )@ F -  
)@ x"  )A a )@ g"@$I" 
&J -  
A "/0;pjN ffJCf K x$I - - 	 f  gSf`fr  ` fڱ f B"H $H xصfB xpNu    * t xa~ eBf^xar efv`  vJg  `  xaTJfxaL\F`xaDJgx`x
a8SF6xa0WCf  xaJgxa g"v eFgLv`HSD| f* VQNuxa gv`xa gv`xv
aFxaJfxt`  x4< a܂2hWCg Nu* t xa eLflxa efv`  vJg  x	`  xa fJf
xa \\F`xa RJgx`x
a DSF6xa :WCf  xa $Jgxa  g"v eNgG f`x4<	``G fHx`Hxa  gv`xa  gv`xv
a Fxa Jfxt`xa Jf
8;p(4<`8;p$4;p&a ܂2hWCg Nu 	 
  
   n  E  4     $ X  DragPack 1.0   @ rBDa  ~6Drf  a  QQ3 `  2<z ( W<( >( A` R          $ X  DragPack 2.52  h  Ql0ra2  6 aCr0v 8 r aր| gR1&HE 4$+ @&+ F8+ <z +  + R)@ a $)@ gP"@9|  "   J*I.	/| + y>+ YBk  ?k  ,Op + GP : a  X.a :Nu    "     * 6  DragPack 2.52 Data  p PBHfpNu&H +  )@ a ł)@ gl"@*I Yp + 
>riSA?A | + ~oSGz + phE O&O,KB^S@ Jr Rv<^CS@f l < M  aO $pNuBf4 D Bev 2aNրGgraF WCf42a22  6 a*Cs0 v 8 2aրn gR1@ WCgNup Bf4 D B@SlNu l  ( AC 4g<g@g(gJg~gp Nu <  gaZ `!@pNuaL   X` <  ` <  a2  `a&   t  gr 4aT 4҂a
T Sf`$G5b fUTNua    g \A`n    x     & L  FlashSpeed 1.0  p NAD hgNAD lfXEPTR lfpNu ( *)@ F)@ J$H~aP)@ a l)@ g"@~ apNuA pp r t vRJGfжff( gSSR`TgSARJGfQr ` Nu |    r     , `  GnuPacker 1.0 Object   T &m $Kae>t pa$AFgpaQe$NugNu* )h Z J)hF FA>  p ` n 2    GP10   *  GnuPacker 1.0 Data  A ` <     n     4 h  GnuPacker 1.1-1.2 One Segment  T * 赒&m $Kf* e  t pr f* Q)h X J)hd FA\  p `       t     4 h  GnuPacker 1.1-1.2 Two Segment  P gf* 赒&m $Kf* e  t pr f* )h ^ J)hh FA`   `X8    GP11   .  GnuPacker 1.1-1.2 Data  A `$O"O"3X #X #X #X *O,Ha O NuO"O~2Q*O,HaO NuY -  )@ Ra )@ gB+@ Ь +@ / l R &m Xv~|zx" Jga @S$Ka @"*_aNu9|  p Nu m "m R- -  g:v  g2g2 gg`g`gt ±WCfv `pNu9|  p Nu f  G  ,     . b  High Pressure Cruncher    $H&Ia  ( a  |& y  "D "HD"a  p$`D   H      6 B  High Pressure Cruncher Unlinked rtC` <p )h  F)h R Jz ( <(<>(D"( A  ,@a v*@Jgt"@$I( a  9|  Jf - )@ a ()@ f9|  "Ma d`>"@$I  Mt  HS@J g W` WBg"Ma (pNup Nu   F  D     . b  House 1.4 (RSI Packer)   < "*$I  fa  e:rvfa  e  RrBDa  z | ~ ( y( ( A4a J@g| l R,( B*( *l GX )F F)k ^ J*+ ")E  a ")@ f"Ma d`>"M @+ /&H p~g(g`t gSBWGg9|  p Nu  ~  L     ( \  HQC Cruncher 2.0     ,y   N|C
NhJg >Av AdC C$!I &HC  f  ~ )  R, ހC* ?  g*  g"  g&  g$  f  XSf`$  ހP`XP`P gCހP` )@ a )@ g  "@A&z +}<+>+pЃ"Sf "?  g,  g$  f"`  g8  f@SfpNu  "gH$`( a JLJf` "gR"Sf`9|  p Nu   K  x     , `  IAM Packer 1.0 (ATM5) v HATM5f NR K/ (MI ,HSN&`  : ( a )@ g"Ad"@)h  ,n . (N l a ^Nu d  L  ATM5   2  IAM Packer 1.0 Data (ATM5)   ( )@    a h)@ g,n ."@pШ N l a  Nu   I  H     , `  IAM Packer 1.0 (ICE!) v NSHI x,La~ICE!fnatKan."Npw!Q&N ( a )@ g"A4"@)h  ,n . (N l a Nu|  J  ICE!   2  IAM Packer 1.0 Data (ICE!)   ( )@    a p)@ g,n ."@ ( N l a NuNRX K/ (MI ,HS&`  :UgdCDE`$|a^g`|aVgE `&`|aDECI64fLf&e|`@|a$J*g2P`   f`  `  BEg
EQJENu&`|a84@HJ*fXF`.a2I|a m| ag
|aEA`*`2P:`aDgt@IP$$Q`f&e &fgZ| a tg &Crt fTATAQP`Q| a HgCpQP`QBC&&H&&M` M,,,,QNZNu   `````` NSHI x,LX K ."Npw!Q&N%aT*Ka|d4><atdpax>|8#zD@DADBDCQQH QLSfpw#QLN[Nua*d"r a$dC v !a"H@@Vҩ %QnNuf%Nur f%AQNuC taTx r 1 Hka1 Ag"C vtaTr 1 HaBq jD`r ptadpt?aBC@!!Q` R                       	             `  .      ( Z  Imploder 1.0-3.1  a g*p I 6 fN<< fQ  f
ha. fpNu| `  d  /      2  Imploder 1.0-3.1 Protected  a @g*p I 6 fN<< fQ  f
hN fpNu         2   Imploder 1.0-3.1 Overlayed  $(  Ya gJp `  f@h f8I ^ f.N<< &f$haV $f"(AA QhNu 6fpNu| `  t        <  Imploder 1.0-3.1 Overlayed Protected  a >g0p `  f&h fI ^ fN<< &f
hN $fpNu j  0       0  Imploder 1.0-3.1 Library  a g2p C  f&N fN fHf
(   fpNu t  1       :  Imploder 1.0-3.1 Library Protected  a bg2p C  f&N fN fHf
(   gpNu R  2      $ L  Imploder 4.0  a g p I ^ fhN fQ  fpNu|`           .   Imploder 4.0 Overlayed  $(  Ya gJp `  f@h f8I ^ f.N<< &f$haV $f"(AA Qh,x 6fpNu|` n0  3 X     ,  Imploder 4.0 Library  a g*p C  
fN fN f
HfpNuO*OB l R ( Y: SE +J r $?҂XQ ЀЁ*)@ a +@ )@ g P +@ a +@ g X0S@"EE Q9|    f vXj f jQ |Ah h6gP |+j   *G  f <X +K /J, |fvO(OA&C """AC $"""A()P AxC """" ,  )@ 9E 4,m  - ( $N m "m 0, 4HC a PO 6`xO(OA&C """""AC ,"""A()P AxC """" ,  )@ 9E <,m  - ( $N m "m 0, <HC a O >(_ )I  m "l R   B ) Y BS C  Q."m a  O NuO*OB l R (  W: SE +J r $?҂XQ ЀЁ*P +@ a +@ g X0S@"EE Q9|    f Xj f +j   *G  f X K +K  (A+H   f t pX"gԐЁA `S  f h"(  &AЃ   PXh gh g
h f 2"( ЁAQXXQ+@  9|  Е)@ a +@ )@ g  /O(OA&C """AC $"""A()P AxC """" ,  )@ 9E 4,m  - ( $N m "m 0, 4HC a O 6(_ )I x  )I  m "l R   B ) S B )  Y C  Q,x  m "m  x -  N", x Ҭ R m  xP ӘXSf."m a : O $NuBO*O l R ( U@: S@E +J r $?҂XQ ЀЁ*)@ a +@ )@ g `$ +@ a +@ g HPJ* gY* +B G "*X0U@kE Q9|    f X +J /O(OA C """ @  A C $"""[ 8)S B, A $C rj  P t J jSB2QA C r0YQ ,  )@ 9E 4,m  - ( $N m "m 0, 4HC a  O 6(_ 	 )m  )@  m "l R   B ) U BS C  Q/| "m a O  Nu

 z .fa   j< f$"  H瀄*G m 0H 0  ?"L!"  REl 4f*GNu Ѐj,"  fah "gfa\"t faRԚ"Sf`"  "MHQkbLHC  `LM  Pg Pg
"Sf` Ba`H&J:4, , f ` f ddf dTf dDf d4f d ~`:f  f  f  \ ~`p~`p~`
p~`p~ 6f df d| 4pX`f B`|4pf BSfF| :F>f dCf d:t0P`:t0X4p$j  gf FSfRFM*KƻdĽf*JSEkS fJBg
SEkSBfS f @ A 8LNuz .fa   j< f$"  H瀄*G m 0H 0  ?"L!"  REl <f*GNu Ѐj,"  fah "gfa\"t faRԚ"Sf`"  "MHQkbLHC  `LM  Pg Pg
"Sf` Ba`H&J:4, , f ` f ddf dTf dDf d4f d ~`:f  f  f  \ ~`p~`p~`
p~`p~ | 6f df d4pP`4pX4pf BSfF| :F>f dCf d:t0$P`:t0X4p,j  gf FSfRFM*KƻdĽf*JSEkS fJBg
SEkSBfS f @ A 8LNu n  M      " 2  ISC Pass 1  2< tCa Nu~ )h  F)h h JC *I~ z a $)G  a ")@ g$@"Mza 
`   n  N      " 0  ISC Pass 2  2< tCz` ~ )h  F)h  JCx*Ix v a L)C  a )@ g d$@"Mxa 0`    O      " 0  ISC Pass 3  2< tC<` ,~ )h  F)h  JC| ~ a )G  a J)@ g $@C|a p l   f", )A  l ~ Hza J@fRC,.a J@fDC.a vJ@f6~2< zC.a J@f"C.a J@fC\.a JJ@fXp`"l <a )l  <)l  "B B Nu    	G N`` `L`6`:```F<  `Hf  g  t2 a  Q`Ha  X@`  a  	L .@Hp BNu3#f< G XIT*LB2< Rp r fNu    	G N``$`\`@`D```VB`HRJEgQNu| RJEg` RfQSfNu< `RJEgQNuHRJEgQNuG B| ~ p r a   f" gn2 a  RJDgQ`Ha|X@` a  	N ```d``P`T`V gr`ra&`: g gr`ra`$ fa`hHa*`&ar J@fjNua@ r`^ a`Va`H a`L`2JfNu NuJf~ Nu~ Nua g$ a`$ p a2  R JRARJDgQ` /,l R , V[p ( k< G I *Lp 2< Rf
fd4 e5 RJFg  `(_Nu >           t  Lha/Lharc p h-l f( h f
( - fpNu   L      6  LhaSFX  p   fSFX! ,fpNua g  a ACf| >AfSAf| " l  f| "   , g " @f| "B,   f.J @g   l @f9|  a g
A|a Nua Nu  /	 <  La g J/ ,m &",  $<  NJg */ ~ l  fr"$/ &<  LN o 0<X  gQ`X  fPX  fX  f   A p ހX( 
( 	( ( ހ"$vN"$/ &<  LNg~a  o p gpހT( 
( 	( ( ހp ( S@"o A g \f< /QB"o  *g/9|  a rf.`A 2a .Jg` bp. "N"_a "_ Nulha   -Q e  S f [fS 
fS f   "A "   #o E S fBRSHNL`Nu r    LPv1   $  LightPack 1.5  ( )@ a )@ g:"@$( A < gSf`( H( ( S@SgQX`pNu   L      .  Lzx p PLZf
( X fpNua g  a AhCf| >AfSAQf| " l  f| "   , g " @f| "B,   f.J @g   l @f9|  a g
A a Nua Nu  /	 <  La g  / ,m &",  $<  NJg  / ~
"$vN"$/ &<  LNgvJgra  o ( 	( ( ( ހ   p ( ހS@"o A gQB"o  *g/9|  a f.`A 0a >.Jg` jp. "N"_a |"_ Nulzx   x   S f [fS 
f   Do:S f( : f   A E S 
fBRSHNL`Nu l  Q       . b  Master Cruncher 3.0-3.1  @ &m P . "<   N:+@ P S"m "XT"Q4<6<`~  P       6 j  Master Cruncher 3.0-3.1 Address  D jS f dZBAf dBG 8vBA30 HxlFD)h > F)h H J4<6< RE   )@ a )@ g8"@A0 O&O& l& p& & 6 &&&&O JaO pNu~*I*YJ`jS f dLBAf d2vBA30 HxlFDSBf QQJCgAV30HB WGf  tf dQBARB3 gHSCf QQ3 HCA g0vf dQRCBB30Hf RQKs0`$BBvBDf dvx@f RQDE  HSA"WGg Nu  q       $ X  MaxPacker 1.2  8 JBgSEk  SBfSg "~C Lf eN]Q$H *)@ a )@ g  )j F)j J&@A(* "4***O*O*+j D +j  +j  +j  +j< +j@ +j4 +j8  +jD $+jH (+jL ,>* rG :H+G 0aO 4pNu,K *$K f JBg
SEk SBfSg~C @ 0f eNNu]Qf d ~`,~f  Q\ ~`p~`p~`
p~`p~ 6f df d| 5pX`f B`|5pf BSfF| 8F>f dCf d8u0P`8u0X5p$j  gf FSfRF˽f(JSEk $S f`  p  S       ( \  MegaCruncher 1.0     G. "+ A0"k $`  ra JgZB f$fa )hX F)h& JA``   f  U       ( \  MegaCruncher 1.2     H,x KL N:Jg0A  a  LNHAax` |  T       0 d  MegaCruncher 1.2 Address     G2 "+ A4"k $`  ra Jg^B f&fa )h\ F)h* JAd  )@ a g  )@ "@$I ~|zx  razJg@Dffabdr
afJBfra^`raX^BSBrfaBQWGg`  ra2vrJBgrvEgVvFgBraB g0Eg"ZB6`<  D NuSAt faQNura^B6`ra6`rfaer`rfadrfaeraSC2(WGg (pNu&l )K x,K A"H *I R$ rҫ Y划vցҀa  )A  a )@ g\$@$  B$B$"J*r ASg ( Ҁ$` $Xx $   $g$Sfa$  XSfp"l xa B xNu/ M" g  g _Nuf$   $R$Sf fB` gA`X g  gNu gTҀPCmX9|  B xp Nu    4     " F  P-Compress  p PACKfX~ c bQpNu9|  ,m &",  $<  N)@ g F", tN)@ xfHO  l "Of) /fB)9|  "NO Jg " N", tN)@ xg " N/ ~", $vNO(", $&<   NfO ` Jf
O p` C  O 
gr R  
g`BO ށ", $vNY", $vN,g *X a )@ <g $", $ &Ng ހ)@  l <)H p XLHgT (XLHf"a XJ@f"l <a B <`  l "HJg( :ffv ", $<  N( f^ l "HJf9|  g    /fB$H"	/	N"_Jf
 / JRC`" N /JCf9|  ", $<  N( gP"$, &, N/ "Ng "l <a B <Ha ha ,L` R9|  p `9|  p . "N", xNB x", NB "l <a B < Nu         & 2  P-Compress Data p PLHfpNuTp ", V$ x"Ha@JgX)@ a )@ g
/ /a<P8 pD f
9|  p NuD f9|  p Nu) ) ) NuNUH?~ m +m +m     +@   +AC a+@ , +@Э+@xB <   a d+@g  d <  a R+@gJ <   a B+@g2   +@Ba  m -a Pxfa$*N"ma 2"ma *"ma " L~N]Nu+O/(m Lr Cv8< 4< a T6< 8< ta F6< xta :6< xta .6< 8<  ta  C`Enpv rt><<025BBQ| .<  z LCzEGnxt2<;0X2466DBQ2Bl^,M nA "n*nInG` g
"XYxza `.DGoDg R   fa SJg  >+Fd>3p[kza ``>3p [jQ a Lzm gT04p E  2D4Zc<ZbY$
;  423  k99 63  k907  90 7  04  f`04  fG l BGna  x Nu^_Ed"v /a  6,HCDE2HC<DEtB`r BQ a  z6CHU*nE*_620 BBBKFAQ zavQA ?C&	   A  ֮$CB6  g DC[ڱn$nR   fa@SJg >Q` RA0QQNuHP nTN(  _NuHP .S ngQ-HB _Nu.nxNuH&m|    l8~ *څxJo     g . 
 `S` ' RF`LNuH/ $mz ~ l&t 0x r Fā, (2( *R` LNu f  X  z     " V  PackIt 1.0   0 p N*@ :rN:g  I(a  ,MI"$<  N (bGj hf`2   Y  PIcd   &  PackIt 1.0 Data G  V ()@ a )@ g"@apNu~$`  v fa\e(ra`BB grfaFRQWGgNura8 gD g>3  H RB6aRB2 WGgNu  D NuSABBfaRQNu3  HaRB6xRraJBfDV2aXBC`
    L      B  Pak 1.0    `4HC ,x N,@E */ LNJ@g )l  <)l  "B B 9|   <  La g / 9|  ,m &", tN)@ xfHO  l "Of) /fB)9|  "NO Jg <" N", tN)@ xg $" N/ H *l < -  K  -K -A /$o I dtX. M"Wf"$<  N( gT0J f&M | v SkaX0 RCCLeJg"$
Nаg~ "NHL0  @a ~a BLJkp`p XL0 `8Q :|ENuBBkad+ B@Ska` dB3 Nu"N", xNB x"_a v"l <a nB <B ",_pNu"_a Z,_p NuD    PHD     PHD  ( )@    a )@ g& <  Va )@ xg"l $@a"l xa B xpNu/P| <~EGI	KB`JRf@H K<M<&M2<1t:<Q2<04<<v 0[:<XB99UCQL8 `FM0 0R@^c.^bY23 j9 9430 j9  9 70 7 650 640 fRRv 830 jFdTD6Q~<`D d` RD1gK ` D(_Nufp`&D/ebrd
Rﮒ<~㮞HFFBFHFp FdX@Q ~<FdX@Q ~<25  d
Rﮒ<~㮞HFu DFM`BFHFD Q`        	        	      @ 
@     @ 
@    	      	      
       	      
       	   	     
     	   B  r  SFHD     PMC  ( )@ a )@ g"@"( A za KgpNu |   @     & h  PowerPacker 2.x p   0g  4f*XE6 Dfa 2 LfH,f
hf fpNuY V)h( |C8~ `   z   @     . f  PowerPacker 2.3 Master  p   0g  4f XE6 Dfa 2 Lf
hg fpNuY V)h( |C8~`  r   \     & ^  PowerPacker 3.0 p   Lg  Pf XHzx $fa V Hf
he>fpNuY V)h@ |CT~ ` 4         0 h  PowerPacker 3.0 Encrypted p   g  f XHz $fa V f
he><fpNuY V)h |9h  0<a g
C~ a Nu t   |     0 d  PowerPacker 3.0 Overlayed p   `f&Hzv <fa T `fh *f
he>fpNu)hV |Ch~ `  z   \     . f  PowerPacker 3.0 Master  p   Lg  Pf XHzx $fa V Hf
hd>fpNuY V)h@ |CT~`          8 p  PowerPacker 3.0 Master Encrypted  p   g  f XHz $fa V f
hd><fpNuY V)h |9h  0<a $g
C~a $Nu |   |     8 l  PowerPacker 3.0 Master Overlayed  p   `f&Hzv <fa T `fh *f
hd>fpNu)hV |Ch~`           & Z  PowerPacker 4.0   A( ""Sf$WB e$Sf$W ^ "CNY V)h |C~ a 8J@g~ a pa 0"l xa TB xNu    l     0 d  PowerPacker 4.0 Encrypted    $@(Df 5FRJ 
  $@0g\JS@gJfVJ`DY V)hN |9h  0<da g$Cd~ a J@g~ a a "l xa B xNu         0 \  PowerPacker 4.0 Overlayed p   fHz <fa  `f
h *fpNu)h |C~ a lJg~ a Da "l xa (B xNu           . b  PowerPacker 4.0 Library  , N`$(nJ fG \ KN KNR.'"@NLNuY V)h  |C ~ a zJ@g~ a a r"l xa B xNu          8 l  PowerPacker 4.0 Library Encrypted  , E FN`$(nJ fG \ KN KNR.'"@NLY V)h  |9h J 0< a g$C ~ a J@g~ a a "l xa B xNu          8 d  PowerPacker 4.0 Library Overlayed p    fHz X <fN hf
h *fpNu)h  |C ~ a Jg~ a va 6"l xa ZB xNu Z    PP20   (  PowerPacker Data  )h  |C /	~ a  J@f"l a B B "W~a  XNu r    PX20   2  PowerPacker Encrypted Data  )h  |9h  p
a xg*C 
/	~ a  vJ@f"l a B B "W~a  ZXNu    PPLS   *  PowerPacker LoadSeg )h  |C ~ aJ@g~ a Va "l xa :B xNu/	 l R V"H  / Ѭ  , a H)@ g. I&@K |vJGfa"`a  9|  p  fJBf"pPNu~|zx$K" JgadSaZet pa^AFgpaTWCf:paDp 5 4Ffa*epa."Apa*AGg"	`aRB3 WCgNuf* NuS@r f* QNu~|zx$K" JgaSadt paAFgpaWCf:pap 5 4Ffaepa"ApaAGg"	`aRB3 WCgNu*I/, V"l R )  C  )C )$I R 	 VDY$ )@ )I VH?"Ma TL)_ VJ@g8/ X l   $    g&ցY  Qg
Sf Yf Nu? Cv x z g{E؅HD`l g
p 9|  `p 0C  ", VYHDYSfpTJNu l $, Ԉ "  AfA    "(RЁ`AgAfP"Ё`AfXP`AgAfXfNuAf4XR"   AX2gRAXTSAgJfVX`V"  A` fAfXX"g VЁA `Nu)l  x)@ a E)@ g  l x"@p "  "XAf """""R   "XS     [   '        v                                                                                                                                              ~  }  |  {  z  y  x  w  v  u  t  s  r  q  p  o  n  m  l  k  j  i  h  g  f  e  d  c  b  a  `  _  ^  ]  \                                                                                                                                                                                                  f`AgAf
 fpNuAf"X`AgAf""XJg"XSf`AfNR"   AXr 2"JAg*t 4"$"PSAgv f
փԃ"X`V"  A` :Af:X""g *$"XS$H x&	 (؃""PUSf"XSf`Nu X          , P  ProPack (RNC) Mode 1     Hz^HHz <  r,x N:rJK	h`  `          4 X  ProPack (RNC) Validate Mode 1    HzHHz <   r,x N:rJK	`  `         0 T  ProPack (RNC) Key Mode 1     HzjHHz <  r,x N:rJKM8` ~ h    t     8 \  ProPack (RNC) Validate Key Mode 1    HzHHz <   r,x N:rJKDM`  b    F     2 V  ProPack (RNC) 68000 Mode 1  p RNC2f0< 8 nfA  fpNuA2K` 6 j         : ^  ProPack (RNC) 68000 Validate Mode 1 p RNCf0< @ ~fA  fpNuAKt`  j    R     6 Z  ProPack (RNC) 68000 Key Mode 1  p RNC>f0< : nfA  fpNuA>KMj`  r         > b  ProPack (RNC) 68000 Validate Key Mode 1 p RNCf0< B ~fA  fpNuAKM` n N          0 F  ProPack (RNC) Data Mode 1 p RNCf
(  fpNuKJ`  V          4 J  ProPack (RNC) Data Key Mode 1 p RNCf
(  gpNuKMT`  X     4     , P  ProPack (RNC) Mode 2     HzHHz*WJg *U.XMAK` $ `          4 X  ProPack (RNC) Validate Mode 2    Hz HHz*WJg *U.XMAKD`  `    X     0 T  ProPack (RNC) Key Mode 2     HzHHz*WJg *U.XMAKMl`  h         8 \  ProPack (RNC) Validate Key Mode 2    Hz"HHz*WJg *U.XMAKM` J b         2 V  ProPack (RNC) 68000 Mode 2  p RNCf0< 2 hfQ fpNuAK` j j    f     : ^  ProPack (RNC) 68000 Validate Mode 2 p RNCRf0< ; xfQ fpNuARK`   j    B     6 Z  ProPack (RNC) 68000 Key Mode 2  p RNC.f0< 8 hfQ fpNuA.KJM`  r         > b  ProPack (RNC) 68000 Validate Key Mode 2 p RNCf0< B xfQ fpNuAKM,`   N          0 F  ProPack (RNC) Data Mode 2 p RNCf
(  fpNuK`            4 J  ProPack (RNC) Data Key Mode 2 p RNCf
(  gpNuK4M |9F Cp Q0xg8 $g4$Ig /c   9b  `Str ! 0Ё 
fNRRr g /cT 9c  @cD Fb> 0 	c_鈀`p |> 9|   ( )@ a <)@ g"@0NJj9F p Nup |> &( " A  (A&H"t  fA `R    c (  RNCg, ( ԀA  f&XX gXXԀ`X`Ԩ  ( VPPSf9|   )@ a ;)@ g  /$@$  B$B$S,l RM (J  $  fX$($`      c +  RNCg0(X $g$Sf $  fR $g
$$Sf`$`> + $( XA "J0/(o N(_Jj(_`  $   + VSf ^(_pNuHO $O:  ( /@ ?, G *IM  ( I "Ka  +rBf  H@? ~ + ^pra o  go  go  go  fa  EgTr`   Ja  A a  A a  pra  8 SD`(A p atDCA ahٻgBٻW@f4 JaPS@k&W@f]+ XriSÁQ` /"Ma 2r_g/AOLNu0FXf( <la4( =  mS   0( >FlaNuprFlaNuHFXK#^#HF~NupraS@k|4 6 O"OpraQprt H 8C f:zmSE0*HE>SGUVQzn0A <E =|SnSF1F >ԀQR fL O NuHO $O*  ( /@ ?, G *IM  ( I "Ka  +rBf H@? ~o  go  go  g
o  f 2pfAQEg Tr` `2`r`r`t`z`z`z`  xgFQTF g D g 8 g , g  Q]`  gDgdSDgD 	ggdgFge  JFf
RFg xF^ MSHLdػg  SDJFfƻg  ƻg  Q`(ػg  ػg  Q`e" g~]e gn]dgx| g6d Hg4d ~RDg0d Pg:PD` Fg$F F g e V` J`````fe /"Mar_g/AOLNu Jv "tId
AQ0Rft 2B B42  ISfNu  Z !      " F  Relokit 1.0  f S"؂"QHAII        9Q*O&H +Ы*a 6.+@ g Bp 0+HA"m <+>+z +IN  2Jg tԫr 2+Iԁ m v p H8 g"@g$vPp 0ԀZ`fTSDf`JCgP` a 5)@ g  "@"  BBY2B"S/(IE,m  N>+p 0H"   "    ?Q"*	$ (PJg4"Sf,	Jff"E#|  `Xg/&E'<  &_a$"  XSGf(_ )I p"m a 4PNut p ( gHJBf"  t"p "`r HJf
( ITH& փ"SDf`JBgBNu j   "       " V  S-Exec 1.1   2 "<  ,x N:Jf`  x+@+@+|     <  "< Ap "(    ` * `   # PACK   0  SoundTracker Packed Song   ( )@ a 3)@ g"@$@  ( Az|~	a 3pNuB  [ $      & J  Spike Cruncher   ; xa*{ vV; vAQnNu ( 2)@    a 3X)@ g0>( :$@ 2/
E "J 6/	K&Aa"_$_ l a  pNuzvald,t afdptUB5  abu V5 AسWEf<pa:dS@fBA5 ka45 Axa*$5 Ba u "&I۳WEgNufNur aASjNur Gft gRBWJBjfNu Z  s %      . B  Stone Cracker 2.70-2.71   :W:`:]AZ)h  F)h  JG M` 	 `  t % 0     4 H  Stone Cracker 2.70-2.71 Kill   v ::: K)h F)h JGM` 	 V   %      * >  Stone Cracker 2.92     vx z|: )h  F)hd JGK ` 
 h   %      * >  Stone Cracker 2.99     vx z|: )h  F)h\ JGxK hNZg 
$Y)hV J` 
 \  + %      0 D  Stone Cracker 2.99c-2.99d   : .%t f.%)h  F)hL JGhK ` 	 ^   %      *   Stone Cracker 3.00    g2`rNԀFgrRN0  Sje.c=c <=c Nq z   %      . b  Stone Cracker 3.00 Kill   g2`rNԀFgrRN0  Sje.c=c <=c F)h  F)hP JGlK ` 	 :   % S300   .  Stone Cracker 3.00 Data G K ` 	l R  u % 8     * >  Stone Cracker 3.10    Sf`  t Ѐ)h v F)h JE(` 	 R  , % (     * >  Stone Cracker 3.11   Sf`  t @)h v F)h
 JE` 	 v  a %     * p  Stone Cracker 4.00  p   f:"(  A K gK fXI L fS j ^fpNu~` 	 8  b % S400   .  Stone Cracker 4.00 Data ~E ` 	 v  c %     * p  Stone Cracker 4.01  p   f:"(  A K gK fXI L fQ ^fpNu~ ` 	6 x  - %\     2 b  Stone Cracker 4.01 Address  p !  Jg!  NfX.@I PfE  VfpNu)h 2 F)hD JEL~ `  8  d % S401   .  Stone Cracker 4.01 Data ~ E `  x   %D     2 b  Stone Cracker 4.01 Address p !  Jg!  NfX.@I PfE  bfpNu)h 2 F)h, JE4~ ` 2 b  v %      * Z  Stone Cracker 4.02a p Hz H $gHz H (fXN  6fI < \fpNu4<`  j  y %      2 b  Stone Cracker 4.02a Library p Hz  $gHz  (fXI ,fN  6fpNu4< <` L v  w %     2 b  Stone Cracker 4.02a Address p C  &gC  *fXL 
 bf{ fpNu)h " F)h V JC `  8  x % S403   0  Stone Cracker 4.02a Data  C `  j   %     2 b  Stone Cracker 4.10.2-4.10.3 p Hz H $gHz H (fXN  6fE xfpNu4<` 	 l   %      4 d  Stone Cracker 4.10.2 Library  p Hz  $gHz  (fXI ,fN  6fpNu4< 8` 	. l   %$     4 d  Stone Cracker 4.10.3 Library  p Hz  $gHz  (fXI ,fN : 6fpNu4< `  ~   %0     : j  Stone Cracker 4.10.2-4.10.3 Address p NqE  gNqE $fXC  (fL  6fpNu)h $ F)h JC` f x   %      @ d  Stone Cracker 4.10.2-4.10.3 Address/Plain p C  fM  fA  zfpNu)h  F)h  JC `     %     > n  Stone Cracker 4.10.2-4.10.3 Address/Pro p N{ VgN{ ZfXC  tfL  fpNu)h  F)h JC` lR   % S404   8  Stone Cracker 4.10.2-4.10.3 Data  C ` ,)n   +  a ()@ g0~ | z . . . A  "k   $I apNu  r Ѐfa  d  Ѐfa~evx`AЀfanAvxA gv	RDa  1 WDg l &H . . ~  ggıfNug`gRGıWGgNu  D рNuЀfad(AЀfaAA g6a08XD6` t6a"^B8`va8SDD vaW` \t ЀfaBQNu + )@ a &g)@ (@ L  apNuvz|x + .%t f.%d&2alԀFg2f.%Q gNSf`raHr $ 3  Ef&f.%e2a,ԀCgԆԆ`
2aԀFg2Ra0  gSj`NuSAp f.%рQNu + )@ a &g)@ (@ L  apNuvz|x + .%f.%d(trajԀFgrf.%Q gLSf`raDr $ 3  Ef$f.%era*ԀCg2`raԀFgrRa0  gSj`Nup f.%рQNu )@    a %T)@ g @apNuz|~&Z  N`Ѐf рe:v xt Ѐf рBQւGgxЀf рQ±ghSf`	
t Ѐf рBЀf рBr v ; Ѐf рAQEet v xЀf рCQԃFgV"HٱgSf` `Nu"( $A($W A"E )@    a $\)@ g   @&ZXz|0N@`@f0@e@&t x@f0@BQBFgx@f0@Q±WCgpNut x@f0@BQv r ; k@f0@AQx@f0@AQEet v x@f0@CQԃFgT"HٱgSj` LpNu"( A"C  aga  gpNu )@ a #Z)@ g$@( <>!zaderaj fpNura\HL 
 paRCM &g&ga2e&ga(e&gaev ra"@_@g&WCg`SFj>!|ONu0Aj>!E0A{Nu       
        ?   l )H xp".RЁ2g   HA gD2?Ё`4X4JdR2g$PTt X`x N  XSAf`XPf)@ a ")@ f"l xa "B xp Nu"@ l x"  B""RB"$I"Q2gTHA g*2?$      ""g"Sf"  `t"$?      """  `R#|  4JdRr 2g2"t 4"t & "`x N  ք"SAf`B"  YXPf N"l xa !4B xpNu"( A"C  aga rgpNu )@ a  )@ gr*@$Mx SDzL pv Q <!~Fd>rQ <!~FebrvQ <!~FeRQ <!~FdBrva"A@e@rvaAraWDgpNūAjG2<!DAE"HANuvraAFW g<!~Fd2A `r	A  Q <!~Fdr Jag W`  \ &     * Z  Super-Cruncher 2.7  p I  DgI  HfX& \f :  fpNu ( a )@ g  <  Xa )@ xg E *J$l ,l  "l ݵf l Jfj"N"fA  " "l x&I2Uf"X$l Hz   g    \g 4   ng   g X"l xa "B x9|  p ` ^"l xa 
B x"N"f&l &  BB $KG |~  NgFJgB $    ?" Q䉂&  gh gh g
h gXRX`$S%G g  Jg  &  ?" Q܀&PP  f( gFn g>n g6n g.X`*Jg&Sf gn gn g
n gXf&  X` h&  *KXP~`f**KXX~fB`&XR`)F pNu/tI PG fr VAWBf|`t+ fr X 2  g\Sf`P+ fgHgBg<`4+ g+ fBg(Bg"Bg`+ fصg`ge l(_NuzG X+ fصf<Nu+ f$r t 6x H RWEfQ`frt`geNu/tG jfp V@r(JܵWBg:`<+ fp r SX@`ڰ+ fp r SH`İ+ fge(_Nu/ Њ/ G vp ra    f0J fr a   g  `  p ra  T  g  `  r a    fp raz\  gj`b  fp rab   gP`H  fp raH   g6`.  e  I gg`  > gd >$_(_NuQ vQNu t  ] '      ( \  SyncroPacker 4.6    E5a>g4a:f(pa6T fpa*Z fpaP ('MXA HzQ` 0   ^ '      , `  SyncroPacker 4.6 Pro   V f"[  a>g4a:f(pa6T fpa*Z fpaP(g(i ( r hYMAHz:P`   N  _ 'p     , 8  SyncroPacker 4.6 Raw  rtC` :(M8Al Hz Q`\(  ` '     0 <  SyncroPacker 4.6 Raw/Pro  rVtC(` (G(I ( R HYMxAHz P)n J$Q x$WN a gZ$_/ "@P xN W)P FE JfQ xa F)C  F a d)@ f"_a d`"@P xa "_a PpNuH  E v `
H  v aLg@aHf(paDT fpa8Z fpa,P fpa SEJ, xg `SRQm"LyNuB@z Jf~ SQB@JNuag6x&NK pa3P 25P aA$ISDJ, xg"`SRQ` ^G K  afx`paX m2fpa\`(paP 	g fpa p (`
pa dE H8`H	v p  ggRJ, xg ` B`
   g RJ, xgQ`LENu   ) (      ( <  TetraCrunch 1.02   p mK @rI &H)k  F)k J + ␫ A &"+ , z + ?:E+ <E+ + C ` r ~  * (      & :  TetraCrunch 1.1  p m`.SAt f&H)k  F)k  J + А A  &"+ , z + ?:E+ <E+ + C `  |  % (      $ 8  TetraPack 2.1  v m`8SAt f&H)k  F)k J +  A ."+ 4 z + G:E+ <E+ + C ` x   & ( t     ( <  TetraPack 2.1 Pro  m` NSAt &H)k  F)k p J +  Al "+ Ғ z + :E+i<E+%+ C(`   z  ' ( (     $ 8  TetraPack 2.2   m`8SAt f&H)k  F)k J +  A  4"+ L z + _:E+ <E+ + C `|Z  ( (      ( <  TetraPack 2.2 Pro , m` `SAt &H)k  F)k p J +  A "+  z + :E+<E+=+ C@)@ a )@ g  | QNqf|"@$`  a.e:2va&eZrx ah6DraQW`Hrx`f  D Nura8 m gra(6XC2`26JFfBTCa2 WCg`SAt aQNu l $H fr gRAWAffpNu J   )      ( <  TFA Cruncher 1.54  p QQԳlzr)l 0 F)l  J`L t  $ *      , @  Time Cruncher 1.7-2.2   JgZB f$fa )h 0 F)h, JEZ * *)@ a r)@ g"@ J$`a tNu d  " +      , `  Titanics Cruncher 1.1      )@ ja .,"z/	 nfa  "  | `l  # + T     , `  Titanics Cruncher 1.2   ,t 4:PvN <   r N:I)@ $f"MNbLop | hNqg|/?p 0( V.(H*H,R*,GP"g&  ڀJga   gPRڀX fXXQ   < _ !@ a $!@ g  "@:,R"  B"BS" L "     뉀"Q f"    "`6"    " "JgG a& g"  ""Q "f"  QpNuE p fa~e@fave,raz6ratJEgFNWCgNuraX6PC`raNTBDBv`raBB ngrBvBa0CRBDB1  NW`ra6TCraVBDB` D Nut faRQNuRNuNu   7 ,      ( \  TNM Cruncher 1.1   X P S"m "XT"Q/,S&m (KJ"<    X  ()@ a v)@ g("@z (<(H>(N ("(A$Ia bpNu    -       , `  Trash Eliminator 1.0   ( fa  peTrBDa  r6DrfaXQQN >r)h * F)h  Jz ( I<( >( A `   ! .      " V  TryIt 1.01    "g4`&-  f
xr "g$`- fx "gr "Y"Y&H)h F)hf JG )@ a T)@ g: <   a J)@ xg**@"@ K><"Q+l  C$a"l xa &B xpNu$m  - &- A $ ,H~*!(!&Hp| SGj~*(!S@f
 ܆| <F d܎&F`Sf"m  -  I$I p "- "f"gX"  `N- !fx`- #f
xr "g4`&-  f
xr "g$`- fx "gr "Y"Y&H#Q` m m "H !- g- 	g! nNux ! d!`- 	f!- 
`!!Q` v   /         4  TUC 1.16d  b p f
*D  (  " AhNq0f)h8 J AS K- R @ )u  F`D   / @     & B  TUC 1.16d Data  p ( RA AM.F.fpNu*H~ HG&<rich0R@@ C  0HE ,HFD
HdP xaB xL& )@ a )@ g&@aNuz 0g ,JE  0r 5  a ( ؋p f
*D dT@06  jF@@ e  f."HAa  r 5  @$1  a  ЂJ, xf&`  XX`  @bB@2 a  4 ra  J, xfWBgb9|  p NuRRWBgH`4 2 A a\V@24 IA TAaLDJ, xf WBg"`RRWBg`J, xf`RRf RFGe pNup f
*D QNu    0 8     ( \  TurboSqueezer 6.1   faDdbfa<et `&fa0etr `fa"dtr`GpГ"+ EЁЁa &)@ gF"@"  B + "BS"/	A  + "U"Sf J$I*I a |$+ "J$_a  Nu b   0 0     ( \  TurboSqueezer 8.0   އfaPdnއfaHet `&އfa<etr `އfa.dtr`G`f
    0       . b  TurboSqueezer 8.0 Small   a>dVa:et `a2etr `a(dtr`rta(6 @ra  GpЫ "+ Ёa 	)@ g  "@"  B + "BS" K$I *IPa d$+ "J "U"Sf @g  X @f( g"""` MX!` f ?"XSf )M pNuz|?~ v faldBfadet `&faXetr `faJdtr`rtaF6 @ra> WEf&Fgfae<ra"6 raT@10 WEgNu. D Nup f. D PQNufae
ra6 r`faer	t@aB1  g1  f :Nufaert `faerar6 a@ 
` trar`z|?~ v އfaldBއfadet `&އfaXetr `އfaJdtr`rtaF6 @ra> WEf&Fgއfae<ra"6 raT@10 WEgNu. D ߇Nup އf. D ߇PQNuއfae
ra6 r`އfaer	t@aB1  g1  f :Nuއfaert `އfaerar6 a@ 
` trar`    1      . b  Turtle Smasher 1.3-1.41   6`  rfa2er`rfa$drfaeraSC2Aj)X F)X J )@ a )@ g"@$IAa Nu p  z 1 2     * ^  Turtle Smasher 2.00    >3p[k  z<`>3p [jQ <zm g  V)h F)h JA*`Jt  { 1      0 H  Turtle Smasher 2.00 Data  p T.S f2.00 fpNuP/r z a" _Jg)@ a 
)@ g"@r zagpNu9|   <  a g. B/ B/	// OaO "Ga JNuH$@5EHPa 	 _ !@ LNuHP,h  NC`Enpv rt><<025BBQ| .<  z NCzEGnxt2<;0X2466DBQ2Bn^*_ U"m ,m *NInG`xz<`DGoDJmgR>+Fd>3p[kz<`>3p [jQ <zm gN04p E  2D4Zc<ZbY$
;  423  k99 63  k907  90 7  04  f`04  fG l dGnNu^_Edv 6HCDE2HC<DEtB`r BQ <z6C/A    600  _BBBKFAQ z<QA ?CEєDGGOJmg
Q` EpCp`    2      * ^  Ultimate Packer 1.1  j vN,x GCEz t aBAH` /m  <LNu <  a )@ xg  *@C+IGC$Kz t a a .,+F a $p4+D fp$ІЄ)@ a F)@ g|,@,  B,   BB ,,  ,+N ܎Ca  a  C a  C a  C a>e,  .- g,Ba  ,SfB,  `-<  p"l xa B xNuah- gg- g$- g>NuaLp QNua@>a<QNua2HRHaL&SQNua>a m QNuv &20 kafHC`x aaaNuSBd$cPBAfQBaB  MHEMNuH mC 0<Q+HLG NuMx ?XaTNua62/ = Nuaf0/ =  ?XaT0/ = ?XaTNuQBdAfaMPB Nu 4   3 4      0  XPK p XPKFf
(   fpNu~ `<     3 4     $ :  XPK Encrypted p XPKFf
(   gpNu~&H ( )@    , a  )@ g  9|  $n .NC p NJgx,@*OBJGgA//< Xt//< Xq/, /< Xb + P/ /< Xp/, R/< XS ON.M/ "N,j .Nb~ g~ 9|  @mA F@@9p    Nu                                xpkmaster.library N  nN  N  N  *N  PN  JG            z                            "  j  h  n  t  z  Հ  Ն   
      ~  5  5>  8  8  9  9  :<  :J                                                                             								







  !!""##$$%%&&''(())**++,,--..//0123456789:;<=>?  @AA ā@A ΁@
 ˁ@	AA ځ@ ߁@A Ձ@AA Ё@01A3 2@6 7@54A< =@?>A:;A9 8@( )@+*A./A- ,@$%A' &@" #@! A`aAc b@f g@edAl m@onAjkAi h@x y@{zA~A} |@tuAw v@r s@qpAP Q@SRAVWAU T@\]A_ ^@Z [@YXAHIAK J@N O@MLAD E@GFABCAA @@                                								







  !!""##$$%%&&''(())**++,,--..//0123456789:;<=>?                                                                                                                                                                                                                                                                                                                                                              #  Bootblock.library.sig                                                 #                  Jk                                                                                                                                                                                                                                                                                                                                                                                                            #  Tunpack.library.sig                                                    #      03&@^Z>2xȦ־&u?	$sohwixyL5ɇCͮN	lo<m3*|,X^c02F3T0F8                                                                                                                                                                    q                                                                                                        3  
MAShare_66                                 3        %          q                    h                                                                                                                                                                                                                                                                                                                                                                                                  3  xfd                                                                   #                     I#                                                                                                                                                                                                                                                                                                                                                                                                         |    Chryseis                                                                                          pNuXFDF              L$VER: XFD Chryseis decruncher by Georg Hrmann
          !   l                 Chryseis Cruncher 0.9   o2h *f*hf"  _ BfN FfI\fpNup NuH?>*H$UtA & ԀAP02|fXH`|g  Ԁ` ԀX  gX gRԀ`Sf +@  +@ "- ,x N:;|  +@ g  &@&  BE & T@&Q02B[6|f &`8|g&""& J"KH/
E :a  L$_` &&Sf &|g &gR&Sf`SfpL|Nu					


	
	
	
H<0xz&I" Jga*Sa e>t pa&AWAgpaWDg"`ZgNu* NuS@r f* QNupap 2 4WAfaepa6paA_Ag`a6RB10 WDgL<Nu              `   \   T                                                                                                                                                                                                                                     #  Tunpack.library.sig                                                    #                                                                                                                                                                                                                                                                                                                                                                                                                           |    FIRE                                                                                              pNuXFDF              |$VER: External FIRE decruncher for xfdmaster.library by Dexter&Bartman/Abyss, modified by G.H.
          !                    FIRE (RNC Clone) Cruncher    oFIREfpNup NuH?>*H$U * +@  +@ "- ,x N:;|  +@ g"@ JapL|NuH?*H,I(N  %G6|HFz xa,dFr a&d Kv  a&H@@VҨ %WDg `  f%Nur f%AQNupaSAk0gTSAgXadBadZ`bpaSAjp NupaAAL !a҅NupaSAkTAAL  aAa0`\pap `,pap `LaJ@gp`BaJ@gp`8aJ@gp`.p` g<` $ag  WDf$k 
`U@A g WDg LxNu 	                               U                                          #                                                                                                                                                                                                                   3  Virus_Checker                                                        p                     #                                                                                                                                                                                                                                                                                                         |                                                                                                |   d	GraftGold                                                                                         pNuXFDF                    !   8      R   `        GraftGold Cruncher (GC!)  pGC!gSNuH~*H U ( +@ +@  ,x "<  N:;|  +@ g U"m a
Bm L~NuHOGC!f  "C p4E  Sf$M T0 , ~@> vE 4a  ra  : E K(Nal  f(8 I  Ma\M2 4 frtazG #SDj## SEjra`f   4R@L}HC hS@fH@r4ASfOTLNur SGg`~0HF< HFHA0Acl >A02 Nu0⮞AnC< /tS"$ANut	I Ka
tI K H<`raz@2Ex : RD2Bo2a4SEf:	gBZSE`:2a8SEfL<H? B]t v x~<;C @0-@m @FF:JSfLNu                     (   ,                                                                                         #                                                                                                                                                                                                                   3  Virus_Checker                                                        p                     ~                                                                                                                                                                                                                                                                                                                                                                                                         |    LZWH                                                                                              pNuXFDF                    !   8      P   ^        LZ Warp Huffmann (LZWH) pLZWHgSNuH~*H U ( +@ +@  ,x "<  N:;|  +@ g U"m a
Bm L~NuHa r LZWHf a .G 
*IM a I BgdLp +A c>TO    gRLRH    gRHp g ?R `? IL H b~`  `0`D`D`F`L`L`L`RzgFQTFQ`lgEgdSEgE< 	ggdgFgenJFfRFgF^ MSHMdSEJFfQ`Q`eedgz| g,d ~g*dREg(dg4PE`g F F ge``````fe0g2S f`.LNurQNu                   (   ,                                       #                                                                                                                                                                                                                   3  Virus_Checker                                                        p                                                                                                                                                                                                                                                                                                                              T                                                                                                |    SSUR                                                                                              pNuXFDF              h$VER: External SSUR decruncher V1.0 (29.11.94) by WEPL for xfdmaster.library          !                    (SSUR) Cruncher    eSSURgp NupNuH *H(m  , , , , +@ +@  "- ,x N:+@ g"@ La JgBm pLp Nu;|  `;|  `H? z$ISSURf  a  a  ,t a  ela  4 6 SBB@އfa  @އfa  @އfa  @އfa  @އfa  @އfav@އfan@އfaf@ Qo"FCfއfaPda"4 a6 TC1(QnpJgp LNuB@BAއfa AއfaARAAASAއfa@QNuaF < ߇NuNu               p   x   |                                                                                                                                #                                                                                                                                                                                                                   3  Virus_Checker                                                        p                     '                                                                                                                                                                                                                                                                                                                                                                                                           |    TPWM                                                                                         X     XpNuXFDF              h$VER: External TPWM decruncher V1.0 (29.11.94) by WEPL for xfdmaster.library          !                    (TPWM) Cruncher    eTPWMgp NupNuH *H(m   , " YHAYdA dA+@ +@  "- ,x N:+@ g -  L"m a JgBm pLp Nu;|  `;|  `H" Pz eSk(Q`t JG TG$ISkQ`LpNu                 p   x   |          3  Virus_Checker                                                        p                                                                                                                                                                                                                                                                                                                                                                                                                              |    TSM                                                                                               pNuXFDF              h$VER: External TSM! decruncher V1.0 (29.11.94) by WEPL for xfdmaster.library          !                    (TSM!) Cruncher    eTSM!gp NupNuH *H(m   , +@ +@  "- ,x N:+@ g"@ La JgBm pLp Nu;|  `;|  `H?>X K(I,Ia4aL|NuaVd"r aPdC v !ajH@@Vҩ %QnbNup%QNu>  f.%߇`>.-%Wއ  `,އgNu>  f.%߇Nu.-%Wއ  Nur އgAQNuC taTx r 1 Hka1 AgC rtaTr 1 HaBq `r pt adpt@aBC@!!Q`                        	                         p   x   |                                                                         #                                                                                                                                                                                                                   3  Virus_Checker                                                        p               H      ?,                                                                                                                                                                                                                                                             |   dxfdmaster.library                                                     #                     ,/    ,/pNuJ     #	       0   xxfdmaster.library xfdmaster 35.1 (6.6.95)  1994,95 Georg Hrmann
 dos.library LIBS:xfd     2          lz<b `H *@+H "| 	 A`+H 
|  ;| # ;|  AX+H Cp!,x N+@ &f
.<NA+H *a L` NuH?:HzZ"t,m &N. gt"N,  <  "<  ,x N:JgD(@E"$
,m &NJg J k"$
NJgJ lA a(`"L <  ,x N.",m &N"NL\Nu"Nj* gX @XFDF g"NdNu!E B  - .f+H .`"@ ) f#H "m * g"@`" NuRn     Nup Sn  f.  fNuH &*N,x Jm  g
  p `D"MN,m &$m . 
g"* $j Nd`"m &,x Nbp "M0- m /- "N. Ld Nup Nu/p4"<  ,x N:Jg @0BI0 4 ,_Nu/ 	ga 4faBIfBp4,x N.,_Nu/p"<  ,x N:Jg @0SI0  ,_Nu/ 	ga faSIfBp,x N.,_NuH 0$H5|  JgJJ gD". *g,&Ak  n0+ n n"+ g"A R * NJf"fB B Bj 5|  p `%K %k  5k  5k  pL Nu0(   f/ (  PN _1@ f@1|   ( g4"@1|   ) g&"@/N _JgBh NuB B B  B $B (NuH 0$H5|  Jg@". *g(&Ak  n0+ n n"+ g
"A RNJf"fB B Bj 5|  p `%K %k  5k  5k  pL Nu1|   ( g"@1|   ) g"@/N _JgBh Nu/A t2Bg@gTH`0A  $Nu   L  V  d  x           	  
   (:K  a wno errors out of memory missing slave entry not supported unknown file no source specified wrong password bad hunk structure corrupted data missing resource wrong 16/32 bit key undefined hunk type file is not executable bad hunk_ext type buffer truncated wrong amount of hunks unsupported hunk type unknown relocation mode undefined error  NJgp NupNuH! ><  fFC t  ?><   k,   n$@0; *N &Jgmg><`
><JfBGp 0L Nu 4 4 2 2 > F F F V V 4 B  *  B F F F 4 4>< p NuS pNuXHSpNu gA`pNur  g< | m| g| m| o><p NuA`R `pNu g`pШ  ԀApNu g
ApNu  ft  IpNuH?>BHN> LAJGf \K XJ g`tԪ   ,x &LJFg "<  | g$"<  | g>< `  rHA2Y| |  T/ N:"~Jg   @  &&HSftg   |oB|oD|gP|gP|o|o`|g|g><  `  "L"QSlXINu `R"a g"Sf`RXJ`"a&I g"a(	&ٳ8 Sf`r  g l | m| g
`
E`R `$B,x g"B$ !N.`~ p 0L|Nu    
  "  	4 !    	L  	  	  
.PowerPacker 2.3 Normal    @o*hf f"  0fE6 Dfa 2 LfpNup Nup H?>. *H(UC8| !+@  +@ "- ,x N:;|  +@ g<"@A8 ,|/,(,OJGfa `a nXOJf"m  - ,x N.;|  p L|Nu  f hf ~fE6 $fa 2 ,fpNup Nup H?>> *H(UB TXH"H  ,\"0H@B/,,OJGfa 6`a XOJf ;|  r `LAC2- Nr ;@ fr/",n &Nd L|Nu    `  "  
 !    
  "  (  ZPowerPacker 2.3 Master    @o*hg f"  0fE6 Dfa 2 LfpNup Nup` ^  f hg ~fE6 $fa 2 ,fpNup Nup`     "   !        H  zPowerPacker 3.0 Normal    \o*he>f"  LfHzx $fa V HfpNup Nup H?>. *H(UCT D !+@  +@ "- ,x N:;|  +@ g<"@AT , D/,@,OJGfa `a "XOJf"m  - ,x N.;|  p L|Nu  ,f he>fHzx fa V (fpNup Nup H?>> *H(UB TXH"HPI , $"0H@B/, ,OJGfa `a XOJf ;|  r `LAC2- Nr ;@ fr/",n &Nd L|Nu    "   !    4  j  p  PowerPacker 3.0 Master    \o*hd>f"  LfHzx $fa V HfpNup Nup` b  ,f hd>fHzx fa V (fpNup Nup`     "   1         PP 3.0 Normal Encrypted   o*he><f"  fHz $fa V fpNup Nup H?>. *H(U;|   - ,g   @a l f  ,C  !+@  P+@ "- ,x N:;|  +@ gt"@$@ A0, ""Q"صf m C  , /,,OJGfa `a XOJf"m  - ,x N.;|  `"m A  -  "SfpL|Nup `  f he>fHz fa V fpNup Nup H?>> *H(U;|   - g   @a l ngp `zB TXH/0, Q _"HPI , "0H@B/,,OJGfa `a XOJf ;|  r `LAC2- Nr ;@ fr/",n &Nd L|Nu  x  "   1     :  @  rPP 3.0 Master Encrypted   o*hd><f"  fHz $fa V fpNup Nup`   f hd>fHz fa V fpNup Nup`     "   !          PP 3.0 Normal Overlayed   |o2he>f*  `f h *fHzv <fa T `fpNup Nup H?>. *H(UAh \" +A  PH&H - Ё+@ "- ,x N:;|  +@ g|"@Ah , \/,V,O/JGfa R`a &_XOJf"m  - ,x N.;|  p `: K"m $I    -  """"""љ"Sf"صf+m   pL|Nu  @f(he>f h 
fHzv fa T @fpNup Nup H?>> *H(UB TXH"HPI , <"0H@B/,6,OJGfa v`a XOJf ;|  r `0LAC2- Nr ;@ fA "U F""""r/",n &Nd L|Nu    H  "   !          BPP 3.0 Master Overlayed   |o2hd>f*  `f h *fHzv <fa T `fpNup Nup`   @f(hd>f h 
fHzv fa T @fpNup Nup`     "  h !    x    4  ^PowerPacker 4.0   o"  fHz $fa  HfpNup NuH?>*H(U.,,, DE*, J" +A   +@ "- ,x N:;|  +@ gF"@ J /,Oa 
XOJg m  -  a Jf"m  - ,x N.;|  p `+m   pL|Nu  fHz fa  (fpNup Nu0<pH?>> *H(UB TXH"HPI , $"0H@B/4p ,Oa 

XOJf ;|  r `LAC2- a 6r ;@ fr/",n &Nd L|Nu    "   !      >  Z  PowerPacker 4.0 Library    o"   fHz X $fN PfpNup NuH?>*H(U., ,, DE *, ` f   fHz X fN 0fpNup Nupt`       "   !          PowerPacker 4.0 Overlayed   o*  f h *fHz <fa  `fpNup NuH?>*H(U><E J \" +A  PH&H - дp +@ "- ,x N:;|  +@ g  "@ J , \/4p,OHa BLXOJg m  -  a 	Jf"m  - ,x N.;|  p `: K"m $I p  4p """"""љ"Sf"صf+m   pL|Nu  f h 
fHz fa  @fpNup Nu0<H?>> *H(UB TXH"HPI , <"0H@B/4p ,Oa dXOJf ;|  r `0LAC2- a 	r ;@ fA "U F""""r/",n &Nd L|Nu    X  "   !          NPP 4.0 Library Overlayed     o*   f h *fHz X <fN hfpNup NuH?>*H(U>< E `    f h 
fHz X fN HfpNup Nu0< `     t  "  x 1         PowerPacker 4.0 Encrypted   lo"  \fHzF $fa  fpNup NuH?>*H(U;|   - ,g   @a l f  ,Ad   +@   ,RP+@ "- ,x N:;|  +@ g  "@$@ Ad0, ""Q"صf m C  , /,N,Oa PXOJg$"m A  -  "Sf m  -  a Jf"m  - ,x N.;|  `+m   Q  pL|Nup `  <fHzF fa  fpNup NuH?>*H(U;|   - g   @a l ngp `pB TXH/0, Q _"HPI , "0H@B/,.,Oa pXOJf ;|  r `LAC2- a r ;@ fr/",n &Nd L|Nu      "   1         PP 4.0 Library Encrypted     o"   fHz \ $fN TfpNup NuH?>*H(U;|   - ,g   @a l Jf  ,A  D  +@   , P+@ "- ,x N:;|  +@ g  ~"@A  , DY""Yf" m C  , D/, ,Oa <XOJg$"m A  -  "Sf m  -  a |Jf"m  - ,x N.;|  `+m   Q  pL|Nup `   fHz \ fN 4fpNup NuH?>*H(U;|   - g   @a l *gp `rB TXH/ , $YYf _"HPI , $"0H@B/, x,Oa ZXOJf ;|  r `LAC2- a r ;@ fr/",n &Nd L|Nu  P  !                 PowerPacker Data     oPP20fpNup NuH?>*H U   +@  +@ "- ,x N:;|  +@ gF"@ UM PH - Qa Jf."m  UPH - Qa Jf"m  - ,x N.;|  p L|Nu    "(  !  p              PowerPacker Encrypted Data     oPX20fpNup NuH?>*H(U;|   - ,g   @a ,l f  ,"L  !+@  P+@ "- ,x N:;|  +@ g  "@A 
pЭ ""Yf" m C  -    
M /a  t,JfN"m A 
pЭ ""Yf" m C  -    
a  Jf"m  - ,x N.;|  p `"m A  -  V"SfpL|Nu/v|x~z$I" JgapSafet pajAFgpa`WCf:paPp 6 4Ffa6epa:&Apa6AGg"`a(RB1 WCgp fJBfpNuf* NuS@r f* QNu/v|x~z$I" JgapSafdt pajAFgpa`WCf:paPp 6 4Ffa6epa:&Apa6AGg"`a(RB1 WCgp fJBfpNuf* NuS@r f* QNu/p r t xB҂HAf$NuH8 ( &(  R A   Jg  Y|o,|g|g.|gp `p JfpL NuXHYS` YS`aFC $# Yf 	R  "@p 0 gr 2 $ S@gr f
ҁԁ`r "H 	R  "@X0gX\IXS@gJfVI` 	V< "@Ȓ 	NuH?>BH@L@K tԪ   ,x &LJFg "<  | g$"<  | g>< `  rHA2Y| |  T/ N:"~Jg   @  &&HSftg   |o(|g4|g@|g><  `p"L"QSlXINuR"a g"Sf`RXJ`VJ 
< $@`"a&IRJ 
  $@0gr 2a(	&ٳ8 S@gr f
ҁց`$B,x g"B$ !N.`~ p 0L|Nu  $  !  "H     "R  "        Imploder    oVa *I 6 gI ^ g
I B f4N<< ghN g
N<< fQ  g
Q  fpNup NuH?> D*O/"Mr/Q U ( Y@: S@E +J @r $ļ?҂XQ ЀЁ+@ "- ,x N:;|  +@ g :PJ +@ 0rN:+@ 4g FXJ0S@"XJE Q;|    f XJj f +j  8 *G  f  XK 8+K < 0RЀg RЀf  ʞ 6(OA C """AXC $"""A()P AHC """" ,  )@ 9E 4,m 4 - 0( $N m <"m 0, 4HC a  6 +I   m "U   B ) Y BS C  Q"m 4 - 0,x N.p"_r/Q DL|Nu"m 4 - 0,x N."m  - ,x N.p `  fpШ  ANu  '  !  $     $  %        Imploder Library     |o6aC  g
C  
f N fN fHfpNup NuH?> D*O/"Mr/Q U ( U@: S@E +J @r $ļ?҂XQ ЀЁ+@ "- ,x N:;|  +@ g V$ +@ 0rN:+@ 4g `PJJ* gY* +B 8G "*XJ0U@kE Q;|    f XJ 8+J < 6(OAC """ |  AC $"""[ 8)S B, A $C rj< P t J jSB2QA C r0YQ ,  )@ 9E 4,m 4 - 0( $N m <"m 0, 4HC a 4 6 +I   m "U   B ) U BS C  Q"m 4 - 0,x N.p"_r/Q DL|Nu"m 4 - 0,x N."m  - ,x N.p `    'p  !  '$     '8            Imploder Overlayed    o,a D`  f h fI ^ fN<< &fpNup Nu  '  !  '     '  (        Team 17 (ATN!) Cruncher    BoATN!fpNup Nu  ,T  !  '     '  (        File Imploder (FImp)     BoIMP!fpNup NuH?>*H$U * +@ +@  "- ,x N:;|  +@ g*"@ J - N m aJ@f"m  - N.;|  p L|Nu&H(HXH$K!!!$6kSKO"Op"Q"Ox Jg#SfeO pgp Nuf#ddf#dTf#dDf#d4f#d#p`:f#f#f#\p`xp`xp`
xp`xp z 2 f#df#d; jP `zX ; bf#BS fEz $E0f#dAf#d4qP `4q X 1 f#ۅS fRJ"Sf` 

z .fa   j< f$"  H瀄*G m @0H 0  ?"L!"  REl 4f*GNu Ѐj,"  fah "gfa\"t faRԚ"Sf`"  "MHQkbLH  `LM  Pg Pg
"Sf` Ba`H&J:4, , f ` f ddf dTf dDf d4f d ~`:f  f  f  \ ~`p~`p~`
p~`p~ 6f df d| 4pX`f B`|4pf BSfF| :F>f dCf d:t0P`:t0X4p$j < gf FSfRFM*KƻdĽf*JSEkS fJBg
SEkSBfS f @ A 8LNu

     -  !  ,t     ,  ,        XPK Packed     4oXPKFf(   fpNup Nup H?>> *Hp C,x N;| 	 Jg  (@$U * +@  м   +@ "- N:;|  +@ gfBJGg
/- ,/< Xt/- /< Xq/ /< Xb/- /< Xp/
/< XS O,LN $JGgPOJga.;@ "m  - ,x N.p `p/ "L,x Nb L|Nu|lpNuF@@0; Nu               	                xpkmaster.library     .$  !  -     -  .        XPK Crypted    4oXPKFf(   gpNup Nup`     /  !  .D     .T  .        TetraPack 1.02    o"  rfI  fN  fpNup NuH?>*H&U + ␫ +@  +@ +k (+k  $"- ,x N:;|  +@ g>A &"@ , p + ?8@z + p + <@+ | kNq f|a ^pL|Nu    /  !  /$     /2  /`        TetraPack 1.1   o"  rfA   fm`. fpNup NuH?>*H&U + А +@  +@ +k  (+k  $"- ,x N:;|  +@ g>A  &"@ , p + ?8@z + p + <@+ | kNq f|a pL|Nu  0  !  0      0  0<        TetraPack 2.1   o"A  "ff f2  fpNup NuH?>*H&U +  +@  +@ +k (+k  $"- ,x N:;|  +@ g>A ."@ 4 p + G8@z + p + <@+ | kNq f|a pL|Nu  1  !  0     0  1        TetraPack 2.1 Pro   to"A  xff f2 .fpNup NuH?>*H&U +  +@  +@ +k p (+k  $"- ,x N:;|  +@ g>Al "@ ғ p + 8@z +%p +i<@+ | kNq(f|a pL|Nu  2x  !  1     1  1        TetraPack 2.2   (o"C  "ff f2  fpNup NuH?>*H&U +  +@  +@ +k (+k  $"- ,x N:;|  +@ g>A  4"@ L p + _8@z + p + <@+ | kNq f|a  pL|Nu  4  !  2     2  2        TetraPack 2.2 Pro   o"C
 xff f2 FfpNup NuH?>*H&U +  +@  +@ +k p (+k  $"- ,x N:;|  +@ g<A "@  p + 8@z +=p +<@+ | kNq@f|apL|Nu$`  a.e:2va&eZrx ah6DraQW`Hrx`f  D Nura8< m< gra(6XC2`26JFfBTCa2 W|g`SAt aQNu m $H fr gRAW|ffNu  5  !  44     4H  4v        DefJam Cruncher 3.2   o"C "fI^ PfffpNup NuH?>*H&U ++@  +@ +k (+k $"- ,x N:;|  +@ gRA 4"@ LI+}O,OBB Bn k  k- kM k[ ka 	a 
O 
pL|Nu    7D  !  5,     5D  5r        DefJam Cruncher 3.2 Pro    o"C |fI& ff fpNup NuH?>*H&U +  +@  +@ +k t (+k  $"- ,x N:;|  +@ gRA "@  I+ O,OBB Bn k k k k k 	a  O 
pL|Nu|$`  ra  JBg  ~< f<a  e
ra  ^B`,ra  JBg| 
`ra  JBg|	`ra  ~Լ  SB6aTezr`aJez r`a@ezHr`:< raLE4  WжFf~adVra42vJg\g6< gvr`f  D NuvraB2. `0SAt aՂQNura6| 2. `aev2. `v2. a2 WFg  m $H fr gRAWFffNu    7  !  7d     7t  7        ByteKiller 1.3    4o"A  $f   fSABB fpNup NuH?>*H UE>( <( z ( I+h * $+h  (`   8T  !  7     7  8*        ByteKiller 2.0    o"A  .f   fSABB fpNup NuH?>*H UE >( <( z ( Q+h 4 $+h  (` &  8  !  8t     8  8        ByteKiller 3.0     o"A  $f  D fSAt  fpNup NuH?>*H UE ~|	z+h * $+h  (`   9d  !  8     9  94        ByteKillerPro 1.0   8o"A  2fE fSABB fpNup NuH?>*H UE~ ( | ( z ( m+h @ $+h  (`     9  !  9     9  9        ByteKillerPro 1.0 Pro   Zo"A  \fE fSABBfpNup NuH?>*H UE2~ ( | ( z ( +h b $+h (`      ;  "  : !    :&  :^  :  :DragPack 1.0    4o,  f"Nnf  fSABB fpNup NuH?>*H UE<( >( z ( W * +@  +@ "- ,x N:;|  +@ g$"@ Ja 
0Jf"m  - ,x N.;|  p L|Nu  f"NJf   fSABB fpNup NuH?>*H(UB<, t>, z , 3 l 
"l  ( HBa 	Jf ;|  r `0t"L(T !,x N.QLAC2- Nr ;@ fr/",n &Nd L|Nu    <  "  ; !    ;  ;  <D  <xTNM Cruncher 1.1    o,  f"N~f  DjfSABBtfpNup NuH?>*H U$(&(E>(H<(Nz+C  +C  "- ,x N:;|  +@ g"@ J$Ca pL|Nu  tf"NZf  DFfSABBPfpNup NuH?>*H(UB$,&,>,$<,*z T"PXHXI$CHBa (t"L(T !,x N.QLAC2- Nr ;@ fr/",n &Nd L|Nu  >@  !  =     =.  =\        RSI Cruncher 1.4    o"A  <f  fSABBfpNup NuH?>*H&U| .+8 r,x N:;|  Jg  (@H ~ + | + z + yA4"La 0L ;|  JgP"+ B + G +A $+k ^ ( + "+@  +@ "- ,x N:;|  +@ g"L @+ /$H  a|"L ,x N. L|Nutg g`r gSAWBgNu    ?  !  >`     >x  >        High Pressure Cruncher    ,o"A8 f  fSABBfpNup NuH?>*H&U| +k 0 $+k v (E ." r,x N:;|  Jg  (@H "L J$G>+`<+hz + ( a L ;|  Jg^ Lan$ aj& +@  +@ "- ,x N:;|  +@ g4"@$I Lt  HS@J g W` WBg|"L ,x N. L|NuNu  A8  !  ?     ?  ?        HQC Cruncher 2.0    Lo,  f"A `f  fSABBfpNup NuH?>*H&UtA (  R& .ԀA |g"|g|g$|g&|f  XJf`(  ԀPS`XHPS`P gAԀP` +@  +@ "- ,x N:;|  +@ gN"@A&>+<+z +}pЃ"Sf "|gD|g>|f"S`|gT|fJfpL|Nu"m  - ,x N.p ;|  `  "H$`( a LJgS` "gR"Sf`  C  !  AX     Ad  A        ReloKit 1.0   o"A (f  fSABBfpNup NuH?>QO(O*H&U +Ы(r,x N:;|  )@ g ^0+HA"l >+<+z +Ia ;|  Jg tԫr 2+Iԁ l v p H8 g"|g$vPp 0ԀZH`fTHSDf`JCgP`+B  "- ,x N:;|  +@ g  "@"  BBY2B"S/*IE,l  N>+0H"   " ¼   ?Q"*	$ *PNJg4"Sf,	Jff"E#|  `XIg/&E'<  &_a2"  XJSGf*_ +I  p/ "l  ,x N. POL|Nut p 8 gHJBf"  t"p "`r HJf
( ITHH& "SDf`JBgBNu    D$  !  C     C  C        SoundTracker Packed Song     oPACKfpNup NuH?>*H$U * +@  +@ "- ,x N:;|  +@ g"@XJ " JE ~|	za  pL|Nu  Ex  !  DD     DR  Dj        ANC Cruncher     oFVL0fpNup NuH?>*H$U  * +@  +@ "- ,x N:;|  +@ g2"@ J($I  ~|	za  .Jf"m  - ,x N.;|  p L|Nu $X(  fateN2vfahe&ran6rfaXQW`2BTB6aJ2 W|gp JfpNura,< mҴ< f
ra6PC`ra62`  D NuSAt faQNu  Fl  !  E     E  E        Master Cruncher 3.0 Addr    o,  f"K (f+I  8faN DfpNup NuH?>*H4<vR U+h > $+h H ((UE   +@  +@ "- ,x N:;|  +@ g:"@A0  &O& l& p& & 6 &&&&O Ja   pL|Nu  G  !  F     F  F        Master Cruncher 3.0   o,  f"K8 ,f+I  >f+J  HfpNup NuH?>*H4<6<` ~(I*YHJ`jSH f dLBAf d2vBA30 HxlFDSBf QQJCgAV30HB WGf  tf dQBARB3 gHSCf QQ3 HC| g0vf dQRCBB30Hf RQKs0`$BBvBDf dvx@f RQDE  HSA"WGg Nu  HT  !  H     H,  HD        PackIt 1.0 Data    oPIcofpNup NuH?>*H$UXJ`  j    JX  "  Ht !    H  H  H  I$PackIt 1.0    zo".(n (fK ,fBJ 2fpNup NuH?>*H UEb $+@  +@ "- ,x N:;|  +@ g"@ JQO(O()R a  POpL|Nu.(n fK fBJ fpNup NuH?>*H$UEF.$ r,x N:;|  JgT&@"K J/QO(O()R aFPO." o (,h &Nd K CB2- ,o (Nr ;@ fr/"K ,x N. L|Nu~$`  v fa\e(ra`B| grfaFRQWGgNura8< gD< g>4  H< RB6aRB2 WGgNu  D NuSABBfaRQNu4  HaRB6xRraJBfDV2aXBC`  K  !  Jx     J  J        Time Cruncher 1.7   o"A4 $f  D0fSAB:fpNup NuH?>*H U+h 0 $+h, (EZ * *+@  +@ "- ,x N:;|  +@ g"@ J$`a dpL|Nu  K  !  K,     K>  Kl        TFA Cruncher 1.54   o"A4 $f  D"fSAB,fpNup NuH?>*H U+h 0 $+h (` J  L8  !  K     K  K        Turtle Smasher 1.3    o"AH  f  D@fBSAJfpNup NuH?>*H UEj+Z $+Z ( +@  +@ "- ,x N:;|  +@ g"@ J$IА a :pL|Nu    L  !  LX     Lj  L        Mega Cruncher 1.0   o"G. $f  D4fSABDfpNup NuH?>*H&U+k& (+kX $E``  z  NL  !  L     L  M        Mega Cruncher 1.2   o"G2 $f  D8fSABHfpNup NuH?>*H&U+k* (+k\ $Ed *+@  +@ "- ,x N:;|  +@ g"@ J$`apL|Nu~|zx  raxJg>Dffa`dr
adJBfra\`raV^BSBrfa@QWGgNura2vrJBgrvEgVvFgBra| g0Eg"ZB6`<  D NuSAt faQNura^B6`ra6`rfaer`rfadrfaeraSC2(WGg *Nu    Q  !  Nl     N~  N        Double Action 1.0   o"SF& fM  fxN fpNup NuH?>*H U~ 4< g:~4<g.~4<g"~4<g;|  p L|Nu     0;pIL+l  ( , 
Ь +@ $ ,  
+@  +@  Ь "- ,x N:;|  +@ g"@$I" 
&J ,  
A "/0;pzN vfJCg"m  - ,x N.` ^ K $I  , , 	 f  gSf`fr  ` fڱ f"H $H  صfp`     * t xa~< eBf^xar< efv`  vJg  `  xaTJfxaL\F`xaDJgx`x
a8SF6xa0W|f  xaJgxa< g"v< eFgJv`FSD| f* VQNuxa< gv`xaڼ< gv`xv
aFxaJfxt`x4< a܂2hW|g Nu* t xa  < eFfbxa  < efv`  vJg  x	`  xahJfxa`\F`xaXJgx`x
aLSF6xaDW|f  xa0Jgxa(< g6v< eZg| fjx4<	`j| fRx`RSD| f* VQNuxa< gv`xaڼ< gv`xv
aFxaJfxt`xaJf
8;p&4<`8;p"4;p$a܂2hW|g Nu 	 
  
    T`  !  R     R(  RV        FreewaY 0.7   o":| f:y f:88fpNup NuH?>*H(U+l| ( ,tЬ+@ $ ,xt",Ё+@ ҁ+@   - "- ,x N:;|  +@ g  A/lt"m $Iht&Ja  fJCg"m  - ,x N.;|  p `X K"m $Idt&J,ra  | f$Ka6 K"m $Ix $&J,p,qa$ f$KapL|Nu m "HصfNu f  gSf`fr  ` fNu gfNu g & C gSfS f`~* xaZJg  < efv`4vxaBTF`2v`< efv`xa*&XC`޼< eb0xa&XCxa|2hW`FSD| f* VQNuxaJfv`xaJfv`xaPF`xa&xaWGg XNu    UD  !  T     T  T        StoneCracker 2.70   o":W 0f:` 4f:] 8fpNup NuH?>*H(U ,  +@ +l  +l  (+l  $"- ,x N:;|  +@ g@A"@ $I~ | z ,,,&m ,,,a  pL|Nu  W  !  Ud     Uz  U        StoneCracker 2.70 Pro   0o": f: f: fpNup NuH?>*H(U ,+@ +l  +l (+l $"- ,x N:;|  +@ g@A(""@ $I~ | z ,,&,'&m ,,,a  
pL|NuH   r Ѐfa|d  Ѐfarevx`AЀfabAvx| gv	RDa  1 W|gL  m ~  ggıfNug`gRGıW|gNu  D рNuЀfad&AЀfaA| g6a.8XD6`6a"^B8`va8SD| vaW` jt ЀfaBQNu    W  !  W<     WN  W|        StoneCracker 2.92   o":  f  f; jfpNup NuH?>*H(U ,+@  +@ +ld (+l  $"- ,x N:;|  +@ g$E @"H  x ,/,&Oa XOpL|Nu    X  !  X      X  X@        StoneCracker 2.99   o":  f  f; hfpNup NuH?>*H(U ,|+@  +@ +l\ (+l  $"- ,x N:;|  +@ g$E @"H  x ,{/,x&Oa  XOpL|Nu    Z   !  X     X  Y        StoneCracker 2.99d    o":  fKT &f; h fpNup NuH?>*H(U ,l+@  +@ +lL (+l  $"- ,x N:;|  +@ g$E|p @"H  x ,k/,h&Oa  XOpL|Nuvz|."t f."d&2alԀFg2f."Q gNSf`raHr $ 3  Ef&f."e2a,ԀCgԆԆ`
2aԀFg2Ra0  gSj`NuSAp f."рQNu  Z  !  Z      Z2  Z`        StoneCracker 3.00   o":  fC  f; ffpNup NuH?>*H(U ,p+@  +@ +lP (+l  $"- ,x N:;|  +@ g$Et @"H  x ,o/,l&Oa  XOpL|Nu    \   !  Z     Z  [        StoneCracker 3.00 Data     oS300fpNup NuH?>*H(U , +@  +@ "- ,x N:;|  +@ g$E   @"H  x , /, &Oa  XOpL|Nuvz|."f."d(trajԀFgrf."Q gLSf`raDr $ 3  Ef$f."era*ԀCg2`raԀFgrRa0  gSj`Nup f."рQNu    \  !  \      \2  \`        StoneCracker 3.10   8o"Hf`  Df; ffpNup NuH?>*H$U *(+@  +@ +j (+j v $"- ,x N:;|  +@ g @E(a BpL|Nu    ]8  !  \     \  \        StoneCracker 3.10 Data     oS310fpNup NuH?>*H$U * +@  +@ "- ,x N:;|  +@ g
 @ a  pL|Nu  ^  !  ]X     ]j  ]        StoneCracker 3.11   (o"6f`  2f; TfpNup NuH?>*H$U *+@  +@ +j
 (+j v $"- ,x N:;|  +@ g @Ea  
pL|Nuz|~&Z  N`Ѐf рe:v xt Ѐf рBQւGgxЀf рQ±ghSf`	
t Ѐf рBЀf рBr v ; Ѐf рAQEet v xЀf рCQԃFgV"HٱgSf` `Nu  `X  "  ^ !    ^  _  _  _StoneCracker 4.00   o:  f2pШ  AK fI L fS j ffpNup NuH?>*H UpШ  A ( A  fPH` A;|  p   f0XH$H ( +@  +@ "- ,x N:;|  +@ g @ apL|NuS400g S401g jNu   pf"K fI L fS j bfpNup NuH?>*H$UBt* "J$R !,x N.QA "* H@pЪ C%!Yf a jLC2- ,o (Nr ;@ fr/"J !,x N. L|Nu    `  !  `x     `  `        StoneCracker 4.00 Data     oS400fpNup NuH?>*H$U * +@  +@ "- ,x N:;|  +@ g
 @ a pL|Nu  a  "  a !    a  _  a\  _StoneCracker 4.01   o:  f2pШ  AK fI L fQ ffpNup Nu   pf"K fI L fQ bfpNup Nu  a  !  a     a  `        StoneCracker 4.01 Data     oS401fpNup Nu  b  !  b      b  bF        StoneCracker 4.01 Addr    \o"!  Jf.@I PfE  VfpNup NuH?>*H$U *L+@  +@ +j 2 $+jD ("- ,x N:;|  +@ g @ELa pL|Nu  d  !  b     b  b        StoneCracker 4.01 Addr   Do"!  Jf.@I PfE  bfpNup NuH?>*H$U *4+@  +@ +j 2 $+j, ("- ,x N:;|  +@ g @E4a  pL|Nuz|~&Z 0N@`@f0@e<vt x@f0@BQBFgx@f0@Q±WGgNut x@f0@BQv r ; k@f0@AQx@f0@AQEet v x@f0@CQԃFgT"HٱgSj` PNu~&Z 0< t @f0@e:v x@f0@BQB_Bgx@f0@Q±WGgNux@f0@BQvr ; @f0@AQUetv x@f0@CQԃ_CgX"HٱgSj` dNu  eD  !  d     d  e        StoneCracker 4.04 Data     oS404fpNup NuH?>*H&U + +@  +@ "- ,x N:;|  +@ g$@C a npL|Nu    fP  !  ed     e|  e        StoneCracker 4.04 Addr    o,N{ Vf"C  tfL  fS404fpNu  0o,NqE  f"C  (fL  6fS404fpNup NuH?>*H&U K - aS@g+k  $+k (G`+k $ $+k (G +@  +@ "- ,x N:;|  +@ g
$@"Ka `pL|Nu  k|  "  fp !    f  g"  h  itStoneCracker 4.04   o,Hz H $f"N  6fE xfS404 fpNu   o,Hz  $f"N  6fstc. HfS404 pfpNu  $o,Hz  $f"N : 6f stc RfS404fpNup NuH?>*H&U K - a P2<S@g
rxS@g2< ( r,x N:;|  Jg T(@$L"KHa 8L~ L Rހ0  gH@0ހ`<J@f8P0HdRHr 2g(THP ހXHt< g
t< otSA`Pf +@  +@ "- ,x N:;|  +@ g   L"@"  B R"B"$I"Sf0 g H@0"<   gRA"""SfXJ`TJ@g
"  "`FYI"  0HdRHr 2"g.p 0"t &Ƽ `p N  Hր"SAf`"  Pf xp/  "LN. L|Nu   Tf<Hz H f  N  f   g   @E f|S404fppNu   $fbHz  fXN  f" gJ @stc. f< ,S404f0pNuN : f" g @ stc f S404fpNup NuH?>*H(U La :;|  Jg $HBC a pa  G,x ;|  <- .JFg$"<  | g("<  | g;|  p `  rHA2Y| |  T& N:" &gtR&A&Q|2f60
HdRJ2gF0al 	&Ɔ`x N  LքѰ8 SAf`RGHA g20a4 I`"YjRfpa  "*Bp/ " o ,,h &Nd L|Nu"LR@"QQXINu,Jx SDzL pv Q <!~Fd>rQ <!~Fe`rvQ <!~FePQ <!~Fd@rva A@e>rvaAraWDgNūAjG2<!DAE"HANuvraAFW g<!~Fd2A `r	A  Q <!~Fdr Jag W`    l   !  k     k  k        IAM Packer 1.0 (ATM5) Data     oATM5fpNup NuH?>*H$U * +@  м   +@ "- ,x N:;|  +@ g"@rҪ Sf @a BpL|Nu    ml  "  l@ !    lV  l  l  mIAM Packer 1.0 (ATM5)   xo,Hzr $f"NRf2PfATM5dfpNup NuH?>*H$U * +@ "- ,x N:;|  +@ gAd"@+h   "("Sf @a pL|Nu  <f,Hzr f"NRf2PfATM5fpNup NuH?>*H(UB TXH ( H瀂a LAC2- Nr ;@ fr/",n &Nd L|Nu    n  !  m     m  m        IAM Packer 1.0 (ICE!) Data     oICE!fpNup NuH?>*H$U * +@  м   +@ "- ,x N:;|  +@ g"@"* Sf @a pL|Nu  rx  "  n, !    nB  nz  n  oIAM Packer 1.0 (ICE!)   Ho,Hzr $f"NSfH fICE!4fpNup NuH?>*H$U * +@ "- ,x N:;|  +@ gA4"@+h   "("Sf @a >pL|Nu  f,Hzr f"NSzfH fICE!fpNup NuH?>*H(UB TXH ( H瀂a LAC2- Nr ;@ fr/",n &Nd L|Nu/NRXH K/ (MI ,HSN&`  :UgdCDE`$|a\g`|aTg| `&`|aB|CI44fHf&e|`<|a"J*g2P`   f`<  `~BEf&EQJENu|a84@HJ*fXF`.a2I|a̺< m| ag
|aEA`*`2P:`aDgt@IP$$Q`f&e &fgZ| a vg &Crt fTATAQP`Q| a JgCpQP`QBC&&H&&M` M,,,,QNZ*_Nu   `````` NSHI x,LXH K ."Npw!Q&N%aZ*Ka  d8><a  xdpa  z>|8#zD@DADBDCQQH QLSfpw#QLN[Nua*d"r a$dC v !a"H@@Vҩ %QnNuf%Nur f%AQNuC taTx r 1 Hka1 Ag"C vtaTr 1 HaBq jD`r ptadpt?aBC@!!Q` R                       	                sh  !  r     r  r        DragPack 2.52 Data     "o
PBHfpNup NuH?>*H&U +  +@  +@ "- ,x N:;|  +@ gl"@(I  YOp + 
>riSA?A | + ~oSGz + phE O&O,KB^S@ Jr Rv<^CS@f U M  a O $pL|Nu    u  !  s     s  s        DragPack 2.52   o"Hz F  fI (f$H"H 6fpNup NuH?>*H&UE 4$+ @&+ F8+ <z +  + R+@  +@ "- ,x N:;|  +@ gf"@"   J(I.	/| + y>+ YOBk  ?k  ,Op + GP : a  XO.a  $Jf"m  - ,x N.p ;|  L|Nu m  ( A4C g@g<g*gFgvgp Nu <  gaTUH `!@pNuaDUH   XH`a6UH    `a$UH   t  gr 4a 4҂a Sf`$G5b fTNuaUH    g bA``Bf4 D Bev 2aNրGgraF W|f42a22  6 a*Cs0 v 8 2aրn gR1@ W|gNup Bf4 D B@SlNu    v  !  u     u  v        TurtleSmasher 2.00 Data    oT.S f2.00 fpNup NuH?>*H&UG `  ~    z  !  v8     vL  vz        TurtleSmasher 2.00    2o"Cz fE fGn fpNup NuH?>*H&U+k $+k (G* <  "<  ,x N:;|  Jgl(@"@ IC  !I !|    B PH a  LLp  	+@  +@ "- N:+@ g L!@ B(H a  Lp p/ "L <  N. L|NuHP,h  NC`Enpv rt><<025BBQ| .<  z NCzEGnxt2<;0X2466DBQ2Bn^*_ U"m ,m *NInG`xz<`DGoDJ-f`RI>+Fd>3p[kz<`>3p [jQ <zm gT04p E  2D4Zc<ZbY$
;  423  k99 63  k907  90 7  04  f`04  fG l bGnNu^_Edv 6HCDE2HC<DEtB`r BQ <z6C6;0FBBBKFAQ z<QA ?CEєDG|OJ-f
Q` RIQ`                                                                 								







  !!""##$$%%&&''(())**++,,--..//0123456789:;<=>?  {@  !  z     z  {.        Titanics Cruncher 1.1   o(h *f hfE 2f  jfpNup NuH?>*H$UE~ `    }  !  {`     {v  {        Titanics Cruncher 1.2   To(h *f h>fE ~f  fpNup NuH?>*H$U~ jFf~E@&Jz " Rڀx $ļ ڂo(Q "<  ,x N:;|  Jg  (@ J$K"Jf  `$  g"La   gPPڀYH fQ "LN.+E  +E  "- N:+@ g   K"@"  B"RB$"&&I "  ¼   "QJf"   ?"`."   ?"ga* g"  ""Q fB"  QpL|NuH xE p fa  eBfave.ra  z6rarJGgF³WDgLNuraV6PC`raLTBDBv`ra@| ngrBvBa.CRBDB  W`ra6TCraVBDB` D Nut faRQNu    !  }     }  }        Spike Cruncher    o"; xf{ vf; vfpNup NuH?>*H&U + 2+@  м   +@ "- ,x N:;|  +@ g2A$@  /
 "J 6/	I&a  0+ :"_$_ m a  pL|Nuzvald,t afdptUB4  abt V4 AسWEf<pa:dS@fBA4 ka44 Axa*$4 Ba t ",I޳WEgNufNur aASjNur @ft gRBWJBjfNu    0  !  4     H  v        TryIt Cruncher 1.01   o"- ! f- # f-  fpNup NuH?>*H&U ++@  +@ +kf (+k $"- ,x N:;|  +@ gP <   rN:Jf"m  - N.p `0,@"@A0<"Q-m  Ca"N <   ,x N.pL|Nu$n  . &. A $ (H~*!(!&Hp| SGj~*(!S@f
 ܆| <| d܌&F`Sf"n  .  I$I p ". "f"gX"  `N. !fx`. #f
xr "g4`&.  f
xr "g$`. fx "gr "Y"Y&H#Q` m n "H !. g. 	g! nNux !< d!`. 	f!. 
`!!Q`      !  P     ^          TSK Cruncher    8o"  4f  f   fpNup NuH?>*H&U+ M+ UA"H RH t g^ gg0R`J fR`p r   g ` I  ԀQ`J fR`p r   g ` I  Ԁ` +R+@ $+k ( +@  +@ "- ,x N:;|  +@ g  "@RIA$H RH gx ggB`J f`p r   g ` I  S@H瀀 QLQPOSH`J f`p r   g ` I  S@1Q`pL|Nu    !          &        LightPack 1.5    oLPv1fpNup NuH?>*H$U * +@  +@ "- ,x N:;|  +@ g8"@XJ$XJ< gSf`* H* * S@SgQXJ`pL|Nu    !                 Crunch Master 1.0    o"PTV FfhTV NfE z &fpNup NuH?>*H&UA $H ]Hp 4<TVv SCPfh fJCgv2( ]TQ`TUHd+@  +@ "- ,x N:;|  +@ gBx A $H ]H"@  SDPfh fJDgx0( 2( \I3Q`3UHdpL|Nu  x  !                 HQC Compressor 1.00   o"  8fK Lf  fpNup NuH?>*H$U *+@ $+@ ( *+@  +@ "- ,x N:;|  +@ g<A"@&H(I*fr gUAgQgcpL|Nu  t  !                 FlashSpeed 1.0     xo"  6f  <f(  BfpNup NuH?>*H&UA p+k * (+k * $p r tRff( gSRH`THgRHЁ`+@  +@ "- ,x N:;|  +@ g8A p"@p r tдff( gSIRH`THgSAQr `pL|Nu    !                 MaxPacker 1.2   o"N] ~f;p f;p fpNup NuH?>*H$U *+@  +@ +j (+j $"- ,x N:;|  +@ gxA&@(* "4***O(O()j D )j  )j  )j  )j< )j@ )j4 )j8  )jD $)jH ()jL ,/a  *_O 0pL|Nu,K *$K f  JBg
SEk SBfSg~C Nf eNNu]IQf d ~`,~f  Q\ ~`p~`p~`
p~`p~ 6f df d| 4pX`f B`|4pf BSfF| :F>f dCf d:t0P`:t0X4p$j < gf FSfRF˽f*JSEk %S f`       !                 FCG 1.0   (o"N  Xfvt fRBB fpNup NuH?>*HO(O$U * |(r,x N:;|  )@ g  @CG$Ha   l "HC f 4( A fp Rgfr gЁVH`)@ rN:)@ g   @$l &JG f >* ,* 6E f*a  "l N.( )l   l "H+h 4 $+h j (C n &4( A np ggR`r gRHЁ`+@  +@ "- N:+@ g @"l $IE n &>) C na  p/  "l N. O L|NuvtgtRBBf0t He6RBBf0t He"xz r RBBf0t HQQE3 `xz`RBBf0t HdRBBf0t Hdx:< `xz(`xzH`Nug( ff`p H@HЅ"@Sf`Nugg`g
Sf``Nu  T  !  $     6  d        Syncro Packer 4.6   o"Af  f   ,fI  fpNup NuH?>*H,UO(O+nT (CX$Lp$Qn' 0A $  ` v P 1a )C 2 r,x N:;|  )@ 6g   UA"@ $  ` B, 1a  l 6+P $(  2P 1a +D  +D  $ "- ,x N:+@ g"@ l 6(  2B, 1a rp/ "l 6 , 2N. O <L|Nu      !  t               Syncro Packer 4.6 Pro   o"Ef `f   zfI  fpNup NuH?>*H,UO(O+n (C$Lp$Qng 0ni :A . r hY$  v P 1a  )C 2 r,x N:;|  )@ 6g  "@,UA . r hY$  B, 1a  n l 6+P $, : 2P 1a H+D  +D  $ "- ,x N:+@ g"@ l 6, : 2B, 1a p/ "l 6 , 2N. O <L|NuaHg@aDf(pa@T< fpa4Z< fpa(P< fpaSEJ, 1f `SHRQmNuB@z Jf~ SQB@JNuag6xGM pa3P 26P aA$ISDJ, 1f"`SJRQ` bG M  afx`paX< m2fpa\`(paP< 	g< fpa p< (`
pa d| H8`, 0x p  ggRJ, 1f ` B`
 < g RJ, 1fQ`Nu    $  !         R        TurboSqueezer 6.1   8o, z 2f" 6f : Ff PfpNup NuH?>*H UGpГ"+ EЁЁ+@ "- ,x N:;|  +@ g  "@"  B + "BS"/	A  + "U"Sf J$I(I a  ^$+ "J$_ |g  XJ                                                                                                                                                                                                                                                                                                                                                                                                                                                                         |f( g"""` LXL!` f ?"XISf +L  pL|Nuz|?~ v faldBfadet `&faXetr `faJdtr`rtaF6 @ra> WEf&Fgfae<ra"6 raT@10 WEgNu. D Nup f. D PQNufae
ra6 r`faer	t@aB1  g1  f :Nufaert `faerar6 a| 
` trar`  |  !  D     V          TurboSqueezer 8.0    o, z 2f" 6f"X(H :f(	,	 PfpNup NuH?>*H UG <  갓g g 0g;|  p `  PKpЫ "+ Ё+@ "- ,x N:;|  +@ g  "@"  B + "BS" K$I (IPHa  h$+ "J "U"Sf |g  XJ |f( g"""` LXL!` f ?"XISf +L  pL|Nuz|?~ v އfaldBއfadet `&އfaXetr `އfaJdtr`rtaF6 @ra> WEf&Fgއfae<ra"6 raT@10 WEgNu. D ߇Nup އf. D ߇PQNuއfae
ra6 r`އfaer	t@aB1  g1  f :Nuއfaert `އfaerar6 a| 
` trar`  p  !         J        ProPack (RNC)   0oBa|RNC >f:  o.Hz^gHzgHzjgHzfI  PfpNup NuRNC $fHzgHz gHzgHz"fI  6fpNu  frҨ  ANuH?>*H U&( a  T&H"t  fXA `Ԩ X ( VPXSf +@  +@ "- ,x N:;|  +@ g  $@$  B$B$S,U (J    f$XK$($`X$ + $( XNA " + a ~k fHA "Jp Hz (  g XXOa  J + a Rk f $   + VSfp`"m  - ,x N.;|  p L|Nu  d  !                 ProPack (RNC) Data     o$RNCf(  fpNuRNCf(  gp NuH?>*H$UA  * a j g
;|  p `f * +@  +@ "- ,x N:;|  +@ gB"@ JHz (  g JXOa  m  -  a Bj g"m  - N.;|  p `pL|Nu    #   D              ProPack (RNC) Data Key     o$RNCf(  gpNuRNCf(  fp NuH?>*H$U - ,g @>f;| 
 p `  A  * a j g
;|  p `h * +@  +@ "- ,x N:;|  +@ gD"@ J0Hz (  g  8XOa  m  -  a 0j g"m  - N.;| 
 p `pL|NuH?>O$O? G *I ( M ~ + ^pra  8|2z J g
:fa  :  Ja  A a  A a  ah8 SD`&A p ajDCA a^ٻg>ٻWLf2 JaHS@k$WLf]+ XriSÁQ`OL|NuprFla:Nu0FXf( <la$( =< mS   0( >FlaNuHFXK#^#HF~NupraS@k|4 6 O"OpraQprt H 8C f:zmSE0*HE>SGUVQzn0A <E =|SnSF1F >ԀQR< fL O NuHG *I~x d  8 f  pfDQ`  `Z```````fzfFQzFESEQ\`jfEfdSEgE 	ggdgFgetJFfRFgF^ MSHMdSEJFfQ`Qfe\fdz| g.d rg,dREg*dg6PE` |g F F ge``````feL(NuH0 $ p " Iv C0;0@SfL Nu  @AA ā@A ΁@
 ˁ@	AA ځ@ ߁@A Ձ@AA Ё@01A3 2@6 7@54A< =@?>A:;A9 8@( )@+*A./A- ,@$%A' &@" #@! A`aAc b@f g@edAl m@onAjkAi h@x y@{zA~A} |@tuAw v@r s@qpAP Q@SRAVWAU T@\]A_ ^@Z [@YXAHIAK J@N O@MLAD E@GFABCAA @@  @  !                 ST Cruncher 1.0   Ho"C fI f4 @fpNup NuH?>*H$U *<+@  +@ "- ,x N:;|  +@ g"@A<a  pL|Nu    !  `     v          ST Cruncher 1.0 Data     oSTC fpNup NuH?>*H$U * +@  +@ "- ,x N:;|  +@ g
"@A apL|NuI"p "Ytahg>UCkPfa^gUCg  k  x `@t`aH$V)a>4  g m4 Sf`aPta"SgSfJfNu)a6SgSf`&J@gB| m| T,<  ̼  ƆNuta*| 0m(t| 6mg| 7na*HEa:`| taRNuzNuz`zta| g r| fE `(LHHD$a lة"Yn` D @      !          8        PMC Normal     oSFHDfpNup Nup H?>> *Hp C ,x N;| 	 Jg  (@$U * +@  +@ "- N:;|  +@ gnp,LN, gP FC  !j  !m  !j  N;|  /  FN   fJGg m  -  SSfp`"m  - ,x N.p / "L,x Nb L|Nulh.library      \  !  0     <  T        PMC Sample     oSFCDfpNup Nup`     \  !  |               CrunchMania Data     o&PCrf 0( |M!g|m!g|M2g|m2fpNup NuH?>*H$U * +@  +@ "- ,x N:;|  +@ g""@0* \J"$|M!g|m!g|M2g*`DpL|Nua `a  m "-  SSf`a Jf"m  - ,x N.p `a Jf`    L  !  |  P            CrunchMania Encrypted Data     o&Pcrf 0( |M!g|m!g|M2g|m2fpNup NuH?>*H&UA  
4 |;|   - ,g   @a  ذBf| + +@  ~ >+ Ї+@ "- ,x N:;|  +@ gP$@A "m , + 
a  "J0+ "+ $+ 
/|M!g,|m!g.|M2gF`bJg m "H -  SfpL|Nua .`a |. m "-  SSf`a J.Jf"m  - ,x N.p `a ,.Jf`H@p r g@AA` || IALNuH&OUkF2 H@(IB#JfB#$  gB#O"Of"O(I4f"L4P44YQQ0| 4.KLNu      !  l           2CrunchMania Library    to(a bN fCrM. f( 2g< fpNup NuH?>B*H U ( S. a $G 4 ((H S;|    f hXH$H K0S@r ҘQ +, *Ҁ Ём   +@ "- ,x N:;|  +@ g  g"<  N:.g  "m  HC ,IJ+gH>"+$+a 
xL|Jf`  H8"+$+a 	pL$L m    B B S "UC  Q g"@H AX  SfL x a     a  x`a  r  a  j|f  `XJ  Jga  ba  H   RDGfƑ +H  p$  g"@ ,x N.XO L|Nu"m  - ,x N.p `/	"Ng#a fXN"_Nu/	t 0kfDg0gS@TIJYfJQ`ta   p 0ga 2 0a /	p 0"Ng# f"_v SAp 0f Ѐր Q`JBga vB"_Nu  fpШ  ANuN fCrM. f( 6g< fpNup NuH?>*H(U<, 4p 0刟"O/ A 8"Yf, 6, 7", ,$, 0a  $I0, *C  HHJga l`a zpLP(NJgfE SE|RF.ga^"SfQ  g06| <k&aD$I>gSG<a8"	&Jp 0f ЀӓQ`<a !B"@ !,x N.pL|Nu0"LS@k
"QQXINu  8  !  8     L  ~    \CrunchMania Normal    o&a NN fN$I fRFN fpNup NuH?>B*H U ( U. a Z ((H ;|    f hXHxH gx 0( E  H&J K0S@r ҘQ , *Ҁ Ём   +@ "- ,x N:;|  +@ g  g"<  N:.g  "m  HC ,IJgH>"$a L|Jf`  H8"$a L$L m    B B S "UC  Q g"@H AX  SfL x a   a |f  `XJ  Jga a    RDGfƑ +H  p$  g"@ ,x N.XO L|Nu"m  - ,x N.p `   Pg
   xf"NN fN$I fRFN fpNup NuH?>*H(U<, 
a  xH gx 0) 
TI,Ir 2剝"$$IHJJga J`a XpLR Jgl$N,ISE|RF.gab"SfQ| <k&aP$I>gSG<aD"	&Jp 0f ЀӓQ`<, 
SFa$ !B"@ !,x N."L* !N.pL|Nu0"L"QQXINu    !  X     l      :CrunchMania Simple    o0a v"$ f""J(z f*I f0"," fpNup NuH?>B*H U ( S. a 00( E  H&J K0S@r ҘQ , *Ҁ Ём   +@ "- ,x N:;|  +@ g   g"<  N:.g  "m  HC ,IH8"$a LXJ V| m    B B S "UC  Q g"@H AX  SfL x a   a |f  `XJ  Jga a    RDGfƑ +H  p$  g"@ ,x N.XO L|Nu"m  - ,x N.p `"$ f""J(z f*I f0","  fpNup NuH?>*H(UE 
"$"JH Ha L E,I|RF.gaNJg"Sf`| <k&a:$I>gSG<a."	&Jp 0f ЀӓQ`"L* !,x N.pL|Nu"L0"g"AQXINu        !         N        CrunchMania Addr    Zo<  p+XEWJ@k*pX"WJ@kX$fp0","gTHQ`pNup NuH?>*H U  p+XEW"HphNf (+@ (pYCWJ@k+Y $`p+@ $~p'AgTIQ~ $H +@  +@ "- ,x N:;|  +@ g."@"$JGfa  (`a Jf"m  - ,x N.p `pL|Nuz(I0","~@> vx ald&x ra   WEgNuxraNeraz@`aBerx`a8erx`a.erx`rxaR@| gmSDaer	t `(aert `SGf~0HF<"HFHNuNur4< aBG  #W` v0⮞AnC<"A{Nu      ?  ?H`` <  "<  ,x N:;|  LJg,@TNHaL"  <  ,x N.pNu&	0","~@> AtBQAI t	a  AI ta  GIa GI a ra  : A K(NaR  f48 I  MaBM2 4 frta`G #W|f#g# W|fra2f ^Nur SGg`~0HF<"HFHQ0Acl >A00 Nu0⮞An
| <"A{Nu      ?  ?H|ra: SEx RD2Bo2a0Q:SE2a8QL>NuH B\~xt v r<9C @0,@l @FF8JQL Nu                T  P  L  H  @  8  4  0  ,  (       h  d  `  \  T  L  p  l  d  \  p  l  d  \  $                 T  P  H  @          x  t  l  d      x  p        |  8  4  ,  $          h  d  \  T                      |  t        x                          D  @  8  0  (  $      }  }  }  }  {T  {P  {H  {@  z  z  z  z  v,  v(  v   v  u  u  u  u  s|  sx  sp  sh  r  r  r  rx  n(  n$  n   n  n  n  m  m|  mt  ml  l<  l8  l4  l0  l(  l   k  k  k  k|  fl  fh  fd  f`  fX  fP  eX  eT  eL  eD  d  d  d  d  b  b  b  b  a  a  a  a  a  a  a  a  a   `  `  `  `  `  `l  `h  ``  `X  ^  ^  ^  ^  ^  ^  ]L  ]H  ]@  ]8  \  \  \  \  \  \  \  \   Z  Z  Z  Z  Z  Z  Z  Z   X  X  X  X  W  W  W  W  W0  W,  W$  W  UX  UT  UL  UD  Tt  Tp  Th  T`  R  R  R  Q  N`  N\  NT  NL  L  L  L  L  LL  LH  L@  L8  K  K  K  K  K   K  K  K  Jl  Jh  J`  JX  Hp  Hl  Hh  Hd  H\  HT  H  H  H  G  F  F|  Ft  Fl  E  E  E  Ex  D8  D4  D,  D$  C  C  C  C  AL  AH  A@  A8  ?  ?  ?  ?  >T  >P  >H  >@  =  =  =  <  ;  ;  ;  ;  ;  ;  :  :  :  :  :   9  9x  9t  9l  9d  8  8  8  8  8h  8d  8\  8T  7  7  7  7  7X  7T  7L  7D  5   5  5  5  4(  4$  4  4  2  2  2  2x  1  1  1  1  0  0  0  0  /  /  /  /  /  /  /  /  .8  .4  .,  .$  -  -  -  -  ,h  ,d  ,\  ,T  '  '  '  '  '  '  'x  'p  '  '  '  $  $  $  $  "<  "8  "0  "(  d  `  X  P                  |  t  t  p  l  h  `  X                                      d  `  \  X  P  H                        x                                      |  x  t  p  h  `  
  
  
  
  
  
  	0  	,  	(  	$  	  	      |            
                                              #                                                                                                                                                                                                                   3  Virus_Checker                                                        p                     q2                                                                                                                                                                                                                                                                                                                                                                                                            $   xfdmaster.library.sig                                                 #      03& ZR<0rxxA? }ZxS3KuHwhiUrDXzsuL׬1@4"r;7ˏ	$}eN0:ܛmVUvq&}                                                                                                                                                                    q                                                                                                        3  
MAShare_66                                 3        %          q                 f                                                                                                                                                                                                                                                                                                x                                                                                              3  q  
MakeKey                                                                                     -    ,x K"M2<;BQChA0<Q+N  N&@J fA \NA \N+@ Cp%N+@ g Cp N+@ g X;|  ,m N+@ r p  m "h (;i  2) A0 AD A A Z@A0ЁT@A0Ё\@ЁA0ЁT@A0A(0A>0Ё\@ЁЁA|0Ab0ЁX@Z@Ё\@AR Gp,z
t  [    gN6o$ `    A&0A40"<  E   A0A&t "X    g" 4J3A `;|  Aa f B;|  C,m N+@ g &;|  Aa f &m A  "Kp,m NP k 2Cp r N(A A  k 2CprN(;|   ~Jg &m  k V,m  N k V,m  NJg"@() $i N   @f  * (g"@ Q    g"m ,m N2`0* &@ V@ 
fH zz"h " )  z"h "")  z"h "$)  z:"h " QC	/A	,0  _&I(H&VCKE'|YV1. | 0 | F 	*(< :8p gR`~ E7@G"LfE" SQ'F h'E 'D02<"KQ2<t "Kp ԀQ'Bp Jf|Ab"A$vx ,ztNvJnA"A+$&<   NAj"A$&<   NAT"$<  N* g "A$&<   N"NA$0  L~ ` VAa AHa . m     g,m N"m    g
,m Na ",m  "m Nb"m NbJ  gN|"zNp Jy  gp
Nuintuition.library dos.library $VER: VCMakekey 1.01 (31.8.95) Virus Checker - MakeKey S: Virus_Checker.key KEYPATH You need at least Kickstart 2.04.
 Error: Cannot %s.
 lock default public screen create gadget(s) open window create keyfile OK           d     e     f  E  g      j   @                                n  w  y      l               w                 
1   4               
 _   @            ,   s _   @                _   @            (                   h   
   
                                       
           Create      
           Cancel      
          Name      
            Serial Numbers  &H k     g",zN~"k     g <   ,zN. S    fp Nu&H <   "<  ,znN:'@ fpNup r t v 0+ V@2+ 
4+ 6:^ k A "H"2    E  "E ""2    E L"BA`2Y2Y2Y22Y22Y2Y22Y22Y"22Y22Y"2Y2"22Y22Y"2Y22Y22Y2Y2Y22Y22Y2Y22Y    k                                $       +       6+      $k     g     g  `     C $k ,zN'@ g S    f >p Nu"k  <   ,zN.pNu                                          strgclass &H"k     g""h  z:,z*N"k  <   ,zN. S    fp Nu&H <   "<  ,zN:'@ fpNup r t v 0+ 2+ 4+ 6:XC k A ,"HB2    E @"E "B2    E T"BB2   E @"E 0"B2    E T"BA 2Y2Y2Y22Y22Y2Y22Y"22Y22Y"2Y2 k B00000 0 0  +    ,        BB0 
B"k  z p,z N S    f p Nu                             Jm g*p 0: @ fS@"<  A$J f
,z xNFNuB-"CR#A G#K &B,z PNNuCp ,x N,@N" gA$v$N"N,x NbJ gN|"z Np
Nu       !      :                |  t  `  T  (                             8  4  0  ,  0                                                                                               $                                                                                                                                                                                                                3  libs                                                                                      ݎ
                                                                                                                                                                                                                                                                                                                                                                                                        dMakekey.info                                                                  G 7    D E                                7                 7    +               ы .  ** ])] *   **   @     B4    @c@              H    "4          M          S     a                                               p          4           3               =     ;     >          /         `               `      6                  ^                                                        w .  * ]ݳ * _] *   ?{@  H   =@    ?ܠ    _  /_)   #  UUXUR """"m"" UUU]R *[j UUUUUR ;{ UUUUaUR                7    -                    ? ? ? WRWWV ? Ui UV . UPUUV Q UbUV    F@  D`DDF   !@     1    `    Ph    n$              &     @     )     0     @     @                       @       @      @ 8    @     @ ~    @ w    @     @     @     @     @    @ t    @     @    @     @ ϰ   @    @      @   0   @      @      @     @   /   @       @       @       @                        ; WmWWT  UVUUT n UoUT  U]UUT     D_DD      P    /h        n媨 6 j UUU-T * =            	                                                      x          r                                                                                                                                                                                                                              q                                                                                                        3  
MAShare_66                                 3        %          q                 	`                                                                                                                                                                                                                                                                                              	                                                                                                              $  MakeKey.sig                                                                03&d 1Ulܲ&Ŀ
"PUDWٲR۲$E*x:#PWe֩;5{(\!RӴ{@ʼ9x/SM236&d-Tg60瀀`eC,>ޭ                                                                                                                                                                x                                                                                              3  q  
MakeKey                                                                       
         -R                                                                                                                                                                                  &  %  $  #  "  !                                                          6                                                                                              /    	NZ_VC.bsh                                                                FORM  6ILBMBMHD   ]   CMAP      }}}bbbHHH---GRAB     CAMG    
BODY  6:           ?       ?       ?       ?         ?          ?          ?       p    ?p          ?? ??       ?wp         ?      8    ?     `    ??    0    ? o    ``    ? N    @    ?         p    ?     @         ?_    0        ?            ?            ?           ?         ?         ? ?           ?          ?         ?     0    ?          ?     	@       ? x          ? ?       0 	    ? ?        `  P    ??   P     p    ? '?    P        0    ?                ? ?      @    ?     @  @    ? };     \    @    ? 3        @    ? /             ? ?         @  <    ? ?  ?    0        ?        0   ? 7          ?              ?             ?            ?             8   ?               ?                 ?          r  L   ?                 ? 5    	          	?q   	    8       	?       p      ?       @   @      ? ?     0 8  @     ?~??           @      ??       `       	?    	  @         	?>   	      @   	?  @ 	      @   	?~?     @   0         	?~                ?~     	            	?     	        	?  	  `        	?   
  @0  @   @   
?     @ 
  @   @        
??      
    p       
??ߏ?     
    @      0   
??    0        T   
?}    T    0       
?       p   4    ?    $    ` @   
   
?      @  @   r    
? ?         B    	? o              ?i          @   ?         $`   ?? ߿                  ?               !   ? ?         p `   ?t     `       `   ?{           @@   ?           p     ?                  ?{7k7                  ?}{_|         $   P    ?Sf    P     $         ?          @      ?         "     H   ?	˿               ? l         @      0   ?     0      8       ?        `         ??        `        ??                  ?               ?         @       ??       @         ?~                ?> }              ?           @      ?>                   ?<                    ?         @  0     p `   ??    `    @        @ @ @  ??     @    @      `       ??     ?       @       ?  ? |         @ >   ?  ?          @      ?  ?                 ?  ?              ?                   ?                    ?                 ?               ?                  ?                  ?                  ?                    ?                   ?                    ?            0       ?           @     `       ? ?             @   x     ?  ?    x      0  0   0       ? ?             `      F     ? ?        @     d      ?    `            `  \      ??   @               0      ? ?               ?       8          ?                 ?      `  0  
    ?       @     `       ? ??                  ? ?                     ?        8          ?  ?        `            ?                   ? ?                     ?  ?       0         ?0pN        `      ?>s$?̇           ?    ??8sd?         /    ?ɓ&sdɓ         /     ? S1sf            ,        ?            ,       ?        p  ,      ?        @    ,  @      ? ?O   @         ,        ? LÆf?           ,        ? $ę2Lȟ             ,      ? |?́>	       p  ,         ? |ϟL2L          `   ,        ?9?~?Æf            ,      ?`c  ?          <  ,      ?         @           ?                  0    ? ?     0      x       `    ?      `   x  x     @    ??      @        @    ??    @         ?          `    ?    `         ?            ?             ?               ?                ? ?         @       ?    @            ?         	  `       ?         	   (      ??        	  0 h  0    ?    0  0   0       ?  @        	`       `    ?   `   	          ??         	   , `      ?           	        ??         `       ?   `      @8A     ?  @        `       ?|           b      ??     `           ?       @        ?       @    0    ?    0    @      ?           :    ? ?   :      #    ?               ?           <    ?    <      `    ?    `       @    ?     @          ?              ?             ?             ?            ?             ?              ?              ?              ?              ?          0    ?    0           ?                ?           `    ?    `          ?             ?             ?              ?            ?            ?              ?              ?              ?        0      ?           0    ?    0            ?         `       ?           `    ? ?   `      @    ?    @         ?             ?             ?             ?              ?        0      ?        `  p    ?    p         ??            ?             ?              ?        0      ?        `      ?        @      ?              ? ?            ?            ?               ?     @        ?            ?           ?      0      ?         h    ?   h    l    ?   @     W    ?   W     $    ?   $          ?        0      ?        `  0    ?    0          ? ?           ?            ?             ?         0    ?    0      `    ?    `      @    ?    @      @    ?    @          ?             ?             ?        0      ?              ?              ?             ?             ?            ?             ?       @      ?             ?              ?              ?        p      ?              ? ?             ?       @      ?             ?              ?              ?          0    ?    0           ?             ?        0    ?    0           ?         @       ?           `    ? '      `      @    ? o   @          ?             ?             ?          ?          ?            ?           ?          ?             ?        @  8    ?   8      `    ?    `      @    ?    @      @    ?    @          ?             ?            ?              ?         @      ?               ?              ?       ?@      ?   ?      A  0    ?      0           ?            `    ?     `         ?     `     ?      1    ?  1        ?          ?      (       ?         (   ?   /     ?  _  7  ?  `   ?     @ ;       ? ?   =   @   ?     @ >|      ?     ?     ?        ?     ?        _      ?@        /  `   ?       ` ? @   ? ?   @  @   ?    &@     ?    l   _ @   ?_    @   {     ?      7   ?       ?       ?       ?        ?        ?        ?       ?       ?       ?                                                                                                                                                                                                                                                                        dMakekey.info                                                                '   H      (]  o  n  m  l  k  j  i  h  g  f  e  d  c  b  a  `  _  ^  ]  \  [  Z  Y  X  W  V  U  T  S  R  Q  P  O  N  M  L  K  J  I  H  G  F  E  D  C  B  A  @  ?  >  =  <  ;  :  9  8  7  6  5  4  3  2  1  0  /  .  -  ,  +  *  )  (                                                                                                              #  Virus_Checker                                                          p                  J  C@ ^    >C2< 	BQK  C @2<.BQ,x +N H瀂C  tp%N+@ f<p C  tN,@CE$&Jp " 4< 6< dN"N,m NbLApNup C  N+@ ~ N(@J fA \NA \N. ,m AC lfN  e@Jga |A"A$$v N, g  A gB-  g   gB-  g  g   g  g   g"@/A ,f _ g/ @Cp&gQB _ g  g  g"@ g
 @Cf"gN,m CKN,m JgR&@AZJ  g k X a `fJ-g  k XCAf k X a t`@ k X a d`0- g/N    .`A&B#  A~!C "N"m ,m Nb"m NbJg
N|"GNLAp NuH :,m &G&k $"g  N,m Cp NJg  ,@ k NJg  &@(k 6Ca  g
"@A ,fCa  g
"@AfCa  gp@ Cazg CalgB- Ca`JgB- CaRg  CaDg  Cwa6g C]a(g @p&CgQ KN"N,m NbL\ Nu LN @JNu k X"(\gp,m "KNNu                                          ׀            Virus_Checker requires at least WB2.04 to run Sorry U=UNPACKOFF/S,B=BOOTBLOCKLIB/S,N=NOWINDOW/S,CBB=CHECKRADBB/S,XFD/S,STDOUT/S,AUTOSCAN/S,CX_POPKEY/K,A=APPICONNAME/K,BBFILE/S,QUIT/S,D=DIR/M APPICONNAME QUIT CX_POPKEY DIR XFD AUTOSCAN CHECKRADBB NOWINDOW UNPACKOFF BOOTBLOCKLIB RAM:VCTEMPARC/ Virus_Checker() icon.library                   r        
           D   0             3K  `$ $VER: Virus_Checker 8.4 (10.12.95) +O a _Jf >A2<1t p ԀQgA1/< rgQ a >a "a ;*a ;|a :pa ;|a b+n:D m4+hHJ-gACfABa ;- f  a I- gB- p a |/,m N,_ - gACfa ; - g
a H a a |a s2a |a ixa Ra ah- g$ a :Xa :a 9a ;a 9p a :a  hJ-k -`Na ` Na a "-g/N|,m "-Nd,_p .m NuH3
 -f -g  ,m  mNJg~"@/	0) | g@ 	f@.) gBS ) "g2(@/,m "A$v@NnA"$v@Na :Q,_"_N` ) "fa z8B- p a z/,m N,_`LPNuH " - g,@paa J @p " "mN+@LD Nu/ -g,m  @NB,_NuH : - gF,@Jf> - g/,@A`N,_+@+@g&@`Gpr A"mʙN+@L\ Nu/ -g,m  @NB -g,m  @NB,_Nua Jfa 9p NuH*BxBt , ,m (Hrf6Jg v"$<N. g d"$-/N"N _,( | ( Nq+F|g >J- ga `JfbJ- ga NJfT a +@tg+Fx`pC/"a XO`  "$<  N. fpD`" $-t&N/ "N gpE`RLa jJgja 
LRP  /
$@C9 Rgj
 B`` LC9a =:Hm9/pFa f/ pGa ^"@ _p "a nPO$_< f
 a ` Xa Jg Na 	RP  $@C9 Rgj
 B`` LC9a <Hm9/pFa / pIa "@ _p "a PO< gJg  | g   a `  H9(-t*-x"$<  ,m N. f0N|" AK$A9&(<  N,/Hm9pP"a fPO`   * g @NJf"  D`$ D -xra f" f"N/"pKa ,XO`L&/$"N/ N|/ "N$L g("AK$A9&(<  N,/Hm9"pLa POL@/Jg,m "m -N.BBtBx,_- f, -tg "@,m Bt- gNN` -xN.LTNu ,m  mNBtBx`/r,m NT,_NuH*-xg  -tg ( &@(K  f e  g` P  fXK   f  +@8+K K"L0@Nge*`p 0|Ј"@N  fC  $fIR`   K ("H0@a geZ`H "Hp 0X `f>p X `f0p \ `f"p L 
fO  	+@@If`NL `a Jf@a  Jf8a `Jf0I^II Jg&p 0, ",  f0, 
g
",  f `   - g6(@(l II Jg"p 0, ",  f0, 
g",  f` - gF(@ , re
 ,  rd.(l (II Jg l H -t(-xNLJg` tHf(kN f L 
fkN fIz ` Dp LX NuH*-xg  -tg &@I^II Jg&p 0, ",  f0, 
g
",  f `  - g6(@(l II Jg"p 0, ",  f0, 
g",  f` - g4(@ , re
 ,  rd(l ,II Jg l NJg`- g 2  DOS f   - gl(@(l p J g"+ @f"+ g >PX` - (@(l II Jg(p  T0, ",  f0, 
g ",  f` I
II Jg ,  @f ,  f` III Jg*p 0, ",  3 fp 0, 
g",  3 f` JgDH,m KB"ON"| f& @C50XHf LA50+HI` PLp LX NuH9. ,m " t NF"NJf0N|" AK$A9&(<  N,Hm9/pH"a POp`p L@NuH~., *&&H   f  g`(H g  k  !@( XH"H"S QS$He     g  g  fP` ?e     fQ Sf ,  J"S&GƷex @gZ@gT@gN@gV@g6@g0@g*@gB@g*@g$@f g R` g列` ?`XH`Q G L~NuH?>,m BBB JgA@C/`Ap -@"p A(/ a  A  DF :f-@< 0@ JgXOL|NuJDkA"-$ Q XOz A"tNJf&JfzA0( |@C/fp gR`" NApa h`` D@z B"$<  ,m N+@g VGx "-$vNJk >g  g  < 
fx `Jfְ< "gа< 	gʰ< ;fx`<  gx  :f|  /f< +|   $"-$ԭ$vNJk  g@"-$3   :f|   /f<   
g  ;g  "g   g  	gR$`B3 "-BN :f KRKfS$| `Jf"-$ QT$6C/JDjJJfF K  DF :g4SY :fY$ -$r  RQ| ` :f| /| NuJg"-NBzNuHRXJ-jJ-k- gT&@A &Sg
j BJ-k
a 
(a 
L`.A,m Ա g  P,g/-+h a 
 a 
$+_ F`LNu` / mt   D(H~CP fQ+L@I `p .NuH(m@ L(  Ar(H~/F"mt  fXP P,+I@_  f>X+I@*_Q mt -xм$"m@""m@" -x  @r LNup`"mta jJg6 @割  e*"@KfA tfCfI Nup NuH0"mt    a  @"@   &IC$I>< U02 < `f| H ITf2Nu`Q -t"
   Q   r LNuH"mt )   b`n  
k`dA 0<QI  , rb`F~<A   gQ`2.+H0+G4&H,x fa"Jg,m NafNI `p LONu"HEn $gTf`4i  g`p 0)    &IPNgGfNgp NupNu&<  
N,&m0.-4Ǘ(Kt (r < E"<  :::(|EgT`&m0.-4Ǘ(Kt r < E"<  :QN;l J<NuaB D  g` P  fXH PH02-<@0 "-4PPr Nur D `    f0 g` P  fXI   f" 	Nup Nu    N"N"NN/p&C,m N+@ g,@C`ENj+@$Nd+@(,_Nu/ - g,@ m$N m(N"N,m Nb,_NuHA.  0 J g,m "@ m$ NL@Nup `` 2fp%`p"H RP/I50a"@&Lf| | _kf` RK|  p#a @fpa"@ Lp " a  L NuH
,m .-fpafp`D G"h BN, gCB(G l JgfS l JgC"	$v@,m Np LPNu/a / pa "@ _"p `a / pa "@ _p " H=:J-jJ-k6- f.- g,,m $C "	g< |fp `p
BNFp `  H@H "AEG-`,m NLO A-`I /a  .  _a  "*p `Qg< |g`p "`Qp
`BLNTCp"B Av#H A #H #J  m$A&B,m NN\JfpL\NuH! ~ Jgp t|JggR`d. ` L Nu/p g
< |gR` _Nu -g @NJg"@aJg"@N`NuHE"@+@ )    g0p #@  #@ $&i (~  g @"Ka J gR`A px N -BLNu/,m "- gNdA"Nj+@ fA"Nj+@ a P,_NuH,m g  < 
g~<  g< 	gSI/	AN _JfX/a rЁ"<   NT _. gB"@C f"@A #H 
#m BAX ( !I "#@  @  `p`p`p"m#@  #@ $L@NuH,m g`< 
gZ<  g< 	gSIANJg<A. "@ ) g
/	"@N"_ Q"i "!I "GNNA f `p`p"m#@  #@ $L@Nu NuBXg:< 
g<  gSIJg& Af a %  `NuA/-X"Oa XA^/a 
"   mCH?>O$H&I*@&a gN,j A L"Oa   n@ j N(H KaHf2$I$ L N(  L"M a  g L"@ Np `
p
`p`p	 O/ a   O L|NuH00t v N"H LaX$@g6C 0* "	 .WfÉ&
 L a4$@gA Nj gt(`tJg L"JaF L"Ca@"J" LNuH@PRNLg/B1@ |  B0PHN _@  Nu"	gp) f0) PRNNu/&j "L  H  H  &_Nu"P"i L  H  NuA*/-X"OaDXA/a ~"   mC^` nA/-X"OaXA /a ~"   mC^` FE G^/,m N,_NuNuHC g",m "Q.g ) g
/	"@N"_NN"G`L@NuH "$H,x C bp N$ g"BNbp  f"* g J,BNXJLDNuQUIT SCAN RELOADBRAIN NOTIFYWATCH STOPNOTIFYWATCH rexxsyslib.library VCHECK.0.0 VCHECK.%ld.1 VCHECK.%ld.2 %ld / a "g\a ,JgT  frf `@rfB- p a b/,m N,_`"<   grfa Ca Ya {a b` NuH
J f
pa :`  .p"<  NT(@+@fp	`Nf* +@)@ fp
`A"@#H 
N/,m A1|  !m p N,_)@ f,p/  a I"EN EN`"mNNBB ` n/,m Hx /Hm ,a>O "@ l ,m N l NJg l N,_p` l pN,_LPNuNUH2&m $m .-  /@ p o N+@fp `L 
/@ p o "GN m"@Np"HN m"@N mN, g mNp ` -LLN]Nu -g @ h r p( Nu/ -g @,m  h N,m  -g/ a H"WN _N` -g"@NN,_NuH(m l ,m NJfLXp Nu/,m &@ @Nj.  KNv, ,_"KN r gZr f` rmX   lP@,m 0; N   @   @ $ @ ( @ 0 @ ,p  l N` p`p`p`p`
p`  @ LXNup `g< < ߲ gpNu` A= g
< 
fB(A= < ;g T< #g La I/,m "HAN,_Jf 0A= a Jg "/,m * "tN/ " gN ,_Jfp1`D/,m p0"<   NT,_, g* rЁ"<  /,m NT,_Jf2/,m "FNN,_p0a / pa "@ _p Hm= "a XO`  A= "&@A 'H 
"Af F'F   
!m p	!@ "/,m N,_Jf8/,m "k NN"KNN,_p2a p/ pa h"@ _p Hm= "a tXO`A"KX ( !I "#@  @ pNup NuH
,m -  fA`A"NI g\-  fA`A"$<  N. fp5a `2(T,g$ l 
a "$& NAU"$vN(F`"gNLPNuH 
,m  -g   @NJg  "@ ) / N"Jg A(P//,m N" AB B (B ,N,_J-kp4/"a 2XOJ- gfA"Lf BXa 4A,m Ա g: P,g4/-+h /a v"mN+_"W Q"i "!I "_NN F` LP NuHNf+@fp3a `^ @p ( rᩃ`,m Aa F. f  Aa F. f  `"A= $&<  NJga `"gNLHNu/C g"Q.ga"G` -g @N`.Nu//	,m  ) gH,m " NL@"@NN"_NN,_Nu/Jf,m Ckp"N+@fpa ,_Nu/ -g"@,m NbB,_NuHBBB -g  ,@N+@g   -|a . g  "$<  /,m N,_, gp/,m "$&-|N/ "N ,_|fL&m K !m| NJg6&'m| p'@  KNJg+k +k t+k +k  +k  x/,m "GNN,_"mNB -LHNu` u,m  . .<g: @g$H g(g6H ga   ga  ̰< f
-m< .a +n .< . *@gB @ g0g* g&Agf~H ga  < f
-m@ *a x+n *@ . 28gad< f
-m8 2a V+n 28 .:DgaJ< f-mD:+n:D m4 (䰭Hga$ m4< f!mH+hHNup&`p'`
p(`p)`p*a / p+a "@ _p " ` p,`p-`p.a / p/`H,m a  n Kf.a   ,f$N-h "m4#ha rNAfa A  A@$f$B$ 9  vf-@a FAa \A  16BifB-h:a  AMa 6 n:a  6 jf&a  f-| :a a a Aa A   L f"Q f-| :a a Aa .. .g   `f:a NA  BA N 0fA  N 0lNAa  lfa \N| 
 LNvAa b fa 8Aa N Lfa $Aa : . *g@ @hBM f6a N-|  -| :NCNJg"@NAa  .&g "@-|  f-y  :a Aa  .&g8(@4<Rf,BN-l m4!la va ~NAa  .&g8(@f,BN-l m4!la 8a @NAa R .&gT(@ \$h C)p	f8Q$h RNug4N-j m4!ja a NAa `
  g` Xfa A%a  tfa ANa ".&k0g6 A"k(g."A ) g"@E%p	fQa zAa `  A`A  C nTfa  fa ~a FAa h"m4 i!|  Hf$N#hz"i N#hNa Aza 2 .&gN @"X$i pG}
f2QN-i-i* n  P!i Na AYa `
 g ` NA  fC 6 a a A[a A  g  ( JfA  lfa pa Aoa  n 0:f -h
 "m4 i#ha @Aa bA @ALIEfB-| 
-| :a  AXa 6A  GITAzfBz-hj:a Aa A VIRUfB-| :a ABa  n SCAR rf-h  "m4#h a Aa  n K4f-h@ "m4#h<a xAa  n:af\ffR0< f-h	J:a PAa r n:afZf$/N _-h:!\ la $NAa B nA f1|`R *C-Qa Aa  n:3@ fN-h :! ha Aa  n:a vf-| :a a Aa  nHf-y -y :a A+a  n:g   f"f   0fa ba -| :Ama x n:J ,f-h:"n "Q#h a ,Aa N n:J) 'f-x :-x 0a A
a * -lgP"@C"zh f@aFf>>f6A>:f-i:!:  B Jg
 m4!ia Aa  n K f$N"m4#h -h  Na ATa  n K f$N"m4#h -h  Na RAa t".&kHgN A"k@gF"A ) g"@a  ,fi < f n:Hf-h n:a a Aa (`  A`A `  ,fa Aa A a 6f-y :! ^ la A-a A ` f-y :! X la A;a  . *g @C (fa |AJa  nA"f-h "m4#ha HAa j n:9  f&Q f-| :a (a a HAa 6A Nufa Aa  n:Af*/N _C BpNR-| :a NAa  nAf"m4#h-ha Aa  m4"ha ^ *f$h N%i!ia nAa A Z,y  fa TAa vA D-| fa :Aa \C  -|  XfV  fL/	N"_ f-i  m  F6f!iB6  lf! lNa A<a  n  P"h g f4N!iv  m4!iz!i h !i~a NAa "m CYpf00) C 0) A L Hf$jVH NvAa p n:J * f-| :a ,A=a N n:A 
 f-hR:a A+a . nAdf-hV"m4#iZa ANa  n:fa f-h:ARa "m4 ia f0N-h^ #hZC d" " "a NAa  -pg8 @B * 
f,/:  2f"/N _! 8 la Ra ZNAa l n:E  $f2N  >f(NJ g-h  -y :Na 
Aa , n:a   vf2E  f(NJg! l-y :a NAa  n: vf$N-y  d-y :a NA-a  n:a   Nf.Q2f$N-y  -y :a bNAa  n:g
i f89  rf. < t-@f< H-@l-| /-| :a $Aa :CNJg"@NAwa   nj8: f"aD f-h $h-h8a 
A&a  n:/) ( "fgfH Bf-h 4:a 
Aja  n":bfNa z fD/N _pC D/NR _-P:-h -h "m4#h Na 
Na 
VAa l n<K/ fa  6 f-h F<Aa F m h $ m"hl1992f!ilAa  n K f.U f$N-h  "m4#h Na 	Aa "m4 ib) ffH f#ha 	Aa "m  iA  f"z  f#h Aa  . *g  @AfA & fa 	PAa f n:A  Ff 	 Jf-h	:a 	Axa < n x P h  ( hgX  "@/	N"_JgFA < f<rX (f2B . Jf(!i T h-i":-i, m !iV6a A
a CNJg"@NAa  nAdf&g f-hV"m4#hZa fAPa  nAJf&g f-h>"m4#hBa 4Aa V n:f   f-z  f-h:a 
Aa , nK ff.a  f-h JAa  n:E  "f  >f-y :a Afa "m4 if   
f"g  2 f#h-h" a Afa ߦAߢC8 - g/
$@$j N$_J- f   . 2ga JfB 2a b . .g0 @g$H g$g6H ga   ga ZJfB .a , . *gL @ g@g* g6Ag."z f(n $f
a   Lga JfB *a LNu . .fNu @a#n f! lA}` hPf8/A C	NJg"@pNR _"m4#h~-h:a ZA` HA 
f" : f-h$:"m4#hBAg` aAfA ` AfAT` C  fN|-x 0-x :NvA
` H f-y :A` 9  fA` a  f-| :A`   fA` 9  fa 0 &fa A` `Aj f t 8f-h A` >3 fA` ,  f-| : m4!| A` JITRfA` d  fa  f-xT:a A8` aA fA` a   f=|
 f-| :a A8` a  fA  fa A` tB f(N!n l-h -h :!L dNAd` DG L f8N-h 8:A  Ppf < >` <  m4!@NAB` A f&    0f! Z h"m4#ha A` C  fa  f-h:A` A" fA 2 f-h P:A` a  fA  
fA` r#: 
f /N _! > d-h:NA` H9 fA f-y :A` &A fC4 f-h:A` A ` fN4 fA` 38 f&#: f09 | f-y :AY` aA f : f (zg-@:Aa ` aCf2A  
f(-h :-h "m #h j"m4#iA` TA f#H . f-x  |A` 2fB fa   ,fa XA` K ff  f-h F:a 2A` gN JfQf-h:a A` a  f"a F f-| :a a A` aAf*g# 
f N|-h: <` !@ NvA` j <  f"|  2f-| 0jA` HA f*A ~ f /C^pNR _CpNRA` a f$h 
 
f-y AE`  a  fa  f-y :A`  aL f&*  f-y :-y \a  A``  A  fA  fA`  A 6fg# f-y n:A `b f"z f-h:A`Dg   fg   Hf-y  B:A`"a3fa   $f-y  ":A`Nu/a _` ,A"BBBNuA *BBBA8BBBA "p rXQF@0NuHA  p 2<H QLNuH . .g @a#n f! laA}a װLNu/,m "m  il0<j fXf   *fN`< :fDH f:`  f0H N|CzwNJg"@NL #hNlNvAa :,_NuH n  P"h a N .f8a  :f./N _!ir  m4!iv!ia NAa LNu"nj/: fC -QjB&A
a  m A"  fF `   `   g6 A|f,g $ f"1|`  1|`>@1|`AJk` n` nNuH"m CYpf,0) C 0) A L Hf$jVH Aa *LNuH"     ,m "m,p N+@,E,m "
tN. g:" $-N m ( | gJj@,( |"NAa  Aa `bHmpMa p/ pa h"@ _p "a xXO`@p a 8"$-,m N"N m ( 2< HDOS a a a pa 8"m, -,,m NLDNuH?:,m ~ (GG"tN, fBN|" Auw$A9&(<  N,/Hm9pMa Ծ/ pa Զ"@ _p "a PO` jrt N. fHm"pNa |XO` L GB /,m pdrNT,_JfpO`(@"$vdx*NP/ Jf N|   g   f   `   G$L*g  S-  f  a JgrgRg  p " 2<0 /,m N,_"    g
  `  ¼    f  "$* &<   NJ ka `^Jga  *   g8HmpQa Ӗ/ pRa ӎ"@ _p "a ԞXO< gA"$*  NFAa  K * a "N @B$RQ& f `  g/"L,m NN,_"gN"gNL\NuH2 -gB @ h V,m NJg0"@*) <) .) N   @f
 G0( &H`   fa >p LLNuH :I@ Lpr Q,m AN -g X&@)m E)J p + 6X80* " IЁ9@ r + 9Ҁ0+ 
HW9@ p " + 6+ 8Ё2+ HQJjR9A p)@ p9@ Er)J "L mEp- fN @Er)J p 0, - fT8`@9@ Er)J p9@ "LEpN @- f0, HЀ9@ p + 6X80, T2, @9A B "LEpN @+@p " + 72, ]9A p + 7T9@ p9@ "LEpN+@f mNBp L\ Nu -g  H :H a V$/  Ia V"  ЁrЁ,m "<   ANtL Jgt(@E )J 
fSJ   =  fSJCbf,m  m"mG@N"LArX ( !I "#@  @ ArG'H  m"mNL\ NuH:- gJ- g Ar!H XB!Bԑ,m N. g   m &h C3k  " 
k  k  C #G  Gp 0( #@ 0( #@ N/ "GN g  (@0,  G0( 9@ 9l  p 0+ r
9@ p9@ /,m  l .C{(N,_+@gN+La Jg2 L"mp" NJ m"LpNP/,m  LN,_p` m/,m N|,_ LNp L\NuHJg>- f6- f.-  g& a  ,m a rg m h VN`,m  -g6 @. H ,m N| G h VNJg"@N`NvLA NB/,m  -g
 @NB -g
 @N|B,_ -g @pNhBL@NuH0,m (m L"mND,m &l 2"Kp N"KpN"Kp " $ & , 8R4, , 9R6, 
, 6, 7N,m  mNBa ^JgF/,m  L"mp" NJ m"LpNP,_"LG XAr'H  mN LNLXNuH 2 m"mGx,m NLL Nu 9                                 virus    ` Ʉ/JgT,m H /< ]$m"O jHz /( NuO L    g0   g  g  g  g`p ,_Nup`p`p`/,m Jf H  $OHx  t(Hx PHyHx HyHmHyHx HyH  $OHx  tHx HyNHx HyAHx HyBHx HyCHx HyDH  $OHx  tHx HyNHx HyAH  $OHx  tHx Hy
Hx HyHx HyHxHy  O N.JL+@Hx  Hx  / /<IH  $OHx  tHx HyNH  $OHx  tHx _Hy Sp a / Hy UHxHy Hx Hy  O N.JL+@Hx  Hx  / /<IH  $OHx  tHx _Hy S- g
Hx Hy  <   a `/ Hy UHxHy Hx Hy  O N.JL+@Hx  Hx  / /<IH  $OHx  tHx _Hy S <   a / Hy UHxHy Hx Hy  O N.JL+@Hx  Hx  / /<I O N.JLHx  Hx  Hx Hy/ /<I O N.JLHx  Hx  / /<I O N.JL/ /< O N.JL+@g  H /< Y$m"O jHz /( NuO L +@g  a  H8I  g4(T,g.Hx  Hx /, 
Hx  Hy  m"m&ONO (F`L@A H / /</<  $m"O jHz /( NuO L  -d`2H /<  $m"O jHz /( NuO L BBp`p ,_Nu/,m Jg2BdH /<  $m"O jHz /( NuO L BB,_NuA  <  r QA !H XB!H~_C &mI #L 
a MlA X ( !I "#@  @ C JQLXNuH" | - g |v `2.-| a .Cf" -g,m  @Cp$@NLDNu` ȠC@ mrp  QJf- g CiTr0@ `CiZ -g @,m p$@Ci0N,m JgAh]p "Gr ND`a Jf bRT"G3|  #m (#|    $B ,N8"G) Jf3| 	 B $N8"GN>Jf^ m2< t .ԘdRQFf @"GaffifAq` p EwJ gd") @f
") gPX` r ` J- f JgHm"`p -@A/0 p6a 8/ pa 0"@ _p "a @X`  - g2$@$j p J g"") @f
") gPX` r ` :#|  g xEu<EE Jg( Rp 0* "*  f0* 
g "*  f`   - g<$@$j EE Jg( Rp 0* "*  f0* 
g  "*  f`   -g: @p 0STH"  f "(  @f"(  `f"(  g A QJg:H,m IB"ON"| f @C9XHf LCA9`6LCC Er$v	fQ` h"mC Erzvf vQ` L RPC50g
jB JgI"`Ap -@(p p7a r/ p9a j"@ _Hm50/p "a tPO< grg  a 8Jg p;a 2/ p<a *"@ _p " a :< g rfAq`AqFp "m/	r"Q"_p"QH,m .-*-@a jJf@"E3|  N8"EJ  g:p=a Ķ/ p>a Į"@ _p " a ž"G< gJfN>`p?a ŒL@`  #|    $#m (3|  B ,N8"E3|  N8"E3| 	 B $N8"GN>`JgI"`Ap -@(p p:a "/ p8a "@ _/p "a (XO< g(Jg  rg  rg a Jg  rg H -f$,m pT"<  NT;| (+@fpa ĸ`FJm(fa  JfSm("m mp 0RXBX     @  `  a F@ m1@ a<L@| a a a p -@- g AnH p  C"B) a B` H1 -gL,m - fAe`Ae"$<  N. g," $- Bv 6X/N/ "NL fL@NupBa `H m,~ > | T& ,m "<  NTJg*+@;| ("@ F"S"""""Q"FNNp `pL@NuH
,m vI,h gBa f<"G3|  N8"GJ  f$3|  N8"G )  h g)h N>LP@NuN>Q`a Jf$/,m  -dNa < g,_/ a ~ NupNuHCb6p0-@@ A/f _pa 4LNuHCb7`` .H  - gD,@"H,.-g8J-j2 GNJg( G( < fp NJf G/( 8/pS"a >POL@Nu/J-j8a ( - g.,@N+@fpa *` @|  C!I C la!I ,_NuH `JfE lf"WfUI :g /g
| / B) L Nu/ - g,@ -g
 @NB,_Nu/ - g
,@N+@,_Nu/ - g,@ -g @N,_NuH  - g`,@ -gX&@ @"L |  NJg&- g+ < g< g< g KN`
N  k  + +Ht+@x`p LH NuHa j&RL.- G ( g  &@+@t ( +@x,  a Jfa rBtBxJg  RP  / " C9 @ Pj BAfSH/ - >"G"i f a & _BHm9Hm G/( pT"a TO A9CfSH - >"G"i f"_"QA50j BA9C50a  LNuHA^C p p)AP p  ") hp)¼   Jf)`(< f
)< 5`< f
") ̒)`")0) p NLNu/Jg ,m H /< ]$m"O jHz /( NuO L    g    fa 	`   2g  1fa ``  /f:H 2Hx  Hy  m"m&O,m NlPO m"mN2LL ` j  .fVa Jf XAC= fa 	Jg BH 0Hx  Hx Hm= Hx  Hy  m"m&ONO L `   -f   <  ma AJgD AC= fa 	,Jg2H 0Hx  Hx Hm= Hx  Hy  m"m&ONO L H 2BHx Hy Hm@Hy  m"m&O,m NlO LL ` p  0f  Jg <  ma A4Jg AC= fHG= JghI g^(T,gX l 
"Ka J fFH 0/-Hx  Hy   m"m&ONO L "L Q"i "!I "L/,m NN,_(F`L@`   ,fhH 0Hx Hx  Hy  m"m&ONO L +@g H 2Hx  Hy / Hy  m"m&O,m NlO LL ` X  3f,/C g"Q.g i 
Cfa "G`.` $`  ,_Nu/B,m Jf H  $OHx  t(Hx (HyHx HyHmjHyHx HyH  $OHx  tHx HyNHx HyAHx HyBHx HyCHx HyDH  $OHx  tHx HyNHx HyAH  $OHx  tHx Hy
Hx HyHx,Hy  O N.JL+@Hx  Hx  / /<IH  $OHx  tHx HyNH  $OHx  tHx Hy Hx-Hy Hx Hy $Hx dHy Hx Hy  O N.JL+@Hx  Hx  / /<IH  $OHx  tHx Hy Hx Hy Hx.Hy  O N.JL+@Hx  Hx  Hx Hy/ /<I O N.JLHx  Hx  Hx Hy/ /<IH  $OHx  tHx HyNH  $OHx  tHx _Hy Spa / Hy UHx/Hy Hx Hy  O N.JL+@Hx  Hx  / /<IH  $OHx  tHx _Hy Sp a >/ Hy UHx0Hy Hx Hy  O N.JL+@Hx  Hx  / /<IH  $OHx  tHx _Hy S <   a / Hy UHx1Hy Hx Hy  O N.JL+@Hx  Hx  / /<I O N.JLHx  Hx  Hx Hy/ /<IH  $OHx  tHx HyNH  $OHx  tHx _Hy S <   a D/ Hy UHx3Hy Hx Hy  O N.JL+@Hx  Hx  / /<IH  $OHx  tHx _Hy S <   a / Hy UHx2Hy Hx Hy  O N.JL+@Hx  Hx  / /<I O N.JLHx  Hx  Hx Hy/ /<I O N.JLHx  Hx  / /<I O N.JL/ /< O N.JL+@g :A H / /-/<    /< ^$m"O jHz /( NuO L A H / /-/<    /< ^$m"O jHz /( NuO L A H / /-/<    /< ^$m"O jHz /( NuO L A H / /-/<    /< ^$m"O jHz /( NuO L A H / /-/<    /< ^$m"O jHz /( NuO L A H / /-/<    /< ^$m"O jHz /( NuO L A H / /-/<    /< ^$m"O jHz /( NuO L H 8I g4(T,g.Hx  Hx /, 
Hx  Hy  m"m&ONO (F`L H /< Y$m"O jHz /( NuO L +@g>A H / /</<  $m"O jHz /( NuO L  -``2H /<  $m"O jHz /( NuO L BBp`p ,_Nu/,m JglA H / /</<  $m"O jHz /( NuO L  -F`H /<  $m"O jHz /( NuO L BB,_NuH ,m A= g
< 
fB(A= < ;gr< #gla 6"HANJfZA= a DJgNrЁ"<   NTJfpVa `4A= "&@A 'H 
"AfA"KX ( !I "#@  @ p`p LH NuHC g,m "Q.gNN"G`L@NuH
,m - fA`A0,"NI gJ"$<  N. fpWa J`2(T,g$ l 
a r"$& NAU"$vN(F`"gNLPNuH,m Aa . f A0a . f `"A= $&<  NJga x`"gNLHNu,x +N J-fACfa 2a Jga  @CSp r a pNuN+@, @!M X+h hp!@ Nrfp`+@\rᩃ`a Nf+@fp$` @p ( rᩃ`A|  1| 0 !m +H.vxa fAB@ "GN>YQa 	a ,/,m A"Nj+@ fA"Nj+@ ,_a Za J- ga za J- ga PNf+@fp`  @/ p ( rᩃ` CA#H #M p3@ 	A#H 
C|  3| 0 #m Ap " NDJgp` Cp	3@ A#H (N8 Jg*Nf+@g "@A#H 
N mp ( rᩃ`a a `/,m Ap N+@,_J- ga A!H XB!a A!H XB!A!H XB!a va J- g/,m +n .<+n *@+n 28,_a J- gJ- ga `p a v- g  J- ga 
a p NuArp2QNua Da ,m a  -g @/,m N,_"- g/,m Nd,_a a va 8a a ra a a 3Ta ja - gCp
3@ A#H (N8CN> -g @N` -g @N` -ga / "@N _N` -\gN -,g @!mh a a faBa `\/Jf0,m Cp N+@g,@A+NJg"N,m NbB,_Nu/ -g,@N"N,m NbB,_NuH,m ~G  g"@NbQLHNu/~ p&C{N+@ f~b`  Ca  +@ f~ `  Ca  +@ f~`  Ca  +@ f~`  Ca~+@ f~`nCan+@ f~`^C=a^+@f~`NCaN+@ CMp$N+@f~`0Ca0+@ C*p N+@p'C	N+@ C^a
+@  .Nup%N/  WNJg"@N` Nu/ ( 0   m(#h 0H@")\p,i "i,NLC (  f  _ Nu g @`H
,m A~a ^. f Aa L. f `@"I $&<   NJk*"<   вf VCIEfS MQA0 1m  "gNLPNuHa a T,m - gA`A~"$<  N. fpa `$"$&<   /N"gpa "gNL@NuA^CN+@4NuAp "Gr NDJNu - g^Hp| @ h C\EL -4"- $- &-NL>Jg0A/< S"<   Q a A< S"<   QNu"$<  NH瀀g< Ae< Zb    @`LNuH,m  -g
"@NNB,m AF"$<  N. f" AV"$<  N. f `rYO"$vN(XOrfb*HDȼ   | T,m "<  NT+@g< @00$"&*,m N( faNF@f;| ("g,m NL@Nup@a  -g,m "@NNB`/ -g
,m "@NN,_NuH@ mr  2XQLNuH?>a ,m A."A $vdx Nvrg4A "Hf)< :g< /g| /`SETfaDJf0A C%fSHCTIfa&JfA CfaJg a  L|NuA "$<  N. g"A "$&<   փ(N"NpNup NuNuH~A t "<  "Hp ԀQf 
p 0("<  "HQVCKEf  0<0 h f  p (C2(SQYV1. f  C Nf*) o f") b f) o f) d f
) y g  ( $ N h"( ((lJ(g4(6(!@l!Ap!Bt!CxƂ!C|Jpg0 ( !@C - g @ ( $$VERg @NJg   L~NupXa +@pYa +@pZa +@p[a |+@p\a r+@:p]a h+@Np^a ^+@vp_a T+@p`a J+@NuHKd m ph(gNz`A  +h  l+h lp+HL!NsHKNLNuHJg ,m H /< ]$m"O jHz /( NuO L    g x   fa ` h   g   fa `   f:H 2Hx  Hy  m"m&O,m NlPO m"mN2LL ` j   fVa Jf XAC= fa Jg BH 0Hx  Hx Hm= Hx  Hy  m"m&ONO L `    f   <  ma +0JgD AC= fa (Jg2H 0Hx  Hx Hm= Hx  Hy  m"m&ONO L H 2BHx Hy Hm@Hy  m"m&O,m NlO LL ` p   f  Jg <  ma *Jg AC= fHG= Jg`I gV(T,gP l 
"Ka JJ f>H 0/-Hx  Hy   m"m&ONO L "L Q"i "!I "La (F`L@` &   fhH 0Hx Hx  Hy  m"m&ONO L +@g H 2Hx  Hy / Hy  m"m&O,m NlO LL ` `` \LNu/B,m Jf dH  $OHx  t(Hx (HyHx HyHmVHyHx HyH  $OHx  tHx HyNHx HyAHx HyBHx HyCHx HyDH  $OHx  tHx HyNHx HyAH  $OHx  tHx Hy
Hx HyHx Hy THmHy UHx _Hy SHx Hy  O N.JL+@Hx  Hx  / /<IH  $OHx  tHx HyNH  $OHx  tHx Hy Hx Hy Hx Hy $Hx dHy Hx Hy  O N.JL+@Hx  Hx  / /<IH  $OHx  tHx Hy Hx Hy Hx Hy  O N.JL+@Hx  Hx  Hx Hy/ /<I O N.JLHx  Hx  Hx Hy/ /<IH  $OHx  tHx HyNH  $OHx  tHx _Hy Spa / Hy UHx Hy Hx Hy  O N.JL+@Hx  Hx  / /<IH  $OHx  tHx _Hy Sp a / Hy UHx Hy Hx Hy  O N.JL+@Hx  Hx  / /<IH  $OHx  tHx _Hy S <   a V/ Hy UHx Hy Hx Hy  O N.JL+@Hx  Hx  / /<I O N.JLHx  Hx  Hx Hy/ /<IH  $OHx  tHx HyNH  $OHx  tHx 
HyHx _Hy S <   a / Hy UHx Hy Hx Hy  O N.JL+@Hx  Hx  / /<I O N.JLHx  Hx  Hx Hy/ /<I O N.JLHx  Hx  / /<I O N.JL/ /< O N.JL+@g A H / /-/<    /< ^$m"O jHz /( NuO L A H / /-/<    /< ^$m"O jHz /( NuO L A H / /-/<    /< ^$m"O jHz /( NuO L A H / /-/<    /< ^$m"O jHz /( NuO L A H / /-/<    /< ^$m"O jHz /( NuO L A H / /-/<    /< ^$m"O jHz /( NuO L H 8I g4(T,g.Hx  Hx /, 
Hx  Hy  m"m&ONO (F`L H /< Y$m"O jHz /( NuO L +@g>A H / /</<  $m"O jHz /( NuO L  -``2H /<  $m"O jHz /( NuO L BBp`p ,_Nu/,m JglA H / /</<  $m"O jHz /( NuO L  -F`H /<  $m"O jHz /( NuO L BB,_Nu/Jg ,m H /< ]$m"O jHz /( NuO L    g z   fa a !a 6a 0` ^   f
 ` L   dgJfpa `   f
pa ` ~   f
pa ` l   fa ` \   gg   ffa pAa ` >   efhJ-j
A Hh`Hm6 - g @p 0( / 0( / `Hx  Hx   - g @/(  /( `Hx  Hx  /-/-p"a O ` ΰ   jf/-P/-L/-TpU"a O `    ifa `    hfa:A;P ;h  ` ~   fa la  Na a a `  ` Z,_NuA H / /</<  $m"O jHz /( NuO L Nu/,m JgRJf(H /< [$m"O jHz /( NuO L `&H /< \$m"O jHz /( NuO L ,_NuHJ ga ,m Jf H  $OHx  t(HmHyHmHyHx HyHx HyHx HyHmHyH  $OHx  tHx HyNHx HyAHx HyBHx HyCHx HyDHx Hy 	H  $OHx  tHx HyNH  $OHx  tHmHy pha / Hy Hx _Hy Spca / Hy UHx  Hy Hx Hy  O N.JL+@Hx  Hx  / /<IH  $OHx  tpia / Hy Hx _Hy Spda / Hy UHx Hy Hx Hy  O N.JL+@Hx  Hx  / /<IH  $OHx  tHm Hy pja D/ Hy Hx _Hy Spea ,/ Hy UHx Hy Hx Hy  O N.JL+@ Hx  Hx  / /<IH  $OHx  tHx Hy Hx Hy Hx Hy  O N.JL+@,Hx  Hx  Hx Hy/ /<I O N.JLHx  Hx  Hx Hy/ /<IH  $OHx  tHx HyNH  $OHx  tpka H/ Hy Hx _Hy Spfa 0/ Hy UHx Hy Hx Hy  O N.JL+@$Hx  Hx  / /<IH  $OHx  tpla / Hy Hx _Hy Spga / Hy UHx Hy Hx Hy  O N.JL+@(Hx  Hx  / /<I O N.JLHx  Hx  Hx Hy/ /<I O N.JL/ /< O N.JL+@g A H /-,/<    /< ^$m"O jHz /( NuO L A H / /-(/<    /< ^$m"O jHz /( NuO L A H / /- /<    /< ^$m"O jHz /( NuO L A H / /-/<    /< ^$m"O jHz /( NuO L A H / /-/<    /< ^$m"O jHz /( NuO L A H / /-$/<    /< ^$m"O jHz /( NuO L H /< Y$m"O jHz /( NuO L +@g>A H / /</<  $m"O jHz /( NuO L  -``2H /<  $m"O jHz /( NuO L BBp`p LNu/,m JglA H / /</<  $m"O jHz /( NuO L  -F`H /<  $m"O jHz /( NuO L BB,_NuA p NJgp` NuH "J fT,m E5m  5m  NJg6"@p ) R5@ N"JN+@ g @ h Vp r( ᩃ`LD NuH ,m  - g@ @&h Vp r+ Fí`H ,m N| KNJg"@N`NvLA NB LH NuH - gH,m &@ K h VNJg4"@&) 8) N   fa r`   fθ| fa ^p a LHNu/Jg H /< ]$m"O jHz /( NuO L    g    fa ` p   yg   xfa ^`   wfz <  m|a vJg8Jg4 AC lfp!a  -g @C la !I  -g
 @C l!I H 0Hm lHy  m|"m&O/,m Nl,_POL ` *   vfH <  mxa Jg Jg  AC ,fJga F`a a 6a `` ڰ   uf mta Jg A `    tf mpa Jg A `    kf$ mHa Jg A ga ` za H` r   jf mLa ZJg \A ` T   if$ m0a <Jg >A ga р` 0a ` (   hf m4a Jg A ` 
   gf$ m8a Jg A ga R` a ` ް   ff m<a Jg A `    ef m@a Jg A `    df$ mDa Jg A ga ` ~a 6` v   lf mPa ^Jg `p a 
` V   nf mXa >Jg @pa ` 6   pf m`a Jg  pa `    rf mha Jg  pa `    mf mTa Jg p a ` ְ   of m\a Jg pa `    qf mda Jg pa b`    sf mla ~Jg pa B` v   zf ma ^Jg `A ` X` T,_Nu/,m Jf XH  $OHx  t(Hx HyHm@HyHx HyH  $OHx  tHx HyNHx HyAHx HyBHx HyCHx HyDH  $OHx  tHx HyNH  $OHx  tHx _Hy Spma 8/ Hy UHx dHy Hx Hy Hx Hy 
- a / Hy  O N.JL+@DHx  Hx  Hx HyHx Hy/ /<IH  $OHx  tHx _Hy Spna / Hy UHx Hy THx eHy Hx Hy Hx Hy 
- a / Hy  O N.JL+@@Hx  Hx  Hx HyHx Hy/ /<I O N.JLHx  Hx  / /<IH  $OHx  tHx HyNH  $OHx  tHx _Hy Spoa / Hy UHx fHy Hx Hy Hx Hy 
- a H/ Hy  O N.JL+@<Hx  Hx  Hx HyHx Hy/ /<IH  $OHx  tHx _Hy Sppa b/ Hy UHx Hy THx gHy Hx Hy Hx Hy 
- a / Hy  O N.JL+@8Hx  Hx  Hx HyHx Hy/ /<I O N.JLHx  Hx  / /<IH  $OHx  tHx HyNH  $OHx  tHx _Hy Spqa / Hy UHx hHy Hx Hy Hx Hy 
- a / Hy  O N.JL+@4Hx  Hx  Hx HyHx Hy/ /<IH  $OHx  tHx _Hy Spra / Hy UHx Hy THx iHy Hx Hy Hx Hy 
- a h/ Hy  O N.JL+@0Hx  Hx  Hx HyHx Hy/ /<I O N.JLHx  Hx  / /<IH  $OHx  tHx HyNH  $OHx  tHx _Hy Spsa N/ Hy UHx jHy Hx Hy Hx Hy 
- a / Hy  O N.JL+@LHx  Hx  Hx HyHx Hy/ /<IH  $OHx  tHx _Hy Spta / Hy UHx Hy THx kHy Hx Hy Hx Hy 
- a / Hy  O N.JL+@HHx  Hx  Hx HyHx Hy/ /<I O N.JLHx  Hx  / /<IH  $OHx  tHx HyNH  $OHx  tHx _Hy Spua  / Hy UHx lHy Hx Hy Hx Hy 
r - a h/ Hy  O N.JL+@PHx  Hx  Hx HyHx Hy/ /<IH  $OHx  tHx _Hy Spva v/ Hy UHx Hy THx mHy Hx Hy Hx Hy 
r - a / Hy  O N.JL+@THx  Hx  Hx HyHx Hy/ /<I O N.JLHx  Hx  / /<IH  $OHx  tHx HyNH  $OHx  tHx _Hy Spwa / Hy UHx nHy Hx Hy Hx Hy 
r- a / Hy  O N.JL+@XHx  Hx  Hx HyHx Hy/ /<IH  $OHx  tHx _Hy Spxa $/ Hy UHx Hy THx oHy Hx Hy Hx Hy 
r- a / Hy  O N.JL+@\Hx  Hx  Hx HyHx Hy/ /<I O N.JLHx  Hx  / /<IH  $OHx  tHx HyNH  $OHx  tHx _Hy Spya \/ Hy UHx pHy Hx Hy Hx Hy 
r- a / Hy  O N.JL+@`Hx  Hx       p   )                                                                                                                                                                                            ~  }  |  {  z  y  x  w  v  u  t  s  r  q                                                                                                                                                                                              '    Hx HyHx Hy/ /<IH  $OHx  tHx _Hy Spza / Hy UHx Hy THx qHy Hx Hy Hx Hy 
r- a 0/ Hy  O N.JL+@dHx  Hx  Hx HyHx Hy/ /<I O N.JLHx  Hx  / /<IH  $OHx  tHx HyNH  $OHx  tHx _Hy Sp{a 
/ Hy UHx rHy Hx Hy Hx Hy 
r- a 
r/ Hy  O N.JL+@hHx  Hx  Hx HyHx Hy/ /<IH  $OHx  tHx _Hy Sp|a / Hy UHx Hy THx sHy Hx Hy Hx Hy 
r- a 	/ Hy  O N.JL+@lHx  Hx  Hx HyHx Hy/ /<I O N.JLHx  Hx  / /<IH  $OHx  tHx HyNH  $OHx  tHx _Hy Sp}a / Hy UHx tHy Hx Hy Hx Hy 
- a 	/ Hy  O N.JL+@pHx  Hx  Hx HyHx Hy/ /<IH  $OHx  tHx _Hy Sp~a 0/ Hy UHx Hy THx uHy Hx Hy Hx Hy 
- a / Hy  O N.JL+@tHx  Hx  Hx HyHx Hy/ /<I O N.JLHx  Hx  / /<IH  $OHx  tHx HyNH  $OHx  tHx _Hy Spa j/ Hy UHx zHy Hx Hy Hx Hy 
- a / Hy  O N.JL+@Hx  Hx  Hx HyHx Hy/ /<I O N.JLHx  Hx  / /<IH  $OHx  tHx HyNH  $OHx  tHx _Hy Spa / Hy UHx Hy Hx vHy Hx Hy $Hx >Hy Hm ,Hy  O N.JL+@xHx  Hx  Hx Hy/ /<I O N.JLHx  Hx  / /<IH  $OHx  tHx HyNH  $OHx  tHx _Hy S <   a / Hy UHx Hy Hx wHy Hx Hy $Hx bHy Hm lHy  O N.JL+@|Hx  Hx  Hx Hy/ /<I O N.JLHx  Hx  / /<IH  $OHx  tHx HyNH  $OHx  tHx _Hy S <   a :/ Hy UHx xHy Hx Hy  O N.JL+@Hx  Hx  Hx Hy/ /<IH  $OHx  tHx _Hy S <   a / Hy UHx yHy Hx Hy  O N.JL+@Hx  Hx  Hx Hy/ /<I O N.JLHx  Hx  / /<I O N.JL/ /< O N.JL+@g A H / /-/<    /< ^$m"O jHz /( NuO L A H / /-D/<    /< ^$m"O jHz /( NuO L A H / /-@/<    /< ^$m"O jHz /( NuO L A H / /-</<    /< ^$m"O jHz /( NuO L A H / /-8/<    /< ^$m"O jHz /( NuO L A H / /-4/<    /< ^$m"O jHz /( NuO L A H / /-0/<    /< ^$m"O jHz /( NuO L A H / /-L/<    /< ^$m"O jHz /( NuO L A H / /-H/<    /< ^$m"O jHz /( NuO L A H / /-P/<    /< ^$m"O jHz /( NuO L A H / /-X/<    /< ^$m"O jHz /( NuO L A H / /-`/<    /< ^$m"O jHz /( NuO L A H / /-h/<    /< ^$m"O jHz /( NuO L A H / /-p/<    /< ^$m"O jHz /( NuO L A H / /-t/<    /< ^$m"O jHz /( NuO L A H / /-x/<    /< ^$m"O jHz /( NuO L A H / /-|/<    /< ^$m"O jHz /( NuO L A H / /-/<    /< ^$m"O jHz /( NuO L A H / /-/<    /< ^$m"O jHz /( NuO L H /< Y$m"O jHz /( NuO L +@g>A H / /</<  $m"O jHz /( NuO L  -``2H /<  $m"O jHz /( NuO L BBp`p ,_Nur J gr Nu gpNup Nu/,m JglA H / /</<  $m"O jHz /( NuO L  -F`H /<  $m"O jHz /( NuO L BB,_Nu/- Jg`B $Nu/- Jg`B $NuCB/,m Nr,_"-NuC < /,m Nr,_"-NuH |Hr $p< < 0< :e^< 0< :e^Q  QL@    p< l< .`
< e< .QQBL GNu/p gR` _NuH?/ D|"0` gR܁`*"0`\܁C` Ed&	2<dHF SQCP <  EP"0P\ځP  dCP؈*aFf  f gXS  dQ`"EQa$f   gJfS Y  dQ``Tc
QfTNupNuQfT`Qf\`QgQfr T gЁ`rQgQgQfG T `L r   dNu DPH PH     0@Nfp 0"H1|N0 " IC 	"SQr    NuH0 DXf.$H&H   -@| <!|,x  叞%@"D#@  "SQr  YLNuERROR|Could not open dos.library version 37 or better ERROR|Could not open intuition.library version 37 or better ERROR|Could not open graphics.library version 37 or better ERROR|Could not open asl.library version 37 or better ERROR|Could not open gadtools.library version 37 or better ERROR|Could not allocate memory for a BrainFile|Bootblock ID not saved ERROR|Could not alloc a signal for Main Handler ERROR|Creating Commodity|commodities.library version 37 or better not available Okay ERROR|Creating Commodity|Cannot alloc memory for structure ERROR|Creating Commodity|Cannot create message port ERROR|Creating Commodity|Cannot create Broker ERROR|Cannot create Hotkey|Maybe it is being used already ERROR|Could not open utility.library version 37 or better Start Iconifie_d      Virus_Checker version %ld.%ld by John Veldthuis|Virus_Checker.brainfile %ld.%ld|unpack.library version %ld.%ld||REGISTERED TO: %s|Please support SHAREWARE|Details in Virus_Checker.guide ERROR|Could not open diskfont.library version 37 or better  ERROR|Opening input.device|Could not create Input Handler ERROR|Could not create port for input.device ERROR|Could not create an ASL File Requester|Cannot continue with this operation ERROR|Could not open xfdmaster.library version 34 or better|Cannot use XFD checking ERROR|Could not open Config file for saving|Failed to save Configuration ERROR|Could not write Config file|Failed to save Configuration ERROR|Could not create INFO Structure unpack.library|Cannot check into LHA files ERROR|Could not create INFO Structure unpack.library|Cannot start Checker _Add _Remove WARNING WARNING|Please make sure there are no files in this directory|Any files in here will be deleted by unpack.library WARNING|Your computers memory was infected with the virus|The virus has now bee disabled/removed ERROR|Could not create a port for access to trackdisk.device WARNING|A program just run has infected your computers memory with the WARNING|The CoolCapture vector has been changed WARNING|The ColdCapture vector has been changed WARNING|The WarmCapture vector has been changed WARNING|The trackdisk.device BeginIO() vector has been changed WARNING|The Execs DoIO() vector has been changed Leave it|Restore it WARNING|The CoolCapture vector is not zero WARNING|The ColdCapture vector is not zero WARNING|The WarmCapture vector is not zero Leave it|Clear it WARNING|Cannot add File/Dir|"%s" to WatchList|Cannot allocate memory for Node WARNING|Cannot add File/Dir|"%s" to WatchList|Cannot Lock File/Dir WARNING|Cannot add Fir/Dir|"%s" to WatchList|Could not StartNotify() File/Dir ERROR|Could not create a port for WatchList|Cannot watch any Files/Dirs WARNING|The File/Dir "%s"|has been altered ERROR|Cannot open VirusChecker.watch to save WatchList|List not saved Virus_Checker had trouble reading the BOOTBLOCK| on the disk in "%s"|Cannot check it for BootBlock viruses DANGER DANGER DANGER|The disk in drive "%s" is INFECTED|with the "%s" BootBlock virus Ignore|Remove|Display|Learn Ignore|Display|Remove WARNING WARNING WARNING|The disk in drive "%s"|has NON-STANDARD BootCode INSTALL which Bootblock? WB2|WB1.3|CANCEL ERROR|Disk is write protected Retry|Cancel DANGER: Cannot open trackdisk.device|It must be in use. Try another drive WARNING|Problems reading the "VCBrain" file|Cannot use custom Bootblock checking Memory Check completed ERROR|Could not save Bootblock ID's to VCBrain. Brain not saved ERROR|Could not allocate memory for buffer to read file "%s"|File not checked for viruses ERROR|Could not open file "%s" for reading|File has not been checked for viruses ERROR|Could not read file "%s"|File has not been checked for viruses WARNING The File|"%s"|is infected with the|"%s" virus IGNORE FILE|DELETE FILE ERROR Deleting File|"%s"|%s IGNORE FILE|DELETE FILE|REMOVE VIRUS DANGER: ERROR Opening file for WRITE|%s|The File "%s"|is still infected WARNING: HUNK STRUCTURE is corrupt|The file "%s"|has been chopped to zero length DANGER: ERROR Writing to file|%s|The File "%s"|is in an unknown state ERROR LOCKING FILE/DIR|"%s"|File/Dir has not been scanned for viruses ERROR: Could not Allocate a control block for ExAll()|The Dir "%s" will not be scanned ERROR: Could not Allocate 400 bytes Memory|for ExAll() Reads|The Dir "%s" will not be scanned ERROR|Could not open file "%s"|for writing|File is still infected WARNING|The file "%s"|is READ PROTECTED|Virs_Checker will not be able to check it Ignore File|Unprotect File ERROR Unpacking Archive|Could not unpack "%s"|Error was "%s" DANGER: The File "%s"|In the Archive "%s"|is Infected with the "%s" virus|DANGER: The virus is still present Floppies Checked   %ld|Files    Checked   %ld|Viruses  Found     %ld ERROR|Could not allocate memory for a CheckNow node|File/Dir not added ERROR|Cannot open Virus_Checker.check to save CheckList|List not saved Project File Scan Full Memory Check Save Config Stats About Quit Window Snapshot Window Check for Viruses ERROR|Could not open bgui.library version 38 or better|Virus_Checker needs this library to operate_Options _File/Dir Watch _Scan Files Check _Now _Quit cClicking on this button opens
up the Options window cClicking on this button opens
up the File/Dir Watch window cClicking on this button opens
up the File Requester to select a
File/Drive/Directory to check for viruses cClicking on this button opens
up the Check Now window cClicking on this button causes
Virus_Checker to Quit Use _XFD Master Ignore Capture _Vectors _Use Window Use _BootBlock.library _Ignore BB Read Error Check into _LHA/LZH Files Un_pack Files AppIcon _On Check DF_0 BootBlock Check DF0 Full Check DF_1 BootBlock Check DF1 Full Check DF_2 BootBlock Check DF2 Full Check DF_3 BootBlock Check DF3 Full Scan _Watch Window _Arexx Scan WIndow PopUp _HotKey _Temporary Directory _Save Options _Close Window Check _Now _Learn _Ignore bgui.library intuition.library graphics.library asl.library gadtools.library dos.library locale.library commodities.library Bootblock.library unpack.library workbench.library rexxsyslib.library utility.library diskfont.library icon.library xfdmaster.library clist.library 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 0 1 2 3 4 5 6 7 8 9 Click on this to bring up the options Window Click here to scan files for viruses PROGDIR: KEYPATH SHAREWARE Virus_Checker Options Virus_Checker Watch Virus_Checker CheckNow Virus_Checker BootBlock Dump _Files Watched Virus_Checker AppIcon Ad[@GAmqZWQYW@YWK input.device clipboard.device ramdrive.device trackdisk.device df0:l/Disk-Validator L:Bootblock.brainfile DF0: ERROR WAS 
 Abort Directory Abort Scan This Scan finished, Click here to Continue Scanning Files for Viruses Checking Disk in DF0: Checking RAD: Disk BootBlock Select Name of Dir/File  DF0:  DF1:  DF2:  DF3:  SYS:  RAD:  df0:s/startup-sequence  s:startup-sequence Exit english PROGDIR:Virus_Checker_AppIcon PROGDIR:Virus_Checker.config S:Virus_Checker.config PROGDIR:VirusChecker.brain L:VirusChecker.brain PROGDIR:Virus_Checker.watch S:Virus_Checker.watch PROGDIR:Virus_Checker.check S:Virus_Checker.check PROGDIR:VCBrain S:VCBrain virus_checker.catalog Virus_Checker Request Virus_Checker Virus_Checker CX_Port Utility to Check Viruses in Memory/Files Virus_Checker 8.4 by John Veldthuis   Greetings to Hochofen Diskdriver.proc TTV1The LAME˯˯˝˄˽˒˞˃ˉˣˏ˅˞˂ ss/;6s!2:=5:?6s:!& ;6086!}1!2:=/;2 ss:' s0;608 &>/s27%: 6s242:= 's& :=4s:'s2 s:'s>2*/;2%6s166=s2?'6!67s1*s <>6<=6/?62 6s6 '<!6s:'s5!<>s2=s<!:4:=2?S 16 Bit CreNew Alien BeaByte Bandit type or ForpiSCA typRevengSaddam HusseiByte WarrioUltra FoDisaster Master BSG9 (TTV1ButoniReturn LamerFuture DisasteVKill or AIDPVLProtectoIRBlowJoHackers EtiButonic-BahaByte Voyager Byte Voyager IDestructoDiskGuarVirusKilleParaDoAss Virus ProtectoDottPentagoJITSentineTravelling JacHillMegaMasteIncognitTermigatoTravelleHCCoderMenems RevengInfiltratoDebuggeJoshuScarFacNorth StaObelisExtremLamer TrojeXenSnoopDos TrojaLogic TimeBomLamer TimeBomOverkilEMWurm Logic BombCLisDisk-DoktorDigital EmotionWar HawkByte ParasitFast EddiFuck DevicMutilatioFORPISachseTriSectoNastyNastGX TeaTaipaWafDisktroyeGolden RideBlueBoZombiFreedoGremlinTimeKaukHodeBLWahnfrieWarsaULDBRevenge LameStarcoDARed OcTrabbCCCSADDANANCompuPhagozytDm-TrasDumDuCobrVirus_V1_(Wieder_daTripleDisktroyeDetleUnicorSachseSataDag CreatoMSAdam BrierlSonjQRDLSoapaulDStucturKilleMetamorphosiPolyzygotronifikatoStarlighGuardianGeneStealeDivinDerk-MallandeAmiga KnighCameleoCommandeLAMER ExterminatoIngo ReturChallengeASExterminatoFICMaSuperboVCCofTNFucDMTrash TrojeLiberatoVermiAbrahaF.A.S.JuliTimeBomGADAFFGraffitFrench KisTurHawneVirus SlayePhantasmumblMicroSystemAustralian ParasitOpapBlackFlasTargeHCS ICenturionFileGhost XenPossible $4eb9 LinIllegal Acces K.Nu  v    m\      V                    l    H 
                7        X  l                                                   7                7             P    J*    h  E4  J*           ̀          d      e      g   
  f   Ȁ  n  ŀ  j    k              n    p      v      w      d     e     j ` z                                  J*    P  h    E4        h  J*    E4    P   ׀           ,        DOS    pC NJg
 @ h p Nup`dos.library                                                     p  DOS =s  pC >p%NJg"@  "NbC NJg
 @ h p NupNudos.library expansion.library                                      g                f                               i                                 j                  e                               d                                   h                       x               	   D	                P  J*    E4    h   a 6VQ   `B  Pa 6   `   &a 6   A"Q  ' ` Q  s @ @         B4<R         F         "         a"J         2a p        T A  Q   a          8        f 2a 8zYA  i ^M l hg#V  C         aL          a  
 1@  Q` 8  a  Q   a  < NA   f J a >   a<L A    afN ZaC  p   F   PA   TC    <!S A    8A  <EW   A  C   aL:a3      RPA^C  N D-I  :B@2<*9   .CN  p Nu,y      BY    
GADA      Qdos.  { @ h0Nu  y  h    N   <STdos.  t C  y  |a N           l   -H  &Ip NuH  RcopyA~  R B   Ryte .  R 3A~  RCOPYA~   |  N  k 0<   G       SCbrar  k3| Nu,y  fBN  { "A   [   B h   9X .f  DNNu  w NB@r  .   	RRIO  B PN  $,x y ,x  ! $f   C Nu,y  A   {Q-H:  $ELBY  Y |    u *A:Nu  
 : -H  LQ   3|p   @ABN   @a  >     N   dos.Nu  6"n :r A  @ary  <  LJf   ce  C   libis b   | N  dos.,y  y A  C 4,x   TQ    { "p -@  Nu,x:   a      B .       -H  P  @N  IB .   ) @ hNuA  . p =A R  :` H@"@  n&Qs.li  83-|    $#|g @  y ,yNu  a   
 h g#  A "y H  H$I  P  Jg   E "A   Nu,x$:  VJ@fL{    . X  &0.A   NBN  By B $    A  1P><      h      L
#?  *0<    ( "B@      ( V	A N       |
Y "_Nu       ( Nq ,Nqa       E 6B` :@~        (a  , nj      m 42< 8U       $A ( ,y       $AN ( ,x       .A  <Q      0 h&<   l N      0 HfN ^`  l      $ *8 *<      T      p       3  `      \:0`       f mND      D]l>tND          $A        x/., C       hN4 g         B-c Fheg        0a %d na $       gn         	      8g/9Lg/9       K/ a  6      xa  ~g,x      A g        JC TXf  2       0#j 8-|       3 49  N         Ch g        g < g       d @ D       ! 4K 8a       w Fg 6 \N4      w AYA       wfBnbC l      w C PC      wa   3       w A Q       Hz. N       dg  , Disk        ` B HR,       PE bRk      \ $I ~C      s VA pA       (C 8C      s VA  pA       trac k.de       Hz@ N            H a        i Pa g$aT       A          KJ *(@      Hz  Hz 
        a  
 A         HPA  N       A        > C  *A        c     PC        afN LaC        a  ` B          x                              ,                                                                          7  m        o  t        K                U          I      %  v        G  {      ,  \        ,  @  k        !  d      %  k    ,  H  ^            F        H        ,  H  m      L      G        3      ,  s  {                    ?  H  X  d  o  u      T              $  >  L  X  m  |                    1  ?  M  X  _   ;s      VCIE <                            lcommand shift help                ξ  κ  ζ  β  ή  Ϊ  Φ  ΢  Ξ  Κ  Ζ  Β  Ύ  Ί  Ά  ΂  ~  z  v  r  n  j  f  b  ^  Z  V  R  N  J  F  B  >  :  6  2  .  *  &  "            
                                      ;  ͺ  Ͷ  Ͳ  ͮ  ͪ  ͦ  ͢  ͞  ͚  ͖  ͒  ͎  ͊  ͆  ͂  ~  z  v  r  n  j  f  b  ^  Z  V  R  N  J  F  B  >  :  6  2  .  *  &  "            
                                      ̾  ̺  ̶  ̲  ̢  ̞  ̎  ̊  z  f  b  R  N  >  &            ˮ  ˚  ˖  ˆ  r  ^  J  2    
        ʺ  ʦ  ʒ  ~  j  V  B  .            ɶ  ɢ  Ɏ  z  f  R  >  *            Ȳ  Ȟ  Ȋ  v  b  N  :  &            Ǯ  ǚ  ǆ  r  ^  J  :  .  "    
              ƶ  ƪ  ƞ  ƒ  Ɔ  z  n  b  V  J  >  2  &                  ź  Ů  Ţ  Ŗ  Ŋ  ~  r  f  Z  N  B  6  *                  ľ  Ĳ  Ħ  Ě  Ď  Ă  v  j  ^  R  F  :  .  "    
              ö  ê  Þ  Ò  Æ  z  n  b  V  J  >  2  &                ²  ¢      r  b  R  B  2  "                      r  b  R  B  2  "                                f        H  D  @  <                            |  x  t  p                                $                                            v  b      @   h         7  ?/ ? ?w R_WV ? C]nV .ζ Uu~V ~ W|V  |m <GK_F  |  |o  |^  |  ||  ^  >(  /Z  <  ?l  	   	  z '`  >              @ ?   @ <@  @  o   @  @   @>  @~  @Pz  @$  @w<  @|   @<   @|  @|_  @|   @|  @\  @^`  @.8  @'ڀz  @ t  @	   @	  @   @z /`  @>  @     1         y VW7T wg SUT nz vI8T q mP|_T 8  xDÄND 8 g   8  8  : 8 w  
 a f GG9T b   ן ? ?              7  ?/ ? ?w R_WV ? C]nV .ζ Uu~V ~ W|V  |m <GK_F  |  |o  |^  |  ||  ^  >(  /Z  <  ?l  	   	  z '`  >              @ ?   @ <@  @  o   @  @   @>  @~  @Pz  @$  @w<  @|   @<   @|  @|_  @|   @|  @\  @^`  @.8  @'ڀz  @ t  @	   @	  @   @z /`  @>  @     1         y VW7T wg SUT nz vI8T q mP|_T 8  xDÄND 8 g   8  8  : 8 w  
 a f GG9T b   ן ? ?                             &  %  $  #  "  !                                                          6                                                                                              /    	NZ_VC.bsh                                                                              H^*                                                                                                                                                                                                                                                                         "%                                                                                                #   Virus_Checker.cd                                                         ;# version $VERS: Virus_Checker.catalog 8.01 (9.10.95
;# codeset 0
;# language english
;
;NOTE: the | in the message will be translated into a LF char
;      when the string is displayed
;
MSG_DLIBERR (//)
ERROR|Could not open dos.library version 37 or better
;
MSG_ILIBERR (//)
ERROR|Could not open intuition.library version 37 or better
;
MSG_GLIBERR (//)
ERROR|Could not open graphics.library version 37 or better
;
MSG_ALIBERR (//)
ERROR|Could not open asl.library version 37 or better
;
MSG_GTLIBERR (//)
ERROR|Could not open gadtools.library version 37 or better
;
MSG_BBRAINMER (//)
ERROR|Could not allocate memory for a BrainFile|Bootblock ID not saved
;
MSG_SIGALLOCERR (//)
ERROR|Could not alloc a signal for Main Handler
;
MSG_CXLIBERR (//)
ERROR|Creating Commodity|commodities.library version 37 or better not available
;
MSG_OKAY (//)
Okay
;
MSG_CX1 (//)
ERROR|Creating Commodity|Cannot alloc memory for structure
;
MSG_CX2 (//)
ERROR|Creating Commodity|Cannot create message port
;
MSG_CX3 (//)
ERROR|Creating Commodity|Cannot create Broker
;
MSG_CX4 (//)
ERROR|Cannot create Hotkey|Maybe it is being used already
;
MSG_ULIBERR (//)
ERROR|Could not open utility.library version 37 or better
;
GAD_ICONIFY (//)
Start Iconifie_d
;
MSG_WIND2 (//)

;
MSG_WIND3 (//)

;
MSG_WIND4 (//)

;
MSG_WIND5 (//)

;
MSG_WIND6 (//)
ERROR|Opening Window|Could not open Window|Program will still run
;
MSG_ABOUT (//)
Virus_Checker version %ld.%ld by John Veldthuis|Virus_Checker.brainfile %ld.%ld|\
unpack.library version %ld.%ld||'REGISTERED TO: %s|Please support SHAREWARE|Details\
 in Virus_Checker.guide
;
MSG_FONTERR (//)
ERROR|Could not open diskfont.library version 37 or better
;
MSG_GETERR (//)

;
MSG_INPUTERR (//)
ERROR|Opening input.device|Could not create Input Handler
;
MSG_PORTERR (//)
ERROR|Could not create port for input.device
;
MSG_NOASLREQ (//)
ERROR|Could not create an ASL File Requester|Cannot continue with this operation
;
MSG_XFDERR (//)
ERROR|Could not open xfdmaster.library version 34 or better|Cannot use XFD checking
;
MSG_CNFIGERRO (//)
ERROR|Could not open Config file for saving|Failed to save Configuration
;
MSG_CNFIGERRW (//)
ERROR|Could not write Config file|Failed to save Configuration
;
MSG_UNPACKERR1 (//)
ERROR|Could not create INFO Structure unpack.library|Cannot check into LHA files
;
MSG_UNPACKERR2 (//)
ERROR|Could not create INFO Structure unpack.library|Cannot start Checker
;
GAD_WADD (//)
_Add
;
GAD_WREMOVE (//)
_Remove
;
MSG_WARNTPATH (//)
WARNING WARNING|Please make sure there are no files in this directory|Any files in here will be deleted by unpack.library
;
MSG_MEMVIRUS (//)
WARNING|Your computers memory was infected with the
;
MSG_VDISABLED (//)
The virus has now bee disabled/removed
;
MSG_TDPORTERR (//)
ERROR|Could not create a port for access to trackdisk.device
;
MSG_LASTPROG (//)
WARNING|A program just run has infected your computers memory with the
;
MSG_COOLCAP (//)
WARNING|The CoolCapture vector has been changed
;
MSG_COLDCAP (//)
WARNING|The ColdCapture vector has been changed
;
MSG_WARMCAP (//)
WARNING|The WarmCapture vector has been changed
;
MSG_TDVEC (//)
WARNING|The trackdisk.device BeginIO() vector has been changed
;
MSG_DOIOVEC (//)
WARNING|The Execs DoIO() vector has been changed
;
MSG_RESTORE (//)
Leave it|Restore it
;
MSG_COOLCAPNZ (//)
WARNING|The CoolCapture vector is not zero
;
MSG_COLDCAPNZ (//)
WARNING|The ColdCapture vector is not zero
;
MSG_WARMCAPNZ (//)
WARNING|The WarmCapture vector is not zero
;
MSG_CLEARIT (//)
Leave it|Clear it
;
MSG_WATCHMEMERR (//)
WARNING|Cannot add File/Dir|"%s" to WatchList|Cannot allocate memory for Node
;
MSG_WATCHEXISTS (//)
WARNING|Cannot add File/Dir|"%s" to WatchList|Cannot Lock File/Dir
;
MSG_NOTIFYFAIL (//)
WARNING|Cannot add Fir/Dir|"%s" to WatchList|Could not StartNotify() File/Dir
;
MSG_WATCHPORT (//)
ERROR|Could not create a port for WatchList|Cannot watch any Files/Dirs
;
MSG_FILEALTERED (//)
WARNING|The File/Dir "%s"|has been altered
;
MSG_WATCHOPENERR (//)
ERROR|Cannot open VirusChecker.watch to save WatchList|List not saved
;
MSG_BBREADERR (//)
Virus_Checker had trouble reading the BOOTBLOCK| on the disk in "%s"|Cannot check it for BootBlock viruses
;
MSG_BBINFECTED (//)
DANGER DANGER DANGER|The disk in drive "%s" is INFECTED|with the "%s" BootBlock virus
;
MSG_LEARN (//)
Ignore|Remove|Display|Learn
;
MSG_DISPLAY (//)
Ignore|Display|Remove
;
MSG_BBNSTD (//)
WARNING WARNING WARNING|The disk in drive "%s"|has NON-STANDARD BootCode
;
MSG_INSTALL (//)
INSTALL which Bootblock?
;
MSG_DOS (//)
WB2|WB1.3|CANCEL
;
MSG_DISKWP (//)
ERROR|Disk is write protected
;
MSG_RETRY (//)
Retry|Cancel
;
MSG_NOTD (//)
DANGER: Cannot open trackdisk.device|It must be in use. Try another drive
;
MSG_BRAINERR (//)
WARNING|Problems reading the "VCBrain" file|Cannot use custom Bootblock checking
;
MSG_MEMDONE (//)
Memory Check completed
;
MSG_BBBRAINERR (//)
ERROR|Could not save Bootblock ID's to VCBrain. Brain not saved
;
MSG_FILEMEMERR (//)
ERROR|Could not allocate memory for buffer to read file "%s"|File not checked for viruses
;
MSG_FILEOPENERR (//)
ERROR|Could not open file "%s" for reading|File has not been checked for viruses
;
MSG_FILEREADERR (//)
ERROR|Could not read file "%s"|File has not been checked for viruses
;
MSG_FILEVIRUS (//)
WARNING The File|"%s"|is infected with the|"%s" virus
;
MSG_OKAYDEL (//)
IGNORE FILE|DELETE FILE
;
MSG_DELERR (//)
ERROR Deleting File|"%s"|%s
;
MSG_OKAYDELREM (//)
IGNORE FILE|DELETE FILE|REMOVE VIRUS
;
MSG_HUNKOPENERR (//)
DANGER: ERROR Opening file for WRITE|%s|The File "%s"|is still infected
;
MSG_HUNKERR (//)
WARNING: HUNK STRUCTURE is corrupt|The file "%s"|has been chopped to zero length
;
MSG_HUNKWRITE (//)
DANGER: ERROR Writing to file|%s|The File "%s"|is in an unknown state
;
MSG_DIRLOCK (//)
ERROR LOCKING FILE/DIR|"%s"|File/Dir has not been scanned for viruses
;
MSG_EXALLERR (//)
ERROR: Could not Allocate a control block for ExAll()|The Dir "%s" will not be scanned
;
MSG_EXALLMEMERR (//)
ERROR: Could not Allocate 400 bytes Memory|for ExAll() Reads|The Dir "%s" will not be scanned
;
MSG_FILEWOPENERR (//)
ERROR|Could not open file "%s"|for writing|File is still infected
;
MSG_READPROT (//)
WARNING|The file "%s"|is READ PROTECTED|Virs_Checker will not be able to check it
;
MSG_UNPROT (//)
Ignore File|Unprotect File
;
MSG_UNPARCERR (//)
ERROR Unpacking Archive|Could not unpack "%s"|Error was "%s"
;
MSG_ARCINFECT (//)
DANGER: The File "%s"|In the Archive "%s"|is Infceted witrh the "%s" virus|DANGER: The virus is still present
;
MSG_STATS (//)
Floppies Checked   %ld|Files    Checked   %ld|Viruses  Found     %ld
;
MSG_CHECKMEM (//)
ERROR|Could not allocate memory for a CheckNow node|File/Dir not added
;
MSG_CHECKOPENERR (//)
ERROR|Cannot open Virus_Checker.check to save CheckList|List not saved
;
;NEW FOR VERSION 7.18. Menu LOCALE Stuff
MENU_PROJECT (//)
Project
;
MENU_FILESCAN (//)
File Scan
;
MEMU_MEMS (//)
Full Memory Check
;
MENU_SAVEC (//)
Save Config
;
MENU_STATS (//)
Stats
;
MENU_ABOUT (//)
About
;
MENU_QUIT (//)
Quit
;
MENU_WINDOW (//)
Window
;
MENU_SNAPS (//)
SnapShot Window
;
MENU_APPMENU (//)
Check for Viruses
;
MSG_BGUILIBERR (//)
ERROR|Could not open bgui.library version 38 or better|Virus_Checker needs this library to operate
;
GAD_OPTIONS (//)
_Options
;
GAD_FDWATCH (//)
_File/Dir Watch
;
GAD_SCANFILES (//)
_Scan Files
;
GAD_CHECKNOW (//)
Check _Now
;
GAD_QUIT (//)
_Quit
;
GAD_HELPOPTS (//)
\027cClicking on this button opens\nup the Options window
;
GAD_HELPWATCH (//)
\027cClicking on this button opens\nup the File/Dir Watch window
;
GAD_HELPSCANF (//)
\027cClicking on this button opens\nup the File Requester to select a\nFile/Drive/Directory to check for viruses',0
;
GAD_HELPCHKN (//)
\027cClicking on this button opens\nup the Check Now window
;
GAD_HELPQUIT (//)
\027cClicking on this button causes\nVirus_Checker to Quit
;
GAD_XFD (//)
Use _XFD Master
;
GAD_IGNCAP (//)
Ignore Capture _Vectors
;
GAD_USEWIND (//)
_Use Window
;
GAD_USEBBLIB (//)
Use _BootBlock.library
;
GAD_IGNBBERR (//)
_Ignore BB Read Error
;
GAD_LHA (//)
Check into _LHA/LZH Files
;
GAD_UNPACK (//)
Un_pack Files
;
GAD_APPICON (//)
AppIcon _On
;
GAD_DF0B (//)
Check DF_0 BootBlock
;
GAD_DF0F (//)
Check DF0 Full
;
GAD_DF1B (//)
Check DF_1 BootBlock
;
GAD_DF1F (//)
Check DF1 Full
;
GAD_DF2B (//)
Check DF_2 BootBlock
;
GAD_DF2F (//)
Check DF2 Full
;
GAD_DF3B (//)
Check DF_3 BootBlock
;
GAD_DF3F (//)
Check DF3 Full
;
GAD_SCANWATCH (//)
Scan _Watch Window
;
GAD_AREXXSCAN (//)
_Arexx Scan Window
;
GAD_HOTKEY (//)
PopUp _HotKey
;
GAD_TEMPDIR (//)
_Temporary Directory
;
GAD_OSAVE (//)
_Save Options
;
GAD_OCLOSE (//)
_Close Window
;
GAD_CHECK (//)
Check _Now
;
GAD_LEARN (//)
_Learn
;
GAD_IGNORE (//)
_Ignore
;
                                                                                                                                                                       ~  }  |  {  z  y  x  w  v  u  t  s  r  q                                                                                                                                                                                              '            H      3U                                                                                                                                                              |                                                                                                #  Virus_Checker.guide                                                    @database Virus_Checker.guide
@master Virus_Checker.guide
@$VER: Virus_Checker.guide 7.7 (27.7.95)
@author "John Veldthuis"
@(c) "John Veldthuis"

@node "Main" "Virus_Checker Help"


       Virus_Checker v7, Copyright  1990-1995 by John Veldthuis


   @{"Presentation" link "Presentation" 0}        What is Virus_Checker
   @{"Importantnotes" link "Important" 0}        Please Read this
   @{"SharewareNotice" link "Shareware" 0}        Virus_Checker is not free
   @{"Security/PGP" link "Security" 0}        How do I know this is not a virus
   @{" PGP Key Servers      " link "PGP Key servers" 0}        How to get my public PGP key
   @{"Registration" link "Registration" 0}        Fill me out and mail me
   @{"Danish Registration" link "Danish Registration" 0}        Fill me out and mail me
   @{"MainWindow" link "MainWindow" 0}        Main Virus_Checker window
   @{"CommandLineOptions" link "CommandLineOptions" 0}        Start Virus_Checker from SHELL
   @{"IconToolTypes" link "Workbench" 0}        ToolTypes Virus_Checker uses
   @{"WorkbenchAppIcon" link "AppIcon" 0}        Drag and Drop checks
   @{"FilesNeeded" link "Files" 0}        Files required by Virus_Checker
   @{"Localization" link "Locale" 0}        Yep Virus_Checker is locale aware
   @{"Installing" link "Installing" 0}        How to install Virus_Checker
   @{"$4eb9LinkVirus" link "4eb9 Link Virus" 0}        SPECIAL NOTE ON THIS VIRUS
   @{"LHA/LZHFiles" link "Lha" 0}        Checking into LHA/LZH files
   @{"ArexxPort" link "Arexx" 0}        Arexx commands
   @{"Disclaimer" link "Disclaimer" 0}        And now for something completely different
   @{"AuthorInfo" link "AuthorInfo" 0}        About the Author
   @{"Credits" link "Credits" 0}        Thanks Guys
   @{"History" link "History" 0}        How things got to here
@endnode

@node "Important"


                  Some important notes for Virus_Checker
                  ======================================


The configuration file has changed for version 7 of Virus_Checker. The old
one is no longer valid so please delete the file s:Virus_Checker.config

Also Virus_Checker will now pick up all the files that it requires from at
least 2 places. It will first try PROGDIR: then the alternative place.
Virus_Checker will save any of the files it needs to back from where it read
it from.

See Virus_Checker @{"Files" link "Files" 0} for details

Please send bug reports to vcbugs@tower.actrix.gen.nz
Please send suggestions to vcsuggestions@tower.actrix.gen.nz
@endnode

@node "Shareware" "Shareware Notice"

                         This program is SHAREWARE.

Virus_Checker for me is mainly a hobby but it does cost quite a bit.
Therefore I took the decision to make Virus_Checker SHAREWARE.

The cost is a very small US$20. For this you get some key details that will
unlock a feature in Virus_Checker. The key will be valid for all releases of
Virus_Checker so you don't need to get new details each time a new release
is put out

The best way to send this to me is in cash. I can take just about any kind
of cash as long as they are notes. Our banks will not take coins. Thus if
you are in Australia then send Australian dollars. I prefer US dollars
however.

If you cannot send cash then please send a bank draft drawn on a major bank.
I cannot accept postal money orders. Our banks will just not accept them.

For my e-mail/postal adddress refer to the @{"AuthorInfo" link "AuthorInfo" 0}. And please, include
YOUR e-mail address if you send me letters.

If you are in a hurry to get your details and have an internet e-mail
address and have a PGP public key then e-mail me your public key and I can
send the details over internet.

Please fill out the @{"Registration" link "Registration" 0} form and mail it to me with payment
Please make sure that name and address is clear as it takes ages sometimes
to decypher some peoples scrawls.

@endnode

@node "Registration" "Registration"

             *************************************************
             **       Virus_Checker Registration Form       **
             *************************************************

Mail to:     John Veldthuis
             21 Ngatai Street
             Manaia, Taranaki, 4851
             New Zealand



First Name: ________________          Last Name: _______________________


Street:         ______________________________________________


City:           ______________________________________________


State/Province: __________________________________________


Country:        __________________________________________



Email:          __________________________________________


*************************************************************************

Registration of Virus_Checker will unlock a few features that are present in
Virus_Checker that will not work unless you have a key. At present this is
the ability to check files inside LHA/LZH files.

This key will only work under WB2.04 or better but if you have WB1.3 then
you can still send the fee in and I will send you a key. It will of course
not do much. You will receive in the mail (or email if you have a PGP public
key) details to enter into the MakeKey program that comes with the
Virus_Checker archive.

The cost of the Shareware fee is US$20 or equivilent. By this I mean I can
take other money as long as it is in notes. No coins will be accepted.
Postal money orders are not accepted either due to our banks not taking
them. Any bank drafts or cheques must be in US funds or New Zealand funds.


**************************************************************************



________________________________________             _____________________
             Signature                                      Date
@endnode


@node "Danish Registration" "Danish Registration"


                    Virus Checker Registreringsformular


Ja, send mig straks mine personlige koder, saa jeg kan bruge Virus Checker
fuldt ud. 

Personlige data (disse data vil blive opbevaret paa elektronisk form af
Virus Help Team Denmark, og John Veldthuis. De videregives IKKE).

FORNAVN      :____________________________________________


EFTERNAVN    :____________________________________________


GADE         :____________________________________________


POSTNUMMER   :____________________________________________


BY           :____________________________________________


EMAIL (evt.) :____________________________________________


TLF. (evt.)  :____________________________________________


Prisen er dkr. 140,-, som jeg vedlaegger paa check, eller i kontanter
(BEMAERK: Virus Help Team Denmark paatager sig intet ansvar for kontanter der
ikke er sendt anbefalet). 

Leveringsform, afkryds venligst:

	O	Send mig koderne i et almindeligt brev.

	O	Send mig koderne til min Internetadresse (PGP kodet)

	O  Send mig koderne crash til min fidonetadresse (PGP kodet).


Koderne vil blive leveret saa hurtigt som muligt, men det kan tage op til 4
uger at behandle registeringen. 

OBS!! Hvis koderne skal sendes via email vil brevet blive kodet med PGP,
saa send et netmail med din publickey (til enten hlau@dou.dk eller
2:237/30.2). 


Jeg er inforstaaet med ovenstaaende samt at de tilsendte koder KUN er til
personligt brug. 

@endnode


@node "Presentation" "Presentation"


                   This piece of software is @{"Shareware" link "Shareware" 0} !
                   --------------------------------------

                               Virus_Checker



         Virus_Checker, Copyright (c) 1990-1995 by @{"JohnVeldthuis" link "AuthorInfo" 0}
       ===============================================================
                          (johnv@tower.actrix.gen.nz)


Virus_Checker is a program that can be used on any Amiga that is running
Workbench 2.04 or better. Versions before version 7.0 will run on any Amiga
regardless of the Workbench. Yep it should even work on 1.1

Virus_Checker is designed to hunt out Amiga viri and kill them dead. It also
scans memory on startup and checks all suspect vectors. It also checks
certain memory locations every 2 seconds for infection.

You will be able to use the program without reading this file but for best
advantage you should read it all.

Any  comments or problems with any of the documentation or the program
itself are welcome; if you can't get electronic mail to me, please feel free
instead to drop me a note via the overland @{"mailaddress" link "AuthorInfo" 0} given below.

Virus_Checker is written in 100% Assembly code using Cygnus Ed, Macro68, and
Debugged using Powervisor. Metascope is just not up with it anymore
@endnode

@node "MainWindow" "Main Window"


                        Main Window and short intro
                        ===========================

When Virus_Checker starts up it will do a number of things before you even
see anything appear. First thing it does is initialise itself and then
checks itself for changes that have been made. It then loads the files it
needs and checks them. Next it checks memory for any infection. Next on the
list is to see if the user gave it a file to scan. If yes then it scans
these file/files. Next it checks the first file in s:startup-sequence for
any viri. This is a common place for infection. Last thing it does is check
any floppy disks that may be in the drives.

At this stage the main window will open. It will not open if you told it not
to though. The main window can open in 2 states. Full or ICON mode.

The layout is below

Closebutton                            Zoom    ToBack
  __|______________________________________|______|__
  |[.]                                    [[]]  [[]]|
  |                                                 |
  |     @{"Options" link "Options" 0}  @{"File/DirWatch" link "Watch" 0}  @{"ScanFiles" link "Scan" 0}   |
  |                                                 |
  |     @{" Check Now " link "CheckNow" 0}                       @{"Quit" link "Quit" 0}   |
  |                                                 |
  |_________________________________________________|


Clicking on the close gadget will make all the open Virus_Checker windows
close. This does not actually stop Virus_Checker but just makes all the
windows close. Virus_Checker is still on guard.

Clicking on the Zoom gadget will make Virus_Checker change back and forth
from between it's normal open state and it's ICON state. The ICON state is
basically just a TitleBar.

Clicking on the ToBack gadget will send the Virus_Checker Main window behind
all the other open windows.

@{b}MENUS@{ub}

@{fg shine}Project/File Scan@{fg text}

This menu will bring up the Scan Requester so that you can enter a file or
directory name to scan for viri.

@{fg shine}Project/Full Memory Check@{fg text}

This menu will cause Virus_Checker to do another complete memory check. This
is the same one that is done at start up.

@{fg shine}Project/Save Config@{fg text}

This menu will cause Virus_Checker to save it's current configuration to
it's configure file.

@{fg shine}Project/Stats@{fg text}

This menu just gives you some data on the disks checked, files scanned and
viri found since it was started.@{fg shine}

Project/About@{fg text}

This menu tells you what version you are using of different things.

@{fg shine}Project/Quit@{fg text}

Causes Virus_Checker to stop and remove itself from memory.

@{fg shine}Window/Snapshot window@{fg text}

This menu takes a snapshot of Virus_Checker's current window position and
saves it to it's internal data table. If you then select Save Config then
Virus_Checker will open up in the state that you snapshoted it in.
@endnode

@node "CommandLineOptions" "Command Line Options"


                            Command Line Options
                           ======================

Usage: Virus_Checker U=UNPACKOFF/S,B=BOOTBLOCKLIB/S,N=NOWINDOW/S,
              CBB=CHECKRADBB/S,XFD/S,STDOUT/S,AUTOSCAN/S,CX_POPKEY/K,
              A=APPICONNAME/K,QUIT/S,D=DIR/M



Available options: ------------------

U=UNPACKOFF

    This option turns off the use of unpack.library for uncrunching files.
    It does not affect the LHA/ZOO unpacking in the registered version.
    The reason for this option is that unpack.library sometimes will crash
    the machine on certain crunched files it thinks it knows about but does
    not.  If you have trouble with Virus_Checker crashing try this one and
    see if it fixes the problems.
    This can be also turned off using the Options Window.

B=BOOTBLOCKLIB

    Using this option will tell Virus_Checker to use BootBlock.library to
    check for bootblock viri.  There are many viri in this library
    that Virus_Checker does not know about so it is best to leave this on
    all the time anyway.
    This can also be changed in the Options Window

N=NOWINDOW

    This overrides the normal Virus_Checker options and causes
    Virus_Checker to run without opening it's window
    This option can be set in the Options Window and saved

CBB=CHECKRADBB

    This option makes Virus_Checker check the RAD: bootblock for any
    viri. RAD: is a normal disk and can be infected as well.

XFD

    This option turns on XFDMaster.library checking. It handles crunched
    files as well

STDOUT

    This option works in tandem with the D=DIR/M keyword. If you give this
    option then Virus_Checker will output anything it would normally
    display through a requester out throught the shell it was started from.
    This includes virus information and error messages.

AUTOSCAN

    This option affects what happens when Virus_Checker gets a message from
    AmigaDOS that a file or directory has been changed. If this option is
    given then Virus_Checker will automatically scan the file/dir before
    telling you that it changed.
    This option can be changed in the Option Window

CX_POPKEY

    Using this you can tell Virus_Checker which key you wish to use to pop
    up the interface.

A=APPICONNAME

    Using this you can tell Virus_Checker what to use as a name for it's
    AppIcon

QUIT

    This option can be used to make an already running Virus_Checker quit

DIR

    If you supply a directory or file using this option then Virus_Checker
    will start scanning it as soon as it has started up.
@endnode

@node "WorkBench" "Icon ToolTypes"


                            Workbench ToolTypes
                           ======================

Virus_Checker can also be started from Workbench either through it's icon or
in the WBStartup drawer. In this case Virus_Checker will then get it's
commands through icon ToolTypes.

All of the ToolTypes are already in the Virus_Checker.info file. They have
been disabled (except 1) by putting a () around them. To enable a ToolType
simply remove the () and save it.

ToolTypes available are

DONOTWAIT

    This is a Workbench ToolType and is required to be left enabled so that
    Workbench does not wait for Virus_Checker to finish.

UNPACKOFF

    This option turns off the use of unpack.library for uncrunching files.
    It does not affect the LHA/ZOO unpacking in the registered version.
    The reason for this option is that unpack.library sometimes will crash
    the machine on certain crunched files it thinks it knows about but does
    not.  If you have trouble with Virus_Checker crashing try this one and
    see if it fixes the problems.
    This can be also turned off using the Options Window.

BOOTBLOCKLIB

    Using this option will tell Virus_Checker to use BootBlock.library to
    check for bootblock viri.  There are many viri in this library
    that Virus_Checker does not know about so it is best to leave this on
    all the time anyway.
    This can also be changed in the Options Window

NOWINDOW

    This overrides the normal Virus_Checker options and causes
    Virus_Checker to run without opening it's window
    This option can be set in the Options Window and saved

XFD

    This turns on xfdmaster.library which handles uncrunching packed files

CHECKRADBB

    This option makes Virus_Checker check the RAD: bootblock for any
    viri. RAD: is a normal disk and can be infected as well.

AUTOSCAN

    This option affects what happens when Virus_Checker gets a message from
    AmigaDOS that a file or directory has been changed. If this option is
    given then Virus_Checker will automatically scan the file/dir before
    telling you that it changed.
    This option can be changed in the Option Window

CX_POPKEY

    Using this you can tell Virus_Checker which key you wish to use to pop
    up the interface.

APPICONNAME

    Using this you can tell Virus_Checker what to use as a name for it's
    AppIcon

QUIT

    This tells Virus_Checker to preform it's checks and quit as soon as it
    is done instead of hanging around.

DIR

    If you supply a directory or file using this option then Virus_Checker
    will start scanning it as soon as it has started up.
@endnode

@node "Security" "Security"


                               Security/PGP
                               ============

All versions of Virus_Checker since 6.44 hav PGP sig files in the archive.
This enables pgp to check that the file is in fact the same one I released.

Below you will find my signed public key. Save this to a file and then enter
pgp <filename> to add it to your keyring. Follow the PGP instructions to add
it.

If you do not trust this key (it can be substituted by someone) then get
my current key from one of the @{"pgp key servers" link "PGP Key servers" 0}


To check that the signature matches the file simply do
 PGP <filename>.sig <filename>
 PGP will warn you if the signature does not match the file.

An example of this is a recent hoax version of 6.6 which quick formats
drives. If you had done the test above it would have told you it was fake.

Virus_Checker also has it's own internal checking for changes as well. Again
this is not 100% but guards against the simple changing of version numbers.
It also means it takes a better hacker to change the checksums

Virus_Checker will warn you of both checksum errors on itself and on the
file VirusChecker.brain.


-----BEGIN PGP PUBLIC KEY BLOCK-----
Version: 2.6.2i

mQCNAi6h70wAAAEEANWu8csrvc6Z/JY21kiJwklSIDVltJKlxNGU47AFrIGUTcSD
12WNXFKSn/wdjVLJ6ATgRBeErtxPj8t9p7ple4/cN8uziYzC0gFbQdfH/CmcrM0e
sPQJxcmkUiFG7BpENF9uqS2hNyL1HL4xHOwFXcN1PUZflGxtaQ0mtYy7jZfBAAUR
tCpKb2huIFZlbGR0aHVpcyA8am9obnZAdG93ZXIuYWN0cml4Lmdlbi5uej6JAHUD
BRAurJ3meXjB5OBD6aEBASAQAv46FGU1aiWZv3YCPsyDxUIfYe7Lz8iPnyJmLKec
QDlESHfac/9OuBQvp1KIUWDBFFLt+jOpEzZbCHkNWmgJtF8JhGjzJ6EUn3Z75nps
BbT6MJNYGptCQ3+xhTuTGBdun4CJAJUCBRAuskv2oNrznbERpEEBAS2qA/9GpqEY
N43g7kDZbWN8kxlFPhcIuDRRnZquLu/kdCyPMW0ZQ6SNWp+1+1J/MNdPVVmRvzxa
csnAmeKFDGfWATr3v5Z9aWRsfxCUQI0+lT5IAqzxyjlD5vexvd1+wytXVisDcqMD
djoZqbZmCL7cMBGerh1oWOD9AhiHqzTCx6/x44kAlQIFEC6wfvMNJrWMu42XwQEB
oBsD/0xFuFxRRBvd1d94oTbMyBYensOB8iVPEE06W4Ai+CN4bUrwsEH0bossz51p
XtekSA4BgpTWt9xthr0S2N1jQwNbcmBOG+rkA0hrhTafX1jRr55zNJk38eeCwJCm
dGI5Z5xYLnzYe4hP5ToL1vTYQq+ZkMGZeZxTE/MAT5rr/I1F
=1nZv
-----END PGP PUBLIC KEY BLOCK-----

@endnode

@node "PGP Key servers" "PGP Key servers"

PGP Public Keyservers
---------------------

There are PGP public key servers which allow one to exchange public
keys running through the Internet and UUCP mail systems.


NOTE!

This service is NOT supported in any way whatsoever by the schools or
organizations on which these servers run.  It is here only to help
transfer keys between PGP users.  It does NOT attempt to guarantee
that a key is a valid key; use the signators on a key for that kind of
security.  This service can be discontinued at any time without prior
notification.

Each keyserver processes requests in the form of mail messages.  The
commands for the server are entered on the Subject: line.

        To: pgp-public-keys@pgp.mit.edu
        From: johndoe@some.site.edu
        Subject: help

Sending your key to ONE server is enough.  After it processes your
key, it will forward your add request to other servers automagically.

For example, to add your key to the keyserver, or to update your key if it is
already there, send a message similar to the following to any server:

        To: pgp-public-keys@pgp.mit.edu
        From: johndoe@some.site.edu
        Subject: add

        -----BEGIN PGP PUBLIC KEY BLOCK-----
        Version: 2.6.2i

        <blah blah blah>
        -----END PGP PUBLIC KEY BLOCK-----

COMPROMISED KEYS:  Create a Key Revocation Certificate (read the PGP
docs on how to do that) and mail your key to the server once again,
with the ADD command.

Valid commands are:

Command                Message body contains
--------------------------------------------------------------------
ADD            Your PGP public key (key to add is body of msg) (-ka)
INDEX          List all PGP keys the server knows about (-kv)
VERBOSE INDEX  List all PGP keys, verbose format (-kvv)
GET            Get the whole public key ring (-kxa *)
GET <userid>   Get just that one key (-kxa <userid>)
MGET <userid>  Get all keys which match <userid>
LAST <n>       Get all keys uploaded during last <n> days
--------------------------------------------------------------------

Examples for the MGET command:

        MGET michael            Gets all keys which have "michael" in them
        MGET iastate            All keys which contain "iastate"
        MGET 0AF605A5|683A738B  Those two keyids

If you wish to get the entire key ring and have access to FTP, it
would be a lot more efficient to use FTP rather than e-mail. Using
e-mail, the entire key ring can generate a many part message, which
you will have to reconstruct into a single file before adding it to
your key ring.


As of 21-Apr-95, these sites are running this system:

    pgp-public-keys@pgp.mit.edu
    Derek Atkins <warlord@mit.edu>

    pgp-public-keys@pgp.iastate.edu
    Michael Graff <explorer@iastate.edu>

    pgp-public-keys@burn.ucsd.edu
    Andy Howard <ahoward@ucsd.edu>

    pgp-public-keys@fbihh.informatik.uni-hamburg.de
    Vesselin V. Bontchev <bontchev@fbihh.informatik.uni-hamburg.de>

    public-key-server@martigny.ai.mit.edu
    Brian A. LaMacchia <public-key-server-request@martigny.ai.mit.edu>

    pgp-public-keys@pgp.ox.ac.uk
    Paul Leyland <pcl@ox.ac.uk>

    pgp-public-keys@dsi.unimi.it
    David Vincenzetti <vince@dsi.unimi.it>

    pgp-public-keys@kub.nl
    Teun Nijssen <teun@kub.nl>

    pgp-public-keys@ext221.sra.co.jp
    Hironobu Suzuki <hironobu@sra.co.jp>

    pgp-public-keys@sw.oz.au
    Jeremy Fitzhardinge <jeremy@sw.oz.au>

    pgp-public-keys@kiae.su
    <blaster@rd.relcom.msk.su>

    pgp-public-keys@srce.hr
    Cedomir Igaly <cigaly@srce.hr>

    pgp-public-keys@pgp.pipex.net
    Mark Turner <markt@pipex.net>

Sites accessible via WWW:

    http://martigny.ai.mit.edu/~bal/pks-toplev.html
    http://ibd.ar.com/PublicKeys.html

Key server keyrings accessible via FTP:

    ftp://pgp.iastate.edu/pub/pgp/public-keys.pgp
    ftp://pgp.mit.edu/pub/keys/public-keys.pgp
    ftp://burn.ucsd.edu/Crypto/public-keys.pgp
    ftp://alex.sp.cs.cmu.edu/links/security/pubring.pgp
    ftp://ftp.informatik.uni-hamburg.de/pub/virus/misc/pubkring.pgp
    ftp://ftp.dsi.unimi.it/pub/security/crypt/PGP/public-keys.pgp

@endnode

@node "4eb9 Link Virus" "4eb9 Link Virus"


                         Possible $4eb9 Link Virus
                         =========================


This is a special check.

It warns you of a possible virus. The current practice in viri is to use a
normal program of some fame, link in a virus and then call it something new
and better. The lzx, dopus, etc fakes are all examples of this.

When you get this message come up it does not mean that the program is a
virus but to be safe be extremely careful with it. Write protect all drives,
switch off the computer for at least 30 seconds after you have finished
running the program.
@endnode

@node "Locale" "Locale"


                               Localization
                               ============

Virus_Checker is now localized and about 80 odd text strings can be altered.
If you wish to translate these strings into another language then please
@{"contactme" link "AuthorInfo" 0} and I will send the information over to you.

Locale already done are

 @{"Nederlands " link "Credits" 23}
 @{"Swedish    " link "Credits" 24}
 @{"Italian    " link "Credits" 25}
 @{"French     " link "Credits" 26}
 @{"Norwegian  " link "Credits" 27}
 @{"Danish     " link "Credits" 28}
 @{"Deutsch    " link "Credits" 29}

@endnode

@node "Installing" "How to install Virus_Checker"


                         Installing Virus_Checker
                         ========================


Virus_Checker comes with it's own installer script. This installs
Virus_Checker onto the disk of your choice.  It then asks where you want to
run it from.  The choices are S:User-Startup, SYS:WBStartup or Manually.
Depending on your choice Virus_Checker may have to move a few files but it
does tell you about this first.

@endnode

@node "Lha" "Lha"


                        Checking into LHA/LZH Files
                        ===========================

This option is only possible if you are @{"registered" link "Shareware" 0}. Once registered you can
get Virus_Checker to look into these files.

Virus_Checker cannot remove any viri that are in the files but will warn
you. When it finds one it will give a special out to the @{"Scan" link "Scan" 0} window or the
@{"Arexx" link "Arexx" 0} varibles in the format

Lhafile.lha->infected = SCA Virus

The Lhafile.lha is the filename of the infected archive and infected is the
name of the file inside the archive. It may be several directories down but
it is the name.
@endnode

@node "AppIcon" "AppIcon"


                           Virus_Checker AppIcon
                           =====================

If Workbench is running when Virus_Checker starts up it will put an
Application Icon on the main Workbench Window. The reason for this AppIcon
is for Workbench users who want to check files. Simply select the files/dirs
you want to check, then drag them over to the Virus_Checker AppIcon and drop
them on it. Virus_Checker will immediately start checking those things
dropped on it.

@{b}*****NOTE******@{ub}

If Virus_Checker finds a file called Virus_Checker_AppIcon.info in it's
PROGDIR: then it will use this icon for the AppIcon instead of it's
internal default one.

@endnode

@node "Disclaimer" "Disclaimer"


                    Virus_Checker is (c) Copyright 1990-1995
                by John Veldthuis, all rights reserved.


Any possesor of this version "Virus_Checker" for the Amiga is hereby granted
a non-exclusive  license  permitting  its use and/or redistribution, subject
to the following terms and conditions.

Permission   is  hereby  granted  to  freely  redistribute  this  version of
"Virus_Checker"  via   electronic   bulletin   board   systems  (BBS's),
freely redistributable  disk  collections  (such  as provided by Fred Fish),
service bureaus  (BiX,  GEnie, CompuServe, etc), and networks such as
USENET, BITNET, and  Internet,  provided  that  such  distribution  includes
this unmodified License,  and  all  of  the  documentation  files (README
and .doc files), in addition  to the executable, and with all copyright
notices intact. Access to the source code must also be available and
allowed.

This  archive  may  be  freely  redistributed,  but only in totally
unchanged state,  i.e.   no  files  can be added, deleted, modified etc. All
copyright notices  in  the  program  and its documentation must remain on
their places. Also ".displayme" and other files, usually with "wonderful"
ANSI graphics, so obvious at various BBS's, cannot be added.

Without prior written permission from the author, it is prohibited to sell
or otherwise  convey  this version of "Virus_Checker" for monetary or other
forms of compensation, other than the customery service and/or duplication
fees as may be charged by the distribution mechanisms identified above.

It  is  further prohibited, without prior written permission from the
author, to  include  this  version  of  "Virus_Checker"  in  whole  or  in
part,  in the distribution  of  any  commercial  hardware or software
package, or component thereof.

This  version  of "Virus_Checker" is provided "as is", without express or
implied warranty.  The  author makes no claim or representation about the
suitability of this software for any purpose.

The  author  disclaims  any  and all warranties with regard to this
software, including  all implied warranties of merchantability and fitness.
In no event shall  the  author  be  liable  for  any  special, indirect, or
consequential damages,  or  any  damages  whatsoever  resulting  from loss
of use, data, or profits,  whether  in  an  action  of contract, negligence,
or other tortious action,  arising  out of or in connection with the use or
performance of this software.

                                     ---

  AmigaGuide, AmigaGuide.info, amigaguide.library, WDisplay, WDisplay.info
       (c) Copyright 1992 Commodore-Amiga, Inc.  All Rights Reserved.
          Reproduced and distributed under license from Commodore.

       AMIGAGUIDE SOFTWARE IS PROVIDED "AS-IS" AND SUBJECT TO CHANGE;
     NO WARRANTIES ARE MADE.  ALL USE IS AT YOUR OWN RISK.  NO LIABILITY
                        OR RESPONSIBILITY IS ASSUMED.
@endnode

@node "AuthorInfo" "Author Info"

        Snail mail:

                John Veldthuis
                21 Ngatai Street
                Manaia, Taranaki, 4851
                New Zealand
              @{" New Zealand" link "NZ_VC.bsh/Main" 0}

                Phone: +64-(0)6-274-8409

        UUCP/Internet:

                johnv@tower.actrix.gen.nz

        Internet Relay Chat (IRC) nick:

                VirKiller or JohnV
@endnode

@node "Files" "Files"


            Files required by Virus_Checker and where they hide
            ===================================================


Virus_Checker needs quite a few other files to function.

unpack.library

   This library needs to be in LIBS:  and is used for uncrunching packed
files. It is also used to check into LHA/LZH files in the registered
version.

xfdmaster.library

   This library is used to also uncrunch packed files. If you want to use it
then it must be in LIBS: as well. Also needed in LIBS: is the sub-directory
XFD. This is where some of the decrunchers are held.

BootBlock.library

  This library must also go into LIBS: it is used to check bootblocks of
disks. See Bootblock.brain as well

BootBlock.brain

  This file is used with BootBlock.library and must go into the L: directory
to be of use.

Virus_Checker.config

   This holds the configuration data for Virus_Checker. Once saved
Virus_Checker reads it on startup and sets it self up the way you tell it
to. This file can be in one of 2 places. PROGDIR: or S:. Virus_Checker knows
where it loaded it from and will save it back there when told to. If the
file does not exist at all and you save it it will be placed into PROGDIR:

Virus_Checker.watch

   This file is a text file and can be changed with just a normal text
editor. It holds the names of the files/directories being watched for
changes. This file will be in either PROGDIR: or S: Again Virus_Checker
knows where it loaded it from and will save it there. If it did not exist
then it is saved to PROGDIR:

VirusChecker.brain

   This file is used by Virus_Checker to keep track of the non-standard
bootblocks you tell Virus_Checker to learn. It will be loaded from either
PROGDIR: or L:. Again it will be saved back from where it was loaded from.

VCBrain

This file is found in PROGDIR: or s: and holds the Bootblocks learned


Virus_Checker.key

   This is the keyfile for Virus_Checker and you should only have one of
these if you have @{"registered" link "Shareware" 0}. It can be in one of 3 places. PROGDIR:, The
directory pointed to by the ENV: variable KEYPATH or in S:
@endnode

@node "Arexx" "Arexx"


                       Virus_Checker Arexx commands
                       ============================


Virus_Checker does have an Arexx port and the name of the port is
Virus_Checker. With this port you can get Virus_Checker to do things from
external programs. Commands supported so far are

@{fg shine}QUIT@{fg text}

eg. address 'Virus_Checker' 'quit'

This causes Virus_Checker to shut down and quit

@{fg shine}RELOADBRAIN@{fg text}

eg address 'Virus_Checker' 'reloadbrain'

This will cause Virus_Checker to reload it's brain file. With this command
you can update the brain and get Virus_Checker to reload it without having
to get Virus_Checker to stop

@{fg shine}SCAN@{fg text}

eg address 'Virus_Checker' 'scan filename'

This command causes Virus_Checker to go out and scan the file or directory
given. All requesters will be turned off so it can be used un-attended. The
get the results back to the program Virus_Checker sets some ARexx variables.
These are a stem variable called VCHECK
 VCHECK.0.0 holds how many viri where found. 0 = none.
 VCHECK.i.1 holds the file names of the files infected
 VCHECK.i.2 holds the name of the virus that infected the file

for example if Virus_Checker found 2 files infected.
 1. SYS:C/LIST infected with the SCA virus
 2. SYS:WBStartup/runme infected with the Saddam virus and
 SYS: was scanned the results would be

 VCHECK.0.0 = 2
 VCHECK.1.1 = SYS:C/LIST
 VCHECK.1.2 = SCA
 VCHECK.2.1 = SYS:WBStartup/runme
 VCHECK.2.2 = Saddam

@{fg shine}NOTIFYWATCH@{fg text}

eg  address 'Virus_Checker' 'NOTIFYWATCH password'

This command and the next are very special. They work in conjunction with
the file watch list. Whenever Virus_Checker gets a signal that a file or
directory that it is watching has changed it will warn you. If you have
Autoscan turned on and give this command to Virus_Checker it will report to
you the results. The command will not return to you until something has
happened and that is why the following command is for.
If you need to cancel the notifywatch then you will need to use the
following command to get it to release your script.

This command is of ideal use for BBS systems. You could set Virus_Checker
to watch your uploads: directory and when a user uploads a file it will
scan it and return the results to you.
An example is

/* Notifywatch example */

options results
address 'Virus_Checker' 'NOTIFYWATCH Mypassword'
if VCHECK.0.0 = 0 then do
	say 'No viruses found in scan'
	exit
end
say 'Viruses found: ='VCHECK.0.0
do i o 1 to VCHECK.0.0
	say 'Filename was 'VCHECK.i.1' and virus was 'VCHECK.i.2
end
exit

@{fg shine}STOPNOTIFYWATCH@{fg text}

eg. address 'Virus_Checker' 'STOPNOTIFYWATCH Mypassword'

This command will free a watch started by the NOTIFYWATCH command. You only
need to give it the password given in the command above. You will need to
do it from a seperate script as the other one will be waiting for the
return still.

@{b}NOTE:@{ub} The password is case sensitive and needs to match the one
given in the NOTIFYWATCH command


@endnode

@node "Credits" "Credits"
                                  CREDITS
                                  =======
 My thanks go out to...

 Thomas Neumann For the inclusion of unpack.library

 Georg Hrmann  For the inclusion of xfdmaster.library.

 David Dustin   For the assembly code for the MakeKey program.
                and heaps of help with docs for WB3.1

 Leo Davidson   For Arexx script for use with Virus_Checker and DOpus 5

 ARexx          Developed on an Amiga 1000 and is a 100% Amiga product.

 Tim Nugent     For picture of where I live

 Markus Schmall For help with the Illegal Access virus


Locale translations

 Nederlands  Jan Hendrik Lots (jhl@grafix.xs4all.nl)
 Swedish     Jon Malmquist (jon.malmquist@mailbox.swipnet.se)
 Italian     Francesco Dipietromaria (dpm@ns.sinet.it)
 French      Florent Monteilhet (florent.monteilhet@ramses.fdn.org)
 Norwegian   Morgan Jakobsen (remija@login.eunet.no)
 Danish      Henrik Lauridsen (hlau@dou.dk)
 Deutsch     Kersten Emmrich (emmy@ramses.fdn.org)
 Deutsch     Torsten Hiddessen (torsten.hiddessen@tu-clausthal.de)



And especially to my Beta Testers who found heaps of bugs and made many a
good suggestion. In no particular order

Leo Davidson       Ben D. Rogers       David Oakes

Andrew Dowds       Brad Rogers


                              John Veldthuis
                              ==============
@endnode

@node "Options" "Options"


                       Virus_Checker Options Window
                       ============================
  Close Gadget                             Window to Back
   |                      0        gh                                                                                                  &  %  $  #  "  !                                               
  	                                                                                                                                                                                                                                                                        |
 -[.]-----------------------------------------------[]-|
 |                                                      |
 |       Use XFD Master  @{"" link "Option XFDMaster" 0} @{"" link "Option Capture" 0} Ignore Capture Vectors   |
 |           Use Window  @{"" link "Option UseWindow" 0} @{"" link "Option UseBBLib" 0} Use BootBlock.library    |
 | Ignore BB Read Error  @{"" link "Option IgnoreBB" 0} @{"" link "Option LHA" 0} Check into LHA/LZH Files |
 |         Unpack Files  @{"" link "Option Unpack" 0} @{"" link "" 0}      |
 |  Check DF0 BootBlock  @{"" link "Option DFxBB" 0} @{"" link "Option DFxFull" 0} Check DF0 Full           |
 |  Check DF1 BootBlock  @{"" link "Option DFxBB" 0} @{"" link "Option DFxFull" 0} Check DF1 Full           |
 |  Check DF2 BootBlock  @{"" link "Option DFxBB" 0} @{"" link "Option DFxFull" 0} Check DF2 Full           |
 |  Check DF3 BootBlock  @{"" link "Option DFxBB" 0} @{"" link "Option DFxFull" 0} Check DF3 Full           |
 |    Scan Watch Change  @{"" link "Option Scan" 0} @{"" link "Option ArexxScan Window" 0} Arexx Scan Window         |
 |                          @{"" link "Option AppIcon On" 0} AppIcon On               |
 |                                                      |
 |      PopUp HotKey  @{"lcommandshifthelp" link "Option HotKey" 0}              |
 |                                                      |
 | Tempory Directory  @{"RAM:VCTEMPArc/" link "Option TempDir" 0}                   |
 |                                                      |
 |      @{"SaveOptions" link "Option Save" 83}              @{"CloseWindow" link "Option CloseWind" 0}        |
 |                                                     |
 ------------------------------------------------------
@endnode

@node "Watch" "Watch"

                             Watch Files/Dirs
                             ================


 Close Window                            Window To Back
  |                                              |
 [.]---------------------------------------------[]-
  |                                                 |
  |    -----------------------------------------    |
  |   |                                       | |   |
  |   |                                       | |   |
  |   |                                       | |   |
  |   |                                       | |   |
  |   |                                       | |   |
  |   |                                       | |   |
  |   |                                       | |   |
  |   |                                       |^|   |
  |   |                                       |v|   |
  |    -----------------------------------------    |
  |   |@{"" 0} | @{"&" link "&" 0}|
  |    -----------------------------------------    |
  |                                                 |
  |     @{"Add" link "Add" 0}  @{"Remove" link "Remove" 0}  @{"CloseWindow" link "Option CloseWind" 0}  |
  |                                                 |
   -------------------------------------------------


@endnode

@node "Scan" "Scan"


                                Scan Files
                                ==========

Clicking on this button will bring up the ASL Requester. You can then select
a drive/directory/file to check for viri.

Clicking on cancel will cause the scan to be aborted.

Click on Okay once you have selected what you want scanned.
@endnode

@node "Quit" "Quit"

                                   Quit
                                   ====

Pretty obvious what this button does
@endnode

@node "Option XFDMaster" "Option XFDMaster"
 @{fg shine}XFDMaster@{fg text}

 Turning this Checkbox gadget on will cause Virus_Checker to use the
 xfdmaster.library. This library is used to uncrunch files that are packed
 to save space. A virus could be packed inside one of these files.

@endnode

@node "Option UseWindow" "Option UseWindow"
 @{fg shine}Use Window@{fg text}

 Setting this option causes Virus_Checker to open it's main window when it
 starts up. With it off the window will not open

@endnode

@node "Option IgnoreBB" "Option IgnoreBB"

 @{fg shine}Ignore BB Read Error@{fg text}

 By turning this Checkbox gadget on it will tell Virus_Checker to ignore
 putting up a requester when it can't read a BootBlock from a disk. This is
 extremely handy if you use MSDos disks as Virus_Checker cannot read them
 normally

@endnode

@node "Option Unpack" "Option Unpack"
 @{fg shine}Unpack Files@{fg text}

 Turning this Checkbox gadget off causes Virus_Checker not to use
 unpack.library at all when loading files to be checked. unpack.library can
 cause crashes on some crunched files due to it thinking it knows what the
 cruncher is when it is in fact a diffrent one (usually newer ones)

@endnode

@node "Option DFxBB" "Option DFxBB"
 @{fg shine}Check DFx Bootblock@{fg text}

 Selecting these Checkbox gadgets tells Virus_Checker to check the
 bootblock and the first file in the startup-sequence, plus a few other
 special files for viruses on any disk inserted into a floppy

@endnode

@node "Option Scan" "Option Scan"
 @{fg shine}Scan Watch Change@{fg text}

Selecting this Checkbox gadget tells Virus_Checker to automatically scan any
file or Directory that is being @{"watched" link "Watch" 0} by Virus_Checker should it change

@endnode

@node "Option Capture" "Option Capture"
 @{fg shine}Ignore Capture Vectors@{fg text}

 Setting this Checkbox gadget tells Virus_Checker to ignore anything in the
 capture vectors. These vectors are used to survive reboots so viri
 usually go for them.

@endnode

@node "Option UseBBLib" "Option UseBBLib"
 @{fg shine}Use BootBlock.library@{fg text}

 Setting this Checkbox gadget tells Virus_Checker to use the
 BootBlock.library when checking Bootblocks for viri. This library knows
 about some viri that Virus_Checker does not so it is best left on.

@endnode

@node "Option LHA" "Option LHA"
 @{fg shine}Check Into LHA/LZH Files@{fg text}

This Checkbox gadget is only active if you are a registered user.
Selecting it will tell Virus_Checker to look into the archive for any viri
hiding there. Saves having to unpack the whole archive.

@endnode

@node "Option DFxFull" "Option DFxFull"
 @{fg shine}Check DFx Full@{fg text}

 Selecting these Checkbox gadgets compliments the bootblock checks. If
 selected and a floppy is put in the drive then Virus_Checker will
 automatically start scanning the whole disk for viri.

@endnode

@node "Option HotKey" "Option HotKey"
 @{fg shine}Popup HotKey@{fg text}

 This is the key combination that is used to POP the Virus_Checker main
 window open if it is not open already.

@endnode

@node "Option TempDir" "Option TempDir"
 @{fg shine}Tempory Directory@{fg text}

 This string gadget is only of use to registered users. When unpack.library
 looks into LHA/LZH files it requires a tempory directory to do so. This is
 that directory.

 @{b}WARNING: WARNING: WARNING:@{ub} unpack.library deletes anything in this
 directory when it removes it's files so make sure that nothing of
 importance is in them. You have been warned.

@endnode

@node "Option Save" "Option Save"
 @{fg shine}Save Options@{fg text}

 This will save all the options to the file PROGDIR:Virus_Checker.config or
 S:Virus_Checker.config depending on where it was loaded from.

@endnode

@node "Option CloseWind" "Option CloseWind"
 @{fg shine}Close Window@{fg text}

 Pretty obivous what this one does. Closes the window
@endnode

@node "Option ArexxScan Window" "Option ArexxScan Window"
 @{fg shine}Arexx Scan Window@{fg text}

Setting this button will tell Virus_Checker to open the Scan display window
when scanning files by ARexx. Turning it off will not see the files as they
are scanned.

@endnode

@node "Option AppIcon On" "Option AppIcon On"

@{fg shine}AppIcon On@{fg text}

Turning this gadget on will allow Virus_Checker to create an AppIcon on
your Workbench. Workbench has to be running before Virus_Checker so that
the AppIcon can be made. However if you start Workbench after Virus_Checker
has been started you can get Virus_Checker to create an AppIcon by turning
this option off (if needed) and then back on.

@endnode

@node "&" "&"

@{fg shine}&@{fg text}

This gadget will bring up the ASL File Requester and you can enter a file or
diretory to watch. Selecting it will automatically enable the string gadget
and enter the dir/file name in there. Then simply hit the return key to
enter the name.

@endnode

@node "string" "string"

This string gadget is used to enter the name of the file or directory to be
watched. If you selected a name in the ListView gadget then the name will
automatically be put in here as well.

@endnode

@node "Add" "Add"

@{fg shine}Add@{fg text}

Clicking on this gadget will activate the @{"string" link "string" 0} gadget above it and allow
you to enter the name of a file or directory to watch

@endnode

@node "Remove" "Remove"

@{fg shine}Remove@{fg text}

Clicking on this gadget will delete the name from the list of watched
files/directories that is specified in the @{"string" link "string" 0} gadget above it.

@endnode

@node "CheckNow" "CheckNow"

                              Check Files Now
                              ===============


 Close Window                            Window To Back
  |                                              |
 [.]---------------------------------------------[]-
  |                                                 |
  |    -----------------------------------------    |
  |   |                                       | |   |
  |   |                                       | |   |
  |   |                                       | |   |
  |   |                                       | |   |
  |   |                                       | |   |
  |   |                                       | |   |
  |   |                                       | |   |
  |   |                                       |^|   |
  |   |                                       |v|   |
  |    -----------------------------------------    |
  |   |@{"" 0} | @{"&" link "&" 0}|
  |    -----------------------------------------    |
  |                                                 |
  |     @{"  Check Now  " link "Check" 0} @{"  Add  " link "Add" 0} @{" Remove" link "Remove" 0}   |
  |                                                 |
   -------------------------------------------------

@endnode

@node "Check" "Check"

@{fg shine}Check Now@{fg text}

Selecting this gadget will start Virus_Checker checking all files and
directories listed in the Check Files Now Listview gadget.

@endnode

@node "History" "History"

Version 7.0

Internal release only. First runable version after re-write.
Done are Locale support, Options window, WatchList window, File Check
requester, memory checks, bootblock checks.
All files related to Virus_Checker such as it's config, brain, and key
files will be got first from PROGDIR: then from the default location.
Libraries still need to be in libs:

Version 7.1

7/7/95

Got Display option working for Bootblock virus find. Found a buffer too
small and overwriting memory not used by VC. Did not cause problems till
something else tried to run.

8/7/95

Finished off bootblock stuff. learning stuff was last to go in. Maybe need
better error messages. Sent out to beta testers for a try and look

Version 7.2

9/7/95

Put in Zoom gadget so can be used as titlebar again.
Added Snapshot window and Save config to Main menu.
Fixed up Gadget display on GUI. Overlapped in topaz 8. Simple maths fault.
However it did bring to light a new problem when window too big and dropped
back to topaz 8. When window closed and another gadget clicked it changed
to the font just used. Re-programmed Openwindow to correct.

10/7/95

Found bug in menu colors. Set the wrong Tags for LayoutMenuA(). That took
alot of searching and head scratching.
Added close button to file/dir window. Enabled R key in this window as well
May have found bug in Enforcer hit with this window as well
Started on adding file scanning in. Uses in the following manner. Check if
XFD turned on. If on check if file crunched, if not then try to use
unpack.library to read file, if unpack.library not there just read file in
as is and check.
Sent out for Beta testing

Version 7.3

11/7/95 -> 14/7/95

Away at a course for the next 4 days for work. Wont be doing much on this

15/7/95

Found bug causing crash when all windows closed and hide interface selected
in commodities exchange program.
Finally found bug in File/Dir watch window for enforcer hits. It was a call
to FreeGadgets(). The gadget pointer should have been in A0. I had it in
A1. I thought I checked that one 4 times as well.
Now I can get back to the serious work. Yeaaaa!
Redid gui/font layout calculations. Looks okay in 6/8/9/11 point fonts.
Added code to pop windows to front if already open when selected.

16/7/95

Worked on File checking stuff. Got basic 1 file check routine working. Have
added Saddam virus check to floppy check.
Added RLamer checking to floppy check.

Version 7.4

17/7/95

Added link virus tests to check1file code. Now can start adding in main
scanning code. Will do multiscan first
Found bug in Bootblock remove code. Installing either 1.3 or 2.0 bootblock
would cause a read from a random address and stuff up the bootblock.
Added single file check. If Scan Files selected om Main window and a file
is selected then that file will be checked for file/link viruses.

18/7/95

Skiing today. Great weather but -12 was a bit cold.
Added in Busy pointer/Gadget inhibit while scanning directories.
Added in File scanning code. Works until it hits a virus

19/7/95

Fixed bug in scanning code. Register got corrupted in another routine.
Added scan window to scanning code. Seems to be working 100%. Looking good
so far.

Version 7.5

20/7/95

Added STDOUT option. This will run Virus_Checker in a one shot mode. You
need to give it a directory to scan. All stuff that would normally come up
in a requester will be output to STDOUT. eg.
Virus_Checker stdout ram:
would check ram: and exit. With the CCCP virus in ram: the following is
output to the shell window
WARNING The File "ram:CCCP" is infected with the "CCCP" virus
ALL error messages will also go out to the shell
Added Bootblock virus checking in files. That is now all the file scanning
stuff working as in the old version.
Added Stats menu option. Gives a few numbers
Added in checking of first file in startup-sequence
Added option to SHELL. if AUTOSCAN is on command line then when VC gets a
signal saying a watched file/dir has changed then it will scan it before
displaying requester.
Put Options button for previous on.
Started on Arexx stuff. Added QUIT arexx command. See notes
Added in SCAN arexx command.See Notes
Added in RELOADBRAIN arexx command. Forces a reload of the brainfile
Added in popup when hidden and program run again.
Added in Scan if running and run again with a dir given

21/7/95

Changed action of Exchange Hide Interface. Will close all windows open.
Also changed close gadget on main window. Clicking it will close all
windows
Added in Icon stuff. Turned up a few new bugs as well. Getting close to a
release though.
Added keyfile checking back into checker. Even closer

22/7/95

Worked on the *.guide most of day.
Found a few small bugs going through when doing the docs.
Fixed a bug with the default configuration. It was giving a legal path in
the LHAPath.

Version 7.6

23/7/95

Added $4eb9 Link detection to Link virus code. Will say Possible $4eb9 Link
Virus it it finds the right code
Spent most of afternoon tracking done a bug with the File watching. If you
watched any file and changed it the warning would be given. Then several
false warnings. Changed it so that the Notify was ended then restarted but
then got crashes all the time. So cleared out Notify structure after
EndNotify() and StartNotify(). Seems to have cleared the problem
Got installer script working (I hope)

24/7/95

Bug with $4eb9 link detection.
Bug in LHA checking. It was actually a bug in the key checking. Checked the
key to late so that it was never initialised.
Corrected a few spelling mistakes.
Corrected bug if first file in startup-sequence was not in SYS:c/

Version 7.7

25/7/95

Fixed a few enforcer hits. Also some more work on guide.
Added XFD command line and WB options.

26/7/95

Fixed a few minor spelling mistakes.
Got catalogs for dutch and swedish languages in.
Seems to be good so far

27/7/95

Only a few bits on the guide file today. Things must be just about ready
for a release.
Started work on adding an AppIcon. May be in or not. Depends how it works.

28/7/95

Spent hours looking for a bug in the Notify code only to find it a simple
exchange of registers. I used the wrong one again. Assembly is hard at
times.
Added online help (sortof). pressing Help in Main window will spawn
Multiview. The Virus_Checker.guide has to be in HELP:

Version 7.8

29/7/95

Added Option to turn off Scan window when scanning files from Arexx.
Some more work on guide file
Fixed bug in Watch save. When no files to save it did not delete the old
file. So when re-started it would reload the file again.

30/7/95

Worked on AppIcon. Seems to be working well. Dropping icons onto it checks
them for viruses okay.
Put Checksum checking back into code. For those hackers who don't know what
they are doing.

Version 7.9

31/7/95

Started working on ARexx interface to Autoscanning of changed files.
Had to send this out due to a faulty script before

Version 7.10

1/8/95

Worked more on Arexx inface and autoscanning

2/8/95

Worked on bug with XFD and unpack both turned off.
Added option to turn AppIcon on/off
Fixed bug in Arexx Scan Window. If off then no scan window at all.
Worked on guide file again as well

Version 7.11

5/8/95

Made it so help could be found in PROGDIR: or HELP:english/
Fixed up Install script again.
Finally got Notify watching working in a way that seems good.
Fixed up guide file again.

6/8/95

Fixed up bug in first file check. Was causing odd address error
Internal release only

Version 7.12

8/8/95

Changed install script to find VirusChecker.brain in L: and warn user if
remove it or leave it. Leave only if running from WBStartup.

9/8/95

Found small bug in ASL code. d0 being set instead of d3. Didn't seem to do
anything though. Crashes after ASL file selected and before scan window
opens on WB2.1 machine???

10/8/95

Found bug. I was using a WB3.0 or better routine to set the busy pointer.
In WB2.04 and WB2.1 it was not there so crash!. Will check for any others

Version 7.13

Obviously my maths is no good and I got the test around the wrong way.
WB3.0 uses the WB2 code and WB2 uses the WB3 code. Result Boom! again.
Fixed this time hopefully.

Version 7.14

12/8/95

Fixed bug when deselecting LHA/LZH. It would crash when checking a LHA file
Corrected guide file again and fixed a few spelling mistakes in main file.

13/8/95

Started work on Check Now stuff. May not be in release version as
functioning. After 4 hours got it completely working. Seems good.

Version 7.15

15/8/95

Corrected small problem with File Watch window gadgets appearing to high
under WB2.04 and 2.1. gadtools.library must handle things differently in 3
Updated nederlands catalog.

17/8/95

Changed how requester is displayed. Text is formatted first, then centred.
Looks alot nicer. No bugs reports from beta testers yet.

22/8/95

Corrected small bug in Arexx interface. Not setting variables.

29/8/95

Corrected small mistake with CheckNow loading option. Watch file would save
to PROGDIR: no matter what.

First release of file. Brainfile 1.22 in this version may vary from the
released version but it is the same one.

Version 7.16

31/8/95

Added Illegal access virus to checker. Seems to detect it okay but stuffs
up the removal. Time for real work so will work on it later

1/9/95

Fixed problem with crashing on 68000 machines when scanning bootblocks
(I hope)
Fixed illegal acces virus problems. Removes it now

2/9/95

Added FileGhost 2 virus to checker. Memory checks in brain file
Fixed WatchNow window not closing on main window closure

3/9/95

Fixed problem where you could open CheckNow window multiple times

Version 7.17	Released 13 September 1995

Added Debugger virus to code
Fixed problem with CheckNow window. Optimizing it I somehow stuffed it up.
Changed size of CheckNow Window for NTSC 640x200 window. Should fit.
Added a special feature to the brain so that it can handle strange checks
Fixed problem with Locale not working. After I tested the locale files I
changed the version numbers but forgot them in the program.
Spelled an Arexx command in the guide the wrong way.
Fixed a possible source of Can't lock "" requester
Fixed enforcer hit when CMDline Virus_Checker cx_popkey="alt r" given
Fixed bug with Blank requester if ASL.library not found.
Fixed so VC opens version 36 of DiskFont.library which WB2.04 uses unless
version 37 has been installed manually
Fixed IgnoreCapture vectors. It was not ignoring them.
Added info to guide on PGP key servers to help getting my key.

Version 7.18	Released 30 September 1995

Small bug in installer. Was putting language files into LOCALE: instead of
LOCALE:Catalogs/ when WBStartup given
Added Italian local to archive
Found bug in Icon tool types. Where parsed before the config was loaded so
when config loaded it would overwrite changes
Fixed problem with NOWINDOW being ignored as a tooltype
Made Menus Locale aware
Added A=APPICONNAME to SHELL and ICON to set AppIcon name
Added QUIT to ICON type.
Added AppMenuItem. Now can select Check for Viruses from Workbench menu
Removed BootBlock File check. Every man and his dog where turning it on
without reading the warnings and then emailing me when they keep getting
the UltraFox BootBlock virus in all sorts of files. It is gone and wont be
back.

Version 7.19 Not Released. Internal only

Found problem with AFS partition and requesters about "" files and buffers.


Version 8.1 Beta

6/10/95
Have added Main window to checker and removed original. Added help to all
buttons. 100% function Next is options window. Fully localised

7/10/95
Have added options window to code. Got it working and removed old options
window. Tried with various fonts and falls back to topaz 8 if problems.
No help added to buttons yet. 100% function. Works like a charm. Wow this
BGUI is easy to program. Should have tried it years ago :-)
Fully localised. Next the hard ones. :-)

8/10/95
Have got File Watch window working. Invisible key added to getfile gadget.
It is the G key. F key cycles thru listview but does not actvate it. You
have to click on the string with the mouse. Bummer
Must be a good day. Also did Check Now window. Looking good
Started on BBDump window. Should be able to get rid of quite a bit of code
with this one gone.
Listview GUI's look 100% now with a little info from the author of BGUI. He
sent me 2 examples. Now thats what I call support.

9/10/95
Got BBDump going okay. alot of shit code taken out. Only window left to do
is the Scanning one. Also have to do an iconify mode seeing as BGUI can't
do it. 1am Time for bed
10:30am and time for more work. Got Iconify mode working. If Iconified VC
goes into a small Titlebar. Pressing the right mouse button when window
selected will pop it up to full size again.
Will have to add another option though I think. Start Iconfied?
Added another button to options. Start Iconified. This will start VC in the
titlebar mode

Version 8.3 Released 16/11/95

Corrected bug in AppIconName. Got BGUI interface working okay. Nothing else
done on this.
Due to many things work on VC will be very little. There will be an
announcement coming soon on the future of VC.
Anyway enjoy the BGUI interface. It looks much better than the one I did

Version 8.4 Released 10/11/95

Fixed bug with ARexx variable not being returned. Was caused by a register
being changed. Program is getting oversized for 16 bit relocatable size.
There where reports of Enforcer hits with 8.3. The brainfile although the
same number has had some bugs taken out. This was propably the cause. Use
this version. I can get no enforcer hits at all.
New version of unpack.library included. many thanks to Thomas.



@endnode
                                            #   Virus_Checker.cd                                                              '         (                                                                                                                                                                                                                                                                                  +  *  )  (             $                                                                                                  4Virus_Checker.guide.info                                                        E 7    cdBP                  eX|          5                 7                  .  * ]c~ *뫿l ?|6 *x2l  x06  >   p;  06d  xx6d  <6d  ~46d  7|6d  6v6d  "<6d  #<6d  !7   3  `[     g                                              
 6` ] 6` B6` %6` 6` Š6  Q6  A# `+ 6` 	6` $6`  6` "6` 56`  6` b 6` [@7  <@3 @
     E                                  w .:  *Ɋ \]H *~((
 @  *{Ψ
  }   
  <       x  {
     UbTA
 "   UATA
 *? UTTA
 ;|9 UU^TD
 | ߘ              7                       ? ? ? OW ? =u .~~ }[=߶ xz V߶ q K} 9r /yr ^b92 `92 ~p2 q2 q2  ћ2 g2  2  ~  ?  {                      @     @    @    @  @?  @| 0 @;0 @u0 A0 A0 Cq  C?@i  CBip CJip C@;i0 C@i0 CP0 Cۀ0 Aúћ0 AJQћ0 @0 @}a0 @> @ @    @    @ p                      O ?W ܿ 9QOd v$L eU9D Ȉp H ND `   t '0    p   0   ;  w   *j  `@@ *  gFEDH +  D *" |             
Multiview                                                                                       &  %  $  #  "  !                                               
  	                                                                                                                                                                                                                                            ,         -&                                                                                                                                                                                                                                                                                              -                                                                                                              #  
(Virus_Checker.guide.sig                                                   03&yg؝YQ2E58#, 6ScG
Rv͙֫dp^9G~Eo;9_Pg\	7gʋ2о!7n迯_KްzbCRZv ~ߢe .$|                                                                                              |                                                                                                #  Virus_Checker.guide                                                         .         /;                                                                                                                                                                                                                                                                                  2  1  0  /                                                                                                           F  `  Virus_Checker.info                                                               7    | }L                      ~cl                      7   `                T     T 9   UUUtT !P  UUU T   UU\T  ( EUp$`D PX Up `    U\    U@    P  T@                                                                                                                                                                                                                                                                        WR ;   WUUTR #   WUUR   WUS
R ' GUOՊB W UOߊ ] US*   +U@ R R +T@ v  Wr +                 7   0                    ? ? ? ? *  *  * q *  P *  w "       q     Q  ?                                                @       @       @       @       @     @     @     @     @     @     @     @     @     @     @     @  '   @ ?   @    @   @ ?   @   @       @       @       @       @       @                          (   U q U P U w
 U  + U q G. ?U P? U ?o U                     ,   
DONOTWAIT     (CX_POPKEY=lcommand shift help)    (NOWINDOW)    (CHECKRADBB)    (AUTOSCAN)    (UNPACKOFF)    (BOOTBLOCKLIB)    (DIR=DH0:)    (QUIT)    .(APPICONNAME="PROGDIR:Virus_Checker_AppIcon")                                                                 +  *  )  (             $                                                                                                  4Virus_Checker.guide.info                                                      3         4An                                                                                                                                                                                                                                                                                              4                                                                                                              #  Virus_Checker.sig                                                          03&I ~O^Sv7<u`䝬/5<;5mF]# 6uڽ%˸nˤ^c?J8FYWk< "mgR$ebXum5BũK}MʪF                                                                                                                                                              -                                                                                                              #  
(Virus_Checker.guide.sig                                                       5         6?:                                                                                                                                                                                                                          G  F  E  D  C  B  A  @  ?  >  =  <  ;  :  9  8  7  6              "T                                                                                                #  VirusChecker.brain                                                                                     h    h   L              $VER: VCBrain 1.26 (10.12.95)  K+I +J +@ +A +B +C A"<  t p ԀQfp NupNuH Iz&IJg&"K \gg< < ߲ f`fpL Nup `/I)H  )I  l "hg   >f&&z xf!i-i"  l NA"l  N n:!nf&-| f-h-h : l NA"l  N n:f f"N  f-y  : l NA"l  N njA f A f-h vj l NA"l  N n:a  N ,f&#|   Bf-h ~:-h0j l NA"l  N . .g& @A$fQf l NA"l  N n: n : 6f&A d :f-h:-hF l NA"l  N n:,@ 6fXa  VfNN-y 
l-y -y -y  :!  lC-IN l N l NA,"l  N l  hA f6  f,N-h! l!|`  *N l NA"l  N n:3|  $f f  N 6f-h: l NA"l  N n f0>6 <f&-h"l #h b4! l l NA"l  N . .g   @A  0f8g# :f."n:f0-y $f  Df-h:: l NA"l  N n .a  f0: f&-y  :-y   l N l NA"l  N n:aAf* h f -h &:"l #hl l NA"l  N l /
$H  pg  "h f. 
f~N  ftN|) p g2%i %i 0%i F%i `%i z%i l%i N%i H`(2`3|` J3|` d0<`3@ 3@ 43@ ~3@ 3@ NvA"l  N$_ l "hl1994f!ilA!"l  N n~I f4K@f*-h ~"l #hl0) | #o#hA"l  N . .g0 @Q f$aNu f"l #h $: l NA"l  N"l  ilA f ,, | ^f#h#h lA"l  NH3@   l $h  f N f$j Hf   o  f  "z f  p f  %|NqNq85|`.H JN|!|t Nq J!|t Nq	N1|`.!|-|  
\!|   .
`1|N .1|N j$HE	~4NuQNvL0* 
"r 
p&Q6NPIQ*"I (3  L?A
$"l  N`L?3  "l  il/Kf,Z+A f" *_ fhN f#h lA "l  N"l  il4f*Hf"Kj fha
 f#h lA
"l  NB  a a >a jJ  g
A
"l  NHa R LJg
A"l  N"l  il/Af*  f  _N fJ g#h lAJ"l  N3@  r "z i t ( Hf:C  f0 R f&u f
 f  #@ t3  A
w"l  N`3  r 3@  "l  il/	Cfn@" fd"_a  fZ#h@lR"x  iDifBskf f8aN f.#h|R idrfacf  fhZ f#hdR3  Jg
A"l  N(_NuIz| ,x N|(l (l "", "5` L Uf) g()H aL  fNv*I&D"KE 4x$&f&Q&NuNu'|NqNq|'|NqNq|B- NuH,x &n(k pJgJ*l 
"l  iH0$HG ~ "fQ#j $R  LNu"l  ilH0$HG h~ "fQ#j lR  LNu"x  i~H0~G P$H "fQ#j ~R  LNuHKV+|   x`HKHK@BxaJxf
LHI f `RLr`r`
r`r`r D a r NuH&D(I Kr~c X  g  g  gQp L0Nu *H, *)@ ,  Ём   "K)I 0)H 4PQfBP o <fC N f"z z   Jb   K,Ƒ :`KQp` n D      r Nu/K K+H , (+@ 0  +H 4H f$,x  fC ` fp!N f*_pNu*_p NuH/,:*z D"H,Ƒ* :ĜY.KpQ D   d "zC   d z <  `Ar ~?2|`g@g
AQ`0Nu zlAPNqf0Nu L   r NuH>IB |)@ $)D ( @a a   :tL|NuKF ] "|gNu *H, *倐  Ё$zA gNuA V gNu-*[E 4gNufC HgNuaJ NgNuCA  z  A  z    	":A\SfAx  \a  Ap Nu z\$HA "H   :v":nPNgTfNut 4( &HT$g` Nur~m X|gQ`C<"""NuA0(z  TRSI TRSIA&  TRSI TRSIA   TRSI TRSINur :Nu D (    !@ !@ !|   C\A     ]Q D ( м      f" SXH  ("Xr   (QJfr    <NuH~., *&&H   f  g`(H g  k  !@( XH"H"S QS$He     g  g  fP` ?e     fQ Sf ,  J"S&GƷex @gZ@gT@gN@gV@g6@g0@g*@gB@g*@g$@f g R` g列` ?`XH`Q G L~NuStarcoSataFuck DevicGuardianAngeElectro VisioSucide MachinMegaLinABCVirusKilleCanceTelecom.filDarth_VadeRevengKarai TrojaDeCompiler TrojaLabtec TrojaMongLeviathaUnknowNoGurNanSepulturByte ParasitExcrement CreatoCopyLocIntel_LoadwCrimDisk-Val_123BeethoveAmiExpress TrojaIconDepth TrojaSpeedCheck TrojaSCA Dos KilAlien trojaDigitalDream TrojaInterLamer TrojaIllegal AccesVirusMakeElenExHacker trojaLummiVMK TrojaCommandeDMS TrojaMerry /X BBS FormattePolyzygotronifikatoHDSpeeduSurprise TrojaCalling Card TrojaAmiExpress BBS Hacker BackdooAddy InstalleMenems RevengAddCrInfiltratoG-Zus BomWireFace trojaTDB_MessagSaddaVirusBlasteFileGhost (2Creator trojaSwiftware trojaFile Deleter trojaFile GhosAmosAGA TrojaLamer TrojeBootx Killer InstalleJizAnsDooBiomechanic trojaXRippeBig BeAssholCompuPhagozytXPRX FuckeCircle of Power TrojaMorbid AngeDLoggeWireFace Type DebuggeB.E.O.L. (Mount-972LKid Curry TorjaVirus_Checker 6.34 TrojaRastenBork installeRastenBorAExpress 2.20 trojaDiskKiller V1.ChaoDOpusRT trojaMinidemLoop Combo trojaShowSysop trojaRepair trojaMessage trojaFake VMemKill trojaVirus Construction SeSchizF.A.S.JoshuBestial Devistatio$4EB9-LinEbola LinNobody [L]egend John Veldthuis    F            O  (jd 4(l      U *  bE       a 4A Z-I .      l , T.F N       zA A        RN4 VJg        > n& BH       $A  ( <         lN |"<         2z . 6g6-|       (a  2/H 0      `"n >hJ .      bJ .lhCr      A XQ       H$n : La       :stas:no      0y_be4en_a      D .&XA       (G 2ser.      5 0f  `  4      F $A >C      ^B&A       q dA& ~N4       SYS: C/D        a  *J-H .       C:#J (       8N* BJ .       3B
*s:B        4  	T^N       " h6 &          a  8a >       Va"~ AR      & aba        D 8:fd,z      ` j,z^:      d |ada  ga       r6-Zus5$IsMa      ʫC      
L#f v      R AwBn R      R 0gozy g  6      R 0gozy A      R 0agoz A      R 8ataf Ú      lCIRCPOWE      lCIRCPOWE       NN        b1|2FUCK      bXaCaCATC       (a wh      lxr9r khrs      *ackd$rAST      %pOPEN:Dept      lJF ^x      R#:Comp      1Vbs:u|user       SNICET@Form      GQT       XTSHOWUser      h\K<`C      amesT	D      vORMArror       PStar.rusM      ARLIirus      G 
        BEST Gene      lCIRCPOWE      l
libs
COP'      *sys:Xait       lD/!T~2D~      +<FLID+HEHE      lA;5,/8.      s@}       ^ACP.CONF      ~ACP.CONF       , n 0 :Z      "rack"esch       .DQ CpCr      2f@]@      lA;5,;29      8SKNA@REAS      0veng:ANO       
ReveANO       ?AHAHAMER      vHEY MIGH       02<k 4A 
      ;M.K.didy      V,` ZV0` ]r      | EMON TAGR      REliechec      +2149      +D2149      $didy$keth      + 1490      +T1490      +!\"1490      +p 1490      +<1214      '  @A      `#Spee$,DUDE       PVB      NPI4      	 &  *        ,>Dies?AMER      = ,CHB Ha D      lA;5,;29          9 HKX N      d 9 Z h)m  J  u pKick xStee  	  uJaMiGRReZ   	  uNdStRiKe  	   HNN zC  	   H/., RC  	  R 4a  :C  	  R 4a NPdh0:  	  |Ĉx\   	  |Ĉx\J  	  |  +8 @?  	  |8 @?  	  |f* j`0  	  |,="  	      -@ *H@"@    L  fa2<    0:  STC!A~      A~  A,y  -|   p`  .A  Nu&nJ(     0A "  Ddos.  I  K C0A  copyA~  C g"    f ,	.<  6N#    鸵f      + a 2A   #|   *N8   "a  * -H .          
        .  g    	        
              B                                                                                                                                                                       x  h  X  L  @  4  (                              |  l  h  X  T  D  @  0  ,                                  |  h  P  <  (                   t  `  L  8  $                  p  \  H  4                     l  X  D  0                  |  h  T  @  ,                  x  d  P  <  (                   t  `  L  8  $                  p  \  H  4                     l  X  D  0           (   $                                                                                                                                                                                                                                                   2  1  0  /                                                                                                           F  `  Virus_Checker.info                                                            H         I|                                                                                                                                                                                                                                                                                              I                                                                                                              #  VirusChecker.brain.sig                                                     03&ui)IXrfi
ƫ6o^WZ|zwNлAJ ޥVɁz3
Uc.tv9iʓD׈\GRǦ7
                                                                                                                                                              4                                                                                                              #  Virus_Checker.sig                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                      H    .                                                      x          r                                                                                                                                                                                                                          q                                                                                                        3  
MAShare_66                                 3  q      %          q   ~-                                                                                                           ?                                                                                                                     \   >             \ > * )   Ps                                                        `       
                                                           P  h   V   @              1 #4 5U'T             7 !  e          r         sǏ                                                                                                                                                                                                                                                                              w  v  u  t  s                                                                                                                VirusZ.info                                                          p          Y  9    p                     f   U   #(         _ |      #v             \ D              9   a     ?        /W  /    /A  .  /A  *  -A  *  /U  *    : ?                                                 0    0                     
                                        W
 UP E+ UP E. 
EUX E " 
 Up U 
UUx UUUUUP                                        W
 UP E+ UP E. 
EUX E " 
 Up U 
UUx UUUUUP                                        W
 UP E+ UP E. 
EUX E " 
 Up U 
UUx UUUUUP                                        W
 UP E+ UP E. 
EUX E " 
 Up U 
UUx UUUUUP                                        W
 UP E+ UP E. 
EUX E " 
 Up U 
UUx UUUUUP                                        W
 UP E+ UP E. 
EUX E " 
 Up U 
UUx UUUUUP                              9   e      p      o            US     UR`  ` US   UU@  UUUUUW 
@      @                @      @     @     @ T`  @  ` @     @  @      5UUUUUV        
                           ?\ ?U[ ?@W|=UZ? ] 5UZ J; %w ?UUO
        5UUUUUU                            ?\ ?U[ ?@W|=UZ? ] 5UZ J; %w ?UUO
        5UUUUUU                            ?\ ?U[ ?@W|=UZ? ] 5UZ J; %w ?UUO
        5UUUUUU                            ?\ ?U[ ?@W|=UZ? ] 5UZ J; %w ?UUO
        5UUUUUU                            ?\ ?U[ ?@W|=UZ? ] 5UZ J; %w ?UUO
        5UUUUUU                            ?\ ?U[ ?@W|=UZ? ] 5UZ J; %w ?UUO
        5UUUUUU                                                                                                                                                                                                                                                         2  8Libs                                                                 r            x            5v                                                              U                                                                                                            y                u                        }                                                                                                                                                                3  <VirusZ                                                               p            y         z ]                                                                                                                                                                                                                                                                                      |  {  z                                                                                                                ANSi.tHE_REAlM!                                                    x                  ______
       __ ___/     /______ _ _______
   / // //            /  /____  ___/
  / //_//___    _____/       /  __)__________
           /    /    /    __/        __/  / // /                     _
          /____/___ /____/__ _______/____/_// /      ___ _ ___ _ ___|_|
       __ __ __ _ ___ _ __ _ __ __ __ _ __ __ ____  /  ______ [snk!]:
  diAL fASt ++49-(0)515-43528                     \/  /     /______ |
                           ________        __________/            / :
                      5  _/       /_______/___      /    \__/    /__|__
  .                  __ /     _    / __/     __    /__    /   __/   / // /
  :              / // //      /___/ __)____ /   __/  /___/___/_____/_// /
               / //_//______//         __/____/    /_____          ::  . .
  |                          /_________/    /      /_  __/          |:::.::.:
  |                                        /__________/            .::::. :..
  |                                                                   :
  +-=[ tHiZ fiNE tHiNG WAS bROUGht tO YOU bY ]=-----------------------+
  |                                                                  :
  |  dAtE : DD-MMM-YY         :        UPLOAdER : ==UPLOADERNAME==    
  |                           !                                       |
  |  tiME : XX:XX:XX          .        LOCAtiON : =L=O=C=A=T=I=O=N=!= |
  `---------------------------+---------------------------------------'
   kAll HERE tO GEt dA lAttESt ViRUSZ ARCHiVE OR dA lAttESt Xfd ARCHiV!             }         ~u                                                                                                                                                                                                                                                                                        ~              z                                                                                                  ANSi.ViRuSHeLP_DK                                                    x           _________    _                ______      _____    _  ____      _
  ____/"""./###/____)\_____________  \   ./ ____/"""./____)\/""./______)\
 /"""/   //_______   /"""/""./"___/_  \ // /""./   //""____/  //_______  \
/   /   //"""/"  / //   /  //____   \_ \/ /  //   //  ____/  //"./""""/ //
\      //   /  ____/   /  //""""/X\@!/   /  //   //  /"""/     //    ___/
 \_____/\__/___/ ""\______/_________/   /___/____/\_____/\_____/\___/::....
              /____/
         _ _________   _________           ______      ____     ____
         " """""""./___\______  \__________\   ./ ____/""./____/""./ BBS!
        _ ____   //""____/ ""/ \_______""""\\ // / "_"  //""__/  //
             /  //  ____/ /   ./"""./"/   ./ \/ /  /   //   \"  _/
            /  //  /"""/ /   //   // /   //    /  /   //   //   \
. . ..ooOO /___/\_____/\_____/\___/\/\___/ OoO \______/\___/____/ OOoo.. . .

       BBS  : +45 4659 6867              SysOp: Jan Andersen
         Modem : USR 33.6 V.FC              AmyNET: 39:141/142.0
            Open  : 24 Hours                   VirNET: 9:451/247.0
               Country: Denmark                   FidoNET: 2:235/112.0

         +-------------------------------------------------------+
         | FREE DOWNLOAD ON ALL AMIGA AND PC ANTI-VIRUS PROGRAMS |
         +-------------------------------------------------------+
 .. . oo OOOOOOOO oo . .. Virus Help Team Denmark .. . oo OOOOOOOO oo . ..
                           ^^^^^^^^^^^^^^^^^^^^^^^

       Please support us with all the new and old virus that you find
       so that we can support the antivirus programmers. You are very
       welcome to mail to our BBS.

        Every Amiga Virus that is uploaded to the BBS,  will be send
        directly to the anti-virus programmers all over the world.

        Every PC Virus that is uploaded to the BBS,  will be send to
        Virus Test Center, in Hamburg, Germany.

                                                VirusZ.info                                                          p                     F{                                                                                                                                                                                                                                                                                                                                                                                                          3  ARexx                                                                x                                                                                                                                                                                                                                                                                                                       
t                                                                                                  CheckArc.vzrx                                                            /*
   $VER: CheckArc.vzrx 1.01 (1.10.95)
          1995 by Georg Hrmann

   Template: CheckArc.vzrx ARC/A,QUIT/S

      ARC:  The filename (with path) of the archive.
      QUIT: If VirusZ has been started from the script, you can
            quit after checking by specifying this option.

   If VirusZ is not running, it will be started from the
   script (and quitted afterwards if requested).

   Currently the type of archive is determined by the filename
   suffixes ".lha", ".lzh" and ".lzx". This should usually work
   properly as nobody ever removes the suffixes of archive names.
*/

/* Filenames of external programs */
Prog_VirusZ = "dh0:VZ"
Prog_LHA = "Boot:Tools/LHA"
Prog_LZX = "Boot:Tools/LZX"
Prog_Delete = "C:Delete"

TempPath = "RAM:TempArcDir"

options results
options failat 99

UseQuitFlag = "no"

parse upper arg ArcToCheck QuitFlag
if ArcToCheck = "" then do
	say "No archive specified."
	exit
	end

TypeFlag = index(ArcToCheck,.LHA) + index(ArcToCheck,.LZH) + index(ArcToCheck,.LZX)
if TypeFlag = 0 then do
	say "Archive not of required type."
	exit
	end

if ~show(ports,VIRUSZ_II.REXX) then do
	say "Starting VirusZ..."
	address command Prog_VirusZ
	UseQuitFlag = "yes"
	StartTime = time(seconds)
	do while ~show(ports,VIRUSZ_II.REXX)
		if time(seconds) - StartTime > 20 then do
			say "Error loading VirusZ!"
			exit
			end
		end
	end

if exists(TempPath) then do
	say "Deleting temporary directory..."
	address command Prog_Delete ">NIL: <NIL:" TempPath ALL
	if rc~=0 then do
		say "Error deleting temporary directory!"
		signal QuitVirusZ
		end
	end

TypeFlag = index(ArcToCheck,.LHA) + index(ArcToCheck,.LZH)
if TypeFlag ~= 0 then do
	say "Extracting .LHA/.LZH archive..."
	address command Prog_LHA ">NIL: <NIL: x "ArcToCheck TempPath"/"
	if rc~=0 then do
		say "Error extracting archive!"
		signal DeleteTemp
		end
	end
else do
	say "Extracting .LZX archive..."
	address command Prog_LZX ">NIL: <NIL: x "ArcToCheck TempPath"/"
	if rc~=0 then do
		say "Error extracting archive!"
		signal DeleteTemp
		end
	end

if exists(TempPath) then do
	say "Checking archive contents..."
	address VIRUSZ_II.REXX CHECKDIR TempPath DECREXEC DECRDATA
	if rc=0 then say "Archive is clean."
	if rc=5 then say "Archive contains virus(es)!"
	if rc=10 then say "Error checking archive!"
	end

DeleteTemp:
if exists(TempPath) then do
	say "Deleting temporary directory..."
	address command Prog_Delete ">NIL: <NIL:" TempPath ALL
	if rc~=0 then do
		say "Error deleting temporary directory!"
		signal QuitVirusZ
		end
	end

QuitVirusZ:
if UseQuitFlag = "yes" then do
	if QuitFlag = "QUIT" then do
		say "Quitting VirusZ..."
		address VIRUSZ_II.REXX QUIT
		end
	end
                                                                                                                                                                                            ~              z                                                                                                  ANSi.ViRuSHeLP_DK                                                    x                                                                                                                                                                                                                                                                                                                                                                                                                            CheckDir.vzrx                                                            /*
   $VER: CheckDir.vzrx 1.01 (30.9.95)
          1995 by Georg Hrmann

   Template: CheckDir.vzrx DIR/A,QUIT/S

      DIR:  Must be a valid path.
      QUIT: If VirusZ has been started from the script, you can
            quit after checking by specifying this option.

   If VirusZ is not running, it will be started from the
   script (and quitted afterwards if requested).
*/

Prog_VirusZ = "dh0:VZ" /* You may change this */

options results
options failat 99

UseQuitFlag = "no"

parse upper arg DirToCheck QuitFlag
if DirToCheck = "" then do
	say "No directory specified."
	exit
	end

if ~show(ports,VIRUSZ_II.REXX) then do
	say "Starting VirusZ..."
	address command Prog_VirusZ
	UseQuitFlag = "yes"
	StartTime = time(seconds)
	do while ~show(ports,VIRUSZ_II.REXX)
		if time(seconds) - StartTime > 20 then do
			say "Error loading VirusZ!"
			exit
			end
		end
	end

address VIRUSZ_II.REXX CHECKDIR DirToCheck DECREXEC DECRDATA

if rc=0 then say "Directory is clean."
if rc=5 then say "Directory contains virus!"
if rc=10 then say "Error checking directory!"

if UseQuitFlag = "yes" then do
	if QuitFlag = "QUIT" then do
		say "Quitting VirusZ..."
		address VIRUSZ_II.REXX QUIT
		end
	end
                                                                                                                                               q                                                                                                        3  
MAShare_66                                 3        %          q                 yn                                                                                                                                                                                                                                                                                                                                                                                                          CheckFile.vzrx                                                           /*
   $VER: CheckFile.vzrx 1.01 (30.9.95)
          1995 by Georg Hrmann

   Template: CheckFile.vzrx FILE/A,QUIT/S

      FILE: Must be a valid filename (with path).
      QUIT: If VirusZ has been started from the script, you can
            quit after checking by specifying this option.

   If VirusZ is not running, it will be started from the
   script (and quitted afterwards if requested).
*/

Prog_VirusZ = "dh0:VZ" /* You may change this */

options results
options failat 99

UseQuitFlag = "no"

parse upper arg FileToCheck QuitFlag
if FileToCheck = "" then do
	say "No file specified."
	exit
	end

if ~show(ports,VIRUSZ_II.REXX) then do
	say "Starting VirusZ..."
	address command Prog_VirusZ
	UseQuitFlag = "yes"
	StartTime = time(seconds)
	do while ~show(ports,VIRUSZ_II.REXX)
		if time(seconds) - StartTime > 20 then do
			say "Error loading VirusZ!"
			exit
			end
		end
	end

address VIRUSZ_II.REXX CHECKFILE FileToCheck DECREXEC DECRDATA

if rc=0 then say "File is clean."
if rc=5 then say "File contains virus!"
if rc=10 then say "Error checking file!"

if UseQuitFlag = "yes" then do
	if QuitFlag = "QUIT" then do
		say "Quitting VirusZ..."
		address VIRUSZ_II.REXX QUIT
		end
	end
                                                                                                                                            q                                                                                                        3  
MAShare_66                                 3        %          q                    hC                                                                                                                                                                                                                                                                                                                                                                                                              3  ENVARC                                                               x                     E$                                                                                                                                                                                                                                                                                                                                                                                                               VirusZ_II.Archivers                                                      VZIIARCL  LhA               -lhaa      BOOT:Tools/LhA -mMIq x %f %P                                                                                                    LZX                LZX             BOOT:Tools/LZX -m x %f %P                                                                                                       ZOO                ZOO 2.00 ArchiveC:Execute SCRIPTS:VirusZ_II.ZOO_Script %p %F                                                                                                      R                                                                                                                                                                                                                                                                                                             5                                                                                                  Install Libs                                                         x    NewCLI CON:50/25/500/100/Install FROM Install.script
                                                                                                                                                                                                                                                                                                                                                                                 3  ENVARC                                                               x               
      jV                                                                                                                                                                                                                                                                                          /                                                                                                  Install Libs.info                                                    x            G    h                  g g                 (      G                                |   { H W 7w 7W 0  ' 0 TW 0 
<D 0 TW 0 * 0 X 0 
 0 4 `  ? ? ? ? ? >u^ > >u^<D > >u^ダ                                               0  7  @ w    w A  wB?  w5PA  w*  w5P @ w
  wP   w  s@  x        @ ~     | A  }   }=N A  }   }=N  @ }  =}N|                                                        |       {x H    W    vy    V8     &8   @
V8    P<    
S    5P       
    @                       '       y      &8  @   V8     &8  @   <     +(  @   | x                                                          |       {x H    W    vy    V8     &8   @
V8    P<    
S    5P       
    @                       '       y      &8  @   V8     &8  @   <     +(  @   | x                                                          |       {x H    W    vy    V8     &8   @
V8    P<    
S    5P       
    @                       '       y      &8  @   V8     &8  @   <     +(  @   | x                                                          |       {x H    W    vy    V8     &8   @
V8    P<    
S    5P       
    @                       '       y      &8  @   V8     &8  @   <     +(  @   | x                                                          |       {x H    W    vy    V8     &8   @
V8    P<    
S    5P       
    @                       '       y      &8  @   V8     &8  @   <     +(  @   | x                                                          |       {x H    W    vy    V8     &8   @
V8    P<    
S    5P       
    @                       '       y      &8  @   V8     &8  @   <     +(  @   | x                              G   x                                    ?    >     = $   ~  8 n      )   `    `    0    8                 w     b   Cb   b   "   b           ?                               @      A      B @ ` lB( ;a  G ;`@ o ;  W ;@  k ;`@ ~, ;` kH ;`(  ;` { ;`
  9` _l <  `v`| ?0]4 ?   O@ >`    >U`  a >`  T  >`  @a >`  V 4 ?`  @ @ `  @                                               ?      >       = $    ;  @ 8    8       8      <     =     H ><     ?g    " ?     ?   >       <     :       <     \   *  \     ;\   *   ?\     =   *   > <     ?                                            ?      >       = $    ;  @ 8    8       8      <     =     H ><     ?g    " ?     ?   >       <     :       <     \   *  \     ;\   *   ?\     =   *   > <     ?                                            ?      >       = $    ;  @ 8    8       8      <     =     H ><     ?g    " ?     ?   >       <     :       <     \   *  \     ;\   *   ?\     =   *   > <     ?                                            ?      >       = $    ;  @ 8    8       8      <     =     H ><     ?g    " ?     ?   >       <     :       <     \   *  \     ;\   *   ?\     =   *   > <     ?                                            ?      >       = $    ;  @ 8    8       8      <     =     H ><     ?g    " ?     ?   >       <     :       <     \   *  \     ;\   *   ?\     =   *   > <     ?                                            ?      >       = $    ;  @ 8    8       8      <     =     H ><     ?g    " ?     ?   >       <     :       <     \   *  \     ;\   *   ?\     =   *   > <     ?             C:IconX       % Icon by Martin Huttenloher                                                                                                                                                                                                                                                                                                                                                                                         VirusZ_II.Archivers                                                                    qk                                                                                                                                                                                                                                                                                                                                                                                                               Install.script                                                       x    FailAt 21

Version >NIL: exec.library 37
If WARN
   Echo "You need Kickstart 2.0 or higher."
   Skip END
EndIf

Echo "Installing libraries for VirusZ II...*n"

Copy libs ALL LIBS:

Echo "*nFinished!"

Lab END
Wait 4
EndCLI >NIL:
                                                                                                5                                                                                                  Install Libs                                                         x                     b                                                                                                                                                                                                                                                                                                                                                                                                           3  libs                                                                 x               H      ,{k                                                                                                                                                              d                                                                                                  reqtools.library                                                                         +5@     E    +5pNureqtools.library reqtools 38.1387 (12.5.96)
 J   2   x&	          x  	   
         &  k              t   L  8dos.library intuition.library graphics.library gadtools.library utility.library layers.library locale.library console.device imageclass ReqTools.prefs   p p0p0p0p
0NuH .*@I   ()N +H &0< @ ?A >BQ+|   d RA VNA rKa1| 
1| 2rAaaaaPaC Nh)@ +@ *$  @p$h eA ,Bp rNt ` ,HC?ȕpr NZt )@ (g p"@#|  T ,x CNh)@ +@ 6CNh)@ +@ 2H8,@A"A $&- R(<   NvL@CtNh)@ +@ . @CNh)@ +@ :CNh)@ CNh)@  AC ,pr ND , @)@ $ LtNu `This version of reqtools.library needs Kickstart 2.0 V37+  Rn > Nup Sn >NuH .*N,x Jm @fN5Jm >gp `t$- &"MNC   N>"m 2Nb"m 6Nb"m .Nb"m :Nb"y   Nb"y   Nb,m * y   N6"N,x Nb"Mp 0- m N. LtNup Nu        p  B  C  C  D  0  F4  T  >  ^      0    h  l  )D  j    :  0  d    d    /A V,x N,_A R Nu/A V,x N,_NuH8 v`H8 v BpE 
  `Password  H8 v(Hz
 NLNuH8  v`H8 $	v`/NuH0"x p&i eC    prtv ,n *N`C ,n *NL@Nu         H0"h $ 	g  ) prtLWf tg"Q`R x 	`   <   "<   /,x NT,_Jgd$@%@ t%|rtLW p,n * o C " " p 0( r 2( 
$ &N JNv"o  JN%@ | o ,o C " J" NN 
LENuH0 	g   ) xgS x`v,n *J g&p ) r ) ) HH) HH"i N`NL  J |gHNL  p 0) r 2) t 4) v 6) NL  ,x NNLCNuH< *HEBE(S&HCBCp @ef"`"BAHA "HABA҃ځR`L <Nu/"n *,x N|,I"n < 	gg"Q`N,x Nv,_NuH?<(H&I*J IYO"OYO$O/ N .,r 2+ HDjr t 4+ 
HDjt &("F$G  fp8p9@ `XJf
6+ 8+ `JSf g6- 8- 2m 4m 
`Sf 	z :, ր 
:, ؀`Sf g6- 8- TAn6Fl Am6l Bn8Gl Bm889D L<NuH,x &n.<    >d :e
" :dnpЇ"<   NTJgj(@)@  )L $L% A &% / @% C <p%!Q)J  LN$LNu(_.  L   ,x N$"LNN XL`LHz // NuLp /W XNu  Jgf/,l NR,_Nup NuH ,l tNQL@NuH "L  E ,l NLD NuHI    >(  ,l   g  /	 
g g h Hz 
/( Nup "_  f Jg $@ j 
Cp p"Q"rp rpGpa 5@  rp  g0( j @5@  0( 
j @5@ %J 
%|Oops  
` j*I"m /	p N rpz ( N, f .  @"WN ""WN"_2- 
0-  m  h $fA&rp $gT2+ 0+ v 6+ 
t 4+ (- H@H 
SgX0NLԀSցSNLpJfp@ L&rpj  j H@p * Ѐ0NLi >NL K:2pg0NLJ* g6H@RK:) $02p KNL0rpH@NLrpS@N
Jp g*L&OBJfYOHy 3/2pHy 4"O,l N.KJg
"F,l NLNuH=& d*O,l /	/"MN: _N& f .  @"MNp (gz DzRJfJgB* 5p5m :   D"MN/ p DJg<RfJg&P 5p@SE5p0- >T@5p"MpN5p"Mp KNʑJg"CN  dLdNu           H ",l H  h .NL p$@NLD NuJg g/Jg
,l N`,l N,_NuJg g/,l JgNd`N^,_Nu/r " g`"NuH?>OE &Ox*H* ,$g  jxDv.50 10 H@B@",l Nj'0 HG%0 Q.<    m "҇HA$* ԇHB&* ևHC,l p'n c N`2/(-  a \" (-   a P$ (- $ a D&  m  N( ђ + Ѫ  + Ѫ ڄfO L|NuH 2&o  o C `H 2r&&JfE ,`E `H 2E ,x NLL NuNu< |f`< 
fRRNu< |`< 
"gfB("`Nu/
p J fH B ) ,x NLB ȕ/	N>"_   g$_NuH 0 o $o C &h NL NuJfSfNu  H *n *,x R.' W ( Vg6$@$j "J )  g$@ W ,f/	N"_N` WB Vp MNjM WNvMNLe NuH02L  G $,l N`H02L E $,l NLLNu/,x "f"<  NT,_NuX/ N<"Jg @  ,_Nu 	g/,x "fNN,_Nu !N6,_Nu H?>H H*E X*ZI    /|   B B B B M B,/|    &o dB B p,/B P/C T$$p rM QA jrQp`"<  ,x NT$@Jg ./ T%G%E%o Px%o ` ,l NXr@ҁ @¨ 2%Al,l NRrVD HH, t_D HH/@ ԾfB d Uf
%|  ^H`%|   H(%M ngN - g%@H - g/@ d   g/@ 0- 5@ 0- 5@ %m M %^$%^,%^0%m $ r/o \ ` *-     c   k    Pl @0; N             &.>FJVbtz%E b`  %E` /E ` 5E ` 5E `  /E `  %E Z`   E p/@ `  %E$`  /E `  %E0`  %E,`  JWD HH%@4`  /E `  %E r`  /E `   Yf  /E d`  %E`  (`z/E p%@\`n/E p%@\`bpg UfV%EH`P/E `J&E| `D/E `>/E `8pg Uf,JWD HH%@L`pg Uf%E `
/E `%E(A ,l N*@Jf  o a ~%@ pgB\R%| F "* A  A @ A /D /A  Yg    *j b g - Vg,x *@N m gB0A C b// /* Z/H La PO%@ Zf Jp a ` /
C ,l E  @N$_*o /@ <"g M,l N%@ f f j Z*h (/M  j Z,l N%@tg j Z,l NN%@ jf Jp a x` &/M A @"M    Fp 0- %@X j Z"h (p 0) ( $H*o `HX( %HHX/@ 4/A @/B 8&YgNJg:v_/C  j C
a  &@pn  j C
a &@JgJf
Jgp|fp @ %@`p%M "o H/I  * g  A /H ,/"o &o 0 @p a K  &_%@P " ,x  ЁrNT%@ f Jp a j` 
"*P*j %M| *P" Ҁ/M /&M j "o a "Y&_f/@  M"j a z BTx `,*j /uH  A ,l *j|N+H To%@TRXPmpFЪT%@H"WD HH/@ 0f  A /H ,/"o p K&o 0a 
K (&_/D  倐ѕ r,x NT%@ f Jp a z` 	( *j /M /M /"o  K&Ma &_ M"j a z | *o &o `4  j /H ,H~  K"o 4"QGa >rLЁ*܀RXm/F *o d f(    m j Ca *@` j Ca *@%M  j Z( #HH(/ 4Є$/ <Ђ* R,*X\ .Yg ( &HH"偒$*X&փքցր(p؀J g4%E<r JLf" $*XR /A ,"*P l NvЯ ,%@8Ї؀ڀJ\g  تX؇X./     f j Ca // Hj a XO `:g j Ca  @` j Ca  @/// /Hj a O A /H A ,l N" P%A`rЁHo%@H   HlpZЀ%@H%ED%F@`B%E< *XR"*P l NvrЁ%@8"j Z) &HH$ԂԄԀԁ(VJ 0f؇؆./  "/ ҀHo%AH / "*Ho%@H / ܸo( A L/D ,,l N/jt /o  v&@ j Z( &HH <?D l?F p?|  zJ 0f  "*o $5"*H&*/B to(&/ 8/E $ / "/ @& o ,l "MN|`"jR o  /A /B x ~ ,/ S`|Ro zfp?@ z o  0x ?@ j 5x ?@ n j /px  r/o  vp 0/ z f*  fp@p * gA @/H v /  KC ja &@Jg%K 8Jf%K 0RX m ~%K 4`"*HjRB /A ,/ @JLfHJ<gB M j<"*<<"*H 8<"*8<BBHx /< 9Ho v/Hx a O &@ *H5@ (/ ,5D *o D M / ra @* ./ <Jf. / jR"/ D5A  *XjR"DҀ҇Z5A /
 "j Z$j b,l  MN$_"*X\?A p*/ T Yg " j Z( &HH&*Xևփ$p
?B lH%BdB rJ\gN *`"*HjR%Ah?A j?@ nUo pBHx /< 9Hj /< Ho ~/Hx a O  To p&@?F j"*H 8?A n"*D?A l?|   zrnr/A H/H `rl// ` K / LC na :XO*@`Hx  o T"p KC na XO*@%M ,g,"m "%I V*Q%M WfJ fBJ g j V"h B &j ,K /M JLf  j Z"h (M #p 0) H"MHҀRHHHH( $HH/@ 4 *H( &HHx HHx  J//  / Da O *@J\g,Rd J"M *XTr/// /*` *h"*da tO *@*/ 8 *<g6"RR$*HA JU&*8U"M/C 8v//// @/a 4O *@/M  *Dg,"T$*HA JYv///*@"M/a  O /@ J g  * gp@p j j" ҁ"h 01 @ p JLfp"*<Ҁ?A  *HTjR*o ( z | ~ `bA "M"""""* g j|(*Hx p#l(  M <2H҆< j +px  Jg+MR"ҪX,RX PmJ fJ gFBo pBo nBo lBo jB rp / Ho n// a ZO &@Jg   pk 'j  'o   gJLfJ f Jp a ` .*/ p J0f %@ A v"j jBB/) "H o Pa O %@ ff Jp a >`  J0g j b"@#h V V j f ,l Nj/
 j f"j Lp" ,l NJ$_/
 j L"j fN"$_ j f,l N *,r j ba %@p *$r j ba  l %h < ^ *4r j Za  j f%H H%o %o rj WD HH%@CM,"h Vp ) r ,p,J g <   `"Ja L| Nu  _Ok |_Cancel  d_Last|_Cancel  eRequest  fInformation   Max: %ld   Min: %ld, Max: %ld   Min: %ld fillrectclass  Too small!   Too big!    H+2&I,.  fp `   / ("  h j"h ҁt 41 "/ ,ҁx 81 Wf < @p /
BHx  J/< Hl  / Hx /< //< //< // T/< // X/< //< //< C:,l $ONO L _'@ LLNu H7>/@ 0I    /H 4p*Ig
Jm Tfp@p /H @/@ <`&.+     c  <f +@ ( Ma ` A @,l N&@Jf` BM ,02z ?@ *?A (   f  J 4g  A Ht 4 v 6/H , ""HA ;a * f  Jm Tf  0/ (  	f  @ @~ > / ;r˰f&m 8rf&m 4- gJg0HHrBgrgYgYgWg`Jg&m 0`Jg&m 4Jlg:0< o (f00/ *rPAe&rYAb r 2 pP l&m 0`S&SJg f g K"o ,p 0/ *a z J&j a  Yf m f,l N m fpN` p@gJg Jfz :+ &p l&pg"-tgSfS M+E (p a `  -rg ro p f4po *fB <`  m JfJ(g m 0` m 4"m fa a pf> m JVDHH.+G (J(gr+A (.op lS+E (  Ma ` r m Jg^ m V.( ˾l m Ca P&@`o m Ca :&@ g p f m 0"m fa  m f"Ka `   mx  m JVD HH+@ (pop lS+E ( Mp a  `  p fpo *fB <`   m Jg| mxHm /-/-NO &@Jg>pPg m Z,l N0|/
$H m f"K,l N$_Hz m f"m ,a XO`" - ( Ma  d`V"-́g+A (p  Ma  N`@/- n m f"m ra 	XO$@Jf J <g/
 m ,"m f,l N2$_B  <   L| NuH6*H,- (Jg   n m "m f -4r  m ^a 
J fg, -,r  m b"mpa  -$r  m ba  -0 m fa 
. m a   m La ,&m ` K,l $k N~&J f"m ,x NN"m NN - jg"@ m Z,l NH mt,l N|Jg"m Z,l N - g
"@,l N"M,x NN Ll@NuN  @N  N  zpa H6*I&m . B p / /// /H $a pO $@JgVpj       /J /m  $/K  /m  /G (/
BHo  /<  l ,l $ONO $_%@ %@ +K  
Ll NuYOph .J@g&"h  	gpi fOops f i 
f 	@p XONuQOH/H I    /I pf   j >( <( 2* *p@gp@gp	@f0 frj f"rê  j   	 	fr
 5|   R*h ("gl-  g:*   !g2 j "j ,l N^JgJ 4fp+@ 4A "H m ,x N-   g"pL@gpM@f * @ @ 
%@ 5|  p@p LpPONuYOBHl /< 7// /< //< // /< 0/	/Hx /H 0a O 0 @JgB ( XONuYOBHl /< 7// /< -/ /< ./	/Hx /H (a XO ( @JgB ( XONu 	gB// /< -B//	a O Nu"  	gB//< /B//	a O NuH ,x *HN|&M` Ka Jg
 @,l N~&S f M,l N,x NvLh NuH "h  ,l pNPLD NuH&I"S. *Haa 'M 7G L(NuH. &H`* Ka vJg @( gH,l H NR f `&S fp LHNu H6*H,. B@&IJg  B |   ?@  "A"M?A "/
A ,l rNH _H,l NR 	f   g60< k r 2 fz k (   f"Sa p 7@  k r 2( & `X @r`fJk gB k "Sa p 7@ `0Jk f*r    k a  @Jg(   fr 2 "Ka Bp Ll Nu H#&*H,.  fp `fB /o 0  /i  $/i  p_/@ (p 0/ 62H4HB//< //< / /< Ho 4/<  l ,l $ONO $+@ Ld NuH *h ` M,l *h N~ fL` Nu H G I    &  *HA ,&B/I ,x N|"l  i <f m 0C ,l N<J@f
 o G ` A ,,l N @pC $,l N&G $,x Nv0H2+ H o R 0+ H4+ HR $2- Hl2- H 0- Hl0- H$  \r   Lx Nusysiclass YOH 6&o $Q/I J *Hf  f 
f,x Nr @( f$h ;|  . f< 
g Jg&j .`* o ,l N&@JfN&@Jfp `;|  . o  +K  - Ll XONuH,l *HN m $"h " | )   gU g|po,  L`@NuH*H - &Igb Ma. r  l ,h ' e" ЀІT,x "<  NT&g @0` Ѐ"<  ,x NT& S g"@ Ma   @p LhNuH&$I*Ha Br  l .h ' eC  m "p ,l N|`| ` m  ,l N4RmLdNuH *H l h ' &Ie M"K,l N` Ma r  M "K,l N@Lh NuH &IJ@g g"Ka"K,x NNLH Nu/K:: / : / :*1o  *_NuH6,l . &I*HNX|  @̨ 2NR M,l N$@JgJfJf<*  g4 
g"JN g$K`$n * 
 MG E 4,l N$@ 
g o p 0*  p 0*  o    
LlNuH &I*H`//  M/a  "POJf m V,x N"@Jfp Lh NuH 2&I"H k ,$o f"K,l NJf&` 
g/
,l  J$o "KN _"K,x Np LL Nu/"H,l N"@,x N,_NuYOH./@ *Hf.,l NX| @̨ 2NRJfJg M,l N` MNvL`XONu/Jg
,l Nj`,l N,_Nu dH0>&IC I    pcQB  h p 0( C ,l NA pa  *K 0H2H4H6+ 
HC NL| dNu/"H l h ' e I,l N(`@ ,_Nu H"Mj$o 8| #N #o 0 M ,  ,,  },B 
g ,l n ' e
p5@ 4`45h  `p/@  C ,l N$@Jg> j 2"o 0r 0Fc< RpTo~`އ G p 0e a < o 4 g  
LD NuH,.   *Hf:,l NX @G 6.+ pnBUBm `0+ :0+ 
;@ ,l NR LhNu dH &*H 	g6E `gr_fJg
Rf@BA +H ,l  MNLd  dNuYO//H "H l h ' e  i 0( rAcr 2 p.އrށ@~ .XONuYO//H "H l h ' e i 0( rAc~ > @~ .XONuYOH 6p
/@ ,l *HNN&@Jg^/
BHx /< B/< //< C$ONO  _$@Jg  JC  < NrJfp
/@  JN~ M"KNH / Ll XONu 0H7>H  4I    B LB DB @~ | /H , <  L"<  ,x $INT&@Jg B *'@"fhA"HAD,x pr NDJ g"KNNp ` A 4'H 'J %o 4K\ MJfS  Ma '@ZA$"v|փ,l N:`^UfHC,x Nh'@f Ka vp ` 'J  k  4'H pA \'@ <'@/H 4`/J PM , ^ <,'j vMK&*p 0*p 0*M /^ H*'^:* $p 0* 2'@ k "P'IVD HH'@J'J p'@N <'@
'@'@/o , T` *-     c   k    al @0; N         
"4<DLv|'E`  'E&` 'E*` 'E.` /E @`  'E~`   E ~`  /E H`  'E2`  'E^`  'E6`  'E:`  JWD HH'@Z`  /E L`  'E`  /E D`   +"f  `Uf  `
   E 'Ev`p'E`j'Ez`d    'E`X'E`R'Ef`L'E`F'E`@'E`:'E$Jf2p'@ `*'E |`"'E`'E`'E`'E
`
'E`'EA T,l N*@Jf  o Da w'@Jzf @Ca w'@zp_'@^Jg"k a  +v @ @'@vJ"f$+ yg +v k a V k 'h v'h  z*k g - Vg,x *@N m gB6A$C// @/+~a PO'@~f Ka p `  @ ,'H+ yg"Ca '@f Ka p ` r 'A*o L g
Av  ` k~"h (Av  p"f *o Pp f@ k,l N'@ k~p ( 7@0( 7@0( 7@0<@ h r 2 'A`M  '@7m 47^7^'m 8p 0- 6'@ +C < Ka #nJfp'@`t Ka %kf +7@kf +7@kf7k^+ xfp'@'@`,p 0+WDHH'Ap 0+WDHH'A k~,l N'@jg k~,l NN'@f Ka 
Np `  @'h r'o 8^ l h ' TD HH'@f*k  fB B B *U`
B- B- *U fAKvE/H (// ( M/
"o Ppa PO'@f Ka 	p `  @r 2( 'Ap  Ka E|Jf,k zcA *"M"""k,l N` Ka 	p `  p"f Ka &
 Kp ra Dړ +:r ka '@n +2r ka ӐA~'H'K l 'h < +Zr k~a // 4 k"ka A&& k"h Vp ) r 'A'A XOJg kp ( t  p'@ Jg <   `"Ka ԸL| 0Nutopaz.font  timer.device  diskfont.library    _Ok    / H I    "l "i B,x NN l *h N`"M,x &UNN*K f l B B l B NLx Nu0) "H"(V l NjNu"H )B   q r(  )B I` H6*H~ | JjgpG"K,x N `@ -,x NN m"h V$i `f"J,x N|`$R~Jf,x NJgJg,x N"@ -NBjLlNuH. *Ha p;| 	B+GA"H,x N2p+@jL`NuH*HJ~gnJRf ,l NX @(  5gp+@,l NRJg m  (  Ma B`. -brg
l. +Ab`
  MRa ξ
m Ma JRg M < @a B`
 Ma B~L`NuH 6&I*H k ,f"K,l NJf2`$Jg Ma  , m$m "K,l N Ma  f"K,x Np Ll Nu/*H m Jf@ m +h C \!I - yf&"m "iAf"m"i " m  h"Qf*_Nu"H i Jf" i !i ) yf i  hCfNuQOH >/J I    &h /H *I m ,fp f0 Kpr a A`$Jg Ka < k$k "M,l N Ka vL| PONuYOH4*H m "  g  | Jg0Hx Bpa PO$@Jg m "P&Q"R`+  fR&Sf m !F  ( 
o m !@  m  ( jr !A  (  g m !h   Ma 
 Ma L Ma ( m  ( m, S L,@XONuH*H&M,. z `D m  l@g2Jg kp ( vg k(   gSn     Ma ZRX
mL(Nu xH76*H m . ,/I , l  +@B  &u +  g   B>p `  k 
E|/H $-  yg
p̀g| @|z +  -vf+   gJg6$H`2zf :J ,fM 0fA 0C*a E 0`
- xg 6/
 m"ma - xXOf r Ma  Mpa Jg r  Ma  Mp a $o , 
gbFf\ -N"-R$* $&* (,l NJ@g@zf& m  \"$/ $v@,l N Ma p `  p
vf   p`  -  yg+   gSn`Rn Ma k   +   g m J g
 ( Ї+@^  Ma 
B> 
g>+j $N+j (R+GF`,J ,f  W$o $f p f@Rp g`  Ma Bp Ll xNuH4*H.-v,-J*-f -b&I4| g @"KfJ"f^  f2 Ma  gJWD HH`  JfJfJgp`  p `  Jf- xf Mpa & Ma $@`  `  p"f$ m p(  m  -( JVD HH$@`T -rf`F m !@ - gpmVr  ;A m 1m 41m 1m  -1@ 6!m 8 Ma  
L,NuH *Ha 6J"fA"H,x N>-  x m"mWD HHa pmRf"m~,l N -Zr  ma TJgX m  -:r  m"mna ( -2r  ma  -g
 @,lN m,x N`"lNb -6 ma < mXa BAba  mj,l N| -g"@ m~,l NH -g
"@,l N"m,x Nb"MNNL` NuJfJVgJg( yga  
Nua Nu/*H"m a x Ma 0 M*_`  H6~ B  C  ,h&V/H /I $*o  f,$mbJf  Jg   o  ,l NB  A  |/H $`6+   g  p + vW$k 
DH JH"mb,l ,N^Jf~ JJfS,x * rЁ"<  NT*@Jf o  ,l Np `6pJg +@ A  X+@ "@f o $ /P $ g&S` 0 /  Ll NuNqH,l . *HNX @,( 2 r+@ $ g  B $  gp+@ B  `
B p+@  ,l NRL`Nu )g
UgSg`A 4 NuA 4 NuA < Nup NuYOH $ /H I    A 4 0 "<  ,x NT @Jfp `   G  g
Ug(SgF`VA \'H A\'H p'@A 4p a `4A C *  A \C fA \'H `p'@ 7|  6p'@ 8&  "Ka **@Jg& l h ' e <  r@t@,x NH+@  LxXONuYOH I    /I a *@Jg&U`
 m &Sa p"K 	fBL8 XONuH *I I    g."Ma"Ma  @Jg ( g
 @,x NB Y,x "@NNLp NuH!>/I (C / 	I    /H4/@  /H $` .-     c   2&o (k    %l @0; N  H \ j j"*06r"Ka A \"Gf` NA\"Gf` @ 4/K Jfp` B  4fF*o  "$,l N - xo +  ` + Hm  J"- |A"Ka JVDHHXO `  BBp*G"M"  Ka  @$PPO&@ 
g M"j 
,l N^Jgp `  & o  h "Ja Ȭ`  A \"Gf`  7G `  G `xG `r$GA ,,l NM ,0* <0* <p * 7@ 40<@ j r 2 'A 8`6G'G ><7G 47G 7G `7G `7G `7G 4`
7G 6`'G 8A4,l N*@Jf L|NuH *HI    `"M,x *QNN fLp Nu"H i B/( /< /( /< B/)/)a DO  NuDrawer   %lD   %ld  Assign  %ld%% full  W %s %s - %4ld  0123 aAbBcCdDeEfFgGhHiIjJkKlLmMnNoOpPqQrRsStTuUvVwWxXyYzZ Couldn't open font! %ld x %ld Y-HAM  Z-EHB  X-Interlaced %ld %ldK  %ldM  H0*H mr"m,l p 0( N -~ ma A " SЭ&  $"mN -z mL`` /*H m !@ J f& m !h   Ma   Ma  Ma  m p!@ *_NuH *HJJf$ m&P`p+  M"Ka xJg+ &S fL( NuH *HJJfT Ma&m  Mp a .'@ 
" j m B B ` m  ( o!A !A  Ma  Ma  $ ML( ` L( NuAp 2< QNuYOH0"H&i ~ /H J gB i$P 
g8,+ `*  fR$Rm I~ `*  fR!JX$R 
g
m")
  I`R!IXmLXONu H?6*H&m$ B  -~ Ka *p/@ "  $u  
g  j 
C <f|p/@ B/ /j  v * zf mCa b @C f|`  pgvf6AJ gA/C G a  U&_f\A <C a ÔB/ `J Yf mCa bf @C f|`* Wf$ / k mCa b@/C G  @a ¦&_ Wf"J* 	g* 	H j 
HC /@ /I `A <"HJfS/I A "HJfS/I * gx  `&J/ gAJC a ( @x    l @ *   g2p/@  -zgYf
|p/@ @|/o  `pbf+Bb "-V l Nv.-ހp"m,l N"/ ҁ mrp 00 "KN&-VևS -"$-"KN 
g 8܆ mrp 00h "KN"/ ҁ mrp 00 "KN,ܭR$-T"K "N / g* @"JfS"K/H ( @ / (Nԭ ""KNJ* f6 -H 0"K[$  / &-VrA DE NHL * @ `z * "KA < ,l NJg -"KS"N"KA  / N*  gJ mrp 0( "-t 4r 2&- KR/A 0r 2&-V/A 4r 2/// 8// 8"a 0O  -z ma Ll NuH*Hp+@b~ `
  Ma R
mL Nu/*H m B B B B  h pa D+@ m  *_Nu/*H@Rp f@Rp g *_Nu H6./@  | /P ,p*I"o ,$QnJ $g* ` /J ,*  fR$R 
g
p * m*p/@ (`  Jkp * n  (/ 8p* &j 
f" f MJfS"K,l   MNX( `"* f g Ka :&@ M"K,l N^( Jk(Jf
 /   m/D (/J ,*  fR$R 
f r o 4 "o ,g  	g/   ;gJ (fS  	`Bp @ 	Ll Nu H&6&o ,,$ *H KJfS*R/I   Wf Ka &@pf"`"</ Ho ( " o ("Ka PO @$h 
/@ "
&@g$ o ,"J,l N^Jfpn
'B  `  z  r o   h Ёa \&@Jfp `  JgE "J o ,f'J 
'B F  o & $o  R B "gb M"Ka  + UgRpn"-^$/ $lR^$* R n0
l"  + J~f  Ma `J~f Ma  Lld Nu/" pm[C #,l N^Jfp@p ,_NuH!6&I$k 
*H JJfS.J"f  p + vf  JZfH  JaJg> m Jgp`  J-g(B2xA"$
,l N4 .xJ@Wr    `d- ygp`XJ-gPA"$
,l N4J@f<p`:p"f0"+ m(n"- yg+  f- yf+  fp LlNuH"H i&P" | `.+  fRJgp + vg+   g
Sn   &S fp#@^ L@Nu H0/I *HA "	$v|,l N: m&P`Pp
+ fFp + vgr  zf0- xg(A "$+ 
,l N4J@g+   fRn   &S f Ma  Ma :B m"ma XXOLh NuH *HBa * -g
" ,l NBL` NuYOH 6*I"h$Q/H `< g4p* f,&j 
@Rp f@Rp g K"M,l N^Jfp`$R 
fp Ll XONu H56*HA ,.  @zJ&@$Ig*Jg$B /o  /
 mC ,l $m N$_* Jg   TfN~ * gF"/A  " &/  t,l NJg*"+ jR$+   l ̐ЂЁ"+ Nj. GJ 
"J Ka  KC($ a Ԁo+B&o /
/HzHo \a Ho ` M"h  ra :O "@Jg KJfS @ 	Ll Nu H36. B |&H"kp"B/H (,l rNr$@`   * (g" @K G .| @ SFJ@f :B+ p &o (flA | "A$* g/A  "&/  t,l NJg|JFgb f\ k  h p4a b*@JgHA 
C .f+j  Bm * |/M |`( * rgYf  fHo . K"h pra XO"
t,l NN$@Jf $,l rNr*@`h$M`\Jj fT j  fJB/ X - (g" @K G Xr @ SAJ@f :B+ &o (Ho X K"p"Ja zXO5|  $R*o  
f"t,l NN*o |/@ f,l rNlrNl`DJm f$ gA 
CfHo X"p K"Ma XO M"k *P/I $"H o $ h a N fJgdJg^ k *P`P*U gPp- fBp/@ /m 
 /
 kC ,l $k N$_Jf$ k  h "Ma *J k S $M 
f k Ll NuH,. &I*Ha v m Hx  Hh ""Ka d m !h  POL(NuH &*Ha 0|$H m"m^,l N"m a  Ma p+@N+JBJ g -v m a R m +h v+h  zLd Nu/*HJVfJ Ma P"m a  Ma BRp+@V - Ma  Ma 0 Ma ^ Ma : m p!@ p+@^*_NuQOH1*HJg  An"HA^G a L mrp 0( "m,l N mrp 0( "mN"mpN m0( H. V0( HЭr mPr 2( $ԁ""mN K"mpN"mpN mrp 0( "mN m0( $"mH2) H4) HԁW&-ևS""HNLhPONuYOH. /I J*H&Ig M,l p N m |"K,l NR&@Jg
 M,l N LhXONu H/6,*HAB&m. *-(-/H 8Jg m,l Nd/@ ,- xg
 m    m  ,KN&@Jf mC&&ma T^z /@ 8C ?@ 0 ?@ 4 ?@ 2ЭS?@ 6,l N/@ $g  @C 0N  m"o $a /@ ("m KN"m rN mrp 0( "mN mrp 0( "mN+  g k <$h x 8( - yg 
g m"J N@` m"ma &Jf mr"mp 0( Np 0+ r 2+ $-jR"-҂Ҁ -"mN$o 8 JJfS"m  JN  m"o (a  o $N"m mN"mp rN"K,l NJg m"o ,,l N^Ll NuH,.  ,l *IN* @ ""MNL`Nu hH/&*HMN. |/H  $pX"<  $I"Nar cA"Hp8"<   ar bp ` b0-hH2-lH*R(--  wg fp ` 8 @ B@H@S$A"H$p8"< 0 a Hr b  E&C (p`"<   a ,r c*J 8g$ o 8*h 
`H,l HNR .n :*o  0-jH2-nHR//Hz/
a  O g mCa Q"@ Ja |  g mCva Q"@ Ja |   g mCba Qn"@ Ja | - "-$ȭ gp `:p 0-^lp `*-  wgJg  mp`p `- xf @pLd hNu 	gB// /< B/(/	a tO Nu/*HJg -;@Jg -;@p 0-"-o;Ap 0-"-l;A m"mp 0-a p 0-"-
o;Ap 0-"-l;A m"mp 0-*_` H&I*H k ". *( o*  m"Ka ʲl*  m"Ka ʠ L(Nu/"Hpg@")A H 0 $  I0(hH2(lHR#A0(jH2(nHR#A`BB$NuYOH .r "H, gr@ҁfr@`"<   , g|@  'n/Hz/	a O `@ r@ l Nj  n/ Hz^/	a O `r@Nj/ HzJ/	a O L XONu/*HAFa `BHmF/< B/-/-a O *_NuH0*Hp 0-"-ap 0-$-&-WDHHB//< / /< (//< '//< &B/-/-a ,O 0L NuH*Hv 6-^ -rg  r 2-n- xf ;@Jg  +Cp+@"-o+A"- -l+A- gr+A -rfRp 0-"-o;Ap 0-"-l;A Ma A@ -"-a &BHm@/< B/-/-a TO  Ma L NuH:,$ *H"Mp 0,l Np 0"MN"Mp NA D+H |  p 0r 2/ t 4/ "v 6ւSt 4/ &x 8؂S$&,l "MNB B- L`\Nu H?>/@ 8&I,kI    /I @/N ,Jk`W$HD HH/@  +"f/k  "o /iA \/HUf/k   o  \/H*k  M/J /H 4`4.*     c&  <fSf K"oa ,` * Ka Lp ` A ,l N$@JfJgf`Rpj fJ    m2 j ""$/v@,l Nn j "/(  k"ka Ơ Ka XO"J,x N`  k,x N$@JfJNg BVJJf Ka  Ka T Ka ` Ka p'@^Bn Ka p'@FBRJJf ~J"f 
$oJf p'@ Ka v"
t,l N'@g"A  " $,l N + n   Ka `  + yg   JJfSp:"2g|,l N|rmҁgl kCa KB kC,$@a K4AfH 8"J$@HzHx Hk/<  /+/<  ,l (H ONO L Jg"+f,l N'@Jf8B Ka  kCa J"@ ka "k a  Ka p'@J` R*o MJfS$M. p/*fro*t:g gB5x/ k"ka ĺp'@RBJA  $"+,l N K <  a הpXO'@~'@`  + Ka JgJ K"J <ra $J@f K"J <ra  k  ( 
R!@ l k B  k !h   Ka p'@V` np"f z k,l Nd=|  @$n B/J /@ 0,l rNrA" $vNT*@ 
gf fB `P l  ( F gB `< ( J gB `,&h N$m ` +  gB `&S$R 
f g/H $o  
fa d 
f  ~}&o , r ,x NT$@Jg J r,KNJg"J,x ހNN`/J  l !J B gJ l  - !@ F!m  Jp f0&m *l  N`prHA,x NT$@*g%k  *J&S f,l rNl$o  
f,l N`   
T*@~ `  pUf
-   	g  &o @ +$o g A /H ,/
"o 0,l  @N$_Jf$`f+ xgHm Hx /
/* a O JfD$m  JJfS,[ KB2h p 0- /
"o 8ra XO&@Jg& .h m 	 m  R 
 o p 0m J$o JJfS.[B2x "o @ i p 0( r I"Ja  .x  l Bh @&o @ Ka & k"o 0,l N^` ~`Z +g/
,l $k  @"GN$_Jg< 
f6 @ Jg,  KC a DJgJkfHk& r K"Ma XOJg ,l N$. Rf + KC a A&"H K +ra J@f F k"P 	g('i  K/) 
"ha  + KCa XO` p'@B K"ha \XOJg8BkBBBB Ka DBHzZ/< B/+/+a O + xglBHx /< B/+/+a BHx /< B/+/+
a nBHx /< B/+/+a TBHx /< B/+/+a :O T+ wgBHx /< B/+/+a O + wgBHx /< B/+/+a O  Ka D Ka  Ka (BNBJJRg  E  "+$
,l N'@Rg  *o Jg( Ka Ӡ/
 k,l $M"BN$_ K. a Jf.`Z+ xg$ Ka p/B//- a  K. a ӬO Jf. + o +z` +vHk ( K"+ A"o 8a hXOJfBRJRf Ka  Ka BK`nfBj Ka `^J fJJ $fDB (p^g Kr a t Kp a f Ka Np'@^ kbJg"JVf"H K +va Ӑ` K"Ja H/@f k h V,x N$@Jf |$o 
g  JC p3Q Ja 
~ >/ | </  / U$o *ogtUgVYg Qg ^rg <r g F  g@   g z  | g
   f $JVg BV Ka `  Kpr a `   Ka p ` JgA"kbf k"kX,l pND kXa BXAba Br k0( 
H'@p Ka Jf: k0( H'@0( H'@p Ka pJf,l N Ka np ` @Hk k"ka XOJJgJVg<$k .* 
jp %@ %@ ` * o%G %G  Ka ܈ Ka ޶ Ka p "  Ka `  +>g UfnpBg  KC a "+Bf0/ Hm0/ Hnp @p$"   s (  WDHJ WDHf  Ka Δ` pj &f  Ka .` npj &f d "+ Ka ` TB>pif HJ"f @Jf 8JVf
 Ka 8` ( kff Ka `  Ka z :* & '@>Uf0p'@BC  Ka " KC a Jg  K"oa Ӯ` Sf   Ka ~` J"f + yf pLgrMf 'kJbf  k Jg *+^"Rf  "tg4f k 'h ^` B$k "* &+
m&"* ҃S'A^`   gfB^`  k  ( S'@^`  JVgr0́V~`r0́g +z` +v.  K"hb a ϰ'@^`  ľfT rg2 k  +^ g
$( 'B^`

R'@^ +^j  B^`   gp '@^`v +^gpS^`j rg@ k  +
"( ҀS$+^g'A^`ԀS'B^ k  +^ m. ( S'@^`" k .( S g'G^` +^lR^ +^g  k  . ,( Jj܇l|  +
m܇R"( o,  Ka ژ k  (  g Ka :p'@b` 
AT"HA  "a `* f z+HHr / ʲfz` <+HHt fz ` &+HHt fz` +HHt fz`  +HHt f$k`  +<HHt f$k`  +=HHt f$k`  +>HHt fZ +g  "tgS`R   op '@ +j'B.+B//< B/+/+a ~O z`  +?HHt f6Jg0 rgp 0+oSk`p 0+lRk Ka  
g'Jpg 	@  $sX  
g 	.*  WD HHB/ /< B/+/
a O `pj Y@f SfB ` 
z :* &B> U$o k    l @0; N  .P@jr x KC a ~. Bf ~"  *s  M$h 
"J/H 0/I ,Ff  +N"+R$/ &/ ,l NJ@gr@r ,z - zf&+ xf "/$
v@,l N Ka `  Ug  SgSgrg @`  Ka Wfb&J@Rp f$K@Rp g*o @Jfp:g// 0 M"Ja <XOJ@g*o$o , J"Mf B5 `*o"M Jf`*o"M Jf&o @Jf
 Ka `  / k"ka XOJg   K"oa ` 	 Ka @"of$o JC a /
 k"ka XOJg K"Ja ` M  o C  2^ r + -  k"ka  Kp ra P'GF'o N'o R`J Ka Ƕ/
 K"ha  - '@C Ka (XOJf k~,l N` * Ka  Ka &`  o 0  ` V k"h " )  o 1@ p r Ka 'k` . k(  g `> `6 k(  g  `"  ` k(  g `  Kp ra b`  Ka ǲJJf JVf  KC*a v`  Ka ǎJJf JVf  kCa 9AH 0Hzb$@"HHx Hk/<  /+/<  ,l p{ ONO L Jg DA"H Ka  ` 4 Ka JJf &JVf  Kp a ݌ Ka t Ka ْHz k"ka XO`  Ka \ J"k,l N^Jg( k"JfA$"
v|փ,l N: k'H` 'k`  Ka ƊJWD HH%@ Ka Ը Ka ` 'k+ ygnJfJJfb M"kf,l N^JfPr́f L kf"MfJgJfp@p . f k` k"ka Ta RJf   K"oa ` JJfJVf M"kf,l N^Jg  kff Ka ` p	g  rg
'k` r0́g+ yg
'k` J"f `$kb~ p/f"A C DfHo D k"ka $XO` Jg   kp "+ft,l N, g"N* "
N. "N k Jg
",l NJgFA  $",l N"N + o*Jg kf"Mf"$
v@N` J"MfB/ D`p"
,l Ng   JJfS,~ `p:2x f
 J"Mf`Rm辆m"$
v@,l N",l N @B"+b,l N @C Df Ka 
Ho D k"ka . k"ka XO` :JJf" kbJfJff+  yg +no k` k"ka >a < K"oa `  Ka p `  Ka L",l N @JgB/ k"ka v Ka hXO` "+ft,l N'@g*" ,l N.. g"$v@Nn"N Ka (` xJVf pJVf
 Ka p` ` kff Ka ` N "+ Ka n7G` :p 0+`"+ot 4 @$.p 0+d"+lt 4 @$ K"h" a 7@r 2 WD HH'@B/ /< B/+/+
a O 'k`  p 0+b"+ot 4 @$.p 0+f"+
lt 4 @$ K"h" a 7@r 2 WD HH'@B/ /< B/+/+a 2O 'k`FJWD HH'@`.JWD HH'@`JWD HH'@`'G Ka F Ka tp>g H k "(  g 8B (+
*(  j"D@"l  Jj"D@"toJjRpo* pl*  kr"k,l p 0( N +~ ka  +.+ހS "+V l NvJfg(H " $+&+(+*p "k,l NL 0`:H " $+&+(+*p "kNtL 0 k"P)  g
 Kpr a  +z ka XJo
 /@ `(D k ۨ  Ka t./ `
  Ka Rmp'@ `JRf
JNfp @p'@ Jbg* k  (  f +^rg r  Ka LBbJgJNg .J g,/
 k"k,l N2 k(  T$_f
 < A~Nj <   L| Nu                              _          yDrawer '%s' does
not exist. Create it?    _Ok |_Cancel Directory error!  FONTS 0 #?  Match...    YOH ." /@  $Hd( l H@B@"Nd  B@H@r `ReLXONu[Regular Size  \Text Size ]Graphics Size ^Maximum Size   _Cancel Selected: 0000  _All  _Match..  C_lear  _Volumes  _Parent _Bold _Italic _Underline  _O_verscan:  `_Width: a_Height:  bDefault 000000  Pa_ttern: ._info  _Get  cCo_lors:  dMax:  0000  e_AutoScroll:  workbench.library YO" .0Hr  XONu H0*HJg^"m,l pNJWr  mr "mҁp 00 NA " T$&RИWԭU/@  "&$/ "mNL` NuH,. *Hg m,l N Ma lJg Ma ٤p"f
 " Ma ھJg Ma Ϭ m,l pNL`NuTH?6( r/A4B *HAj/H lJWDHH/A /
 m~CH,l EDN$_. /@ `- yg- yfr@r t@ĭv,-/A /B X/F J"fJfp@p /@ <"-"tWD HH/@ TpWDHH*-\/E D -R+@V/B  -"g
UgSg` Jgp/@`B`p/@`p/@ m~( $HHZ( %HHZ$ ԁ/@ 4/A x,l NX&/ @C 6/B tJf "/@ l NvrdNj+@`Jf /@"-o+@,l NR m~"h (p 0) ( #HHҀ҇R/mj`Av/HV+HR/A /H |AJa J/@ @AJa ~, /@ H"-o,/F \J <g8(؇XJ g jR؅؀- yg-  yf  `  J Tg* jR$Ԃԇ(؄؂؀حPJ Xgn؆؇X`fJ g jR(؇؄؀X`L Ѐ(؅؀P- xg؇$jR&փ؃؂- xg؁V؇- wg؅؇- wg؆؇&/  - m~( a " l  "-VNj+@
CX"/Mb/I  / 4$ TTCJ/A " X/I  jR/N pM$/@ L/A /B P/C G &&&&&/N h o ,l N/o ph/@ ,,l NX @(  5W DHE 6H./ J4gJfp`p 0* "-
l+@
B4Jfp2`p 0* "-
o+@
,l NR mCfa +&o l'@ B./ <fJ Tg DMBBBBJg  Jg4 -Y+@rl+A"-_ҁ tЂ+@+o 4pҀ/A  mCa +>&AJCa p/@ mCa + '@  mCa +'@  mCa + '@  mCza *'@  mCa *'@ |`B mCa *& mCa *'@  mCa *'@  / @QM,,,z|B<x ~ EJ`, J"sx a  O"0x Ҁp OҀ!x ӯ<RXm`z|B</E d"Uf'k  B8x $K&o ` K"j a drЁ8o/@8RXmEx ./8`$Rm /8" l Nv/@8J <g-  yfB<J g 0 mCa )EJ J/@ "@a /@( mCa )/@ "@ Ja ( /@ /@0 mCa )/@ "@ Ja /@ o/@0 mCa )\zE~ x /@ - w&@gd(/(0o/D0x `6C X"qH  ma )$"  ( J+    ("u a Fo. XA XJH f(د(د xد 4r.؁./ t- xgl JC a rЁ/@, J"Ka "/0Ҁү,ү @҇pҀo:(`6./ tS"*/<ځڇ / Tgrځ  ,lzK$S(/8؂؇o* /Do* /E 8J TfJ <g>-  yg6 (/ d"AC<a \$ x /<"/ 4&A C,l N|A "C8a *./ 8 x/G 0A C /8"/ 4$&,l N| Uf/o  /o$,/ <gR-  ygJ /8<o@M G Г"/ үP,&Ҁ ЛPM,G &Ҁ ГP,&+o P / +@ -
"-V l Nv+@r+BB\Hx  r/-/  / "/ AV"o a p .HoV// </ a O $@Jg   pj pj YoJ JPoNUoLXoPBoZCJp a $@Jgpj  r$-X(/ Hx //"AV"o a  -R m Br//< //< /( /< /( /< Hx /</ /< ;/-
/< Ho/
Hx 	a O P+@حX&@د L/@xJfJ g p+@p+@
,x N+@J g   mCDa %$@ @p_a @AJ"Ja P"/ 4ҀT$/ 8 tHx U// H/ "AVa  m \.CVp< Ka O +@/@x&@g k "+PA'H ( / PH"VHx H/
 opCRa PO2/PH؁د L/@h`B mCa %*EJ J/@ ,"@a Z, PJ <gR mCva %"@ J&@a :Po, . / 0Hx // H"K/"AVa  oCVp_a O &@@~  / "/ 4Ҁ$*/ DHx // "AVa  m  \.p F CV Ka O +@$@g, SjRЄ+@ j "+Pf- yfA%H (*/ L0/PH"Ҁ҅(- yf  ML<2/JH$/  J?AJ2H҂<?| ZBCNpka 
XO+@+@$@gA
%H ( / 0 J?@J?FN/o ,R?| ZCJp_a $@Jg    m Jf  0/PHЄЯ `* `B+mڄ/Jx -g B/-/-"-AVa NBHx /< 9Ho^/
Hx a O  /@x` ,/ `J T$@g  Hx  rA// H"K/  / @"AVa .CVpk Ja +@+@"t9?AV?| 9Z?| f m r 2( BCV @pa +@$@0/\H؀؆ / @" XM,["K,"T,"XB//"A^a vBHx /< 9Hof/
Hx a *-ڄX m چr ( O (+A/@x` ̘ L -XB/ / / @"AV"Ka BHx /< 9Hm&/< Hof/
Hx a O (+@$@0/PH*ڀچ(/ 4- w&ohg   o p_a @> /(P" ҄T$U./ DHx // "AVa B/-/< Hm(/< Hof/
Hx a +@$@ / xH"VHx H//  KCza O 0ڇچ/@h&@/Jx- xg  o p_a 
@=,/0܄r
܁(/ DHx ///4 "AVa p 0-BrACV Ja +@$@  Hx Q KH"VH//C^a $O &@p/@\ / H" RjRt.rJfg"$ԁML<2/JHү,P?AJ"/ @<<, ?| ZB/-/< Hx /< DHo^/
Hx a O  +@
ڄگ L$@pJfg "Ҁ?AL?| ZB/-/< Hx /< DHo^/
Hx a +@B|Ml<?Fj$/L<$/ d<B?| z$@p_ oa 	@<p 0-BrACj Ja |+@ Hx Q KH"VH// /@ Cra O (,/ `2/PHځچ/@h- xg  mCa \$@/@ ( @p_a 	@?GJ K"Ja ~(  mCPa ."@ Ka f KC. a Z"/ 4҄T$-VB//  "AVa EF Jp 0-"-a   l h ( O e < J@pBr// //< U/
/< Hof//Hx a >+@$@0/rovP@ K?@rCa ( 2/rH$/ Xp?Bv?| p 0-$-&-WDHHB//< / /< (//< '//< &v//< //< Ho/
Hx a O d+@&@ / PH"THx H// , opCRa <2/RoVH҇t҂?AR/@p mCBa /@Z?DVE@ J -r a  l h ( POe < J@pB// //< U/
/< Hof/Hx a 2O (+@2/PHځچ/@x- wg   mCa <$@ @p_a @AJ"Ja d"/ 4Ҁp
Ҁ(/ \ $/ HRjRHx &ր/// H "AVa B/-/< Hx /< DHof//Hx a +@"/ xH$RjR&Hx ւH/
/@ " oCza O 0ڄچ/@hB\J Xg / \X` -                                                                                                                                                                                                                                                                                                                                                                                                                                                                                \/o |V~ | /Ml/@p(/p / df("/ Xf$/ <g-  ygڄگ `Jg
(-\/Dp ML&O <"3h ?AJG"<<$o l,$V?BZJ <f FJ Tg (tg vg vg l  J Xg x "g
SgSg`xȭ`xȭ`xȭ Rp_a P"    / @MN< / H< rЁ?@ZB0/JT@H?@JH"/ \RjR$ԁTHx H/" opCRa 2/RHғ H?AR"/ d PRjR4/THԁT?BT$otXtBHx /< D//< Hob//Hx /@a O $%@/@x`  pm  pg  pg|$oxJf4-  yglBRBHx /< 9HoV/
Hx a @O +@/@x`@pn-  yg Yf -^@p_ JCJa J$@/@xpf+J _f+JRXpm BoPBoNBoLBoJ/o Rp / HoN/// a O $@Jg^   pj %mr  -gF @2( PAG62( VA6B- mr0( @ o l+P& |A%H ,l N+@r m~a .ޯpޯ `ހJ&ohf $ / 8;@(";A*t J6f$< A~+B.+| o2tB,B-+m^>$-*;B$$-.;B&;@N;@J;AL$-
vo W"-V l Nv2-LH;ALp2
"-V l Nv"Ҁ;AP -&"/ o ha ( f / 8DjR;@$ DjR;@&/
  o l"m~,l $mN$_;mJ;mL g( 
g$AHmHmz"H/-r o ta O +@f< mXa +o X o pa  +o r 
g g -
roS
` p ` +@T,x N @C +I+Q m"J6g  m"m!i V V m,l  < A~Nj m"h V+I+h VCZp ,x N)@g&Nf+@g/
"@p "  m,lN$_+@E lx `"ҁ mrp 00 ox 8 X j|`܆ F e+F~`   g 
f mXa BX o pa Brp `   m,l N8 mrp 0( "m,l N mG 6HHHHHH6( HÖS( 9HH/C 46( 
HÖ"mS$/ 4N m 1G 2"-g
"A i "+Pb m"h 2+I m,l N/
p"  m"mX,l NJ$_/
 mX"mpNP$_ m,l N+mpLlTNuN  N  ܞ@H?>H  I    *o B$BXBhBd~  <  "<  ,x $HNT&@Jfp`  l h ' TD HH'@p'@ '|   'M g*MC "p 0"p 0"M /^$"""  'm $ /J(`  ,-     c    g@UgBSgDSgFSgHSgJSgLSgPSgRUgTSgVSgXSgdSgfSghr5gh`j'F `d'F `^'F `X'F `R/Fd`L'F f`F F ~`>/F$`8'F `2'F`,'F`&JWD HH'@
`/FX`'F `
/Fh`'F A(,l N*@Jf ,/G  oha '@ *k  g - Vg,x *@N m gBA (C //d/+ fa ^PO'@ ffp` d @ ,'H 'h  C.a 
'@ gA2"H k a Jf Ka p` ( + r 'A  k f'H F*oX g
A   ` k f"h (A   p'@ $'@  '@ JgH k ,l N$ p8"<   C a r c$M K p *r *p *A~C  K  r CS" r S" r S" k f,l N'@6g k f,l NN'@ f Ka p` 
>,l NXr@ @¨ 2'Az,l NRC
Vp',x N'@FgC
\p'N'@J +  Ka A C/H dA/H |A /H XA \/H xA /H t/I C (/H l/H h/H p/I `*o d// |//  M +"o,a PO'@ f Ka p` 	BL/
 k fC$,l E N k f( $H$_HZ( %H"h (HZ( #/@ H0) /A @"/ HjR'M /B <t 4 HHւցTx BX~ z *o X/A T/C \C "qX  k a A!X  M"@a , r܁plXo/FX`o(RXpm /XM ,,,,,," ҁҀ ЀЄ*/ @&/ <օ*ڃt)ڂրtւ/@ 4/A 0o*   lz@$+.އX&+ p@mއp@ЀmއJzg  Jk~g  Jkg  JFg  JJg  |x /  Xo|P܆`
  ,l|K&/ H ЀЃ&$ԃԀ(p	؀o(/D 0+~H4+H/@ , " l Nv"/ ,Nj, P"/ /@ o   oچ/FL`Bz(/ @دL"v҃$ </E P/D DA C  / 0v,l N|A C  / 4"/ @N| o x,l NB@/k6D$@/o d: k Ca *@ @p_a @- o X"Ma D,/ @" <pjR܁܀ /Ll,  H,/ \Hx "H/ o |C6a ܫRܯ \"t҂ DHx ///@ L "AB"o a ~B/+ /< Hx &/< /+ /< HoZ/
Hx a (O 8'@ z*/ HJ$@g0* 
HІڀ`܇چ(+\ | ~ /@ L Xr 2 A C///0x ,O  6x ""QA:a  JC:p_a RX$@pO m ЄЯ H(  Cz | ~ C "qx  k Ka * @p_a l"  *  o X"Ua Ұo* RXpm o XCVa | ~ $/ Dڂڀv
ڃ"/ P*o 8 <TH/@ 4/A 0/B , +Vt 4// // 8 "A:"o ta  l h ( O e < Q@pB// 8/< Pr// $  /3( /< '/3x/< (//< //< Hx /< )//< +Hz/< *Hoz/
Hx a nO X'xn$@ TAHx H/0x "/ 4AC6 Ma ثVPOد TRX*@pm د T CJzg 0./ H,"/ $+&փW*/ \l؅,* ЅЇV./ @/
BHx/< Hx /<Hx /<  Hx 
/< //< //0/< //< / /< C,l $ONO D$_'@jg  /
BHx/< / /< / /<  /+ /<  /+ /<  /+ /<  /+ f/<  	Hx /< //< //P/< //< //< C0,l $ONO d$_'@f|~*/ L Xr 2 A C///0x ,O  6x ""QA:a  JC:p_a RX$@pO m k f( &HH,܅ܯ H܀7F .*/ P7E ,t Jf$< t'B 2'| N 6 k "h 4) B 0"h 4) B 1'o  B$+ 7B ($+ 7B * + r o `a :. fDjR7E (DjR7F */
  o d"k f,l $k N$_Bo4Bo2Bo0Bo./o l6p / Ho2/
/ a O $@Jg   pj %k  7k ,B k f"h (p 0) ( #HHҀR7ADJzgJfg. g* 
g&A "k Hk>B/) "H o la O '@ ~f> k \a 
B \A a FB  kf,l N~Bf kj,l N~Bj| `   k ~'H XJg  k ~"k !i V V k ~,l  < tNj/
p"  k ~"kj,l NJ$_/
 kj"k ~pNP$_/
p"  k ~"k \NJ$_/
 k \"k ~pNP$_ k ~,l N|Jf<JzgBz` k  cA C *  "k ,l N`  Ka p`j +r k a 	'@: + r k a  l 'h < j +
r k fa pA6& k ~"h Vp ) r 'A J g <   `"Ka L|@Nu4Copy to...  5Swap with...  6Spread to...  gadgets/colorwheel.gadget gadgets/gradientslider.gadget -_Red: ._Green: /_Blue:  0Cop_y 1_Swap 2Spr_ead   _Ok  3_Undo  _Cancel ,_Palette Colors:  000   %3ld  gradientslider.gadget colorwheel.gadget  $H->/@ (I    /H D/H ,*I`2"+     c$  <fSf Ma $p `  Ma  p` A D,l N&@Jf` M .?^ @8$h a  Yg2rgRrgLr g    g0   gt  g `  m ~,l N m ~pN` j Ma xp` ~0* &rAb RH@B@H@" p 0/ @+A "H M - a A "H Ma .`    f  A X"HA ?p 0/ @r 2a . f  0@ r 2 0@ 0z : / ?-*f/p  Ma XO`  -+f/p Ma XO`r-,f/p Ma XO`^--fX(- JfRDp 0"- mx `p @b(- SD?D @p 0B/ /< B/- ~/- za O ~B`~ >* &Jg < Wg.YgSg &Sf F Ma 4p` :$-  Ma <p 0` ( m "m2a 8/ @Jf. m ,l p 0N" t/A :" /A 6/@ 2`@ m C 2,l p 0rN|p " M G 2$&" $G 6&"& -YgSgSg"`4 -  MC 2a A "H Mp 0a `p 0"- A MC 2a  Mp 0a B0|/
$H m ~"m B,l N"_C  Ma `  m "m2a H -  Ma hA "H Ma `   [g~+G C t"q  m a ~0|/
,l $H m ~"@N _`   -fg  AZ/H $"o $,l  @ <  NrAZCN,mFNp " M GN$E $" $$"$A "H M - a  $Mt J ng" B/5/< (B/- ~/5na O RpXe/-  m ~"m a VXO @Jf  <   L| $NuQOH,$/ *H*( /A gJg(Q`(SJj*x `&Jg(P`(R"    m
  (5 !D A "H M - a   -  ML 4P`  H>*H$ J&If m K "$&,l N`: (- a ,  + (-  a ~*  + (- $a p&  "$ m ,l NLh|NuH6*HJf$IgV (- a >+@N * (-  a .+@R * (- $a +@V/
BHmN/<   mf"m ~,l &ONlO  _LlNu H*H. Jf m  ,l N, ` m  rC ,l N|G z(Jf r+H`p H"7H+HJ ngB/5H/< (B/- ~/5Hna O SYj+G Lh Nu/*H m "m.a * M*_`  H *Hpm Vf"m f,l N -
r  m ja J ~g, -r  m "m:a  - r  m a   - m ~a  m a  m \a  A a   mf,l N~ mjN~"mJ,x Nb"mFNb m6,l N| - g"@ m f,l NH - g
"@,l N m "m.p a  m "m2p a z"M,x NNL` NuN  )"N  /N  -N  ,RN  *4N  $HN  VN  /,N  ,2N  ,N  N  'N  N  -lN  zN  (N  +N  .tN  N  &N  N  ,N  -N  +N  +|paH "E  , gr 2 "J,l N@ 
LD Nureqtools.catalog  H 2 , fp `4"x &ir+ gp ` $k r'A /
C,l Nj _'H LL Nu/ , g,@N,_Nu     G      (  .      
    :        "                          4        z  $<  $6  $B                              |     t  x  |                                 H   4   8   @   D   V   p        ~        ^     _  F<  D$  C  C  B  ;T  8  0  -  )R  %$  N  `  Z  @    ,  6  D      @              ???~???             EUU          %    RT!topaz.font .info    8X  A       ,      hDD               z  z  z  z                     R  `  p                                                                                                                                                                  d   `   \   X   *                                                                                                                     y                                          }                                                                                                                                                                    3  VirusZ                                                               p                         pY                                                                                                                                                                                                                                                                                                                                                                                                                   xfd                                                                                 H      ?  I  H  G  F  E  D  C  B  A  @  ?  >  =  <  ;  :  9  8  7  6  5  4  3  2  1  0  /  .  -  ,  +  *  )  (  '  &  %  $  #  "  !                                               
  	                           	                                                                                                  xfdmaster.library                                                      J                   ?    ?pNuJ     V%	       0   xxfdmaster.library xfdmaster 37.5 (3.8.96)  1994-96 Georg Hrmann
 dos.library LIBS:xfd     :          z~LX

,N
26H *@+H "| 	 AL+H 
|  ;| % ;|  AD+H Cnp!,x N+@ &f
.<NAz+H *a6 m *r h  m ( $go"  g @`+A 2+|   6 L` NuH?:Hz"t,m &N. gt"N,  <  "<  ,x N:JgD(@E"$
,m &NJg J k"$
NJgJ lA a(`"L <  ,x N.",m &N"NL\Nu"Nj* gX @XFDF g"NdNu!E B  - .f+H .`"@ ) f#H "m * g"@` h " h  h  m02( "g*C *$	"Qi  mi  f "B"`C g$	"@` g @`NuRn     Nup Sn  f.  fNuH &*N,x Jm  g
  p `D"MN,m &$m . 
g"* $j Nd`"m &,x Nbp "M0- m /- "N. Ld Nup NupNpNH pNJg
 @ !o  PONuH 4 g*k(| n"H ;  "<  ,x N:Jg
 @00 L@Nu   6      8      / 	g&YIQf0) gk| nH ; B,x N.,_Nu   6      8       	gifp 0!Nup NuH 0$H5|  Jg  nJ g  f". *&Ak  n@0+ n n6"+ g0"A0+ | g
0* 0| g R * k  m $mNJf"fB B Bj 5|  p `%K %k  0+  5@ 5k  pL Nu0(   f/ (  PN _1@ fD1|   ( g8"@1|   ) g*"@/N _a JgBh NuB B B  B $B (p NuH 0$H5|  Jg\". *&Ak  n80+ n n.2+ | g$"+ g"A0+ | g
0* | g RNJf"fB B Bj 5|  p `%K %k  0+  5@ 5k  pL Nu1|   ( g""@1|   ) g"@/N _a JgBh NuH 4*H;|  Jg  J g   U;|   f  pШ  A$<ޭE~0kTg"H"f"VJ@k
T@XJQ`&Z+Z +Z /N _Jg"UpЩ   kg+@  Bm p`B B ;|  p L,Nu/ (  PrN _1@ f21|   ( g&"@/N _a JgBh NuB $B (B ,B 0p NuH?>,
:(IB~"g $ g $A g~ x 0((  g p ". *"Ai  n22) n n(2) | g") g") g2) | g  gR"f~ Jg >T& "<  N,x N:N~Jg &@& K". *"Ai  n22) n n(2) | g") g") g2) | g  g "f&~ gl"@"i  J NJg"k"i  J NJg( pNJg~"L"g"A`""@#J #D  k#h  0(  3@  fR|Ĕ`RJS fRJSJg  F!B jB !I Hz /NuJf~`&CJn V~ ` gB"@$N f"K !,x N.p 0L|Nu/	Nj"_J@g| f 	"@/N fNu/A t2Bg@gTH`0A  $Nu   \  f  t             	  
   ! 3 =Qhz   no errors out of memory missing slave entry not supported unknown file no source specified wrong password bad hunk structure corrupted data missing resource wrong 16/32 bit key better cpu required hook caused break dos error undefined hunk type file is not executable bad hunk_ext type buffer truncated wrong amount of hunks overlays not allowed unsupported hunk type unknown relocation mode undefined error NJgp NupNur NH# <><  fFC t  ?><    k,   n$@0; *N &Jgmg><`
><JfBGp 0L Nu 4 2 2 > F * * * F 4 B t *  B V * * * * V><  p NuS pNuXHSpNu gA`pNup 0gЀA` 	| gTHpNuJfpШ  ԀApNu  f g
ApNu  ft  IpNu><p NuH?>BH2< N> LAJGf `K tԪ   ,x &LJFg "<  | g$"<  | g>< ` 
rHA2Y| |  T/ N:"~Jg   @  &&HSftg   |g8|oF|gR|gR|g(|g|gΰ|gV|gP><  `   ` gE`R"a` g"Sf`RXJ`"aJ&I g"a@(	&ٳ8 Sf`"a.&Ip 0gr 2a (	v 6ٳ8 Sf` | gTJ` B"L"QSlXINu$B,x g"B$ !N.`~ a p 0L|NuH?>H2< N> LAJGf  K pЪ  Eg   |gl|o2|g4|g2|gZ|gl|gΰ|g&|g ><  `   `XJ` gE`p 0gЀE` | gTJ`  ` g"JYJ J gC` g"JYJ J g `*H` JL  ~  a 
p 0L|Nu      HN    LN         ޭ      ޭ             >        N    N    p Nu     ޭ      ޭ             >  (      N    N    p Nu     ޭ      ޭ             >  (      +OH"zX/I <LNu      4      &Hz jH |r a\#   2: raP#   tJf/z b <A ``$    >  ? &  ޭH,x N*@z J fA \NA \N* C jp!NJg@,@C f"	$<  N, g "A &$N"$< N4"N"N,x NbJg
"EA \NL?,zpN    @  L   ޭ,zN / ,x C Pp!NJg@,@A L"$<  N, g "A &$N"$< N4"N"N,x Nb Nu    @  L &  ޭH,x N*@z J fA \NA \N* C hp!NJg>,@C d"	$<  N, g"A &$N9  f"N"N,x NbJg
"EA \NL?,zrN     @  \   ޭ,zN / ,x C Np!NJg>,@A J"$<  N, g"A v&$N9  f"N"N,x Nb     @  \        l4EF9 Linker 4EB9 Linker UFO Linker XLink Linker Glue 2.3 Linker Glue 2.2 Linker ExeDescript 1.0 Linker   )")m@+@ +A g+A pNup Nu Upa J@gh`( fp+@ p+@ p+@ pNup Nup+@ rh +A Ҁ+A Nup +@ p+@ +@ Nu U (  / a p"J@g"  gFLID fB +A +A pNup NuH?>*H -  Ua 4;|  J@g  $H -  Ua J@g  &H U - PH B SXH!XSf.-  叟 /YfYH  Yf+H ,+U $ Kǐ +H ( Э +@ 0   B -   B S Yf m $ - ,"- Da $J@g m ( - 0"- Da L|NuH?>*H;|   U&( tn   Ua NJ@g  O gR`Rn   - +B    -  Ua J@g  $H -  Ua J@g  &H - Э  Ua J@g  (H U - PH B SPH!XSf.-  叟 / YfQH  Yf+H ,+U $ Kǐ +H ( Э +@ 0   B -   B S Yf m $ - ,"- Da J@g m ( - 0"- Da L|Nup `H?>*H -  Ua 2;|  J@g  $H -  Ua J@g  &H U .-  叟 /Yf Jh f0< h9 Lf0< `0< h g0<  "U+@ ,+I $Sf Kǐ +H ( Э +@ 0   B -   B S Yf m ( - 0"- Da L|Nu/*H U - a  `;|  J@gP"H ( Y +H (J fS`+@ 0 Ur (  Ҁ!` YfXHS S +H $+I ,p*_NuH0 v   f  Jf  |"( R $A"|g|fSk  TSg  PXH"`ܲ|fSk8Sg6PH`ʲ|g|fXH"gA`|gĲ|g|fXH`v L NuC  ( AgP |o&|fXH`|g|g&|g
|gp Nu ` gӐA` gA`pNuH12JAg^t| gt>< | fL,x 6 &H~$S"JNBf* ""<  BN:Jg  @"J    $H"&N.&JSCf~ a  p 0LLNuH12JAght| gt>< | fV,x 6 &H~$S"JNBf4 ""<  BN:Jg* @"J HINLXH$H"&N.&JSCf~ a
p 0LLNuH,x n $ mNLCNu  2  $   !        t      @PowerPacker 2.3 hf ghg f"  0fE6 Dfa 2 LfpNup NuH?>*H(UC8| !+@  +@ "- ,x N:;|  +@ g@"@A8 ,|/,(,Olg ga `a $XOJf"m  - ,x N.;|  p L|Nu  f(hf ~ghg ~fE6 $fa 2 ,fpNup NuH?>*H(UB TXH"H  ,\"0H@B/,,Olg ~ga `a XOJf ;|  r `LAC2- Nr ;@ fr/",n &Nd L|Nu    $  Z !    j      T    \PowerPacker 3.0 he>ghd>f"  LfHzx $fa V HfpNup NuH?>*H(UCT D !+@  +@ "- ,x N:;|  +@ g@"@AT , D/,@,Old>ga `a ~XOJf"m  - ,x N.;|  p L|Nu  ,f(he>ghd>fHzx fa V (fpNup NuH?>*H(UB TXH"HPI , $"0H@B/, ,Old>ga @`a XOJf ;|  r `LAC2- Nr ;@ fr/",n &Nd L|Nu    $   1     N  $  ^    PowerPacker 3.0 Encrypted he><ghd><f"  fHz $fa V fpNup NuH?>*H(U;|   - ,g   @a l f  ,C  !+@  P+@ "- ,x N:;|  +@ gx"@$@ A0, ""Q"صf m C  , /,,Old><ga `a XOJf"m  - ,x N.;|  `"m A  -  "SfpL|Nup `  f(he>ghd>fHz fa V fpNup NuH?>*H(U;|   - g   @a l ngp `~B TXH/0, Q _"HPI , "0H@B/,,Old>ga 
`a XOJf ;|  r `LAC2- Nr ;@ fr/",n &Nd L|Nu   X  $  4 !    N    V      |PowerPacker 3.0 Overlayed he>ghd>f*  `f h *fHzv <fa T `fpNup NuH?>*H(UAh \" +A  PH&H - Ё+@ "- ,x N:;|  +@ g  "@Ah , \/,V,O/ld>ga `a &_XOJf"m  - ,x N.;|  p `: K"m $I    -  """"""љ"Sf"صf+m   pL|Nu  @f0he>ghd>f h 
fHzv fa T @fpNup NuH?>*H(UB TXH"HPI , <"0H@B/,6,Old>ga `a XOJf ;|  r `VLAC2- Nr ;@ f@A "U F"""""a )Q@ U"Y@gJg P`BY@nr/",n &Nd L|Nu  !  $    !          !D  !n	    PowerPacker 4.0   fHz $fa  HfpNup NuH?>*H(U.,,, DE*, J" +A   +@ "- ,x N:;|  +@ gF"@ J /,Oa XOJg m  -  a Jf"m  - ,x N.;|  p `+m   pL|Nu  fHz fa  (fpNup Nu0<pr$H?>> <*H(UB TXH"HPI 4` "0H@B/4p ,Oa $XOJf ;|  r `LAC2- a \r ;@ fr/",n &Nd L|Nu  "  $  " !    ",  "R  "n  "
     PowerPacker 4.0 Library    fHz X $fN PfpNup NuH?>*H(U., ,, DE *, ` b   fHz X fN 0fpNup Nuptr$`   $  $  " !    "  #  #  $    PowerPacker 4.0 Overlayed   f h *fHz <fa  `fpNup NuH?>*H(U><E J \" +A  PH&H - дp +@ "- ,x N:;|  +@ g  "@ J , \/4p,OHa \LXOJg m  -  a Jf"m  - ,x N.;|  p `: K"m $I p  4p """"""љ"Sf"صf+m   pL|Nu  f h 
fHz fa  @fpNup Nu0<H?>> *H(UB TXH"HPI , <"0H@B/4p ,Oa ~XOJf ;|  r `VLAC2- a r ;@ f@A "U F"""""a )Q@ U"Y@gJg P`BY@nr/",n &Nd L|Nu  %  $  $ !    %  %@  %T  %     PP 4.0 Library Overlayed     f h *fHz X <fN hfpNup NuH?>*H(U>< E `    f h 
fHz X fN HfpNup Nu0< `   '  $  % 1   %  %  &  '    lPowerPacker 4.0 Encrypted   \fHzF $fa  fpNup NuH?>*H(U;|   - ,g   @a l f  ,Ad   +@   ,RP+@ "- ,x N:;|  +@ g  "@$@ Ad0, ""Q"صf m C  , /,N,Oa HXOJg$"m A  -  "Sf m  -  a Jf"m  - ,x N.;|  `+m   Q  pL|Nup `  <fHzF fa  fpNup NuH?>*H(U;|   - g   @a l ngp `pB TXH/0, Q _"HPI , "0H@B/,.,Oa 
hXOJf ;|  r `LAC2- a r ;@ fr/",n &Nd L|Nu  )  $  ' 1   '  (  (  )     PP 4.0 Library Encrypted     fHz \ $fN TfpNup NuH?>*H(U;|   - ,g   @a 
l Jf  ,A  D  +@   , P+@ "- ,x N:;|  +@ g  ~"@A  , DY""Yf" m C  , D/, ,Oa 	6XOJg$"m A  -  "Sf m  -  a 
vJf"m  - ,x N.;|  `+m   Q  pL|Nup `   fHz \ fN 4fpNup NuH?>*H(U;|   - g   @a 	l *gp `rB TXH/ , $YYf _"HPI , $"0H@B/, x,Oa TXOJf ;|  r `LAC2- a 
r ;@ fr/",n &Nd L|Nu  ,  %  )     )  *0  *  *     PowerPacker Data  PP20gLR88f ( fpNup Nup PP20gLR88fpNuH?>*H U   +@  +@ "- ,x N:;|  +@ gF"@ UM PH - Qa ZJf."m  UPH - Qa Jf"m  - ,x N.;|  p L|NuH?2&H&  + fBE tXn6 J k< ne戰dM  JC H0 a  L J@g `p LLNu|x~z& Jgf* ePSt f* e<e:pr f* e*QAFgpf* eQSQJn`~pr f* epQp 6 4Ff@f* eRepS@f* e@Qpr f* e,QAGg`S@f* eQRBSn :p Jf"gYfpNu  -  %  ,.    ,J  ,  ,f  ,t     PowerPacker Encrypted Data  PX20f ( fpNup Nup PX20fpNuH00&H& E tXn J k< ne戰d `p LNuH?>*H(U;|   - ,g   @a Rl f  ,"L  !+@  P+@ "- ,x N:;|  +@ g  "@A 
pЭ ""Yf" m C  -    
M /a ,JfN"m A 
pЭ ""Yf" m C  -    
a 
Jf"m  - ,x N.;|  p `"m A  -  V"SfpL|Nu  /  $  - !    -  .v  .  /b{    PowerPacker Patch 1.0 hHz $f^ha  Hf.0( &2( J|fp|g*p|g"`|fp|gp Nu|fp|f2 A2;."0   fNuh`f $fHzV fph  "fp`H?>*H(U La bHA 0.4  0,4  0E  0*4  ` * D D D D    mH  n>hHz fJha  (f.0( 2( *|fp|gp|fNu|fp|gp Nu|fp|fNuh`f fHzV lfp  fpNu/ Pa n _@@2; 0; `  $v $r $r $z    5b  $  / !    /  0*  0  18q    |Quick PowerPacker 1.0 Hz $f a  Bf@phbg
hnf.pNuHz $f a  DfphfghnfpNup NuH?>*H(U La,, @| nH2; vE 0; p.2   J" +A   Ё+@ "- ,x N:;|  +@ gX"@ J /,Oa <XOJg m  -  a Jf*"m  - ,x N.;|  p `htltΑ +H  pL|Nu  @mDHz fa  "f0phKfpNuHz fa  $fphKfpNup NuH?>*H(UB La,,  | n@0; 8.4   TXH"HPI "0H@B/,Oa  LXOJf ;|  r `  "LAC2- a |r ;@ fr/",n &Nd L|Nu/v|x~z$I" JgapSafet pajAFgpa`WCf:paPp 6 4Ffa6epa:&Apa6AGg"`a(RB1 WCgp fJBfpNuf* NuS@r f* QNu/v|x~z$I" JgapSafdt pajAFgpa`WCf:paPp 6 4Ffa6epa:&Apa6AGg"`a(RB1 WCgp fJBfpNuf* NuS@r f* QNu/p r t xB҂HAf$NuH< ( &(  R A   *<?Jg  Y|o,|g|g0|gp `p JfpL <Nu˘YS`ː YS`aJC $# Yf 	R  "@p 0 gr 2 $r  S@gRIJf
ҁԁ`r "H 	R  "@X0gX\IXS@gJfVI` 	V< "@Ȓ 	NuH?>BH@L@K tԪ   ,x &LJFg "<  | g$"<  | g>< `  rHA2Y| |  T/ N:"~Jg   @  &&HSftg   |o(|g4|g@|g><  `p"L"QSlXINuR"a g"Sf`RXJ`VJ 
< $@`"a&IRJ 
  $@0gr 2a(	&ٳ8 S@gr f
ҁց`$B,x g"B$ !N.`~ p 0L|Nu  :p  $  5 !    5  5  8  8z:    Imploder  a fI 6 gI ^ g
I B f4N<< ghN g
N<< fQ  g
Q  fpNup NuH?> F*O/"Mr1Q U ( * YAX<<f0El:  UA +H B T@H 0  +@ 2r,x N:;|  +@ 6g ;|   U R@a J@g $H  f tXJj f h+j  : *G  g
  f FPK :+K > 0RЀg RЀf & l(OA C """AXC $"""A()P AHC """" ,  )@ 9E 4A 6p5    Q,m 6 - 2( $N m >0, 4HC a T 6(OJ@g" 	+@ +@  "- ,x N:;|  +@ f 6`t,m 6 - 2( $N m >"m 0, 4HC a  m "U   Bp 0, 4 BS C  Q 6"m 6 - 2,x N.p"_r1Q FL|Nu"m 6 - 2,x N.p `  fpШ  ANu   XmRI 6 gI ^ g
I B f4N<< ghN g
N<< fQ  g
Q  "fpNup Nup H?>*H 8(O9@ 6)U 0|a Y<<f<a $I;|  j f **  0RЀg RЀf  l 002- a ޠ;@ f hA C """AXC $"""A()P AHC """" ,  )@ 9F 4TFa (,I )Q( $NSFa  I/z <a &Ifa  jREl 4f*_`|Ѐj6fa  " gֵfa  < a  &	t fa Ԛ׳( Sf`"KMHQkbLH  `LM  Pgg
"Sf` ta 6`,x <, 4TFta`QI N.SFQaP !B|aH*Jl 6g* i   fBBB  @p!  Y@l !N.p`p  8L|Nu>RGC 0"QQXINu  ?0  $  : !    :  :  =  =N;     |Imploder Library  a PC  g
C  
f N fN fHfpNup NuH?> F*O/"Mr1Q U ( U@: A +H BH$0   0 +@ 2r,x N:;|  +@ 6g ;|   Up a <J@g $HPJJ* gY* +B :G "*XJ0U@kE Q  f nXJ :+J > l(OAC """ |  AC $"""[ 8)S B, A $C rj< P t J jSB2QA C r0YQ ,  )@ 9E 4A 6p5    Q,m 6 - 2( $N m >0, 4HC a J 6(OJ@g" 	+@ +@  "- ,x N:;|  +@ f 6`t,m 6 - 2( $N m >"m 0, 4HC a  6 m "U   B ) U BS C  Q"m 6 - 2,x N.p"_r1Q FL|Nu"m 6 - 2,x N.p `   <m6C  
g
C  f"N fN fH fpNup NuH?>*H 6(O)U 0| a G A
C """ |  A	C $"""[ 8)S B, A $C rj< P t J jSB2QA C r0YQ ,  )@  , 0 @pR@"ҁҁ Af9@ 4Sl 4< A 002- a j;@ f  a  ,I )Q( $NSFa   )QJ+gY+ I/z <a  &Ifa  jREl 4f*_`|Ѐj6fa  " gֵfa  < a  &	t fa Ԛ׳( Sf`"KMHQkbLH  `LM  Pgg
"Sf` ta 6`,x <, 4RFta"QI N.SFQaBp 6L|Nup `>C 0"QQXINu  Bd  $  ?X !    ?l  ?  B"  B^<    Imploder Overlayed  a `  f h fI ^ fN<< &fpNup NuH?> N*O/"Mr1Q U (  W* A +H BT@H 0  +@ 2r,x N:;|  +@ 6g ;|   U R@a քJ@g $H  f  XJj f +j  : *G  g
  f PK :+K > 0RЀg RЀf  l(OA C """AXC $"""A()P AHC """" ,  )@ 9E 4A 6p5    Q,m 6 - 2( $N m >0, 4HC a  6(OJ@g\/	 Upl 4a ՎJ@g   f PH  f   - Е+H F+@ JП+@ +@  "- ,x N:;|  +@ f 6`  ,m 6 - 2( $N m >"m 0, 4HC a  6/	 m F - J,x N"_ 	  FЕXI" U&- FSk$ de  ( fѩ` m "U   B ) S B ) Y C  Q"m 6 - 2,x N.p"_r1Q NL|Nu"m 6 - 2,x N.p `   f*`   f h 
fI ^  fN<< *fpNup Nup`   G  %  B     B  B  B  B=     BImploder Data IMP!gCHFIgATN!fpNup Nur2Ҩ n (  k Nup NuH?>*H$Ur2Ҫ ;| p  nN * +@ +@  "- ,x N:;|  +@ g*"@ J - N m aJ@f"m  - N.;|  p L|Nu&H(HXH$K!!!$6kSKO"Op"Q"Ox Jg#SfeO pgp Nuf#ddf#dTf#dDf#d4f#d#p`:f#f#f#\p`xp`xp`
xp`xp z 2 f#df#d; jP `zX ; bf#BS fEz $E0f#dAf#d4qP `4q X 1 f#ۅS fRJ"Sf` 

/&m Bz Qǵfa z j$fJfPIQXIXKREl 4f*_pNu*_p NuP  g*fXIfa <XI gRfa (XJYf`PI"䉰bMQk
b  `M  Pg rg
XJSf` da  `z .fa   jLЀj g|   f$"  H *G m B0H 0  ?"L! "  REl 4f*GNu Ѐj,"  faj "gfa^"t faTԚ"Sf`&I"  "MHQkbLH  `LM  Pg >g
"Sf` 0a`H&J:4, , f ` f ddf dTf dDf d4f d ~`:f  f  f  \ ~`p~`p~`
p~`p~ 6f df d| 4pX`f B`|4pf BSfF| :F>f dCf d:t0P`:t0X4p$j < gf FSfRFM*KƻdĽf*JSEkS fJBg
SEkSBfS f @ A 8LNu

   I  %  H     H$  Hb  H$  H:F     4XPK Packed  p XPKFf
(   fpNuC r 0m ZnQrҨ n Nup Nup H?>> *H$UrҪ ;| p  n  p C,x N;| 	 Jg  (@ * +@  м   +@ "- N:;|  +@ gfBJGg
/- ,/< Xt/- /< Xq/ /< Xb/- /< Xp/
/< XS O,LN $JGgPOJga.;@ "m  - ,x N.p `p/ "L,x Nb L|Nu|lpNuF@@0; Nu               	                xpkmaster.library   I  %  I   I  I  I  H:G     4XPK Crypted p XPKFf
(   gpNup` p  J  $  J     J.  JT        +    TetraPack 1.02    rfI  fN  fpNup NuH?>*H&U + ␫ +@  +@ +k (+k  $"- ,x N:;|  +@ g>A &"@ , p + ?8@z + p + <@+ | kNq f|a \pL|Nu  K  $  J     K
  K0        ,    TetraPack 1.1   rfA   fm`. fpNup NuH?>*H&U + А +@  +@ +k  (+k  $"- ,x N:;|  +@ g>A  &"@ , p + ?8@z + p + <@+ | kNq f|a pL|Nu  L  $  K     K  L        -    TetraPack 2.1 A  "ff f2  fpNup NuH?>*H&U +  +@  +@ +k (+k  $"- ,x N:;|  +@ g>A ."@ 4 p + G8@z + p + <@+ | kNq f|a pL|Nu  Ml  $  L     L  L        .    tTetraPack 2.1 Pro A  xff f2 .fpNup NuH?>*H&U +  +@  +@ +k p (+k  $"- ,x N:;|  +@ g>Al "@ ғ p + 8@z +%p +i<@+ | kNq(f|a pL|Nu  NH  $  M     M  M        /    (TetraPack 2.2 C  "ff f2  fpNup NuH?>*H&U +  +@  +@ +k (+k  $"- ,x N:;|  +@ g>A  4"@ L p + _8@z + p + <@+ | kNq f|a  pL|Nu  O  $  Np     N  N        0    TetraPack 2.2 Pro C
 xff f2 FfpNup NuH?>*H&U +  +@  +@ +k p (+k  $"- ,x N:;|  +@ g<A "@  p + 8@z +=p +<@+ | kNq@f|apL|Nu$`  a.e:2va&eZrx ah6DraQW`Hrx`f  D Nura8< m< gra(6XC2`26JFfBTCa2 W|g`SAt aQNu m $H fr gRAW|ffNu  P  $  P     P   PF        )    DefJam Cruncher 3.2 C "fI^ PfffpNup NuH?>*H&U ++@  +@ +k (+k $"- ,x N:;|  +@ gRA 4"@ LI+}O,OBB Bn k  k- kM k[ ka 	a O 
pL|Nu  S  $  Q     Q  Q@        *     DefJam Cruncher 3.2 Pro C |fI& ff fpNup NuH?>*H&U +  +@  +@ +k t (+k  $"- ,x N:;|  +@ gRA "@  I+ O,OBB Bn k k k k k 	a  O 
pL|Nu|$`  ra  JBg  ~< f<a  e
ra  ^B`,ra  JBg| 
`ra  JBg|	`ra  ~Լ  SB6aTezr`aJez r`a@ezHr`:< raLE4  WжFf~adVra42vJg\g6< gvr`f  D NuvraB2. `0SAt aՂQNura6| 2. `aev2. `v2. a2 WFg  m $H fr gRAWFffNu  S  $  S8     SF  Sj        }     )BOND Cruncher A Bf Of Nf
 DfpNup NuH?>*H$U";| p  nb;|  | fV "+@  +@ "- ,x N:;|  +@ g2"@ J( $I  ~|	za zJf"m  - ,x N.;|  p L|Nu  Tv  $  T     T&  TL        u    TrashEliminator 1.0 A  $f   fSABB fpNup NuH?>*H UE >( <( z ( I+h * $+h  (` 2  T  $  T     T  T            4ByteKiller 1.3  A  $f   fSABB fpNup NuH?>*H UE>( <( z ( I+h * $+h  (`   U  $  U&     U6  U\            ByteKiller 2.0  A  .f   fSABB fpNup NuH?>*H UE >( <( z ( Q+h 4 $+h  (` "  V  $  U     U  U             ByteKiller 3.0  A  $f  D fSAt  fpNup NuH?>*H UE ~|	z+h * $+h  (`   V  $  V.     V@  Vf            8ByteKillerPro 1.0 A  2fE fSABB fpNup NuH?>*H UE~ ( | ( z ( m+h @ $+h  (`   W&  $  V     V  V            ZByteKillerPro 1.0 Pro A  \fE fSABBfpNup NuH?>*H UE2~ ( | ( z ( +h b $+h (`    X  $  WN !    W\  W  W  X(    4DragPack 1.0    f"Nnf  fSABB fpNup NuH?>*H UE<( >( z ( W * +@  +@ "- ,x N:;|  +@ g$"@ Ja fJf"m  - ,x N.;|  p L|Nu  f"NJf   fSABB fpNup NuH?>*H(UB<, t>, z , 3 l 
"l  ( HBa Jf ;|  r `0t"L(T !,x N.QLAC2- Nr ;@ fr/",n &Nd L|Nu  Z(  $  X !    X  Y  Yp  Y    TNM Cruncher 1.1    f"N~f  DjfSABBtfpNup NuH?>*H U$(&(E>(H<(Nz+C  +C  "- ,x N:;|  +@ g"@ J$Ca pL|Nu  tf"NZf  DFfSABBPfpNup NuH?>*H(UB$,&,>,$<,*z T"PXHXI$CHBa `t"L(T !,x N.QLAC2- Nr ;@ fr/",n &Nd L|Nu  [j  $  ZP     Zb  Z            RSI Cruncher 1.4  A  <f  fSABBfpNup NuH?>*H&U| .+8 r,x N:;|  Jg  (@H ~ + | + z + yA4"La hL ;|  JgP"+ B + G +A $+k ^ ( + "+@  +@ "- ,x N:;|  +@ g"L @+ /$H  a|"L ,x N. L|Nutg g`r gSAWBgNu  \  $  [     [  [            ,High Pressure Cruncher  A8 f  fSABBfpNup NuH?>*H&U| +k 0 $+k v (E ." r,x N:;|  Jg  (@H "L J$G>+`<+hz + ( a 
L ;|  Jg^ Lan$ aj& +@  +@ "- ,x N:;|  +@ g4"@$I Lt  HS@J g W` WBg|"L ,x N. L|NuNu  _  $  \ !    \  ]$  ^b  ^    LHQC Cruncher 2.0    f"A `f  fSABBfpNup NuH?>*H&UtA (  R& .ԀA |g"|g|g$|g&|f  XJf`(  ԀPS`XHPS`P gAԀP` +@  +@ "- ,x N:;|  +@ gN"@A&>+<+z +}pЃ"Sf "|gD|g>|f"S`|gT|fJfpL|Nu"m  - ,x N.p ;|  `  "H$`( a  LJgS` "gR"Sf`  f"A <f  fSABBfpNup NuH?>*H(U&T&SXK$+ & ,x EB<- JFg""<  | g&"<  | g;|  `  rHA2Y| |  T/ N:";|  Jg  h @  $$HSf>,<,z ,YE;|   |gX|gR|f$RXKS`|gf|fJf",o (Ndp`E g$@"@ !N.`"*L|Nu$R H  KC $`( a LJgS` v g p"A PQXH"$Ӳ(Sf`  d>  $  ` !    `   `F  b6  bj    ReloKit 1.0 A (f  fSABBfpNup NuH?>QO(O*H&U +Ы(r,x N:;|  )@ g ^0+HA"l >+<+z +Ia ;|  Jg tԫr 2+Iԁ l v p H8 g"|g$vPp 0ԀZH`fTHSDf`JCgP`+B  "- ,x N:;|  +@ g  "@"  BBY2B"S/*IE,l  N>+0H"   " ¼   ?Q"*	$ *PNJg4"Sf,	Jff"E#|  `XIg/&E'<  &_a2"  XJSGf*_ +I  p/ "l  ,x N. POL|Nut p 8 gHJBf"  t"p "`r HJf
( ITHH& "SDf`JBgBNu  m"A f  fSABBfpNup NuH?> $*O/"MrQ+n & (UG + Ы +@  r ,x N:;|  +@ g x"@0+ HA >,v<,|z ,)a f;|  Jg :"m A 4+  ( " ?"HAIIp#@ PHSBf>+ ",m Nd6- 4$m GB,x ;|  "* JCgr| gr| g
;|  `   N:Jg   @  &&HA C  QoNSfB~|RGp h8 g|gDp aB&0a<&Hh`r HJf
* iTJH$ Ԃ׳( SDf`p`.A PQXHNu g$ "B$ !,x N.JfBp / "m  -  ,x N. "_rQ $L|Nu  ed  %  df     d  e  d  d     SoundTracker Packed Song  PACKf("(   <¼g"(   X¼fpNup Nup PACKfpNu"(   <¼g"(   X¼frҨ n (  k Nup NuH?>*H$UrҪ ;| p  n@ * +@  +@ "- ,x N:;|  +@ g"@XJ " JE ~|	za  pL|Nu  f  %  e     e  e  e  e     ANC Cruncher  p FVL0fpNurҨ n Nup NuH?>*H$UrҪ ;| p  nZ  * +@  +@ "- ,x N:;|  +@ g2"@ J($I  ~|	za  .Jf"m  - ,x N.;|  p L|Nu $X(  fateN2vfahe&ran6rfaXQW`2BTB6aJ2 W|gp JfpNura,< mҴ< f
ra6PC`ra62`  D NuSAt faQNu  g  $  g     g  gN        ?    Master Cruncher 3.0 Addr    f"K (f+I  8faN DfpNup NuH?>*H4< U+h > $+h H ((UE   +@  +@ "- ,x N:;|  +@ g
"@ Ja pL|Nu  h2  %  g     g  h&  g  h
v     Master Cruncher 3.0 Data  PPAf h.2 fCKV1 g
   fpNup Nu"(  krҨ n Nup NuH?>*Ht` 6  j  $  hZ !    hn  h  h  h@    Master Cruncher 3.0   f"K8 ,f+I  >f+J  HfpNup NuH?>*H4<`   hf"K8 f+I  f+J  $fpNup NuH?>*H(UB T"X$XIH aPLYI !,x N."o  !N.$_XO,_ J C2- Nr ;@ fr/C !,x N. L|NuG~(I*YHJ`jSH f dLBAf d2vBA30 HxlFDSBf QQJCgAV30HB WGf  tf dQBARB3 gHSCf QQ3 HC| g0vf dQRCBB30Hf RQKs0`$BBvBDf dvx@f RQDE  HSA"WGg Nu

  
          kT  %  j     j  k*  j  jB     PackIt 1.0 Data PIcof ( f ( fpNup Nup PIcofpNu"( ¼f$"( ¼frҨ n (  k Nup NuH?>*H$UrҪ ;| p  nXJ`  pp L|Nu  mX  $  k| !    k  k  k  l$C    zPackIt 1.0  .(n (fK ,fBJ 2fpNup NuH?>*H UEb $+@  +@ "- ,x N:;|  +@ g"@ JQO(O()R a  POpL|Nu.(n fK fBJ fpNup NuH?>*H$UEF.$ r,x N:;|  JgT&@"K J/QO(O()R aFPO." o (,h &Nd K CB2- ,o (Nr ;@ fr/"K ,x N. L|Nu~$`  v fa\e(ra`B| grfaFRQWGgNura8< gD< g>4  H< RB6aRB2 WGgNu  D NuSABBfaRQNu4  HaRB6xRraJBfDV2aXBC`  n  $  m     m  m        H    Time Cruncher 1.7 A4 $f  D0fSAB:fpNup NuH?>*H U+h 0 $+h, (EZ * *+@  +@ "- ,x N:;|  +@ g"@ J$`a bpL|Nu  n  $  n4     nF  nl        I    TFA Cruncher 1.54 A4 $f  D"fSAB,fpNup NuH?>*H U+h 0 $+h (` J  o6  $  n     n  n        J    Turtle Smasher 1.3  AH  f  D@fBSAJfpNup NuH?>*H UEj+Z $+Z ( +@  +@ "- ,x N:;|  +@ g"@ J$IА a 8pL|Nu  o  $  o^     op  o        K    Mega Cruncher 1.0 G. $f  D4fSABDfpNup NuH?>*H&U+k& (+kX $E``  z  qH  $  o     o  p        L    Mega Cruncher 1.2 G2 $f  D8fSABHfpNup NuH?>*H&U+k* (+k\ $Ed *+@  +@ "- ,x N:;|  +@ g"@ J$`apL|Nu~|zx  raxJg>Dffa`dr
adJBfra\`raV^BSBrfa@QWGgNura2vrJBgrvEgVvFgBra| g0Eg"ZB6`<  D NuSAt faQNura^B6`ra6`rfaer`rfadrfaeraSC2(WGg *Nu  t  $  qp     q  q        1    Double Action 1.0 SF& fM  fxN fpNup NuH?>*H U~ 4< g:~4<g.~4<g"~4<g;|  p L|Nu     0;pIL+l  ( , 
Ь +@ $ ,  
+@  +@  Ь "- ,x N:;|  +@ g"@$I" 
&J ,  
A "/0;pzN vfJCg"m  - ,x N.` ^ K $I  , , 	 f  gSf`fr  ` fڱ f"H $H  صfp`     * t xa~< eBf^xar< efv`  vJg  `  xaTJfxaL\F`xaDJgx`x
a8SF6xa0W|f  xaJgxa< g"v< eFgJv`FSD| f* VQNuxa< gv`xaڼ< gv`xv
aFxaJfxt`x4< a܂2hW|g Nu* t xa  < eFfbxa  < efv`  vJg  x	`  xahJfxa`\F`xaXJgx`x
aLSF6xaDW|f  xa0Jgxa(< g6v< eZg| fjx4<	`j| fRx`RSD| f* VQNuxa< gv`xaڼ< gv`xv
aFxaJfxt`xaJf
8;p&4<`8;p"4;p$a܂2hW|g Nu 	 
  
    wZ  $  u      u,  uR        5    FreewaY 0.7 :| f:y f:88fpNup NuH?>*H(U+l| ( ,tЬ+@ $ ,xt",Ё+@ ҁ+@   - "- ,x N:;|  +@ g  A/lt"m $Iht&Ja  fJCg"m  - ,x N.;|  p `X K"m $Idt&J,ra  | f$Ka6 K"m $Ix $&J,p,qa$ f$KapL|Nu m "HصfNu f  gSf`fr  ` fNu gfNu g & C gSfS f`~* xaZJg  < efv`4vxaBTF`2v`< efv`xa*&XC`޼< eb0xa&XCxa|2hW`FSD| f* VQNuxaJfv`xaJfv`xaPF`xa&xaWGg XNu  x  %  w     w  w  w  w#     CrunchMania Data  PCrf 0( |M!g|m!g|M2g|m2fpNup NurҨ 
n (  
k Nup NuH?>*H$UrҪ 
;| p  nF * +@  +@ "- ,x N:;|  +@ g""@0* \J"$|M!g|m!g|M2g*`DpL|Nua h`a b m "-  SSf`a 4Jf"m  - ,x N.p `a Jf`  z  %  x  P  x  x  x  w$     CrunchMania Encrypted Data  Pcrf 0( |M!g|m!g|M2g|m2fpNup NuH?>*H&Urҫ 
;| p  n  A  
4 |;|   - ,g   @a  ܰBgp `| + +@  ~ >+ Ї+@ "- ,x N:;|  +@ gP$@A "m , + 
a  "J0+ "+ $+ 
/|M!g,|m!g.|M2gF`bJg m "H -  SfpL|Nua .`a . m "-  SSf`a .Jf"m  - ,x N.p `a .Jf`H@p r g@AA` || IALNuH&OUkF2 H@(IB#JfB#$  gB#O"Of"O(I4f"L4P44YQQ0| 4.KLNu  ~  $  z !    z  z  }  }Ѐ%     tCrunchMania Library a N fCrM. f( 2g< fpNup NuH?>BB*H U ( S. a |G 4 ( S(H;|    f XH$H K0S@r ҘQ +, *ЀҀ Ём   +@ "- ,x N:;|  +@ g V g&"ЁX$ "<  N:Jg ( @ ./H "m  HC J+gH>"+$+a L|Jf`  H8"+$+a 
L$L m    B B S "UC  Q    t  g,"@H AX  2UfL x ,o 0a  ,ԀRDGf - Ђ+@  (m  SGk<)<  YNJga  JGg(QJj f #刑)* )` #g) Sf))`p$  g"@ !,x N.PO L|Nu"m  - ,x N.p `H0@4 v r 0k8Bg0gS@TIJYfJQ`vp 0gPҀS@TIJYfJQ`JgP LNuH  gN L   0k>Gg0gS@TIJYfJQ`p 0g 2 0 v SAp 0f Ѐր Q`BL Nu  fpШ  ANuN fCrM. f( 6g< fpNup NuH?>*H(U<, 4p 0刟"O/ A 8"Yf, 6, 7", ,$, 0a  $I0, *C  H@Jga 	z`a pL@(;|  Jg  A02- a <;@ gp `l(UE SE|RF.ga^"SfQ  g06| <k&aD$I>gSG<a8"	&Jp 0f ЀӓQ`<a !B"@ !,x N.pL|Nu0"LS@k
"QQXINu  n  $    !      >  6  t&    CrunchMania Normal  a tNN fN$I fRFN fpNup NuH?>BB*H U ( U. a 6h<< f>(  ( (H;|    f XHxH gx 0( E  H&J K0S@r ҘQ , *ЀҀ Ём   +@ "- ,x N:;|  +@ g L g&"ЁX$ "<  N:Jg  @ ./H "m  HC JgH>"$a lL|Jf`  H8"$a hL$L m    B B S "UC  Q    t  g,"@H AX  2UfL x ,o 0a >,ԀRDGf - Ђ+@  (m  SGk<)<  YNJga XJGg(QJj f #刑)* )` #g) Sf))`p$  g"@ !,x N.PO L|Nu"m  - ,x N.p `   Pg
   xf"NN fN$I fRFN fpNup NuH?>*H(U<, 
 L02- a ;@ gp `  a  xH gx 0) 
TI,Ir 2剝"$$IHJJga `a pLR ;|  Jgl$N,ISE|RF.gab"SfQ| <k&aP$I>gSG<aD"	&Jp 0f ЀӓQ`<, 
SFa$ !B"@ !,x N."L* !N.pL|Nu0"L"QQXINu    $   !          '    CrunchMania Simple  a "$ f""J(z f*I f0"," fpNup NuH?>BB*H U ( S. a 0( E  H&J K0S@r ҘQ , *ЀҀ Ём   +@ "- ,x N:;|  +@ g @ g&"ЁX$ "<  N:Jg  @ ./H "m  HC H8"$a  LXJ V| H m    B B S "UC  Q    t  g,"@H AX  2UfL x ,o 0a ,ԀRDGf - Ђ+@  (m  SGk<)<  YNJga  JGg(QJj f #刑)* )` #g) Sf))`p$  g"@ !,x N.PO L|Nu"m  - ,x N.p `"$ f""J(z f*I f0","  fpNup NuH?>*H(U"Lp "g"AR@` L2- a ;@ gp `  tE 
"$"JH Ha L E,I|RF.gaNJg"Sf`| <k&a:$I>gSG<a."	&Jp 0f ЀӓQ`"L* !,x N.pL|Nu"L0"g"AQXINu  h  $                 (    ZCrunchMania Addr    p+XEWJ@k*pX"WJ@kX$fp0","gTHQ`pNup NuH?>*H U  p+XEW"HphNf (+@ (pYCWJ@k+Y $`p+@ $~p'AgTIQ~ $H +@  +@ "- ,x N:;|  +@ g."@"$JGfa  (`a Jf"m  - ,x N.p `pL|Nuz(I0","~@> vx ald&x ra   WEgNuxraNeraz@`aBerx`a8erx`a.erx`rxaR@| gmSDaer	t `(aert `SGf~0HF<"HFHNuNur4< aBG  #W` v0⮞AnC<"A{Nu      ?  ?H`` <  "<  ,x N:;|  LJg,@TNHaL"  <  ,x N.pNu&	0","~@> AtBQAI t	a  AI ta  GIa GI a ra  : A K(NaR  f48 I  MaBM2 4 frta`G #W|f#g# W|fra2f ^Nur SGg`~0HF<"HFHQ0Acl >A00 Nu0⮞An
| <"A{Nu      ?  ?H|ra: SEx RD2Bo2a0Q:SE2a8QL>NuH B\~xt v r<9C @0,@l @FF8JQL Nu  L  $                 \    StoneCracker 2.70 :W 0f:` 4f:] 8fpNup NuH?>*H(U ,  +@ +l  +l  (+l  $"- ,x N:;|  +@ g@A"@ $I~ | z ,,,&m ,,,a  pL|Nu  "  $  t               ]    0StoneCracker 2.70 Pro : f: f: fpNup NuH?>*H(U ,+@ +l  +l (+l $"- ,x N:;|  +@ g@A(""@ $I~ | z ,,&,'&m ,,,a  
pL|NuH   r Ѐfa|d  Ѐfarevx`AЀfabAvx| gv	RDa  1 W|gL  m ~  ggıfNug`gRGıW|gNu  D рNuЀfad&AЀfaA| g6a.8XD6`6a"^B8`va8SD| vaW` jt ЀfaBQNu    $  J     \          ^    StoneCracker 2.92 :  f  f; jfpNup NuH?>*H(U ,+@  +@ +ld (+l  $"- ,x N:;|  +@ g$E @"H  x ,/,&Oa XOpL|Nu    $         D        _    StoneCracker 2.99 :  f  f; hfpNup NuH?>*H(U ,|+@  +@ +l\ (+l  $"- ,x N:;|  +@ g$E @"H  x ,{/,x&Oa  XOpL|Nu    $                 `    StoneCracker 2.99d  :  fKT &f; h fpNup NuH?>*H(U ,l+@  +@ +lL (+l  $"- ,x N:;|  +@ g$E|p @"H  x ,k/,h&Oa  XOpL|Nuvz|."t f."d&2alԀFg2f."Q gNSf`raHr $ 3  Ef&f."e2a,ԀCgԆԆ`
2aԀFg2Ra0  gSj`NuSAp f."рQNu    $  *     <  b        a    StoneCracker 3.00 :  fC  f; ffpNup NuH?>*H(U ,p+@  +@ +lP (+l  $"- ,x N:;|  +@ g$Et @"H  x ,o/,l&Oa XOpL|Nu  T  %         V        J   =        f                                                                ~  }  |  {  z  y  x  w  v  u  t  s  r  q  p  o  n  m  l  k  j  i  h  g  f  e  d  c  b  a  `  _  ^  ]  \  [  Z  Y  X  W  V  U  T  S  R  Q  P  O  N  M  L  K                                                                                                                                                                                                    .b     StoneCracker 3.00 Data  S300f ( fpNup Nup S300fpNu"( ¼frҨ n (  k Nup NuH?>*H(UrҬ ;| p  nH , +@  +@ "- ,x N:;|  +@ g$E   @"H  x , /, &Oa  XOpL|Nuvz|."f."d(trajԀFgrf."Q gLSf`raDr $ 3  Ef$f."era*ԀCg2`raԀFgrRa0  gSj`Nup f."рQNu    $  |               c    8StoneCracker 3.10 Hf`  Df; ffpNup NuH?>*H$U *(+@  +@ +j (+j v $"- ,x N:;|  +@ g @E(a npL|Nu    %  &     >  h  >  Ld     StoneCracker 3.10 Data  p S310fpNurҨ n (  k Nup NuH?>*H$UrҪ ;| p  n. * +@  +@ "- ,x N:;|  +@ g
 @ a  pL|Nu    $                 e    (StoneCracker 3.11 6f`  2f; TfpNup NuH?>*H$U *+@  +@ +j
 (+j v $"- ,x N:;|  +@ g @Ea  
pL|Nuz|~&Z  N`Ѐf рe:v xt Ѐf рBQւGgxЀf рQ±ghSf`	
t Ѐf рBЀf рBr v ; Ѐf рAQEet v xЀf рCQԃFgV"HٱgSf` `Nu    $  @ !    R    "  Vf    StoneCracker 4.00   f2pШ  AK fI L fS j ffpNup NuH?>*H UpШ  A ( A  fPH` A;|  p   f0XH$H ( +@  +@ "- ,x N:;|  +@ g @ apL|NuS400g S401g xNu   pf"K fI L fS j bfpNup NuH?>*H$UBt* "J$R !,x N.QA "* H@pЪ C%!Yf a jLC2- ,o (Nr ;@ fr/"J !,x N. L|Nu  t  %         $    Lg     StoneCracker 4.00 Data  p S400fpNuH?>*H$UrҪ ;| p  n. * +@  +@ "- ,x N:;|  +@ g
 @ a pL|Nu     $   !          Vh    StoneCracker 4.01   f2pШ  AK fI L fQ ffpNup Nu   pf"K fI L fQ bfpNup Nu  n  %  H     `  $  `  Li     StoneCracker 4.01 Data  p S401fpNu    $                 j    \StoneCracker 4.01 Addr  !  Jf.@I PfE  VfpNup NuH?>*H$U *L+@  +@ +j 2 $+jD ("- ,x N:;|  +@ g @ELa pL|Nu  B  $  F     ^          k    DStoneCracker 4.01 Addr !  Jf.@I PfE  bfpNup NuH?>*H$U *4+@  +@ +j 2 $+j, ("- ,x N:;|  +@ g @E4a  pL|Nuz|~&Z 0N@`@f0@e<vt x@f0@BQBFgx@f0@Q±WGgNut x@f0@BQv r ; k@f0@AQx@f0@AQEet v x@f0@CQԃFgT"HٱgSj` PNu~&Z 0< t @f0@e:v x@f0@BQB_Bgx@f0@Q±WGgNux@f0@BQvr ; @f0@AQUetv x@f0@CQԃ_CgX"HٱgSj` dNu    %  j           $l     StoneCracker 4.03 Data  p S403fpNuH?>*H&Urҫ ;| p  n0 + +@  +@ "- ,x N:;|  +@ g @C a  
pL|NuH?>(~ <z>!Q >!|Oe>0QFj
6>!EᯎCeL|Nu        !   
!   !  0tUFjo>!EGJ0L 䏜Aj
6>!EᯎCGQ >!|Oe@Q >!|Oe2Q >!|Oe$r 0tWFj
6>!EᯎCGB_Bg"Q""""e .L|Nu    %         @    $n     StoneCracker 4.04 Data  p S404gZ&G!fpNurҨ n (  k Nup NuH?>*H&Urҫ ;| p  n0 + +@  +@ "- ,x N:;|  +@ g @C a bpL|Nu    $         6        o    StoneCracker 4.04 Addr  N{ Vf"C  tfL  fS404fpNu  0o,NqE  f"C  (fL  6fS404fpNup NuH?>*H&U K - aS@g+k  $+k (G`+k $ $+k (G +@  +@ "- ,x N:;|  +@ g
 @"Ka VpL|Nu  @  $   !      `    m    StoneCracker 4.04 Hz H $f"N  6fE xfS404 fpNuHz  $f"N  6fstc. HfS404 pfpNuHz  $f"N : 6f stc RfS404fpNup NuH?>*H&U K - a h2<S@g
rxS@g2< ( r,x N:;|  Jg V(@ L"Ka B~ L Rހ0  gH@0ހ`<J@f8P0HdRHr 2g(THP ހXHt< g
t< otSA`Pf +@  +@ "- ,x N:;|  +@ g   L"@"  B R"B"$I"Sf0 g"H@0"<   gRA""g"SfXJ`\J@g"   ?"`FYI"  0HdRHr 2"g.p 0"t &Ƽ `p N  Hր"SAf`"  Pf np/  "LN. L|Nu   Tf<Hz H f  N  f   g   @E f|S404fppNu   $fbHz  fXN  f" gJ @stc. f< ,S404f0pNuN : f" g @ stc f S404fpNup NuH?>*H(U La :;|  Jg BC /a $_pa  G,x ;|  <- .JFg$"<  | g("<  | g;|  p `  rHA2Y| |  T& N:" &gvR&A&Q|2f60
HdRJ2gH0an 	&Ɔ`x N  LքѰ8 SAf`RGHA g2g0a4 I`"YjRfpa  "*Bp/ " o ,,h &Nd L|Nu"LR@"QQXINuH?>*Hx zL FDG I pv`$QGj2PG<!DAPGHFHFT `
^T dr<!~FdQ <!~FedQ <!~rvFe,Q <!~FdrvM `vA| eBrvM `dvr,L`\AFW 2f*g"QTeL|NuQ <!~F@Q <!~FeQ <!~r	E  Fdr$H`E 2,K̄AjG2<!DAE"HANv` &^<!HFHFUCngPG`A;p
jQGQ    %  h           6     IAM Packer 1.0 (ATM5) Data  p ATM5fpNurҨ n (  k Nup NuH?>*H$UrҪ ;| p  n@ * +@  м   +@ "- ,x N:;|  +@ g"@rҪ Sf @a hpL|Nu  Z  $  8 !    N  ~    
7    xIAM Packer 1.0 (ATM5) Hzr $f"NRf2PfATM5dfpNup NuH?>*H$U * +@ "- ,x N:;|  +@ gAd"@+h   "("Sf @a pL|Nu  <f,Hzr f"NRf2PfATM5fpNup NuH?>*H(UB TXH ( H瀂a DLAC2- Nr ;@ fr/",n &Nd L|Nu  $  %             8     IAM Packer 1.0 (ICE!) Data  p ICE!fpNu"( n (  k Nup NuH?>*H$U"* ;| p  n> * +@  м   +@ "- ,x N:;|  +@ g"@"* Sf @a pL|Nu    $  L !    b      9    HIAM Packer 1.0 (ICE!) Hzr $f"NSfH fICE!4fpNup NuH?>*H$U * +@ "- ,x N:;|  +@ gA4"@+h   "("Sf @a >pL|Nu  f,Hzr f"NSzfH fICE!fpNup NuH?>*H(UB TXH ( H瀂a LAC2- Nr ;@ fr/",n &Nd L|Nu/NRXH K/ (MI ,HSN&`  :UgdCDE`$|a\g`|aTg| `&`|aB|CI44fHf&e|`<|a"J*g2P`   f`<  `~BEf&EQJENu|a84@HJ*fXF`.a2I|a̺< m| ag
|aEA`*`2P:`aDgt@IP$$Q`f&e &fgZ| a vg &Crt fTATAQP`Q| a JgCpQP`QBC&&H&&M` M,,,,QNZ*_Nu   `````` NSHI x,LXH K ."Npw!Q&N%aZ*Ka  d8><a  xdpa  z>|8#zD@DADBDCQQH QLSfpw#QLN[Nua*d"r a$dC v !a"H@@Vҩ %QnNuf%Nur f%AQNuC taTx r 1 Hka1 Ag"C vtaTr 1 HaBq jD`r ptadpt?aBC@!!Q` R                       	                %         4    2     "DragPack 2.52 Data  PBHf ( f ( fpNup Nup PBHfpNu ( f( ( f"( n (   k Nup NuH?>*H&U"+ ;| p  n   +  +@  +@ "- ,x N:;|  +@ gl"@(I  YOp + 
>riSA?A | + ~oSGz + phE O&O,KB^S@ Jr Rv<^CS@f U M  a O $pL|Nu    $   !    "  H    3    DragPack 2.52 Hz F  fI (f$H"H 6fpNup NuH?>*H&UE 4$+ @&+ F8+ <z +  + R+@  +@ "- ,x N:;|  +@ gf"@"   J(I.	/| + y>+ YOBk  ?k  ,Op + GP : a XO.a  $Jf"m  - ,x N.p ;|  L|Nu m  ( A4C g@g<g*gFgvgp Nu <  gaTUH `!@pNuaDUH   XH`a6UH    `a$UH   t  gr 4a 4҂a Sf`$G5b fTNuaUH    g bA`  |m"Hz F fI f$H"H fpNup NuH?>*H&UBA $+ $&+ *8+  z + "H$HI@ HĔH | + ]>+ dBk  ?k  ,Op + wGP : a RXOL LC2- a  "r ;@ fr/",o ,Nd L|NuH?>BHLAK $*  ,x &LJFg "<  | g$"<  | g>< `  rHA2Y| |  T/ N:"~Jg   @  &&HSftg  0< e&g6< g6< g< g><  `V gE`R"a4 g"Sf`RXJ`"a&I g2a(	v r 2ցٳ8 Sf`"L"QSAlXINu$B,x g"B$ !N.`~ p 0L|Nu`Bf4 D Bev 2aNրGgraF W|f42a22  6 a*Cs0 v 8 2aրn gR1@ W|gNup Bf4 D B@SlNu    %  >     V    V  n[     TurtleSmasher 2.00 Data p T.S f2.00 fpNuH?>$H$  <  "<  ,x N:JgF @"HC  !I !|    PB PH a @L& <  ,x N.p n L|NuH?>*H&UG `  |    $       &  L        Z    2TurtleSmasher 2.00  Cz fE fGn fpNup NuH?>*H&U+k $+k (G* <  "<  ,x N:;|  Jgl(@"@ IC  !I !|    B PH a  LLp  	+@  +@ "- N:+@ g L!@ B(H a  Lp p/ "L <  N. L|NuHP,h  NC`Enpv rt><<025BBQ| .<  z NCzEGnxt2<;0X2466DBQ2Bn^*_ U"m ,m *NInG`xz<`DGoDJ-f`RI>+Fd>3p[kz<`>3p [jQ <zm gT04p E  2D4Zc<ZbY$
;  423  k99 63  k907  90 7  04  f`04  fG l bGnNu^_Edv 6HCDE2HC<DEtB`r BQ <z6C6;0FBBBKFAQ z<QA ?CEєDG|OJ-f
Q` RIQ`                                                                 								







  !!""##$$%%&&''(())**++,,--..//0123456789:;<=>?  `  $   !           PU    Titanics Cruncher 1.1 h *f hfE 2f  jfpNup NuH?>*H$UE~ `    f,`  l f"   fE f  JfpNup NuH?>(P~ `     $   !        "  `V    TTitanics Cruncher 1.2 h *f h>fE ~f  fpNup NuH?>*H$U~ jFf~E@&Jz " Rڀx $ļ ڂo(Q "<  ,x N:;|  Jg  (@ J$K"Jf  `,  g"L/Ga &_ gPPڀYH fQ "LN.+E  +E  "- N:+@ g   K"@"  B"RB$"&&I "  ¼   "QJf"   ?"`8"   ?"g/Ga F&_ g"  ""Q fB"  QpL|Nu  f,`  h f"   fE ^f  fpNup NuH?>(P~ lFf~ ,*O/"MrQ+n & ", +A  t 4, 6v,m N <   r ,x N:;|  +@ g Bм   +@ (a H,E $B&8-   (fa ."  P$ JDg""<  | g$"<  | g;|  `  ¼   Ҽ   /N: _Jg  X" $$A%BQBGI $(T  (fa  JgVC  )QJgHa    (fa  Jg4" (fa  C $"QQ$	X" (fa  bմSf`Q",m Nd* $p`E $ g$@"J !N.`/ "m  <   ,x N. "_rQ ,L|NuHB"-  $- &<   ,m N BLBNuH xE p fNe@fNe,ran6rahJGgF³WDgLNuraL6PC`raBTBDBv`ra6| ngrBvBa$CRBDB  W`ra6TCraVBDB`t fNRQNu D Nu  (fa ,D Nu  &  $   !    .  T    R    Spike Cruncher  ; xf{ vf; vfpNup NuH?>*H&U + 2+@  м   +@ "- ,x N:;|  +@ g2A$@  /
 "J 6/	I&a  0+ :"_$_ m a LpL|Nu  `f"; xf{ vf; vfpNup NuH?>*H&UB"SXI$I/	 +  /
E A !Sf"J /	I/a  B,_0+ "_$_ Wa   _ + C2- Nr ;@ fr/",n &Nd L|Nuzvald,t afdptUB4  abt V4 AسWEf<pa:dS@fBA4 ka44 Axa*$4 Ba t ",I޳WEgNufNur aASjNur @ft gRBWJBjfNu  @  $  N     b          W    TryIt Cruncher 1.01 - ! f- # f-  fpNup NuH?>*H&U ++@  +@ +kf (+k $"- ,x N:;|  +@ gP <   rN:Jf"m  - N.p `0,@"@A0<"Q-m  Ca"N <   ,x N.pL|Nu$n  . &. A $ (H~*!(!&Hp| SGj~*(!S@f
 ܆| <| d܌&F`Sf"n  .  I$I p ". "f"gX"  `N. !fx`. #f
xr "g4`&.  f
xr "g$`. fx "gr "Y"Y&H#Q` m n "H !. g. 	g! nNux !< d!`. 	f!. 
`!!Q`    $  h     v              8TSK Cruncher    4f  f   fpNup NuH?>*H&U+ M+ UA"H RH t g^ gg0R`J fR`p r   g ` I  ԀQ`J fR`p r   g ` I  Ԁ` +R+@ $+k ( +@  +@ "- ,x N:;|  +@ g  "@RIA$H RH gx ggB`J f`p r   g ` I  S@H瀀 QLQPOSH`J f`p r   g ` I  S@1Q`pL|Nu    %       &  F  &  4     LightPack 1.5 p LPv1fpNurҨ n Nup NuH?>*H$UrҪ ;| p  n\ * +@  +@ "- ,x N:;|  +@ g8"@XJ$XJ< gSf`* H* * S@SgQXJ`pL|Nu    $         $              Crunch Master 1.0 PTV FfhTV NfE z &fpNup NuH?>*H&UA $H ]Hp 4<TVv SCPfh fJCgv2( ]TQ`TUHd+@  +@ "- ,x N:;|  +@ gVx A $H ]H"@  SDPfh fJDgx0( 2( \I3Q`3UHd + <  +@ $Ы +@ (pL|Nu    $          F        !    HQC Compressor 1.00   8fK Lf  fpNup NuH?>*H$U *+@ $+@ ( *+@  +@ "- ,x N:;|  +@ g<A"@&H(I*fr gUAgQgcpL|Nu  ļ  $                 "     xFlashSpeed 1.0    6f  <f(  BfpNup NuH?>*H&UA p+k * (+k * $p r tRff( gSRH`THgRHЁ`+@  +@ "- ,x N:;|  +@ g8A p"@p r tдff( gSIRH`THgSAQr `pL|Nu    $                 A    MaxPacker 1.2 N] ~f;p f;p fpNup NuH?>*H$U *+@  +@ +j (+j $"- ,x N:;|  +@ gxA&@(* "4***O(O()j D )j  )j  )j  )j< )j@ )j4 )j8  )jD $)jH ()jL ,/a  *_O 0pL|Nu,K *$K f  JBg
SEk SBfSg~C Nf eNNu]IQf d ~`,~f  Q\ ~`p~`p~`
p~`p~ 6f df d| 4pX`f B`|4pf BSfF| :F>f dCf d:t0P`:t0X4p$j < gf FSfRF˽f*JSEk %S f`   J  $         @        4    (FCG 1.0 N  Xfvt fRBB fpNup NuH?>*HO(O$U * |(r,x N:;|  )@ g  @CG$Ha   l "HC f 4( A fp Rgfr gЁVH`)@ rN:)@ g   @$l &JG f >* ,* 6E f*a  "l N.( )l   l "H+h 4 $+h j (C n &4( A np ggR`r gRHЁ`+@  +@ "- N:+@ g @"l $IE n &>) C na  p/  "l N. O L|NuvtgtRBBf0t He6RBBf0t He"xz r RBBf0t HQQE3 `xz`RBBf0t HdRBBf0t Hdx:< `xz(`xzH`Nug( ff`p H@HЅ"@Sf`Nugg`g
Sf``Nu  ʘ  $  r     Ʉ  ɪ        S    Syncro Packer 4.6 Af  f   ,fI  fpNup NuH?>*H,UO(O+nT (CX$Lp$Qn' 0A $  ` v P 1a )C 2 r,x N:;|  )@ 6g   UA"@ $  ` B, 1a  l 6+P $(  2P 1a +D  +D  $ "- ,x N:+@ g"@ l 6(  2B, 1a pp/ "l 6 , 2N. O <L|Nu  *  $                 T    Syncro Packer 4.6 Pro Ef `f   zfI  fpNup NuH?>*H,UO(O+n (C$Lp$Qng 0ni :A . r hY$  v P 1a  )C 2 r,x N:;|  )@ 6g  "@,UA . r hY$  B, 1a  n l 6+P $, : 2P 1a H+D  +D  $ "- ,x N:+@ g"@ l 6, : 2B, 1a p/ "l 6 , 2N. O <L|NuaHg@aDf(pa@T< fpa4Z< fpa(P< fpaSEJ, 1f `SHRQmNuB@z Jf~ SQB@JNuag6xGM pa3P 26P aA$ISDJ, 1f"`SJRQ` bG M  afx`paX< m2fpa\`(paP< 	g< fpa p< (`
pa d| H8`, 0x p  ggRJ, 1f ` B`
 < g RJ, 1fQ`Nu    $  R !    d  ͔  f  ΤX    8TurboSqueezer 6.1  z 2f" 6f : Ff PfpNup NuH?>*H UGpГ"+ EЁЁ+@ "- ,x N:;|  +@ g  "@"  B + "BS"/	A  + "U"Sf J$I(I a $+ "J$_ |g  XJ |f( g"""` LXL!` f ?"XISf +L  pL|Nu   f, z f" f : "f ,fpNup NuH?> *H U.G P,H"XXI/I  + /I  $Ia  .+ G "N !,x N.,EB(o ;|  :-  " $ JEg""<  | g "<  | g;|  `  t2< HAIIN:(g  `" R$$@$SfB(o &o  [PH |g g"H"Sf"o  |f$g" 1 P"Ѱ Sf`Sfp`E g$@"J !N.`$ "o QI N."W !N.  L|Nuz|?~ v faldBfadet `&faXetr `faJdtr`rtaF6 @ra> WEf&Fgfae<ra"6 raT@10 WEgNu. D Nup f. D PQNufae
ra6 r`faer	t@aB1  g1  f :Nufaert `faerar6 a| 
` trar`    $   !      N  <  zY     TurboSqueezer 8.0  z 2f" 6f"X(H :f(	,	 PfpNup NuH?>*H UG <  갓g g 0g;|  p `  PKpЫ "+ Ё+@ "- ,x N:;|  +@ g  "@"  B + "BS" K$I (IPHa  $+ "J "U"Sf |g  XJ |f( g"""` LXL!` f ?"XISf +L  pL|Nu  m, z f" f"X(H f(	,	 ,fpNup NuH?> *H U. P,H"XXI/I .(  &I/I ѯ $I PH/a  .` &z|?~ v އfaldBއfadet `&އfaXetr `އfaJdtr`rtaF6 @ra> WEf&Fgއfae<ra"6 raT@10 WEgNu. D ߇Nup އf. D ߇PQNuއfae
ra6 r`އfaer	t@aB1  g1  f :Nuއfaert `އfaerar6 a| 
` trar`  $  $   !       Ժ    ̀M    ProPack (RNC) a  RNC >g RNC *fHHz8f<I  <f2pNuHz^gHzgHzjgHzfI  PfpNup NuRNC $fHzg HzgHz gHzgHz"fI  6fpNu  frҨ  ANuH?>*H U&( a  T&H"th fXA `(hRN gX ( ԀA`Ԩ X ( VPXSf +@  +@ "- ,x N:;|  +@ g  $@$  B$B$S,U (J  ?$|f
XK$($`|kRN gXK $g$Sf($`` + $( XNA " + a k fJA "Jp Hz (  g XOa $ J + a |k f $   + VSf fp`"m  - ,x N.;|  p L|Nu  mbRNC Bg"RNC .fRHz8 fDI  @f:pNuHz^ gHz gHzj g
Hz fI  TfpNup NuRNC (fHz gHz  gHz g
Hz" fI  :fpNuH?>*HG"S& !,x N."Kp "g"AR@` K2- N  ;@ f  ;|   g &@kRN fA  + a $k f  p + Ы A + C 	   gRIRH    gRHE CL H b5+ %+ %+ %+ %+ ?+ /+ /+ C  Jp Hz (  g XOa :A  a "_f:C  f*B"g$B BA PQXH$ BճSf`` $"B$ !,x N.JfBp `pL|Nu  4  %  L     `  ؤ  `  ؈N     ProPack (RNC) Data  RNCf(  fpNuRNCf(  gp NurҨ n (  k Nup NuH?>*H$UA  * a j g
;|  p `f * +@  +@ "- ,x N:;|  +@ gB"@ JHz (  g JXOa  m  -  a Bj g"m  - N.;|  p `pL|Nu  t  %  \ D    t  ٜ  t  ؈O     ProPack (RNC) Data Key  RNCf(  gpNuRNCf(  fp NuH?>*H$U - ,g @>f;| 
 p `  A  * a j g
;|  p `h * +@  +@ "- ,x N:;|  +@ gD"@ J0Hz (  g  8XOa  m  -  a 0j g"m  - N.;| 
 p `pL|NuH?>O$O? G *I ( M ~ + ^pra  8|2z J g
:fa  :  Ja  A a  A a  ah8 SD`&A p ajDCA a^ٻg>ٻWLf2 JaHS@k$WLf]+ XriSÁQ`OL|NuprFla:Nu0FXf( <la$( =< mS   0( >FlaNuHFXK#^#HF~NupraS@k|4 6 O"OpraQprt H 8C f:zmSE0*HE>SGUVQzn0A <E =|SnSF1F >ԀQR< fL O NuHG *I~x d  8 f  pfDQ`  `Z```````fzfFQzFESEQ\`jfEfdSEgE 	ggdgFgetJFfRFgF^ MSHMdSEJFfQ`Qfe\fdz| g.d rg,dREg*dg6PE` |g F F ge``````feL(NuH0 $ p " Iv C0;0@SfL Nu  @AA ā@A ΁@
 ˁ@	AA ځ@ ߁@A Ձ@AA Ё@01A3 2@6 7@54A< =@?>A:;A9 8@( )@+*A./A- ,@$%A' &@" #@! A`aAc b@f g@edAl m@onAjkAi h@x y@{zA~A} |@tuAw v@r s@qpAP Q@SRAVWAU T@\]A_ ^@Z [@YXAHIAK J@N O@MLAD E@GFABCAA @@    $  ߜ     ߮      y    Old ProPack (RNC) a RNC f"E  fM  (fRNCfpNup NuH?>*H -  UPH"PHXH"剐Шg  k  +@ "- ,x N:;|  +@ g  "@ U - "- &II M ""fL """"SfH " a .L[ g(XH "`c"عf 	+@  r p` - "m ,x N.;|  p L|Nu  m,RNC f"E   fM  ,fRNCfpNup NuH?>*H(UH 
A" C a  LP f"B,n &Nd;|  p ``v A  f2&C8   f""g E$RQXJ$
 հ Sf`$$QPLJg(YnJgkBYnpL|NuM G (O&a4REe~gxa  a  SFEp JGfE c  `c  Z"Q`zaZdDz aTd,rBE;DHtjFBS@a>UQJAgEV;(H@?cc&Q:NupNu.Lp Nu
fc&NupadQBFR@; gHSAaVQ; HANu
  
~ | g"padQR@; ,HaWQH{  NupBAadpr@aWQANu          ^  $                 P    HST Cruncher 1.0 C fI f4 @fpNup NuH?>*H$U *<+@  +@ "- ,x N:;|  +@ g"@A<~ a  pL|Nu  H  %             㪀Q     ST Cruncher 1.0 Data  p STC fpNuH翾XHC ~a  RUHL~p ɱn NuH?>*H$U * +@  +@ "- ,x N:;|  +@ g"@A ~ apL|NuI/" Jf"Yp tatgBUCkXfajgUCg  k  x `Ht`aT$V)aJ4  g(m4 JfSf`aXta*JfSgSfJfNu)a:JfSgSf`&J@gB| m| TH,<  ̼  ƆNuta*| 0m(t| 6mg| 7na*HEa:`| taRNuzNuz`zta| g n| fE `(LHHD$a lJfة"Yn` < @    %  p     |    |  劀D     PMC Normal  p SFHDfpNurҨ n (  k Nup Nup H?>> *H$UrҪ ;| p  n  p C ,x N;| 	 Jg  (@ * +@  +@ "- N:;|  +@ gnp,LN, gP FC  !j  !m  !j  N;|  /  FN   fJGg m  -  SSfp`"m  - ,x N.p / "L,x Nb L|Nulh.library      %             劀E     PMC Sample  p SFCDfpNup`     $   !      N  t  輀p    Chryseis Cruncher 0.9 h *f*hf"  _ BfN FfI\fpNup NuH?>*H$UtA & ԀAP02|fXH`|g  Ԁ` ԀX  gX gRԀ`Sf +@  +@ "- ,x N:;|  +@ g  &@&  BE & T@&Q02B[6|f &`8|g&""& J"KH/
E :a $_` &&Sf &|g &gR&Sf`SfpL|Nu					


	
	
	
  f6`   f,   f"  _ "fN &fI\fpNup NuH?> 4*O/"MrQ+O $B (+n & (U", +A $,v,m Na +@ 0a +@ ,a  - 0"<  ,x N:;|  +@ (g ~| a 4- JBgr| g$r| g;|  ` r   gr  grP$&m ('@ N:;|  &g  R 0f| ,m a "* a & |gL  m ("- HE|g&$P&J$
Nְf  PK"KMAxHa `&PPK$Nְf  pa  İ  g.a  . ga   ,"  m ( PPH$a  ճ Sf`R 0f `",m Nd m (E,- 0"X" 	$$ISfB~`,~ *- (g6,x |   E g
"@ ( N.R 0f"m ( - 0,x N. .m $"_rQ 4L|NuHp"- A  $v,m NYg;|  ` -  LCNuH<0xz&I" Jga*Sa e>t pa&AWAgpaWDg"`ZgNu* NuS@r f* QNupap 2 4WAfaepa6paA_Ag`a6RB10 WDgL<Nu  J  $                 r    xGNU Packer 1.2  K2 $fMF (f m  ,fpNup NuH?>*H$U *hd+@  +@ +j X (+jd $"- ,x N:;|  +@ gI\Ap &m   a pL|Nu    $  r               s    GNU Packer 1.2 Seg  K2 (fM   ,f m  2fpNup NuH?>*H$U *lh+@  +@ +j ^ (+jh $"- ,x N:;|  +@ gI`A &m   a  pL|Nu    %  0     D    `  nt     GNU Packer 1.2 Data GP11f ( fpNup Nup GP11fpNu ( f"( n (   k Nup NuH?>*H$U"* ;| p  n> *  +@  +@ "- ,x N:;|  +@ gI  J &m   apL|Nu,K|x~z" Jgf* 赒$Kf* e<t pr f* QAFgpr f* QWJBk`  pr f* Qp 4 4Ff:f* epS@r f* Q6pr f* QAGg`S@r f* Q6D"KRI!WJBk : m , ,  g,v g& gg`g`gt Qv `Nu  D  $  F !    Z    B  vw    JSuper Cruncher 2.7  N( Xf& \f  fpNup NuH?>*H(U*,$,ڂ r ,x N:;|  , g Ђ. $GA $Sf GJf@"fXHYOX X X  X X X "HH a L ` J$, vրr  gP`  gP  gX`XSf G"F(, "P$ ļ    U"",I""Jg"|g|g/JfSf _ րJgYHSf +@ +@  "- ,x N:+@ g  ~"@"  B(,"B"S F " Sf&FXK""  ["g|g"Sft "g("  ` "g,IXI"r  "gR"`,`B"  Sfp$  "F,x N. L|Nu  f"N( 8f& <f  fpNup NuH?>*H.. &(U*,d r ,x N:;|  , g :$F T  QPH$Yf FJf>"fXHYOX X X  X X X "HH a  L `(,l",GNd,x IB$6- &FJCgr| gr| g;|  `  zr 2Y|  XK / N:"Jg  X @  ((HBQg YfJgYKSfGt&S "gA PQXH" "gӳ`Sfp`I B,x g"@$ !N. `$  "F,x N. L|Nu|g| ng  | \g `| g NuYOX X X  Њ.&O QH0<  Qvp ra    fJ fr a   `vp ra~T  `hr ar< fp raf\  `P< fp raR<  `:< fp ra<<  `$< e< ,J ? `< > d h $_NuQ vQNuYOh h h &Ofp V@r,JQ`4+ fp r SX@`+ fp r SH`ʰ+ feXONuYOh h h &O+ f`0+ fr t 6x H RQQ`frt`eXONu]Oh h h h h &Ofr VAQ`N+ fr IҼ  Sf`0+ f
` + g+ fBBB`+ f`e\ONu    $  l !          x    Ultimate Packer 1.1 h &f*hf"G fE f?XfpNup NuH?>$H <  F"<  ,x N:5|  Jg  *@+J 2"Mr1Q&U + <   +@ 6E Fz t a a N,a Hp4+D >fp$ІЄ+@ +@  "- N:+@ g|(@(  B(   BB "  6((  (+L :܌a  C Ba  C Ca  C Da  C EaPe(  .- >g(Ba  (SfB(  `\p"m 2 Mr1Q$ "M <  FN. L|Nual- Cg- Bg- Dg$- Eg>NuaNp QNuaB>a>QNua4HRHaL$SQNua>a" m :AH QNuv &20 ka,fHC`Nux aaaNuQBdMPB NuSBd|  MHEMNu(Jx ?XaTONua2/ 9 Nuaf0/ 9  ?XaTO0/ 9 ?XaTONu  f*h 
f"G xfE f?XfpNup NuH?>&N$H <  N"<  ,x N:5|  Jg "*@+J 2"MrQ+k & 6 U+h   >"( +A :$<  v,m 6NGNCJENz t a a V,a P+D B0- J@g "<  | g"<  | g;|  `z"- > P,x N:Jgf(@(PB܌+L JCJa  C Fa  C Ga  C Ha  C IaZe(m J,.- Bga  ݴH Sf",m 6Nd"- JY*p"m 2 MrQ$ "M <  N,x N. L|Nual- Gg- Fg- Hg$- Ig>NuaNp QNuaB>a>QNua4HRHaL$SQNua>a" m JAH QNuv &20 ka6fHC`Nux aaaNuQBdANfa~MPB NuSBd$cPBANfQBa\|  MHEMNu(Jx ?XaTONua2/ 9 Nuaf0/ 9  ?XaTO0/ 9 ?XaTONuHG N"- :$&<   ,m 6NLCNu    $         V        |    XCFP 1.35/1.36 aVC pfQpNup NuH,x A.   , <   r N:* f3  `"E G <   N  fpШ  ANuH?> (O*H Ua."Lp-"Q"U   .    . !Sf//- /- /- ?- *     MNJg MN U;_ +_ +_ +_ *"USf   . U   . r-"Q L|Nu      %  $     <  ,  <  z     SA/SC/SF/SP/SQ Cruncher J( f\PSCgPSPfJ( fJJ( fDpNuPSFf
J( f4pNuPSQf( g$W n pNuPSAfJ( fJ( fJ( 
fpNup Nu"@PSAf*J( fr 2( Ҽ   Ҩ 
`\rҨ eZҰ `LPSCfr0( Ҽ   Ҩ `2PSPfrҨ `$PSFfr
Ҩ `PSQfr
 (  Ҁe Nup NuH?>*H$URSFf * `RSQf * ^|`
;|  p `(+@ +@  "- ,x N:;|  +@ g"@ JapL|Nu0|SFg`  z&ITH  f D d   f D dX f D dR f D dL f D dx	`xtv|2SA~  f D GQGCfRBCRC`2`r	|`
r
|`r|SA~  f D GQEp SF"W`4tv|2SA~  f D GQGCfRBCRC`SF WEg "Nuv$ITH / ^| "    HA?ra6<RF:< 2a*WCf4x Ѐf  DрdRD`RDLeDDD`SA~ Ѐf  DрGQNu2 | g<| g| gx 	dDSSfNux z 	dDSSfNux 	dDSSfNu                              `  \  X  T  L  D  :  6  2  .  &    $             ^  Z  R  J                                  d  `  \  X  P  H  z  v  r  n  f  ^          ߐ  ߌ  ߈  ߄  |  t  P  L  H  D  <  4  @  <  8  4  ,  $                             F  B  >  :  2  *  ʬ  ʨ  ʠ  ʘ  ^  Z  R  J                ļ                                       T  P  H  @  :  6  .  &      
        |  x  t  p  h  `                      2  .  *  &                               @  <  8  4  ,  $  v  r  n  j  b  Z  ,  (  $         \  X  T  P  H  @                                  ^  Z  V  R  J  B  2  .  &      ~  v  n  <  8  4  0  (             |  t              4  0  ,  (                           h  d  \  T                  
                    6  2  *  "  `  \  T  L  |  x  p  h                ~  v  n  ~  ~  ~  ~  ~  ~  z  z  z  z  z  z  x  x  x  x  x  x  wv  wr  wn  wj  wb  wZ  u  u  u   t  q\  qX  qP  qH  o  o  o  o  oJ  oF  o>  o6  n  n  n  n  n   n  n  n  ml  mh  m`  mX  kp  kl  kh  kd  k\  kT  j  j  j  j  j  j  hN  hJ  hF  hB  h:  h2  g  g  g  g  g  g  f  f  f  f  e  e|  ex  et  el  ed  dZ  dV  dR  dN  dF  d>  `  `  `   _  _  _  \  \  \  \  \  \  [~  [z  [r  [j  Z<  Z8  Z0  Z(  X  X  X  X  X  X  WB  W>  W:  W6  W.  W&  V  V  V  V  V  V  V  V  U  U  U  U  U  U  U  T  T  T  T~  Tv  S  S  S  S  S$  S   S  S  P  P  P  P  O  O  O  O  N\  NX  NP  NH  M  M|  Mt  Ml  L  L  L  L  K  K  K  K  J  J  J  J  J
  J  I  I  I  I  I  I  I  I  H  H  H  H   G  G  B  B|  Bx  Bt  Bl  Bd  ?L  ?H  ?D  ?@  ?8  ?0  :  :  :  :  :x  :p  5~  5z  5v  5r  5j  5b  /  /  /  /  /  /  -  -  -  -  -  -  ,"  ,  ,  ,  ,  ,  )  )  )  )  )  )  '  '  '  '  '  '  %  %  %  %  %  %  $  $  $  $  $  $  "  "  "  "  "  "  "  "  "   !  !  !   t   p   l   h   `   X  (  $                       N  J  F  B  :  2                                       n  j  f        v  r  n  D  @  <                  |            
                                                     x                     \:                                                                                                                                                                                                                                                                                                                                                                                                              3  SCRIPTS                                                              x                     +                                                                                                                                                                                                                                                                                                             G                                                                                                  VirusZ_II.ZOO_Script                                                     .KEY PATH/A,FILE/A
C:MakeDir <PATH>
CD <PATH>
DH2:Tools/Zoo xqO <FILE>
>  =  <  ;  :  9  8  7  6  5  4  3  2  1  0  /  .  -  ,  +  *  )  (  '  &  %  $  #  "  !                                               
  	                           	                                                                                                  xfdmaster.library                                                      J        H      3*                                                                                                                                                             H                                                                                                  VirusZ                                                               x                    {    ;  @        {A ~C:<A 8<UUt"zaG0f
ҁ"Aa`g$J@g6`pyHA1p iHAHA1p TINu6 DECFGfEN,x n % mN zxHh Nu$VER: VirusZ II 1.33 (3.8.96)
     .  ڀb   B     z  R(        $            Ԁ ր                  P             r            L              b   N   >          	n     n ʀ ( &   @                  L                \
2   4   BB     P     
   4   BB   4   <      @     ~
&             `         0         p X      $ (       h      |      Vl                     P & 0 0 0 0 0 0 0 0    b     \=T  (~X|`  H    :  < ڀ*                      ӇۑUSQQs̞)[?C Կ/CԿ׼YٱQ'Կܞ]߿ԗԗԗԗ~ڱQ'ԿͼڱQ'ԿўkUS߸͵US	yӒ  5RQ GԿ߃ӇQ%߿OC̓    ͱQ%UYޭӒQm͍ӒQ żӇQ﬽݅cӇQCӇݒQݒQݒQxӇQ ݸQy   2
ӇQASQ'[s߹l6ӺQ w߻޺ރ//ܘ-=GMIAŞ_A߻ӺQ ݺӇQ߹Q ݁ڃʃӒQ5QٟՃUyc]}KyUcoݰ_}'  ''''Ui錄yyky﷕ݰ:7Q;	OCQٟQA ߻޶׏ӺQ  ӇQ߿ݻQm߹Q߹QsO{ݿQy߻߻ӺQ  ߻߻ߪߺۘ#ۿӒQ }ӇQ'CߕӹQ M]߸ɘmߺ]ӹQ _ӒQ/RߺwӹQ _߿'ߺӹQ _߽Q e[߽Q e[ߺӹQ _߿W'߸Q YݹӇQ a߰g7 ۰ӒQ;߿ԯ߿'߿ [E[ pW[߿W'I߿',"+߾4۾=ט߿',Ә\,Q QًQY!ϳ s?O}M M бдӼдӼдӯдӹ¹дӻ»Ьӻ»ЬӪªЬӺºЬӾЬӾдӮЬӒQ }ӇՏޱQ'ӿݐ߶m~+ݷ-ߐQ YݱӇQ   >MĿ  >%Ŀ  >mĿ  ph Ŀ Iﭾ/?墳}/=},潾},淾, 󱊵x߇ߗߗI߸矻߇ߗSw߿}ӒQWQ }ߐw߿Q } wݿ߿w߿MѾ Ogwݿ6 }*L7 ?;#}ӒQ Q )Q #I`} 㱊Q
2 #UUê݅ ݾӒQ 7Q )O|ee7 a;Q )I߰嬾J6 O߰ O55'7 !;Q #F   cѓѓѓѓѓѓߍߴ߉ߍ؍ѓ߉ߍ؜ѓ߉ߍ؇ѓ߉߾ߗߝߒߋ߉ߖ،߾ߏߑߙߜ߾ߏѓߍߜ߾ߒ̒Βڌɼ׻ϒڌɼϓ߶          :  0        
      ~                                   ;        ӇߑԷރ?ӒQ qԿ;'Q qԿ?5?I[YĘٞ{F  DRRRӇQ=?CU?R?R?R{U{ck|yucF  ߒ߱F  R͞ӞӒ?ݿQ w;ݿQ wӇݒQݒQݒQߎߩߗߝߜߋߝߎn7ӒQ Կo߿~޾n7Q Կ7߿n7Q Կ3߿n7Q Կ	߿n7Q Կ߿Wn7Q Կu߿WӠӠӒuݿQ #ݿQ #	ݿQ #3ݿQ #7ݿQ #ݿQ #ӠӇQԿ[߿>ԾiޒӒQ #Կn7l6Q Կ/ߒݒQ Sߒ݃Q ߒݿQ Sn7l6Q ߒݿQ SߒQ AӠӠ      ߞ߉߶߶Vߝ߸߷	ߒӒQ wߒQ Aվ y?ݰg &ߒQ wӠߊߗڌߛڌ߿ӒQ 5߿ߒӇQӠߒӒQ )ӠߒӒQ )ӠӇߒQskۿߵӒQ OCߙߵQ OCOOCߵQ OCqOC OCɞOCݟOCݵӇQy  ߿ӒQ7ߒߗѱQ  qӒQ /Կ߿ݒǺQ AޒӒQ]Կ߿ݗԶ>ԾݒQߒߗѱQ ߒ?e uݒӼӒQ 5C/οSɮߒӼ۰ӒQ wmoݒj5Q }   N  V    a    n    {                          V    a    n    {                      ߼߼߼߽߳߯  	@   o߶n7ՓӒ߿Q 5ߒiRRRӒ߿Q 5RӠ߿ӒQӠݽ~y߿ӒQ GۿOC~OCߒ֗OCK  ߒ?ӒQ ߿ߠߟ'ݵӒQ M ~  OmOGO]OO/OIOOO˕OOO!OO  bOO  vO1~ӇQԿݿ>ԾܷQaӠݿӇQgߒQsݿ߽ܿV۱QyߒQRRӠӇߒQsۿ?C OCߕӕQ ~˵ݼ-$߽Qݼ-$߻nڿ߽UݵӇQy  㱊#  ~͏sݰי߶Vߝ߸߷	ߍߝߍߖߐ߉߈ߋ߷	 ɜ߸үߙߓړߝͽٞEQߒ׏u+3ޒӒQ Կ7߿ԗݒMߒl6ӒQ SٳߒӇQߒӒQ GݿOCߖٱQ MKKKM|c٘ÞMOCQ M9{K3Kן Q M 3ߒ?ߒ KKKKǏKϏK׏KߏKKKُѱ!ݒj5ӒQ ) Mݒj5ӒQͳ YU	K޶g]޶yo޶߼޶Ӽ[޶Ǽ޶޶޶ę޶?	%?ߒ~C?{Y?q?[?Z???ďߗ߯'ߗ߯Y'ߗ߯' ߒO٘߯	        .  H  b  |        P    l          2        r    9  L  d  }                  $  .]  3ߠ߰߬ߠ߲߶ߠ߫ߪ߽߲߰߬߰߬ߨߠߠߨ߰߬  l߯́%͞ߝߒOAޒӒQ Կ߿ԗݒޙߒl6ӒQ SߒӇQߒӒQ GݿOCߖٱQ MKKݗOWn7ӒQ _ߠݒj5Q͟qKw|kOCQ M9 K-K՟ Q M ߒޯߒU KKKŏK͏KՏKݏKKKɏKѱiݒj5ӒQ ) ݒj5ӒQͳ ޶#޶5+޶߼G=޶ӼYO޶Ǽka޶}s޶*޶yΓY?k?}??????*ߗƿߗ߯)'ߒO٘߯	        
  $  >  X  r                            !  0!  >!  N  b!  u        ߠߠ߶߼߶ߠߠߴ߯ؠߩߠ߹߰߰߳߻߯  ߼߯͞eޒӾ	7܃  5RܒӒQ Կ=ߒ坾a}Q /ԿY߿ݒǺQ AyYޒӒQ Կ߿ԗݒsߒݒQߒl6ӒQ SߒߒӇQߒӒQ GݿOCQ M9;K-KKOߒaߒݠe`mT5oؒ ߒݒj5 )OCߖٱQ MKKUKy OCK  ߒ?ӒQ ߿ߠߟ)ݠӒQ Mߒ7ߒӒQ 5ߒ	ӒߒQ 5ߒ绞 ӇOOOOOOOQ՟QџQ͟QݟQٱQcҿձQսQѽQ͞%QݽQٟ#Ӈߑ/G RӒQ Կo=s7=Q? Q AӇQԿaӒQ )ORߒݷ,L7M  ?/CӇQԿےْشlص߼ݴQ )5 ݒӇQRӒQ #RӒQ Gߠ` 㱊ũыӇݿQRݿQRӠݒuq_ӒQ 5wߒuӒQ SQ }qQ ߒݷ,L7  Q /ߒݷ,L7M  Q #Q }Q Y ߩ߭aٰӒQ /.RQ #R! 󱊷ݮc߿۰ӒQ wߒɉǇȅƺSo--oOʿ/ο--oO/ʿo/οS-mm/ooM>mA>ݒj5Q } ñ  !  !N  !  !N  !  !N      !  !  !  "  "  #.  "  #0  "  #2  #   #4  #  #6      #  #8  #  #  #:߭  #l߼]oӇՙݰlјݿVDݰϯW͙jݰ ߩߖ߭߼Ǔڌ߼ǓڌߨǓڌ߱߱ҬߩӇݰݙZۿݰգ쯴ݰ񯰬9 ߳״Ǔ߳ߞǓߗڛߚǓړߝߺӇݰÞ}٘ۿۿ=ݿß H ߳״Ǔa˾ݿӾΏOߒOO_?6 ݠݰ1!ñǓڌ߭ݾaӇۑӋۿORےORא=ݿ #" ߖ߭;Ӈw]ORےORבvݰ5 = ߶ߩߖ߭ڌǓڌ߽߰߶߾߽߭߼߼߼߼߶߽߬ߺ͞ݰu+۠A䔙ORےORב󙵾ԟѾݿMәnәMVQCݙݰ)i0 ߶ߩߖ߭שǓڌǓڌߺ󾛛ߺﶓ߶뻖߽ߥ缷߼㫭߯ߩ۫߫׳߾ߺӳ߹ߺ˼߯ǹߺê߶߶߾߾߾߾߾߾߾  
͏
Ӈۑ嘭ۿ߿KNےNב!ݗ	Q3߿EW;ݺwwwUc ۷{ߗ	FWFߗNےNא)*R/ߠݺcSYӵ[ݰ˞*yo߿oykߏOwݵݰkݰ+󢼬ݿ}ӇQ ѽR ñ  -  -  -  ,  ,  ,ߩߖ߭ߩߖ߭Ǔڌڛڛ߰ʛ̇Ǔڌ̌Ǔڌߕy'љ?ٞ ᵿݠյ')ӒQ SCQ }Q SmQ eQ Y`RԿ}ӇQ ԿӒQ Q )Q #`}ߒݒ}ӇQ ѽRӒQ }Q YyĻy L  	љѓћߺݷN5O՘OܙãyĿyOoS棽]N5'יֽ棽ߟyyĿykĽw N5	N5OߘOON5oϔO=-GӒQ qۿRڒ}ߵQ 5?+OڿߵQ ;ݒ}ӇQ ߕԷԿ}.>o~ݵӒQ w OCљొOCొOC	ొOCొOCొOCొOCొOCొOCొOCYొOC%ొOCొOCొOCొOCћొOCొWWOMOߠ/.9>;>?>//| 󱊷ͼٶӇQ%Qݿߵ$7 ܷܵžoܷܷɺh4QݠQ+ ӇQ=ݼ ӇQ%ݿ 1N7 QݠQ ӒQ %'Q /Q #}m|ӞI s J6 ƿొߚߌߏӒn7Q _ӠӇ?Q  ߇ݍ/6 ӇQ ӇQǳ ӇQ ݇ݖܷGӒQ ӠӒQ Ӡ˙߿+Կ˘ͱ˘͙ߒݿ=R˱Դ.RӇQ	     Hۭ?Od  Hՠ  	׶ݷӒْѱQ A ׶ݷӒْQ A ߠ߃ӒߨoQ qِ߿ݤ܃  5RܒۤQ ߨ߯Q #   5b  5bљӒQ #ӠǙ߿l6ӒQ }ӠԿǘñǘ㬒Ù߿ӒQ ӠRǞ?Oݘݿ߿)әWӒQԿәn7QԿӘӠӘ嬒ϙn7ݿӒQӠRӱݗͷӒQU(܃    Q1 ܻiQU(Q1 𨽬ܒӒQ wߐݐj5  ӒQߐݐ Q ñ}WӇQ ߨߗQsݿQyߨӒQ ӇQ ӒߨQ G }ӇߨQsݿQy MMO-?O  ?汊 3'ͼ۟/-oL7 Q _߿ߗ ѓڱQ'ݿݱQQ _߿ߗ ѓѓݽoݒ//ο//οݒj5ӒQ } ӇQ%ݽQCQ=㽒7}ݽQC Łj5ӇQy߹ϱQӒQпߐ׾w  ߨwӒQ!׿w+ٿH5s{t|߻ݺWݺ̃ݺߵ ߻/߼/ӇQ ߿xڷ޵۷ڬڔڽڶ߼  'ڶ߻  'w߿ۘvڿߐ׾  ӒQӇߺQ߹QԸ ؋ߙߞ߉ߛߦߜ؋ߋ߽ߊߞߓߐߊߗߝߛݿӇQݽ //?/ӇQԿ?/ӇQԿޒޒǼõ/ߒǞsgޒӒQ Կ˘i߿ԗݒǞߒl6ӒQ S%ߒӇQߒӒQ GݿOCQ M9;K۟COCߖٱQ MK_Q Mesߒ˞ߒǞ%ݒӇQݒQ ْشlRMcK%uImْشlӇ ص߼ݴQ )G 㱊ڞߨߠm/>ط߼ݴӇQ )񱊍Ӈ G+=ص~ ߼ݴQ )#  =  =  >  =  >2  =      >g	  >o  >ߩߩߩ  >߽͞w5
ߒw	UOhmuޒӒQ Կ{߿ԗsݒw	ߒ{l6ӒQ Sߒ{ߗͼӒQ מߒsӇQߒsӒQ GݿOCߖٱQ MKKݗOWn7ӒQ _ߠݒ{j5Q͟qKw|!OCQ M9 K+Kן Q M 3ߒ{	?ߒw
 KKKKKKŏK͏KՏKݏKKKɏKѱݒ{j5;3ӒQ ) )ݒ{j5ӒQͳ 5w޶޶޶߼޶Ӽ޶Ǽ޶+޶ř޶Ù޶#޶5+޶Γ#?5?G?Y?k?}??+?ŏ?Ï??ߗƿߗ߯'ߒwO٘߯	  D  D  C  D@  D&  Dt  D  DZ  D  D  E
  E$  C  E>  C  EX  C  Er  C        E!  E  E!  E  F-!  F  5Z  E  E!  F>  F!  FR  Fg  Fy77  Fv  Fv  F߰߬ߺҷߩ߭ߠ߬лҠ߭߻߹ߺ߼߹ߺ߬߾߰߳߻߭ߠ  F߼߯S++CӕQ ٷ~ߵ&ߴQ ٷ~yQ/ݨQGݨQ+_ݨQwݠ*Q ӒQ Կ㘝߿W޶ӒQ SQ eQ Y}RCӒQ + sS++CӕQ ٷ~am&ߴQ ٷ~qQ-ݨQ+EݨQ]ݠQuӒQ Կ߿WG޶Q S1Q eQ Y}KRSQkO~߿Q SsQ }}Q }Q YCa߰WWޒSޒOޒKｗ۞ԐSԐOԐK!فCݒSOӇQ эӒQ + s͵qA.Ӓݒ7-~Q 5ԿKgߒ7ӒQ SԿcQ }Կ_Q Կ߿W޶ӇQԿ[߿ϱQԿWk;%ߒkݾޒӒQ ԿoO߿ԗgݗߒӒQ AݒWܒo܃۾ӇQ8QSݰݒkߒoߒoa;EӒQ ԿOGăEC׽սӽѽϽͽAےKU3ݰoGӒQ SA?GQ eQ Y}JckCy=a߰ޠޒޒSޒOޒKｗ۞ԐSԐOԐK!ٵ/ݒSOӇQ џݰx駰ߕ%ۿO ͼْӒQ A %9EGݰ吞KݰmgCݰ;ݵRO茶'ӒQ GߒgӇQyOO.EߒӇݒWQߒoeߒkӇߒWQߒ[QӒQ _Q }cQ YӒߒKQ ;. ߒgӒQ GݿMCߖٱQ MMC?Q MKKKQ M aٰb竒A٘ӟEӒQ S#ߒWӇQ kۿߵggӒ5ߺگ?Q }ؿۺUÞ+Oͷͼ}]ْ=ӒQ A jUӵZݰѧߕ9+?ݰ٘՟Gܕܕܕߕ'O  a߰ޕޕޒSޒOޒKｗ۞OԐSԐOԐK!ٵݒSOӇQ Ӓۿ;ߺOQ }ӒQ YݽӇQ ѵ}A! C  QO OO ٷӒTO푞KE?; Q Q F}wXQ )Q #OGCԿKԿOӇQ ԿSӒQ #~Ӓ Q ASKQ )ORKѵݒSOӇQ ӒQ #;5GCQߒ?RSޒKοӒQ 5ߵ+ݒSOӇQ  ׵ߒSKݒSOӇQ ӒQ #߽ݰ:ѧV߽ݴݬ ӒQ #/ #ےۭmߍ-MmL# aٰ׭۷޽gݽgo,'    OG/?/?ͼ}Oژ?OژOOO÷?ӒQ SQQ Y ye߸,'ߠO}П ӒQ ޿TQ]pX}Q S͞ˏQ }mݰ嫰٪S,=Q }Q Y }',''Q]Q #଒! Ż߾߮߹ٷ/Kݰ!Ӓ; Q Q SKQ /Q #KRK= sٷTu/ߔoߔXݰӒQ kൿMT߭ؾﷅݰw&9+ߔWØߒ??/ٞ=ۘݔӇQ сߒ?ؗؗؗ ߔ?OC 魒CݰA%!ߔSAݰ|Ca۰ڔڔߵS[!韝Cݰ}ۘ!YݰߵS!-!韣ؕ/!a۰ڔڔߵS!󟁭Cݰ!ۙ۵mݰ$AӒ; Q Q GdĞi5ے;TڔߵӒQ }ݰȞݰߵQ Q Mݰͧؕؕؕؕa߰oWޔޔޔ΃۞qݐLӇQ ݰ=߰ޔޔޔ;qݐLӇQ !ൔۙESs/{aߔkߒ?Ø?/џUۘݔӇQ сߒ?ؗؗؗߔSݰb)ۙ sْ?wؿȿߴӒQ 5ݰu ْ?ѽTŵYͼGْӒQ G Gطӟ˵ͼGْ+ӒQ M Eطӟ͵ӷͼGْUӒQ M GطӏؿߴӒQ ;Q Mݰu ͞ݒoj5kӒQ ) ͞ݒoj5ӒQ ) a<cӒQݰ駰!<aзззQ Q)! 󱊷ݮ&߿۰ӒQ wߒɉǇȅƾϽo--oOĿS/ο--oOĿQ/οS-mm/oo_>m>ݒj5Q }'E ñaٰ)a魴oAWͭAO٘߾wߴ! ݒWܷ̃ܿӇQOߑ/G ӒQ /ߠ`OQ #RO DߒkO٘߯	ͺw'aսPзPӒQ Q  '!Ӓݒ3Q /ݒ3$ϱQ 5qߒ3ӒQ SQ }Q O Q AaOQ )Q /%!Q #Q }Q Y{>OӒQ #RO řǳ(߻ݸٯQ Q/ նh4jےQ ۿ1Q eO+_CCq߷ߐݵmlԵ Q˵ٵR߲ݐ۷۰ߗٗl лߟِۭjЬQ klQ QQ  ٶշ.8۲+?OC/oݷvl7#vy#yyyݷvl7-v#ߐCokyߐboOC/ĔĔԵ߾oݵ'ߵwn5*?{'''ԔԔԔԵ'/y ?  7  ߽߯ߴ߽ߴ߹л߫߼߭d˒߼ߐڌdϒߐڌڌߞڌ߾ߗߛߋߛߐߋߌߩߖߑߞߋߛߝҖ߉߼ߞߏ߾ߐߜd߽͒dΒdχdʆdڛdڛdߏd͒όdΒd͒׻dΒd͒ڌߞdΒόߙڌߙdΒˌdϒߙd̒ڌdϒߙd͒ߙdΒd͒ߙdΒd͒ߙdΒd͒ߙdΒd͒ߐߒdΒd͒ߙdΒd͒ߙdΒd͒ڌdΒd͒ߌߜߙdΒd̒ߛdΒd͒ߒߞdΒd͒ߙdΒd͒ߙdΒߤ͛d̒߉ߙߗ͓dΒd̒߉dΒd̒ߜߙdΒd̒ߙdΒd̒ߙ͛dΒd̒ߗ̚dΒd̒ߞdΒ̚ߙڌߖߖ߈ߋ߉ךߞߜߐߝߛ߶ߛߋߙ߆ߙڌߗߝߌߙߋߛ߉ךߓړ߱ߓړ߆߈ߋߌߋߜߙd˒߼߭dϒڛߙߖڛߛߜڛߞߚڛߙߖڛߛڛߙߛڛߙߊڛߙߌڛ߉ߙũыd͒ߘߍdΒd͒ߌߍdΒ  i  i  i  i  i  i      i  j   j߾  jD߼͞aӼ5eߒӞ4OǾ2	ޒӒQ Կט߿ԗݒӞ4aߒl6ӒQ S6ߒӇQߒӒQ GݿOCߖٱQ MKKݗOWn7ӒQ _ߠݒj5Q͟qKw|OCQ M9 K+Kן Q M 7iߒמ4uߒӞ6 KKKѱKݒj5ӒQ ) yݒj5ӒQͳ I ?޶[Q޶EΓ? ?ߗƿߒO٘߯	  l  m  m(  l  mB  l  m\  l      mv!  m  m  m  mҭ߬ߠ߭߰߳߻  n߼߯ͽy)Կ+?/?Է ӒQյӇQԿ߿ϱQԿݿQےʃݵQǵUߘݰU9WʃڷڃݵQǵy?>ԿQԿʃڒڿ׽UݵQǵߒ?C   OCݰǞ:QԿ߿ϱQԿ	ϾǼY:g+ߒǞ9ޒӒQ Կ˘U߿ԗݗߒӒQ Aݒܒ܃۾ӇQݰݒߒ˞9ߒ˞<)<ݰ{ӇےʃݵQʃڒڒڸݵQǵ!R#Rݰ	ے˭y!R*}Oѷͼْ;ӒQ A ]CR ݒ̃VӇQ{ݰaGMߒӇQ=OOy=ߒ=UӇݒQߒ˞:'ߒǞ;ӇߒQߒQݒQݒ̃V۱QݒQߒQߒQӒQյyw ݵfޙ7 ޘˏݵfޙ7 ޘݵffޙ7 H/ݵf󦞈7 ޙ岟Sݵfޙ7 ޙwݵff̙7 밟ݵffޙ7 f߹fߺnߙԟۼffݙfnwwwwACmMUÙڕýU[T2ߵN7 {DaOOmߵ@g7 #瞑}Pߵ!RN7 ߵUßUڿ뱊ߵ/g6 ǟݰ{ ?ukݒ̃ܒܸܵӇQǵ̃QӠ OIθ____ݮ>߿۰ӒQ wߒɉǇȅƾo--oOĿ/ο--oOĿ/οS-mm/oo>m>ݒj5Q }?! ñaٰA5ݒܴ̃ܿӇQ! ͞Iݒj5KӒQ ) ͞iݒj5ӒQ ) ߒӒQ GݿMCߖٱQ MMC?Q MKKKQ M ߒO٘߯	ߛߖߛڌߞ߻ߛߖߛڌd˒߼ߐڌdϒd͒ߍߌړ        H        K                                      
  	                                                                                                                                                                                                                                                                                                         dΒړd̒ڌdϒߖߖߌd͒ߖߛߞߜߝߍdΒd͒ߗߝߍdΒd͒ߑߍ߻߈ҏdΒd͒ߑߍߪߞdΒړߌߜڛߖߙdχdʆdڛdڛdߏ  xV  x.  xp  xB  x  xB      x  x  x߾  x߼́ uݾǼkvosD)ߒsCgξs@;{ޒӒQ Կw9߿ԗoݒsC%ߒwl6ӒQ SEߒoӇQߒoӒQ GݿOCߖQ MKKKMQWϟOCQ M9wK+K՟ Q M F	ߒwCߒsD KK񱊭CSSݷݒwj5عӒQ ) ߒsO٘߯	ݼӇQӿϼkW Ma7?Ma7?Ma7?Ma7?nj>ľS   {j  {B  {  {^  {  {^      {  {O  {  {߻͞M3G!ߒMF_;CžޒӒQ ԿQO߿ԗIݒMFߒQl6ӒQ SHߒIӇQߒIӒQ GݿOCߖٱQ MKKC|-OCQ M9gK)K۟yQ MHߒQEߒMG KKKYݒQj5ӒQ ) u9/޶KA޶]S޶߱??? ߒMO٘߯	  ~Z  ~t  ~  ~  ~N  ~  ~N      ~  ~  
  $]  )߽ߨ߾߶߻ߪ߽  b߳߯RD˟JٷӇQԿ߿ϱQԿ5QԿ/U3QԿ+uiQԿ'ߒĿ5wQԿ3ߒݿR3	R7R9׽oAŞKMw܃  5RܒUӒQ Կ#9ߒAJ;WQ /ԿU߿ݒǺaQ Au[HEޒޒAӒQ ԿE߿ԗ=ݒQߒEl6ӒQ SߒEM7Mߒ=Կ+>Ծ# ӇQIԿ'>|R##ӇQ='ߒua+1ߒ=ӒQ GAݿOCߖQ MKKļ9{Kļ7 I OCQ M9 K1 Q M 'ӇQONߒNUߒEӒQ 5ߒEK'ӒߒQ 5ߒALݒ3ӇQݒ'Qݒ+Qݒ/QߒQߒQ KKKKKKKKKKKQK'K1KKK5]KKKK9O9Ŀ9ݒEj5OȒ9ӒQ ) w7O575Ŀ7ϷݒEj5Ȓ7ӒQ ) Էݒ'?QCϞ5ۿْߕݴPݰyUȃݴPߘݰȃݴPȃ؃ؒ'ؕݴPȃTݴPݰLߒ'? OCUݴQ+ ϞۿْߕݴQyݰcȃݴQߘݰCȃݴQߘݰSiuߒ'kݰQȃ؃ؒ'ؕݴRȃݴR-ȃTݴR?ݰ9ݴRGݴRS ߖߛڌߖ߈ҏߞڌߛߖߛڌ߶ߚړߞ߻ߝ߆ߌ߆߈ߋ߈ߋߜߜߋߋߝߐڌߐߝ߈ߝߓߙ5߿ߗ'  ӒQ SQ qQ Y= MCû {ߒ'W -g~7 ~޾ ݒ' ?6 پOݒ''7 ^7  ߒ'_!ݯݒ	?S1ӒQ 5Wߒ	ӒQ S}Q }Q ߒ' g7 Q )هߒ'? OCɟ՞uQ #Q }Q Y{Ȟ ߽ߖߑߞ߻ߝߓߝߙݒTGӒQ 5 ߒӒQ SQ }Q 'Q /Q #Q }Q Y{˳ ߽ߌߝߙߒEUߒEݠU뱊7ߒ߯7 ݒL7ݾ߿n߾	9ٞޒ+iޒ/սWٷߒ#ݒEj5ӒQ ) Ӈߒ/޷oߒ+޷os 㱊ڴ߽ݵQ +)<3 ߒ'ݒ/-ߍ)5  OߚOO_?6 ;ߍ6 ొߒ'ݒ+-s::::::=::4 ou'5 1 ñg;6 ొƞے'ߵTߵTw1۠ߵTݰ|O% ߵ-g~7 ~E{۠ߝߖߝߝߝڌ߉ߝߝa͏ٰXݒEj5yذӒQ )!ͳ ߒAO٘߯	Տ͟ߟǏ͞WݒEj5ӒQ ) ͞uݒEj5'ӒQ )     <    <    <    <    <  \  <  (  <  B  <  v      <    `    (              g         ?  '    .c{      .     0    2        4      #  6߽߽߽߽߽  h߳ă  ޒ/\ۏ܃  5RܒӒQ Կߒ\YmޒӒQ Կ=߿ԗݒ[ŏߒl6ӒQ S^7ߒӇQߒӒQ GݿOCߖQ MKKǞcKOCQ M9eKK˟wQ M}|o^ߒ[ߒ]Wߒ{ KKKKݒj5ӒQͳ KAKKKļԒԿߏߗ߯'ߒO٘߯	͞ݒj5)ӒQ ) ͞3ݒj5*ӒQ ) ߒݒj5ӒQ )ă  _c ߒ߯o	ӇےߏۭmMQ ŵݿ-\'7 ݠܷߒQ E }ӇߨQݿMQ џ ݾӒQ ߒ߃ ߯oιQ /ےۭm+u[Q /Q #} 3a۰޷oԷ߾޷oԷӒQ oQ )O|ee혣MӇQ +{[ӒQ )IݻMӇQ џݻܷߒӇQ [ӒQ #! #MӇQ ŵۿߵݵMQ џڷߒݵQ o MݿӇQ ݠMQ ўӠu߿'      .    H    b    |                N7  K  %  %  %      ߠߐ߾   ߯ԷcQߒbK_SޒӒQ Կ=߿ԗݒbMߒl6ӒQ SߒdߒӇQߒӒQ GݿOCߖٱQ MKKAIwOCQ M9kK/Kџ}Q M ߒݠeWߒb9ߒc KKKKݒj5ӒQͳ ߒ-w~W}`-w~}ߒߘ/ݏOߒO?Ӊߵ?Oؙ?ӉM ƞiߗ߯yߗ߯ߗ߯Oڙ	瘹OژOO#OO۫3͞fff+=OؘOݘOۘOӘo	Ŀ- MO=>'/۵5OӘI{=oQoϔOOoߔOߗ߯ݒ-'ߗݒ̿=-ݒ̿-'ߗ߯ݒ-'ߒO٘߯	߻ߞА߼ߙߚ߹ߖߏ߉ߒߚߖ߻ߙߙߛߑߜڙڹߞڏگߙߜ  R    l          6            s              L߶͞͞iwߒhfޒӒQ Կ߿ԗݒhsߒl6ӒQ SߒߗͼӒQ מjߒӇQߒӒQ GݿOCߖٱQ MKKݗOWn7ӒQ _ߠݒj5Q͟qKw|/OCQ M9 K+Kן Q M kߒhߒjE K5ݒj5ӒQͳ AE;޶WM޶i_޶߼{q޶Ӽ޶Ǽ޶޶޶޶޶s޶޶޶g/%޶[A7޶OSI޶Ce[޶7wm޶+aΓ???????+?=?O?a?s???????ߗƿߒO٘߯	      .  H  b  |              2  L  f                        5Z    H  T  `  k    z      u    A  ߰߬ߴߪ߬߶߻߶ҩߩߠ߬  ,߯ӒQӇQ=ўrӠ  @   <
ߐߝߜߙߞߑߛ߈ߑߝߜߐߙ߈ߞߊӇQ%ݿQCQ=Ӡ        ӇԑQԿG߿ϱQԿ_QԿs߿ϱQԿqݿQQԿ߿ԿױQԿݾdݿQݒ̃ܷױQǵݒQC?Q=ݒQCQ=1͞߿%ߠGߠ!=} ݒQݒQݒ̃ܷױQݒQߒQߒQݒQߒQߒQߒQߒQݒQCݒ߽̃ܿV۱  \Y    Ӈ۷OO?ݒQCۿ' ۿUߵOUڿ!۠ ߗݒwIݒ̃wIݒߞwGొ߽߽߽ొ۷? OC ߴ-g~7 ~ߴsߴsߴtxIݰ۞x_ݰ ߛߖߛڌߜڌߝߛߖߛڌߜߊߝ۷ߕݒxݒ̃xݒ̃܃۾ܷܕӞxŵݒ̃V۞xݒx ۷ӇߑG ޿Gaݰߕ''ӒQ Q )Q #I}՞yݰSӒQ G!ӇߑޠG sl6W=əW~řѱW>˙WNǙ뱊WN˙WNǙ W˙WNǙųлҩ߻ҩߐڌߖڌ߉߆߈ߋߛߖźyźy׶ٷx޿ݴْӒQ Ax ӇԿԿ߿WľԿľԿľԿۘ7ľԿ՘  ߌ߉ߞߑߖߋߌߪߋߩ߼ߋߞߓߞߋߒӇ՘ORԿј߿WORԿORMľԿORMݒľԿORۘMגľԿ۞OR՘MђľԿյA ߌ߉ߗߝߞߊߋߩ߼ߋߋߜߓߞߋߒ߽٘}߽JgొKRےKRגJg4  󱊷ߞ}߿IRےIRגݼKVQCݘ%KәnӘ3Hg;   ߁ۑ嘛ۿ߿#Nے-Nב3ݗ	QE߿KWMݽwwF  0|g ;۷{ߗ	FWFߗNےNגݺF  1Fx`M ñӇQoCԿ˞KԿϽRǞј߿9՘߿MՋԗǘ͞cQcҿձQ{ݒݰ ߙߋڌ߉ߍߖߙߒߙߞڌߜߍߖߙߒ g7 ݑN6N?ݿҿ߯ݑݿN??N?ݿoߟݾN.ݒϼN.?ߏOv߿Q wi[ݨQ }۷ۿUߕݾL  	ݾ۠ݮn=C  N>N?ԾԿLÚL٘ݿ߿]ݠ%۷Cf۸nݙݞ/ԷǏ۷yf۸噟nӘ#INҕyN#ҕk#%N.U}ݞԷǏNu˪UUϸ͠%nU#cM۾}QԴǏu?nWǙ۷	LřݱǱQvԷǏunWǙ۷LřݱǱQԷǏӘnWF۷LřCݱǱQ7ːԷǏ)nE TEWӑՙ۷LřҕžyԷǏ !knWy_ =۷ !Nݱ Q þԷǏݞnřWIٙ۷Nřҕ!ߒL əޕ ɾ zԷǏݗɷJ}N߶ۑoۭڦےfەWڦ ےڮs ԷǏNamݒnיٷggK ԷǏݗc۶U?qL ՘ L ՙσcݱQσ ݱQߑo߯ެߒT]GݔQ ݔ?Q ѾԷǏ+]۶UUҵ EϾMN ]ҕ ]EמԷǏ۶UuσcݱQߒUݕQ ߵLԷǏVuVu˪ ߒݗܝ ޝ]aݝQ ԴǏݞ[nߙWٙ7ݒ˾cN.Us'QսQݵQ ѾԷǏۑþKUѸ^{w#KU!)KUCKULşKU@KUKU朼Q󕾨ּKUe׸̑ߒfҦkߵԴǏۗ͘L岟ۗ͓Lۗ͎L0ۗLŵH 9J7T2	ҥaݒe)ݥQ ԴǏ #%ߒeݑżL5Uźߑo߯ޥσݱQݥQ ѾԷǏNӠYQGřҕžuߵԷǏNOúnU-W	/ߵ	A@ԷǏNiúnU9q	sߵ	ԷǏNYún	U=#	Aa	ߵ	ɾԷǏNyún)U7		ߵ
nԷǏNyún#U='	ɾ
?ߵ
QԷǏN=	nUs
E
ߵ

wԷǏۑUߑߙUѸҝkߒ]
ݝQ ԴǏ	ϘVҷMɺݒeҥkٞ
žݭQ ѾPԷǏۑU UܯߒҦafݮQ ۑžמqߵԷǏNUUۙߒo
͙U;3uߵվԷǏQ _ߑ/JҕaҕžݞԷǧߠN	N	׼ n%7㮷?UбԷǏN˙ 3UϙQřҕžQӞߵԷǏN	yQ˺ݱQݱǱQq۾ԷǏNC UQřҕQ!kҕkK%ԷǏNyU[QAřҕQmkҕKkoHԷǏ%anź ߑo߯ޥݱQݥQ ѾԷǏ ) n،ߙa'OvǼQ ҃cҭߒUҕqߞ2ԷǏN wUU޶ϸQCřҕžmԴǏݑżL5VѺߑo߯ޥݱQfԷǏVu׾ԷǏN	㙕 U QIř ݱQ ݾݼwܷ̃ױQǱQ'QgߵAUԷǏNϺUQřҕŮԷǏ˼1LUN.ݼْL,VKԷǏNUQřҕQ ҕ ԷǏ CLW,!ݼLřҗŮ;ԷǏ!LW2ݼLřҗsŮqԷǏNKN?NN3NݑżN6ԽԷǏNkU?Q#řҕ/ŮԷǏNUәQ
řҕQ# ҕ GԷǏNUQřҕ aݒV W܃ YEԷǏ۶UULkҕkْL,UӼLaҕa/hԷǏ=혻n MWԿ[%ͼLqҗAqLřҗŮIԷǏݑ#ߑѾ J7Ͼ ü1L/UNљؕѽQѾ\ԷǱۑźߑѾ N5;#N;ҕ;ْNљؕѽQѾDԷǱߑѼ͘{󮼍 UCᙓENՙQվ;NљQѾ-N;ҕ;ْN ؕ NؕNљؕѾvԷǱߑѼ _VҖŽQѾXԷǱߑWսQߑW9ݱQ(ԷǱߑoGú ǞҕekҕSžaCߵQѾԷǱߑѼn{ٺ ߦռ(󕼼ԶǽQѱ?oҗҗkg6 QѾئԷǱQSљ׾oGݽQѾɾ2ԷǱQљżoVߒoWV߶	QѾpԷǱߑѼ e۶USߑMT ҟMߒ˼L/U+L Ҟ QߒIL Wރ YDԷǱۑżqLљü%L/UMߒ˼IL/U/ݕQ ѽQѾԷǱQ
҆
QѽQվ"ԷǱۑž}NљžKNkmݱQLUߴ/ԷǽQߵ7WOCݒUҕ}žŞߵmQѾԷǱQEљźanSUnUߵQѾԷǱ nuG'҇-ž߽QѾԷǱQWљ׾WҗŞQѾrԷǱOϙOQѽQվ(ԷǱߑN#oߑ Wo ݱ QQѾܛԷǱߑѼYn WV E 	׼}LŘLřҗ CŽQѾ۪ԷǱߑoCoYWJ._QѾPԷǱQ{љQ{Mř҆xQ{5;҆x;QѾԷǱQ?љ?Uɏ9ɵQ ݵQ QѾLԷǱQ?љ?Uެɏ)Q -Q QѾԷǱQ?љQ?mř҆<ŽQѾԷǱߑNQWř҆ŽQѾnԷǱߑѾ onټLřݱǱQQѾԷǱQ}љǺ]?ooUQѾԷǱQ?wљ?[WCcQ>MݱQQѾԷǱ9NљñQ OWיOWQ҃'QѾԷǱ?NљW(QѾ(ԷǱQ=љo?TQ wQ _9u%ҭ҃cߒΕ ޕ Ε ޕ Ε Sޕ Qñȿ)ȿEȿȿȿoQѱQ Q }ԷǱ!OQљFoQOQՙQ߿!dԷǱQљ˺UQř҇ŽQߵkԷǱQ2Yљ˺2U3Q2-ř҇ŽQߵvԷǱۿkoNљUHϾkQNřҕŽQߵԷǱQљϾQ}řҗŽQў9
ԷǱQљ!ᒏWsQřҗşҗ9ŽQўԶǱQUљ;WϙQřҗŽQў;ԷǱQљ;WQořҗŽQў	ԷǱQљ;W}QřҗŽQўEԷǱQљ˾W?]QWř҆/ŽQўDԷǱQљ;WQGřҗŽQўԷǱQјQљQřҗ=şQ-řҗcŽQў#ԷǱQљWOWIQřҗşQřҗŽQў{ԷǱߑżLљWǙݼwLřҗOŽQўԷǱQљuQřҗWQ ]җ ]Qў<ԷǱQљ߾QMř3җş;Qљ߾QOř]җMşeQљW _sQoř҆Q ]҆ ]Qў~ԷǱQљ;WQWřҗ/ŽQў߾ԷǱQљ;W 'Q{řҗgŽQў 6ԷǱQљ;WÙQřҗŽQў WԷǱQљ;WQKřҗ!ŽQў ԷǱQ_љ;_W -Q_ořҗŽQў ϾԷǱQљϾ!QřҗŽQў!	ԷǱQљ;WQ=řҗŽQў!EVԷǱQљ;W/QřҗŽQў!ԷǱQmљ;WQ5řҗŽQў!ԷǱQ'љ;WYWQ!kҗ kQў!ԷǱQ>Oљo?TřQ wQ _:!ҭ҃cߒΕ ޕ Ε ޕ Ε Sޕ Qñȿȿmȿ=ȿȿQѱQ Q }ԷǱQ?!љž?W߾m҃c҃'΃QѾ.ԷǱQ)љUݙQaҕaQřҕAŽQѾԷǱQљ;WҷQkřҗŽQў#[ԷǱQeљWQKřҗQҗQў#VԷǱQAљ;WQ-řҗoŽQў#ԷǱߑѼ"˘n݅ WLřҗ ŽQѾԷǱQљúU;GW#QkřҕoŽQѾRԷǱ?NљWW߫߾QQѾԷǱݑnfپNř҇҃cQѾ~ԷǱQiљþW+Q%ř҆҃cQў%rԷǱQјQIљJWQIřҗş߾WQřҗŽQѽQ͞%yԷǱߑѼ۞$anCfͼLřҗےL ڗ7 QѾrԷǱQљ;WQWřҗŽQў%ZԷǱߑѼ$嘁fn޿Q w{LřҖ-?LwҖw-?L}Җ}-?LkҖk-?LҖ-?LҖQѱQ }ԷǱQљWKQ }җ -}Qҗ 'Qřҗ !ݒVܗ V Wܗ  WQѾԷǱߑѼ%혛W?n!RL uҗ ueےL-WiLa҃cےL Wڃ YQѾԷǱߑѼ&_nVÙWUmLřҗIŽQѾԷǱߑѼ&nVWELřҗ_ŽQѾԷǱߑѼa&ۘW/En/EټL҃'QѾYԷǱۑѼ '!on/EUyU/EᙅQ M'NřҕWݒN ܕG N ܕA N Qܕ; QݒN əܕQ ɱQ QѾԷǱQcљF #Q;ř҆ŽQў)ԷǱQ љF+ߙQ ř҇ŽQѾԷǱQQUљFQQQ=ř҆QAŽQѾԷǱQљ;WQ[řҗ!ŽQў)ԷǱߑggҠљǼ?ߑo߯ަߒfޖݮQ ѽQվԷǱߑžNՙWY*+QվԷǱQՙQw҆SQ}ř҆ŽQվXԷǱߑռמ)SnѼےL-WLkҗkQվ\ԷǱْ۬e ӧeݣQ ʃmrՠQ ԷǱV*SݿQ4ԷǱ*ooߒۗU U ޕ{ۇU U {}۽Q ރރQ߿ߗ ΃Q ̐ԷǱۑž׏LwӮ7 ҝż Q ѾԷǱ+ ߑ Wiҗ þԷǱߑqWWjҗqԷǱߒݗ V 	ޖ   'Q ѾԷǱ+ݿ9QN i҃ kߒLYޮ[ԷǱߒݗ V VQ= KۖΥ ޭ ݷQԷǱ?Q?Q?WUnSUnҕߒW?3 -W> -UU/Ε /ޕ -ԷǱ_Q߿ݗVV噳YޕQN%ҕy%uݒN əܕO ɾ;NřҕŽQѾԷǱߑWe WMҗ żLљQѾԷǱߑ;LkWiރ΃[qҖ;ҖkۖVږQѾԷǱ-õ߿w߿w߿WÙރ-ԷǱߒݗ _^ V_^]\ V+ޖ  Vޖ /Q ѾԷǱےߕ Qڗ Qߕ ڗ ߕ ڗ ߕ Eڗ Eߕ Kڗ KԷǱQ wߑ[owݿݿVSV-茶V%߯Gñ?6 Q }ԷǱQ }ݒߖ -WܗS -ԷǱ`/]߿wݿݿV /љݱQ ñ?6 Q ԷǱߒݗ Vޖ ݗ -V.<ߙޖ -ԷǱݒߖg??g]gnܗgLԷǱߒݗ V Vޖ  ԷǱQ wi[w߿߿W pŏQ }ԷǱߧoW pQ }ے!ݕ L7 ږ #ݕ KL7 ږ K-ݕ QL7 ږ Q7ݕ cL7 ږ c=ݕ iL7 ږ iCݕ L7 ږ Mݕ L7 ږ Wݕ L7 ږ cԷǱ }EK   Ea   Ew  E E5  E EO   E   E۳   E  ߒݗ V ޖ ݗV ޖݑ VT2  Җ `ԷǱߒݗ VT2 V ޖ BԷǱߒݗ k V ޖ $ԷǱ2߿w߿w߿Wi߱Q ]7 Q hԷǱߒݗ VՅV əޖ ݗ VV~ߠޖ \ԷǱj5Q ߒߗv} M ߿WהWQV  MvAQ $ԷǱ}3߿w߿w߿ߗo	͙Q 7 Q ߒۗU݅UN.ݍٮC7 	ޝ>ԷǱћߒݗ  Vޖ ݑ#VVҖ#ݑVVҖԷǱߒݗ -V Vޖ -*ԷǱߒݗ V{Vޖ ԷǱߒݗ ffw~ޖ ԷǱߒݗ V󖞁ޖ ݗ KV3󖞕ޖ Kݗ QVG󖞩ޖ Qݗ V[󖞽ޖ ݗ Voޖ ݗ Vޖ ݗVޖ ԷǱݒߖ Wǡ om gσ Qј߿W޿WQߑW 1җž|ԷǱߒݗ VMޖ ݗnVޖݑnVҖݑnNVҖݑ#nVҖ#ݑ_nVҖ_XԷǱߒݗ VޖC ݗ -VV ޖI -ԷǱߒݗ VVޖ ݑ#VVҖ#:ԷǱߒݗ Vޖ ݗ -V ޖ -ԷǱߒݗ V\<V ޖ zԷǱߒݗ VVIޖM ݗ -VVI ޖg -`ԷǱőߜߓҸߩ߽߫߸߾V߯Ұѓћэ߳ߺ߾ߏ߭ߌߝҞߝߗ߭߰߫߳ߺߋ߷я߽߼߽߯ߩ،߱߼߾ҬѼѬѾѻѬ٪߼ߐ߱ү    y     d    X  |    
          T           P                  ~  r  f  Z  N  B  6  *                        6          t  Z                          
      j  P  6                      ~  z  r  n    R              z  v  f  b  N    d  J  0                ,                                                   Z  L  ~  ~  ~  ~|  ~b  ~  ~  ~  ~  ~  }  }  {  {  {  {r  {:  {6  {.  {*  {"  {  x  x  xx  x^  x&  x"  x  x  x  x
  m  md  mJ  m0  m  l  l  l  l  l  l  l  l  lt  j.  i  i  i  i|  ix  ip  il  id  i`  Qx  F  Ez  E`  EF  E,  E  D  D  D  D  D  D  D|  Db  DH  D.  D  C  C  C  C~  Cz  Cr  Cn  Cf  Cb  CV  CJ  C>  C2  C&  C  C  C  B  B  B  >  >:  >   >  =  =  =  =  =  =  5Z  5R  5&  ,  ,  ,  ,  ,  ,  #V  "  "  "  "  "  "v  "r  "b  "^  "N  "J  ":  "6  "&  ""  "  !  !  !  !F  !B  !:  !6  !.  !*  D            z  `  F  ,          T  P  H  D  <  8  0  ,                   V  :                 j  P  6        H  D  <  8  0  ,  $                           
  
  	  >  :                                v  r  b  ^  6  "                    ~  z  v           
     H      b*  C      p  T           6|        b  B  4X             ũѯũѾ߽ѭћэћћћ5ߞ߉ũѽσ΃ũ߽߼/Ͼ߾뾽ߩ?Yﾜ߹AY߹1򾛞߽/߾ײ׷񾓖߽߱ݾ߹ݾ߹߹ϲ󾒖߲񞻰󾒖eìߩ߯羌߯߹# i߾󾬩Ͼ쾊߯～߽߶M～߽߶՞߽～߽߶～߽߶˽～߽߶WӬ߬߰үMg߽߽񽓞ϓ󽓞3 v󽓖߽߲߲yҾK󽐐ߴӽѱ򽆋߽ѱ򽆋߽Ow;򽆋߽򽆋߽񽆋ߩ񽆋ߩ?콆ߨ׻Wߨ꽆ߨ߹򼓞߾ۼҲ͞،߱/󼐒߾뼭뼍ߺo󼍚ߺC}?߼9񻞋߼󻞋J󻞋ߪӳ,3򻖘߻ﻖߺ񻖘߳e񻖘߳oһ󻖌߻G򻖌߹Ӫ񻖌߸sߔ߷a𻖌߫0껖ߺ绐鲰߲ﲻ߬ﺳ񺓚ߩ+GCfWﺇ׬3񺇋   ѾѬѫѶѶѼѾ㹺ߺ㭯?߼ǱEߴ獖%߻C𹊋߻󸚑߬︚隍sҷͥѺ︍ץ!߭﷞#뷞ߺӬѬ巺F﷖#[;߶ͱߖ򶑛ߵ޶󧶬߶ͶN򶑘،߭TF۴Vߩﵫ߯3߲oߴSͳѾﳾߩ}򳞒߸󳞒ߺ󳞒ߺ󳞒ߺ󳞒ߺ󳞒ߺ,󳞒ߺ󳞒ߺ󳞒ߺ󳞒ߺ!ߺ߻͞󳞒ߪ볞߹߲볺߬𳐉߬ͳ٪٪㲾?̞?̝Q򲞓 M벞߰߬}ײ߷        7                                                                              T  S  R  Q  P  O  N  M  L  K  J  I  H  G  F  E  D  C  B  A  @  ?  >  =  <  ;  :  9  8  7  6  5  4  3  2  1  0  /  .  -  ,  +  *  )  (  '  &  %  $  #  "  !                                                                                                                                                                                                         cټ0،󲖜߾󲐍߾o5/߱#󱞌ұӱ߽߾񟁱Y߼Ôﱊ׬OѲѬѾ5 %:Ӟϰ鯞׳߽M?O߾ﯞݸ#߼w߼߼uﯚ׽ e˲߮ߪhN߯νﯰ񯍖ߩ?. 񭞌. 񭞌Şos-󭚏ﭚ߽ﭖߧߧm~{Սߩ񬞛߷߯G3{/󬗚K>묖߬>묖߬N.ެkcey𬊖߲߬߫I߰ﬆ߹թթթթթ1ѾѶ[ѾѾѶѾѾѶѾѾѶǫǾѾѶѾѾѶGѾѶp.򫞖ү߼h.ү߳q쫹ߺ߭Ocү_߸髐߸9򫍞gϭ򫍖߬߼荒N݅ݩϞ_/߹_󩖍߷7E節߬/ߴ0)#񨞍߾)饾s߶  fəfշߪikw+j7 ?O}MO?O}MO-?3ԶOO? -9-O? -YG շߪgggW Ƀߪ۵I#wۿc攱?OuMO?OuMO臨-?5ԿĦ뭶ԶԼyOO? -M?O? -mM.5?OuMO?OuMOߠ  |I{  ~۾y߯ӒQ Sՠ/D cu;1_73;{?	)ߪC*mUe޽&7 CRߪw} ߪoWԿõWS͏ӵױ۵ߪ񵿐Cߪ۷ﭿߪ1ߪ.8ow/jw'n5awߪW/Wwxow/jwߪ۷*8]N5oOOOOOO/OOߟw.?EIMRowMR/mj=  wԸG ߪO___Ч߹__/RԿ/jowwԃߪwnWVu ov/jw&ߪ۷*j8 N5OOO}OOIOO9OO=w.?Q}w.?]KR`gߠyMRݧ`N	w.?KR`ߠߍMRݾ`N/.?%mj=  wߪw`Rp`O# sߪ+wOޖa SLgLgLgLg޿ױߪywޖߪ}wmRv޾ݷl۶ow/jw'ݵ󝱎ݏ= M7 _->-uL>CߪwlRvlO7۠ߪ;{wmRv޾ݷl۶ow/jw'ݵ= M7 ~>-u~MwMvCCߪwlRvlOӏ۠ߪൿ-Dߠs#wmRv޾ݷlow/jw'ߪwlRvlOa//oRMGGO6 ރӇ woREmwMߙ΃Q Vݟ->-vmw~΃ woREmwM΃Q VﱊwoREmwM΃Q VRߪSwߪqN۠۠ߪ!w۷/o/uOwߩ.5ߩ.5/nlkuiud۷ߴb1oۦ-~-~g.>+ݷ瘯Ko<Ig߬nmw-jvާ ~ߠR1C?ouԿ  ߪԗԽొߪٵԿwߪ&ӇQٿߪ#ǯ۷//ݴW ݠWߴQuӿTӻoݴQ ߪkwmRv޾ݷl۶ow/jw'ݵ󭱎󕱎= M7 ~>-u~L>CߪwlRvlO'۠ߪ-KwmRv޾ݷl۶ow/jw'ݵß= M~>-v~MwC7 O?/tJ?؃Ӈ |ߪwlRvlO ?=ӇQ{ ݷg+g1~mWvN5IMMm}[v.>)M}w?MMN5UvMMۧN5-~mv= MsMyM姷 wL5 󱊉 OC7W};OCϒWәOCWjOCwϽXO `Ǳñ߬ߞ߬ߞߞߙoߘooo"oޙ%=MCғϙ/= MC3󯯴3=MCϙ9oߙ:o<o=o;o:9=MCDoHoGoIoMoQQ󯾵Y󯞕XVUo1!RXMCaokooՙxooΙ}ooWWoWWoəoYjOCÒMCѴјMC޴ޙMC˘MCǙ˱MC=C   MCM=C   MCMCOCϒWә=MCϙіߗ߳ߞгߞߞߞߞߞߞߞߞߞߙ߾ߌߝߖߌߐߓ߯ߓ߫߬ߌߊߍЫ#Ч߭CѶѬ?ѹѶѬѹaﾾҺ߶ׅOkŻҫ3쾛߶}ֵ߶0ۅ{+쾖߶y쾖߶ﾓߺo߳߹߳߹[ůSѳ߳߹,߳߹ÞҷūѳӑE TE󾒖ߴa  򾒖Ϟ痞㛖ﾲ߾Ҷлл罽+ߌ߼߬߱񽽬߭һ񽽬߭һߥ߬ӽǐ󽽬߬罽Ũߨ罽KŨߨ罽iŨߨ㉞߽Ѿ S 콚߻so򽖐򽖐򽖐M=Ѱ򽖐򽖐'˚򽖐_S˚򽖐齓זѓߓŖ߶۷)߲   K񽐐ߺҽU罐ߩҶOI齐߽߶_򽐌 c߷ @󽊋ab@,7.󽊋7b@,7.󽊋o齊߶cb@,7.;𽆋߯    𽆋߯} 𽆋߯???߷ۑ ˱T켞߽߶o󼚑s߶w߸輗߷߽߶ͱEɱE뼗߶E{񼗞߭E{켗߬Կߒ７߲߰߯!߰߯߰߯?0߰߯1)?0߰߯?0߰߯߰߯͛߰߯?0߰߯?0߰߯   L߰߯	?0߰߯߰߯?0߰߯م jk켐߶u7q?꼐߶C켐Ь ０! (０[WK０GCc０００󖘞０ ０GCW０GCcG~CW1Q-?Ѳ򼐑߷Y3߷ռŻ０߶߼Ŷ꼐߶ż򼐑ҳϼ輐ҳ߶󞍆꼐߳߶㭾پЫ򼐑٭舚񼐏߫wױQ _پ׬߹ӻҬύҬҬ󍊜ҬҬҬ،񻾸߽߶ݑnӆ𻞍ߩ3ӆ3݆컞߽߶   KQ[7Կm񻚌Ѭ㷾绖߻߽߶ߑ߲軖߲߶L7Q G껖߬߼Ҵ𻖌Ҵ  񻖌yoj񻖌WO𻲬߫$2$2򻐐׾$2$2׼ȓə軐כѓ񻐐߶şҺQ ۱E߶߶Ӛϑﺳ߶oSӺϲ򺊍߽Q뺇߽߶EQ w?@.񺇜wٱQ G߫ٱQ G߫=ױQ G߫ɼEoE9ҥZN6򸞋O߷s[ S踐߳߶ϱoѱѦ߶ѱѦ߶ѱѦ߶㳻ߌ㯞𷻠߹oз߬QTEK鷖ҷ߶҃TEK鷖ҷ߶鶜廚߹ݠ.)5궑ߐ߼1񶑋׳  EמߵӔ7+ߦQM񴞴߶$2$2qm߼ױǞґߺE򳞒̝E볺羫ו וߩ--}L)gf򳗾Ҽ񳖝1򳖝KA񳖝ן𳖌߹Ū߽I9Ҽ󳥧߹ﳥ߭߹E_yE5񲐛{sя겐߳лKWﲐ߽߶ k$ٲײҶ鱞S>3K<Maү
JWi߹ygү߹E=Ec߶ie ﯐߹g׏Wیꭞ߽߶śNN쭚߰߫߳݅5/EO߰߱݅m/E߰߱?뭚߰߫߳}ϼؑحߑ#񭐐߹>N>ّ>By 򬼬ҷҹ*6-Qu~񬚏Es߬ԿykSh!񬲽һҬs+߹묋߽Q謋߾߶uQ謋߾߶   L8謋߾߶GCҩ߸;߻߬SAkŻ񬈖EqE	sү߽߶Q8}Ǳױǫ׫糐ӹ߭߳	󫖒髖߶ܼ뫖߶ݖK#𫖒߬߫Ŋ钐ߴ7?𫊍߽߶   Lf󪑳߫O驖߼߬o穖߼߬@A@ҷɼ񩖍Ӆ)ӅW񩖍!};X򩲴߹Ҩ՛ז㭺WSw/𧞼ߓ𧯭Ҭ]꥾߾׻ҫѥɐߴQӘߴ  OC-ݪ-?fřfffœnOCW{WϱF  7xԿOCqݪ,tff?0OC{ݪ,)nVQOCmݪ,}fߙn؉Ч߹   æo߯j3ѺѰѳgit4ggt4߇.7.7Jw ]wӆ   U   R>  [ZUL7   Ut𼍆ߺGߐ5G񻞍߾)6 񻞍߾߇߼۔U ToQ\<\<Ⱦ̼c 	[ۑ  	T2 k  󸐓߭ɸŗ߳򸐋߳  ߱߱ߦ   V﷖ҷ   W2﷖ҷ   Wv﷖ҷ   S񶓓߾   VR߇C#򶭮ҫ l\ o ԿWY[uSuc𲚑،߭񲰭   V첊߱ |SQO   R믐-yQ i𭚛߰߇ A/߾ i9߽߫`԰   SZ񫍞ߵ/ñ ñ  OCoo o =C   MC7 MC7 	MCMCOCCk Q^  7 	g?C   OC7 y? O7 	^V7 	? Oˢ7 	^ ovԿă뷅FԠOCÐ/OCOCېw߼mׯL7l7ݷ-۷n ߽}ߵ/o/uOwN6ߗ.5ߗ.5N6߶l5 ovݫ6 U ggӇo oӼN6? Oݷ-'N6? OOOOg!Og)OgOgOg9NNC.NKnNS,MMא o8o NǮ6 -Ըă뷅JԠOC뙯g gFg g ѵgߪ-QWWOC-󧱎?//o MWӇY?C   OCm?C   OC7 ΃-W -ՙ/Cϙ/WOCW)Wݿ竰Կă뷅ZԠW Π.]̓On6OvWkW󧶦6 Զă뷅Ԡ̓cn6OvoW󧶦6 Զă뷅vԠOCےo󗱎=C   MC=C   MC	=C   MC7 ̓n6OvoWNoј󧶦6 Զă뷅ԠϾ̓Kn6Ov K K臨6  ÏQ|)}۷υJkG72 -Զă뷅JԠ ÏQKK࿍Q ŵ ߅ %g.7.7%%% ۚњ   !     # /ې eې   # /i eӅ Ӆ ߅ 5m ?;m?Aϱo?    Ѽ # ] )ͼ A  eO ke  ܔ ܔ ܔ ݚӚ  5 ? ݼӼ  # u ) A ϼ e k SioR #SioR /SioR eSioRySioR ߅ Z ߅ Z߅ Z jz S4z w zc z Sя/  _$ G 5$ M e$ S G$ w /$  A$  k$  }$ q$ M$i #$o )$ ;$ Y$5 S$ w$ ׼ R ӓR ӓ_R ӓRӓRߓ_RӓRӓ_RӓR S벊kᲊk SײkͲk SR #SR /SR eSRySR SR #SR /SR eSRySR Sòkk    FA ۑ[Aۑ[AKݗA{A߅ AAڴAuA A A A A A AOUAmݹAA ;i ;y ; ;{+ 	++ oD v >+! ?, )m /m 5? ?C]սU[aUU 8 5? Al6;+U1߻Cս=a71߻C    ߾  ;I 笖 	 Y #ӻT Y ӻT ӻT #ӻ` ӻ` ӻ` #Ӽ Y Ӽ Ӽ _OEc 	KŲdKݒ [׶ _Ӆ 	,[߬SeK}[ ][ݬSvYKs[xK;xc߅x +_ +_c _ 5ǱnѱOѱO[xKwxc߅x 5ӱQ3t Q3t ݱQ3tɱQ3t[ՓxKՓt 5Qt Qt Qt ;ɝ% A% GN%% _% ӻd% 	% %ɝ%O%U%[%K%c% 5X ߓߓ]ߓߓ[߅[ G9 Յ Aߓ _[K~[7xKٷxc߅x x 5ٷߴ Gٷ ٷٷ۶]ٷ۶ٷ۶ ;ȥ% A% GN-% ӻp% % %ȥ%O	%U%[%K%cӻp% A _K[Kۿ Յ+cՅ  ;݅e@ A݅@ G݅@ _݅@ @ @ @Յ@O@U@c@ GE% E%1E%7E%17 _s[ xK xc߅ xO 5ߓ Gߓ ߓߓ7ߓߓ]ߓߓ Aq% Mӽ% _% ׼% % % %O%U%[%K%cӼ%ݓs]ӓ M, _ϱ [,c׾ 3,  KѱQ ۓ ۓcۓ 5ߓ Gߓ ߓߓ7ߓߓ]ߓߓ[:K:[xKxc߅%x ` ׶``K`]׶`c`y/ۉ; cﭓ Gݓ÷YKYKY]Ӆ Y A} 5ݱn߲ӱmӱm A G]ٙW Aӓ Mߓ ߓ'ߓ 5ݓA GӓoT  /  Av GE#vv]ߒvKߓ] ӓkc76k[K[~ӆ"K߃" 7Q UQ Q Q QiQ}QUQQ!KQKsQ]_QcAQòQ YQ _벊Q #Q AQ }Q Q QUQiQUQsQ!7QK_Q]KQc-QQS_}/SC} ձձ]ն G= == AߓYk MߓYk n7k n7k]ߓYkcݓYk A׫k _w[ƙKƙ G벊Q YᲊQ _ײQ Q Q -Q iQ Q QAQUQU}Q_Q!#QKKQ]7QcQQ Aߓ%k Mߓyk n7k n7k]ߓ%kcߓ%kc76y ۬m ۫m]۫mc۬m ۿm ۿm]ۿmcۿm k   9 h֘	е獚'鍚 51 5[o ղ$u ղ$ ы'ٓSu-Su-'Su- k8rϟmo QZ q }э'Ӎr o վ7u վ7uվ7u վ7SSw k A k3 5Y k A kE k k  kE  ' ' 'R'R qT2նH/H kA #Ӡ )i /? 5 ;i A  ߦݮ1?~~7?~~=ܿCݗӖ3 k񷺳 k]Ӓۼ5ׅ)OU)ׅ)MEC) ~EͲaײaaaòaᲊa kGCQRa'RaaaͲa}n}n?~~         OE OE ! Q1A A ߗW  ߷ ۖm    ߑsq ߑsq ߑsq ߑsq  #o} YӒj ;j Anj Oo) ۱E
)= EH S߷L  B ߱Q ݱQ  Q žY #-- ;5 A l  # ) G MOV e kMV AߓY Aߓ% /б3 5ӓo3 ;a3 Aa3   s ۭ #? }ٱO D )/ )M /M )е / 5б߳Юߝ߼߽ߝ߶ߵߺ߯߯ߝ߻߬ߝ߲ߵ߳ߝ߬߫ѻߝߵߝ߼ߵߝ߷߷ߝ߻߽ߝ߷Ҭߝ߫ߴߝ߾߷ߝߺ߼ߝߪߝ߼нߝ߯߬߳ߝ߫߬߭ߝ߫߬ߝ߹߸ߝ߰ߨߝ߲߲ߨߝ߱߯ߝ߲߰ߝ߲߬߾ѷߝ߲ߝ߾߷߳ߝ߾ѵ߽ߝ߾߶ߝ߾߷ߝ߼߷ߝ߲߽ߝ߲߽ߝ߻ߵߝߴ߶ߝ߱߬ߝ߼ߵ߹߻ߝ߾߷ߝߧ߳ߝߴ߶ߝ߱߬߳ߝߺ߬ߝ߲߯߬ߝ߲ߴ	߯ߝ߬ߩߝ߲߭ߝ߲߽ߝ߸ߪߝ߬߬߾ߝ߽߸ߝ߾߳ߝ߭߷ߝ߻ߨߝ߬߫ߝ߼߽ߝ߬߻ߝ߬߬ߝ߯щѳߝ߬߳ߝ߻ߵߝ߬߫ߝ߲߾ߝ߲߽ߝ߲߽ߝ߱߹߳ߝ߱߹߯ߝ߲߽ߝ߼ߝ߱߹߲ߝ̻߱߬ߝ߲߫ߝ߱߹ߝ߻߽ߝ߽߲ߝߺߩߝ߲߷ߝ߭߬ߝ߼߬߼ߝ߬ߝ߱߹߯ߝ߲߾ߝ߲߬ߝ߱߬ߝ߻߼ߝ߸߼ߝ߻߬ߝ߲ߴߝ߲߽ߝ߲߽ߝ߯߱ߝ߻߸ߝ߽߬ߝ߱߹،ߨ߾ߝ߯߱ߝ߫ߪ߶ߝߵߺߝ߲߽ߝߵҲ߹ߝ߲߫ߝ߻ߵߝ߸߷	ߝ߼߬ߝߨ߸ߝ߻Ѳ           K        Q  P  P  O  O  O  On  OL  M  Mz  Mb  I~  G"  <  7  3        @    UU              x          r                                                                                                                                                                                                                                  q                                                                                                        3  
MAShare_66                                 3        %          q        U   H      VW                                                                ~  }  |  {  z  y  x  w  v  u  t  s  r  q  p  o  n  m  l  k  j  i  h  g  f  e  d  c  b  a  `  _  ^  ]  \  [  Z  Y  X  W  V              O                                                                                                  VirusZ.History                                                       x  ============================================================================
                        VIRUSZ II REVISION HISTORY
============================================================================

 1.33   Changes/Additions since 1.32:
	- Added archivers preferences! Here you can easily enter the names,
	  recognition offsets/data and command lines of any file based
	  archiver programs (eg. LhA, LZX) you want VirusZ to recognize and
	  extract.
	- If preferences have been changed during a session, VirusZ now
	  tells you if any of them have not been saved yet before exiting.
	  This is especially useful as the new archivers preferences might
	  be a lot of typing stuff which is annoying to lose.
	- Added 'EF67A3C3' linkvirus (temporary name until something better
	  comes to my mind). Thanks to Christoph Fabach for sending me this
	  little beast.
	- Fixed wrong recognition for Lisa FuckUp 2.0. Sorry folks, but all
	  those RexxMasher compiled files have been recognized as a virus.
	  Thanks to Bert Jahn for sending the RmS package and the report.
	  And sorry to Matthias Scheler (AmiNet Administration) for all the
	  trouble.
	- Added 'Extract Archives' toggle to the file check preferences to
	  switch on/off the new feature.
	- Finally added recognition/extract code to the file check itself.
	  The rewritten file loader now also handles data files much better
	  if 'Decrunch Data Files' is activated. Only crunched data files
	  will be read completely, all others will just be read partially
	  for recognition purposes.
	- Added more informative statistics at the end of each file check.
	- Added new options to CHECKFILE and CHECKDIR ARexx commands:
	  a. USEEXTERN enables use of external xfd slaves.
	  b. EXTRACT turns on extracting of archives.
	- Added USEEXTERN and EXTRACT options to Shell template. Meanings
	  are the same as with the ARexx commands.
	- Added HitchHiker 3.00 + Installer. This is the 50th linkvirus
	  recognized by VirusZ!!! Special thanks to Markus Schmall for
	  sending this 'anniversary gift'.
	- Fixed bug in HitchHiker 2.01 repair code. Some branches haven't
	  been removed properly in the last version. Thanks to Emmanuel
	  Poirier for this report.
	- Added new version of xfdmaster.library.

	-----------------------------------------------------------------
	The new features of this version have been heavily debugged and
	I already fixed 3 major bugs in the beta versions, so this final
	release should be stable and work properly. If there nevertheless
	appear any problems, please contact me! Thank you in advance...
	-----------------------------------------------------------------

 1.32   Changes/Additions since 1.31:
	- Added recog/repair code for Hitch-Hiker 2.01 linkvirus. Thanks
	  to Frank Heim, Holger Hesselbarth, Michael Veroukis, Bert Jahn
	  and Jan Hendrik Lots for sending me this ugly creature ;-)
	- Added other viruses: BootShop Virus-Installer, Lisa FuckUp 2.0,
	  Acid Infector 1.5, H.N.Y. Installer 3, ExHacker Trojan 1 - 3,
	  Pamela Fake and Commander Installer 2. Thanks to Jan Hendrik Lots
	  for testing VirusZ 1.31 and sending those missing ones.
	- Added new xfdmaster.library that supports CFP 1.35/1.36 files.
	  No more hiding of viruses is possible now with that method.

 1.31   Changes/Additions since 1.30:
	- Enhanced basic file check routines. Added better test routines
	  for truncated files, added support for reloc32_short hunks in the
	  linkvirus removal code, added better CPU cache controlling code.
	  I hope that every abnormal condition is under control now ;-)
	- Added analyzer for raw bootblock data files to file check. Now
	  you can scan your bootblock directories and get a report of all
	  bootblock viruses.
	- Fixed severe problems in the file check: If a file was infected
	  with a linkvirus and underneath there was a 4eb9-linked file,
	  the 'Delete file' requester didn't pop up. The same problem
	  appeared when a linkvirus couldn't be removed properly.
	- Fixed some bootblock recognitions. It sometimes happened that
	  clones were reported with the wrong name.

	All the above improvements are mainly based on the test results of
	the Virus Test Center of the University of Hamburg. Thanks to Snke
	Freitag and the other members of VTC for this 'blow on the head' ;-)
	I will fight to get back on the top ranking in your test sheet...

	- Fixed repair code for Invader linkvirus. Some files might have
	  been defect after repair with the old code.
	- Added new viruses: AMOS AGA-Install, CompuPhagozyte 10/11/12,
	  Circle of Power 12/13/14, VirusConstructionSet 2, LZX Reg Fake,
	  Creator, Degrad, Andy/Decade, Susi Drive Stepper, Biomechanic 7,
	  Wireface 3/4, Fileghost 1, Strange Atmosphere + 3 Installers.
	  Thanks to Markus Schmall and Jan Andersen for reacting so quickly
	  on the poor results in the VTC test and providing me with those
	  missing viruses.
	- Added new feature to file check: It now automatically removes any
	  hunk_name ($3e8) found in a file. This is especially useful as
	  there appeared several disguised trojans through the last months
	  that used hunk_name to avoid proper file checks. I changed some
	  recognitions too: Wireface Trojans, COP 8 and UA Dialer 6.2 will
	  be analyzed completely and reported with their real names now.
	- Added Amixhack trojan. Thanks to Dave Jones for that bastard.
	- Added viruses: UnLZX Trojan, PowerTrader Fake, The BBS Traveller,
	  Hitch-Hiker 1.10 and Mutation Nation 1.0. Thanks again to Markus
	  Schmall for supplying me with these viruses.
	- Fixed Enforcer hit in the B.E.O.L. memory check code. Thanks to
	  Christoph Dietz for the report.

	! IMPORTANT: I will no longer add new patches as I may develop   !
	! a totally new vector check for VirusZ that will be intelligent !
	! enough to learn changes done to the vectors. So please don't   !
	! send me disks with new patches any longer.                     !

	And finally sorry for this relatively long delay, but it's going
	to be summer and I need some fresh air from time to time ;-)

 1.30   Changes/Additions since 1.29:
	- Added some old bootblock viruses: Ass Protector French, Cracker
	  Exterminator, Disk Furunkel, Lamer Ext. Decoded, Laureline Female,
	  Sinister Syndicate 1+2. Some of these aren't really viruses, but
	  most other virus checkers detect them, so I added them too.
	  Thanks to Jan Andersen for sending that stuff.
	- Fixed bug in preferences load routine. This code crashed on plain
	  68000 machines because of odd stack addresses. Thanks again to
	  Jan and to Phillip Feigh for the report.
	- Fixed bug in the 'Happy New Year 96' repair code. The old routine
	  missed to check for one possible branch location and therefore
	  produced some crashing files from time to time. Thanks to Holger
	  Wessling and Jan-Tore Eliassen for reporting that bug and sorry
	  for all the trouble you had with the defect files.
	- Added patches: CacheIt, ModePro, NewIcons, Prop3D and UrouHack.
	  Thanks to Dave Jones for collecting and sending that stuff.
	- Added new version of xfdmaster.library.
	- Added decrunch support to the FD file loader in the vector check.
	  Now you can crunch your FD files with any data cruncher supported
	  by xfdmaster.library. Thanks to Dave Jones for the nice idea.
	- VirusZ now requires xfdmaster.library already at startup, ie. you
	  MUST install it in your LIBS: drawer. The reason is simple: Until
	  v1.29, I added several xfd-routines directly to VirusZ to avoid
	  loading xfdmaster.library, but this seems to be very uneffective
	  as most people use the decrunch feature anyway. There is a nice
	  side effect too: VirusZ has been shortened by about 2500 bytes.
	- Added patches: LowFrag and UrouHack 1.3. Thanks to Bert Jahn for
	  sending that stuff.
	- Saved about 1600 bytes by removing double strings (mostly virus
	  names) and optimized some memory recognition code.

 1.29   Changes/Additions since 1.28:
	- Added xfdPatch to the vector check.
	- Added recognition for LZX archives to the file check. Thanks to
	  Holger Wessling for the hint.
	- Added MCP and PatchControl 2.2 to the vector check. Thanks to
	  Stefan Sommerfeld for sending the latest versions and for the
	  extra information.
	- Added option 'Use External Slaves' to the file check preferences.
	  This is a new feature of xfdmaster.library v37 to filter out
	  external slaves that cause trouble all the time.
	- Added KUK Crew and LZX 1.2 Fake trojans and Invader linkvirus.
	  Thanks to Markus Schmall for sending them.
	- Modified and expanded the background preferences. The buttons for
	  'Bootblocks', 'Disk-Validators' and 'Known Viruses' exist twice
	  now as all the other buttons too. The 'Check Disks On Startup'
	  has been removed and replaced by the above mentioned. Now you can
	  switch on/off the bootblock and disk-validator check separately,
	  the check for known viruses can be switched off at startup too.
	  Please control your settings when you start the new version for
	  the first time.
	- Rearranged some vector check code for better performance and
	  finally added all patches caused by SetPatch 40.16. Thanks to
	  Lars Kristensen for reporting about the SetPatch problems on
	  his machine.
	- Redesigned file check preferences for better readability.
	- Added changes done by 68040.library to vector check. If there
	  are still some vectors reported, please send me a note because
	  I couldn't test the recognition myself. No 68040 :-(

 1.28   Changes/Additions since 1.27:
	- Finally fixed a problem that I already noticed some months ago,
	  but didn't find the bug. After inserting and removing some disks,
	  it may have happened that the system had a busy-loop whenever the
	  background checker was working. Now I found the problem that
	  caused all the trouble: the BEOL memory checker tried to read
	  from a non-existing process in not available memory areas.
	- Added a big new feature: a real background checker that not only
	  searches for known viruses but recognizes all changes done to
	  any system vectors. You can configure it totally to your needs.
	  All checks can be enabled/disabled separately for startup and
	  for surveillance.
	- Added new security check to the memory checker: before testing
	  for known viruses, the respective address is tested to be in
	  available memory areas. This prevents busy-loops with RAD: or
	  other residents located near the bounds of a memory area.
	- Added MagicCX 2.39 to the vector check. Thanks to Martin Hans
	  for sending it.

 1.27   Changes/Additions since 1.26:
	- Added Happy New Year 96 linkvirus + 2 installers and three old
	  bootblock viruses called Asshole, RedGhost and Sao Paulo. Thanks
	  to Markus Schmall and Holger & Data-Stream for sending them.
	- Added new version of xfdmaster.library to the package.
	- VirusZ has a new official distribution site: Nirvana BBS !!
	  For more info read the updates chapter of the guide file.
	  Thanks to Markus Schmall for talking with the SysOp.

 1.26   Changes/Additions since 1.25:
	- Added (new versions of) the following patches:
	  BusyPointer, FastWaitBlit, PatchOpenWB, QuietTD, WBGauge,
	  PowerData, ForceIcon, ModePro, AlertPatch, Arq and ReqChange.
	  Thanks must go to Dave Jones, David Oakes, Martin Hans and
	  Adam Szymczak for sending me that stuff.
	- Added viruses: Circle Of Power 10 + 11, Biomechanic 6,
	  PB-Party Fake and Phantom Linkvirus + Installer. Thanks to
	  Markus Schmall for sending them.
	- Added unlink code for Glue 2.2 and Glue 2.3 linkers to the
	  file check. Thanks to Dave Jones and Markus Schmall for the
	  example files.

 1.25   Changes/Additions since 1.24:
	- Fixed menu colors for Kickstart V39+.
	- Removed INFO option from the shell template.
	- Added ARexx port! Finally VirusZ can be controlled from external
	  scripts or other programs. The first commands are HIDE and QUIT.
	- Added CHECKFILE command to the ARexx port. Now you can check
	  single files from other programs like DOpus etc.
	- Added ARexx command CHECKDIR to check a whole directory.
	- Added scripts: CheckFile.vzrx, CheckDir.vzrx and CheckArc.vzrx.
	  These three show the whole power of VirusZ's Arexx port. You may
	  modify them for use with e.g. DOpus or other archive types.
	- Extended shell template with FILECHECK, AREXX and QUIT commands.
	  These enable you to send ARexx commands from a shell environment
	  or from scripts directly to VirusZ. Returncodes represent the
	  results of the ARexx calls. If VirusZ is not running while using
	  one of the shell options, it will be first started and then the
	  commands will be transmitted to the ARexx port.
	- Fixed string comparison in the ARexx code. Now it is no longer
	  case sensitive and thus will no longer make trouble with shell
	  options.
	- Rebuilt and enhanced documentation. Now you can get some more
	  information about what VirusZ is doing in the background etc.
	- Added ExAll() emulation to the file checker. There seems to be
	  a problem with some Kickstart versions using ExAll(). I've
	  written a replacement routine that can be turned on if required.
	  Thanks to Markus Schmall for telling me about the problem and
	  to the guys who told it to Markus.
	- Added MultiCX 2.18 to vector check. Thanks Markus!
	- Fixed all gadget sliders to Kickstart V39+ colors.
	- Added Swifter 2.5 and SCSI-HD-Faker viruses. Thanks Markus!
	- Added new behaviour to startup code: If there's already an old
	  version of VirusZ running, this one will be terminated and the
	  new version is started. This will only work with versions that
	  already have an ARexx port, so this is useful starting with the
	  next version of VirusZ. Thanks to Holger for the idea.
	- Added 'Activate On Startup' option to the Misc settings. Now
	  you can tell VirusZ to activate the main window on startup.
	  Thanks to Axel Folley for that suggestion.
	- Added 'Skip Crypted Files' option to file check settings.
	  This is useful if you have many password-protected files and
	  don't want to click on the 'Cancel' gadget a hundred times.
	  Idea by Axel Folley, thanks a lot.
	- Fixed report output in file check: Now the escape sequences
	  are no longer starting with $9b, but with $1b,$5b. This makes
	  the output readable in editors like CygnusEd that support the
	  usual esc sequences. Thanks again to Axel Folley for the hint.
	- Added Wireface Trojan 2 (CheckMount) virus. This nasty beast
	  was sent to me by Axel Folley. Thanks #4!!

 1.24   Changes/Additions since 1.23:
	- Oops! Little bug fix in the file check. This one must have been
	  in VirusZ for at least 2 years and nobody (including myself)
	  noticed it. Whenever VirusZ came across 9 or more subdirectories,
	  the display went crazy because of a counter underflow in the
	  screen output routine. Special thanks to Cameron Weeks, Rudolph
	  Riedel and Axel Folley for the detailed report. Isn't it funny
	  that nobody noticed that bug for years and now you guys found it
	  all within two weeks??
	- Added support for SetMan, PatchControl and patch.library to the
	  vector check. All patches that have been SetFunction()ed with
	  one of these programs running caused VirusZ to display them as
	  unknown even if they were already built in.
	  Thanks to Rudolph Riedel for sending me the programs.
	- Added recognition for EasyReqPatch, ModePro, PatchAllocMem,
	  ReqChange, TimedRequesters and MultiCX to the vector check.
	  Thanks to Rudolph Riedel and Axel Folley for sending them.
	- Added Ebola and Cryptic Essence linkviruses.
	  Thanks to Markus Schmall for sending them.
	- Added support for FD files to the vector check. Now you are
	  able to see the function names of unknown vectors instead of
	  their offsets.
	- Uh! Last minute fix in the FD file support. Standard functions
	  (-6 to [-24/-36]) have not been displayed correctly.
	- Totally overworked file check routines. 4EB9-linked files will
	  be unlinked, decrunched and checked now. Nested 4EB9-links in
	  one file are handled all during one check via recursive calls
	  to the check routine. This stuff took me two full days as
	  I had to localize all global structures in the check routines!
	- Totally overworked internal file- and linkvirus brains to
	  support 4EB9-viruses directly. And another weekend is gone!
	  Attention: VirusZ will detect some built-in viruses ONLY if the
	  decrunch option is enabled. Sorry, but that's the drawback with
	  recursive checking.
	- Splitted docs in three parts: English, Deutsch and history.
	  Cut pre-VirusZ II entries from the history to shorten docs back
	  to a sensible size. Updated guides with new features.
	- Fixed another little problem with FD files in the vector check.
	  Some devices (e.g. trackdisk) don't have a FD file because they
	  don't offer additional functions. In that case the standard
	  functions (-6 to -36) have not been displayed by name.
	- Added new powerful version of xfdmaster.library.
	- Removed old icons and added MagicWB icons by Martin Huttenloher
	  and Timm S. Mller. Thanks for the great work guys!

 1.23   Changes/Additions since 1.22:
	- Oops! Illegal Access also has a method to link itself to
	  libraries/devices/datatypes etc. which I've totally forgotten
	  in the last version. Thanks to Markus Schmall for reporting
	  this 'feature'.
	- Oops again! The recognition for COP 9 recognized almost every
	  Amiga-E program as virus. Sorry for this especially to all
	  Amiga-E programmers who had trouble with their users.
	  Thanks again to Markus Schmall for the call.
	- Renamed viruses formerly called COP 9 to Biomechanic 1.
	- Renamed DayDream/Fixdisk Fake to Biomechanic 2.
	  VirusZ 1.21 Fake is a Biomechanic 2 too.
	- Added viruses: HD_Install Fake, Circle of Power 9, Vera 2.3,
	  ConMan Link Installer and ConMan Link, Wireface Trojan and
	  Biomechanic 3. Thanks to Markus Schmall for sending them.
	- Oops #3! When reading the report from VTC Hamburg, I always
	  wondered which generation of the Crime'92 shouldn't be
	  recognized by VirusZ. Now I found it by analysing the virus
	  once again. I've forgotten to check for word-padded links
	  (happens when the very last opcode in a file is RTS) and
	  I've overseen the fact that the encryption may have two
	  different branch offsets. Sorry folks, now it's 100% safe!
	- Optimized hunk handling in the linkvirus removal routines
	  and saved about 400 bytes of code.
	- Finally fixed one BIG problem of the file checker:
	  Whenever there was a write access (deleting/removing virus),
	  it may have happened that some files were overseen or
	  checked twice because the filesystem exchanges some file
	  headers on disk on every write access. This was especially
	  nasty concerning RAM:, because that handler is not block
	  oriented. That problems are history!!
	  I've rewritten the whole directory scan routine using ExAll()
	  instead of Examine()/ExNext(). Now not only the above mentioned
	  problems are fixed, but the code is even shorter and faster
	  than before. Nested directories are now handled via recursive
	  calls to the scan routine!
	- Added (new versions of) the following patches to the vector
	  check: AlertPatch, ExecPatch, MakeVPortPatch, Enhanced Alert
	  Hook, NewMenu, NoCare, PatchAlert, PointerX, Reset1200 and
	  SysIHack. Thanks to Dave Jones for sending them.

 1.22   Changes/Additions since 1.20:
	- Added file and memory support for B.E.O.L. and Illegal Access
	  viruses. These two bastards took me a whole weekend to analyse
	  and find a cure. Very nasty and totally new ideas inside.
	  Thanks to Markus Schmall for sending them so quickly.
	- Added some more information to the vector check 'CPU Interrupt
	  Vectors'. Just an idea I got while analysing Illegal Access.
	  Now not only the autovectors are displayed, but all exceptions.
	- Added recognition for the following viruses:
	  Alfons Eberg 2.0, ComKiller 1.6 Fake, Condom 1.5, K&M Intro,
	  DayDream/FixDisk Fake, Butonic 3.10 + Installer, LZX 1.20 Fake,
	  Empty Biomechanic, Rock'n'Roll Trojan and InstSG Fake.
	- Added new feature to file check: So-called 4EB9-Linkers will
	  now be detected and reported. 4EB9, 4EF9, UFO and XLink linkers
	  are recognized by now. I will add some more support for these
	  in the next versions (Possibly re-link and check single parts?).

----------------------------------------------------------------------------
 1.21   FAKED VERSION!!! I never released VirusZ II 1.21 (80268 Bytes).
	This is an original VirusZ version with a Biomechanic virus
	linked to it via 4EB9 Linker. Delete it immediately!!!
	Thanks to Markus Schmall for reporting about that stuff.
----------------------------------------------------------------------------

 1.20   Changes/Additions since 1.18:
	- Added recognition for the following viruses:
	  Circle Of Power (several new versions), Fileghost 3, Karai
	  and Conman 1995 + Installer. Thanks to Markus Schmall and
	  Axel Folley for sending that stuff.

----------------------------------------------------------------------------
 1.19   FAKED VERSION!!! I never released VirusZ II 1.19 (9.6.95).
	This actually is VirusZ II 1.03 with only the version strings
	changed. No damage is caused by this fake.
	Thanks to Markus Schmall for reporting about that stuff and to
	Holger Hesselbarth and Andr Lagemann for sending it to me.
----------------------------------------------------------------------------

 1.18   Changes/Additions since 1.17:
	- Updated file check to support the new features of the
	  xfdmaster.library v35.
	- Added new option to the file check prefs: "Decrunch Data Files"
	  Now you can tell VirusZ to load data files completely into
	  memory and try to decrunch them. Useful especially for XPK
	  packed executables, as they couldn't be checked for viruses
	  until now. Thanks to Nicolas Franck for this nice idea.
	- Renamed old option "Decrunch Files" to "Decrunch Executables"
	  as this description is less confusing.
	- VirusZ has a second official distribution site now:
	  Virus Help BBS - Team Denmark [++45-3672-6867]. Thanks Jan!
	- Fixed little bug in the linkvirus removal code: If the hunk to
	  be removed was the only hunk of the whole file, VirusZ crashed.
	  Thanks to Koenraad Rutgers for sending some example files.
	- Added new patches: MultiUser 1.8, ToolManager 2.1a, SmartWB
	  and xLoadSeg. Thanks to Nicolas Franck for sending them.
	- Added viruses: Circle Of Power 4, CallingCard Hacker and
	  HD SpeedUp 1.0. Thanks to Jan Andersen for sending them.
	- Added new features to the vector check:
	  a. Settings can be changed within the vector check now.
	     If some prefs have been changed, display auto-refeshes.
	  b. Vector report can be saved now. Thanks to Steve Bowman for
             this useful idea and sorry for the long delay.

 1.17   Changes/Additions since 1.16:
	- Added viruses: Revenge of NANO 1 + 2, IconDepth Fake, VScan Fake,
	  Circle of Power 2 + 3. Thanks to Markus Schmall and Matthias Gutt
	  for sending them.
	- VirusZ has an official distribution site now. Thanks to Holger
	  of THE REALM [++49-(0)515-43528] for his offer.

 1.16   Changes/Additions since 1.15:
	- Added patches: DosPrefs, TWA, PowerSnap and a new version of
	  ToolsDaemon. Thanks to Rudolph Riedel for sending these.
	- Added viruses: Circle Of Power, /X Fucker, Rastenbork 1.2,
	  Rastenbork 2.0, Rastenbork Installer, World Clock Fake.
	  Thanks to Markus Schmall and Jan Andersen for sending them.

 1.15   Changes/Additions since 1.13:
	- Added Gathering '95, Conman-LoadWB + Installer, Addy 0.99 +
	  Installer, Commander Installer, Copy_LX, LhA V3, IStrip 2.1.
	  Thanks to Markus Schmall for all that viruses.
	- Fixed recognition for DMS 2.06, Timebomber Inst. and Gotcha
	  Lamer! Installer. Thanks again to Markus Schmall.

----------------------------------------------------------------------------
 1.14   FAKED VERSION!!! I never released VirusZ II 1.14 (2.2.95).
        This actually is VirusZ II 1.03 with only the version strings
        changed. No damage is caused by this fake, but it's really
        old and though not too useful. Thanks to Jan Andersen for
        sending that stuff to me.
----------------------------------------------------------------------------

 1.13   Changes/Additions since 1.12:
	- Added new PointerX, SysException and AddPower to the vector
	  check. Thanks to Dave Jones for sending this stuff.
	- Added 'Access Forbidden' clone. Again thanks to Dave.
	- Added CheckDebug, CycleToMenu, ForceIcon, NewMode, PatchPointer,
	  SwazInfo and new Setpatch to vector check. Thanks to
	  Thomas Kessler for all those bits'n'pieces.
	- Added WBExtender to vector check. Thanks to Markus Schmall.
	- Added Ami-Hacker, DMS 2.06 Short and Surprise virus. Thanks
	  to Markus Schmall for sending this stuff.
	- Totally revised & updated the filevirus brain. Everything is
	  prepared for some new features now. Wait and see...
	- Fixed some bad recognition code that reported several
	  virus-free programs to be infected. Thanks to Markus Schmall,
	  David Oakes and Koenraad Rutgers for the hints.
	  Note to Koenraad: The problems with BootJob and XLink will
	  be fixed in one of the next updates as this is what I wanted
	  to do next anyway. Your files are NO viruses.
	- Added patches: FasterBlit 6.6 and some new SetPatch stuff.
	  Thanks to Adam Szymczak for these.
	- Added Pestilence bootvirus. Infected sectors can be repaired
	  via SectorCheck. Thanks again to Markus Schmall.

 1.12   Changes/Additions since 1.11:
	- Added Commander, Eleni! and Fileghost 2 viruses! Thanks to
	  Markus Schmall for sending them.
	- Added new versions of ReqChange and CopyMemQuicker to the
	  vector check. Thanks to Adam Szymczak for sending them.
	- Renamed "? No Name ?" virus to Vtek 2.2.
	- Improved recognition code for Decompiler virus. Some AMOS
	  files had been recognized as the virus. Thanks to Markus
	  Schmall for the hint.
	- Redesigned whole file- and linkvirus checking routines.
	  You won't notice a big difference as the GUI looks as always,
	  but internally everything has changed. VirusZ is now able
	  to check EVERY hunk of executable files for linkviruses.
	  NO hidden linkviruses anymore by just adding some new hunks!
	- Fixed several small bugs in some old linkvirus stuff while
	  rewriting the checker.
	- Linkvirus removal code now supports all official hunktypes
	  from hunk_unit to hunk_index.
	- Added some new file types.
	- Renamed some more viruses, amount of viruses changed
	  slightly because some routines now recognize several
	  types of the same virus while others have been split.
	- Redesigned "Show Brains" requester.
	- Added Big Ben, Max Of Starlight '93, BootX Killer and
	  Amiga Fanatic 1.1 bootviruses. Thanks to Markus Schmall
	  as always for sending them ;-)
	- Added recognition for new versions of RTPatch and FasterBlit.
	  Thanks to David Oakes for sending them.
	- Redesigned "Show Brains" again, displays patches now.

	TO DO:
	Due to lack of time, I just redesigned the linkvirus part of
	the file check, the filevirus part still only checks the first
	hunk. This will be changed in later releases. I have some ideas
	concerning the so-called 4EB9-Linker and similar utilities, too.
	This is a secret, wait for the key...

 1.11   Changes/Additions since 1.10:
	- Added Elien 0.1 virus and VMK 3.00 fake. Thanks to Markus
	  Schmall for sending them.
	- Added Enforcer, SegTracker and MungWall to vector check.
	  Thanks to Ulrich Klauer for sending this stuff.
	- Added latest version of xfdmaster.library.

 1.10   Changes/Additions since 1.09:
	- Added viruses: Decompiler, Doom + Installer, Intel (LoadWB),
	  Lamerfry 1.3b, Lamerkiller, Laureline, DMS 2.13 Fake, JiZANSi,
	  RootFormatter, EastStar + Installer, Look BBS, Sumpf Gag,
	  Polyzygotronifikator. Thanks to Markus Schmall for these.
	- Added latest version of xfdmaster.library.
	- Added another linkvirus that doesn't contain any ID string,
	  so I simply called it "? No Name ?". May be renamed later.
	  Thanks again to Markus Schmall for sending it.

 1.09   Changes/Additions since 1.08:
	- Added viruses: Eleni, Loop-Combo and Labtec. Thanks to
	  Markus Schmall and Mark Ives for sending these.
	- Added latest version of xfdmaster.library.

 1.08   Changes/Additions since 1.07:
	- Added viruses: Mount, Debugger, G-Zus and some CCCP Clones.
	  Thanks to Marco van den Mont, Jan Andersen, Jim Maciorowski
	  and Krzysztof Klos for sending them.
	- Added more viruses: Installer of Mount, Easy-E and Installer
	  of Conman. Thanks to Markus Schmall for sending them.

 1.07   Changes/Additions since 1.06:
	- Added viruses: Installer of Datalock, LhA-Check 1.1 and a new
	  version of Menem's Revenge. Thanks to Markus Schmall and
	  Jan Bo Andersen for sending them.
	- Again new viruses: MST-Inte, Rel 01.28 and Conman-Trojan.
	  Thanks to Markus Schmall for these beasts.
	- Added new version of xfdmaster.library including external
	  decruncher and changed installation script.
	- Designed new icons for VirusZ, Guide and Installation.

 1.06   Changes/Additions since 1.05:
	- Added some additional self checks. You can now verify if your
	  copy of VirusZ is an original or a fake by comparing the length
	  stated in the "About" request with the actual file length.
	- Added new patches: HD Floppy Driver, SetPatchMrgCop, PowerData,
	  BorderBlank and a new version of MagicMenu.
	  Thanks to David Oakes and Naim Hosein for sending them.
	- Added boot viruses: Datalock 1.1, Datalock 1.2, Polish P-1B.
	  Thanks to Markus Schmall and Krzysztof Klos.
	- Added file viruses: Installer of Digital Dream, Xlink 3.0,
	  Saddam 7, Aibon 3, Burn 2, T.A.I. 11, ToolsDaemon 2.2 Fake,
	  GeneralHunter 3.2. Thanks to Markus Schmall, Martin Odaischi
	  and Jan Bo Andersen.
	- Added string gadget "Devices" to the Misc Prefs. Now you can
	  enter all your devices (mounted or unmounted) to this list
	  and they will be both checked from the background task and
	  used from the BootLab. I hear some people say: "Oh, I have to
	  type them all myself. How irritating!". BUT: You'll have to do
	  it only once, and then there will never be any problems with
	  CD drives, some HD controllers etc. If a drive doesn't work,
	  simply don't add it to the list. Thanks to this simple but
	  nevertheless great idea to Axel Folley.
	- Added again viruses: Zonder Kommando 1 + 2, AAA-Enhancer, JINX.
	  Thanks to Markus Schmall for these and for the 'Burn' code.
	- Included latest version of xfdmaster.library.

----------------------------------------------------------------------------
      !WARNING!   VirusZ II 1.05 (68544 bytes) is a fake!    !WARNING!
                     The original is 66116 bytes long.
----------------------------------------------------------------------------

 1.05   Changes/Additions since 1.03:
	- Totally redesigned documentation. It is now written for AmigaGuide
	  and contains a German section to satisfy all the guys who kept on
	  nagging for the last months.
	- Added some nice code for encrypting VirusZ. Bad luck, hackers.
	  I hate nothing more than little lamers thinking they are cool
	  when they destroy the hard work of other people.
	- Added patches: AlertPatch, FaccII, GOMF 3.0, RTDD 1.7, SFAPatch,
	  Setpatch 40.14. Thanks go to Steve Bowman and Ralf Thanner.
	- Added bootblock viruses: Baltasar, Datacrime 2.0, PAL, PDS, PKK,
	  Shake!, TAI 4, TAI 5, TAI 6, TAI 8, TAI 9, Tomates Gentechnic 2.0.
	  Thanks to Martin Odaischi and [can't remember who it was].
	- Added file viruses: Boot-Virus Installer, VirusZ 1.03 Fake.
	  Thanks fly over to Martin Odaischi and Markus Schmall.
	  If I only could get my hands on the little idiot who did that
	  fake, he'd wish he never had done it.

----------------------------------------------------------------------------
      !WARNING!           VirusZ II 1.04 is a fake!          !WARNING!
----------------------------------------------------------------------------

----------------------------------------------------------------------------
      !WARNING!   VirusZ II 1.03 (67076 bytes) is a fake!    !WARNING!
                     The original is 64664 bytes long.
----------------------------------------------------------------------------

 1.03   Changes/Additions since 1.01:
	- Added the following viruses: Sepultura 2.26, BossNuke,
	  ModuleMaster 1.7 Fake, Virus-Hunter 10.20, VKill 1.00 File,
	  Merry, MegaLink, Digital Dream, Zenker.
	  Thanks to Markus Schmall and Jan Nielsen for sending them.
	- Replaced decrunch.library by xfdmaster.libary support.
	  That's one of the reasons why the last few updates were
	  quite simple, I worked on that library since October.
	  It works much more efficient than decrunch.library,
	  is much safer and supports some more crunchers. Several
          bugs have been fixed.
	- Improved the hunk tester in the file check.
	- Added some more viruses: PHA Intro Fake, Anim Intro Fake,
	  Dialer 2.8g/6.2, M-WHO Backdoor, Stockmarket Backdoor.
	  Thanks to Markus Schmall and Jan Bo Andersen.
	- Replaced old reqtools.library with a new update.
	- Added new patches to vector check: Xoper 2.4, NOG2 2.1,
	  PowerCache 37.64, FasterBlit 5.0, IPrefs 40.29.
	  Thanks to Ralf Thanner for sending them.

----------------------------------------------------------------------------
      !WARNING!   VirusZ II 1.02 is a fake, delete it now.   !WARNING!
----------------------------------------------------------------------------

 1.01   Changes/Additions since 1.00:
	- Added new viruses: VIRI, SHI, VCS 1, VCS 2, Leviathan,
	  Fred Cohen.
	  Thanks to Markus Schmall and Jan Bo Andersen for these.
	- Added new patches to vector check:
	  KCommodity 2.5, MagicMenu 1.27, PrintManager 1.1 + 2.0,
	  FastWaitBlit, FrontPubScreen, Alert Patch.

 1.00   Changes/Additions since 0.94:
	- Added new bootviruses: Karl Marx, CBM, SCA 666, M_Chat and
	  TFC Evergreen 47.11.
	  Thanks to Martin Odaischi for sending them.
	- Added new bootviruses: AIFS, NASA, TAI, PVL.
	  Added new linkviruses: Dark Avenger 1 + 2.
	  Thanks to Markus Schmall for sending them.

 0.94  Changes/Additions since 0.93:
	- Added several new bootblock viruses (mostly clones):
	  ABC Viruskiller 1.01, Electro Vision, Exorcist, Grim Reaper,
	  Irak 3, JT Protector 1.0, Lame Game, MAD 3b, Prima Vera 8.0,
	  Starcom 1, 2 and 3.

 0.93  Changes/Additions since 0.92:
	- Added code for safer device calls. Several people told me
	  that previous VirusZ versions crashed immediately when started
	  on their A3000(T). They all had PC0: mounted. This was not a
	  problem of VirusZ at all, but a bug in the mfm.device of
	  Commodore. This device trashes register D3 in the Open() call
	  and therefore caused VirusZ to crash because it uses D3.
	  Time for a little bug fix, Commodore??
	  Thanks a lot to Axel Folley for his extensive testing. I don't
	  know if I would have found that bug as fast as he did.

 0.92  Changes/Additions since 0.91:
	- Added 'Check Again' gadget to file and sector checker.
	- Added 'Auto-Save Report' and 'Default Report Path' to the
	  file check preferences.
	- Added 'Hide OK Vectors' to the vector check preferences.
	- Rewrote main loop to act as a commodity. VirusZ can now
	  be controlled via Exchange.
	- Added Shell options and tooltypes CX_PRIORITY, CX_POPKEY
	  and CX_POPUP for standard commodity support.
	- Added 'Hide' item to project menu.
	- Added commodity default settings to the misc prefs.
	- Removed 'Snapshot Window' item from prefs menu.
	  The window now remembers all movements automatically.
	- Added 'Center Main Window' to the misc prefs to override
	  the remembered window position.
	- Added 'Close Main Window = Exit' to support both the old
	  CLOSEWINDOW and the standard commodity behaviour.
	- Added Shell option and tooltype PUBSCREEN. VirusZ can open
	  its windows on any public screen now.
	- Added Shell option ??=INFO. Use it to get more information
	  about the usage of the other options.
	- Added new viruses: SnoopDos 1.9 Fake, SnoopDos 2.1 Fake,
	  DWEdit 1.62a Fake, DI Ansi Ed 2.8 Fake, AEReg 3.9, A.I.S.F.

 0.91  Changes/Additions since 0.90:
	- Added bootblock lab (no brain support yet).
	- Added bootlab preferences.
	- Removed Unicorn 1.1 from the bootvirus brain. This is not
	  a virus, but a quite unique loader for menus etc.
	  Thanks to the guy from Unicorn for calling me.

 0.90  Changes/Additions since 3.07:
	- VirusZ requires OS2 now.
	- Redesigned main menu and split it in two parts.
	- Totally rewritten file check. Uses a multiselect filereq
	  now, has a new window and new preferences. Detects more
	  file types and handles viruses even better than the old one.
	- Totally rewritten sector check. Only works wit                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                        U    h trackdisk units
	  now and supports HD drives. Improved Saddam checking in order to
	  prevent wrong diagnostics (same with Little Sven). New window
	  and own preferences have been added.
	- Totally rewritten vector check. Output may be scrolled now,
	  preferences configure the vectors that should be checked.
	- Totally rewritten background checker. Works parallel to
	  the main process and therefore can check memory/disks even
	  during a file check. Own preferences.
	- New preferences format with checksum. This will be compatible
	  with future ones because of standard definition.
	- Rewritten startup code.
	- Added internal brain display to VirusZ.
	- No brain support and all related functions in this release.
	- No bootblock lab + prefs.
	- No Shell usage.
	- 1000 other minor changes I can't remember.

----------------------------------------------------------------------------
VirusZ II (OS 2.0+ only) history starts in Summer '93.
VirusZ 1.00 - VirusZ 3.07 history (September '91 - Summer '93) removed.
----------------------------------------------------------------------------
                                                                                                                                 H                                                                                                  VirusZ                                                               x                UvO                                                                                                                                                                                                                                                                                                                                                                                                VirusZ.History.info                                                x          ( [ * '   Hܠ                  l   $   M                * &  8                           8    p             =                                                                                                 ?              ` p x | |~ ~  '  D  "IK  JO   5  "J'    "I_  4   ~                              0   `            >         @[J @    @t @    @ݶ @    @  @    @    @v @    @ݵ @    @fv @    @ݶ @    @wT @    @    @l   @    @    @    @    @     @             0   `            >         @[J @    @t @    @ݶ @    @  @    @    @v @    @ݵ @    @fv @    @ݶ @    @wT @    @    @l   @    @    @    @    @     @             0   `            >         @[J @    @t @    @ݶ @    @  @    @    @v @    @ݵ @    @fv @    @ݶ @    @wT @    @    @l   @    @    @    @    @     @             0   `            >         @[J @    @t @    @ݶ @    @  @    @    @v @    @ݵ @    @fv @    @ݶ @    @wT @    @    @l   @    @    @    @    @     @             0   `            >         @[J @    @t @    @ݶ @    @  @    @    @v @    @ݵ @    @fv @    @ݶ @    @wT @    @    @l   @    @    @    @    @     @             0   `            >         @[J @    @t @    @ݶ @    @  @    @    @v @    @ݵ @    @fv @    @ݶ @    @wT @    @    @l   @    @    @    @    @     @     * &  X                     @     P     H    D  8  B    A  `   @            @  @     @ @     @  @     @   @     @     @ @     @  @     @  @     @  @     @  @     @     @    @     @     @     @     @            ? ? ? ? ? >? ???@??Z??ň??$??'???Ě??%??̍D??$??DU???I????            @   ` @   @ @   @ @  @ @0  @ A  @ @  @ @    @    @     @-l  @     @:w] @     @nZ  @     @Z   @     @     @;eu @     @n  @     @3r  @     @nP  @     @e  @     @     @    @     @     @     @                  @   ` @   @ @   @ @  @ @0  @ A  @ @  @ @    @    @     @-l  @     @:w] @     @nZ  @     @Z   @     @     @;eu @     @n  @     @3r  @     @nP  @     @e  @     @     @    @     @     @     @                  @   ` @   @ @   @ @  @ @0  @ A  @ @  @ @    @    @     @-l  @     @:w] @     @nZ  @     @Z   @     @     @;eu @     @n  @     @3r  @     @nP  @     @e  @     @     @    @     @     @     @                  @   ` @   @ @   @ @  @ @0  @ A  @ @  @ @    @    @     @-l  @     @:w] @     @nZ  @     @Z   @     @     @;eu @     @n  @     @3r  @     @nP  @     @e  @     @     @    @     @     @     @                  @   ` @   @ @   @ @  @ @0  @ A  @ @  @ @    @    @     @-l  @     @:w] @     @nZ  @     @Z   @     @     @;eu @     @n  @     @3r  @     @nP  @     @e  @     @     @    @     @     @     @                  @   ` @   @ @   @ @  @ @0  @ A  @ @  @ @    @    @     @-l  @     @:w] @     @nZ  @     @Z   @     @     @;eu @     @n  @     @3r  @     @nP  @     @e  @     @     @    @     @     @     @              More       % Icon by Martin Huttenloher                                                                                                                                                                                                                                                                      U                  ǈO                                                                                                                                                                                                                                                                                                                                                                                                        VirusZ.info                                                          x           > & (                               0                & '  f              @                     w          E      *"   \Dp   䈿  DD_   """ CE x <׸ *o q W } U #x U<T  UOT  UUT ~ UUT  wwwt                   UU[UT ""="  UUT  UWT z U~yT U0 U⪅T U | W  QUO  UU5 vo {PT ) ~U b M	( Қ| 5( 5\ i UT r DGD      ?                    O t   U U  eUO | P < QU@<  UU@  TU * UTD "8 p| B< -A| | ?|        o /  ?        & '  x                  8     |                _         :#   tE     ?  "? DD_   """ DE x <׸ "/ _q W } U "q  UyT ƨ U_T  UWT  UUT  wwwt               q      UUUT "#"  UWUT  U_ST  U}TT z UU=T ꪞ WUOT  UUO  UU5 vo {UT  ~SU j M	( ښ| 5( k Ȩ UT  D_DD 
  *                         P?  T  uU ꪁ U@ | UU@<  UU@  UU  UTD *8 P| J< %A| | 	 ~ = ,  /               ! Icon by Timm S. Mller                                                                ~  }  |  {  z  y  x  w  v  u  t  s  r  q  p  o  n  m  l  k  j  i  h  g  f  e  d  c  b  a  `  _  ^  ]  \  [  Z  Y  X  W  V              O                                                                                                  VirusZ.History                                                       x          H      Z                                                                                                                                                                                                                                                                VirusZ_Deutsch.Guide                                                 x  @DATABASE "VirusZ_II_Deutsch.guide"
@$VER: VirusZ_II_Deutsch.guide 1.33

@NODE MAIN "Inhalt"


                               @{b}VirusZ II 1.33@{ub}
                           @{b}- Deutsche Anleitung -@{ub}

                                 @{"SHAREWARE" LINK SHAREWARE_D}

                    @{i}Copyright  1991-96 by Georg Hrmann@{ui}


        @{"  Wichtiger Hinweis  " LINK IMPORTANT_D}    Bitte jetzt sofort lesen!

        @{"     Rechtliches     " LINK LEGAL_D}    ber Urheberrecht und Haftung.
        @{"      Vertrieb       " LINK DISTRIBUTION_D}    Wie darf ich VirusZ weitergeben?
        @{"    Bezugsquellen    " LINK UPDATES_D}    Woher bekomme ich neue Versionen?
        @{"      Shareware      " LINK SHAREWARE_D}    Lesen und danach handeln!
        @{"     Zusendungen     " LINK SUBMISSIONS_D}    Wie erreiche ich den Autor?

        @{"     Einfhrung      " LINK INTRO_D}    Wieso soll ich VirusZ benutzen?
        @{"   Voraussetzungen   " LINK REQUIRE_D}    Bentigte Systemvoraussetzungen.
        @{"    Installation     " LINK INSTALL_D}    Wie wird VirusZ installiert?

        @{"    WB ToolTypes     " LINK TOOLTYPES_D}    Untersttzte Workbench-ToolTypes.
        @{"   Shell-Optionen    " LINK SHELL_D}    Untersttzte Shell-Schablone.
        @{"     Hintergrund     " LINK BACKGROUND_D}    Hintergrundfunktionen von VirusZ.
        @{"        Mens        " LINK MENUS_D}    Alle Funktionen und Voreinstellungen.
        @{"     ARexx Port      " LINK AREXX_D}    Benutzung von ARexx Kommandos.

        @{"    Danksagungen     " LINK THANKS_D}    Guten Freunden gibt man ein Kchen...
        @{"    ber MagicWB     " LINK MAGICWB_D}    MagicWB Piktogramme sind Shareware!
@ENDNODE

@NODE IMPORTANT_D "Wichtiger Hinweis"
Nachdem  in  letzter  Zeit  einige Fakes von VirusZ in Umlauf gekommen sind,
enthalten  ab  jetzt  alle  Versionen  ihre  Original-Dateilnge  im "About"
Fenster.   Wenn  Sie sich nicht sicher sind, ob Sie eine saubere Version von
VirusZ  erhalten  haben, entpacken sie das Archiv zunchst auf eine bootbare
Diskette,  deaktivieren  Sie  alle  Harddisks im BootMenu und fahren Sie das
System  von der vorbereiteten Diskette hoch (es werden die reqtools.library,
die  xfdmaster.library  und  die  commodities.library  im  Verzeichnis Libs:
bentigt).   Vergleichen Sie nun die angegebene Lnge im "About" Fenster mit
der  tatschlichen Dateilnge ihrer Version.  Stimmen die Werte berein, ist
eine Infektion auszuschlieen und Sie knnen das Programm getrost verwenden.
Ansonsten ist das Lschen des vernderten Programmes angeraten.

Wenn  Sie eine 100% saubere Version des aktuellsten VirusZ bekommen mchten,
wenden Sie sich an die aufgefhrten offiziellen @{"Bezugsquellen" LINK UPDATES_D}.

Falls  Sie  irgendwelche Patches installiert haben, die VirusZ nicht erkennt
und  die  harmlos  sind,  sollten  Sie  die entsprechende 'Check On Startup'
Option ausschalten, um die Meldungen zu unterdrcken.  Der berwachungsmodus
garantiert  trotzdem  die  Erkennung erneuter Vernderungen an den Vektoren.
Diese  Methode  arbeitet  aber  nur  einwandfrei,  wenn Sie VirusZ erst nach
Installation  aller  Patches  starten,  da diese sonst vom berwachungsmodus
aufgegriffen werden.
@ENDNODE

@NODE LEGAL_D "Rechtliches"
Das  komplette  VirusZ Softwarepaket mit Ausnahme der Reqtools.Library wurde
geschrieben  von  Georg  Hrmann  und  ist  urheberrechtlich geschtzt.  Die
Reqtools.Library  wurde  von Nico Franois geschrieben und darf frei kopiert
werden.   Die  MagicWB Piktogramme wurden von Martin Huttenloher und Timm S.
Mller entworfen.

Die  Dateien  dieses  Paketes  drfen in keiner Weise verndert werden.  Das
Archivieren des gesamten Paketes ist erlaubt.

Der   Autor   ist   weder   verantwortlich   fr  von  Dritten  vorgenommene
Vernderungen  an  Teilen dieses Softwarepaketes noch fr eventuelle Schden
oder  Datenverluste,  die  durch  die  Benutzung dieses Programmes auftreten
knnen.
@ENDNODE

@NODE DISTRIBUTION_D "Vertrieb"
Durch  den  Vertrieb  dieser  Software drfen keine greren Gewinne erzielt
werden.   Eine  geringfgige  Gebhr  fr  das Kopieren der Software und zur
Deckung der Kosten fr den Datentrger darf erhoben werden.  Sie sollte eine
Hhe  von  DM 5 nicht berschreiten.  VirusZ darf ohne meine Genehmigung auf
allen  Public  Domain CDs (wie Fred Fish etc.) vertrieben werden, solange es
sich  um  keine  kommerziellen  Produkte  handelt.  Wenn Sie dieses Paket an
Bekannte  weitergeben  wollen,  so  darf  dies  nur  im  kompletten  Zustand
geschehen.   Falls  Sie  selbst  bereits  ein unvollstndiges Paket erhalten
haben,  sollten  Sie  sich ihre Programme in Zukunft woanders besorgen.  Zur
Kontrolle folgt eine Auflistung aller Dateien, die zu diesem Paket gehren:

   VirusZ (dir)
      ARexx (dir)
         CheckArc.vzrx
         CheckDir.vzrx
         CheckFile.vzrx
      ENVARC (dir)
         VirusZ_II.Archivers
      Libs (dir)
         xfd (dir)
            .README.FIRST
            [...]
         xfdmaster.library
         reqtools.library
      SCRIPTS (dir)
         VirusZ_II.ZOO_Script
      ANSi.THeReaLM
      ANSi.ViRuSHeLP_DK
      Install Libs
      Install Libs.info
      Install.script
      VirusZ
      VirusZ.info
      VirusZ_Deutsch.Guide
      VirusZ_Deutsch.Guide.info
      VirusZ_English.Guide
      VirusZ_English.Guide.info
      VirusZ.History
      VirusZ.History.info
   VirusZ.info
@ENDNODE

@NODE UPDATES_D "Bezugsquellen"
VirusZ  erscheint  unregelmig auf vielen BBSen und PD-Serien.  Um wirklich
die  jeweils  aktuellste  Version  zu  erhalten, wenden Sie sich an folgende
Bezugsquellen:

            ber Modem:                         TIME PD-Disketten:

             THE REALM                            Black & White
         ++49-(0)515-43528                      Burckhard Schmidt
            UP TO 14.4k                           Halmerweg 31
         ONE NODE RINGDOWN                        28237 Bremen
                                                Tel. 0421/6160712
            Nirvana BBS
      USR V34 FC Dual Standard
        ++49-(0)511-9524227
            V32 bis Node
         ++49-(0)511-522809

   Virus Help BBS - Team Denmark
        SysOp: Jan Andersen
          ++45-4659-6867
           USR 33.6 V.FC

Alle Anti-Viren-Programme knnen von der Virus Help BBS frei gezogen werden.

Zusatz-Info ber THE REALM (vom Sysop persnlich):

Es  gibt jetzt einen eigenen Account fr VirusZ Benutzer.  Jeder, der VirusZ
haben  will,  der loggt sich als Handle:  VirusZ, Password:  VirusZ ein, und
schon kann das neueste VirusZ gezogen werden.

Jeder,  der  sich  auch  gerne  mal mit anderen Usern unterhalten will, aber
eigentlich  doch  nur  das  neueste  VirusZ  haben mchte, der kann sich als
richtiger  User  einloggen,  braucht  aber den Fragebogen NICHT auszufllen,
d.h.   mir  keine  persnlichen  Daten (z.B.  Vorname, Tel.-Nr., ...) geben.
Solche User bekommen dann einen eingeschrnkten Zugriff auf die BBS.

Natrlich  gibt  es  auch noch den ganz normalen Account, da kann sich jeder
eintragen und bekommt dann vollen Zugriff auf die BBS.

Ein Userbeitrag oder Sauggebhr wird nicht erhoben, warum auch?
@ENDNODE

@NODE SHAREWARE_D "Shareware"
VirusZ  wird  als  Shareware  vertrieben.  Das bedeutet fr Sie, da Sie das
Programm  sowohl  testen  als auch weitergeben drfen, aber bei regelmiger
Benutzung  eine  Gebhr an den Autor zu entrichten haben.  Dies nicht zu tun
ist  sowohl  moralisch  verwerflich  als  auch illegal.  Wenn Sie die Gebhr
bereits  fr  eine  ltere Programmversion entrichtet haben, bleibt es Ihnen
berlassen,   ob   Sie   dies  wiederholen  mchten.   Ansonsten  wird  eine
finanzielle Zuwendung in Hhe von DM 20 oder mehr empfohlen.

Die  Entrichtung der Gebhr beinhaltet keinerlei Ansprche auf Zusendung von
Updates.   Wenn  Sie unbedingt auf einem derartigen Service bestehen, mssen
Sie  zustzlich  eine  Diskette  sowie  gengend Rckporto (mindestens DM 3)
beilegen.
@ENDNODE

@NODE SUBMISSIONS_D "Zusendungen"
Falls  Sie  auf  neue Viren oder Cruncher gestoen sind, wrde ich mich ber
deren   Zusendung  im  Interesse  aller  Anwender  freuen.   Wenn  Sie  Ihre
Diskette(n)  zurckbekommen mchten, mssen Sie ausreichend Rckporto (DM 3)
beilegen.   Bei  Unterlassung behalte ich mir vor, den/die Datentrger nicht
zurckzusenden.  Hier ist meine Adresse:

   Georg Hrmann
   Martinswinkelstrae 16c
   82467 Garmisch-Partenkirchen
   Germany

Bitte  schicken  Sie keine neuen Patches mehr, ich werde sie nicht einbauen.
Vielmehr  plane  ich  einen neuen Vectorcheck, der dann Vernderungen selbst
lernen kann.

Ich habe keinen Internet-Zugang, und das aus folgenden Grnden:
1. Ich bin kein Student, der das Ganze umsonst an der Uni haben kann.
2. Ich habe (noch) keinen Goldesel fr die Telefonrechnungen.
3. Ich habe momentan zu wenig Zeit, um mich berhaupt in die Materie
   einzuarbeiten und dann auch noch tglich Post zu bearbeiten.
@ENDNODE

@NODE INTRO_D "Einfhrung"
Dieses  Kapitel  soll  nur einen groben berblick darber vermitteln, welche
Mglichkeiten Ihnen VirusZ bietet.

Als erstes sollte erwhnt werden, da VirusZ als Hintergrundprogramm benutzt
werden  kann, um jederzeit Disketten und Speicher zu berwachen.  Sowohl fr
diese  Ttigkeit  als  auch  fr  jedes  andere Aufgabengebiet stellt VirusZ
umfangreiche Einstellungsmglichkeiten zur Verfgung.

Auerdem  bietet  VirusZ verschiedene Prfmechanismen fr Dateien, Sektoren,
Systemvektoren  und  Bootblcke.  Diese sollten immer dann verwendet werden,
wenn Sie neue Software erhalten haben.

Schlielich  kann VirusZ teilweise auch ber ARexx gesteuert werden, was Sie
in die Lage versetzt, Funktionen auch aus anderen Programmen aufzurufen.

VirusZ  wurde als Commodity konzipiert und verzichtet komplett auf unsaubere
Tricks, es folgt den Richtlinien des Style Guides und bietet Tastaturkrzel,
Reqtools-Requester und viele andere ntzliche Konzepte.

VirusZ  ist weder lokalisierbar noch zeichensatzunabhngig!  Daran wird sich
auch   in   Zukunft  nichts  ndern,  weil  das  ursprngliche  Konzept  des
Hintergrundprogramms   immer   erhalten  bleiben  wird.   Die  Untersttzung
verschiedener  Sprachen  und  Zeichenstze  brchte  aber  unweigerlich eine
enorme  Volumenzunahme  des  Programms  mit  sich, die es fr viele Anwender
unmglich machen wrde, VirusZ stndig laufen zu lassen.
@ENDNODE

@NODE REQUIRE_D "Voraussetzungen"
Diese Version von VirusZ II bentigt folgende System-Resourcen:

- Kickstart 2.04 (oder neuer)
- MC68000 (oder besser)
- commodities.library v37+
- reqtools.library v38+
- xfdmaster.library v37+
- rexxsyslib.library v33+ (fr ARexx Kommandos)
@ENDNODE

@NODE INSTALL_D "Installation"
Kopieren  Sie die Bibliotheken aus dem 'Libs'-Verzeichnis des VirusZ-Archivs
bitte  in  das  LIBS:  Verzeichnis Ihrer System-Diskette oder Harddisk.  Sie
knnen zu diesen Zweck auch die 'Install Libs' Batchdatei aufrufen.

Nun  knnen  Sie entweder das VirusZ Piktogramm in Ihr WBStartup Verzeichnis
ziehen oder folgende Zeile in Ihrer 'S:User-Startup' Datei einfgen:

VirusZ [Optionen]

Ein Verzeichnis aller verfgbaren Optionen ist im Kapitel @{"Shell-Optionen" LINK SHELL_D}
enthalten.
@ENDNODE

@NODE SHELL_D "Shell-Optionen"
VirusZ untersttzt die folgende Schablone:

CX_PRIORITY/N/K,CX_POPKEY/K,CX_POPUP/K,PUBSCREEN/K,FC=FILECHECK/K,
DE=DECREXEC/S,DD=DECRDATA/S,UE=USEEXTERN/S,EX=EXTRACT/S,ALL/S,AREXX/K,
QUIT/S

Fr  eine  detailliertere  Beschreibung  der Shell-Syntax, der Benutzung von
Commodity-Programmen  und  der  Definition  von  Hotkeys lesen Sie bitte das
Ihrem Amiga beiliegende Handbuch.

Bitte  beachten Sie, da diejenigen Shell-Befehle, die eine Nachricht an den
ARexx-Port  von  VirusZ versenden, zuerst testen, ob VirusZ schon aktiv ist.
Falls  dies  nicht  der Fall sein sollte, wird VirusZ zuerst installiert und
anschlieend das jeweilige Kommando an den Port versandt.

CX_PRIORITY:
Dieses  Schlsselwort definiert die Prioritt des VirusZ-Brokers.  Es werden
Werte zwischen -128 und 127 untersttzt, der Standardwert ist 0.

CX_POPKEY:
Bei Angabe dieses Schlsselwortes wird die darauffolgende Hotkey-Kombination
als neue Grundeinstellung bernommen.

CX_POPUP:
Nach  diesem  Schlsselwort mu entweder 'YES' (Ja) oder 'NO' (Nein) folgen.
Je nach Angabe ffnet VirusZ dann beim Start sein Fenster.

PUBSCREEN:
Mit  Angabe  dieser  Option  gefolgt  von  einen  gltigen Screen-Namen kann
erreicht  werden,  da  VirusZ sein Fenster auf eben jenem Screen ffnet und
nicht wie standardmig auf der Workbench.

FILECHECK:
Hierbei  handelt  es sich nicht um eine Option, sondern ein Kommando.  Dabei
wird  das  bergebene  Argument  nach  etwaigen  Jokern  durchsucht und alle
passenden Dateien mittels des ARexx-Kommandos CHECKFILE getestet.  Es werden
folgende Returncodes untersttzt:
RC = 0 : Test beendet, keine Viren gefunden.
RC = 5 : Eine oder mehrere Dateien sind verseucht!
RC = 10: Fehler beim Testen.
Beispiel: VirusZ FILECHECK "dh0:~(#?.info)" DECREXEC

DECREXEC:
Diese Option gilt nur in Verbindung mit FILECHECK und schaltet das Entpacken
ausfhrbarer Dateien ein.

DECRDATA:
Diese Option gilt nur in Verbindung mit FILECHECK und schaltet das Entpacken
nicht-ausfhrbarer Dateien ein.

USEEXTERN:
Diese  Option  gilt  nur  in  Verbindung  mit  FILECHECK  und ermglicht die
Verwendung externer Slaves fr die xfdmaster.library.

EXTRACT:
Diese  Option  gilt  nur  in  Verbindung  mit FILECHECK.  Sie ermglicht das
Extrahieren von Archiven, um deren Inhalt zu prfen.

ALL:
Diese Option gilt nur in Verbindung mit FILECHECK und veranlat VirusZ, auch
alle existierenden Unterverzeichnisse des Suchpfades zu durchsuchen.

AREXX:
Dieses  Kommando  ermglicht es, einen von VirusZ untersttzten ARexx-Befehl
direkt  an  den Port von VirusZ zu senden.  Das Argument wird einfach an den
ARexx-Port weitergereicht.  Der Returncode der Shell entspricht dann dem des
ausgefhrten ARexx-Befehls.
Beispiel: VirusZ AREXX "CHECKDIR dh0: SKIPDIRS"

QUIT:
Diese  Option sendet den ARexx-Befehl QUIT an den VirusZ-Prozess und beendet
ihn  damit.   Dies  ist sinnvoll in Script-Dateien, um VirusZ z.B.  nach dem
Prfen einiger Dateien wieder beenden zu knnen.
@ENDNODE

@NODE TOOLTYPES_D "Workbench Tooltypes"
Fr  eine  ausfhrliche  Erklrung zur Benutzung von Workbench Tooltypes und
Commodity-Programmen  und  der  Definition  von  Hotkeys lesen Sie bitte das
Ihrem Amiga beiliegende Handbuch.

VirusZ untersttzt folgende Tooltypes:

CX_PRIORITY:
Dieses  Schlsselwort definiert die Prioritt des VirusZ-Brokers.  Es werden
Werte zwischen -128 und 127 untersttzt, der Standardwert ist 0.

CX_POPKEY:
Bei Angabe dieses Schlsselwortes wird die darauffolgende Hotkey-Kombination
als neue Grundeinstellung bernommen.

CX_POPUP:
Nach  diesem  Schlsselwort mu entweder 'YES' (Ja) oder 'NO' (Nein) folgen.
Je nach Angabe ffnet VirusZ dann beim Start sein Fenster.

PUBSCREEN:
Mit  Angabe  dieser  Option  gefolgt  von  einen  gltigen Screen-Namen kann
erreicht  werden,  da  VirusZ sein Fenster auf eben jenem Screen ffnet und
nicht wie standardmig auf der Workbench.
@ENDNODE

@NODE BACKGROUND_D "Hintergrund"
Um das sofortige berprfen neu eingelegter Disketten und auch des Speichers
immer zu gewhrleisten, sogar wenn z.B.  gerade Dateien oder System-Vektoren
geprft  werden,  ist  der Hintergrund-Checker als zweiter Task installiert.
Dieser Task erledigt mehrere Dinge:

1.  Er testet eine Vielzahl von Speicherstellen und Library/Device-Vektoren
    auf bekannte Viren und entfernt diese gegebenenfalls aus dem Speicher.
2.  Er prft den Bootblock jeder neu eingelegten Diskette auf Viren.
3.  Er prft den Disk-Validator jeder neu eingelegten Diskette auf Viren.
4.  Er berwacht alle wichtigen Systemvektoren auf Vernderungen.

Lesen Sie dazu auch die @{"Background" LINK BGP_D} Voreinstellungen.
@ENDNODE

@NODE MENUS_D "Mens"
Wenn  das  Hauptfenster  von  VirusZ aktiv ist, knnen Sie aus den folgenden
beiden Mens Funktionen auswhlen:


                     @{b}Project               Prefs@{ub}

                  @{"  File Check      " LINK FC_D}    @{"  File Check      " LINK FCP_D}
                  @{"  Sector Check    " LINK SC_D}    @{"  Sector Check    " LINK SCP_D}
                  @{"  Vector Check    " LINK VC_D}    @{"  Vector Check    " LINK VCP_D}
                  @{"  Bootblock Lab   " LINK BL_D}    @{"  Bootblock Lab   " LINK BLP_D}
                  @{"  Show Brains...  " LINK SB_D}    @{"  Background      " LINK BGP_D}
                  @{"  About...        " LINK ABOUT_D}    @{"  Miscellaneous   " LINK MP_D}
                  @{"  Hide            " LINK HIDE_D}    @{"  Archivers       " LINK AP_D}
                  @{"  Quit            " LINK QUIT_D}    @{"  Save Prefs      " LINK SP_D}
@ENDNODE

@NODE AREXX_D "ARexx Port"
VirusZ  hat  nun  auch  endlich einen ARexx Port.  Der Name dieses Ports ist
'VIRUSZ_II.REXX' und er bietet folgende Kommandos:

                  @{"       HIDE       " LINK AREXX_HIDE_D}    @{"       QUIT       " LINK AREXX_QUIT_D}
                  @{"    CHECKFILE     " LINK AREXX_CHECKFILE_D}    @{"     CHECKDIR     " LINK AREXX_CHECKDIR_D}


Bitte werfen Sie auch einen Blick auf die Scripts im ARexx Verzeichnis.  Sie
werden  als  Beispiele  zur Verwendung der Kommandos mitgeliefert und zeigen
eindrucksvoll die Mglichkeiten, die sich durch ARexx bieten.

HINWEIS:   Das  Script  CheckArc.vzrx  wird  ab  Version 1.33 nicht mehr zur
           Erkennung  von Archiven bentigt,  da VirusZ jetzt selbst Archive
           erkennen kann. Es ist nur noch als Anschauungsmaterial enthalten.
@ENDNODE

@NODE AREXX_HIDE_D "ARexx: HIDE"
Syntax: HIDE

Dieses  Kommando  veranlat  VirusZ,  sein  Hauptfenster zu schlieen und im
Hintergrund  weiterzuarbeiten.  Um das Fenster wieder zu ffnen benutzen Sie
bitte den definierten Hotkey oder das Exchange Commodity.
@ENDNODE

@NODE AREXX_QUIT_D "ARexx: QUIT"
Syntax: QUIT

Dieses Kommando beendet VirusZ.
@ENDNODE

@NODE AREXX_CHECKFILE_D "ARexx: CHECKFILE"
Syntax: CHECKFILE Datei [DECREXEC] [DECRDATA] [USEEXTERN] [EXTRACT]

Datei  ist der Name (incl.  Pfadangabe) der Datei, die zu prfen ist.  Bitte
beachten  Sie, da im ARexx-Modus nur geprft, jedoch nicht repariert werden
kann.   Die  Optionen  DECREXEC und DECRDATA veranlassen VirusZ, ausfhrbare
bzw.  nicht ausfhrbare Dateien vor der berprfung zu entpacken.  USEEXTERN
ermglicht  die Verwendung externer Slaves fr die xfdmaster.library.  Geben
Sie EXTRACT als Option an, so werden Archive zur berprfung extrahiert.

Sie erhalten eines der folgenden Ergebnisse:
RC =  0 : Alles lief glatt und die Datei ist sauber.
RC =  5 : Datei ist infiziert!
RC = 10 : Fehler beim Prfen. Das kann an einem falschen Dateinamen, einer
          falsch geschriebenen Option oder einem internen Fehler liegen.
@ENDNODE

@NODE AREXX_CHECKDIR_D "ARexx: CHECKDIR"
Syntax: CHECKDIR Verz [SKIPDIRS] [DECREXEC] [DECRDATA] [USEEXTERN] [EXTRACT]

Verz  ist das Verzeichnis, welches geprft werden soll.  Bitte beachten Sie,
da  alle  Dateien in diesem Verzeichnis nur berprft, nicht aber repariert
werden.   Normalerweise  durchsucht VirusZ auch alle Unterverzeichnisse, die
im  angegebenen  Verzeichnis existieren.  Mit SKIPDIRS kann dies unterbunden
werden.    Die   Optionen  DECREXEC  und  DECRDATA  schalten  das  Entpacken
ausfhrbarer bzw.  nicht-ausfhrbarer Dateien ein.  USEEXTERN ermglicht die
Verwendung externer Slaves fr die xfdmaster.library.  Geben Sie EXTRACT als
Option an, so werden Archive zur berprfung extrahiert.

Sie erhalten eines der folgenden Ergebnisse:
RC =  0 : Test abgeschlossen, keine Viren gefunden.
RC =  5 : Eine oder mehrere Dateien sind verseucht!
RC = 10 : Fehler beim Prfen. Das kann an einem falschen Verzeichnisnamen,
          einer falsch geschriebenen Option oder einem internen Fehler
          wie z.B. Speichermangel liegen.
@ENDNODE

@NODE THANKS_D "Danksagungen"
Folgenden Personen mchte ich meinen besonderen Dank aussprechen:

   * Flake/TRSI fr Viren, Patches, Fehlerberichte und die aktuellen
     Neuigkeiten aus dem Netz
   * Jan Bo Andersen, Lars Kristensen und alle anderen Mitglieder von
     Virus Help - Team Denmark fr Viren, bersetzungen und einen
     groartigen Support
   * Holger Hesselbarth fr Patches, Ideen und mehr
   * Ralf Thanner fr alles (ein Name sagt mehr als 1000 Worte:-))
   * Axel Folley fr moralische und finanzielle Untersttzung
   * Holger Wessling fr seinen unglaublichen Ideenreichtum
   * Dave Jones fr Patches, Viren, Bugreports und vieles mehr
   * Martin Huttenloher fr MagicWB
   * Martin Odaischi fr Dutzende von Viren und grozgige Finanzspritzen
   * Heinz Lindner fr residente Programme und neue Kickstartversionen
   * Markus Stiebeling fr Fehlerberichte und Tips
   * Rdiger Prang fr Patches und TEX-Docs
   * Steve/Silicon Designs 3003 fr Viren und Cruncher
   * Jim Maciorowski fr seine Untersttzung, Briefe und Spenden
   * allen restlichen Personen, die mich im Laufe der Zeit untersttzt haben
   * und selbstverstndlich allen registrierten Benutzern von VirusZ
@ENDNODE

@NODE MAGICWB_D "ber MagicWB"
Die Piktogramme des VirusZ-Paketes sind fr die Verwendung mit einer MagicWB
Workbench  konzipiert.   MagicWB  ist  ein kompletter Ersatz fr die relativ
unschnen  Piktogramme der Workbench.  Falls Ihnen die Piktogramme gefallen,
lassen Sie sich bitte beim Autor registrieren und Sie erhalten das komplette
MagicWB-Paket.

MagicWB wurde von Martin Huttenloher erschaffen, das VirusZ-Piktogramm wurde
von Timm S.  Mller entworfen.
@ENDNODE

@NODE FC_D "File Check"
Einleitung
----------
In  den  frhen  Tagen der Amiga-Viren dachte wohl niemand an File- oder gar
Linkviren.   Ein  guter  Virenkiller mute den Bootblock anzeigen und einige
Vektoren  berprfen  knnen.   Aber heutzutage geht die grte Gefahr nicht
mehr  vom  Bootblock,  sondern  von  infizierten Dateien aus.  Deshalb wurde
dieser einzigartige Datei-Prfer entwickelt.  Er bietet Ihnen u.a.  folgende
Mglichkeiten:

* Entpacken von Dateien (mittels xfdmaster.library)
* Entfernen von Mehrfachinfektionen in einem Durchgang
* Entfernen von Linkviren aus allen Hunks, nicht nur dem ersten
* Zerlegen von sog. 4EB9-Dateien (mit anschlieendem Test aller Komponenten)
* Entfernen von hunk_name aus ausfhrbaren Dateien (wird oft zur Tarnung von
  Viren angewandt)
* Extrahieren von Archiven (siehe @{"Archivers" LINK AP_D} Voreinstellungen)

ACHTUNG:   Bitte verwenden Sie nach Mglichkeit immer die Entpack-Option, um
auch wirklich alle Viren aufzuspren.  VirusZ erkennt alle Dateiviren NUR im
ungepackten Zustand.

Datei Requester
---------------
Nachdem Sie den Menpunkt 'File Check' aus dem 'Project' Men gewhlt haben,
erscheint  als erstes ein Datei-Requester.  Hier knnen sie unter optionaler
Verwendung von Mehrfachauswahl die Dateien und/oder Verzeichnisse markieren,
die Sie berprfen mchten.
Wenn  Sie  mehrere  Eintrge  selektieren  mchten,  mssen  Sie whrend der
Auswahl  mit  der  Maus eine der beiden <SHIFT> Tasten gedrckt halten.  Mit
dem 'All' Gadget knnen Sie alle Eintrge auf einmal anwhlen.
Drcken  Sie  nun  auf  das  'OK' Gadget, um die berprfung zu starten oder
'Cancel', um den Vorgang abzubrechen.

Ausgabefenster / Kontroll-Leiste
--------------------------------
Jetzt  ffnet  sich  ein zweigeteiltes Fenster.  Den greren Teil nimmt der
Ausgabebereich ein, in dem Informationen zum Prf-Vorgang ausgegeben werden.
Der  kleinere Teil ist der Kontrollbereich.  Durch bettigen von 'Stop' wird
der  Ablauf unterbrochen und ein Requester dargestellt, mit dem man entweder
mittels  'Continue'  mit  der  berprfung fortfahren oder durch Auswahl von
'Abort'  den  Vorgang ganz abbrechen kann.  Nach Beendigung eines Durchgangs
kann  man  mit  'Exit'  die  gesamte  Prfschleife verlassen oder mit 'Check
Again' wieder ganz am Anfang beginnen.

Wichtige Hinweise
-----------------
Die  Programmroutine  zur  Entfernung von Linkviren ist absolut zuverlssig,
solange  die  infizierten Dateien nicht bereits vom Virus teilweise zerstrt
wurden.   Wenn  die  Programmstruktur verndert ist oder ein anderes Problem
auftritt, wird dies gemeldet und der Vorgang abgebrochen.
Die  Schutzbits  von  zu berprfenden Dateien werden wenn ntig automatisch
auf  den  jeweiligen  Vorgang  angepat,  d.h.   zum  Lesen wird das Lesebit
gesetzt,  zum Reparieren das Schreibbit etc.  Falls das Betriebssystem einen
Requester  mit  dem  Hinweis  darstellt,  die  gerade  geprfte Diskette sei
schreibgeschtzt, so deutet dies darauf hin, da VirusZ soeben versucht hat,
die Schutzbits zu verndern.  Da dieser Vorgang vllig ungefhrlich ist, ist
es  empfehlenswert,  beim  berprfen  von  Disketten  den Schreibschutz von
vornherein zu entfernen.

Noch ein Tip
------------
Es  kann  manchmal  vorkommen,  da eine Datei zuerst infiziert und darunter
auch  noch  gepackt  ist.  Wenn Sie eine derartige Datei zwar desinfizieren,
aber   nicht   entpacken   mchten,  sollten  Sie  sie  mit  ausgeschalteter
Entpack-Option nochmals berprfen.
@ENDNODE

@NODE FCP_D "File Check Preferences"
Skip Subdirectories
-------------------
Sie knnen diese Option einschalten, wenn Sie zwar selektierte Verzeichnisse
prfen mchten, nicht jedoch weitere darin enthaltene Schubladen.

Auto-Handle Viruses
-------------------
Falls whrend des Prfvorgangs eine verseuchte Datei entdeckt werden sollte,
erscheint normalerweise ein Requester, der Ihnen die Mglichkeit bietet, den
Virus  zu  entfernen  oder aber nichts zu tun.  Mit dieser Option knnen Sie
diesen Requester umgehen und Viren automatisch entfernen lassen.

Test Without Save/Del
---------------------
Diese  Option  verhindert,  da verseuchte Dateien gelscht oder gespeichert
werden.  Statt dessen wird einfach nur der Name des Virus ausgegeben und der
Prfvorgang fortgesetzt.  Diese Mglichkeit eignet sich gut fr einen ersten
berblick ber eine neu erworbene Diskette.

Generate Report
---------------
Dieser  Schalter  bietet  Ihnen  die  Mglichkeit, den Text, der whrend des
Prfvorgangs  erzeugt wird, als Textdatei zu speichern.  Dazu erscheint nach
Beenden  der  berprfung ein Datei-Requester, in dem Sie den Pfad und Namen
des zu speichernden Textes whlen knnen.

Auto-Save Report
----------------
Ist  diese  Option  angewhlt,  erscheint  kein  Datei-Requester,  um  einen
Pfad/Namen  fr  einen  zu speichernden Report auszuwhlen.  Es wird einfach
der  voreingestellte Pfad (Default Report Path) und ein von VirusZ erzeugter
Name verwendet.

Emulate ExAll()
---------------
Normalerweise  benutzt  VirusZ  die Kickstart-Routine ExAll(), um den Inhalt
eines  Verzeichnisses  auszulesen.  Dies funktioniert allerdings bei einigen
Kickstarts nicht richtig.  Sollte der Dateiprfer also keine Dateien finden,
schalten  Sie  diese  Option  ein und versuchen Sie es noch einmal.  Sollten
sich  bei  Ihrem  Kickstart  keinerlei Probleme ergeben, so lassen Sie diese
Option aber bitte auf "aus", weil die Originalroutine schneller arbeitet als
die Emulation.

Decrunch Executables
--------------------
Wenn  Sie  diese  Option  einschalten, versucht VirusZ, gepackte ausfhrbare
Dateien vor dem berprfen zu entpacken.
ACHTUNG:   Diese Option sollte nur in Notfllen abgeschaltet werden.  VirusZ
erkennt alle eingebauten Viren nur im entpackten Zustand.

Decrunch Data Files
-------------------
Wenn  Sie diese Option einschalten, ldt VirusZ auch Datenfiles und versucht
diese  wenn  ntig  vor  dem  berprfen  zu  entpacken.  Dies ist besonders
ntzlich  fr  Datenfiles, die eigentlich ausfhrbare Dateien enthalten, wie
z.B. XPK Dateien.

Skip Crypted Files
------------------
Diese Option ermglicht, kodierte Dateien einfach zu berspringen.  Das kann
sinnvoll  sein,  wenn Sie die Dateien selbst kodiert haben und genau wissen,
da  sie  keinerlei  Viren  enthalten.  Sie sparen sich dann das nervttende
Beantworten vieler Password-Requester.

Use External Slaves
-------------------
Diese  Option  schaltet  die Benutzung externer Slaves der xfdmaster.library
ein.  Dies ist zur Zeit wenig sinnvoll, da keine externen Slaves existieren,
die  ausfhrbare  Programme  entpacken  knnen.   Es ist vielmehr angeraten,
diese Option auszuschalten, um Systemabstrze zu vermeiden, die von schlecht
programmierten Slaves ausgelst werden knnen.

Extract Archives
----------------
Ist  diese  Option aktiviert, extrahiert VirusZ alle Archive und prft deren
Inhalte. Sie finden weitere Informationen dazu bei @{"Archivers" LINK AP_D}.

Default Report Path
-------------------
Hier  knnen  Sie  den  standardmigen Pfad fr das Abspeichern von Reports
eingeben.  Dieser wird dann benutzt, wenn Sie das automatische Speichern von
Reports gewhlt haben.

Amount Of Lines Displayed
-------------------------
Dieses  Gadget enthlt die maximale Anzahl von Zeilen, die im Ausgabefenster
dargestellt  werden  sollen.  Es ist ratsam, diesen Wert bei hochauflsenden
Bildschirmmodi nicht zu gro zu whlen, da sich die Darstellung sonst extrem
verlangsamen kann.
@ENDNODE

@NODE SC_D "Sector Check"
Laufwerk whlen
---------------
Nachdem man den Menpunkt 'Sector Check' aus dem 'Project' Men gewhlt hat,
erscheint  als  erstes  ein Laufwerks-Requester, mit dessen Hilfe man das zu
berprfende   Laufwerk   auswhlt.    Es   werden   nur  Diskettenlaufwerke
untersttzt,  die ber das Trackdisk.Device angesprochen werden knnen.  Mit
'OK' wird der Prfvorgang gestartet.

Ausgabefenster / Kontroll-Leiste
--------------------------------
Jetzt  ffnet  sich  ein zweigeteiltes Fenster.  Den greren Teil nimmt der
Ausgabebereich ein, in dem Informationen zum Prf-Vorgang ausgegeben werden.
Der  kleinere Teil ist der Kontrollbereich.  Durch bettigen von 'Stop' wird
der  Ablauf unterbrochen und ein Requester dargestellt, mit dem man entweder
mittels  'Continue'  mit  der  berprfung fortfahren oder durch Auswahl von
'Abort'  den  Vorgang ganz abbrechen kann.  Nach Beendigung eines Durchgangs
kann  man  mit  'Exit'  die  gesamte  Prfschleife verlassen oder mit 'Check
Again' wieder ganz am Anfang beginnen.

@ENDNODE

@NODE SCP_D "Sector Check Preferences"
Auto-Repair Sectors
-------------------
Wann  immer  ein  infizierter Sektor entdeckt wird, erscheint ein Requester,
der  Ihnen  die  Mglichkeit  bietet, den Sektor entweder zu reparieren oder
nichts  dergleichen  zu tun.  Wenn Sie diese Option einschalten, wird dieser
Requester unterdrckt und der Sektor automatisch repariert.

Check Without Repair
--------------------
Diese Option sollten Sie einschalten, wenn Sie sich nur einen berblick ber
den Zustand einer Diskette verschaffen wollen, ohne irgendwelche Reparaturen
vornehmen zu wollen.

Amount Of Lines Displayed
-------------------------
Dieses  Gadget enthlt die maximale Anzahl von Zeilen, die im Ausgabefenster
dargestellt  werden  sollen.  Es ist ratsam, diesen Wert bei hochauflsenden
Bildschirmmodi nicht zu gro zu whlen, da sich die Darstellung sonst extrem
verlangsamen kann.
@ENDNODE

@NODE VC_D "Vector Check"
Einleitung
----------
Die  meisten  Viren  arbeiten nach ein und demselben Prinzip.  Entweder sind
sie  resident  oder  sie  verbiegen  Vektoren  von  Libraries  oder Devices.
Deshalb  wurde  der  Vektoren-Prfer entwickelt, der Ihnen helfen soll, neue
Viren, die VirusZ noch nicht automatisch erkennt, zu finden.

Der  Groteil  der Informationen, die Ihnen im Ausgabefenster bereitgestellt
werden,  sind  nur fr Programmierer oder erfahrene Anwender aussagekrftig,
deshalb   werde   ich   versuchen,  die  Erklrungen  auf  das  Ntigste  zu
beschrnken, um den Durchschnittsanwender nicht unntig zu verwirren.

VirusZ ist in der Lage, Ihnen anstatt der relativ nichtssagenden Offsetwerte
auch  den Funktionsnamen von Bibliothekseinsprngen anzuzeigen.  Dazu werden
aber  sogenannte FD Dateien bentigt.  Diese finden Sie z.B.  auf den Extras
Disketten  der  Workbench  1.2/1.3  oder als Teil der meisten Assembler- und
Compilerpakete.  Ich darf Sie aus rechtlichen Grnden nicht mitliefern.

Ausgabefenster / Kontroll-Leiste
--------------------------------
Nachdem man den Menpunkt 'Vector Check' aus dem 'Project' Men gewhlt hat,
erscheint   ein  zweigeteiltes  Fenster.   Der  obere  Teil  beinhaltet  den
Ausgabebereich,  in  dem  Informationen zu den einzelnen Vektoren ausgegeben
werden.   Mit  dem  Scrollbalken  kann  man  sich im dargestellten Text frei
bewegen.   Der  kleinere  Teil  ist  der Kontrollbereich.  Durch Drcken des
'Refresh' Gadgets werden die Vektoren erneut ausgelesen und der Text auf den
neuesten  Stand  gebracht.  Dies ist ntzlich, nachdem z.B.  einige Vektoren
gelscht  wurden.  Mittels 'Exit' verlt man das Fenster.  Will man whrend
des  Betrachtens  der Vektoren einige Einstellungen verndern, kann man dies
direkt mittels 'Prefs' tun.  Die Anzeige wird automatisch erneuert, wenn man
das Voreinstellungsfenster mittels 'Use' verlt.

Haben die angezeigten Zeichenkolonnen auch eine tiefere Bedeutung?
------------------------------------------------------------------
Hinter jedem dargestellten Vektor erscheint ein Kommentar.  Solange Sie dort
'Ok'  lesen  knnen, ist der Vektor in Ordnung.  Es knnen auch verschiedene
Namen  von  Programmen  erscheinen, die bestimmte Vektoren verbiegen und von
VirusZ erkannt werden, so z.B. 'SetPatch'.
Falls  aber die Meldung '*** NON-STANDARD VECTOR ***' erscheint, sollten Sie
sich zumindest einmal Gedanken darber machen, ob Sie eventuell Programme im
Hintergrund  gestartet  haben,  die  diese  nderungen  hervorrufen knnten.
Falls dies nicht der Fall ist, knnte es sich um einen neuen Virus handeln.

Mens
-----
Das  Vektor-Fenster  besitzt  ein Men namens 'Clear'.  Es ermglicht Ihnen,
einzelne Reset-Vektoren zu lschen oder auch alle auf einmal.
Das  'Misc' Men bietet derzeit nur eine Funktion:  'Save Report...'.  Damit
ist es mglich, den angezeigten Text als Ascii-Datei abzuspeichern.
@ENDNODE

@NODE VCP_D "Vector Check Preferences"
Show ResModules
---------------
Es werden residente Module angezeigt, die nicht im ROM liegen.

Show Exec Interrupts
--------------------
Die Interrupt-Tabelle von Exec wird dargestellt und kommentiert.

Show CPU Interrupts
-------------------
Die Interrupt-Tabelle der CPU wird dargestellt und kommentiert.

Show Devices
------------
Die  Liste  aller geladenen Devices wird auf Einsprnge berprft, die nicht
ins ROM zeigen.

Show Libraries
--------------
Die Liste aller geladenen Libraries wird auf Einsprnge berprft, die nicht
ins ROM zeigen.

Hide Known Patches
------------------
Normalerweise  werden  bekannte Vernderungen mit dem Namen des Verursachers
angezeigt.   Mit  dieser Option kann diese Ausgabe unterdrckt werden.  Dies
kann ntzlich sein, um sich berflssige Informationen zu ersparen.

Hide 'OK' Vectors
-----------------
Mit  dieser  Option  knnen sie die Ausgabe aller Vektoren unterdrcken, die
mit  'Ok' kommentiert wrden.  Dadurch kann man die Anzahl der auszugebenden
Zeilen drastisch reduzieren und so eine bersichtlichere Anzeige erhalten.

Use FD For Offsets
------------------
Dieser  Schalter bewirkt, da VirusZ die Namen der Bibliotheksfunktionen aus
sogenannten  FD Dateien ausliest und damit die Standardmeldung 'Offset -xyz'
ersetzt.   Wenn  eine  Funktion  nicht  definiert  ist  (alte  FD Datei oder
reservierter Eintrag), wird die normale Offsetmeldung gezeigt.
Sie  finden die FD Dateien auf der WorkBench 1.2/1.3 Extras Diskette oder in
fast  allen  Assembler-  und Compiler-Paketen.  Ich darf sie aus rechtlichen
Grnden nicht mitliefern.

FD Path
-------
Dieses  Gadget enthlt das Verzeichnis, in dem sich die FD Dateien befinden.
Die  Dateien  drfen  auch gepackt sein, solange der benutzte Packer von der
xfdmaster.library untersttzt wird (also praktisch alle:-).

Amount Of Lines Displayed
-------------------------
Dieses  Gadget enthlt die maximale Anzahl von Zeilen, die im Ausgabefenster
dargestellt werden sollen.
@ENDNODE

@NODE BL_D "Bootblock Lab"
Achtung
-------
Seien  Sie  vorsichtig mit dem Beschreiben oder Installieren Ihrer Harddisk.
Ich hafte in keinster Weise fr Ihre Fehler.

Laufwerk / Anzeige
------------------
Es existieren zwei Cycle-Gadgets im Bootblock Lab, eines auf jeder Seite der
Statuszeile.   Mit  dem linken whlen Sie das Laufwerk, mit dem Sie arbeiten
mchten, mit dem rechten die Art der Darstellung des Bootblockinhaltes.  Sie
knnen  die  beiden  Gadgets  mittels <D> oder <SHIFT-D> (Laufwerke) und <B>
oder <SHIFT-B> (Darstellung) auch ber die Tastatur bedienen.

Name
----
Immer  wenn  ein  Fehler  auftritt,  wird  eine entsprechende Meldung in der
Statuszeile  ausgegeben.   Dabei wird aber der Name des aktuellen Bootblocks
berschrieben,  der  normalerweise als Status angezeigt wird.  Dieses Gadget
ermgli                c                                                                                                                                                                                                                
  	                                                                                                                                                                                                                                 cht die wiederholte Ausgabe des Bootblocknamens.

Exit
----
Beendet diesen Programmteil.

Read
----
Liest  den  Bootblock  der Diskette im aktuellen Laufwerk in den Puffer.  Es
kann nur von DOS-Disketten gelesen werden.

Write
-----
Schreibt  den  Pufferinhalt  in  den  Bootblock  der  Disktte  im  aktuellen
Laufwerk.   Die Dateisystem-Kennung und die Checksumme des Bootblocks werden
automatisch angepat.

Load
----
ffnet  einen  Datei-Requester, mit dem man eine Bootblock-Datei laden kann.
Es werden nur DOS-Bootblcke untersttzt.

Save
----
Speichert  den  Pufferinhalt in die per Requester gewhlte Datei.  Somit ist
es  mglich, von wichtigen Bootblcken (z.B.  von Spielen) Sicherheitskopien
zu erstellen.

Learn
-----
Zur Zeit nicht verfgbar.

Prefs
-----
Es  erscheint  das  Fenster mit den Voreinstellungen.  Dies ist ntzlich, um
nderungen vorzunehmen, ohne da das Bootblock Lab verlassen werden mu.

Install
-------
Installiert  einen  Original-OS 2.04-Bootblock auf die Diskette im aktuellen
Laufwerk.  Die Dateisystem-Kennung wird automatisch angepat.

Funktionen ber Men
--------------------
Zur Zeit nicht verfgbar.
@ENDNODE

@NODE BLP_D "Bootblock Lab Preferences"
Ask Before Write Access
-----------------------
Es  erscheint  bei jedem Aufruf von 'Write' oder 'Install' eine Sicherheits-
abfrage.

Read Inserted Disks
-------------------
Diese  Option  ermglicht  es,  den Bootblock einer neu eingelegten Diskette
automatisch  einzulesen.   Dies  ist  ntzlich,  wenn  Sie  viele  Disketten
berprfen  mchten,  da  Sie  diese  dann  nur nacheinander in ein Laufwerk
einlegen mssen.

Install Uninstalled Boot
------------------------
Wenn  Sie  diese Option anwhlen, wird beim Installieren einer Diskette kein
Standard-OS 2.04-Bootblock  geschrieben,  sondern die Diskette nicht-bootbar
gemacht.
@ENDNODE

@NODE SB_D "Show Brains..."
Alle  derzeit von VirusZ erkannten Bootblock-, File- und Linkviren werden in
einer  Liste  aufgefhrt.   Die  zweite Liste enthlt alle Patches, die beim
Vektorenprfen erkannt werden.
@ENDNODE

@NODE BGP_D "Background Preferences"
Check On Startup / Keep Under Surveillance
------------------------------------------
Die  Schalter unter dieser berschrift haben folgendes gemeinsam:  der erste
Knopf  schaltet  den jeweiligen Test beim Neustart ein/aus, der zweite Knopf
(de)aktiviert  den berwachungsmodus.  Die Bedeutung der Schalter ist weiter
unten erlutert.

Die  Speicherberwachung  erkennt  die  gleichen Patches wie der eigentliche
Vektor-Prfer  und  informiert  Sie  deshalb  nicht ber nderungen, die von
solchen  ausgelst wurden.  Falls der Info-Requester erscheint und mitteilt,
da sich Vektoren verndert haben, dann benutzen Sie bitte den Vector-Check,
um sich die Vernderungen genauer anzusehen.

Falls die Diskettenberwachung einen unbekannten Bootblock meldet, so knnen
Sie diesen mittels Bootblock Lab genauer begutachten.

ColdCapture
-----------
Prft auf Vernderungen des ColdCapture-Vektors.

CoolCapture
-----------
Prft auf Vernderungen des CoolCapture-Vektors.

KickTagPtr
----------
Berechnet  eine Prfsumme ber alle KickTags und vergleicht diese nach jedem
Prflauf auf Abweichungen.

CPU Interrupts
--------------
berwacht alle Zeiger der Hardware-Interrupts.

Exec Interrupts
---------------
Prft alle Interrupteintrge in der ExecBase.

Libraries/Devices
-----------------
Sucht nach unbekannten Patches.

Bootblocks
----------
Untersucht den Bootblock jeder eingelegten Diskette.

Disk-Validators
---------------
Untersucht den Disk-Validator jeder eingelegten Diskette.

Known Viruses
-------------
Durchsucht den Speicher nach bekannten Viren.

Surveillance Frequency
----------------------
Dieses  Gadget enthlt die Anzahl Sekunden, die zwischen zwei Speicher-Tests
verstreichen  sollen.  Diese Frequenz wird sowohl fr die System-berwachung
als auch fr den Virentest verwendet.
@ENDNODE

@NODE ABOUT_D "About..."
Zeigt  Informationen  ber VirusZ an.  In der untersten Zeile finden Sie die
Filelnge, die das Programm haben sollte.
@ENDNODE

@NODE MP_D "Miscellaneous Preferences"
Check Hunks On Startup
----------------------
Dieser  Schalter  aktiviert die berprfung der Programm-Struktur von VirusZ
bei  einem Neustart.  Ein Alert wird dargestellt, falls irgendetwas nicht in
Ordnung sein sollte (deutet auf einen Linkvirus hin).  Sie sollten auf diese
Option  verzichten,  wenn  Sie  vorhaben,  VirusZ  mit einem Datei-Packer zu
packen, weil diese meist die Struktur eines Programmes verndern.

Requesters Follow Mouse
-----------------------
Option an:
Alle Requester erscheinen mit dem negativen Gadget unter dem Mauszeiger.
Option aus:
Die Requester werden in der linken oberen Ecke dargestellt.

Quit Immediately
----------------
Option an:
VirusZ kann ohne zustzliche Besttigungen verlassen werden.

Install SnoopDos Task
---------------------
Option an:
Ein  Task  namens 'SnoopDos', der keinerlei Prozessorzeit in Anspruch nimmt,
wird  erzeugt.  Dieser verhindert, da sich bestimmte trojanische Pferde ins
System einbinden.

Pop Up On Startup
-----------------
Option an:
VirusZ verhlt sich beim Neustart ganz normal und ffnet sein Fenster.
Option aus:
VirusZ  arbeitet im Hintergrund und kann nur ber den definierten Hotkey und
das Programm Exchange kontrolliert werden.

Load Brain On Startup
---------------------
Zur Zeit nicht verfgbar.

Close Main Window = Exit
------------------------
Option an:
Bei Bettigung des Schliesymbols wird VirusZ beendet.
Option aus:
Das Schliesymbol bewirkt das gleiche wie der Menpunkt @{"Hide" LINK HIDE_D}.

Center Main Window
------------------
Option an:
Das Fenster von VirusZ erscheint mittenzentriert am oberen Rand des Screens.
Option aus:
Das  Fenster  wird  mit den zuletzt gespeicherten Koordinaten geffnet.  Man
kann  diese  abspeichern,  indem  man das Fenster an die gewnschte Position
zieht und dann den Menpunkt 'Save Prefs' anwhlt.

Activate On Startup
-------------------
Mit dieser Option veranlassen Sie, da das VirusZ-Hauptfenster beim Neustart
sofort  aktiviert wird.  Sie sparen sich dadurch das Anklicken des Fensters,
wenn Sie sowieso gleich ein Menfunktion starten mchten.

Hotkey
------
Der voreingestellte Hotkey fr das ffnen des Hauptfensters.

Brain
-----
Zur Zeit nicht verfgbar.

Devices
-------
Hier  knnen  Sie  alle Devices eintragen, die von VirusZ bei der Laufwerks-
berprfung herangezogen werden sollen.  Sie werden im BootLab in der selben
Reihenfolge erscheinen wie sie im Gadget eingegeben wurden.  Sie knnen auch
Devices eintragen, die Sie nicht stndig gemountet haben.  Diese werden dann
nur  bercksichtigt,  wenn  sie  auch  wirklich  vorhanden sind.  Alle Namen
mssen durch ein "|"-Zeichen getrennt sein.
@ENDNODE

@NODE HIDE_D "Hide"
Veranlat  VirusZ,  sein  Fenster  zu  schlieen und nur noch im Hintergrund
weiterzuarbeiten.   Sie  knnen  das  Fenster  wieder  ffnen, indem sie den
definierten  Hotkey  drcken oder mittels des Programmes Exchange den Befehl
dazu geben.
@ENDNODE

@NODE AP_D "Archivers"
Gadgets
-------
New:        Fgt einen neuen Listeneintrag hinzu, wenn alle Informationen
            korrekt eingegeben wurden.

Delete:     Lscht den angewhlten Eintrag aus der Liste.

Edit:       ndert die Informationen eines bereits existierenden Eintrags.

Temp.Path:  Pfad, der beim temporren Extrahieren von Archiven verwendet
            werden soll. Die Dateien in diesem Verzeichnis werden gelscht,
            verwenden Sie deshalb unmiverstndliche und nicht benutzte
            Pfadangaben wie 'RAM:xyz/' oder 'T:xyz/'. Wenn Sie nicht genug
            Speicherplatz besitzen, um ins RAM: zu extrahieren, verwenden
            Sie ein unbenutztes Verzeichnis auf der Festplatte wie z.B.
            'DH0:Temporary/'.

Archiver Information
--------------------
Name:     Hier sollte eine mglichst aussagekrftige Bezeichnung des Archiv-
          typs (z.B. LhA, LZX) eingetragen werden. Dieser Name wird auch in
          der Ausgabe des Dateiprfers verwendet, wenn ein Archiv erkannt
          wurde.

Offset:   Der Offset vom Dateianfang, gemessen in Bytes, ab dem die Daten
          zur Archiv-Erkennung verglichen werden sollen.

Data:     Hier stehen die Daten, die der Erkennung eines Archivs dienen.
          Sie knnen die Daten hexadezimal ($xy) oder als Zeichenkette
          (beginnend und endend mit " oder ') eingeben. Hexadezimale Werte
          mssen ein- oder zweistellig sein, Zeichenketten knnen beliebig
          viele Zeichen enthalten. Einzelne Werte mssen durch Kommata (,)
          getrennt werden. Die Gesamtlnge der Erkennungsdaten darf nicht
          mehr als 16 Bytes betragen.

          Beispiel: LhA-Archive werden erkannt mit Offset: 2 und Data:
                    * "-lh"         oder
                    * $2d,'lh'      oder
                    * $2d,$6c,$68   usw.

          Falls " oder ' in einer Zeichenkette vorkommen soll, die mit
          diesem Zeichen beginnt, geben Sie einfach "" oder '' ein und es
          wird als einzelnes " oder ' interpretiert.

          Bitte beachten Sie, da die Daten fr den internen Gebrauch binr
          umgewandelt werden und dann bei nochmaligem Editieren anders als
          von Ihnen eingegeben erscheinen knnen.

Command:  Tragen Sie hier die Kommandozeile ein, die ausgefhrt werden soll,
          um ein erkanntes Archiv zu extrahieren. Bitte schalten Sie alle
          Optionen zur Unterdrckung von Textausgaben ein, die der jeweilige
          Archivierer untersttzt (z.B. Quiet, NoMessages o..), da hiermit
          der Ablauf zustzlich beschleunigt werden kann.

          Die Kommandozeile mu folgende Platzhalter aufweisen:
          * %f: steht fr den Dateinamen des Archivs, das extrahiert werden
                soll (ohne Pfad),
          oder
          * %F: steht fr den Dateinamen des Archivs inklusive vollem Pfad,
          * %p: steht fr den temporren Pfad, in den extrahiert werden
                soll (ohne '/' am Ende),
          oder
          * %P: steht fr den temporren Pfad, endet mit '/'.

          Beispiel: C:LhA -mMIq x %f %P

          Bitte beachten Sie, da die Archivierer selbst immer mit voller
          Pfadangabe aufgerufen werden mssen, weil VirusZ die Suchpfade
          Ihrer Shell nicht untersttzen kann.

          Falls % in der Kommandozeile vorkommen soll, geben Sie einfach %%
          ein und es wird als einzelnes % interpretiert.

          Bitte beachten Sie, da der Archivierer in der Lage sein mu, sein
          Zielverzeichnis selbst zu erstellen, denn VirusZ erledigt diese
          Aufgabe nicht. Dies sollte mit allen moderneren Archivierern kein
          Problem darstellen.

          Falls es nicht mglich sein sollte, ein Archiv mit einer einzelnen
          Kommandozeile zu extrahieren (z.B. 'ZOO'), erstellen Sie einfach
          eine Script-Datei, die diese Aufgabe erledigt und rufen Sie dieses
          Script in der Kommandozeile auf.

          Beispiel: C:Execute SCRIPTS:VirusZ_II.ZOO_Script %p %F

          wobei 'VirusZ_II.ZOO_Script' folgende Aufrufe enthlt:

          .KEY PATH/A,FILE/A
          C:MakeDir <PATH>
          CD <PATH>
          DH2:Tools/Zoo xqO <FILE>

Falls  Sie  sich  nach dieser Lektre immer noch nicht viel unter der ganzen
Sache  vorstellen  knnen,  kopieren Sie sich einfach die Dateien in ENVARC/
und  SCRIPTS/  in  die  jeweiligen  Verzeichnisse Ihres Systems, starten Sie
VirusZ  und  ndern  Sie gegebenenfalls noch die Pfadangaben der Archivierer
ab, dann sollte eigentlich alles funktionieren.
@ENDNODE

@NODE QUIT_D "Quit"
Beendet VirusZ. Es werden alle belegten System-Resourcen zurckgegeben.
@ENDNODE

@NODE SP_D "Save Prefs"
Speichert  alle  Voreinstellungen  in die Datei 'ENVARC:VirusZ_II.Prefs' und
die Archivierer-Liste in 'ENVARC:VirusZ_II.Archivers'.  Diese Dateien werden
bei  jedem  Neustart  zuerst gesucht und die darin enthaltenen Informationen
gegebenenfalls bernommen.
@ENDNODE
                                                                                                                                                                             VirusZ.info                                                          x            
      Z
                                                                                                                                                                                                                                                                                          1                                                                                                  VirusZ_Deutsch.Guide.info                                            x           ` : $   +P                  hX      R                 : #  x               X   *_W*U*ʪߕE**~UQ_*UTW*yUU**UUU**QV}*J{%UU*UW?. U\(eYÀ*0:ǀ]π*_*!*    6           UUCR  {D@  UQ\ j  UT5W* z kD  UP_ʪ jU  USU_ z@ U]Uuڨ j  UGU_B z@ UQ] h   UPu_  j ;@ U}
 j.J  U  xF W@ l? U z'@ UT  j=  UUS  z /T@  UU@     a       :             X   ?@?W@?@?@?*@?U@?(@?Q_@?"@?DEW@?򊊫@?U@?"@?EUU@?( @?Pb@?"@?DUTC@? C@<HT@8I @	@2	)URU@4&* )@82$E @?&D '@?B /@? @?_@?R@?U?@?O@@  >  @?          X   ?@?W@?@?@?*@?U@?(@?Q_@?"@?DEW@?򊊫@?U@?"@?EUU@?( @?Pb@?"@?DUTC@? C@<HT@8I @	@2	)URU@4&* )@82$E @?&D '@?B /@? @?_@?R@?U?@?O@@  >  @?          X   ?@?W@?@?@?*@?U@?(@?Q_@?"@?DEW@?򊊫@?U@?"@?EUU@?( @?Pb@?"@?DUTC@? C@<HT@8I @	@2	)URU@4&* )@82$E @?&D '@?B /@? @?_@?R@?U?@?O@@  >  @?          X   ?@?W@?@?@?*@?U@?(@?Q_@?"@?DEW@?򊊫@?U@?"@?EUU@?( @?Pb@?"@?DUTC@? C@<HT@8I @	@2	)URU@4&* )@82$E @?&D '@?B /@? @?_@?R@?U?@?O@@  >  @?          X   ?@?W@?@?@?*@?U@?(@?Q_@?"@?DEW@?򊊫@?U@?"@?EUU@?( @?Pb@?"@?DUTC@? C@<HT@8I @	@2	)URU@4&* )@82$E @?&D '@?B /@? @?_@?R@?U?@?O@@  >  @?          X   ?@?W@?@?@?*@?U@?(@?Q_@?"@?DEW@?򊊫@?U@?"@?EUU@?( @?Pb@?"@?DUTC@? C@<HT@8I @	@2	)URU@4&* )@82$E @?&D '@?B /@? @?_@?R@?U?@?O@@  >  @?     : #  8                      ,   @U^W/WyU
UUʢWE_
*VUUW+QUTU
^UU_*TDWJ>W%UU
TU UW?V2`\W_
aU^Uw?           `    ?*UU  =T"   *UTD 5@U
  *UP =5J  *jUD 5@Us *UU =UW|  *mT 5CWf *U =w *  4 u}  *: U 5   *P 5%  *B <W@ + 6  * =  *~y @ 5@O  *uU  =   * MT     `          @ ,   @_W__U___*_U__(_UW_"_EEU__QU_"_UV _1_ETb_*!_QEU!^$@\$UTY@*Z@X \R	_"UR _`J _LX __)_*_              @ ,   @_W__U___*_U__(_UW_"_EEU__QU_"_UV _1_ETb_*!_QEU!^$@\$UTY@*Z@X \R	_"UR _`J _LX __)_*_              @ ,   @_W__U___*_U__(_UW_"_EEU__QU_"_UV _1_ETb_*!_QEU!^$@\$UTY@*Z@X \R	_"UR _`J _LX __)_*_              @ ,   @_W__U___*_U__(_UW_"_EEU__QU_"_UV _1_ETb_*!_QEU!^$@\$UTY@*Z@X \R	_"UR _`J _LX __)_*_              @ ,   @_W__U___*_U__(_UW_"_EEU__QU_"_UV _1_ETb_*!_QEU!^$@\$UTY@*Z@X \R	_"UR _`J _LX __)_*_              @ ,   @_W__U___*_U__(_UW_"_EEU__QU_"_UV _1_ETb_*!_QEU!^$@\$UTY@*Z@X \R	_"UR _`J _LX __)_*_         
MultiView       % Icon by Martin Huttenloher                                                                                                                                                                                         
  	                                                                                                                                                                                                                                         H      ]h  e  d  c  b  a  `  _  ^  ]  \  [  Z  Y  X  W  V  U  T  S  R  Q  P  O  N  M  L  K  J  I  H  G  F  E  D  C  B  A  @  ?  >  =  <  ;  :  9  8  7  6  5  4  3  2  1  0  /  .  -  ,  +  *  )  (  '  &  %  $  #  "  !                                                                                                                       VirusZ_English.Guide                                                 x  f@DATABASE "VirusZ_II_English.guide"
@$VER: VirusZ_II_English.guide 1.33

@NODE MAIN "Contents"


                               @{b}VirusZ II 1.33@{ub}
                          @{b}- English Documentation -@{ub}

                                 @{"SHAREWARE" LINK SHAREWARE_E}

                    @{i}Copyright  1991-96 by Georg Hrmann@{ui}


        @{"    Important Note    " LINK IMPORTANT_E}    Read this before starting VirusZ.

        @{"     Legal Stuff      " LINK LEGAL_E}    Copyright and disclaimer.
        @{"     Distribution     " LINK DISTRIBUTION_E}    How to spread VirusZ correctly.
        @{"       Updates        " LINK UPDATES_E}    How to get the latest versions.
        @{"      Shareware       " LINK SHAREWARE_E}    Read this and follow the rules!
        @{"     Submissions      " LINK SUBMISSIONS_E}    How to reach the author.

        @{"     Introduction     " LINK INTRO_E}    What's the whole thing about?
        @{"     Requirements     " LINK REQUIRE_E}    What is necessary to run VirusZ?
        @{"     Installation     " LINK INSTALL_E}    How to install VirusZ on (hard-)disk.

        @{"     WB Tooltypes     " LINK TOOLTYPES_E}    A list of supported ToolTypes.
        @{"    Shell Template    " LINK SHELL_E}    A list of supported Shell options.
        @{"      Background      " LINK BACKGROUND_E}    VirusZ's background features...
        @{"        Menus         " LINK MENUS_E}    Usage of functions and preferences.
        @{"      ARexx Port      " LINK AREXX_E}    ARexx commands understood by VirusZ.

        @{"    Special Thanks    " LINK THANKS_E}    Just some hellos to good friends...
        @{"    About MagicWB     " LINK MAGICWB_E}    MagicWB icons are Shareware!
@ENDNODE

@NODE IMPORTANT_E "Important Note"
As there have been spread some VirusZ fakes in the past, I have included the
file  length  of  the  originally  released  program  version in the "About"
request.   If  you  are not sure whether you received a fake or an original,
extract your archive to a bootable disk first, switch off all your harddisks
in  the  BootMenu  and start VirusZ once from this disk (VirusZ requires the
commodities.library,  xfdmaster.library  and reqtools.library).  Now compare
the  length  in  the  "About" request with your file length.  If they match,
your  version  should  be  ok.  Otherwise don't install this version on your
harddisk.

If  you  want to get a 100% clean copy of the latest VirusZ version, see the
@{"Updates" LINK UPDATES_E} chapter for addresses/phonenumbers.

If  you  have  some patches in your system that are not recognized by VirusZ
and  you  know  that  they don't do any harm, you can turn off the 'Check On
Startup'  option  in the Background preferences.  The surveillance mode will
then only report new changes after VirusZ has been already started.  If this
method  should work properly, you have to start VirusZ after all patches are
already  installed,  otherwise it would report the patches started later via
the surveillance mode.
@ENDNODE

@NODE LEGAL_E "Copyright & Disclaimer"
The  entire  VirusZ  package  is  written  and  copyright  1991-96 by Georg
Hrmann  with  exception  of  the  reqtools.library  which  is  written  and
copyright  by Nico Franois who gave the permission to use it in any freely
distributable software package.  The @{"MagicWB" LINK MAGICWB_E} icons are copyright  by Martin
Huttenloher and Timm S.  Mller.

No parts of this package may be altered by any means (this includes editing,
reprogramming, crunching, resourceing etc.), except archiving.

The  author  is  in  no  way  liable for any changes made to any part of the
package,  or  consequences  thereof as he is in no way liable for damages or
loss of data directly or indirectly caused by this software.
@ENDNODE

@NODE DISTRIBUTION_E "Distribution"
Neither  fees  may  be  charged nor profits may be made by distributing this
piece  of  software.   Only a nominal fee for costs of magnetic media may be
accepted,  the  amount  of US $6 shouldn't be exceeded for a disk containing
VirusZ.   Non-commercial  CD manufacturers like Fred Fish are allowed to put
the   package   on  their  compilations,  too.   Outside  a  single  machine
environment,  you  are not allowed to reproduce single parts of the package,
but  you have to copy it completely.  If any parts were already missing when
you  received  the package, look out for another source to get your software
in the future.  See this list of contents for verification:

   VirusZ (dir)
      ARexx (dir)
         CheckArc.vzrx
         CheckDir.vzrx
         CheckFile.vzrx
      ENVARC (dir)
         VirusZ_II.Archivers
      Libs (dir)
         xfd (dir)
            .README.FIRST
            [...]
         xfdmaster.library
         reqtools.library
      SCRIPTS (dir)
         VirusZ_II.ZOO_Script
      ANSi.THeReaLM
      ANSi.ViRuSHeLP_DK
      Install Libs
      Install Libs.info
      Install.script
      VirusZ
      VirusZ.info
      VirusZ_Deutsch.Guide
      VirusZ_Deutsch.Guide.info
      VirusZ_English.Guide
      VirusZ_English.Guide.info
      VirusZ.History
      VirusZ.History.info
   VirusZ.info
@ENDNODE

@NODE UPDATES_E "Updates"
There  are  several  BBS's and PD series where the latest versions of VirusZ
are  available more or less regularly.  But the official VirusZ distribution
sites are:

          For Modem users:                         TIME PD-Disks:

             THE REALM                             Black & White
         ++49-(0)515-43528                       Burckhard Schmidt
            UP TO 14.4k                            Halmerweg 31
         ONE NODE RINGDOWN                         28237 Bremen
                                                 Tel. 0421/6160712
            Nirvana BBS
      USR V34 FC Dual Standard
        ++49-(0)511-9524227
            V32 bis Node
         ++49-(0)511-522809

   Virus Help BBS - Team Denmark
          ++45-4659-6867
           USR 33.6 V.FC
FREE DOWNLOAD FOR ANTIVIRUS PROGRAMS

Additional information about THE REALM:

There  exists  an  extra  account just for VirusZ users.  If you want to get
VirusZ,  then  just log in as Handle:  VirusZ, Password:  VirusZ and you can
download the latest version.
@ENDNODE

@NODE SHAREWARE_E "Shareware"
VirusZ is shareware which means you are allowed to distribute it freely, but
you have to pay a fee to the author if you use VirusZ regularly.  Not paying
your  fee  is  both immoral and illegal.  If you already have registered for
any  former  releases, paying the fee again is optional.  Suggested donation
is  US  $15  (DM  20) or an equivalent amount in any other currency.  Please
don't  send coins (they can't be exchanged) or foreign cheques as this costs
me DM 12.50 (!!) and that's not worth it.

The fact that you paid your shareware fee doesn't mean that you are entitled
to  receive  any  updates  or similar services from the author.  If you want
that  kind  of  support,  you additionally have to include a disk and enough
money for postage.
@ENDNODE

@NODE SUBMISSIONS_E "Submissions"
If  you  have found some new viruses and/or crunchers, send them to me right
now.   If  you want your disks back, either enclose enough money for postage
or  German stamps.  By now I had more expense than profit by sending all you
folks your disks back.  If you want me to continue my anti-virus work, don't
try to cheat me.  Write to the following address:

   Georg Hrmann
   Martinswinkelstrae 16c
   82467 Garmisch-Partenkirchen
   Germany

Please  don't  send any disks with new patches, I will no longer add them to
VirusZ  as  I  want  to  rewrite the vector check anyway and make it able to
learn changes itself.

Sorry  for not having an internet address, so stop asking for it, ok?  There
are mainly three reasons for this:
1. I'm not a student who gets it for free at the university.
2. I don't want to see my phonebill grow and grow each month.
3. I don't have enough time at the moment to r/w electronic mail every day.
@ENDNODE

@NODE INTRO_E "Introduction"
This chapter provides a short overview of all features VirusZ offers.

First thing to mention is that VirusZ can be used as background program that
checks  memory  and inserted disks for viruses.  For this topic as for every
other  specific  or  global  function,  VirusZ offers a quite huge amount of
user-definable settings to configure it as you like best.

Then you have the possibility to start different check mechanisms for files,
sectors,  vectors  and bootblocks.  This is what you usually do whenever you
received new software from friends, PD-disks or from a BBS.

Finally,  parts  of  VirusZ can be controlled via ARexx and thus enables the
user to interact with it from programs like e.g.  DirectoryOpus.

VirusZ has been designed as a 100% clean commodity without any system hacks,
it follows the Style Guide conventions and provides you with keyboard gadget
activation, great Reqtools requesters and many other useful features.

What  VirusZ  does NOT offer is localization and font-sensitivity.  This has
one  major reason:  One main purpose of VirusZ is and will be the background
facility.   Supporting  different  fonts or languages increases the disk and
memory  usage  quite  a lot, and that would make it unusable for people with
just 1 MB of free memory.
@ENDNODE

@NODE REQUIRE_E "Requirements"
This version of VirusZ II requires:

- Kickstart 2.04 (or above)
- MC68000 (or better)
- commodities.library v37+
- reqtools.library v38+
- xfdmaster.library v37+
- rexxsyslib.library v33+ (for ARexx features)
@ENDNODE

@NODE INSTALL_E "Installation"
Copy all libraries from the 'Libs' drawer of the VirusZ package to the LIBS:
drawer  of  your system disk.  You can use the 'Install Libs' script for the
copy work.

Now  you can either drag the VirusZ icon to your WBStartup drawer or add the
following line to your 'S:User-Startup' file:

VirusZ [Options]

See the @{"Shell Template" LINK SHELL_E} section for a description of all supported options.
@ENDNODE

@NODE SHELL_E "Shell Template"
VirusZ supports the following Shell template:

CX_PRIORITY/N/K,CX_POPKEY/K,CX_POPUP/K,PUBSCREEN/K,FC=FILECHECK/K,
DE=DECREXEC/S,DD=DECRDATA/S,UE=USEEXTERN/S,EX=EXTRACT/S,ALL/S,AREXX/K,
QUIT/S

For more detailed information about Shell syntax, commodity usage and hotkey
definitions, please consult the manuals shipped with your Amiga.

Please note that the ARexx interface commands described below require VirusZ
to  be  active already.  If it is not, it will first be started, the starter
process  will  wait  until  the ARexx port appears and then the commands are
sent to the port.

CX_PRIORITY:
Specifies  the commodity priority of VirusZ's broker.  Values may range from
-128 to 127, default is 0.

CX_POPKEY:
Defines the hotkey used to pop up the main window.

CX_POPUP:
Tells VirusZ whether to pop up on startup or not.

PUBSCREEN:
Tells VirusZ to open its windows on the defined public screen instead of the
Workbench.

FILECHECK:
This is not an option, but a shell interface to the ARexx command CHECKFILE.
What  makes it different from a simple call to CHECKFILE is that you can use
wildcards  of any kind and FILECHECK will list you all files that match with
the  given  argument.   The  return code of this shell command is one of the
following:
RC = 0 : Checking finished, no viruses encountered.
RC = 5 : One or more files are infected!
RC = 10: Error during file check.
Example: VirusZ FILECHECK "dh0:~(#?.info)" DECREXEC

DECREXEC:
This  option  is  only  of  use  with FILECHECK and tells VirusZ to decrunch
executable files before checking.

DECRDATA:
This  option is only of use with FILECHECK and tells VirusZ to decrunch data
files before checking.

USEEXTERN:
This  option  is only of use with FILECHECK and tells VirusZ to use external
slaves of the xfdmaster.library for decrunching too.

EXTRACT:
This  option is only of use with FILECHECK and tells VirusZ to extract known
archives and check their contents for viruses.

ALL:
This  option  is  only  of  use  with FILECHECK and tells VirusZ to scan all
subdirectories that may exist in the given path.

AREXX:
This  is  not  an option, but a shell interface to the ARexx port of VirusZ.
The  argument  given to this command will be directly sent to the ARexx port
and the return code in the shell corresponds to the return code of the ARexx
command.
Example: VirusZ AREXX "CHECKDIR dh0: SKIPDIRS"

QUIT:
This  sends  the ARexx command "QUIT" to the running VirusZ process and thus
terminates it.  This option is especially useful in scripts if you intend to
check some files and remove VirusZ afterwards.
@ENDNODE

@NODE TOOLTYPES_E "Workbench Tooltypes"
For  detailed  information  about  Workbench  tooltypes, commodity usage and
hotkey definitions, please consult the manuals shipped with your Amiga.

VirusZ supports the following tooltypes:

CX_PRIORITY:
Specifies  the commodity priority of VirusZ's broker.  Values may range from
-128 to 127, default is 0.

CX_POPKEY:
Defines the hotkey used to pop up the main window.

CX_POPUP:
Tells VirusZ whether to pop up on startup or not.

PUBSCREEN:
Tells VirusZ to open its windows on the defined public screen instead of the
Workbench.
@ENDNODE

@NODE BACKGROUND_E "Background"
In order to check inserted disks and memory in the background even if VirusZ
is  working on e.g.  a file check procedure, the backcheck is installed as a
second task.  This task does several things:

1.  It scans through several memory locations and library/device vectors for
    all known viruses and resets any infected vectors.
2.  It checks the bootblock of every inserted disk for viruses.
3.  It checks the disk-validator of every inserted disk for viruses.
4.  It is able to keep all system vectors under surveillance.

See the @{"Background" LINK BGP_E} preferences for different settings.
@ENDNODE

@NODE MENUS_E "Menus"
Whenever  VirusZ's  main interface is active, you will be able to access the
following two menus:


                     @{b}Project               Prefs@{ub}

                  @{"  File Check      " LINK FC_E}    @{"  File Check      " LINK FCP_E}
                  @{"  Sector Check    " LINK SC_E}    @{"  Sector Check    " LINK SCP_E}
                  @{"  Vector Check    " LINK VC_E}    @{"  Vector Check    " LINK VCP_E}
                  @{"  Bootblock Lab   " LINK BL_E}    @{"  Bootblock Lab   " LINK BLP_E}
                  @{"  Show Brains...  " LINK SB_E}    @{"  Background      " LINK BGP_E}
                  @{"  About...        " LINK ABOUT_E}    @{"  Miscellaneous   " LINK MP_E}
                  @{"  Hide            " LINK HIDE_E}    @{"  Archivers       " LINK AP_E}
                  @{"  Quit            " LINK QUIT_E}    @{"  Save Prefs      " LINK SP_E}
@ENDNODE

@NODE AREXX_E "ARexx Port"
VirusZ has an ARexx port now.  The name of this port is 'VIRUSZ_II.REXX' and
it offers the following functions:

                  @{"       HIDE       " LINK AREXX_HIDE_E}    @{"       QUIT       " LINK AREXX_QUIT_E}
                  @{"    CHECKFILE     " LINK AREXX_CHECKFILE_E}    @{"     CHECKDIR     " LINK AREXX_CHECKDIR_E}


Have a look at the example scripts in the ARexx directory if you want to get
an idea of the power of those few commands.

NOTE:   Starting  with  version  1.33, the CheckArc.vzrx script is no longer
        required  as  VirusZ can extract any archives itself now.  It's just
        still included as an example.
@ENDNODE

@NODE AREXX_HIDE_E "ARexx: HIDE"
Syntax: HIDE

This function makes VirusZ close its main window and work in the background.
To get the interface back you have to use the defined hotkey or the Exchange
utility.
@ENDNODE

@NODE AREXX_QUIT_E "ARexx: QUIT"
Syntax: QUIT

This function terminates VirusZ. All allocated resources will be released.
@ENDNODE

@NODE AREXX_CHECKFILE_E "ARexx: CHECKFILE"
Syntax: CHECKFILE File [DECREXEC] [DECRDATA] [USEEXTERN] [EXTRACT]

File is the filename (with path) of the file that should be checked.  Please
note  that  the  file  will  only  be checked and not repaired.  The options
DECREXEC and DECRDATA turn on decrunching of executable and data files.  The
USEEXTERN option enables the use of external slaves of xfdmaster.library for
decrunching too. EXTRACT turns on extracting of archives.

You will receive one of three results:
RC =  0 : Everything worked fine and file is not infected.
RC =  5 : File is infected by a virus!
RC = 10 : Error while checking file. This may be the result of a bad file
          specification, a bad option or an internal error (e.g. no memory).
@ENDNODE

@NODE AREXX_CHECKDIR_E "ARexx: CHECKDIR"
Syntax: CHECKDIR Dir [SKIPDIRS] [DECREXEC] [DECRDATA] [USEEXTERN] [EXTRACT]

Dir  is the directory that should be checked.  Please note that all files in
this  directory  will only be checked and not repaired.  Usually VirusZ will
scan  through any subdirectories that exist in the specified drawer.  If you
give  the  option SKIPDIRS, scanning of subdirectories will be skipped.  The
options  DECREXEC  and  DECRDATA  turn on decrunching of executable and data
files.   The  USEEXTERN  option  enables  the  use  of  external  slaves  of
xfdmaster.library  for  decrunching  too.   EXTRACT  turns  on extracting of
archives.

You will receive one of three results:
RC =  0 : Everything worked fine and no files are infected.
RC =  5 : One or more files in the directory are infected by a virus!
RC = 10 : Error while scanning through directory. This may be the result of
          a bad Dir specification, a bad option or an internal error (e.g.
          no memory).
@ENDNODE

@NODE THANKS_E "Special Thanks"
There are several people I want to thank for supporting VirusZ:

   * Flake/TRSI for viruses, patches, bug reports and the latest
     news from the net
   * Jan Bo Andersen, Lars Kristensen and all the other guys at
     Virus Help - Team Denmark for viruses, translated docs
     and a fabulous support
   * Holger Hesselbarth for patches, ideas and more
   * Ralf Thanner for everything (what more should I say:-))
   * Axel Folley for moral and financial support :-)
   * Holger Wessling for his unbelievable fantasy
   * Dave Jones for patches, viruses, ideas, bugreports and more
   * Martin Huttenloher for MagicWB
   * Martin Odaischi for dozens of viruses and financial support
   * Heinz Lindner for resident tools and new Kickstarts
   * Markus Stiebeling for bug reports and hints
   * Rdiger Prang for patches and TEX-Docs
   * Steve/Silicon Designs 3003 for viruses and packers
   * Jim Maciorowski for support, letters and donations
   * all other folks that have contacted me in the past
   * of course all users who already paid their shareware fee
@ENDNODE

@NODE MAGICWB_E "About MagicWB"
The  icons  used in the VirusZ package are designed for MagicWB which is the
greatest  Workbench  enhancer  ever  created for the Amiga.  If you like the
icons, think about registering for MagicWB.

MagicWB  is Shareware and copyright  by Martin Huttenloher, the VirusZ icon
has been designed by Timm S.  Mller.
@ENDNODE

@NODE FC_E "File Check"
Introduction
------------
In  the  early  days of the Amiga viruses, nobody thought about file or even
link  viruses.   A  good virus killer had to display the bootblock and check
some  vectors.   But  nowadays,  the  greatest  danger doesn't come from the
bootblock,  but from files.  Therefore this quite unique file check has been
created  to check files for virus infection.  It offers you several features
which  others lack. It can...

* decrunch data and executable files for checking (using xfdmaster.library),
* remove several viruses from one file in one step,
* remove linkviruses from any hunk of a file, not only from the first one,
* unlink so-called 4EB9-linkers (files will be split and then checked),
* strip hunk_name from executables (often used to hide viruses) AND
* extract any file-based archives (see @{"Archivers" LINK AP_E} preferences)!!!

ATTENTION:   Please  never  disable  the  decrunch option unless you have no
other possibility because VirusZ can detect all built-in viruses ONLY in the
decrunched state.

File Request
------------
After  selecting  'File  Check'  from the 'Project' menu, the first thing to
appear  is a file request.  Here you (multi-)select the files and/or drawers
you  wish  to  check.   If  you want to select several entries, keep <SHIFT>
pressed  while  selecting  them.   To select all entries, click on the 'All'
button.  Now click on 'Ok' to start or 'Cancel' to abort checking.

Output Window / Control Panel
-----------------------------
Now  a  window opens that is separated in two parts.  The bigger part is the
output  window  which contains information about the files that are checked.
The  small  part at the bottom is the control panel.  By clicking on 'Stop',
checking  is  interrupted and a request appears asking you to continue or to
abort.   If  you  select  'Continue',  the  request  disappears and checking
continues.   By selecting 'Abort', checking is aborted and you can exit from
the file check or select the next drawer/file by clicking on 'Check Again'.

Important Notes
---------------
The link virus removal code is absolutely reliable as long as infected files
aren't  damaged  in any way.  If the hunk structure is corrupted or anything
else disables removing, VirusZ will tell you and then skip the file.
VirusZ  handles  the protection bits of files automatically, i.e.  makes the
file  readable  for  checking  and writeable for reparation.  This is useful
because  you  don't  have  to  mess  around with the Protect command in your
Shell.   Whenever there comes up a system request "Disk is write protected",
VirusZ  tried  to change the protection bits.  This access is not dangerous,
so it would be best if you make your disks write enabled before checking.

Additional Hint
---------------
It  may happen that a file is first infected and then crunched.  If you want
to  save  the cleaned file without having it decrunched, check it again with
decrunching disabled.
@ENDNODE

@NODE FCP_E "File Check Preferences"
Skip Subdirectories
-------------------
Enable  this option to make the file check ignore any drawers that may exist
in a selected drawer.

Auto-Handle Viruses
-------------------
If the file check detects a file that contains a virus, a request pops up to
inform  you  which virus it was and asks you to either kill the virus or let
it  stay  alive.   With  this  option you can skip this request and kill any
viruses automatically.

Test Without Save/Del
---------------------
If  enabled, the file check only detects viruses, but doesn't try to save or
delete  the infected file.  This may be useful with new disks you don't know
the contents.  Simply select all files, perform a file check and look at the
output  without being disturbed by requests.  In fact it is useful for me to
check through my virus drawers without aborting hundreds of requests.

Generate Report
---------------
This  option makes it possible to create a text file that contains a copy of
the text output you can see while checking.  If enabled, a file request will
appear  after  the  file  check  is finished to ask you for the filename the
report should be written to.

Auto-Save Report
----------------
If  enabled,  VirusZ  doesn't ask for a path/filename to save the report to.
It  then  simply uses the filename that is generated by default and the path
entered in 'Default Report Path'.

Emulate ExAll()
---------------
This  option tells VirusZ not to call the Kickstart ExAll() code, but to use
an  emulation  instead.  There are some Kickstarts around that have a bug in
the  ExAll() code, so if the file check doesn't report anything useful, turn
on  this  option and try again.  Nevertheless, try to avoid the emulation as
much as possible because the real ExAll() command is a lot faster.

Decrunch Executables
--------------------
If  this  option  is  enabled, the file check decrunches executable files in
order  to  check  them for viruses.
ATTENTION:   Keep this option enabled as often as possible.  VirusZ can only
detect viruses if the file is totally decrunched.

Decrunch Data Files
-------------------
If this option is enabled, the file check reads and decrunches data files in
order  to  check  them.  This is useful for data files that actually contain
executables, eg. XPK packed files.

Skip Crypted Files
------------------
If  this flag is set, VirusZ will not ask you for passwords or keys if there
appears  a  crypted  file.  This might be useful if you have protected these
files  yourself  and know that there are no viruses in them.  You don't have
to respond to all the requesters then.

Use External Slaves
-------------------
This option enables the use of external slaves by xfdmaster.library.  Please
keep this option off as there don't exist external slaves at the moment that
could  be  of  use for file checking.  The problem is that a lot of external
slaves cause trouble like system crashes because of bad coding.

Extract Archives
----------------
This option makes VirusZ scan inside any archives that can be recognized and
extracted with the information provided in the @{"Archivers" LINK AP_E} preferences.

Default Report Path
-------------------
Enter  the  path  where you want to save file reports to in this gadget.  If
auto-save is enabled, VirusZ uses this path for saving.

Amount Of Lines Displayed
-------------------------
This gadget contains the maximum amount of lines that will fit into the file
check  output  window.   Set  to  99 on screens lower than 300 pixels and to
smaller  values  on interlaced screens.  Otherwise the scrolling will be too
slow and decrease checking speed.
@ENDNODE

@NODE SC_E "Sector Check"
Select Drive
------------
After  selecting  'Sector Check' from the 'Project' menu, the first thing to
appear  is  a  drive  request.  Here you select the drive you wish to check.
Only  trackdisk  units  are supported, but checking should work with the new
1.76 MB disks too.  Click on 'Ok' to start or 'Cancel' to abort checking.

Output Window / Control Panel
-----------------------------
Now  a  window opens that is separated in two parts.  The bigger part is the
output window which contains information about the sectors that are checked.
The  small  part at the bottom is the control panel.  By clicking on 'Stop',
checking  is  interrupted and a request appears asking you to continue or to
abort.   If  you  select  'Continue',  the  request  disappears and checking
continues.   By selecting 'Abort', checking is aborted and you can exit from
the  sector  check  or  select  the next drive by clicking on 'Check Again'.
@ENDNODE

@NODE SCP_E "Sector Check Preferences"
Auto-Repair Sectors
-------------------
If  the  sector  check  detects  an  infected sector that can be repaired, a
request  pops  up to ask you to either repair the sector or ignore it.  With
this option you can skip this request and repair any sectors automatically.

Check Without Repair
--------------------
If  enabled, the sector check only detects infected sectors, but doesn't try
to repair them.  Useful to get a quick overview over the sectors of a disk.

Amount Of Lines Displayed
-------------------------
This  gadget  contains  the  maximum  amount of lines that will fit into the
sector  check output window.  Set to 99 on screens lower than 300 pixels and
to  smaller  values  on interlaced screens.  Otherwise the scrolling will be
too slow and decrease checking speed.
@ENDNODE

@NODE VC_E "Vector Check"
Introduction
------------
Mostly  all  viruses  work  in the same manner.  Either they make themselves
resident   and/or  corrupt  some  libraries  or  devices  with  their  code.
Therefore the vector check was designed to help you finding new viruses that
can't be recognized directly by VirusZ yet.

Most  of  the  vectors  and  entrypoints  that  will  be  displayed are only
interesting  for  programmers,  so I will try to avoid any explanations that
confuse the average user.

VirusZ  is  able to display the names of library/device functions instead of
printing  just  an  offset message if you supply it with so-called FD files.
These  have been shipped with Workbench 1.2/1.3 Extras disks or can be found
in  most assembler and compiler packages.  I haven't put them in the archive
because of copyright reasons.

Output Window / Control Panel
-----------------------------
After  selecting 'Vector Check' from the 'Project' menu, a window opens that
is  separated  in  two  parts.   The  bigger part is the output window which
contains  information  about  the vectors that are checked.  With the scroll
gadget  at the right you can move the output up and down.  The small part at
the  bottom is the control panel.  By clicking on 'Refresh', the output will
be  refreshed.  This is useful after clearing some vectors.  If there is not
enough memory to refresh, the vector check exits.  With 'Exit', you normally
leave  the  vector  check.   Use 'Prefs' if you want to change some settings
while  looking  at the displayed information.  If you leave the prefs window
with 'Use', the display will be automatically refreshed.

What Can I See From The Displayed Information?
----------------------------------------------
Well, every vector has a short comment right of it.  As long as you can read
'Ok'  there,  everything  is  fine.   Then  it  might  happen  that you read
something  like  'SetPatch',  this  tells  you that the changes done to this
vector are ok, because VirusZ recognized who did them.
But if you read '*** NON-STANDARD VECTOR ***', be alarmed.  In fact, most of
these  unknown  changes are nothing more than an utility like the well known
'PP  Patcher'.   But  if  you are sure that you haven't installed any system
patches, this might be a new virus.

Menu
----
There  exists a menu called 'Clear' in the vector check which offers you the
possibility  to  clear certain vectors one by one or all together.  The item
names correspond with the respective vectors.
The  'Misc'  menu  currently  only offers one item:  'Save Report...'.  This
opens  a  file request where you may enter the name of the file to be saved.
All  output  information  displayed  in the vector check window will then be
written to this file.
@ENDNODE

@NODE VCP_E "Vector Check Preferences"
Show ResModules
---------------
If enabled, the ResModules will be checked and non-ROM based modules will be
displayed.

Show Exec Interrupts
--------------------
If  enabled,  the  exec  interrupt  table  will be checked.

Show CPU Interrupts
-------------------
If  enabled,  the  CPU  interrupt  table  will  be checked.

Show Devices
------------
If  enabled,  devices  will  be  checked  and  non-ROM  based function table
entrypoints will be displayed.

Show Libraries
--------------
If  enabled,  libraries  will  be  checked  and non-ROM based function table
entrypoints will be displayed.

Hide Known Patches
------------------
Normally  the  sector check displays known patches with their name after the
patched  entrypoints.   If this option is enabled, known patches are skipped
and  will  not  be  displayed.  Useful to filter out modifications caused by
SetPatch, LoadWB or other system commands.

Hide 'OK' Vectors
-----------------
If enabled, the vector check will not display ANY vectors marked 'OK'.  This
decreases  the  amount  of printed lines drastically as long as there aren't
too much patches in the system.

Use FD For Offsets
------------------
If  this  is  tagged, VirusZ tries to read the library/device function names
from  so-called FD files and displays them instead of saying 'Offset -1234'.
Only if the function is not defined in the FD file (newer library version or
reserved slot), the old offset message will be printed.
You  may  get these FD files from the WorkBench 1.2/1.3 Extras disk, or from
almost  every  assembler/compiler  package available for the Amiga.  I can't
include them in the VirusZ package for copyright reasons.

FD Path
-------
This  gadget contains the directory that holds your FD files.  The files can
be  crunched  with any data cruncher supported by xfdmaster.library and will
be uncrunched while loading.

Amount Of Lines Displayed
-------------------------
This  gadget  contains  the  maximum  amount of lines that will fit into the
vector check output window.
@ENDNODE

@NODE BL_E "Bootblock Lab"
Attention
---------
Be careful with writing to / installing your harddisk.  I'm not reliable for
your faults.

Drive / Display
---------------
There  are  two  cycle gadgets in the bootblock lab, one on each side of the
status  line.   The  left  one  selects the drive you want to work with, the
right  one  selects  the  display  mode.   Keyboard activiation of the drive
gadget is <D> or <SHIFT-D> and <B> or <SHIFT-B> for the display mode gadget.

Name
----
Whenever  there happens to occur an error, this will be stated in the status
line.   Then  the  name  of  the  current  bootblock  in  the buffer will be
overwritten.  By clicking on this gadget, the name is printed again.

Exit
----
Click to exit from bootblock lab.

Read
----
Reads  the  bootblock from the currently selected drive to the buffer.  Only
DOS disks can be read.

Write
-----
Writes  the  current buffer contents to the bootblock of the selected drive.
The disk type and the checksum will be corrected automatically.

Load
----
Opens a file request to select a bootblock file that should be loaded to the
buffer.  Only DOS bootblocks can be loaded.

Save
----
Saves  the  current  buffer  contents  to  a file.  This is useful to backup
important bootblocks of games etc.

Learn
-----
Not implemented yet.

Prefs
-----
Opens  the  bootblock  lab  preferences  window.  Useful to change something
without having to leave the lab.

Install
-------
Installs a standard OS2 bootblock to the currently selected drive.  The disk
type will be corrected automatically.

Menu Functions
--------------
Not implemented yet.
@ENDNODE

@NODE BLP_E "Bootblock Lab Preferences"
Ask Before Write Access
-----------------------
If  enabled,  a  security  request  pops up every time you select 'Write' or
'Install' in the bootblock lab.

Read Inserted Disks
-------------------
This  enables  the  bootblock  lab  to read the bootblocks of inserted disks
automatically.   Useful  if  you  intend  to  check a whole box of disks for
bootblock viruses.

Install Uninstalled Boot
------------------------
If  enabled,  'Install'  doesn't install a standard bootblock, but makes the
disk non-bootable.
@ENDNODE

@NODE SB_E "Show Brains..."
After  selecting  this  function, a window will be opened with a list of all
boot,  file and link viruses detected by the current version of VirusZ.  The
second list shows all patches that will be recognized by the vector check.
@ENDNODE

@NODE BGP_E "Background Preferences"
Check On Startup / Keep Under Surveillance
------------------------------------------
All the checkmark buttons under this headline have one thing in common:  The
first gadget switches the startup check on/off, the second (de)activates the
surveillance mode. See below for the gadgets' meanings.

The memory scan routines recognize the same patches as the main vector check
and therefore will not inform you of the changes done by these.  If the info
requester pops up to inform you about some changed vectors, go to the Vector
Check and have a look at the changes if you want exact information.

If  the  bootblock  check  informs you about an unknown bootblock, go to the
Bootblock Lab if you want to have a closer look at it.

ColdCapture
-----------
Checks for modifications done to the ColdCapture vector.

CoolCapture
-----------
Checks for modifications done to the CoolCapture vector.

KickTagPtr
----------
Calculates  a checksum over all KickTags in the list every time the check is
performed and checks for differences to the last checksum.

CPU Interrupts
--------------
Scan through all hardware interrupt pointers relative to the vector base.

Exec Interrupts
---------------
Checks all the interrupt entries in the ExecBase.

Libraries/Devices
-----------------
Searches for unknown patches.

Bootblocks
----------
Checks the bootblock of every inserted disk.

Disk-Validators
---------------
Checks the disk-validator of every inserted disk.

Known Viruses
-------------
Checks all memory locations for known viruses.

Surveillance Frequency
----------------------
Enter  the amount of seconds that should pass between two checks here.  This
frequency is used for the surveillance mode of all vectors and disks.
@ENDNODE

@NODE ABOUT_E "About..."
Displays  some  information  about VirusZ.  You can see the file length your
copy of VirusZ should have on disk at the bottom line.
@ENDNODE

@NODE MP     f           e                                                                                                                                                                                                                                          t  s  r  q  p  o  n  m  l  k  j  i  h  g                                                                                                                                                                                                  _E "Miscellaneous Preferences"
Check Hunks On Startup
----------------------
If  enabled,  the  hunk  structure of VirusZ will be checked on startup.  An
alert  appears if there is something wrong (might be a link virus).  Disable
this  option  if you intend to crunch VirusZ with a file packer because most
of these modify the hunks.

Requesters Follow Mouse
-----------------------
If  enabled, all ReqTools requesters appear with the negative response under
the mouse.  If disabled, they pop up in the top left corner as usual.

Quit Immediately
----------------
If enabled, VirusZ quits without verification.

Install SnoopDos Task
---------------------
If  enabled,  a task called 'SnoopDos' will be created which doesn't use any
processor time, but prevents several trojan horses from doing any harm.

Pop Up On Startup
-----------------
If  enabled,  VirusZ  opens  the main window on startup, otherwise it can be
controlled via the Exchange commodity only.

Load Brain On Startup
---------------------
Not implemented yet.

Close Main Window = Exit
------------------------
If  enabled,  VirusZ  quits when you click on the close-window button of the
main  window,  otherwise it will act as if you selected the 'Hide' item from
the 'Project' menu.

Center Main Window
------------------
If  enabled,  VirusZ's main window appears centered at the top border of the
screen.   Otherwise  it  will use the coordinates that have been last saved.
You  can  save  the coordinates by moving the window to the desired position
and then selecting 'Save Prefs'.

Activate On Startup
-------------------
This  option  tells  VirusZ to activate the main window on startup.  This is
useful  for  all users that don't have VirusZ in the background all the time
and want to start checking without activating the window first.

Hotkey
------
The default commodity hotkey used to pop up the main window.

Brain
-----
Not implemented yet.

Devices
-------
Enter  all  devices  you want VirusZ to check here.  They will appear in the
BootLab  in the same order as they are entered in the string gadget.  If you
enter  a  device name and VirusZ can't find this device, it will be skipped.
Thus  you  can  enter all your devices, even if they are not always mounted.
All names must be divided by a "|" character.  Names are not case sensitive.
@ENDNODE

@NODE HIDE_E "Hide"
Makes  VirusZ  close its window and work in the background.  You can re-open
the window again by using the defined hotkey or via the Exchange commodity.
@ENDNODE

@NODE AP_E "Archivers"
Gadgets
-------
New:        Adds a new entry to the archiver list. This will only be taken
            to the list if all entered information is valid.

Delete:     Deletes the selected entry from the archiver list.

Edit:       You can edit the information of the selected entry again if it
            doesn't work as you want.

Temp.Path:  The path that should be used for temporary extracting should be
            entered here. Please note that any files in this drawer will be
            deleted during an archive check. Best thing to use is something
            unimportant like 'RAM:xyz/' or 'T:xyz/'. If you don't have much
            free memory and you want to extract big archives, use something
            like 'DH0:Temporary/'.

Archiver Information
--------------------
Name:     Enter a meaningful name for the archive type here (eg. LhA, LZX).
          This name also appears in the file check behind the filename of
          the archive.

Offset:   This is the offset from the beginning of a file measured in bytes
          where the data should be searched for.

Data:     The recognition data that determines whether a file is an archive
          or not. You can enter the data either as hexadecimal values ($xy)
          or as ascii strings (starting and ending with " or '). Strings may
          contain several characters, hex values may only be in byte-range
          (one or two digits). Values must be separated with , . Overall
          length of data must not be larger than 16 bytes.

          Example: LhA archives may be recognized with Offset: 2 and Data:
                   * "-lh"         or
                   * $2d,'lh'      or
                   * $2d,$6c,$68   and so on.

          If " or ' should be used in a string, simply type "" or '' and it
          will be interpreted as single " or '.

          Please note that data will be translated to binary for internal
          use and may appear different from what you entered if you re-edit
          it later on.

Command:  Enter the command line here that should be executed to extract the
          detected archive. Please use any options that an archiver provides
          to minimize the output of the program (eg. Quiet, No Messages).

          The command line must contain the following parameters:
          * %f: represents the filename of the archive to be extracted,
          or
          * %F: represents the filename of the archive with full path,
          * %p: represents the temporary path to extract archive to,
          or
          * %P: represents the temporary path (ending with '/').

          Example: C:LhA -mMIq x %f %P

          Note that archiver programs must be called with their full path,
          because VirusZ doesn't support search paths set with the 'C:Path'
          command.

          If a % should be used in the command line, simply type %% and it
          will be interpreted as single %.

          Note that the archiver must be able to create destination drawers
          itself, as VirusZ doesn't do this automatically. This should be
          no problem at all as most archivers I know are capable of this.

          If you have problems in creating a working single-lined command as
          I had with 'ZOO', simply create a script that does the work and
          enter a call to the script in the command line.

          Example: C:Execute SCRIPTS:VirusZ_II.ZOO_Script %p %F

          where 'VirusZ_II.ZOO_Script' contains the following commands:

          .KEY PATH/A,FILE/A
          C:MakeDir <PATH>
          CD <PATH>
          DH2:Tools/Zoo xqO <FILE>

If  you  still  don't have any idea what I am talking about, simply copy the
files  in  ENVARC/ and SCRIPTS/ to the corresponding drawers of your system,
start  VirusZ  and edit the archiver paths to your needs.  Everything should
work fine then.
@ENDNODE

@NODE QUIT_E "Quit"
Terminates VirusZ.  All allocated resources will be released.  There will be
no more virus checking.
@ENDNODE

@NODE SP_E "Save Prefs"
This saves the current settings to the file 'ENVARC:VirusZ_II.Prefs' and the
archiver  list to the file 'ENVARC:VirusZ_II.Archivers'.  From there, VirusZ
will get its preferences on the following startups.
@ENDNODE
                                                                                                                                                                    q                                                                                                        3  
MAShare_66                                 3        %          q        u   
      vA^                                                                                                                                                                                                                                                            ~  }  |  {  z  y  x  w  v              1                                                                                                  VirusZ_English.Guide.info                                            x            : $                                            : #                 X   *_W*U*ʪߕE**~UQ_*UTW*yUU**UUU**QV}*J{%UU*UW?. U\(eYÀ*0:ǀ]π*_*!*    6           UUCR  {D@  UQ\ j  UT5W* z kD  UP_ʪ jU  USU_ z@ U]Uuڨ j  UGU_B z@ UQ] h   UPu_  j ;@ U}
 j.J  U  xF W@ l? U z'@ UT  j=  UUS  z /T@  UU@     a       :             X   ?@?W@?@?@?*@?U@?(@?Q_@?"@?DEW@?򊊫@?U@?"@?EUU@?( @?Pb@?"@?DUTC@? C@<HT@8I @	@2	)URU@4&* )@82$E @?&D '@?B /@? @?_@?R@?U?@?O@@  >  @?          X   ?@?W@?@?@?*@?U@?(@?Q_@?"@?DEW@?򊊫@?U@?"@?EUU@?( @?Pb@?"@?DUTC@? C@<HT@8I @	@2	)URU@4&* )@82$E @?&D '@?B /@? @?_@?R@?U?@?O@@  >  @?          X   ?@?W@?@?@?*@?U@?(@?Q_@?"@?DEW@?򊊫@?U@?"@?EUU@?( @?Pb@?"@?DUTC@? C@<HT@8I @	@2	)URU@4&* )@82$E @?&D '@?B /@? @?_@?R@?U?@?O@@  >  @?          X   ?@?W@?@?@?*@?U@?(@?Q_@?"@?DEW@?򊊫@?U@?"@?EUU@?( @?Pb@?"@?DUTC@? C@<HT@8I @	@2	)URU@4&* )@82$E @?&D '@?B /@? @?_@?R@?U?@?O@@  >  @?          X   ?@?W@?@?@?*@?U@?(@?Q_@?"@?DEW@?򊊫@?U@?"@?EUU@?( @?Pb@?"@?DUTC@? C@<HT@8I @	@2	)URU@4&* )@82$E @?&D '@?B /@? @?_@?R@?U?@?O@@  >  @?          X   ?@?W@?@?@?*@?U@?(@?Q_@?"@?DEW@?򊊫@?U@?"@?EUU@?( @?Pb@?"@?DUTC@? C@<HT@8I @	@2	)URU@4&* )@82$E @?&D '@?B /@? @?_@?R@?U?@?O@@  >  @?     : #                        ,   @U^W/WyU
UUʢWE_
*VUUW+QUTU
^UU_*TDWJ>W%UU
TU UW?V2`\W_
aU^Uw?           `    ?*UU  =T"   *UTD 5@U
  *UP =5J  *jUD 5@Us *UU =UW|  *mT 5CWf *U =w *  4 u}  *: U 5   *P 5%  *B <W@ + 6  * =  *~y @ 5@O  *uU  =   * MT     `          @ ,   @_W__U___*_U__(_UW_"_EEU__QU_"_UV _1_ETb_*!_QEU!^$@\$UTY@*Z@X \R	_"UR _`J _LX __)_*_              @ ,   @_W__U___*_U__(_UW_"_EEU__QU_"_UV _1_ETb_*!_QEU!^$@\$UTY@*Z@X \R	_"UR _`J _LX __)_*_              @ ,   @_W__U___*_U__(_UW_"_EEU__QU_"_UV _1_ETb_*!_QEU!^$@\$UTY@*Z@X \R	_"UR _`J _LX __)_*_              @ ,   @_W__U___*_U__(_UW_"_EEU__QU_"_UV _1_ETb_*!_QEU!^$@\$UTY@*Z@X \R	_"UR _`J _LX __)_*_              @ ,   @_W__U___*_U__(_UW_"_EEU__QU_"_UV _1_ETb_*!_QEU!^$@\$UTY@*Z@X \R	_"UR _`J _LX __)_*_              @ ,   @_W__U___*_U__(_UW_"_EEU__QU_"_UV _1_ETb_*!_QEU!^$@\$UTY@*Z@X \R	_"UR _`J _LX __)_*_         
MultiView       % Icon by Martin Huttenloher                                                                                                                                                                                                                                                                                                                                                                         VirusZ.History.info                                                x                  ;                                                                                                                                                                                                                                                                                                                                                                                                       k  TVirus_Checker.info                                                   p            9    ^ _0             d       ^8      c        P -      c6    `         b F              9    x             ?        /    /UP   /n   -U_ /  %?2 .~6 %_ / %? # .   %UD  *   %U    5UUUUUV ?                                                              D    = 0 |x    > ?                           UUUUUT                                                    UP  n x U@      _       P@      @      UD" 
   > U
                               9                p      o        UU@       U    ?O_? ?      U    UUUUUW         @      @              @       @      @       @   @@ `@* | @ ` >< @@  x @  @    @      @      UUUUUV                           	               ?UU@  =  #$ 6U?   @  ;      ?    :   @U *  j        UUUUUU       #(Dedicated to Roland Ratzenberger)    !(who died on 30-04-94 in Imola.)                                                        w  v  u  t  s                                                                                                                VirusZ.info                                                          p                     ^u                                      5  H                                 
                                  .                    '                                       #                                       ,  '                                3                                                                                                                                3  DVirus_Checker                                                        p                        Fv4                                                                                                                                                                                                                                                                                                                                                                                                              3  ARexx                                                                                     Ϲz                                                                                                                                                                                                                                                                                                                                                                               /    @Virus_Checker7.dopus5                                                    /* Virus_Checker7 for Directory Opus 5 and Virus_Checker 7.
   By Leo Davidson ("Nudel", Pot-Noodle/Gods'Gift Utilities)

$VER: Virus_Checker7 1.2 (18.8.95)

   NOTE: This script _requires_ DOpus v5.11 or above.

   If you include the path of a file/dir on the command line, using a {}, only
   this file/dir will be tested. If you omit the {}, the program will check
   all selected files and directories in the SOURCE lister for viruses.

   If Virus_Checker's ARexx port is not found, the program will be run for
   you (you should edit the path below). This means the script may fail if
   you give an incorrect path to the Virus_Checker program.

   If the Virus_Checker's ARexx port takes over a minute to appear, an error
   requester will appear on the DOpus screen and the script will quit.

   If Virus_Checker was running to start with, it will be left running after
   the script has completed. Otherwise, it will be removed from memory.

   When a virus is detected a beep will sound and once all files have been
   checked you will get a requester with a list of infected files (including
   the type of virus). It is possible that the requester will fail to
   appear if it becomes too large to fit on the screen. The script will
   detect when this happens and output the results to a shell window instead.

   Thanks to John Veldthuis <johnv@tower.actrix.gen.nz> for writting
   Virus_Checker, allowing me access to the VC7 beta versions, and for giving
   me a virus-infected file (!) to test this script with.

For a "check selected files for viruses" function, call as:
------------------------------------------------------------------------------
ARexx		DOpus5:ARexx/Virus_Checker7.dopus5 {Qp} {Ql}
------------------------------------------------------------------------------
Turn off all switches.


For an "Un-LhA to a directory and check for viruses" function, call as:
------------------------------------------------------------------------------
AmigaDOS	C:LHA -M x {fu} {d}{ou-}/
ARexx		DOpus5:ARexx/Virus_Checker7.dopus5 {Qp} {Ql} {d}{o-}
------------------------------------------------------------------------------
Switches: Do all files
          Output to window
          Rescan dest
          Window close button

   v1.00 -> v1.01 - Some minor tidying up.
                    Now checks to make sure the DOPUS.x port exists.
    v1.02 -> v1.3 - Now uses Show() instead of ShowList(). (Thanks Stoebi)
                    Style Guide compliant version numbering and $VER string.

*/
/*- Path to Virus_Checker command ------------------------------------------*/
Virus_Checker = "DH0:Tools/Harddrive/VirusKillers/Virus_Checker"
/*--------------------------------------------------------------------------*/
options results
options failat 99
signal on syntax;signal on ioerr		/* Error trapping */
parse arg DOpusPort source_handle.0 FilePath
DOpusPort = Strip(DOpusPort,"B",'" ')
source_handle.0 = Strip(source_handle.0,"B",'" ')
FilePath = Strip(FilePath,"B",'" ')

If DOpusPort="" THEN Do
	Say "Not correctly called from Directory Opus 5!"
	Say "Load this ARexx script into an editor for more info."
	EXIT
	END
If ~Show("P",DOpusPort) Then Do
	Say DOpusPort "is not a valid port."
	EXIT
	End
Address value DOpusPort

Quit_After = "NO"
If ~Show("P","Virus_Checker") Then Do
	Address Command Virus_Checker
	Quit_After = "YES"
	TickTick = Time(M)
	Do While ~Show("P","Virus_Checker")
		IF Time(M) - TickTick > 1 Then Do
			dopus request '"Error loading Virus_Checker!'|| '0a'x ||'Check its command-line in the ARexx script itself." OK'
			EXIT
			END
		END
	END

/* If file/dir-path was specified on command line, check it, else
   go through all the selected ones. */

BadList = ""
BadNumber = 0

/*
lister query source stem source_handle.
IF source_handle.count = 0 | source_handle.count = "SOURCE_HANDLE.COUNT" Then Do
	dopus request '"You must have a SOURCE lister!" OK'
	EXIT
	End
*/

If FilePath = "" Then Do
	lister set source_handle.0 busy 1

	lister query source_handle.0 numselentries	/* Get info about selected */
	Lister_NumSelEnt = RESULT			/* entries & path to them */
	lister query source_handle.0 path
	Lister_Path = Strip(RESULT,"B",'"')

	lister set source_handle.0 progress Lister_NumSelEnt "Checking for viruses..."

	Do i=1 to Lister_NumSelEnt
		lister query source_handle.0 abort
		If RESULT=1 Then BREAK
		lister query source_handle.0 firstsel
		Temp_Name = Strip(RESULT,"B",'"')
		lister select source_handle.0 Temp_Name 0
		Temp_Path = Lister_Path || Temp_Name
		lister set source_handle.0 progress name Temp_Name
		lister set source_handle.0 progress count i
		Address "Virus_Checker" "Scan "||Temp_Path
		If VCHECK.0.0 ~= 0 Then Do
			command beep
			Do x=1 to VCHECK.0.0
				BadNumber = BadNumber + 1
				BadList = BadList || '0a'x || VCHECK.x.1 ||"  (" || VCHECK.x.2 || ")"
				END
			END
		END
	lister clear source_handle.0 progress
	End

ELSE Do
	lister set source_handle.0 progress "-1" "Checking for viruses..."
	Address "Virus_Checker" "Scan "||FilePath
	If VCHECK.0.0 ~= 0 Then Do
		command beep
		Do x=1 to VCHECK.0.0
			BadNumber = BadNumber + 1
			BadList = BadList || '0a'x || VCHECK.x.1 ||"  (" || VCHECK.x.2 || ")"
			END
		END
	lister clear source_handle.0 progress
	End

If BadNumber > 0 Then Do
	If BadNumber = 1 Then
		BadNote = "The following file is infected:"
	Else
		BadNote = "The following files are infected:"
	BadList = "*VIRUS WARNING*" || '0a'x || BadNote || '0a'x || "(Virus name in parenthesis)" || '0a'x || BadList

	dopus request '"'||BadList||'" OK'

/* As there is only one gadget which returns "RC = 1", when "RC = 0" it means
   that the requester failed to appear. This will happen when the list is too
   long or wide to fit on the screen, which could easily happen with a virus
   which has spread itself to many files!

   So, if the requester failed, the output will be sent to a shell window.
   It would be nice to be able to use the user's defined output-window
   size but there is (currently) no way of obtaining this. */

	IF RC = 0 Then Do
		dopus request '"*VIRUS WARNING*' || '0a'x || 'List too large for requester' || '0a'x || 'and will be output to a shell..." OK'
		Open(Output_Shell,"CON:0/1/640/200/Virus Warning/CLOSE/WAIT","W")
		WriteLN(Output_Shell,BadList)
		Close(Output_Shell)
		END
	END

/*-- Restore the Lister for normal use --------------------------------------*/
syntax:;ioerr:				/* In case of error, jump here */
END_PART_2:

lister clear source_handle.0 progress

If FilePath = "" Then Do
	lister refresh source_handle.0
	lister set source_handle.0 busy 0
	END

END_PART:
If Quit_After = "YES" Then Address "Virus_Checker" QUIT

EXIT

      vA^                                                                                                                                                                                                                                                            ~  }  |  {  z  y  x  w  v              1                                                                                                  VirusZ_English.Guide.info                                            x                     #/d                                                                                                                                                                                                                                                                                                                                                                                                        3  catalogs                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   3  franais                                                                                  ւv{                                                                                                                                                                                                                                                                         #                                                                                                   Virus_Checker.catalog                                                    FORM  #CTLGFVER   a$VER: Virus_Checker.catalog 8.01 (21.10.95) par Florent Monteilhet et Georges 'Melkor' Goncalves  LANG   	franais  CSET                                    STRS  "       BERREUR|Impossible d'ouvrir la dos.library version 37 ou suprieure        GERREUR|Impossible d'ouvrir l'intuition.library version 37 ou suprieure       GERREUR|Impossible d'ouvrir la graphics.library version 37 ou suprieure       BERREUR|Impossible d'ouvrir la asl.library version 37 ou suprieure        GERREUR|Impossible d'ouvrir la gadtools.library version 37 ou suprieure       fERREUR|Impossible d'allouer la mmoire pour le fichier Brain|L'ID du bloc de Boot n'est pas sauvegard        AERREUR|Impossible d'allouer le signal pour la gestion principale          aERREUR|Cration de la Commodit|La commodities.library version 37 ou suprieure est indisponible          Okay       	   QERREUR|Cration de la Commodit|Impossible d'allouer la mmoire pour la structure      
   CERREUR|Cration de la Commodit|Impossible de crer un port message       6ERREUR|Cration de la Commodit|Impossible de la crer        EERREUR|Impossible de crer le raccourci|Peut tre est il dj utilis         EERREUR|Impossible d'ouvrir l'utility.library version 37 ou suprieure         _Dmarrer icnifi                                                SERREUR|Ouverture de la fentre|Impossible d'ouvrir la fentre|Le programme continue       Virus_Checker version %ld.%ld par John Veldthuis|Virus_Checker.brainfile %ld.%ld|Unpack.library version %ld.%ld||'Enregistr : %s|Veuillez supporter le SHAREWARE|Dtails dans Virus_Checker.guide       GERREUR|Impossible d'ouvrir la diskfont.library version 37 ou suprieure                 IERREUR|Ouverture d'input.device|Impossible de crer le gestionnaire Input         6ERREUR|Impossible de crer l'accs pour l'input.device        aERREUR|Impossible de crer la requte de fichier ASL|Impossible de continuer avec cette opration         rERREUR|Impossible d'ouvrir la xfdmaster.library version 34 ou suprieure|Impossible d'utiliser la vrification XFD        sERREUR|Impossible d'ouvrir le fichier de configuration pour sauvegarder|La sauvegarde de la configuration a choue       bERREUR|Impossible d'crire le fichier de configuration|La sauvegarde de la configuration a choue        eERREUR|Impossible de crer la structure INFO d'unpack.library|Impossible de vrifier les fichiers LHA         bERREUR|Impossible de crer la structure INFO d'unpack.library|Impossible de lancer la vrification        ^ATTENTION|La description est trop longue|Le maximum est de 63 caractres|Veuillez le re-saisir         qATTENTION|Le chemin du rpertoire temporaire est trop long|Le maximum est de 99 caractres|Veuillez le re-saisir       !   uATTENTION ATTENTION|Veillez  ce que le rpertoire soit vide|Tous les fichiers y seront effacs par l'unpack.library       "   =ATTENTION|La mmoire de votre ordinateur est infecte par le       #   )Le virus est maintenant dsactiv/enlev       $   CERREUR|Impossible de crer le port pour accder au trackdisk.device    %   FATTENTION|Un programme juste lanc vient d'infecter la mmoire avec le     &   5ATTENTION|Le vecteur CoolCapture vient d'tre chang       '   5ATTENTION|Le vecteur ColdCapture vient d'tre chang       (   5ATTENTION|Le vecteur WarmCapture vient d'tre chang       )   CATTENTION|Le vecteur trackdisk.device BeginIO() vient d'tre chang    *   5ATTENTION|Le vecteur Exec DoIO() vient d'tre chang       +   Laisser|Restaurer      ,   /ATTENTION|Le vecteur CoolCapture n'est pas zro    -   /ATTENTION|Le vecteur ColdCapture n'est pas zro    .   /ATTENTION|Le vecteur WarmCapture n'est pas zro    /   Laisser|Effacer    0   ATTENTION|Impossible d'ajouter le fichier/rpertoire|"%s"  la liste de surveillance|Impossible d'allouer la mmoire pour le noeud     1   }ATTENTION|Impossible d'ajouter le fichier/rpertoire|"%s"  la liste de surveillance|Impossible de vrouiller le fichier/rp.      2   ATTENTION|Impossible d'ajouter le fichier/rpertoire|"%s"  la liste de surveillance|Impossible d'utiliser StartNotify() sur le fichier/rp.       3   sERREUR|Impossible de crer le port pour la liste de surveillance|Impossible de surveiller aucuns fichier/rpertoire    4   9ATTENTION|Le fichier/rpertoire "%s"|vient d'tre altr       5   mERREUR|Impossible d'ouvrir VirusChecker.watch pour sauver la liste de surveillance|La liste n'est pas sauve       6   iVirus_Checker n'a pu lire le BLOC DE BOOT| sur le disque en "%s"|Impossible de vrifier les virus dessus       7   bDANGER DANGER DANGER|Le disque dans le lecteur "%s" est INFECTE|avec le virus de Bloc de Boot "%s"     8   #Ignorer|Enlever|Visionner|Apprendre    9   Ignorer|Visionner|Enlever      :   [ATTENTION ATTENTION ATTENTION|Le disque dans le lecteur "%s"|a un code de Boot NON-STANDARD    ;   INSTALLER quel bloc de Boot ?      <   WB2|WB1.3|Annuler      =   )ERREUR|Le disque est proteg en criture       >   Ressayer|Annuler      ?   eDANGER: Impossible d'ouvrir le trackdisk.device|Il doit tre en utilisation. Essayez un autre lecteur      @   qATTENTION|Problmes en lisant le fichier "VCBrain"|Impossible d'utiliser la vrification spciale du Bloc de Boot      A   #Vrification de la mmoire termine    B   QERREUR|Impossible de sauver les ID de bloc de Boot dans VCBrain. Brain non sauv       C   _ERREUR|Impossible d'allouer la mmoire du tampon|de lecture du fichier "%s"|Fichier non vrifi    D   IERREUR|Impossible d'ouvrir le fichier "%s" en lecture|Fichier non vrifi      E   IERREUR|Impossible de lire le fichier "%s"|Fichier non-vrifi comme virus      F   7ATTENTION Le fichier|"%s"|est infect par le|virus "%s"    G   !IGNORER FICHIER|EFFACER FICHIER        H   %ERREUR en effaant le fichier|"%s"|%s      I   /IGNORER FICHIER|EFFACER FICHIER|ENLEVER FICHIER    J   ZDANGER: ERREUR en ouvrant le fichier pour ECRITURE|%s|Le fichier "%s"|est toujours infect     K   aATTENTION: La structure HUNK est corrompue|Le fichier "%s"|vient d'tre tranch  la taille zro       L   QDANGER: ERREUR en crivant le fichier|%s|Le fichier "%s"|est dans un tat inconnu      M   ZERREUR EN VEROUILLANT LE FICHIER/REPERTOIRE|"%s"|Le fichier/rpertoire n'a pas t xamin     N   eERREUR: Impossible d'allouer un bloc de contrle pour ExAll()|Le rpertoire "%s" ne sera pas examin       O   sERREUR: Impossible d'allouer 400 octets de mmoire|pour les lectures ExAll()|Le rpertoire "%s" ne sera pas examin    P   WERREUR: Impossible d'ouvrir le fichier "%s"|en criture|Le fichier vient d'tre infect    Q   _ATTENTION|Le fichier "%s"|est protg en lecture|Virus_Checker n'est pas capable de le vrifier    R   "Ignorer fichier|Dprotger fichier     S   UERREUR en dcompressant l'archive|Impossible de dcompresser "%s"|L'erreur tait "%s"      T   oDANGER: Le fichier "%s"|dans l'archive "%s"|est infect par le virus "%s"|DANGER: Le virus est toujours prsent    U   EDisques vrifies : %ld|Fichiers vrifis : %ld|Virus prsents : %ld       V   uERREUR|Ipossible d'allouer la mmoire pour un noeud|de vrification immdiate|Le fichier/rpertoire n'est pas ajout       W   qERREUR|Impossible d'ouvrir le Virus_Checker.check|pour sauver la liste de vrification.|La liste n'est pas sauve      X   Projet     Y   Examen de fichier...       Z   #Vrification complte de la mmoire    [   Sauver la configuration    \   Statistiques...    ]   A Propos...    ^   Quitter    _   Fentre    `   Figer fentre      a   Chercher les virus...      b   zERREUR|Impossible d'ouvrir la bgui.library version 38 ou suprieure|Virus_Checker a besion cette librarie pour fonctionner     c   	_Options       d   Voir _Fichier/Rpertoire       e   Examiner Fichier_s     f   _Examiner Maintenant       g   	_Quitter       h   5cCliquer sur ce bouton ouvre
la fentre des Options       i   QcCliquer sur ce bouton ouvre
la fentre de vrification des Fichiers/Rpertoires      j   ~cCliquer sur ce bouton ouvre
le Fichier de Requte pour slectionner un
Fichier/Lecteur/Rpertoire pour chercher les virus',0     k   :cCliquer sur ce bouton ouvre
la fentre d'examen immdiat     l   >cCliquer sur ce bouton provoque
la fermeture de Virus_Checker     m   Utiliser _XFD Master       n   !Ignorer les Captures de _Vecteurs      o   _Utiliser la fentre       p   Utiliser la _BootBlock.library     q   #_Ignorer l'erreur de lecture des BB    r   #Vrifier dans les Fichiers _LHA/LZH    s   Dcom_presser les fichiers     t   AppIcon _Oui       u   Controler le Bloc de Boot DF_0     v   Vrifier DF0 entire       w   Controler le Bloc de Boot DF_1     x   Vrifier DF1 entire       y   Controler le Bloc de Boot DF_2     z   Vrifier DF2 entire       {   Controler le Bloc de Boot DF_3     |   Vrifier DF3 entire       }   _Regarder Fentre d'Examen     ~   Fentre d'examen _Arexx       Entrer Touche Rapide          Rpertoire _Temporaire        _Sauver les Options       _Fermer la Fentre        Vrifier Mai_ntenant          
_Apprendre        	_Ignorer    hare_66                                 3        %          q                    ,i                                                                                                                                                                                                                                                                                                                                                                                                              3  italiano                                                                                  ւr)                                                                                                                                                                                                                                                                         #                                                                                              e     Virus_Checker.catalog                                                    FORM  #CTLGFVER   G$VER: Virus_Checker.catalog 8.10 (17.10.95) by Francesco Dipietromaria  LANG   	italiano  CSET                                    STRS  #@       >ERRORE|Non posso aprire la dos.library versione 37 o superiore        EERRORE|Non posso aprire la intuition.library versione 37 o superiore          CERRORE|Non posso aprire la graphics.library versione 37 o superiore       >ERRORE|Non posso aprire la asl.library versione 37 o superiore        CERRORE|Non posso aprire la gadtools.library versione 37 o superiore       OERRORE|Non posso allocare memoria per il BrainFile|ID del Bootblock non salvato       =ERRORE|Non posso allocare un segnale per l'Handler principale         aERRORE|nella creazione della Commodity|commodities.library versione 37 o superiorenon disponibile         Ok     	   RERRORE|nella creazione della Commodity|Non posso allocare memoria per la struttura     
   IERRORE|nella creazione della Commodity|Non posso creare la porta messaggi         AERRORE|nella creazione della Commodity|Non posso creare il Broker         IERRORE|Non posso abilitare i tasti di richiamo|Forse sono gi utilizzati          AERRORE|Non posso aprire la utility.library version 37 o superiore         jERRORE|nell'apertura della finestra|Non posso blocccare lo schermo|Il programma sta funzionando ugualmente        qERRORE|nell'apertura della finestra|Non riesco ad ottenere le VisualInfo|Il programma sta funzionando ugualmente          aERRORE|nell'apertura della finestra|Non posso creare il Contesto|Il programma funziona ugualmente         ^ERRORE|nell'apertura della finestra|Non posso creare i gadget|Il programma funziona ugualmente        ]ERRORE|nell'apertura della finestra|Non posso creare il menu|Il programma funziona ugualmente         aERRORE|nell'apertura della finestra|Non posso aprire la finestra|Il programma funziona ugualmente        Virus_Checker versione %ld.%ld di John Veldthuis|Virus_Checker.brainfile %ld.%ld|unpack.library versione %ld.%ld||Traduzione a cura di|Francesco Dipietromaria|||REGISTRATO A: %s|Supportate il concetto di SHAREWARE|Per i dettagli consultate Virus_Checker.guide       BERRORE|Non posso aprire la diskfont.library version 37 o superiore        gERRORE|nell'apertura della finestra|Non posso creare il gadget GetFile|Il programma funziona ugualmente       GERRORE|nell'apertura dell'input.device|Non posso creare l'Input Handler       3ERRORE|Non posso creare la porta per l'input.device       WERRORE|Non posso creare un File Requeser ASL|Non posso continuare con questa operazione       bERRORE|Non posso aprire xfdmaster.library versione 34 o superiore|Non posso usare il controllo XFD        aERRORE|Non posso aprire il file di configurazione per salvare|Salvataggio configurazione fallito          VERRORE|Non posso scrivere il file di configurazione|Salvataggio configurazione fallito        _ERRORE|Non posso ceare la struttura INFO dell'unpack.library|Non posso controllare nei file LHA       ]ERRORE|Non posso ceare la struttura INFO dell'unpack.library|Non posso iniziare il controllo          ]ATTENZIONE|Descrizione tasti di richiamo troppo lunga|Massimo 63 caratteri|Reinserire, prego           fATTENZIONE|Il percorso della directory temporale  troppo lungo|Massimo 99 caratteri|Reinserire, prego     !   ATTENZIONE, ATTENZIONE|Verificate che non ci siano files in questa directory|I files qui dentro saranno cancellati dall'unpack.library     "   7ATTENZIONE|La memoria del vostro computer  infetto dal    #   )Il virus  stato ora disabilitato/rimosso      $   BERRORE|non posso creare una porta per accedere al trackdisk.device     %   YATTENZION|Un programma appena lanciato ha infettato la memoria del vostro computer con il      &   2ATTENZIONE|Il vettore CoolCapture  stato cambiato     '   2ATTENZIONE|Il vettore ColdCapture  stato cambiato     (   2ATTENZIONE|Il vettore WarmCapture  stato cambiato     )   IATTENZIONE|Il vettore di BeginIO() del trackdisk.device  stato cambiato       *   9ATTENZIONE|Il vettore di DoIO() di Exec  stato cambiato       +   Lascia|Ripristina      ,   .ATTENZIONE|Il vettore CoolCapture non  a zero     -   .ATTENZIONE|Il vettore ColdCapture non  a zero     .   -ATTENZION|Il vettore WarmCapture non  a zero      /   Lascia|Pulisci     0   fATTENZIONE|Non posso aggiungere Il File/Dir|"%s" alla WatchList|Non posso allocare memoria per il Nodo     1   _ATTENZIONE|Non posso aggiungere Il File/Dir|"%s" alla WatchList||Non posso bloccare il File/Dir    2   iATTENZIONE|Non posso aggiungere Il File/Dir|"%s" alla WatchList|Non posso eseguire StartNotify() File/Dir      3   YERRORE|Non posso creare la porta per la WatchList|Non posso controllare nessun Files/Dirs      4   -ATTENZIONE|Il File/Dir "%s"| stato alterato       5   YATTENZION|Non posso aprire VirusChecker.watch per salvare la WatchList|Lista non salvata       6   qVirus_Checker ha dei problemi nella lettura del BOOTBLOCK|sul disco in "%s"|Non posso cercare i BootBlock viruses      7   YPERICOLO PERICOLO PERICOLO|Il disco nel drive "%s"  INFETTO|con il "%s" BootBlock virus       8   Ignora|Rimuovi|Mostra|Impara       9   Ignora|Mostra|Rimuovi      :   YATTENZION ATTENZIONE ATTENZIONE|Il disco nel drive "%s"|ha un codice di boot NON STANDARD      ;   INSTALLA quale Bootblock?      <   WB2|WB3.1|Annulla      =   'ERRORE|Il disco  protetto in scrittura    >   Riprova|Annulla    ?   WPERICOLO: Non posso aprire il trackdisk.device|Deve essere in uso. Prova un altro drive    @   ]ATTENZIONE|Problemi nella lettura del file "VCBrain"|Non posso controllare i BootBlock custom      A   "Controllo della memoria completato     B   IERRORE|Non posso salvare l'ID del BootBlock in VCBrain. Brain non salvato      C   ]ERRORE|Non posso allocare memoria per il buffer di lettura del file"%s"|File non controllato       D   SERRORE|Non posso aprire il file "%s" per la lettura|Il file non  stato controllato    E   EERRORE|Non posso leggere il file "%s"|Il file non  stato controllato      F   /ATTENZION Il File|"%s"| infetto dal virus|"%s"    G   IGNORA FILE|CANCELLA FILE      H   %ERRORE nel cancellare il File|"%s"|%s      I   'Ignora File|Cancella FIle|Rimuovi Virus    J   ]PERICOLO: ERRORE nell'apertura del file per la scrittura di|%s|Il File "%s"| ancora infetto       K   aATTENZION: la struttura dell'Hunk  corrotta|Il file "%s"| stato troncato alla lunghezza di zero      L   UPERICOLO: Errore nella scrittura del file|%s|Il File "%s"| in uno stato sconosciuto       M   EERRORE bloccando il File/Dir|"%s"|Il File/Dir non  stato controllato      N   ^ERRORE: Non posso allocare un blocco di controllo per ExAll()|La Dir "%s" non sar controllata     O   jERRORE: Non posso allocare 400 bytes di Memoria|per la lettura di ExAll()|La Dir "%s" non sar controllata     P   KERRORE|Non posso aprire il file "%s"|iin scrittura|Il file  ancora infetto    Q   ZATTENZIONE|Il file "%s"| protetto in lettura|Virus_Checker non  in grado di controllarlo     R   Ignora File|Sproteggi File     S   NERRORE nello scompattare l'archivio|Non posso scomprimere "%s"|L'errore  "%s"     T   iPERICOLO: Il File "%s"|nell'archivio "%s"| infetto conil virus "%s"|PERICOLO: Il virus  ancora presente      U   SDischetti controllari   %ld|Files Controllati       %ld|Viruses trovati         %ld    V   OERRORE|Non posso allocare la memoria per un nodo CheckNow|File/Dir non aggiunto    W   UERRORE|Non posso aprire VirusChecker.check per salvare la CheckList|Lista non salvata      X   	Progetto       Y   Controlla File     Z   Controllo totale Memoria       [   Salva Configurazione       \   Stats      ]   Informazioni       ^   Esci       _   	Finestra       `   Disponi Finestra       a   Cerca Virus    b   zERRORE|Non posso aprire la bgui.library versione 38 o superiore|Virus_Checker ha bisogno di questa libreria per funzionare     c   	_Opzioni       d   Osserva _File/Dir      e   Analizza file_s    f   Contro_llo immediato       g   _Esci      h   6cPremendo questo pulsante si
apre la finestra Opzioni     i   BcPremendo su questo pulsante si
apre la finestra Osserva File/Dir     j   cPremendo su questo pulsante si
apre il File Requester per selezionare
un File/Periferica/Directory sul quale controllare i virus',0      k   IcPremendo su questo pulsante si
apre la finestra di Controllo Immediato       l   6cPremendo su questo pulsante si
esce da Virus_Checker     m   Usa _XFD Master    n   Ignora i _Vettori Capture      o   _Usa Finestra      p   Usa _BootBlock.library     q   _Ignora errori lettura BB      r   Controlla i files _LZH/LHA     s   Scom_patta Files       t   AppIc_on attiva    u   Controlla BootBlock DF_0       v   Controlla tutto DF0    w   Controlla BootBlock DF_1       x   Controlla tutto DF1    y   Controlla BootBlock DF_2       z   Controlla tutto DF2    {   Controlla BootBlock DF_3       |   Controlla tutto DF3    }   "Analizza finestra di Osserva_zione     ~   Finestra analisi _Arexx       Tasti Ric_hiamo       Directory _temporale          _Salva Opzioni        Chiudi Finestra       Controllo Immediato       Imp_ara       _Ignora                                              !F                                                                                                                                                                                                                                                                                                                                                                                                              3  
nederlands                                                                                ւ                                                                                                                                                                                                                                                                                                                                                                                                       XVirus_Checker.catalog                                                    FORM  CTLGFVER   ,$VER: Virus_Checker.catalog 8.01 (26.10.95) LANG   nederlands  CSET                                    STRS  H                                                                                              	          
                                                                                                                                                                                                                                       !          "          #          $          %          &          '          (          )          *          +          ,          -          .          /          0          1          2          3          4          5          6          7          8          9          :          ;          <          =          >          ?          @          A          B          C          D          E          F          G          H          I          J          K          L          M          N          O          P          Q          R          S          T          U          V          W          X          Y          Z          [          \          ]          ^          _          `          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          {          |          }          ~                                                                                                                                                                  #                                                                                              e     Virus_Checker.catalog                                                                     6                                                                                                                                                                                                                                                                                                                                                                                                              3  svenska                                                                                   ւ}                                                                                                                                                                                                                                                                                                                                                                           e    	Virus_Checker.catalog                                                    FORM  CTLGFVER   +$VER: Virus_Checker.catalog 8.2 (16.10.95)  LANG   svenska CSET                                    STRS  8       9FEL|Kunde inte ppna dos.library version 37 eller bttre          >FEL|Kunde inte ppna intuition.library version 37 eller bttre        =FEL|Kunde inte ppna graphics.library version 37 eller bttre         9FEL|Kunde inte ppna asl.library version 37 eller bttre          =FEL|Kunde inte ppna gadtools.library version 37 eller bttre         MFEL|Kunde inte allokera minne fr en Brainfile|Bootblockets ID r inte sparat         2FEL|Kunde inte allokera en signal fr Main Handler        WFEL|Skapandet av Commodity|kunde inte hitta commodities.library version 37 eller bttre       OK     	   CFEL|Skapandet av Commodity|Kunde inte allokera minne fr strukturen    
   =FEL|Skapandet av Commodity|Kan inte skapa port fr meddelande         1FEL|Skapandet av Commodity|Kan inte skapa Broker          UFEL|Kan inte skapa snabbvalstangent|Se efter s att inget annat program anvnder den          =FEL|Kunde inte ppna utility.library version 37 eller bttre          Starta Ikonifiera_t                                               OFEL|ppnade av fnster|Kunde inte ppna fnster|Programmet r fortfarade aktivt       Virus_Checker version %ld.%ld av John Veldthuis|Virus_Checker.brainfile %ld.%ld|unpack.library version %ld.%ld||'DENNA VERSION TILLHR: %s|Std SHAREWARE-konceptet!|Ls detaljer i Virus_Checker.guide       =FEL|Kunde inte ppna diskfont.library version 37 eller bttre                   ;FEL|ppnande av input.device|Kunde inte skapa Input Handler       *FEL|Kunde inte skapa port fr input.device        GFEL|Kunde inte skapa en ASL Fil Requester|Kan inte slutfra operationen       ]FEL|Kunde inte ppna xfdmaster.library version 34 eller bttre|Kan inte anvnda XFD kontroll          SFEL|Kunde inte ppna konfig fil fr att spara|Sparandet av konfigfilen misslyckades       MFEL|Kunde inte skriva till konfig filen|Sparandet av konfigfilen misslyckades         OFEL|Kunde inte skapa INFO Structure unpack.library|Kan inte underska LHA-filer       OFEL|Kunde inte skapa INFO Structure unpack.library|Kan inte starta underskning       
_Lgg Till         	_Ta Bort       !   VARNING VARNING|Se till s att detta bibliotek inte innehller filer|Alla filer i biblioteket kommer att raderas av unpack.library     "   !VARNING|Minnet var infekterat av       #   -Viruset har nu blivit deaktivierat/borttaget       $   ?FEL|Kunde inte skapa en port fr att accessera trackdisk.device    %   EVARNING|Ett nyss startat program har infekterat din dators minne med       &   *VARNING|CoolCapture vektorerna har ndrats     '   *VARNING|ColdCapture vektorerna har ndrats     (   *VARNING|WarmCapture vektorerna har ndrats     )   7VARNING|Trackdisk.device BeginIO() vektoren har ndrats    *   )VARNING|Execs DoIO() vektoren har ndrats      +   Ignorera|terstll den     ,   )VARNING|CoolCapture vektorn r inte noll       -   )VARNING|ColdCapture vektorn r inte noll       .   )VARNING|WarmCapture vektorn r inte noll       /   Ignorera|Rensa     0   cVARNING|Kan inte lgga till Filen/Ldan "%s" till bevakningslista|Kan inte reservera minne fr Node    1   [VARNING|Kan inte lgga till Filen/Ldan "%s" till bevakningslista|Kan inte lsa Filen/Ldan    2   fVARNING|Kan inte lgga till Filen/Ldan "%s" till bevakningslista|Kunde inte StartNotify() Filen/Ldan     3   RFEL|Kunde inte skapa en port fr bevakningslista|Kan inte bevaka ngra Filer/ldor     4   %VARNING|Filen/Ldan "%s"|har ndrats       5   ZFEL|Kan inte ppna VirusChecker.watch fr att spara bevakningslistan|Listan r inte sparad     6   uVirus_Checker har problem med att lsa BOOTBLOCKET| p disken i "%s"|Kan inte underska disken efter BootBlock virus       7   MFARA FARA FARA|Disketten i enhet "%s" r INFEKTERAD|av Bootblock viruset "%s"      8   Ignorera|Ta Bort|Visa|Kom Ihg     9   Ignorera|Visa|Ta Bort      :   BVARNING VARNING VARNING|Disketten i enhet "%s"|har OVANLIG BootKod     ;   Vlj Bootblock att INSTALLERA      <   WB2|WB1.3|AVBRYT       =   FEL|Disken r skrivskyddad     >   Frsk Igen|Avbryt     ?   [FARA: Kan inte ppna trackdisk.device|Den mste vara under anvndning. Prva en annan enhet    @   ]VARNING|Problem att lsa "VCBrain" filen|Kan inte anvnda kontroll av specialgjort BootBlock       A   Minnes kontroll avslutad       B   IFEL|Kunde inte spara Bootblockets ID i VCBrain. Brainfilen r inte sparad      C   ZFEL|Kunde inte reservera minne till buffer fr att lsa filen "%s"|Filen r inte underskt     D   GFEL|Kunde inte ppna filen "%s" fr inlsning|Filen har inte underskts    E   ;FEL|Kunde inte lsa filen "%s"|Filen har inte kontrollerats    F   1VARNING|Filen|"%s"|r infekterad av|"%s" viruset       G   IGNORERA FIL|RADERA FIL    H   FEL P Filradering|"%s"|%s     I   &IGNORERA FIL|RADERA FIL|AVLGSNA VIRUS     J   VFARA: FEL under ppnande av fil fr att SKRIVA|%s|Filen "%s"|r fortfarande infekterad     K   UVARNING: HUNK STRUKTUREN r korrupt|Filen "%s"|har blivit avkortad till storlek noll       L   EFARA: FEL under skrivandet till fil|%s|Filen "%s"|har nu oknd status      M   OFEL UNDER LSANDET AV FIL/LDA|"%s"|Filen/ldan har inte underskts efter virus    N   ]FEL: Kunde inte allokera ett kontroll block fr ExAll()|Ldan "%s" kommer inte att underskas      O   bFEL: Kunde inte allokera 400 bytes minne|fr ExAll() lsning|Ldan "%s" kommer inte att underskas     P   MFEL|Kunde inte ppna filen "%s"|fr skrivning|Filen r fortfarade infekterad       Q   UVARNING|Filen "%s"|r LS SKYDDAD|Virus_Checker kommer inte att kunna kontrollera den      R   !Ignorera Fil|Sl Av Filens Skydd       S   FFEL Under uppackning av arkiv|Kunde inte packa upp "%s"|Felet var "%s"     T   ]FARA: Filen "%s"|I arkivet "%s"|r INFEKTERAD av "%s" viruset|FARA: Viruset r forfarade kvar      U   EDiskar Underskta  %ld|Filer  Underskta  %ld|Virus  Funna       %ld       V   NFEL|Kunde inte allokera minne fr en CheckNow node|Filen/Ldan r inte adderad     W   VFEL|Kunde inte ppna Virus_Checker.check fr att spara Checklist|Listan r inte sparad     X   Projekt    Y   Fil Underskning       Z   Komplett Minnes Underskning       [   Spara Konfig       \   	Statistik      ]   Om     ^   Avsluta    _   Fnster    `   Kom Ihg Fnsterplacering      a   Kontroll Efter Virus       b   mFEL|Kunde inte ppna bgui.library version 38 eller bttre|Virus_Checker behver detta library fr att fungera      c   _Instllningar     d   _Fil/Ld vervakning       e   _Undersk Filer    f   Kontrollera _Nu    g   	_Avsluta       h   7cEtt klick p denna knapp ppnar
Instllnings fnstret    i   ?cEtt klick p denna knapp ppnar
Fil/Ld vervaknings fnstret    j   mcEtt klick p denna knapp ppnar
en filrequester fr ett val av
Fil/Enhet/Lda att underska efter virus',0       k   =cEtt klick p denna knapp ppnar
Fnstret fr direktkontroll      l   9cEtt klick p denna knapp gr att
Virus_Checker avslutar      m   Anvnd _XFD Master     n   Ignorera Capture _Vektorer     o   Anvnd _Fnster    p   Anvnd _BootBlock.library      q   _Ignorera BB Lsfel    r   Kontrollera inuti _LHA filer       s   _Packa Upp Filer       t   _AppIkon P    u   Kontrollera BootBlocket p DF_0    v   Kontrollera DF0 Helt       w   Kontrollera BootBlocket p DF_1    x   Kontrollera DF1 Helt       y   Kontrollera BootBlocket p DF_2    z   Kontrollera DF2 Helt       {   Kontrollera BootBlocket p DF_3    |   Kontrollera DF3 Helt       }   _Undersk Bevaknings Fnster       ~   A_Rexx Underskings Fnster       PopUp S_nabbvalstangent       _Temporrt Bibliotek          _Spara Instllningar          Stng F_nster        Un_dersk Nu          	_Kom Ihg         	_Ignorera                                                                                                                                                                                                                                          XVirus_Checker.catalog                                                                  ӳW                                                                                                                                                                                                                     
   	                                                    /                                                                                                   Install_Virus_Checker                                                    ; $VER: Virus_Checker Install 7.18 (26.9.95)
; Script to install Virus_Checker
; Written by Simon Dick of Amigaholics Club (sidick@essex.ac.uk)
; Updated and enhanced by John Veldthuis

;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;;;
;;; Get the version and revision number of file/device/library/OS/etc
;;;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
;
; INPUTS: Item	; Name of device/file/library/etc. "" for OS version
;
; OUTPUTS: VerN		; (long) version/revision number
;          Ver		; Version number
;          Rev		; Revision number
; NOTE: Both Ver and Rev returned as 0 if "WV_Item" does not exist
;
(procedure WhatVersion
    (
    (if (= VerN "")
        (set VerNum (getversion))		; For OS
        (set VerNum (getversion VerN)))	; For other "files"
    (set Ver (/ VerNum 65536))
    (set Rev (- VerNum (* Ver 65536)))
    )
)


;Set env var Virus_Checker_Path to installed place
(procedure setVCEnv
	(
	(set VCPath (expandpath @default-dest))
	(set VCPathS (cat 
			("setenv Virus_Checker_Path \"%s\"\n" VCPath)
			("copy env:Virus_Checker_Path envarc: quiet\n")
		     )
	)
	(textfile 
		(dest "T:VCEnvSet")
		(append VCPathS)
	)
	(execute "T:VCEnvSet")
	(delete "T:VCEnvSet")
	)
)

(set @app-name "Virus_Checker")

(complete 0)

;(if (= @language "deutsch")
;  (
;    ; Add the german strings here for example
;    (set where_vc "Please put the german strings in here first!"
;    )
;  )
;)

(if (= @language "english")
  (
    (set whatinstall (cat "Do you want a full installation of Virus Checker "
                          "or just a partial one?"
                     )
    )


    (set fullinstall "Full Install")
    (set partialinstall "Partial Install")
    (set installhelp (cat "Full install installs ALL Virus Checker files to "
			"the directory chosen, while partial install just installs the "
                          "program files where needed"
                     )
    )
    (set where_vc (cat "Please select directory to put Virus_Checker in"
                  )
    )
    (set copyingdir    "Copying Virus_Checker drawer")

    (set copybblib     "Copying Bootblock.library")
    (set copybbfile    "Copying Bootblock.brainfile")
    (set copyunpacklib "Copying unpack.library")
    (set copyxfdlib    "Copying xfdmaster.library")
    (set copybguilib    "Copying bgui.library")
    (set copyxfddecrs  "Copying XFD external decrunchers, please choose which ones to install")
    (set copyvcbrain   "Copying VirusChecker.brain")
    (set copyvcprog    "Copying Virus_Checker")
    (set instaloverold "Virus_Checker being installed in WBStartup over old version")
    (set vcrunfrom     "Where do you want to run Virus_Checker from?")
    (set bestplace     "The best place is from the User-Startup")
    (set cantinstalloverdir "You can't install Virus Checker over an existing directory")
    (set removebrain  (cat "I have found version %ld.%ld of the VirusChecker.brain "
                       "file in L:\n"
                       "This is only needed if you're running Virus_Checker "
                       "from WBStartup.\n"
                       "Shall I delete it?"
                      )
    )
    (set deletebrain   "Deleting L:VirusChecker.brain")
    (set installguide  "Do you want to install the online AmigaGuide help file?")
    (set copyingguide  "Copying Virus_Checker.guide")
    (set whichlangs (cat "Which Virus Checker locale catalogs do you want "
                         "to install?")
    )
    (set langhelp (cat "Copying these files will allow Virus_Checker to be "
                       "run using different Locales under Workbench 2.1 or "
                       "higher. Just select the catalog files which you "
                       "will need to use.")
    )
    (set adddat        "I need to add the following line to your \s:User-Startup\ file\n\n%s")
    (set copycat       "Copying Virus_Checker.catalog")
    (set needtoreset   "You will need to reset to cause VirusChecker to be run")
    (set instlrexx     "Do you want to install the Virus Checker ARexx scripts?")
    (set copyrexx      "Which ARexx scripts do you want to copy?")
  )
)

(welcome)

(set VerN "")
(WhatVersion)		;Get version
(if (< Ver 37)
	(abort (cat #ver_err1 #err_msg))
)


;If installed already then use that one
(if (= (exists "ENV:Virus_Checker_Path" (noreq)) 1)
	(set @default-dest (getenv "Virus_Checker_Path"))
)

(set fullinstall (askbool (default 1)
                          (prompt whatinstall)
                          (help installhelp)
                          (ch