home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / unix / volume17 / mgr / part19 < prev    next >
Encoding:
Internet Message Format  |  1989-01-19  |  51.6 KB

  1. Subject:  v17i020:  MGR, Bellcore window manager, Part20/61
  2. Newsgroups: comp.sources.unix
  3. Approved: rsalz@uunet.UU.NET
  4.  
  5. Submitted-by: Stephen A. Uhler <sau@bellcore.com>
  6. Posting-number: Volume 17, Issue 20
  7. Archive-name: mgr/part20
  8.  
  9.  
  10.  
  11.  
  12. #! /bin/sh
  13. # This is a shell archive.  Remove anything before this line, then unpack
  14. # it by saving it into a file and typing "sh file".  To overwrite existing
  15. # files, type "sh file -c".  You can also feed this as standard input via
  16. # unshar, or by typing "sh <file", e.g..  If this archive is complete, you
  17. # will see the following message at the end:
  18. #        "End of archive 19 (of 61)."
  19. # Contents:  demo/misc/mgrmode.c demo/plot/subs.c doc/usrman/doc.0
  20. #   font-16/Ucolossus12x20 font-16/User9x18r font-16/User9x18rI
  21. #   font-16/User9x18ru font-32/Ucolossus12x20 font-32/User9x18r
  22. #   font-32/User9x18rI font-32/User9x18ru src/icons-32.h
  23. # Wrapped by rsalz@papaya.bbn.com on Thu Nov 17 21:05:22 1988
  24. PATH=/bin:/usr/bin:/usr/ucb ; export PATH
  25. if test -f 'demo/misc/mgrmode.c' -a "${1}" != "-c" ; then 
  26.   echo shar: Will not clobber existing file \"'demo/misc/mgrmode.c'\"
  27. else
  28. echo shar: Extracting \"'demo/misc/mgrmode.c'\" \(3872 characters\)
  29. sed "s/^X//" >'demo/misc/mgrmode.c' <<'END_OF_FILE'
  30. X/*                        Copyright (c) 1988 Bellcore
  31. X *                            All Rights Reserved
  32. X *       Permission is granted to copy or use this program, EXCEPT that it
  33. X *       may not be sold for profit, the copyright notice must be reproduced
  34. X *       on copies, and credit should be given to Bellcore where it is due.
  35. X *       BELLCORE MAKES NO WARRANTY AND ACCEPTS NO LIABILITY FOR THIS PROGRAM.
  36. X */
  37. X/*    $Header: mgrmode.c,v 4.2 88/06/22 14:37:52 bianchi Exp $
  38. X    $Source: /tmp/mgrsrc/demo/misc/RCS/mgrmode.c,v $
  39. X*/
  40. Xstatic char    RCSid_[] = "$Source: /tmp/mgrsrc/demo/misc/RCS/mgrmode.c,v $$Revision: 4.2 $";
  41. X
  42. X/* set or clear an MGR window mode */
  43. X
  44. X#include <signal.h>
  45. X#include "term.h"
  46. X
  47. X
  48. X#define    SET    0
  49. X#define    CLEAR    1
  50. X
  51. X#define    EQ(a,b)    (!strcmp(a,b))
  52. X
  53. Xstatic char    *allmodes[] = {
  54. X    "ABS",
  55. X    /*    ACTIVATE is not really a mode; it is actually an action.
  56. X        We won't deactivate a window when CLEARALL is specified.
  57. X    */
  58. X    "AUTOEXPOSE",
  59. X    "BACKGROUND",
  60. X    "DUPKEY",
  61. X    "NOBUCKEY",
  62. X    "NOINPUT",
  63. X    "NOWRAP",
  64. X    "OVERSTRIKE",
  65. X    "SNARFHARD",
  66. X    "SNARFLINES",
  67. X    "SNARFTABS",
  68. X    "STACK",
  69. X    "STANDOUT",
  70. X    "WOB",
  71. X    0
  72. X};
  73. Xstatic char    *pgm;
  74. X
  75. X
  76. Xmain(argc,argv)
  77. Xint    argc;
  78. Xchar    **argv;
  79. X{
  80. X    int    setclear = SET;
  81. X
  82. X    pgm = *argv;
  83. X    ckmgrterm( pgm );
  84. X
  85. X    if( argc < 2 ) {
  86. X        fprintf( stderr,
  87. X            "Usage:  %s [ SETMODE | CLEARMODE ] mgr-modes ...\n",
  88. X            pgm );
  89. X        fputs( "\
  90. XSet or clear MGR window modes.\n\
  91. XSETMODE        (Default) Set the mode\n\
  92. XCLEARMODE    Clear the mode\n\
  93. XCLEARALL    Clear all modes, except ACTIVATE\n\
  94. XModes include:\n\
  95. XM_ABS        Turn on Absolute Coordinate mode.\n\
  96. XM_ACTIVATE    Activate window (not really a mode).\n\
  97. XM_AUTOEXPOSE    Expose window when written to.\n\
  98. XM_BACKGROUND    Do not block window update when window is obscured.\n\
  99. XM_DUPKEY    Duplicate the Escape character when from keyboard.\n\
  100. XM_NOBUCKEY    Turn off mgr interpreting Left and Right (Buckey) keys;\n\
  101. X        Pass them on to the application.\n\
  102. XM_NOINPUT    Keyboard input is held until cleared or another window\n\
  103. X        becomes active.\n\
  104. XM_NOWRAP    Do not wrap around when text reaches right edge of window.\n\
  105. XM_OVERSTRIKE    Turn on overstriking of text.\n\
  106. XM_SNARFHARD    Snarf (cut) even if there are errors.\n\
  107. XM_SNARFLINES    Only cut entire lines.\n\
  108. XM_SNARFTABS    Change spaces to tabs within the snarf buffer.\n\
  109. XM_STACK        Turn on event stacking.\n\
  110. XM_STANDOUT    Write characters in standout mode (foreground and background\n\
  111. X        colors reversed).\n\
  112. XM_WOB        White On Black, entire window's sense of white and black is\n\
  113. X        reversed.\n\
  114. X`M_' may be omitted.  Lower case letters are permitted.  M_ABS == ABS == abs.\n\
  115. X",
  116. X            stderr );
  117. X        exit( 255 );
  118. X    }
  119. X    m_setup( M_FLUSH );
  120. X    argv++;
  121. X    argc--;
  122. X    for(  ;  *argv;  argv++, argc-- ) {
  123. X        register char    *mode = *argv;
  124. X
  125. X        /* Uppercase modes are optional.  abs == ABS
  126. X        */
  127. X        do {
  128. X            if( *mode >= 'a'  &&  *mode <= 'z' )
  129. X                *mode -= 'a' - 'A';
  130. X        } while( *(mode++) );
  131. X
  132. X        mode = *argv;
  133. X
  134. X        if( EQ( mode, "SETMODE" ) ) {
  135. X            setclear = SET;
  136. X            continue;
  137. X        }
  138. X        if( EQ( mode, "CLEARMODE" ) ) {
  139. X            setclear = CLEAR;
  140. X            continue;
  141. X        }
  142. X        if( EQ( mode, "CLEARALL" ) ) {
  143. X            char    **cpp;
  144. X            for( cpp = allmodes;  *cpp;  cpp++ )
  145. X                action( CLEAR, *cpp, *cpp );
  146. X            continue;
  147. X        }
  148. X
  149. X        /* M_ in front of mode is optional.  M_ABS == ABS
  150. X        */
  151. X        if( mode[0] == 'M'  &&  mode[1] == '_' )
  152. X            mode += 2;
  153. X        action( setclear, mode, *argv );
  154. X    }
  155. X}
  156. X
  157. X
  158. X#define    CASE(arg)    if( EQ("arg", mode) ) {\
  159. X                switch( setclear ) {\
  160. X                case SET:\
  161. X                    m_setmode( M_/**/arg );\
  162. X                    return;\
  163. X                case CLEAR:\
  164. X                    m_clearmode( M_/**/arg );\
  165. X                    return;\
  166. X                }\
  167. X            }
  168. X
  169. Xstatic
  170. Xaction( setclear, mode, originalmode )
  171. Xint    setclear;
  172. Xchar    *mode;
  173. X{
  174. X    CASE(ABS);
  175. X    CASE(ACTIVATE);
  176. X    CASE(AUTOEXPOSE);
  177. X    CASE(BACKGROUND);
  178. X    CASE(DUPKEY);
  179. X    CASE(NOBUCKEY);
  180. X    CASE(NOINPUT);
  181. X    CASE(NOWRAP);
  182. X    CASE(OVERSTRIKE);
  183. X    CASE(SNARFHARD);
  184. X    CASE(SNARFLINES);
  185. X    CASE(SNARFTABS);
  186. X    CASE(STACK);
  187. X    CASE(STANDOUT);
  188. X    CASE(WOB);
  189. X    fprintf( stderr, "%s:  unrecognized mode: `%s'\n",
  190. X        pgm, originalmode );
  191. X}
  192. END_OF_FILE
  193. # end of 'demo/misc/mgrmode.c'
  194. fi
  195. if test -f 'demo/plot/subs.c' -a "${1}" != "-c" ; then 
  196.   echo shar: Will not clobber existing file \"'demo/plot/subs.c'\"
  197. else
  198. echo shar: Extracting \"'demo/plot/subs.c'\" \(3977 characters\)
  199. sed "s/^X//" >'demo/plot/subs.c' <<'END_OF_FILE'
  200. X/*                        Copyright (c) 1987 Bellcore
  201. X *                            All Rights Reserved
  202. X *       Permission is granted to copy or use this program, EXCEPT that it
  203. X *       may not be sold for profit, the copyright notice must be reproduced
  204. X *       on copies, and credit should be given to Bellcore where it is due.
  205. X *       BELLCORE MAKES NO WARRANTY AND ACCEPTS NO LIABILITY FOR THIS PROGRAM.
  206. X */
  207. X/*    $Header: subs.c,v 4.1 88/06/21 14:03:15 bianchi Exp $
  208. X    $Source: /tmp/mgrsrc/demo/plot/RCS/subs.c,v $
  209. X*/
  210. Xstatic char    RCSid_[] = "$Source: /tmp/mgrsrc/demo/plot/RCS/subs.c,v $$Revision: 4.1 $";
  211. X
  212. X
  213. X/* mgr plot filter (tmgr) */
  214. X
  215. X#include "term.h"
  216. X
  217. X#define X(x)    (scale?(int)(((x)-xmin) * xscale):(x))
  218. X#define Y(x)    (scale?(int)(((x)-ymin) * yscale):(x))
  219. X#define dprintf    if(debug)fprintf
  220. X#define GMAX     999
  221. X
  222. Xstatic int scale = 0;            /* TRUE if scaling on */
  223. Xstatic int xmin = 0 ,ymin = 0;        /* minimum plotting coord */
  224. Xstatic int xmax = GMAX ,ymax = GMAX;    /* maximum plotting coord */
  225. Xstatic int xgmax = GMAX;        /* to override GMAX from environ() */
  226. Xstatic int ygmax = GMAX;
  227. Xstatic float xscale,yscale;        /* scale values */
  228. Xstatic int debug = 0;            /* iff TRUE debug -> stderr */
  229. Xstatic int text;            /* true if last item was a label */
  230. Xstatic int win_id = 0;            /* true for alternate window */
  231. Xstatic int pause = 0;            /* pause before clear */
  232. Xstatic int points=0;            /* # points plotted (>0) */
  233. X
  234. Xopenpl()
  235. X   {
  236. X   char *getenv();
  237. X   int n;
  238. X   char *v;
  239. X
  240. X   if ((v=getenv("MAX_X")) && (n=atoi(v))>0)
  241. X      xgmax = n;
  242. X   if ((v=getenv("MAX_Y")) && (n=atoi(v))>0)
  243. X      ygmax = n;
  244. X   if ((v=getenv("WINDOW_ID")) && (n=atoi(v))>0)
  245. X      win_id = n;
  246. X   pause = (int) getenv("PAUSE");
  247. X   points = 0;
  248. X
  249. X   xscale = (float)xgmax/(xmax-xmin);
  250. X   yscale = (float)ygmax/(ymax-ymin);
  251. X   text = 0;
  252. X   debug = (int)getenv("DEBUG");
  253. X   dprintf(stderr,"OPEN\n");
  254. X   m_setup(M_DEBUG);
  255. X   m_push(P_FLAGS);
  256. X   m_func(B_SET);
  257. X   if (win_id) {
  258. X      m_selectwin(win_id);
  259. X      m_setmode(M_ACTIVATE);
  260. X      }
  261. X   }
  262. X
  263. Xerase()
  264. X   {
  265. X   if (points && pause) {
  266. X      m_flush();
  267. X      getpass("\0330,0M");
  268. X      }
  269. X   m_clear();
  270. X   m_flush();
  271. X   dprintf(stderr,"ERASE\n");
  272. X   points = 0;
  273. X   }
  274. X
  275. Xlabel(s)
  276. Xchar *s;
  277. X   {
  278. X   if (text == 0)
  279. X      m_aligntext();
  280. X   m_setmode(M_OVERSTRIKE);
  281. X   m_func(B_OR);
  282. X   m_printstr(s);
  283. X   m_func(B_SET);
  284. X   m_clearmode(M_OVERSTRIKE);
  285. X   dprintf(stderr,"LABEL [%s]\n",s);
  286. X   text++;
  287. X   points++;
  288. X   }
  289. X
  290. Xline(x1, y1, x2, y2)
  291. Xint x1,y1,x2,y2;
  292. X   {
  293. X   text=0;
  294. X   m_line(X(x1),Y(y1),X(x2),Y(y2));
  295. X   m_go(X(x2),Y(y2));        /* this should be redundant */
  296. X   dprintf(stderr,"LINE: %d,%d  %d,%d\n",X(x1),Y(y1),X(x2),Y(y2));
  297. X   points++;
  298. X   }
  299. X
  300. Xcircle(x, y, r)
  301. Xint x,y,r;
  302. X   {
  303. X   m_circle(X(x),Y(y),X(r));
  304. X   dprintf(stderr,"CIRCLE %d,%d  %d\n",X(x),Y(y),X(r));
  305. X   points++;
  306. X   }
  307. X
  308. Xarc(x, y, x0, y0, x1, y1)
  309. Xint x,y,x0,y0,x1,y1;
  310. X   {
  311. X   m_arc(X(x),Y(y),X(x0),Y(y0),X(x1),Y(y1));
  312. X   dprintf(stderr,"ARC at %d,%d from  %d,%d to %d,%d\n",
  313. X                X(x),Y(y),X(x0),Y(y0),X(x1),Y(y1));
  314. X   points++;
  315. X   }
  316. X
  317. Xmove(x, y)
  318. Xint x,y;
  319. X   {
  320. X   text=0;
  321. X   m_go(X(x),Y(y));
  322. X   dprintf(stderr,"MOVE %d,%d\n",X(x),Y(y));
  323. X   }
  324. X
  325. Xcont(x, y)
  326. Xint x,y;
  327. X   {
  328. X   text=0;
  329. X   m_draw(X(x),Y(y));
  330. X   dprintf(stderr,"DRAW %d,%d\n",X(x),Y(y));
  331. X   points++;
  332. X   }
  333. X
  334. Xpoint(x, y)
  335. Xint x,y;
  336. X   {
  337. X   m_line(X(x),Y(y),X(x),Y(y));
  338. X   dprintf(stderr,"POINT %d,%d\n",X(x),Y(y));
  339. X   points++;
  340. X   }
  341. X
  342. Xlinemod(s)
  343. Xchar *s;
  344. X   {
  345. X   dprintf(stderr,"LINEMODE [%s]\n",s);
  346. X   }
  347. X
  348. Xspace(x0, y0, x1, y1)
  349. Xint x0,y0,x1,y1;
  350. X   {
  351. X   xmin = x0;
  352. X   ymin = y0;
  353. X   xmax = x1;
  354. X   ymax = y1;
  355. X   xscale = (float)xgmax/(xmax-xmin);
  356. X   yscale = (float)ygmax/(ymax-ymin);
  357. X   scale = 1;
  358. X   dprintf(stderr,"SPACE %d,%d to %d,%d: scale (%g,%g)\n",
  359. X            xmin,ymin,xmax,ymax,xscale,yscale);
  360. X   }
  361. X
  362. Xclosepl()
  363. X   {
  364. X   if (points && pause) {
  365. X      m_flush();
  366. X      getpass("\0330,0M");
  367. X      }
  368. X   if (win_id) {
  369. X      m_selectwin(0);
  370. X      m_setmode(M_ACTIVATE);
  371. X      }
  372. X   m_pop();
  373. X   m_flush();
  374. X   points++;
  375. X   dprintf(stderr,"CLOSE\n");
  376. X   }
  377. X
  378. Xdot()
  379. X  {
  380. X  }
  381. END_OF_FILE
  382. # end of 'demo/plot/subs.c'
  383. fi
  384. if test -f 'doc/usrman/doc.0' -a "${1}" != "-c" ; then 
  385.   echo shar: Will not clobber existing file \"'doc/usrman/doc.0'\"
  386. else
  387. echo shar: Extracting \"'doc/usrman/doc.0'\" \(4043 characters\)
  388. sed "s/^X//" >'doc/usrman/doc.0' <<'END_OF_FILE'
  389. X'\"                        Copyright (c) 1988 Bellcore
  390. X'\"                            All Rights Reserved
  391. X'\"       Permission is granted to copy or use this program, EXCEPT that it
  392. X'\"       may not be sold for profit, the copyright notice must be reproduced
  393. X'\"       on copies, and credit should be given to Bellcore where it is due.
  394. X'\"       BELLCORE MAKES NO WARRANTY AND ACCEPTS NO LIABILITY FOR THIS PROGRAM.
  395. X'\"
  396. X'\"    $Header: doc.0,v 4.2 88/06/30 12:44:52 bianchi Exp $
  397. X'\"    $Source: /tmp/mgrsrc/doc/usrman/RCS/doc.0,v $
  398. X.DA
  399. X.ds M M\s-2GR\s+2
  400. X.ds RF Draft (\nv)
  401. X.ds RF \*M 4.0\ \ \(co 1988 Bellcore
  402. X.ds LH \*M\-C Language Application Interface
  403. X.ds A \v'0.25v'*\v'-0.25v'
  404. X'\"    Ff == font for functions
  405. X'\"    Fn == font for arguments and such
  406. X.if t .ds Ff lr
  407. X.if t .ds Fn lb
  408. X.if t .ds Ff B
  409. X.if t .ds Fn B
  410. X.if n .ds Ff R
  411. X.if n .ds Fn B
  412. X.if n .nr LL 78m 
  413. X.if n .nr PO 1m
  414. X..
  415. X.de Sh    \" section header
  416. X.ds RH \\$2 \\$3 \\$4 \\$5 \\$6
  417. X.if t .if !\\nI .tm working on \\$2 \\$3 \\$4 \\$5 \\$6 [\\$1](page \\n%)
  418. X.if ^G\\$1^Gpage^G .bp
  419. X.LP
  420. X.XS
  421. X\\$2 \\$3 \\$4 \\$5 \\$6 \\$7 \\$8 \\$9
  422. X.XE
  423. X.sp 0.5v
  424. X.LG
  425. X.B
  426. X\(rh \\$2 \\$3 \\$4 \\$5 \\$6 \\$7 \\$8 \\$9
  427. X.R
  428. X.SM
  429. X.LP
  430. X..
  431. X.de Fr  \" function reference
  432. X.ds Fz \\n(.f
  433. X.if \\nI .if !'\\$1'' .tm \\$1 \\n% \\*(Mi
  434. X.ds Mi
  435. X.ft \\*(Ff
  436. X.if t \\$1(\|\\c
  437. X.if n \\$1(\\c
  438. X.if \\n(.$>1 .ft \\*(Fn
  439. X.if t .if \\n(.$>1  \\$2\|\\c
  440. X.if n .if \\n(.$>1  \& \\$2\|\\c
  441. X.if \\n(.$>2  \\fP,\|\\fP\\$3\|\\c
  442. X.if \\n(.$>3  \\fP,\|\\fP\\$4\|\\c
  443. X.if \\n(.$>4  \\fP,\|\\fP\\$5\|\\c
  444. X.if \\n(.$>5  \\fP,\|\\fP\\$6\|\\c
  445. X.if \\n(.$>6  \\fP,\|\\fP\\$7\|\\c
  446. X.if \\n(.$>7  \\fP,\|\\fP\\$8\|\\c
  447. X.if \\n(.$>8  \\fP,\|\\fP\\$9\|\\c
  448. X.ft \\*(Ff
  449. X)\\c
  450. X.ft \\*(Fz
  451. X..
  452. X.de Fa    \" argument description
  453. X.ds Fz \\n(.f
  454. X.ft \\*(Fn
  455. X.ft \\*(Ff
  456. X\\fP\\$1\\fP\\$2\\fP\\$3\\fP\\$4\\fP\\$5\\fP\\$6\\fP\\$7\\fP\\$8\\fP\\$9
  457. X.ft \\*(Fz
  458. X..
  459. X.de Fi    \" function italic - alternate Fn and previous
  460. X.ft \\*(Fn
  461. X\\$1\\fP\\$2\\fP\\$3\\fP\\$4\\fP\\$5\\fP\\$6\\fP\\$7\\fP\\$8\\fP\\$9\\fP
  462. X..
  463. X.de Fh        \" function heading
  464. X.XP
  465. X.ds Mi *
  466. X.Fr \\$1  \\$2  \\$3  \\$4  \\$5  \\$6  \\$7  \\$8  \\$9
  467. X.br
  468. X..
  469. X.de Ad        \" argument description
  470. X.XP
  471. X.Fa \\$1  \\$2  \\$3  \\$4  \\$5  \\$6  \\$7  \\$8  \\$9
  472. X.br
  473. X..
  474. X.de Fe                \" function ending
  475. X.br
  476. X..
  477. X.de Fs        \" generate function subjects
  478. X.if \\nI .tm .Fc \\$1 \\$2 \\n% "\\$3"
  479. X..
  480. X.de Mk        \" mark a vertical spot
  481. X.nr xx \\n(nl 
  482. X..
  483. X.de Go        \" go to marked spot indented $1
  484. X.nr yy \\n(nl
  485. X.sp  \\n(xxu-\\n(nlu
  486. X.sp
  487. X.po \\$1
  488. X.nr qq \\n(xx-\\n(nlu
  489. X..
  490. X.de Rs        \" Restore vertical spot
  491. X.if \\n(yy>\\n(nlu .sp \\n(yyu-\\n(nl
  492. X.po
  493. X..
  494. X.de Fd    \" start a function declaration
  495. X.ds Mi *
  496. X.br
  497. X.sp 1.0v
  498. X.ft \\*(Ff
  499. X.RE
  500. X.nf
  501. X\\$1 \\$2 \\$3 \\$4
  502. X..
  503. X.de Ft    \" terminate a function declaration
  504. X.fl
  505. X.ft R
  506. X.RS
  507. X.br
  508. X.sp 0.5v
  509. X..
  510. X.de SS    \" source include for croff
  511. X.nf
  512. X.ft \*(Ff
  513. X.cs \*(Ff 24
  514. X..
  515. X.de SE    \" end source include for croff
  516. X.ft R
  517. X.fl
  518. X.cs \*(Ff
  519. X..
  520. X.ds S Unknown Function Category
  521. X.de Mc        \" mgr function and macro categories
  522. X.if ^G\\$1^G1^G .ds S Library Package Control*
  523. X.if ^G\\$1^G2^G .ds S Standard I/O Functions
  524. X.if ^G\\$1^G3^G .ds S Terminal Functions
  525. X.if ^G\\$1^G4^G .ds S Graphics Primitives
  526. X.if ^G\\$1^G5^G .ds S Bit-blts and Related Functions
  527. X.if ^G\\$1^G6^G .ds S Window Environment Changes
  528. X.if ^G\\$1^G7^G .ds S Window State Inquiry
  529. X.if ^G\\$1^G8^G .ds S Pop-up Menu Management
  530. X.if ^G\\$1^G9^G .ds S Event Handling
  531. X.if ^G\\$1^G10^G .ds S Window Context Manipulation
  532. X.if ^G\\$1^G11^G .ds S Multiple Windows
  533. X.if ^G\\$1^G12^G .ds S Message Passing
  534. X.if ^G\\$1^G13^G .ds S Miscellaneous Functions
  535. X.if ^G\\$1^G14^G .ds S Color Manipulation
  536. X..
  537. X.nr Lx 0    
  538. X.de Fc        \" macro for printing macros by category
  539. X.tc .
  540. X.if !\\n(Lx=\\$2\{
  541. X.nr Lx \\$2
  542. X.SH
  543. X.Mc \\$2
  544. X\\*S
  545. X.LP
  546. X\}
  547. X.IP "\\$1 \fB\\$3\fP"  2.0i
  548. X\\$4.
  549. X.tc
  550. X..
  551. X.de Ih        \" header stuff for index
  552. X.nr Ll \n(LL
  553. X.nr Po \n(PO
  554. X.nr LL 7.5i
  555. X.nr PO .5i
  556. X.Sh page Macro and Function Index
  557. XThese are the pages where macros and functions are referenced.
  558. XThe \fIitalic\fP page numbers are the defining references.
  559. X.LP
  560. X.MC 2.1i 0.4
  561. X.LP
  562. X..
  563. X.de Sb            \" subscript
  564. X\\$1\s-2\d\\$2\u\s+2\\$3\\$4\\$5\\$6\\$7\\$8\\$9
  565. X..
  566. X.de TS
  567. X.KS
  568. X..
  569. X.de TE
  570. X.KE
  571. X..
  572. END_OF_FILE
  573. # end of 'doc/usrman/doc.0'
  574. fi
  575. if test -f 'font-16/Ucolossus12x20' -a "${1}" != "-c" ; then 
  576.   echo shar: Will not clobber existing file \"'font-16/Ucolossus12x20'\"
  577. else
  578. echo shar: Extracting \"'font-16/Ucolossus12x20'\" \(4012 characters\)
  579. sed "s/^X//" >'font-16/Ucolossus12x20' <<'END_OF_FILE'
  580. Xbegin 644 colossus12x20.fnt
  581. XM%@P4 E\@                                                    
  582. XM                                                            
  583. XM                                                            
  584. XM                                                            
  585. XM                                                            
  586. XM                                                            
  587. XM                                  !@#8  #0.$'P!@ P#         
  588. XM   $/\'@/\/P8&?X/\?^'X'\          '\  #\/X/\?\/\/^/\8& P &8(
  589. XM& _\?\/\/\/\?P/\?^8&8&P#8&8&?^#P( #P!@  "                   
  590. XM                                   P  !@ (    !@#8#8#0;,,8!@
  591. XM!@!@           $8.!@,& 88&8 8, &,,,&          ,&/\&&8,8,8&8 
  592. XM8 8,8& P &88& QF8&8&8&8&888,!@8&8&P#8&8& &# (  P#P  #   ,   
  593. XM ,  #X  ,     , !@              !@            !@   P'X    !@
  594. XM#8#8/^;(,8!@#  P           ,8.!@ & 88&8 8  &,,,&     (  $ ,&
  595. XM8&&&8,8 8&8 8 8 8& P &88& QF8&8&8&8&888 !@8&8&P#8&8& &# ,  P
  596. XM&8  !@  ,    ,  &8  ,     , !@              !@            !@
  597. XM!@ P'X    !@#8#8;6;8,8!@#  P  !@       (8>!@ & 88&8 8  &,,,&
  598. XM#@   8  &  &8&&&8,8 8&8 8 8 8& P &88& QF8&8&8&8&888 !@8&8&P#
  599. XM8&8& ,# $  P,,   @  ,    ,  &   , !@ ,, !@              !@  
  600. XM          !@!@ P$     !@  #8;0.0,8  #  P!@!@       886!@ & 8
  601. XM8&8 8  &,,,&#@   P  #  &9F&&8,8 8&8 8 8 8& P &88& QF8&8&8&8&
  602. XM888 !@8&8&P#8&8& 8# &  P        ,    ,  &   , !@ ,, !@      
  603. XM        !@            !@!@ P      !@  /^;0 P,8  #  P!@!@    
  604. XM   08V!@ & 88&8 8  &,,,&#@  !@'X!@ &:6&&8,8 8&8 8 8 8& P &88
  605. XM& QF8&8&8&8&888 !@8&8&P#,,8& P# "  P        ,    ,  &   ,   
  606. XM  , !@              /\            !@!@ P      !@  #8;0 @'P  
  607. XM#  P'X!@       P8F!@ & 88&8 8  ,,,,&  #@# 'X P ,:6&&8,8 8&8 
  608. XM8 8 8& P &88& QF8&8&8&8&888 !@8&8&P#&88&!@# #  P      'X/X'\
  609. XM'\'X& '\, !@ ,,8!@?^/X'X'X'P'X'X#@,,,,8#.,,,/\!@!@ P      !@
  610. XM  #8/\!@/V  #  P#P/\  'X   @9F!@/\/X?^?\?\ 8'X'^  #@&    8 8
  611. XM:6'^?^< <&?P?P8 ?^ P &?\& QF8&<&?\8&?\/\!@8&8&P##P/\# # !  P
  612. XM      &,.,.,,<.,/X,</X!@ ,,P!@8S,,.,,,,8,8,8#@,,,,8#.,,, ,#@
  613. XM!@ X      !@  #8#6! 86  #  P#P!@  'X  !@9&!@>  < > &>& X.$ >
  614. XM  #@&    8 P:6.&>&> >&> > 8>>&!P .>&. X&<&>&> 8.>& &#@<&<&XS
  615. XM#P#P& # !@ P       ,.,. ,<.,' ,<.,!@ ,-@!@8S,,.,,,,8, , #@,,
  616. XM,,8#&8,, 8#@!@ X      !@  #8#6# 86  #  P'X!@      ! ;&'P>  >
  617. XM > &>&!X>& >    # 'X P!@:6>&>&> >&> > 8>>&#P >>&> \&>&>&> 8>
  618. XM>& &'@>&>&\S&8#P. #  @ P      '\.,. ,<.,' ,<.,!@ ,/ !@8S,,.,
  619. XM,,,8, , #@,<,,8##P,, P!@!@ P      !@  /^#6" 8<  #  P!@!@    
  620. XM  # :&'P>  > >>&>&!X>& >#@  !@'X!@!@:6>&>&> >&> > 8>>&#P >>&
  621. XM> \&>&>&> 8>>&>&'@>&>&\S.,#P> #  P P      ,<.,. ,</\' ,<.,#@
  622. XM ,/X!P<S.,.,,,,8. 'X#@,<,,<S!@,,!@!@!@ P      !@  #8#6&<8<  
  623. XM#  P!@!@      " >&'P>  > >>&>&!X>& >#@   P  # !@9^>&>&> >&> 
  624. XM> 8>>&#P8>>&> \&>&>&> 8>>&>&'@>&>&\S>&#P> #  0 P      ,<.,. 
  625. XM,<. ' ,<.,#@ <.,!P<S.,.,,,,8.  ,#@,<.,<S#P,,# !@!@ P      !@
  626. XM  #8;6$V8<  #  P    #@    & <&'P>  > >>&>&!X>& >#@#@ 8  & !@
  627. XM8 >&>&> >&> > 8>>&#P8>>&> \&>&>&> 8>>&>&'@>&.,\S>&#P> #  8 P
  628. XM      ,<.,. ,<. ' 'X.,#@ <.,!P<S.,.,,,,8. .,#@,</,<S&8,,& !@
  629. XM!@ P          #8?\,V8<  #  P    #@  #@$ <&'P>  > >>&>&!X>& >
  630. XM  #@ (  $   8&>&>&> >&> > 8>>&#P8>>&> \&>&>&> 8?>&>&'@>&&8\S
  631. XM>&#P> #  ( P      ,<.,. ,<. ' # .,#@ <.,!P<S.,.,/X'X. .,#@,<
  632. XM'8<S.,/\. !@!@ P      !@  #8#0(V8>  !@!@    #@  #@, <&'P>  >
  633. XM >>&>&!X>&,>  #@      !@/^>&>&>&>&> > 8>>&#P8>>&> \&>&>&> 8?
  634. XM>&>&'@>&#P\S>&#P> #  , P      ,<.,.,,<.,' #\.,#@ <.,!P<S.,.,
  635. XM.  8. .,#L,<#P<S., <. !@   P      !@    #0(</^   P#      @  
  636. XM#@( /\'P/^/\ >/\/\!X/\/\   @      !@  >&?\/^?\?^> /^>&#P/\>&
  637. XM?^\&>&/\> ?_>&/\'@/\!@?^>&#P?^#P $#P  __  '\/X'\'\'\'  <.,#@
  638. XM <.,!P<S.,'X.  8. 'X!\'\!@/^., </\ P  !@                    
  639. XM        #@                            #@                    
  640. XM                                                            
  641. XM      ,<    &<          .  <              &<                
  642. XM                                                            
  643. XM                                                            
  644. XM                  /\    'X          .  <              '\    
  645. X&        
  646. Xend
  647. END_OF_FILE
  648. # end of 'font-16/Ucolossus12x20'
  649. fi
  650. if test -f 'font-16/User9x18r' -a "${1}" != "-c" ; then 
  651.   echo shar: Will not clobber existing file \"'font-16/User9x18r'\"
  652. else
  653. echo shar: Extracting \"'font-16/User9x18r'\" \(3807 characters\)
  654. sed "s/^X//" >'font-16/User9x18r' <<'END_OF_FILE'
  655. Xbegin 644 ser9x18r.fnt
  656. XM%@D2!H8              'X_AP.                                 
  657. XM                                                            
  658. XM                                                            
  659. XM                                ' X' X'     /S^' X          
  660. XM       X' X' X'  /P ! 2  (    @""         (      $  &       
  661. XM     #P !!\#I^/Y_#ISGP/N-P8-CCQ^#Q^'K_N?C\=S\=_#Q '@   0 !@ 
  662. XM &  / !@! $, X           0          X('  .             <#@<#
  663. XM@<    !^/X<#@                #@<#@<#@< !^  .!($@@8!@" 0$    
  664. XM    !!X$!X/ @?A@_AP/    $ " 1@P$"(1B,0B$1B$$ (0B @B$1B,1B,QH
  665. XMB0D$@B$@D((" " @ !  "   ( !B " $ 00 @          !          $ 
  666. XM@"#$D            !P.!P.!P    #\_AP.                 .!P.!P.!
  667. XMP #\  X$@2/20) 0" ("       $(0P(Q&"! ("&)A&    @ $"",@H(B"(1
  668. XM (""(00 A$(#&,2"(2"(2""!"022(1$0@@( (%  "  (   @ $  (   ! " 
  669. XM          $          0" (220            ' X' X'     ?C^' X  
  670. XM               X' X' X'  ?@ #@2!)#)(@" ( @(!      @A%!!$(2$ 
  671. XM@(1"((   $  (((A"@B( A$ @( A! "$@@,8Q((A((A( ($(B)(2$0$" 0 @
  672. XMB  $  @  "  0  @   $ (           0         ! ( A&.          
  673. XM   <#@<#@<     _/X<#@                #@<#@<#@<  _  .  ?T$E" 
  674. XM ! !%T$     ""$$$$ A(0$ !$(@@P& @  0!$<*"8@"$0" @"$$ (4" JBD
  675. XM@B$@B$P @0B(DA(* 0(! "$$   ."X.AH/'X/2X<!P1@A)&X/&X.FX.GXQG=
  676. XMQW.YW\$ @"  D            !P.!P.!P    'X_AP.                 
  677. XM.!P.!P.!P 'X  0  D(!H$  $ $/@0     0(00 @$(A\7@(9""# 8$#^ @(
  678. XM21$/" (1\/B /P0 AH("J*2"(B"(AP"!"(BJ# H" @" (    !,,Q&)A&$!C
  679. XM,P0!!$"#:,Q&,Q,,1&$!"(B2(1"0@0" ( "0            ' X' X'     
  680. XM/S^' X                 X' X' X'  /P !  "08! I  0 0</X /X ! A
  681. XM! $!PB 9C @^,8   @  !!!)$0B( A$ @( A! "$@@)(E((L((\!P($(4*H,
  682. XM! (" ( @     0A()"((0$(A! $$@()(A((A(0@$(0$(B)(2$($&   8    
  683. XM           <#@<#@<    !^/X<#@                #@<#@<#@< !^  $
  684. XM  ) 8+$8 ! !!0$     ("$$ @!D( D$"",>@  ! _@($$81"$@"$0" AR$$
  685. XM (1" DB4@B @B(!@@0A0;!($! ( 0"     /"$@$(_! 1B$$ 04 @DB$@B$A
  686. XM" ,! 0A0N@P) @$  "  #            !P.!P.!P    #\_AP.         
  687. XM        .!P.!P.!P #\    #^ 120@ $ $(@0     @(00$ "?P"00000" 
  688. XM  "  !  0#^(2"(1 (""(00 A$(""(R"(""(@""!"%!$$@0$ @! (    !$(
  689. XM2 0B $!\(00!!H""2(2"(2$( ,$!"%!L# D$ 0" (  2            ' X'
  690. XM X'     ?C^' X                 X' X' X'  ?@    $A!))"  0 0 !
  691. XM     $ A! @(("()!!!! 0   $  (  @H(A((A$ @((A!!"$(@((C((@((A(
  692. XM(($(($0A! A" " @    (0A()"((0, A! $$0()(A((A(0@((1$(4$02!0@!
  693. XM ( @ !(            <#@<#@<     _/X<#@                #@<#@<#
  694. XM@<  _  $  2&$$D4  @"    P  P0"$$$$Q (Q&($&(! P& ( ! $#$@B,Q"
  695. XM(0B QB$$&80B$@B$Q" Q"$Q@@9 @1"$$"$( ("     S#(Q&8Q! @"$$ 00@
  696. XM@DB$Q#(S" PAD9@@1"$&$$$ @"  $@           !P.!P.!P    'X_AP. 
  697. XM                .!P.!P.!P 'X  0 !(7@,.8 " (   #  #" 'A\?QX A
  698. XMX/ 0/ 8# 8 0 ( 0#G'?AX?#^<!Z<Y\/#G?W'<1X<!X<Z\/@X"!$<XX?P@ 0
  699. XM(    !V+!X.QX?!^<Y\!#G/G;<YX+!T<"\#@["!$<X(?P0" (  2        
  700. XM    ' X' X'     /S^' X                 X' X' X'  /P      (  
  701. XM   $!    $   (              &   @                           
  702. XM    #              " ! @ /\          ,$   $        @ 0      
  703. XM    !  ! ( @  P            <#@<#@<    !^/X<#@               
  704. XM #@<#@<#@< !^       @     ((    @                     $     
  705. XM                           $              /  >              
  706. XM@0  $0       " !           $  #@@<               !P.!P.!P   
  707. XM #\_AP.                 .!P.!P.!P #\                  $     
  708. XM                 @                                (         
  709. XM                      "#   9        ( $           @         
  710. XM                                                            
  711. XM                                                            
  712. XM             8                               'X   X       !P
  713. XM X          ,                                               
  714. XM                                                            
  715. XM                                                            
  716. XJ                                                        
  717. Xend
  718. END_OF_FILE
  719. # end of 'font-16/User9x18r'
  720. fi
  721. if test -f 'font-16/User9x18rI' -a "${1}" != "-c" ; then 
  722.   echo shar: Will not clobber existing file \"'font-16/User9x18rI'\"
  723. else
  724. echo shar: Extracting \"'font-16/User9x18rI'\" \(3808 characters\)
  725. sed "s/^X//" >'font-16/User9x18rI' <<'END_OF_FILE'
  726. Xbegin 644 ser9x18rI.fnt
  727. XM%@D2!H8 _____________X' >/Q___________________________X  '__
  728. XM____________________________________________________________
  729. XM____________________________________________________________
  730. XM_____________________________ #_X_'X_'X_____P,!X_'__________
  731. XM_______'X_'X_'X__OP >_M__W____?]]_________W______[__Y_______
  732. XM_____\/_^^#\6!P& \6,8/P1R/GR<<.!\.!X4 1@<#B,#B \._X?___O_^?_
  733. XM_Y__P_^?^_[S_'___________O__________'WX__Q_________\ /_C\?C\
  734. XM?C____^!P'C\?________________\?C\?C\?C__^ !Q^W[??G^?]_O[____
  735. XM____^^'[^'P_?@>? >/P____[_]_N?/[]WN=SO=[N=[[_WO=_?=[N=SN=S.7
  736. XM=O;[?=[?;WW]_]_?_^__]___W_^=_]_[_OO_?__________^__________[_
  737. XM?]\[;_________P _^/Q^/Q^/____\# >/Q_________________Q^/Q^/Q^
  738. XM/_[\ ''[?MPMOV_O]_W]_______[WO/W.Y]^_W]YV>Y____?_[]]S?7W=]WN
  739. XM_W]]WOO_>[W\YSM]WM]WM]]^]OMMWN[O??W_WZ__]__W___?_[__W___^_]_
  740. XM__________[__________O]_WMMO_________ #_X_'X_'X_____@<!X_'__
  741. XM_______________'X_'X_'X___@ <?M^V\VW?]_W_?W^______?>Z^^[WM[_
  742. XM?WN]WW___[__WWW>]?=W_>[_?W_>^_][??SG.WW>WW>W_W[W=VWM[O[]_O_?
  743. XM=__[__?__]__O__?___[_W___________O_________^_W_>YQ_________\
  744. XM /_C\?C\?C_____ P'C\?________________\?C\?C\?C_^_ !Q__@+[:]_
  745. XM_^_^Z+[_____]][[[[_>WO[_^[W??/Y_?__O^[CU]G?][O]_?][[_WK]_5=;
  746. XM?=[?=[/_?O=W;>WU_OW^_][[___Q]'Q>7PX'PM'C^/N?>VY'PY'Q9'Q8'.8B
  747. XM.(Q&(#[_?]__;_________P _^/Q^/Q^/____X' >/Q_________________
  748. XMQ^/Q^/Q^/__X 'O__;W^7[__[_[P?O_____OWOO_?[W>#H?WF]]\_G[\!_?W
  749. XMMN[P]_WN#P=_P/O_>7W]5UM]W=]W>/]^]W=5\_7]_?]_W____^SS.YV>Y[^<
  750. XMS/O^^[]\ES.YS.SSNY[^]W=MWN]O?O]_W_]O_________ #_X_'X_'X_____
  751. XMP,!X_'_________________'X_'X_'X__OP >__]OG^_6__O_OCP'_P'_^_>
  752. XM^_[^/=_F<_?!SG___?__^^^V[O=W_>[_?W_>^_][??VW:WW3WW#^/W[WKU7S
  753. XM^_W]_W_?_____O>WV]WWO[W>^_[[?WVW>WW>WO?[WO[W=VWM[W[Y___G____
  754. XM_______\ /_C\?C\?C____^!P'C\?________________\?C\?C\?C__^ ![
  755. XM__V_GT[G_^_^^O[_____W][[_?^;W_;[]]SA?__^_ ?W[[GN][?][O]_>-[[
  756. XM_WN]_;=K?=_?=W^??O>OD^W[^_W_O]_____P][?[W ^_N=[[_OK_?;=[?=[>
  757. XM]_S^_O>O1?/V_?[__]__\_________P _^/Q^/Q^/____\# >/Q_________
  758. XM________Q^/Q^/Q^/_[\ '__\!_NMO?_[_[W?O_____?WOO[_]@/]OOOOO]_
  759. XM__]__^__O\!WM]WN_W]]WOO_>[W]]W-]W]]W?]]^]Z^[[?O[_?^_W____^[W
  760. XMM_O=_[^#WOO^^7]]MWM]WM[W_S[^]Z^3\_;[_O]_W__M_________ #_X_'X
  761. XM_'X_____@<!X_'_________________'X_'X_'X___@ ?__[>^VV]__O_O_^
  762. XM_____[_>^_?WW]WV^^^^_O___[__W__?7W>WW>[_?WW>^^][W?WW<WW?WW>W
  763. XMWW[WW[O>^_>]_]_?____WO>WV]WWOS_>^_[[OWVW>WW>WO?WWN[WK[OM^O?^
  764. XM_W_?_^W________\ /_C\?C\?C_____ P'C\?________________\?C\?C\
  765. XM?C_^_ ![__MY[[;K__?]____/__/O][[[[._W.YW[YW^_/Y_W_^_[\[?=S.]
  766. XMWO=_.=[[YGO=[?=[.]_.][.??F_?N][[][W_W]_____,\W.YG.^_?][[_OO?
  767. XM?;=[.\W,]_/>;F??N][Y[[[_?]__[?________P _^/Q^/Q^/____X' >/Q_
  768. XM________________Q^/Q^/Q^/__X 'O_^WH?SQG_]_W___\__\]_X>#@.'_>
  769. XM'P_OP_G\_G_O_W_O\8X@>'@\!C^%C&#P\8@(XCN'C^'C%#P?']^[C''@/?_O
  770. XMW____^)T^'Q.'@^!C&#^\8P8DC&'T^+C]#\?$]^[C'W@/O]_W__M________
  771. XM_ #_X_'X_'X_____P,!X_'_________________'X_'X_'X__OP ?____W__
  772. XM___[^____[___W______________Y___?___________________________
  773. XM____\______________]_^_?_P#__________S[___[________?_O______
  774. XM____^__^_W_?__/________\ /_C\?C\?C____^!P'C\?_______________
  775. XM_\?C\?C\?C__^ !_____?_____WW____?_____________________[_____
  776. XM___________________________[______________P__A______________
  777. XM?O__[O_______]_^___________[__\??C____________P _^/Q^/Q^/___
  778. XM_\# >/Q_________________Q^/Q^/Q^/_[\ '________________[_____
  779. XM_________________?________________________________W_________
  780. XM______________________]\___F________W_[___________?_________
  781. XM_________ #______________________________________________@  
  782. XM?___________________________________________________________
  783. XM_____________G_______________________________X'___'_______^/
  784. XM_'__________S__________________\ /__________________________
  785. XM___________________^  !_____________________________________
  786. XM____________________________________________________________
  787. XJ______________________________________________________P 
  788. Xend
  789. END_OF_FILE
  790. # end of 'font-16/User9x18rI'
  791. fi
  792. if test -f 'font-16/User9x18ru' -a "${1}" != "-c" ; then 
  793.   echo shar: Will not clobber existing file \"'font-16/User9x18ru'\"
  794. else
  795. echo shar: Extracting \"'font-16/User9x18ru'\" \(3808 characters\)
  796. sed "s/^X//" >'font-16/User9x18ru' <<'END_OF_FILE'
  797. Xbegin 644 ser9x18ru.fnt
  798. XM%@D2!H8              'X_AP.                                 
  799. XM                                                            
  800. XM                                                            
  801. XM                                ' X' X'     /S^' X          
  802. XM       X' X' X'  /P ! 2  (    @""         (      $  &       
  803. XM     #P !!\#I^/Y_#ISGP/N-P8-CCQ^#Q^'K_N?C\=S\=_#Q '@   0 !@ 
  804. XM &  / !@! $, X           0          X('  .             <#@<#
  805. XM@<    !^/X<#@                #@<#@<#@< !^  .!($@@8!@" 0$    
  806. XM    !!X$!X/ @?A@_AP/    $ " 1@P$"(1B,0B$1B$$ (0B @B$1B,1B,QH
  807. XMB0D$@B$@D((" " @ !  "   ( !B " $ 00 @          !          $ 
  808. XM@"#$D            !P.!P.!P    #\_AP.                 .!P.!P.!
  809. XMP #\  X$@2/20) 0" ("       $(0P(Q&"! ("&)A&    @ $"",@H(B"(1
  810. XM (""(00 A$(#&,2"(2"(2""!"022(1$0@@( (%  "  (   @ $  (   ! " 
  811. XM          $          0" (220            ' X' X'     ?C^' X  
  812. XM               X' X' X'  ?@ #@2!)#)(@" ( @(!      @A%!!$(2$ 
  813. XM@(1"((   $  (((A"@B( A$ @( A! "$@@,8Q((A((A( ($(B)(2$0$" 0 @
  814. XMB  $  @  "  0  @   $ (           0         ! ( A&.          
  815. XM   <#@<#@<     _/X<#@                #@<#@<#@<  _  .  ?T$E" 
  816. XM ! !%T$     ""$$$$ A(0$ !$(@@P& @  0!$<*"8@"$0" @"$$ (4" JBD
  817. XM@B$@B$P @0B(DA(* 0(! "$$   ."X.AH/'X/2X<!P1@A)&X/&X.FX.GXQG=
  818. XMQW.YW\$ @"  D            !P.!P.!P    'X_AP.                 
  819. XM.!P.!P.!P 'X  0  D(!H$  $ $/@0     0(00 @$(A\7@(9""# 8$#^ @(
  820. XM21$/" (1\/B /P0 AH("J*2"(B"(AP"!"(BJ# H" @" (    !,,Q&)A&$!C
  821. XM,P0!!$"#:,Q&,Q,,1&$!"(B2(1"0@0" ( "0            ' X' X'     
  822. XM/S^' X                 X' X' X'  /P !  "08! I  0 0</X /X ! A
  823. XM! $!PB 9C @^,8   @  !!!)$0B( A$ @( A! "$@@)(E((L((\!P($(4*H,
  824. XM! (" ( @     0A()"((0$(A! $$@()(A((A(0@$(0$(B)(2$($&   8    
  825. XM           <#@<#@<    !^/X<#@                #@<#@<#@< !^  $
  826. XM  ) 8+$8 ! !!0$     ("$$ @!D( D$"",>@  ! _@($$81"$@"$0" AR$$
  827. XM (1" DB4@B @B(!@@0A0;!($! ( 0"     /"$@$(_! 1B$$ 04 @DB$@B$A
  828. XM" ,! 0A0N@P) @$  "  #            !P.!P.!P    #\_AP.         
  829. XM        .!P.!P.!P #\    #^ 120@ $ $(@0     @(00$ "?P"00000" 
  830. XM  "  !  0#^(2"(1 (""(00 A$(""(R"(""(@""!"%!$$@0$ @! (    !$(
  831. XM2 0B $!\(00!!H""2(2"(2$( ,$!"%!L# D$ 0" (  2            ' X'
  832. XM X'     ?C^' X                 X' X' X'  ?@    $A!))"  0 0 !
  833. XM     $ A! @(("()!!!! 0   $  (  @H(A((A$ @((A!!"$(@((C((@((A(
  834. XM(($(($0A! A" " @    (0A()"((0, A! $$0()(A((A(0@((1$(4$02!0@!
  835. XM ( @ !(            <#@<#@<     _/X<#@                #@<#@<#
  836. XM@<  _  $  2&$$D4  @"    P  P0"$$$$Q (Q&($&(! P& ( ! $#$@B,Q"
  837. XM(0B QB$$&80B$@B$Q" Q"$Q@@9 @1"$$"$( ("     S#(Q&8Q! @"$$ 00@
  838. XM@DB$Q#(S" PAD9@@1"$&$$$ @"  $@           !P.!P.!P    'X_AP. 
  839. XM                .!P.!P.!P 'X  0 !(7@,.8 " (   #  #" 'A\?QX A
  840. XMX/ 0/ 8# 8 0 ( 0#G'?AX?#^<!Z<Y\/#G?W'<1X<!X<Z\/@X"!$<XX?P@ 0
  841. XM(    !V+!X.QX?!^<Y\!#G/G;<YX+!T<"\#@["!$<X(?P0" (  2        
  842. XM  !_O]_O]_O]_O]_O__O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O\ /]_O]_O]
  843. XM_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]
  844. XM_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]
  845. XM_O]_O]_O]_O]_O]_O]_O]_O\   <#@<#@<    !^/X<#@               
  846. XM #@<#@<#@< !^       @     ((    @                     $     
  847. XM                           $              /  >              
  848. XM@0  $0       " !           $  #@@<               !P.!P.!P   
  849. XM #\_AP.                 .!P.!P.!P #\                  $     
  850. XM                 @                                (         
  851. XM                      "#   9        ( $           @         
  852. XM                                                            
  853. XM                                                            
  854. XM             8                               'X   X       !P
  855. XM X          ,                                               
  856. XM                                                            
  857. XM                                                            
  858. XJ                                                        
  859. Xend
  860. END_OF_FILE
  861. # end of 'font-16/User9x18ru'
  862. fi
  863. if test -f 'font-32/Ucolossus12x20' -a "${1}" != "-c" ; then 
  864.   echo shar: Will not clobber existing file \"'font-32/Ucolossus12x20'\"
  865. else
  866. echo shar: Extracting \"'font-32/Ucolossus12x20'\" \(4012 characters\)
  867. sed "s/^X//" >'font-32/Ucolossus12x20' <<'END_OF_FILE'
  868. Xbegin 644 colossus12x20.fnt
  869. XM& P4 E\@                                                    
  870. XM                                                            
  871. XM                                                            
  872. XM                                                            
  873. XM                                                            
  874. XM                                                            
  875. XM                                  !@#8  #0.$'P!@ P#         
  876. XM   $/\'@/\/P8&?X/\?^'X'\          '\  #\/X/\?\/\/^/\8& P &8(
  877. XM& _\?\/\/\/\?P/\?^8&8&P#8&8&?^#P( #P!@  "                   
  878. XM                                   P  !@ (    !@#8#8#0;,,8!@
  879. XM!@!@           $8.!@,& 88&8 8, &,,,&          ,&/\&&8,8,8&8 
  880. XM8 8,8& P &88& QF8&8&8&8&888,!@8&8&P#8&8& &# (  P#P  #   ,   
  881. XM ,  #X  ,     , !@              !@            !@   P'X    !@
  882. XM#8#8/^;(,8!@#  P           ,8.!@ & 88&8 8  &,,,&     (  $ ,&
  883. XM8&&&8,8 8&8 8 8 8& P &88& QF8&8&8&8&888 !@8&8&P#8&8& &# ,  P
  884. XM&8  !@  ,    ,  &8  ,     , !@              !@            !@
  885. XM!@ P'X    !@#8#8;6;8,8!@#  P  !@       (8>!@ & 88&8 8  &,,,&
  886. XM#@   8  &  &8&&&8,8 8&8 8 8 8& P &88& QF8&8&8&8&888 !@8&8&P#
  887. XM8&8& ,# $  P,,   @  ,    ,  &   , !@ ,, !@              !@  
  888. XM          !@!@ P$     !@  #8;0.0,8  #  P!@!@       886!@ & 8
  889. XM8&8 8  &,,,&#@   P  #  &9F&&8,8 8&8 8 8 8& P &88& QF8&8&8&8&
  890. XM888 !@8&8&P#8&8& 8# &  P        ,    ,  &   , !@ ,, !@      
  891. XM        !@            !@!@ P      !@  /^;0 P,8  #  P!@!@    
  892. XM   08V!@ & 88&8 8  &,,,&#@  !@'X!@ &:6&&8,8 8&8 8 8 8& P &88
  893. XM& QF8&8&8&8&888 !@8&8&P#,,8& P# "  P        ,    ,  &   ,   
  894. XM  , !@              /\            !@!@ P      !@  #8;0 @'P  
  895. XM#  P'X!@       P8F!@ & 88&8 8  ,,,,&  #@# 'X P ,:6&&8,8 8&8 
  896. XM8 8 8& P &88& QF8&8&8&8&888 !@8&8&P#&88&!@# #  P      'X/X'\
  897. XM'\'X& '\, !@ ,,8!@?^/X'X'X'P'X'X#@,,,,8#.,,,/\!@!@ P      !@
  898. XM  #8/\!@/V  #  P#P/\  'X   @9F!@/\/X?^?\?\ 8'X'^  #@&    8 8
  899. XM:6'^?^< <&?P?P8 ?^ P &?\& QF8&<&?\8&?\/\!@8&8&P##P/\# # !  P
  900. XM      &,.,.,,<.,/X,</X!@ ,,P!@8S,,.,,,,8,8,8#@,,,,8#.,,, ,#@
  901. XM!@ X      !@  #8#6! 86  #  P#P!@  'X  !@9&!@>  < > &>& X.$ >
  902. XM  #@&    8 P:6.&>&> >&> > 8>>&!P .>&. X&<&>&> 8.>& &#@<&<&XS
  903. XM#P#P& # !@ P       ,.,. ,<.,' ,<.,!@ ,-@!@8S,,.,,,,8, , #@,,
  904. XM,,8#&8,, 8#@!@ X      !@  #8#6# 86  #  P'X!@      ! ;&'P>  >
  905. XM > &>&!X>& >    # 'X P!@:6>&>&> >&> > 8>>&#P >>&> \&>&>&> 8>
  906. XM>& &'@>&>&\S&8#P. #  @ P      '\.,. ,<.,' ,<.,!@ ,/ !@8S,,.,
  907. XM,,,8, , #@,<,,8##P,, P!@!@ P      !@  /^#6" 8<  #  P!@!@    
  908. XM  # :&'P>  > >>&>&!X>& >#@  !@'X!@!@:6>&>&> >&> > 8>>&#P >>&
  909. XM> \&>&>&> 8>>&>&'@>&>&\S.,#P> #  P P      ,<.,. ,</\' ,<.,#@
  910. XM ,/X!P<S.,.,,,,8. 'X#@,<,,<S!@,,!@!@!@ P      !@  #8#6&<8<  
  911. XM#  P!@!@      " >&'P>  > >>&>&!X>& >#@   P  # !@9^>&>&> >&> 
  912. XM> 8>>&#P8>>&> \&>&>&> 8>>&>&'@>&>&\S>&#P> #  0 P      ,<.,. 
  913. XM,<. ' ,<.,#@ <.,!P<S.,.,,,,8.  ,#@,<.,<S#P,,# !@!@ P      !@
  914. XM  #8;6$V8<  #  P    #@    & <&'P>  > >>&>&!X>& >#@#@ 8  & !@
  915. XM8 >&>&> >&> > 8>>&#P8>>&> \&>&>&> 8>>&>&'@>&.,\S>&#P> #  8 P
  916. XM      ,<.,. ,<. ' 'X.,#@ <.,!P<S.,.,,,,8. .,#@,</,<S&8,,& !@
  917. XM!@ P          #8?\,V8<  #  P    #@  #@$ <&'P>  > >>&>&!X>& >
  918. XM  #@ (  $   8&>&>&> >&> > 8>>&#P8>>&> \&>&>&> 8?>&>&'@>&&8\S
  919. XM>&#P> #  ( P      ,<.,. ,<. ' # .,#@ <.,!P<S.,.,/X'X. .,#@,<
  920. XM'8<S.,/\. !@!@ P      !@  #8#0(V8>  !@!@    #@  #@, <&'P>  >
  921. XM >>&>&!X>&,>  #@      !@/^>&>&>&>&> > 8>>&#P8>>&> \&>&>&> 8?
  922. XM>&>&'@>&#P\S>&#P> #  , P      ,<.,.,,<.,' #\.,#@ <.,!P<S.,.,
  923. XM.  8. .,#L,<#P<S., <. !@   P      !@    #0(</^   P#      @  
  924. XM#@( /\'P/^/\ >/\/\!X/\/\   @      !@  >&?\/^?\?^> /^>&#P/\>&
  925. XM?^\&>&/\> ?_>&/\'@/\!@?^>&#P?^#P $#P  __  '\/X'\'\'\'  <.,#@
  926. XM <.,!P<S.,'X.  8. 'X!\'\!@/^., </\ P  !@                    
  927. XM        #@                            #@                    
  928. XM                                                            
  929. XM      ,<    &<          .  <              &<                
  930. XM                                                            
  931. XM                                                            
  932. XM                  /\    'X          .  <              '\    
  933. X&        
  934. Xend
  935. END_OF_FILE
  936. # end of 'font-32/Ucolossus12x20'
  937. fi
  938. if test -f 'font-32/User9x18r' -a "${1}" != "-c" ; then 
  939.   echo shar: Will not clobber existing file \"'font-32/User9x18r'\"
  940. else
  941. echo shar: Extracting \"'font-32/User9x18r'\" \(3807 characters\)
  942. sed "s/^X//" >'font-32/User9x18r' <<'END_OF_FILE'
  943. Xbegin 644 ser9x18r.fnt
  944. XM& D2!H8              'X_AP.                                 
  945. XM                                                            
  946. XM                                                            
  947. XM                                ' X' X'     /S^' X          
  948. XM       X' X' X'  /P ! 2  (    @""         (      $  &       
  949. XM     #P !!\#I^/Y_#ISGP/N-P8-CCQ^#Q^'K_N?C\=S\=_#Q '@   0 !@ 
  950. XM &  / !@! $, X           0          X('  .             <#@<#
  951. XM@<    !^/X<#@                #@<#@<#@< !^  .!($@@8!@" 0$    
  952. XM    !!X$!X/ @?A@_AP/    $ " 1@P$"(1B,0B$1B$$ (0B @B$1B,1B,QH
  953. XMB0D$@B$@D((" " @ !  "   ( !B " $ 00 @          !          $ 
  954. XM@"#$D            !P.!P.!P    #\_AP.                 .!P.!P.!
  955. XMP #\  X$@2/20) 0" ("       $(0P(Q&"! ("&)A&    @ $"",@H(B"(1
  956. XM (""(00 A$(#&,2"(2"(2""!"022(1$0@@( (%  "  (   @ $  (   ! " 
  957. XM          $          0" (220            ' X' X'     ?C^' X  
  958. XM               X' X' X'  ?@ #@2!)#)(@" ( @(!      @A%!!$(2$ 
  959. XM@(1"((   $  (((A"@B( A$ @( A! "$@@,8Q((A((A( ($(B)(2$0$" 0 @
  960. XMB  $  @  "  0  @   $ (           0         ! ( A&.          
  961. XM   <#@<#@<     _/X<#@                #@<#@<#@<  _  .  ?T$E" 
  962. XM ! !%T$     ""$$$$ A(0$ !$(@@P& @  0!$<*"8@"$0" @"$$ (4" JBD
  963. XM@B$@B$P @0B(DA(* 0(! "$$   ."X.AH/'X/2X<!P1@A)&X/&X.FX.GXQG=
  964. XMQW.YW\$ @"  D            !P.!P.!P    'X_AP.                 
  965. XM.!P.!P.!P 'X  0  D(!H$  $ $/@0     0(00 @$(A\7@(9""# 8$#^ @(
  966. XM21$/" (1\/B /P0 AH("J*2"(B"(AP"!"(BJ# H" @" (    !,,Q&)A&$!C
  967. XM,P0!!$"#:,Q&,Q,,1&$!"(B2(1"0@0" ( "0            ' X' X'     
  968. XM/S^' X                 X' X' X'  /P !  "08! I  0 0</X /X ! A
  969. XM! $!PB 9C @^,8   @  !!!)$0B( A$ @( A! "$@@)(E((L((\!P($(4*H,
  970. XM! (" ( @     0A()"((0$(A! $$@()(A((A(0@$(0$(B)(2$($&   8    
  971. XM           <#@<#@<    !^/X<#@                #@<#@<#@< !^  $
  972. XM  ) 8+$8 ! !!0$     ("$$ @!D( D$"",>@  ! _@($$81"$@"$0" AR$$
  973. XM (1" DB4@B @B(!@@0A0;!($! ( 0"     /"$@$(_! 1B$$ 04 @DB$@B$A
  974. XM" ,! 0A0N@P) @$  "  #            !P.!P.!P    #\_AP.         
  975. XM        .!P.!P.!P #\    #^ 120@ $ $(@0     @(00$ "?P"00000" 
  976. XM  "  !  0#^(2"(1 (""(00 A$(""(R"(""(@""!"%!$$@0$ @! (    !$(
  977. XM2 0B $!\(00!!H""2(2"(2$( ,$!"%!L# D$ 0" (  2            ' X'
  978. XM X'     ?C^' X                 X' X' X'  ?@    $A!))"  0 0 !
  979. XM     $ A! @(("()!!!! 0   $  (  @H(A((A$ @((A!!"$(@((C((@((A(
  980. XM(($(($0A! A" " @    (0A()"((0, A! $$0()(A((A(0@((1$(4$02!0@!
  981. XM ( @ !(            <#@<#@<     _/X<#@                #@<#@<#
  982. XM@<  _  $  2&$$D4  @"    P  P0"$$$$Q (Q&($&(! P& ( ! $#$@B,Q"
  983. XM(0B QB$$&80B$@B$Q" Q"$Q@@9 @1"$$"$( ("     S#(Q&8Q! @"$$ 00@
  984. XM@DB$Q#(S" PAD9@@1"$&$$$ @"  $@           !P.!P.!P    'X_AP. 
  985. XM                .!P.!P.!P 'X  0 !(7@,.8 " (   #  #" 'A\?QX A
  986. XMX/ 0/ 8# 8 0 ( 0#G'?AX?#^<!Z<Y\/#G?W'<1X<!X<Z\/@X"!$<XX?P@ 0
  987. XM(    !V+!X.QX?!^<Y\!#G/G;<YX+!T<"\#@["!$<X(?P0" (  2        
  988. XM    ' X' X'     /S^' X                 X' X' X'  /P      (  
  989. XM   $!    $   (              &   @                           
  990. XM    #              " ! @ /\          ,$   $        @ 0      
  991. XM    !  ! ( @  P            <#@<#@<    !^/X<#@               
  992. XM #@<#@<#@< !^       @     ((    @                     $     
  993. XM                           $              /  >              
  994. XM@0  $0       " !           $  #@@<               !P.!P.!P   
  995. XM #\_AP.                 .!P.!P.!P #\                  $     
  996. XM                 @                                (         
  997. XM                      "#   9        ( $           @         
  998. XM                                                            
  999. XM                                                            
  1000. XM             8                               'X   X       !P
  1001. XM X          ,                                               
  1002. XM                                                            
  1003. XM                                                            
  1004. XJ                                                        
  1005. Xend
  1006. END_OF_FILE
  1007. # end of 'font-32/User9x18r'
  1008. fi
  1009. if test -f 'font-32/User9x18rI' -a "${1}" != "-c" ; then 
  1010.   echo shar: Will not clobber existing file \"'font-32/User9x18rI'\"
  1011. else
  1012. echo shar: Extracting \"'font-32/User9x18rI'\" \(3808 characters\)
  1013. sed "s/^X//" >'font-32/User9x18rI' <<'END_OF_FILE'
  1014. Xbegin 644 ser9x18rI.fnt
  1015. XM& D2!H8 _____________X' >/Q___________________________X  '__
  1016. XM____________________________________________________________
  1017. XM____________________________________________________________
  1018. XM_____________________________ #_X_'X_'X_____P,!X_'__________
  1019. XM_______'X_'X_'X__OP >_M__W____?]]_________W______[__Y_______
  1020. XM_____\/_^^#\6!P& \6,8/P1R/GR<<.!\.!X4 1@<#B,#B \._X?___O_^?_
  1021. XM_Y__P_^?^_[S_'___________O__________'WX__Q_________\ /_C\?C\
  1022. XM?C____^!P'C\?________________\?C\?C\?C__^ !Q^W[??G^?]_O[____
  1023. XM____^^'[^'P_?@>? >/P____[_]_N?/[]WN=SO=[N=[[_WO=_?=[N=SN=S.7
  1024. XM=O;[?=[?;WW]_]_?_^__]___W_^=_]_[_OO_?__________^__________[_
  1025. XM?]\[;_________P _^/Q^/Q^/____\# >/Q_________________Q^/Q^/Q^
  1026. XM/_[\ ''[?MPMOV_O]_W]_______[WO/W.Y]^_W]YV>Y____?_[]]S?7W=]WN
  1027. XM_W]]WOO_>[W\YSM]WM]WM]]^]OMMWN[O??W_WZ__]__W___?_[__W___^_]_
  1028. XM__________[__________O]_WMMO_________ #_X_'X_'X_____@<!X_'__
  1029. XM_______________'X_'X_'X___@ <?M^V\VW?]_W_?W^______?>Z^^[WM[_
  1030. XM?WN]WW___[__WWW>]?=W_>[_?W_>^_][??SG.WW>WW>W_W[W=VWM[O[]_O_?
  1031. XM=__[__?__]__O__?___[_W___________O_________^_W_>YQ_________\
  1032. XM /_C\?C\?C_____ P'C\?________________\?C\?C\?C_^_ !Q__@+[:]_
  1033. XM_^_^Z+[_____]][[[[_>WO[_^[W??/Y_?__O^[CU]G?][O]_?][[_WK]_5=;
  1034. XM?=[?=[/_?O=W;>WU_OW^_][[___Q]'Q>7PX'PM'C^/N?>VY'PY'Q9'Q8'.8B
  1035. XM.(Q&(#[_?]__;_________P _^/Q^/Q^/____X' >/Q_________________
  1036. XMQ^/Q^/Q^/__X 'O__;W^7[__[_[P?O_____OWOO_?[W>#H?WF]]\_G[\!_?W
  1037. XMMN[P]_WN#P=_P/O_>7W]5UM]W=]W>/]^]W=5\_7]_?]_W____^SS.YV>Y[^<
  1038. XMS/O^^[]\ES.YS.SSNY[^]W=MWN]O?O]_W_]O_________ #_X_'X_'X_____
  1039. XMP,!X_'_________________'X_'X_'X__OP >__]OG^_6__O_OCP'_P'_^_>
  1040. XM^_[^/=_F<_?!SG___?__^^^V[O=W_>[_?W_>^_][??VW:WW3WW#^/W[WKU7S
  1041. XM^_W]_W_?_____O>WV]WWO[W>^_[[?WVW>WW>WO?[WO[W=VWM[W[Y___G____
  1042. XM_______\ /_C\?C\?C____^!P'C\?________________\?C\?C\?C__^ ![
  1043. XM__V_GT[G_^_^^O[_____W][[_?^;W_;[]]SA?__^_ ?W[[GN][?][O]_>-[[
  1044. XM_WN]_;=K?=_?=W^??O>OD^W[^_W_O]_____P][?[W ^_N=[[_OK_?;=[?=[>
  1045. XM]_S^_O>O1?/V_?[__]__\_________P _^/Q^/Q^/____\# >/Q_________
  1046. XM________Q^/Q^/Q^/_[\ '__\!_NMO?_[_[W?O_____?WOO[_]@/]OOOOO]_
  1047. XM__]__^__O\!WM]WN_W]]WOO_>[W]]W-]W]]W?]]^]Z^[[?O[_?^_W____^[W
  1048. XMM_O=_[^#WOO^^7]]MWM]WM[W_S[^]Z^3\_;[_O]_W__M_________ #_X_'X
  1049. XM_'X_____@<!X_'_________________'X_'X_'X___@ ?__[>^VV]__O_O_^
  1050. XM_____[_>^_?WW]WV^^^^_O___[__W__?7W>WW>[_?WW>^^][W?WW<WW?WW>W
  1051. XMWW[WW[O>^_>]_]_?____WO>WV]WWOS_>^_[[OWVW>WW>WO?WWN[WK[OM^O?^
  1052. XM_W_?_^W________\ /_C\?C\?C_____ P'C\?________________\?C\?C\
  1053. XM?C_^_ ![__MY[[;K__?]____/__/O][[[[._W.YW[YW^_/Y_W_^_[\[?=S.]
  1054. XMWO=_.=[[YGO=[?=[.]_.][.??F_?N][[][W_W]_____,\W.YG.^_?][[_OO?
  1055. XM?;=[.\W,]_/>;F??N][Y[[[_?]__[?________P _^/Q^/Q^/____X' >/Q_
  1056. XM________________Q^/Q^/Q^/__X 'O_^WH?SQG_]_W___\__\]_X>#@.'_>
  1057. XM'P_OP_G\_G_O_W_O\8X@>'@\!C^%C&#P\8@(XCN'C^'C%#P?']^[C''@/?_O
  1058. XMW____^)T^'Q.'@^!C&#^\8P8DC&'T^+C]#\?$]^[C'W@/O]_W__M________
  1059. XM_ #_X_'X_'X_____P,!X_'_________________'X_'X_'X__OP ?____W__
  1060. XM___[^____[___W______________Y___?___________________________
  1061. XM____\______________]_^_?_P#__________S[___[________?_O______
  1062. XM____^__^_W_?__/________\ /_C\?C\?C____^!P'C\?_______________
  1063. XM_\?C\?C\?C__^ !_____?_____WW____?_____________________[_____
  1064. XM___________________________[______________P__A______________
  1065. XM?O__[O_______]_^___________[__\??C____________P _^/Q^/Q^/___
  1066. XM_\# >/Q_________________Q^/Q^/Q^/_[\ '________________[_____
  1067. XM_________________?________________________________W_________
  1068. XM______________________]\___F________W_[___________?_________
  1069. XM_________ #______________________________________________@  
  1070. XM?___________________________________________________________
  1071. XM_____________G_______________________________X'___'_______^/
  1072. XM_'__________S__________________\ /__________________________
  1073. XM___________________^  !_____________________________________
  1074. XM____________________________________________________________
  1075. XJ______________________________________________________P 
  1076. Xend
  1077. END_OF_FILE
  1078. # end of 'font-32/User9x18rI'
  1079. fi
  1080. if test -f 'font-32/User9x18ru' -a "${1}" != "-c" ; then 
  1081.   echo shar: Will not clobber existing file \"'font-32/User9x18ru'\"
  1082. else
  1083. echo shar: Extracting \"'font-32/User9x18ru'\" \(3808 characters\)
  1084. sed "s/^X//" >'font-32/User9x18ru' <<'END_OF_FILE'
  1085. Xbegin 644 ser9x18ru.fnt
  1086. XM& D2!H8              'X_AP.                                 
  1087. XM                                                            
  1088. XM                                                            
  1089. XM                                ' X' X'     /S^' X          
  1090. XM       X' X' X'  /P ! 2  (    @""         (      $  &       
  1091. XM     #P !!\#I^/Y_#ISGP/N-P8-CCQ^#Q^'K_N?C\=S\=_#Q '@   0 !@ 
  1092. XM &  / !@! $, X           0          X('  .             <#@<#
  1093. XM@<    !^/X<#@                #@<#@<#@< !^  .!($@@8!@" 0$    
  1094. XM    !!X$!X/ @?A@_AP/    $ " 1@P$"(1B,0B$1B$$ (0B @B$1B,1B,QH
  1095. XMB0D$@B$@D((" " @ !  "   ( !B " $ 00 @          !          $ 
  1096. XM@"#$D            !P.!P.!P    #\_AP.                 .!P.!P.!
  1097. XMP #\  X$@2/20) 0" ("       $(0P(Q&"! ("&)A&    @ $"",@H(B"(1
  1098. XM (""(00 A$(#&,2"(2"(2""!"022(1$0@@( (%  "  (   @ $  (   ! " 
  1099. XM          $          0" (220            ' X' X'     ?C^' X  
  1100. XM               X' X' X'  ?@ #@2!)#)(@" ( @(!      @A%!!$(2$ 
  1101. XM@(1"((   $  (((A"@B( A$ @( A! "$@@,8Q((A((A( ($(B)(2$0$" 0 @
  1102. XMB  $  @  "  0  @   $ (           0         ! ( A&.          
  1103. XM   <#@<#@<     _/X<#@                #@<#@<#@<  _  .  ?T$E" 
  1104. XM ! !%T$     ""$$$$ A(0$ !$(@@P& @  0!$<*"8@"$0" @"$$ (4" JBD
  1105. XM@B$@B$P @0B(DA(* 0(! "$$   ."X.AH/'X/2X<!P1@A)&X/&X.FX.GXQG=
  1106. XMQW.YW\$ @"  D            !P.!P.!P    'X_AP.                 
  1107. XM.!P.!P.!P 'X  0  D(!H$  $ $/@0     0(00 @$(A\7@(9""# 8$#^ @(
  1108. XM21$/" (1\/B /P0 AH("J*2"(B"(AP"!"(BJ# H" @" (    !,,Q&)A&$!C
  1109. XM,P0!!$"#:,Q&,Q,,1&$!"(B2(1"0@0" ( "0            ' X' X'     
  1110. XM/S^' X                 X' X' X'  /P !  "08! I  0 0</X /X ! A
  1111. XM! $!PB 9C @^,8   @  !!!)$0B( A$ @( A! "$@@)(E((L((\!P($(4*H,
  1112. XM! (" ( @     0A()"((0$(A! $$@()(A((A(0@$(0$(B)(2$($&   8    
  1113. XM           <#@<#@<    !^/X<#@                #@<#@<#@< !^  $
  1114. XM  ) 8+$8 ! !!0$     ("$$ @!D( D$"",>@  ! _@($$81"$@"$0" AR$$
  1115. XM (1" DB4@B @B(!@@0A0;!($! ( 0"     /"$@$(_! 1B$$ 04 @DB$@B$A
  1116. XM" ,! 0A0N@P) @$  "  #            !P.!P.!P    #\_AP.         
  1117. XM        .!P.!P.!P #\    #^ 120@ $ $(@0     @(00$ "?P"00000" 
  1118. XM  "  !  0#^(2"(1 (""(00 A$(""(R"(""(@""!"%!$$@0$ @! (    !$(
  1119. XM2 0B $!\(00!!H""2(2"(2$( ,$!"%!L# D$ 0" (  2            ' X'
  1120. XM X'     ?C^' X                 X' X' X'  ?@    $A!))"  0 0 !
  1121. XM     $ A! @(("()!!!! 0   $  (  @H(A((A$ @((A!!"$(@((C((@((A(
  1122. XM(($(($0A! A" " @    (0A()"((0, A! $$0()(A((A(0@((1$(4$02!0@!
  1123. XM ( @ !(            <#@<#@<     _/X<#@                #@<#@<#
  1124. XM@<  _  $  2&$$D4  @"    P  P0"$$$$Q (Q&($&(! P& ( ! $#$@B,Q"
  1125. XM(0B QB$$&80B$@B$Q" Q"$Q@@9 @1"$$"$( ("     S#(Q&8Q! @"$$ 00@
  1126. XM@DB$Q#(S" PAD9@@1"$&$$$ @"  $@           !P.!P.!P    'X_AP. 
  1127. XM                .!P.!P.!P 'X  0 !(7@,.8 " (   #  #" 'A\?QX A
  1128. XMX/ 0/ 8# 8 0 ( 0#G'?AX?#^<!Z<Y\/#G?W'<1X<!X<Z\/@X"!$<XX?P@ 0
  1129. XM(    !V+!X.QX?!^<Y\!#G/G;<YX+!T<"\#@["!$<X(?P0" (  2        
  1130. XM  !_O]_O]_O]_O]_O__O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O\ /]_O]_O]
  1131. XM_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]
  1132. XM_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]
  1133. XM_O]_O]_O]_O]_O]_O]_O]_O\   <#@<#@<    !^/X<#@               
  1134. XM #@<#@<#@< !^       @     ((    @                     $     
  1135. XM                           $              /  >              
  1136. XM@0  $0       " !           $  #@@<               !P.!P.!P   
  1137. XM #\_AP.                 .!P.!P.!P #\                  $     
  1138. XM                 @                                (         
  1139. XM                      "#   9        ( $           @         
  1140. XM                                                            
  1141. XM                                                            
  1142. XM             8                               'X   X       !P
  1143. XM X          ,                                               
  1144. XM                                                            
  1145. XM                                                            
  1146. XJ                                                        
  1147. Xend
  1148. END_OF_FILE
  1149. # end of 'font-32/User9x18ru'
  1150. fi
  1151. if test -f 'src/icons-32.h' -a "${1}" != "-c" ; then 
  1152.   echo shar: Will not clobber existing file \"'src/icons-32.h'\"
  1153. else
  1154. echo shar: Extracting \"'src/icons-32.h'\" \(3859 characters\)
  1155. sed "s/^X//" >'src/icons-32.h' <<'END_OF_FILE'
  1156. X/*                        Copyright (c) 1987 Bellcore
  1157. X *                            All Rights Reserved
  1158. X *       Permission is granted to copy or use this program, EXCEPT that it
  1159. X *       may not be sold for profit, the copyright notice must be reproduced
  1160. X *       on copies, and credit should be given to Bellcore where it is due.
  1161. X *       BELLCORE MAKES NO WARRANTY AND ACCEPTS NO LIABILITY FOR THIS PROGRAM.
  1162. X */
  1163. X/*    $Header: icons-32.h,v 4.1 88/06/21 13:33:58 bianchi Exp $
  1164. X    $Source: /tmp/mgrsrc/src/RCS/icons-32.h,v $
  1165. X*/
  1166. Xstatic char    h_icons_[] = "$Source: /tmp/mgrsrc/src/RCS/icons-32.h,v $$Revision: 4.1 $";
  1167. X
  1168. X/********************************************************
  1169. X *
  1170. X * mouse icons for mgr
  1171. X *
  1172. X *    (0,0)->(15,15) => icon
  1173. X *    (0,16)->(15,31) => outline (mask) of icon
  1174. X */
  1175. X
  1176. Xshort c_arrow1[] = {            /* up left arrow */
  1177. X    0x0000,    0x0000, 0x7f80,    0x0000, 0x7d00,    0x0000, 0x7800, 0x0000,
  1178. X    0x7c00, 0x0000,    0x6e00, 0x0000,    0x4700, 0x0000,    0x6380, 0x0000,
  1179. X    0x41c0, 0x0000,    0x00e0, 0x0000,    0x0070, 0x0000,    0x0038, 0x0000,
  1180. X    0x001c, 0x0000,    0x000c, 0x0000,    0x0000, 0x0000,    0x0000, 0x0000,
  1181. X
  1182. X    0xffc0, 0x0000,    0x8040, 0x0000,    0x82c0, 0x0000,    0x8700, 0x0000,
  1183. X    0x8200, 0x0000,    0x9100, 0x0000,    0xb880, 0x0000,    0x9440, 0x0000,
  1184. X    0xa220, 0x0000,    0xe110, 0x0000,    0x0088, 0x0000,    0x0044, 0x0000,
  1185. X    0x0022, 0x0000,    0x0012, 0x0000,    0x000e, 0x0000,    0x0000, 0x0000,
  1186. X    };
  1187. X
  1188. Xshort c_box[] = {            /* box for creating/shaping windows */
  1189. X    0x0000, 0x0000,    0x7ffe, 0x0000,    0x7ffe, 0x0000,    0x6006, 0x0000,
  1190. X    0x6006, 0x0000,    0x6006, 0x0000,    0x6006, 0x0000,    0x6006, 0x0000,
  1191. X    0x6006, 0x0000,    0x6006, 0x0000,    0x6006, 0x0000,    0x6006, 0x0000,
  1192. X    0x6006, 0x0000,    0x7ffe, 0x0000,    0x7ffe, 0x0000,    0x0000, 0x0000,
  1193. X
  1194. X    0xffff, 0x0000,    0x8001, 0x0000,    0x8001, 0x0000,    0x8001, 0x0000,
  1195. X    0x8001, 0x0000,    0x8001, 0x0000,    0x8001, 0x0000,    0x8001, 0x0000,
  1196. X    0x8001, 0x0000,    0x8001, 0x0000,    0x8001, 0x0000,    0x8001, 0x0000,
  1197. X    0x8001, 0x0000,    0x8001, 0x0000,    0x8001, 0x0000,    0xffff, 0x0000,
  1198. X    };
  1199. X
  1200. Xshort c_cup[] = {            /* coffee-cup (for waiting) */
  1201. X    0x0FCC, 0x0000,    0x1878, 0x0000,    0x0FF0, 0x0000,    0x00C0, 0x0000,
  1202. X    0x0780, 0x0000,    0x0000, 0x0000,    0x1FF0, 0x0000,    0x181C, 0x0000,
  1203. X    0x181E, 0x0000,    0x1816, 0x0000,    0x181E, 0x0000,    0x1C3C, 0x0000,
  1204. X    0x0FE0, 0x0000,    0x07C0, 0x0000,    0x1FF0, 0x0000,    0x1FF0, 0x0000,
  1205. X
  1206. X    0x1032, 0x0000,    0x2784, 0x0000,    0x1008, 0x0000,    0x0b20, 0x0000,
  1207. X    0x0840, 0x0000,    0x1ff0, 0x0000,    0x200c, 0x0000,    0x27e2, 0x0000,
  1208. X    0x2421, 0x0000,    0x2429, 0x0000,    0x2421, 0x0000,    0x23c2, 0x0000,
  1209. X    0x101c, 0x0000,    0x0830, 0x0000,    0x2008, 0x0000,    0x2008, 0x0000,
  1210. X    };
  1211. X
  1212. Xshort c_cross[] = {            /* cross for drawing lines */
  1213. X    0x0000,    0x0400,    0x0400,    0x0400,
  1214. X    0x0400,    0x7fc0,    0x0400,    0x0400,
  1215. X    0x0400,    0x0400,    0x0000,    0x0000,
  1216. X    0x0000,    0x0000,    0x0000,    0x0000,
  1217. X    
  1218. X    0x0e00,    0x0a00,    0x0a00,    0x0a00,
  1219. X    0xfbe0,    0x8020,    0xfbe0,    0x0a00,
  1220. X    0x0a00,    0x0a00,    0x0e00,    0x0000,
  1221. X    0x0000,    0x0000,    0x0000,    0x0000,
  1222. X    };
  1223. X
  1224. Xshort c_cut[] = {            /* scissors for cutting text */
  1225. X    0x0000, 0x0000,    0x3000, 0x0000,    0x4801, 0x0000,    0x480e, 0x0000,
  1226. X    0x4878, 0x0000,    0x39f0, 0x0000,    0x0780, 0x0000,    0x0780, 0x0000,
  1227. X    0x39f0, 0x0000,    0x4878, 0x0000,    0x480e, 0x0000,    0x4801, 0x0000,
  1228. X    0x3000, 0x0000,    0x0000, 0x0000,    0x0000, 0x0000,    0x0000, 0x0000,
  1229. X    
  1230. X    0x3000, 0x0000,    0x4801, 0x0000,    0x8406, 0x0000,    0x9431, 0x0000,
  1231. X    0x8584, 0x0000,    0x4210, 0x0000,    0x2040, 0x0000,    0x2040, 0x0000,
  1232. X    0x4210, 0x0000,    0x8584, 0x0000,    0x9431, 0x0000,    0x8406, 0x0000,
  1233. X    0x4801, 0x0000,    0x3000, 0x0000,    0x0000, 0x0000,    0x0000, 0x0000,
  1234. X    };
  1235. X
  1236. Xshort c_bull[] = {            /* bullet for menus */
  1237. X    0x0000, 0x0000, 0x1800, 0x0000, 0x2400, 0x0000, 0x5a00, 0x0000,
  1238. X    0x5a00, 0x0000, 0x2400, 0x0000, 0x1800, 0x0000, 0x0000, 0x0000,
  1239. X    };
  1240. Xshort c_bull2[] = {
  1241. X    0x0000, 0x0000, 0x0000, 0x0000, 0x1800, 0x0000, 0x2400, 0x0000,
  1242. X    0x2400, 0x0000, 0x1800, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
  1243. X    };
  1244. X
  1245. Xshort pat_data[] = {            /* background pattern */
  1246. X    0x8888, 0x0000,    0x4444, 0x0000,    0x1111, 0x0000,    0x2222, 0x0000,
  1247. X    };
  1248. END_OF_FILE
  1249. # end of 'src/icons-32.h'
  1250. fi
  1251. echo shar: End of archive 19 \(of 61\).
  1252. cp /dev/null ark19isdone
  1253. MISSING=""
  1254. for I in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 \
  1255.     21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 \
  1256.     38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 \
  1257.     55 56 57 58 59 60 61 ; do
  1258.     if test ! -f ark${I}isdone ; then
  1259.     MISSING="${MISSING} ${I}"
  1260.     fi
  1261. done
  1262. if test "${MISSING}" = "" ; then
  1263.     echo You have unpacked all 61 archives.
  1264.     rm -f ark[1-9]isdone ark[1-9][0-9]isdone
  1265. else
  1266.     echo You still need to unpack the following archives:
  1267.     echo "        " ${MISSING}
  1268. fi
  1269. ##  End of shell archive.
  1270. exit 0
  1271.