DICTSORTCOMPROPC10 PRNTB50 ASMMAINDICTCMP MAINDICTCMP !"#$%MAINDICTCMP&'()*+,-./012345MAINDICTCMP6789:;<=>?@ABCDEMAINDICTCMPAFGHIJTWOPTIONCMPKREVIEW COM*LMNSALUTES LOPQRSSAMPLE2 TTERMKPC ASM)UVWFF COMXTERMKP ASM)YZ[HYPHEN COM@\]^_TERMZ19 ASM/`abFIND COM cWC COM dSAMPLE1 eANAGRAM COM fSAMPLE7 *ghiSAMPLE4 jPRNTKP1 ASMklUPDICT CMPmSAMPLE8 6nopqSAMPLE6 rERRWORDSTXTsSPELL COM tuLOOKUP COMvSAMPLE5 wxREPLIES GET)yz{PRNTKP ASM|}SAMPLE3 ~EDIT COMMARKFIX COMWORDFREQCOMPRINT COMTWDFAULTCMPTW COMFORMATS 1JI$y2$:7J !~O#{, Bd!\!\A!\e!\!\!\“ AA*!"!""*"!Jt A[w#tA[=+~wx2*"*"*}ʊ**z*Š}ڊ|g}o"J~#fo~Gxf[~x~f#>*">2*">2*:G/_"Jw#*}/_|/W*##*#DM! z w+ **s#r**""*}/o|/g#*+ *}ADM!^#V# x&%8Ae!ͳFͳTWOPTIONCMP ~#  c~#  @`@ ¹~ #~ #x!g'#G͙Qà!2ͷ!Fg͓Q!>ͷq egF#ri͉~> a{ :ʷJ!J">22*~#"!5!4>  ~# O  *Hq#"H}DA5 !"Hw# =* WARNING * This tool is damaged! Use another copy. $DICTSORT+ Version 1.1 Copyright 1981 - Oasis Systems $Input file is NOT on disk $ Insufficient memory for input file Program Aborted!$ WRITE ERROR $ $$$ BAK $$$ BAKqyO! ͣͣW_͕qyO! ͣ͒qy\* define proportional spacing for Courier 10 wheel \out 240 \out 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 \out 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 \* ! " # $ % & ' ( ) * + , - . / \out 12,6 ,10,10,10,10,10,6 ,6 ,6 ,8 ,10,6 ,10,6 ,10 \* 0 1 2 3 4 5 6 7 8 9 : ; < = > ? \out 10,8 ,10,10,10,10,10,10,10,10,6 ,6 ,10,12,10,10 \* @ A B C D E F G H I J K L M N O \out 10,12,12,12,12,12,12,12,12,10,12,12,12,12,12,12 \* P Q R S T U V W X Y Z [ ] ^ _ \out 12,12,12,12,12,12,12,12,12,12,10,4 ,10,4 ,8 ,12 \* ` a b c d e f g h i j k l m n o \out 6 ,12,12,12,12,12,10,12,12,10,10,12,10,12,12,12 \* p q r s t u v w x y z { | } ~ DEL \out 12,12,12,12,12,12,12,12,12,12,10,6 ,4 ,6 ,8 ,12 ; December 6, 1984 14:31 drm "PRNTB50.ASM" ; Printer module for Diablo 630, etc. @us equ 31 @rs equ 30 @esc equ 27 @cr equ 13 @ff equ 12 @lf equ 10 org 400h JMP 0 prtchr: JMP $-$ prtmsg: JMP $-$ DB 81H db 120 db 120 db 48 ; vertical increments L040D DB 48 ; down increments L040E DB 48 ; up increments db 48 db 6 ; L0411 DB 0 ; current column spacing index L0412 DB 0 ; current line psacing index db 12 ; db 12 ; db 8 ; JMP init JMP setCSI JMP setLSI JMP prtCR JMP prtLF JMP prtNLF JMP prtFF JMP no$op JMP prtBWD JMP prtFWD DB 'Diablo 1650 ' db 'B5' reset DB @esc,@cr,'P',0 ; printer reset CSIcmd DB @esc,@us,0 ; set column spacing command CSIoff DB 1 ; offset for spacing index LSIcmd DB @esc,@rs,0 ; set line spacing command LSIoff DB 1 ; offset for spacing index CR DB @cr,80H,0 ; carriage-return, with delay FF DB @ff,80H,0 ; form-feed, with delay LF DB @lf,80H,0 ; line-feed, with delay NLF DB @esc,@lf,80H,0 ; negative line feed command BWDcmd DB @esc,'6',0 ; print backward command FWDcmd DB @esc,'5',0 ; print foreward command prtCR: LXI D,CR CALL prtmsg RET prtNLF: LXI D,NLF MOV C,A LDA L040E JMP vert0 prtLF: LXI D,LF MOV C,A LDA L040D vert0: CMP C JNC vert1 MOV B,A PUSH B MOV C,B PUSH D CALL vert1 POP D POP B MOV A,C SUB B MOV C,A MOV A,B JMP vert0 vert1: PUSH D LDA L0412 CMP C CNZ setLSI POP D CALL prtmsg RET setLSI: PUSH B LXI D,LSIcmd CALL prtmsg POP B MOV A,C STA L0412 LDA LSIoff ADD C MOV B,A CALL prtchr RET setCSI: PUSH B LXI D,CSIcmd CALL prtmsg POP B MOV A,C STA L0411 LDA CSIoff ADD C MOV B,A CALL prtchr RET prtFF: LXI D,FF CALL prtmsg RET init: LXI D,reset CALL prtmsg LXI D,65535 in0: DCX D MOV A,E ORA D JNZ in0 RET prtBWD: LXI D,BWDcmd CALL prtmsg RET prtFWD: LXI D,FWDcmd CALL prtmsg RET no$op: RET if $ gt 500H ds 'overflow into tables' endif org 500h ; table of widths for proportional wheel DB 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 db 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 db 10, 6, 8,12,10,16,14, 4, 6, 6,10,10, 6, 8, 6, 8 db 10,10,10,10,10,10,10,10,10,10, 6, 6,12,10,12,10 db 16,14,12,14,14,12,12,14,14, 6,10,14,12,16,14,14 db 12,14,14,10,12,14,12,16,14,14,12,10,10,10,10,10 db 6,10,10,10,10,10, 8,10,10, 6, 6,10, 6,16,10,10 DB 10,10, 8, 8, 8,10,10,14,10,10,10, 6,10,10,10,10 ; conversion table for proportional wheel db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 db ' !"#$%&''()*+,-./0123456789:;<=>?' db '@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_' db '`abcdefghijklmnopqrstuvwxyz{|}~',7FH if $ gt 600H ds 'overflow module' endif end DEFGHIJKLMNOPQRSTFo|bq$JWN"TFp rb/3hzopvF{79i1b&Y #8o9(<#ͭ :!Cҿ!6: !6:!.T-   2l 3l H .1    . h 41  Sh n8 q  H &+  4h  YR  .   #+s  ,  1  dh4  5aGR$r(   .F4   "HN $     ( .   u Q  o 3 D  mH  Q      t 4    2H uL  h  #  H/ h K      M  O    R   (  +lH     u. L    o            Q  R T     s  1s Th 4  L    Q rR h  ns3HN X  (    K M1 HsT          14    H   q r   @(L . MO R8 $( hn NU  h.14 qs,/ 3k&H+@  /`   dh  n$M(MRS +H 1  4 H -l/k0  h R.1    $ . T   4 h MQR    S  (         Q h  R   s   W.     !+  O-/dh 1 sH dh l   ( sD E. .  d   g    s  $    Qr s   (R     h n. ( h n(.C M Ro 3  kH$    Q ( C K   MQ   d+ T .  1fN   $ 1 .1   rs$($f lm v r, 3G( +-Ct+  T   1 u  D   r  H kH-3  . . R-y $` h l (  O(  $Q( , $( +  ! "#$` % KQ (rK+Hm,D/ NGS36    ! r"Q#( ,f1dh  JSBhS$Q( 4dhP . Ul11dh km@ HK. y1rH$ hm.Q  !"$`  & dh l *, N 259  n $  g h   n qQU  v( DF S  .   O dl s `   dh d4h Q  h  R UH  CFM(Q. dRL'-mrY.m48'a   m N ( $` bdh lm    'N(F1 H Mt-Q$ (8+ CT 1 X 2dh 3  N9l H  N  $( CD F S U   +H 14  R+n@ dh l H1f3  " R&-β3 M4  s-r1HN O S4  $r '  Hs+rH  s. 4 d+2 l H  ! "   N $ QR&'DFN Xs y  /K 12n  3 N l ' u(  K $(.U1N TG,N 2   dh d+Hbm. 1k4 rK  + ,s HN.h2h  N3 +A O @S`(G   U .S T     `  dh 4 H`k l M ( , H-  136   F     Q d@B CKM Qn'H N mQn    Ah nh   k n CDFn tK L M  Og nP   QRknt  Snq+. hxDN !',. / 3 H 6GG+ 1gl 31S.1"$-   Q &+K   N   / 2kn q 3   n MQ d  h$    r   K M   RS (+ isH  b    dph .     Q   1   D     g    m   H N   ao    u w    .O(+-L QS$N( EMD rHKҬRq   .d M$@   hm ACDm n   sH lmo  s    uV( *3  .4-0  (.`4 H L  MH$2H S    3G  9   ( f h FL MS"$M%' (R.dhT/S  (.  s24 Rh H M   d$R (h .  dg X h( .$ hQ  R%  'T( kt     Eh  K R + 4   rQ  S17 $,.3S#-  $(  $Q  ' X  (  h    R  T  dh $    MQ      (F    L   R   .    M Q  4Lh o Q   h 8 QS $hn' (  .    T  1Hm  N  m  o4   ,  O - 5,MhQ +    H- l H (. O     H    $  M   s  t  R (Qh S. 1   H   s4 h 14( kD dh  n14',  4R  Hk$ kN l( ./ 3q HQ  h      N      (sAh  BFL  n M O rt 4  (`   dh + -1-h S T@ Rhdh SnHKs(`  dh Q4@Ddh * H 1dh m22 km        k. `    Kh S(.GH rK  qGD ( A q  CDEF q H KdnOhk os   STV nX.3   & ( + ,H -K  h   $&DH '/ 1DHm1DH  r ( +  " DH MNVE  ҨM@ DH ث@rDq  H r N O  QXH. 23l49 N hM"@ mDHmN s Vh EDH JK(   s)dADH MQ t -H r0 G3D y @q D kHN"  ҤEnKR% & H ( S TDdH +,@b qDs X.  dhP1fDsH  dmrNزS3 n  KN4A n dh Ld MDE  (` ҪD H . 0DH n@H n "$ҧH NQgS(.3  D H K    h  D '7mثDH $( .   1. b dgh ND& DDH ҭұ@ dkDH rj2hkDHms MQҴI L Sh  5 LTDN . h     !" K#H U%N+/1 HNnHO Sq3 !Q"dDR'ұҲGKh   $ (s .Q T 1 4     $s &DH (m . s1 4     Uh  $ K( .  N &-1A RS h "dh %Q&t(u  S  YAGHdf  mLN V .  U2DH Q5 4"dH $C Eh    KU   &(S) -2G9 m rh "$   E&n(* R+,@ q GHmN R12Q 8k s (D , ./ b N @DHNDKN(1 ND3   H N6H dh QkQh (     S .  M DH Rh +H n    Q $* . 48 #HmK( Q  B4  n&rH'-.dq (  S&'( fNDA DE HmnN   .  M  QTDH K&. L  &  +  , / R $+ . "dB H$  , 3cdh o q T$W',T.02"(  3  4  .   Ah "a d f h ikl   mn  sv #( *,kH - h  kmd k1H M2  dh n3  9H  N kh h !$h ,-dh 2dh 5 ,-de h kmdh 2e S 3 dj9d` dgh *-.dg hkq  s de h 2BSh 4h DEH NST# Ahn  EFIO   %dh ( R- dkmQh d2dh S#dh qv 2de h DH LdvX!HK".  2 6'(DKF$dl&H K4 D H ҲS  DrEKM$(  Uh. 2  nS DH  @   rDH MO!@DH l%'(MS)DH4d&BDmHmrJ KLd g sV+Dq H C ıHҲdh DK  s9H #k    n(MҭG .T1 DL3  "dD  2 3   h N % &( +D -h `dh kSh01F  $(MDH ,"$( 6"$% '("kH JhEKئ`dh ' (dh K dkv  *H , B d h  02mdhSV5kH T6h H 9  HN es` c de  h mo s tv RS      $ dh Yh -3N5HDH !H "dk  #f   Fh Kh $bdh kѦ@m G  H+    ELh R - h l 2 dkmS  n3m  BHNS k a b   d krv"B G&(d* ,m- SYh .dh kr3d 4GAh h k (h -DR2dh P R 3  H" h  ' qD  ADH Kh LgjV.  DGhHm& H  N@ D  N &Hm++dh  N&H DGثCDE qG HnrQ gVah 6!  ,H DH Sز"d#Kh & Kh (DGL-DH 8@ D # $   & rGkKT (D*@D  Hm,DDH rhӯD 2h N4 H !"$DH M V   (rKM    D@DKh ҸH M "+    H N Q 83$( @DH +  ( .h .   MQ!(d  +H .1 '* h . 3T #$ yr&( ,1S % ( 1  h  (  L "stT       s#QV $C M'(q   BE  F OR  DH mN  TDrH KM. 4 5H8 !NQ#knLQ n( .   @ h  A DEF H hT; hMOQ"    # H   dK  Nh ( R*-DH mN .h hO@ m sDdH k m K  45  8   kB  h S( S    n t  S/H 1Hy ST 3Hu  NT BELUV!mNk q T "H  @ AHefmn   ҤD  Et  K   S V&d(nB  DMH r N R,H -sfH .dh xT @ D   H N1HN t h n N@ rGH  N  n Q V 45H 8 !" HL V اDHL( MD/2 D sHtN@ vH mKNQ 4  H   n K n xO  QR  S !"` dh tv$F   dh o v  %' D q sKNk(*+ -HJ T3K T &+H dh 2 svH S3  H   h q@L(MS. (  ,k H  (( 1H  q    QR (A@Ho T  23  S T  @D    Hl oQ   h   Tq $A q L   (T3 H   ns4 5 H(2HO   V%h H &(dh h lv R+Hdh K    ,   D EN` h  k-  h C   kF  h Mh R dh   .S Dq KhLOh S@     BF h Hr s K d   hn  dh  Qdh q2H RS  h   DGS d h 4E K MSU  dkmdh "` adh klno t#$a h  de  h  k R S, r01 N QTV 2 Gldm5 Q ضDH 8  s@m`dq#H $ks %&M+a gh  k qdh ,H M` lDdKMh SL O  h 1 dh 2G 5  X  Q n o  s  N S(*H +r,R .h HOh 1n   H S  T2C        .    hn M   n   8    kA  "dk F Lh -1     dh 3MY$ d  s  dH # $ - cKh Tk    l               1S(MY1Th  km dC (` dh u  A Lh  N dh g C ddh M  R AOh 1mHe mrs2ddh dh     kl q 3 4h s 5 DH ҸHdh k m st` dh kmUh %,  - 1 Hh 5   dh $  %g  nS,s   ` dh -dh H dN SOh 035dq !"dh vC GҦFh (2kmH STa   h ST4adh k5H6h  H  Ah G"dh ,R  -2 3 S dh l&   D H 1 2`dk DH SDHm !  h .16 "@DHkmOQ R SخMN3# h %(MT % 1h 7  H$  -sHy  R  .EDH ҭ@B   D3  M!"DrKMҤLQR S%( cR+    fo   s D b     df H l mr Np  T. Ldh m `de h k R  H4    MS@  DH   T  AC K  `%  (` M,m       D    m        q   Hm r           N      sT           s  ./  m   q      r  s    D  m   s       H   K        d         h          N  q  r   st  Q          h n   S T    ms     14 "   uD   c  h  m   o   q   r  dHk    r Kt   Nq  tQ T    r#   m r  H  s   N     mT    hs%   D  c       r   sH       f m   q r   Kh t N   t   Q   T r   sDm   rK   kQ    d       t (`EM) NT  m q - D    Hmu  N s  0   h 1@  B      q  D   m p   q       H     f  r    N     l m  q O     S     d   h       q                 T    l      3 fh    l   l         m       r  wHm         Nt Q                   d h        n        T  r 4 5    Dm       q            H  m u N jk T    $( ADHmNث@ DrHmKMҭүD     1    MQ (KMN  + D/14 A BH rQ V ˣ@DH NT( msDb, ADk  HdmLs TV . MdN  lT    1  D     k    r    Hf N  c rT   o   2DH3H r ( M,Hk  o  2H KT ( 3DN 8 d&dh +mN -  R    ` cd                  h kq Kh N1 HRh d gh k qx 23 ` s`dh k dh n  (    !N$dh ' HH ,. / K" +-.(rKMA"dh k o# h %dh  F(Lh d-Hmth  rMR2dh dkm3H 5 H  6dh 8N9Hkmdh dRh Sh   nt#  H     T  $`dh ,. R/2  de 3H5DLA" $,H   h R -h J  /  2HhkmR 3H     pSdh " dN T( , -H.d dh Oh 02adgh lnq  v 34 hAdh DH dh 9 a e #kmrH$dks(h + ,k LOk- /@ dh N`3( . R/` h n2     ! (`kMRӲ 4 # h &   ,   /  QHu  T     (4  n  t '-  m !" %(/H   BShnDH ңKh ҤS%(Mt TDHm1 D  H  2H N@  HKMR 5 sH  LH3DN  !KMR( +D.T3G H 4H  H mrN oq s T    ` h.3HT4 O R  !H Kh R 13H# س,4  - 01زDH  Ҩ+D3 h R,H @ sDH D MD"H # HkQؤ& Kh (R-D34h /KK(M TD rKMQ+ D1 NDH L68ADH 3 A( U4DH & -dk/M(rҸ# h DH !# +3 N( 9 h S DK  nMVD MDH ӭDұADrHKS3ak RS h T$  (   .  Q1HN4M `  h   LM OS tdh $ C H u K LM    O (C h tLOR  DGH +lq  rD H   u.K L    M  `    ntT1  l or Hh  4h     ҬDH D rKMұR   h Lh T $  B M  r    d  l q  (  B   DK  h M h    + D. Q1 NKM4 H r$    1  D h8  &dh 3 $ T  d$ F  Sh A    B h F   LM  p  Q U  ./ 3N4h Fh RW5H    M Q $MQ(KRB  F Kh      Q   Sh 4 q8    (DY,-.      Sh T  m   krH @DHmrT4M  5H      $        Q  ( + D N     .  Rh   1 D   c r    H  34hM   !$K(Ch R U  h ,H.1d5"D    Q   $ F MQ u ' (F    Q  h nR, .   / sD  H r sN  m   23   sQ  t   4K   H  $   Mf  h  l       q  R ' .  T1 H  N3  R    R  $     ( s  Bdh N  Rh . KS h T  #$(  Q N  " #&   N  Q  D H NXy, N -/G q  1rQ3 NQ' ( D 3  H T # h -&'+D@DsH s          H  c  QT  $  &H (`h-s1D   Sh n$ S (  4h M  (     t+,rH /  &HmK( *-H .#& X1 7' +  . /H B       EKR&(   k   tC   E    F    K O          Q   q R  s U!    D   T   @D    G  H     K n  Nklm              q  s t       u   Q      h      T r   #  $LM f  s  %H   &Q  t  T r @  D   uN    V (     M   e gs     )T DH +  N   c  x, m    D    H N  - .   Q   f  h V/    r  s  D  m    q   HK    d  Nr    Q   T   0    h 1 D   o r NT  2   D l     m   qH l  o  N k  m   T 3 m r D mH  m       N Q   d  h     t T   4 R"d,3Mf            (  h M h R n.4  b k kmh     hDX3Q  4   &H MH !&  qH '+,s 36 - "# E ( @HN./3 s ( M   d h; Sh *-DH rX. +H DcA I JmLdsV( / C"$(Ҭ@ H.22 Q( 3H  h nde h  k"&mKK2H S # $h ABDE F Gh H OQsS nqtVh 12 s( AKM"%dh Fh MN n(`dh *l s    -/H 2 4AqDH dh s de mdh  k Q  #h &- 2dh l    K$%dh v+dh -` dh Oh 5   vH 9   ,-H .dh KNOh 24S56dh Rh  #Fh Ks (Lh -`d  /2 #$R( +-Hs-!H (  +.تDH ҳH +DH rK Ҳ. C Hl@DH Mظ A KM,. DH K S"ĤҦ@DDH+# +H   kS$( سADHl$(E dh U dh -  (      R. +/KQ3km+ #$CH,TDr  H үG 1 GO  3dklp vL (rKMD  LVF   $( c$( D      +  DH  $ ( s  -     s ,   V(  "%dh -2DH nN     4   s  ($   L Q S( h   F+T u.  4h  $'-/ G " (3  RSh Sdh       dhn   ( /h 23H n.h qakR1H Y"dh nq                &  Hd, . /  5 D(1 "#&  ),    -.2G379a $(NO sn2$((- /l H 0  !V(M #H 2u (t -  B   T2   M  Qq    RS $c K    Y    (+D.   KhRT1 N   X  F h HR3  H-  @2hSh  $  13H   $'  s X (h +   .V 13mh  R  h "dh l ,  N   O   Rh $ ' m   H (Q    +N .h L o  QT   q   1   T4   8    $   u L( U+ . F d Q   RS  dl / 4Q  h   H1 hU  ( . Q    1   h  $ (  +  H .1u N 4         ` dh l     (    R  U ( . 41 n 4O (   .    $  ' (+   -4H Qh   M    $dh o  s    ' n T  (  h Q Sk . n  T1 m  Dmo  HNT 6   - 1  M(  DN Q   Rh.H       R t1D TX  #  q & Q +N- / d   x2NS  k3GN  `7 .3 h  kM Sh n$( K Mnl o S U   n#@ H LT"dh n*   (   2& H3  Sh t$.M 3 /dh   K  Oh Q  ' . 1N4     3 ( + . 1dh$ s      S$K `'s (   1    D N4DH   h $ad(` hN -.8     'Q+ h  4 N qQ$ (.  h8' " d#H +  D F    su /   2u +H KR e t  @DsF  q K Lacn o s vdh#   CK-h 2 *H +   Uh X  dh k&   +` dh H   O 2   $ k   O  QR '  D(S     h + l T r  .   Q1  s T 4 Q R h  T     ,   1 dh  h T   (    K  .  4   +H 2d   h DH & - 1  B3 H   r   S$      C       k M  r Q            ( Qh + m DH   N h   q  r  .   Q Rh  tT  1         N 4 M Q  $  M  r    t Ql    m ( f  Q  . Q 1b   clm n  o   su   D   H mN T r  #+`  d! Q%& ( +DH/HNS36   +1  4 Kh (Kh   M2  H  T4 ( &. DH `Tdh kmDEHmKL MVk 3e  k ( * @DH  mNt,2g kmrsH s3   (    MR.   "e kmh v# %D-H ز3  "HV %&( DG H K XT1D N3h    m  r'  D rH M hkE ' N ( L-3 4N + dk 2ht` dh  DH $ DE  H K  n 2   dh G   T   T$* 4 $ .!  ADH ҫDH  Ҳdh -d (hM׫@sDH N .h   (  ,4 H D-# &,D    HD. 1Hdl tT a3   5  HN3D H NT"dh (MR34d@dh  $R- 2$f 1Nt4 S*  3 su  h $ & 4+dh  v-h  1  H 23H'dh , 4h   L !"dS(A FMO DHmجCDH ms 3  h Q hkb  "DH ҤKMr&D      (B MR S  + DHҲ @A q tB  E G KLdO  nqhSV ( @  DKM2g kD GH L  O Sت2 TD"%  +-3rH   9   S$k( 3K  A  "D  n Fh O Q  gs(dh ѪH ,  H L -Fdh MIOh 1H 2a dh kʳGHKMS  T  4  S5N KҷDRD"dF  Bh H dh  kmH r2h 3DH  Td h $& ,  - h kO dh 1`  dSh dh B  dh ҦFh .dh k a dh YOh 1D  Hr23H R4 c dh  dh BD H 8!"   M %(hk*,-h .  h 12dh S3H rS D $( 6ҬDH k4dh r&H m' D2d DH (ΪK+  dN 2   DKh MT@  ms DGH r  Oҳ@A qDE G n H KLdMOq RVn/H h !D  H "e  oH  mҤ@A n B   k  E dh  q F  q GH  J  Kn LnMrOQ  Rd  g   h j S gn UVn%&   H u  DK+ @  m  D H mNT    -  2  NV nb  q vHe  r sM QdT m 46 3 DrH KM-` d h k q`Hbn SD$& ' (rM$MS  t &  L  N Q   (ds,vH -g h  F de  h  kmS 3   Qt   FD9 h"  CD AlnEG n  H KL  S Vg Yh ( - D Y 0    2 dklmvME  Sh V4h8"S#$lM     Y&G  H +d- h 2dh  35 9h  k "d(+   -`dh  2adh  3h  6dh  9 (b e  h k ,2   $( D &D4  "%    ADrM,   2   3  h ( M"   @    H $d&bNT-H! (N DN t-H s.1HNز3   H  K( K  MNH m3  h4hD  !H K +.1  #H % &.   &H K( حDE H ` DBGOSW( @  A DnqH tu  N vs T.R5   D6 Kh NBS(r,4 DK O Q sV3( @DKh "N# & Kh N ( MR  + H, -H  1HrNT 34  5" $ҧD*+.  DH  2H 3Qn      V' ( . #k&H T-k2h39(.D$AK S( DH ( 292 H ( @   Q        h n hSUh( ShT.1DHkK   Q4  H   G #s%&  + , N  / N 1h  MQ!'( @Hm  .  1l 234  osH    T  3 X  2 9 1 3dk4h -d.NtҤ( +1 2km$D & h .  DH $H,  +,/& G-H D DH KGHr3@mS(  9 dCHn  KMX,t-h dt 1H  2dkv4 9Hmdh dE C AKM#H ,  O -dh 2 S 3S   dh @ sT "  .h  1 de n h 2`d3h45kD H ( KL@ DH Sh nNr d2h DH  NDҳD! h +H" # tD%Q'(+Hjm,/ D NO6 3& h  3Qn ADE R VDH +  # .!AHKLMV $D2&n H ( M/2 H 'H3H 1L      DAh "e  kHmn  @ H mT  %'(h L   N -b ce h   kl o r FHMdh T   /eu dh MO  2dh dg k q3e  H m sT 5 x Hdls ظA DH r9H h bdkm"$h ag h k mnu vdh &N, - N 23BDG H C H$U  h n %+@ KdMحdh  Mh үOh 2 kl Sh 9  dh "F (, .dh  Uh /H  2klm3  S4M  dh R5 DH dh tSAh #h  $h R   %km,  O -dh  D - 1   d  gh  3 5  Q 2dh v  # ak o H +ekEK n  h  k-u23 @DH  dmدD,H /!%qK ,D-H / NGK 36  h *D2@'3H T   h Cn -     2Th B R Q  (`  t  DH KM`#$-1& Kh 4 Ds ABCqDHmKh O3`"RAG MS V(CMSD  LNT    VDFҳDH  5H ! (  +,  D  H Nm/RSS"Ah nB tDEFG H   dkmvJ K h LNQg n  o s V l@DH LNuҪD -H.DN4 ' +/  Hkm  R   ! N A DrHmKMRSnVnؤKD+DpNDEH K N   - . DH rNR 1dN h 2d kmEL5D -2 N H m"dh vEҧ@( +13H  @DH -dh 3t {Q( . ( DH 23$( -S6H m( +@A nCDFHmK dh   n LO PQdls  V ثDH S DұDH J``a    d e h k  vD dlH 5 HkmrDH Kh 3Ng. DE K DDH L  %& -NٱDK2d $&(nN o sT׫D EHҬDR .DE  H K  L  ( R  + N,H . KO Q   "eG # -/1ز  K@fDHK" DH l@ eACEHRSnT V( ,oD s H-HDH r/s  Hm D G3   H3H     $(   FL$#66$   ( Nq#@N ( 1 N  A nqDrG K h   MQV    (   #D f@A DLNhSخ , 2  D LP Q  Rh&H Dq H N/N o  زSK ( . / DH 3  N  fkq   Q  "dg h '+r3H dHR  طD !HKh h& - DDH &(   &H G6dh   DH NuT(DM+ D HN  g v@DH.F2N R  AB  K dhL  Nrv  hnh os  Vn(KMF   KMO R  Y1 TR ab cl    ( D.  ` dh T2DKV Ҫ@DH TV+DK12HDH 5E K  ( * /H KB#$ ( , D.V1 H  e N2ae glo qv 3 H   (M/s   @DrH K!#$'N+123r -K2a     g  j  svH LSdh  #U(DH 2!$1 R h 2DH LMR&H D H ҫ  h j km!Kh T#Q(hK  ,H N .hn DqS4"ad#@DQ DDH Ql h DH .1H d h EH Kh  DHkm23 h "h ,   + 1mst  HN   d efko   rtw   @Qa  d e o s  ' -s  .  q C F  ORS g         3!N+   +-HN  'hkS -    . K`R  h  MR( @H h  $(h . L  Q   h   $ h     ( MS-. 4     Rns       qH       $ (1 Th 4     M tSt$ C LM Q (   M .  CKQ s   U 4 hQS   H  Kh o Q  R    S  $   B  C h   k M d  h Q b e  h     l r      s     u St (M NR + mt D     H    dNq h . M Q     Rh r  S  T   U 1 D   f    r      H mr  N lo  u       T  4  FK MQhS " t S #  L U  h +  -H s/  q  1 2 3  4 F  RQT 1d K  M  sO    Q m  $  rs OR DH NV(  M  O  Rh  nS  h +  H   NT r  . G L h l   o         M  f  r       s    u   Q  q    1 c    l H    4 tK o L  ` q  B h  nDE d  h   K L M O   R s S    dh ( B   d  DE  F   m Q R    o   s  STU        . s   K  L M NQ4 B  h   K    R    6  # % d h  +D H  T /hkm0 h 1h2 R S  5   7B G N O   h k q S  h  q    LM  QS$ ` d   hm q s R (D F K  M   Q+    s  D  w H NT   . Q    1qr D H   4  Rh$  tR+.1s  D HN   Kh Q  $  h   (   .  R 4  s 03      4b Qh R ! +  M$ . S $l( *.  tU   4 L     % / O 1  F  4H r 4  hS "  t  $ t L  M  s O Q  '(h Fm  Mt   O R   .K  t u L  tT  /  H  3       m   DH  km s    Q        4  r E   K  h O o Q f  h l  nq F JM $q     K        L  M  r          `   ab                   c           d e      f  hi  k       l             o               q           r       s tu      v  R  (    h  K   M W   1 lm  rt u D H f m N   r u T r  4     13 h K t Q  R$H M  Q R        S(F  M  N   R S h  .HJh K   u   4     M M(Yh . 2 3k%+ -  HDl2 B DH dm0 S  V$   n    C   t E F  K  L O k q  R n   o   S U   n ( S     4 ! #( 3 hM +   C,s2 3 N oQ  H  '    2DH H 1  $  ! H @rACDHLOn .h0  & 4D   N$s,H & h (RS-24d$&1H   ./ h $ ! $"6 L  DMD  Q   Heh  -e   DH m.L124 5HDH 4'+ @3Hmr$dkq( 1&H Kh 2 HD,  h NH  3M0!H + D . h4  M& K MnsDH dk2 (  sh DH  S$d0O T(3 h 3H  1   d2("% +. 1H(  dHrҤ&l H L (h S2& Kh 4 kHm 4  (m T  h ίDH  t@&K(ODHҮ3DR o   .He   KM(3H  h      H   (  * 2/4$(,H-  / ' D KQ1 8 .DRDH KMDH ` 2  35#-DsH خT 8 ,D. 1dt.3 ! $' -S q 6 1 (ADH N#H -   D DH ҭB FGL SVD. DrGKh MQ$ RsSCEK OksV2E GL6+ /.2h DH "B3H  7/   v/5HdBdh O+Ӷ  j %H & 2Sh 5A"cdh n+G Sh H   K  ҷU   3 ( * $M N      $dh k(KN .` dh 18   Q  ( @DH K. 013 HN#$(+H AK R$&DH .3 Vѡ@CDsJҤM  R(  ,H A KNQ "kH @DH KntLN  b  k ҦTh  n. 2 3G 83$(+/sH H  " D$&kr(H o58  "H$DH DHsdDH KdKM`Rק(S1 3H@ mD &` dh   s- C q 1DmH2 SM(  .% &+,  D1 T8 (-$dh S( ,D.T(rKMA "dD H lDGHK&@DحCDH MүDEH ӱdh 2dH v3 5 H  n3NT &"#DH ز6G  HN hkSh$ &H ( kNR      S  4 h  "#&s+2 3   H .`4 DH &  ( f.DH@N/N 31Nt3(+H.D ND"#'q3  H T  Ndh k`@DShsH K(nM K(!$nQ    hs  ( 1 D 8M s'(DH .+" &ҲS A nF Kh n R S DH N  MS'deg h km v-  KdV(  (D+oسH  DHTKQR (` dh k. DHmK N #DR@l  A  LT& Th (  M@DH . 2DDrH/L StH   N!N+H 2 D H K   $`   'HN T (  h,3 KN4 K  dhovs(M9  DH ҥDD3h r 5 !h + . 2S4 hkSh DHdmMlTL 4SR &H L  H Q  &H (` hRSB 13 (H o  K R DruE G nH  rs  g sDH NҬDH ҭDG H 2k rH DH ( /H 2 KgKS(-1 ( @DK'(3DH4DrKMR  (h u -h 2Hmس5Q Kdh nL  h (  #$ dh R+ Hزhks N+1   $ Q (hmEK MTDHkK1s( , 6 3$&DH 4 V @Dش D  $(M d  n,DH4  BS"dH  dh (MDH DD EH QnS'T  4     `n  d#(`h   PQ RT !" DH m   r ( DH , .1 bl   "# H HK h nL &'(+,D-. 1Hf + 23   #  $ &N` hR ,-m sD   H   s N T./4 +. D HҫAnDH LҬDE K L`o sS d 1239  .dh g T(  BCi  qHOQVr" m #HCEMjU    %  N  T   Bh F  M @D  N,-T. CM/1DrQ  5 !(,qNB  F   h tR"# qsDH N Q dST  %T& DKh '  sN nT (t E    n JKO      S* + ,-Dp  H m. h/0q HK3 HK4 DE  LQh b 9 (+/H   ST !  D dh HT#& DGH NT( sF G I KL  Sh )D     H l+ HN, qN.0h1H dmN h D `  dl  STGH X5   HHK h"NT  $DH DH . hq0  @f DtHmuD       GH  eNhT "adh kl  h     mҧD   vH ( MR1 b   l N 3GHmNQ4h 9KCDH 1DHms 2  5(*h  tM6 M!$% 'DM `rS4 . N&S m C DH   Mh V 2 T    '     k #  h (s `   DN S  d T+4 RDrKMH    O Q S.2   M  dfh!N "$( NR+ N. q  ͳDH 5   Q $ HQ    h  / h  FQ"J@DH mN(MR-N  .DG S  T 3 GH N   DmG   He k TؤCKRS&H CMdn+,1kl l  5X6"  $ D,  @Dm HdmA   k t v  L  O  RN    dh ' c mN    T X(  D1 m o    3  $   2 VK 'D  HDH1` ab   e l n  o  r   v  #K &+ -/ 12 qT 36Dr  Hm8Dh -1 ms   DKMQ@s '(S    h DLVث@D    H cf lmn r s خQ0 HN6  NRS j qM Q"lH @ DEH KҤ`  us & h @ B E L h tMNR  U-D rHN.h`2D4 b S  h B t  FM(M13ek  M  O   !gQ "   qD k   G h H N   t Q #l  H $` hk%N & T'dL(  s   )  +D ,   s- N . /    Q n   01b o   DGH mn r uNO   S  dس@    DKNQ  hto4     R ( .1ijD$( 3   DH ҳ!H ( h S4DqH   hdh Q       (E   F  R4   tL  V 12d mt R@ADH ؤB G R (He Tb .SD48 $  ,BQ  RT#Q$`adk l  &N nQ(DSn DH,.  k F q K nL dM O n    QR  S n  W12NSq3h mmquF kH LO QR4    Hkm$@AKg H rҲij( /H hkRS U!# N&DT( +,H .hR / h n    1N2@  F H e lNT"$+0hسKD  (KN  U  +.ab h 3 h d h -d`      dh 1de h 2HRS 3deh oN @ L (M $(  Q( DH Q  .T4#Kh &2   HKh &Hmز  !"h (@DH m3b c   kl  m o          r s  u  ! h ,He/ dh # &(h  E  S.# N(H, /1NK h NT TQ (` h n  MDQ+DN  q س@emqD H M kMSK(  MhnD N4   h  .K  /2(.13  3 H e pHN   !(M  &H  DH 15ks km K` (M"$-3   '*+. /H زNs1 s  N   h" 'U 2D3kmhR"' (     Uh3 4     n  12n3kIˤ(    -/ ADrH KMR DKM 4 n   DH Kh S1 ors3 DEH K h M h  + H   .    1dha     R23 H2 $h # ,@/'.3 5kN  DH Kh N' 3H Kh 6 1r HN  o rs3Q   h n$ls (  !" N $R%  N  +v-/ABK LdO  q QR N4 h KMRS'N DM  . KS 3h& Db  ce fh  kl s     +  T " ShsU3H/H Kز 1HN  t6.$h( +lm. T  #H Ҳ4 k l  HkN  $  (   d B Ci Fq K h S s  !   Q  " G  N         m      nq# m   r H   Q x M sP   R tS W h  o %HK  T  ' (   s + u , s - ./ x  KN kQ 1D m s  u H2 h DkmL OS nTX 3 D NX4 R5H n   Nk s 69 ҭCS 2C !#L %   s12l3` d    k qt  v  N6DAkF( 3 Q ht  kQS"dh AV'  ( h E MN. 6  1   $hksLM(S '  ! (  n tH&H (S  Hs D  H  KM$h n   ( R 2  -lqH 3 " ,1 l s  G 3 h   n   $+ +L(,    ( +2HDH          ( h  P S  U. P  (  T  $ Q      R (.    3 D  H  Qt    1 r 4 ( N    ( O+ r4 O  h q   hn +1GMUh$s( .F OtQ H! $(+23 . 4 HKNt !$  r dh ' (  h    M/ 2 GO S$ds  S( (" $       $aR(2 .   5H t  +  2Sh  O  q R  U .  (-1D 3      + K   ( D 0  DH KM1a ms  D  -H4  Q    Rh 1 N$(` hL h tN .    K-t3HN(`h D   H  $dh k (     - 4& Sch     R(D $   %&   -. 2  $    S $(    DHN   f   o q    (     4     . RS(   s  N  ( 1  H  v  $L m) D DH !HNt QT"KN Q#Hr   mn$l%H  KN&  h QnT'( +   rDH  uNX , N-  / KNt T 1 DH TD G n HyJLO  qS  q 6 DHN1d3ұ@   bfkvA knt B gn     q   tC  h  q  tD l  r  w   E k F q G   d  t H   IK  n  M O  kn     q   Qd  h nt R g  h    jkn o s t `  g h kn t TUV  g   nq%  ĬҲ $($ (   sH   L '( M@ qDH ҳ#HmKh N+12h @ ( .ҭE K  s  adh DH 2     S   hEKMN  l S%(  R@DH NDH. /  sH  3Q$ /DG  gL" Q#mD  Ndh Ҧ'   (j-H .  Hس@  DGHm N   QtBkM X$a dv( R./1 48  n B  Ch n EFq  tJK  xL  d   h n M Og   k q r Rnx S !"dl # M   %(L M  hSDH V+ DH   N. CKW01N 2H  KMN@  DG  H b         dmrs KMNQ "G'@ f m qH n u  NOVqt Hk lMNQ hT    "dv K   m  rD KNk  V(  MR1 bl  n N     3HmNDH -/2H L ( M+( A g  "#$( +,D -.1 !"` e  l  s dNDҫH -n@  " DH .3N4   MM# h $R (  BFL DH DH үDG H @DH K5H r  6 !&H ز    @DT DH Q5   hsM"G H# D H T $ S   &( M S   * ,- DkHkmR  ز@ Hu @lD G4  LQ SH/ h /  H 23cy " D  m  o   ` dHN T#s$ L  M  %      HN       T  m  r'( FG n LN  O R   s V ) H +,m   D  Hr   T-./  s      K 012   u   G He l  r   N          O h  T     @ H     T Rh U5 r D  2   D H k  K dd(h 1qe N3H dkmr4  M$3&+ Kt- n1HL  X 2H  -    s 1  + m   D G  H r KN   r      F.$M-ls HdmN  k 2 O    3b   cd    f    k   l  s   h $  KT2    n      p  e9X " N @D EH Kh O T-   3 T   &! "lH L Bh  QҲ3Hr9  $ &a, /JS3  S% & ( @ N.h   K ! "dh T@ ҦH 'N ( NDHrK- DH . /  QBS 6  4kmK S( / H DM dS.T  "3HN "deh $ % ( DE K  .3 DH R4H  `h $(9yDH s akl mH m&  n Th (b dkm  ӭ@ H h sMh N ` dh 02hS h 3`EH s mnSX4R  a AnDE F G H LQS h V 9dh `    h  t  d!hHrFh -H sSh T347 M$Q&Ch  O2Sh 4 DH Lgdh Fh Ҭ@dh H L dkm-  Fh dh 1 3m( ,6  n dD L (sT2H y Q   -d  h k 2H N  e(  h nBL(  h Ml R S  h    *DH vNsT  خMh38 s  F knqGLdM n  g R S n T  $ Q ,@mDNrt   GD (3e  tNS d# DH үDDrGK"(+H/Hmز4     n dT &( f  .T /1@  fD E  G HbnK L Q lTHTD(Mh    2   H   T@BCnDFGt  H  L dOn     bT   q V  FRrS!  $     ' (+T. /CG3DH d& +q-dh DH 2DH #$ de  k        &  T(Rh -h 2 3E k D H  L o Q " t  D   oH n o     K N m    n T#D r s  H          fk r N     $    odh W% bsD        HK& 'm H) +H   sT,s D   HrtN  -.    Q  @ hq     N    r T1pN 2A Bnq   D          q  H    dh t   ST     o 3    rwS   Y5 k  q   D    Hn 67H "k H dh k#eH $ bq suH s KLMNdh Q-  h   ` dh n./2 `NRS 35s  DHk ط9H !    s H sK N" D d r   K    h Q    d    tST   Ch H  T   $@ D      EH  k    KN  T r  & M  Q     d    '  )    + H  Nm T D   sH   r  N  s  O   T    -mN   ST .q   @    mD  m    G  x H s N  q    r   t Oh Q T  X 12B  q b    k  NoO Sgh  q 3 f Db   fhn r    No  syQt T  4dkR5  H    m r   N  j rDdh 7lm  qH  -H 1 2(  h  h               , $b (+     r  D H K$ & 1 SDH( -  * (DH LN, H2s  H 5   (, Dq  H J"dh S  t    #&  (rKR    S-H 2DS(/Hز G  KMR&H ( RS DH N/ h N  r    DH 2H T  h 5HBDH NT(  3  1 HBD H    h    (.  d S 1 Nd#  d h  t  %d& (M *H +  s -S t1   Q  hd   2d35  !$k dk+dh ,- S1T  h 2h      34H   "d hkmr  $  dhkmt+d-H ` d h t  Oh 1 h ӳSh 5 7Yh  3a s H m! mK(kDBSV'L  ( MRD H Ҹ '  (ms  B ` bdfhklRT.%KDL& H ( -3 DH ҫDGH KQ V, ABCDE HmKsV2H  ( R  +h /! h T ( ,H .@ mq12D"dHN@N  ئk H تDrH K2 NDH  '(hkDMR/H NQ  T AEKMR(MS KMADH  3  "'( Mb         3  h   -h n ( N R ! '-!, .( .adh P ` dh   n@  DH mI  h %&D DrH r sy  KMS- DH O  k n    q DH L  dQ    2   R   ht  46 $k   (.T 4H  Jh s     MO   s $h Hu  M O   R' Dq(Oh q   Sh *   N +lr H  T.    H K    L l     o  M    c  em   r       s   u   OQ T  oqU  1   H   NT   3m  H k sK  NT4  O  q   r R 8  !Q"# rH r$  CD  E LO RU   '( R  s  -rK MT  m1DJS 4h  s  M O 6ATإҪDH DH , O k-E  KSq2 5  7  $d  q (  M   h +    . KQ   1hD   H    4 FMQ   mRh S h  hkQ  S$ d  (  M N R   T- 1   N 4     tQ    Q  R $   (%&dh ,     OB  nCDE   H ds    S q U h23     .  4       S h     `dh dh $r F M  U (  mDu F  M   R Uh .B 4  H   Jh M Q  q ! $ L   (  fh   R s  - . K M   Q S  T  U h 4      LSD yH Fh n ` dh %HL T    U V@DH 4 M  1F   H  m    Q sR` l $    k  M Q sS   '( +    mD     sHdh . Q  Rh r1  r       Hd l mrNa bc    nu 3 4   C  F  K   S   h   Hq   r  s4 " H Th $ q   L  M   Q u   s    '(   h tEF   K  k R   .   u  M  Q  T  q /     k H  sK  N      @s   t DEH su K  Nq    Q  h  tTX 4   Lh oO Qf q   R  o   JK  Q "dh $  M R' ( kt DMtQ  h . NQ T 1  h m D m   Had  Ne  f r  uh 4  8-ns /  2 3 L $ H  ` dh k qMtQ      hr   S  ( KRh S Uh . Jh K t    u 4K5H  ( Q.T 1 N  ( -t. R23 4`  r bHN  ,t-C H 3  ! DH N". M R @DKL MSDRB  # DH Kh &H V(   MKQ+lH &H 'd e  g  hklm(hk, .n  *!+,H  DH Kh2H DH N dh ./H Kh ( MDH 0"3 4 9dkqa dh (4 Akt  GhsVDH DH 2d !HmؤQ (r.h4   D@vA De E nHmOU .#H MQ&-1!4HH  ҥ@DH m b s    . DH 4  #-DH SHҬDEH L-2 dh DH KV( A K L Q@AK LMSV(rKSm3Q6  Sh  nM ' (.Ѳ3  H 4 `bdh kmr+-`dgh kmnt2H RH  (  !#$M(  hks"!H rK#M(t CD1  H ؤKMR(  . o@%  HKh 4!&  @DH N  (  ! h $%(   , .dKh T V#$-H 68Q/3kDH LD HDHmKh  O D qK  3 !$(+.d1H " 'B DH 1l D  H  kN r #rK h (+-F J KRS% QBAK&H &ADH N -dgk   A BL Qb  lov ( MfRU+h ,. N ADH NO4S h 5f  sH  h!M.U/ h 24QS"S      t@AtDE H LNOQs VؤKMR@T   '( hJ3x ( + .  /GH زB RSV" N# N & 2 3Q*2H  h"K  ( DQh R   4 c 8oHkmأ$ -S23q  M ( Nt.  dh `5#$( , 8.O $( AdQ%  +vdh H Knd,d C   h  Mh h / T @B  hbHmKQh U3h  N S  5   qHd/  GK  L h Q(  RY  +-N .    N        mO 4KLX 6$ s  ,-   .2  dh +dh -.dh dh /1 abkH de OB HK h4  df h dh ldh  a  ah o S  Vm $ D    a c d(a  h l O U . ST  4a ELO t  S   # %k+ O  1  U3  !q"% N& @ DH Ҭ@DKs/ N0 B   DH ҲBGHcN   DH S 6DNR $h R + r.    1     @H N4   Q h S  h$ &(   S4h s K BHmKh ( DH  ҬDH  Kҭ@DH t @3h   .1   -2 n  9H T N $    MhB  H  K  R *DH N,35   O! $nR( t B  n  E n M n NO  qQ R  vSq  , nDH N$FR ( hN.h2  k H   ms   NT  n  D  H l     mQ       (23sD Hk lT 4 m rHNO$  c hC&` ( DN  ,. /  145 H    dkms 2!B3H K  h 4s `    h k Q$(   $(+3H NT4  , h  "dk H N %F * ` c H m+n N@A  e   k H Lh OQ-FMSt /k H 1b g  H Nd kmr 3 5H M;Kdh S UC $h r dkmdh (K+`  deSU-  R/G  1HeKLQVn  $K %dh k+d h NL h ҭA F  H  Mh SدAt  Ld Oh gV X1dh K25 "dh  Ch  H KL s )-.H dh J KOh S V1k H `b   d g h km v2 F4   dh 5H BCD HkmLdOkQ O $c U h( EK  LM U.4af M# %  Mh dCSh k ( +-2D( + 8( AD HKMQ@A t K n LQ` gsvSV h ( +-E- 125DH DH dh k  ,T @  s ADH   mNO1 $   R' (nDH VثHmخҳ5  rH (   h,./Kh   R4  s    "q %  @h H K   h n T  ( @ DG H +-H 34t  dn'/H ( +23 H  Ҳ3H 4 6  $/ 3H @ ( 9 h  H (+/ 3 DCh $%( +de  Lh C KMh үIOh 1   dh Sh  db-") + Hm1  2 6 "d h m(*+Lh - h dh  Oh s2dh G H S4    5Hmr  DH   Ch F $dmdh  k v U (- /4 H dCH $R&  KLh M-dh h Odh gsG Sh 5A&.H Oh  2dh eS4F5   CDrH KMO Fdh   (h AKd-ʱdQh 2h $R+- d+dhmos 1dh km2dh 3 d+dh d+H  1d3d H SF*gH + . S   13G 4  h F  KM Fh (* H C Oh R1dh 3 9dh $dh  Yh  #%dh kSH O35 Ah .dh SY1H Jd4A CDE k H L O gsAh "%adkF  KMDH H mtرDH !H  $dh km1p(       DM N  k  D1# Hm(.ҳA D rGKMVnkmD1   ѣD H  BKL  M(  `hkKMOS tHL24 kS5 mH  KS! QACGN O Q  u S h V, -  N   SEs(-. hn8Dh  r 'r N l ./ 1 "#  KM&./1HN سDHmh% &E  K -dh k moBCKM23 ` a d    e k ov   5  (! $d( !"bHmn  #H &(C F Hdrh Mh ұmH dk K Q nR hSnS H ST 5 6dh dgl "    e    lnkS   dq        T      $  adh  n t+   a  dh T -dh sF 1H  $h nt ( H mT #$&*H +dh vӭ@C kMh R1   H    e EH S kn  S X$M dn  (h M s .4`dh *  -h R S  .de1 dh   Kh Sh 4dh HMV dh $ (g M   j    S. T 4h M,HdQh d3 S& (   qK  nMQ  h R s $  l Dy K(M Qq RAh H   K h "dh #%dh nbF H M  (dh kb v *H +  lrHdh dh V,EH L d h -`  ah no  EGH KSY/ Kh ABCEF H kmKh dh dh k tUh 2dH3gk l q  H mn r  NT qs4   s5H DH e h   dh s  adh  r$h dkm`dh U%E (ad+ KLh -hN  B CEG dK L Oh  hnV1  H   K `ktN3RS45cH@ Ddh  ko$%d kmKh & +sa md ,T    -dh  dh od/ O T   K Qh  t3 `a dg  h o  q#  (` h*H +H ,dh -g vH m.Fdh FNOdh V1e g j qHma dh ak s 4km5@v  Eh F   H        L M f      ko RS d  eh nstTU  a d$    D M   t OR S  dh (sB     C  h EJ  h  M  h o sUh .nCJh K M  sOo U4s   CF  l oMs 8  Ah kn  "ʣCh D H h %dh + ,  `dh Mh  d/ mH N1  F3 +H r yT,/1 N 5kmH R  S ! "  N m    T s # Th % &' T (M)   Tm+H   T , q D    H r   - . Qc    / N Q  1N B    D p q  H   r  NOS      h    q T X 3 q  H K NQ nX4 5  6 r    H  NstTk   l DH Kh 13d#  H IJ   H   N  Q Td&    -@  BN   sDHTDH m+  Hh /t3Q  S,   sD H N-/ t !DN T#DHNQ% KD+,-H 1DGh OS 34$ b    de    g  h       k   l  m     o r     u    (  /H K        h     N  r   Q 1f D  GKRS@  D&nqHm( +m, N - / KQ 1 m   o Nt  35  H m"  / m  H  23  D  4h  $S Ah #  F ' (+  dh үOh 1dh g 2a S Bh Sh DH 9 dh a dh #H$dh   adg hkm+dh S /1h dkm+dLh R-  dh /H 1dh 2d3  Y 5 .dh dh 1e- .        N/5DH N    , /   G NS  OG   N# Q $.M O3 G    (M4   N !$  +`b    vH N.4    (ktDH Kh خҳE H kK T  س&H .AFN-d/6 Nu(  TM( @DHmث@DHNgh ,. ! R( , D N#D q H  Kh (@D-rH23   l Q89 dh s( N/DH 1M #kmؤ&(* -ӯ@t  N1DHmh @KMTL, 23e kH 3Kh N&-dh  /KMN -  S$ҨBC DH M.  /   "dh T'D DH LsV/CE H KҲH O  h     n     3 #( TH ҭ@3 h N   F   L N O g  q R  SxUDH S T /     rKq  ` dh  q  B MDm  H NQ$L % (-HX.kmH mn  @ s H 4  Q( $ RDH     sҭ@1bhloqDH de  s N   2kmr3D @  sDH  e kl  mN  '1   f ҳAH Tq #K + Hc K,de  h k BDH   q %(Rs+ @R B. BCK Q  h R1 ` aehnrst vL hn              2HO3[kqu "d  km $Uh &+ , dh KMh 1kRShS 3 OR-@DHN    O2F   R   R $  e  R  (EK Uh . a LMS  Tdh L  R VCh Ҧ+H,dh msdh -     1RsQ ,T1sw 2 `(4DH Kh . !#  K V(rKMH DҲ'd km1H   ( @DHmDH   QKh OS V(hkM.S/ "#D%&H Kh (r* Kh -H 2DH   NX/ H K3 kmK n ( 2 h$'(K  +H 134 R2dh F(.Kh ' $ & DR   h8 $    DFG24  SHNs "%,. hkK ҦT(F-H  NAH L ҳ`ador R "J& (`,.   K/H Kh HN"d@Q(M,   @. /HN0 D H2H NTq 5   DH T dh  kh( 3 c h r &dm+/DH rM  dh2 h  !$h dh d glo n $( -` GH dh k`   hn#l n H s    %   & H  (dh ` dh lO n)Ldh k n  V-P    R  b            c e           f   h     k       l     n o              r  t u  x  DOh 24 5mD     q r  6dkh kl R t dh l ! h SJ+ ,  D  N T  -  S/2 dS FM  ! T ms"oG kdk N X # $M % h FN  '+dhNDLh M-s JCү@Kh  NkOh S2S3mrH4  M5H C( )+dn, .dh  /HrOR Sh 4k   FMORr6 "dh T  #h R% (+,A d- gC  2dde h  v3e  ( .2 b  ( 4 dDH 2!&H   (+2  h Q (h,.4  #E K ҦR(Mh-H NiT  $&(DH,@q DH JNtuO s S /  H013  5 2  .h   (-$Y+U-#  F+˭FH J  1dh  2dh B S % N      bd V  'nT( E MRF  K Mh     rM      `   (   1b  l r  u   ( 1fD  !sAKQ"  n     qt G J  P # N T Uh% h Q&(+  f K OS , T- H  M R S/ d    q  1 2  JR t  3  d q 45   N 6   $ sB  J  K  M(CM+lH   T .T  V1  H N 4 EQhmS M  h Q S T$ MQ  '  m  q D H Q( + r `mNtT. K nL l  o          M  c e mp r     s    u     N oq Q qT  o sU13T  4  T  $knEh   K L   M O  ` a b     c d   ef       g  k    l  m o    q r          s   v    Rh S   U (E FmKL lMR   flos  UB  H MT 1 r H  4K  8  sRh  S"   #, O   - t E I SU 0 h 1  2R 357l B hO  k  H    s L R  sS  U $ D  H KMQ S( Qkms W+ s H  .    Q f  ls   T 1    N  yT4  MQm $ + yT.  U  1l s4D H MO  Q  $ qsD KR ( S. NO4 X # H % dN  h + ,  Od n  q -  n G hHIRtS        Un .h0  2N@  Hmy5k D          ( -   Bh C  L RT V$qr u RS( J  LMjR. B NU 4   F JKM kmQq RSd$M  Q S( R  SW.KSU d  S $ DQ .T4    R S  q "% / 1 H S HqK Q  c  SU$e s+ D NTl. 1 c  ilos H   N ce  l m  su 4 M  D  r    H$  r    B    C D  E kF GKd  h  L  h O  nPR n o   V ( OU . L 4 Kh HK sMStU"G H Q  d t $ r  D l K Q S  '   q uD k H N(  mM  * ,  . Khu OTm/  b N jQt 3 h o sD N Qt T4 B H MOo Ql  oR 6 8  K LM OQ T$M  R' H   Q( L Q KT V1  c h l  DHNt Trs 468  DT 3  $ M Q W Q  RS$K '  (  K  M R S . MQ  k qs T 1H s  o1H  .  h   K( .  r    (  b  l( S( Rh U. Ns '(3hm qsQ46  (.4(  TX h3 qM ( $-qs ( 4 h  K &  %  +  Ҳdh  km1Hn`d 1 T y  `  dh kl   Sh   "  m  ( 4N tT  Q( 1 4kmrKM # C Ms Q(  ` hkR+.n 4 s kH 5 H #X &( R S0 38.hn    s B DfsN , -2H  B K 2DKM( N&+dh -DH $     ( t DH ҭDH  h#+,.T45 hDH N$Q  dSY & e  (BR.nTDH   Qh   T  4hB M@ sD HN  s# bT&H(E  KR  S ,H kN t- HN. 2h s HnT3 H f5 kt /2@DH fL QT$h  D $( ! K#-1  o s `h MQ'r( N  R *3 N  Q T- dS 3 DH KO ` -.n     MR( +fh. " #   FX3M8 s  D  H &T ( h3` n  4   F"HN rt  ( kFN` dh n.34   hkL(1Hn4   B K(kmDER    hkS (  kH @ +  " (*+ ,2fhL4 kL h  M    O  h  3( Udh r $( h $  & -  / 35  #H Kh ( % DH &H rKh ( -.DH -V2b k DH Q5H  E dh (  ҪDH NuV@ADxE N  O -/ 13GNdh  D & ( +DH N  ! h DQgG  %'(rKM+H NqDH rKN  SDH  үDH K 1 DH n@GH 6@ AnB DH Q-H 2D 3a e  k oH Qcdeh l sv$ab   de  h kl o     sv + 2@KLEK  d( $( 6%+-H6  +15D rK MSDH /@ DHkmr 23 5H D$2#H &H +- DتCD KүDH 5 dh    km N  DH %DH 2D dDسMV - D  L V+ -3rH d+a H , 1SUDMRn$ abdh Yh +BDR1` ae hnrtuv GR Sh dr%k+H RO dh -H MKO h kn `dh o v Qh 2dh O k g  v GH rLMS  Yh ; # $+g m  KDR.dh R/h 1gl 2ND  Kdh R.dg3v d-K& h 6 B rEKM%hT '  (rKM*lqDsE  Hm  N,H N2DH "dH Aq DE H KdL N   Og nsvTVؤF ҦADH o(DH -H oNMҲKN   S3  GQ( KS(rM #@B KM RA DE H دH سE "bd@C D G n  HNR  - 3Hdkm $d h ! %  H Q5  ghj k $;#     Q DB gnqt D K LO h QgV n $%( DK- 9 DHkmK vؤ@ A CDGH  L  dNQgS +dkvDVح1r h v2G   d3h  k v  m-dh dh -  @ Oh 3e S"`dh B 2dk 3  R&  G-h J  2a Gh H S c de k34 $R+     .O   . dh  (  3, DH /H @qs1DH AK n dh  23 DH N DH   3 dh h 4 (  #*DS ;KQU-dhr d 3e  1"   S    9@ Nt  K(/ DE     -H/H    ( *+H /  ' &  CMP1y'^%y2 %: 8 ? O! ~O#{- ? Fm:m p!l͏ !m_ ͑ !uh ͑ :\2 22V2x2 ˜ ? O!"!{'+6#"6-#D A[w#D A[ʿ+~w#D ʨ ʨ+6? *~}{ZUQSQMQDQPNR:LCʶVʦ/  ZO*iaw{w *~ ? #ͨ> 5 5 ~/§ ? #ͨ~5 ~#ʨ*we{ ? Z *6-3HA[!0%6/# ʓʽʽ#[- #-#A-5 w# ʁZ!F #:7y_:Z!:<=[<#0%>/~5 ~#m-Zʽʽ +~w*͋+#~¢}/o|/g#H  w+ {»0%w#*#͋͜*# ? *~-͋͜*+~+~#"!" #~+/ #"*+"*~}-͋͜=*we*#͋͜*#~h#~/w#~x#~#~#ʋ~/ʋ"*#"!P ¿Z ? !4 ͫ w# *) )|2 >2 ͫ }o&&" ͜ G͜ O͜ !4P x2  ' ? y2 >2 ͫ o&&" ?ͫ `FR>- Y> 5 @i?  $!%ͼOͼTWOPTIONCMP ~#  c~#  @`@ ~ #~ #x!%p'qC J R !Opz=naO $qF#{r ? b ? ZP ‰!{'~#M°2C¸2S2U2͋á:%$$$ SUBVVm ʹV x:4!>UF:!>SF2 ͊  ͏ ͊ ͏ ! P ‚! f :O͌V ! f 3!{'"N:ʟ*#'c+͝3ß+͝ß!'͝3ß*:O͏!'͝3V  *͋~7!1!'ͫ 7A3[3w#ͫ AV[GG+~wq#c?G~}怆҆~ƀ!{'~ȹ̝͋Ï#~#+ ʠ2 !{'~MC͋÷#~#+ ~/2 Add word to: Other options: U>pdate Dictionary P>revious word S>pec. Dict. "SPECIALS.CMP" N>ext word M>ark word R>esume review D>iscard word L>ook up word C>orrect word V>iew context $ --> $ End of list. Press "return" if done. $orrected to -> $* WARNING * This tool is damaged! Use another copy. $REVIEW+ Version 1.2, Copyright 1981 - Oasis Systems $ERRWORDS.TXT is not on current disk $ Press Control-C to abort, Space to resume$Context file "ERRWORDS.CON" is not present $User file not present $ WRITE ERROR $Checking Dictionary...$Word too short to look up$Main dictionary is not on current disk$Word too large to look up!$No similar word.$_ͫ a{  !͑ >2  V!͑ VVm !%"  Ñ  ~# ’ ͫ * : & ! º >!&" " 2 * ~ #" * G} | ! 4x>+  OD  D  D  * q#" }… %Vv  ? O!%" w# ~ ɕ%ERRWORDSTXT CMP $$$ERRWORDSCON ERRWORDS$$$ERRWORDS$$$ERRWORDSTXT $$$ CMPUPDICT CMPSPECIALSCMP{'>2 ~~#y22!<#">2Z:2 ?  !"!T""!<#":;  Ý!F#~#C:2*":O!F#x>?r~#j b:O<2!F#~#x¤>?— :O=2!F#x~# ¾:O 2!F#~#!Y^+Vs#r:_!~w !M6# "Ab  ÝMAINDICTCMP2A6!2~6##~6::AG!5O ~2MA#~2a#>2%N! "*"*"*}U**zU}U|g}o"~#fo~GC1&~C~1# *">2*">2*:G/_"w#h*}/_|/W*##ҝ*#DM! zʝ w+ z“**s#r**""*}/o|/g#*+  Ý:GO\Xz::!X!T"*"*}++"*^#V!4*##" *w#:*:_#"!Z4>2S:Zm$ ? E2[!<#"V"X>2T:T2U*V"X:U_!~ô0123456789!#$%&*+/=?<>()> *X:_~' ~#*X*>*> ![5E!U~w!Z=0*V:_#"V!T4!S5~æ*X:_"XÊ:SGI!%7O`yzͲy!_+~w#%A\—5w#ÇA\§5w#MU*+w">2 > > _~?G?~~#>7%a{ :hA!V 4Z>!""2*~ʉ#"*G}ˆ|ˆ!4x ~# ” Ÿ~͵#ê* O<#>-~~>=!~ Table of Addresses and Salutations for Government Church and School Dignitaries This is a file of frequently encountered dignitaries and how properly to address them. The left hand column contains the person's title; the center column has the correct way(s) to address correspondence to the person; the right hand column has the acceptable salutations, ranging from the most formal to most casual. If this is an INSERT file, access by section using the following codes: A--Ambassador thru Archbishop M--Mayor thru Monsignor B--Bishop thru Brother P--The Pope thru Priest Ca--Cabinet thru City Council R--Rabbi thru Rector Co--Congressman thru Consul S--Senator thru Vice-President D--Dean thru Judge A-Ambassador thru Archbishop ------------------------------------------------------------------------------ TITLE ADDRESS SALUTATION ------------------------------------------------------------------------------ Ambassador, The Honorable __________ Sir: American The American Ambassador Dear Mr. Ambassador: Address ------------------------------------------------------------------------------ Ambassador, His Excellency _________ Sir: Foreign The Ambassador of ______ Excellency: Address Dear Mr. Ambassador: ------------------------------------------------------------------------------ Archbishop The Most Reverend ______ Your Excellency: (Catholic) Archbishop of __________ Your Grace: Address Most Reverend Sir: ----------------------------------------------------------------------------- B--Bishop thru Brother ------------------------------------------------------------------------------ TITLE ADDRESS SALUTATION ------------------------------------------------------------------------------ Bishop The Most Reverend ______ Your Excellency: (Catholic) Bishop of ______________ Most Reverend Sir: Address ----------------------------------------------------------------------------- Bishop The Right Reverend _____ Your Excellency: (Episcopal) Bishop of ______________ Right Reverend Sir: Address Dear Bishop _______: ----------------------------------------------------------------------------- Bishop The Reverend Bishop ____ Dear Sir: (Methodist) Bishop of ______________ Dear Bishop _______: Address ----------------------------------------------------------------------------- Brother Brother __________,* Dear Brother: Address Dear Brother ________: *add Abbreviation of order ----------------------------------------------------------------------------- Ca--Cabinet thru City Council ------------------------------------------------------------------------------ TITLE ADDRESS SALUTATION ------------------------------------------------------------------------------ Cabinet Officer The Honorable __________ Sir: (Federal or state) Secretary of _____(State,etc) Dear Sir: Address Dear Mr. Secretary: ----------------------------------------------------------------------------- Cardinal His Eminence (First Name), Your Eminence: Cardinal (Last Name) Address ----------------------------------------------------------------------------- Chaplain Chaplain ____________ Dear Chaplain: Captain, U.S. Army Dear Chaplain _______: Address ----------------------------------------------------------------------------- City Council The City Council Honorable Sirs: City of ________ Honorable Gentlemen: Address ----------------------------------------------------------------------------- Co--Congressman thru Consul ------------------------------------------------------------------------------ TITLE ADDRESS SALUTATION ------------------------------------------------------------------------------ Congressman or The Honorable ___________ Sir: State Representative The House of Representatives Dear Mr. _________: Address Dear Congressman _____: ----------------------------------------------------------------------------- Consul, The American Consul Sir: American (or: _________,Esquire) Dear Sir: (American Consul) Dear Mr. Consul: Address ----------------------------------------------------------------------------- Consul, The ________ Consul Sir: Foreign Address Dear Sir: Dear Mr. Consul: ----------------------------------------------------------------------------- D--Dean thru Judge ------------------------------------------------------------------------------ TITLE ADDRESS SALUTATION ------------------------------------------------------------------------------ Dean The Very Reverend ________ Very Reverend Sir: (Church) _________ Church Dear Dean _______: Address ----------------------------------------------------------------------------- Dean Dean ___________,* Dear Sir: (College) Name of College Dear Dean ________: Address *add abbreviation of degree ----------------------------------------------------------------------------- Governor The Honorable _________ Dear Sir: Governor, State of ____ Dear Governor _____: Address ----------------------------------------------------------------------------- Judge The Honorable _________ Dear Sir: Judge of the ______ Court Dear Judge _______: Address ----------------------------------------------------------------------------- M--Mayor thru Monsignor ------------------------------------------------------------------------------ TITLE ADDRESS SALUTATION ------------------------------------------------------------------------------ Mayor The Honorable __________ Sir: Mayor, City of _________ Dear Mr. Mayor: Address Dear Mayor ______: ----------------------------------------------------------------------------- Minister The Reverend __________ Dear Sir: (Protestant) __________ Church Dear Doctor: (if D.D.) Address Dear Mr. ________: ----------------------------------------------------------------------------- Monsignor The Right Reverend Right Reverend Sir: Monsignor _________ Dear Monsignor: Name of Church Right Reverend and Address Dear Monsignor: ----------------------------------------------------------------------------- P--The Pope thru Priest ------------------------------------------------------------------------------ TITLE ADDRESS SALUTATION ------------------------------------------------------------------------------ The Pope His Holiness, Pope _______ Your Holiness: The Vatican Most Holy Father: Vatican City, Italy ----------------------------------------------------------------------------- President __________,* Dear Sir: (College or President, ______ College Dear President _______: University) Address *add abbreviation of highest degree ----------------------------------------------------------------------------- President The President Sir: of the The White House Dear Mr. President: United States Washington, D.C. ----------------------------------------------------------------------------- Priest The Reverend ________,* Reverend Father: Name of Church or School Dear Reverend Father: Address Dear Father _______: *add abbreviation of order ----------------------------------------------------------------------------- R--Rabbi thru Rector ------------------------------------------------------------------------------ TITLE ADDRESS SALUTATION ------------------------------------------------------------------------------ Rabbi Rabbi __________ Reverend Sir: (or: The Reverend _______) My Dear Sir: Name of Church Dear Rabbi ________: Address ----------------------------------------------------------------------------- Rector The Very Reverend ________ Dear Father _______: Name of Church Very Reverend Sir: Address Dear Reverend ______: ----------------------------------------------------------------------------- S--Senator thru Vice-President ------------------------------------------------------------------------------ TITLE ADDRESS SALUTATION ------------------------------------------------------------------------------ Senator The Honorable ___________ Sir: (U.S. or State) United States Senate Dear Senator: (or: The State Capitol) Dear Senator _____: Address ----------------------------------------------------------------------------- Sister Sister ___________,* Dear Sister: Name of Convent or School Dear Sister _______: Address *add abbreviation of order ----------------------------------------------------------------------------- Superior Mother ____________,* Reverend Mother: of Sister Order Mother General Dear Mother General: Address Dear Sister Superior: *add abbreviation of order ----------------------------------------------------------------------------- Vice-President The Honorable ___________ Sir: The Vice-President of Mr. Vice-President: the United States Dear Mr. Vice-President: Washington, D.C. 20025 Vice-President of Mr. Vice-President: The White House 1600 Pennsylvania Ave. Washington, D. C. ! ! ! ! ; Magic Wand - KayPro *********************************************** ** T E R M I N A L ** *********************************************** * Kaypro VERSION * DEVELOPED BY SMALL BUSINESS APPLICATIONS INC * 3220 LOUISIANA, SUITE 205 * HOUSTON, TEXAS 77006 * (713)528-5158 * * LAST REVISION 12/06/84 by DRM * BASE EQU 0 ;STANDARD CP/M BASE ORG BASE+108H JMP 0 JMP 0 DB 128 ORG BASE+200H ;TERMINAL MODULE ORIGIN * ROWSX EQU 24 ;DISPLAY ROWS COLSX EQU 80 ;DISPLAY COLUMNS TERMDIM DB ROWSX,COLSX ;PHYSICAL TERMINAL LIMITS SCRDIM EQU $ ;CURRENT SCREEN LIMITS ROWS DB ROWSX-1 COLS DB COLSX CURSOR EQU $ ;CURRENT CURSOR LOCATION ROW DB 1 COL DB 1 CONOUT DB 0,0,0 ;CONOUT ADDR TO BE SUPPLIED AT INITIALIZATION ZPRSEQ JMP PRSEQ ;OUTPUT CHAR SEQUENCE AT DE UNTIL NULL ZCURSE JMP CURSE ;POSITION CURSOR AT HL ZCLRSCR JMP CLRSCRN ;CLEAR WHOLE SCREEN ZCLRLN JMP CLRLINE ;CLEAR REMAINING LINE ZSCROLL JMP SCROLL ;SCROLL 1 LINE UP ZBKSP JMP BKSP ;BACKSPACE 1 FROM CURRENT COLUMN ZALARM JMP ALARM ;SOUND ALARM BELL, IF ANY ZINIT JMP INITSCRN ;INITIALIZE TERMINAL, IF NEEDED ZNAME DB 'KayPro Custom ' ZID DB 'KP' ;TERMINAL ID NUMBER FOR SERIAL * *********CONTROL TABLES * CTAB DB 8,16,24,32,40,48,56,64,72,COLSX,0,0,0,0,0,0 DB 255 ;TAB TABLE STOP BYTE * * HIGH-ORDER BIT (128+) ON INDICATES ESCAPE SEQUENCE * XTAB EQU $ ;TABLE OF CONTROL CHARACTERS XRET DB RETC ;CARRIAGE RETURN XCURR DB 'D'-40H ;***** CURSOR RIGHT XCURU DB 'E'-40H ;***** CURSOR UP XCURD DB 'X'-40H ;***** CURSOR DOWN XDELTL DB 'U'-40H ;*DL* LINE DELETE XFSCRL DB 'O'-40H ;'F2' LINE SCROLL FORWARD XBSCRL DB 'N'-40H ;'F1' LINE SCROLL BACKWARD XPFSCRL DB 'F'-40H ;'F4' PAGE FORWARD XPBSCRL DB 'G'-40H ;'F3' PAGE BACKWARD XHOME DB 'A'-40H ;*HOME* HOME LINE, SCREEN XSCRTOP DB 'T'-40H ;Ctl-T TOP OF TEXT XSCRBOT DB 'B'-40H ;Ctl-B BOTTOM OF TEXT XTABC DB TABKEY ;CTL-I (TAB KEY) XISRT DB 'P'-40H ;*IC* CHARACTER INSERT XISRTP DB 'Q'-40H ;*IL* FULL INSERT (OPEN/CLOSE TEXT) XISRTX DB 127 ;*DELETE* WORD DELETE XESC DB ESC ;ESCAPE KEY XDUPE DB 'W'-40H ;'Red' REPEAT SEARCH/REPLACE XFIND DB 'V'-40H ;'Blue' START SEARCH/REPLACE XSETMK DB 'R'-40H ;'Gray' SET BLOCK MARKER XFORM DB 'L'-40H ;'f5' SET FORM FEED XLNFD DB 'J'-40H ;LINE SET LINE FEED XBKSP DB 'H'-40H ;BACKSPACE XDELTC DB 'Y'-40H ;*DC* CHARACTER DELETE XCURL DB 'S'-40H ;***** CURSOR LEFT XEND DB ESC ;END TABLE /CURRENT CHAR PAGE * TABLE OF CONTROL CODE/DISPLAY SUBSTITUTIONS SUBCTLS EQU $ ;TRANSLATES VALUES 0-1F DB 0 db 0bbh ;BLOCK MARKER db 0,0,0,0,0,BELL,0,0 DB 091h ;LINE FEED DB 0 DB 095h ;FORM FEED XDCR DB 084h ;CARRIAGE RETURN DB 0,0,0 DB 0c0h ;FIND-KEY DB 0,0,0,0,0,0,0,0,0,0,0,0,0 * BLKMARK EQU 1 ;BLOCK MARKER RETC EQU 13 ;LINE-END CTL CHAR LNFD EQU 10 ;LINE FEED FFORM EQU 12 ;FORM FEED TABKEY EQU 9 ;TAB KEY (CONTROL-I) BELL EQU 7 ;BELL CODE ESC EQU 27 ;ESCAPE KEY DELKEY EQU 127 ;DELETE KEY DEFIND EQU 17 ;KEY TO DEFINE SEARCH/REPLACE PAGE ******** KAYPRO SCREEN CONTROL ROUTINES ** LEADIN EQU 27 ;CONTROL SEQUENCE FLAG CODE CURSXY EQU 1F1FH ;CONSTANT TO ADJUST CURSOR CODES SETCCOD EQU '=' ;SET CURSOR LOC CODE XCLEAR EQU 'Z'-40H ;SCREEN CLEAR CODE LCLEAR EQU 'X'-40H ;LINE CLEAR CODE INTSEQ: DB 0 ;SEQUENCE TERMINATOR EXITSEQ: ;return terminal to switches-configuration DB 0 CLRSEQ ;SEQUENCE TO CLEAR SCREEN DB XCLEAR DB 0 LNSEQ ;SEQUENCE TO CLEAR LINE DB LCLEAR DB 0 SETSEQ DB LEADIN ;SEQUENCE TO SET CURSOR LOCATION DB SETCCOD SETC DW 0 ;CURSOR COORDINATES (COL,ROW) DB 0 SCROLSQ DB LEADIN ;SEQUENCE TO SCROLL FWD 1 LINE DB SETCCOD ;FIRST SET CURSOR DB 55,32 ;TO ROW 24 COL 1 DB LNFD ;THEN ISSUE LINE FEED DB LEADIN ;THEN RESET DB SETCCOD ;CURSOR DB 54,32 ;TO LAST WINDOW ROW DB LCLEAR ;CLEAR IT DB 0 * CURSE EQU $ ;SET CURSOR CORRDINATES IN HL LXI D,CURSXY ;APPLY ADJUSTMENT TO CODES DAD D ;TO MATCH HARDWARE (POS+20H BASED 0) SHLD SETC ;STORE IN SEQUENCE LXI D,SETSEQ ;USE CPM BUFFER PRINT CALL PRSEQ RET * SCROLL LXI D,SCROLSQ ;INITIATE LINE SCROLL SEQUENCE JMP PRSEQ * CLRLINE LXI D,LNSEQ ;CLEAR LINE JMP PRSEQ * BKSP MVI C,BKSPCODE CALL CONOUT RET BKSPCODE EQU 8 * CLRSCRN LXI H,0101H ;CLEAR WHOLE SCREEN CALL CURSE ;FORCE CURSOR HOME LXI D,CLRSEQ ;CLEAR SCREEN JMP PRSEQ * ALARM MVI C,BELL ;SOUND ALARM BELL CALL CONOUT RET * PRSEQ LDAX D ;PRINT SEQ AT DE UNTIL ZERO ANA A RZ PUSH D MOV C,A CALL CONOUT POP D INX D JMP PRSEQ INITSCRN EQU $ ;INIT/DE-INIT ENVIRONMENT LXI D,EXITSEQ LXI H,INITSW MOV A,M MVI M,-1 ANA A JNZ EXIT LHLD ORGCONST SHLD CONST LXI H,TCONST SHLD ORGCONST LHLD ORGCONIN SHLD CONIN LXI H,TCONIN SHLD ORGCONIN LXI D,INTSEQ EXIT CALL PRSEQ RET INITSW DB 0 ;FIRST-TIME SWITCH ORGCONST EQU BASE+109H ;MW CONST ADDR FROM CBIOS CONST DW 0 ;ADDRESS FOR CBIOS CHAR STATUS ORGCONIN EQU BASE+10CH ;MW CONIN ADDR FROM CBIOS CONIN DW 0 ;ADDR FOR CBIOS CHAR INPUT HLCALL PCHL ;ROUTINE PROVIDING INDIRECT CALLS TCONST LHLD CONST CALL HLCALL RET TCONIN LHLD CONIN CALL HLCALL RET END  ;ROUTINE PROVIDING INDIRECT CALLS TCONST LHLD CONST CALL HLCALL RET  ; Magic Wand - KayPro *********************************************** ** T E R M I N A L ** *********************************************** * Kaypro VERSION * DEVELOPED BY SMALL BUSINESS APPLICATIONS INC * 3220 LOUISIANA, SUITE 205 * HOUSTON, TEXAS 77006 * (713)528-5158 * * LAST REVISION 10/13/84 by DRM * BASE EQU 0 ;STANDARD CP/M BASE ORG BASE+108H JMP 0 JMP 0 DB 128 ORG BASE+200H ;TERMINAL MODULE ORIGIN * ROWSX EQU 24 ;DISPLAY ROWS COLSX EQU 80 ;DISPLAY COLUMNS TERMDIM DB ROWSX,COLSX ;PHYSICAL TERMINAL LIMITS SCRDIM EQU $ ;CURRENT SCREEN LIMITS ROWS DB ROWSX-1 COLS DB COLSX CURSOR EQU $ ;CURRENT CURSOR LOCATION ROW DB 1 COL DB 1 CONOUT DB 0,0,0 ;CONOUT ADDR TO BE SUPPLIED AT INITIALIZATION ZPRSEQ JMP PRSEQ ;OUTPUT CHAR SEQUENCE AT DE UNTIL NULL ZCURSE JMP CURSE ;POSITION CURSOR AT HL ZCLRSCR JMP CLRSCRN ;CLEAR WHOLE SCREEN ZCLRLN JMP CLRLINE ;CLEAR REMAINING LINE ZSCROLL JMP SCROLL ;SCROLL 1 LINE UP ZBKSP JMP BKSP ;BACKSPACE 1 FROM CURRENT COLUMN ZALARM JMP ALARM ;SOUND ALARM BELL, IF ANY ZINIT JMP INITSCRN ;INITIALIZE TERMINAL, IF NEEDED ZNAME DB 'KayPro ' ZID DB 'KP' ;TERMINAL ID NUMBER FOR SERIAL * *********CONTROL TABLES * CTAB DB 8,16,24,32,40,48,56,64,72,COLSX,0,0,0,0,0,0 DB 255 ;TAB TABLE STOP BYTE * * HIGH-ORDER BIT (128+) ON INDICATES ESCAPE SEQUENCE * XTAB EQU $ ;TABLE OF CONTROL CHARACTERS XRET DB RETC ;CARRIAGE RETURN XCURR DB 'D'-40H ;***** CURSOR RIGHT XCURU DB 'E'-40H ;***** CURSOR UP XCURD DB 'X'-40H ;***** CURSOR DOWN XDELTL DB 'U'-40H ;*DL* LINE DELETE XFSCRL DB 'O'-40H ;'F2' LINE SCROLL FORWARD XBSCRL DB 'N'-40H ;'F1' LINE SCROLL BACKWARD XPFSCRL DB 'F'-40H ;'F4' PAGE FORWARD XPBSCRL DB 'G'-40H ;'F3' PAGE BACKWARD XHOME DB 'A'-40H ;*HOME* HOME LINE, SCREEN XSCRTOP DB 'T'-40H ;Ctl-T TOP OF TEXT XSCRBOT DB 'B'-40H ;Ctl-B BOTTOM OF TEXT XTABC DB TABKEY ;CTL-I (TAB KEY) XISRT DB 'P'-40H ;*IC* CHARACTER INSERT XISRTP DB 'Q'-40H ;*IL* FULL INSERT (OPEN/CLOSE TEXT) XISRTX DB 127 ;*DELETE* WORD DELETE XESC DB ESC ;ESCAPE KEY XDUPE DB 'W'-40H ;'Red' REPEAT SEARCH/REPLACE XFIND DB 'V'-40H ;'Blue' START SEARCH/REPLACE XSETMK DB 'R'-40H ;'Gray' SET BLOCK MARKER XFORM DB 'L'-40H ;'f5' SET FORM FEED XLNFD DB 'J'-40H ;LINE SET LINE FEED XBKSP DB 'H'-40H ;BACKSPACE XDELTC DB 'Y'-40H ;*DC* CHARACTER DELETE XCURL DB 'S'-40H ;***** CURSOR LEFT XEND DB ESC ;END TABLE /CURRENT CHAR PAGE * TABLE OF CONTROL CODE/DISPLAY SUBSTITUTIONS SUBCTLS EQU $ ;TRANSLATES VALUES 0-1F DB 0,'_',0,0,0,0,0,BELL,0,0 DB '|' ;LINE FEED DB 0 DB '^' ;FORM FEED XDCR DB '~' ;CARRIAGE RETURN DB 0,0,0 DB ':' ;FIND-KEY DB 0,0,0,0,0,0,0,0,0,0,0,0,0 * BLKMARK EQU 1 ;BLOCK MARKER RETC EQU 13 ;LINE-END CTL CHAR LNFD EQU 10 ;LINE FEED FFORM EQU 12 ;FORM FEED TABKEY EQU 9 ;TAB KEY (CONTROL-I) BELL EQU 7 ;BELL CODE ESC EQU 27 ;ESCAPE KEY DELKEY EQU 127 ;DELETE KEY DEFIND EQU 7 ;KEY TO DEFINE SEARCH/REPLACE PAGE ******** KAYPRO SCREEN CONTROL ROUTINES ** LEADIN EQU 27 ;CONTROL SEQUENCE FLAG CODE CURSXY EQU 1F1FH ;CONSTANT TO ADJUST CURSOR CODES SETCCOD EQU '=' ;SET CURSOR LOC CODE XCLEAR EQU 'Z'-40H ;SCREEN CLEAR CODE LCLEAR EQU 'X'-40H ;LINE CLEAR CODE INTSEQ: DB 0 ;SEQUENCE TERMINATOR EXITSEQ: ;return terminal to switches-configuration DB 0 CLRSEQ ;SEQUENCE TO CLEAR SCREEN DB XCLEAR DB 0 LNSEQ ;SEQUENCE TO CLEAR LINE DB LCLEAR DB 0 SETSEQ DB LEADIN ;SEQUENCE TO SET CURSOR LOCATION DB SETCCOD SETC DW 0 ;CURSOR COORDINATES (COL,ROW) DB 0 SCROLSQ DB LEADIN ;SEQUENCE TO SCROLL FWD 1 LINE DB SETCCOD ;FIRST SET CURSOR DB 55,32 ;TO ROW 24 COL 1 DB LNFD ;THEN ISSUE LINE FEED DB LEADIN ;THEN RESET DB SETCCOD ;CURSOR DB 54,32 ;TO LAST WINDOW ROW DB LCLEAR ;CLEAR IT DB 0 * CURSE EQU $ ;SET CURSOR CORRDINATES IN HL LXI D,CURSXY ;APPLY ADJUSTMENT TO CODES DAD D ;TO MATCH HARDWARE (POS+20H BASED 0) SHLD SETC ;STORE IN SEQUENCE LXI D,SETSEQ ;USE CPM BUFFER PRINT CALL PRSEQ RET * SCROLL LXI D,SCROLSQ ;INITIATE LINE SCROLL SEQUENCE JMP PRSEQ * CLRLINE LXI D,LNSEQ ;CLEAR LINE JMP PRSEQ * BKSP MVI C,BKSPCODE CALL CONOUT RET BKSPCODE EQU 8 * CLRSCRN LXI H,0101H ;CLEAR WHOLE SCREEN CALL CURSE ;FORCE CURSOR HOME LXI D,CLRSEQ ;CLEAR SCREEN JMP PRSEQ * ALARM MVI C,BELL ;SOUND ALARM BELL CALL CONOUT RET * PRSEQ LDAX D ;PRINT SEQ AT DE UNTIL ZERO ANA A RZ PUSH D MOV C,A CALL CONOUT POP D INX D JMP PRSEQ INITSCRN EQU $ ;INIT/DE-INIT ENVIRONMENT LXI D,EXITSEQ LXI H,INITSW MOV A,M MVI M,-1 ANA A JNZ EXIT LHLD ORGCONST SHLD CONST LXI H,TCONST SHLD ORGCONST LHLD ORGCONIN SHLD CONIN LXI H,TCONIN SHLD ORGCONIN LXI D,INTSEQ EXIT CALL PRSEQ RET INITSW DB 0 ;FIRST-TIME SWITCH ORGCONST EQU BASE+109H ;MW CONST ADDR FROM CBIOS CONST DW 0 ;ADDRESS FOR CBIOS CHAR STATUS ORGCONIN EQU BASE+10CH ;MW CONIN ADDR FROM CBIOS CONIN DW 0 ;ADDR FOR CBIOS CHAR INPUT HLCALL PCHL ;ROUTINE PROVIDING INDIRECT CALLS TCONST LHLD CONST CALL HLCALL RET TCONIN LHLD CONIN CALL HLCALL RET END 1%7_y2 _: r' * WARNING * This tool is damaged! Use another copy. $! 0~O#{g} õHYPHEN+ Version 2.2 Copyright 1982 - Oasis Systems $!F#~#$º~#0:0G~0:0Ox>GN25 x25 :] …mm>?x> x!$6#6+ !$N#~)w ):$G!$_>wm! $ ! $~#`>-xxT> x> x_ !\s!\!\!\ !\ !\! s Input file is NOT on disk $77!YYTWOPTIONCMP ~ʵ# ʠ ʬc–~ʵ# ʠ ʬ@`@ _õ~ µ#õ~ µ#x!'Q! ͷ y͓Gþ!ͷ!Q!ͷ͓Q͌QF#V !sS2R#!$;O) AO[Oky0 Reading user file$2:,>2>/<O0:>2z/W{/_YQ!~#>2S0> a{ :Q2P:R2QS2R :ʑQ´! b!"!"2*~ʰ#"*+"G|x°!4>Á  ~# O*6 q#"6 F}M:>:"#>2".  WRITE ERROR $!:"6 w# FERRWORDSTXT $$$ BAK $$$ BAK :_!N^#V- g  g Rů2[ͤ>2N!""͖ Q¾:LAEIOUabcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ" :  ĥ >2b 2 28 * 9 ~~# x28 :8  ͪo :8 ~ !8 ~<ĥ S~ ~[ĥ ͪ>S!8 \~ ĥ ͑ĥ Ê ͥ. !8 F*  @w#“ 6"e:L*iͯ*e}¸|¸*e; ZQ{z|>2 !8 [ !8 F>ĥ !b 6` >2 : Z : 9 ! ~͚ !b *ĥ >2 :  >2 ! ~!8 » #~S !b 6#w!8 >[ĥ >2 >2 D» #~E» !b 6#6D!8 >[ĥ >2 >2 :  !b >E\ĥ !8 >[ĥ >2 >2 :   8 ! F>ĥ !b 6:  !8 [ĥ !b [ĥ !b ~#~wD y0K GW yW W GD  EHIKLOUVWXYCIPOCS ELBA EPOCS EREHPS ERUT ETAC ETAL EVIT EZI GNI LAC LAIC LAIT LNOIT LAT LUF NOIS NOIT REHPAR SSEL SSEN SUOIC SUOIT TNED TNEIC TNEM YGO YHPAR YL YRAN >2 2 8 !h Ϳ} >! w2Z >2 ~2[  G>ĥ ! F!8 ~G:[ <0 ĥ !0 #N:Z ! F_^#V ??Qgmmmumm>T%!0 ##~N/R/7y!\ 7>2 ö>2 öy! ʶ>2 ö>L_>2 ö>2 öö>2 ö>S¶! \:[ <2[ ö>Eʢ>O¶!0 ##~I¶! >[ĥ :[ =2[ : !8 :[ G>[ĥ ! 6FLSZ BCDFGKPTZ!8 ~>2 t!0 #~2#~2#~2:G:;! ;!;:[ <2[ ! :\t:Lt:!t:! \ĥ :Kk:Ct:\ĥ : 2[ <ͪ !ڂ   _*ͪ ʱ ! 6c>2 : !{>͚ĥ {! *ĥ : >2 >2 : ª! >uĥ ! **" !@ *ͧ**+ͧ  SYMBOLS NEXT PC END CHSWAFGLMAFUTERTRODERBE COM CON DIS EQUI EX HAND HORSE HYER IM IN LEX MACO MATH MAX MIN MULI NON OUT OVER PSEUO QUAD SEMI SOME SUB SUER THERE TRANS TRI UN >2 2 8 !kͿ$2>2 ~2{G>ĥ !8 :G~G:<ĥ !#N:!F_^#V4MUMMy!P>2 >H,>Y,>2 >2 >V!{\ĥ :<2>2 &!>ĥ &!_ʂ!cʂ>2 &!{*ĥ >!{͚ĥ >2y!U>2 y![>2 >I>2 &!>ĥ &!g!{*ĥ >͚ĥ >2: !8 :G>[ĥ $!{6>:8 .!8 ~.G<2 >2 !8 : <2*x<2+x<2,x<2-:,! “Uˆ:+Qʓ: 2 #:+! ʨ:*ʲ: <2 #:+G:,f#:+C:,K: 2 !8 ͚#:+Q :,U : =!~EͧU! BLBRCLCRcLcRDGDRFLFRgTGLGRKNLKLQNcNKNZpRPLPRRKSPSQTcTRtRWHWLWNWR FTLDMPNDNGNSNTRGRMRNRTST AGE AGES ER ERS EST :+2:,2!5: 2 !8 : G~G: ĥ !uͿ![5!8 : ͚: 2 !8 ~2 CGPST!8 ~=G#8 ~2+>2)O#:+2*~2+Hz:*!z:* 2*#~2+:)<2)z:*2+Ä:* 7:+ !8 q>cgpst:)!8 ~F^!8 :)_>2~2!:O:)=2):<2>Hy +:<2:):28 yh! ~=!8 ~=>͚ĥ 8 ! *ĥ b *ĥ F>8 ĥ !8 !8 ~2e2f<ĥ 2gEʙS:e=<ĥ E:f!8 <ĥ :f=2fÙ:fG:e:gS:f!8 uĥ >!8 ~2>20<ĥ :<2:<2:*!8 uĥ :!8 =uĥ 0:``:G::uĥ <ĥ :G::uĥ :2:<2=!8 ~22:<ĥ :=2Û0:G!8 ~:uĥ Û!8 :<ĥ D0:=<ĥ E0:G:$0:!8 <ĥ I$x<ĥ Z0:!8 uĥ >F##NJ#NU+##:>W>G~)o2~2:O:2_**ͫ:=2:<2>:2?@F#2#$>4>:VKVG_~y~yG~_Nwy+n>F¤ʟ#?O~?¤#Ž>æ>FʷG#?O~?#¾>>>O#O~x>#~<GYx~#yFT)TwXGw#JyOjjÞO~<{Gy=2ZÞYXѐG2Z~#”y:Zw!8 ~<ĥ ~<ĥ >>* !8 >2FG#N2a :~w>2xw8 Exception word file is NOT on disk $Reading HYEXCEPT.TXT file$] >2 !"1!>&")"+*"6!%6>2>2#ͤA[O:yO>2:=2+~ w#q#ͤA[->2*:<2x2%!%<ĥ !%ҝ*6:%*-}/_|/W*+##q*+#DM! zq w+ d*6*-s#r*1*)"+"1*+}/o|/g#*6+ڝ  Insufficient memory for input file Program Aborted!$y*)"-*+"/*1}ʡ>22*-*/z¡}ڡ|g}o"3~#fo" ~2#~`C2 G`Q2 }:q:n:}:#6*3"->29*3"/>297Ͳa{ :$!$">22*~#"!5!4>HYEXCEPTTXT*O N#Fr+sq#p0U>G=#w#wY*M0!0n& {ozg"V0!K0{#z"M0b*M0!0N#yʢ ~Õb!."O1:N *M0!$/{#z"V0$ _!.*V0~#~1 ~#"M0û1 !͒%Þ%SYMB TITLE 'SBA MAGIC WAND -- TERMINAL HEATH H19' *********************************************** ** T E R M I N A L ** *********************************************** * Zenith z19 VERSION * DEVELOPED BY SMALL BUSINESS APPLICATIONS INC * 3220 LOUISIANA, SUITE 205 * HOUSTON, TEXAS 77006 * (713)528-5158 * * LAST REVISION 6/5/81 by Magnolia Microsystems * for Peachtree Magic Wand as of above date. * BASE EQU 0 ;STANDARD CP/M BASE ORG BASE+108H JMP 0 JMP 0 DB 128 ORG BASE+200H ;TERMINAL MODULE ORIGIN * ROWSX EQU 24 ;DISPLAY ROWS COLSX EQU 80 ;DISPLAY COLUMNS TERMDIM DB ROWSX,COLSX ;PHYSICAL TERMINAL LIMITS SCRDIM EQU $ ;CURRENT SCREEN LIMITS ROWS DB ROWSX-1 COLS DB COLSX CURSOR EQU $ ;CURRENT CURSOR LOCATION ROW DB 1 COL DB 1 CONOUT DB 0,0,0 ;CONOUT ADDR TO BE SUPPLIED AT INITIALIZATION ZPRSEQ JMP PRSEQ ;OUTPUT CHAR SEQUENCE AT DE UNTIL NULL ZCURSE JMP CURSE ;POSITION CURSOR AT HL ZCLRSCR JMP CLRSCRN ;CLEAR WHOLE SCREEN ZCLRLN JMP CLRLINE ;CLEAR REMAINING LINE ZSCROLL JMP SCROLL ;SCROLL 1 LINE UP ZBKSP JMP BKSP ;BACKSPACE 1 FROM CURRENT COLUMN ZALARM JMP ALARM ;SOUND ALARM BELL, IF ANY ZINIT JMP INITSCRN ;INITIALIZE TERMINAL, IF NEEDED ZNAME DB 'H19/z19 ' ZID DB 'HX' ;TERMINAL ID NUMBER FOR SERIAL * *********CONTROL TABLES * CTAB DB 8,16,24,32,40,48,56,64,72,COLSX,0,0,0,0,0,0 DB 255 ;TAB TABLE STOP BYTE * * HIGH-ORDER BIT (128+) ON INDICATES ESCAPE SEQUENCE * XTAB EQU $ ;TABLE OF CONTROL CHARACTERS XRET DB RETC ;CARRIAGE RETURN XCURR DB 128+'C' ;***** CURSOR RIGHT XCURU DB 128+'A' ;***** CURSOR UP XCURD DB 128+'B' ;***** CURSOR DOWN XDELTL DB 128+'M' ;*DL* LINE DELETE XFSCRL DB 128+'T' ;'F2' LINE SCROLL FORWARD XBSCRL DB 128+'S' ;'F1' LINE SCROLL BACKWARD XPFSCRL DB 128+'V' ;'F4' PAGE FORWARD XPBSCRL DB 128+'U' ;'F3' PAGE BACKWARD XHOME DB 128+'H' ;*HOME* HOME LINE, SCREEN XSCRTOP DB 20 ;Ctl-T TOP OF TEXT XSCRBOT DB 2 ;Ctl-B BOTTOM OF TEXT XTABC DB TABKEY ;CTL-I (TAB KEY) XISRT DB 128+'@' ;*IC* CHARACTER INSERT XISRTP DB 128+'L' ;*IL* FULL INSERT (OPEN/CLOSE TEXT) XISRTX DB 127 ;*DELETE* WORD DELETE XESC DB ESC ;ESCAPE KEY XDUPE DB 128+'Q' ;'Red' REPEAT SEARCH/REPLACE XFIND DB 128+'P' ;'Blue' START SEARCH/REPLACE XSETMK DB 128+'R' ;'Gray' SET BLOCK MARKER XFORM DB 128+'W' ;'f5' SET FORM FEED XLNFD DB 10 ;LINE SET LINE FEED XBKSP DB 8 ;BACKSPACE XDELTC DB 128+'N' ;*DC* CHARACTER DELETE XCURL DB 128+'D' ;***** CURSOR LEFT XEND DB ESC ;END TABLE /CURRENT CHAR PAGE * TABLE OF CONTROL CODE/DISPLAY SUBSTITUTIONS SUBCTLS EQU $ ;TRANSLATES VALUES 0-1F DB 0,'_',0,0,0,0,0,BELL,0,0 DB '|' ;LINE FEED DB 0 DB '^' ;FORM FEED XDCR DB '~' ;CARRIAGE RETURN DB 0,0,0 DB ':' ;FIND-KEY DB 0,0,0,0,0,0,0,0,0,0,0,0,0 * BLKMARK EQU 1 ;BLOCK MARKER RETC EQU 13 ;LINE-END CTL CHAR LNFD EQU 10 ;LINE FEED FFORM EQU 12 ;FORM FEED TABKEY EQU 9 ;TAB KEY (CONTROL-I) BELL EQU 7 ;BELL CODE ESC EQU 27 ;ESCAPE KEY DELKEY EQU 127 ;DELETE KEY DEFIND EQU 7 ;KEY TO DEFINE SEARCH/REPLACE PAGE ******** HEATH SCREEN CONTROL ROUTINES ** LEADIN EQU 27 ;CONTROL SEQUENCE FLAG CODE CURSXY EQU 1F1FH ;CONSTANT TO ADJUST CURSOR CODES SETCCOD EQU 'Y' ;SET CURSOR LOC CODE XCLEAR EQU 'E' ;SCREEN CLEAR CODE LCLEAR EQU 'K' ;LINE CLEAR CODE INTSEQ DB LEADIN,'x4' ;SET BLOCK-CURSOR DB LEADIN,'t' ;SET KEYPAD shifted MODE DB LEADIN,'v' ;SELECT WRAP-AROUND MODE FOR INCLUDE DB 0 ;SEQUENCE TERMINATOR EXITSEQ DB LEADIN,'z' ;return terminal to switches-configuration DB 0 CLRSEQ DB LEADIN ;SEQUENCE TO CLEAR SCREEN DB XCLEAR DB 0 LNSEQ DB LEADIN ;SEQUENCE TO CLEAR LINE DB LCLEAR DB 0 SETSEQ DB LEADIN ;SEQUENCE TO SET CURSOR LOCATION DB SETCCOD SETC DW 0 ;CURSOR COORDINATES (COL,ROW) DB 0 SCROLSQ DB LEADIN ;SEQUENCE TO SCROLL FWD 1 LINE DB SETCCOD ;FIRST SET CURSOR DB 55,32 ;TO ROW 24 COL 1 DB LNFD ;THEN ISSUE LINE FEED DB LEADIN ;THEN RESET DB SETCCOD ;CURSOR DB 54,32 ;TO LAST WINDOW ROW DB LEADIN ;AND DB LCLEAR ;CLEAR IT DB 0 * CURSE EQU $ ;SET CURSOR CORRDINATES IN HL LXI D,CURSXY ;APPLY ADJUSTMENT TO CODES DAD D ;TO MATCH HARDWARE (POS+20H BASED 0) SHLD SETC ;STORE IN SEQUENCE LXI D,SETSEQ ;USE CPM BUFFER PRINT CALL PRSEQ RET * SCROLL LXI D,SCROLSQ ;INITIATE LINE SCROLL SEQUENCE JMP PRSEQ * CLRLINE LXI D,LNSEQ ;CLEAR LINE JMP PRSEQ * BKSP MVI C,BKSPCODE CALL CONOUT RET BKSPCODE EQU 8 * CLRSCRN LXI H,0101H ;CLEAR WHOLE SCREEN CALL CURSE ;FORCE CURSOR HOME LXI D,CLRSEQ ;CLEAR SCREEN JMP PRSEQ * ALARM MVI C,BELL ;SOUND ALARM BELL CALL CONOUT RET * PRSEQ LDAX D ;PRINT SEQ AT DE UNTIL ZERO ANA A RZ PUSH D MOV C,A CALL CONOUT POP D INX D JMP PRSEQ INITSCRN EQU $ ;INIT/DE-INIT ENVIRONMENT LXI D,EXITSEQ LXI H,INITSW MOV A,M MVI M,-1 ANA A JNZ EXIT LHLD ORGCONST SHLD CONST LXI H,TCONST SHLD ORGCONST LHLD ORGCONIN SHLD CONIN LXI H,TCONIN SHLD ORGCONIN LHLD 6 LXI D,-6 DAD D MOV A,M CPI 175 JNZ NOINIT INX H MOV A,M CPI 22 JNZ NOINIT LHLD 1 LXI D,5 DAD D MOV H,M MVI L,0 LXI D,01FEH DAD D MOV E,M INX H MOV D,M XRA A STAX D MVI A,(RET) STA PAT1 ;DON'T NEED REST OF ROUTINE NOINIT: LXI D,INTSEQ EXIT CALL PRSEQ RET INITSW DB 0 ;FIRST-TIME SWITCH ORGCONST EQU BASE+109H ;MW CONST ADDR FROM CBIOS CONST DW 0 ;ADDRESS FOR CBIOS CHAR STATUS ORGCONIN EQU BASE+10CH ;MW CONIN ADDR FROM CBIOS CONIN DW 0 ;ADDR FOR CBIOS CHAR INPUT HLCALL PCHL ;ROUTINE PROVIDING INDIRECT CALLS TCONST LHLD CONST CALL HLCALL RET TCONIN LHLD CONIN CALL HLCALL CPI ESC PAT1 RNZ ;DIRECT RETURN ANY NON-ESCAPE SEQUENCE MVI A,250 ;WAIT FOR 1.7 MILLISECONDS DLY DCR A JNZ DLY CALL TCONST ORA A MVI A,ESC RZ ;RETURN IT UNMODIFIED LHLD CONIN CALL HLCALL ORI 10000000B ;ELSE RETURN IT WITH HIGH-BIT SET RET END 15&J\y2\:o$ * WARNING * This tool is damaged! Use another copy. $!~O#{dz íFIND - VER 2.0, Copyright 1981 - Oasis Systems $O! *?A[w# *?'A[x2 Incorrect Input Format $!F#%~#':2:2*E?H2«` Main dictionary is not on current disk! $MAINDICTCMPU!~U##~U::AG!O ~2#~2#WN!k "7:':!m%70ژ%!m%:G:O?M*Z–#ʍ ʖ>:O !% :O!m% ?ʀ*ʔ–+ʍ ʖq ʔÖ7ɷ!m%~ʮH ~#Ý:=2>2= > H!m%W7O`y)y!m%_+~w#WA\ 5w#A\5w#6}2*+w">2=> H> H_:ʚk@!ˆ fÌ>!k""2*~ʻ#"*G}º|º!4x'@'ON# 1@$y2$:7f !9~O#{, Bͳ!\[f ʚAf[fA[xOx-x*>#">f *>̀ ![TWOPTIONCMP +# K~K   cD#~K   @D`D@ x![F#S'j# X:z 0 ͘>2ͽͽ:ʡ,ͽͽ>2ͽ>/<ڿO0:>2z/W{/_Y> a{ :W5@Q!@"Y>2X2W*Y~M#"Y!X5M!W4> ~# ]* WARNING * This tool is damaged! Use another copy. $WORD COUNT+ Version 1.1 Copyright 1981 - Oasis Systems $Input file is NOT on disk $There are $ words in the file $ ͓͌Q!>ͷq eg͙Q:zJEËC–EQyQxQRQ** {zҷ*~#" <AOGƐ'@'OxƐ'@'ON# LINCOLN'S ADRESS AT GETTYSBURG, 1863 It's great to be here in Pennsylvania. Mrs. Lincoln and I appreciate the hospitallity you have shown us during our stay. I wish that I could say that everyone loves it here. I met a soldier who told me that he would rather have died at gettysburg than have to live in Philadelphia. I could go on like this all day, but let us be serious for a moment. Eightyseven years ago our ancestors brought forth on this continent a new notion, conceived and dedicated to the proposition that all men are made pretty much the same. Now,we are engaged in a real big civil war, testing whether that nation conceived and dedicated like that can endure for very long. We are meat on a real big battle field of that war. We have come to dedicate some of that field, as a memento for those who here gave their livers that that nation might live. It is altogether fitting and proper that we should do this, and I am not at all sorry that I came. But, let's face it, we can not dedicate--we can not consecrate--we can not even hollow out--this ground. The brave men, living or dead, who straggled here, have consecrated it, far above our poor power to add or subtract,multiply or divide. The world can never forget what they did here. It is rather for us to be here dedicated to the real big task before us. It is for us the living, rather, to be dedicated here to the incomplete work which they who fought here have thus far so nobly advanced--that from those honored dead we take increased devotion to that cause for which they gave their last full measure of devotion that this nation, under God, shall have a new birth of freedom--and that government of americans, by americans, for americans, shall not perish from the earth. 1Z&v\y2\:o$ * WARNING * This tool is damaged! Use another copy. $!~O#{dz ðANAGRAM - VER 1.0, Copyright 1981 - Oasis Systems $O! ?A[w# ?A[x2 Incorrect Input Format $!F#%~#:2:=MG!%~#DDN+q#w6y):%*Z?]2u Main dictionary is not on current disk! $MAINDICTCMPj!~j##~j:2!%":Q:]=2:G*~2#"AG!O ~2#~2#>2}N! "]:h:!%:G:Q!6# x%:N! 4=‡%:N! 5=œþ4!5Q=œþ!%~n ~#:=2>2cQ Q> n!%}7O`yOy!%_+~w#}6A\15w#!A\A5w#6n}2*+w">2c> n> n_:@!® Œò>!""2*~#"*G}|!4xN# H͏yOx{:ĜLy2:OGHy2:KGSF]`'́:‚               K"=z!)*&P ~"::H:Hxx0000 óÞevlQume Sprint 5 C    65R[O:}XO: ґGH͑yOx}:ĞNy2:QGJy2:MGUF_b*#":_!             !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~ry \ We are pleased that you have taken time out of your busy day to write us concerning our speech at Gettysburg. Although your interest is gratifying, we are much more gratified by the leadership you give to our people. We could not hope for victory on the battlefield did we not have individuals like you who keep the home fires burning. We hope you will like the facsimile of our speech which we enclose. Should you ever be in Washington, we hope you will call at the White House so that a member of our staff can personally guide you through our humble abode. \IN30\ Very truly yours, Abraham Lincoln \IN0\ AL/mw encl. \END ^\ \ \IF CODE<>"A3",SKIP TO ^ \*: A3 Friendly Citizen \ My staff has informed me of your recent letter concerning our few words at Gettysburg. It is such as you that inspires those of us who serve here in Washington. You remind us of the sacrifices made every day by our citizens so that our glorious cause will eventually succeed. With God's help and your continued efforts, success will not be long in coming. We have enclosed a printed version of the speech that you admired in the hopes that it will give you pleasure. \IN30\ Sincerely, Abraham Lincoln, President \IN0\ AL/mw encl. \END ^\ \ \IF CODE<>"A4",SKIP TO ^ \*: A4 Schoolchild \ I enjoyed reading your recent letter about my little speech at Gettysburg. Even presidents like having what they do praised. And nothing could give me greater pleasure than knowing that I have somehow touched the hearts and minds of our nation's children. It is for you that we have engaged in this struggle, that you, and your children after you, might live in peace and freedom. I am sending you a copy of the speech. I have been told that some teachers are making their student memorize it. I hope this misfortune does not befall you. \IN30\ Your friend, President Lincoln \IN0\ AL/mw encl. \END ^\ \ \IF CODE<>"Z1",SKIP TO ^ \*: Z1 Important Member of the Opposition \ Thank you for your recent correspondence. I know that your party and mine have not always agreed on the issues, which makes your interest in my address at Gettysburg that much more gratifying. May this concurrence on such a small thing lead to a greater cooperation to solve the problems which lie ahead. Though differing in details, we cannot differ in our ultimate goals for our beloved country, namely, that peace and that prosperity owing to a free people. Since you have been so kind as to compliment my speech, we are sending to you a copy of a special limited edition, printed on parchment. May you gain pleasure in the gift. \IN30\ Yours, A. Lincoln, President \IN0\ AL/mw encl. \END ^\ \ \IF CODE<>"Z2",SKIP TO ^ \*: Z2 Unfriendly Citizen \ Our staff has reviewed you recent letter with interest. Apparently, something in President Lincoln's address at Gettysburg has disturbed you. This is all the more disturbing since the speech has met with general approbation from all segments of the population. It occurs to us, therefore, that perhaps he was misquoted to you. To rectify this situation, we are sending you a printed version which we know to be correct. If our staff may be of further service, we know you will contact us. \IN30\ Yours truly, Robert Smith, Assistant to the President \IN0\ RS/mw encl. \END ^\ \ \*: Z3 Threatening Citizen \ We find your recent letter highly disturbing. It grieves us that we are working so hard to insure the freedom of ingrates like you. If there were some hope that we might persuade you to our side, we would be the first to extend the olive branch. But you have made your hostility all too clear. Happily, the President does not need support from hate mongers like you. Normally, we send out copies of the Address at Gettysburg to promote good will. However, in your case the President has specifically told us that he does not want your good will. We are sending a copy of your letter to the Justice Department to determine whether any charges should be filed. \IN30\ Robert Smith, Assistant to the President, \IN0\ RS/mw cc. Attorney General er any charges should be filed. \IN30\ Robert Smith, Assistant to the President, \IN0\ RS/mw cc. ARECORD #1 Gen. George A. Custer Seventh Cavalry Army of the Potomac Near Richmond Virginia George 100 1 A1 N RECORD #2 J. Wilkes Booth, Esq. Regal Playhouse Baltimore Maryland Mr. Booth 0 Z3 N RECORD #3 Hon. Patrick MacFarland Mayor, City of Worchester City Hall Worchester Massachusetts Mayor MacFarland 1200 2 X N RECORD #4 Lisa Jeffreys Wilson School Ft. Bend Indiana Lisa 1.00 1 A4 N RECORD #5 Robert Johnson 123 Annapolis Street Baltimore Maryland Mr. Johnson 0 Z2 N RECORD #6 The Right Reverend Monsignor Patrick Sheehan Trinity Church 1200 Charles Street Boston Massachusetts Monsignor 0 A2 N Right Reverend Monsignor Patrick Sheehan Trinity Church 1200 Charles Street Bost; March 19, 1985 21:13 drm "PRNTKP1.ASM" ; Printer module for KayPro / Juki. @us equ 31 @rs equ 30 @esc equ 27 @cr equ 13 @ff equ 12 @lf equ 10 org 400h JMP 0 prtchr: JMP $-$ prtmsg: JMP $-$ DB 81H db 120 db 120 db 48 ; vertical increments L040D DB 48 ; down increments L040E DB 48 ; up increments db 48 db 6 ; L0411 DB 0 ; current column spacing index L0412 DB 0 ; current line psacing index db 12 ; db 12 ; db 8 ; JMP init JMP setCSI JMP setLSI JMP prtCR JMP prtLF JMP prtNLF JMP prtFF JMP no$op JMP prtBWD JMP prtFWD DB 'KayPro custom ' db 'KP' reset DB @esc,'S',@esc,@rs,9,0 ; printer: norm CPI, 6 LPI CSIcmd DB @esc,@us,0 ; set column spacing command CSIoff DB 1 ; offset for spacing index LSIcmd DB @esc,@rs,0 ; set line spacing command LSIoff DB 1 ; offset for spacing index CR DB @cr,80H,0 ; carriage-return, with delay FF DB @ff,80H,0 ; form-feed, with delay LF DB @lf,80H,0 ; line-feed, with delay NLF DB @esc,@lf,80H,0 ; negative line feed command BWDcmd DB @esc,'6',0 ; print backward command FWDcmd DB @esc,'5',0 ; print foreward command prtCR: LXI D,CR jmp prtmsg prtNLF: LXI D,NLF MOV C,A LDA L040E JMP vert0 prtLF: LXI D,LF MOV C,A LDA L040D vert0: CMP C JNC vert1 MOV B,A PUSH B MOV C,B PUSH D CALL vert1 POP D POP B MOV A,C SUB B MOV C,A MOV A,B JMP vert0 vert1: PUSH D LDA L0412 CMP C CNZ setLSI POP D jmp prtmsg setLSI: PUSH B LXI D,LSIcmd CALL prtmsg POP B MOV A,C STA L0412 LDA LSIoff ADD C MOV B,A jmp prtchr setCSI: PUSH B LXI D,CSIcmd CALL prtmsg POP B MOV A,C STA L0411 LDA CSIoff ADD C MOV B,A jmp prtchr prtFF: LXI D,FF jmp prtmsg init: lda iflag ora a cz istart call prtCR ;clear backward print, in case. LXI D,reset jmp prtmsg prtBWD: LXI D,BWDcmd jmp prtmsg prtFWD: LXI D,FWDcmd jmp prtmsg no$op: RET if $ gt 500H ds 'overflow into tables' endif org 500h ; table of widths for proportional wheel proptbl: DB 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 db 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 db 10, 6, 8,12,10,16,14, 4, 6, 6,10,10, 6, 8, 6, 8 db 10,10,10,10,10,10,10,10,10,10, 6, 6,12,10,12,10 db 16,14,12,14,14,12,12,14,14, 6,10,14,12,16,14,14 db 12,14,14,10,12,14,12,16,14,14,12,10,10,10,10,10 db 6,10,10,10,10,10, 8,10,10, 6, 6,10, 6,16,10,10 DB 10,10, 8, 8, 8,10,10,14,10,10,10, 6,10,10,10,10 ; conversion table for proportional wheel db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 db ' !"#$%&''()*+,-./0123456789:;<=>?' db '@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_' db '`abcdefghijklmnopqrstuvwxyz{|}~',7FH if $ gt 600H ds 'overflow module' endif @@ set $ org 380h ;tail end of TERM module (hopefully not used) iflag: db 0 pflag: db 0 tbladr: dw 0 istart: cma ;init, 1st call sta iflag lhld prtchr+1 xchg lxi h,prtch1 shld prtchr+1 xchg lxi b,patch0 mov a,m mvi m,(JMP) stax d inx h inx d mov a,m mov m,c stax d inx h inx d mov a,m mov m,b stax d inx h shld patch+1 ret prtch1: NOP ! NOP ! NOP patch: jmp $-$ patch0: lda pflag ora a jnz propfill mov a,b cpi 0f0h jnz prtch1 lxi h,proptbl shld tbladr mvi a,128 sta pflag ret propfill: lhld tbladr mov m,b inx h shld tbladr lda pflag dcr a sta pflag ret if $ gt 400H ds 'overflow patch' endif org @@ end  inx h shld tbladr lda pflag dcr a sta pflag ret if $ ARCHWAYS BACKPACKING DEFOREST DEMEANING DISCOURAGES GEOMANCY HETEROZYGOTES INFLUENCER INSPECTORS LAYOUTS LUSTED MOTIVATIONAL NON ORIENTATED PREDATING RECTANGLES REFORESTATION REGULATES REPLICATING SIBLINGS STEREOTYPIC STRIVED \SETUP \COPY0 \HEAD13 \IN0,SKIP12-#TM TOP MARGIN LINE \%LINE\, \tab 20,%LINES,tab23\ remaining TOP MARGIN LINE \%LINE\, \tab 20,%LINES,tab23\ remaining TOP MARGIN LINE \%LINE\, \tab 20,%LINES,tab23\ remaining TOP MARGIN LINE \%LINE\, \tab 20,%LINES,tab23\ remaining TOP MARGIN LINE \%LINE\, \tab 20,%LINES,tab23\ remaining TOP MARGIN LINE \%LINE\, \tab 20,%LINES,tab23\ remaining TOP MARGIN LINE \%LINE\, \tab 20,%LINES,tab23\ remaining TOP MARGIN LINE \%LINE\, \tab 20,%LINES,tab23\ remaining TOP MARGIN LINE \%LINE\, \tab 20,%LINES,tab23\ remaining TOP MARGIN LINE \%LINE\, \tab 20,%LINES,tab23\ remaining TOP MARGIN LINE \%LINE\, \tab 20,%LINES,tab23\ remaining TOP MARGIN LINE \%LINE\, \tab 20,%LINES,tab23\ remaining \ \FOOT15 \IF NOT COUNT="1",END \IN10,SKIP12-#BM BOTTOM MARGIN LINE \%LINE\, \tab34,%LINES,tab37\ remaining BOTTOM MARGIN LINE \%LINE\, \tab34,%LINES,tab37\ remaining BOTTOM MARGIN LINE \%LINE\, \tab34,%LINES,tab37\ remaining BOTTOM MARGIN LINE \%LINE\, \tab34,%LINES,tab37\ remaining BOTTOM MARGIN LINE \%LINE\, \tab34,%LINES,tab37\ remaining BOTTOM MARGIN LINE \%LINE\, \tab34,%LINES,tab37\ remaining BOTTOM MARGIN LINE \%LINE\, \tab34,%LINES,tab37\ remaining BOTTOM MARGIN LINE \%LINE\, \tab34,%LINES,tab37\ remaining BOTTOM MARGIN LINE \%LINE\, \tab34,%LINES,tab37\ remaining BOTTOM MARGIN LINE \%LINE\, \tab34,%LINES,tab37\ remaining BOTTOM MARGIN LINE \%LINE\, \tab34,%LINES,tab37\ remaining BOTTOM MARGIN LINE \%LINE\, \tab34,%LINES,tab37\ remaining \SET COUNT="" \ \FORMFEED OFF \TEXT \CLS \GET TM="Give me top margin between zero and 12 lines" \IF#TM<=12,skip 5 \SHOW "**** OOOPS! ",:TM," IS MORE LINES THAN I CAN COUNT. ****" \GET TM="Give me a number between zero and 12" \IF #TM<=12,skip2 \SHOW "**** THAT'S STILL TOO MUCH. TRY AGAIN WHEN YOU KNOW HOW TO COUNT. ****" \END \GET BM="Give me a bottom margin between zero and twelve lines" \IF#BM<=12,SKIP 5 \SHOW "**** OOOPS! ",:BM," IS MORE LINES THAN I CAN COUNT. ****" \GET BM="Give me a number between zero and 12" \IF #BM<=12,SKIP2 \SHOW "**** THAT'S STILL TOO MUCH. TRY AGAIN WHEN YOU KNOW HOW TO COUNT. ****" \END \NOTE Give me page length up to 66 lines \GET PL="(Remember the page length must be more than top and bottom margins)" \IF #PL>=#BM+#TM+1,SKIP7 \NOTE That did not add up right. I'll give you one more chance. \GET TM="Revised top margin?" \GET BM="Revised bottom margin?" \GET PL="Revised page length? \IF #PL>=#BM+#TM+1,SKIP2 \CLS,NOTE I give up. Re-read the section and try again later \END \IF #PL<=66,SKIP2 \SHOW "YOU DON'T REALLY EXPECT TO COUNT TO ",:PL,", DO YOU?" \END \TM0,BM0,PL1 \NP \PL#PL,BM#BM,TM#TM \IN5 ******** BODY OF THE TEXT ******** \=#PL-#TM-#BM\ available. \SKIP66-#PL+#TM+#BM BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining BODY OF THE TEXT LINE \%LINE\, \TAB32,%LINES,TAB35\ remaining \SET COUNT="1" T LINE \%LIN line blue = search / replace f2 = forward line red = repeat search f3 = back page white = block mark f4 = forward page f5 = page feed IC = character insert left arrow = cursor left DC = character delete right arrow = cursor right IL = line insert up arrow = cursor up DL = line delete down arrow = cursor down DELETE = delete word home = cursor home You have the option of leaving the EDIT key definitions as they are or, IF you have a Heath/Zenith terminal, changing them as described above. Do you wish to change them (Y OR N) ? $ Is this copy of Magic Wand for a Heath/Zenith Z19 (or equivalent Z89 or Z90) terminal (Y or N) ? $ EDIT.COM or PRINT.COM not found!$ Insert MAGIC WAND disk in drive A: Type RETURN to continue or CONTROL-C to abort.$ Configuration complete. $ Insert SYSTEM disk in A: and push RETURN $ Cannot write to EDIT/PRINT program! $ Cannot recognize EDIT/PRINT program! $ Configuring MAGIC WAND$ You have selected the $ printer.$ $ drives will be supported. $ drive will be supported. $The MMS Z19 keyboard definitions will be used. $The terminal functions will not be changed. $ Invalid response, please try again ? $ The printer functions will not be changed.$( PRINT COMPRINT COMEDIT COMq s#r#!V4 !V6# ,® >2Vñ m ͅ m ͅ m ͅ « Vʫ ! XN!~  PPÝýñë÷Heath/Zenith HX (08@HP   _|^~:x4tuEKYY7 Y6 K"!͝O!~6* " !" * " !" }*  *  *  M|N+"M N:LHͅÅD Å >* *͓ b" . *"] !/~##ʁtZ*F#n!Is!^#V&&##&))::^#V#*^#V>+)x-8_CONSCIENCIOUS/CONSCIENTIOUS 1'y2 ': :  Ì! *~O#{/  E!F#~#$J~#Pf2"UB‡2&~A}[Y2 2 #UFª2!~AYQY@22#UC¸2(2!UL2#US2$~A[Y2V #UI2%U UJ  _e  Ug:!G:"%>2#:m 5$52)!\(!l *!\(jh  Ì:)ʎŽ  >2)Î  ÌMAINDICTCMP0  !"!""*".>2'! :$̓ R wA[O: 00:y21*">21*.:0G/_". w#œ*}/_|/W*##*#DM! z><i`MD w+ z*.*s#r**"":(I:=O:G*&:0 _}o<ƀo y<ƀO<.]*.+p+q+s".*}/o|/g#*.+  Ì!ͶIͶTWOPTIONCMP ~#  c~#  @`@ ¼~ #~ #x!j'qC J !Ijz z=naO $F#ul!   *|g}o͞ F  !"*" ͝:*M*}++"*^#V{! ) *##"ùM*6#6#"óͨ*}++"*^#V{*! ) >5*##"ͨ*6#6#"!  7O`yk͝y! _+~w# A\ˆ>'w#xA\˜>'w*&w+"&!  7A[w# A[ʼ+~w:5<25o&)^#V6N! n  ÚUPDICT CMP:)!   Ú*}|DM!^#V#zm*#" x[*}¥?  $$$ SUB:!}   p*DM!^#V#z3: xG&G%:(} !!*p!"2! ~#3 + G*DM!^#V#zY 333 xA GG&G%l :"‹ :#   *!N#F#x    ʦ : =2 >2  > {š   *͞ [   $> > _:# _:"+  Compiling Word List$ Unique words Checking Main Dictionary$ Checking Update Dictionary$ Checking User Dictionary$ Writing File to Disk$ Listing Unmatched Words $* WARNING * This tool is damaged! Use another copy. $SPELL+ Version 1.4 Copyright 1981 - Oasis Systems $Illegal switch ignored -> $ $Input file is NOT on disk $User dictionary is not on disk! $Main dictionary is not on current disk! $ * WARNING * Word too large, or non text input file!$ Insufficient memory for input file Program Aborted!$ No incorrect words found.$ unmatched words.$ Incorrect MAINDICT.CMP file! $ WRITE ERROR $>2   : ʿ ,   >2  >/< O0 :  >2 z/W{/_Y!~# !"&>2*7 #) ?G~C 怆L ~ƀ̓ .] :: m m ̓ ʀ ʀ n U : 2 ͱ \« :&ʪ ͱ ʫ \š É 2 » > a{2' *&, !~ ##~m  Ì>2* ~"&*&+"&> ~# *OG G G*2q#"2}Š{  Ì!"2w# ƒERRWORDSTXTERRWORDSCON CMP GтWx!̈́ P :N̕>ULTw !\~# a 2|:] !6 ͂<ͪ !ڂ   _*ͪ ʱ ͪ څ æ *+ͪ !w{ö *#^#Vr+s+6̈́ *"s#s#r 1(J\y2\:o$ * WARNING * This tool is damaged! Use another copy. $!w~O#{dz ïLOOKUP - VER 2.0, Copyright 1981 - Oasis Systems $!F#~#$´~L2qO! JA[w# 'A[+~'+"S"+~'#"++x22{!"l!("d"f*"r:~U Incorrect Input (word too short, etc.) $!F#'~#†:2z0*r"t:O!'F#x>?ʵ~#­0 ¥:O<2z!'F#~#x>?0 :O=2z!'F#x~# 0 :O 2z!'F#~#4!'Y^+Vs#r:_!'~w0 ,:2|~ Main dictionary is not on current disk $MAINDICTCMP~s!~~s##~s:q\:|AG!O ~2#~2#N! "5\*d"h*f"j*l}ʶ*h*jzX¶}ڶ|g}o"n'~#fo~G’ʇ~ʤ~’#l*n"h>2}D*n"j>2}D*r:zG/_"r'w#*h}/_|/W*f##*f#DM! z w+ z*r*hs#r*l*d"f"l*f}/o|/g#*r+5 Insufficient memory. Program Aborted!$:{GOgz\\:q‡:|!'g!("v*l"x*x}\++"x*v^#V!'͇ʺ*v##"vÓ!'~x ~#ʿ'*t͇>*x :=2>2m\ \> x!'7O`y!Yy!'_+~w#CA\>5w#.A\N5w#U*5+w"5>22m> x> x_~?ʟG?ʟ¼ʭ~ʸ~¼#Ç>7a{ :2 @! >!"5"322*5~.#"5*3G}-|-!24x ~# 9RET HLT CMC STC CMA DAA RAR RAL RRC RLC NOP CPI ORI XRI ANI SBI IN SUI OUT ACI ADI CALLJMP LDA STA LHLDSHLDMOV ADD ADC SUB SBB AN\SETUP \IGNORE^,COPY100 \CLS,NOTE Please tell me which lesson you want. \SHOW NL \NOTE 1 is for the lesson on numeric variables; \NOTE 2 is for the lesson on dollar comparisons; \SHOW NL \GET OPT=" Number, please?" \IF #OPT<3,IF #OPT>0,SKIP2 \SHOW NL,NL,:OPT," is not an acceptable number. Ending SAMPLE6.",NL,"You must start over from the beginning" \QUIT \TEXT \ \IF OPT<>"1",SKIP TO ^ \IF %PASS=1,SET SECTION="1" \IF SECTION<>"1",SKIP7 \CLS \IF #COUNT=0,SHOW " PART ONE, SECTION ONE",NL,"This is to show you how the machine converts a string value",NL,"to a numeric value.",NL,NL \SET VAR="",GET VAR="Type in a value." \SHOW " The numeric value of ",:VAR," is ",#VAR,NL \WAIT Press RETURN to continue \SET #COUNT=#COUNT+1,IF #COUNT=6,SET SECTION="2",SET #COUNT=0 \END \ \IF SECTION<>"2",SKIP9 \CLS \IF #COUNT=0,SHOW " PART ONE, SECTION TWO",NL,"This is to show you how two numeric variables can be added or subtracted.",NL \SET VAR="",GET VAR="Type in first value" \SET VAR1="",GET VAR1="Type in second value" \SHOW NL," ",:VAR," plus ",:VAR1," equals ",#VAR+#VAR1 \SHOW " ",:VAR," minus ",:VAR1," equals ",#VAR-#VAR1 \WAIT Press RETURN to continue \SET #COUNT=#COUNT+1,IF #COUNT=3,SET SECTION="3",SET #COUNT=0 \END \ \CLS \IF #COUNT=0,SHOW " PART ONE, SECTION THREE",NL,"This is to show you can give commands using numeric variables",NL,"instead of numeric constants.",NL,NL \SET VAR="",GET VAR="Type in left margin" \SET VAR1="",GET VAR1="Type in right margin" \LM#VAR,RM#VAR1,DS \SHOW NL,NL,"Left margin is now ",#VAR," and right margin is ",#VAR1,NL,NL \IF #COUNT<>3,WAIT Press RETURN to continue \SET #COUNT=#COUNT+1,IF #COUNT=3,QUIT \END \ ^\IF OPT<>"2",SKIP TO ^ \IF %PASS=1,SET SECTION="1" \IF SECTION<>"1",SKIP9 \CLS \IF #COUNT=0,SHOW " PART TWO, SECTION ONE",NL,"This shows you the difference between colon, number and dollar variables.",nl,nl \SET VAR="",GET VAR="Type in a number" \SHOW NL,NLk121681LWF CONFIG version 3.1 Magic Wand v1.11 configuration utility (c)Magnolia Microsystems Inc. $!9"1  :\Š:<2E@2  !~2 #^#V###   Ÿ > 2> !F#A _!# ####  2>^#V#"?^#V"A$2>ͮ2C2D  :>[  *?   c    [ :DYy  :C ڐ>1K:C 0K" :C£?      R:>7:DỶͲF Ï >2e*A"<>2;`> 2eE1!e5!R~w:>X"~wE7E !"> T!">T2eE1!e5*R:CwE7E ͖͖>2e!"<>2;`E > >2e!RE7E1!e5!RRpE7E!i!tF 2eE+>2eE1!RV#^:FPYz1z1*<E7*<"<!;5`R b    *  !F#A1A >10  ög N  !F#A _YN   Ï Ï Ï~#= A_ Enhanced by Magnolia Microsystems Seattle Washington, 98199 MMS enhanced Magic Wand supports the following printers: $ STANDARD REPLIES TO LETTERS ABOUT THE GETTYSBURG ADDRESS The following paragraphs are standard responses to letters referring to the Gettysburg Address. Use the following codes for direct access to the sections. A-1 Influential Supporter Z-1 Important Member of Opposition A-2 Important Dignitary Z-2 Unfriendly Citizen A-3 Friendly Citizen Z-3 Threatening Citizen A-4 Schoolchild A-1 Influential Supporter You interest in our little speech is highly gratifying, especially in light of the great work that you have done on your own to advance the great cause to which we have committed ourselves. I am confident that you will once again be prepared should your nation call on you to sacrifice personal comfort for the greater good. Since you did express some liking for our few words at Gettysburg, I have taken this opportunity to send you a copy of it in our own hand. Until the opportunity of seeing you once again, I remain, Your servant, A. Lincoln AL/mw encl. A-2 Important Dignitary We are pleased that you have taken time out of your busy day to write us concerning our speech at Gettysburg. Although your interest is gratifying, we are much more gratified by the leadership you give to our people. We could not hope for victory on the battlefield did we not have individuals like you who keep the home fires burning. We hope you will like the facsimile of our speech which we enclose. Should you ever be in Washington, we hope you will call at the White House so that a member of our staff can personally guide you through our humble abode. Very truly yours, Abraham Lincoln AL/mw encl. A-3 Friendly Citizen My staff has informed me of your recent letter concerning our few words at Gettysburg. It is such as you that inspires those of us who serve here in Washington. You remind us of the sacrifices made every day by our citizens so that our glorious cause will eventually succeed. With God's help and your continued efforts, success will not be long in coming. We have enclosed a printed version of the speech that you admired in the hopes that it will give you pleasure. Sincerely, Abraham Lincoln, President AL/mw encl. A-4 Schoolchild I enjoyed reading your recent letter about my little speech at Gettysburg. Even presidents like having what they do praised. And nothing could give me greater pleasure than knowing that I have somehow touched the hearts and minds of our nation's children. It is for you that we have engaged in this struggle, that you, and your children after you, might live in peace and freedom. I am sending you a copy of the speech. I have been told that some teachers are making their student memorize it. I hope this misfortune does not befall you. Your friend, President Lincoln AL/mw encl. Z-1 Important Member of the Opposition Thank you for your recent correspondence. I know that your party and mine have not always agreed on the issues, which makes your interest in my address at Gettysburg that much more gratifying. May this concurrence on such a small thing lead to a greater cooperation to solve the problems which lie ahead. Though differing in details, we cannot differ in our ultimate goals for our beloved country, namely, that peace and that prosperity owing to a free people. Since you have been so kind as to compliment my speech, we are sending to you a copy of a special limited edition, printed on parchment. May you gain pleasure in the gift. Yours, A. Lincoln, President AL/mw encl. Z-2 Unfriendly Citizen Our staff has reviewed you recent letter with interest. Apparently, something in President Lincoln's address at Gettysburg has disturbed you. This is all the more disturbing since the speech has met with general approbation from all segments of the population. It occurs to us, therefore, that perhaps he was misquoted to you. To rectify this situation we, are sending you a printed version which we know to be correct. If our staff may be of further service, we know you will contact us. Yours truly, Robert Smith, Assistant to the President RS/mw encl. Z-3 Threatening Citizen We find your recent letter highly disturbing. It grieves us that we are working so hard to insure the freedom of ingrates like you. If there were some hope that we might persuade you to our side, we would be the first to extend the olive branch. But you have made your hostility all too clear. Happily, the President does not need support from hate mongers like you. Normally, we send out copies of the Address at Gettysburg to promote good will. However, in your case the President has specifically told us that he does not want your good will. We are sending a copy of your letter to the Justice Department to determine whether any charges should be filed. Robert Smith, Assistant to the President, RS/mw cc. Attorney General any charges should be filed. Robert; December 6, 1984 17:00 drm "PRNTKP.ASM" ; Printer module for KayPro / Juki. @us equ 31 @rs equ 30 @esc equ 27 @cr equ 13 @ff equ 12 @lf equ 10 org 400h JMP 0 prtchr: JMP $-$ prtmsg: JMP $-$ DB 81H db 120 db 120 db 48 ; vertical increments L040D DB 48 ; down increments L040E DB 48 ; up increments db 48 db 6 ; L0411 DB 0 ; current column spacing index L0412 DB 0 ; current line psacing index db 12 ; db 12 ; db 8 ; JMP init JMP setCSI JMP setLSI JMP prtCR JMP prtLF JMP prtNLF JMP prtFF JMP no$op JMP prtBWD JMP prtFWD DB 'KayPro / Juki ' db 'KP' reset DB @esc,'S',@esc,@rs,9,0 ; printer: norm CPI, 6 LPI CSIcmd DB @esc,@us,0 ; set column spacing command CSIoff DB 1 ; offset for spacing index LSIcmd DB @esc,@rs,0 ; set line spacing command LSIoff DB 1 ; offset for spacing index CR DB @cr,80H,0 ; carriage-return, with delay FF DB @ff,80H,0 ; form-feed, with delay LF DB @lf,80H,0 ; line-feed, with delay NLF DB @esc,@lf,80H,0 ; negative line feed command BWDcmd DB @esc,'6',0 ; print backward command FWDcmd DB @esc,'5',0 ; print foreward command prtCR: LXI D,CR jmp prtmsg prtNLF: LXI D,NLF MOV C,A LDA L040E JMP vert0 prtLF: LXI D,LF MOV C,A LDA L040D vert0: CMP C JNC vert1 MOV B,A PUSH B MOV C,B PUSH D CALL vert1 POP D POP B MOV A,C SUB B MOV C,A MOV A,B JMP vert0 vert1: PUSH D LDA L0412 CMP C CNZ setLSI POP D jmp prtmsg setLSI: PUSH B LXI D,LSIcmd CALL prtmsg POP B MOV A,C STA L0412 LDA LSIoff ADD C MOV B,A jmp prtchr setCSI: PUSH B LXI D,CSIcmd CALL prtmsg POP B MOV A,C STA L0411 LDA CSIoff ADD C MOV B,A jmp prtchr prtFF: LXI D,FF jmp prtmsg init: call prtCR ;clear backward print, in case. LXI D,reset jmp prtmsg prtBWD: LXI D,BWDcmd jmp prtmsg prtFWD: LXI D,FWDcmd jmp prtmsg no$op: RET if $ gt 500H ds 'overflow into tables' endif org 500h ; table of widths for proportional wheel DB 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 db 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 db 10, 6, 8,12,10,16,14, 4, 6, 6,10,10, 6, 8, 6, 8 db 10,10,10,10,10,10,10,10,10,10, 6, 6,12,10,12,10 db 16,14,12,14,14,12,12,14,14, 6,10,14,12,16,14,14 db 12,14,14,10,12,14,12,16,14,14,12,10,10,10,10,10 db 6,10,10,10,10,10, 8,10,10, 6, 6,10, 6,16,10,10 DB 10,10, 8, 8, 8,10,10,14,10,10,10, 6,10,10,10,10 ; conversion table for proportional wheel db 0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0,0 db ' !"#$%&''()*+,-./0123456789:;<=>?' db '@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_' db '`abcdefghijklmnopqrstuvwxyz{|}~',7FH if $ gt 600H ds 'overflow module' endif end DEFGHIJKLMNOPQRSTUVWXYZ[\]^_' db '`abcdefghijklmnopqrstuvwxyz{|}\LM10,RM60,COPY0 \GET DATE="Today's Date? \GET NAME="Full name? (First name first) \GET ADDR1="First line of address? \GET ADDR2="Second line of address, if any? \GET CITY="City? \GET STATE="State? (No Abbreviations!) \GET SALUT="Salutation? \GET CONTRIB="Amount of Contribution? ('0' if none) \RIGHT,:DATE\ \LEFT\ \:NAME\ \:ADDR1\ \:ADDR2\ \:CITY\, \:STATE\ \SP2 Dear \:SALUT\, Thank you for your recent contribution of $\$CONTRIB\ to the Committee to Re-elect President Lincoln. We are pleased that you think enough of the President to participate in his campaign in this way. We have always had strong supporters in \:STATE\, but with people like you on our side, we expect to do even better this time around. Thank you again, \:SALUT\. If we may be of service to you, we hope you will not hesitate to ask. \IN30\ Sincerely, \SP1 Joseph H. Miller, Finance Committee \IN0\ JHM/mw \NP we hope you will not hesitate to ask. \IN30\ Sincerely, \SP1 Josep :T_>2T! % **<:7 "E:7%E÷ LH# SR5 UJ BP PL= MTI MBO HMU FM[ CWa PCr POi PA CP PN OP HE FO !<>wͱ n!<>(PPÓóçáíÿKayPro Custom KP (08@HP   ==7 =6 "!͓O~!~6* "!" * "! " }** *  *  M|N+"M N:LHͅÅD Å >* *͓ b" . *"] !/~##ʁtZ*F#n!Is!^#V&&##&))::^#V#*^#V>+)x-8_ B NN Please don't use * or ? in a file name.Sorry. That output file type is not allowed.ASM@LIB@COB@FOR@BAS@PRN@PLI@C @ASCSUB@COM$$$BAKO HMU FM[ CWa PC: |}!͉.wͱ n!<>( 88002687!<>(-<WORK ---------------  Complim || Small Business Applications, Inc  3220 ana Suite 209 ouston, 7006 (713)528-51-------- ----------------;;;;;;;;;; B NN! **************************************** ns, Inc  3220 a8800 Mount disks and press return. -------- ---------------;;;;;;;;;; B $$$BAKSAVE H(6#P#l#'%&b%%$%&%!E"N""'!,{+/""&"}!'%#y!RE WDE4FQ MTFBPSLbIyKsC X *"R :. d:!v  d O! ~ :] w:Y)4~@:$ :v$ O~4 ͜ A ; *&--"A  ͻ O!  w# x2  > $ Ox1  2 V !S4 ^#V#N ~#ʎ 4 \ > i 5 i 6~v  ʋ +4~ڋ 6###͙ #~w>>4ѧ>V>< ͙ >>~  W # xj4 $ 4 o+ ! > ~3 @Y >:Y #~ Y #6 ~ >.Y ~ Y #L ͜ :z@t M4 Ya ͳ*z 2* !| ʮ G2!xʩ ###ß #^#VT0 ͻ  ;   ͜ ͻ ɋa{ a *"'*"%!"):G< B :P< / C/ :W("'< !").")*)*%r1:?ʲ :@;ʲ r1² *DM*%z<„ *n.ڄ 1ò ~ !" x h.ڹ x< *%ß  w# Ÿ w#x<ʙ Ù 6"::1ͳ1ò !@ 5:?ʲ !N ʲ ##* !ͯ 7² 2!"V!_*>: $##͉.^#V͉.!$͉.^#V!͉.2!~B.~R«26!5 2² *"% !" *)"*+":-2@+^8\!T!͉.!._*")*"+:2- +2%:ȯ2f ͳ2;ò *%DM*I.DM!" *""͓.6"zp͝p^!\!͉.:*͉.͟*!͉.*%~ ʯʯ#à*'h.һ*DM*%~#"%  :> y> > '"!6W~zw2`i"@>2 »!":,/2=!~R> p5H!~p~6 n+> #wR*:B.w#6!4~ڕ͟ژ!6!57>!\!͉./ȯ217>*"%*"'!2͉.:32!N H?##~B 8 ʲ #8~=² ʲ #* H.Y ͻ 7:H:0:t2S:`!?!3T!͉..~:'H~'!6ò  # :7:Ҋ{2!" 4 *&- !N## ~ P2-!,6#6#6!k6 T2-!,6#6#6:+2k# A1BC:5Ͳ ~YN >2,/2-~Y#N ):+G>2-x2k~Y@NB>2.4:?ʲ !C6=OWk6 !3͛Gw :ڗʑ5͛Gڏ“x#t#6.}H6:?ʲ !5##~@G:6ڲ x2!6?T]# ͉.6>H2!<6ʲ H!:!B.:w$ !:G~3+4:==0iH!#>wͫM2!<ic !"6 :@OAԵͻ ͻ 6\+o+6:?ʲ !N## ʲ * >H<7ʲ 7 !$ 87 NY¡%:2² :?ʲ Kʕ !" :D("!*%h.>*'h.>k7ò 2#C1DiM2² 1͉*%DM*'+I.=U7ڲ :#]*% "%*' "'*%#*!͓.*%DM*'I.+-2  NYi*'*%i*T]ʞw#ž+":?3ʲ =-:z@p3² *"%*"'h.!N# #~ B!3² :#Y*%**'h.+P.yO"%@*'*%h.!~#G:%n:!Oĸͨ: <=d*}‹!:$ҋ{!"$:"N3 YN— ~#  ¨>  ¸ :2%2TU:T}$%>***$$,:og"$;&!"'!"'2A -:G:!j: 2"YʰNʰ.|}*#$2"_:!{22!ң2{! Ұ>2 *'^#V:"*'~+"'66Q9 N-Yc 8 ͻ ͻ *'^#V #~2!#^#V"##^#V"%:!28 D*#}k-͵|k8 *%:!`N͵ ͵d~k8 !00_ z,rgM͵L͵8c8A 9A 9c!/9YN"@9YN#::z7 @2z:X7² :z2z:O !* !v%͉.!"v{ͯ 2z> 2T> 2u!z67ò 2!T]6 # ͉.!"""2>yhyh~.yŽ:G:ڎ!͗Ž!͗7 =~ ʹ*?:.# —x> #ɯ=F#~+: ##x@2~.# # ~# )*~+# "' >"%y02 87  **%h.*!DM*I.#DM"ͨ.#"wu#i"i5:?ʲ !N ʙ##~@v ʏ#!~i5 ~@̏~ !" ("!*DMA8*%n.Ҳ I."#=y~@# ͏:===G c :==G9*'|: W8\+ AY*%"!*'"#:k*#|k~8\+2A k!N#**!i* !͆͏%͉.!w#w2!"""!ͯ !w67ò :2!@  2"%y2' *%w#"%*'+"'|J͵ ʏ O:OO26:?ʲ !N ##ͮc o9 49!ͅ9!2:(.x!+͉.!9ͅ9!ͅ9!zͅͻ 9 *-9 * -: ͻ : *DM*I.-!: *I.-+: I.-6: ͻ A: !,~<‘#~#‘P:<ʈH: ͻ U: ͻ o: :.': :,']: :-'ͻ : *&-ͻ ::C<: 3<O:xy ͵o&-ͻ :û :< : * | :G!@ :jOV  :\+!$ 4 o+x3!~ڲ O##~ N² #~ D² yʿ#~=² ʲ #* :32H3<² !\3͉.\H!\<̞ H!͉.3! ͳ.9>2(!;~<!" *"%*"'>21Ͷ:@*f ÿ:(D a :4ڲ Ҳ O!G4^.² :A >H2%3%a a >H.!<ͳ.3%<!.ͳ.3! ͉.!+͉.!.͒ 3!+͒ !͉. ͉.9c !" *"*h. ""!"R"  **h. `i"*"P/* "(*h.!!"ͯ))!:]2w>2]'+ͫ !!2]2v D!(&*X^!^! ^!: 2 !Dl! #c!!ByB.^#V:G:R/%#> ’!!R/52v(&%#:=%#͔#)*" *T/""*P/">2]:C 2v(&> 2v(&>2v:  2 (&2 :  2 : ":G:R/ҁ":S/ x"͖((6 !R/4Á":26#(*6*P/***" ~2*:¬" !q#͉.Ͷ'>w2S/'q1\+!NA#͸ >2 ͫ':  #*~* :w*͵* #:c )#'!:<+'q1\+2 :=2#P#:2!:N#r#!:M/w2M/4͔#:="&* +2~*+͔#(:S/#:R/*!:ʥ%4͵*+͛##:S/#<: #:]G:G#:P#:E#*P/*> 2S/6 :R/<2R/*g:k ͮ͜ ͫ*" }!"*T/=b$*P/:R/"P/*͵**P/h.+$:R/1$+'T/:_zW!4:*P$w+$~͔#S#=$͔#:=Gr#:S/$͔#"c )*"!"ͯ))͔#"c )*:_M%+~#M%J*9%"!:w#6ͯ))͛#c :=G*~ʘ%*.͵*+*G/Ϳ.**I/.m%*T/")͔#:S/²%:R/*.͵*+*T/"*I/Ϳ.**K/.A͸ ͛#c :=G*J*x&* /"T/"~*%!ͮ)͔#:c %͖(:  Y&( )!R/4:Y&Fw*P/B.~6*+"w(~h&:R/<2R/ q&2S/:vw }&2S/ƒ&> ͜ :  Ķ'͕&6#:.*N/~!Ԥ&:G~!ڷ& +ê&x2R/> 2S/#*y6."~6# &*`$"ͫl '":R/G|2M/:2:wG:]͖((6*͵*ͫ'!6(~ r2!'~j' j'rG'#3'#~rG':!'j'~j' j'rj'#V':G:2}!T/B.*((((*K/.* "OG*(y|}!4ͫ*A͸ 7͖((:=[(~ ʌ(*6 : 6 (#6 :R/<2R/:k *`ͮ> ͜ ͮ2S/:*P/=B.*P/*:  (y(*h.~p#G )!Y)6*}!"ͫ*T/[):=G:D)*[)}|"!06!X)6}|*:0G͆)!4#6:X)̫=[)!~ʥ)#:\ʥ):]¥)2Y)2X):X)̸ :&=2&*:=)*þ)"P/DM*I.DM*ͨ.#"͵*:&<2&"*P/**DM*I.DM*P/͓.+""P/:_~Gȧ# !4*Q"*:.yȹ6.J*+~#++~ e*X*#*{_zWy*f*y6.*P/J*y"P/B.**I."z*:R/g"Ͷ'"ͫ**"*P/͉.*x2S/y2R/:<6#=*++"N/*P/*"P/*P/**y6."͉.*P/:=T/_zW}|:*P/B.*P.|:I+:\+!"4!P+ͤ!ͳ:  :͜ 2 },w,!"8"6#"4!:<O},:V~+# +x28},6#":y, ,#:V~,+x29y, ,A."4* "*4"2*4|G,+"4,*" G,*6#"6%,*6|ʵ,* "c )*2h.K;\+-R; q1À,`;\+* "͔#":8!"6,ʩ,:Y)ʯ,c )͵,;\+!<:8O G:,O:=G͸ :G:R/,:26#*~,:9,**B.*h.h--͵*:91-:< 1-#͵*+*R-h.R-.*1-DMI.:R/<2*T/":8GH<^.ž-:9G:8ʏ--Ԫ-:9O*:͉.~#l-+T]B.*I.#DMͨ.#"#*:.DMI.#DM"͓.++".2.....:.0͜ *. '."..:.2.>0͜ ɧ/22/>!2/~6/3/Y;=O͞.:2/>22/>!2/~6/3/Y;Commands are Read, Write, Include, Filelist, Kill, Display, Change input, eXtract (X to backup, X=filename to extract), Block, Print, Spool, Mode, Tab, Linesize, END, and QUIT. Type the capital letter only, followed by any additional data required, or by '?' for more information.Specify R (Read some text) or Rn (Read n lines).Too little workspace. Specify number of lines. More text on file -- use R to Read as needed.Specify W (Write all) or WC (to Cursor) or Wn (n lines). Type R at the end to Read after Writing.Specify Ln to set screen width to n columns.Specify BM for Block Move, BC to Copy, BD to Delete, or BK to Kill Block Markers. characters to be deleted. Confirm (Y/N)? Specify P (Print all) or PB (Print Block). P! or PB! starts a new page, P= displays options.Printer in use.Continue New Page (Y/N)? END or END=filename must be typed exactly to end the edit.That file exists. Kill it or choose another name.Type QUIT to cancel the edit, QUITX to save the workfiles.ENDQUITXFlush background print (Y)? Non-text characters found in :: Type Return to continue, Escape to stop. Maximum width is Tn sets tabs every n columns: Tn,...,n,0 sets tabs at specific columns. (Use TW instead of T to tab by word).Mode Option must be T,P,AY,AN,BY,BN,CY, or CN.Ifilename opens an Include file: I@ resets the current one. Use I or I@section-name to start including text.Enter Cfilename to change to a new Input file. must be mounted on drive File is marked Read-Only. Check disk.Type F (or Fdrive-letter) to list all files on the disk.Dfilename displays a file screen by screen.Press Return to Continue Invalid driveDisk is EmptyList of files on disk Specify Kfilename to delete a file.Please confirm that file is to be deleted (Y or N): Not enough workspace.Cursor is inside block.Nothing to print.Type S to start, SX to stop, Sfilename to set up.File not found.Invalid file name.**Need 2 Block Markers. Found .**Specify X to Backup, X(or XB)=filename to Extract.Not enough workspace.Press Return to Continue, Y to Accept Escape to Stop, Return or Section Name to Continue - Not Found. Quick-Print Options Y-N ) is --> Page Size (Bottom Margin (Line Spacing (Left Margin (Single Sheet (Start New Page ( Print Options Okay (Y/N)? Edit System Status Updating Reading Writing Including Printing Finished Inactive Active Workspace contains Lines/Paragraphs Words Characters: -Total -In Use -RemainingMode: ProgramTextSpecial C/R Display: Auto Return: Blank Packing: Line Width: Tab Columns: 1Tab By Word: 1YesNo Display of ** Workspace nearly full! ** Workspace full! Use the W command to write some text to disk before continuing.Found occurrences.Search/replace request ignored.Cannot find exists. Write over it (Y/N)? Nothing to input. Disk is full!Sorry. Too many files on disk already. * is a new file (Y/N)? Loading input file *."z %"#"*P."* |…<:j2:ʡ 2N?2k?2?2?2?2?2>2o9:<2)@! """?*&)!T/!K/.!I/.!G/.:2C2! ͉.:k2+:T2 2]!J=>21i=!͉.m!m=\i=m=2(!3͉.! ͹=!4͹=:2<Ž=:322͍>>X>=!| :< !$ ͻ f  ~?= #û=+  !ͯ 2> !(4:1>!$ < N Y=:(><!+͉.<!+ͳ.>j>S>:<$P>!3$ ; N Y8>v>2S:H:_3H<|>3%3*<;  +$™><!~ʴ>^.ʴ>####Ü>###F~>!.>>6!,>@>w/2-!-> 6> 2kS  !!?͉.!@͉.#͉.c N? >(!B͉.> =?:G? o+ ͻ  The Magic Wand (tm) Text Editor - Release 1.11 Copyright 1979, 1981 by Peachtree Software Incorporated Atlanta, Georgia Version: **************** Serial Number: 0000 0000 wMQs#r(@Ü@:3o&|ʜ@cN!9^}2KTNï>! 9~@*M5K!"M*2O!@#*2sPA)2^#V##^1+W'y2 ': :>  ! } ~O#{/v  E!F#s~#$Js~#Lf2q UMss~2o ͬ!m~$ʒ ʒ  +~#Š!\  !\  !\  !\?  !\O  !\_          Q !"| !+"t "v *" ! a !*t ʼA,[,w#t AS[C[C+~w#/t?t> 6#Åw#t t[t+~wx2 *t "x *v "z *| }*x *z zڶ}|g}o"~ *~#fo~G~,~#*~ "x >2 â*~ "z >2 â* : G/_" *w#)*x }/_|/W*v ##s*v #DM! zs>TÁ:q ʁ~# >: }!*: Gʀ~-}ͅuʀ#~+ }#XÀT*:#":!*">2: G*ͼ[ʧͼA[7~O͟~#~O͟~#~A[ O͟~:O: *<#"<!*: _+~2l: V~O'9͟VSCsV+~G'VH͟͟:G!*umN( #]:lO( !*: G~ ʱ ʱ#|!*: _N( *q#"!4:   ͉ ñ!*: _~  N( !*: G~[0w A[0~-'ͅ #~+ '0O( 0*8#"8#T!*: G~ #H>2p :o O( *r #"r ~y#*~ "x >2 *~ "z >2 ( &( %¤:p *:} a    O ? *r | r  *:|   *8|(   *<|;   * WARNING * This tool is damaged! Use another copy. $MARKFIX+ Version 1.4 Copyright 1981 - Oasis Systems $Input file is NOT on disk $Marking file is NOT on current disk $Insufficient memory for ERRWORDS file Program Aborted!$ * WARNING * Word too large, or non text input file!$No words marked!$ words marked $ words corrected $ words were undivided. * reform * $ words changed length. * reform * $ WRITE ERROR $>2` , , :`  ,Q , , >2` , >/<. O0@ :` H Q >2` z/W{/_Y !~#f >2 ͡ ~ > a{ : 2 : 2 ͡ 2 :    ! ° !" !" 2 * ~ #" * +" G|x ! 4>    ~#  O( * q#" }‹  | :p q >2p  <   !" w# „ ERRWORDSTXT $$$ BAK $$$ BAK*}|̈́ ":N!̈́ Q1 !=:L  ! !|"!&~ #~#V z :w 1$y2$:7% !~O#{,] B!F#~#$G~#Nc2 RAn2 Ï _ R͌!\}  !\  } ¼ !" !" " *" ! ͵ʁA[w#͵A[;e-M͵͜  M͵e    ͜AM[M͵* #" +~wx2 * " * " * }* * zڇ}|g}o"  ~#fo~G~* ^#V+V+^s#r~#Û* " >2 s* " >2 s* : G/_"  w# * }/_|/W* ##<* #DM! z< w+ /* * s#r* * " " * +6+6" * }/o|/g#* + * }ʁ: †* q"?q"A*A"E*A|*E"=*=G"C*=*AG*=S*=*A*CS*A|*="=*=|*=*A`|*=`|*E#"E*?|*E|*Aq"A*A|ŸÆ)^#V)s#r)^#V+V+^ɷ|g}o"A|/g}/o#* DM!^#V#+~©+~©* #" xŽ * ͟ * q͟ * ͟   $ Total words $ Unique words $ Words appearing once $* WARNING * This tool is damaged! Use another copy. $WORDFREQ+ Version 1.2 Copyright 1981 - Oasis Systems $Illegal switch ignored -> $ $Input file is NOT on disk $ Insufficient memory for input file Program Aborted!$ WRITE ERROR $:   ]  * DM!^#V#+V+^8>  Z' xD4 &4 %x !DnTWOPTIONCMP ~7# " .c~7# " .@`@ 7~ 7#7~ 7#x!D͏''/7?v"*2:!n͏ XCHGPCHLXTHLRET HLT CMC STC CF#‘*6+w"6*4#"4>23¿> a{ :3 } +! ! "6!"423*6~'#"6*4+"4G|x'!34>>2|Q/g}/o#-4 yyyy>2y>/<{O0:ʕ4 >2z/W{/_>2:, >2>/<O0: >2z/W{/_Y   ~#  O4  4  4 *{ q#"{ U}w +  h  !+ "{ w# p + FRQ" ="=> 2 Q ~#Ì !9"wͱ n!<>(PPÓóçáíÿKayPro Custom KP (08@HP   ==7 =6 "!͓O~!~6* "!" * "! " }** *  *  M|N+"M N:LHͅÅD Å >* *͓ b" . *"] !/~##ʁtZ*F#n!Is!^#V&&##&))::^#V#*^#V>+)x-8_xx0000 òÞgwmKayPro / Juki KPS   65T]O:~ZO: ҒGH͒yOx~:ĞPy2:SGLy2:OGWgFadb_!                    !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`abcdefghijklmnopqrstuvwxyz{|}~DM!  ::=H-\:N2O_og_{ozg^#V))) _{ozg^#V) d^#V|g}o n_{o., C \@&_<>L= MTI MBO HMU FM CP PN OP HE FO !<>wͱ n!<>( 88002687!<>( q ------------------- | Compliments  Small B Applications, I| PRNuisiana Suite 20  6 (713)528-5158 -------- ----------------8800N000000!<>( q W 8'=6;------------------- | Compliments  CNR@ -.,.,.!A - :Iʋ :v@:ʜ ʵ Z *N #"N ʵ B ̓ Ü *H~k:I :Y AAd y LAsO:Z @2Z :NY þ N{ ̓ !N 4:Z @" Y Z<:Y :d  = :N_ O YJ O >2 :d :   MXList ʵ Z *N #"N ʵ B ̓ Ü *H~:f :c _: >2 >! ~6 Y: :@*L |< |+"L G>sO:NY? :Z @2Z N!"F>2Q!"N ̓  W ̸͐*H͕:IW !~ʐ =#è !~¨ >s!N !+!È O#͞! ͺ !R͕!2E!R 2Q@ '>s!R Ð R!w +!:!8 :T >2E! $ 2><>2As!:! Bs !~8 O#͞!8 !͕! :v@R:Q@ :@ :Kʐ F :Jʝ ͅ"à :[ @ :Z @·  :Z @2Z Yà !I ͻ ͚ͅ"à G:Y @ xƒ x2I!E6:GR :@y **͎!@ *H *#"͈! !"H *J ͈!>2|+͘ :@@ :HRg i&)HRV#^2S*ͅ :@z!SN#<%B !͟ʏ ʏ  G!S~7ҏ 4#?! wÏ ͘ G:@!S~7 4#?! wº x > BFs*N jFs!R !":].pFs! vFs*F:TPFs*!4!4.Fs:IGFœxF@œxF œxFœxFҜFsFs!4Fs*H:IR! Gs!w:v Gs*P &Gs*H:IR!1Gs;G:R SHGsSGs:JO(aGs*H*H͎!:IR!sGs* &:IR!}Gs:I(Gs*I:IR!Gs* &:IR!G:Is!G6B:Iڲ6SGs:I(Gs*I:IR!Gs*F :I02GGs:I(Gs*I:IR!Gs*D :IR!#Hs:I(Hs*I:IR!&HsI0Hs:I(>Hs*H:IR!PHs*L #ZHs:J(hHs*I&|+zHs:Z HGHxHsHs:I(:1::!4:!w.:yN#=O* G!K~2H:I2I:I2Iu! LF#uf:H: LO! L?!y?!#:I:Iʙ~++ʐGxF!|1>z!͎!: LO ́ +F:IO!"H2H:I* L|*I:I?!:I*H͈!1*H͎! :IO: -O|yF!?y?!M!-:Y l:I2I:I2I! LF#͍e:I2IF#N#+F+NF#N#y:IW@zx0:A[a{ _:I:k Q_yOzWxX :Y y!I~ =: 2!I~@~w:I?: Ox_R yOf!IzxG!I~@wƒ™:I:GO¬A:Iʞ!Þ*I,-ʽñ|:I:I*D ?!"D :IO*D ?!"D :I":\ !\ 6X:I*D R!# z+x2_ :y*$#*f.0.^#V"] 5!\ 5>#N!\ 4=;!--"] >>2_ €:[ O G`h#+|r o ʮ ʥ0ڜ:Ҝ2[ :[ 2[ :[ 2[ :Z @2Z :[ @2[ <>:I*D F!"D O:Iy:GO%ɯ:I*D ?!"D O:Iy":I-x ا::Is͞;x K:IKO!IyO6O!\ ~^54:==j6y2H!x?!~Gʙ͞=ÆG͞}*H |:j ʺ:j 2j +:G*H:Hx?!F!"H:IOytXU>w<,!w >sO:NHYw%w*<=`>ͱ!v6>2 ?sʷG!~xʴN#͞!H!w͕!*sp#6}̅"s>w/ę!>ʱ>ʱ> !v6:I2Iͅ>w !v6 A   2: > O:Z\:[\:\\:I<y B:!?!q!4~+=!5  €> ҇Oxʔ ʕu^#V#4 ³> 5 6~ +r+s{{_w#####~w>:E >4ѧ>*F} .$,"F*H͈!1 ͂ !+!:^o }=2r>R4R >2*L|+"L*F"H͂ +!|2^>R].;&;)*C͎!*}̧ ~#">4!U >2>< >>:g ~ @"!>:"!#~ "!# ~ >."!~ "!#!Ow# +!xw# 4!o|gɧ/M"y!_"y!~.r"y":G:b "!""!"4>=~ ;"*J"?J":J"# "xJ"> #B"ɯ=F#~+: ##x@2~.# d"# ~# z"J͸"ډ6":Y "ͅ :Kʅ"ɯ2JT&͈!ͅ G! #~O7"%#""y?!ü"^#V*%F!J~wOx#?!!J+!:# " W%*&=.:%/$*/%Y/SETUP:&GET/SET\0PG *PLO)TM)BM)NP)NL)TAB]*IF3SKIP(HEAD(FOOT(IGNORE1SHOW{/COPY*NOTE:&NOTE&WAIT:&&WAIT&&LITX%CTRd%CENTERm%LEFTy%RF%RIGHT%JUSTC%JUST%LM,RM,IN'-PIj-SP-DECIMAL-CLS-DS-DV-DF.DB$,CPIl+LPI,LINE*TEXTT&FORMFEED&*FORM>*QUIT.START'STOP'END*DRAFT'FILE1DATA2FNAMEo2HY 1SSA1SSB1BF}1UNC1CMD1PRINTw&DISK&FF)VSIZE+FSIZE+HSIZE+PROP%OUT'SCREEN'BI8'HS 1CNP)K+H+V,LS-DS-DV-DF.DB$,CPIl+LPI,LINE*TEXTT&FORMFEED&*FORM>*QUIT.STARE7>2I2IE7>@2IE7>@2I2IE7> 2I2IE7>2I2IE7>2IE7>2I2IE7!II6 6 : 66R7:Y !HN#Z'ږ'%2I2I:H2I2I2k : 2I:I2H2I2I 2I_2k ɯ2J!JN#&&:Z @2Z :[ @2[ E7:Y 2Y *N |:Y 2Y ɯ2J:Y 2Y *N | :Z @2Z >5R7:I!HN#Z'ږ':Iʗ&Ù&2IR7:I!HN#Z'ھ&ʾ&:I2I:v&&~:A&[&͖:Y;9<͞!!w͕!:v@:I2Iͬ7!H~#'N#Z'ږ'#':I:I2I:IGx2I>2I2\ R7:Y !HN#Z'ږ'!H6:.6yڔ'Ҕ'~:O”' #~:N~' Ô'F”'#~:F”' ”' 7SBÒ6t7"H t7"J l7{>55:J¬'E7*N |!Y ~4:I* &R!}2 *R!"*IR!"I*IR!"I*IR!"I*IR!"I:I* &R!}2 *HR!"H*HR!"H*HR!"H2I2I2H:I2I>2 2 2222I2I2I2k !4fB+!Z<*H"H*H"Hͫ(Z<*H"H*H"Hͫ(l7{(K *H|7(*Hw#"H*H+"H(*H62J( ͬ7!H~) 8)N#~:T/) 7#~:O7 7#17G8)8{K 2J(<) ͻ5l7T6*H͚7*H*H͎!*H͈!6"H͎!"Hl7T6*H*H͎!͚7*H*H͎!͈!6*H͎!"Hl7T6*H͚7*H͈!6"Hl7T6*H͈!6"HE7> 5E7> 5E7:((E7>5ͬ7!HN#8x6z6"F R7!HN#Z'ږ'!H66R7!H~:CS*SW*2R vBÒ6R7!HN# ~'s*"‡*Gy1 #V#x1B#x2I8x6Z6*I͈!*+͎!͎!|* L͈!:IGO* L͎!yF!*x͈|*y?!M ͜BÒ6t7+"L l7z6+T6+*H͈!6"B :Y *D ͈!6͎!"D :IQ+Bs*D :IR!#|e+>F!>%Q+}%`76: 6o&{R!}2I2I`7kxʮ+:Iʫ+2I{2Ix2I:I>6o: 6}2I2Il7x{2I/<2I,l7>6{2Q R7,!HN#8x"HR7,!HN#8x"H*H|7C͒6',E7Bs*Q &͌,*H͌,*H͌,*J:"Cs*P &͌,*H{,*H{,*L*J͎!:>T]#,+͎!͌,: Ͱ.`76: 6o&{R!}2I`7kxʼ,:I>6o: 6}2Il7Z6*I͚7*I*͈!6"Il7Z6*I͚7*I*͈!6*I͈!6*I͈!6"Il7Z6*I͚7DM*I͈!6*I|Y-͈!6`i"I`i"I!͎!"Il7Z6!I6-*I*I͈!6"I"I*I|!͎!"Il7:H6{2I!I6xwR7:H:*n P-*o C-"l VCÒ6E7 E7E7C:P _{n. .E7: Cs*:C:GF.Cx@I.sC!HR^##V##zn.\.j&;SN# Ͱ.n&:Ͱ.N# ª. 7ȯxO!. E7:Y d R7!HN#~:/$/'S/"S/:AE/[E/:Y;l/͖:Y;9:,/>$R7!HN#:Y;976K*3j&;SqCÒ6!J6!I~ȸ16#0J'1I'1I'1I'1J'1ͬ7!H~7161G0pͬ7!H~T1!I6N#~:Bg1Sp1{2I #1G0x2Iͬ7!H~Ž1!I6O#~0ڨ1:Ҩ102I2I #1G0x2Iͬ7!H~12I12IN#~'1"1 1G>1#~#Ox1yD͒6=: 2ͬ7ͬ7R7!HNyډ3#~:T%2F‰3# 8x6z3C2ʉ3I2xTʉ3x2""MTb2!"y2>22HRͬ7:@!HNy#~:Aڎ2[ڡ2=˜2 ʏ3#͖:Y;9<͞!!͕!:@ʹ22J:T2F3Û3ͬ7!HN#y2:z:=!HRڡ34n&)HR r#s:J2! "ͬ7!HN#yʧ3~:A!3[93((3# 8x6z•3I3:zʧ3>7ڕ3{*?!*͈!ڃ3":HR<2HR2o&)HR r#s:J3! "5DÒ6_DÒ6DÒ6DÒ6DÒ6EÒ6:EÒ6R7ȯ23!HN#y3~:N3#~:O3#~T323# 3!H"3~{44# )6323x2323 /6#~{4$423 /6#"3y23*3~!15$O4!4:O4:AL4[O4!4ͅ >=^4><^4>>*3q4q4:3v4:3ȯ2J=<>*3:3O8x˜46"3*3:3O8x°46*3͈!*3:3O~:4'4"4o;4G# :x4Y;"3y23*3:3O͖:x4Y;*3:3G5x/5 y 5^# x)5V#{5*3:3O~$]5'k5"k5:An5[n5$:`5͖:x56Y;n5o;<6!S<+!2S*3:3O͖:x5Y;<6S!<~1گ5:51ں5:5 #ä5:SG:<5-55!0͇:* :w#6" :! :4Fx#ʾ:&ʾ::ʾ:$ʾ::A<;[<;:# <;~:wA<;[<;~0::::wA:[: 0;#z:~(0; I;#8xI;zI;{8I;~)I;yI;{_yO #J̈́;W@͒6@͒6x{j&;SN#OF #~#ʁ; v;J*P }&;S;̴;ʭ;!=Ô;{_ɐG#;#¹;*P ,|;6"P &;Sq#+!{<_bk#>71<:P ))))))Cj&;Sx8@R!"J:HF!"L|:J2H!"LEs', 6"P &;00y<2<2< :l ~6=+/=-/=0$==:=5= 6=#0=2<=:<ž=+<> 220:<2<=:<ʿ=-ʱ=2<ÿ=!<4!<~¿=6-!<:, or <.Missing compare-to field.Compare-to field must be decimal reference. Not enough memory. Reduce the number of variables(VSIZE) or the space reserved for Headings(HSIZE) or Footings(FSIZE). Print System Status Pass Text Data Record # Lines per Record Record Length Format: LiteralCenteredLeft FlushRight FlushJustifiedJustify CharPrinter: PL - Page Length Disk: # Variables TM - Top Margin Forms: Single SheetContinuousIgnore Char BM - Bottom Marg Lines/In Cond. Hyphen LM - Left Margin Chars/In ProportnlUnderline(X) RM - Right Margn Page Boldface (X) IN - Indentation Line SSA (Above) PI - Para Indent Column SSB (Below) CNP- Cond. Page Copies Hard Space SP - Spacing Source TextHeadingFootingCommand Mark [h_Pc L The Magic Wand (tm) Text Printer - Release 1.11 Copyright 1979, 1980 by Peachtree Software Incorporated Atlanta, Georgia Version: **************** Serial Number: 0000 0000  L  \@&_<> **************************************** Mount disks and press return. Ready? Atlanta, Georgia Version: **************** Serial Number: 0000 0000  L  \@&_<>!!I+!!I+!!I+!Hs>(! J+!Js!(=9K:e fK!=J\J+!7Js !JwO#+!:Z @2Z ** Serial Number: 0000 0000  L  \@&_<>!!I+!!I+!!I+!Hs>(! J+!Js!(=9K:e fK!=J\J+!7Js !JwO#+!:Z @2Z ** Serial Number: 0000 0000  L  \@&_<>!!I+!!I+!!I+!Hs>(! J+!Js!(=9K:e fK!=J\J+!7Js !JwO#+!:Z @2Z ** Serial Number: 0000 0000  L  \@&_<>*."CmO* |QN:h 6N! " ! " QN*####~2 #~2 ##~2 #~2 :}N>2:i mN! "}N* ~2#~2!"!"!}":HN> 2H2H2I21I2[I2xI2J:N2I! "vI"7J"9J:2b :2Y *"l :2Q *"H*"H:2R :2H!H+!:2I*e"I:2I*"I!I+!!"HR!S>@6 #=1O2S2S KZ2!xF#wTWDFAULTCMP:]u8!\ͮ!lͮà!ͮ!]88!hlͽ8 !ͮ!]ʠ8!ҠͽlCMP :ʕ3l2yfͽ >2z2{>2z3ڳ2|7ͽ >2}2~>2} >^@32ͽ 2>*2 C>^@3"ʕ!6#_!xF#~}SQͽ!&: ʸvͽ!&:yͽ:zͽ:{:|ͽ:}ͽ:~: ͽ% ͽ: >^@ͽ ʧSͽVNLYQ 6ͷ7ȷͽ ʰͷʀ dw#dxͽH >  ‘ͽHxd~# ¤d6x7"`i"#~:,+~uC.##*> ͱC.* 7 *+~͙@*w## ~uU s#D]q7.s s,ss7!ʊ# |Ïs0ڙ:saڥ{ҥ Aq[sɅo$!"#$%&()+-/@\^`{}|~_'* WARNING * This tool is damaged! Use another copy. $ $-The WORD Plus- Version 1.22 Copyright 1981 - Oasis Systems $Can't find tool "$.COM" $SPELL$REVIEW$MARKFIX$ Name of file to check? :$ *ERROR* Invalid file name!$ Special dictionary name? :$ Save context info? Y/N (Ret=N) :$ Ignore UPPER case words? Y/N (Ret=N) :$ Ignore text between? (Type char, Ret=None) :$ Ignore lines starting with? (Type char, Ret=No) :$ Mark words that change length? Y/N (Ret=N) :$ Marking character :$ Save new defaults? Y/N (Ret=N) :$ These are the current settings Press return to proceed, or space to change$ - Summary - Checking file : $ Using dictionary : $ Saving context info$ Ignoring UPPER case only words$ Ignoring lines starting with -> $ Ignoring text between -> $ Marking words that change length$ Marking character -> $~# x= _!\ͮ!lͮ!6$#:y+6C# 6F# :@w# :zH6S# :{w# :|S6I# :}d6B# :~w# y2!q""_!lͮ!":2\ͽD_!\ͮ!lͮ!6#6$#:6L#!46M#:w!":ͨfͽ!&ERRWORDSTXT~5@>:#N~ >.N~ ]# O!"*"k!\͘!l͘ 6#6 _~# ° $ *a{ _SPELL COMREVIEW COMMARKFIX COM Completed file $*ʅ = =Uͧᯕo>gͧ 'd  **************************************************************** * Examples of Print Commands for * * Boilerplating * **************************************************************** The following series of commands are offered for your study without comment. Feel free to use them, change them or add your own. F1--Form letter using variables from keyboard F2--Form letter using Text data file F3--Form letter using fixed length data file H1--Heading using company name and page number H2--Heading using company name, date and page number F1--Form letter using variables from keyboard \ \SETUP \ \COPY0,FORMS \GET DATE="Today's Date? \TEXT \ \GET NAME="Full name? (First name first) \SET COMPANY="",GET COMPANY="Company, if any? \GET ADDR1="First line of address? \GET ADDR2="Second line of address, if any? \GET SALUT="Salutation? \ \RIGHT,:DATE\ \LEFT,LINE4 \:NAME\ \IF COMPANY<>"",:COMPANY,NL \:ADDR1\ \:ADDR2\ Dear \:SALUT\, F2--Form letter using Text Data File \ \SETUP \ \GET DATE="Today's Date?" \GET FNAME="Name of date file?" \GET START="Starting record number?" \GET STOP="Ending record number (if other than end of file)? \IF &START<>0,START#START \IF &STOP<>0,STOP#STOP \ \FILE T12,:FNAME \DATA ,NAME,COMPANY,ADDR1,ADDR2,COUNTRY,SALUT,CODE,PS \ \TEXT \ \RIGHT,:DATE\ \LEFT,LINE4 \:NAME\ \IF COMPANY<>"",:COMPANY,NL \:ADDR1\ \:ADDR2\ \IF COUNTRY<>"",:COUNTRY,NL Dear \:SALUT\, F3--Form letter using fixed length data file \ \SETUP \ \GET DATE="Today's Date?" \GET FNAME="Name of data file?" \GET START="Starting record number?" \GET STOP="Ending record number (if other than end of file)? \IF &START<>0,START#START \IF &STOP<>0,STOP#STOP \ \FILE F128,:FNAME \DATA NAME(25),COMPANY(25),ADDRESS(20),CITY(15),STATE(2),ZIP(5),SALUT(15),10,CODE(2) \ \TEXT \ \RIGHT,:DATE\ \LEFT,LINE4 \:NAME\ \IF COMPANY<>"",:COMPANY,NL \:ADDRESS\ \:CITY\, \:STATE\ \:ZIP\ Dear \:SALUT\, H1--Heading using company name and page number \ \HEAD2 \SP0,LEFT,:COMPANY\ \RIGHT\Page \%PAGE\ \ H2--Heading using company name, date and page number \ \HEAD3 \SP0,LEFT,:COMPANY\ \CTR\-\%PAGE\- \RIGHT,:DATE\ \ \ \ H2--Heading using compa5m512z10p2s40t1d2i1l0h