[comp.sources.unix] v17i020: MGR, Bellcore window manager, Part20/61

rsalz@uunet.uu.net (Rich Salz) (01/21/89)

Submitted-by: Stephen A. Uhler <sau@bellcore.com>
Posting-number: Volume 17, Issue 20
Archive-name: mgr/part20




#! /bin/sh
# This is a shell archive.  Remove anything before this line, then unpack
# it by saving it into a file and typing "sh file".  To overwrite existing
# files, type "sh file -c".  You can also feed this as standard input via
# unshar, or by typing "sh <file", e.g..  If this archive is complete, you
# will see the following message at the end:
#		"End of archive 19 (of 61)."
# Contents:  demo/misc/mgrmode.c demo/plot/subs.c doc/usrman/doc.0
#   font-16/Ucolossus12x20 font-16/User9x18r font-16/User9x18rI
#   font-16/User9x18ru font-32/Ucolossus12x20 font-32/User9x18r
#   font-32/User9x18rI font-32/User9x18ru src/icons-32.h
# Wrapped by rsalz@papaya.bbn.com on Thu Nov 17 21:05:22 1988
PATH=/bin:/usr/bin:/usr/ucb ; export PATH
if test -f 'demo/misc/mgrmode.c' -a "${1}" != "-c" ; then 
  echo shar: Will not clobber existing file \"'demo/misc/mgrmode.c'\"
else
echo shar: Extracting \"'demo/misc/mgrmode.c'\" \(3872 characters\)
sed "s/^X//" >'demo/misc/mgrmode.c' <<'END_OF_FILE'
X/*                        Copyright (c) 1988 Bellcore
X *                            All Rights Reserved
X *       Permission is granted to copy or use this program, EXCEPT that it
X *       may not be sold for profit, the copyright notice must be reproduced
X *       on copies, and credit should be given to Bellcore where it is due.
X *       BELLCORE MAKES NO WARRANTY AND ACCEPTS NO LIABILITY FOR THIS PROGRAM.
X */
X/*	$Header: mgrmode.c,v 4.2 88/06/22 14:37:52 bianchi Exp $
X	$Source: /tmp/mgrsrc/demo/misc/RCS/mgrmode.c,v $
X*/
Xstatic char	RCSid_[] = "$Source: /tmp/mgrsrc/demo/misc/RCS/mgrmode.c,v $$Revision: 4.2 $";
X
X/* set or clear an MGR window mode */
X
X#include <signal.h>
X#include "term.h"
X
X
X#define	SET	0
X#define	CLEAR	1
X
X#define	EQ(a,b)	(!strcmp(a,b))
X
Xstatic char	*allmodes[] = {
X	"ABS",
X	/*	ACTIVATE is not really a mode; it is actually an action.
X		We won't deactivate a window when CLEARALL is specified.
X	*/
X	"AUTOEXPOSE",
X	"BACKGROUND",
X	"DUPKEY",
X	"NOBUCKEY",
X	"NOINPUT",
X	"NOWRAP",
X	"OVERSTRIKE",
X	"SNARFHARD",
X	"SNARFLINES",
X	"SNARFTABS",
X	"STACK",
X	"STANDOUT",
X	"WOB",
X	0
X};
Xstatic char	*pgm;
X
X
Xmain(argc,argv)
Xint	argc;
Xchar	**argv;
X{
X	int	setclear = SET;
X
X	pgm = *argv;
X	ckmgrterm( pgm );
X
X	if( argc < 2 ) {
X		fprintf( stderr,
X			"Usage:  %s [ SETMODE | CLEARMODE ] mgr-modes ...\n",
X			pgm );
X		fputs( "\
XSet or clear MGR window modes.\n\
XSETMODE		(Default) Set the mode\n\
XCLEARMODE	Clear the mode\n\
XCLEARALL	Clear all modes, except ACTIVATE\n\
XModes include:\n\
XM_ABS		Turn on Absolute Coordinate mode.\n\
XM_ACTIVATE	Activate window (not really a mode).\n\
XM_AUTOEXPOSE	Expose window when written to.\n\
XM_BACKGROUND	Do not block window update when window is obscured.\n\
XM_DUPKEY	Duplicate the Escape character when from keyboard.\n\
XM_NOBUCKEY	Turn off mgr interpreting Left and Right (Buckey) keys;\n\
X		Pass them on to the application.\n\
XM_NOINPUT	Keyboard input is held until cleared or another window\n\
X		becomes active.\n\
XM_NOWRAP	Do not wrap around when text reaches right edge of window.\n\
XM_OVERSTRIKE	Turn on overstriking of text.\n\
XM_SNARFHARD	Snarf (cut) even if there are errors.\n\
XM_SNARFLINES	Only cut entire lines.\n\
XM_SNARFTABS	Change spaces to tabs within the snarf buffer.\n\
XM_STACK		Turn on event stacking.\n\
XM_STANDOUT	Write characters in standout mode (foreground and background\n\
X		colors reversed).\n\
XM_WOB		White On Black, entire window's sense of white and black is\n\
X		reversed.\n\
X`M_' may be omitted.  Lower case letters are permitted.  M_ABS == ABS == abs.\n\
X",
X			stderr );
X		exit( 255 );
X	}
X	m_setup( M_FLUSH );
X	argv++;
X	argc--;
X	for(  ;  *argv;  argv++, argc-- ) {
X		register char	*mode = *argv;
X
X		/* Uppercase modes are optional.  abs == ABS
X		*/
X		do {
X			if( *mode >= 'a'  &&  *mode <= 'z' )
X				*mode -= 'a' - 'A';
X		} while( *(mode++) );
X
X		mode = *argv;
X
X		if( EQ( mode, "SETMODE" ) ) {
X			setclear = SET;
X			continue;
X		}
X		if( EQ( mode, "CLEARMODE" ) ) {
X			setclear = CLEAR;
X			continue;
X		}
X		if( EQ( mode, "CLEARALL" ) ) {
X			char	**cpp;
X			for( cpp = allmodes;  *cpp;  cpp++ )
X				action( CLEAR, *cpp, *cpp );
X			continue;
X		}
X
X		/* M_ in front of mode is optional.  M_ABS == ABS
X		*/
X		if( mode[0] == 'M'  &&  mode[1] == '_' )
X			mode += 2;
X		action( setclear, mode, *argv );
X	}
X}
X
X
X#define	CASE(arg)	if( EQ("arg", mode) ) {\
X				switch( setclear ) {\
X				case SET:\
X					m_setmode( M_/**/arg );\
X					return;\
X				case CLEAR:\
X					m_clearmode( M_/**/arg );\
X					return;\
X				}\
X			}
X
Xstatic
Xaction( setclear, mode, originalmode )
Xint	setclear;
Xchar	*mode;
X{
X	CASE(ABS);
X	CASE(ACTIVATE);
X	CASE(AUTOEXPOSE);
X	CASE(BACKGROUND);
X	CASE(DUPKEY);
X	CASE(NOBUCKEY);
X	CASE(NOINPUT);
X	CASE(NOWRAP);
X	CASE(OVERSTRIKE);
X	CASE(SNARFHARD);
X	CASE(SNARFLINES);
X	CASE(SNARFTABS);
X	CASE(STACK);
X	CASE(STANDOUT);
X	CASE(WOB);
X	fprintf( stderr, "%s:  unrecognized mode: `%s'\n",
X		pgm, originalmode );
X}
END_OF_FILE
# end of 'demo/misc/mgrmode.c'
fi
if test -f 'demo/plot/subs.c' -a "${1}" != "-c" ; then 
  echo shar: Will not clobber existing file \"'demo/plot/subs.c'\"
