========================================================================= Date: Tue, 01 Dec 87 20:51 EST Reply-To: Apple II List Sender: Apple II List From: SEWALL@UCONNVM Subject: Handy ProDOS commands Run under BASIC.SYSTEM Here's a set of extra ProDOS commands that can be installed within BASIC.SYSTEM to do useful things like TYPE files, COPY files from one /path/ to another, concatenate files, remove linefeed characters from files downloaded from your local fido and other handy stuff. The program as a BNY (Binary 2 aka a "bunny file") in EXECUTIONER 4-byte follows the documentation (have your mainframe editor separate all after ---Cut Here---- Instructions for Use of the Commands The programs on this disk which have the extension .CMD are binary programs which install extensions to the ProDOS Basic Interpreter. To install a command, just BRUN it or use the "-" command. The routine which is used to get a buffer for the command code requires that no strings be active at the time the command is installed. So, if you install the commands from a STARTUP file, use PRINT CHR$(4) not PRINT D$. You may also have to use CLEAR to remove strings just before the command which BRUNs the installation program. If strings are active, the installation program will stop and print an error message. If the installation program is run while a large Applesoft program is in memory and part of the program is overwritten, the program is cleared from memory. The installation programs run at $2000, so any reasonable STARTUP program will not be affected. With each of the commands, if you want to know if the command has been installed already, you can simply issue the command word alone from the keyboard or from within a program and if the command is installed there will be no error. If the command has not been installed, BASIC will return a syntax error. If you issue a command from within a program, you must use PRINT CHR$(4) since these are extensions to the commands supplied by BASIC.SYSTEM and are equivalent to DOS commands. All of the commands can be invoked with upper case or lower case. The TYPE command is a slightly modified version of the TYPE command by Tom Weishaar and Mark Simonsen printed in the June 84 issue of Softalk. Syntax is: TYPE pathname[,@block.number] TYPE TEXTFILE,@3 The example would print the file TEXTFILE to the screen beginning with the fourth block. The @ parm, as with all syntax descriptions in these notes which are enclosed in brackets, is optional. Any file type can be typed to the screen. This can be instructive if used on Applesoft files with GPLE's ESC-H or control show function active. For laughs, try typing a directory file with the ESC-H function on. If you issue a PR#1, you can type files to your printer as well. The MORE command works like the TYPE command except that it will print twelve lines and then wait for a keypress. The MORE command takes the L parameter to set the screen width in columns; once set, the screen width will stay the same until you change it or reinstall the command. The default screen width is 80 columns. The COPY command copies ProDOS files. The files may have the same or a different name but must have different full path names. The dates of the files will not be modified when copied; as you may have observed, the FILER changes the dates of files when it copies them. The one shortcoming of this COPY command is that it will expand Sparse files. If you don't know what a Sparse file is, you probably don't have any. The command is much smaller, and easier to write, because it doesn't concern itself with Sparse files. The syntax is: COPY /source.path,/destination.path The command may be used with full pathnames or, if the prefix has been set, you may omit the prefix. The slot and drive parms are ignored. The Applesoft program called MENU.COPY will install the COPY command if necessary and then read in a directory and allow you to mark the files to copy from one directory to another and then ask for a destination directory. This program facilitates batch copying of files. At this date, several similar but better programs are available commercially, including COPY II+ version 6.X and the programs supplied by Glen Bredon with Procmd and ProSel. A companion program called EXEC.MAKER works like MENU.COPY to make up EXEC files to drive the COPY command for file copying operations which you perform frequently. The program COPY.CMDS installs three commands, a version of the COPY command and two others, ADD and PART. ADD is used to concatenate two files. The syntax is: ADD file1,file2 where file1 will be added to the end of file2 producing a new, longer file still bearing the same name as file2. The companion command, PART, can be used to create a file which is a segment of a larger file. The syntax is: PART bigfile,segment,A(block#),L(# of blocks) where the file segment is created. The segment begins at the block number of the source file given with the A parameter. The file segment is the number of blocks long given in the L parameter. If you want to start with the beginning of BIGFILE and copy the first 270 blocks to a DISKII, you might give the command PART /HARD1/BIGFILE,/FLOPPY/SEG1,A0,L270. If BIGFILE is less than 270 blocks long, you would not be given an error message. However, if you want to check to see if all of a segment is copied, you can check the BASIC.SYSTEM parameter VLNTH at $BE5F-BE60, which is used by PART as a counter. If VLNTH and VLNTH+1 = 0 then the end of the source file was reached just when the number of blocks requested had been copied, or the end of the source file was reached before the number requested had been copied. From BASIC you might use this line: 100 IF PEEK (48735) + PEEK (48736) = 0 THEN PRINT "All of the blocks requested were copied." Put another way, if you write a loop to back up a large file, check VLNTH to see if there is more of the file to copy. If VLNTH <> 0 then there are more blocks to copy; if VLNTH = 0 then the last PART command copied to the end of the file and the backup procedure is complete. The FORMAT command does not format a disk. It is used to format text files which have carriage returns only to separate paragraphs into lines of any length specified. The syntax is: FORMAT textfile[,L66] The default line length is 80 characters. The companion command, UNFORMAT, does the opposite. The syntax is: UNFORMAT textfile[,L35] This command converts the carriage returns at the end of lines into a space but will do so only if the carriage return occurs after the column number passed in the L parameter. The default column is column 65. This parameter can be used to preserve tabular data and short lines which aren't separated by a blank line. This command is useful for converting files read from bulletin boards for editing in a word processor. Have some patience with this command as it processes one character at a time; when input and output are both on a ramdisk, it works at about one block per second. The defaults for FORMAT and UNFORMAT can be changed by changing the value at $2003 in their installation programs. The command FILTER copies a text file but either deletes every instance of a character or converts it to another. The syntax is: FILTER sourcefile,dest.file,A11[,B13] This example will convert all character 11's to character 13's. It would convert line feeds to carriage returns. The value which represents the character is the ASCII value of the character. If the B parm is omitted, the character specified with the A parm will be deleted. The source file is not affected. The MOUNT command is used to make a quick backup of a ramdisk. It will work only if the backup medium is equal or larger in size than the ramdisk. For safety, the target volume is limited to $4FF (1279) blocks. This would prevent backing up to a large volume on a Sider, but will allow backing up to a 3.5" disk or from a 1 Meg ramdisk to a 1 Meg volume on a Sider. I wrote this command for use with a 128K ramdisk and a Disk II. Glen Bredon's Prosel package contains a backup utility which will allow backing up a large ramdisk or a hard disk on multiple floppies. This command may not work with all ramdisks. The way it works is to copy all blocks from the volume directory to the end of the volume, skipping blocks marked as not used. Most ramdisks have some blocks which are either not implemented in the memory map or are used for code storage. If the ramdisk copies a block of zeroes like the IIe /RAM volume does, or returns an I/O error when such a block is reached, then the MOUNT command should work. To backup a ramdisk, start with a formatted ProDOS disk with a suitable name. The volume name must match the name you specify when you use the command. This is partly for safety since any data on the disk will be overwritten when the backup is made. The syntax is: MOUNT /RAM,/RAM.BAK The backup disk will take on the storage size of the ramdisk and may be used as a regular disk. That is, you can boot from the backup disk and files may be saved to and read from it. The only difference is that the disk will have the limited storage of the ramdisk. To restore the ramdisk just reverse the order of the command file names. Using the same names as above: MOUNT /RAM.BAK,/RAM DANGER !!! If you want to use this command with the /RAM volume automatically installed by ProDOS when you boot on an expanded IIe or on a //c you must repair a bug in ProDOS. First unlock a copy of ProDOS version 1.1.1. Then type the following: BLOAD PRODOS,A$2000,TSYS CALL -151 *2B4F 0D *2B4F:0F *BSAVE PRODOS,A$2000,TSYS,L14848 ] For ProDOS versions 1.0, 1.0.1, and 1.0.2 the change is *2B49:0F and the length of PRODOS is 15360. BLOAD PRODOS,A$2000,TSYS CALL -151 *2B49 0D *2B49:0F *BSAVE PRODOS,A$2000,TSYS,L15360 ] If you fail to fix the bug, the machine will crash when you try to restore the /RAM volume. The bug is that when you try to write to block #7 on the /RAM volume, the code fails to protect that block and the arithmetic which maps the blocks maps block #7 to the zero page and stack area. When the write proceeds, the zero page pointers are overwritten and the whole machine is scrambled. cmds.exe (ProDOS)---------------Cut Here------------------------- CALL-151 E00:38 A5 FF D0 32 D8 20 8E FD AD 30 BF 8D 6A 0E 20 00 BF C7 6D 0E 0D 80 02 E18:D0 1D 20 00 BF C5 69 0E B0 15 AD 81 02 29 0F AA E8 8E 80 02 A9 2F 8D 81 E30:02 20 00 BF C6 6D 0E A2 08 B0 0E 20 00 BF C3 70 0E B0 06 A2 26 20 53 0E E48:AA 20 53 0E 4C D0 03 20 ED FD E8 BD 59 0E D0 F7 60 A0 F3 E1 F6 E5 E4 8D E60:00 C5 F2 F2 EF F2 87 8D 00 02 00 81 02 01 80 02 07 7E 0E E3 06 00 00 00 E78:00 00 81 AF 00 00 08 C3 CD C4 D3 AE C2 CE D9 00 F00:D8 A0 00 84 FF 88 84 E0 A9 0F 85 E1 20 67 FD A0 00 A2 FF 20 2F 0F E6 E0 F18:D0 02 E6 E1 0A 0A 0A 0A 91 E0 20 2F 0F 11 E0 91 E0 45 FF 85 FF 90 E4 E8 F30:BD 00 02 09 80 C9 A0 F0 F6 49 B0 C9 0A 90 17 69 88 09 20 C9 FA B0 0C 68 F48:68 E0 04 B0 BF 98 91 E0 4C 69 FF 18 29 0F 60 F00G 0A474C21060020020300F7AC2E157EAF00000200C7030008434F50592E434D44 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000003300000000000000000009 A56FC573D006A570C574F043203AFFA000B91C20F03820EDFDC8D0F58DD3D4D2 C9CEC7D3A0CDD5D3D4A0C2C5A0C3CCC5C1D28DD4D9D0C5A0C3CCC5C1D2A0D4C8 C5CEA0ADC3CFD0D9AEC3CDC48D0060AD4C216D4D21C5749005A90E4C09BEAD4D 2120F5BEB0F58D4F2138ED4A218D5021A201BD07BE9D3422BD4E219D07BECA10 F1A001B94921993C008810F7A000B13CF018208EF8A42FC002D007B13C202C21 913CC898203D214C8C20A901203D21A001B13CF00D202C21913CA902203D214C AF20A201BD4921953CBD4B21953EBD4E219542CA10EEA000202CFEA000B95121 F00620EDFDC8D0F5A56EC920B008AD4C21C570B00160203AFFA000B90621F026 20EDFDC8D0F58DC1D0D0CCC5D3CFC6D4A0D0D2CFC7D2C1CDA0CFD6C5D2D7D2C9 D4D4C5CE8D00204BD64CD003CD4A21900BCD4C21F002B004186D50216018653C 853CA53D6900853D600022C62302000000C3CFD0D9AEC3CDC4A0D7D2C9D4D4C5 CEA0C2D9A0D3D4C5D6C5CEA0C8D5CDD0C1C7C5A0B1B9B8B58DD5D3C5BAA0A0C3 CFD0D9A0AFC6C9CCC5B1ACAFC6C9CCC5B28D8D00000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 D8A200A00020A723F028D9C323D023C8C00490F1888C52BEA202BDBE239D4FBE CAD0F78E53BEA283A9048E54BE8D55BE1860384C0000AD56BED00218602903C9 03F006A910384C09BEA57038E56EE907B004A90CD0EFA90A8DB4BEA9C42070BE B0E3ADBBBEC90DF0DCA5748DCFBEA9C82070BE9004AA4C7123ADD0BE8DC123A2 018EA7BEBD6EBE9DA1BECA10F7A9C38DA3BEA202BDB8BE9DA4BECA10F7A203BD C2BE9DA8BECA10F7A9C02070BE901CC913F0034C6523A201BD6EBE9DADBECA10 F7A9C12070BE90E04C6523A201BD6EBE9DCCBECA10F7A57038E9048DCFBEA9C8 2070BE90034C6523ADD0BE8DC223ADC1238DD2BEA9008DD3BE8DD9BE8DD7BEA9 C92070BEA66EE88A8DD8BEADCFBE38EDD8BE8DDABEADC1238DD6BEA9CA2070BE B019ADC2238DD6BEAEDBBEADDCBE8ED9BE8DDABEA9CB2070BE90DAAAADC2238D DEBEA9CC2070BE9001AAE005D018A9078DB4BEA001B96EBE99B5BE8810F7A9C3 2070BE9001AAADC1238DDEBEA9CC2070BEAD6CBEAC6DBE8DCCBE8CCDBE8DADBE 8CAEBE8DA1BE8CA2BE8DB5BE8CB6BEA003B990BF99A8BE8810F78AC905D004A9 001860384C09BEBD0002E8C98DF00EC9ACF00AC9A0F0F0C9E0900229DF600036 220000C3CFD0D900000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0A474C210600200203008CAB06167EAF00000200FF020008545950452E434D44 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000008 A56FC573D006A570C574F043203AFFA000B91C20F03820EDFDC8D0F58DD3D4D2 C9CEC7D3A0CDD5D3D4A0C2C5A0C3CCC5C1D28DD4D9D0C5A0C3CCC5C1D2A0D4C8 C5CEA0ADD4D9D0C5AEC3CDC48D006018AD4D216D4E21C5749005A90E4C09BEAD 4E2120F5BEB0F58D502138ED4B218D5121A201BD07BE9D3522BD4F219D07BECA 10F1A001B94A21993C008810F7A000B13CF018208EF8A42FC002D007B13C202D 21913CC898203E214C8D20A901203E21A001B13CF00D202D21913CA902203E21 4CB020A201BD4A21953CBD4C21953EBD4F219542CA10EEA000202CFEA000B952 21F00620EDFDC8D0F5A56EC920B008AD4D21C570B00160203AFFA000B90721F0 2620EDFDC8D0F58DC1D0D0CCC5D3CFC6D4A0D0D2CFC7D2C1CDA0CFD6C5D2D7D2 C9D4D4C5CE8D00204BD64CD003CD4B21900BCD4D21F002B004186D5121601865 3C853CA53D6900853D600022FE2201000000D4D9D0C5AEC3CDC4BAA0A0D4D9D0 C5A0C6C9CCC5ACC0C2CCCFC3CBA38DDED3A0D4CFA0D0C1D5D3C5ACDEC3A0D4CF A0D3D4CFD08D8D00000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 D8A200A00020DD22F029D9FB22D024C8C00490F1888C52BEA202BDF4229D4FBE CAD0F78E53BEE8A9118D54BEA90C8D55BE1860384C0000AD56BEF0F5A5748DCF BEA9C82070BEB03DADD0BE8DD6BEA2018ED9BEBDF7229DD7BECA10F7E88EDABE AD57BE2908C908D01EADD0BE8DC7BE8EC8BEAD68BE0A8DC9BEAD69BE2A8DCABE A9CE2070BEB03DA98D20EDFDAD00C0C983F02CC993D018AD00C0C9808D10C0B0 F6AD00C0C98090F9C983F0138D10C0A9CA2070BEB00EADF422F0CE0980D0CAA9 058D10C0AAADD0BE8DDEBEA9CC2070BEB0078AC905D0021860384C09BEBD0002 E8C98DF00EC9ACF00AC9A0F0F0C9E0900229DF60003722F4220000D4D9D0C500 0A474C21060020020400F7AC0F0081AF0000020000050009434F50592E434D44 5300000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000007 A56EC920B023AD4E21C570B01CA56FC573D006A570C574F07A203AFFA000B959 20F06920EDFDC8D0F5203AFFA000B93920F05A20EDFDC8D0F58DC1D0D0CCC5D3 CFC6D4A0D0D2CFC7D2C1CDA0CFD6C5D2D7D2C9D4D4C5CE8D008DD3D4D2C9CEC7 D3A0CDD5D3D4A0C2C5A0C3CCC5C1D28DD4D9D0C5A0C3CCC5C1D2A0D4C8C5CEA0 ADC3CFD0D9AEC3CDC4D38D0060204BD64CD00318AD4E216D4F21C5749005A90E 4C09BEAD4F2120F5BEB0F58D512138ED4C218D5221A201BD07BE9D7522BD5021 9D07BECA10F1A001B94B21993C008810F7A000B13CF018208EF8A42FC002D007 B13C202E21913CC898203F214CD120A901203F21A001B13CF00D202E21913CA9 02203F214CF420A201BD4B21953CBD4D21953EBD50219542CA10EEA000202CFE A000B95321F00620EDFDC8D0F560CD4C21900BCD4E21F002B004186D52216018 653C853CA53D6900853D600022FF2403000000C3CFD0D9AEC3CDC4D3A0D7D2C9 D4D4C5CEA0C2D9A0D3D4C5D6C5CEA0C8D5CDD0C1C7C5A0B1B9B8B58DD5D3C1C7 C5BAA0C3CFD0D9A0C6C9CCC5B1ACC6C9CCC5B28DC1C4C4A0C6C9CCC5B1ACC6C9 CCC5B28DD0C1D2D4A0C6C9CCC5B1ACC6C9CCC5B2ACC1A8C2CCCFC3CBA3A9ACCC A8C2CCCFC3CBD3A98D8D00000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 D8A200A00020D724F069D9F524D00CC8C00490F1A9018DEE24D039A200A00020 D724F04FD9F924D00CC8C00390F1A9028DEE24D01FA200A00020D724F035D9FC 24D030C8C00490F1A9038DEE24A9948D55BED005A2048E55BE888C52BEA2838E 54BEA2008E53BEE8BDEF249D50BECA10F71860384C0000AD56BEF0F52903C903 D01BA57038E56EE907B004A90CD020ADEE24C903D01DAD57BEC990F004A910D0 0EAD60BE3007D00BAD5FBED006A902384C09BEA90A8DB4BEA9C42070BEB0F0AD BBBEC90DF0E9ADEE24C902F04CA2018EA7BEBD6EBE9DA1BECA10F7A9C38DA3BE A202BDB8BE9DA4BECA10F7A203BDC2BE9DA8BECA10F7A9C02070BE9038C913F0 034C9624A201BD6EBE9DADBECA10F7A9C12070BE90E04C9624A201BD6EBE9DB5 BECA10F7A9C42070BEB0EBADBBBEC90DD0034CAF22A5748DCFBEA9C82070BE90 034C9624ADD0BE8DF124A201BD6EBE9DCCBECA10F7A57038E9048DCFBEA9C820 70BE9004AA4C8824ADD0BE8DF224A9008DD3BE8DD7BE8DD9BEA66EE88A8DD8BE ADCFBE38EDD8BE8DDABEADF1248DD2BEA9C92070BEADEE24C902F02FC903F040 ADF1248DD6BEA9CA2070BE90034C7C24ADF2248DD6BEA201BDDBBE9DD9BECA10 F7A9CB2070BE90D84C7C24ADF2248DC7BEA9D12070BEA9CE2070BE90C34C7C24 A9008DC8BEAD59BE8DCABEAD58BE0A8DC9BE2ECABEADF1248DC7BEA9CE2070BE 9002B0780E5FBE2E60BEAD5FBE8DF324AD60BE8DF424ADF1248DD6BEA9CA2070 BEB059ADF2248DD6BEA201BDDBBE9DD9BECA10F7A9CB2070BEB01738ADF324ED DCBE8DF324B0CFAEF424F00ACA8EF42490C4C909D026AD5FBE8DC9BEAD60BE8D CABEA9008DC8BE8D5FBE8D60BEADF2248DC7BEA9D02070BEB002A905AAADF224 8DDEBEA9CC2070BEADF1248DDEBEA9CC2070BE4C9724AAAD6CBEAC6DBE8DCCBE 8CCDBE8DADBE8CAEBE8DA1BE8CA2BE8DB5BE8CB6BEA900A0019958BE8810FAA0 03B990BF99A8BE8810F78AC905D004A9001860384C09BEBD0002E8C98DF00EC9 ACF00AC9A0F0F0C9E0900229DF6000772200000000C3CFD0D9C1C4C4D0C1D2D4 0A474C21060020020400F7AC2C1581AF00000200B904000A46494C5445522E43 4D44000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000006 A56FC573D006A570C574F043203AFFA000B91C20F03820EDFDC8D0F58DD3D4D2 C9CEC7D3A0CDD5D3D4A0C2C5A0C3CCC5C1D28DD4D9D0C5A0C3CCC5C1D2A0D4C8 C5CEA0ADC3CFD0D9AEC3CDC48D0060AD4C216D4D21C5749005A90E4C09BEAD4D 2120F5BEB0F58D4F2138ED4A218D5021A201BD07BE9D3423BD4E219D07BECA10 F1A001B94921993C008810F7A000B13CF018208EF8A42FC002D007B13C202C21 913CC898203D214C8C20A901203D21A001B13CF00D202C21913CA902203D214C AF20A201BD4921953CBD4B21953EBD4E219542CA10EEA000202CFEA000B95121 F00620EDFDC8D0F5A56EC920B008AD4C21C570B00160203AFFA000B90621F026 20EDFDC8D0F58DC1D0D0CCC5D3CFC6D4A0D0D2CFC7D2C1CDA0CFD6C5D2D7D2C9 D4D4C5CE8D00204BD64CD003CD4A21900BCD4C21F002B004186D50216018653C 853CA53D6900853D600023B82402000000C6C9CCD4C5D2AEC3CDC4A0D7D2C9D4 D4C5CEA0C2D9A0D3D4C5D6C5CEA0C8D5CDD0C1C7C5A0B1B9B8B68DD5D3C1C7C5 BAA0C6C9CCD4C5D2A0C9CEC6C9CCC5ACCFD5D4C6C9CCC5ACC1B9B9DBACC2B9B9 DD8DC3C8C1D2C1C3D4C5D2D3A0CDC1D4C3C8C9CEC7A0D4C8C5A0C1A0D0C1D2CD A0C1D2C58DD2C5D0CCC1C3C5C4A0C2D9A0D4C8C5A0C2A0D0C1D2CDAEA0C9C6A0 C2A0C9D3A0CECFD48DD4C8C5D2C5ACA0D4C8C5A0C1A0D0C1D2CDA0C9D3A0C4C5 CCC5D4C5C48D8D00000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 D8A200A000209324F028D9B124D023C8C00690F1888C52BEA202BDAA249D4FBE CAD0F78E53BEA283A9C48E54BE8D55BE1860384C0000AD56BED00218602903C9 03F006A910384C09BEA57038E56EE907B004A90CD0EFA9018DB824AD57BE2940 C940F003CEB824AD57BE2980C980D0D3A90A8DB4BEA9C42070BEB0C9ADB8BEC9 04F004A90DD0BEA5748DCFBEA9C82070BE9004AA4C6824ADD0BE8DAF24A2018E A7BEBD6EBE9DA1BECA10F7A9C38DA3BEA202BDB8BE9DA4BECA10F7A203BD90BF 9DA8BECA10F7A9C02070BE901CC913F0034C5D24A201BD6EBE9DADBECA10F7A9 C12070BE90E04C5D24A201BD6EBE9DCCBECA10F7A57038E9048DCFBEA9C82070 BE90034C5D24ADD0BE8DB024ADAF248DD2BEA9008DD3BE8DDABEA9C92070BEAD AD248DD7BEADAE248DD8BEA9018DD9BEAE58BEAC5ABEADAF248DD6BEA9CA2070 BEB01AECB724D008ADB824F0E98CB724ADB0248DD6BEA9CB2070BE90D9AAA900 8DDEBEA9CC2070BEAD6CBEAC6DBE8DCCBE8CCDBE8DADBE8CAEBE8DA1BE8CA2BE 8DB5BE8CB6BE8AC905D004A9001860384C09BEBD0002E8C98DF00EC9ACF00AC9 A0F0F0C9E0900229DF60003623B7240000C6C9CCD4C5D2000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0A474C21060020020400F7AC311581AF000002006704000A464F524D41542E43 4D44000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000005 4C042050AD03208D5722A56FC573D006A570C574F043203AFFA000B92620F038 20EDFDC8D0F58DD3D4D2C9CEC7D3A0CDD5D3D4A0C2C5A0C3CCC5C1D28DD4D9D0 C5A0C3CCC5C1D2A0D4C8C5CEA0ADC3CFD0D9AEC3CDC48D0060AD56216D5721C5 749005A90E4C09BEAD572120F5BEB0F58D592138ED54218D5A21A201BD07BE9D 3422BD58219D07BECA10F1A001B95321993C008810F7A000B13CF018208EF8A4 2FC002D007B13C203621913CC8982047214C9620A901204721A001B13CF00D20 3621913CA9022047214CB920A201BD5321953CBD5521953EBD58219542CA10EE A000202CFEA000B95B21F00620EDFDC8D0F5A56EC920B008AD5621C570B00160 203AFFA000B91021F02620EDFDC8D0F58DC1D0D0CCC5D3CFC6D4A0D0D2CFC7D2 C1CDA0CFD6C5D2D7D2C9D4D4C5CE8D00204BD64CD003CD5421900BCD5621F002 B004186D5A216018653C853CA53D6900853D600022662403000000C6CFD2CDC1 D4AEC3CDC4A0D7D2C9D4D4C5CEA0C2D9A0D3D4C5D6C5CEA0C8D5CDD0C1C7C58D D5D3C1C7C5BAA0A0C6CFD2CDC1D4A0C9CEC6C9CCC5ACCFD5D4C6C9CCC5ACDBCC B8B0DD8DCCA0D0C1D2CDA0C9D3A0D7CFD2C4A0D7D2C1D0A0CCC9CEC5A0CCC5CE C7D4C88DC4C5C6C1D5CCD4A0CCC9CEC5A0CCC5CEC7D4C8A0BDA0B8B08D8D0000 0000000000000000000000000000000000000000000000000000000000000000 D8A200A000203F24F028D95D24D023C8C00690F1888C52BEA202BD56249D4FBE CAD0F78E53BEA283A9148E54BE8D55BE1860384C0000AD56BED00218602903C9 03F006A910384C09BEA57038E56EE907B004A90CD0EFA9508D6524AD57BE2910 C910D00AAD5FBEF0DA30D88D6524A90A8DB4BEA9C42070BEB0CBADB8BEC904F0 04A90DD0C0A5748DCFBEA9C82070BE9004AA4C1424ADD0BE8D5B24A2018EA7BE BD6EBE9DA1BECA10F7A9C38DA3BEA202BDB8BE9DA4BECA10F7A203BD90BF9DA8 BECA10F7A9C02070BE901CC913F0034C0924A201BD6EBE9DADBECA10F7A9C120 70BE90E04C0924A201BD6EBE9DCCBECA10F7A57038E9048DCFBEA9C82070BE90 034C0924ADD0BE8D5C24AD5B248DD2BEA9FF8DD3BEA90D8DD4BEA9C92070BEAD 59248DD7BEAD5A248DD8BEA2008EDABE8E642438AD6524ED64248DD9BE18AD59 246D64248DD7BEA9006D5A248DD8BEAD5B248DD6BEA9CA2070BE90034CE223AD 5924853CAD5A24853D18ADDBBECDD9BEF00D6D64248DD9BEA9FF8D6324D0236D 6424A8888C6324B13CC920F00AC909F0068810F3AC6324A90D913CC88C63248C D9BEA53C8DD7BEA53D8DD8BEAD5C248DD6BEA9CB2070BEB050A9008D6424AD59 24853CAD5A24853DAC6324CC6524B00FB13CAC6424913CEE6424EE632410DF4C 3323AAAC6424F021A90D913CA53C8DD7BEA53D8DD8BEC88CD9BEAD5C248DD6BE A9CB2070BEB0029001AAA9008DDEBEA9CC2070BEAD6CBEAC6DBE8DCCBE8CCDBE 8DADBE8CAEBE8DA1BE8CA2BE8DB5BE8CB6BE8AC905D004A9001860384C09BEBD 0002E8C98DF00EC9ACF00AC9A0F0F0C9E0900229DF6000362266240000C6CFD2 CDC1D40000000000000000000000000000000000000000000000000000000000 0A474C21FC0108020B008CAB2B1781AF00000200A91300094D454E552E434F50 5900000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000004 32080500B24D454E552E434F505920434F505952494748542028432920313938 352053544556454E2048554D50414745003D080A00AB32353030300046083200 A5AB3730005F08350041D0E2283439313532293AAD41D1313238C43533007408 3700B934393136382C303A41D041C931323800A7083C00AD41D1CF38CD41D1CF 3130CD41D1CF3131CD41D1CF3133CD41D1CF3231CD41D1CF3332C4BAE7283729 3B3AAB353300AD084100B100D7084600455252D0E228323232293A4CD0E22832 313829C8E22832313929CA3235363A8CC93332383800EF084B00AD455252D032 3535C4BAE72837293B3AAB353300FA085000AB3230303030000009640097001B 096E00BA2246494C4520434F50592050524F4752414D223ABA003D097800BA22 454E54455220534F55524345205052454649583A223ABA222F223B0061098200 4348D0323AB031303030303A535024D0494E243AAD494E24D02222C431303000 990987004C53D0E328535024293AAD28E8285350242C3129D0222F2229CD4C53 CF31C4535024D0E9285350242C4C53C931293AAB31333500A9098800535024D0 222F22C853502400E10989004C53D0E328535024293AAD28E9285350242C3129 D0222F2229CD4C53CF31C4535024D0E8285350242C4C53C931293AAB31333700 FA098C00AD535024D0222F22C4BAE72837293B3AAB313030000B0A9600A2343A 8C454F4C3ABA53502400170AE803A5AB313930303000310AF203BA44243B224F 50454E2022535024222C544449522200440AFC03BA44243B2252454144202253 5024005D0A06048441242C41242C41243A4BD0313AA5AB3130373000730A1004 8441243AADE328412429D030C43130393000B20A1A0446494C4524284B29D0EA 2841242C322C3135293A465424284B29D0EA2841242C31382C33293A464C2428 4B29D0E82841242C31293A4BD04BC83100BC0A2404AB3130343000F90A2E0445 5252D0E228323232293A4CD0E22832313829C8E22832313929CA3235363A8CC9 333238383AB93231362C303AAD455252D035C43130393000110B3804AB323030 30303AB2464154414C204552524F5200250B4204BA44243B22434C4F53452022 535024007A0B4404AD4BD031C44D534724D0224E4F2046494C455320494E2054 484154204449524543544F5259223A4CD0313031303AAB31393130303AB22020 204C3D31303030204953204120434845415020545249434B00930B47044E4649 4C4553D04BC9313A4E4D41524B4544D03000FB0B4C044B4ED0303A4F4C44524F 57D0353A4E524F57D0353A814BD030C14E46494C45533A4D41524B24284B29D0 2220223A824B3AB031313030303A4649525354D0545255453AB0323030303AB2 20204D41534B204649525354204C494E4520494E564552534500220C5604B035 303AB22052454144204152524F572C2053504143452C204F522052455455524E 004C0C6004AD41D03133C4AB353030303AB24745542044455354494E4154494F 4E20414E4420434F505900610C6A04AD41D1CF38CD41D1CF3131C43131373000 8A0C7404AD4F4C44524F57D1CF35C44E524F57D04F4C44524F57C9313AB03230 30303AAB3131313000AA0C7E04AD4F4C44524F57D035CD4B4ED030C4BAE72837 293B3AAB3131313000DD0C88044B4ED04B4EC931393AB031313030303A4E524F 57D032333A4649525354D0545255453AB0323030303AAB3131313000F50C9204 AD2841D1CF3130CD41D1CF323129C43132313000330D9C04AD4F4C44524F57D1 3233CD284B4EC84F4C44524F57C93529D14E46494C4553C44E524F57D04F4C44 524F57C8313AB0323030303AAB3131313000850DA604AD4F4C44524F57D03233 CD284B4EC84F4C44524F57C93529D14E46494C4553C44B4ED04B4EC831393AB0 31313030303A4E524F57D0353A4649525354D0545255453AB0323030303AAB31 31313000960DB004BAE72837293B3AAB3131313000AC0DBA04AD41D03332C4B0 333030303AAB3131313000B20DC404B300C20DD007AD4649525354C432303430 00E80DDA07A24F4C44524F573AB933362C323ABA46494C4524284B4EC84F4C44 524F57C9352900F80DF8074649525354D046414C5345001E0E0208A24E524F57 3AB933362C323A9E3ABA46494C4524284B4EC84E524F57C935293A9D002E0E0C 084F4C44524F57D04E524F5700340E1608B100460EB80B4BD04B4EC84F4C4452 4F57C935007D0EC20BAD4D41524B24284B29D0222022C44D41524B24284B29D0 223E223A4E4D41524B4544D04E4D41524B4544C8313AAB3330343000A00ED60B 4D41524B24284B29D02220223A4E4D41524B4544D04E4D41524B4544C93100BC 0EE00BA24F4C44524F573AB933362C303ABA4D41524B24284B2900C20EEA0BB1 00D40E8813B933362C303AA2353A8C454F5000FD0E8D13AD4E4D41524B4544D0 30C4BA224E4F2046494C452053454C4543544544223AAB35303635004D0F9213 BA22454E5445522044455354494E4154494F4E205052454649583A223ABA222F 223B3A4348D0323AB031303030303A445024D0494E243AAD494E24D02222C4BA E72837293B3AAB3530303000860F9C134C44D0E328445024293AAD28E8284450 242C3129D0222F2229CD4C44CF31C4445024D0E9284450242C4C44C931293AAB 3530323000960F9D13445024D0222F22C844502400CF0F9E134C44D0E3284450 24293AAD28E9284450242C3129D0222F2229CD4C44CF31C4445024D0E8284450 242C4C44C931293AAB3530323200E90F9F13AD445024D0222F22C4BAE7283729 3B3AAB35303030000310A113AD535024D0445024C4BAE72837293B3AAB353030 30001810A313A2363A8C454F4C3ABA4450243A4BD031004610A413AD4D41524B 24283029D0223E22C4814AD031C14E46494C45533A4D41524B24284A29D0223E 223A824A006B10A613AD4D41524B24284B29D0222022CE465424284B29D02244 495222C4AB35303530007610AB13A5AB3630303000BE10B0138C454F503ABA22 434F5059494E47202246494C4524284B293ABA44243B22434F50592022535024 222F2246494C4524284B29222C22445024222F2246494C4524284B2900F210B5 13A228E228333729293AB933362C303A9E3ABA46494C4524284B293B3A9D3ABA 2220434F505920434F4D504C45544522001611B71341D0E2283439313532293A B934393136382C303AAD41D0313535C435303635003011BA134BD04BC8313AAD 4BD1D04E46494C4553C435303330004711C413BA3ABA22434F505920434F4D50 4C45544522006811C913BAE728372922434F4E54494E55453F2028592F4E2920 223B3ABE4124007F11CE13AD4124D0225922CE4124D0227922C431303000AF11 D813AD4124D1CF224E22CD4124D1CF226E22CD4124D1CFE728323729C4BA3AA2 28E228333729293AAB3530363500B511E2138000D8117017455252D0E2283232 32293A4CD0E22832313829C8E22832313929CA3235360071127517AD455252D0 3130C4A228E228333729293ABAE72837293B3A9E3ABA46494C4524284B292220 4953204C4F434B45442E223ABA22434F505920414E595741593F28592F4E2922 3B3A9D3ABE41243AAD4124D0225922CE4124D0227922C4BA2259223AA228E228 333729C931293ABA44243B22554E4C4F434B2022445024222F2246494C452428 4B293A8CC9333238383AAB3530333500A0127A17BA3AA228E228333729C93129 3AAD455252D1CF3130C48CC9333238383AB93231362C303AAB313930303500D8 1284178C454F503ABA46494C4524284B293B3A9E3ABA2220434F50592043414E 43454C4C4544223A9D3A8CC9333238383AAB3530353000F6120F27B220505245 46495820494E50555420535542524F5554494E45000A131027494E24D022223A 54454D5024D022220031131A27BE41243AAD4124D0E728313329C4B933362C43 48C9313A8C454F4C3ABA494E243AB10055131C27AD4124D0E728323729C4A235 3AB933362C303A8C454F503AA13AAB353036350079131F27AD4124CFD0226122 CD4124D1D0227A22C44124D0E728E628412429C933322900B7132427AD284124 CFD0224122CD4124D1D0225A2229CE284124CFD0223022CD4124D1D022392229 CE4124D0222E22CE4124D0222F22C4AB313030353000EF132E27AD4124D0E728 3829CDE328494E2429CF31C4BAE72838293B3A494E24D0E828494E242CE32849 4E2429C931293AAB31303031300018143327AD4124D0E7283829CDE328494E24 29CF30C4BA41243B3A494E24D022223AAB31303031300064143827AD4124D0E7 28323129CDE328494E2429D1E32854454D502429C44124D0EA2854454D50242C E328494E2429C8312C31293ABA41243B3A494E24D0494E24C841243AAB313030 31300076143D27BAE72837293B3AAB313030313000A0144227494E24D0494E24 C841243AADE328494E2429CFE32854454D502429C454454D5024D0494E2400A9 144727BA41243B00B4144C27AB313030313000D114F82AB933362C303AA2353A 4AD0303A814BD04B4EC14B4EC8313800F0140C2BAD4B4EC84ACF4E46494C4553 C48C454F4C3ABA3AAB3131303430001515162BBA4D41524B24284B29464C2428 4B2946494C4524284B29222022465424284B29002215202B4AD04AC8313A824B 0028152A2BB1005215384A455252D0E228323232293A4CD0E22832313829C8E2 2832313929CA3235363AB93231362C300080153D4AAD455252D036CE455252D0 37C44D534724D02250415448204E4F5420464F554E44223AAB313931303000B1 15424AAD455252D034C44D534724D0445024C822204953205752495445205052 4F544543544544223AAB313931303000D415474AAD455252D039C44D534724D0 224449534B2046554C4C223AAB31393130300001164C4AAD455252D03133C44D 534724D02246494C452054595045204D49534D41544348223AAB313931303000 2816514AAD455252D03136C44D534724D02253594E544158204552524F52223A AB3139313030005116564AAD455252D03137C44D534724D0224449524543544F 52592046554C4C223AAB3139313030005C165B4AAB32303030300090169C4AA2 32323AB933362C303A8C454F4C3ABA4D534724E7283729222050524553532041 204B4559223B3ABE41243ABA4124009B16A14A8CC93332383800C516A64AAD4C D031303130C43130303AB220434C4541522053435245454E20414E442050524F 4D505400D616B04AAD4CD035303430C43530303000E716BA4AAD4CD036303035 C435303335002517204EA232333AB933362C303ABAE7283729224552524F5220 2320224552522220494E204C494E45202320224C3AB33AB2464154414C204552 524F52003117A861A5AB3331303030006717B261BAE72834293B22434F505922 3AB2434845434B20544F2053454520494620434F50592E434D4420494E535441 4C4C454420007217BC61B93231362C3000C9173075973A54525545D0313A4641 4C5345D0303A4424D0E72834293A454F4CD0C93836383A454F50D0C93935383A 8646494C4524283531293A86465424283531293A86464C24283531293A864D41 524B2428353129000018357546494C4524283029D022434F505920414C4C2046 494C455320223A465424283029D0222A2A2A223A464C24283029D0222A220025 183A75A2333ABA2220202020202020202046494C4520434F50592050524F4752 414D22004F184475A2353ABA22202020464F5220555345205749544820544845 20434F505920434F4D4D414E44007C184E75A2373ABA2220434F505952494748 542028432920313938352053544556454E2048554D504147452200AA185875A2 393ABA2255534520544849532050524F4752414D20544F2053454C4543542041 4E4420434F50592200D6186275BA2246494C45532046524F4D204F4E45204449 524543544F525920544F20414E4F544845522E2200FC186C75BA225448495320 50524F4752414D2048415320494E5354414C4C454420544845220022197175BA 2254484520434F505920434F4D4D414E44204946204E45434553534152592E22 0049197675BA22454E5445522054484520534F55524345205052454649582041 4E4420495453220071198075BA224449524543544F52592057494C4C20424520 5052494E544544204F4E2054484522009B198A75BA2253435245454E2E204D4F 564520544845204D454E55204241522057495448205448452200C9199475BA22 4152524F57204B45595320414E44204D41524B205448452046494C455320594F 552057414E542200F2199E75BA22544F20434F50592057495448205448452053 50414345204241522E20505245535322001E1AA875BA2252455455524E20414E 4420594F552057494C4C2042452041534B454420464F522054484522004D1AB2 75BA2244455354494E4154494F4E205052454649582E20414654455220544845 2046494C45532041524522007C1ABC75BA22434F5049454420594F552057494C 4C2042452041534B454420494620594F552057414E5420544F2200A91AC675BA 22434F4E54494E55452E20594F552043414E2053544F50205448452050524F47 52414D2041542200CE1AD075BA22414E592054494D4520574954482054484520 455343415045204B45592E2200FB1ADA75A232343AB933362C303ABA22505245 535320414E59204B455920544F20424547494E223B3ABE412400041BE475AB31 3030001E1B1879B93231362C303A8CC9333238383AA5AB333230303000341B22 79BAE72834293B222D434F50592E434D442200461B2C79B93231362C303AAB33 3030303000A21B007D973AA231303ABA22504C4541534520494E5354414C4C20 434F50592E434D44223ABA2252454D454D42455220544F205459504520434C45 4152204F52204E4557223ABA225448454E204252554E20434F50592E434D4422 00A81B0A7D800000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0A474C21060020020300FAAC201081AF000002004F0300084D4F52452E434D44 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000003 4C04204EAD03208D4C23A56FC573D006A570C574F043203AFFA000B92620F038 20EDFDC8D0F58DD3D4D2C9CEC7D3A0CDD5D3D4A0C2C5A0C3CCC5C1D28DCDCFD2 C5A0C3CCC5C1D2A0D4C8C5CEA0ADCDCFD2C5AEC3CDC48D006018AD57216D5821 C5749005A90E4C09BEAD582120F5BEB0F58D5A2138ED55218D5B21A201BD07BE 9D3522BD59219D07BECA10F1A001B95421993C008810F7A000B13CF018208EF8 A42FC002D007B13C203721913CC8982048214C9720A901204821A001B13CF00D 203721913CA9022048214CBA20A201BD5421953CBD5621953EBD59219542CA10 EEA000202CFEA000B95C21F00620EDFDC8D0F5A56EC920B008AD5721C570B001 60203AFFA000B91121F02620EDFDC8D0F58DC1D0D0CCC5D3CFC6D4A0D0D2CFC7 D2C1CDA0CFD6C5D2D7D2C9D4D4C5CE8D00204BD64CD003CD5521900BCD5721F0 02B004186D5B216018653C853CA53D6900853D6000224E2302000000CDCFD2C5 AEC3CDC4BAA0A0CDCFD2C5A0C6C9CCC5ACC0C2CCCFC3CBA3ACCCD7C9C4D4C88D D7C9C4D4C8A0C9D3A0D3C3D2C5C5CEA0D7C9C4D4C8BAA0C4C5C6BDB8B08DDED3 A0D4CFA0D0C1D5D3C5ACDEC3A0D4CFA0D3D4CFD08D8D00000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 D8A200A000202A23F029D94823D024C8C00490F1888C52BEA202BD41239D4FBE CAD0F78E53BEE8A9118D54BEA91C8D55BE1860384C0000AD56BEF0F5A5748DCF BEA9C82070BEB03FADD0BE8DD6BEA2018ED9BEBD44239DD7BECA10F7E88EDABE AD57BE2908C908D021ADD0BE8DC7BE8EC8BEAD68BE0A8DC9BEAD69BE2A8DCABE A9CE2070BE90034C1123AD57BE2910C910D008AE5FBECACA8E4C23A9008D4D23 A98D20EDFDEE4E23C98DD008A2008E4E23EE4D23AE4C23EC4E23B00B208EFDA2 008E4E23EE4D23AE4D23E00C900BA9008D4D238D10C04CEE22AD00C0C983F02C C993D018AD00C0C9808D10C0B0F6AD00C0C98090F9C983F0138D10C0A9CA2070 BEB00EAD4123F09A0980D096A9058D10C0AAADD0BE8DDEBEA9CC2070BEB0078A C905D0021860384C09BEBD0002E8C98DF00EC9ACF00AC9A0F0F0C9E0900229DF 6000372241230000CDCFD2C54E00000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0A474C21060020020400F7AC2A1581AF000002002F0400094D4F554E542E434D 4400000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000002 A56FC573D006A570C574F044203AFFA000B91C20F03920EDFDC8D0F58DD3D4D2 C9CEC7D3A0CDD5D3D4A0C2C5A0C3CCC5C1D28DD4D9D0C5A0C3CCC5C1D2A0D4C8 C5CEA0ADCDCFD5CED4AEC3CDC48D0060AD4D216D4E21C5749005A90E4C09BEAD 4E2120F5BEB0F58D502138ED4B218D5121A201BD07BE9D3422BD4F219D07BECA 10F1A001B94A21993C008810F7A000B13CF018208EF8A42FC002D007B13C202D 21913CC898203E214C8D20A901203E21A001B13CF00D202D21913CA902203E21 4CB020A201BD4A21953CBD4C21953EBD4F219542CA10EEA000202CFEA000B952 21F00620EDFDC8D0F5A56EC920B008AD4D21C570B00160203AFFA000B90721F0 2620EDFDC8D0F58DC1D0D0CCC5D3CFC6D4A0D0D2CFC7D2C1CDA0CFD6C5D2D7D2 C9D4D4C5CE8D00204BD64CD003CD4B21900BCD4D21F002B004186D5121601865 3C853CA53D6900853D6000222E2403000000CDCFD5CED4AEC3CDC4A0D7D2C9D4 D4C5CEA0B1B9B8B6A0C2D9A0D3D4C5D6C5CEA0C8D5CDD0C1C7C58DD5D3C5BAA0 A0CDCFD5CED4A0AFD3CFD5D2C3C5AED6CFCCACAFC4C5D3D4AED6CFCC8D8D0000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 D8A200A00020D823F028D90924D023C8C00590F1888C52BEA202BDEF239D4FBE CAD0F78E53BEA203A9008E54BE8D55BE1860384C0000AD56BED00218602903C9 03F006A910384C09BEA90A8DB4BEA001B96EBE99B5BE8810F7A9C42070BEAE6C BE8EB5BEAE6DBE8EB6BEB0D9A5438DF523ADBBBEC90FF004A90DD0C9A9C42070 BEB0C2ADBBBEC90FD0EEA5438DF423A57385068DF823A674E8E886078EF923A9 028DFA23A9008DFB23ADF5238DF723A9808D0524ADF2238D0624ADF3238D0724 20022490034C4522A02AA905D106B005A92B4C4522ADF4238DF723A5738DF823 A5748DF92320022490034C4522A02AB106D173B0034C4322D00788B106D17390 F4A013B106917388C003D0F7A9818D0524ADF5238DF72320022490034C4522A0 27B17399D523C8C02BD0F6ADFD23F005A9274C4522ADFC238DFA23A9808D0524 ADF4238DF72320022490034C4522A0008CFA238C0024B17309E09173EEFE23D0 03EEFF23A5068DF823A5078DF923A0078C0124ADFB23CDFF239008ADFE23CDFA 239020AC0024B1730A9173B0034CB423EEFA23D003EEFB23CE012410D6EE0024 4C6E23A000B90E24F00620EDFDC8D0F5A9001860ADF4238DF723A9808D052420 022490034CD523ADF5238DF723A9818D05242002244C9023BD0002E8C98DF00E C9ACF00AC9A0F0F0C9E0900229DF60003622F623000003000000000000000000 00002000BF00000060CDCFD5CED48DCDCFD5CED4BAA0C2C1C3CBD5D0AFD2C5D3 D4CFD2C5A0C3CFCDD0CCC5D4C58D000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0A474C21060020020400F7AC301581AF000002004404000C554E464F524D4154 2E434D4400000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000001 4C042041AD03208D5722A56FC573D006A570C574F043203AFFA000B92620F038 20EDFDC8D0F58DD3D4D2C9CEC7D3A0CDD5D3D4A0C2C5A0C3CCC5C1D28DD4D9D0 C5A0C3CCC5C1D2A0D4C8C5CEA0ADC3CFD0D9AEC3CDC48D0060AD56216D5721C5 749005A90E4C09BEAD572120F5BEB0F58D592138ED54218D5A21A201BD07BE9D 3422BD58219D07BECA10F1A001B95321993C008810F7A000B13CF018208EF8A4 2FC002D007B13C203621913CC8982047214C9620A901204721A001B13CF00D20 3621913CA9022047214CB920A201BD5321953CBD5521953EBD58219542CA10EE A000202CFEA000B95B21F00620EDFDC8D0F5A56EC920B008AD5621C570B00160 203AFFA000B91021F02620EDFDC8D0F58DC1D0D0CCC5D3CFC6D4A0D0D2CFC7D2 C1CDA0CFD6C5D2D7D2C9D4D4C5CE8D00204BD64CD003CD5421900BCD5621F002 B004186D5A216018653C853CA53D6900853D600022432403000000D5CEC6CFD2 CDC1D4AEC3CDC4A0D7D2C9D4D4C5CEA0C2D9A0D3D4C5D6C5CEA0C8D5CDD0C1C7 C58DD5D3C1C7C5BAA0A0D5CEC6CFD2CDC1D4A0C9CEC6C9CCC5ACCFD5D4C6C9CC C5ACDBCCB6B5DD8DD2C5D0CCC1C3C5D3A0BCC3D2BEA0D7C9D4C8A0D3D0C1C3C5 A0C1D4A0C5CEC4A0CFC6A0CCC9CEC58DCCA0D0C1D2CDA0C9D3A0D3C8CFD2D4C5 D3D4A0CCC9CEC5A0D4CFA0D5CEC6CFD2CDC1D48D8D0000000000000000000000 D8A200A000201624F028D93424D023C8C00890F1888C52BEA202BD2D249D4FBE CAD0F78E53BEA283A9148E54BE8D55BE1860384C0000AD56BED00218602903C9 03F006A910384C09BEA57038E56EE907B004A90CD0EFA9418D4324AD57BE2910 C910D006AD5FBE8D4324A90A8DB4BEA9C42070BEB0CFADB8BEC904F004A90DD0 C4A5748DCFBEA9C82070BE9004AA4CEB23ADD0BE8D3224A2018EA7BEBD6EBE9D A1BECA10F7A9C38DA3BEA202BDB8BE9DA4BECA10F7A203BD90BF9DA8BECA10F7 A9C02070BE901CC913F0034CE023A201BD6EBE9DADBECA10F7A9C12070BE90E0 4CE023A201BD6EBE9DCCBECA10F7A57038E9048DCFBEA9C82070BE90034CE023 ADD0BE8D3324AD32248DD2BEA9008DD3BE8DDABEA9C92070BEAC30248CD7BEAC 31248CD8BEA0018CD9BEAD32248DD6BEA9CA2070BE90034CE023A2008E3F248E 4224E88E4024AD3C248D3D24C90DD0038E3F24AD32248DD6BEA9CA2070BEB045 AD40248D4124AD3F248D4024A9008D3F24AD3C248D3E24C90DD007A9018D3F24 D039EE4224A901CD4024D02FCD4124F02AAD4224CD43249022A2208E3C24A900 8D4224F025AAAD3D248D3C24AD33248DD6BEA9CB2070BEB0279026AD3D248D3C 24C90DD005A9008D4224AD3E248D3D24AD33248DD6BEA9CB2070BEB0034C5323 AAA9008DDEBEA9CC2070BEAD6CBEAC6DBE8DCCBE8CCDBE8DADBE8CAEBE8DA1BE 8CA2BE8DB5BE8CB6BE8AC905D004A9001860384C09BEBD0002E8C98DF00EC9AC F00AC9A0F0F0C9E0900229DF600036223C240000D5CEC6CFD2CDC1D400000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0A474C21FC0108020B008DAB040081AF000002009813000A455845432E4D414B 4552000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 35080500B22020455845432E4D414B455220434F505952494748542028432920 313938352053544556454E2048554D504147450040080A00AB33303030300049 083200A5AB3730006208350041D0E2283439313532293AAD41D1313238C43533 0077083700B934393136382C303A41D041C931323800AA083C00AD41D1CF38CD 41D1CF3130CD41D1CF3131CD41D1CF3133CD41D1CF3231CD41D1CF3332C4BAE7 2837293B3AAB353300B0084100B100DA084600455252D0E228323232293A4CD0 E22832313829C8E22832313929CA3235363A8CC93332383800F2084B00AD4552 52D0323535C4BAE72837293B3AAB353300FD085000AB32303030300003096400 970017096E00BA22455845432E4D414B4552223ABA0039097800BA22454E5445 5220534F55524345205052454649583A223ABA222F223B005D0982004348D032 3AB031303030303A535024D0494E243AAD494E24D02222C43130300095098700 4C53D0E328535024293AAD28E8285350242C3129D0222F2229CD4C53CF31C453 5024D0E9285350242C4C53C931293AAB31333500A5098800535024D0222F22C8 53502400DD0989004C53D0E328535024293AAD28E9285350242C3129D0222F22 29CD4C53CF31C4535024D0E8285350242C4C53C931293AAB31333700F6098C00 AD535024D0222F22C4BAE72837293B3AAB31303000070A9600A2343A8C454F4C 3ABA53502400130AE803A5AB3139303030002D0AF203BA44243B224F50454E20 22535024222C544449522200400AFC03BA44243B225245414420225350240059 0A06048441242C41242C41243A4BD0313AA5AB31303730006F0A10048441243A ADE328412429D030C43130393000AE0A1A0446494C4524284B29D0EA2841242C 322C3135293A465424284B29D0EA2841242C31382C33293A464C24284B29D0E8 2841242C31293A4BD04BC83100B80A2404AB3130343000F50A2E04455252D0E2 28323232293A4CD0E22832313829C8E22832313929CA3235363A8CC933323838 3AB93231362C303AAD455252D035C431303930000E0B3804AB32303030303AB2 20464154414C204552524F5200220B4204BA44243B22434C4F53452022535024 00750B4404AD4BD031C44D534724D0224E4F2046494C455320494E2054484154 204449524543544F5259223A4CD0313031303AAB31393130303AB2204C3D3130 3130204953204120434845415020545249434B008E0B47044E46494C4553D04B C9313A4E4D41524B4544D03000F50B4C044B4ED0303A4F4C44524F57D0353A4E 524F57D0353A814BD030C14E46494C45533A4D41524B24284B29D02220223A82 4B3AB031313030303A4649525354D0545255453AB0323030303AB2204D41534B 204649525354204C494E4520494E5645525345001D0C5604B035303AB2202052 454144204152524F572C2053504143452C204F522052455455524E00480C6004 AD41D03133C4AB353030303AB2204745542044455354494E4154494F4E20414E 4420434F5059005D0C6A04AD41D1CF38CD41D1CF3131C43131373000860C7404 AD4F4C44524F57D1CF35C44E524F57D04F4C44524F57C9313AB0323030303AAB 3131313000A60C7E04AD4F4C44524F57D035CD4B4ED030C4BAE72837293B3AAB 3131313000D90C88044B4ED04B4EC931393AB031313030303A4E524F57D03233 3A4649525354D0545255453AB0323030303AAB3131313000F10C9204AD2841D1 CF3130CD41D1CF323129C431323130002F0D9C04AD4F4C44524F57D13233CD28 4B4EC84F4C44524F57C93529D14E46494C4553C44E524F57D04F4C44524F57C8 313AB0323030303AAB3131313000810DA604AD4F4C44524F57D03233CD284B4E C84F4C44524F57C93529D14E46494C4553C44B4ED04B4EC831393AB031313030 303A4E524F57D0353A4649525354D0545255453AB0323030303AAB3131313000 920DB004BAE72837293B3AAB3131313000A80DBA04AD41D03332C4B033303030 3AAB3131313000AE0DC404B300BE0DD007AD4649525354C43230343000E40DDA 07A24F4C44524F573AB933362C323ABA46494C4524284B4EC84F4C44524F57C9 352900F40DF8074649525354D046414C5345001A0E0208A24E524F573AB93336 2C323A9E3ABA46494C4524284B4EC84E524F57C935293A9D002A0E0C084F4C44 524F57D04E524F5700300E1608B100420EB80B4BD04B4EC84F4C44524F57C935 00790EC20BAD4D41524B24284B29D0222022C44D41524B24284B29D0223E223A 4E4D41524B4544D04E4D41524B4544C8313AAB33303430009C0ED60B4D41524B 24284B29D02220223A4E4D41524B4544D04E4D41524B4544C93100B80EE00BA2 4F4C44524F573AB933362C303ABA4D41524B24284B2900BE0EEA0BB100F90E88 13B933362C303AA2353A8C454F503AAD4E4D41524B4544D030C4BAE728372922 4E4F2046494C452053454C4543544544223AAB3532383000490F9213BA22454E 5445522044455354494E4154494F4E205052454649583A223ABA222F223B3A43 48D0323AB031303030303A445024D0494E243AAD494E24D02222C4BAE7283729 3B3AAB3530303000820F9C134C44D0E328445024293AAD28E8284450242C3129 D0222F2229CD4C44CF31C4445024D0E9284450242C4C44C931293AAB35303230 00920F9D13445024D0222F22C844502400CB0F9E134C44D0E328445024293AAD 28E9284450242C3129D0222F2229CD4C44CF31C4445024D0E8284450242C4C44 C931293AAB3530323200E50F9F13AD445024D0222F22C4BAE72837293B3AAB35 30303000FF0FA113AD535024D0445024C4BAE72837293B3AAB35303030002D10 A613AD4D41524B24283029D0223E22C4814AD031C14E46494C45533A4D41524B 24284A29D0223E223A824A003E10B013A2363A8C454F503ABA445024005010EC 13B933362C303AA2373A8C454F5000A910F613BA22454E5445522046554C4C20 50415448204E414D45204F4620455845432046494C453A223ABA222F223B3A43 48D0323AB031303030303A455824D0494E243AAD494E24D02222C4BAE7283729 3B3AAB3531303000E21000144C58D0E328455824293AAD28E8284558242C3129 D0222F2229CD4C58CF31C4455824D0E9284558242C4C58C931293AAB35313230 00F2100A14455824D0222F22C8455824002B1114144C58D0E328455824293AAD 28E9284558242C3129D0222F2229CD4C58CF31C4455824D0E8284558242C4C58 C931293AAB35313430003C111E14A2383A8C454F503ABA4558240047115014A5 AB36303030005A115A14BA44243B224F50454E2022455824006F116414BA4424 3B22415050454E442022455824007F116E14814BD031C14E46494C455300A311 7814AD4D41524B24284B29D0222022CE465424284B29D02244495222C4353236 3000CF118214BA22434F50592022535024222F2246494C4524284B29222C2244 5024222F2246494C4524284B2900D6118C14824B00EA119614BA44243B22434C 4F53452022455824000712A014BA22434F4E54494E55453F2028592F4E292022 3B3ABE4124001E12AA14AD4124D0225922CE4124D0227922C4313030005412B4 14AD4124D1CF224E22CD4124D1CF226E22C4BAE72837293B3AA228E228333729 293AB933362C303A8C454F503AAB35323830005A12BE14800084127017455252 D0E228323232293A4CD0E22832313829C8E22832313929CA3235363A8CC93332 38380097127A17AD455252D1CF3130C4313930303500D0128417A232303AB933 362C303A8C454F503ABA45582422204953204C4F434B45442E20554E4C4F434B 3F2028592F4E2920223B3ABE412400FA128E17AD4124D0225922CE4124D02279 22C4BA44243B22554E4C4F434B20224558243AAB35323230001C139817AD4124 D1CF224E22CD4124D1CF226E22C4BAE72837293B3AAB36303230002613A217AB 353030300045130F27B2202050524546495820494E50555420535542524F5554 494E450059131027494E24D022223A54454D5024D022220080131A27BE41243A AD4124D0E728313329C4B933362C4348C9313A8C454F4C3ABA494E243AB100A4 131C27AD4124D0E728323729C4A2393AB933362C303A8C454F503AA13AAB3532 383000C8131F27AD4124CFD0226122CD4124D1D0227A22C44124D0E728E62841 2429C93332290006142427AD284124CFD0224122CD4124D1D0225A2229CE2841 24CFD0223022CD4124D1D022392229CE4124D0222E22CE4124D0222F22C4AB31 30303530003E142E27AD4124D0E7283829CDE328494E2429CF31C4BAE7283829 3B3A494E24D0E828494E242CE328494E2429C931293AAB313030313000671433 27AD4124D0E7283829CDE328494E2429CF30C4BA41243B3A494E24D022223AAB 313030313000B3143827AD4124D0E728323129CDE328494E2429D1E32854454D 502429C44124D0EA2854454D50242CE328494E2429C8312C31293ABA41243B3A 494E24D0494E24C841243AAB313030313000C5143D27BAE72837293B3AAB3130 30313000EF144227494E24D0494E24C841243AADE328494E2429CFE32854454D 502429C454454D5024D0494E2400F8144727BA41243B0003154C27AB31303031 30002015F82AB933362C303AA2353A4AD0303A814BD04B4EC14B4EC83138003F 150C2BAD4B4EC84ACF4E46494C4553C48C454F4C3ABA3AAB3131303430006415 162BBA4D41524B24284B29464C24284B2946494C4524284B2922202246542428 4B29007115202B4AD04AC8313A824B0077152A2BB100A115384A455252D0E228 323232293A4CD0E22832313829C8E22832313929CA3235363AB93231362C3000 CF153D4AAD455252D036CE455252D037C44D534724D02250415448204E4F5420 464F554E44223AAB3139313030000016424AAD455252D034C44D534724D04450 24C8222049532057524954452050524F544543544544223AAB31393130300023 16474AAD455252D039C44D534724D0224449534B2046554C4C223AAB31393130 300050164C4AAD455252D03133C44D534724D02246494C452054595045204D49 534D41544348223AAB3139313030007716514AAD455252D03136C44D534724D0 2253594E544158204552524F52223AAB313931303000A016564AAD455252D031 37C44D534724D0224449524543544F52592046554C4C223AAB313931303000AB 165B4AAB323030303000DF169C4AA232323AB933362C303A8C454F4C3ABA4D53 4724E7283729222050524553532041204B4559223B3ABE41243ABA412400EA16 A14A8CC933323838001517A64AAD4CD031303130C43130303AB22020434C4541 522053435245454E20414E442050524F4D5054004217B04AAD4CD035323130C4 353130303AB247455420414E4F5448455220455845432046494C45204E414D45 009817BA4AAD4CD035323230C4353238303AB24946204E4F5420504F53534942 4C4520544F20575249544520544F2046494C452C205448454E20434C4F534520 495420414E442041534B20544F20434F4E54494E554500D717204EA232333AB9 33362C303ABAE7283729224552524F52202320224552522220494E204C494E45 202320224C3AB33AB220464154414C204552524F52002E183075973A54525545 D0313A46414C5345D0303A4424D0E72834293A454F4CD0C93836383A454F50D0 C93935383A8646494C4524283530293A86465424283530293A86464C24283530 293A864D41524B2428353029006518357546494C4524283029D022434F505920 414C4C2046494C455320223A465424283029D0222A2A2A223A464C24283029D0 222A220097183A75A2333ABA2220202020202020202020202045584543204649 4C45204D414B45522020202020202020202020202200C9184475A2353ABA2220 20202020464F522055534520574954482054484520434F505920434F4D4D414E 4420202020202200FB184E75A2373ABA22202020434F50595249474854202843 2920313938352053544556454E2048554D5041474520202022002D195875A239 3ABA2255534520544849532050524F4752414D20544F2047454E455241544520 455845432046494C455322005C196275BA2257484943482057494C4C20434F50 592046494C45532046524F4D204F4E4520202020202020202022008B196C75BA 224449524543544F525920544F20414E4F544845522E2054484520534F555243 45202020202020202200BA197175BA224449524543544F5259204D5553542042 45204F4E204C494E452E20464952535420454E544552202200E9197675BA2254 484520534F55524345204449524543544F52592E204954532046494C45532057 494C4C2042452200181A8075BA225052494E544544204F4E2054484520534352 45454E2E2053454C454354205448452046494C45532200471A8A75BA22594F55 2057414E5420544F20434F5059205749544820544845204152524F57204B4559 532020202200761A9475BA22414E44204D41524B205448454D20574954482054 4845205350414345204241522E2020202020202200A51A9E75BA225052455353 2052455455524E20414E4420454E544552205448452044455354494E4154494F 4E202200D41AA875BA225052454649582E204E45585420454E54455220544845 2046554C4C2050415448204E414D4520202200031BB275BA224F462054484520 455845432046494C452E20494620495420414C52454144592045584953545320 2200321BBC75BA22544845204E455720434F4D4D414E44532057494C4C204245 20414444454420544F2054484520202200611BC675BA22454E44204F46205448 45204558495354494E472046494C452E20202020202020202020202020202200 8E1BDA75A232343AB933362C303ABA22505245535320414E59204B455920544F 20424547494E223B3ABE412400971BE475AB3130300000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 0000000000000000000000000000000000000000000000000000000000000000 00000000000000000000000000000000000000000000000000000000000000001C BSAVE CMDS.BNY,A$1000,L$4F00 E00G