Home » Personal collection » Acorn ADFS disks » Electron » Utilities_1.ADF » LIBRARY/Basic/Recover
LIBRARY/Basic/Recover
This website contains an archive of files for the Acorn Electron, BBC Micro, Acorn Archimedes, Commodore 16 and Commodore 64 computers, which Dominic Ford has rescued from his private collection of floppy disks and cassettes.
Some of these files were originally commercial releases in the 1980s and 1990s, but they are now widely available online. I assume that copyright over them is no longer being asserted. If you own the copyright and would like files to be removed, please contact me.
Tape/disk: | Home » Personal collection » Acorn ADFS disks » Electron » Utilities_1.ADF |
Filename: | LIBRARY/Basic/Recover |
Read OK: | ✔ |
File size: | 122D bytes |
Load address: | 0800 |
Exec address: | 8023 |
Duplicates
There are 7 duplicate copies of this file in the archive:
- AEW website » acp_pres » acp_pres_3_5_discs_Electron-Adfs-E00_A-E00.adf » Library/BASIC/Recover
- AEW website » database » database_3_5_discs_Classic-Card-And-Board-Games-2_A-CCB2.adf » LIBRARY/BASIC/Recover
- Personal collection » Acorn ADFS disks » Electron » PRES_E00.ADF » Library/BASIC/Recover
- Personal collection » Acorn ADFS disks » Electron » PRES_E00_backup.ADF » Library/Basic/Recover
- Personal collection » Acorn ADFS disks » Electron » Utilities_1.ADF » LIBRARY/Basic/Recover
- Personal collection » Acorn ADFS disks » Electron » Utilities_2.ADF » LIBRARY/Basic/Recover
- Personal collection » Acorn ADFS disks » Greaseweazled » adfs_E00.adf » Library/BASIC/Recover
- Personal collection » Acorn ADFS disks » Greaseweazled » dfs_box04_disk01b_adfs_welcome_disk_interleaved.adf » Library/BASIC/Recover
File contents
5REM Copyright (c) 1984 ACORN 7REM RECOVER -- V1.00 -- H TYSON 10: 20MODE 3 30PROCINIT 40PRINT"I am about to use up all the free space on this disc by making files" 50PRINT"in directories $.LostFiles.A and B, so that if you've accidently deleted" 60PRINT"a file you wanted, you could well get it back! After you've found your file" 70PRINT"I will rename it to where you want and *destroy A.* and B.*" 80PRINT"The directories $.Lostfiles.A and B must already exist for me to work" 90PRINT"Press any key except Escape to proceed, Escape to quit.":Z%=GET 100: 110*OPT 1 1 120*DIR $.LostFiles 130PROCGetFS 140: 150IF EOFSL% ELSEPRINT"No free space on the disc":END 160FORI%=0TOEOFSL%-1 170PROCcreate(FLEN%(I%),I%) 180NEXTI% 190PRINT"The free space has now been used in files A.F0 to A.F40" 200PRINT"and B.F41 to B.F81" 210PRINT"I will now display the first sector of the first file I created." 220PRINT"Press SPACE to display the next sector of the current file." 230PRINT"Press N to go on to the next file." 240PRINT"Press P to return to the previous file." 250PRINT"Press - to go back a sector in the current file." 255PRINT"If the data you want is the whole file, press S then the name, then Return." 260PRINT"If you find that the data you want to recover is in the middle of" 270PRINT"the current file, you can Split the file, providing a new name for the" 280PRINT"section you wish to keep. You must find the start and end sectors" 290PRINT"of the part to keep within the current file. The end sector is" 300PRINT"inclusive, so if your data is in sectors 2,3,4 and 5 of the current" 310PRINT"file, Press S for Split, type in the new filename then answer 2 and 5" 320PRINT"to the questions: e.g." 330PRINT"Split to filename ? $.MyFiles.Important" 340PRINT"Start sector (Return for whole file) ? 2" 350PRINT"End sector ? 5" 360PRINT"Important WR (16) 00000000 00000000 00000400 00D12C" 370PRINT"File $.MyFiles.Important created." 380PRINT"Deleting other temporary files..." 390PRINT"ReRUN to search again (Y/N) ? No" 400PRINT">_" 410PRINT 420PRINT"Now, press a key to continue";:Z%=GET 430ON ERROR IF ERR=17:CLOSE#0:GOTO440ELSEMODE3:REPORT:PRINT" at line "ERL:END 440I%=0 450MODE3 460PRINT'"Q Quit, N Next/P Previous file, SPACE next/- previous sector, S Split file"' 470IF I%>40 H%=OPENIN("B.F"+STR$(I%)) ELSE H%=OPENIN("A.F"+STR$(I%)) 480IF H%ORI%ELSEPRINT"No files found - ended.":END 490IF H% ELSE PRINT"No more files found.":I%=I%-1:GOTO470 500VDU28,0,5,79,3:PRINT"Sector &"~PTR#H%DIV256" in current file. Length = &"~EXT#H%DIV256" sectors. File"I%SPC(10) 510VDU28,8,21,55,5:@%=3 520FORQ%=0TO255:PRINT~BGET#H%;:NEXT 530VDU28,60,21,75,5:PTR#H%=PTR#H%-256 540FORQ%=0TO255:Z%=BGET#H%:IF (Z%<32)OR(Z%>126):VDU&2E ELSEVDUZ% 550NEXT 560PTR#H%=PTR#H%-256 570VDU28,0,24,79,22 580ON INSTR(" -NnPpSsQq",GET$) GOTO 590,640,680,680,720,720,760,760,950,950 ELSEGOTO580 590REM Next Sector 600PTR#H%=PTR#H%+256 610IF EOF#H%:CLS:PRINT"No more data in this file.":PTR#H%=PTR#H%-256 620GOTO500 630: 640REM Prev sector 650CLS:IF PTR#H%:PTR#H%=PTR#H%-256 660GOTO500 670: 680REM Next file 690CLS:CLOSE#H%:I%=I%+1 700GOTO470 710: 720REM Prev.file 730CLS:CLOSE#H%:IF I%:I%=I%-1 740GOTO470 750: 760REM Split file 770MODE3 780INPUT"Split to filename ? "A$ 790INPUT"Start sector (Return for whole file) ? "B$ 800IFB$="":PRINT"Effectively just renaming the whole file.":S%=0:E%=EXT#H%DIV256:GOTO830 810S%=EVALB$:IFS%*256>EXT#H%:PRINT"Bad address.":GOTO790 820INPUT"End sector ? "B$:E%=EVALB$+1:IF(E%*256>EXT#H%)OR(S%>=E%):PRINT"Bad address.":GOTO820 830CLOSE#0 840$name%="A.F"+STR$I% 850IFI%>40:?data%=ASC"B" 860A%=6:Z%=USR(&FFDD):IF(Z%AND255)<>1:PRINT"Error during deletion - ended":CLOSE#0:END 870IFS%PROCcreate(S%,I%) 880$name%=A$:A%=7 890X%!2=0:X%!6=0:X%!10=0:X%!14=(E%-S%)*256 900Z%=USR(&FFDD) 910IF(Z%AND255)PRINT"Error during creation of "A$" - universe ended.":END 920: 930PRINT"File "A$" created.":TIME=0:REPEATUNTILTIME>50 940: 950CLOSE#0:MODE3:PRINT"Deleting other temporary files..." 960*FX 138,0,89 970*FX138,0,69 980*FX138,0,83 990*FX138,0,13 1000*DES.A.* 1010IF OPENIN"B.*"CLOSE#0ELSEGOTO1070 1020FX 138,0,89 1030*FX138,0,69 1040*FX138,0,83 1050*FX138,0,13 1060*DES.B.* 1070INPUT"ReRUN to search again (Y/N) ? "A$ 1080IFINSTR("Yy",LEFT$(A$,1))RUN 1090END 1100: 1110: 1120DEF PROCINIT 1130@%=0 1140DIM ADD%(175),FLEN%(175) 1150DIM X% 20,name% 20 1160DIM MAP% 512 1170Y%=X% DIV 256 1180ENDPROC 1190: 1200DEF PROCGetFS 1210REM Get the FSmap into ADD%(),FLEN%(),EOFSL% 1220PROCGetFSfromDisc 1230: 1240EOFSL%=(MAP%?&1FE)DIV3 1250FORI%=0 TO EOFSL%-1 1260ADD%(I%)=(!(MAP%+I%*3)AND&FFFFFF) 1270FLEN%(I%)=(!(MAP%+256+I%*3)AND&FFFFFF) 1280NEXT 1290ENDPROC 1300: 1310DEF PROCMAP 1320PRINT"Free Space Map" 1330PRINT"Address : Length" 1340@%=6 1350FOR I%=0 TO EOFSL%-1 1360PRINT~ADD%(I%);" : ";~FLEN%(I%) 1370NEXT 1380ENDPROC 1390: 1400: 1410DEF PROCGetFSfromDisc 1420REM Get the FSmap into MAP% as kept on the disc 1430A%=&72 1440?X%=0 1450X%!1=MAP% 1460X%!5=8 1470X%!9=2 1480CALL &FFF1 1490IF ?X% PRINT"Disc error "~?X%" while reading map - ended.":END 1500ENDPROC 1510: 1520: 1530: 1540DEF PROCcreate(L%,N%) 1550$name%="A.F"+STR$(N%) 1560IF N%>40 THEN ?name%=ASC"B" 1570!X%=name% 1580A%=7 1590X%!2=0 1600X%!6=0 1610X%!10=0 1620X%!14=L%*256 1630Z%=USR(&FFDD) 1640IF (Z%AND255):PRINT"Error during creation - universe ended!":END 1650ENDPROC
� Copyright (c) 1984 ACORN !� RECOVER -- V1.00 -- H TYSON : � 3 �INIT (K�"I am about to use up all the free space on this disc by making files" 2P�"in directories $.LostFiles.A and B, so that if you've accidently deleted" <S�"a file you wanted, you could well get it back! After you've found your file" FB�"I will rename it to where you want and *destroy A.* and B.*" PL�"The directories $.Lostfiles.A and B must already exist for me to work" ZC�"Press any key except Escape to proceed, Escape to quit.":Z%=� d: n*OPT 1 1 x*DIR $.LostFiles � �GetFS �: �,� EOFSL% ��"No free space on the disc":� ��I%=0�EOFSL%-1 ��create(FLEN%(I%),I%) ��I% �B�"The free space has now been used in files A.F0 to A.F40" ��"and B.F41 to B.F81" �H�"I will now display the first sector of the first file I created." �D�"Press SPACE to display the next sector of the current file." �)�"Press N to go on to the next file." �.�"Press P to return to the previous file." �=�"Press - to go back a sector in the current file." �R�"If the data you want is the whole file, press S then the name, then Return." J�"If you find that the data you want to recover is in the middle of" M�"the current file, you can Split the file, providing a new name for the" I�"section you wish to keep. You must find the start and end sectors" "H�"of the part to keep within the current file. The end sector is" ,J�"inclusive, so if your data is in sectors 2,3,4 and 5 of the current" 6L�"file, Press S for Split, type in the new filename then answer 2 and 5" @�"to the questions: e.g." J.�"Split to filename ? $.MyFiles.Important" T/�"Start sector (Return for whole file) ? 2" ^�"End sector ? 5" h?�"Important WR (16) 00000000 00000000 00000400 00D12C" r(�"File $.MyFiles.Important created." |(�"Deleting other temporary files..." �'�"ReRUN to search again (Y/N) ? No" � �">_" �� �)�"Now, press a key to continue";:Z%=� �-� � � �=17:�#0:�txA��3:�:�" at line "�:� �I%=0 ��3 �S�'"Q Quit, N Next/P Previous file, SPACE next/- previous sector, S Split file"' �1� I%>40 H%=�("B.F"+�(I%)) � H%=�("A.F"+�(I%)) �(� H%�I%��"No files found - ended.":� �0� H% � �"No more files found.":I%=I%-1:�dVA �e�28,0,5,79,3:�"Sector &"~�#H%�256" in current file. Length = &"~�#H%�256" sectors. File"I%�(10) ��28,8,21,55,5:@%=3 �Q%=0�255:�~�#H%;:� �28,60,21,75,5:�#H%=�#H%-256 2�Q%=0�255:Z%=�#H%:� (Z%<32)�(Z%>126):�&2E ��Z% &� 0�#H%=�#H%-256 :�28,0,24,79,22 DQ� �" -NnPpSsQq",�) � �DNB,�t@B,�thB,�thB,�dPB,�dPB,�dxB,�dxB,�tvC,�tvC ��DDB N� Next Sector X�#H%=�#H%+256 b8� �#H%:�:�"No more data in this file.":�#H%=�#H%-256 l �dtA v: �� Prev sector ��:� �#H%:�#H%=�#H%-256 � �dtA �: �� Next file ��:�#H%:I%=I%+1 � �dVA �: �� Prev.file ��:�#H%:� I%:I%=I%-1 � �dVA �: �� Split file �3 �"Split to filename ? "A$ 0�"Start sector (Return for whole file) ? "B$ N�B$="":�"Effectively just renaming the whole file.":S%=0:E%=�#H%�256:�T~C *-S%=�B$:�S%*256>�#H%:�"Bad address.":�TVC 4O�"End sector ? "B$:E%=�B$+1:�(E%*256>�#H%)�(S%>=E%):�"Bad address.":�TtC >�#0 H$name%="A.F"+�I% R�I%>40:?data%=�"B" \HA%=6:Z%=�(&FFDD):�(Z%�255)<>1:�"Error during deletion - ended":�#0:� f�S%�create(S%,I%) p$name%=A$:A%=7 z+X%!2=0:X%!6=0:X%!10=0:X%!14=(E%-S%)*256 �Z%=�(&FFDD) �A�(Z%�255)�"Error during creation of "A$" - universe ended.":� �: �$�"File "A$" created.":�=0:���>50 �: �/�#0:�3:�"Deleting other temporary files..." �*FX 138,0,89 �*FX138,0,69 �*FX138,0,83 �*FX138,0,13 �*DES.A.* �� �"B.*"�#0��TnD �FX 138,0,89 *FX138,0,69 *FX138,0,83 *FX138,0,13 $*DES.B.* .'�"ReRUN to search again (Y/N) ? "A$ 8�"Yy",�A$,1))� B� L: V: `� �INIT j@%=0 t� ADD%(175),FLEN%(175) ~� X% 20,name% 20 �� MAP% 512 �Y%=X% � 256 �� �: �� �GetFS �.� Get the FSmap into ADD%(),FLEN%(),EOFSL% ��GetFSfromDisc �: �EOFSL%=(MAP%?&1FE)�3 ��I%=0 � EOFSL%-1 �#ADD%(I%)=(!(MAP%+I%*3)�&FFFFFF) �(FLEN%(I%)=(!(MAP%+256+I%*3)�&FFFFFF) � � : � �MAP (�"Free Space Map" 2�"Address : Length" <@%=6 F� I%=0 � EOFSL%-1 P!�~ADD%(I%);" : ";~FLEN%(I%) Z� d� n: x: �� �GetFSfromDisc �1� Get the FSmap into MAP% as kept on the disc � A%=&72 � ?X%=0 � X%!1=MAP% � X%!5=8 � X%!9=2 �� &FFF1 �;� ?X% �"Disc error "~?X%" while reading map - ended.":� �� �: �: �: � �create(L%,N%) $name%="A.F"+�(N%) � N%>40 � ?name%=�"B" " !X%=name% ,A%=7 6 X%!2=0 @ X%!6=0 JX%!10=0 TX%!14=L%*256 ^Z%=�(&FFDD) h;� (Z%�255):�"Error during creation - universe ended!":� r� �
00000000 0d 00 05 1e f4 20 43 6f 70 79 72 69 67 68 74 20 |..... Copyright | 00000010 28 63 29 20 31 39 38 34 20 41 43 4f 52 4e 0d 00 |(c) 1984 ACORN..| 00000020 07 21 f4 20 52 45 43 4f 56 45 52 20 2d 2d 20 56 |.!. RECOVER -- V| 00000030 31 2e 30 30 20 2d 2d 20 48 20 54 59 53 4f 4e 0d |1.00 -- H TYSON.| 00000040 00 0a 05 3a 0d 00 14 07 eb 20 33 0d 00 1e 09 f2 |...:..... 3.....| 00000050 49 4e 49 54 0d 00 28 4b f1 22 49 20 61 6d 20 61 |INIT..(K."I am a| 00000060 62 6f 75 74 20 74 6f 20 75 73 65 20 75 70 20 61 |bout to use up a| 00000070 6c 6c 20 74 68 65 20 66 72 65 65 20 73 70 61 63 |ll the free spac| 00000080 65 20 6f 6e 20 74 68 69 73 20 64 69 73 63 20 62 |e on this disc b| 00000090 79 20 6d 61 6b 69 6e 67 20 66 69 6c 65 73 22 0d |y making files".| 000000a0 00 32 50 f1 22 69 6e 20 64 69 72 65 63 74 6f 72 |.2P."in director| 000000b0 69 65 73 20 24 2e 4c 6f 73 74 46 69 6c 65 73 2e |ies $.LostFiles.| 000000c0 41 20 61 6e 64 20 42 2c 20 20 73 6f 20 74 68 61 |A and B, so tha| 000000d0 74 20 69 66 20 79 6f 75 27 76 65 20 61 63 63 69 |t if you've acci| 000000e0 64 65 6e 74 6c 79 20 64 65 6c 65 74 65 64 22 0d |dently deleted".| 000000f0 00 3c 53 f1 22 61 20 66 69 6c 65 20 79 6f 75 20 |.<S."a file you | 00000100 77 61 6e 74 65 64 2c 20 79 6f 75 20 63 6f 75 6c |wanted, you coul| 00000110 64 20 77 65 6c 6c 20 67 65 74 20 69 74 20 62 61 |d well get it ba| 00000120 63 6b 21 20 20 41 66 74 65 72 20 79 6f 75 27 76 |ck! After you'v| 00000130 65 20 66 6f 75 6e 64 20 79 6f 75 72 20 66 69 6c |e found your fil| 00000140 65 22 0d 00 46 42 f1 22 49 20 77 69 6c 6c 20 72 |e"..FB."I will r| 00000150 65 6e 61 6d 65 20 69 74 20 74 6f 20 77 68 65 72 |ename it to wher| 00000160 65 20 79 6f 75 20 77 61 6e 74 20 61 6e 64 20 2a |e you want and *| 00000170 64 65 73 74 72 6f 79 20 41 2e 2a 20 61 6e 64 20 |destroy A.* and | 00000180 42 2e 2a 22 0d 00 50 4c f1 22 54 68 65 20 64 69 |B.*"..PL."The di| 00000190 72 65 63 74 6f 72 69 65 73 20 24 2e 4c 6f 73 74 |rectories $.Lost| 000001a0 66 69 6c 65 73 2e 41 20 61 6e 64 20 42 20 6d 75 |files.A and B mu| 000001b0 73 74 20 61 6c 72 65 61 64 79 20 65 78 69 73 74 |st already exist| 000001c0 20 66 6f 72 20 6d 65 20 74 6f 20 77 6f 72 6b 22 | for me to work"| 000001d0 0d 00 5a 43 f1 22 50 72 65 73 73 20 61 6e 79 20 |..ZC."Press any | 000001e0 6b 65 79 20 65 78 63 65 70 74 20 45 73 63 61 70 |key except Escap| 000001f0 65 20 74 6f 20 70 72 6f 63 65 65 64 2c 20 45 73 |e to proceed, Es| 00000200 63 61 70 65 20 74 6f 20 71 75 69 74 2e 22 3a 5a |cape to quit.":Z| 00000210 25 3d a5 0d 00 64 05 3a 0d 00 6e 0c 2a 4f 50 54 |%=...d.:..n.*OPT| 00000220 20 31 20 31 0d 00 78 14 2a 44 49 52 20 24 2e 4c | 1 1..x.*DIR $.L| 00000230 6f 73 74 46 69 6c 65 73 0d 00 82 0a f2 47 65 74 |ostFiles.....Get| 00000240 46 53 0d 00 8c 05 3a 0d 00 96 2c e7 20 45 4f 46 |FS....:...,. EOF| 00000250 53 4c 25 20 8b f1 22 4e 6f 20 66 72 65 65 20 73 |SL% .."No free s| 00000260 70 61 63 65 20 6f 6e 20 74 68 65 20 64 69 73 63 |pace on the disc| 00000270 22 3a e0 0d 00 a0 12 e3 49 25 3d 30 b8 45 4f 46 |":......I%=0.EOF| 00000280 53 4c 25 2d 31 0d 00 aa 19 f2 63 72 65 61 74 65 |SL%-1.....create| 00000290 28 46 4c 45 4e 25 28 49 25 29 2c 49 25 29 0d 00 |(FLEN%(I%),I%)..| 000002a0 b4 07 ed 49 25 0d 00 be 42 f1 22 54 68 65 20 20 |...I%...B."The | 000002b0 66 72 65 65 20 73 70 61 63 65 20 20 68 61 73 20 |free space has | 000002c0 6e 6f 77 20 20 62 65 65 6e 20 75 73 65 64 20 20 |now been used | 000002d0 69 6e 20 66 69 6c 65 73 20 41 2e 46 30 20 74 6f |in files A.F0 to| 000002e0 20 41 2e 46 34 30 22 0d 00 c8 19 f1 22 61 6e 64 | A.F40"....."and| 000002f0 20 42 2e 46 34 31 20 74 6f 20 42 2e 46 38 31 22 | B.F41 to B.F81"| 00000300 0d 00 d2 48 f1 22 49 20 77 69 6c 6c 20 6e 6f 77 |...H."I will now| 00000310 20 64 69 73 70 6c 61 79 20 74 68 65 20 66 69 72 | display the fir| 00000320 73 74 20 73 65 63 74 6f 72 20 6f 66 20 20 74 68 |st sector of th| 00000330 65 20 66 69 72 73 74 20 66 69 6c 65 20 49 20 63 |e first file I c| 00000340 72 65 61 74 65 64 2e 22 0d 00 dc 44 f1 22 50 72 |reated."...D."Pr| 00000350 65 73 73 20 20 53 50 41 43 45 20 20 74 6f 20 64 |ess SPACE to d| 00000360 69 73 70 6c 61 79 20 74 68 65 20 6e 65 78 74 20 |isplay the next | 00000370 73 65 63 74 6f 72 20 6f 66 20 74 68 65 20 63 75 |sector of the cu| 00000380 72 72 65 6e 74 20 66 69 6c 65 2e 22 0d 00 e6 29 |rrent file."...)| 00000390 f1 22 50 72 65 73 73 20 4e 20 74 6f 20 67 6f 20 |."Press N to go | 000003a0 6f 6e 20 74 6f 20 74 68 65 20 6e 65 78 74 20 66 |on to the next f| 000003b0 69 6c 65 2e 22 0d 00 f0 2e f1 22 50 72 65 73 73 |ile."....."Press| 000003c0 20 50 20 74 6f 20 72 65 74 75 72 6e 20 74 6f 20 | P to return to | 000003d0 74 68 65 20 70 72 65 76 69 6f 75 73 20 66 69 6c |the previous fil| 000003e0 65 2e 22 0d 00 fa 3d f1 22 50 72 65 73 73 20 2d |e."...=."Press -| 000003f0 20 74 6f 20 20 67 6f 20 20 62 61 63 6b 20 20 61 | to go back a| 00000400 20 20 73 65 63 74 6f 72 20 20 69 6e 20 74 68 65 | sector in the| 00000410 20 63 75 72 72 65 6e 74 20 66 69 6c 65 2e 22 20 | current file." | 00000420 0d 00 ff 52 f1 22 49 66 20 74 68 65 20 64 61 74 |...R."If the dat| 00000430 61 20 79 6f 75 20 77 61 6e 74 20 69 73 20 74 68 |a you want is th| 00000440 65 20 77 68 6f 6c 65 20 66 69 6c 65 2c 20 70 72 |e whole file, pr| 00000450 65 73 73 20 53 20 74 68 65 6e 20 74 68 65 20 6e |ess S then the n| 00000460 61 6d 65 2c 20 74 68 65 6e 20 52 65 74 75 72 6e |ame, then Return| 00000470 2e 22 0d 01 04 4a f1 22 49 66 20 79 6f 75 20 66 |."...J."If you f| 00000480 69 6e 64 20 74 68 61 74 20 74 68 65 20 20 64 61 |ind that the da| 00000490 74 61 20 79 6f 75 20 77 61 6e 74 20 20 74 6f 20 |ta you want to | 000004a0 72 65 63 6f 76 65 72 20 69 73 20 69 6e 20 74 68 |recover is in th| 000004b0 65 20 6d 69 64 64 6c 65 20 6f 66 22 0d 01 0e 4d |e middle of"...M| 000004c0 f1 22 74 68 65 20 63 75 72 72 65 6e 74 20 66 69 |."the current fi| 000004d0 6c 65 2c 20 79 6f 75 20 63 61 6e 20 53 70 6c 69 |le, you can Spli| 000004e0 74 20 74 68 65 20 66 69 6c 65 2c 20 70 72 6f 76 |t the file, prov| 000004f0 69 64 69 6e 67 20 61 20 6e 65 77 20 6e 61 6d 65 |iding a new name| 00000500 20 66 6f 72 20 74 68 65 22 0d 01 18 49 f1 22 73 | for the"...I."s| 00000510 65 63 74 69 6f 6e 20 79 6f 75 20 77 69 73 68 20 |ection you wish | 00000520 74 6f 20 6b 65 65 70 2e 20 20 59 6f 75 20 6d 75 |to keep. You mu| 00000530 73 74 20 66 69 6e 64 20 74 68 65 20 73 74 61 72 |st find the star| 00000540 74 20 61 6e 64 20 65 6e 64 20 73 65 63 74 6f 72 |t and end sector| 00000550 73 22 0d 01 22 48 f1 22 6f 66 20 74 68 65 20 70 |s".."H."of the p| 00000560 61 72 74 20 74 6f 20 6b 65 65 70 20 20 77 69 74 |art to keep wit| 00000570 68 69 6e 20 20 74 68 65 20 63 75 72 72 65 6e 74 |hin the current| 00000580 20 66 69 6c 65 2e 20 20 54 68 65 20 65 6e 64 20 | file. The end | 00000590 73 65 63 74 6f 72 20 69 73 22 0d 01 2c 4a f1 22 |sector is"..,J."| 000005a0 69 6e 63 6c 75 73 69 76 65 2c 20 73 6f 20 69 66 |inclusive, so if| 000005b0 20 79 6f 75 72 20 64 61 74 61 20 69 73 20 69 6e | your data is in| 000005c0 20 73 65 63 74 6f 72 73 20 32 2c 33 2c 34 20 61 | sectors 2,3,4 a| 000005d0 6e 64 20 35 20 6f 66 20 74 68 65 20 63 75 72 72 |nd 5 of the curr| 000005e0 65 6e 74 22 0d 01 36 4c f1 22 66 69 6c 65 2c 20 |ent"..6L."file, | 000005f0 50 72 65 73 73 20 53 20 66 6f 72 20 53 70 6c 69 |Press S for Spli| 00000600 74 2c 20 74 79 70 65 20 69 6e 20 74 68 65 20 6e |t, type in the n| 00000610 65 77 20 66 69 6c 65 6e 61 6d 65 20 74 68 65 6e |ew filename then| 00000620 20 61 6e 73 77 65 72 20 32 20 61 6e 64 20 35 22 | answer 2 and 5"| 00000630 0d 01 40 1d f1 22 74 6f 20 74 68 65 20 71 75 65 |..@.."to the que| 00000640 73 74 69 6f 6e 73 3a 20 65 2e 67 2e 22 0d 01 4a |stions: e.g."..J| 00000650 2e f1 22 53 70 6c 69 74 20 74 6f 20 66 69 6c 65 |.."Split to file| 00000660 6e 61 6d 65 20 3f 20 24 2e 4d 79 46 69 6c 65 73 |name ? $.MyFiles| 00000670 2e 49 6d 70 6f 72 74 61 6e 74 22 0d 01 54 2f f1 |.Important"..T/.| 00000680 22 53 74 61 72 74 20 73 65 63 74 6f 72 20 28 52 |"Start sector (R| 00000690 65 74 75 72 6e 20 66 6f 72 20 77 68 6f 6c 65 20 |eturn for whole | 000006a0 66 69 6c 65 29 20 3f 20 32 22 0d 01 5e 17 f1 22 |file) ? 2"..^.."| 000006b0 45 6e 64 20 73 65 63 74 6f 72 20 20 20 3f 20 35 |End sector ? 5| 000006c0 22 0d 01 68 3f f1 22 49 6d 70 6f 72 74 61 6e 74 |"..h?."Important| 000006d0 20 20 57 52 20 28 31 36 29 20 20 30 30 30 30 30 | WR (16) 00000| 000006e0 30 30 30 20 20 30 30 30 30 30 30 30 30 20 20 30 |000 00000000 0| 000006f0 30 30 30 30 34 30 30 20 20 30 30 44 31 32 43 22 |0000400 00D12C"| 00000700 0d 01 72 28 f1 22 46 69 6c 65 20 24 2e 4d 79 46 |..r(."File $.MyF| 00000710 69 6c 65 73 2e 49 6d 70 6f 72 74 61 6e 74 20 63 |iles.Important c| 00000720 72 65 61 74 65 64 2e 22 0d 01 7c 28 f1 22 44 65 |reated."..|(."De| 00000730 6c 65 74 69 6e 67 20 6f 74 68 65 72 20 74 65 6d |leting other tem| 00000740 70 6f 72 61 72 79 20 66 69 6c 65 73 2e 2e 2e 22 |porary files..."| 00000750 0d 01 86 27 f1 22 52 65 52 55 4e 20 74 6f 20 73 |...'."ReRUN to s| 00000760 65 61 72 63 68 20 61 67 61 69 6e 20 28 59 2f 4e |earch again (Y/N| 00000770 29 20 3f 20 4e 6f 22 0d 01 90 09 f1 22 3e 5f 22 |) ? No".....">_"| 00000780 0d 01 9a 05 f1 0d 01 a4 29 f1 22 4e 6f 77 2c 20 |........)."Now, | 00000790 70 72 65 73 73 20 61 20 6b 65 79 20 74 6f 20 63 |press a key to c| 000007a0 6f 6e 74 69 6e 75 65 22 3b 3a 5a 25 3d a5 0d 01 |ontinue";:Z%=...| 000007b0 ae 2d ee 20 85 20 e7 20 9f 3d 31 37 3a d9 23 30 |.-. . . .=17:.#0| 000007c0 3a e5 8d 74 78 41 8b eb 33 3a f6 3a f1 22 20 61 |:..txA..3:.:." a| 000007d0 74 20 6c 69 6e 65 20 22 9e 3a e0 0d 01 b8 08 49 |t line ".:.....I| 000007e0 25 3d 30 0d 01 c2 06 eb 33 0d 01 cc 53 f1 27 22 |%=0.....3...S.'"| 000007f0 51 20 51 75 69 74 2c 20 4e 20 4e 65 78 74 2f 50 |Q Quit, N Next/P| 00000800 20 50 72 65 76 69 6f 75 73 20 66 69 6c 65 2c 20 | Previous file, | 00000810 53 50 41 43 45 20 6e 65 78 74 2f 2d 20 70 72 65 |SPACE next/- pre| 00000820 76 69 6f 75 73 20 73 65 63 74 6f 72 2c 20 53 20 |vious sector, S | 00000830 53 70 6c 69 74 20 66 69 6c 65 22 27 0d 01 d6 31 |Split file"'...1| 00000840 e7 20 49 25 3e 34 30 20 48 25 3d 8e 28 22 42 2e |. I%>40 H%=.("B.| 00000850 46 22 2b c3 28 49 25 29 29 20 8b 20 48 25 3d 8e |F"+.(I%)) . H%=.| 00000860 28 22 41 2e 46 22 2b c3 28 49 25 29 29 0d 01 e0 |("A.F"+.(I%))...| 00000870 28 e7 20 48 25 84 49 25 8b f1 22 4e 6f 20 66 69 |(. H%.I%.."No fi| 00000880 6c 65 73 20 66 6f 75 6e 64 20 2d 20 65 6e 64 65 |les found - ende| 00000890 64 2e 22 3a e0 0d 01 ea 30 e7 20 48 25 20 8b 20 |d.":....0. H% . | 000008a0 f1 22 4e 6f 20 6d 6f 72 65 20 66 69 6c 65 73 20 |."No more files | 000008b0 66 6f 75 6e 64 2e 22 3a 49 25 3d 49 25 2d 31 3a |found.":I%=I%-1:| 000008c0 e5 8d 64 56 41 0d 01 f4 65 ef 32 38 2c 30 2c 35 |..dVA...e.28,0,5| 000008d0 2c 37 39 2c 33 3a f1 22 53 65 63 74 6f 72 20 26 |,79,3:."Sector &| 000008e0 22 7e 8f 23 48 25 81 32 35 36 22 20 69 6e 20 63 |"~.#H%.256" in c| 000008f0 75 72 72 65 6e 74 20 66 69 6c 65 2e 20 20 4c 65 |urrent file. Le| 00000900 6e 67 74 68 20 3d 20 26 22 7e a2 23 48 25 81 32 |ngth = &"~.#H%.2| 00000910 35 36 22 20 73 65 63 74 6f 72 73 2e 20 20 46 69 |56" sectors. Fi| 00000920 6c 65 22 49 25 89 28 31 30 29 0d 01 fe 16 ef 32 |le"I%.(10).....2| 00000930 38 2c 38 2c 32 31 2c 35 35 2c 35 3a 40 25 3d 33 |8,8,21,55,5:@%=3| 00000940 0d 02 08 17 e3 51 25 3d 30 b8 32 35 35 3a f1 7e |.....Q%=0.255:.~| 00000950 9a 23 48 25 3b 3a ed 0d 02 12 20 ef 32 38 2c 36 |.#H%;:.... .28,6| 00000960 30 2c 32 31 2c 37 35 2c 35 3a cf 23 48 25 3d 8f |0,21,75,5:.#H%=.| 00000970 23 48 25 2d 32 35 36 0d 02 1c 32 e3 51 25 3d 30 |#H%-256...2.Q%=0| 00000980 b8 32 35 35 3a 5a 25 3d 9a 23 48 25 3a e7 20 28 |.255:Z%=.#H%:. (| 00000990 5a 25 3c 33 32 29 84 28 5a 25 3e 31 32 36 29 3a |Z%<32).(Z%>126):| 000009a0 ef 26 32 45 20 8b ef 5a 25 0d 02 26 05 ed 0d 02 |.&2E ..Z%..&....| 000009b0 30 11 cf 23 48 25 3d 8f 23 48 25 2d 32 35 36 0d |0..#H%=.#H%-256.| 000009c0 02 3a 12 ef 32 38 2c 30 2c 32 34 2c 37 39 2c 32 |.:..28,0,24,79,2| 000009d0 32 0d 02 44 51 ee 20 a7 22 20 2d 4e 6e 50 70 53 |2..DQ. ." -NnPpS| 000009e0 73 51 71 22 2c be 29 20 e5 20 8d 44 4e 42 2c 8d |sQq",.) . .DNB,.| 000009f0 74 40 42 2c 8d 74 68 42 2c 8d 74 68 42 2c 8d 64 |t@B,.thB,.thB,.d| 00000a00 50 42 2c 8d 64 50 42 2c 8d 64 78 42 2c 8d 64 78 |PB,.dPB,.dxB,.dx| 00000a10 42 2c 8d 74 76 43 2c 8d 74 76 43 20 8b e5 8d 44 |B,.tvC,.tvC ...D| 00000a20 44 42 0d 02 4e 11 f4 20 4e 65 78 74 20 53 65 63 |DB..N.. Next Sec| 00000a30 74 6f 72 0d 02 58 11 cf 23 48 25 3d 8f 23 48 25 |tor..X..#H%=.#H%| 00000a40 2b 32 35 36 0d 02 62 38 e7 20 c5 23 48 25 3a db |+256..b8. .#H%:.| 00000a50 3a f1 22 4e 6f 20 6d 6f 72 65 20 64 61 74 61 20 |:."No more data | 00000a60 69 6e 20 74 68 69 73 20 66 69 6c 65 2e 22 3a cf |in this file.":.| 00000a70 23 48 25 3d 8f 23 48 25 2d 32 35 36 0d 02 6c 09 |#H%=.#H%-256..l.| 00000a80 e5 8d 64 74 41 0d 02 76 05 3a 0d 02 80 11 f4 20 |..dtA..v.:..... | 00000a90 50 72 65 76 20 73 65 63 74 6f 72 0d 02 8a 1a db |Prev sector.....| 00000aa0 3a e7 20 8f 23 48 25 3a cf 23 48 25 3d 8f 23 48 |:. .#H%:.#H%=.#H| 00000ab0 25 2d 32 35 36 0d 02 94 09 e5 8d 64 74 41 0d 02 |%-256......dtA..| 00000ac0 9e 05 3a 0d 02 a8 0f f4 20 4e 65 78 74 20 66 69 |..:..... Next fi| 00000ad0 6c 65 0d 02 b2 12 db 3a d9 23 48 25 3a 49 25 3d |le.....:.#H%:I%=| 00000ae0 49 25 2b 31 0d 02 bc 09 e5 8d 64 56 41 0d 02 c6 |I%+1......dVA...| 00000af0 05 3a 0d 02 d0 0f f4 20 50 72 65 76 2e 66 69 6c |.:..... Prev.fil| 00000b00 65 0d 02 da 17 db 3a d9 23 48 25 3a e7 20 49 25 |e.....:.#H%:. I%| 00000b10 3a 49 25 3d 49 25 2d 31 0d 02 e4 09 e5 8d 64 56 |:I%=I%-1......dV| 00000b20 41 0d 02 ee 05 3a 0d 02 f8 10 f4 20 53 70 6c 69 |A....:..... Spli| 00000b30 74 20 66 69 6c 65 0d 03 02 06 eb 33 0d 03 0c 1d |t file.....3....| 00000b40 e8 22 53 70 6c 69 74 20 74 6f 20 66 69 6c 65 6e |."Split to filen| 00000b50 61 6d 65 20 3f 20 22 41 24 0d 03 16 30 e8 22 53 |ame ? "A$...0."S| 00000b60 74 61 72 74 20 73 65 63 74 6f 72 20 28 52 65 74 |tart sector (Ret| 00000b70 75 72 6e 20 66 6f 72 20 77 68 6f 6c 65 20 66 69 |urn for whole fi| 00000b80 6c 65 29 20 3f 20 22 42 24 0d 03 20 4e e7 42 24 |le) ? "B$.. N.B$| 00000b90 3d 22 22 3a f1 22 45 66 66 65 63 74 69 76 65 6c |="":."Effectivel| 00000ba0 79 20 6a 75 73 74 20 72 65 6e 61 6d 69 6e 67 20 |y just renaming | 00000bb0 74 68 65 20 77 68 6f 6c 65 20 66 69 6c 65 2e 22 |the whole file."| 00000bc0 3a 53 25 3d 30 3a 45 25 3d a2 23 48 25 81 32 35 |:S%=0:E%=.#H%.25| 00000bd0 36 3a e5 8d 54 7e 43 0d 03 2a 2d 53 25 3d a0 42 |6:..T~C..*-S%=.B| 00000be0 24 3a e7 53 25 2a 32 35 36 3e a2 23 48 25 3a f1 |$:.S%*256>.#H%:.| 00000bf0 22 42 61 64 20 61 64 64 72 65 73 73 2e 22 3a e5 |"Bad address.":.| 00000c00 8d 54 56 43 0d 03 34 4f e8 22 45 6e 64 20 73 65 |.TVC..4O."End se| 00000c10 63 74 6f 72 20 20 20 3f 20 22 42 24 3a 45 25 3d |ctor ? "B$:E%=| 00000c20 a0 42 24 2b 31 3a e7 28 45 25 2a 32 35 36 3e a2 |.B$+1:.(E%*256>.| 00000c30 23 48 25 29 84 28 53 25 3e 3d 45 25 29 3a f1 22 |#H%).(S%>=E%):."| 00000c40 42 61 64 20 61 64 64 72 65 73 73 2e 22 3a e5 8d |Bad address.":..| 00000c50 54 74 43 0d 03 3e 07 d9 23 30 0d 03 48 14 24 6e |TtC..>..#0..H.$n| 00000c60 61 6d 65 25 3d 22 41 2e 46 22 2b c3 49 25 0d 03 |ame%="A.F"+.I%..| 00000c70 52 16 e7 49 25 3e 34 30 3a 3f 64 61 74 61 25 3d |R..I%>40:?data%=| 00000c80 97 22 42 22 0d 03 5c 48 41 25 3d 36 3a 5a 25 3d |."B"..\HA%=6:Z%=| 00000c90 ba 28 26 46 46 44 44 29 3a e7 28 5a 25 80 32 35 |.(&FFDD):.(Z%.25| 00000ca0 35 29 3c 3e 31 3a f1 22 45 72 72 6f 72 20 64 75 |5)<>1:."Error du| 00000cb0 72 69 6e 67 20 64 65 6c 65 74 69 6f 6e 20 2d 20 |ring deletion - | 00000cc0 65 6e 64 65 64 22 3a d9 23 30 3a e0 0d 03 66 15 |ended":.#0:...f.| 00000cd0 e7 53 25 f2 63 72 65 61 74 65 28 53 25 2c 49 25 |.S%.create(S%,I%| 00000ce0 29 0d 03 70 12 24 6e 61 6d 65 25 3d 41 24 3a 41 |)..p.$name%=A$:A| 00000cf0 25 3d 37 0d 03 7a 2b 58 25 21 32 3d 30 3a 58 25 |%=7..z+X%!2=0:X%| 00000d00 21 36 3d 30 3a 58 25 21 31 30 3d 30 3a 58 25 21 |!6=0:X%!10=0:X%!| 00000d10 31 34 3d 28 45 25 2d 53 25 29 2a 32 35 36 0d 03 |14=(E%-S%)*256..| 00000d20 84 0f 5a 25 3d ba 28 26 46 46 44 44 29 0d 03 8e |..Z%=.(&FFDD)...| 00000d30 41 e7 28 5a 25 80 32 35 35 29 f1 22 45 72 72 6f |A.(Z%.255)."Erro| 00000d40 72 20 64 75 72 69 6e 67 20 63 72 65 61 74 69 6f |r during creatio| 00000d50 6e 20 6f 66 20 22 41 24 22 20 2d 20 75 6e 69 76 |n of "A$" - univ| 00000d60 65 72 73 65 20 65 6e 64 65 64 2e 22 3a e0 0d 03 |erse ended.":...| 00000d70 98 05 3a 0d 03 a2 24 f1 22 46 69 6c 65 20 22 41 |..:...$."File "A| 00000d80 24 22 20 63 72 65 61 74 65 64 2e 22 3a d1 3d 30 |$" created.":.=0| 00000d90 3a f5 fd 91 3e 35 30 0d 03 ac 05 3a 0d 03 b6 2f |:...>50....:.../| 00000da0 d9 23 30 3a eb 33 3a f1 22 44 65 6c 65 74 69 6e |.#0:.3:."Deletin| 00000db0 67 20 6f 74 68 65 72 20 74 65 6d 70 6f 72 61 72 |g other temporar| 00000dc0 79 20 66 69 6c 65 73 2e 2e 2e 22 0d 03 c0 10 2a |y files..."....*| 00000dd0 46 58 20 31 33 38 2c 30 2c 38 39 0d 03 ca 0f 2a |FX 138,0,89....*| 00000de0 46 58 31 33 38 2c 30 2c 36 39 0d 03 d4 0f 2a 46 |FX138,0,69....*F| 00000df0 58 31 33 38 2c 30 2c 38 33 0d 03 de 0f 2a 46 58 |X138,0,83....*FX| 00000e00 31 33 38 2c 30 2c 31 33 0d 03 e8 0c 2a 44 45 53 |138,0,13....*DES| 00000e10 2e 41 2e 2a 0d 03 f2 15 e7 20 8e 22 42 2e 2a 22 |.A.*..... ."B.*"| 00000e20 d9 23 30 8b e5 8d 54 6e 44 0d 03 fc 0f 46 58 20 |.#0...TnD....FX | 00000e30 31 33 38 2c 30 2c 38 39 0d 04 06 0f 2a 46 58 31 |138,0,89....*FX1| 00000e40 33 38 2c 30 2c 36 39 0d 04 10 0f 2a 46 58 31 33 |38,0,69....*FX13| 00000e50 38 2c 30 2c 38 33 0d 04 1a 0f 2a 46 58 31 33 38 |8,0,83....*FX138| 00000e60 2c 30 2c 31 33 0d 04 24 0c 2a 44 45 53 2e 42 2e |,0,13..$.*DES.B.| 00000e70 2a 0d 04 2e 27 e8 22 52 65 52 55 4e 20 74 6f 20 |*...'."ReRUN to | 00000e80 73 65 61 72 63 68 20 61 67 61 69 6e 20 28 59 2f |search again (Y/| 00000e90 4e 29 20 3f 20 22 41 24 0d 04 38 13 e7 a7 22 59 |N) ? "A$..8..."Y| 00000ea0 79 22 2c c0 41 24 2c 31 29 29 f9 0d 04 42 05 e0 |y",.A$,1))...B..| 00000eb0 0d 04 4c 05 3a 0d 04 56 05 3a 0d 04 60 0b dd 20 |..L.:..V.:..`.. | 00000ec0 f2 49 4e 49 54 0d 04 6a 08 40 25 3d 30 0d 04 74 |.INIT..j.@%=0..t| 00000ed0 1a de 20 41 44 44 25 28 31 37 35 29 2c 46 4c 45 |.. ADD%(175),FLE| 00000ee0 4e 25 28 31 37 35 29 0d 04 7e 14 de 20 58 25 20 |N%(175)..~.. X% | 00000ef0 32 30 2c 6e 61 6d 65 25 20 32 30 0d 04 88 0e de |20,name% 20.....| 00000f00 20 4d 41 50 25 20 35 31 32 0d 04 92 0f 59 25 3d | MAP% 512....Y%=| 00000f10 58 25 20 81 20 32 35 36 0d 04 9c 05 e1 0d 04 a6 |X% . 256........| 00000f20 05 3a 0d 04 b0 0c dd 20 f2 47 65 74 46 53 0d 04 |.:..... .GetFS..| 00000f30 ba 2e f4 20 47 65 74 20 74 68 65 20 46 53 6d 61 |... Get the FSma| 00000f40 70 20 69 6e 74 6f 20 41 44 44 25 28 29 2c 46 4c |p into ADD%(),FL| 00000f50 45 4e 25 28 29 2c 45 4f 46 53 4c 25 0d 04 c4 12 |EN%(),EOFSL%....| 00000f60 f2 47 65 74 46 53 66 72 6f 6d 44 69 73 63 0d 04 |.GetFSfromDisc..| 00000f70 ce 05 3a 0d 04 d8 18 45 4f 46 53 4c 25 3d 28 4d |..:....EOFSL%=(M| 00000f80 41 50 25 3f 26 31 46 45 29 81 33 0d 04 e2 14 e3 |AP%?&1FE).3.....| 00000f90 49 25 3d 30 20 b8 20 45 4f 46 53 4c 25 2d 31 0d |I%=0 . EOFSL%-1.| 00000fa0 04 ec 23 41 44 44 25 28 49 25 29 3d 28 21 28 4d |..#ADD%(I%)=(!(M| 00000fb0 41 50 25 2b 49 25 2a 33 29 80 26 46 46 46 46 46 |AP%+I%*3).&FFFFF| 00000fc0 46 29 0d 04 f6 28 46 4c 45 4e 25 28 49 25 29 3d |F)...(FLEN%(I%)=| 00000fd0 28 21 28 4d 41 50 25 2b 32 35 36 2b 49 25 2a 33 |(!(MAP%+256+I%*3| 00000fe0 29 80 26 46 46 46 46 46 46 29 0d 05 00 05 ed 0d |).&FFFFFF)......| 00000ff0 05 0a 05 e1 0d 05 14 05 3a 0d 05 1e 0a dd 20 f2 |........:..... .| 00001000 4d 41 50 0d 05 28 15 f1 22 46 72 65 65 20 53 70 |MAP..(.."Free Sp| 00001010 61 63 65 20 4d 61 70 22 0d 05 32 18 f1 22 41 64 |ace Map"..2.."Ad| 00001020 64 72 65 73 73 20 3a 20 20 4c 65 6e 67 74 68 22 |dress : Length"| 00001030 0d 05 3c 08 40 25 3d 36 0d 05 46 15 e3 20 49 25 |..<.@%=6..F.. I%| 00001040 3d 30 20 b8 20 45 4f 46 53 4c 25 2d 31 0d 05 50 |=0 . EOFSL%-1..P| 00001050 21 f1 7e 41 44 44 25 28 49 25 29 3b 22 20 20 3a |!.~ADD%(I%);" :| 00001060 20 20 22 3b 7e 46 4c 45 4e 25 28 49 25 29 0d 05 | ";~FLEN%(I%)..| 00001070 5a 05 ed 0d 05 64 05 e1 0d 05 6e 05 3a 0d 05 78 |Z....d....n.:..x| 00001080 05 3a 0d 05 82 14 dd 20 f2 47 65 74 46 53 66 72 |.:..... .GetFSfr| 00001090 6f 6d 44 69 73 63 0d 05 8c 31 f4 20 47 65 74 20 |omDisc...1. Get | 000010a0 74 68 65 20 46 53 6d 61 70 20 69 6e 74 6f 20 4d |the FSmap into M| 000010b0 41 50 25 20 61 73 20 6b 65 70 74 20 6f 6e 20 74 |AP% as kept on t| 000010c0 68 65 20 64 69 73 63 0d 05 96 0a 41 25 3d 26 37 |he disc....A%=&7| 000010d0 32 0d 05 a0 09 3f 58 25 3d 30 0d 05 aa 0d 58 25 |2....?X%=0....X%| 000010e0 21 31 3d 4d 41 50 25 0d 05 b4 0a 58 25 21 35 3d |!1=MAP%....X%!5=| 000010f0 38 0d 05 be 0a 58 25 21 39 3d 32 0d 05 c8 0b d6 |8....X%!9=2.....| 00001100 20 26 46 46 46 31 0d 05 d2 3b e7 20 3f 58 25 20 | &FFF1...;. ?X% | 00001110 f1 22 44 69 73 63 20 65 72 72 6f 72 20 22 7e 3f |."Disc error "~?| 00001120 58 25 22 20 77 68 69 6c 65 20 72 65 61 64 69 6e |X%" while readin| 00001130 67 20 6d 61 70 20 2d 20 65 6e 64 65 64 2e 22 3a |g map - ended.":| 00001140 e0 0d 05 dc 05 e1 0d 05 e6 05 3a 0d 05 f0 05 3a |..........:....:| 00001150 0d 05 fa 05 3a 0d 06 04 14 dd 20 f2 63 72 65 61 |....:..... .crea| 00001160 74 65 28 4c 25 2c 4e 25 29 0d 06 0e 16 24 6e 61 |te(L%,N%)....$na| 00001170 6d 65 25 3d 22 41 2e 46 22 2b c3 28 4e 25 29 0d |me%="A.F"+.(N%).| 00001180 06 18 19 e7 20 4e 25 3e 34 30 20 8c 20 3f 6e 61 |.... N%>40 . ?na| 00001190 6d 65 25 3d 97 22 42 22 0d 06 22 0d 21 58 25 3d |me%=."B"..".!X%=| 000011a0 6e 61 6d 65 25 0d 06 2c 08 41 25 3d 37 0d 06 36 |name%..,.A%=7..6| 000011b0 0a 58 25 21 32 3d 30 0d 06 40 0a 58 25 21 36 3d |.X%!2=0..@.X%!6=| 000011c0 30 0d 06 4a 0b 58 25 21 31 30 3d 30 0d 06 54 10 |0..J.X%!10=0..T.| 000011d0 58 25 21 31 34 3d 4c 25 2a 32 35 36 0d 06 5e 0f |X%!14=L%*256..^.| 000011e0 5a 25 3d ba 28 26 46 46 44 44 29 0d 06 68 3b e7 |Z%=.(&FFDD)..h;.| 000011f0 20 28 5a 25 80 32 35 35 29 3a f1 22 45 72 72 6f | (Z%.255):."Erro| 00001200 72 20 64 75 72 69 6e 67 20 63 72 65 61 74 69 6f |r during creatio| 00001210 6e 20 2d 20 75 6e 69 76 65 72 73 65 20 65 6e 64 |n - universe end| 00001220 65 64 21 22 3a e0 0d 06 72 05 e1 0d ff |ed!":...r....| 0000122d