Opp  d ! #%'+-//o79;=?A C@E`GIKMOQ S@U`WY[]_a c@e`gikmoq s@u`wy{} @` @ ` @ ` @ ` @ ` ǀ ɠ @ ` ׀ ٠  @` @`!Aaa!!#A%a')+-/1!3A5a79;=?A!OEaGIKMOQ!SAUaWY[]_a!cAeagikmoq!O ! #%'+-//o79;=?A C@E`GIKMOQ S@U`WY[]_a c@e`gikmoq s@u`wy{} @` @ ` @ ` @ ` @ ` ǀ ɠ @ ` ׀ ٠  @` @`!Aaa!!#A%a')+-/1!3A5a79;=?A!OEaGIKMOQ!SAUaWY[]_a!cAeagikmoq!OSTT_AUTO  7BSTT_HELP  IBSTT_MISC  hB0STT2 FNK jB1oDESKTOP INF kB3STT2 OPT 4ST-TALK2PRG k5JST-TALK PTH BST-TALKCRSC BfST-TALKMRSC BC .  B8..  B8ALERT AP 9B,CIS AP PGENIE AP `P*GENIEDL AP ABFDIAL DBF CBDIAL IDX EB8ST-TALK MNU GBx| | Sample ST-Talk Pro AutoPilot script for GEM Alert buttons jsd 2/22/88 |_K button = Alert "[3][Hit one of these buttons...][ ONE | TWO |THREE]" Print "You selected button #" Print button print "!~" QUIT | Sample AutoPilot script for logging onto Compuserve with St-talk Pro |_K clear | trace off | prompt1="User ID: " | the prompt for account number prompt2="Password: " | the prompt for password account="70,12341~" | put your account number here password="pass-word~" | dummy password | termtype 2 | | IF connect | see if connected Print "Logging on at " | Print gettime | Print "~" | Flush 120 | Printm "^C" | ok=Wait 10 prompt1 | wait for the username prompt IF not ok | GOTO nologin | ENDIF | Printm account | send the account number ok=Wait 10 prompt2 | wait for the password prompt IF not ok | GOTO nologin | ENDIF | Printm password | send the password Flush 60 | Print "~Connected to Compuserve!~" ELSE | tried too many times _nologin | Print "~Could not connect to Compuserve!~" QUIT | quit the program ENDIF | | | continue with other things here QUIT clear | | this is a sample autopilot program for logging on to Genie |_ trace off | | show what's happening Print "^L~Logging on to Genie...~" | IF connect | see if connected capture on | Print " at " | Print gettime | show time Pause 300 | clear junk for 3 second Printm "H" | Pause 30 | half of a second delay Printm "H" | Pause 30 | half of a second delay Printm "H" | | wake up Genie IF not Wait 15 "U#=" | wait for initial prompt GOTO nologin | ENDIF | Printm "^Rxxx12345,password,475,1~" | send the account number, go to messages Flush 60 | Print "Connected to Genie!~" ELSE | tried too many times _nologin | Print "~Could not connect to Genie!~" QUIT | quit the program ENDIF | | | continue with other things here QUIT | | ST-Talk Pro AutoPilot script for Genie Downloading mod 3/2/88 jsd |_M Clear | Erase variables Trace off | Trace mode off | dlfiles="" | Init String type variable to hold file names Array dlfiles 10 | Declare storage for upto 10 file names Array dlnums 10 | Declare storage for upto 10 file numbers | dlmax=1 | Set this for the number of files to DL | Fill in the file names and numbers. |_|_1 dlfiles[1]= "f:test" dlnums[1] = 390 dlfiles[2]="" dlnums[2] =0 dlfiles[3]="" dlnums[3] =0 dlfiles[4]="" dlnums[4] =0 dlfiles[5]="" dlnums[5] =0 dlfiles[6]="" dlnums[6] =0 dlfiles[7]="" dlnums[7] =0 dlfiles[8]="" dlnums[8] =0 dlfiles[9]="" dlnums[9] =0 dlfiles[10]="" dlnums[10] =0 |Log on and get to Atari ST RT download area. Run from dialer after dial. |_L IF connect | Double check carrier detect Capture 2 | turn capture on to buffer 2 Print "~Logging on to Genie...~~" | Show what we're doing IF not Wait 30 "U#=" | Wait for logon prompt GOTO logerror | error, abort! ENDIF | Put your account/password here... Printm "^Rxxx1,password,476;6~" | Send user id and go to ST RT & DL ELSE $| GOTO logerror | no carrier detect, abort. ENDIF #| continue with DL after function def |=L |Define User-function DLone | |_| @DLone | Create a user function to download one file | Inputs fileanem from dlfile and number from dlnum error=true | Assume there was an error IF not Wait 90 "file?" | Wait for file? prompt GOTO DLerror | nope, error! ENDIF | Printm dlnum | Send the file number Printm "~" | Send a return IF not Wait 90 "uit" | Wait for Quit etc prompt GOTO DLerror | nope, error! ENDIF | Printm "D~" | Send D for Download and a return IF not Wait 90 "receive"| Wait for receive prompt GOTO DLerror | nope, error! ENDIF | Flush 30 | Print "~~Downloading #" | Display status... Print dlnum | Print ", " | Print dlfile | Print "... " | Download 2 dlfile | Do the download of the filename in dlfile IF not Wait 90 ">?" | Wait for ? prompt GOTO DLerror | nope, error! ENDIF | Print "Done.~" | Display status Printm "~" | Send a return IF not Wait 90 ")?" | Wait for ? prompt GOTO DLerror | nope, error! ENDIF | Printm "Y~" | Send Y and a return, ready for next file error=false | No error if we made it this far _DLerror | Exit here for errors @endsub |End of DLone |_|_1 | | Main loop to download the array of files |_M count=1 | Start at first file _DLloop | Start downloading file list... IF count<=dlmax | Are there more files? dlnum = dlnums[count] | Yes, get the file's number dlfile = dlfiles[count] | and get its name DLone | download the file IF error=true | Was there an error? GOTO bigerror | Yes, end! ENDIF | No... count = count + 1 | Increment the file count GOTO DLloop | Do another file. ENDIF | | End of main Loop Wait 90 "file?" | Wait for file? prompt Printm "~" | No more files. Print "Done Downloading!~" | Hey, we're done! Capture 0 | turn capture off IF not Wait 90 "elp?" | Wait for prompt GOTO bigerror | nope, error! ENDIF | QUIT | and quit (or do some more smart stuff) |_| _bigerror | Go here upon Control errors! Print "Error!~" | Say this was bad. Capture off QUIT _logerror | Go here upon bad log on! Print "Error logging on!~" | Show status for this. Capture off QUIT QMI  457-7216  2 0  4 0 0 0 0 XQMI 457-7216 20 QMI BACKSPACE Merges and reformat's paragraph if at column position 1. DELETE Merges and reformats if at last position in line. DELETE Deletes to End of line. Removes line if at beginning. CLR/HOME Erase current line. UNDO Restores current line if changes were made. INSERT Toggle between Insert and Replace modes. RETURN Move to next line, insert blank line if in Insert mode. ** Cursor Movement functions ** RtArrow Cursor right, to next line if at end of a line. LtArrow Cursor left, to next line if at beginning of a line. UpArrow Cursor up to previous line. DnArrow Cursor down to next line. RtArrow Cursor to end of current line. LtArrow Cursor to beginning of current line. UpArrow Cursor up to previous page (screen height - 2). DnArrow Cursor down to next page (screen height - 2). CLR/HOME To Top of current buffer. CLR/HOME To Bottom of current buffer. ** Block Select functions ** ESC Mark the start of an area to select (highlight) then again to mark the end of the area. Top and Bottom marks allowed in either order. ESC Clear all selected areas (un-highlight selected text). ESC Reverse selected (highlighted and normal are reversed). C Copy selected areas to the current line position. M Move selected areas to the current line position. P Print selected areas. K Kill (erase permanently!) the selected areas. S Save selected areas to disk. INSERT Port (like Copy) selected areas to another buffer.  Select buffer number 'n' (1 through 10).  Load buffer number 'n' (1 through 10).  Macros 21 through 30.  Macros 31 through 40. ** Miscellaneous functions ** A Allow control codes on/off E Exit Editor back to Terminal mode. F Find (search) for text string (from cursor to end). G Go to a line number. L Load text from disk into current buffer. P Print buffer (all or selected). R Search/Replace text with new text (from cursor to end). S Save current buffer to disk. W Word wrap on/off X EXIT ST-Talk Pro. ESC Insert an ASCII 'Escape' character.  The 'More Help' Selector HELP AutoPilot syntax checker on/off. Mouse Functions: - Left button One click inside of screen area positions cursor. Click and hold to select lines of text. Select buffer if clicked on buffer icon. Scroll one line if clicked on up/down arrows. Scroll one page if clicked on shaded area of slider bar. Scroll to location in buffer if dragging slider bar. Right button Go to Terminal mode if clicked in screen area. Load file into buffer if clicked on buffer icon.  The PRINT Menu - The Print functions use the formatting options set in the Printer Options. You can change these from the terminal mode's Select menu. Print File Prints a text from disk to your printer. Print Buffer Prints the text from the current Editor buffer. Print Selected Prints the selected areas of text (highlighted) in the current buffer. R The Select Menu - Begin/End Selected Chooses the top and bottom of 'Selected' (highlighted) area of text. The selected areas of each buffer are independent from each other. Any number of selected areas are allowed for the following operations. Clear Selected 'De-selects' (clears the highlighting from) text in the current buffer. Reverse Selected Reverses the selected state of all text in the current buffer. Reverse highlighted text to normal and normal text to highlighted. Save Selected Saves all selected areas in the current buffer to a disk file. Use this to make another text file from individual areas of a buffer. Erase Selected Permanantly removes the selected text lines from the current buffer. This is useful for removing unwanted lines from your capture buffer. Move Selected Moves all selected lines in the buffer to the current cursor position. Copy Selected Copies all selected lines in the buffer to the current cursor position. The original lines remain in the buffer and the new lines stay selected. Port Selected Copies the selected lines from one buffer to another buffer. Works like the Copy function but you are asked to select the buffer number for the new lines. The text is copied to the current cursor position in the destination buffer and the new lines stay selected. Upload Selected Sends all selected lines to the modem port. Uses the same parameters as the Upload Text option from the Text menu. This is useful when capturing information from one system and forwarding portions of the text to another system. The FILE Menu - List & View... 6ALT-Q Browse the directory of any drive or folder, CANCEL when done. To view a text file, select it then click on OK. Send File... 8ALT-S Send a file by clicking on its name and the protocol to use. If the computer you are sending to is ready, click on START. Use the HOLD button to select the file before starting the send. Receive File... 5ALT-R Receive a file by selecting the drive and folder, then enter the name of the new file. Select the protocol then click on START. Use the HOLD button to select the file before starting the send. Archive The Archive utility is an external program used to save time while transfering files. Use "Set Paths" to locate the ARC program. Use Archive to build an ARC file before sending. Choose the drive and enter the name of the Archive to create. Then, select up to 20 files to compress and include into the ARC file. Un-Archive Use Un-Archive to extract the compressed programs from an ARC file after receiving. Select the ARC file then select the drive and folder to place the extracted files after un-archiving. View Archive Use View Archive to inspect the information about the files which are compressed and contained within an ARC file. Set Paths The Set Paths screen lets you choose where ST-Talk finds the files or folders it needs while performing various functions. The following default paths are selectable for these functions: Send . Send File, Archive Receive . Receive Files, Un-Archive, View Archive Capture . Capturing and Editing Autodia l . Dial Directory, Autopilot, Options, Function Keys Activity . Activity Accounting Files Help . Help Files Fonts . Screen Fonts, Translations, Emulation driver. Archiver . Archive Utility external program. Command Shell ... Command Shell external program Kermit . Kermit file transfer external program. Other Transfer .. Other file transfer external program. To select a path, click on its title and use the file selector. Click on OK to make the changes permanent. Utilities ;ALT-U Click on the name of the function to do the following: Copy . Select the file(s) to Copy and where to put them. Delete . Select the file(s) to Delete permanently. Format . Select either disk A or B to initialize and erase. Rename . Select the file to Rename and choose its new name. Make Folder . Select the name of a new folder and where to put it. Delete Folder .. Select a folder (and all of its files) to delete. Click on EXIT when you are finished using the Utilities. Command Shell 7ALT-C The Command Shell will run as an external program then return. Use this to run a DOS command shell or your favorite program. Specify the program's name through "Set Paths" above. Run a Program Select the name of the program to run. It may be a GEM program with the extender ".PRG" or a non-GEM program with ".TOS" or ".TTP". The TTP type will ask for the command line to pass to the program. Make sure you have enough free system memory to run the program. Use the Re-initialize command the Editor's Options menu to set the size of the editor memory and the free system memory. Quit ST-Talk! 0UNDO or ALT-X This will exit from ST-Talk back to the Desktop or where it was run. You will be prompted to save any modified editor/capture buffers.  Keyboard commands in Terminal Mode =Shift, =Control, =Alt -"  A Answer Now  B Baud rates toggle  C Command shell  D Duplex toggle (half/full)  E Go To Editor  F Select font size  G Go Run Autopilot in current editor buffer  H Hangup (disconnect)  J Jump/Smooth scroll  K Keyboard Dial  L Line feeds on/off  M Terminal Emulation Mode  O Load Options  P Printer on/off  Q Quick List & View  R Receive File  S Send File  T Talk mode on/off (typeahead window)  U Utilities  V Vidtex functions  W Wrap end of line on/off  X EXIT ST-Talk Pro  The 'More Help' Selector  Exit ST-Talk Pro Definable AutoPilot Function Keys:  Macro 1 thru 10  Macro 11 thru 20  Macro 21 thru 30  Macro 31 thru 40 + The Options Menu - Tab Size Sets the number of spaces used by the TAB key. When you press the TAB key, the cursor will move to the next multiple of the Tab Size. If in Insert mode, spaces will be inserted. Line Length Sets the maximum length for a line of text in the current buffer. Your text will wrap at this point when you are typing. If you have word wrap mode on, the text will be reformatted to this line length when you load it into the buffer. Reformat Takes the paragraph starting at the current cursor position and reformats the lines to the current line length. Reformatting ends at the first line that begins with a space or at a control character if Control Codes mode is on. Word Wrap With word wrap mode on, whole words will be moved to the next line as you are typing if they will not fit at the maximum line length. With word wrap mode off, words will be broken at the end of lines. Insert/Replace Mode In Insert mode, the text on the current line will move to the right as you type new characters. When you press Backspace or Delete, the line will move from the right to left as characted are removed. In Replace mode, new characters will type over the old characters on the current line as you type. When you press Backspace or Delete, the line will remain in the same position. Control Codes With this mode on, all keys types while pressing the control key will be ignored. This effects the text being captured, too. With this mode off, you may enter control codes into a text buffer and all incoming control characters will go into the capture buffer. EOL is ??? Selects the characters placed at the end of lines when saving the buffer to disk. Normally, you should use CR/LF mode. Some wordpocessors will require different line ending to merge text into them successfully. Re-Initialize Selects the total amount of memory used for editing and capturing. Use this function to choose the enough system memory for running external program from within ST-Talk. Warning: You must save your buffers to disk before Re-Initializing or all the text in your buffers will be lost! $ The PRINT Menu - Printer Echo The check mark in front of this title shows if Printer echo is on. With this mode on, anything coming across the screen will be sent to the printer. The Printer Options are set under the Select menu. Print File Select a file to send to the printer. Print Buffer Select a buffer to send to the printer.  Print Screen You may print the contents of the current screen or previous screen. This function works independently of the capture buffer. Show Graphics Show the last picture received or loaded into the picture buffer. Print Graphics Print the contents of the picture buffer. Load Graphics Load a Vidtex picture from disk into the picture buffer. Save Graphics Save a Vidtex picture to disk from the picture buffer. \ The SELECT Menu - Text Options These options modify the characters coming into your computer before they reach the screen and capture buffer. The Upload modes are used when you send a file or buffer using the Upload Text function (in the Text Menu). The Translation modes let you select a file which describes how to modify incoming and outgoing characters. Dial Options Selects the options used for dialing and redialing through the Dial Menu or the AutoDial Directory. You may need to change these to match your brand of modem. Answer Options Select the options used for AutoAnswering from the Answer Menu. Choose the name of the AutoPilot file to run for AutoAnswer. Printer Options Selects the margins and line formatting used when printing text. RS-232 Options Sets the parameters for the computer's serial port. Changes the basud rate, parity, duplex, xon/xoff, data and stop bit, internal receive buffer size and the port number. The "Options" Icon in the terminal mode chooses this menu, too. Screen Options Changes the screen modes for long lines, scrolling, rows/columns, type-ahead and loadable screen fonts. Terminal Mode The Terminal type changes how ST-Talk interprets special commands it receives from and sends to other computers. TTY uses very few commands for standard ASCII communications. VT-52 is popular for many on-line services and bulletin boards. ANSI-PC uses IBM-PC character graphics for PC bulletin boards. VT-100 is used by many larger computer systems and services. VT-200 is an extended version of VT-100 used by newer systems. OTHER allows loading future terminal types from disk. Vidtex Graphics The check mark in front of the title shows the current mode. Vidtex graphics is used by CompuServe and many bulletin boards. The pictures may be saved to disk or printed on your printer through the Print Menu in the terminal mode. Use Alternate-V for more Vidtex options. Function Keys The 10 functions across the top of the keyboard may be used alone or in combination with either Alternate, Control or Shift. Each of the 40 keys may be defined by clicking on its name button. A function key contains up to 10 lines of AutoPilot commands. The function keys may be saved and loaded at any time. The function key file named STT2.FNK will load automatically when you run ST-Talk. Clock & Timer The system clock may be set here if you do not have a clock cartridge or an internal battery-backed system clock. The Alarm Timer, if on, will count down and warn you when it reaches zero while you are on-line. The Money Limit will warn you when you've spent more than this amount while on-line. Event Sounds Selects the type of sound used for different events in ST-Talk. Choose the sound you would like for each of the events shown. This feature will be in version 2.1 of ST-Talk Pro. Load & Save Options All of the options throughout ST-Talk may be saved to a disk file and loaded in at any time. The Options file name STT2.OPT will load automatically when you run ST-Talk. Each entry in your Dial Directory may have its own Options file.  The TEXT Menu - Capture Text The check mark in front of this title shows if Capture is on. Clicking on this will turn it on if it was off, or off if it was on. Capturing will save the text coming in to your screen into a buffer. The buffer where text is captured is selected in Select Buffer, below. Capturing uses some of the Text Options from the Select Menu. Upload Text Uploading text will send either a buffer or a file to the modem port. Select either Buffer, File or Cancel. If you Upload a Buffer, select the buffer number to upload. If you Upload a File, select the file name to upload. Text Uploading uses some the Text Options in the Select Menu. Depending on the system you are sending to, you may need to select some delay or use the prompted mode. Set these in Text Options. Select Buffer The buffer used for Capturing is selected though this menu. You may change the buffer number at any time in order to seperate un-related incoming messages and information. This buffer is selected independently of the Editor buffer but may be the same if you would like to edit what you are capturing. Load Buffer Use this function to load a text file into the current capture buffer. Save Buffer Use this function to save the current capture buffer to a text file. You may append the text to the end of an existing file or overwrite it. Erase Buffer Use this function to permanently erase the current capture buffer. Go To Editor Click on this to enter into the editor mode from terminal mode. The right mouse button may be used to switch between modes. .  Bh0..  Bh>>Capture if capture 100 capture 0 else capture -1 endif >>Upload File file = selectfile "" "" "" "Select Text File" if file is "" quit else sendfile file endif >>XMODEM Recv title = "Select File for XMODEM Receive" file = selectfile "" "" "" title if file is "" quit endif m="[3][Receive using...][QUIT|XMODEM|YMODEM]" kind = alert m if kind>1 download kind file endif >>XMODEM Send title = "Select File for XMODEM Send" file = selectfile "" "" "" title if file is "" quit endif m="[3][Send using...][QUIT|XMODEM|YMODEM]" kind = alert m if kind>1 upload kind file endif >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> >> #a0 #b0 #c7770007000600070055200505552220770557075055507703103 #d - #E 7B 02 #W 01 00 0A 02 44 09 08 A:\*.*@ #W 00 00 0A 0C 43 09 00 @ #W 00 00 0E 09 2A 0B 00 @ #W 00 00 0F 0A 2A 0B 00 @ #M 00 00 00 FF A FLOPPY DISK@ @ #M 00 01 00 FF B FLOPPY DISK@ @ #T 00 07 02 FF TRASH@ @ #F FF 04 @ *.*@ #D FF 01 @ *.*@ #G 03 FF *.APP@ @ #G 03 FF *.PRG@ @ #F 03 04 *.TOS@ @ #P 03 04 *.TTP@ @ #G 03 FF DESKCART@ `@ #G 03 FF DESKCART@ `@ ST-TALK OPTIONS 2.0c \ \ \ \STT_AUTO\ \ \STT_HELP\ \ \STT_MISC\ARC.TTP \STT_MISC\DO-IT!.PRG \ST2_MISC\KERMIT.TTP \ST2_MISC\TRANSFER.TTP 99686 0 0 0 4 80 1 4 1 0 4 1 0 4 1 0 4 1 0 4 1 0 4 1 0 4 1 0 4 1 0 4 1 0 4 1 0 0 0 0 0 DATABASE.DBF 1 1 0 0 0 0 1 ATD ATD1 ATD1 ATDT1-315 40 7 14 21 26 51 30 40 20 1 3 RING ATA AUTO CONNECT +++ NO CARRIER BUSY ATZ 1 1 1 1 0 0 2 78 4 64 1 0 1 0 0 2 78 4 64 `/`NrNd N N#RNjNi~NiNn|N_vNYN N lN_jNYNPNhtNn@NgNNgNHN8N,N$bNNҐN~N!NN4NNNղN5NeNPNg8N&NN,NfNp|NNrNjrNNN NNyNzNifNgNeNh:NTNNwN$NdNNNN|NlNN}NtNDN@NDNdNTN`NTNNNN4NNDNVNNtNhNNNNNN6NNzN>NGN>N9hNE N>N!NAN(NI NPVNP^NIdNZNZ.NjFNN&NNNNNNNRN8NnNDN2NNNNNXNpNNN NzNʌN&NNNNNNNNNN NHNBN$NlNNbN"NNNNNNzN|N4NN**O*m - ЭЭмQ"ҍ¼.A// Bg?<JNA m"m -So Q m -SBQ(m)M*mNv lHhNHX/,?,ND\?<NX?<A?<NAXNuNVJBTBP-|LBnJ`\/0,NufA9oN AjC!IC!IC!IC!I C!IC!IANANtA)oNbANV0<NANB o 1l o1l o1l o1lNu0<NAN o1l o1l o1l o1lNu0<NAN0<NA )X9X9XAN o(1l o,1l o01l o41l o81l o<1lNu4A)oN6)oAN@ o1l o 1l o1l o1lNu3 0< NAN2A9oNI0<NANF0<NAN o 1l o1lNuJ0<NnANL0<NtANNAN$MANr o1l o1l o 1l o1lNuOAN#AN/0<NAN*0<NAN+0<NAN,0<NAN o 1l o1lNup0<NA1|AN o NunAN,oANd0<NFANvl0<N2ANb o1l o1l o1l o1lNue0<NAN$h0<NAN o1l o 1l o1l o1lNui0<NANgANkAN0<NvANA9oN*!A9o9o N A9o9o NN^NuNV?<NNTN^NuS@// / "o ol4g f0` QJlngB`0,hS@4gBBBBBBBBBBBBBBBBBBgB`BX QJlfP "_NuS@// / "o oli4g f0`iQJlngB`0,hS@B(gBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBgB`BXB(QJlf "_Nu/ Jlfn lDgf0,f@@ l*JlͲg l.2,Ͳj"H2,jHJlͲg0,ͰlͲjHS@0Qp0,jHHSBBQJlDg"_Nu l ",bh0Ͳ"H0,ͰlͲhJlng",b0,ͰlͲ@h@9|Jlng9lh$lZN4g"< Qf0`ّQ0,hS@4gB"<BQgB`BXQNui4g"< Qf0`i**Q0,hS@B(gB"<BBQgB`BXB(*QNu/ / Jlf` lDgX l*0,ͰlfjHU"H0,jH0,ͰlͲgfjHS@H0UUQp0,jHHSBPUQJlDf8 l ",bhH Ͱb"H0,ͰlͲg2,h@$lVN"_$_Nu2gBBBBBBBBBBBBBBBBBBgB`BX QNu(B(2gBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBBgB`BXB(QNu/ Jogl lDgBA0,lo0,9@@00 l.H0/jHHS@BXQJlDg"_Nu l$S0,hJ@gS@"lRNBl"_Nu,mg l Sp0,fh",bB`NV n lBn 0. ljm 0,jS@=@ nlBn0.lro=lr0.lo=l0.ltl=lt0.lrmBl9n )l $0.9@h",bѬ$N^NuNVSl0, @lBl`n0,gSl0, @lBl`T0,=@??,N*X l(f8=lJBlJ?< NrT0,g ?< NbT9nJ?.?,NXN^NutgtH2,hSA llf(bQNu$l@02H,g(,g(bQNu@"l@21H"l?,g0BDgDgD3`0BDgDgD30AJlf6JlgJlgDJCfJl gDJl ggDU`DJlg (P(PCPCjTNu@$l@r$(22$l822$l<42FB lf lfg C`@BxJlf8Jlg Jlg DJCf Jl g DJl ggDU`DJlgj,g2?0BDgDgD0gD gD0`0?0BDgDgD`gDgD0dDJlg@PCHJlg @PPPCj Nu@$l@r$(22"<$l822$lTBlD<,jJlgNSFg fRlJlpgRQ` ?NTQp9@F9nJ9@H9n9nL@N^NuNVN&N`< nH|~fR?< NT?< NT` nRH?NT nfNjN^Nu l2(RAher"hB@11ANup l2(hgpNu?< NATNu?<NAT"HAIANu??<?<NM\NuNV=n nf=l8=|` nf=l8=|`=|0<)@?<?<NNX @)@)P 9h ,v1@"1@ 1A BN^NuNV l 1lBN^NuNVBlBlBlnBlBlBlBlBl9|L9|F9|H9|J9|9l$l=|`A(|Pn nmAЀ)HFA)HBlzN)@ ,м )@$9|Pj9|f0<PlH)@bNx llfT ,)@4)@09|hA" )@@AH )@^A0 )@ZA )@VAT )@RA )@NR$`V ,)@4)@09|hA )@@A2 )@^A )@ZA )@VAH )@RA )@N$A )@8A )@<)l$ )l4, ,4м)@(N?<NNTN^NuNVHAl )@N llfA )@^A )@@`AJ )@^A" )@@9|Pj llg0,g ,)@4)@0` ,)@4)@0)l4, ,4м)@( ,*&@BG`BRG GmBgBgN^XLN^NuNVH0<9@9@AZ )@N llfA )@^Ab )@@` A )@^9|j llg0,g ,)@4)@0` ,)@4)@0)l4, ,4м)@( ,*&@BG`BRG G mBgBgNXLN^NuNJ@fNuN"NNv?N XTNJ@g&/<,`N|J@gNR/?N 2T,Q,NNu @g, @g" @JgpNupNuNVH>.0,gN0|f GGm< GPl60|f GMg GKg GGg GHg GPf?N5BT0<``t0|f G;mT GDnN0@>|; l0|g|` l0|g|0,:g Gm Gm?NlT0<`. GTm, G]n&0@>0,:f0|T| ?NlT0<` EG7g:|<<0,:f Ecm EfnBF0gnBF`V02 lPfB0 l hg&0 l/(0 l?(N\0<`|RF0 l hn0|g> l6oG20,6@NGN`0N0,g?NT0<` 0|f0|/g` N``|ag|-g`?<%NT``|bg` l0|g ?<yNT``|g`?<GNT``|0g`p0,|gRl8`Sl8 l 8oBl80,8f9| 8`. l8f9|8` l8f9|8` l8f9|8?,8NTN`.`|.g`` `| g` l4f9|4`9|4N``|g`NN``|!g```|"g`?<4NT``|#g` NF``|g` N``|$g`0,ngBln`9|n`x`|%g` N`f`|&g`0,ͮgBlͮ`9|ͮ`F`|2g`?<WNT`.`|1g`` `|g```|g`?<aNT``|g`?<NT``|g`?<NT``|g`?<NT``|g`0,W|?N/T``|g`?< NT`z`|/g`N`j`|g`0,JgBlJ`9|J`L`|-g`?<%NT`:`4`|g`0,6gBl6`9|6``|wg`NR``|,0<LN^Nu?aTNuNV9|69|49|29|309|.9|(9|8N^NuNV?. BFBnBn`02 KPf0<9@\9@Z0 K hH|~f@0.fBlXBE`ApH0f` D;fH0.Rn l6~02.Rn l6RlXAqH|f =|`Bn`r D0m D9o02.Rn l6Bn`N0.g.0,XAZ0 02|00,XAZ0A0`=|0|02,XAZ0RE0lno$0.gRlX0.Rn l6~ l6B=|?< 0 K/(/,6N8r 8` ?< 0 K/(HlpN8P 80f.0 K0(: @m0 K/(?N\`<8 K8(RF Dl@`"0 Kh0 K hnLN^NuNV` nRH?Bg?<N6\ nfN^NuNV=| =n lPf6 nfHlNX`` n d?<^Bg?<N6\n@ lPf n d n g n g` n fH lJf&?< Bg?<N66\?< Bg?<N6&\`` lJf=| ` lJf`f n fF lLf$?< Bg?<N5\?< Bg?<N5\`4` lLf=| ` lLf` nc?.Bg?<N5\N^NuNVH>.BE0,g?NT0,Rg0,zg0,Pg0|?NT l6o|0,,g?NT lzf Gf0,(g?<N$T`@0 lFhl20 lF0(: @m0 lF/(?Nt\`00|?NT lo0,U@9@f)l,4`)l(4` lzfpBF`R02 lBPf>0 lB0(: @m0 lB/(?N\`` El`r`RF0 lB hnBlz`T lzfH G0m G?o?/,>N\Blz`(02,nRlnApApnB l noBlz`BlzLN^NuNVAʹ)H|Aʹ)HxAЀ)HtN^NuNV ,$)@FBlzN^NuNV ,$)@B9|zN^NuNV0<9@n@p ,$)@>9|zN^NuNVN^NuNVN^NuNVN^NuNVB`N @l`R m m`hN|| 9@B`N @l`R m m` NN|| 9@?,?,NPXN^NuNV`D l$R$@H|^f$ l$R$H|@@H @f`.N8 l$fN^NuNV`J l$R$@H|^f$ l$R$H|@@H @f`.H?NT l$fN^NuNVN^NuNVN^NuNV=l=l0<9@9@=l9|BlDBg?,tNNX0,rltR@?NT?.?.N.X9nN^NuNVNBgBgNXN^NuNVBgBgNXN^NuNV=l9|9l=lJBlJ9l`?< N,TRl0,ljo?,?,NX9nJ9nN^NuNV=l9|BlD=l=lN|Bg0.R@?NfX0.lrl0,rn?NT?.?.NNXNNNN.NNNNN)o$B0/HANA)H0<ABQ9l9|0, @9@9|9|ANp9l9l9l9lNuNV l0f N^NuNV l0g l0 N^NuNVBn`0.RnA0 n m9|9l$"Hl:Hl"HlN! l:lBl$` lHlNX l> NrBlB?<N\BgHl?<GNP?<NT|A@|:Hl&Hl(Hl,Hl*Nh9@$HlHlHlHl?<BgNN l$f Hl&?<ND\?,"NTN` l$f$HlLNX=@0.fHlZNX=@`HlfNX=@Hl ?<BgNPA2)H: l (\ @ м-@ l> / <d/NF X//.NP l>  l:` 0<=@9@$0.f@ l$fHlt?<Np\` l$fHl?<NX\?,"NTN,`Hl?<BgNP l1l l1l l1l l1lHl?<BgNP l1l l1l l1l l1lHlBgBgNbPBl? @o=l~9n~Bg?<?.N0\`t`|g`jN,ښH|fHlHlښNP?<HlHlrHlڌHlښN @o*9|HlڌHlښNPJ@fHl?<N \BlN^NuNVBnHl?<BgNPBn`0.AA-H`R nf`" nH|\g nH|:f`S .2.AAаlR nfA/-H0<n l!n 0.AH0g6Rn0<n lh 0<n lh `00<n lh 0<n lh Rn n mNvN0.f0<`HBgBg/,N~P?,?,?,?,?<Bg/,NdBg/,Np\|=@ nmV nlN0. l0( |f60. l h ?,?,?,?,Bg?./,N nm n o~?.?</,N~P nf0<`r nfbBn`T0<n l0( |=@ nf*?f`L l6oG20,6@NGN`0Nx l4fN0?NTNRRn nmBn`0.RnAB nm0<9@9@Nt>N^NuNVNN^NuNVNN^NuNVNN^NuNVNN^NuNV?.NT nn0<`?.?<>N.X9@Fg0<`0<N^NuNV?.?<LNXN^NuNV/ A졔&H`0+ |g/ N*X A졔"Ҽm?.NT&_N^NuNV/ &n/ NDXJ@g0<`00+ |g /+NXBk ?+ N,TJ@g0<`0<&_N^NuNVH&n0+ |f0<`.0+ |gV0+ |f0<`v0+ |g?<B?+ NFP?/+?+ N P @f0<`@k 0Hѫ`$ k o?<0+D@H/?+ NP'@&Bk0<LN^NuNVH$.f BB`J". BnJlVnDJlRnDvd`Bbd nmDdD-@-A LN^NuNV/BnJlRnDJ lRnD 0. -@0.n0. nngD -n N^.JNuN^NuNV nl <`?.?./. ?<BN -@ m .`?<?.B?<BN| -@?<?.B?<BNb -@ nf .Ю -@ `$ nf .Ю -@ `0.g <`b . oHn . /?.?<@N Bg?./. ?<BN ]|9@Fg <` `BlF . N^NuNV/.?<IN\N^NuNVBn`&0.A0nf0.ABPRn nLmN^NuNV?>.=|0A"HPgXHf0(>N^Nu)I)J)_ NM"l$l/, Nu)I)J)_ NN"l$l/, Nu)I)J)_ NA"l$l/, NuNVH0&n$n >.-K`fS`0SGJ@g fB .`L N^NuNVH0&n$n `RRgHHAgHHC`L N^NuNVH0&n$n >.`RRSG0ggHHAgHHC`L N^NuNV n "n fN^NuNVH0&n$K`Rf `L N^NuNV n R @H=@` n R @H=@ n g n g n g0.N^NuNV=| nxg nXf n f0<`f n0m n9n0.|0=@`2 nam0.|a| =@` nAm0.|A| =@0.n o0<``0.N^NuNVBnBHnNX=@ n-f0<=@ nRH=@`0 ./0.H/Nd 6.HЃ-@ nRH=@?.?.NX=@ @f g n 0.g .D` .N^NuNV?< /</.N@ HN^NuNV .9@ .9@N^NuNV .9@ .9@N^Nu)I)JHl)_Hl" <sNB"l$lNuNV9n 9| Bl9|9nN0,N^NuNV9n 9|Bl9|9nN0,N^NuNV9n Bl9|9|Bl9nNZ0,N^NuNV9n 9|Bl9|9nN.0,N^NuNV9n 9|Bl9|9nN0,N^NuNV9n 9|jBl9|9nN0,N^NuNV9n 9|Bl9|9nN0,N^NuNV9n 9|Bl9|9nN~0,N^NuNV9n 9|Bl9|9nNR0,N^NuNV9n 9|hBl9|9nN&0,N^NuNV)n)n .мZ)@9|dBl9| n 9PN n 0A)HA)HA)HA)HN^NuNV9|eBlBl9nNN^NuNV)n 9n 9|9|9|9nNlA)HN^NuNV9||BlBl9nND n 0 n0 n0N^NuNV)n 9|9n Bl9nNA)HN^NuNV9n 9n Bn nR2.RnA|0f9|9|Sn0.9@9nNN^NuNV)n 9| 9|Bl9|9nNrA)HN^NuNV)n 9| 9|Bl9| 9nN. -K Gf0B .`b Gl-0>$K`0H H@H|00H >0f KSB`  KS n .`L N^NuNV nlBn?.Hn?<6NAP ./ ./N / ./N -@ .N^NuNV/.?<9NA\N^NuNV/.?<:NA\N^NuNV/.?<ANA\N^NuNV?.?./. ?<BNATN^NuNV0.A쟶 o"Bg/. 0.A쟶 ?NP-@`-|0.Av .N^NuNV0.A쟶 o"?<B0.A쟶 ?NZP-@`-|0.Av .N^NuNV0.A쟶 o0.Av <` nfN0.A쟶 HlJ?<NA\?</. ?<NNAP-@0.Av <``t nf=|`=n?./. ?<=NAP-@ o nf?<B .?N\P f nf?</. ?<NAX0.A쟶B0.AvB <N^NuNqNqNqNqNV0.A쟶 =@ no@ o0A A /. /.?.?<@NAA.PA,P-@`B`-|0.Av .N^NuNV0.A쟶 =@0.Hf60.Av-P m .-@ o-|`$S0<".AAJ". n @ nAd  @-P o .м/ </N2 X". Ҽ A0 n lb n lc n l_ n B( n (H|g n | n (H|g n  ` n !?<ONAT-@0.Av .`X` .`P`: no* o/. /.?.?<?NAX-@`B`-|0.Av .N^Nu9|9|h)|9|9|X9|P9|9|9|9|9|X9|9|~9|FA)HBAN)HA)HA)H A)HA<)H9|9|X)|v9|t9|r9|n9|Pj9|h9|f)|Pb9||9|9|CPThis is a prototype of ST-Talk Professional 2.0 from QMI.C22P222@2220222 2p222`222P222@2220222 2p22 2 `2 2 2 P2 2 2 @2 2 2 02 2 2 2 p2 22`22Cb222222 2 2222222222 2#2$2'2(2+2,2/20232427282;2<2?2@2C2D2G2H2K2L2O2P2S2T2W2X2[2\2_2`2c2d2g2h2k2l2o2p2s2t2w2x2{2|2222222C2222222 2 222222222222 2#2$2'2(2+2+2,2/2023242728282;2<2?2@2C2D2G2G2H2K2L2O2P2S2T2T2W2X2[2\2_2`2c2c2d2g2h2k2l2o2p2p2s2t2w2x2{2|22222222C"222222222222 2 2 2 2 2222222222222222222222 2!2"2#2#2$2%2&2'2(2)2*2*2+2,2-2.2/2021212223242526272828292:2;2<2=2>2?2?2@2A2B2C2D2EC2222222?22222222?22222222?22222222?22222222?22222222?22222222?22222222?22222222?22222222?2C222222222222222222222222222222222222222222222222222222222222222222222222222222229|9|9|JC2w22G2Ax)HA)H9|(9|e9|9|9|9|9|9|)|9|A)H9|A.)HAN)HAn)HA)HA)H9|9|9|9|A)H)|Cd"""UUUU"3333""""1111""wwww"uuuu""""ssss"9|b9|`9|^9|"9| 9|XC2PA 6"222HA :"222KA >"222MA B"222A F"22C2PA H"222HA L"222KA P"222MA T"222cA X"222dA \"222eA `"222fA d"222rA h"222qA n"222pA t"222mA z"222nA "222oA "222jA "222kA "222lA "222NA "222gA "222hA "222iA "222JA "222GA "222G7A "222A "22C2PA "222HA "222KA "222MA "222cA "222dA "222eA "222fA "222RA "222GA "222G7A "222@A "222AA "222BA "222CA "222DA "222TA ""222UA ("222VA ."222WA 4"222XA :"222YA @"222ZA F"222[A L"222\A R"222]A X"222A ^"22CD2PA `"222HA f"222KA l"222MA r"222cA x"222dA ~"222eA "222fA "222rA "222qA "222pA "222mA "222nA "222oA "222jA "222kA "222lA "222NA "222gA "222hA "222iA "222JA "222RA "222GA "222G7A "222@A "222AA "222BA "222CA "222DA "222TA "222UA "222VA "222WA &"222XA ,"222YA 2"222ZA 8"222[A >"222\A D"222]A J"222A P"22C:2A T"229|X9|9|9|9|*9|(A V)HXA l)HTA )HPA )HL9|:9|49|*)|@ 9|X9|X)||9|z9|XA)H6A)H29|XA)H.A)H*A)H&A)H"A)HA)HCn2h ,"222hA"2Q22hA"222hA"2U22hA"222hA"2f22hA"2Y22hA"2[22hA"2W22hA"2]22hA"222hA"222hA"2_22hA"2a22l ,"222lA"2R22lA"222lA"2V22lA"222lA"222lA"2e22lA "2Z22lA"2\22lA"2X22lA"2^22lA"222lA"222lA""2`22lA&"2b22m ,.".292 2m ,"""2922m ,"2:22m ,"2?22mA*"2>22mA,"2;22mA."2<22mA0"2=22m ,*"*2l22m ,&"&2l22mA2"2l22mA8"2l22mA@"2l22K ,.".222K ,"""222K ,"222K ,"222J ,.".2 22J ,"""2 22J ,"2 22J ,"2 22g ,.".2*22g ,"""2*22gAJ"2+22nAL"2h22nAN"2'22nAP"2g22c ,.".2i22c ,"""2i22x ,"""222x ,"222i ,.".222i ,"""222iAT"222iAV"222iAX"222iA\"222iA`"222q ,.".222q ,"""222q ,*"*222A ,.".222A ,*"*222B ,.".222B ,*"*222C ,.".222C ,*"*222D ,.".222D ,*"*222H ,.".2#22H ,*"*2#22H ,&"&2#22f ,.".2#22f ,*"*2#22f ,&"&2#22r ,.".2-22r ,*"*2-22r ,&"&2-22P ,.".222P ,*"*222L ,.".222L ,*"*222M ,.".222M ,*"*222 ,.".22C<23 ,"2B224 ,"2B225 ,.".2D226 ,.".2C22 ,.".22C2A ,.".2m22B ,.".2n220 ,.".2o221 ,.".2p222 ,.".222 ,.".22C2A ,.".2q22B ,.".2r220 ,.".2s221 ,.".2t222 ,.".222 ,.".22CҦ2H ,.".2j22N ,.".2k22 ,.".22C2[An"222#A<"222(A"222)A"222O ,.".222> ,.".2u22= ,.".2v22< ,.".222N ,.".2522O ,.".2322D ,.".2 22M ,.".222E ,.".2H227 ,.".2%228 ,.".2&22H ,.".2,22I ,.".2|22Z ,.".2i22c ,.".2022GAҦ"222IAd"222 ,.".22CЀ2 ,.".22 2 ,.".222 ,.".222 ,.".222 ,.".222 ,.".2z22 ,.".222 ,.".2E22 ,.".222 ,.".2(22 ,.".2F22 ,.".2F22 ,.".2 22 ,.".2G22 ,.".2622 ,.".2422 ,.".2{22 ,.".222 ,.".222 ,.".222 ,.".222 ,.".222Av"222 ,.".222 ,.".222 ,.".222 ,.".222A"222 ,.".222 ,.".222 ,.".222 ,.".222 ,.".229|XA|)HpC21 ,.".2@22A ,.".2@22a ,.".2@22 ,.".2@222 ,.".2?22B ,.".2?22b ,.".2?22 ,.".2?223 ,.".2>22C ,.".2>22c ,.".2>22 ,.".2>22 ,.".22C2 ,.".222A ,.".222B ,.".222C ,.".222D ,.".222E ,.".2x22F ,.".2622GAҦ"222H ,.".2y22I ,.".222J ,.".2 22K ,.".222V ,.".2N22W ,.".2K22X ,.".2L22Y ,.".222ZA~"222- ,.".2J22^ ,.".2I22] ,.".2M22bA"222 ,.".22Cʹ2 ,.".22 2 ,.".222 ,.".222 ,.".222 ,.".222 ,.".2z22 ,.".222 ,.".2E22 ,.".222 ,.".2(22 ,.".2F22 ,.".2F22 ,.".2 22 ,.".2G22 ,.".222 ,.".222 ,.".2{22 ,.".222 ,.".222 ,.".222 ,.".222 ,.".222A"222 ,.".222 ,.".222 ,.".222 ,.".222A"222 ,.".222 ,.".222 ,.".222 ,.".222 ,.".229|X9|Ͳ9|Ͱ9|ͮ9|"9|O 9|9|9|9|9|A)HC2 222 2222 2 2 2222.22229|ˬ9|˪A|)HdA)H`A)H\A)HX9|A )HAB)HA)HCȾA"A"A"A"A"A"A"A"CȞA"A"A"A"A"A"A"A"A )HȚ9|Ș9|9|Ș9|*)|2)| .9|X9|A%j)HA%)HA%)H9|CA&)HA&)H9|9|9|9|p9|n9|lC(A(f"2"A(l"'2"fA(r"'2"gA(z"'2"hA("'2"iA("'2"jA("'2"kA("'2">A("'2"?A(" '2"@A("'2"AA("'2"BA("'2"CA("72"DA("2"A("2"A("2"A("2"A("2"A("2"A("2"A("2" A("2" A("2" A("2" A("2" A("2"A("2"A("2"A("2"A("'2"A("'2"A)"2"A)"2"A)"2"A) "2"A)"2"A)"2"A) "g2"1A)$"g2"2A),"'2"3A)2"'2"4A)8"'2"zA)>"'2"{A)H"'2"yA)N"2"aA)P"72"`A)R"'2"A)X"'2"A)`"'2"A)f"'2"A)n"'2"A)v"'2"A)|"'2"A)"'2"A)"'2"A)"'2"A)"'2" A)"'2"A)"'2"!A)"'2""A)"'2"#A)"'2"$A)"'2"%A)"'2"&A)"'2"'A)"'2"+A)"'2",A)"'2"-A)"'2"5A)"'2"6A)"'2"7A*"'2"8A* "'2"A*"'2"9A*"'2":A*""'2"}A*(" '2";A*4"'2".`0SGJ@fL N^NuNV?. .2.HЁ/ .2. HЁ/N N^NuNV0. @=@nn0.R@nn"0.S@??./. nNP @oRn0. S@?0.S@?/. nNP @o?.Bg0.S@?/.N /.?.0.S@??</.NSn nnN^NuNVH0&n$n >.`0SGJ@fL N^NuNV?. .2.HЁ/ .2. HЁ/N N^NuNV0. @=@nn0.R@nn"0.S@??./. nNP @oRn0. S@?0.S@?/. nNP @o?.Bg0.S@?/.N /.?.0.S@??</.NSn nnN^NuNVBHnHnHl?.?,"NxN^NuNVHnHn?,/,NF0.9@9@0.9@9@0.2, l2(SAA9@9@0.2, l2(SAA9@9@Hl?<?,"NP0, l=h0.g0.l0.l`0.l0.l?<N THnHn0,2. A=@?/,NF0.9@9@0.9@9@0.2, lhS@9@9@0.nS@9@9@BgNT?.NTN^NuNV .R @: nH|AR@? .T/?<GNDPN^NuNVBg?./././. /.N2N^NuNV?<?./././. /.N N^NuNVBn=|/<?<HND\)@ nA)H=|2 n0<`0.fHl?<BgN"PJ@f0<`9|9|9|9|9|9|9|$9|9|9|9|9|9|'9|&9|%9|9|9|`Hl?< BgN"PJ@f0<`9|9|9|9| 9|9|*9|39|)9| 9|9|9|9|:9|89|79|9|9|/./,NPA 2, l"( A A$ 2, l"( A!@A< 2, l"( A!@0, l ( @ 9|0<=@9@ 9@ nn?</. HlN| `?< . @/HlNb nH|Am n(H|:f nH|PoHlH/.NP?<NDT9@ nA HHlNX nH|A??<NDX-@/.?<;ND\ lH|fHlL/,NP nH|fAN-H0<n l!n BgBg/,N~PHlHlHlHl /,Nl 0, X@ l1@PlNBn`v0,n l ( @B .6.g0,n lBh `0,n l1| 0,n lBh Rn n m?<NDTH|A n nHl l1|/.NtXHl\/.NP0.g(HlNX?,NTHlNX?,NT-l?< NPT?</.?< N4PBn`B/</.?< Nj l`, n(H|fSn`Rn0.nm?< NPT/.NXHlb/.NP/,/.NPHlN,X?.NTHlNX=l?</.?< N4P`B/</.?< Nj l`, n(H|gSn`Rn0.nm?< NPT0.=@=@ nn=|?.NBT0, l0(U@dH=@H T@=@0.2, l2(=AAo=n0, l1n=|0<=@=@=@` V0.g0=|Bn`B0,n l-h nB nB( ,2.nHЁ-@0,n lh 0.nnl?<Hlf/.N Bn`& n( n@H| l` Rn nmVn` n Rn nm nB n(H|f n|  .м @=P nfHlj/.N P`?. .м/N\Hln/.N `P=|` nH| l` Rn nm` n Rn nm n(2.l l|1@ nn0,n lh .м @=P</ n@ n@ nB(0.|H |0 n@0.|2.|H A|0 n@0.@=@0.|H |0 n@0.|2.|H A|0 n@0.@|P=@ ncond0.|H |0 n@0.|2.|H A|0 n@`` n(H|.fB n| nB( n(H|.fHlp/.N P`Hl/.N rP`Hl/.N bPRn n m0.Hd=@0.2, lh2, lhm(0, l0(2, lh=@0, l1n0, l1n?,N T0.|g`?,NT`(`|g`?<NT``|g`BgNTNHlN X?,/,N<\=@HlN fXBn0.|=@n n#g n"f0.g?<:?</,N~P`0.lf` n9f``0.lfA HH|.f$?<A R//,N lB(`>A HH|*f.,H|.f"?<A T//,N@ lB( nH|A??<NDX``0.lmV0.lnL0. l0( |f00.lH|A n nH|A??<NDX`r`0.lmV0.lnJ0.2.lA=@ ,6.HЃ-@0. l-h n(H|f n(H| fj0. l0( 6<@=@ no>Bn n(H6<@@H=@0.g n(H|@H=@`Bn0.|f0.gb0.nlXRn?< .R/HlN 0.g` no"0. l0( |??.N$X=n`b0.|g6 no. n(H6<@@H=@?<?<?<N\`"0.|fBnA HB noSn?.?.NXHlN~X?,NlTHlN,X`j n(H|f .R/?<;ND\`j`B n(H|f2 n(H|efHl?<;ND\`Hl?<;ND\`&`?<?<?<N\`80.g=n`=| =|0.lfzHl0, R@?N \S@9@ 0, |g`Bl9|`,`|g`9|Bl``|g` 9|9|BnN?.NTBgNDT`0.lf$Hl/,NPHl?<;ND\`F`l0.lf( nfBn`Sn nlBn=|`:0.lf:0.2.| AoBn` Rn0.nm 0.| =@=|`0.lf& nfBn`0.n nlBn`0.lf80.2.| AoBn`0.n0.nm 0.| =@`0.lfx?<?,?,/,N@ =@0.R@H2.| H/ /N. / </NR X=@0.2.| Am 0.| =@ nlBn0.lf?.?</,N~PBn/.NXHl/.N&PBn`z nfBn`v n lHHAgBn`T nf:Bn`*AH|.gAH|f` Rn nm`Rn no~0.gzAH|.ghA Hg^ nH|*gP n(H|*g@ n(H|*g00.RnA.AB?</.HlN n#g n"f0.g =|`0.lfBn` nn?<Hl/. N =|`-lBnBn`` .м @H|g> . 2.HЁ @-PRn0.no`.?< .R//.N" Rn0.nm nf.A HH|g=|?< Hl . @/N no A HfHl?<;ND\?,?<NDX n9fBn nf/,?<IND\0.N^NuNV?,?,?,?, ?<?./,NN^NuNV?<?. ?,?,?,?, Bg?./,N N^NuNV n"n 0<"QN^NuNVH0&n$n >.BF` J KH|f`RF0Gm L N^NuNVH0&n$n BG` KH|f`RG GPm?<P/ HЇ/N L N^NuNVH0&n$n >.0g2BF`&HHAl0<`DHHAo0<`2RF0Gm`$, F<* E:0El0<`0Eo0<`0<L N^NuNV?, .2.HЁ6,HЃ/ .2. HЁ6,HЃ/NH N^NuNVH?<?,NTXHz?<?./,N Bg?,N0XLN^NuNV0<=@ .-@`2 nH|.g nf`" nR2.RnA nf nRH|.f\`0.RnA nm?</.HnN ?<Hn/.N ?<Hn .P/N N^NuNV-n`R nfS` nSB nH| g/.NX=@ no=n` n n@Sn nl n|./.NX=@Bn` nH| f` Rn nm nH| f2Bn` n(2.n nRn0.P@noN^NuNVH>. Bn Gl=|0<G>0.A&Pg.`$0.g f`&k` f` &S0SGJ@f LN^NuNVH0.. Bn l0.Ad$P`0.A$P l=| <.g$`0.g&j`&Rf` $K SJf L N^NuNV f`d-l\ f* .)@`)@\)| < n!@ n `* n  n!n n )n\RBlN^NuNVH0>.&l` f?<?<?<N\ <` Go?.?/. HlNDd > GnBG o`+ |<Gm Fm02|Al `f* )@` g l`!|` )|\B`R \f* +)@\ g l\ ` )|`B` g k g S!kS м $@Bl` &Sf:fL0,fFRG ,$@&@0< GH m9| <`)J gR0HSGoX0@ Go?Hl/ N `BG JB&'|0,g|`B+0.AH0`&| L N^NuNVH0>.?/. ?. NP&@g0A g0A f8 2A 2A 2Ad 0A `T0A&0A P$h0A P!K'Jf0A `$0AR L N^NuNVH0>.?/. ?. NP&@g0A g0A f8 2A 2A 2Ad 0A `R0A'P0A P$P0A P &f0Ad `%K0AR L N^NuNV0.A-P0.Ad 2.A /. ?. ?.NP g0.A 0.Ad N^NuNV/ 0.A&Pg -S-k 2.Af 0.A g S!| 2.Adf&0.Ad  g k ` g k g S!k f0.A `0.A / N~X0.A&P0.A o0.AS0.AH0 &_N^NuNV0.A-P g n-P?.NT f$/. ?. ?.NP0.Ad-P`/. ?. ?.N6P-@ .2.A N^NuNV0. D@??.NX2.A N^NuNV?. ?.N|X2.A N^NuNV0.A 2.A N^NuNV0.Ad 2.A N^NuNVHB0,f ,`B&l``+ |Hހ޼ &Sf ,",ހ / </NR XLN^NuNVHB0,f <`.0.A&P`+ |Hހ޼ &Sf LN^NuNVBn`0<2.A202.At02.AH0 <2.A 2.AH 0,Ff 0.A00.A00.AB <2.A 2.Ad 2.A 2.A 2.A0 0,Ff&0.AA HB n l ?.N`^TRn n mB <)@\)@` o ,Ь)@ lm l oBlBl9|N^NuNV0,g0<`/NHl?<N \ @f ?<TNT`/0.2. EAl=| 0n nB-JBG`0RFnm 0g?/./.N :``H| f0.A0fB``jH| f0.A0gBR`\`Hf`>H|f0.A0f `H|f0.A0fB`RRG02,RAAo:0n l0lo n l=G-JSGBn` nH| g<H|)g2H|,g(H|;gH|-gH|?g H|"f2RGRH| g" n(H| f02,SAAlRGR`SSG Gl`Rn nmh Go Gm$n>.Bl0.f/.??.N4P`,/.??.NBP&@ g0.A `` 0nm0,f0. g`0<f?<NPT0.A f0.A 2.A nl0.` nn0.AHBP0<L N^NuNVH0=| Bn0,hf=| ` lhl=|  no?.NT n0<`?<NPTBg/. ?<N4PHo^0,Fg=|` Hl?<N \=@ @f0<`xSn?<NPT0.f/. N~XHl .`H?<NPT0<2.A?/. ?<N4PH-@ l .` n -|`-|N  nA-H<<` -l< @cr Gc><0GT@Fe`? м // N Gc>0S@H| gf SG GcSH| gfSG`R`RG0T@Fe`$R Gb f`dg60.A0g& Gc lho S @H| f RE`&?<A // N RRE lhoRREf Ec@0|gREB0//.?<N -@2¼l -|` f?<NPT m-| nn0.AHBP .L N^NuNVH>.Bn0l~f 0,gNBn`(0.Gf`?.N:T o=|` Rn n m0.g0A&P`*0A &S?NFT0A n`f0<2A202At0 <2A 2AH <2Ad 2A 2A 0AB`N0,Ff0AA HB G l?NVT0AHBP0,\g G lNY 0<LN^NuNVH>.0A&P`*+H|f0A &S?N(T`+H|o\+HS@=@ nlBn?. м /HnNV 0A &S?NTHn?.?NP`+H|lx2<+HC+ |A=@ nlBn?.2<+HC м HЁ/HnN 0A &S?NJTHn?.?N P`&S0A f` f0AH 2Am`0A S2AH 0A 6,fHÐ2A l <2AH 2A 0,\gNW.0<LN^NuNV?.NT0,\gNW 0<N^NuNV/ 0.A&P`B+&Sf <2.A 2.A0 0.A^BP0<&_N^NuNV/ B0.A&P`+g .`&SRf <&_N^NuNV/ 0.A&P`"+f|`0<+HSAA@&Sf <2.A 2.A0 0.A^BP0,\gNU0<&_N^NuNV?<?.NXN^NuNVH0.A^0g<0.A 2.A0 0.At02.A0`0.A 2.A 0.A&P`* 2.Af` 2.A0f` &Sf 2.Afd0.A02.A00.At02.A00.A&P0.A0 2.A `0.At02.A0f0.A&P0.ABP>.A>RG<.A< Go>< Fo<<`D+g0<+HSAA@` 0@>< 2.Af 0<F@` &Sf0. g 0,\gNS0<LN^NuNVH?.NT f0<`z0.A&P0.A-PNN><`Bl+H|o0 м +HSAHЁ/+ |??.NrP-@`8+H|l( м /0<+HC??.N>P-@`&S`(0.A fBG` GfSG-n&SfXNN0.A 0.AH 2.AmX0.A S2.AH 0.A 6,fHÐ2.A l0.AHB0. g 0,\gNR.0LN^NuNV?<?.NPXN^NuNVBg?.N<`Bl+H|o0 м +HSAHЁ/+ |??. NvP-@`8+H|l( м /0<+HC??. NBP-@`&S`(0. A fBG` GfSG-n&SfXNN?.NT?. NT Gf0. AtBP0. A 0. A^0Bg?. NX0. A^BP0. A g n( 2. At|0Bg?. N^X g0.A g0. A 0. AH 2. AmX0. A S2. AH 0. A 6,fHÐ2. A l0. AHB0,n f 0,\gNOf0LN^NuNVH0-n0.HѮ0.no0<`><` .R&@Sn0. @l`x$n ><<.`LSF0 @l><`@0.f H| H| Af` `><``HHAf``><`f Gf ..` nfp0L N^NuNV/ n f0<`jnn-n =|` nRf` Rn ndm0.AH-P0.A&P0.At0R@=@` м -@+ |nm?.?.+ |R@?/. /.Nx=@ @m0.AH [2.A l0.AB nn0.AtBP`0.S@2.At00.A 0.g|0<`2Bn&S0.AHRf0.AH 0<&_N^NuNVH0.A-PA&H n( |=@Bn` n f`Rn0.nmBn` nf` Rn nm0.nn=@ 0. 2,SAAo0. 2,SAA=@ 0,S@=@ `Bn g0.AH00.At? .м // N 0.At0H?././ N 0.H0.n? .м 2.At6HЃ6.HЃ// N A&H n oBn0. S@=@0. R@=@`z KH|Al\H| g<H|)g2H|,g(H|;gH|-gH|?g H|"f0.R@=@ 0.S@=@ `SnRnRn nm~0.|9@/ ?. ?.NP0. H n o"/ ?. ?.NP0.At0 `0.At0n0Bl0<`0<LN^NuNV?<?.NXN^NuNVBg?.NXN^NuNVH0Bn`~A$H0.A &@ f`d+ |=@2,Ae 0. g`Z -@ f =|Bn`r .м -@ nH| o nH|m0. f Bn=| n( |=@ @b"Bn0.2,Ad 0. f``=|0.2,SAAg 0.2,Af( g0. g`0.A ` nc=| nc?. м // N `Bn0. JB ncd0.2,SAAdV0.S@H|g0. fH| g Rn`R`Sn0. fSH| g Rn`6 nc. nd&0.S@H| g0. f Rn0,At00.fb nc=| nc?././ N `Bn0. JB0.n nc0. n(H|fSn0.AH0A$H0.2,Aeb0,S@=@Bn` JH| g<H|)g2H|,g(H|;gH|-gH|?g H|"f&RnH| g J(H| fRn`"Sn nl=|`Rn nml no nm=l/ ?.?.NP&@2.A f`0.n0.H0. f0.S@2,At0 ndBnH| f ncRSn`Lf`N0.A 0,S@=@Bn` JH| g<H|)g2H|,g(H|;gH|-gH|?g H|"f&RnH| g J(H| fRn`"Sn nl=|`Rn nml no nm=l/ ?.?.NP2.A &@0. f0.S@2,At00.n0.H ncH| g H|fRSn`Bn0.2,Adf`\-K&Sf`J0.A nc\H| fRRn nc=|/ ?.?.NjP f`0. f0,At00.g``:0.f?.NT0.A `0. f0,AtBP``f ndBn/ ?.?.NP&@ f`r 2.A f`X0.g0. g ?.NzT0.A 0. f0.At00,g`0. f0.g`0<f~0,\g0.lfNCL N^NuNVBBnBn0. fB lLW|=@ lJW|n lLW|=@ lJW|n` 0<=@=@0.g-| 0.g-| `0.g-| N0.A-P`?<?<NX l$?<?<NX af0<`0. g n(f n-P` n( ||o"?. .м /Nv\ @f0<`b?. A /NX\ @f0<`D0,g& l(gN/<X lA/N^PN n-P fNN^NuNV=l,=lJ=lR9|JBlRBl,9|D0,\f NN`NB` n fBNpJ@g:N>=@0.| @f NJ@g`0,\f l4f ?.NT?<?<NX l ?<?<NX af`?. ?<NX l^B nRH=@ n f*0,\f$ l4f?.NT n f ?< NTB?.?. ?<N\`< .R u0o,9n,9nJ9nR0,\fNNBlD0<` n fT o /,NXNpJ@g8N>=@0.| @f NJ@g`0,\f l4f ?.NT nfl n fN/<NXNpJ@g:N>=@0.| @f NNJ@g`20,\f l4f ?.NT0,\fNN9n,9nJ9nRBlD0<N^NuNV/<NXHм-@`xNpJ@g6N>@.H| @f`l0,\f l4f.H?NT?<?<NX l$?<?<NX af0<``/<NXHmt0<N^NuNVHl?<N \N^NuNVH0,At9P0,A&P0<=@9@9@9@=@g+ |=@+H9@0.2,At2Ad0,At00,At0ljm&0,At02,jSAA2,A20`0,A2BP0,A2 Po$Bg м 2,A26HЃ/N\0,A0g"gBg м /N\?NTNvN`N> lf0<`Z0,g0,f 9|N`Bl0|f`0|Hg|Pg` =|`8`&|Gg |g|pg|qg|-g|g` =|``|g`.NN?Hl?<N \< Fl&N??,N$X0,A&PNBl=|` `|g`N ?<JNT` `|Rg` 0,|g9|R3=|` ``|g`60,A P0,A0 l1@?<NT` ` |g`0,A P0,A0 l1@?<NT` H G;m GDn =|` 2 GTm G]n =|`  Gf=|0,At9P` ```0|G7g|H8g|P2g` =|` ` |Sg`N 0,At PfN `TgL0,A&P м /0,At??,N2P&@gBg м /N\N4N9|0,A2BP0,At02,SAAf 0,S@9@0,At PfBl0,AH0=|0,A&P` `|g`"N 0,|g9|=|` `n`|9 g`b0,|gN ?,NDT=|` `@ G;o G; n =|` n G~m G/n=|0,At9P` H``0,g` B0,fTg*?,+ |? м /HlN" =@`Bn<.` 0RFAB Fm9|0|f0|Kg`0,At Pf0,AH olN 0,A2 Pog BgHlN\0,A2BP0,S@9@2,At09|H0,A&P=|`?<N T0,At9P` ` |Mg`0,At0AH|g0,At02,SAAm0,AH 2,A"SlhN0,A2 Pog BgHlN\0,A2BP0<2,At09@9|P0,A&P=|`?<N T0,At9P`2`|Rg`:0,A P0,A0 l1@?<NT``|wg`*0,AH0Nx0,At9P``|ag`x0,glg0+ |? м /HlN + |AB0<2,At02,A20BgHlN\BlN `6`|bg`2 l0|g ?<hNT` l0|g ?<[NT``0|K4g`N ~0,At9P`` |M6g`N 0,At9P`0,AH00|g`0,At PfT0,AH o@0,S@9@2,At00,A0f9|H`9|=|`.?<N T0,At9P`` |Sg`0,At0AH|fRgJ gBN0,|g ?,NrT` ?,NPTBl0,At9P=|`?<N T0,At9P`v`|R0g`N 0,At9P`|r g | g`N,0,|gHl0,hT@?N \U@9@h`Bn0,g0,A0gBn0,A0g<,At<`v0.Rn @c=|`fAH EAlN E g* E.g$ E!g E,g E;g E-g E?g E)f0.S@=@0R@2,At0`SF Fn nc nd=|`Bn G f9| 0.f60,A0ff=|`g f=|0.g<,At<AH0,At0ABHl0,At??,NdP0,fPBgHlN\02,At2A<,At<`AH|f`RF FmABA 2,At6HЃ/02,AtP??,NTP0,f0,AH 2,A2,fSAAlj0,AH 2,AR@?BgN2~XN20,AHRBgA 2,At6HЃ/N\0,AHS0<2,At09@0,A2BP9|=|`F` | g`0N0,At9P0,A0gBgHlN\?NT`0| @fL0,||g|g`N?<@NT``|g``N?<>NT````B0| @f0,|g`0,|` 0| @f0,|g`0,|0|gN0|?NT0,A0g 0| @ fBgHlN\?NT0,At9P`` ``T0.gn loHlN??,NɜP&@`.0,g0.2,At09@`0,At0 l fD0,A0g4g,Bg м /N\<?NT Fl FgBl0,A2 Po$g+H9@Bg м /Nt\Bl0|LN^NuNV loHlN??,NȶP9|BlN^NuNV0,A gz0,A P-PBl?,N@T f$0,AHS0,S@2,At0`0,AtBP0,AH l" <2,AH 2,A 0,AH 2,Al$0,AH 2,A N-*`N.0,A 2,fHSЁ-@ .2,A"Sll0,AH  .??,NX-@ g<0,AH Ю Bg .м /N \0,AH  N^NuNV`0,At0AH|g*0,AtRP0lm0,S@2,At00,At02,A2P2,jSAAm0,At02,jSAA2,A200,A2 Pl0,A2BPBgA 2,A26HЃ/N \0,At0Af0,jS@??< NfXN(0.SnJ@fN^NuNV`0,At Pov0,A2 PoR0,At02,A2P @n00,A2SPBgA 2,A26HЃ/N \0,AtSPN0.SnJ@flN^NuNVH<,At<HƍRF2,AtPBG`(0,A0g ?< NT` ?<NTRG0FmLN^NuNVH0<>A &@`f`RG Gm0LN^NuNVN2,At00,At02,jSAAmX0,At02,jSAA2,A200,jS@??< N XBgA 2,A26HЃ/N \NPN^NuNV0,A2 Po BgHlN \0<2,A202,At0NN^NuNVN0,At02,A2P?0,AH 2,A?NTXN^NuNV0,At0N^NuNVHN=@2,QAAf8?<?<?<NM\O0,A0f0,At0nl`9|<,At<:,A2:A&H0,A0gP KgH>< Fl K"H Q0E2,jSAAl0R@E? HІR/N .\0E?. H?N X0RF K 0lm <,9|`ZBl0,At00Eljm>0R@2,A20Bg HЅR/N\ Kf0,jS@??< N pXN2LN^NuNV0,At0n @l0,At=P?.NT?.NTN^NuNVH:,At:8,A28A&HN<`h Elb9|>` K( KH|f`RG0Fm0Fl0S@Dljl0S@D??< N X0D? HЅ/N\0.SnJ@fNN^NuNVH0$n&n >.0.A=P=GBD` De`[.f`0.f|.|| g`2:ʼREDBF` RD De`^RF0Em`:`|g` DcSDS`$`| g``&.|| mRD``` .gRD0SG @bP Dc8<B0L N^NuNVBl`BgNTN9@?<NT l~9P l9P l0|lg l?<NTHlHlHlHl?< ?, Nz0,l f0,g0,g9lN0<`~`Bl0,|g4N0,f0,|fl=l n;mT nDnL0.@=@n; l0|gn` l0|gn`0<`?.NlT`0<``0<``0,|Hg|Pg`H?<?<NX l.`?<?<NX?<?<NX m0<``L`8|H8g2|P2g,|Gg&|G7g | g|g|Sg|Sg|R0g``Bl0<`>``0,gF`?<?<NX?<?<NX m` ?<NDT?< NDT @mSl lHo 0,*fN0,|gxNN0,| g`p=l=lNnNN?,NT9@?<?,/,NP0,fN2NNBl0<`f`0,g N0<`R``|g`00,l f NN"4 l$fBgNTNN``|g|g`BgBgBgBg?< ?, Nh ``|g`9|qN0<``n`|g`V lf9|P2`2 lf9|H8`" lf9|H` lf9|P``"9lN0<`n`|g`9|`L0,lf 0,lgN9l9l0,l fNbJ@g0<`0,RgNpJ@g9|D9|FBlH=l=l?,z?,xNTXBn`LNpJ@g>N>|@H?N"T.H|?NlT0,g.H?NT`` Rn n m9lx9lz?.?.NTX9|H9|DBlF`60,g0Bn`"NpJ@gN>@H?NT`` Rn n m0,A0fN lg0,0|Hg` lo9|`9|``|Pg` 0,2,fSAAl9|`9|`b`|H8g|P2g` 9|`J`|Gg|G7g` 9|`2` | g|Sg|R0g|g|Sg`9|`Bl``N @]|=@g lf9|-` lf9|9lNN0,>N^NuNVH0&n>. <,AH,2,A Gn0,A20fBG??NTX?<NT??NTX0,g lo :,SE8,j` ll BE8<l`|0Em0Dl Bl9|` 9|9|.H| l.@9| ` .H|g9|` 0<9@9@ .H?NlT0RG2,jSAAm`[f~9|9|``.H| l*.@9| Bl.H?NlTBl 9|`P.H|g$Bl9|.H?NlT9|Bl` .H| g.H?NlT`Rl0RG2,jSAAm`[fd`0,g( lo :,SE8,j` ll BE8<l`:<8<??NTX`0Em0Dl Bl9|` 9|9|.H| l.@9| Bl`*.H|g 9|Bl`9|0<9@9@ .H?NlT0RG2,jSAAm`[fp9|9|` ?< NlTRG0ljmL N^NuNV?>.?. 0,AH 2,A?NTX0g0,gn9|Bl G l 0,A0f`|@9| `0|g9|` 0<9@9@ ?NlT9|9|0<9@ 9@`h G l40,A0f`P|@Bl9| ?NlTBl 9|`.0|gBl9|?NlT9|Bl`?NlT>N^NuNVN0,A^BP?<>NT l=P l=P0,g0.lH=@`0.l2<H$H=@ lPjf 0.lHS@=@ @lBn`& ljf0.lHS@=@ @lBnHnHn?<?<?.?.NL0,g0.nlH=@`0.nl2<H$H=@ lPjf$0.nlHS@=@ @lBn`* ljf"0.nlHS@=@ @lBn0.no0.n??,NX`0.nl0.n??,NvX0,A 2.HЁ2,AH 0,AH 2,A"So0,A S2,AH 0,At0?<>NTNNNN^NuNV0,lmV l~9P l9P l9P l9P0,2,l |AoF0,g n f0D@> Glb *'@-@ f0.A ` n %K $-@ f0.Ad ` n!J&R`$K&Rfb n00<2.At02.A20 <2.AH 2.A 0.A 2.A NL N^NuNVA.-H n m=|  n|1 n|0`, nm0<1n n@ n| `0<`0Bg ,T/?<GNDP?<NDT|A l0.AA Hg0.AA/ lA/NP-l`R nH|n` nH|\f` nH|:f` .SlR?< /./,N nB` lB-l`R nH|n` nH|\f` nH|:f` .SlR nBN?<Hl/./,/,N=@ lg/,/,NP`=| nn0<`N?. /,?.N0P=@ @l*NNHl?<N \ @f`LN0.`nNN0,gN0. fH?</,0.AA/N ?.NpT0.A 2.A 9|N>0<N^NuNV n o?.NT f0<` n m=|  l |1 l |0`, nm0<1n l @ l | `0<`4Bg ,T/?<GNDP?<NDT|A l0.AA Hg0.AA/ lA/NP-l`R nH|n` nH|\f` nH|:f` .SlR?< /./,N nB` lB-l`R nH|n` nH|\f` nH|:f` .SlR nB n l lf"?<HlL/, /,/,N=@`=| lg/,/,NP`=| nn0<`N n W|? lA/?.NP=@ @l>N nfHlN?<N \ @f`&`Hlp?<N \ @f` N n n,?</,0.AA/N ?.N T0<N^NuNVH=l~0,\g=l` =l~9n~0.l~g&9n~0.A00.A,0<.A,R/,</N.,2,fH/,/NR,X-F,<]/,./NR,X Fl<< Fo<<02.APg0??<?, Nh\8.A(2,fH n(<0,\g:.A* o*`*.</./N.././NR.X Go0,\f><`><02.A,Pg??< ?, Nh\0.A,00.A09n~LN^NuNV^H=lͲ`=lͰ^?<XNTBlͲ9lͰ9lz9lx9|DBlF=lJBgNT9|9|N @l` N BlNNN Bl><BF9||0,|gN0,gN`9||NΒ0,g0,AH09|D<, lf` 0| g`.0,f"0<2,A202,At0`Bl` |Pg`0,A 2,Adg0,AHR?<?,N"X0,AH 2,Alfm0,AR?<N T0,A gR0,A P(H9@Bg0,A м /Nv\?<?<NX lBl|`Bl|`Bl|><` D`|g |Hg`0,AH o?<?,NX0,AHS 2,Al0,AS 2,AH ?<`` |P2g`00,A 2,Adg2,fUAH0,AH Ё 2,A"Smv0,A S2,AH 0,A 2,fHH2,A 0,A l0,AB?,NT`0,fU@??,NdX2,fUAH0,A Ё 2,AHm0,AH 2,A NN ><`` |H8g`0,AH o2,fUAH0,AH  lX0,A W|=@b <2,AH 2,A ?,NT0.bfAN .`l0,A W|=@b0,fU@??,NX2,fUAH0,A  l0,AB0.bfNN><``|Gg`^ <2,A 2,AH 0<2,A202,At0?,NTNNZ><`n` |G7g`0<2,A202,At00,A S2,AH 0,AH 2,fSAH2,A l0,AB?,NPTN0,At0N><``|.g`?,NnT9|``|!g`?<9NT``|"g`?<<9|`` lf 0,|g ?,NTT` ?,N2T0f?<WNT9n`Ͳ9n^Ͱ9nJBlD9|F?,x?,zNXNBgBg/,B?<?, Nh l-g ll0<`N0<LN^NuNV=|`6?,\?./,NP0.2.RAAf?,\?./,NPRn n o n l0. l ($ @-h0.AA-H nf A-H?</./.N ` nRf`" nH|\g nH|:fR`S .2.AAаnBn`> nH|.f`6 nH|`o n nR nRRn nm nBN^NuNV0,\gHlHlNP0,AA Hg$?<<0,AA/HlN `HlHlNPHlHlNPBgBgHl?<?, Nh 0,A0 l1@0,A0 l1@0,A0 l1@0,A0 l1@?,NTN^NuNV/ N0,A/?,N"\&@0,AH-P0,A 2,AH Bn`Bf`B -@ +H9@Bg/.N\0,AHR&SRn0.lfmBl`BgHlNn\0,AHR0.Rnlfm0,AH 0,AH/?,NL\2,A NծN"N&_N^NuNVBn nl=|0.D@=@N2BgBgNTX`0.gNr`NV0.SnJ@fNN^NuNV9lv9ltN^NuNV?,v?,tNTXN^NuNV?.?. NTXN^NuNVBlZ?<NTN^NuNVBlZ?<NTN^NuNV0.g ?<]NT` ?<^NTN^NuNVHlz?,?,~NPBlN^NuNVAz-H0,g. 0,f n|9|0,Pf^. . ||o0,Rl n `2. ||g. ||fSl0, @lBl``0,P|g. g0,Rl n `|. ||o0,Rl n~. . || l&. || g0,Rl n^.@ . g. ||2,Rl n. || g lmF nB0,f/.?,?,~NtP0,g0,fHl?<N \=@`=| nfp=|0,~AA HfBn`9|F?.?,~NX @n$Hl"?<N \ @f`` ?<'NT` ?,~NTBlF` ?<'NT0,\g 0,l~f=l9l~N9nN`F0,H//.?<N 2,HHl"?<'NT?<NPTHlJ?<N \BlN^NuP@PP Pp @Pp 0pp0pppp0ppp`pppPpP@PP0`0`0pPppp @@0@ @`0 `b```````P@PpPP 0` P P0@@PP @P@@@P P@ppP@ P@p p@pp p@P P`pp`pp Pp pp ``P@Pp0pp`Ppppp`P 0 @7PPpp PP```````0P@PP@` p p0P `0``pP p pP`@PppPp `@ppPPPp` PPP p @PpPpPpPp P ppP@pPPPpP @@P@P@P@@Pp@@P@ @@@PP PP Pp 0`Pp pp0pp0p `0`pp0PpP@PPp`p`0pPpp `P@@@PpP```````pа@p 0 p P pPpp Pp@ PpP@P@@PP `@PpP`P`0 PPp @@pP@Pp PP ` pP@p PPp P @ p`P``p@P`@ppPppp@pp``@PP PPpPP `0P p`ppp`pPp@p PpP@pPpPppp`Ppp@@P pP```````p`аP@p P ``P @pP P p pP@@PP PP@PpP@PP PppP @@`P@ pP P PPP`P@ Pppp0@ @@@pPPP@ @PPp@P@P@@P`P PPp @ 0P P0@@PP 0p`P@@PP P@ppP@ PPPpP0@PP@@@ pP0pp`0`а@pPP0` `@p pppp p` @@Ppp`p@0Pp`PpPP`@`P` p PP pp pp P PpPPp@0@p p PPp pPP`Pp @0pp`Pp@p@PPP PP@ 0@ppp0P 0``pP `p0pPp@Pp@@p `@ppP` PPPpp @`PPP@p@pP p0p``` ``а P0@@@ @ 0 `@@ 0 ` ``pPp ` `@ppp`P 0 Ppp p `00Pp`@PppPp `@PpPpPpp PPP p`@`pp ```````0P`Pl`d```````P@P P0 @4 @0``p ``P@Pp0pp`Ppppp`P 0 @7PPpp PP```````0P@PP Pp 0`Pp pp0pp0p0 `0`pp0PpP@PP `p`0pPppp `@0@ 0@` 0``@P@P@P@@Pp@@P@ @@@PP PP Pp 0`Pp pp0pp0p `0`pp0PpP@PPp`p`0pPpp `P@@@PpP```````pP@PPpP P p`ppp`pPp pPpPpP@pPpPpppp0@0@ 0@`  ` Pp`P``p@P`@ppPppp@pp``@PP PPpPP `0P p`ppp`pPp@p PpP@pPpPppp`Ppp@@P pP```````p`P@PP0p `0 0P P0@@PP p@PpP@@PP P@ppP@ PPPpP@Pp@0p p@@ PpPp ` p@@@pPPP@ @PPp@P@P@@P`P PPp @ 0P P0@@PP 0p`P@@PP P@ppP@ PPPpP0@PP@@@ pP0pp`0`P@PP@ `@ppp P 0``pP0p`PP`@Ppp@p p@PpP` PPPpp0@@Pp pp 0P pPp ` ppPP`Pp @0pp`Pp@p@PPP PP@ 0@ppp0P 0``pP `p0pPp@Pp@@p `@ppP` PPPpp @`PPP@p@pP p0p``` ``а@` 0@ppp`P 0`ppp p `00Ppp@PppPp `@PpPPPpp PPP p @`p@pPpPp 0p pP@ PPPpP@`P``pPp ` `@ppp`P 0 Ppp p `00Pp`@PppPp `@PpPpPpp PPP p`@`pp ```````0P`а@P0`p@ @P `PP p `p00ppP@P@@pP Pp@PpPpP`0 Pppp `@ pP@PppPp ` pP@p Ppp P @`@Pp0Pp` p@ pPPP`PP pp P0@p@ `P `pP p0 0p`0ppP@P@ppP p@PpP`P`0 Pppp @@0Pppp @``````P`аP@P`0P P @pP P 0p` @P@@PP PP@PpP`Pp Pppp @@0PP@P@ pP p P@ Pp@ ` P P`@@ @ @PP @ PPpp P@pppPPP@P P @pP P p@ @P@@PP PP@PpP@Pp Pppp @@0` @Pp @p```````0P``аPPP P ppp P0 @pPp@pPppPpPPp@`Pp p pP p@p pP PpPPppp@p p pPpp ` Pp P`@p p ``P @ `p`p`pp@`@@@PPP`0P ppp P0 0Pp@pPppPpPPp@pPp p pP @`P pP@@ ```````P`а@pPp0` `pp` p` P`0`p@0Pp0PpPP @pP` p PP ppppp0pp P PPpPPp`0@p p PPp ` P PP@ @ @PP @ P PpP P0ppp pp0` `pp` p` P`0`p@0Pp`PpPPp@`P` p PP pp @`pp@ ````````@ @`` ` 0 pppp@00``0PPP `Ppp @ @P pp @pP PPP p @`` ` P0 ppP @P@p@ ``````` @@#`0@`0``P p`Pp @@%P@p ```````~`dP ``````` 08T 0`&08:8888888 0l0|0 ` x0xx8xxx8xx| xxx 0l0880 p8 00p0 00x0 d0000`````f0l0880 p8 00p0 00xTD08888888p~2080000p x 00880 0x0`Hxx|x`|p0x|x00df080000p x 00880 0x0`H880>>88800l0p0008xx00p0 0xx00` |p0808P`0l0p0008xx00p0 0xx00`|TP>>8p(08:0l0p00088x|00 x00x000 000xp0" ``p xp0l0p00088x|00 x00x000p 8888888(|r0|`00000p 0 p00 0̴x0`00|`00000p0">>>  ""80|`00000p 0 p00 0̴x0`00|T<08888888p(| l00`0 0 008800 0xx0`0`00|0x00808"" 6  l00`0 0 008800 0xx0`08> 0>888888(`08l88000`0`00p00x00`00 0xx`00" "  * l88000`0`00p00x00T88888888pH@00l000x`x000|0000 `|xx<0|00"* $"0l000x`x000|0000  88888880†0xv `00xxxxx`xpp08xxxxlx0x00< x|x||` xxx|xx0 00$< >" 0xv `00xxxxx`xpp08xxxxlx0x00< xT 8888888~0``<x 00  0``<x 8888888&0@:p  0`&0@4T 8888888x xx0lH080plx0x8xxxxx0x|x xx|xx 80p00p80||0p x xx"0lH080plx0x8xxxxx0x|x xx|xxHx8@H8888888`8 0l|l08880 px 0px0 0`8xx x`|0x||0D(x x>(0l|l08880 px 0px0 0`88TH@@@8hD888888800|l 0lH800000x|00| 0 x0xx0``l` |000x0DNx 00lH800000x|00| 0 x0xx0``l|xp@@D|X(>>8`(|`8 xxxx xx0Hx0p08|000 0 ` 0 0x0``0D0|`00x00000 |xxxxxxx0 (0Hx0p08|000 0 ` 0 0x0``0DTHN<|8H>>800(8 0 f88l000`0``00|00 0x0``|00 0x|x|`0(DNؚp~ 0 f88l000`0``00|00 0x0`|>>8888888`(|` Hp000xxxxx`xp0px|xxxl0|00x x|x||` 0xx||0(0(p2 x0<<\Hp000xxxxx`xp0px|xxxl0|00x x8T|8888888( `x | xx xx00|`00|&p 0p80| |8px | xx xx<.Tr00|`00|8888888NVHA )@A )@A )@A )@ ,&@BG` H@RRG GmLN^NuNVNBg/,N\N^NuNV?,?,?,?,NtP l$f0<l\??,"NfX l$f?<?,"NX/.0,l 2<H$A l$W|A?0,2. AT@??,"Nd l$f?<?,"NfX l$f Bg?,"NXN^NuNVH0A&H ,м$@0,At0R@?/ N\`f` ",Ҽm lB(?< ,м/N\ l||L N^NuNVH0A&H ,м$@>,AH.R 'm / <d/N. .// NP` ?/ N\`f` ",Ҽ"m lB("?< ,м/N$\ l||"L N^NuNVH ,P&@ l l0,|1 `10NL?<NTBg/,N\LN^NuNV? nf><0`0RG l GFm><0 nm0,A0f?<Hl ,мA/N 0,A0g l|CB0,A0g l|IC0,A0g l|WD l0|g l|UE><A`, nl$?<?.NLT/ ,м0/N ? ,HЇ/N\ nl?<?<?<N\>N^NuNVH0,\f ,м &@` ,м)&@BG` 0RG K Gm0,f0/ l8f A-H`, l8f A-H` l8f A-H`A-H?</. ,м$/N l4f A -H`A-H l2fA-H?</. ,м)/N =|0,~AA-H`R nf` nH|\g nH|:f`S .2,~AAаnR` nR2.Rn l nH| n` l Rn n#m l ~l l| 0,~|1 l@` l|0 l|10,gBg/,N\`9|N^NuNVHl ?<BgN"P0.g=l8?< ?</, N#RP9@8 l8f9| 8`d l8f9| 8`T l8f9|8`D l8f9|8`4 l8f9|8`$ l 8f9|8` l 8f9|8`Bl80,8ng ?,8NT?<?</, N"P9@6?<?</, N"P9@4?<?</, N"P9@2?<4?<3/, N"rP9@0?<?</, N"\P9@.?<(?<'/, N"FP9@?<$?<!/, N"0P=@ n!f -|`4 n"f -|`" n#f -|@` n$f-| .vg )nvNBg?< ?</, N!P?/, N"PBg?<?</, N!P?/, N"tPBg?<?</, N!~P?/, N"TPBg?<?</, N!^P?/, N"4PBg?<4?<3/, N!>P?/, N"PBg?<?</, N!P?/, N!PBg?<$?<!/, N P?/, N!PBg?<(?<'/, N P?/, N!P l 8f=|`f l 8f=|`V l8f=|`F l8f=|`6 l8f=|`& l8f=| ` l8f=| `=| Bg?./, N PBg?,6/, N PBg?,4/, N PBg?,2/, N PBg?,0/, N PBg?,./, N xP l6o9|'Bg?,/, N ZP=|! vf=|"`" @vf=|#` @vo=|$Bg?./, N PN^NuNVHl ?<BgN"P0.g8 l (T @-PHlD/.NPJ@gZ nRP nRP|: nRP nRP nPB.HnN:X-@/.NX l (l @-PHlPBg0<%l?/, N(PN^NuNVHl ?< BgN"P0.g2?<?</, N|PY@9@?<?< /, NdP| 9@NN^NuNVHl ?< BgN"P l ( @/Hl"NP l ( @/HlNP l ( @/HlNPA"  l "( A A  l "( A A  l "( A Bg?<?</, N P?/, NPBg?<?< /, N P?/, NjPBg0<l?/, N PBg0< l?/, N PN^NuNVtHlHntNPHlHntNPHl ?<BgN"P nl?<NPTBgHnt?<N4PHlBgHl?<N4PHl`/<HlR?<Nj /<HlR?<Nj /<HlR?<Nj /<Hl?<Nj /<Hl?<Nj /<Hl?<Nj /<Hl?<Nj /<Hl?<Nj /<HlR?<Nj /<HlR?<Nj /<HlR?<Nj ?<NPT,RH|fHlHlRNPHlHlRNP,RH|fHlHlRNPHlHlRNP,H|fHlHlNPHlHlNP,H|fHlHlNPHlHlNP,H|fHlHlNPHlHlNP,RH|fHlHlRNPHlHlRNP,H|fHlHlNPHlHlNP,H|fHlHlNPHlHlNP,RH|fHlHlRNPHlHlRNP,RH|fHlHlRNPHlHlRNP,RH|fHlHlRNPHl.HlRNP?< NMT)@$AR  l "(, A AR  l "( A A  l "( A A  l "( A A  l "( A AR  l "( A A  l "( A AR  l "(\ A AR  l "( A A  l "(t A AR  l "(D A `h no^?<NPT?<Hnt?<N4PHl:HlD?<N \ @f"?<Hnt?<N4PHl```/<HlR?<N /<HlR?<N /<HlR?<N /<Hl?<N /<Hl?<N /<Hl?<N /<Hl?<N /<Hl?<N /<HlR?<N /<HlR?<N /<HlR?<N ?<NPTN^NuNV0.fX l$fNBn`@?,2,HA| <,2,HA| n. f`@0. gnBg?./.NP o l o6 l oSl ?,?,?,?,?<?<???<N`0N0<@ l"n"QBl /,?<IND\BN0.f.?,?,?,?,?< ?< ??0<n ?N0. fn0, gRl ```/<}NX)@ n(?,?,?,?,?<?<??BgN` 9| N0<@ l"n QNLN^NuNVHn?. BgN"PBgBg/.N P?,?,?,?,?<Bg/.N?./.N<\=@?.?</.NP0.|N^NuNVNN/. ?.NN\N^NuNVBn=l,*=lR(=lJ&=lD$=lF"9|FBl,BlR9|J9|DN0,g 0,Y@=@`=l-nH n gX nHRHH|f`: nHH|\g nHH|:fRH nHB/. /.HNP`SH .Hl?< NPTBg/.?< N4P @o0,fHlHnLNP`(0,|gHlHnLNP`HlHnLNP/.HnLNPHlHnLNPBgBgHnL?<?, Nh =l>=lHlHlHl?,"Nb?<?<NX l?<?<NX`0,gBl?< NPT9n*,9n(R9n&J9n"F?.NTXNN`=|-nH nHRHH|f`, nHH|\g nHH|:f RH nHB`SH .HlBl0,\g NN`NД9n$D0,\fBgBg/,B?<?, Nh `Nr0.W|N^NuNVJ0. fB.J`Hl8HnJNP0,fHl>HnJNP`& lfHlHHnJNP`HlRHnJNP/.HnJNP0,f$0. fHl\HnJNP`Hl~HnJNPHlHnJNPBn`AJf` Rn nFm`AJ Rn nFmB.NBgHnJN\N^NuNVBn0.| g`?<?|g8|g2|g,|g&|g | g|!g|#g|'g|(g`N`?.NT=@``|%g`N`=|` `|*g`"N`0,gNg`dN`N0,A^ P0,A^0gA  l!@?,NT`A  l!@?,NTN`D`|?g`&N`N?,NTA!  l!@``|@g`N`N?,NT``|Bg`"N`N @o?<?,N6X``|Dg`N`N?,NT``|Gg`&0,gN<`N`N?,NT`~`|Fg`N`N?,NT`^`|Hg`\0,gN<`FN`?,NT m2=lN6 @oN?,?.NXNrN`9n``|Jg`N`?<?<?,N0\``|Vg`N`N\``|Xg`N`BgBg?,N0\``|Yg`N`?<Bg?,N0\`~`|Ng`"0,gN<`fN`?,N T`T`|Qg`:0,A P0,A0 l1@?<NT``|Rg`:0,A P0,A0 l1@?<N~T``|Lg`x?,HlN\Hl ?<BgN"PA  l "($ A ?<?<NX @f.A Hg$HlNX=@ nn nm9n`P`|Mg`|N`?,HlN\Hl ?<BgN"PA  l "($ A ?<?<NX @f.A Hg$HlNX=@ nn n m9n``|Pg`60,A P0,A0 l1@?<N.PA<,PL>`( nf,ښH|fHlHlښNP l$fA&`-H=|`A&d-H=|?</.Hl&hHlڌHlښN @oHlڌHlښNP?<NPT?<Hlښ?<N4P @oBn`$?NHl ?<BgN"P?<?<?,?,?,?,Bg?</, N ,ښH|fHlRHlښNPHn?< BgN"PBg?<#/.NPBg?<"/.NPBg?<&/.NPBg?<'/.NP?<Hl Hl HlڌHlښN @oHlښHnFNPHlڌHnFNP0,\fNHn?< BgN"P0<9@,9@29@69@4B?<N\N n0(j|g 9|,`B n0(|g9|49|2`$ n0(|g9|69|2` n0(|gBl69|2` n0(|g Bl6Bl2` n0(|gHl ?<N \ @f` n0(|gBgHlښNH\`` n0(|g?<HlښNH\``dAڌ HgXAF-H` nRH??<?<N\ nf?< ?<?<N\0,ͮg?< ?<?<N\`X n0(|g HnFNX`>0,,g9|HlڌHlښNPBl` n0(R|g`6` HnFNXB?<N\Bl.Hl ?<BgN"P0,\f(?<Bg?,?,?,?,Bg?</, N `,9|.Hl ?<BgN"P0,\f.N?<?<?,?,?,?,Bg?</, N 0,4f60,6f0Bg?< ?</.N2P?/.NPBg?</.NP,ښH|fHlHlښNPHn?< BgN"P n0(|g9|4` 9|6Bl49|2B?<N\HlڌNXB?<N\Bl.Hl ?<BgN"P0,\f(?<Bg?,?,?,?,Bg?</, N `` |g`Bl.Hl ?<BgN"P0,\f*?<?<?,?,?,?,Bg?</, N Hn?< BgN"PBg?<#/.NPBg?<"/.NPBg?<&/.NPBg?<'/.NP`,ښH|fHlHlښNP?<HlHl HlڌHlښN @o\HlښHnFNPHlڌHnFNP0,\fNHn?< BgN"P0<9@,9@29@69@4B?<N\N n0(j|g 9|,`D n0(|g9|69|2`& n0(|g9|49|2` n0(|gBl69|2` n0(|g Bl6Bl2` n0(|gHl?<N \ @f`B n0(|gBgHlښN0\`$` n0(|g?<HlښN0\``fAڌ HgXAF-H` nRH??<?<N\ nf?< ?<?<N\0,ͮg?< ?<?<N\`BgHlڌ?<N4PHo.NHlZ?<N \ @f`t?<NPTHlڌN~X n0(|g HnFNX`40,,g?HlڌHlښN @l0<`R?<Hl^HlN ?<@HlښA X/N ?<@HlڌHlN HlHlRNP`` |g`BBgNT`?<?`9|`,?<Hl?<N4PHl BlR``9|/<Hl&?<N B?<N&\``29|R l1| l1| .R @N .T @!0,\f(?<Bg?,?,?,?,Bg?</, N `~`|(g` N8`l`|*g` N>`Z`|,g`LN @o|8g8|9g2|:g,|;g&|g|?g|@g|Ag`0.|8?NT` D`|Lg` l l h*` &`|Cg` l l hR` `|Eg|Ng` NF` `|Gg` N` ` |Hg`HlBgNH\NBn`n?<?<NXJg?<?<NX af`DNJ@g6B?<NH\HlBgNH\N$J@f`/<HlpNP`,`|yg`H?<Hl^HlHHlpHlRN @o0,\fNHlpHlRNPN` NR```0,gHnF?.N \0,\fN`N0.N^NuNV?<nNTHl ?<BgN"P0,\f*?<?<?,?,?,?,Bg?</, N  l*f(9|JBl^)lxFAb  l "( A!@` l*f(9|JBl^Aʹ)HFAf  l "( A!@`| l*f"AЀ)HFBl^Al  l "( A!@`R l*f$ ltA)HFBl^Ar  l "( A!@`&9|J9|*)l|FAx  l "( A!@Blz0,\f(?<Bg?,?,?,?,Bg?</, N ?<uNT0,^ l1@JN^NuNV ln`?<#Hl~HnN ?<?.NLT/Hn#N ?<HlHn9N ?,Hn?N\ l l@?,N$T0,S@??,NX0,S@H2,AH 2,A HlHnNP?.HnN\/HnNPHlHnNPHn?<N \N^NuNV/,XHnNP/.HnNP/,THnNPHn?<N \N^NuNV`R nf`T.H| f |~`0.H| m.H|~f nR^.@ nR n R Pf nB .`N^NuNV0.`|g`At-HBn`F nf R`0 nH| f n(H|o R``Rn nPm0<Pn=@ nf 0<`/,hHnNP?./.HnN /,dHnNPHnHnNX??,~NTP9|``|g`0,f`Bg/. HnN| A-HBn`^ nf R`H nH| f n(H|o R` nH| l R``Rn n m0< n=@ noA-HBn`t nf `p`^ nH| f( .S @H| f nSBSn`( nH| l nSBSn``Rn n m no  m/,`HnNPHnHnNP/,\HnNP?./.HnN /,XHnNPHnHnNX??,~NTP/,T/,TNX??,~NTP/,P/,PNX??,~NTP`0<``|g`0,f`Bg . / </NR X/HnN| /,LHnNPHnHnNP/,HHnNPHnHnNX??,~NTP``0<```0<`N^NuNVBn`0.RnAB n mBN^NuNVBn`0.RnAtB nQm/<NX)@ <)@)@N^NuNV/<NX-@ .-@n n g ng nf` o  @oN( ,ܑ0.,HAf m 2l`| m& ."<,/",l/NR"Xl`L0.gDBn`AARn n m0.@/<NX)@N^NuNVBn0. f f)n ,ܰlV o4 o( ,Ԑ-@ o/.?<Nx\BBgNn\N*0<` oX oL ,Ԑ/?<N6\J@g. ,Ԑ-@ o/.?<N \=|N0.f@ o4 o( ,Ԑ-@ o/.?<N\BBgN\Nl0.`N^NuNV/<NX-@0.|=@n n g ng nf`0.gzBn`AuAtRn nOm0.@ n fBg/.N(\`. f/<NX)@/<NX)@N^NuNVBn f`B/<NX-@ .򐬧-@ do?</,N\=@)nN^NuNV l$f )|Fp <)@)@)@)@BlBn`0.RnAB n mBn`0.RnAtB nQm l 8f)| l` l 8f)|l` l8f)|Bn>Blל)|Bn@B , -@V=l.bBnl/.NX n(H|f 0,6g9|לBZ0.bfl=|l0,.gHlښHnpNP`B.p/.HnpNP?<NPT?<Hnp?<N4P @l0,*gNHlL?<N \` =|j0,4f$0,2g0<C`0<H??<?<N\`,0,לg?<G?<?<N\`?<F?<?<N\ nln Bg/.NT\?.j?.lHlnNP0,לfBN`?<?<NX l`J?<?<NX l?.j?.lHlN`P/.Z/,$?<N HZg?.j?.lHlN2P`BZ nlfBnb?<?<?<N\?< Hn`/.N nB( .`H| n?.j?.lHlNP`lA`-HB` nBRBH|f` .BA`"Ҽm .BA`"Ҽm )|` /.BNX/ <d/NR X)@`0,0g0<`0<=@`0,4l0g=|`0.`H/ ,$ЮZ/Hn`N 0.`HѮZRnl0.>f?<?<?<N\`Bn>=|j0,0g0<`0<=@`0,4l0g=|`0.`HѬ``|g`Rn@0.@ @o``` |g`nBn@?.j?.lHlNpP l$Z(H=@f .Z-@R0,6fR0,4fL=|j`$ .R6.jHЃ l$Hnfg`Snj0.jnfn .Z2.fHЁ-@Z0,.gV gL0,0g0<`0<=@`0,4l0g=|` ,-@J2.`Hn Jo .JZ Zo2/.Z/,$?<N HZg?.j?.lHlNdP`J?<NPT0,.gBnf`?<?<?<N\`R?<?<NX l ?<?<NX f`/<N@X|g 0,f`?<?<NX g?<?<NXg`.=|bBnl?<?<?<N\Hl/.NP`Rnf n fm2`\?<?<?<N\?<?<?<N\Bnj`Rnj nu0jm?<?<?<N\Np <`z`:``?.j?.lHlNPN?<?<?<N\?<?<?<N\?<?<?<N\?<NPT nlo /.N~XN <N^NuNVB.Bn0,0g0<`0<=@0,4l0g=|Bn` nH??<?<N\/<NX|g0,f0<`?<?<NX l$?<?<NX f0<` n.0. n|A@=@Bn`*0.|g0.@6<!@=@` 0.@=@Rn nmRn0.nm0,2f.H|??<?<N\`60.??<?<N\0.|??<?<N\0<N^NuNV/./,$?<Nj -@ l <` .f .`0,0g0<`0<=@0,4l0g=|"<0.S@H .-@ .-@0,8fB-n` . l$R .2.HЁ-@ .m .2.HЁN^NuNVBlל , -@BnBn)|B0,.gj?<HlN\ .-@ n-P?<NPT0. n PH|fB,׎`8?<0. n/Hl׎N ?<Hl׎?<N4P @l,׎H|f( nf 0,*gHl ?<N \0<``,׎H|fBgBgHl(NHP?<NPTBn` l$BRn nm0<=@9@0Bn`60,לf`R?<?<NX l ?<?<NX f`/<NX|g 0,f`?<?<NX g`?<?<NX=@?<?<NX m`=|C nCg nGf@?<?<?<N\Bg?<?<N\?<?<?<N\/,$NxX` ng?<?<?<N\`BgBgHl8NPN.0<`NRn n mBgBgHlPNPN0<`&Rn`B0<=@9@ל0,.gBn?<Hl׀?<NjP nRn`z?< A׀ R//.N ?.?.HlbNDPBn` l$BRn nmA׀ R//,$NPAd  @)P-l$` nRH|f` .",$Ҽm/,HlnNP//,$NPBl0`=|BBn?<NPT0,.fz?<NPT?</.?<N4P @m2?<Hl׀?<NjP oAd  @)P?<NPT`&?<NPT0,*gHl|?<N \0<`0,6l49@0?<NPTBg/.?<N4P @l`?<A׀ R/Np\BgBgHlNP/.NX-@ l`?.?.HlNP0,לfj`R?<?<NX l ?<?<NX f`/<NX|g 0,f`p?<?<NX g`?<?<NX=@?<?<NX m no 0,לg=|0.|g` Rn`:`|Gg`9|ל`|Fg` Bn9|4`|Cg`*Bn nn9|2Rn0. @ m```|g`Rn0. @o``` |g`Bn0,.g nf`0,0g0<`0<=@0,4l0g=|0.HѮ .f" .찮g?<NPTBn`?<?<?<N\`R?<?<NX l ?<?<NX f`/<NX|g 0,f`?<?<NX g?<?<NXg``Rn n m^0,.g`?<?<?<N\Bn`Rn nu0m?<?<?<N\?<?.HlNPN>0<`^ .f( .찮f/.NX-@ l`BRn=|`` ``?.?.HlNP?<?<NXJg ?<?<NX f`0,4g nf0,0R@??<?<N\`?<F?<?<N\0.|??<?<N\0.6<@|??<?<N\ ,$Ю/NHX @f``:?<NPT?<?<?<N\?.?.HlNP?<?<?<N\N0<N^NuNV0.HѮ0.HѮ `S n S n0.SnJ@fN^NuNV?BG`0A PH|g0<`RG0 lPm0<>N^NuNV nl A˲-H`0.g A-H`A-HBn`P0. n-P no nR*` nRBBn` nRBRn nmRn n mN^NuNV9n,0.|g`A)H ,)@4 n0<`Bn`0.Rn l40 n2m ,4мd)@0T?0<`?<NPTN*?N^NuNV0. fHl?0.f ng nf?0. l00. l1|0.2, l1@9@` nf40. l00. l00. l1n`D0. l1n0. l00.2. l1@2. l00. fz2.H l0(H/"/N." ,Ё-@Bn`@0. lA0=@?0.A//.NV 0.HѮRn0. lhm0<N^NuNV nl0.`T lf9|0<9@89@0<`20.lf&0. l9P0, l1|`0. l Pl<0. l0(=@ @m0. l0`?N.J@f ?N^NuNV0. lhm`9n˪Bl0< l1@ l0 ln`=|`2.H l0(H/"/N." ,Ё-@Bn`X0. lA0=@?/.0.A/N Hl0.A/NP0.HѮRn0. lhm?<?.NXRn0.lmRN^NuNVBnHl?<N \=@ @f` nf/. BgN\`0.g =|9l0Bl˨`/. ?.N\=@ @l nf ?< NT`f nf=|?<?<NX l?<?<NX af`$0.nmBnBl˨?< NT0<fpN^NuNV?Bn?.NT @l0<`NN @f0<`<>,˨`0 n -P n`` nH|N^NuNV. H?Bg?<N\ fHlh?<N \ @f``0<`0<N^NuNV nfHl?<N \` nfHl?<N \N^NuNVHl/,ˮNP nf A-H`r nf A-H`` nf A-H`N nf A-H`< nf A*-H`* nf A<-H` nf AL-H`0.`././,ˮNPHlX/,ˮNP/,ˮ?<N \0.N^NuNVHn?<BgN"PÅ-H`R nf` nSH|\fR` .ÅlRHnHnHnHn/.N n!n?,HldN\ n!@0,ސl?HllN\ n!@?,HltN\ n!@?.?.?.?.BgBgBgBg?<N?.?.?.?.?< Bg/.NBg/.N<\=@0. n1| N^NuNV0.f AȾ-H`AȞ-HBn`(0. n 2<'n ll!@ Rn nmN^NuNVBn`Rn nmHnHnHnHnBg?<?<NN^NuNV ll=hF l o"0.xH=@0.H =@`=n ll1n^ ll0(F2,RAHH=@0.2.nAo 0.n=@ ll1nZ0.n ll1@r0.2.nA ll1@v?<"NT?<%NTN^NuNVH>.&l:,9|Ȗ0ll Gl <`NBF` Ef <`<0 K:RF0Gm9EȖ0H l2(H/ /N. -@ ,ЮLN^NuNV-l=l l=hBn`^ nf`^2.H0.H/"/N." ,Ё-@?././.NX J@f0.`"0. n=PRn0.lm0.&l:,BF` Ef`0Gf0`0 K:RF0lm0<` <2A 2A, RG G mA)H < l2(H/ /N. /NX-@ nBG`0Aˀ RG G m``BG`VHl"/.NP G l0<1G n@ ` n|1 n|0 0Aˀ l0(HѮRG G mA)HhHl/,hNP/,hNX lh(H|\gHl2/,hNPHl4/,hNP?<NT ll ( @  ll ( @  ll ( @  ll (L @  ll (4 @  ll ( @  ll)hT ll!l"Al)HhAs)HdA|)H`AȆ)H\AȌ)HXAȓ)HTNNLN^NuNV0.|1g` A>-H`\`|2g` AB-H`H`|3g` AH-H`4`|4g` AN-H` `|5g`AT-H` AZ-H`` .N^NuNVH0:,vA$H?NT&@ oREBG EdlRGR E lRGR<. 2<l$A0.^@|=@?/ N\/ ?0.2AA??,"Nd +HB+/ ?0.| ??,"Nd 0@+.HB+. м)/?0.|??,"Nd 0@.+(HB+( м/?0.|??,"Nd 0@(?NpT&@/ ?0.|p??,"Nd `0<`0<L N^NuNV=n0. R@=@0.=@0. 2<H$A=@Hn?<?,"N$PN^NuNV0,=@^@|9@0,=@^@|9@0,=@^@|9@0,=@^@|9@BHnHnHl?.?,"Nx9n9n9n9nN^NuNVHHnHn?</,lNF0<H$n0.T@=@9@9@0.9@9@0. ll2(YAA9@9@ ll0(S@2<H$A>=@0.n9@9@Hl?<?,"NP><HǏ$ nm60.g0l0l<< `0l0lBF?<NTN<`` nfP0,|nl9n|<,|nHƍ F o<< 0lll0l9@vAjv ```<,vl=n0=@0.Rn9@9@0.n9@9@0,Sl9@0.GS@n9@9@ nf ?< NT`R=lv nm 0l9@vBgNT?,?.NXAjvg ?< NT nm9nvLN^NuNV=lv9lvN9lv`?0.2<H$A=@0,|nm0.2<H$A=@0,|no`0,zf0.g0,pf?.?</,lN~P0,\f?<?</,NPBn`0.RnAjB0.lo0.N^NuNV0,pg0,\f?<?</,NP0,pf?<NTBgBg/,lN~P=|0,pf ?<NfT lvm l'vl?,vNT-@=|'0,pf"?,?,?,?,?<Bg/,lN o\?</./,N ,м-@ nSB` .l` nSB nH| gBgBgN~X`B l'vmBgBgNjX lrl9|v` 0,pg Blp``?<NrT9|rBnN$0,pf0?.NT?<'NT?./,lN<\=@|=@`=|*-l ?<?</,lN2P|=@|1 nR ll0(|=@0.f0.f n#g n)fS nB-l?<?< /,lN2P| =@|1 n ll0(|=@0.f0.f n#g n)f nB` nB(?<?</,lN2P"0<A=@0.g n n!g n%g n)fNBg?./,lNP n&g=|0.|&g`2 nf=|`Rn0. @o=| llBh`^`|,g`>?.?</,lN~PN BgBg/,lN~P?<NT9|rBn``|'g`4 lrl&/,T/,"NPN9@r?<NDT9|r`` |*g`0,pf?.?</,lN~PBgNjT lȪH|IgFNR @oN0<``. l'vn lvmBlpN0<`` lN vgBlpBlp0<``|.g|g`0,pfBgNT=|`(`|g`/,T/,"NP`|(g`B lrm4?,rNTT @]|9@rg ?<N8T`?<?,tNX``|g`N@Bn``|#g|)g`?<BgNX``|"g|!g`?<?<NX`n`|%g|$g`?<?<N~X`N`|-g`?<NT9|r`2`|+g`(?,rN^T9|r?<NnT?<?,tN.X ng0,pf?.?</,lN~P?<N4TBgNTN^NuNV llh llBh?<'NTN^NuNVBgN~T0.g ll1|  ll1|A l"B l B lBN ng ?<NLT ll0(F ll1@^ ll1@r llBhZ llBhv ng?<"NT?<%NTN^NuNV?,?,?,?,?<?./,lNN^NuNVBg?<?</,lN2P?/,lNPBg?<?< /,lN2P?/,lNPBg?<?</,lN2P?/,lNP-l nH|oBg nH|1|?/,lNP-l nH|=@ nH|oBg nH|1| ?/,lNP nH|gBg?</,lNP`Bg?</,lNPN^NuNV=lrNN?.NvT9@r @l N9nr?<?<?<N\`0.f=|9nt ll1| ^ ll0(F2,l8HrH ll1@Z ll0(^ llhZ ll1@r ll0(F llhr ll1@v0,pfNJ?<"NT?<%NTN0,pf ?<NTNN^NuNVHlh0,ȘR@?N \=@Sn0.lȘf`P9|Ȗ lvm ?,vNT?.N6T lȖm&?,ȖNT9@v9@ lvo AjvN^NuNV9nȘ?.N:T9|vBlBn`0.RnAjB0.loN^NuNVd0,\fNN*Hl ?<BgN"P l ( @-P/./,ȚNP-lBHl/.NP/,Ț/.NPHl/.NP0,\fBgBg/.?<?, Nh ?<?</, N2P=@f nff-lX`& nff-l\` nff-l``-ld/./.NP @oT n nB( <)@)@Bl0,fHl/.NP/,Ț/.NPHl/.NP`0 n nB(Bl/,Ț/.NPHl/.NP0,\fBgBg/.?<?, Nh 0,\fNNN^NuNVZ=|b0,\fNN/,/,ȚNP-lBHl/.NP/,Ț/.NPHl/.NP0,\fBgBg/.?<?, Nh ?<?< /,lN2P| R@=@d l H|0|g` =| b`D`|g` =|b`2`|g` =|b` `|g` =|b``|g`Bnb nbm"9nb8BgN,T?,8NT0,\fN ndf-lX`& ndf-l\` ndf-l``-ld-l n nB( lH|g6 n nB(/,Ț/.NPHl/.NP=|Z`/./.NP=@Z @o^ <)@)@/,NX9@ n nB(0,fHl/.NP/,Ț/.NPHl/.NP`:0,(gBlHBl n nB(/,Ț/.NPHl/.NP0,\fBgBg/.?<?, Nh nZoHlHnhNP ll (4 @ -@/HnhNPHlHnhNP nH|Ao HnhN$XHlHnhNP ll (L @ -@/HnhNP nH|Ao.0,g(HnhNX=@` n`g n`l ?.`NT0,\fNNrN^NuNV/,?<N \=@ @f`. nf?<Hl,?,tNP`?<T-@V VoJ/.\/.V?<N \l=|``8/<HnZ?<N l=|````Rnb0.blm`=|`?<NPT0.`gHl?<N \N^NuNV/.N`P`|g`N$`@`|g`Nv`0`|g`N&` `| g`Nv``| g`0<`0<f~N^NuNV,hfHlHlhNP n o.?. Hl"L/.HlHlhN=@ @n0. `2`,?<Hl"N/.HlXHlhN=@ @n0. `0. N^NuNVH=|=|A"P-HA"h-HA"-HA"-HA"-HA"-HA# -HA#N-HA#v-H-|/-n .?Hl#N\?/.N\/./.NP/.?<N \?<NPT?<NPT .аg/.?<IND\LN^NuNVt?<Hl#N\ @n`:HlhHntNPHlXHntNPHlhN~X @lHl#?<N \N^NuNV?<Hl#N\ @n`HlhHnNPHlXHnNP?<Hl$N\ @n`nHlXHnNPHnHnBg?<VND =@ nfHl$6?<N \`. nfHl$`?<N \` nlHl$~?<N \N^NuNV?<Hl$N\ @n`BHlhHnNPHlXHnNPNHlhN`X @lHl$?<N \NN^NuNV?<Hl$N\ @n`,hH|AR@?Hn?<GNDPlh|:?<NDT=@HlhNXS@=@ nl`AhH|\f AhBHl$HnNPHlhHnNPHl%HnNPHn?<N \ @f&NHlhNTX @nHl%>?<N \NHn?<;ND\?.?<NDXN^NuNVN^NuNVBn0.N^NuNV/.Hn|NPHl%`Hn|NP?<NPT?<Hn|?<N4P @n0<` `/<Hn?<Nj -@ m.H|gZ.H|.f`/.HnNPHl%fHnNPHnHnNPHnNBX @o`V`0<``@/.HnNPHl%hHnNPHnHnNPHnN~X @l0<`<` o0<`*``0<f/.NX @o /.N\X0<N^NuNV?Bn-lHn?< BgN"P nBh n (< @-P nBBgBg/.N~P?,?,?,?,?<Bg/.N?</.N<\ @f`^ n0(|g=|`=| n0(|gBn`=| n0(B|g=|P=| `( n0(Z|g=|P=| ` =|(=| /,?<N \ @f`Bg?<./.N~P?,?,?,?,?<Bg/.NNBG` n0(dH2RAHd n1@?,?,?,?,?<?</.N nf2?0.=@0. n@0.H n@0.| n@?<BgBg?<?.B/.?< N nH|oN?<NDT=@?.?<NDX?</.?<NDX?.?<NDX/,?<N \N?<?</.N~P>N^NuNV0.H/ <N /N. -@`NpJ@gN>`N4J@g0<` .SJf0.2Qp:Yxʡ -No0 P@%pF`g=^"2B5RbwrV˕nO, 4$tfdGT$D۷_~<&6fWvvFV4Lm/ȉ鹊XDHexh'8(}\?ثJuZTj7z *:.lM|&l\dLE<, >]|ٟn~6NU^t.>NVA )@ n-|./.NX)@`)l n0<` ,м )@R0<N^NuNV0.9@N^NuNV0,H6.@| l02,A@9@0,N^NuNV0,g0,g?.NT9@`B0,@9@ lo0,|R@9@0,n9@ lo0,|R@9@N^NuNV/ BlBlBl9|&l|F0.@?<N TJ@gN Z&_N^NuNVNJ@f`DBl9|BlBlBl9|?<NT?<+NT?<NT?<0NTN^NuNV?NXJ@f`=lBlBlBG`& lH?N\T lH?NTRG lf0,@| lH?N"T0,| lH?NT?< NT9n>N^NuNV0.|=@ n l:AH|g?<NT0.|@?NT` ?.NT` ?.NT0,R@H@9@N^NuNV?<NnT0,|0?N^TN^NuNV?<NLTN^NuNV?<N:TN^NuNVBl?<dNT9@ ll0<`0,R@H@9@0<N^NuNVBlN @f0<`( lfN @f0<`l9|0<N^NuNV n f0<`0.R@N^NuNV0<9@=@BlBn` lBRn0.lm0,R@H H@=@Bn0.g=|`Bn`0.|g`ZN8J@g?<ANT0<`NJ@f=|`*0,| @f=|`0,| @f=|`\`|g`@NJ@f=|`*0,| @Bf=|` lf=|`Bn``|g`fNHJ@f=|`P lf=|`@0,g0,g? l0m( l9n 0.lf0,`` =l=|`=|0<fN^NuNVBlBnBn=|`(0.|g`tNDJ@g?<ANT0<` NJ@f=|`D lf=|`4 lfRn0. @ o0<`=|` lf=|``|g`jNJ@f=|`T l0m l9n=|`< lBf=|`, lfRn0. @ o0<`R=|`=|`8`|g`B?<?<NXJ@g$ lH|FfN0<` `0<`=|`` |g`0,|0=@0, l0nf?,NRT9@Sl0<``?,N4T l0nf2 lf*?,NT9@?,NT9@Ul0<`^`N?.NT=@0, l0nf0.g=|`=|`0,g0<`0<=@Bn``|g`:Rn0. @ o 0<``0,g no0<`=|``|g`&Rn0. @ o0<`NZ=|``|g`=l=|`?.NT?.NT=@Rn0.lo=|Bn0<fN^NuNV0,lfNJ@f0<`Z?,N>T9@0, l00, l1n?,NNT?,N.T9@0,R@9@0<N^NuNV`N2J@f0<` ln0<N^NuNV/ ?</.N\?<NPTBg/.?<N4P=@ nl0Hl&NnX/.NnXHl&NnX?<ENT0<`Hl&NnX0, lA&H|N0,H/A/?<Nj -@ o$Hl&NnX .?NT @f0<` .2,Hg?<NPT l?<ENHTHl&NnX0<`R0, lA&H|T|C?<N*T @f0<``Hl&NnXNJ@f0<`0<&_N^NuNV/ lh lh lh lh0, lA&H|+||||| ?<NTJ@f`NJ@g,H|l,H`0<@,H|l,H`0<@,H|l,H`0<@,H|l,H`0<@,H|f|,H9@9|,H|f9|,H|g 9|9|&_N^NuNV/ 0, lA&H|?|?<NTJ@gN&_N^NuNVBg/.N\?<NPT?</.?<N4P=@ nl0Hl'NnX/.NnXHl'2NnX?<ENT0<`JHl'@NnXN`0BgBgNpXJ@g lH|Ng`v0,S@=@ noP nlH0.H/ ,R/?<N ng&Hl'BNnX?<NPT?<ENjT0<`Hl'hNnXN``|Tg`N l(H|Cf?<NPTN0<`t`$Hl'jNnX?<NPT?<NNT0<`N`(`|Fg`NHl'NnX?<NPT0<`$`Hl'NnX?<NPT0<`0<fN^NuNV?< NrT @Bg`NJ@f`Hl'HnNPBlBlBlBl=|BlBl0,g:Hl'NnX0,g Hl'NnX,H|g Hl'NnXHl( NnXBg?<NXJ@g@ lH|Tg` l(H|Dg```|Ug``?<NNT``` l(H|Ag```|Bg``?<NNT```=|Hl(HlNP`Rn lPHnHlNP lH|g0.2,SAAm l(H|UfHlNXJ@g Hl(NnX`HlNXJ@g Hl(,NnX`0`|+g`N` `|?g`ND`?<NNT```N^NuNVBn n B lo0.ll ln0<` l0| @ f0<`0,,g`?<?<NX lJ?<?<NX=@0.g,0:N l4f0,fNN?.NTN0.ln=@ nl 0.D@=@ lo nm0.nm nf&0.H/?,N\-@2,A `&0.ln??,NX-@2,A 9nn gJ n( |? .м //. N n( | n B/. NX=@`=|`l nm^ n lV0.A쯞 @m@0.A쯞/NX=@?.0.A쯞//. N n B`=|0.N^NuNV nf0<`j=l`THn?.N\=@ @l0<`D no*.H|_f?. Hn/.NX J@f0.`Rn0.lm0 nl0. A(A-H`0. l$A-H n(Ab n(H|g0.AB n (-@ .-@V o n =@0.f n0(dH2.A `P0. nhnB n f nHH2.A `0. n 2.A ` n (2.A 0.A0=|=| nm8 nl0. A(A-H`0. l$A-H n(Ab n(H|g0.AB n (-@ .-@V o n =@0.f n0(dH2.A `P0. nhnB n f nHH2.A `0. n 2.A ` n (2.A 0.RnA0` ng=n0.A0` n0 n ( @`f=|`& n ( @af0.f0< ``0<`` n0U n0X nT0=@ @f0.f0<``f nl0. A(A-H`0. l$A-H n(H=@0.| @f n=P nl0<` nf` nl0. A(A-H`0. l$A-H n(H| @f n ( @`fU`l n0( n0=@T nl`V nl0. A(A-H`0. l$A-H n ( @af n0` n Pl nm n Pl0< ` nT0=@ @f0.N^NuNV8Bn8-n`R nH| n nH|f nH|>f/.NX0<` nH|?f/.N X0<` nH|g RP=|H`=|H` RP=|H=|J`"` nPH|fTSP .Pm0 nPH|g RP=|H`=|H` RP=|H=|J``=|J=|H``d nJf nPH|"g`J nJfP nPH|%gB nPH|:fBn:`* nPH|/f=|:` nPH|-f=|:` nJf nPH|'g` nPH|"f nJg=|J` nPH|'f nJg=|J` nPH|%f nJg=|J`v nPH|$f=|J`` nPH|@f=|J`J nPH|-f 0.JfRnH`0 nPH|.f0.Jg RnH=|J`HSPRnH`6`RP`6`$ nJl=|J nPH|_f=|J`RnHSP0<fr0.Bg nJm nJg nJl=|J nJo" nJg?.H .PR/HnTN `?.H/.PHnTN ATHB nPHo=|PH nJm" nJg nJg0<A2. @lBHnTN P=@>``|g` HnTNX/HnN zP=@>``|g`HnTHnN P=@>``|g` HnTNFX/HnN P=@>``|g`B0.:gHnTN8X/HnN >P=@>`HnTNX/HnN P=@>`F`|g`.TH?HnN :\=@>`"`|g`HnTNZX=@>``|g`jHnTN>X=@> n>m n>o2 .Pf0.@f?,HnTN \=@>` 0<8=@J=@>` n>m 0<7=@J=@>`` |g`HnTNX=@> @l2 .Pf0.@f?,HnTN \=@>` 0<=@J=@>`.0. g n>l0<=@J=@>`?,HnTN \=@>`0.J|=@>``0.@Rn@A0> n(@o=|J0.@A0 nJl`& n>0.Bg`SP .P-@L .Ll* n@f0<`Z nJf lo=|J`=|J`& n@f nJf=|J`HnNX=@J nJf9|`Bl nJl0.J` nJl0,pgv0. gp llh0,f lfZ=lD=l F9| Bl0,S@?Hl(FN\/NnXHl(PNnX/.NnXHl(TNnX9nF 9nD0,f?. HnN\=@J`J nJfB0,g$0. gHl(VHnTNPJ@g=|6JBl`Hl(^HnTNPJ@g9|0.JN^NuNVBnNHn?,N\=@g0 nl0.`*Rl?<HnNf\=@ @lBl`Rl0.N^NuNV0<=@9@,9n 9n 9n lo 0,S@9@N @f0<`N0,f lo0<` n n0,A 9@ n nBl0<9@\9@69@9@9@9@9@n lo ?,N$T9|`N=@ nlBl0,gNJN2`?<?<NX?<?<NX m0.N^NuNV0,lg0<`x/< NX)@$ ,$ n0<`V/< NX)@ , n0<`4A,b  l$ l$B(Bl lBBlA()H 9|l0<N^NuNVS .ml .",6,H҃lXBn`0.A촊  f`Rn0.lm ndl$0.lfRl0.A촊 0<`0<N^NuNVBn0,glBn`\0.A촊 -@ n`< nHn m. n2. | HAlR0.A촊B=|`Rn0.lm0.fX0,n @ o <`d ,6,HЃ-@0. n0. T@l0,|g0. R@ nRlR?. /./.Nl n B .N^NuNVHBF-n`* nH|Am nH|Zn n RRF nf0f0<`-nBGA(-H`> n(HFf?/. n/NX J@f0`|RG0 A(A-H n(f l$A-HBG`B n(HFf ?/. n/NX J@f0|`"RG0 l$A-H n(f0=@ Go Gn0<` Ggf0<=@=@-n`: nH|Am$ nH|Zn nH|Am n RRn nf0.f0<`-n l$A-HBG`F n(Hnf"?./. n/NX J@f=|`RG0 l$A-H n(f Gm0<`.0.f4?./.N\ n l n `0. n@`R n PH|!g n PH|_f2 n (-@ n(H|f . o /.NX`>=|-l n (-@ n(H|f . o /.NX0. n@ n1n n!n0.f(0 l$A -HA,d  n nB(0.f0<`0|>N^NuNV/. BgBg/.N N^NuNV/. Bg?</.N N^NuNV/. Bg?</.Nt N^NuNV/. Bg?</.NV N^NuNV0. |H/ <d/N. /Bg?</.N N^NuNVBn=|-n `Rn0. @o` nRf/.NX=@ nm nl0. A(A-H`0. l$A-H nH|!g& nH|_g n(H|g0<` n (-@ n(H|f . o/.NX nB0.R@?Hl,fN\-@ l0<`R?./. .R/Nl 0. n/.Bg?</.N =@ nl /.N&X0.N^NuNV0. H/Bg?</.N N^NuNV0. H/Bg?</.Nt N^NuNV0.H-@0. | @g ./ </N. -@X .gR/.N X=@ @mP0. l$A-H n(H|g0< `$ n(Hn g0<` n-h/.NX-@ n0<` nA -@X ./?.0. |?/.Nv =@ nl/.?<IND\` nX  nmF0. | @g nX `& ./ <d/NR X nRSn`$0. | @g nXB` nRB0.Sn @n0.N^NuNVBnB nH|-f =|R`2 ./ < /N. -@ nH|0ѮR nH|0m nH|9o ./ <d/N. -@ nH|.fpR nH|0m^ nH|9nP nH|0 ѮR nH|0m$ nH|9n nH|0Ѯ0.g .D` .N^NuNVBBn0<=@=@=@` no`` nH|/g nH|-f RnR`h`X nH|0mB nH|9n40.A0 0 nH|00.A0A0` nB`R nft nfZ nf =n=| nn=| nn=| nnBn ndlnl0.H-@ ./ <d/N. -@0.HѮ ./ <d/N. -@0.HѮ .N^NuNV=|BBn0<=@=@=@` no`` nH|:fRnR`` nH|0mB nH|9n40.A0 0 nH|00.A0A0`R nH| @afBnR nB`>`. nH| @pf=|R nB`` nB`R nf4 nf no n ln ` nf n fBn noBn n;oBn n;oBn0.H-@ ./ <(PA<*PN^NuNV lvH|f lr/NX0H|@A.AH?NtT.AH| f|~A.AH| f`Bn2`0.2Ap P.AHHAfr0.2APRP0.2ApR0.2Ap Pg0.2AP02.2APf$0.2A02.2AP0=|B`R`@0.2A 2.2Ap 0.2AP Po0.2APBP`4Rn20.2n0m$0.Bg`/<bNXLmN0.Bg0.2R@dH l !@` l B/<bNǘXR-@L/<bNdžXLm0<N^NuNVN l !@0<N^NuNVB lr ( / <d/NR X=@0.gD=| lr ( / <d/NR X/ <0.|g|g```|g` 9|2`v`|g`9|69|2`^`|g`9|49|2`F`|g`,N?< ?<?<N\ l !|0<``|g```|Bg/.?<N4P o?<NPT0.f /.N~X`0.g`bNNBl*0.f/.NXJ@g l !|`/.NXJ@g l !|0,\fN`N9|*NN^NuNV=| -|0,g=| o\/.NX=@0.g(0.H//.?<N -@2.Hg` 0<lH/Hn?<N -@ .N^NuNV-| o nBBn`/<Hn?<Nj -@ oZ.H| f0,g0.fSn`>B.`Sn`2.H| f 0,fB.. nH|f```Rn nmt nB .N^NuNV nf0<`?<NPT/.N~X?</.?<N4P o/,$NdXHlRNZXHlNPXHlNFXHlNf l 1| `0,>AA  l !@$Bn`20. A@A/0<n l /( NPRn nmBn`20. AA/0<n l /( NPRn nmN^NuNV l h l h l h0<=@0<=@`L0. l /( NX=@ nf0. l h0.no=nRn n o=|`"0.|2. l 1@Rn n o l 1| l 0( l h| l 1@ l 0( l h| l 1@N^NuNV l h gT l ($-@ l 0(( n2(A|=@=|`0. l 1nRn no`(=|`0. l 1|Rn noN^NuNV0<=@0<=@`00. l /( NX=@0.no=nRn no0.| =@ l h g* l ($-@0. l h( n2(A=@=|Bl=|`h0. l 0(| @g`RRl0. l 0(2. l h=@0.no0.|=@BnRn n o l 1n lf`=|`N0. l /( NX @g*0. l 0(2. l h=@`` Rn no` l 0( l h=@ l h g0 l ($-@ l 0(* nh=@0.no=n0. l hF l 1@ nf$ lfN lfN@ lfNN^NuNV l 0(H l 2(HA l 1@N^NuNV l 0(H=@ l 0(H=@0.n l 1@0.n l 1@ l 0( l h|=@0. l ho l 1n l 0( l h=@0. l h l 1@N^NuNV l 0(H=@ l 0(H=@0.n l 1@0.n l 1@0.n l 1@ l 0( l h|=@0. l ho l 1n l 0( l h|=@0. l ho l 1n l 0( l h=@0. l h l 1@N^NuNVBg?</.N~P?,?,?,?,?<Bg/.NHnHnHnHnHnHnBgBgHnBgBgBgBgBgBgBgBgBgBg?<?<?<?<N<=@0.|g0.|=@ n f lf`=|`^0. n0(| @f>=n?<?<?,?,?,?,Bg?./.N Bg?<NX`Rn0.2<lSAAo0.2<lSAAn` lg n1mb0.2<1lSAAnP0<2.|1A=@?<?<?,?,?,?,Bg?./.N Bg?<NX``0.gBn`j0.| 2. AH| AfD0<n=@?<?<?,?,?,?,Bg?./.N Bg?<NX`Rn0.lm0.ll`~?.?.?<Bg/.N =@ nm<0.2<lSAAn(?<?<?,?,?,?,Bg?./.N ?.?.?<Bg/.N =@0.ngH .2.Ё @0( | @g(?<Bg?,?,?,?,Bg?./.N `H .2.Ё @0( | @f*?<?<?,?,?,?,Bg?./.N HnHnHnHnN  nf(0. n0( | @f=| ng ng n fv?.?</.N~P0._@R@N^NuNVA(PA*P n (=@ n0(W@=@ n0(W@=@ n0( nhV@=@ n0( nhV@=@Hn?<?.NP?<?.NVX?<?.NX?<?.NrX?<?.NXBg?.NZXBg?.NX?<?.NX?<?.NX n0( W@=@ n0( W@=@ n0( nhV@=@ n0( nhV@=@Hn?.N\ n0( R@=@ n=h n0( nhS@=@ n0( nh=@Hn?.N\ n0( T@=@ n0( nhU@=@Hn?.N\ n0( R@=@ n0( R@=@ n0( nhS@=@ n0( nhS@=@Hn?.N\HnBg?.NPN^NuNV6Bl>Bn6`0.6 A@BRn6 n6mBn6`0.6 ABRn6 n6m lH|gHn8NXHn8NLX lH|gHn8NXHn8NX lH|gHn8NjXHn8N@XN^NuNVBnR` nR2.RnA nH|]fABHnNX=@ nlBn no=|9n>N^NuNVRBn`Bn`& nR2.Rn4. A@Ԉ B nH|]g nH||g nm0. A@Ј @B nm"`R nH|]g nH||f nH|]f`RRn nmPN^NuNV nH|]g nf`R nH|]g nf`Bn`Bn`< nn nH| o" n2.Rn4. AԈ BR ng$ nH|]g nH||g n m0. AЈ @B n m"`R nH|]g nH||f nH|]g nf`RRn nm*N^NuNV l nR lf` lRH|]f nBN^NuNVNN0.fN)n NNjN$N NBg?</, N~P?,?,?,?,?<Bg/, N`Bg?</, N~PN^NuNV0,f/<@NX)@ , n 0<9@`~BlBlBn`0.RnAB n2m ,м-@Hl ?<BgN"PBn`80.A쯞 0<n l ( @ 0Rn n mHl ?<BgN"PBn` n l0<n=@`R nl0<2.| A=@`6 nl0<2.|A=@` n(l0<(2.|A=@ .2.A 2. l !@ Hl//.NPRn n(mRBn`0.A쨾BRn nm0<9@N^NuNV f <`$/.NX@B loBn`p0.A-P oR n.HHAm@R.H?/./.N .H nB0.AB .`Rn0.lm ,6,HЃ-@ ..HHЃT",Ҽo <`P nR.H?/./.N .H nB.HT@l0,|gRl .N^NuNV f0<`xBlg .S)@9|`\Bn`0.A f`Rn0.lm n2l$ .S2.A 0.lfRl`0<`0<N^NuNVBn`P0. nA쨾-P o/.0.A쯞/NP`0.A쯞 PBRn n mN^NuNV0,f0<`jBn`X0. nA쨾/NX0.A쯞/NX2. nA쨾 f0<`Rn n m0.N^NuNVNJ@fHl/?<N \`*?.NTHl ?<BgN"PA  l "(< A 0.A Pg0.A/HnNP`Hl/:HnNP l ($ @-PHl/F/.NP0.R@=@ n m$ nlHl/N/.NP0.| =@`f nm$ nlHl/V/.NP0.|=@`: nm$ n(lHl/`/.NP0.|=@`Hl/l/.NPHl/n/.NP?.Hl/pN\//.NPBgBg/, N~P?,?,?,?,?<Bg/, N=|`?./, N<\=@ nfH.gHn0.A/NP?.NT @l?.?</, N~P``6` nf`*Rn n o=|` nf=|0<fl?.?</, N~PN^NuNVNJJ@f0<`<0,lf0<`0 nm n'o0<`?.NTNBgBgBgN\N^NuNV=| =|>>0,g nf0<`?<NPT?</.?<N4P-@ l .``Bn`@/<Hn?<N -@ l`$0.A/NX=@0.g40.H/0.A/?<N -@2.Hl`/<Hn?<N -@ l`?.N~TBn`x0.A쯞/NX=@0.g20.H/0.A쯞/?<N -@2.Hl`0/<Hn?<N -@ l` Rn n m l`Rn n(m?<NPT .N^NuNVvN@J@g nf0<`6?<NPTBg/.?<N4P=@Hl0.`Bn`?.NnTBn`HnxN0X=@ nn`0.f8.xH|>f*.yH|>f?< Hnz0.A/N `T.xH|>f0.yH|>f$?.NRTRn0. @(lBn```J`Hnx0.A쯚/NPRn n oH nn`?.NTRn n(m?<NPT0.N^Nu[1][Reserve memory size|is too large!|Select the reserve size or|use all available memory?][RESIZE|USE ALL][1][Not enough memory|for Editor or Capture!][ OK ][1][Error allocating memory|for Editor/Capture!][ OK ][1][Replace existing file?][REPLACE|APPEND|CANCEL][1][Editor memory is full!|Erase unused buffers to|make more room.][ OK ][1][Erase current buffer?][ YES | NO |CANCEL][1][Re-Order all lines in|alphabetical order?][Forward|Backward|CANCEL][1][Set End-of-Line Mode...][ LF | CR |CR/LF] ST-Talk Pro " Load Buffer #x from File... A:\ A  *[1][Error loading file!][CANCEL|RETRY] Save Buffer #x to File... A:\ A  *[1][Disk is Full!][CANCEL|RETRY][1][Error saving buffer!][CANCEL|RETRY][2][Print current buffer...][ ALL |SELECTED|CANCEL]no name! Editing: [3][Capture/Editor Buffer is full!][SAVE|CANCEL][3][Error Saving Buffer!][RETRY|CANCEL][1][Disk is Full!|Capture has stopped!][ OK ]Bfr: 0|Mem:0K|File: a.bbb|1200 full|00:00:00|$00.00|_ _ _ _ Buffer: 0 | Col: 00 | Line: 0 | Mem: 0K | |  CONNECT +++ NO CARRIER BUSY ATZ | R L 110 300 600 1200 2400 4800 9600 19200 fullhalfeplxSelect CAPTURE BufferSelect EDITOR BufferKKK[2][Erase this- buffer?][ERASE!| KEEP ][1][Erase this buffer?][ERASE!|CANCEL]\st-talk.pthST-TALK.PTH\ST2_MISC\ARC.TTP\\\\ST2_AUTO\\ST2_HELP\\\ST2_MISC\TRANSFER.TTP\ST2_MISC\KERMIT.TTP\ST2_MISC\ST-TALK.STF\ST2_MISC\DO-IT!.PRG[3][Insert ST-Talk Disk to|save default paths...][ OK |CANCEL] - Disconnected .[2][Time Limit!|What do you want to do?][IGNORE|5min MORE|HANGUP][2][Money Limit!|What do you want to do?][IGNORE|5min MORE|HANGUP] File Name:_.___F A:\*File Selector\*.*\*.  <1K(exit this folder)(to top directory) <>..\[2][Sort the list using...][ NAME | SIZE | DATE ]*..\[3][Not enough memory!][ OK ]Select Vidtex picture to LoadVTX[3][Read error!][ OK ][3][Open error!][ OK ][1][VIDTEX Picture... ][ View | File | Erase ][1][VIDTEX File... ][ Load | Save | CANCEL ][1][Vidtex buffer is empty!][ OK ]Enter filename for Vidtex SaveVTX[3][Write error!][ OK ][3][Open error!][ OK ]^[B^[A^[D^[C^[B^[A^[D^[C^[P^[Q^[R^[S^[?M^[?n^[?p^[?q^[?r^[?s^[?t^[?u^[?v^[?l^[?w^[?x^[?y^[?m^[H^[J^[H^[[B^[[A^[[D^[[C^[P^[Q^[R^[S^[[2~^[[6~^[[5~^[17~^[18~^[19~^[20~^[21~^[23~^[24~^[25~^[26~^[28~^[29~^[31~^[32~^[33~^[34~^[OB^[OA^[OD^[OC^[OP^[OQ^[OR^[OS^[OM^[On^[Op^[Oq^[Or^[Os^[Ot^[Ou^[Ov^[Ol^[Ow^[Ox^[Oy^[Om^[[2~^[[6~^[[5~^[17~^[18~^[19~^[20~^[21~^[23~^[24~^[25~^[26~^[28~^[29~^[31~^[32~^[33~^[34~^[O[1][Could not Load: |from the AutoDial path!][ABORT]DIAL.AP #[4][Planned for Version 2.0d!][ Can't Wait! ][1][Could not find| ][ OK ].TOS.TTP[1][The program,| ,|reported an error:| # ][ OK ]Select a File to View...*Select upto 20 files for Batch Send*Select a file to Send...*[1][No Background sending|for this protocol!][ START |CANCEL]Enter file name for Receive...*[1][No Background receive|for this protocol!][ START |CANCEL][3][File already exists!|Delete this file?][ NO | YES ]Select the ARC file for Add/CreateARCSelect upto 20 files to Archive...*xah Select the ARC file to UN-ArchiveARCxxh Select where to UN-Arc the Files* *.*Select the ARC file to ViewARC vh Select the Drive & Path*Select the Program to Run...*.TTP[2][|Save Capture buffer now?][ NO | YES ]Enter Capture file name...*[3][|File already exists!][CANCEL|DELETE|APPEND][2][Erase current buffer?][ERASE!| KEEP ][1][Erase current buffer?][ERASE!|CANCEL][2][Print current buffer?][ YES | NO ][0][ AutoAnswer| |Waiting for a Call...| (UNDO to Abort)][][0][AutoAnswer:| Answering a Call...][][2][Run an AutoPilot Program...|from the current Edit Buffer|or from an AutoPilot File?][BUFFER|FILE|CANCEL]Select an AutoPilot File...AP AutoPilot: Select an AutoPilot File...APSelect an Emulation File...EMU[1][Illegal Emulation format!][ABORT]Save Function Key DefinitionsFNK[1][Error Saving Function Keys!][ OK ]Load Function Key DefinitionsFNK[1][Error Loading Function Keys!][ OK ]Select Options File to Load...OPTSelect File for Save Options...OPTFILE.HLPTEXT.HLPPRINT.HLPDIAL.HLPANSWER.HLPSELECT.HLPKEYS.HLPAUTO.HLPSelect a Help File...HLPTTYVT52VT100VT220OTHER[4][AutoPilot ended with an error:|| Line # , Error #][ OK ] Blk # / Try #  | FMODEM YMODEM -GXMODEM Batch Send: Recv: |Waiting...[1][Error opening file!][ ABORT ]Waiting...No Carrier!TimeoutBad block #!Receiving...Saving...Disk Error!Done! Press any key...Done! Press any key...Disk error!Aborted![1][No files found!][ ABORT ]No more files.End of Batch transfer.Bad end of Batch!Starting... [1][Error opening file!][ ABORT ]Loading...Waiting...Done!Sending...Aborted! Viewing: Sending: Printing: [1][ This file is not a |standard text file!][CONTINUE|CANCEL]Done Viewing Printing Sending , ESC to Quit or any key for More, Press any key to continue...~ ~~;~01241220?1?3?4?5?6?7?8?9?18?1941220?1?2?3?4?5?6?7?8?9?18?193457~;~;~~;~;~;~~;~;~;~;~356?1545?1?4?5#STT02,CC,GH^M^J^F^F^[/Z^F^F^[[ ; R^[[?10n^[[0n^[[?6c.CDF.DBF.IDX[2][ : Not found.|Insert proper disk or create?][OK|CREATE|CANCEL]***[0][Print Directory Entries...][CURRENT| ALL |CANCEL]LocalLD#1LD#2LD#3[1][Printer not responding ...][CANCEL|RETRY][1][End of Search.][CONTINUE][1][Top of Search.][CONTINUE][1][Not enough memoryDuplicate recordYou can't add|a blank recordFile seek errorDatabase if fullFile link errorDisk error!][CANCEL]   ATD ATD1 ATD1 ATD1 [3][Cannot create database|Check Diskette ...][ABORT][2][Print detailed list|orz quick list?][DETAIL|QUICK|CANCEL][2][Select the type of Dialing...][PULSE|TONE]ADDSAVE SELECTSORTDIALEDITREAD SELECTDE-SELECTQUITADDUPDATEFINDDIALDELETEPRINTBLANKQUITST-Talk Pro (|| Name/Number Comments/Status Baud $/Hour|| ^0 ^7 #2 ^3| ^1 @4 ^8|||| Name Number Baud $/Hour|| ^0 @4 ^1 #2 ^3| \DIAL.DBF30012002400960019.2K\DIAL.DBF[1][Sort AutoDial Directory by:][NAME|NUMBER|BAUD] Dialing... Connected to - No response Dialing... Connected to - No response .OPTINSTALL*STT2.MNU[2][Insert ST-Talk disk to|save the Dial Menu...][ OK |CANCEL]ST-TALK.MNUSelect Dialing List to Load...SEL[1][Error Loading Selected List!][ABORT]Save Selected Dialing List...SEL[1][Error Saving Selected List!][ABORT].AP AutoPilot: BUGS[1][Use Medium Resolution!][ SORRY ]ST-TALKM.RSCST-TALK.RSCST-TALKC.RSC[1][Could not find ST-TALKM.RSC][ OK ][1][Could not find ST-TALKC.RSC][ OK ][0][ ST-Talk Pro, c1988 QMI | | Loading Options| and| Function Keys...][]stt2.optstt2.fnkstt2[2][Upload text File or Buffer?][BUFFER| FILE |CANCEL]Select a File to Upload...*[1][Could not open File!][ OK ][1][Erase current buffer?][ERASE!|CANCEL]Search for Text...Selected matching lines[1][Text was not found!][ OK ][2][Continue searching?][ YES | NO ]Replace Text...Continuous replace[1][Text was not found!][ OK ][0][Replaced  occurances of| ][ DONE ][2][Replace here?][ YES | NO |QUIT] End Select Begin Select Begin SelectKKKK[1][Initializing the Editor|will erase all buffers!|What do you want to do?][ERASE!|CANCEL][1][Buffer memory size|is too large!][TRY AGAIN][1][Buffer memory size|is too small!][TRY AGAIN]FILE.HLPTEXT.HLPEDIT.HLPESELECT.HLPEPRINT.HLPOPTIONS.HLPEKEYS.HLPEAUTO.HLPSelect a Help File...HLP**Select file to Copy...Select the new path and filename...[2][Select number of disks...][ONE|TWO|CANCEL][1][File not found][Cancel][3][Insert SOURCE Disk...][ OK ][3][Insert DESTINATION Disk...][ OK ][1][Filename already exists!][Cancel|Replace][1][Disk Error # !][ QUIT ]Select a File to Copy...Select the new File Name... Select a File to Delete...[1][Error Deleting File!][CANCEL]Select a File to Rename...Enter the new File Name...[1][New filename already exists!][CANCEL][1][File not found!][CANCEL][1][Error Renaming File!][CANCEL]Select a new Folder name...[1][Error creating Folder!][ OK ]Select Folder to Delete...[1][Erase all Files and Folders|in |are you sure?][CANCEL|ERASE!][1][Error deleting Folder!][ OK ]\*.*\\[1][Format Disk, are you sure?][FORMAT!|CANCEL][3][Error while formatting!][ ABORT ][1][Disk is now Formatted!][ OK ]Select a File to Print...*[2][Print text screen?][CURRENT|PREVIOUS|CANCEL][3][Print Vidtex Picture?][DISK|PRINTER|CANCEL]PI3PI2Select a New Picture File...0123456789ABCDEF#VCO,PB,DT,+overflow~*CIS: Could not find ! Aborting!~~.~*CIS: Error reading file, aborting!~~*CIS: Waiting for host...~~*CIS: Could not open ! Aborting!~~~*CIS: Error writing file, aborting!~.~*CIS: Bad final packet, aborting!~~*CIS: Transfer failed, aborting!~~*CIS: Transfer failed, aborting!~ *CIS: Using Quick B Protocol CRC & Send-Ahead...~~*CIS: Transfer is done!~~*CIS: Transfer is done!~ : ~endsubendsub_`getb`storeb`getw`storew`getl`storelkeystatkeyinmodemstatmodemindevstatdevinvtdo+-*/=equalsis#><>=<=&and:or~not?exor<<lshift>>rshiftifelseifelseendifwhileendwhilebreak[]printprintmreplyprintpprintdinputinputminputdopenclosereadwritenotepointrenamedeletemakedirformatfcopygotogosubendsubstrcopystrcompstrsizestraddmidstrstrfindaddressforceselectfileselectalertgettimegetdatesettimesetdatedayofweekgetrevdiskstatgetpathsetpathgetdrivesetdrivesyspathmemstatcaptureprintersendfilesendbufuploaddownloadsavebufloadbuferasebufprintbufviewfilearcunarcviewarcdialdialoganswerhangupconnectringingtraceflushpausewaitmenubaudtermtypeclearrunquitabortarrayunarray;truefalseonoffinquire{read}{write}{readwrite}{append}{directory}()toinforthewithsecondsclrscreenoptloadoptsavefnkloadfnksavekeymodeinitmodem`push`pop Missing double quote!Missing single quote!Missing percent sign!Period misplaced!Missing function!Not enough inputs!Bad IF statement!Extra ENDIF!Bad assignment!Already defined!Function isn't done!Bad end of function!Function not found!Bad label usage!Label already used!Too many inputs!No more symbol space!Name error!Name storage is full!Reserved name!Wrong data type!Calls are too nested!Missing end bracket!Not an array type!Done!okUnknown error!_.AP}.ap____ST-Talk 2.0c (c)1988 QMI, Reg.#____..ST-TALK OPTIONS 2.0cDATABASE.DBF[3][Invalid Options File!][OOPS!][1][Out of Macro space!][ OK ]Define Shift- Control- Alternate- F Printm ""IF not Wait seconds for "" QuitENDIFPause secondsCapture ONOFFCON:AUX:PRT: to do?][IGNORE|5min MORE|HANGUP][2][Money Limit!|What do you want to do?][IGNORE|5min MORE|HANGUP] File Name:_.___F A:\*File Selector\*.*\*.  <1K(exit this folder)(to top directory) <>..\[2][Sort the list using...][ NAME | SIZE | DATE ]*..\[3][Not enough memory!][ OK ]Select Vidtex picture to LoadVTX[3][Read error!][ OK ][3][Open error!][ OK ][1][VIDTEX Picture... ][ View | File | Erase ][1][VIDTEX File... ][ Load | Save | CANCEL ][1][Vidtex buffer is empty!][ OK ]Enter filename for Vidtex SaveVTX[3][Write error!][ OK ][3][Open error!][ OK ]^[B^[A^[D^[C^[B^[A^[D^[C^[P^[Q^[R^[S^[?M^[?n^[?p^[?q^[?r^[?s^[?t^[?u^[?v^[?l^[?w^[?x^[?y^[?m^[H^[J^[H^[[B^[[A^[[D^[[C^[P^[Q^[R^[S^[[2~^[[6~^[[5~^[17~^[18~^[19~^[20~^[21~^[23~^[24~^[25~^[26~^[28~^[29~^[31~^[32~^[33~^[34~^[OB^[OA^[OD^[OC^[OP^[OQ^[OR^[OS^[OM^[On^[Op^[Oq^[Or^[Os^[Ot^[Ou^[Ov^[Ol^[Ow^[Ox^[Oy^[Om^[[2~^[[6~^[[5~^[17~^[18~^[19~^[20~^[21~^[23~^[24~^[25~^[26~^[28~^[29~^[31~^[32~^[33~^[34~^[O[1][Could not Load: |from the AutoDial path!][ABORT]DIAL.AP #[4][Planned for Version 2.0d!][ Can't Wait! ][1][Could not find| ][ OK ].TOS.TTP[1][The program,| ,|reported an error:| # ][ OK ]Select a File to View...*Select upto 20 files for Batch Send*Select a file to Send...*[1][No Background sending|for this protocol!][ START |CANCEL]Enter file name for Receive...*[1][No Background receive|for this protocol!][ START |CANCEL][3][File already exists!|Delete this file?][ NO | YES ]Select the ARC file for Add/CreateARCSelect upto 20 files to Archive...*xah Select the ARC file to UN-ArchiveARCxxh Select where to UN-Arc the Files* *.*Select the ARC file to ViewARC vh Select the Drive & Path*Select the Program to Run...*.TTP[2][|Save Capture buffer now?][ NO | YES ]Enter Capture file name...*[3][|File already exists!][CANCEL|DELETE|APPEND][2][Erase current buffer?][ERASE!| KEEP ][1][Erase current buffer?][ERASE!|CANCEL][2][Print current buffer?][ YES | NO ][0][ AutoAnswer| |Waiting for a Call...| (UNDO to Abort)][][0][AutoAnswer:| Answering a Call...][][2][Run an AutoPilot Program...|from the current Edit Buffer|or from an AutoPilot File?][BUFFER|FILE|CANCEL]Select an AutoPilot File...AP AutoPilot: Select an AutoPilot File...APSelect an Emulation File...EMU[1][Illegal Emulation format!][ABORT]Save Function Key DefinitionsFNK[1][Error Saving Function Keys!][ OK ]Load Function Key DefinitionsFNK[1][Error Loading Function Keys!][ OK ]Select Options File to Load...OPTSelect File for Save Options...OPTFILE.HLPTEXT.HLPPRINT.HLPDIAL.HLPANSWER.HLPSELECT.HLPKEYS.HLPAUTO.HLPSelect a Help File...HLPTTYVT52VT100VT220OTHER[4][AutoPilot ended with an error:|| Line # , Error #][ OK ] Blk # / Try #  | FMODEM YMODEM -GXMODEM Batch Send: Recv: |Waiting...[1][Error opening file!][ ABORT ]Waiting...No Carrier!TimeoutBad block #!Receiving...Saving...Disk Error!Done! Press any key...Done! Press any key...Disk error!Aborted![1][No files found!][ ABORT ]No more files.End of Batch transfer.Bad end of Batch!Starting... [1][Error opening file!][ ABORT ]Loading...Waiting...Done!Sending...Aborted! Viewing: Sending: Printing: [1][ This file is not a |standard text file!][CONTINUE|CANCEL]Done Viewing Printing Sending , ESC to Quit or any key for More, Press any key to continue...~ ~~;~01241220?1?3?4?5?6?7?8?9?18?1941220?1?2?3?4?5?6?7?8?9?18?193457~;~;~~;~;~;~~;~;~;~;~356?1545?1?4?5#STT02,CC,GH^M^J^F^F^[/Z^F^F^[[ ; R^[[?10n^[[0n^[[?6c.CDF.DBF.IDX[2][ : Not found.|Insert proper disk or create?][OK|CREATE|CANCEL]***[0][Print Directory Entries...][CURRENT| ALL |CANCEL]LocalLD#1LD#2LD#3[1][Printer not responding ...][CANCEL|RETRY][1][End of Search.][CONTINUE][1][Top of Search.][CONTINUE][1][Not enough memoryDuplicate recordYou can't add|a blank recordFile seek errorDatabase if fullFile link errorDisk error!][CANCEL]   ATD ATD1 ATD1 ATD1 [3][Cannot create database|Check Diskette ...][ABORT][2][Print detailed list|or quick list?][DETAIL|QUICK|CANCEL][2][Select the type of Dialing...][PULSE|TONE]ADDSAVE SELECTSORTDIALEDITREAD SELECTDE-SELECTQUITADDUPDATEFINDDIALDELETEPRINTBLANKQUITST-Talk Pro (|| Name/Number Comments/Status Baud $/Hour|| ^0 ^7 #2 ^3| ^1 @4 ^8|||| Name Number Baud $/Hour|| ^0 @4 ^1 #2 ^3| \DIAL.DBF30012002400960019.2K\DIAL.DBF[1][Sort AutoDial Directory by:][NAME|NUMBER|BAUD] Dialing... Connected to - No response Dialing... Connected to - No response .OPTINSTALL*STT2.MNU[2][Insert ST-Talk disk to|save the Dial Menu...][ OK |CANCEL]ST-TALK.MNUSelect Dialing List to Load...SEL[1][Error Loading Selected List!][ABORT]Save Selected Dialing List...SEL[1][Error Saving Selected List!][ABORT].AP AutoPilot: 135790[1][Use Medium Resolution!][ SORRY ]ST-TALKM.RSCST-TALK.RSCST-TALKC.RSC[1][Could not find ST-TALKM.RSC][ OK ][1][Could not find ST-TALKC.RSC][ OK ][0][ ST-Talk Pro, c1988 QMI | | Loading Options| and| Function Keys...][]stt2.optstt2.fnkstt2[2][Upload text File or Buffer?][BUFFER| FILE |CANCEL]Select a File to Upload...*[1][Could not open File!][ OK ][1][Erase current buffer?][ERASE!|CANCEL]Search for Text...Selected matching lines[1][Text was not found!][ OK ][2][Continue searching?][ YES | NO ]Replace Text...Continuous replace[1][Text was not found!][ OK ][0][Replaced  occurances of| ][ DONE ][2][Replace here?][ YES | NO |QUIT] End Select Begin Select Begin SelectKKKK[1][Initializing the Editor|will erase all buffers!|What do you want to do?][ERASE!|CANCEL][1][Buffer memory size|is too large!][TRY AGAIN][1][Buffer memory size|is too small!][TRY AGAIN]FILE.HLPTEXT.HLPEDIT.HLPESELECT.HLPEPRINT.HLPOPTIONS.HLPEKEYS.HLPEAUTO.HLPSelect a Help File...HLP**Select file to Copy...Select the new path and filename...[2][Select number of disks...][ONE|TWO|CANCEL][1][File not found][Cancel][3][Insert SOURCE Disk...][ OK ][3][Insert DESTINATION Disk...][ OK ][1][Filename already exists!][Cancel|Replace][1][Disk Error # !][ QUIT ]Select a File to Copy...Select the new File Name... Select a File to Delete...[1][Error Deleting File!][CANCEL]Select a File to Rename...Enter the new File Name...[1][New filename already exists!][CANCEL][1][File not found!][CANCEL][1][Error Renaming File!][CANCEL]Select a new Folder name...[1][Error creating Folder!][ OK ]Select Folder to Delete...[1][Erase all Files and Folders|in |are you sure?][CANCEL|ERASE!][1][Error deleting Folder!][ OK ]\*.*\\[1][Format Disk, are you sure?][FORMAT!|CANCEL][3][Error while formatting!][ ABORT ][1][Disk is now Formatted!][ OK ]Select a File to Print...*[2][Print text screen?][CURRENT|PREVIOUS|CANCEL][3][Print Vidtex Picture?][DISK|PRINTER|CANCEL]PI3PI2Select a New Picture File...0123456789ABCDEF#VCO,PB,DT,+overflow~*CIS: Could not find ! Aborting!~~.~*CIS: Error reading file, aborting!~~*CIS: Waiting for host...~~*CIS: Could not open ! Aborting!~~~*CIS: Error writing file, aborting!~.~*CIS: Bad final packet, aborting!~~*CIS: Transfer failed, aborting!~~*CIS: Transfer failed, aborting!~ *CIS: Using Quick B Protocol CRC & Send-Ahead...~~*CIS: Transfer is done!~~*CIS: Transfer is done!~ : ~endsubendsub_`getb`storeb`getw`storew`getl`storelkeystatkeyinmodemstatmodemindevstatdevinvtdo+-*/=equalsis#><>=<=&and:or~not?exor<<lshift>>rshiftifelseifelseendifwhileendwhilebreak[]printprintmreplyprintpprintdinputinputminputdopenclosereadwritenotepointrenamedeletemakedirformatfcopygotogosubendsubstrcopystrcompstrsizestraddmidstrstrfindaddressforceselectfileselectalertgettimegetdatesettimesetdatedayofweekgetrevdiskstatgetpathsetpathgetdrivesetdrivesyspathmemstatcaptureprintersendfilesendbufuploaddownloadsavebufloadbuferasebufprintbufviewfilearcunarcviewarcdialdialoganswerhangupconnectringingtraceflushpausewaitmenubaudtermtypeclearrunquitabortarrayunarray;truefalseonoffinquire{read}{write}{readwrite}{append}{directory}()toinforthewithsecondsclrscreenoptloadoptsavefnkloadfnksavekeymodeinitmodem`push`pop Missing double quote!Missing single quote!Missing percent sign!Period misplaced!Missing function!Not enough inputs!Bad IF statement!Extra ENDIF!Bad assignment!Al 1ready defined!Function isn't done!Bad end of function!Function not found!Bad label usage!Label already used!Too many inputs!No more symbol space!Name error!Name storage is full!Reserved name!Wrong data type!Calls are too nested!Missing end bracket!Not an array type!Done!okUnknown error!_.AP.ap____ST-Talk 2.0c (c)1988 QMI, Reg.#____..ST-TALK OPTIONS 2.0cDATABASE.DBF[3][Invalid Options File!][OOPS!][1][Out of Macro space!][ OK ]Define Shift- Control- Alternate- F Printm ""IF not Wait seconds for "" QuitENDIFPause secondsCapture ONOFFCON:AUX:PRT: \STT_MISC\ARC.TTPPm\STT_HELP\EXT.HLPPj\\OLD\x\\HOLD\x\STT_AUTO\\t\\ST2_MISC\TRANSFER.TTPj\ST2_MISC\KERMIT.TTPl\\ST2_MISC\ST-TALK.STFi\STT_MISC\DO-IT!.PRGlaM:_*M,M,$7M:!f Desk File Text Dial Answer Select Print Help About ST-Talk Pro- (c)1988, QMI All rights Reserved  Desk Accessory 5 Desk Accessory 6 List & View...- Send File... Receive File...- Archive Un-Archive View Archive- Set Paths Utilities... Command Shell- Run a Program- Quit ST-Talk! Capture Text Upload Text...- Select Buffer...- Load Buffer... Save Buffer...- Erase Buffer!- Go To Editor Keyboard AutoPilot...- Directory...- - Activity Log- Disconnect! Answer Now AutoPilot...- Database...- Activity Log- Disconnect! Text Options Dial Options Answer Options Print Options RS-232 Options Screen Options- Terminal Mode Vidtex Graphics- Function Keys Clock & Timer Event Sounds- Load Options... Save Options... Printer Echo- Print File... Print Buffer Print Screen- Show Graphics Print Graphics Save Graphics... Load Graphics... AutoRecord- File Text Print Dial Answer Select- Keyboard- AutoPilot- More... BY JOHN DeMAR QUANTUM MICROSYSTEMS,INC. PO BOX 179, LIVERPOOL, NY 13088315-451-7747 USACopyright (C)1988, QMIVersion 2.0CREGISTRATION NUMBER: 01OK RS-232 PORT OPTIONS Baud Rate:110300600120024004800960019200Parity:NONEEVENODDMARKSPACEDuplex:FULLHALFSend Echo: YESNOXon/Xoff:YESNOBuffer Size:1K4K16K32KData Bits:78Port ID:12345MIDIStop Bits:12CANCELOKDIALSENDRECEIVEOFFOFFVT52OPTIONS SET CLOCK AND TIMER 0800a Time: __:__ _mX021987 Date: __/__/__X00:00:00 Alarm Timer: _XONOFF000.00 Money Limit: $ _XONOFFCANCELOK DISK UTILITIES COPYDELETEFORMATRENAMEMAKE FOLDERDELETE FOLDEREXITSET DEFAULT PATHS\FILES Click on Name to SelectSend:A:\a. _1x1A:\a. _1x1A:\a. _1x1A:\a. _1x1A:\a. _1x1A:\a. _1x1A:\a. _1x1A:\a. _1x1A:\a. _1x1A:\a. _1x1A:\a. _1x1Receive:Capture:AutoDial:Activity:Help:Fonts:Archiver:Cmd Shell:Kermit:Other Xfr:CANCELOK QUIT ST-TALK? YESNOSelect a file..._ File Name: _.___X A:\*.*  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  SORTED BY NAME 999 FILES99 SELECTEDDisk:ABCDEFGHIJSORT...CANCELOKProtocol_ASCIIXMODEMXMODEM CRCYMODEMFMODEMCIS-QBKERMITOther_ Select or Enter File: _.___X A:\*.*  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86 Batch ModeOFFONBackgroundNOYESDisk:ABCDEFGHIJ SORTED BY NAME 999 FILES99 SELECTEDSORT...CANCELHOLDSTART SCREEN OPTIONS Long lines:WRAPFOLDCUTScrolling:JUMPSMOOTHReverse Colors:YESNO"Talk" Mode:YESNOColumns:80140Rows:2448Text Font:STANDARDOTHER  SELECTCANCELOK ANSWER OPTIONS Ring Detection:RS232SMARTSmart ring result:RING _ _XSmart modem answer:ATA _ _XAnswer on ring #:12345610AutoPilot filename:@ _ X   SELECTCANCELOK DIALING OPTIONS Local Dialing:ATDTa( _,XxLD Dialing #1:ATDTa( _,XxLD Dialing #2:ATDTa( _,XxLD Dialing #3:ATDTa( _,XxRedial Attempts if Busy:05 __xxCD Wait Time:40 __xxsecs.Redial Attempts if no CD:02 __xxRedial Wait Time:30 __xxsecs.Smart CD result:CONNECT _ _$X$Smart Disconnect:+++_! _$X$ No Carrier result:NO CARRIER _ _$X$ Busy Detect result:BUSY _ _ _X$Initialization Codes:ATZ _ _$X$Disconnect modem:RS232SMARTCANCELOKRS232SMARTCarrier Detection: PRINTER OPTIONS Convert Linefeeds:LFCR/LFCR(NO)Convert Returns:CRCR/LFLF(NO)Initialize codes:a$ _$X$Left Margin:aa__XXTop Margin:aa__XXRight Margin:aa__XXText Lines:aa__XXCANCELOK Formfeeds TEXT AND UPLOAD OPTIONS Convert Linefeeds:LFCR/LFCR(NO)Convert Returns:CRCR/LFLF(NO)Control Codes:DELETESAVESHOWBackspace Deletes:YESNOUpload Using:XON/XOFFPROMPTUpload Delay:0(0 -> 1) _ secXUpload Prompt:a _XInput Translation:ONOFFOutput Translation:ONOFF   SELECTCANCELOK Enter Program Parameters @. _.X.CANCELOK  AutoDial Directory # a Name : _Xa Number : _ X a $/Hour : _XNoneLD #1LD #2LD #3PreDial :Baud :30012002400960019,200a Comments : _ X aOptions : _XaAutoPilot: _XBEFOREAFTER Calls $Total $Month #DL #UL BusyRESET 0 0 0 0 0 0%   ADDUPDATEFINDDIALDELETEPRINTCLEARQUITDirectory InformationFilename :SMaximum Records :SRecords Entered :SFree Records :SOKSelect Text BufferFree Buffer Memory: 0K Free System Memory: 0K BufferFile NameLength123456789100 0 0 0 0 0 0 0 0 0 LOADSAVEERASE!CANCELOKKEYBOARD DIALLocalLD #1LD #2LD #3@ Enter Phone Number: _!X!CANCELDIALSEARCH/REPLACE TEXTCANCELa Search for: _ X a Replace with: _ X Match Upper/Lower Case ALLFIRST Select matching lines Define Function KeysSHIFTCONTROLALTERNATEF1:F2:F3:F4:F5:F6:F7:F8:F9:F10:SAVELOADDONETERMINAL MODETTYVT-52VT-100VT-220OTHER...      CANCELFunction Keys:NORMALVT-KEYSF6 -> F20 Desk File Text Edit Select Options Print Help About ST-Talk Pro- (c)1988, QMI All rights Reserved  Desk Accessory 5 Desk Accessory 6 List & View...- Send File... Receive File...- Archive Un-Archive View Archive- Set Paths Utilities Command Shell- Run a Program- Quit ST-Talk! Capture Text Upload Text...- Select Buffer...- Load Buffer... Save Buffer...- Erase Buffer- Exit Editor Page Up Page Down- Top of Buffer End of Buffer- Search... Replace...- Go To Line#... Begin Select Clear Selected Reverse Selected- Save Selected...- Erase Selected- Move Selected Copy Selected Port Selected...- Upload Selected Tab Size... Line Length... Reformat- Word Wrap Insert Mode Control Codes- Re-initialize Print File...- Print Buffer Print Selected AutoCheck- File Text Edit Select Options Print- Keyboard- AutoPilot- More...a Go To Line # _XOKCANCELaa Set Tab Size: __XXOKCANCELaaa Set Maximum Line Length: ___xxxOKCANCELFILENAMEFILENAMEFILENAMEFILENAMEFILENAMEFILENAMEFILENAMEFILENAMEFILENAMEFILENAME Define Alternate-F10 Name: _ X a._) _X.a._.X.a._.X.a._.X.a._.X.a._.X.a._.X.a._.X.a._.X.a._.X.CANCELOK Re-Initialize Memory Usage! Maximum System Memory:0KBuffer Memory Used:0KBuffer Memory Free:0K-Total Buffer Memory:0KNew Buffer Total:0 _XK bytes CANCELOKSave Modified Buffers1123456789106Cancel27Quit Program3849Save Buffers510123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890 Format a New Disk _ Volume Label: _ X Drive: - A -- B -Sides:SINGLEDOUBLETracks:Normal80tr/10sec40 trackCANCELFORMAT!?22?`?`08~8888x%?>@`@@#`@` #p#?#?#8#8#8#?# ##?#8#8#`8 08 8?~|>x(?>??????????????????~|>x388?pppp080`p??p88p88ppÀpp )?`  ??? ?`yyyyyyyy=?@@" @`* @" A" Cl" @`" @`" @" ?    4o0@" @`* @`" Cl" A" @" @`" @" ?    4=ZMUUUKIII$III$IIIIIIIyI$ I$ "("/<"* !ɾ=<@@ @^ @   `  **  9QQ190 $PV0000000000  C???????T\``0`c1 UT>?h8+?*h8+?*h8+?*h8+?*h8+?*h8+?*h8+?*h8+?*h8+?*h8+?);;;;{{Ç~x<L !)*+BCDQR Soptr    *+ :EF KTU epq r    ) 0 G _ p qr r   N23 23  I |23 23 E w 23  A23 s 23 <o23238j23423fop qz{ |     C - 9;<=DE  ,8[ #gijkrs    %& ARSrT`a p{|     r 01>QRSbr  %+,>PQra-.%S-.-.&S-.  %(,Fk%&%&Lq%&%&W|%& !r"56HYZl~%&  -./258DE FILd~r(678=PUdefu  r  4 d/0    #!!6!a!+!!!!"".!-"O"X"k "t"}" ###r$a$o$pr$$$"7%%$%%r%-%N%~!0%%%!0&L&a&br(((r........./e/|/}r/~// //0//050d0//001 //1O1~1//12 2://2i22//23%3T//333//44?4n//444//545R5Ss55566(6)rFT7E7R7m 7z777777778l7 0 98P ;: P= < >= >>x -@6?X 0%  AA 0! CfB 0!!DD, 00EEL/ 00FlF /00G,F/00GG/&00HHL//00IlI /800J,I/A00JJ/J00KKL/S00LlL /\00  P P  F $  -  5 = E!   O+   Y5  b> k P j~ &%  -?S]jy  ! " # $ %2'1 ()* +5,H-].n/01 & F3E456789:$;3<B=Q >` ?o @~ A BCDE2OGN#HIJ KL(M9NHFY`P_-QgRvSTUVWXYZ [ \" ]2 ^A _UOgkaj7 bycdefghij`  ly@m'n4oCpJqQrYs`tiurv w x y k   C $ r_*0_LP_n PM:MV    !  Mr M M   MM  M'q 6CA NN6    /    #) NR /      & Nn N"  -N    N %!$ - ",#/$2 6 &N )'(  (G&I*N 1+0 ( ,V-X.Z/\ 0^ *`2O 534 4r2t6 v$ ' }2 CP_J _J _J-_I 0%`J 0!`:J0! `\J0C* O2  $ONOj O    " %  O      N  Q U' \ C% O  @ r@ w@ ~@    ! @ @ '  CB O @O  3 P2P.3PJ3 Pf3 P3 P3 P2 P3P3Q 3Q* 3@QF@Qb@Q~ @Q @Q @Q @Q @R  @R&@RB  )' 7r R^ % 'C' # Rz # @R@R  @F @f @ @ @ @@@&@F@f @R @ @@@R S S" S>  %$ QQQQ  Q !Q"Q#Q$QQ& ' ' :C= + '   ,             &   SZ#  # @SvS  @t@@@@@@4@T@t@ @S @ @@ @S ! + $"# ,  #Q !Q % +(&' , ' % ) 4*3  +Q,Q-Q.Q /Q 0Q1Q2Q3Q)Q5S 6T 7T 8' 9/ :6 ';+"C( T:TV  bgl Tr    } T   T   T   T  T     U!  "  '   C- U6UR 28 Un U U  U U         U  V V2  -  4 ' ;! 'CB VNR Vj. V. V.   V.    V  '  V5 :   W #  W.5 /: 5  WJ &  Wf &8 W& W&A W&" ! !#-$6'%& &$ C. WW 7:@ C X   [ ^ d  gX* XF &Xb  X~ X  X& X  X Y   Y&&  O  V! `$Y *C. YB Y^   Yz       Y Y   Y    ! Y  Z Z"  Z>  ZZ#!" "   $Zv'%& & $ (Z)  *  ' # C4  Z Z0 ' ).C?&% =VAZ[7A[:! 9 [:"[V* [r    ! ! ! !! !   !!! !![,[ [  , """* " +@ "0  " )#, "@#:%#$@: $@"@@# : 'q5(A #)A # *A #! +A #0 ,A #$-A #+ .A #1! a #70  C  #<   #R #] #f#x #z # ##c # +CB [#&#&## $6'& 0=    $  $  $  $$$$$$ $ $-$5$"-$#5$&-$'5$*-$+5$.-$/5$2-$35 $6-!$75"$: -#$;5 $$> -%$?5 &$B -$C5 ($F )$K *$P +$W( '$^5  C<  [  $q$w$}$ \7  %! ' % / C5  \6 %&) \R0 \n0!&  &*  &.) ! &4 =C? \&c&i%&q2 &{   @&  @&  @&  @&  @&  @& @& @& @& @&    @& @' @' @' @'' @'3 @'? @'K @'W @'c '& #  @'o @'{  @' !@' "@' #@' $@' %@' &@' @' 2(1 1  )@' *@' +@' ,@(  -@( .@(# /@(/ 0@(; 1@(G '@(S 3(_4(c5(g6(k 7(o 8(s 9(w :({;(<( =( '(1 C .  \ *A(A(A(A(A(!  (   ($ (   P( Q( (   P P  G )  )  ) ) )"!   ),+   )76  )@? Z P )H)\)s)))) )&% )))* **1*;*H*W *k !*w "* #* $* %**2'1 (*)***++,+#-+8.+I/+Z0+o1+~ &+ =3< 4+5+6+7+8+9+:+;, <,2,) K>J# ?,:@,IA,ZB,mC,D,E,F,G,H, I, J- =- ULT- M-*N-8O-IP-TQ-gR-sS-T-K-ZVY8W-X-Y-U- [hA \- ]. ^. _. `. a.& b./ c.9 d.A e.O f.Z g.h h.t Z . C- \ .#% .C- \ .#% .C9 \ /.% /$ BP`~J0`J0`J0`J0aJ 0a(J 0aJJ0 alJ0 aJ0 aJ0C4 ] ]2  0 ]N.]j.].]. ]. ]. ]. ^. ^..^J .q2 5* % 51( C % ^f5T5k5q555 5 5  5  5   ^  5 6 ' 6 C> ^6* C% @$6,@$6.@$60@$62 @$64 @$66 @$68 @$6: @$6<@$6>6A) 6C-6J6L) 6N-6[ 6]) 6_ 6a)  6c- 6p  6r(  * M, 6u 6 6 6 6 7  7 %7& B- 71 ^ ^  77^    77 _    7 7  7   '# 7  % 7 amBnstvwyz}bJR2jzR"b"" enPbPP$7P־~! Desk File Text Dial Answer Select Print Help About ST-Talk Pro- (c)1988, QMI All rights Reserved  Desk Accessory 5 Desk Accessory 6 List & View...- Send File... Receive File...- Archive Un-Archive View Archive- Set Paths Utilities Command Shell- Run a Program- Quit ST-Talk! Capture Text Upload Text...- Select Buffer...- Load Buffer... Save Buffer...- Erase Buffer!- Go To Editor Keyboard AutoPilot...- Directory...- - Activity Log- Disconnect! Answer Now AutoPilot...- Database...- Activity Log- Disconnect! Text Options Dial Options Answer Options Print Options RS-232 Options Screen Options- Terminal Mode Vidtex Graphics- Function Keys Clock & Timer Event Sounds- Load Options... Save Options... Printer Echo- Print File... Print Buffer Print Screen- Show Graphics Print Graphics Save Graphics... Load Graphics... AutoRecord- File Text Print Dial Answer Select- Keyboard- AutoPilot- More... BY JOHN DeMAR PO BOX 179, LIVERPOOL, NY 13088QUANTUM MICROSYSTEMS INC.315-451-7747 USACopyright (C)1988, QMIVersion 2.0CRegistration Number: 01OK RS-232 PORT OPTIONS Baud Rate:110300600120024004800960019200Parity:NONEEVENODDMARKSPACEDuplex:FULLHALFSend Echo:YESNOXon/Xoff:YESNOBuffer Size:1K4K16K32KData Bits:78Port ID:12345MIDIStop Bits:12CANCELOKDIALSENDRECEIVEOFFOFFVT52OPTIONS SET CLOCK AND TIMER 0800a Time: __:__ _mX021987 Date: __/__/__X00:00:00 Alarm Timer: _XONOFF000.00 Money Limit: $ _XONOFFCANCELOK DISK UTILITIES COPYDELETEFORMATRENAMEMAKE FOLDERDELETE FOLDEREXITSET DEFAULT PATHS\FILES Click on Name to SelectSend:A:\a. _1x1A:\a. _1x1A:\a. _1x1A:\a. _1x1A:\a. _1x1A:\a. _1x1A:\a. _1x1A:\a. _1x1A:\a. _1x1A:\a. _1x1A:\a. _1x1Receive:Capture:AutoDial:Activity:Help:Fonts:Archiver:Cmd Shell:Kermit:Other Xfr:CANCELOK QUIT ST-TALK? YESNOSelect a file..._ File Name: _ X A:\*.*  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  SORTED BY NAME 999 FILES99 SELECTEDDisk:ABCDEFGHIJSORT...CANCELOKProtocol_ASCIIXMODEMXMODEM CRCYMODEMFMODEMCIS-QBKERMITOther_ Select or Enter File: _ X A:\*.*  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME W.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86  FILENAME.EXT 9K 11/29/86 Batch ModeOFFONBackgroundNOYESDisk:ABCDEFGHIJ SORTED BY NAME 999 FILES99 SELECTEDSORT...CANCELHOLDSTART SCREEN OPTIONS Long lines:WRAPFOLDCUTScrolling:JUMPSMOOTHReverse Colors:YESNO"Talk" Mode:YESNOColumns:80140Rows:2448Text Font:STANDARDOTHER  SELECTCANCELOK ANSWER OPTIONS Ring Detection:RS232SMARTSmart ring result:RING _XSmart modem answer:ATA _XAnswer on ring #:12345610AutoPilot filename:@_X  SELECTCANCELOK DIALING OPTIONS Local Dialing:ATDTa( _,XxLD Dialing #1:ATDTa( _,XxLD Dialing #2:ATDTa( _,XxLD Dialing #3:ATDTa( _,XxRedial Attempts if Busy:05 __xxCD Wait Time:40 __xxsecs.Redial Attempts if no CD:02 __xxRedial Wait Time:30 __xxsecs.Smart CD result:CONNECT _ _$X$Smart Disconnect:+++_! _$X$ No Connect result:NO CARRIER _ _$X$ Busy Detect result:BUSY _ _$X$Initialization Codes:ATZ _ _$X$Disconnect modem:RS232SMARTCANCELOKRS232SMARTCarrier Detection: PRINTER OPTIONS Convert Linefeeds:LFCR/LFCR(NO)Convert Returns:CRCR/LFLF(NO)Initialize codes:a$ _$X$Left Margin:aa__XXTop Margin:aa__XXRight Margin:aa__XXText Lines:aa__XXCANCELOK Formfeeds TEXT and UPLOAD OPTIONS Convert Linefeeds:LFCR/LFCRNONEConvert Returns:CRCR/LFLFNONEControl Codes:SHOWSAVEDELETEBackspace Deletes:YESNOUpload Using:XON/XOFFPROMPTUpload Delay:0(0 -> 1) _ sec.XUpload Prompt:a _XInput Translation:ONOFFOutput Translation:ONOFF   SELECTCANCELOK Enter Program Parameters @. _.X.CANCELOK  AutoDial Directory # a Name : _Xa Number : _ X a $/Hour : _XPreDial :LocalLD #1LD #2LD #3Baud :30012002400960019,200a Comments : _ X aOptions: _XaAutoPilot: _XBEFOREAFTER Calls $Total $Month #DL #UL BusyRESET 0 0 0 0 0 0%   ADDMAKE LISTSORTDIALEDITREAD LISTDE-SELECTQUITDirectory InformationFilename :SMaximum Records :SRecords Entered :SFree Records :SOKSelect Text BufferFree Buffer Memory: 0K Free System Memory: 0K BufferFile NameLength123456789100 0 0 0 0 0 0 0 0 0 LOADSAVEERASE!CANCELOKKEYBOARD DIALLocalLD #1LD #2LD #3@ Enter Phone Number: _!X!CANCELDIALSEARCH/REPLACE TEXTCANCELa Search for: _ X a Replace with: _ X Match Upper/Lower case ALLFIRST Select matching lines Define Function KeysSHIFTCONTROLALTERNATEF1:F2:F3:F4:F5:F6:F7:F8:F9:F10:SAVELOADDONETERMINAL MODETTYVT-52VT-100VT-220OTHER...      CANCELFunction Keys:NORMALVT-KEYSF6 -> F20 Desk File Text Edit Select Options Print Help About ST-Talk Pro- (c)1987, QMI All rights Reserved  Desk Accessory 5 Desk Accessory 6 List & View...- Send File... Receive File...- Archive Un-Archive View Archive- Set Paths Utilities Command Shell- Run a Program- Quit ST-Talk! Capture Text Upload Text...- Select Buffer...- Load Buffer... Save Buffer...- Erase Buffer!- Exit Editor Page Up Page Down- Top of Buffer End of Buffer- Search... Replace...- Go To Line#... Begin Select Clear Selected Reverse Selected- Save Selected...- Erase Selected- Move Selected Copy Selected Port Selected...- Upload Selected Tab Size... Line Length... Reformat- Word Wrap Insert Mode Control Codes- Re-initialize! Print File...- Print Buffer Print Selected AutoCheck- File Text Edit Select Print Options- Keyboard- AutoPilot- More...a Go To Line # _XOKCANCELaa Set Tab Size: __XXOKCANCELaaa Set Maximum Line Length: ___xxxOKCANCELFILENAMEFILENAMEFILENAMEFILENAMEFILENAMEFILENAMEFILENAMEFILENAMEFILENAMEFILENAME Define Alternate-F10 Name: _ X a._.X.a._.X.a._.X.a._.X.a._.X.a._.X.a._.X.a._.X.a._.X.a._.X.CANCELOK Re-Initialize Editor Memory! Maximum System Memory:0KBuffer Memory Used:0KBuffer Memory Free:0K-Total Buffer Memory:0KNew Buffer Total:0 _XK bytes CANCELOKSave Modified Buffers!1123456789106Cancel27Quit Program3849Save Buffers510123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890123456789012345678901234567890 Format a New Disk _ Volume Label: _ X Drive: - A -- B -Sides:SINGLEDOUBLETracks:Normal80tr/10sec40 trackCANCELFORMAT!M?>@`@@#`@` #p#?#?#8#8#8#?# ##?#8#8#`8 08 8?~|>x(?>??????????????????~|>x22?`?`08~8888x088?pppp080`p??p88p88ppÀpp )?  ??? ?`yIIyyIIyyIIyyIIy? @* @`* @" A" Cl" Bd" @`" @`" @`" @`" @" ?           @* @`* @`" @`" @`" Bd" Cl" A" @" @`" @" ?          "("/<"* !ɾ?  @>x1$/4+6*6 x_{DFDB xED{HDB@DDz $????????? U`5T@`U`5T``````````````` 9EEE910` 00c2=?? 5 `@_ p ?6????6? 5 `@_ p ?6????6? 5 `@_ p ?6????6? 5 `@_ p ?6????6? 5 `@_ p ?6????6? 5 `@_ p ?6????6? 5 `@_ p ?6????6? 5 `@_ p ?6????6? 5 `@_ p ?6????6? 5 `@_ p ?6????/;;;;{{Ç~x<Ph !&'(?@ANO Plmq   '( 7BC HQR bmn    & - D \ m n    K23 } 23  F y23 23 B t 23 >23 p 239l23235g23123clm nwx y     + 8:;<CD  +8[ #hjklst   &' BSTUab q|}     !12?RSTZjp   0]-."-.^-."P-.:`%&%&@f%&%&&Kq%&();MNOt%&   3MNObcu  %456EUdwx  4/0 m q r s   # !!1!+!R!X!h!!!!,""(": "C"L"` #}##$9$G$H$a$$"7$$$%%&%V!0%w%%!0&$&9&:(k(y(z.f.l......./?/V/W/X/d/v /////00>0m//000//1)1X1//112//2C2r2//223.//3]33//344H//4w44//55-5.555566FT7!7.7I 7V7]7^7l7s7t77787P :(9 0 ;: P<<} ==t >>T -@?4 0%  A@ 0! CBB| 0! !DD 00EE(.100FFH.200GGh.300IH/400J8I/ 500KXJ/600LxK/700MM/$800NN(/-900OOH/6000  P P  F $  -  5 = E!   O+   Y5  b> k P j~ &%  -?S]jy  ! " # $ %2'1 () *+2,E-Z.k/|01 & F3E456789:!;0<?=N >] ?l @{ A BCDE2OGN#HIJKL%M6NEFV`P_-QdRsSTUVWXYZ [ \ ]/ ^> _ROdkaj7 bvcdefghij`  ly@m$n1o@pGqNrVs]tfuov~ w x y k   C# !bPb0c  PPP      Q Q* QF   QbQ~  Q'n6CA QQ    /    #) Q /      & R  R&"  -RB    R^ %!$ - ")#,$/ 3 &Rz )'(  (D&F*R 1+0 ( ,S-U.W/Y 0[ *]2R 534 4o2q6 s$ ' z2 APc,J"#cNJ #cpJ-#cI 0%cJ0!cI0! cI2C* R  $RS S"     "  S>      K  N R' Y C % SZ  @ o@ t@ {@    ! @ @ '  CB Sv  @S  3 S2S3S3 T3 T3 T:3 TV2 Tr3T3T 3T 3@T@T@U @U6 @UR @Un @U @U @U@U  )' 7B U%'C' # V # @V2@VN  @E @e @ @ @ @@@%@E@e @Vj @ @@@V V V V  %$ QQQQ  Q !Q"Q#Q$QQ& ' ' :C= +  '   ,              %   V#  # @WW.  @u@@@@@@5@U@u@ @WJ @ @@ @Wf ! + $"# ,  #Q !Q % +(&' , ' % ) 4*3  +Q,Q-Q.Q /Q 0Q1Q2Q3Q)Q5W 6W 7W 8( 90 :7 '<+"C( WW  chm X    ~ X*   XF   Xb   X~  X     X!  "  '   C- XX 39Y  Y& YB  Y^ Yz        s Y  Y Y     '  ! 'CA Y !  Z .  Z" .O Z>.   ZZ. }   Zv  '   Z5 :   Z #  Z5 :   Z &  [ &  [ & [:& [V&" ! !# -$ 7'%& &$ C, [r[    [   * - 3  6[ [ &[  \ \6  \R% \n  \ \  \%    %  `$( *C. \ \ dgm p ]       ]2 ]N    ]j      ]  ] ]  ]  ]#!" "y  |  $^'%& & $  (^.)  *  ' # C4  ^J ^f0 c' j).C?&% =A^^7A^:! : ^"^* _ !n     !x !~! !!   !!! !!_*+_F _b  , "iQ"p"v* "x +@ "/  " )", "@":%#$@: $@"@@": 'q;(A ")A " *A "! +E "0 ,A "-A " .A #! a #0  C  #   #* #5 #>#P #R #d #f#xc #z +CB _~#&#&## #8'& 0>    # # # ## # # ## # #-#5 # -#5 # -#5 $-$5$-$5$ -$ 5 $-!$5"$-#$5$$ -%$5 &$ -$5 ($ )$# *$( +$/* '$66  C<  _  $I$O$U$[ _7  $! ' $/ C5 _ $* _0 ` 0!%  &  &* ! &  =B@ `&&;&A%&I2 &S   @&W  @&c  @&o  @&{  @&  @&  @&  @& @& @&    @& @& @& @& @& @'  @'  @'# @'/ @'; '& #  @'G @'S  @'_ !@'k "@'w #@'  $@'  %@' &@' @' 2(1 1  )@' *@' +@' ,@' -@' .@'  /@(  0@( 1@( '@(+ 3(74(;5(?6(C 7(G 8(K 9(O :(S;(W< (\ = (a ' (f1 C /  `B *Q({Q(Q(Q(Q(!  (    (& (   Q( Q( (   P P  G (  (  ( ( (!   )+   )6  )? Z P ) )4)K)Z)g)r) )&% )))))* ** */ *C !*O "*[ #*k $* %**2'1 (*)***+*,*-+.+!/+20+G1+W &+l =3< 4+z5+6+7+8+9+:+;+<+2, K>J# ?,@,"A,3B,FC,[D,nE,F,G,H, I, J, =, ULT- M-N-O-"P--Q-@R-LS-ZT-jK-}ZVY8W-X-Y-U- [hA \- ]- ^- _- `- a. b.  c. d. e.) f.4 g.B h.N Z .\ C- `^ .#% .C- `z .#% .C8 ` ..% .$ APdJ0d<J0d^J0dJ0dJ 0dJ 0dJ0 eJ0 e*J0 eLJ0C4 ` `  0 `.a.a".a>. aZ. av. a. a. a.a .q2 5 % 5 ) C % b5/5F5L5`5f5z 5 5  5  5   b  5 5 ' 5 C> b:6 C% @$6@$6 @$6 @$6 @$6 @$6 @$6 @$6 @$6@$66( 6,6&6(( 6*,67 69( 6; 6=(  6?, 6L  6N'  * P 6Q 6p 6 6 6 6  6 %7 B- 7 bV br  7_7fb    7u7| b    7 7  7   '# 7  % 7 enpr^wxFyz}V}vF^f&&^&> Keyboard commands in Terminal Mode =Shift, =Control, =Alt -"  A Answer Now  B Baud rates toggle  C Command shell  D Duplex toggle (half/full)  E Go To Editor  F Select font size  G Go Run Autopilot in current editor buffer  H Hangup (disconnect)  J Jump/Smooth scroll  K Keyboard Dial  L Line feeds on/off  M Terminal Emulation Mode  O Load Options  P Printer on/off  Q Quick List & View  R Receive File  S Send File  T Talk mode on/off (typeahead window)  U Utilities  V Vidtex functions  W Wrap end of line on/off  X EXIT ST-Talk Pro  The 'More Help' Selector  Exit ST-Talk Pro Definable AutoPilot Function Keys:  Macro 1 thru 10  Macro 11 thru 20  Macro 21 thru 30  Macro 31 thru 40