else
echo shar: Extracting \"'demo/plot/subs.c'\" \(3977 characters\)
sed "s/^X//" >'demo/plot/subs.c' <<'END_OF_FILE'
X/*                        Copyright (c) 1987 Bellcore
X *                            All Rights Reserved
X *       Permission is granted to copy or use this program, EXCEPT that it
X *       may not be sold for profit, the copyright notice must be reproduced
X *       on copies, and credit should be given to Bellcore where it is due.
X *       BELLCORE MAKES NO WARRANTY AND ACCEPTS NO LIABILITY FOR THIS PROGRAM.
X */
X/*	$Header: subs.c,v 4.1 88/06/21 14:03:15 bianchi Exp $
X	$Source: /tmp/mgrsrc/demo/plot/RCS/subs.c,v $
X*/
Xstatic char	RCSid_[] = "$Source: /tmp/mgrsrc/demo/plot/RCS/subs.c,v $$Revision: 4.1 $";
X
X
X/* mgr plot filter (tmgr) */
X
X#include "term.h"
X
X#define X(x)	(scale?(int)(((x)-xmin) * xscale):(x))
X#define Y(x)	(scale?(int)(((x)-ymin) * yscale):(x))
X#define dprintf	if(debug)fprintf
X#define GMAX 	999
X
Xstatic int scale = 0;			/* TRUE if scaling on */
Xstatic int xmin = 0 ,ymin = 0;		/* minimum plotting coord */
Xstatic int xmax = GMAX ,ymax = GMAX;	/* maximum plotting coord */
Xstatic int xgmax = GMAX;		/* to override GMAX from environ() */
Xstatic int ygmax = GMAX;
Xstatic float xscale,yscale;		/* scale values */
Xstatic int debug = 0;			/* iff TRUE debug -> stderr */
Xstatic int text;			/* true if last item was a label */
Xstatic int win_id = 0;			/* true for alternate window */
Xstatic int pause = 0;			/* pause before clear */
Xstatic int points=0;			/* # points plotted (>0) */
X
Xopenpl()
X   {
X   char *getenv();
X   int n;
X   char *v;
X
X   if ((v=getenv("MAX_X")) && (n=atoi(v))>0)
X      xgmax = n;
X   if ((v=getenv("MAX_Y")) && (n=atoi(v))>0)
X      ygmax = n;
X   if ((v=getenv("WINDOW_ID")) && (n=atoi(v))>0)
X      win_id = n;
X   pause = (int) getenv("PAUSE");
X   points = 0;
X
X   xscale = (float)xgmax/(xmax-xmin);
X   yscale = (float)ygmax/(ymax-ymin);
X   text = 0;
X   debug = (int)getenv("DEBUG");
X   dprintf(stderr,"OPEN\n");
X   m_setup(M_DEBUG);
X   m_push(P_FLAGS);
X   m_func(B_SET);
X   if (win_id) {
X      m_selectwin(win_id);
X      m_setmode(M_ACTIVATE);
X      }
X   }
X
Xerase()
X   {
X   if (points && pause) {
X      m_flush();
X      getpass("\0330,0M");
X      }
X   m_clear();
X   m_flush();
X   dprintf(stderr,"ERASE\n");
X   points = 0;
X   }
X
Xlabel(s)
Xchar *s;
X   {
X   if (text == 0)
X      m_aligntext();
X   m_setmode(M_OVERSTRIKE);
X   m_func(B_OR);
X   m_printstr(s);
X   m_func(B_SET);
X   m_clearmode(M_OVERSTRIKE);
X   dprintf(stderr,"LABEL [%s]\n",s);
X   text++;
X   points++;
X   }
X
Xline(x1, y1, x2, y2)
Xint x1,y1,x2,y2;
X   {
X   text=0;
X   m_line(X(x1),Y(y1),X(x2),Y(y2));
X   m_go(X(x2),Y(y2));		/* this should be redundant */
X   dprintf(stderr,"LINE: %d,%d  %d,%d\n",X(x1),Y(y1),X(x2),Y(y2));
X   points++;
X   }
X
Xcircle(x, y, r)
Xint x,y,r;
X   {
X   m_circle(X(x),Y(y),X(r));
X   dprintf(stderr,"CIRCLE %d,%d  %d\n",X(x),Y(y),X(r));
X   points++;
X   }
X
Xarc(x, y, x0, y0, x1, y1)
Xint x,y,x0,y0,x1,y1;
X   {
X   m_arc(X(x),Y(y),X(x0),Y(y0),X(x1),Y(y1));
X   dprintf(stderr,"ARC at %d,%d from  %d,%d to %d,%d\n",
X                X(x),Y(y),X(x0),Y(y0),X(x1),Y(y1));
X   points++;
X   }
X
Xmove(x, y)
Xint x,y;
X   {
X   text=0;
X   m_go(X(x),Y(y));
X   dprintf(stderr,"MOVE %d,%d\n",X(x),Y(y));
X   }
X
Xcont(x, y)
Xint x,y;
X   {
X   text=0;
X   m_draw(X(x),Y(y));
X   dprintf(stderr,"DRAW %d,%d\n",X(x),Y(y));
X   points++;
X   }
X
Xpoint(x, y)
Xint x,y;
X   {
X   m_line(X(x),Y(y),X(x),Y(y));
X   dprintf(stderr,"POINT %d,%d\n",X(x),Y(y));
X   points++;
X   }
X
Xlinemod(s)
Xchar *s;
X   {
X   dprintf(stderr,"LINEMODE [%s]\n",s);
X   }
X
Xspace(x0, y0, x1, y1)
Xint x0,y0,x1,y1;
X   {
X   xmin = x0;
X   ymin = y0;
X   xmax = x1;
X   ymax = y1;
X   xscale = (float)xgmax/(xmax-xmin);
X   yscale = (float)ygmax/(ymax-ymin);
X   scale = 1;
X   dprintf(stderr,"SPACE %d,%d to %d,%d: scale (%g,%g)\n",
X            xmin,ymin,xmax,ymax,xscale,yscale);
X   }
X
Xclosepl()
X   {
X   if (points && pause) {
X      m_flush();
X      getpass("\0330,0M");
X      }
X   if (win_id) {
X      m_selectwin(0);
X      m_setmode(M_ACTIVATE);
X      }
X   m_pop();
X   m_flush();
X   points++;
X   dprintf(stderr,"CLOSE\n");
X   }
X
Xdot()
X  {
X  }
END_OF_FILE
# end of 'demo/plot/subs.c'
fi
if test -f 'doc/usrman/doc.0' -a "${1}" != "-c" ; then 
  echo shar: Will not clobber existing file \"'doc/usrman/doc.0'\"
