ji@close.cs.columbia.edu (John Ioannidis) (07/23/90)
I found an 9122 dual 3.5'' flopyy drive lying around and I connected it to my 9000/350 workstation. For the record, the HPIB board select code is 0x07 and the drive is on HPIB address 0x06, so the two floopy drives are accessible as major device 4, minor device 0x070600 and 0x070610 respectivel (I found all that by trial-and-error; no documentation around). At any rate, can I use that baby to read and write diskettes written from IBM PCs and PS/2s? I tried reading a PS/2 1.44M diskette and I got I/O errors. I tried mediainit-ing a new floppy, and all I can get is 77 cylinders (rather than 40 or 80). Is there a utility or a drive (or even a different minor device number) that I can use to access it as a DOS floppy? Thanks, /ji PS: No, I don't want to write DOS disks, I want to write 386/ix disks, so there!
rjn@hpfcso.HP.COM (Bob Niland) (07/24/90)
re: > I found an 9122 dual 3.5'' flopyy drive lying around... Was it a... 9122D - Dual-drive, single-sided 1/2Mb and double-sided 1Mb media only 9122S - Single-drive, single-sided 1/2Mb and double-sided 1Mb media only 9122C - Dual-drive, all formats thru 2Mb > For the record, the HPIB board select code is 0x07 and the drive is on > HPIB address 0x06, so the two floopy drives are accessible as major device > 4, minor device 0x070600 and 0x070610 Correct, regardless of drive model. > At any rate, can I use that baby to read and write diskettes written > from IBM PCs and PS/2s? I tried reading a PS/2 1.44M diskette and I > got I/O errors. You need the 9122C version for 1.44M. The 9122D/S will only handle up thru 720 IBM formats, and early versions of the D/S cannot format IBM 720K with the mediainit command (i.e. will not accept Format Option 16 shown below). Al 9122s will read 720K floppies already formatted on your 386. > I tried mediainit-ing a new floppy, and all I can get is 77 cylinders > (rather than 40 or 80). Is there a utility or a drive (or even a > different minor device number) that I can use to access it as a DOS > floppy? Our DOS co-processor and SoftPC products handle this transparently, including 720K on early D/S models. But even with vanilla HP-UX, you have some useful capability. Check out the 'doscp' suite of commands, and read on... re: how to move an HP-UX file to DOS via 3-1/2" floppy without a DOS emulator. 0. Unshar the bottom of this article. 1. Initialize the floppy. For either double-side or HD media, use... # mediainit -v -f16 -i2 /dev/rfd3.0 {see later for list of other densities} 2. Uncompress the DOS floppy images you unshar'd. # uncompress DOS_720K.Z # uncompress DOS_1440K.Z 3. Create a DOS filesystem on the floppy. Use the '720K' or "1440K" images as appropriate. For this example, I assume a 720K floppy. # dd if=DOS_720K of=/dev/rfd3.0 bs=737280 4. Convert your HP-UX file to DOS format (file assumed to be ASCII text). # ux2dos textfile > textfile.dos 5. Copy the DOS version to the floppy. # doscp textfile.dos /dev/rfd3.0:TEXTFILE.ASC Format Option Summary: ___________________________________________________________________________ | Format | | SS/80 | | Bytes/ |Sectors/| Tracks/ | | | Name | Media | Option | Capacity | Sector | Track | Side | Sides | |===========|=======|========|===========|========|========|=========|=======| | HP Single | Blue | 4 | 270,336 | 256 | 16 | 66(+4) | 1 | |-----------|-------|--------|-----------|--------|--------|---------|-------| | HP 630K | Grey | 0 or 1 | 630,784 | 256 | 16 | 77(+3) | 2 | | HP 710K | Grey | 2 | 709,632 | 512 | 9 | 77(+3) | 2 | | Format Option 16 requires a late-model 9122D/S or any 9122C | | IBM 720K | Grey | 16 | 737,280 | 512 | 9 | 80(+?) | 2 | | HP 1K | Grey | 3 | 788,480 | 1024 | 5 | 77(+3) | 2 | |-----------|-------|--------|-----------|--------|--------|---------|-------| | These formats require a 9122C for all operations. | | HP 256/HD | Black | 0 or 1 | 1,261,568 | 256 | 32 | 77(+3) | 2 | | HP 512/HD | Black | 2 | 1,419,264 | 512 | 18 | 77(+3) | 2 | | IBM 1.44M | Black | 16 | 1,474,560 | 512 | 18 | 80(+?) | 2 | | HP 1K/HD | Black | 3 | 1,576,960 | 1024 | 10 | 77(+3) | 2 | `----------------------------------------------------------------------------' Blue: Single-side "1/2 Mbyte" density. Manual-shutter 270K media (Blue) not supported (and may not insert). Grey: Double-sided "1 Mbyte" density. Supports all Blue formats. Black: Double-sided "2 Mbyte" or "HD". Supports all Grey formats. Regards, Hewlett-Packard Bob Niland 3404 East Harmony Road Internet: rjn@hpfcrjn.FC.HP.COM Fort Collins UUCP: [hplabs|hpu*!hpfcse]!hpfcrjn!rjn CO 80525-9599 _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ _ # This is a shell archive. Remove anything before this line, # then unpack it by saving it in a file and typing "sh file". # # Wrapped by Bob Niland <rjn@hpfcrjn> on Mon Jul 23 13:44:21 1990 # # This archive contains: # DOS_720K.Z DOS_1440K.Z # LANG=""; export LANG PATH=/bin:/usr/bin:$PATH; export PATH rm -f /tmp/uud$$ (echo "begin 777 /tmp/uud$$\n \nend" | uudecode) >/dev/null 2>&1 if [ -f /tmp/uud$$ ] then rm -f /tmp/uud$$ unpacker=uudecode else echo Compiling unpacker for non-ascii files pwd=`pwd`; cd /tmp cat >unpack$$.c <<-'EOF' #include <stdio.h> #define DEC(c) (((c) - ' ') & 077) main() { int n; char dest[128], a,b,c,d; scanf("begin %o ", &n); gets(dest); if (freopen(dest, "w", stdout) == NULL) { perror(dest); exit(1); } while ((n=getchar()) != EOF && (n=DEC(n))!=0) { while (n>0) { a = DEC(getchar()); b = DEC(getchar()); c = DEC(getchar()); d = DEC(getchar()); if (n-- > 0) putchar(a << 2 | b >> 4); if (n-- > 0) putchar(b << 4 | c >> 2); if (n-- > 0) putchar(c << 6 | d); } n=getchar(); } exit(0); } EOF cc -o unpack$$ unpack$$.c rm unpack$$.c cd $pwd unpacker=/tmp/unpack$$ fi echo x - DOS_720K.Z '[non-ascii]' $unpacker <<'@eof' begin 664 DOS_720K.Z M'YV0ZWQ @C+$R!LY;<+0 2! 0 "&< " *I!O ( $# %HW,@10 HU#/YQ(/)D MRI<;,F L <'22! J,62P! $ DCY<, X@L:+'X!]#C[L.@# EQT^D!01,,(# M !T$M!Q8:0;!R[IXM (TLT#' "T 6]?1^[IUAK1F&1HHH((FS1P09-RN 3$F MC)L3=$"(>?.&C@X0:?+>"3-'K9F#">G0*4,&Q)W :-[4R4L'31D0+Z: 0#$G MSYS%;5* > .'3IHW;ERH7?L&1,(UEP/KY4LGC!@V95B J#/G<N7+)#5/3L,F M<!X04[)HQJ-C]1 T=L]<CCMGS5L3(.#(*3/G;1@0L/.H5J"@H_GSZ-.K7\^^ MO?OW\./+GT^__OLJJO+]V_\$0 $P !P R$6@ + , T X #P 00 0@!# ! M$ %4 $8 %\#SCWT<=NCAAR"&*.*())9HXHDHIJCBBBRVZ.*+,,8HXXPTUFCC MC3CFJ...//;HXX_TZ<>??P *2*"!""K(H(,02DBAA1AJ".245%9IY9589JGE MEEQVZ>678(8IYIADEFDFCL&=E-)*+"&@G@ROX$&!>4%40<4316!1Q!!"O$13 M>NPDD@4% @# S49,%$$%%45(\44004PQQ)_H/:!('A18]$H49W;JZ:>@ABKJ MJ*26:NJIJ*:JZJJLMNKJJ[#&*NNLM-9JZZVXYJKKKKSVZNNJ0.R)Q!,@/&&$ M$6I-H2@(0SS1Q!10[-G#$#IP$1P7S3;11!!.$.%"MFI9T6@21F11[+%J0?$2 M$LQ6&]P.U')!T)U/,#$%O-5> 44-,7"Q@UKQ7AL$%-%VBUD1 +M;$A<#%TQ$ MN]:6E*X4SD)!!0@D0$'"$0E'/ 471T@Q,!))#*$9$X25(8<29="A%A%%3+'$ MG5"\(,4+)H?;:,?70B%%$DY<_ (1.C!A<0POES0%$D4PP81:&HCB@49& #U$ M$$Q,^H053*S7PR#62$ $ J($H1'36%R==;%<KP<.!=U(T 0":+@)P+!4+%&$ MN6QWK5X(B*PCP1,($%. 1D OD833+&WM=WJAH!&-!% @0(]% $BQ9[U/2-'W M>EJ <8T$42#@#@$:25HRUEJWK1XE-0PP@10(6-$? - VS<1,CJ_70A_02, % M O,LH1$56+/9N.OIK=&)!Q.8@8 -_1R?1!-%S/2Y>A?0H, $AM2.QJ_DEV]^ MC9"FK_[Z[+?O_OOPQR]_^FK-;__]^.>_?OWZ]^___T'@'P '2,#W";" "$3@ M 1/(P/\ML($0Q-\#(TC!^$VP@AADWP4SR,$ *J"#(-S?!T-(P@V2,((F/&$# M4ZC"!+*PA05\(0P'*,,9.G"$-J1@#7.HOQWR4((X_"$#?2C$^1&QB!8,(A() M>,0ENJ^)3M2@$J/H/RA2D7Y3O&+^K*A%+E[1BU0$8Q3%Z$0R+M&,2$1C$=4H M1#;^T(T\A&,.Y6A#.L[0CC#$8POUJ$(^GM"/)<RB%N\'R! 6$H2'[& B.;C( M##82@X^L8"1U*,A!&K&2EDQB)OLW211B<I-/_"0HI3A*():2D*(\):0Z"4%6 MKC"5JG3E$&%Y2EFZD):EM*4"<3E*7<:0EZ#T)1.!N4EATI"8F30F )5Y0U5> MTIGR8V85D6E):7*2FH.T9@^QV45N?M&;803G&,591G*>T9QI1.<:U=E&=K[1 MG7&$YQSE64=ZWM&>><3G'O791W[^T9^!A*8F!6I @!K2H(A$J"(5RDB&.M*A MD(2H)"5*28(6U**AQ&C[M+E%BGI2HZ0$J?HX:DJ18M&D)T6I!U6Z4I62%)4L M?:G]9/I,EWJTE3=]94QS.LN=^M2F/T4I3:/)TUL&U:1#':A0B[K+HXHTJ?"# MZD6!2M6E.A6D4LUH59'*U%]>5:-9W6A7A_E5C(8UI%;=ZE/'>LRR6O2L(G0K M0>$Z4K8NTZ[-5"M6\3I-N0J4KBE-JV"YZE=H G:5?+UF89UYV)8.=JV+C65B MMQG96DZVHY7-Y65+^MB]9K:7FX6I7L$:VIF6MJ:=)>UG@WE:HJZVF*U5*F%' M:];81M6V4TUM;5^;3-QJ5;=O]:U8>5M-X:)UML"=JW'C2MO@$C>;RZVK!NQ! MW>I:][K8S:YVM\O=[GKWN^ -KWC'2][RFO>\Z$VO>M?+WO:Z][WPC:]\YTO? M^MKWOOC-KW[WR]_^^O>_ ZP@ =,X (;^, (3K""%\S@!COXP1".L(0G3.$* M6_C"&,ZPAC?,X0Y[^,,@#K&(1TSB$IOXQ"A.L8I7S.(6N_C%,(ZQC&=,XQK; M^,8XSK&.=\SC'OOXQT .LI"'3.0B&_G(2$ZRDI?,Y"8[^<E0CK*4ITSE*EOY MREC.LI:WS.4N>_G+8 ZSF,=,YC*;^<QH3K.:U\SF-KOYS7".LYSG3.<ZV_G. M>,ZSGO?,YS[[^<^ #K2@!TWH0AOZT(A.M*(7S>A&._K1D(ZTI"=-Z4I;^M*8 MSK2F-\WI3GOZTZ .M:A'3>I2F_K4J$ZUJE?-ZE:[^M6PCK6L9TWK6MOZUKC. MM:YWS>M>^_K7P ZVL(=-[&(;^]C(3K:RE\WL9CO[V=".MK2G3>UJ6_O:V,ZV MMK?-[6Y[^]O@#K>XQTWN<IO[W.A.M[K7S>YVN_O=\(ZWO.=-[WK;^][XSK>^ M]\WO?OO[WP /N, '3O""&_S@"$^XPA?.\(8[_.$0C[C$)T[QBEO\XAC/N,8W MSO&.>_SC( ^YR$=.\I*;_.0H3[G*5\[REKO\Y3"/N<QG3O.:V_SF.,^YSG?. M\Y[[_.= #[K0AT[THAO]Z$A/NM*7SO2F._WI4(^ZU*=.]:I;_>I8S[K6M\[U MKGO]ZV /N]C'3O:RF_WL:$^[VM?.]K:[_>UPC[O<YT[WNMO][GC/N][WSO>^ M^_WO@ ^\X =/^,(;_O"(3[SB%\_XQCO^\9"/O.0G3_G*6_[RF,^\YC?/^<Y[ M_O.@#[WH1T_ZTIO^]*A/O>I7S_K6N_[UL(^][&=/^]K;_O:XS[WN=\_[WOO^ M]\ /OO"'3_SB&__XR$^^\I?/_.8[__G0C[[TIT_]ZEO_^MC/OO:WS_WN>__[ MX ^_^,=/_O*;__SH3[_ZU\_^]KO__?"/O_SG3__ZV__^^,^__O?/__[[__\ M&( ".( $6( &>( (F( *N( ,V( .^( 0&($2.($46($6>($8F($:N($<V($> M^($@&((B.((D6((F>((HF((JN((LV((N^((P&(,R.(,T6(,V>(,XF(,ZN(,\ MV(,^^(- &(1".(1$6(1&>(1(F(1*N(1,V(1.^(10&(52.(546(56>(58F(5: MN(5<V(5>^(5@&(9B.(9D6(9F>(9HF(9JN(9LV(9N^(9P&(=R.(=T6(=V>(=X MF(=ZN(=\V(=^^(> &(B".(B$6(B&>(B(F(B*N(B,V(B.^(B0&(F2.(F46(F6 M>(F8F(F:N(F<V(F>^(F@&(JB.(JD6(JF>(JHF(JJN(JLV(JN^(JP&(NR.(NT M6(NV>(NXF(NZN(N\V(N^^(O &(S".(S$6(S&>(S(F(S*N(S,V(S.^(S0&(W2 M.(W46(W6>(W8F(W:N(W<V(W>^(W@&([B.([D6([F>([HF([JN([LV([N^([P M&(_R.(_T6(_V>(_XF(_ZN(_\V(_^^(\ &9 ".9 $69 &>9 (F9 *N9 ,V9 . M^9 0&9$2.9$469$6>9$8F9$:N9$<V9$>^9$@&9(B.9(D69(F>9(HF9(JN9(L MV9(N^9(P&9,R.9,T69,V>9,XF9,ZN9,\V9,^^9- &91".91$691&>91(F91* MN91,V91.^910&952.9546956>958F95:N95<V95>^95@&99B.99D699F>99H MF99JN99LV99N^99P&9=R.9=T69=V>9=XF9=ZN9=\V9=^^9> &9B".9B$69B& M>9B(F9B*N9B,V9B.^9B0&9F2.9F469F6>9F8F9F:N9F<V9F>^9F@&9JB.9JD M69JF>9JHF9JJN9JLV9JN^9JP&9NR.9NT69NV>9NXF9NZN9N\V9N^^9O &9S" M.9S$69S&>9S(F9S*N9S,V9S.^9S0&9W2.9W469W6>9W8F9W:N9W<V9W>^9W@ M&9[B.9[D69[F>9[HF9[JN9[LV9[N^9[P&9_R.9_T69_V>9_XF9_ZN9_\V9_^ M^9\ &J ".J $6J &>J (FJ *NJ ,VJ .^J 0&J$2.J$46J$6>J$8FJ$:NJ$< MVJ$>^J$@&J(B.J(D6J(F>J(HFJ(JNJ(LVJ(N^J(P&J,R.J,T6J,V>J,XFJ,Z MNJ,\VJ,^^J- &J1".J1$6J1&>J1(FJ1*NJ1,VJ1.^J10&J52.J546J56>J58 MFJ5:NJ5<VJ5>^J5@&J9B.J9D6J9F>J9HFJ9JNJ9LVJ9N^J9P&J=R.J=T6J=V $>J>D"*5< end @eof chmod 664 DOS_720K.Z echo x - DOS_1440K.Z '[non-ascii]' $unpacker <<'@eof' begin 664 DOS_1440K.Z M'YV0ZWQ @C+$R!LY;<+0 2 @0 "&X 60 O 0 )# %HW,@10(H<%/!Q(/)D MRI<8-&C 6 ("A)$@5&+(: D" "1]N& < 2-%S\ ^QQ\V'4 @"\[?" I(F"$ M!P Z"&@YL-(,@I=U\6@%:&:!C@%: +BNHP>6ZPQIS3(T4$ %39HY(,B\70-B M3!@W)^B $//F#1T=(-+HO1-FSEHS!Q/2H5.&#(@[@M&\J:.7#IHR(%Y, 8%B M3IXYC-ND /$&#ITT;]RX6,OV#8B$:S +WMN73A@Q;,JP %%G#F;+F$ENIIR& MC> \(*9DV8Q'!^LA:.Z>P2QWSAJX)D# D5-F#MPP(&+G6:U 0<?SZ-.K7\^^ MO?OW\./+GT^_OGWX553!^\?_"8 "8 !P " ) * L T #$3T 0 1@!# M!$ $4 $8 5P 2 9@!+ !L $T $X 7S 4 @@"# "$ *4 (8 )P B0 J@"+#" M?O?EJ...//;HXX] !BGDD$06:>212":IY)),-NGDDU!&*>645%9IY9589JGE MEEQVZ>678(8IYIADEFGFF6BFJ>::;+;IYIMPQBGGG'36:>>=>.:IYYY\]NGG MGX &*NB@]>W7WW\!#EC@@0DNV."#$4Y8X849;MCAAR&.6.*)*:[8XHLQSECC MC?\0:NJIJ*:JZJJLMNKJJ[#&*NNLM-9JZZVXYJKKKKSVZNNOP 8K[+#$%FOL ML<@FJZRMPIV4TDHM(;">&*[@0<%Y051!Q1-%8%'$$$+ 5)-Z["22!04" ,#- M1DP4004514CQ11!!3#'$N.FEL$@>% P P"M1+"OPP 07;/#!"">L\,(,-^SP MPQ!'+/'$%%=L\<489ZSQQAQW[/''((<L\L@DEVSRR2BGK/+*+"<,Q+=(/ '" M$T88L=84[H(PQ!--3 '%MST,H0,7PG&Q<Q--!.$$$2X<O985\29A1!8SU[P6 M%# AH?/0PNT@-!<$;?L$$U-X/?054-00 Q<[K/5UT4% \?/2F17A-M<E<1'W MW$1L371)5TO!,Q14@$ "%"0<<???4W!QA!1Q(Y'$$)LQ45@9<BA1!AUK$5'$ M%$ML"\4+4KQ ^=/Q+EXT%%(DX43A+Q"A Q.$Q]!Y25,@40033*RE0<NSTBO\ M\,07;_SQR">O_/+"K\7\\]!'+SWQSD]O_?78!U%]]MQWC_SVWH<?/OCBEX\] M^>:G'SWZZK>O//ONQU\\_/+7K[T"]N=//?[Z]T]__^K['P#-)\ !BJ^ !O0> M A/(O04R\'S\>V#['"C!Z5&P@NN+( ;+=\$-,J^#'GR?!D/8/1"2\'@F/.'\ M1JC"ZZ6PA<UC(0RE]\(9UA"&-VQA#E6XPQ/VD(0_#&$0/3C$#181@T>L8!(E MN,0'-I&!3TQ@% TXQ0%6$8!7])\,9PB]+.K/B_D#H_W$6#\RRL^,\4.C^]0X MP2UR\8-N?*,(Y6@]-@8PCG1$(1[SN$(^9M"/7=PC(.EEQ_05DH""'.0A.9A( M0"[R@(WTXR/'%TD^3E*!E<SC)4N823INLH&=E.,GLS=*" X2CJ=<7BE=&,HW MKK*.K>3B*RT82QO6$H>WU&$N>;A+'_82B+\48C").$PC%A.)QU1B,IFX3"<V M$XK/E&(TJ3A-*U83B]?48BKGN,WO9?.+WPQC.,<XSC*6\XSG3&,ZU[C.-G;3 MF^_48SR--TL:MO..\^QC/H=7SS_N,X;_!&A [S=0@@ZTGX$L*$*?MU!4'O2> MAH0H(A4J4492]*(/Q6A &ZK*BD)2H__D*#<WZE%*@G2?(DU>2N&9T9:2]*3Y M7*D\71K2DF(2IO.4*3UMRDF<QE.G^GPI35'*4U#Z])U W=]1NYE4?A:5E$\U MY5!C&E56+G6;316H4+=:TZNF,JN$K"HLO7I*L!J4JT0EJR+%2DNU.I*M]G2K M).'J3[125:Z6I&M"IYI3O3+4KPZU:U_QJDG =I2PGC3L2+O*UY\J5J6/9:E@ M'8M8449VII-%ZF5W6EE7;C:HC,TL4S^KU,9JMK.R)*U3-6"/UKKVM;"-K6QG M2]O:VO:VN,VM;G?+V][Z]K? #:YPATO<XAKWN,A-KG*7R]SF.O>YT(VN=*=+ MW>I:][K8S:YVM\O=[GKWN^ -KWC'2][RFO>\Z$VO>M?+WO:Z][WPC:]\YTO? M^MKWOOC-KW[WR]_^^O>_ ZP@ =,X (;^, (3K""%\S@!COXP1".L(0G3.$* M6_C"&,ZPAC?,X0Y[^,,@#K&(1TSB$IOXQ"A.L8I7S.(6N_C%,(ZQC&=,XQK; M^,8XSK&.=\SC'OOXQT .LI"'3.0B&_G(2$ZRDI?,Y"8[^<E0CK*4ITSE*EOY MREC.LI:WS.4N>_G+8 ZSF,=,YC*;^<QH3K.:U\SF-KOYS7".LYSG3.<ZV_G. M>,ZSGO?,YS[[^<^ #K2@!TWH0AOZT(A.M*(7S>A&._K1D(ZTI"=-Z4I;^M*8 MSK2F-\WI3GOZTZ .M:A'3>I2F_K4J$ZUJE?-ZE:[^M6PCK6L9TWK6MOZUKC. MM:YWS>M>^_K7P ZVL(=-[&(;^]C(3K:RE\WL9CO[V=".MK2G3>UJ6_O:V,ZV MMK?-[6Y[^]O@#K>XQTWN<IO[W.A.M[K7S>YVN_O=\(ZWO.=-[WK;^][XSK>^ M]\WO?OO[WP /N, '3O""&_S@"$^XPA?.\(8[_.$0C[C$)T[QBEO\XAC/N,8W MSO&.>_SC( ^YR$=.\I*;_.0H3[G*5\[REKO\Y3"/N<QG3O.:V_SF.,^YSG?. M\Y[[_.= #[K0AT[THAO]Z$A/NM*7SO2F._WI4(^ZU*=.]:I;_>I8S[K6M\[U MKGO]ZV /N]C'3O:RF_WL:$^[VM?.]K:[_>UPC[O<YT[WNMO][GC/N][WSO>^ M^_WO@ ^\X =/^,(;_O"(3[SB%\_XQCO^\9"/O.0G3_G*6_[RF,^\YC?/^<Y[ M_O.@#[WH1T_ZTIO^]*A/O>I7S_K6N_[UL(^][&=/^]K;_O:XS[WN=\_[WOO^ M]\ /OO"'3_SB&__XR$^^\I?/_.8[__G0C[[TIT_]ZEO_^MC/OO:WS_WN>__[ MX ^_^,=/_O*;__SH3[_ZU\_^]KO__?"/O_SG3__ZV__^^,^__O?/__[[__\ M&( ".( $6( &>( (F( *N( ,V( .^( 0&($2.($46($6>($8F($:N($<V($> M^($@&((B.((D6((F>((HF((JN((LV((N^((P&(,R.(,T6(,V>(,XF(,ZN(,\ MV(,^^(- &(1".(1$6(1&>(1(F(1*N(1,V(1.^(10&(52.(546(56>(58F(5: MN(5<V(5>^(5@&(9B.(9D6(9F>(9HF(9JN(9LV(9N^(9P&(=R.(=T6(=V>(=X MF(=ZN(=\V(=^^(> &(B".(B$6(B&>(B(F(B*N(B,V(B.^(B0&(F2.(F46(F6 M>(F8F(F:N(F<V(F>^(F@&(JB.(JD6(JF>(JHF(JJN(JLV(JN^(JP&(NR.(NT M6(NV>(NXF(NZN(N\V(N^^(O &(S".(S$6(S&>(S(F(S*N(S,V(S.^(S0&(W2 M.(W46(W6>(W8F(W:N(W<V(W>^(W@&([B.([D6([F>([HF([JN([LV([N^([P M&(_R.(_T6(_V>(_XF(_ZN(_\V(_^^(\ &9 ".9 $69 &>9 (F9 *N9 ,V9 . M^9 0&9$2.9$469$6>9$8F9$:N9$<V9$>^9$@&9(B.9(D69(F>9(HF9(JN9(L MV9(N^9(P&9,R.9,T69,V>9,XF9,ZN9,\V9,^^9- &91".91$691&>91(F91* MN91,V91.^910&952.9546956>958F95:N95<V95>^95@&99B.99D699F>99H MF99JN99LV99N^99P&9=R.9=T69=V>9=XF9=ZN9=\V9=^^9> &9B".9B$69B& M>9B(F9B*N9B,V9B.^9B0&9F2.9F469F6>9F8F9F:N9F<V9F>^9F@&9JB.9JD M69JF>9JHF9JJN9JLV9JN^9JP&9NR.9NT69NV>9NXF9NZN9N\V9N^^9O &9S" M.9S$69S&>9S(F9S*N9S,V9S.^9S0&9W2.9W469W6>9W8F9W:N9W<V9W>^9W@ M&9[B.9[D69[F>9[HF9[JN9[LV9[N^9[P&9_R.9_T69_V>9_XF9_ZN9_\V9_^ M^9\ &J ".J $6J &>J (FJ *NJ ,VJ .^J 0&J$2.J$46J$6>J$8FJ$:NJ$< MVJ$>^J$@&J(B.J(D6J(F>J(HFJ(JNJ(LVJ(N^J(P&J,R.J,T6J,V>J,XFJ,Z MNJ,\VJ,^^J- &J1".J1$6J1&>J1(FJ1*NJ1,VJ1.^J10&J52.J546J56>J58 MFJ5:NJ5<VJ5>^J5@&J9B.J9D6J9F>J9HFJ9JNJ9LVJ9N^J9P&J=R.J=T6J=V M>J=XFJ=ZNJ=\VJ=^^J> &JB".JB$6JB&>JB(FJB*NJB,VJB.^JB0&JF2.JF4 M6JF6>JF8FJF:NJF<VJF>^JF@&JJB.JJD6JJF>JJHFJJJNJJLVJJN^JJP&JNR M.JNT6JNV>JNXFJNZNJN\VJN^^JO &JS".JS$6JS&>JS(FJS*NJS,VJS.^JS0 M&JW2.JW46JW6>JW8FJW:NJW<VJW>^JW@&J[B.J[D6J[F>J[HFJ[JNJ[LVJ[N M^J[P&J_R.J_T6J_V>J_XFJ_ZNJ_\VJ_^^J\ &[ ".[ $6[ &>[ (F[ *N[ , MV[ .^[ 0&[$2.[$46[$6>[$8F[$:N[$<V[$>^[$@&[(B.[(D6[(F>[(HF[(J MN[(LV[(N^[(P&[,R.[,T6[,V>[,XF[,ZN[,\V[,^^[- &[1".[1$6[1&>[1( MF[1*N[1,V[1.^[10&[52.[546[56>[58F[5:N[5<V[5>^[5@&[9B.[9D6[9F M>[9HF[9JN[9LV[9N^[9P&[=R.[=T6[=V>[=XF[=ZN[=\V[=^^[> &[B".[B$ M6[B&>[B(F[B*N[B,V[B.^[B0&[F2.[F46[F6>[F8F[F:N[F<V[F>^[F@&[JB M.[JD6[JF>[JHF[JJN[JLV[JN^[JP&[NR.[NT6[NV>[NXF[NZN[N\V[N^^[O M&[S".[S$6[S&>[S(F[S*N[S,V[S.^[S0&[W2.[W46[W6>[W8F[W:N[W<V[W> M^[W@&[[B.[[D6[[F>[[HF[[JN[[LV[[N^[[P&[_R.[_T6[_V>[_XF[_ZN[_\ MV[_^^[\ ', "/, $7, &?, (G, *O, ,W, ._, 0',$2/,$47,$6?,$8G,$: MO,$<W,$>_,$@',(B/,(D7,(F?,(HG,(JO,(LW,(N_,(P',,R/,,T7,,V?,,X <G,,ZO,,\W,,^_,- ',1"/,1$7,1&?,1(G,3K!\(N end @eof chmod 664 DOS_1440K.Z rm -f /tmp/unpack$$ exit 0