else
echo shar: Extracting \"'doc/usrman/doc.0'\" \(4043 characters\)
sed "s/^X//" >'doc/usrman/doc.0' <<'END_OF_FILE'
X'\"                        Copyright (c) 1988 Bellcore
X'\"                            All Rights Reserved
X'\"       Permission is granted to copy or use this program, EXCEPT that it
X'\"       may not be sold for profit, the copyright notice must be reproduced
X'\"       on copies, and credit should be given to Bellcore where it is due.
X'\"       BELLCORE MAKES NO WARRANTY AND ACCEPTS NO LIABILITY FOR THIS PROGRAM.
X'\"
X'\"	$Header: doc.0,v 4.2 88/06/30 12:44:52 bianchi Exp $
X'\"	$Source: /tmp/mgrsrc/doc/usrman/RCS/doc.0,v $
X.DA
X.ds M M\s-2GR\s+2
X.ds RF Draft (\nv)
X.ds RF \*M 4.0\ \ \(co 1988 Bellcore
X.ds LH \*M\-C Language Application Interface
X.ds A \v'0.25v'*\v'-0.25v'
X'\"	Ff == font for functions
X'\"	Fn == font for arguments and such
X.if t .ds Ff lr
X.if t .ds Fn lb
X.if t .ds Ff B
X.if t .ds Fn B
X.if n .ds Ff R
X.if n .ds Fn B
X.if n .nr LL 78m 
X.if n .nr PO 1m
X..
X.de Sh	\" section header
X.ds RH \\$2 \\$3 \\$4 \\$5 \\$6
X.if t .if !\\nI .tm working on \\$2 \\$3 \\$4 \\$5 \\$6 [\\$1](page \\n%)
X.if ^G\\$1^Gpage^G .bp
X.LP
X.XS
X\\$2 \\$3 \\$4 \\$5 \\$6 \\$7 \\$8 \\$9
X.XE
X.sp 0.5v
X.LG
X.B
X\(rh \\$2 \\$3 \\$4 \\$5 \\$6 \\$7 \\$8 \\$9
X.R
X.SM
X.LP
X..
X.de Fr  \" function reference
X.ds Fz \\n(.f
X.if \\nI .if !'\\$1'' .tm \\$1 \\n% \\*(Mi
X.ds Mi
X.ft \\*(Ff
X.if t \\$1(\|\\c
X.if n \\$1(\\c
X.if \\n(.$>1 .ft \\*(Fn
X.if t .if \\n(.$>1  \\$2\|\\c
X.if n .if \\n(.$>1  \& \\$2\|\\c
X.if \\n(.$>2  \\fP,\|\\fP\\$3\|\\c
X.if \\n(.$>3  \\fP,\|\\fP\\$4\|\\c
X.if \\n(.$>4  \\fP,\|\\fP\\$5\|\\c
X.if \\n(.$>5  \\fP,\|\\fP\\$6\|\\c
X.if \\n(.$>6  \\fP,\|\\fP\\$7\|\\c
X.if \\n(.$>7  \\fP,\|\\fP\\$8\|\\c
X.if \\n(.$>8  \\fP,\|\\fP\\$9\|\\c
X.ft \\*(Ff
X)\\c
X.ft \\*(Fz
X..
X.de Fa	\" argument description
X.ds Fz \\n(.f
X.ft \\*(Fn
X.ft \\*(Ff
X\\fP\\$1\\fP\\$2\\fP\\$3\\fP\\$4\\fP\\$5\\fP\\$6\\fP\\$7\\fP\\$8\\fP\\$9
X.ft \\*(Fz
X..
X.de Fi	\" function italic - alternate Fn and previous
X.ft \\*(Fn
X\\$1\\fP\\$2\\fP\\$3\\fP\\$4\\fP\\$5\\fP\\$6\\fP\\$7\\fP\\$8\\fP\\$9\\fP
X..
X.de Fh		\" function heading
X.XP
X.ds Mi *
X.Fr \\$1  \\$2  \\$3  \\$4  \\$5  \\$6  \\$7  \\$8  \\$9
X.br
X..
X.de Ad		\" argument description
X.XP
X.Fa \\$1  \\$2  \\$3  \\$4  \\$5  \\$6  \\$7  \\$8  \\$9
X.br
X..
X.de Fe				\" function ending
X.br
X..
X.de Fs		\" generate function subjects
X.if \\nI .tm .Fc \\$1 \\$2 \\n% "\\$3"
X..
X.de Mk		\" mark a vertical spot
X.nr xx \\n(nl 
X..
X.de Go		\" go to marked spot indented $1
X.nr yy \\n(nl
X.sp  \\n(xxu-\\n(nlu
X.sp
X.po \\$1
X.nr qq \\n(xx-\\n(nlu
X..
X.de Rs		\" Restore vertical spot
X.if \\n(yy>\\n(nlu .sp \\n(yyu-\\n(nl
X.po
X..
X.de Fd	\" start a function declaration
X.ds Mi *
X.br
X.sp 1.0v
X.ft \\*(Ff
X.RE
X.nf
X\\$1 \\$2 \\$3 \\$4
X..
X.de Ft	\" terminate a function declaration
X.fl
X.ft R
X.RS
X.br
X.sp 0.5v
X..
X.de SS	\" source include for croff
X.nf
X.ft \*(Ff
X.cs \*(Ff 24
X..
X.de SE	\" end source include for croff
X.ft R
X.fl
X.cs \*(Ff
X..
X.ds S Unknown Function Category
X.de Mc		\" mgr function and macro categories
X.if ^G\\$1^G1^G .ds S Library Package Control*
X.if ^G\\$1^G2^G .ds S Standard I/O Functions
X.if ^G\\$1^G3^G .ds S Terminal Functions
X.if ^G\\$1^G4^G .ds S Graphics Primitives
X.if ^G\\$1^G5^G .ds S Bit-blts and Related Functions
X.if ^G\\$1^G6^G .ds S Window Environment Changes
X.if ^G\\$1^G7^G .ds S Window State Inquiry
X.if ^G\\$1^G8^G .ds S Pop-up Menu Management
X.if ^G\\$1^G9^G .ds S Event Handling
X.if ^G\\$1^G10^G .ds S Window Context Manipulation
X.if ^G\\$1^G11^G .ds S Multiple Windows
X.if ^G\\$1^G12^G .ds S Message Passing
X.if ^G\\$1^G13^G .ds S Miscellaneous Functions
X.if ^G\\$1^G14^G .ds S Color Manipulation
X..
X.nr Lx 0	
X.de Fc		\" macro for printing macros by category
X.tc .
X.if !\\n(Lx=\\$2\{
X.nr Lx \\$2
X.SH
X.Mc \\$2
X\\*S
X.LP
X\}
X.IP "\\$1 \fB\\$3\fP"  2.0i
X\\$4.
X.tc
X..
X.de Ih		\" header stuff for index
X.nr Ll \n(LL
X.nr Po \n(PO
X.nr LL 7.5i
X.nr PO .5i
X.Sh page Macro and Function Index
XThese are the pages where macros and functions are referenced.
XThe \fIitalic\fP page numbers are the defining references.
X.LP
X.MC 2.1i 0.4
X.LP
X..
X.de Sb			\" subscript
X\\$1\s-2\d\\$2\u\s+2\\$3\\$4\\$5\\$6\\$7\\$8\\$9
X..
X.de TS
X.KS
X..
X.de TE
X.KE
X..
END_OF_FILE
# end of 'doc/usrman/doc.0'
fi
if test -f 'font-16/Ucolossus12x20' -a "${1}" != "-c" ; then 
  echo shar: Will not clobber existing file \"'font-16/Ucolossus12x20'\"
else
echo shar: Extracting \"'font-16/Ucolossus12x20'\" \(4012 characters\)
sed "s/^X//" >'font-16/Ucolossus12x20' <<'END_OF_FILE'
Xbegin 644 colossus12x20.fnt
XM%@P4 E\@                                                    
XM                                                            
XM                                                            
XM                                                            
XM                                                            
XM                                                            
XM                                  !@#8  #0.$'P!@ P#         
XM   $/\'@/\/P8&?X/\?^'X'\          '\  #\/X/\?\/\/^/\8& P &8(
XM& _\?\/\/\/\?P/\?^8&8&P#8&8&?^#P( #P!@  "                   
XM                                   P  !@ (    !@#8#8#0;,,8!@
XM!@!@           $8.!@,& 88&8 8, &,,,&          ,&/\&&8,8,8&8 
XM8 8,8& P &88& QF8&8&8&8&888,!@8&8&P#8&8& &# (  P#P  #   ,   
XM ,  #X  ,     , !@              !@            !@   P'X    !@
XM#8#8/^;(,8!@#  P           ,8.!@ & 88&8 8  &,,,&     (  $ ,&
XM8&&&8,8 8&8 8 8 8& P &88& QF8&8&8&8&888 !@8&8&P#8&8& &# ,  P
XM&8  !@  ,    ,  &8  ,     , !@              !@            !@
XM!@ P'X    !@#8#8;6;8,8!@#  P  !@       (8>!@ & 88&8 8  &,,,&
XM#@   8  &  &8&&&8,8 8&8 8 8 8& P &88& QF8&8&8&8&888 !@8&8&P#
XM8&8& ,# $  P,,   @  ,    ,  &   , !@ ,, !@              !@  
XM          !@!@ P$     !@  #8;0.0,8  #  P!@!@       886!@ & 8
XM8&8 8  &,,,&#@   P  #  &9F&&8,8 8&8 8 8 8& P &88& QF8&8&8&8&
XM888 !@8&8&P#8&8& 8# &  P        ,    ,  &   , !@ ,, !@      
XM        !@            !@!@ P      !@  /^;0 P,8  #  P!@!@    
XM   08V!@ & 88&8 8  &,,,&#@  !@'X!@ &:6&&8,8 8&8 8 8 8& P &88
XM& QF8&8&8&8&888 !@8&8&P#,,8& P# "  P        ,    ,  &   ,   
XM  , !@              /\            !@!@ P      !@  #8;0 @'P  
XM#  P'X!@       P8F!@ & 88&8 8  ,,,,&  #@# 'X P ,:6&&8,8 8&8 
XM8 8 8& P &88& QF8&8&8&8&888 !@8&8&P#&88&!@# #  P      'X/X'\
XM'\'X& '\, !@ ,,8!@?^/X'X'X'P'X'X#@,,,,8#.,,,/\!@!@ P      !@
XM  #8/\!@/V  #  P#P/\  'X   @9F!@/\/X?^?\?\ 8'X'^  #@&    8 8
XM:6'^?^< <&?P?P8 ?^ P &?\& QF8&<&?\8&?\/\!@8&8&P##P/\# # !  P
XM      &,.,.,,<.,/X,</X!@ ,,P!@8S,,.,,,,8,8,8#@,,,,8#.,,, ,#@
XM!@ X      !@  #8#6! 86  #  P#P!@  'X  !@9&!@>  < > &>& X.$ >
XM  #@&    8 P:6.&>&> >&> > 8>>&!P .>&. X&<&>&> 8.>& &#@<&<&XS
XM#P#P& # !@ P       ,.,. ,<.,' ,<.,!@ ,-@!@8S,,.,,,,8, , #@,,
XM,,8#&8,, 8#@!@ X      !@  #8#6# 86  #  P'X!@      ! ;&'P>  >
XM > &>&!X>& >    # 'X P!@:6>&>&> >&> > 8>>&#P >>&> \&>&>&> 8>
XM>& &'@>&>&\S&8#P. #  @ P      '\.,. ,<.,' ,<.,!@ ,/ !@8S,,.,
XM,,,8, , #@,<,,8##P,, P!@!@ P      !@  /^#6" 8<  #  P!@!@    
XM  # :&'P>  > >>&>&!X>& >#@  !@'X!@!@:6>&>&> >&> > 8>>&#P >>&
XM> \&>&>&> 8>>&>&'@>&>&\S.,#P> #  P P      ,<.,. ,</\' ,<.,#@
XM ,/X!P<S.,.,,,,8. 'X#@,<,,<S!@,,!@!@!@ P      !@  #8#6&<8<  
XM#  P!@!@      " >&'P>  > >>&>&!X>& >#@   P  # !@9^>&>&> >&> 
XM> 8>>&#P8>>&> \&>&>&> 8>>&>&'@>&>&\S>&#P> #  0 P      ,<.,. 
XM,<. ' ,<.,#@ <.,!P<S.,.,,,,8.  ,#@,<.,<S#P,,# !@!@ P      !@
XM  #8;6$V8<  #  P    #@    & <&'P>  > >>&>&!X>& >#@#@ 8  & !@
XM8 >&>&> >&> > 8>>&#P8>>&> \&>&>&> 8>>&>&'@>&.,\S>&#P> #  8 P
XM      ,<.,. ,<. ' 'X.,#@ <.,!P<S.,.,,,,8. .,#@,</,<S&8,,& !@
XM!@ P          #8?\,V8<  #  P    #@  #@$ <&'P>  > >>&>&!X>& >
XM  #@ (  $   8&>&>&> >&> > 8>>&#P8>>&> \&>&>&> 8?>&>&'@>&&8\S
XM>&#P> #  ( P      ,<.,. ,<. ' # .,#@ <.,!P<S.,.,/X'X. .,#@,<
XM'8<S.,/\. !@!@ P      !@  #8#0(V8>  !@!@    #@  #@, <&'P>  >
XM >>&>&!X>&,>  #@      !@/^>&>&>&>&> > 8>>&#P8>>&> \&>&>&> 8?
XM>&>&'@>&#P\S>&#P> #  , P      ,<.,.,,<.,' #\.,#@ <.,!P<S.,.,
XM.  8. .,#L,<#P<S., <. !@   P      !@    #0(</^   P#      @  
XM#@( /\'P/^/\ >/\/\!X/\/\   @      !@  >&?\/^?\?^> /^>&#P/\>&
XM?^\&>&/\> ?_>&/\'@/\!@?^>&#P?^#P $#P  __  '\/X'\'\'\'  <.,#@
XM <.,!P<S.,'X.  8. 'X!\'\!@/^., </\ P  !@                    
XM        #@                            #@                    
XM                                                            
XM      ,<    &<          .  <              &<                
XM                                                            
XM                                                            
XM                  /\    'X          .  <              '\    
X&        
X 
Xend
END_OF_FILE
# end of 'font-16/Ucolossus12x20'
fi
if test -f 'font-16/User9x18r' -a "${1}" != "-c" ; then 
  echo shar: Will not clobber existing file \"'font-16/User9x18r'\"
else
echo shar: Extracting \"'font-16/User9x18r'\" \(3807 characters\)
sed "s/^X//" >'font-16/User9x18r' <<'END_OF_FILE'
Xbegin 644 ser9x18r.fnt
XM%@D2!H8              'X_AP.                                 
XM                                                            
XM                                                            
XM                                ' X' X'     /S^' X          
XM       X' X' X'  /P ! 2  (    @""         (      $  &       
XM     #P !!\#I^/Y_#ISGP/N-P8-CCQ^#Q^'K_N?C\=S\=_#Q '@   0 !@ 
XM &  / !@! $, X           0          X('  .             <#@<#
XM@<    !^/X<#@                #@<#@<#@< !^  .!($@@8!@" 0$    
XM    !!X$!X/ @?A@_AP/    $ " 1@P$"(1B,0B$1B$$ (0B @B$1B,1B,QH
XMB0D$@B$@D((" " @ !  "   ( !B " $ 00 @          !          $ 
XM@"#$D            !P.!P.!P    #\_AP.                 .!P.!P.!
XMP #\  X$@2/20) 0" ("       $(0P(Q&"! ("&)A&    @ $"",@H(B"(1
XM (""(00 A$(#&,2"(2"(2""!"022(1$0@@( (%  "  (   @ $  (   ! " 
XM          $          0" (220            ' X' X'     ?C^' X  
XM               X' X' X'  ?@ #@2!)#)(@" ( @(!      @A%!!$(2$ 
XM@(1"((   $  (((A"@B( A$ @( A! "$@@,8Q((A((A( ($(B)(2$0$" 0 @
XMB  $  @  "  0  @   $ (           0         ! ( A&.          
XM   <#@<#@<     _/X<#@                #@<#@<#@<  _  .  ?T$E" 
XM ! !%T$     ""$$$$ A(0$ !$(@@P& @  0!$<*"8@"$0" @"$$ (4" JBD
XM@B$@B$P @0B(DA(* 0(! "$$   ."X.AH/'X/2X<!P1@A)&X/&X.FX.GXQG=
XMQW.YW\$ @"  D            !P.!P.!P    'X_AP.                 
XM.!P.!P.!P 'X  0  D(!H$  $ $/@0     0(00 @$(A\7@(9""# 8$#^ @(
XM21$/" (1\/B /P0 AH("J*2"(B"(AP"!"(BJ# H" @" (    !,,Q&)A&$!C
XM,P0!!$"#:,Q&,Q,,1&$!"(B2(1"0@0" ( "0            ' X' X'     
XM/S^' X                 X' X' X'  /P !  "08! I  0 0</X /X ! A
XM! $!PB 9C @^,8   @  !!!)$0B( A$ @( A! "$@@)(E((L((\!P($(4*H,
XM! (" ( @     0A()"((0$(A! $$@()(A((A(0@$(0$(B)(2$($&   8    
XM           <#@<#@<    !^/X<#@                #@<#@<#@< !^  $
XM  ) 8+$8 ! !!0$     ("$$ @!D( D$"",>@  ! _@($$81"$@"$0" AR$$
XM (1" DB4@B @B(!@@0A0;!($! ( 0"     /"$@$(_! 1B$$ 04 @DB$@B$A
XM" ,! 0A0N@P) @$  "  #            !P.!P.!P    #\_AP.         
XM        .!P.!P.!P #\    #^ 120@ $ $(@0     @(00$ "?P"00000" 
XM  "  !  0#^(2"(1 (""(00 A$(""(R"(""(@""!"%!$$@0$ @! (    !$(
XM2 0B $!\(00!!H""2(2"(2$( ,$!"%!L# D$ 0" (  2            ' X'
XM X'     ?C^' X                 X' X' X'  ?@    $A!))"  0 0 !
XM     $ A! @(("()!!!! 0   $  (  @H(A((A$ @((A!!"$(@((C((@((A(
XM(($(($0A! A" " @    (0A()"((0, A! $$0()(A((A(0@((1$(4$02!0@!
XM ( @ !(            <#@<#@<     _/X<#@                #@<#@<#
XM@<  _  $  2&$$D4  @"    P  P0"$$$$Q (Q&($&(! P& ( ! $#$@B,Q"
XM(0B QB$$&80B$@B$Q" Q"$Q@@9 @1"$$"$( ("     S#(Q&8Q! @"$$ 00@
XM@DB$Q#(S" PAD9@@1"$&$$$ @"  $@           !P.!P.!P    'X_AP. 
XM                .!P.!P.!P 'X  0 !(7@,.8 " (   #  #" 'A\?QX A
XMX/ 0/ 8# 8 0 ( 0#G'?AX?#^<!Z<Y\/#G?W'<1X<!X<Z\/@X"!$<XX?P@ 0
XM(    !V+!X.QX?!^<Y\!#G/G;<YX+!T<"\#@["!$<X(?P0" (  2        
XM    ' X' X'     /S^' X                 X' X' X'  /P      (  
XM   $!    $   (              &   @                           
XM    #              " ! @ /\          ,$   $        @ 0      
XM    !  ! ( @  P            <#@<#@<    !^/X<#@               
XM #@<#@<#@< !^       @     ((    @                     $     
XM                           $              /  >              
XM@0  $0       " !           $  #@@<               !P.!P.!P   
XM #\_AP.                 .!P.!P.!P #\                  $     
XM                 @                                (         
XM                      "#   9        ( $           @         
XM                                                            
XM                                                            
XM             8                               'X   X       !P
XM X          ,                                               
XM                                                            
XM                                                            
XJ                                                        
X 
Xend
END_OF_FILE
# end of 'font-16/User9x18r'
fi
if test -f 'font-16/User9x18rI' -a "${1}" != "-c" ; then 
  echo shar: Will not clobber existing file \"'font-16/User9x18rI'\"
else
echo shar: Extracting \"'font-16/User9x18rI'\" \(3808 characters\)
sed "s/^X//" >'font-16/User9x18rI' <<'END_OF_FILE'
Xbegin 644 ser9x18rI.fnt
XM%@D2!H8 _____________X' >/Q___________________________X  '__
XM____________________________________________________________
XM____________________________________________________________
XM_____________________________ #_X_'X_'X_____P,!X_'__________
XM_______'X_'X_'X__OP >_M__W____?]]_________W______[__Y_______
XM_____\/_^^#\6!P& \6,8/P1R/GR<<.!\.!X4 1@<#B,#B \._X?___O_^?_
XM_Y__P_^?^_[S_'___________O__________'WX__Q_________\ /_C\?C\
XM?C____^!P'C\?________________\?C\?C\?C__^ !Q^W[??G^?]_O[____
XM____^^'[^'P_?@>? >/P____[_]_N?/[]WN=SO=[N=[[_WO=_?=[N=SN=S.7
XM=O;[?=[?;WW]_]_?_^__]___W_^=_]_[_OO_?__________^__________[_
XM?]\[;_________P _^/Q^/Q^/____\# >/Q_________________Q^/Q^/Q^
XM/_[\ ''[?MPMOV_O]_W]_______[WO/W.Y]^_W]YV>Y____?_[]]S?7W=]WN
XM_W]]WOO_>[W\YSM]WM]WM]]^]OMMWN[O??W_WZ__]__W___?_[__W___^_]_
XM__________[__________O]_WMMO_________ #_X_'X_'X_____@<!X_'__
XM_______________'X_'X_'X___@ <?M^V\VW?]_W_?W^______?>Z^^[WM[_
XM?WN]WW___[__WWW>]?=W_>[_?W_>^_][??SG.WW>WW>W_W[W=VWM[O[]_O_?
XM=__[__?__]__O__?___[_W___________O_________^_W_>YQ_________\
XM /_C\?C\?C_____ P'C\?________________\?C\?C\?C_^_ !Q__@+[:]_
XM_^_^Z+[_____]][[[[_>WO[_^[W??/Y_?__O^[CU]G?][O]_?][[_WK]_5=;
XM?=[?=[/_?O=W;>WU_OW^_][[___Q]'Q>7PX'PM'C^/N?>VY'PY'Q9'Q8'.8B
XM.(Q&(#[_?]__;_________P _^/Q^/Q^/____X' >/Q_________________
XMQ^/Q^/Q^/__X 'O__;W^7[__[_[P?O_____OWOO_?[W>#H?WF]]\_G[\!_?W
XMMN[P]_WN#P=_P/O_>7W]5UM]W=]W>/]^]W=5\_7]_?]_W____^SS.YV>Y[^<
XMS/O^^[]\ES.YS.SSNY[^]W=MWN]O?O]_W_]O_________ #_X_'X_'X_____
XMP,!X_'_________________'X_'X_'X__OP >__]OG^_6__O_OCP'_P'_^_>
XM^_[^/=_F<_?!SG___?__^^^V[O=W_>[_?W_>^_][??VW:WW3WW#^/W[WKU7S
XM^_W]_W_?_____O>WV]WWO[W>^_[[?WVW>WW>WO?[WO[W=VWM[W[Y___G____
XM_______\ /_C\?C\?C____^!P'C\?________________\?C\?C\?C__^ ![
XM__V_GT[G_^_^^O[_____W][[_?^;W_;[]]SA?__^_ ?W[[GN][?][O]_>-[[
XM_WN]_;=K?=_?=W^??O>OD^W[^_W_O]_____P][?[W ^_N=[[_OK_?;=[?=[>
XM]_S^_O>O1?/V_?[__]__\_________P _^/Q^/Q^/____\# >/Q_________
XM________Q^/Q^/Q^/_[\ '__\!_NMO?_[_[W?O_____?WOO[_]@/]OOOOO]_
XM__]__^__O\!WM]WN_W]]WOO_>[W]]W-]W]]W?]]^]Z^[[?O[_?^_W____^[W
XMM_O=_[^#WOO^^7]]MWM]WM[W_S[^]Z^3\_;[_O]_W__M_________ #_X_'X
XM_'X_____@<!X_'_________________'X_'X_'X___@ ?__[>^VV]__O_O_^
XM_____[_>^_?WW]WV^^^^_O___[__W__?7W>WW>[_?WW>^^][W?WW<WW?WW>W
XMWW[WW[O>^_>]_]_?____WO>WV]WWOS_>^_[[OWVW>WW>WO?WWN[WK[OM^O?^
XM_W_?_^W________\ /_C\?C\?C_____ P'C\?________________\?C\?C\
XM?C_^_ ![__MY[[;K__?]____/__/O][[[[._W.YW[YW^_/Y_W_^_[\[?=S.]
XMWO=_.=[[YGO=[?=[.]_.][.??F_?N][[][W_W]_____,\W.YG.^_?][[_OO?
XM?;=[.\W,]_/>;F??N][Y[[[_?]__[?________P _^/Q^/Q^/____X' >/Q_
XM________________Q^/Q^/Q^/__X 'O_^WH?SQG_]_W___\__\]_X>#@.'_>
XM'P_OP_G\_G_O_W_O\8X@>'@\!C^%C&#P\8@(XCN'C^'C%#P?']^[C''@/?_O
XMW____^)T^'Q.'@^!C&#^\8P8DC&'T^+C]#\?$]^[C'W@/O]_W__M________
XM_ #_X_'X_'X_____P,!X_'_________________'X_'X_'X__OP ?____W__
XM___[^____[___W______________Y___?___________________________
XM____\______________]_^_?_P#__________S[___[________?_O______
XM____^__^_W_?__/________\ /_C\?C\?C____^!P'C\?_______________
XM_\?C\?C\?C__^ !_____?_____WW____?_____________________[_____
XM___________________________[______________P__A______________
XM?O__[O_______]_^___________[__\??C____________P _^/Q^/Q^/___
XM_\# >/Q_________________Q^/Q^/Q^/_[\ '________________[_____
XM_________________?________________________________W_________
XM______________________]\___F________W_[___________?_________
XM_________ #______________________________________________@  
XM?___________________________________________________________
XM_____________G_______________________________X'___'_______^/
XM_'__________S__________________\ /__________________________
XM___________________^  !_____________________________________
XM____________________________________________________________
XJ______________________________________________________P 
X 
Xend
END_OF_FILE
# end of 'font-16/User9x18rI'
fi
if test -f 'font-16/User9x18ru' -a "${1}" != "-c" ; then 
  echo shar: Will not clobber existing file \"'font-16/User9x18ru'\"
else
echo shar: Extracting \"'font-16/User9x18ru'\" \(3808 characters\)
sed "s/^X//" >'font-16/User9x18ru' <<'END_OF_FILE'
Xbegin 644 ser9x18ru.fnt
XM%@D2!H8              'X_AP.                                 
XM                                                            
XM                                                            
XM                                ' X' X'     /S^' X          
XM       X' X' X'  /P ! 2  (    @""         (      $  &       
XM     #P !!\#I^/Y_#ISGP/N-P8-CCQ^#Q^'K_N?C\=S\=_#Q '@   0 !@ 
XM &  / !@! $, X           0          X('  .             <#@<#
XM@<    !^/X<#@                #@<#@<#@< !^  .!($@@8!@" 0$    
XM    !!X$!X/ @?A@_AP/    $ " 1@P$"(1B,0B$1B$$ (0B @B$1B,1B,QH
XMB0D$@B$@D((" " @ !  "   ( !B " $ 00 @          !          $ 
XM@"#$D            !P.!P.!P    #\_AP.                 .!P.!P.!
XMP #\  X$@2/20) 0" ("       $(0P(Q&"! ("&)A&    @ $"",@H(B"(1
XM (""(00 A$(#&,2"(2"(2""!"022(1$0@@( (%  "  (   @ $  (   ! " 
XM          $          0" (220            ' X' X'     ?C^' X  
XM               X' X' X'  ?@ #@2!)#)(@" ( @(!      @A%!!$(2$ 
XM@(1"((   $  (((A"@B( A$ @( A! "$@@,8Q((A((A( ($(B)(2$0$" 0 @
XMB  $  @  "  0  @   $ (           0         ! ( A&.          
XM   <#@<#@<     _/X<#@                #@<#@<#@<  _  .  ?T$E" 
XM ! !%T$     ""$$$$ A(0$ !$(@@P& @  0!$<*"8@"$0" @"$$ (4" JBD
XM@B$@B$P @0B(DA(* 0(! "$$   ."X.AH/'X/2X<!P1@A)&X/&X.FX.GXQG=
XMQW.YW\$ @"  D            !P.!P.!P    'X_AP.                 
XM.!P.!P.!P 'X  0  D(!H$  $ $/@0     0(00 @$(A\7@(9""# 8$#^ @(
XM21$/" (1\/B /P0 AH("J*2"(B"(AP"!"(BJ# H" @" (    !,,Q&)A&$!C
XM,P0!!$"#:,Q&,Q,,1&$!"(B2(1"0@0" ( "0            ' X' X'     
XM/S^' X                 X' X' X'  /P !  "08! I  0 0</X /X ! A
XM! $!PB 9C @^,8   @  !!!)$0B( A$ @( A! "$@@)(E((L((\!P($(4*H,
XM! (" ( @     0A()"((0$(A! $$@()(A((A(0@$(0$(B)(2$($&   8    
XM           <#@<#@<    !^/X<#@                #@<#@<#@< !^  $
XM  ) 8+$8 ! !!0$     ("$$ @!D( D$"",>@  ! _@($$81"$@"$0" AR$$
XM (1" DB4@B @B(!@@0A0;!($! ( 0"     /"$@$(_! 1B$$ 04 @DB$@B$A
XM" ,! 0A0N@P) @$  "  #            !P.!P.!P    #\_AP.         
XM        .!P.!P.!P #\    #^ 120@ $ $(@0     @(00$ "?P"00000" 
XM  "  !  0#^(2"(1 (""(00 A$(""(R"(""(@""!"%!$$@0$ @! (    !$(
XM2 0B $!\(00!!H""2(2"(2$( ,$!"%!L# D$ 0" (  2            ' X'
XM X'     ?C^' X                 X' X' X'  ?@    $A!))"  0 0 !
XM     $ A! @(("()!!!! 0   $  (  @H(A((A$ @((A!!"$(@((C((@((A(
XM(($(($0A! A" " @    (0A()"((0, A! $$0()(A((A(0@((1$(4$02!0@!
XM ( @ !(            <#@<#@<     _/X<#@                #@<#@<#
XM@<  _  $  2&$$D4  @"    P  P0"$$$$Q (Q&($&(! P& ( ! $#$@B,Q"
XM(0B QB$$&80B$@B$Q" Q"$Q@@9 @1"$$"$( ("     S#(Q&8Q! @"$$ 00@
XM@DB$Q#(S" PAD9@@1"$&$$$ @"  $@           !P.!P.!P    'X_AP. 
XM                .!P.!P.!P 'X  0 !(7@,.8 " (   #  #" 'A\?QX A
XMX/ 0/ 8# 8 0 ( 0#G'?AX?#^<!Z<Y\/#G?W'<1X<!X<Z\/@X"!$<XX?P@ 0
XM(    !V+!X.QX?!^<Y\!#G/G;<YX+!T<"\#@["!$<X(?P0" (  2        
XM  !_O]_O]_O]_O]_O__O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O\ /]_O]_O]
XM_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]
XM_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]
XM_O]_O]_O]_O]_O]_O]_O]_O\   <#@<#@<    !^/X<#@               
XM #@<#@<#@< !^       @     ((    @                     $     
XM                           $              /  >              
XM@0  $0       " !           $  #@@<               !P.!P.!P   
XM #\_AP.                 .!P.!P.!P #\                  $     
XM                 @                                (         
XM                      "#   9        ( $           @         
XM                                                            
XM                                                            
XM             8                               'X   X       !P
XM X          ,                                               
XM                                                            
XM                                                            
XJ                                                        
X 
Xend
END_OF_FILE
# end of 'font-16/User9x18ru'
fi
if test -f 'font-32/Ucolossus12x20' -a "${1}" != "-c" ; then 
  echo shar: Will not clobber existing file \"'font-32/Ucolossus12x20'\"
else
echo shar: Extracting \"'font-32/Ucolossus12x20'\" \(4012 characters\)
sed "s/^X//" >'font-32/Ucolossus12x20' <<'END_OF_FILE'
Xbegin 644 colossus12x20.fnt
XM& P4 E\@                                                    
XM                                                            
XM                                                            
XM                                                            
XM                                                            
XM                                                            
XM                                  !@#8  #0.$'P!@ P#         
XM   $/\'@/\/P8&?X/\?^'X'\          '\  #\/X/\?\/\/^/\8& P &8(
XM& _\?\/\/\/\?P/\?^8&8&P#8&8&?^#P( #P!@  "                   
XM                                   P  !@ (    !@#8#8#0;,,8!@
XM!@!@           $8.!@,& 88&8 8, &,,,&          ,&/\&&8,8,8&8 
XM8 8,8& P &88& QF8&8&8&8&888,!@8&8&P#8&8& &# (  P#P  #   ,   
XM ,  #X  ,     , !@              !@            !@   P'X    !@
XM#8#8/^;(,8!@#  P           ,8.!@ & 88&8 8  &,,,&     (  $ ,&
XM8&&&8,8 8&8 8 8 8& P &88& QF8&8&8&8&888 !@8&8&P#8&8& &# ,  P
XM&8  !@  ,    ,  &8  ,     , !@              !@            !@
XM!@ P'X    !@#8#8;6;8,8!@#  P  !@       (8>!@ & 88&8 8  &,,,&
XM#@   8  &  &8&&&8,8 8&8 8 8 8& P &88& QF8&8&8&8&888 !@8&8&P#
XM8&8& ,# $  P,,   @  ,    ,  &   , !@ ,, !@              !@  
XM          !@!@ P$     !@  #8;0.0,8  #  P!@!@       886!@ & 8
XM8&8 8  &,,,&#@   P  #  &9F&&8,8 8&8 8 8 8& P &88& QF8&8&8&8&
XM888 !@8&8&P#8&8& 8# &  P        ,    ,  &   , !@ ,, !@      
XM        !@            !@!@ P      !@  /^;0 P,8  #  P!@!@    
XM   08V!@ & 88&8 8  &,,,&#@  !@'X!@ &:6&&8,8 8&8 8 8 8& P &88
XM& QF8&8&8&8&888 !@8&8&P#,,8& P# "  P        ,    ,  &   ,   
XM  , !@              /\            !@!@ P      !@  #8;0 @'P  
XM#  P'X!@       P8F!@ & 88&8 8  ,,,,&  #@# 'X P ,:6&&8,8 8&8 
XM8 8 8& P &88& QF8&8&8&8&888 !@8&8&P#&88&!@# #  P      'X/X'\
XM'\'X& '\, !@ ,,8!@?^/X'X'X'P'X'X#@,,,,8#.,,,/\!@!@ P      !@
XM  #8/\!@/V  #  P#P/\  'X   @9F!@/\/X?^?\?\ 8'X'^  #@&    8 8
XM:6'^?^< <&?P?P8 ?^ P &?\& QF8&<&?\8&?\/\!@8&8&P##P/\# # !  P
XM      &,.,.,,<.,/X,</X!@ ,,P!@8S,,.,,,,8,8,8#@,,,,8#.,,, ,#@
XM!@ X      !@  #8#6! 86  #  P#P!@  'X  !@9&!@>  < > &>& X.$ >
XM  #@&    8 P:6.&>&> >&> > 8>>&!P .>&. X&<&>&> 8.>& &#@<&<&XS
XM#P#P& # !@ P       ,.,. ,<.,' ,<.,!@ ,-@!@8S,,.,,,,8, , #@,,
XM,,8#&8,, 8#@!@ X      !@  #8#6# 86  #  P'X!@      ! ;&'P>  >
XM > &>&!X>& >    # 'X P!@:6>&>&> >&> > 8>>&#P >>&> \&>&>&> 8>
XM>& &'@>&>&\S&8#P. #  @ P      '\.,. ,<.,' ,<.,!@ ,/ !@8S,,.,
XM,,,8, , #@,<,,8##P,, P!@!@ P      !@  /^#6" 8<  #  P!@!@    
XM  # :&'P>  > >>&>&!X>& >#@  !@'X!@!@:6>&>&> >&> > 8>>&#P >>&
XM> \&>&>&> 8>>&>&'@>&>&\S.,#P> #  P P      ,<.,. ,</\' ,<.,#@
XM ,/X!P<S.,.,,,,8. 'X#@,<,,<S!@,,!@!@!@ P      !@  #8#6&<8<  
XM#  P!@!@      " >&'P>  > >>&>&!X>& >#@   P  # !@9^>&>&> >&> 
XM> 8>>&#P8>>&> \&>&>&> 8>>&>&'@>&>&\S>&#P> #  0 P      ,<.,. 
XM,<. ' ,<.,#@ <.,!P<S.,.,,,,8.  ,#@,<.,<S#P,,# !@!@ P      !@
XM  #8;6$V8<  #  P    #@    & <&'P>  > >>&>&!X>& >#@#@ 8  & !@
XM8 >&>&> >&> > 8>>&#P8>>&> \&>&>&> 8>>&>&'@>&.,\S>&#P> #  8 P
XM      ,<.,. ,<. ' 'X.,#@ <.,!P<S.,.,,,,8. .,#@,</,<S&8,,& !@
XM!@ P          #8?\,V8<  #  P    #@  #@$ <&'P>  > >>&>&!X>& >
XM  #@ (  $   8&>&>&> >&> > 8>>&#P8>>&> \&>&>&> 8?>&>&'@>&&8\S
XM>&#P> #  ( P      ,<.,. ,<. ' # .,#@ <.,!P<S.,.,/X'X. .,#@,<
XM'8<S.,/\. !@!@ P      !@  #8#0(V8>  !@!@    #@  #@, <&'P>  >
XM >>&>&!X>&,>  #@      !@/^>&>&>&>&> > 8>>&#P8>>&> \&>&>&> 8?
XM>&>&'@>&#P\S>&#P> #  , P      ,<.,.,,<.,' #\.,#@ <.,!P<S.,.,
XM.  8. .,#L,<#P<S., <. !@   P      !@    #0(</^   P#      @  
XM#@( /\'P/^/\ >/\/\!X/\/\   @      !@  >&?\/^?\?^> /^>&#P/\>&
XM?^\&>&/\> ?_>&/\'@/\!@?^>&#P?^#P $#P  __  '\/X'\'\'\'  <.,#@
XM <.,!P<S.,'X.  8. 'X!\'\!@/^., </\ P  !@                    
XM        #@                            #@                    
XM                                                            
XM      ,<    &<          .  <              &<                
XM                                                            
XM                                                            
XM                  /\    'X          .  <              '\    
X&        
X 
Xend
END_OF_FILE
# end of 'font-32/Ucolossus12x20'
fi
if test -f 'font-32/User9x18r' -a "${1}" != "-c" ; then 
  echo shar: Will not clobber existing file \"'font-32/User9x18r'\"
else
echo shar: Extracting \"'font-32/User9x18r'\" \(3807 characters\)
sed "s/^X//" >'font-32/User9x18r' <<'END_OF_FILE'
Xbegin 644 ser9x18r.fnt
XM& D2!H8              'X_AP.                                 
XM                                                            
XM                                                            
XM                                ' X' X'     /S^' X          
XM       X' X' X'  /P ! 2  (    @""         (      $  &       
XM     #P !!\#I^/Y_#ISGP/N-P8-CCQ^#Q^'K_N?C\=S\=_#Q '@   0 !@ 
XM &  / !@! $, X           0          X('  .             <#@<#
XM@<    !^/X<#@                #@<#@<#@< !^  .!($@@8!@" 0$    
XM    !!X$!X/ @?A@_AP/    $ " 1@P$"(1B,0B$1B$$ (0B @B$1B,1B,QH
XMB0D$@B$@D((" " @ !  "   ( !B " $ 00 @          !          $ 
XM@"#$D            !P.!P.!P    #\_AP.                 .!P.!P.!
XMP #\  X$@2/20) 0" ("       $(0P(Q&"! ("&)A&    @ $"",@H(B"(1
XM (""(00 A$(#&,2"(2"(2""!"022(1$0@@( (%  "  (   @ $  (   ! " 
XM          $          0" (220            ' X' X'     ?C^' X  
XM               X' X' X'  ?@ #@2!)#)(@" ( @(!      @A%!!$(2$ 
XM@(1"((   $  (((A"@B( A$ @( A! "$@@,8Q((A((A( ($(B)(2$0$" 0 @
XMB  $  @  "  0  @   $ (           0         ! ( A&.          
XM   <#@<#@<     _/X<#@                #@<#@<#@<  _  .  ?T$E" 
XM ! !%T$     ""$$$$ A(0$ !$(@@P& @  0!$<*"8@"$0" @"$$ (4" JBD
XM@B$@B$P @0B(DA(* 0(! "$$   ."X.AH/'X/2X<!P1@A)&X/&X.FX.GXQG=
XMQW.YW\$ @"  D            !P.!P.!P    'X_AP.                 
XM.!P.!P.!P 'X  0  D(!H$  $ $/@0     0(00 @$(A\7@(9""# 8$#^ @(
XM21$/" (1\/B /P0 AH("J*2"(B"(AP"!"(BJ# H" @" (    !,,Q&)A&$!C
XM,P0!!$"#:,Q&,Q,,1&$!"(B2(1"0@0" ( "0            ' X' X'     
XM/S^' X                 X' X' X'  /P !  "08! I  0 0</X /X ! A
XM! $!PB 9C @^,8   @  !!!)$0B( A$ @( A! "$@@)(E((L((\!P($(4*H,
XM! (" ( @     0A()"((0$(A! $$@()(A((A(0@$(0$(B)(2$($&   8    
XM           <#@<#@<    !^/X<#@                #@<#@<#@< !^  $
XM  ) 8+$8 ! !!0$     ("$$ @!D( D$"",>@  ! _@($$81"$@"$0" AR$$
XM (1" DB4@B @B(!@@0A0;!($! ( 0"     /"$@$(_! 1B$$ 04 @DB$@B$A
XM" ,! 0A0N@P) @$  "  #            !P.!P.!P    #\_AP.         
XM        .!P.!P.!P #\    #^ 120@ $ $(@0     @(00$ "?P"00000" 
XM  "  !  0#^(2"(1 (""(00 A$(""(R"(""(@""!"%!$$@0$ @! (    !$(
XM2 0B $!\(00!!H""2(2"(2$( ,$!"%!L# D$ 0" (  2            ' X'
XM X'     ?C^' X                 X' X' X'  ?@    $A!))"  0 0 !
XM     $ A! @(("()!!!! 0   $  (  @H(A((A$ @((A!!"$(@((C((@((A(
XM(($(($0A! A" " @    (0A()"((0, A! $$0()(A((A(0@((1$(4$02!0@!
XM ( @ !(            <#@<#@<     _/X<#@                #@<#@<#
XM@<  _  $  2&$$D4  @"    P  P0"$$$$Q (Q&($&(! P& ( ! $#$@B,Q"
XM(0B QB$$&80B$@B$Q" Q"$Q@@9 @1"$$"$( ("     S#(Q&8Q! @"$$ 00@
XM@DB$Q#(S" PAD9@@1"$&$$$ @"  $@           !P.!P.!P    'X_AP. 
XM                .!P.!P.!P 'X  0 !(7@,.8 " (   #  #" 'A\?QX A
XMX/ 0/ 8# 8 0 ( 0#G'?AX?#^<!Z<Y\/#G?W'<1X<!X<Z\/@X"!$<XX?P@ 0
XM(    !V+!X.QX?!^<Y\!#G/G;<YX+!T<"\#@["!$<X(?P0" (  2        
XM    ' X' X'     /S^' X                 X' X' X'  /P      (  
XM   $!    $   (              &   @                           
XM    #              " ! @ /\          ,$   $        @ 0      
XM    !  ! ( @  P            <#@<#@<    !^/X<#@               
XM #@<#@<#@< !^       @     ((    @                     $     
XM                           $              /  >              
XM@0  $0       " !           $  #@@<               !P.!P.!P   
XM #\_AP.                 .!P.!P.!P #\                  $     
XM                 @                                (         
XM                      "#   9        ( $           @         
XM                                                            
XM                                                            
XM             8                               'X   X       !P
XM X          ,                                               
XM                                                            
XM                                                            
XJ                                                        
X 
Xend
END_OF_FILE
# end of 'font-32/User9x18r'
fi
if test -f 'font-32/User9x18rI' -a "${1}" != "-c" ; then 
  echo shar: Will not clobber existing file \"'font-32/User9x18rI'\"
else
echo shar: Extracting \"'font-32/User9x18rI'\" \(3808 characters\)
sed "s/^X//" >'font-32/User9x18rI' <<'END_OF_FILE'
Xbegin 644 ser9x18rI.fnt
XM& D2!H8 _____________X' >/Q___________________________X  '__
XM____________________________________________________________
XM____________________________________________________________
XM_____________________________ #_X_'X_'X_____P,!X_'__________
XM_______'X_'X_'X__OP >_M__W____?]]_________W______[__Y_______
XM_____\/_^^#\6!P& \6,8/P1R/GR<<.!\.!X4 1@<#B,#B \._X?___O_^?_
XM_Y__P_^?^_[S_'___________O__________'WX__Q_________\ /_C\?C\
XM?C____^!P'C\?________________\?C\?C\?C__^ !Q^W[??G^?]_O[____
XM____^^'[^'P_?@>? >/P____[_]_N?/[]WN=SO=[N=[[_WO=_?=[N=SN=S.7
XM=O;[?=[?;WW]_]_?_^__]___W_^=_]_[_OO_?__________^__________[_
XM?]\[;_________P _^/Q^/Q^/____\# >/Q_________________Q^/Q^/Q^
XM/_[\ ''[?MPMOV_O]_W]_______[WO/W.Y]^_W]YV>Y____?_[]]S?7W=]WN
XM_W]]WOO_>[W\YSM]WM]WM]]^]OMMWN[O??W_WZ__]__W___?_[__W___^_]_
XM__________[__________O]_WMMO_________ #_X_'X_'X_____@<!X_'__
XM_______________'X_'X_'X___@ <?M^V\VW?]_W_?W^______?>Z^^[WM[_
XM?WN]WW___[__WWW>]?=W_>[_?W_>^_][??SG.WW>WW>W_W[W=VWM[O[]_O_?
XM=__[__?__]__O__?___[_W___________O_________^_W_>YQ_________\
XM /_C\?C\?C_____ P'C\?________________\?C\?C\?C_^_ !Q__@+[:]_
XM_^_^Z+[_____]][[[[_>WO[_^[W??/Y_?__O^[CU]G?][O]_?][[_WK]_5=;
XM?=[?=[/_?O=W;>WU_OW^_][[___Q]'Q>7PX'PM'C^/N?>VY'PY'Q9'Q8'.8B
XM.(Q&(#[_?]__;_________P _^/Q^/Q^/____X' >/Q_________________
XMQ^/Q^/Q^/__X 'O__;W^7[__[_[P?O_____OWOO_?[W>#H?WF]]\_G[\!_?W
XMMN[P]_WN#P=_P/O_>7W]5UM]W=]W>/]^]W=5\_7]_?]_W____^SS.YV>Y[^<
XMS/O^^[]\ES.YS.SSNY[^]W=MWN]O?O]_W_]O_________ #_X_'X_'X_____
XMP,!X_'_________________'X_'X_'X__OP >__]OG^_6__O_OCP'_P'_^_>
XM^_[^/=_F<_?!SG___?__^^^V[O=W_>[_?W_>^_][??VW:WW3WW#^/W[WKU7S
XM^_W]_W_?_____O>WV]WWO[W>^_[[?WVW>WW>WO?[WO[W=VWM[W[Y___G____
XM_______\ /_C\?C\?C____^!P'C\?________________\?C\?C\?C__^ ![
XM__V_GT[G_^_^^O[_____W][[_?^;W_;[]]SA?__^_ ?W[[GN][?][O]_>-[[
XM_WN]_;=K?=_?=W^??O>OD^W[^_W_O]_____P][?[W ^_N=[[_OK_?;=[?=[>
XM]_S^_O>O1?/V_?[__]__\_________P _^/Q^/Q^/____\# >/Q_________
XM________Q^/Q^/Q^/_[\ '__\!_NMO?_[_[W?O_____?WOO[_]@/]OOOOO]_
XM__]__^__O\!WM]WN_W]]WOO_>[W]]W-]W]]W?]]^]Z^[[?O[_?^_W____^[W
XMM_O=_[^#WOO^^7]]MWM]WM[W_S[^]Z^3\_;[_O]_W__M_________ #_X_'X
XM_'X_____@<!X_'_________________'X_'X_'X___@ ?__[>^VV]__O_O_^
XM_____[_>^_?WW]WV^^^^_O___[__W__?7W>WW>[_?WW>^^][W?WW<WW?WW>W
XMWW[WW[O>^_>]_]_?____WO>WV]WWOS_>^_[[OWVW>WW>WO?WWN[WK[OM^O?^
XM_W_?_^W________\ /_C\?C\?C_____ P'C\?________________\?C\?C\
XM?C_^_ ![__MY[[;K__?]____/__/O][[[[._W.YW[YW^_/Y_W_^_[\[?=S.]
XMWO=_.=[[YGO=[?=[.]_.][.??F_?N][[][W_W]_____,\W.YG.^_?][[_OO?
XM?;=[.\W,]_/>;F??N][Y[[[_?]__[?________P _^/Q^/Q^/____X' >/Q_
XM________________Q^/Q^/Q^/__X 'O_^WH?SQG_]_W___\__\]_X>#@.'_>
XM'P_OP_G\_G_O_W_O\8X@>'@\!C^%C&#P\8@(XCN'C^'C%#P?']^[C''@/?_O
XMW____^)T^'Q.'@^!C&#^\8P8DC&'T^+C]#\?$]^[C'W@/O]_W__M________
XM_ #_X_'X_'X_____P,!X_'_________________'X_'X_'X__OP ?____W__
XM___[^____[___W______________Y___?___________________________
XM____\______________]_^_?_P#__________S[___[________?_O______
XM____^__^_W_?__/________\ /_C\?C\?C____^!P'C\?_______________
XM_\?C\?C\?C__^ !_____?_____WW____?_____________________[_____
XM___________________________[______________P__A______________
XM?O__[O_______]_^___________[__\??C____________P _^/Q^/Q^/___
XM_\# >/Q_________________Q^/Q^/Q^/_[\ '________________[_____
XM_________________?________________________________W_________
XM______________________]\___F________W_[___________?_________
XM_________ #______________________________________________@  
XM?___________________________________________________________
XM_____________G_______________________________X'___'_______^/
XM_'__________S__________________\ /__________________________
XM___________________^  !_____________________________________
XM____________________________________________________________
XJ______________________________________________________P 
X 
Xend
END_OF_FILE
# end of 'font-32/User9x18rI'
fi
if test -f 'font-32/User9x18ru' -a "${1}" != "-c" ; then 
  echo shar: Will not clobber existing file \"'font-32/User9x18ru'\"
else
echo shar: Extracting \"'font-32/User9x18ru'\" \(3808 characters\)
sed "s/^X//" >'font-32/User9x18ru' <<'END_OF_FILE'
Xbegin 644 ser9x18ru.fnt
XM& D2!H8              'X_AP.                                 
XM                                                            
XM                                                            
XM                                ' X' X'     /S^' X          
XM       X' X' X'  /P ! 2  (    @""         (      $  &       
XM     #P !!\#I^/Y_#ISGP/N-P8-CCQ^#Q^'K_N?C\=S\=_#Q '@   0 !@ 
XM &  / !@! $, X           0          X('  .             <#@<#
XM@<    !^/X<#@                #@<#@<#@< !^  .!($@@8!@" 0$    
XM    !!X$!X/ @?A@_AP/    $ " 1@P$"(1B,0B$1B$$ (0B @B$1B,1B,QH
XMB0D$@B$@D((" " @ !  "   ( !B " $ 00 @          !          $ 
XM@"#$D            !P.!P.!P    #\_AP.                 .!P.!P.!
XMP #\  X$@2/20) 0" ("       $(0P(Q&"! ("&)A&    @ $"",@H(B"(1
XM (""(00 A$(#&,2"(2"(2""!"022(1$0@@( (%  "  (   @ $  (   ! " 
XM          $          0" (220            ' X' X'     ?C^' X  
XM               X' X' X'  ?@ #@2!)#)(@" ( @(!      @A%!!$(2$ 
XM@(1"((   $  (((A"@B( A$ @( A! "$@@,8Q((A((A( ($(B)(2$0$" 0 @
XMB  $  @  "  0  @   $ (           0         ! ( A&.          
XM   <#@<#@<     _/X<#@                #@<#@<#@<  _  .  ?T$E" 
XM ! !%T$     ""$$$$ A(0$ !$(@@P& @  0!$<*"8@"$0" @"$$ (4" JBD
XM@B$@B$P @0B(DA(* 0(! "$$   ."X.AH/'X/2X<!P1@A)&X/&X.FX.GXQG=
XMQW.YW\$ @"  D            !P.!P.!P    'X_AP.                 
XM.!P.!P.!P 'X  0  D(!H$  $ $/@0     0(00 @$(A\7@(9""# 8$#^ @(
XM21$/" (1\/B /P0 AH("J*2"(B"(AP"!"(BJ# H" @" (    !,,Q&)A&$!C
XM,P0!!$"#:,Q&,Q,,1&$!"(B2(1"0@0" ( "0            ' X' X'     
XM/S^' X                 X' X' X'  /P !  "08! I  0 0</X /X ! A
XM! $!PB 9C @^,8   @  !!!)$0B( A$ @( A! "$@@)(E((L((\!P($(4*H,
XM! (" ( @     0A()"((0$(A! $$@()(A((A(0@$(0$(B)(2$($&   8    
XM           <#@<#@<    !^/X<#@                #@<#@<#@< !^  $
XM  ) 8+$8 ! !!0$     ("$$ @!D( D$"",>@  ! _@($$81"$@"$0" AR$$
XM (1" DB4@B @B(!@@0A0;!($! ( 0"     /"$@$(_! 1B$$ 04 @DB$@B$A
XM" ,! 0A0N@P) @$  "  #            !P.!P.!P    #\_AP.         
XM        .!P.!P.!P #\    #^ 120@ $ $(@0     @(00$ "?P"00000" 
XM  "  !  0#^(2"(1 (""(00 A$(""(R"(""(@""!"%!$$@0$ @! (    !$(
XM2 0B $!\(00!!H""2(2"(2$( ,$!"%!L# D$ 0" (  2            ' X'
XM X'     ?C^' X                 X' X' X'  ?@    $A!))"  0 0 !
XM     $ A! @(("()!!!! 0   $  (  @H(A((A$ @((A!!"$(@((C((@((A(
XM(($(($0A! A" " @    (0A()"((0, A! $$0()(A((A(0@((1$(4$02!0@!
XM ( @ !(            <#@<#@<     _/X<#@                #@<#@<#
XM@<  _  $  2&$$D4  @"    P  P0"$$$$Q (Q&($&(! P& ( ! $#$@B,Q"
XM(0B QB$$&80B$@B$Q" Q"$Q@@9 @1"$$"$( ("     S#(Q&8Q! @"$$ 00@
XM@DB$Q#(S" PAD9@@1"$&$$$ @"  $@           !P.!P.!P    'X_AP. 
XM                .!P.!P.!P 'X  0 !(7@,.8 " (   #  #" 'A\?QX A
XMX/ 0/ 8# 8 0 ( 0#G'?AX?#^<!Z<Y\/#G?W'<1X<!X<Z\/@X"!$<XX?P@ 0
XM(    !V+!X.QX?!^<Y\!#G/G;<YX+!T<"\#@["!$<X(?P0" (  2        
XM  !_O]_O]_O]_O]_O__O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O\ /]_O]_O]
XM_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]
XM_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]_O]
XM_O]_O]_O]_O]_O]_O]_O]_O\   <#@<#@<    !^/X<#@               
XM #@<#@<#@< !^       @     ((    @                     $     
XM                           $              /  >              
XM@0  $0       " !           $  #@@<               !P.!P.!P   
XM #\_AP.                 .!P.!P.!P #\                  $     
XM                 @                                (         
XM                      "#   9        ( $           @         
XM                                                            
XM                                                            
XM             8                               'X   X       !P
XM X          ,                                               
XM                                                            
XM                                                            
XJ                                                        
X 
Xend
END_OF_FILE
# end of 'font-32/User9x18ru'
fi
if test -f 'src/icons-32.h' -a "${1}" != "-c" ; then 
  echo shar: Will not clobber existing file \"'src/icons-32.h'\"
else
echo shar: Extracting \"'src/icons-32.h'\" \(3859 characters\)
sed "s/^X//" >'src/icons-32.h' <<'END_OF_FILE'
X/*                        Copyright (c) 1987 Bellcore
X *                            All Rights Reserved
X *       Permission is granted to copy or use this program, EXCEPT that it
X *       may not be sold for profit, the copyright notice must be reproduced
X *       on copies, and credit should be given to Bellcore where it is due.
X *       BELLCORE MAKES NO WARRANTY AND ACCEPTS NO LIABILITY FOR THIS PROGRAM.
X */
X/*	$Header: icons-32.h,v 4.1 88/06/21 13:33:58 bianchi Exp $
X	$Source: /tmp/mgrsrc/src/RCS/icons-32.h,v $
X*/
Xstatic char	h_icons_[] = "$Source: /tmp/mgrsrc/src/RCS/icons-32.h,v $$Revision: 4.1 $";
X
X/********************************************************
X *
X * mouse icons for mgr
X *
X *	(0,0)->(15,15) => icon
X *	(0,16)->(15,31) => outline (mask) of icon
X */
X
Xshort c_arrow1[] = {			/* up left arrow */
X	0x0000,	0x0000, 0x7f80,	0x0000, 0x7d00,	0x0000, 0x7800, 0x0000,
X	0x7c00, 0x0000,	0x6e00, 0x0000,	0x4700, 0x0000,	0x6380, 0x0000,
X	0x41c0, 0x0000,	0x00e0, 0x0000,	0x0070, 0x0000,	0x0038, 0x0000,
X	0x001c, 0x0000,	0x000c, 0x0000,	0x0000, 0x0000,	0x0000, 0x0000,
X
X	0xffc0, 0x0000,	0x8040, 0x0000,	0x82c0, 0x0000,	0x8700, 0x0000,
X	0x8200, 0x0000,	0x9100, 0x0000,	0xb880, 0x0000,	0x9440, 0x0000,
X	0xa220, 0x0000,	0xe110, 0x0000,	0x0088, 0x0000,	0x0044, 0x0000,
X	0x0022, 0x0000,	0x0012, 0x0000,	0x000e, 0x0000,	0x0000, 0x0000,
X	};
X
Xshort c_box[] = {			/* box for creating/shaping windows */
X	0x0000, 0x0000,	0x7ffe, 0x0000,	0x7ffe, 0x0000,	0x6006, 0x0000,
X	0x6006, 0x0000,	0x6006, 0x0000,	0x6006, 0x0000,	0x6006, 0x0000,
X	0x6006, 0x0000,	0x6006, 0x0000,	0x6006, 0x0000,	0x6006, 0x0000,
X	0x6006, 0x0000,	0x7ffe, 0x0000,	0x7ffe, 0x0000,	0x0000, 0x0000,
X
X	0xffff, 0x0000,	0x8001, 0x0000,	0x8001, 0x0000,	0x8001, 0x0000,
X	0x8001, 0x0000,	0x8001, 0x0000,	0x8001, 0x0000,	0x8001, 0x0000,
X	0x8001, 0x0000,	0x8001, 0x0000,	0x8001, 0x0000,	0x8001, 0x0000,
X	0x8001, 0x0000,	0x8001, 0x0000,	0x8001, 0x0000,	0xffff, 0x0000,
X	};
X
Xshort c_cup[] = {			/* coffee-cup (for waiting) */
X	0x0FCC, 0x0000,	0x1878, 0x0000,	0x0FF0, 0x0000,	0x00C0, 0x0000,
X	0x0780, 0x0000,	0x0000, 0x0000,	0x1FF0, 0x0000,	0x181C, 0x0000,
X	0x181E, 0x0000,	0x1816, 0x0000,	0x181E, 0x0000,	0x1C3C, 0x0000,
X	0x0FE0, 0x0000,	0x07C0, 0x0000,	0x1FF0, 0x0000,	0x1FF0, 0x0000,
X
X	0x1032, 0x0000,	0x2784, 0x0000,	0x1008, 0x0000,	0x0b20, 0x0000,
X	0x0840, 0x0000,	0x1ff0, 0x0000,	0x200c, 0x0000,	0x27e2, 0x0000,
X	0x2421, 0x0000,	0x2429, 0x0000,	0x2421, 0x0000,	0x23c2, 0x0000,
X	0x101c, 0x0000,	0x0830, 0x0000,	0x2008, 0x0000,	0x2008, 0x0000,
X	};
X
Xshort c_cross[] = {			/* cross for drawing lines */
X	0x0000,	0x0400,	0x0400,	0x0400,
X	0x0400,	0x7fc0,	0x0400,	0x0400,
X	0x0400,	0x0400,	0x0000,	0x0000,
X	0x0000,	0x0000,	0x0000,	0x0000,
X	
X	0x0e00,	0x0a00,	0x0a00,	0x0a00,
X	0xfbe0,	0x8020,	0xfbe0,	0x0a00,
X	0x0a00,	0x0a00,	0x0e00,	0x0000,
X	0x0000,	0x0000,	0x0000,	0x0000,
X	};
X
Xshort c_cut[] = {			/* scissors for cutting text */
X	0x0000, 0x0000,	0x3000, 0x0000,	0x4801, 0x0000,	0x480e, 0x0000,
X	0x4878, 0x0000,	0x39f0, 0x0000,	0x0780, 0x0000,	0x0780, 0x0000,
X	0x39f0, 0x0000,	0x4878, 0x0000,	0x480e, 0x0000,	0x4801, 0x0000,
X	0x3000, 0x0000,	0x0000, 0x0000,	0x0000, 0x0000,	0x0000, 0x0000,
X	
X	0x3000, 0x0000,	0x4801, 0x0000,	0x8406, 0x0000,	0x9431, 0x0000,
X	0x8584, 0x0000,	0x4210, 0x0000,	0x2040, 0x0000,	0x2040, 0x0000,
X	0x4210, 0x0000,	0x8584, 0x0000,	0x9431, 0x0000,	0x8406, 0x0000,
X	0x4801, 0x0000,	0x3000, 0x0000,	0x0000, 0x0000,	0x0000, 0x0000,
X	};
X
Xshort c_bull[] = {			/* bullet for menus */
X	0x0000, 0x0000, 0x1800, 0x0000, 0x2400, 0x0000, 0x5a00, 0x0000,
X	0x5a00, 0x0000, 0x2400, 0x0000, 0x1800, 0x0000, 0x0000, 0x0000,
X	};
Xshort c_bull2[] = {
X	0x0000, 0x0000, 0x0000, 0x0000, 0x1800, 0x0000, 0x2400, 0x0000,
X	0x2400, 0x0000, 0x1800, 0x0000, 0x0000, 0x0000, 0x0000, 0x0000,
X	};
X
Xshort pat_data[] = {			/* background pattern */
X	0x8888, 0x0000,	0x4444, 0x0000,	0x1111, 0x0000,	0x2222, 0x0000,
X	};
END_OF_FILE
# end of 'src/icons-32.h'
fi
echo shar: End of archive 19 \(of 61\).
cp /dev/null ark19isdone
MISSING=""
for I in 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 \
	21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 \
	38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 \
	55 56 57 58 59 60 61 ; do
    if test ! -f ark${I}isdone ; then
	MISSING="${MISSING} ${I}"
    fi
done
if test "${MISSING}" = "" ; then
    echo You have unpacked all 61 archives.
    rm -f ark[1-9]isdone ark[1-9][0-9]isdone
else
    echo You still need to unpack the following archives:
    echo "        " ${MISSING}
fi
##  End of shell archive.
exit 0
-- 
Please send comp.sources.unix-related mail to rsalz@uunet.uu.net.